blob: 3e7db5191516ee68a7aea716144ce922a02c478e [file] [log] [blame]
Maxime Ripard8aed3b32013-03-10 16:09:06 +01001/*
2 * Copyright 2013 Maxime Ripard
3 *
4 * Maxime Ripard <maxime.ripard@free-electrons.com>
5 *
Maxime Ripard6c3ba722014-09-02 19:25:26 +02006 * This file is dual-licensed: you can use it either under the terms
7 * of the GPL or the X11 license, at your option. Note that this dual
8 * licensing only applies to this file, and not this project as a
9 * whole.
Maxime Ripard8aed3b32013-03-10 16:09:06 +010010 *
Maxime Ripard5186d832014-10-17 11:38:23 +020011 * a) This file is free software; you can redistribute it and/or
Maxime Ripard6c3ba722014-09-02 19:25:26 +020012 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
Maxime Ripard5186d832014-10-17 11:38:23 +020016 * This file is distributed in the hope that it will be useful,
Maxime Ripard6c3ba722014-09-02 19:25:26 +020017 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public
Maxime Ripard5186d832014-10-17 11:38:23 +020022 * License along with this file; if not, write to the Free
Maxime Ripard6c3ba722014-09-02 19:25:26 +020023 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
24 * MA 02110-1301 USA
25 *
26 * Or, alternatively,
27 *
28 * b) Permission is hereby granted, free of charge, to any person
29 * obtaining a copy of this software and associated documentation
30 * files (the "Software"), to deal in the Software without
31 * restriction, including without limitation the rights to use,
32 * copy, modify, merge, publish, distribute, sublicense, and/or
33 * sell copies of the Software, and to permit persons to whom the
34 * Software is furnished to do so, subject to the following
35 * conditions:
36 *
37 * The above copyright notice and this permission notice shall be
38 * included in all copies or substantial portions of the Software.
39 *
40 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
41 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
42 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
43 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
44 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
45 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
46 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
47 * OTHER DEALINGS IN THE SOFTWARE.
Maxime Ripard8aed3b32013-03-10 16:09:06 +010048 */
49
50/include/ "skeleton.dtsi"
51
52/ {
53 interrupt-parent = <&gic>;
54
Maxime Ripard54428d42014-01-02 22:05:04 +010055 aliases {
56 serial0 = &uart0;
57 serial1 = &uart1;
58 serial2 = &uart2;
59 serial3 = &uart3;
60 serial4 = &uart4;
61 serial5 = &uart5;
Chen-Yu Tsaie5073fd2014-07-16 01:15:46 +080062 ethernet0 = &gmac;
Maxime Ripard54428d42014-01-02 22:05:04 +010063 };
64
Hans de Goedee53a8b22014-11-14 16:34:36 +010065 chosen {
66 #address-cells = <1>;
67 #size-cells = <1>;
68 ranges;
69
Hans de Goedea9f8cda2014-11-18 12:07:13 +010070 framebuffer@0 {
71 compatible = "allwinner,simple-framebuffer", "simple-framebuffer";
72 allwinner,pipeline = "de_be0-lcd0-hdmi";
Hans de Goede678e75d2014-11-16 17:09:32 +010073 clocks = <&pll6 0>;
Hans de Goedee53a8b22014-11-14 16:34:36 +010074 status = "disabled";
75 };
76 };
Maxime Ripard54428d42014-01-02 22:05:04 +010077
Maxime Ripard8aed3b32013-03-10 16:09:06 +010078 cpus {
Maxime Ripardce78e352014-04-18 21:01:52 +020079 enable-method = "allwinner,sun6i-a31";
Maxime Ripard8aed3b32013-03-10 16:09:06 +010080 #address-cells = <1>;
81 #size-cells = <0>;
82
83 cpu@0 {
84 compatible = "arm,cortex-a7";
85 device_type = "cpu";
86 reg = <0>;
87 };
88
89 cpu@1 {
90 compatible = "arm,cortex-a7";
91 device_type = "cpu";
92 reg = <1>;
93 };
94
95 cpu@2 {
96 compatible = "arm,cortex-a7";
97 device_type = "cpu";
98 reg = <2>;
99 };
100
101 cpu@3 {
102 compatible = "arm,cortex-a7";
103 device_type = "cpu";
104 reg = <3>;
105 };
106 };
107
108 memory {
109 reg = <0x40000000 0x80000000>;
110 };
111
Maxime Ripardb5a10b72014-04-17 21:54:41 +0200112 pmu {
113 compatible = "arm,cortex-a7-pmu", "arm,cortex-a15-pmu";
114 interrupts = <0 120 4>,
115 <0 121 4>,
116 <0 122 4>,
117 <0 123 4>;
118 };
119
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100120 clocks {
121 #address-cells = <1>;
Maxime Ripard98096562013-07-23 23:54:19 +0200122 #size-cells = <1>;
123 ranges;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100124
Maxime Ripard98096562013-07-23 23:54:19 +0200125 osc24M: osc24M {
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100126 #clock-cells = <0>;
127 compatible = "fixed-clock";
128 clock-frequency = <24000000>;
129 };
Maxime Ripard98096562013-07-23 23:54:19 +0200130
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800131 osc32k: clk@0 {
Maxime Ripard98096562013-07-23 23:54:19 +0200132 #clock-cells = <0>;
133 compatible = "fixed-clock";
134 clock-frequency = <32768>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800135 clock-output-names = "osc32k";
Maxime Ripard98096562013-07-23 23:54:19 +0200136 };
137
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800138 pll1: clk@01c20000 {
Maxime Ripard98096562013-07-23 23:54:19 +0200139 #clock-cells = <0>;
140 compatible = "allwinner,sun6i-a31-pll1-clk";
141 reg = <0x01c20000 0x4>;
142 clocks = <&osc24M>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800143 clock-output-names = "pll1";
Maxime Ripard98096562013-07-23 23:54:19 +0200144 };
145
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100146 pll6: clk@01c20028 {
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800147 #clock-cells = <1>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100148 compatible = "allwinner,sun6i-a31-pll6-clk";
149 reg = <0x01c20028 0x4>;
150 clocks = <&osc24M>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800151 clock-output-names = "pll6", "pll6x2";
Maxime Ripard98096562013-07-23 23:54:19 +0200152 };
153
154 cpu: cpu@01c20050 {
155 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100156 compatible = "allwinner,sun4i-a10-cpu-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200157 reg = <0x01c20050 0x4>;
158
159 /*
160 * PLL1 is listed twice here.
161 * While it looks suspicious, it's actually documented
162 * that way both in the datasheet and in the code from
163 * Allwinner.
164 */
165 clocks = <&osc32k>, <&osc24M>, <&pll1>, <&pll1>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800166 clock-output-names = "cpu";
Maxime Ripard98096562013-07-23 23:54:19 +0200167 };
168
169 axi: axi@01c20050 {
170 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100171 compatible = "allwinner,sun4i-a10-axi-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200172 reg = <0x01c20050 0x4>;
173 clocks = <&cpu>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800174 clock-output-names = "axi";
Maxime Ripard98096562013-07-23 23:54:19 +0200175 };
176
Maxime Ripard98096562013-07-23 23:54:19 +0200177 ahb1: ahb1@01c20054 {
178 #clock-cells = <0>;
Chen-Yu Tsai42cc7132014-11-26 15:16:53 +0800179 compatible = "allwinner,sun6i-a31-ahb1-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200180 reg = <0x01c20054 0x4>;
Chen-Yu Tsai42cc7132014-11-26 15:16:53 +0800181 clocks = <&osc32k>, <&osc24M>, <&axi>, <&pll6 0>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800182 clock-output-names = "ahb1";
Maxime Ripard98096562013-07-23 23:54:19 +0200183 };
184
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800185 ahb1_gates: clk@01c20060 {
Maxime Ripard98096562013-07-23 23:54:19 +0200186 #clock-cells = <1>;
187 compatible = "allwinner,sun6i-a31-ahb1-gates-clk";
188 reg = <0x01c20060 0x8>;
189 clocks = <&ahb1>;
190 clock-output-names = "ahb1_mipidsi", "ahb1_ss",
191 "ahb1_dma", "ahb1_mmc0", "ahb1_mmc1",
192 "ahb1_mmc2", "ahb1_mmc3", "ahb1_nand1",
193 "ahb1_nand0", "ahb1_sdram",
194 "ahb1_gmac", "ahb1_ts", "ahb1_hstimer",
195 "ahb1_spi0", "ahb1_spi1", "ahb1_spi2",
196 "ahb1_spi3", "ahb1_otg", "ahb1_ehci0",
197 "ahb1_ehci1", "ahb1_ohci0",
198 "ahb1_ohci1", "ahb1_ohci2", "ahb1_ve",
199 "ahb1_lcd0", "ahb1_lcd1", "ahb1_csi",
200 "ahb1_hdmi", "ahb1_de0", "ahb1_de1",
201 "ahb1_fe0", "ahb1_fe1", "ahb1_mp",
202 "ahb1_gpu", "ahb1_deu0", "ahb1_deu1",
203 "ahb1_drc0", "ahb1_drc1";
204 };
205
206 apb1: apb1@01c20054 {
207 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100208 compatible = "allwinner,sun4i-a10-apb0-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200209 reg = <0x01c20054 0x4>;
210 clocks = <&ahb1>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800211 clock-output-names = "apb1";
Maxime Ripard98096562013-07-23 23:54:19 +0200212 };
213
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800214 apb1_gates: clk@01c20068 {
Maxime Ripard98096562013-07-23 23:54:19 +0200215 #clock-cells = <1>;
216 compatible = "allwinner,sun6i-a31-apb1-gates-clk";
217 reg = <0x01c20068 0x4>;
218 clocks = <&apb1>;
219 clock-output-names = "apb1_codec", "apb1_digital_mic",
220 "apb1_pio", "apb1_daudio0",
221 "apb1_daudio1";
222 };
223
Chen-Yu Tsai74c947a2014-11-06 11:40:31 +0800224 apb2: clk@01c20058 {
Maxime Ripard98096562013-07-23 23:54:19 +0200225 #clock-cells = <0>;
Chen-Yu Tsai74c947a2014-11-06 11:40:31 +0800226 compatible = "allwinner,sun4i-a10-apb1-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200227 reg = <0x01c20058 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800228 clocks = <&osc32k>, <&osc24M>, <&pll6 0>, <&pll6 0>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800229 clock-output-names = "apb2";
Maxime Ripard98096562013-07-23 23:54:19 +0200230 };
231
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800232 apb2_gates: clk@01c2006c {
Maxime Ripard98096562013-07-23 23:54:19 +0200233 #clock-cells = <1>;
234 compatible = "allwinner,sun6i-a31-apb2-gates-clk";
Maxime Ripard439d9f52013-09-24 16:30:05 +0300235 reg = <0x01c2006c 0x4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200236 clocks = <&apb2>;
237 clock-output-names = "apb2_i2c0", "apb2_i2c1",
238 "apb2_i2c2", "apb2_i2c3", "apb2_uart0",
239 "apb2_uart1", "apb2_uart2", "apb2_uart3",
240 "apb2_uart4", "apb2_uart5";
241 };
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100242
Hans de Goedeadc54c82014-05-02 17:57:23 +0200243 mmc0_clk: clk@01c20088 {
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200244 #clock-cells = <1>;
245 compatible = "allwinner,sun4i-a10-mmc-clk";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200246 reg = <0x01c20088 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800247 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200248 clock-output-names = "mmc0",
249 "mmc0_output",
250 "mmc0_sample";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200251 };
252
253 mmc1_clk: clk@01c2008c {
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200254 #clock-cells = <1>;
255 compatible = "allwinner,sun4i-a10-mmc-clk";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200256 reg = <0x01c2008c 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800257 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200258 clock-output-names = "mmc1",
259 "mmc1_output",
260 "mmc1_sample";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200261 };
262
263 mmc2_clk: clk@01c20090 {
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200264 #clock-cells = <1>;
265 compatible = "allwinner,sun4i-a10-mmc-clk";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200266 reg = <0x01c20090 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800267 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200268 clock-output-names = "mmc2",
269 "mmc2_output",
270 "mmc2_sample";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200271 };
272
273 mmc3_clk: clk@01c20094 {
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200274 #clock-cells = <1>;
275 compatible = "allwinner,sun4i-a10-mmc-clk";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200276 reg = <0x01c20094 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800277 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200278 clock-output-names = "mmc3",
279 "mmc3_output",
280 "mmc3_sample";
Hans de Goedeadc54c82014-05-02 17:57:23 +0200281 };
282
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100283 spi0_clk: clk@01c200a0 {
284 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100285 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100286 reg = <0x01c200a0 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800287 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100288 clock-output-names = "spi0";
289 };
290
291 spi1_clk: clk@01c200a4 {
292 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100293 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100294 reg = <0x01c200a4 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800295 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100296 clock-output-names = "spi1";
297 };
298
299 spi2_clk: clk@01c200a8 {
300 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100301 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100302 reg = <0x01c200a8 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800303 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100304 clock-output-names = "spi2";
305 };
306
307 spi3_clk: clk@01c200ac {
308 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100309 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100310 reg = <0x01c200ac 0x4>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800311 clocks = <&osc24M>, <&pll6 0>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100312 clock-output-names = "spi3";
313 };
Maxime Ripard94a1cd12014-05-13 17:44:16 +0200314
315 usb_clk: clk@01c200cc {
316 #clock-cells = <1>;
317 #reset-cells = <1>;
318 compatible = "allwinner,sun6i-a31-usb-clk";
319 reg = <0x01c200cc 0x4>;
320 clocks = <&osc24M>;
321 clock-output-names = "usb_phy0", "usb_phy1", "usb_phy2",
322 "usb_ohci0", "usb_ohci1",
323 "usb_ohci2";
324 };
Chen-Yu Tsaied298612014-07-16 01:15:44 +0800325
326 /*
327 * The following two are dummy clocks, placeholders used in the gmac_tx
328 * clock. The gmac driver will choose one parent depending on the PHY
329 * interface mode, using clk_set_rate auto-reparenting.
330 * The actual TX clock rate is not controlled by the gmac_tx clock.
331 */
332 mii_phy_tx_clk: clk@1 {
333 #clock-cells = <0>;
334 compatible = "fixed-clock";
335 clock-frequency = <25000000>;
336 clock-output-names = "mii_phy_tx";
337 };
338
339 gmac_int_tx_clk: clk@2 {
340 #clock-cells = <0>;
341 compatible = "fixed-clock";
342 clock-frequency = <125000000>;
343 clock-output-names = "gmac_int_tx";
344 };
345
346 gmac_tx_clk: clk@01c200d0 {
347 #clock-cells = <0>;
348 compatible = "allwinner,sun7i-a20-gmac-clk";
349 reg = <0x01c200d0 0x4>;
350 clocks = <&mii_phy_tx_clk>, <&gmac_int_tx_clk>;
351 clock-output-names = "gmac_tx";
352 };
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100353 };
354
355 soc@01c00000 {
356 compatible = "simple-bus";
357 #address-cells = <1>;
358 #size-cells = <1>;
359 ranges;
360
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100361 dma: dma-controller@01c02000 {
362 compatible = "allwinner,sun6i-a31-dma";
363 reg = <0x01c02000 0x1000>;
364 interrupts = <0 50 4>;
365 clocks = <&ahb1_gates 6>;
366 resets = <&ahb1_rst 6>;
367 #dma-cells = <1>;
Chen-Yu Tsai532425a2014-11-06 19:56:49 +0800368
369 /* DMA controller requires AHB1 clocked from PLL6 */
Chen-Yu Tsai42cc7132014-11-26 15:16:53 +0800370 assigned-clocks = <&ahb1>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800371 assigned-clock-parents = <&pll6 0>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100372 };
373
Hans de Goede5b753f02014-05-02 17:57:24 +0200374 mmc0: mmc@01c0f000 {
375 compatible = "allwinner,sun5i-a13-mmc";
376 reg = <0x01c0f000 0x1000>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200377 clocks = <&ahb1_gates 8>,
378 <&mmc0_clk 0>,
379 <&mmc0_clk 1>,
380 <&mmc0_clk 2>;
381 clock-names = "ahb",
382 "mmc",
383 "output",
384 "sample";
Hans de Goede5b753f02014-05-02 17:57:24 +0200385 resets = <&ahb1_rst 8>;
386 reset-names = "ahb";
387 interrupts = <0 60 4>;
388 status = "disabled";
389 };
390
391 mmc1: mmc@01c10000 {
392 compatible = "allwinner,sun5i-a13-mmc";
393 reg = <0x01c10000 0x1000>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200394 clocks = <&ahb1_gates 9>,
395 <&mmc1_clk 0>,
396 <&mmc1_clk 1>,
397 <&mmc1_clk 2>;
398 clock-names = "ahb",
399 "mmc",
400 "output",
401 "sample";
Hans de Goede5b753f02014-05-02 17:57:24 +0200402 resets = <&ahb1_rst 9>;
403 reset-names = "ahb";
404 interrupts = <0 61 4>;
405 status = "disabled";
406 };
407
408 mmc2: mmc@01c11000 {
409 compatible = "allwinner,sun5i-a13-mmc";
410 reg = <0x01c11000 0x1000>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200411 clocks = <&ahb1_gates 10>,
412 <&mmc2_clk 0>,
413 <&mmc2_clk 1>,
414 <&mmc2_clk 2>;
415 clock-names = "ahb",
416 "mmc",
417 "output",
418 "sample";
Hans de Goede5b753f02014-05-02 17:57:24 +0200419 resets = <&ahb1_rst 10>;
420 reset-names = "ahb";
421 interrupts = <0 62 4>;
422 status = "disabled";
423 };
424
425 mmc3: mmc@01c12000 {
426 compatible = "allwinner,sun5i-a13-mmc";
427 reg = <0x01c12000 0x1000>;
Maxime Ripardd8c3a392014-07-11 19:39:06 +0200428 clocks = <&ahb1_gates 11>,
429 <&mmc3_clk 0>,
430 <&mmc3_clk 1>,
431 <&mmc3_clk 2>;
432 clock-names = "ahb",
433 "mmc",
434 "output",
435 "sample";
Hans de Goede5b753f02014-05-02 17:57:24 +0200436 resets = <&ahb1_rst 11>;
437 reset-names = "ahb";
438 interrupts = <0 63 4>;
439 status = "disabled";
440 };
441
Maxime Ripardef964082014-05-13 17:44:21 +0200442 usbphy: phy@01c19400 {
443 compatible = "allwinner,sun6i-a31-usb-phy";
444 reg = <0x01c19400 0x10>,
445 <0x01c1a800 0x4>,
446 <0x01c1b800 0x4>;
447 reg-names = "phy_ctrl",
448 "pmu1",
449 "pmu2";
450 clocks = <&usb_clk 8>,
451 <&usb_clk 9>,
452 <&usb_clk 10>;
453 clock-names = "usb0_phy",
454 "usb1_phy",
455 "usb2_phy";
456 resets = <&usb_clk 0>,
457 <&usb_clk 1>,
458 <&usb_clk 2>;
459 reset-names = "usb0_reset",
460 "usb1_reset",
461 "usb2_reset";
462 status = "disabled";
463 #phy-cells = <1>;
464 };
465
466 ehci0: usb@01c1a000 {
467 compatible = "allwinner,sun6i-a31-ehci", "generic-ehci";
468 reg = <0x01c1a000 0x100>;
469 interrupts = <0 72 4>;
470 clocks = <&ahb1_gates 26>;
471 resets = <&ahb1_rst 26>;
472 phys = <&usbphy 1>;
473 phy-names = "usb";
474 status = "disabled";
475 };
476
477 ohci0: usb@01c1a400 {
478 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
479 reg = <0x01c1a400 0x100>;
480 interrupts = <0 73 4>;
481 clocks = <&ahb1_gates 29>, <&usb_clk 16>;
482 resets = <&ahb1_rst 29>;
483 phys = <&usbphy 1>;
484 phy-names = "usb";
485 status = "disabled";
486 };
487
488 ehci1: usb@01c1b000 {
489 compatible = "allwinner,sun6i-a31-ehci", "generic-ehci";
490 reg = <0x01c1b000 0x100>;
491 interrupts = <0 74 4>;
492 clocks = <&ahb1_gates 27>;
493 resets = <&ahb1_rst 27>;
494 phys = <&usbphy 2>;
495 phy-names = "usb";
496 status = "disabled";
497 };
498
499 ohci1: usb@01c1b400 {
500 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
501 reg = <0x01c1b400 0x100>;
502 interrupts = <0 75 4>;
503 clocks = <&ahb1_gates 30>, <&usb_clk 17>;
504 resets = <&ahb1_rst 30>;
505 phys = <&usbphy 2>;
506 phy-names = "usb";
507 status = "disabled";
508 };
509
Maxime Ripardb294ebb2014-05-20 13:59:58 +0200510 ohci2: usb@01c1c400 {
Maxime Ripardef964082014-05-13 17:44:21 +0200511 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
512 reg = <0x01c1c400 0x100>;
513 interrupts = <0 77 4>;
514 clocks = <&ahb1_gates 31>, <&usb_clk 18>;
515 resets = <&ahb1_rst 31>;
516 status = "disabled";
517 };
518
Maxime Ripard140e1722013-03-12 22:16:05 +0100519 pio: pinctrl@01c20800 {
520 compatible = "allwinner,sun6i-a31-pinctrl";
521 reg = <0x01c20800 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100522 interrupts = <0 11 4>,
523 <0 15 4>,
524 <0 16 4>,
525 <0 17 4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200526 clocks = <&apb1_gates 5>;
Maxime Ripard140e1722013-03-12 22:16:05 +0100527 gpio-controller;
528 interrupt-controller;
Chen-Yu Tsai7d4ff962014-06-30 23:57:51 +0200529 #interrupt-cells = <2>;
Maxime Ripard140e1722013-03-12 22:16:05 +0100530 #size-cells = <0>;
531 #gpio-cells = <3>;
Maxime Ripardab4238c2013-06-22 23:56:40 +0200532
533 uart0_pins_a: uart0@0 {
534 allwinner,pins = "PH20", "PH21";
535 allwinner,function = "uart0";
536 allwinner,drive = <0>;
537 allwinner,pull = <0>;
538 };
Maxime Ripard8be188b2014-03-04 17:28:40 +0100539
540 i2c0_pins_a: i2c0@0 {
541 allwinner,pins = "PH14", "PH15";
542 allwinner,function = "i2c0";
543 allwinner,drive = <0>;
544 allwinner,pull = <0>;
545 };
546
547 i2c1_pins_a: i2c1@0 {
548 allwinner,pins = "PH16", "PH17";
549 allwinner,function = "i2c1";
550 allwinner,drive = <0>;
551 allwinner,pull = <0>;
552 };
553
554 i2c2_pins_a: i2c2@0 {
555 allwinner,pins = "PH18", "PH19";
556 allwinner,function = "i2c2";
557 allwinner,drive = <0>;
558 allwinner,pull = <0>;
559 };
Hans de Goede9797eb82014-04-26 12:16:16 +0200560
561 mmc0_pins_a: mmc0@0 {
562 allwinner,pins = "PF0","PF1","PF2","PF3","PF4","PF5";
563 allwinner,function = "mmc0";
564 allwinner,drive = <2>;
565 allwinner,pull = <0>;
566 };
Chen-Yu Tsaiee39a3e2014-07-16 01:15:43 +0800567
568 gmac_pins_mii_a: gmac_mii@0 {
569 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
570 "PA8", "PA9", "PA11",
571 "PA12", "PA13", "PA14", "PA19",
572 "PA20", "PA21", "PA22", "PA23",
573 "PA24", "PA26", "PA27";
574 allwinner,function = "gmac";
575 allwinner,drive = <0>;
576 allwinner,pull = <0>;
577 };
578
579 gmac_pins_gmii_a: gmac_gmii@0 {
580 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
581 "PA4", "PA5", "PA6", "PA7",
582 "PA8", "PA9", "PA10", "PA11",
583 "PA12", "PA13", "PA14", "PA15",
584 "PA16", "PA17", "PA18", "PA19",
585 "PA20", "PA21", "PA22", "PA23",
586 "PA24", "PA25", "PA26", "PA27";
587 allwinner,function = "gmac";
588 /*
589 * data lines in GMII mode run at 125MHz and
590 * might need a higher signal drive strength
591 */
592 allwinner,drive = <2>;
593 allwinner,pull = <0>;
594 };
595
596 gmac_pins_rgmii_a: gmac_rgmii@0 {
597 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
598 "PA9", "PA10", "PA11",
599 "PA12", "PA13", "PA14", "PA19",
600 "PA20", "PA25", "PA26", "PA27";
601 allwinner,function = "gmac";
602 /*
603 * data lines in RGMII mode use DDR mode
604 * and need a higher signal drive strength
605 */
606 allwinner,drive = <3>;
607 allwinner,pull = <0>;
608 };
Maxime Ripard140e1722013-03-12 22:16:05 +0100609 };
610
Maxime Ripard24a661e92013-09-24 11:10:41 +0300611 ahb1_rst: reset@01c202c0 {
612 #reset-cells = <1>;
613 compatible = "allwinner,sun6i-a31-ahb1-reset";
614 reg = <0x01c202c0 0xc>;
615 };
616
617 apb1_rst: reset@01c202d0 {
618 #reset-cells = <1>;
619 compatible = "allwinner,sun6i-a31-clock-reset";
620 reg = <0x01c202d0 0x4>;
621 };
622
623 apb2_rst: reset@01c202d8 {
624 #reset-cells = <1>;
625 compatible = "allwinner,sun6i-a31-clock-reset";
626 reg = <0x01c202d8 0x4>;
627 };
628
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100629 timer@01c20c00 {
Maxime Ripardb4f26442014-02-06 10:40:32 +0100630 compatible = "allwinner,sun4i-a10-timer";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100631 reg = <0x01c20c00 0xa0>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100632 interrupts = <0 18 4>,
633 <0 19 4>,
634 <0 20 4>,
635 <0 21 4>,
636 <0 22 4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200637 clocks = <&osc24M>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100638 };
639
640 wdt1: watchdog@01c20ca0 {
Maxime Ripardca5d04d2014-02-07 22:29:26 +0100641 compatible = "allwinner,sun6i-a31-wdt";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100642 reg = <0x01c20ca0 0x20>;
643 };
644
645 uart0: serial@01c28000 {
646 compatible = "snps,dw-apb-uart";
647 reg = <0x01c28000 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100648 interrupts = <0 0 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100649 reg-shift = <2>;
650 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200651 clocks = <&apb2_gates 16>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300652 resets = <&apb2_rst 16>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100653 dmas = <&dma 6>, <&dma 6>;
654 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100655 status = "disabled";
656 };
657
658 uart1: serial@01c28400 {
659 compatible = "snps,dw-apb-uart";
660 reg = <0x01c28400 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100661 interrupts = <0 1 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100662 reg-shift = <2>;
663 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200664 clocks = <&apb2_gates 17>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300665 resets = <&apb2_rst 17>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100666 dmas = <&dma 7>, <&dma 7>;
667 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100668 status = "disabled";
669 };
670
671 uart2: serial@01c28800 {
672 compatible = "snps,dw-apb-uart";
673 reg = <0x01c28800 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100674 interrupts = <0 2 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100675 reg-shift = <2>;
676 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200677 clocks = <&apb2_gates 18>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300678 resets = <&apb2_rst 18>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100679 dmas = <&dma 8>, <&dma 8>;
680 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100681 status = "disabled";
682 };
683
684 uart3: serial@01c28c00 {
685 compatible = "snps,dw-apb-uart";
686 reg = <0x01c28c00 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100687 interrupts = <0 3 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100688 reg-shift = <2>;
689 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200690 clocks = <&apb2_gates 19>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300691 resets = <&apb2_rst 19>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100692 dmas = <&dma 9>, <&dma 9>;
693 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100694 status = "disabled";
695 };
696
697 uart4: serial@01c29000 {
698 compatible = "snps,dw-apb-uart";
699 reg = <0x01c29000 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100700 interrupts = <0 4 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100701 reg-shift = <2>;
702 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200703 clocks = <&apb2_gates 20>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300704 resets = <&apb2_rst 20>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100705 dmas = <&dma 10>, <&dma 10>;
706 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100707 status = "disabled";
708 };
709
710 uart5: serial@01c29400 {
711 compatible = "snps,dw-apb-uart";
712 reg = <0x01c29400 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100713 interrupts = <0 5 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100714 reg-shift = <2>;
715 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200716 clocks = <&apb2_gates 21>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300717 resets = <&apb2_rst 21>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100718 dmas = <&dma 22>, <&dma 22>;
719 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100720 status = "disabled";
721 };
722
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100723 i2c0: i2c@01c2ac00 {
724 compatible = "allwinner,sun6i-a31-i2c";
725 reg = <0x01c2ac00 0x400>;
726 interrupts = <0 6 4>;
727 clocks = <&apb2_gates 0>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100728 resets = <&apb2_rst 0>;
729 status = "disabled";
Chen-Yu Tsai495bccf2014-07-21 22:54:27 +0800730 #address-cells = <1>;
731 #size-cells = <0>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100732 };
733
734 i2c1: i2c@01c2b000 {
735 compatible = "allwinner,sun6i-a31-i2c";
736 reg = <0x01c2b000 0x400>;
737 interrupts = <0 7 4>;
738 clocks = <&apb2_gates 1>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100739 resets = <&apb2_rst 1>;
740 status = "disabled";
Chen-Yu Tsai495bccf2014-07-21 22:54:27 +0800741 #address-cells = <1>;
742 #size-cells = <0>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100743 };
744
745 i2c2: i2c@01c2b400 {
746 compatible = "allwinner,sun6i-a31-i2c";
747 reg = <0x01c2b400 0x400>;
748 interrupts = <0 8 4>;
749 clocks = <&apb2_gates 2>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100750 resets = <&apb2_rst 2>;
751 status = "disabled";
Chen-Yu Tsai495bccf2014-07-21 22:54:27 +0800752 #address-cells = <1>;
753 #size-cells = <0>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100754 };
755
756 i2c3: i2c@01c2b800 {
757 compatible = "allwinner,sun6i-a31-i2c";
758 reg = <0x01c2b800 0x400>;
759 interrupts = <0 9 4>;
760 clocks = <&apb2_gates 3>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100761 resets = <&apb2_rst 3>;
762 status = "disabled";
Chen-Yu Tsai495bccf2014-07-21 22:54:27 +0800763 #address-cells = <1>;
764 #size-cells = <0>;
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100765 };
766
Chen-Yu Tsai3dca65f2014-07-16 01:15:45 +0800767 gmac: ethernet@01c30000 {
768 compatible = "allwinner,sun7i-a20-gmac";
769 reg = <0x01c30000 0x1054>;
770 interrupts = <0 82 4>;
771 interrupt-names = "macirq";
772 clocks = <&ahb1_gates 17>, <&gmac_tx_clk>;
773 clock-names = "stmmaceth", "allwinner_gmac_tx";
774 resets = <&ahb1_rst 17>;
775 reset-names = "stmmaceth";
776 snps,pbl = <2>;
777 snps,fixed-burst;
778 snps,force_sf_dma_mode;
779 status = "disabled";
780 #address-cells = <1>;
781 #size-cells = <0>;
782 };
783
Maxime Ripard8cffcb02014-04-17 11:06:46 +0200784 timer@01c60000 {
785 compatible = "allwinner,sun6i-a31-hstimer", "allwinner,sun7i-a20-hstimer";
786 reg = <0x01c60000 0x1000>;
787 interrupts = <0 51 4>,
788 <0 52 4>,
789 <0 53 4>,
790 <0 54 4>;
791 clocks = <&ahb1_gates 19>;
792 resets = <&ahb1_rst 19>;
793 };
794
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100795 spi0: spi@01c68000 {
796 compatible = "allwinner,sun6i-a31-spi";
797 reg = <0x01c68000 0x1000>;
798 interrupts = <0 65 4>;
799 clocks = <&ahb1_gates 20>, <&spi0_clk>;
800 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100801 dmas = <&dma 23>, <&dma 23>;
802 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100803 resets = <&ahb1_rst 20>;
804 status = "disabled";
805 };
806
807 spi1: spi@01c69000 {
808 compatible = "allwinner,sun6i-a31-spi";
809 reg = <0x01c69000 0x1000>;
810 interrupts = <0 66 4>;
811 clocks = <&ahb1_gates 21>, <&spi1_clk>;
812 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100813 dmas = <&dma 24>, <&dma 24>;
814 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100815 resets = <&ahb1_rst 21>;
816 status = "disabled";
817 };
818
819 spi2: spi@01c6a000 {
820 compatible = "allwinner,sun6i-a31-spi";
821 reg = <0x01c6a000 0x1000>;
822 interrupts = <0 67 4>;
823 clocks = <&ahb1_gates 22>, <&spi2_clk>;
824 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100825 dmas = <&dma 25>, <&dma 25>;
826 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100827 resets = <&ahb1_rst 22>;
828 status = "disabled";
829 };
830
831 spi3: spi@01c6b000 {
832 compatible = "allwinner,sun6i-a31-spi";
833 reg = <0x01c6b000 0x1000>;
834 interrupts = <0 68 4>;
835 clocks = <&ahb1_gates 23>, <&spi3_clk>;
836 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100837 dmas = <&dma 26>, <&dma 26>;
838 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100839 resets = <&ahb1_rst 23>;
840 status = "disabled";
841 };
842
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100843 gic: interrupt-controller@01c81000 {
844 compatible = "arm,cortex-a7-gic", "arm,cortex-a15-gic";
845 reg = <0x01c81000 0x1000>,
846 <0x01c82000 0x1000>,
847 <0x01c84000 0x2000>,
848 <0x01c86000 0x2000>;
849 interrupt-controller;
850 #interrupt-cells = <3>;
851 interrupts = <1 9 0xf04>;
852 };
Maxime Ripard81ee4292013-11-03 10:30:12 +0100853
Chen-Yu Tsai5e700432014-07-30 20:56:06 +0800854 rtc: rtc@01f00000 {
855 compatible = "allwinner,sun6i-a31-rtc";
856 reg = <0x01f00000 0x54>;
857 interrupts = <0 40 4>, <0 41 4>;
858 };
859
Maxime Ripard28240d22014-04-17 10:29:35 +0200860 nmi_intc: interrupt-controller@01f00c0c {
861 compatible = "allwinner,sun6i-a31-sc-nmi";
862 interrupt-controller;
863 #interrupt-cells = <2>;
864 reg = <0x01f00c0c 0x38>;
865 interrupts = <0 32 4>;
866 };
867
Hans de Goedea42ea602014-04-13 13:41:02 +0200868 prcm@01f01400 {
869 compatible = "allwinner,sun6i-a31-prcm";
870 reg = <0x01f01400 0x200>;
Boris BREZILLONcc08f5e2014-05-14 14:38:21 +0200871
872 ar100: ar100_clk {
873 compatible = "allwinner,sun6i-a31-ar100-clk";
874 #clock-cells = <0>;
Chen-Yu Tsaif6c3b042014-11-13 02:08:32 +0800875 clocks = <&osc32k>, <&osc24M>, <&pll6 0>, <&pll6 0>;
Boris BREZILLONcc08f5e2014-05-14 14:38:21 +0200876 clock-output-names = "ar100";
877 };
878
879 ahb0: ahb0_clk {
880 compatible = "fixed-factor-clock";
881 #clock-cells = <0>;
882 clock-div = <1>;
883 clock-mult = <1>;
884 clocks = <&ar100>;
885 clock-output-names = "ahb0";
886 };
887
888 apb0: apb0_clk {
889 compatible = "allwinner,sun6i-a31-apb0-clk";
890 #clock-cells = <0>;
891 clocks = <&ahb0>;
892 clock-output-names = "apb0";
893 };
894
895 apb0_gates: apb0_gates_clk {
896 compatible = "allwinner,sun6i-a31-apb0-gates-clk";
897 #clock-cells = <1>;
898 clocks = <&apb0>;
899 clock-output-names = "apb0_pio", "apb0_ir",
900 "apb0_timer", "apb0_p2wi",
901 "apb0_uart", "apb0_1wire",
902 "apb0_i2c";
903 };
904
905 apb0_rst: apb0_rst {
906 compatible = "allwinner,sun6i-a31-clock-reset";
907 #reset-cells = <1>;
908 };
Hans de Goedea42ea602014-04-13 13:41:02 +0200909 };
910
Maxime Ripard81ee4292013-11-03 10:30:12 +0100911 cpucfg@01f01c00 {
912 compatible = "allwinner,sun6i-a31-cpuconfig";
913 reg = <0x01f01c00 0x300>;
914 };
Boris BREZILLON209394a2014-05-13 16:03:03 +0200915
916 r_pio: pinctrl@01f02c00 {
917 compatible = "allwinner,sun6i-a31-r-pinctrl";
918 reg = <0x01f02c00 0x400>;
919 interrupts = <0 45 4>,
920 <0 46 4>;
921 clocks = <&apb0_gates 0>;
922 resets = <&apb0_rst 0>;
923 gpio-controller;
924 interrupt-controller;
Chen-Yu Tsai7d4ff962014-06-30 23:57:51 +0200925 #interrupt-cells = <2>;
Boris BREZILLON209394a2014-05-13 16:03:03 +0200926 #size-cells = <0>;
927 #gpio-cells = <3>;
928 };
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100929 };
930};