1.. SPDX-License-Identifier: GPL-2.0 2 3===================================== 4Devicetree Sources (DTS) Coding Style 5===================================== 6 7When writing Devicetree Sources (DTS) please observe below guidelines. They 8should be considered complementary to any rules expressed already in 9the Devicetree Specification and the dtc compiler (including W=1 and W=2 10builds). 11 12Individual architectures and subarchitectures can define additional rules, 13making the coding style stricter. 14 15Naming and Valid Characters 16--------------------------- 17 18The Devicetree Specification allows a broad range of characters in node 19and property names, but this coding style narrows the range down to achieve 20better code readability. 21 221. Node and property names can use only the following characters: 23 24 * Lowercase characters: [a-z] 25 * Digits: [0-9] 26 * Dash: - 27 282. Labels can use only the following characters: 29 30 * Lowercase characters: [a-z] 31 * Digits: [0-9] 32 * Underscore: _ 33 343. Unless a bus defines differently, unit addresses shall use lowercase 35 hexadecimal digits, without leading zeros (padding). 36 374. Hex values in properties, e.g. "reg", shall use lowercase hex. The address 38 part can be padded with leading zeros. 39 40Example:: 41 42 gpi_dma2: dma-controller@a00000 { 43 compatible = "qcom,sm8550-gpi-dma", "qcom,sm6350-gpi-dma"; 44 reg = <0x0 0x00a00000 0x0 0x60000>; 45 } 46 47Order of Nodes 48-------------- 49 501. Nodes on any bus, thus using unit addresses for children, shall be 51 ordered by unit address in ascending order. 52 Alternatively for some subarchitectures, nodes of the same type can be 53 grouped together, e.g. all I2C controllers one after another even if this 54 breaks unit address ordering. 55 562. Nodes without unit addresses shall be ordered alpha-numerically by the node 57 name. For a few node types, they can be ordered by the main property, e.g. 58 pin configuration states ordered by value of "pins" property. 59 603. When extending nodes in the board DTS via &label, the entries shall be 61 ordered either alpha-numerically or by keeping the order from DTSI, where 62 the choice depends on the subarchitecture. 63 64The above-described ordering rules are easy to enforce during review, reduce 65chances of conflicts for simultaneous additions of new nodes to a file and help 66in navigating through the DTS source. 67 68Example:: 69 70 /* SoC DTSI */ 71 72 / { 73 cpus { 74 /* ... */ 75 }; 76 77 psci { 78 /* ... */ 79 }; 80 81 soc@0 { 82 dma: dma-controller@10000 { 83 /* ... */ 84 }; 85 86 clk: clock-controller@80000 { 87 /* ... */ 88 }; 89 }; 90 }; 91 92 /* Board DTS - alphabetical order */ 93 94 &clk { 95 /* ... */ 96 }; 97 98 &dma { 99 /* ... */ 100 }; 101 102 /* Board DTS - alternative order, keep as DTSI */ 103 104 &dma { 105 /* ... */ 106 }; 107 108 &clk { 109 /* ... */ 110 }; 111 112Order of Properties in Device Node 113---------------------------------- 114 115The following order of properties in device nodes is preferred: 116 1171. "device_type" (if applicable) 1182. "compatible" 1193. "reg" 1204. "ranges" 1215. Standard/common properties (defined by common bindings, e.g. without 122 vendor-prefixes) 1236. Vendor-specific properties 1247. "status" (if applicable), preceded by a blank line if there is content 125 before the property 1268. Child nodes, where each node is preceded with a blank line 127 128The "status" property is by default "okay", thus it can be omitted. 129 130The above-described ordering follows this approach: 131 1321. Most important properties start the node: compatible then bus addressing to 133 match unit address. 1342. Each node will have common properties in similar place. 1353. Status is the last information to annotate that device node is or is not 136 finished (board resources are needed). 137 138The individual properties inside each group shall use natural sort order by 139the property name. 140 141Example:: 142 143 /* SoC DTSI */ 144 145 device_node: device-class@6789abc { 146 compatible = "vendor,device"; 147 reg = <0x0 0x06789abc 0x0 0xa123>; 148 ranges = <0x0 0x0 0x06789abc 0x1000>; 149 #dma-cells = <1>; 150 clocks = <&clock_controller 0>, <&clock_controller 1>; 151 clock-names = "bus", "host"; 152 #address-cells = <1>; 153 #size-cells = <1>; 154 vendor,custom-property = <2>; 155 156 status = "disabled"; 157 158 child_node: child-class@100 { 159 reg = <0x100 0x200>; 160 /* ... */ 161 }; 162 }; 163 164 /* Board DTS */ 165 166 &device_node { 167 vdd-0v9-supply = <&board_vreg1>; 168 vdd-1v8-supply = <&board_vreg4>; 169 vdd-3v3-supply = <&board_vreg2>; 170 vdd-12v-supply = <&board_vreg3>; 171 172 status = "okay"; 173 } 174 175Indentation and wrapping 176------------------------ 177 1781. Use indentation and wrap lines according to 179 Documentation/process/coding-style.rst. 1802. Each entry in arrays with multiple cells, e.g. "reg" with two IO addresses, 181 shall be enclosed in <>. 1823. For arrays spanning across lines, it is preferred to split on item boundary 183 and align the continued entries with opening < from the first line. 184 Usually avoid splitting individual items unless they significantly exceed 185 line wrap limit. 186 187Example:: 188 189 thermal-sensor@c271000 { 190 compatible = "qcom,sm8550-tsens", "qcom,tsens-v2"; 191 reg = <0x0 0x0c271000 0x0 0x1000>, 192 <0x0 0x0c222000 0x0 0x1000>; 193 /* Lines exceeding coding style line wrap limit: */ 194 interconnects = <&aggre1_noc MASTER_USB3_0 0 &mc_virt SLAVE_EBI1 0>, 195 <&gem_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_USB3_0 0>; 196 }; 197 198Organizing DTSI and DTS 199----------------------- 200 201The DTSI and DTS files shall be organized in a way representing the common, 202reusable parts of hardware. Typically, this means organizing DTSI and DTS files 203into several files: 204 2051. DTSI with contents of the entire SoC, without nodes for hardware not present 206 on the SoC. 2072. If applicable: DTSI with common or re-usable parts of the hardware, e.g. 208 entire System-on-Module. 2093. DTS representing the board. 210 211Hardware components that are present on the board shall be placed in the 212board DTS, not in the SoC or SoM DTSI. A partial exception is a common 213external reference SoC input clock, which could be coded as a fixed-clock in 214the SoC DTSI with its frequency provided by each board DTS. 215