blob: 8fdf90d52ab8ca202aa9234301abdb6b77aa41dd [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 *
6 * The code contained herein is licensed under the GNU General Public
7 * License. You may obtain a copy of the GNU General Public License
8 * Version 2 or later at the following locations:
9 *
10 * http://www.opensource.org/licenses/gpl-license.html
11 * http://www.gnu.org/copyleft/gpl.html
12 */
13
14/include/ "skeleton.dtsi"
15
16/ {
17 interrupt-parent = <&gic>;
18
Maxime Ripard54428d42014-01-02 22:05:04 +010019 aliases {
20 serial0 = &uart0;
21 serial1 = &uart1;
22 serial2 = &uart2;
23 serial3 = &uart3;
24 serial4 = &uart4;
25 serial5 = &uart5;
Chen-Yu Tsaie5073fd2014-07-16 01:15:46 +080026 ethernet0 = &gmac;
Maxime Ripard54428d42014-01-02 22:05:04 +010027 };
28
29
Maxime Ripard8aed3b32013-03-10 16:09:06 +010030 cpus {
Maxime Ripardce78e352014-04-18 21:01:52 +020031 enable-method = "allwinner,sun6i-a31";
Maxime Ripard8aed3b32013-03-10 16:09:06 +010032 #address-cells = <1>;
33 #size-cells = <0>;
34
35 cpu@0 {
36 compatible = "arm,cortex-a7";
37 device_type = "cpu";
38 reg = <0>;
39 };
40
41 cpu@1 {
42 compatible = "arm,cortex-a7";
43 device_type = "cpu";
44 reg = <1>;
45 };
46
47 cpu@2 {
48 compatible = "arm,cortex-a7";
49 device_type = "cpu";
50 reg = <2>;
51 };
52
53 cpu@3 {
54 compatible = "arm,cortex-a7";
55 device_type = "cpu";
56 reg = <3>;
57 };
58 };
59
60 memory {
61 reg = <0x40000000 0x80000000>;
62 };
63
Maxime Ripardb5a10b72014-04-17 21:54:41 +020064 pmu {
65 compatible = "arm,cortex-a7-pmu", "arm,cortex-a15-pmu";
66 interrupts = <0 120 4>,
67 <0 121 4>,
68 <0 122 4>,
69 <0 123 4>;
70 };
71
Maxime Ripard8aed3b32013-03-10 16:09:06 +010072 clocks {
73 #address-cells = <1>;
Maxime Ripard98096562013-07-23 23:54:19 +020074 #size-cells = <1>;
75 ranges;
Maxime Ripard8aed3b32013-03-10 16:09:06 +010076
Maxime Ripard98096562013-07-23 23:54:19 +020077 osc24M: osc24M {
Maxime Ripard8aed3b32013-03-10 16:09:06 +010078 #clock-cells = <0>;
79 compatible = "fixed-clock";
80 clock-frequency = <24000000>;
81 };
Maxime Ripard98096562013-07-23 23:54:19 +020082
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +080083 osc32k: clk@0 {
Maxime Ripard98096562013-07-23 23:54:19 +020084 #clock-cells = <0>;
85 compatible = "fixed-clock";
86 clock-frequency = <32768>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +080087 clock-output-names = "osc32k";
Maxime Ripard98096562013-07-23 23:54:19 +020088 };
89
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +080090 pll1: clk@01c20000 {
Maxime Ripard98096562013-07-23 23:54:19 +020091 #clock-cells = <0>;
92 compatible = "allwinner,sun6i-a31-pll1-clk";
93 reg = <0x01c20000 0x4>;
94 clocks = <&osc24M>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +080095 clock-output-names = "pll1";
Maxime Ripard98096562013-07-23 23:54:19 +020096 };
97
Maxime Ripardb0a09c72014-02-05 14:05:04 +010098 pll6: clk@01c20028 {
Maxime Ripard98096562013-07-23 23:54:19 +020099 #clock-cells = <0>;
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100100 compatible = "allwinner,sun6i-a31-pll6-clk";
101 reg = <0x01c20028 0x4>;
102 clocks = <&osc24M>;
103 clock-output-names = "pll6";
Maxime Ripard98096562013-07-23 23:54:19 +0200104 };
105
106 cpu: cpu@01c20050 {
107 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100108 compatible = "allwinner,sun4i-a10-cpu-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200109 reg = <0x01c20050 0x4>;
110
111 /*
112 * PLL1 is listed twice here.
113 * While it looks suspicious, it's actually documented
114 * that way both in the datasheet and in the code from
115 * Allwinner.
116 */
117 clocks = <&osc32k>, <&osc24M>, <&pll1>, <&pll1>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800118 clock-output-names = "cpu";
Maxime Ripard98096562013-07-23 23:54:19 +0200119 };
120
121 axi: axi@01c20050 {
122 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100123 compatible = "allwinner,sun4i-a10-axi-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200124 reg = <0x01c20050 0x4>;
125 clocks = <&cpu>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800126 clock-output-names = "axi";
Maxime Ripard98096562013-07-23 23:54:19 +0200127 };
128
129 ahb1_mux: ahb1_mux@01c20054 {
130 #clock-cells = <0>;
131 compatible = "allwinner,sun6i-a31-ahb1-mux-clk";
132 reg = <0x01c20054 0x4>;
133 clocks = <&osc32k>, <&osc24M>, <&axi>, <&pll6>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800134 clock-output-names = "ahb1_mux";
Maxime Ripard98096562013-07-23 23:54:19 +0200135 };
136
137 ahb1: ahb1@01c20054 {
138 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100139 compatible = "allwinner,sun4i-a10-ahb-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200140 reg = <0x01c20054 0x4>;
141 clocks = <&ahb1_mux>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800142 clock-output-names = "ahb1";
Maxime Ripard98096562013-07-23 23:54:19 +0200143 };
144
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800145 ahb1_gates: clk@01c20060 {
Maxime Ripard98096562013-07-23 23:54:19 +0200146 #clock-cells = <1>;
147 compatible = "allwinner,sun6i-a31-ahb1-gates-clk";
148 reg = <0x01c20060 0x8>;
149 clocks = <&ahb1>;
150 clock-output-names = "ahb1_mipidsi", "ahb1_ss",
151 "ahb1_dma", "ahb1_mmc0", "ahb1_mmc1",
152 "ahb1_mmc2", "ahb1_mmc3", "ahb1_nand1",
153 "ahb1_nand0", "ahb1_sdram",
154 "ahb1_gmac", "ahb1_ts", "ahb1_hstimer",
155 "ahb1_spi0", "ahb1_spi1", "ahb1_spi2",
156 "ahb1_spi3", "ahb1_otg", "ahb1_ehci0",
157 "ahb1_ehci1", "ahb1_ohci0",
158 "ahb1_ohci1", "ahb1_ohci2", "ahb1_ve",
159 "ahb1_lcd0", "ahb1_lcd1", "ahb1_csi",
160 "ahb1_hdmi", "ahb1_de0", "ahb1_de1",
161 "ahb1_fe0", "ahb1_fe1", "ahb1_mp",
162 "ahb1_gpu", "ahb1_deu0", "ahb1_deu1",
163 "ahb1_drc0", "ahb1_drc1";
164 };
165
166 apb1: apb1@01c20054 {
167 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100168 compatible = "allwinner,sun4i-a10-apb0-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200169 reg = <0x01c20054 0x4>;
170 clocks = <&ahb1>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800171 clock-output-names = "apb1";
Maxime Ripard98096562013-07-23 23:54:19 +0200172 };
173
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800174 apb1_gates: clk@01c20068 {
Maxime Ripard98096562013-07-23 23:54:19 +0200175 #clock-cells = <1>;
176 compatible = "allwinner,sun6i-a31-apb1-gates-clk";
177 reg = <0x01c20068 0x4>;
178 clocks = <&apb1>;
179 clock-output-names = "apb1_codec", "apb1_digital_mic",
180 "apb1_pio", "apb1_daudio0",
181 "apb1_daudio1";
182 };
183
184 apb2_mux: apb2_mux@01c20058 {
185 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100186 compatible = "allwinner,sun4i-a10-apb1-mux-clk";
Maxime Ripard98096562013-07-23 23:54:19 +0200187 reg = <0x01c20058 0x4>;
188 clocks = <&osc32k>, <&osc24M>, <&pll6>, <&pll6>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800189 clock-output-names = "apb2_mux";
Maxime Ripard98096562013-07-23 23:54:19 +0200190 };
191
192 apb2: apb2@01c20058 {
193 #clock-cells = <0>;
194 compatible = "allwinner,sun6i-a31-apb2-div-clk";
195 reg = <0x01c20058 0x4>;
196 clocks = <&apb2_mux>;
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800197 clock-output-names = "apb2";
Maxime Ripard98096562013-07-23 23:54:19 +0200198 };
199
Chen-Yu Tsai7b5b2902014-02-03 09:51:43 +0800200 apb2_gates: clk@01c2006c {
Maxime Ripard98096562013-07-23 23:54:19 +0200201 #clock-cells = <1>;
202 compatible = "allwinner,sun6i-a31-apb2-gates-clk";
Maxime Ripard439d9f52013-09-24 16:30:05 +0300203 reg = <0x01c2006c 0x4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200204 clocks = <&apb2>;
205 clock-output-names = "apb2_i2c0", "apb2_i2c1",
206 "apb2_i2c2", "apb2_i2c3", "apb2_uart0",
207 "apb2_uart1", "apb2_uart2", "apb2_uart3",
208 "apb2_uart4", "apb2_uart5";
209 };
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100210
Hans de Goedeadc54c82014-05-02 17:57:23 +0200211 mmc0_clk: clk@01c20088 {
212 #clock-cells = <0>;
213 compatible = "allwinner,sun4i-a10-mod0-clk";
214 reg = <0x01c20088 0x4>;
215 clocks = <&osc24M>, <&pll6>;
216 clock-output-names = "mmc0";
217 };
218
219 mmc1_clk: clk@01c2008c {
220 #clock-cells = <0>;
221 compatible = "allwinner,sun4i-a10-mod0-clk";
222 reg = <0x01c2008c 0x4>;
223 clocks = <&osc24M>, <&pll6>;
224 clock-output-names = "mmc1";
225 };
226
227 mmc2_clk: clk@01c20090 {
228 #clock-cells = <0>;
229 compatible = "allwinner,sun4i-a10-mod0-clk";
230 reg = <0x01c20090 0x4>;
231 clocks = <&osc24M>, <&pll6>;
232 clock-output-names = "mmc2";
233 };
234
235 mmc3_clk: clk@01c20094 {
236 #clock-cells = <0>;
237 compatible = "allwinner,sun4i-a10-mod0-clk";
238 reg = <0x01c20094 0x4>;
239 clocks = <&osc24M>, <&pll6>;
240 clock-output-names = "mmc3";
241 };
242
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100243 spi0_clk: clk@01c200a0 {
244 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100245 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100246 reg = <0x01c200a0 0x4>;
247 clocks = <&osc24M>, <&pll6>;
248 clock-output-names = "spi0";
249 };
250
251 spi1_clk: clk@01c200a4 {
252 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100253 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100254 reg = <0x01c200a4 0x4>;
255 clocks = <&osc24M>, <&pll6>;
256 clock-output-names = "spi1";
257 };
258
259 spi2_clk: clk@01c200a8 {
260 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100261 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100262 reg = <0x01c200a8 0x4>;
263 clocks = <&osc24M>, <&pll6>;
264 clock-output-names = "spi2";
265 };
266
267 spi3_clk: clk@01c200ac {
268 #clock-cells = <0>;
Maxime Ripard225b0212014-02-24 17:29:06 +0100269 compatible = "allwinner,sun4i-a10-mod0-clk";
Maxime Ripardb0a09c72014-02-05 14:05:04 +0100270 reg = <0x01c200ac 0x4>;
271 clocks = <&osc24M>, <&pll6>;
272 clock-output-names = "spi3";
273 };
Maxime Ripard94a1cd12014-05-13 17:44:16 +0200274
275 usb_clk: clk@01c200cc {
276 #clock-cells = <1>;
277 #reset-cells = <1>;
278 compatible = "allwinner,sun6i-a31-usb-clk";
279 reg = <0x01c200cc 0x4>;
280 clocks = <&osc24M>;
281 clock-output-names = "usb_phy0", "usb_phy1", "usb_phy2",
282 "usb_ohci0", "usb_ohci1",
283 "usb_ohci2";
284 };
Chen-Yu Tsaied298612014-07-16 01:15:44 +0800285
286 /*
287 * The following two are dummy clocks, placeholders used in the gmac_tx
288 * clock. The gmac driver will choose one parent depending on the PHY
289 * interface mode, using clk_set_rate auto-reparenting.
290 * The actual TX clock rate is not controlled by the gmac_tx clock.
291 */
292 mii_phy_tx_clk: clk@1 {
293 #clock-cells = <0>;
294 compatible = "fixed-clock";
295 clock-frequency = <25000000>;
296 clock-output-names = "mii_phy_tx";
297 };
298
299 gmac_int_tx_clk: clk@2 {
300 #clock-cells = <0>;
301 compatible = "fixed-clock";
302 clock-frequency = <125000000>;
303 clock-output-names = "gmac_int_tx";
304 };
305
306 gmac_tx_clk: clk@01c200d0 {
307 #clock-cells = <0>;
308 compatible = "allwinner,sun7i-a20-gmac-clk";
309 reg = <0x01c200d0 0x4>;
310 clocks = <&mii_phy_tx_clk>, <&gmac_int_tx_clk>;
311 clock-output-names = "gmac_tx";
312 };
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100313 };
314
315 soc@01c00000 {
316 compatible = "simple-bus";
317 #address-cells = <1>;
318 #size-cells = <1>;
319 ranges;
320
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100321 dma: dma-controller@01c02000 {
322 compatible = "allwinner,sun6i-a31-dma";
323 reg = <0x01c02000 0x1000>;
324 interrupts = <0 50 4>;
325 clocks = <&ahb1_gates 6>;
326 resets = <&ahb1_rst 6>;
327 #dma-cells = <1>;
328 };
329
Hans de Goede5b753f02014-05-02 17:57:24 +0200330 mmc0: mmc@01c0f000 {
331 compatible = "allwinner,sun5i-a13-mmc";
332 reg = <0x01c0f000 0x1000>;
333 clocks = <&ahb1_gates 8>, <&mmc0_clk>;
334 clock-names = "ahb", "mmc";
335 resets = <&ahb1_rst 8>;
336 reset-names = "ahb";
337 interrupts = <0 60 4>;
338 status = "disabled";
339 };
340
341 mmc1: mmc@01c10000 {
342 compatible = "allwinner,sun5i-a13-mmc";
343 reg = <0x01c10000 0x1000>;
344 clocks = <&ahb1_gates 9>, <&mmc1_clk>;
345 clock-names = "ahb", "mmc";
346 resets = <&ahb1_rst 9>;
347 reset-names = "ahb";
348 interrupts = <0 61 4>;
349 status = "disabled";
350 };
351
352 mmc2: mmc@01c11000 {
353 compatible = "allwinner,sun5i-a13-mmc";
354 reg = <0x01c11000 0x1000>;
355 clocks = <&ahb1_gates 10>, <&mmc2_clk>;
356 clock-names = "ahb", "mmc";
357 resets = <&ahb1_rst 10>;
358 reset-names = "ahb";
359 interrupts = <0 62 4>;
360 status = "disabled";
361 };
362
363 mmc3: mmc@01c12000 {
364 compatible = "allwinner,sun5i-a13-mmc";
365 reg = <0x01c12000 0x1000>;
366 clocks = <&ahb1_gates 11>, <&mmc3_clk>;
367 clock-names = "ahb", "mmc";
368 resets = <&ahb1_rst 11>;
369 reset-names = "ahb";
370 interrupts = <0 63 4>;
371 status = "disabled";
372 };
373
Maxime Ripardef964082014-05-13 17:44:21 +0200374 usbphy: phy@01c19400 {
375 compatible = "allwinner,sun6i-a31-usb-phy";
376 reg = <0x01c19400 0x10>,
377 <0x01c1a800 0x4>,
378 <0x01c1b800 0x4>;
379 reg-names = "phy_ctrl",
380 "pmu1",
381 "pmu2";
382 clocks = <&usb_clk 8>,
383 <&usb_clk 9>,
384 <&usb_clk 10>;
385 clock-names = "usb0_phy",
386 "usb1_phy",
387 "usb2_phy";
388 resets = <&usb_clk 0>,
389 <&usb_clk 1>,
390 <&usb_clk 2>;
391 reset-names = "usb0_reset",
392 "usb1_reset",
393 "usb2_reset";
394 status = "disabled";
395 #phy-cells = <1>;
396 };
397
398 ehci0: usb@01c1a000 {
399 compatible = "allwinner,sun6i-a31-ehci", "generic-ehci";
400 reg = <0x01c1a000 0x100>;
401 interrupts = <0 72 4>;
402 clocks = <&ahb1_gates 26>;
403 resets = <&ahb1_rst 26>;
404 phys = <&usbphy 1>;
405 phy-names = "usb";
406 status = "disabled";
407 };
408
409 ohci0: usb@01c1a400 {
410 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
411 reg = <0x01c1a400 0x100>;
412 interrupts = <0 73 4>;
413 clocks = <&ahb1_gates 29>, <&usb_clk 16>;
414 resets = <&ahb1_rst 29>;
415 phys = <&usbphy 1>;
416 phy-names = "usb";
417 status = "disabled";
418 };
419
420 ehci1: usb@01c1b000 {
421 compatible = "allwinner,sun6i-a31-ehci", "generic-ehci";
422 reg = <0x01c1b000 0x100>;
423 interrupts = <0 74 4>;
424 clocks = <&ahb1_gates 27>;
425 resets = <&ahb1_rst 27>;
426 phys = <&usbphy 2>;
427 phy-names = "usb";
428 status = "disabled";
429 };
430
431 ohci1: usb@01c1b400 {
432 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
433 reg = <0x01c1b400 0x100>;
434 interrupts = <0 75 4>;
435 clocks = <&ahb1_gates 30>, <&usb_clk 17>;
436 resets = <&ahb1_rst 30>;
437 phys = <&usbphy 2>;
438 phy-names = "usb";
439 status = "disabled";
440 };
441
Maxime Ripardb294ebb2014-05-20 13:59:58 +0200442 ohci2: usb@01c1c400 {
Maxime Ripardef964082014-05-13 17:44:21 +0200443 compatible = "allwinner,sun6i-a31-ohci", "generic-ohci";
444 reg = <0x01c1c400 0x100>;
445 interrupts = <0 77 4>;
446 clocks = <&ahb1_gates 31>, <&usb_clk 18>;
447 resets = <&ahb1_rst 31>;
448 status = "disabled";
449 };
450
Maxime Ripard140e1722013-03-12 22:16:05 +0100451 pio: pinctrl@01c20800 {
452 compatible = "allwinner,sun6i-a31-pinctrl";
453 reg = <0x01c20800 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100454 interrupts = <0 11 4>,
455 <0 15 4>,
456 <0 16 4>,
457 <0 17 4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200458 clocks = <&apb1_gates 5>;
Maxime Ripard140e1722013-03-12 22:16:05 +0100459 gpio-controller;
460 interrupt-controller;
Chen-Yu Tsai7d4ff962014-06-30 23:57:51 +0200461 #interrupt-cells = <2>;
Maxime Ripard140e1722013-03-12 22:16:05 +0100462 #size-cells = <0>;
463 #gpio-cells = <3>;
Maxime Ripardab4238c2013-06-22 23:56:40 +0200464
465 uart0_pins_a: uart0@0 {
466 allwinner,pins = "PH20", "PH21";
467 allwinner,function = "uart0";
468 allwinner,drive = <0>;
469 allwinner,pull = <0>;
470 };
Maxime Ripard8be188b2014-03-04 17:28:40 +0100471
472 i2c0_pins_a: i2c0@0 {
473 allwinner,pins = "PH14", "PH15";
474 allwinner,function = "i2c0";
475 allwinner,drive = <0>;
476 allwinner,pull = <0>;
477 };
478
479 i2c1_pins_a: i2c1@0 {
480 allwinner,pins = "PH16", "PH17";
481 allwinner,function = "i2c1";
482 allwinner,drive = <0>;
483 allwinner,pull = <0>;
484 };
485
486 i2c2_pins_a: i2c2@0 {
487 allwinner,pins = "PH18", "PH19";
488 allwinner,function = "i2c2";
489 allwinner,drive = <0>;
490 allwinner,pull = <0>;
491 };
Hans de Goede9797eb82014-04-26 12:16:16 +0200492
493 mmc0_pins_a: mmc0@0 {
494 allwinner,pins = "PF0","PF1","PF2","PF3","PF4","PF5";
495 allwinner,function = "mmc0";
496 allwinner,drive = <2>;
497 allwinner,pull = <0>;
498 };
Chen-Yu Tsaiee39a3e2014-07-16 01:15:43 +0800499
500 gmac_pins_mii_a: gmac_mii@0 {
501 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
502 "PA8", "PA9", "PA11",
503 "PA12", "PA13", "PA14", "PA19",
504 "PA20", "PA21", "PA22", "PA23",
505 "PA24", "PA26", "PA27";
506 allwinner,function = "gmac";
507 allwinner,drive = <0>;
508 allwinner,pull = <0>;
509 };
510
511 gmac_pins_gmii_a: gmac_gmii@0 {
512 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
513 "PA4", "PA5", "PA6", "PA7",
514 "PA8", "PA9", "PA10", "PA11",
515 "PA12", "PA13", "PA14", "PA15",
516 "PA16", "PA17", "PA18", "PA19",
517 "PA20", "PA21", "PA22", "PA23",
518 "PA24", "PA25", "PA26", "PA27";
519 allwinner,function = "gmac";
520 /*
521 * data lines in GMII mode run at 125MHz and
522 * might need a higher signal drive strength
523 */
524 allwinner,drive = <2>;
525 allwinner,pull = <0>;
526 };
527
528 gmac_pins_rgmii_a: gmac_rgmii@0 {
529 allwinner,pins = "PA0", "PA1", "PA2", "PA3",
530 "PA9", "PA10", "PA11",
531 "PA12", "PA13", "PA14", "PA19",
532 "PA20", "PA25", "PA26", "PA27";
533 allwinner,function = "gmac";
534 /*
535 * data lines in RGMII mode use DDR mode
536 * and need a higher signal drive strength
537 */
538 allwinner,drive = <3>;
539 allwinner,pull = <0>;
540 };
Maxime Ripard140e1722013-03-12 22:16:05 +0100541 };
542
Maxime Ripard24a661e92013-09-24 11:10:41 +0300543 ahb1_rst: reset@01c202c0 {
544 #reset-cells = <1>;
545 compatible = "allwinner,sun6i-a31-ahb1-reset";
546 reg = <0x01c202c0 0xc>;
547 };
548
549 apb1_rst: reset@01c202d0 {
550 #reset-cells = <1>;
551 compatible = "allwinner,sun6i-a31-clock-reset";
552 reg = <0x01c202d0 0x4>;
553 };
554
555 apb2_rst: reset@01c202d8 {
556 #reset-cells = <1>;
557 compatible = "allwinner,sun6i-a31-clock-reset";
558 reg = <0x01c202d8 0x4>;
559 };
560
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100561 timer@01c20c00 {
Maxime Ripardb4f26442014-02-06 10:40:32 +0100562 compatible = "allwinner,sun4i-a10-timer";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100563 reg = <0x01c20c00 0xa0>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100564 interrupts = <0 18 4>,
565 <0 19 4>,
566 <0 20 4>,
567 <0 21 4>,
568 <0 22 4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200569 clocks = <&osc24M>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100570 };
571
572 wdt1: watchdog@01c20ca0 {
Maxime Ripardca5d04d2014-02-07 22:29:26 +0100573 compatible = "allwinner,sun6i-a31-wdt";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100574 reg = <0x01c20ca0 0x20>;
575 };
576
577 uart0: serial@01c28000 {
578 compatible = "snps,dw-apb-uart";
579 reg = <0x01c28000 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100580 interrupts = <0 0 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100581 reg-shift = <2>;
582 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200583 clocks = <&apb2_gates 16>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300584 resets = <&apb2_rst 16>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100585 dmas = <&dma 6>, <&dma 6>;
586 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100587 status = "disabled";
588 };
589
590 uart1: serial@01c28400 {
591 compatible = "snps,dw-apb-uart";
592 reg = <0x01c28400 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100593 interrupts = <0 1 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100594 reg-shift = <2>;
595 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200596 clocks = <&apb2_gates 17>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300597 resets = <&apb2_rst 17>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100598 dmas = <&dma 7>, <&dma 7>;
599 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100600 status = "disabled";
601 };
602
603 uart2: serial@01c28800 {
604 compatible = "snps,dw-apb-uart";
605 reg = <0x01c28800 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100606 interrupts = <0 2 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100607 reg-shift = <2>;
608 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200609 clocks = <&apb2_gates 18>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300610 resets = <&apb2_rst 18>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100611 dmas = <&dma 8>, <&dma 8>;
612 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100613 status = "disabled";
614 };
615
616 uart3: serial@01c28c00 {
617 compatible = "snps,dw-apb-uart";
618 reg = <0x01c28c00 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100619 interrupts = <0 3 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100620 reg-shift = <2>;
621 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200622 clocks = <&apb2_gates 19>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300623 resets = <&apb2_rst 19>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100624 dmas = <&dma 9>, <&dma 9>;
625 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100626 status = "disabled";
627 };
628
629 uart4: serial@01c29000 {
630 compatible = "snps,dw-apb-uart";
631 reg = <0x01c29000 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100632 interrupts = <0 4 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100633 reg-shift = <2>;
634 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200635 clocks = <&apb2_gates 20>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300636 resets = <&apb2_rst 20>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100637 dmas = <&dma 10>, <&dma 10>;
638 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100639 status = "disabled";
640 };
641
642 uart5: serial@01c29400 {
643 compatible = "snps,dw-apb-uart";
644 reg = <0x01c29400 0x400>;
Maxime Ripard6f97dc82013-12-10 19:37:22 +0100645 interrupts = <0 5 4>;
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100646 reg-shift = <2>;
647 reg-io-width = <4>;
Maxime Ripard98096562013-07-23 23:54:19 +0200648 clocks = <&apb2_gates 21>;
Maxime Ripard24a661e92013-09-24 11:10:41 +0300649 resets = <&apb2_rst 21>;
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100650 dmas = <&dma 22>, <&dma 22>;
651 dma-names = "rx", "tx";
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100652 status = "disabled";
653 };
654
Maxime Ripard96c7cc92014-03-04 17:28:39 +0100655 i2c0: i2c@01c2ac00 {
656 compatible = "allwinner,sun6i-a31-i2c";
657 reg = <0x01c2ac00 0x400>;
658 interrupts = <0 6 4>;
659 clocks = <&apb2_gates 0>;
660 clock-frequency = <100000>;
661 resets = <&apb2_rst 0>;
662 status = "disabled";
663 };
664
665 i2c1: i2c@01c2b000 {
666 compatible = "allwinner,sun6i-a31-i2c";
667 reg = <0x01c2b000 0x400>;
668 interrupts = <0 7 4>;
669 clocks = <&apb2_gates 1>;
670 clock-frequency = <100000>;
671 resets = <&apb2_rst 1>;
672 status = "disabled";
673 };
674
675 i2c2: i2c@01c2b400 {
676 compatible = "allwinner,sun6i-a31-i2c";
677 reg = <0x01c2b400 0x400>;
678 interrupts = <0 8 4>;
679 clocks = <&apb2_gates 2>;
680 clock-frequency = <100000>;
681 resets = <&apb2_rst 2>;
682 status = "disabled";
683 };
684
685 i2c3: i2c@01c2b800 {
686 compatible = "allwinner,sun6i-a31-i2c";
687 reg = <0x01c2b800 0x400>;
688 interrupts = <0 9 4>;
689 clocks = <&apb2_gates 3>;
690 clock-frequency = <100000>;
691 resets = <&apb2_rst 3>;
692 status = "disabled";
693 };
694
Chen-Yu Tsai3dca65f2014-07-16 01:15:45 +0800695 gmac: ethernet@01c30000 {
696 compatible = "allwinner,sun7i-a20-gmac";
697 reg = <0x01c30000 0x1054>;
698 interrupts = <0 82 4>;
699 interrupt-names = "macirq";
700 clocks = <&ahb1_gates 17>, <&gmac_tx_clk>;
701 clock-names = "stmmaceth", "allwinner_gmac_tx";
702 resets = <&ahb1_rst 17>;
703 reset-names = "stmmaceth";
704 snps,pbl = <2>;
705 snps,fixed-burst;
706 snps,force_sf_dma_mode;
707 status = "disabled";
708 #address-cells = <1>;
709 #size-cells = <0>;
710 };
711
Maxime Ripard8cffcb02014-04-17 11:06:46 +0200712 timer@01c60000 {
713 compatible = "allwinner,sun6i-a31-hstimer", "allwinner,sun7i-a20-hstimer";
714 reg = <0x01c60000 0x1000>;
715 interrupts = <0 51 4>,
716 <0 52 4>,
717 <0 53 4>,
718 <0 54 4>;
719 clocks = <&ahb1_gates 19>;
720 resets = <&ahb1_rst 19>;
721 };
722
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100723 spi0: spi@01c68000 {
724 compatible = "allwinner,sun6i-a31-spi";
725 reg = <0x01c68000 0x1000>;
726 interrupts = <0 65 4>;
727 clocks = <&ahb1_gates 20>, <&spi0_clk>;
728 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100729 dmas = <&dma 23>, <&dma 23>;
730 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100731 resets = <&ahb1_rst 20>;
732 status = "disabled";
733 };
734
735 spi1: spi@01c69000 {
736 compatible = "allwinner,sun6i-a31-spi";
737 reg = <0x01c69000 0x1000>;
738 interrupts = <0 66 4>;
739 clocks = <&ahb1_gates 21>, <&spi1_clk>;
740 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100741 dmas = <&dma 24>, <&dma 24>;
742 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100743 resets = <&ahb1_rst 21>;
744 status = "disabled";
745 };
746
747 spi2: spi@01c6a000 {
748 compatible = "allwinner,sun6i-a31-spi";
749 reg = <0x01c6a000 0x1000>;
750 interrupts = <0 67 4>;
751 clocks = <&ahb1_gates 22>, <&spi2_clk>;
752 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100753 dmas = <&dma 25>, <&dma 25>;
754 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100755 resets = <&ahb1_rst 22>;
756 status = "disabled";
757 };
758
759 spi3: spi@01c6b000 {
760 compatible = "allwinner,sun6i-a31-spi";
761 reg = <0x01c6b000 0x1000>;
762 interrupts = <0 68 4>;
763 clocks = <&ahb1_gates 23>, <&spi3_clk>;
764 clock-names = "ahb", "mod";
Maxime Ripardd2d878c2014-01-30 15:41:23 +0100765 dmas = <&dma 26>, <&dma 26>;
766 dma-names = "rx", "tx";
Maxime Ripard0d6efe32014-02-05 14:05:06 +0100767 resets = <&ahb1_rst 23>;
768 status = "disabled";
769 };
770
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100771 gic: interrupt-controller@01c81000 {
772 compatible = "arm,cortex-a7-gic", "arm,cortex-a15-gic";
773 reg = <0x01c81000 0x1000>,
774 <0x01c82000 0x1000>,
775 <0x01c84000 0x2000>,
776 <0x01c86000 0x2000>;
777 interrupt-controller;
778 #interrupt-cells = <3>;
779 interrupts = <1 9 0xf04>;
780 };
Maxime Ripard81ee4292013-11-03 10:30:12 +0100781
Chen-Yu Tsai5e700432014-07-30 20:56:06 +0800782 rtc: rtc@01f00000 {
783 compatible = "allwinner,sun6i-a31-rtc";
784 reg = <0x01f00000 0x54>;
785 interrupts = <0 40 4>, <0 41 4>;
786 };
787
Maxime Ripard28240d22014-04-17 10:29:35 +0200788 nmi_intc: interrupt-controller@01f00c0c {
789 compatible = "allwinner,sun6i-a31-sc-nmi";
790 interrupt-controller;
791 #interrupt-cells = <2>;
792 reg = <0x01f00c0c 0x38>;
793 interrupts = <0 32 4>;
794 };
795
Hans de Goedea42ea602014-04-13 13:41:02 +0200796 prcm@01f01400 {
797 compatible = "allwinner,sun6i-a31-prcm";
798 reg = <0x01f01400 0x200>;
Boris BREZILLONcc08f5e2014-05-14 14:38:21 +0200799
800 ar100: ar100_clk {
801 compatible = "allwinner,sun6i-a31-ar100-clk";
802 #clock-cells = <0>;
803 clocks = <&osc32k>, <&osc24M>, <&pll6>, <&pll6>;
804 clock-output-names = "ar100";
805 };
806
807 ahb0: ahb0_clk {
808 compatible = "fixed-factor-clock";
809 #clock-cells = <0>;
810 clock-div = <1>;
811 clock-mult = <1>;
812 clocks = <&ar100>;
813 clock-output-names = "ahb0";
814 };
815
816 apb0: apb0_clk {
817 compatible = "allwinner,sun6i-a31-apb0-clk";
818 #clock-cells = <0>;
819 clocks = <&ahb0>;
820 clock-output-names = "apb0";
821 };
822
823 apb0_gates: apb0_gates_clk {
824 compatible = "allwinner,sun6i-a31-apb0-gates-clk";
825 #clock-cells = <1>;
826 clocks = <&apb0>;
827 clock-output-names = "apb0_pio", "apb0_ir",
828 "apb0_timer", "apb0_p2wi",
829 "apb0_uart", "apb0_1wire",
830 "apb0_i2c";
831 };
832
833 apb0_rst: apb0_rst {
834 compatible = "allwinner,sun6i-a31-clock-reset";
835 #reset-cells = <1>;
836 };
Hans de Goedea42ea602014-04-13 13:41:02 +0200837 };
838
Maxime Ripard81ee4292013-11-03 10:30:12 +0100839 cpucfg@01f01c00 {
840 compatible = "allwinner,sun6i-a31-cpuconfig";
841 reg = <0x01f01c00 0x300>;
842 };
Boris BREZILLON209394a2014-05-13 16:03:03 +0200843
844 r_pio: pinctrl@01f02c00 {
845 compatible = "allwinner,sun6i-a31-r-pinctrl";
846 reg = <0x01f02c00 0x400>;
847 interrupts = <0 45 4>,
848 <0 46 4>;
849 clocks = <&apb0_gates 0>;
850 resets = <&apb0_rst 0>;
851 gpio-controller;
852 interrupt-controller;
Chen-Yu Tsai7d4ff962014-06-30 23:57:51 +0200853 #interrupt-cells = <2>;
Boris BREZILLON209394a2014-05-13 16:03:03 +0200854 #size-cells = <0>;
855 #gpio-cells = <3>;
856 };
Maxime Ripard8aed3b32013-03-10 16:09:06 +0100857 };
858};