From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Cc: Andrew Davis <afd@ti.com>, Arnd Bergmann <arnd@arndb.de>,
Bjorn Andersson <andersson@kernel.org>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Heiko Stuebner <heiko@sntech.de>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
Michal Simek <michal.simek@amd.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Nishanth Menon <nm@ti.com>, Olof Johansson <olof@lixom.net>,
linux-rockchip@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
linux-amlogic@lists.infradead.org, linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v2] docs: dt-bindings: add DTS Coding Style document
Date: Mon, 20 Nov 2023 15:57:15 +0100 [thread overview]
Message-ID: <e8483375-cace-473c-aba7-1cd60feae242@linaro.org> (raw)
In-Reply-To: <92cf3bcc-18e7-40ba-a082-1b8b6bea0dee@collabora.com>
On 20/11/2023 12:43, AngeloGioacchino Del Regno wrote:
> Il 20/11/23 09:40, Krzysztof Kozlowski ha scritto:
>> Document preferred coding style for Devicetree sources (DTS and DTSI),
>> to bring consistency among all (sub)architectures and ease in reviews.
>>
>> Cc: Andrew Davis <afd@ti.com>
>> Cc: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> Cc: Arnd Bergmann <arnd@arndb.de>
>> Cc: Bjorn Andersson <andersson@kernel.org>
>> Cc: Geert Uytterhoeven <geert+renesas@glider.be>
>> Cc: Heiko Stuebner <heiko@sntech.de>
>> Cc: Konrad Dybcio <konrad.dybcio@linaro.org>
>> Cc: Matthias Brugger <matthias.bgg@gmail.com>
>> Cc: Michal Simek <michal.simek@amd.com>
>> Cc: Neil Armstrong <neil.armstrong@linaro.org>
>> Cc: Nishanth Menon <nm@ti.com>
>> Cc: Olof Johansson <olof@lixom.net>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>>
>> ---
>>
>> Merging idea: Rob/DT bindings
>>
>> Changes in v2
>> =============
>> 1. Hopefully incorporate entire feedback from comments:
>> a. Fix \ { => / { (Rob)
>> b. Name: dts-coding-style (Rob)
>> c. Exceptions for ordering nodes by name for Renesas and pinctrl (Geert,
>> Konrad)
>> d. Ordering properties by common/vendor (Rob)
>> e. Array entries in <> (Rob)
>>
>> 2. New chapter: Organizing DTSI and DTS
>>
>> 3. Several grammar fixes (missing articles)
>>
>> Cc: linux-rockchip@lists.infradead.org
>> Cc: linux-mediatek@lists.infradead.org
>> Cc: linux-samsung-soc@vger.kernel.org
>> Cc: linux-amlogic@lists.infradead.org
>> Cc: linux-arm-kernel@lists.infradead.org
>> Cc: linux-arm-msm@vger.kernel.org
>> ---
>> .../devicetree/bindings/dts-coding-style.rst | 163 ++++++++++++++++++
>> Documentation/devicetree/bindings/index.rst | 1 +
>> 2 files changed, 164 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/dts-coding-style.rst
>>
>> diff --git a/Documentation/devicetree/bindings/dts-coding-style.rst b/Documentation/devicetree/bindings/dts-coding-style.rst
>> new file mode 100644
>> index 000000000000..cc7e3b4d1b92
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/dts-coding-style.rst
>> @@ -0,0 +1,163 @@
>> +.. SPDX-License-Identifier: GPL-2.0
>> +.. _dtscodingstyle:
>> +
>> +=====================================
>> +Devicetree Sources (DTS) Coding Style
>> +=====================================
>> +
>> +When writing Devicetree Sources (DTS) please observe below guidelines. They
>> +should be considered complementary to any rules expressed already in Devicetree
>> +Specification and dtc compiler (including W=1 and W=2 builds).
>> +
>> +Individual architectures and sub-architectures can add additional rules, making
>> +the style stricter.
>> +
>> +Naming and Valid Characters
>> +---------------------------
>> +
>> +1. Node and property names are allowed to use only:
>> +
>> + * lowercase characters: [a-z]
>> + * digits: [0-9]
>> + * dash: -
>> +
>> +2. Labels are allowed to use only:
>> +
>> + * lowercase characters: [a-z]
>> + * digits: [0-9]
>> + * underscore: _
>> +
>> +3. Unit addresses should use lowercase hex, without leading zeros (padding).
>
> This is imperative, so: s/should/shall/g
Sure, fine.
>
>> +
>> +4. Hex values in properties, e.g. "reg", should use lowercase hex. The address
>> + part can be padded with leading zeros.
>> +
>
> Same here, I'd say.... :-)
>
>> +Example::
>> +
>> + gpi_dma2: dma-controller@800000 {
>> + compatible = "qcom,sm8550-gpi-dma", "qcom,sm6350-gpi-dma";
>> + reg = <0x0 0x00800000 0x0 0x60000>;
>> + }
>> +
>> +Order of Nodes
>> +--------------
>> +
>> +1. Nodes within any bus, thus using unit addresses for children, shall be
>> + ordered incrementally by unit address.
>> + Alternatively for some sub-architectures, nodes of the same type can be
>> + grouped together (e.g. all I2C controllers one after another even if this
>> + breaks unit address ordering).
>> +
>> +2. Nodes without unit addresses should be ordered alpha-numerically by the node
>> + name. For a few types of nodes, they can be ordered by the main property
>> + (e.g. pin configuration states ordered by value of "pins" property).
>> +
>> +3. When extending nodes in the board DTS via &label, the entries should be
>> + ordered alpha-numerically.
>> +
>> +Example::
>> +
>
> Hmm, comments!
>
>> + // SoC DTSI
>
> ....speaking of commenting, should we at least suggest to use C-style comments?
>
> /* SoC DTSI */
I can switch it to C-style in the example, but we are going with Linux
Coding Style which soon will allow // judging by Linus' statements.
>
>> +
>> + / {
>> + cpus {
>> + // ...
>> + };
>> +
>> + psci {
>> + // ...
>> + };
>> +
>> + soc@ {
>> + dma: dma-controller@10000 {
>> + // ...
>> + };
>> +
>> + clk: clock-controller@80000 {
>> + // ...
>> + };
>> + };
>> + };
>> +
>> + // Board DTS
>> +
>> + &clk {
>> + // ...
>> + };
>> +
>> + &dma {
>> + // ...
>> + };
>> +
>> +
>> +Order of Properties in Device Node
>> +----------------------------------
>> +
>> +Following order of properties in device nodes is preferred:
>> +
>> +1. compatible
>> +2. reg
>> +3. ranges
>> +4. Standard/common properties (defined by common bindings, e.g. without
>> + vendor-prefixes)
>> +5. Vendor-specific properties
>> +6. status (if applicable)
>> +7. Child nodes, where each node is preceded with a blank line
>> +
>> +The "status" property is by default "okay", thus it can be omitted.
>> +
>> +Example::
>> +
>> + // SoC DTSI
>> +
>> + usb_1_hsphy: phy@88e3000 {
>> + compatible = "qcom,sm8550-snps-eusb2-phy";
>> + reg = <0x0 0x088e3000 0x0 0x154>;
>> + #phy-cells = <0>;
>> + resets = <&gcc GCC_QUSB2PHY_PRIM_BCR>;
>> + status = "disabled";
>> + };
>
> Since this describes vendor-specific properties and vendor prefixes as well
> as standard properties, I think it would be clearer if we use something more
> complex that actually contains those as an example.
>
> There's a few. One is MediaTek:
>
> vdo1_rdma0: dma-controller@1c104000 {
> compatible = "mediatek,mt8195-vdo1-rdma";
> reg = <0 0x1c104000 0 0x1000>;
> #dma-cells = <1>;
> clocks = <&vdosys1 CLK_VDO1_MDP_RDMA0>;
> interrupts = <GIC_SPI 495 IRQ_TYPE_LEVEL_HIGH 0>;
> iommus = <&iommu_vdo M4U_PORT_L2_MDP_RDMA0>;
> power-domains = <&spm MT8195_POWER_DOMAIN_VDOSYS1>;
> mediatek,gce-client-reg = <&gce0 SUBSYS_1c10XXXX 0x4000 0x1000>;
> };
>
> ...or other one can be nVidia:
>
> mipi: mipi@700e3000 {
> compatible = "nvidia,tegra210-mipi";
> reg = <0x0 0x700e3000 0x0 0x100>;
> clocks = <&tegra_car TEGRA210_CLK_MIPI_CAL>;
> clock-names = "mipi-cal";
> power-domains = <&pd_sor>;
> #nvidia,mipi-calibrate-cells = <1>;
> };
>
> ...or we could make an example out of fantasy, which could work even better
> as far as describing goes.
>
> /* SoC DTSI */
>
> device_node: device-class@6789abc {
> compatible = "vendor,device";
Yep. I'll use this, unless checkpatch complains about undocumented
compatible. :) This allows to show the child node.
> reg = <0 0x06789abc 0 0xa123>;
> ranges = <0 0 0x6789abc 0x1000>;
> #dma-cells = <1>;
> clocks = <&clock_controller SOC_CLOCK>;
> clock-names = "dev-clk";
> #vendor,custom-cells = <2>;
> status = "disabled";
>
> child_node: child-class@100 {
> reg = <0x100 0x200>;
> /* ... */
> };
> };
>
> /* Board DTS */
>
> &device_node {
> device-supply = <&board_vreg1>;
> status = "okay";
> }
>
>> +
>> + // Board DTS
>> +
>> + &usb_1_hsphy {
>> + clocks = <&tcsr TCSR_USB2_CLKREF_EN>;
>> + clock-names = "ref";
>> + status = "okay";
>> + };
>> +
>> +
>> +Indentation
>> +-----------
>> +
>> +1. Use indentation according to :ref:`codingstyle`.
>> +2. For arrays spanning across lines, it is preferred to align the continued
>> + entries with opening < from the first line.
>> +3. Each entry in arrays with multiple cells (e.g. "reg" with two IO addresses)
>> + should be enclosed in <>.
>> +
>> +Example::
>> +
>> + thermal-sensor@c271000 {
>> + compatible = "qcom,sm8550-tsens", "qcom,tsens-v2";
>> + reg = <0x0 0x0c271000 0x0 0x1000>,
>> + <0x0 0x0c222000 0x0 0x1000>;
>> + };
>> +
>> +Organizing DTSI and DTS
>> +-----------------------
>> +
>> +The DTSI and DTS files should be organized in a way representing the common
>> +(and re-usable) parts of the hardware. Typically this means organizing DTSI
>
> ^^^^
> There's a double space here, it was probably unintentional.
I think I used everywhere double-spaces. At least this was my intention,
so I will fix single-spaces :)
Best regards,
Krzysztof
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2023-11-20 14:58 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-20 8:40 [PATCH v2] docs: dt-bindings: add DTS Coding Style document Krzysztof Kozlowski
2023-11-20 9:04 ` Neil Armstrong
2023-11-20 9:38 ` Heiko Stübner
2023-11-20 11:43 ` AngeloGioacchino Del Regno
2023-11-20 14:57 ` Krzysztof Kozlowski [this message]
2023-11-21 10:25 ` AngeloGioacchino Del Regno
2023-11-20 14:01 ` Michal Simek
2023-11-20 14:53 ` Krzysztof Kozlowski
2023-11-20 19:18 ` Geert Uytterhoeven
2023-11-20 19:31 ` Krzysztof Kozlowski
2023-11-21 7:33 ` Michal Simek
2023-11-21 7:47 ` Krzysztof Kozlowski
2023-11-21 8:08 ` Geert Uytterhoeven
2023-11-21 8:37 ` Krzysztof Kozlowski
2023-11-21 10:13 ` Dmitry Baryshkov
2023-11-21 10:28 ` Krzysztof Kozlowski
2023-11-21 11:53 ` Michal Simek
2023-11-21 11:55 ` Michal Simek
2023-11-21 12:36 ` Krzysztof Kozlowski
2023-11-21 16:04 ` Geert Uytterhoeven
2023-11-22 8:01 ` Krzysztof Kozlowski
2023-11-22 8:15 ` Dragan Simic
2023-11-20 20:15 ` Andrew Lunn
2023-11-21 7:36 ` Michal Simek
2023-11-21 7:47 ` Krzysztof Kozlowski
2023-11-22 8:18 ` Krzysztof Kozlowski
2023-11-21 13:50 ` Rafał Miłecki
2023-11-22 8:05 ` Krzysztof Kozlowski
2023-11-22 8:09 ` Chen-Yu Tsai
2023-11-22 8:21 ` Krzysztof Kozlowski
2023-11-22 8:28 ` Geert Uytterhoeven
2023-11-22 8:29 ` Dragan Simic
2023-11-22 8:49 ` Michal Simek
2023-11-22 8:53 ` Geert Uytterhoeven
2023-11-22 8:57 ` Michal Simek
2023-11-22 9:09 ` Krzysztof Kozlowski
2023-11-22 14:34 ` Rob Herring
2023-11-22 14:42 ` Dragan Simic
2023-11-22 8:59 ` Dragan Simic
2023-11-22 14:55 ` Rob Herring
2023-11-25 18:44 ` Krzysztof Kozlowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e8483375-cace-473c-aba7-1cd60feae242@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=afd@ti.com \
--cc=andersson@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arnd@arndb.de \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=heiko@sntech.de \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=michal.simek@amd.com \
--cc=neil.armstrong@linaro.org \
--cc=nm@ti.com \
--cc=olof@lixom.net \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).