From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=none Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 320C21A7; Thu, 16 Nov 2023 12:34:01 -0800 (PST) Received: from [194.95.143.137] (helo=phil.localnet) by gloria.sntech.de with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r3j3m-0005kq-K3; Thu, 16 Nov 2023 21:33:58 +0100 From: Heiko Stuebner To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Krzysztof Kozlowski Cc: AngeloGioacchino Del Regno , Arnd Bergmann , Bjorn Andersson , Geert Uytterhoeven , Konrad Dybcio , Matthias Brugger , Michal Simek , Neil Armstrong , Nishanth Menon , Olof Johansson Subject: Re: [PATCH] docs: dt-bindings: add DTS Coding Style document Date: Thu, 16 Nov 2023 21:33:57 +0100 Message-ID: <7592981.EvYhyI6sBW@phil> In-Reply-To: References: <20231116181218.18886-1-krzysztof.kozlowski@linaro.org> <3266223.44csPzL39Z@phil> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Am Donnerstag, 16. November 2023, 21:23:20 CET schrieb Krzysztof Kozlowski: > On 16/11/2023 21:03, Heiko Stuebner wrote: > > >>> I guess the only thing I do have questions about is the part > >>> > >>>> +4. All properties with values > >>>> +5. Boolean properties > >>> > >>> Is there a rationale for it? Because with it things like regulator-* > >>> properties then end up in two different blocks. > >> > >> Good point. It is only a matter of style that this: > >> > >> foo { > >> compatible = "foo"; > >> reg = <0x1>; > >> clocks = <&clk>; > >> wakeup-source; > >> key-autorepeat; > >> } > >> > >> looks better to me than: > >> > >> > >> foo { > >> compatible = "foo"; > >> reg = <0x1>; > >> key-autorepeat; > >> wakeup-source; > >> clocks = <&clk>; > >> } > >> > >> But you have good point that similar properties should be usually > >> grouped together. > >> > >> About which regulator properties are you thinking now? You mean the > >> supplies or the provider? > > > > I was thinking about the provider. There are > > regulator-min-microvolt = <>; > > and friends, but also > > regulator-boot-on; > > These are in regulator provider nodes and above guideline would keep > logical order: > > regulator-name = "vdd_kfc"; > regulator-min-microvolt = <800000>; > regulator-max-microvolt = <1500000>; > regulator-always-on; > regulator-boot-on; > > regulator-state-mem { > regulator-off-in-suspend; > }; > > What exactly would be here misordered? going with the vcc5v0_host regulator of the rk3588-quartzpro64 and +1. compatible +2. reg +3. ranges +4. All properties with values +5. Boolean properties +6. status (if applicable) +7. Child nodes we'd end up with vcc5v0_host: vcc5v0-host-regulator { /* 1. */ compatible = "regulator-fixed"; /* 4. */ gpio = <&gpio4 RK_PB0 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&vcc5v0_host_en>; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; regulator-name = "vcc5v0_host"; vin-supply = <&vcc5v0_usb>; /* 5. */ enable-active-high; regulator-always-on; regulator-boot-on; }; which I find somewhat counter-intuitive ;-) . Heiko