Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6457BC6379F for ; Tue, 14 Feb 2023 02:18:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231311AbjBNCSd (ORCPT ); Mon, 13 Feb 2023 21:18:33 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41998 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229630AbjBNCSb (ORCPT ); Mon, 13 Feb 2023 21:18:31 -0500 Received: from ex01.ufhost.com (ex01.ufhost.com [61.152.239.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 72082E382; Mon, 13 Feb 2023 18:18:29 -0800 (PST) Received: from EXMBX165.cuchost.com (unknown [175.102.18.54]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "EXMBX165", Issuer "EXMBX165" (not verified)) by ex01.ufhost.com (Postfix) with ESMTP id 9BF7124E13F; Tue, 14 Feb 2023 10:18:27 +0800 (CST) Received: from EXMBX162.cuchost.com (172.16.6.72) by EXMBX165.cuchost.com (172.16.6.75) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Tue, 14 Feb 2023 10:18:27 +0800 Received: from [192.168.1.100] (183.27.97.168) by EXMBX162.cuchost.com (172.16.6.72) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Tue, 14 Feb 2023 10:18:26 +0800 Message-ID: <7ea58081-02d8-ae53-ce49-1fafd5d26a58@starfivetech.com> Date: Tue, 14 Feb 2023 10:18:25 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.7.2 Subject: Re: [PATCH v1 1/4] riscv: dts: starfive: jh7110: Add aon syscon node Content-Language: en-US To: Krzysztof Kozlowski , Vinod Koul , Kishon Vijay Abraham I , Rob Herring , Krzysztof Kozlowski , Emil Renner Berthing , Conor Dooley , Paul Walmsley , Palmer Dabbelt , Albert Ou , Philipp Zabel CC: Jack Zhu , , , , References: <20230210061713.6449-1-changhuang.liang@starfivetech.com> <20230210061713.6449-2-changhuang.liang@starfivetech.com> From: Changhuang Liang In-Reply-To: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [183.27.97.168] X-ClientProxiedBy: EXCAS061.cuchost.com (172.16.6.21) To EXMBX162.cuchost.com (172.16.6.72) X-YovoleRuleAgent: yovoleflag Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/2/13 17:28, Krzysztof Kozlowski wrote: > On 10/02/2023 07:17, Changhuang Liang wrote: >> Add aon syscon node for the Starfive JH7110 SoC. It can be used by >> other modules such as DPHY. >> >> Signed-off-by: Changhuang Liang >> --- >> arch/riscv/boot/dts/starfive/jh7110.dtsi | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/arch/riscv/boot/dts/starfive/jh7110.dtsi b/arch/riscv/boot/dts/starfive/jh7110.dtsi >> index cfbaff4ea64b..bce3e407ab60 100644 >> --- a/arch/riscv/boot/dts/starfive/jh7110.dtsi >> +++ b/arch/riscv/boot/dts/starfive/jh7110.dtsi >> @@ -251,6 +251,11 @@ soc { >> #size-cells = <2>; >> ranges; >> >> + aon_syscon: aon_syscon@17010000 { > > No underscores in node names, generic node names. > OK, will change to "syscon". > https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation > >> + compatible = "syscon"; > > Nope. syscon cannot be alone. Run dtbs_check before sending DTS. > OK, will fix it. > > Best regards, > Krzysztof >