blob: 6d996c9e282a6862b32b7a7ce31e5dd11e7157fc [file] [log] [blame]
Maxime Ripard4790ecf2013-07-17 10:07:10 +02001/*
2 * Copyright 2013 Maxime Ripard
3 *
4 * Maxime Ripard <maxime.ripard@free-electrons.com>
5 *
Maxime Ripard394c56c2014-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 Ripard4790ecf2013-07-17 10:07:10 +020010 *
Maxime Ripard394c56c2014-09-02 19:25:26 +020011 * a) This library is free software; you can redistribute it and/or
12 * 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 *
16 * This library is distributed in the hope that it will be useful,
17 * 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
22 * License along with this library; if not, write to the Free
23 * 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 Ripard4790ecf2013-07-17 10:07:10 +020048 */
49
50/include/ "skeleton.dtsi"
51
52/ {
53 interrupt-parent = <&gic>;
54
Emilio Lópeze751cce2013-11-16 15:17:29 -030055 aliases {
Chen-Yu Tsai18428f72014-02-10 18:35:54 +080056 ethernet0 = &gmac;
Maxime Ripard4566b4b2014-01-02 22:05:04 +010057 serial0 = &uart0;
58 serial1 = &uart1;
59 serial2 = &uart2;
60 serial3 = &uart3;
61 serial4 = &uart4;
62 serial5 = &uart5;
63 serial6 = &uart6;
64 serial7 = &uart7;
Emilio Lópeze751cce2013-11-16 15:17:29 -030065 };
66
Maxime Ripard4790ecf2013-07-17 10:07:10 +020067 cpus {
68 #address-cells = <1>;
69 #size-cells = <0>;
70
71 cpu@0 {
72 compatible = "arm,cortex-a7";
73 device_type = "cpu";
74 reg = <0>;
75 };
76
77 cpu@1 {
78 compatible = "arm,cortex-a7";
79 device_type = "cpu";
80 reg = <1>;
81 };
82 };
83
84 memory {
85 reg = <0x40000000 0x80000000>;
86 };
87
Marc Zyngier79027632014-02-18 14:04:44 +000088 timer {
89 compatible = "arm,armv7-timer";
90 interrupts = <1 13 0xf08>,
91 <1 14 0xf08>,
92 <1 11 0xf08>,
93 <1 10 0xf08>;
94 };
95
Maxime Riparde29ea4d2014-04-17 21:54:41 +020096 pmu {
97 compatible = "arm,cortex-a7-pmu", "arm,cortex-a15-pmu";
98 interrupts = <0 120 4>,
99 <0 121 4>;
100 };
101
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200102 clocks {
103 #address-cells = <1>;
104 #size-cells = <1>;
105 ranges;
106
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800107 osc24M: clk@01c20050 {
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200108 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100109 compatible = "allwinner,sun4i-a10-osc-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200110 reg = <0x01c20050 0x4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200111 clock-frequency = <24000000>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800112 clock-output-names = "osc24M";
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200113 };
114
Chen-Yu Tsai673fac72014-01-01 10:30:47 +0800115 osc32k: clk@0 {
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200116 #clock-cells = <0>;
117 compatible = "fixed-clock";
118 clock-frequency = <32768>;
Chen-Yu Tsai673fac72014-01-01 10:30:47 +0800119 clock-output-names = "osc32k";
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200120 };
Maxime Ripardde7dc932013-07-25 21:12:52 +0200121
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800122 pll1: clk@01c20000 {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200123 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100124 compatible = "allwinner,sun4i-a10-pll1-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200125 reg = <0x01c20000 0x4>;
126 clocks = <&osc24M>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800127 clock-output-names = "pll1";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200128 };
129
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800130 pll4: clk@01c20018 {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200131 #clock-cells = <0>;
Emilio López04ebcb52014-03-19 15:19:31 -0300132 compatible = "allwinner,sun7i-a20-pll4-clk";
Emilio Lópezec5589f2013-12-23 00:32:35 -0300133 reg = <0x01c20018 0x4>;
134 clocks = <&osc24M>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800135 clock-output-names = "pll4";
Emilio Lópezec5589f2013-12-23 00:32:35 -0300136 };
137
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800138 pll5: clk@01c20020 {
Emilio Lópezc3e5e662013-12-23 00:32:38 -0300139 #clock-cells = <1>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100140 compatible = "allwinner,sun4i-a10-pll5-clk";
Emilio Lópezc3e5e662013-12-23 00:32:38 -0300141 reg = <0x01c20020 0x4>;
142 clocks = <&osc24M>;
143 clock-output-names = "pll5_ddr", "pll5_other";
144 };
145
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800146 pll6: clk@01c20028 {
Emilio Lópezc3e5e662013-12-23 00:32:38 -0300147 #clock-cells = <1>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100148 compatible = "allwinner,sun4i-a10-pll6-clk";
Emilio Lópezc3e5e662013-12-23 00:32:38 -0300149 reg = <0x01c20028 0x4>;
150 clocks = <&osc24M>;
151 clock-output-names = "pll6_sata", "pll6_other", "pll6";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200152 };
153
Emilio López04ebcb52014-03-19 15:19:31 -0300154 pll8: clk@01c20040 {
155 #clock-cells = <0>;
156 compatible = "allwinner,sun7i-a20-pll4-clk";
157 reg = <0x01c20040 0x4>;
158 clocks = <&osc24M>;
159 clock-output-names = "pll8";
160 };
161
Maxime Ripardde7dc932013-07-25 21:12:52 +0200162 cpu: cpu@01c20054 {
163 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100164 compatible = "allwinner,sun4i-a10-cpu-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200165 reg = <0x01c20054 0x4>;
Emilio Lópezc3e5e662013-12-23 00:32:38 -0300166 clocks = <&osc32k>, <&osc24M>, <&pll1>, <&pll6 1>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800167 clock-output-names = "cpu";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200168 };
169
170 axi: axi@01c20054 {
171 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100172 compatible = "allwinner,sun4i-a10-axi-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200173 reg = <0x01c20054 0x4>;
174 clocks = <&cpu>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800175 clock-output-names = "axi";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200176 };
177
178 ahb: ahb@01c20054 {
179 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100180 compatible = "allwinner,sun4i-a10-ahb-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200181 reg = <0x01c20054 0x4>;
182 clocks = <&axi>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800183 clock-output-names = "ahb";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200184 };
185
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800186 ahb_gates: clk@01c20060 {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200187 #clock-cells = <1>;
188 compatible = "allwinner,sun7i-a20-ahb-gates-clk";
189 reg = <0x01c20060 0x8>;
190 clocks = <&ahb>;
191 clock-output-names = "ahb_usb0", "ahb_ehci0",
192 "ahb_ohci0", "ahb_ehci1", "ahb_ohci1",
193 "ahb_ss", "ahb_dma", "ahb_bist", "ahb_mmc0",
194 "ahb_mmc1", "ahb_mmc2", "ahb_mmc3", "ahb_ms",
195 "ahb_nand", "ahb_sdram", "ahb_ace",
196 "ahb_emac", "ahb_ts", "ahb_spi0", "ahb_spi1",
197 "ahb_spi2", "ahb_spi3", "ahb_sata",
198 "ahb_hstimer", "ahb_ve", "ahb_tvd", "ahb_tve0",
199 "ahb_tve1", "ahb_lcd0", "ahb_lcd1", "ahb_csi0",
200 "ahb_csi1", "ahb_hdmi1", "ahb_hdmi0",
201 "ahb_de_be0", "ahb_de_be1", "ahb_de_fe0",
202 "ahb_de_fe1", "ahb_gmac", "ahb_mp",
203 "ahb_mali";
204 };
205
206 apb0: apb0@01c20054 {
207 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100208 compatible = "allwinner,sun4i-a10-apb0-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200209 reg = <0x01c20054 0x4>;
210 clocks = <&ahb>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800211 clock-output-names = "apb0";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200212 };
213
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800214 apb0_gates: clk@01c20068 {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200215 #clock-cells = <1>;
216 compatible = "allwinner,sun7i-a20-apb0-gates-clk";
217 reg = <0x01c20068 0x4>;
218 clocks = <&apb0>;
219 clock-output-names = "apb0_codec", "apb0_spdif",
220 "apb0_ac97", "apb0_iis0", "apb0_iis1",
221 "apb0_pio", "apb0_ir0", "apb0_ir1",
222 "apb0_iis2", "apb0_keypad";
223 };
224
Emilio Lópezacbcc0f2014-11-06 11:40:30 +0800225 apb1: clk@01c20058 {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200226 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100227 compatible = "allwinner,sun4i-a10-apb1-clk";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200228 reg = <0x01c20058 0x4>;
Emilio Lópezacbcc0f2014-11-06 11:40:30 +0800229 clocks = <&osc24M>, <&pll6 1>, <&osc32k>;
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800230 clock-output-names = "apb1";
Maxime Ripardde7dc932013-07-25 21:12:52 +0200231 };
232
Chen-Yu Tsai06067a22014-02-03 09:51:44 +0800233 apb1_gates: clk@01c2006c {
Maxime Ripardde7dc932013-07-25 21:12:52 +0200234 #clock-cells = <1>;
235 compatible = "allwinner,sun7i-a20-apb1-gates-clk";
236 reg = <0x01c2006c 0x4>;
237 clocks = <&apb1>;
238 clock-output-names = "apb1_i2c0", "apb1_i2c1",
239 "apb1_i2c2", "apb1_i2c3", "apb1_can",
240 "apb1_scr", "apb1_ps20", "apb1_ps21",
241 "apb1_i2c4", "apb1_uart0", "apb1_uart1",
242 "apb1_uart2", "apb1_uart3", "apb1_uart4",
243 "apb1_uart5", "apb1_uart6", "apb1_uart7";
244 };
Emilio López1c92b952013-12-23 00:32:43 -0300245
246 nand_clk: clk@01c20080 {
247 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100248 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300249 reg = <0x01c20080 0x4>;
250 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
251 clock-output-names = "nand";
252 };
253
254 ms_clk: clk@01c20084 {
255 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100256 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300257 reg = <0x01c20084 0x4>;
258 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
259 clock-output-names = "ms";
260 };
261
262 mmc0_clk: clk@01c20088 {
263 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100264 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300265 reg = <0x01c20088 0x4>;
266 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
267 clock-output-names = "mmc0";
268 };
269
270 mmc1_clk: clk@01c2008c {
271 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100272 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300273 reg = <0x01c2008c 0x4>;
274 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
275 clock-output-names = "mmc1";
276 };
277
278 mmc2_clk: clk@01c20090 {
279 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100280 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300281 reg = <0x01c20090 0x4>;
282 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
283 clock-output-names = "mmc2";
284 };
285
286 mmc3_clk: clk@01c20094 {
287 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100288 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300289 reg = <0x01c20094 0x4>;
290 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
291 clock-output-names = "mmc3";
292 };
293
294 ts_clk: clk@01c20098 {
295 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100296 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300297 reg = <0x01c20098 0x4>;
298 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
299 clock-output-names = "ts";
300 };
301
302 ss_clk: clk@01c2009c {
303 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100304 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300305 reg = <0x01c2009c 0x4>;
306 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
307 clock-output-names = "ss";
308 };
309
310 spi0_clk: clk@01c200a0 {
311 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100312 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300313 reg = <0x01c200a0 0x4>;
314 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
315 clock-output-names = "spi0";
316 };
317
318 spi1_clk: clk@01c200a4 {
319 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100320 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300321 reg = <0x01c200a4 0x4>;
322 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
323 clock-output-names = "spi1";
324 };
325
326 spi2_clk: clk@01c200a8 {
327 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100328 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300329 reg = <0x01c200a8 0x4>;
330 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
331 clock-output-names = "spi2";
332 };
333
334 pata_clk: clk@01c200ac {
335 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100336 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300337 reg = <0x01c200ac 0x4>;
338 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
339 clock-output-names = "pata";
340 };
341
342 ir0_clk: clk@01c200b0 {
343 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100344 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300345 reg = <0x01c200b0 0x4>;
346 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
347 clock-output-names = "ir0";
348 };
349
350 ir1_clk: clk@01c200b4 {
351 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100352 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300353 reg = <0x01c200b4 0x4>;
354 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
355 clock-output-names = "ir1";
356 };
357
Roman Byshko434e41b2014-02-07 16:21:53 +0100358 usb_clk: clk@01c200cc {
359 #clock-cells = <1>;
360 #reset-cells = <1>;
361 compatible = "allwinner,sun4i-a10-usb-clk";
362 reg = <0x01c200cc 0x4>;
363 clocks = <&pll6 1>;
364 clock-output-names = "usb_ohci0", "usb_ohci1", "usb_phy";
365 };
366
Emilio López1c92b952013-12-23 00:32:43 -0300367 spi3_clk: clk@01c200d4 {
368 #clock-cells = <0>;
Maxime Ripardbf6534a2014-02-06 09:55:58 +0100369 compatible = "allwinner,sun4i-a10-mod0-clk";
Emilio López1c92b952013-12-23 00:32:43 -0300370 reg = <0x01c200d4 0x4>;
371 clocks = <&osc24M>, <&pll6 1>, <&pll5 1>;
372 clock-output-names = "spi3";
373 };
Emilio López118c07a2013-12-23 00:32:44 -0300374
375 mbus_clk: clk@01c2015c {
376 #clock-cells = <0>;
Maxime Ripard7868c5e2014-07-16 23:45:48 +0200377 compatible = "allwinner,sun5i-a13-mbus-clk";
Emilio López118c07a2013-12-23 00:32:44 -0300378 reg = <0x01c2015c 0x4>;
379 clocks = <&osc24M>, <&pll6 2>, <&pll5 1>;
380 clock-output-names = "mbus";
381 };
Chen-Yu Tsai0aff0372014-01-01 10:30:48 +0800382
383 /*
Chen-Yu Tsaidaed5a82014-02-10 18:35:48 +0800384 * The following two are dummy clocks, placeholders used in the gmac_tx
385 * clock. The gmac driver will choose one parent depending on the PHY
386 * interface mode, using clk_set_rate auto-reparenting.
387 * The actual TX clock rate is not controlled by the gmac_tx clock.
388 */
389 mii_phy_tx_clk: clk@2 {
390 #clock-cells = <0>;
391 compatible = "fixed-clock";
392 clock-frequency = <25000000>;
393 clock-output-names = "mii_phy_tx";
394 };
395
396 gmac_int_tx_clk: clk@3 {
397 #clock-cells = <0>;
398 compatible = "fixed-clock";
399 clock-frequency = <125000000>;
400 clock-output-names = "gmac_int_tx";
401 };
402
403 gmac_tx_clk: clk@01c20164 {
404 #clock-cells = <0>;
405 compatible = "allwinner,sun7i-a20-gmac-clk";
406 reg = <0x01c20164 0x4>;
407 clocks = <&mii_phy_tx_clk>, <&gmac_int_tx_clk>;
408 clock-output-names = "gmac_tx";
409 };
410
411 /*
Chen-Yu Tsai0aff0372014-01-01 10:30:48 +0800412 * Dummy clock used by output clocks
413 */
414 osc24M_32k: clk@1 {
415 #clock-cells = <0>;
416 compatible = "fixed-factor-clock";
417 clock-div = <750>;
418 clock-mult = <1>;
419 clocks = <&osc24M>;
420 clock-output-names = "osc24M_32k";
421 };
422
423 clk_out_a: clk@01c201f0 {
424 #clock-cells = <0>;
425 compatible = "allwinner,sun7i-a20-out-clk";
426 reg = <0x01c201f0 0x4>;
427 clocks = <&osc24M_32k>, <&osc32k>, <&osc24M>;
428 clock-output-names = "clk_out_a";
429 };
430
431 clk_out_b: clk@01c201f4 {
432 #clock-cells = <0>;
433 compatible = "allwinner,sun7i-a20-out-clk";
434 reg = <0x01c201f4 0x4>;
435 clocks = <&osc24M_32k>, <&osc32k>, <&osc24M>;
436 clock-output-names = "clk_out_b";
437 };
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200438 };
439
440 soc@01c00000 {
441 compatible = "simple-bus";
442 #address-cells = <1>;
443 #size-cells = <1>;
444 ranges;
445
Carlo Caione8ff973a2014-03-19 20:21:18 +0100446 nmi_intc: interrupt-controller@01c00030 {
447 compatible = "allwinner,sun7i-a20-sc-nmi";
448 interrupt-controller;
449 #interrupt-cells = <2>;
450 reg = <0x01c00030 0x0c>;
451 interrupts = <0 0 4>;
452 };
453
Emilio López316e0b02014-08-04 17:09:59 -0300454 dma: dma-controller@01c02000 {
455 compatible = "allwinner,sun4i-a10-dma";
456 reg = <0x01c02000 0x1000>;
457 interrupts = <0 27 4>;
458 clocks = <&ahb_gates 6>;
459 #dma-cells = <2>;
460 };
461
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100462 spi0: spi@01c05000 {
463 compatible = "allwinner,sun4i-a10-spi";
464 reg = <0x01c05000 0x1000>;
465 interrupts = <0 10 4>;
466 clocks = <&ahb_gates 20>, <&spi0_clk>;
467 clock-names = "ahb", "mod";
Emilio Lópezffec7212014-08-04 17:10:02 -0300468 dmas = <&dma 1 27>, <&dma 1 26>;
469 dma-names = "rx", "tx";
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100470 status = "disabled";
471 #address-cells = <1>;
472 #size-cells = <0>;
473 };
474
475 spi1: spi@01c06000 {
476 compatible = "allwinner,sun4i-a10-spi";
477 reg = <0x01c06000 0x1000>;
478 interrupts = <0 11 4>;
479 clocks = <&ahb_gates 21>, <&spi1_clk>;
480 clock-names = "ahb", "mod";
Emilio Lópezffec7212014-08-04 17:10:02 -0300481 dmas = <&dma 1 9>, <&dma 1 8>;
482 dma-names = "rx", "tx";
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100483 status = "disabled";
484 #address-cells = <1>;
485 #size-cells = <0>;
486 };
487
Maxime Ripard2e804d02013-09-11 11:10:06 +0200488 emac: ethernet@01c0b000 {
Maxime Ripard1c70e092014-02-02 14:49:13 +0100489 compatible = "allwinner,sun4i-a10-emac";
Maxime Ripard2e804d02013-09-11 11:10:06 +0200490 reg = <0x01c0b000 0x1000>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100491 interrupts = <0 55 4>;
Maxime Ripard2e804d02013-09-11 11:10:06 +0200492 clocks = <&ahb_gates 17>;
493 status = "disabled";
494 };
495
496 mdio@01c0b080 {
Maxime Ripard1c70e092014-02-02 14:49:13 +0100497 compatible = "allwinner,sun4i-a10-mdio";
Maxime Ripard2e804d02013-09-11 11:10:06 +0200498 reg = <0x01c0b080 0x14>;
499 status = "disabled";
500 #address-cells = <1>;
501 #size-cells = <0>;
502 };
503
Hans de Goededd29ce52014-05-02 17:57:26 +0200504 mmc0: mmc@01c0f000 {
505 compatible = "allwinner,sun5i-a13-mmc";
506 reg = <0x01c0f000 0x1000>;
507 clocks = <&ahb_gates 8>, <&mmc0_clk>;
508 clock-names = "ahb", "mmc";
509 interrupts = <0 32 4>;
510 status = "disabled";
511 };
512
513 mmc1: mmc@01c10000 {
514 compatible = "allwinner,sun5i-a13-mmc";
515 reg = <0x01c10000 0x1000>;
516 clocks = <&ahb_gates 9>, <&mmc1_clk>;
517 clock-names = "ahb", "mmc";
518 interrupts = <0 33 4>;
519 status = "disabled";
520 };
521
522 mmc2: mmc@01c11000 {
523 compatible = "allwinner,sun5i-a13-mmc";
524 reg = <0x01c11000 0x1000>;
525 clocks = <&ahb_gates 10>, <&mmc2_clk>;
526 clock-names = "ahb", "mmc";
527 interrupts = <0 34 4>;
528 status = "disabled";
529 };
530
531 mmc3: mmc@01c12000 {
532 compatible = "allwinner,sun5i-a13-mmc";
533 reg = <0x01c12000 0x1000>;
534 clocks = <&ahb_gates 11>, <&mmc3_clk>;
535 clock-names = "ahb", "mmc";
536 interrupts = <0 35 4>;
537 status = "disabled";
538 };
539
Roman Byshko9debd0a2014-03-01 20:26:25 +0100540 usbphy: phy@01c13400 {
541 #phy-cells = <1>;
542 compatible = "allwinner,sun7i-a20-usb-phy";
543 reg = <0x01c13400 0x10 0x01c14800 0x4 0x01c1c800 0x4>;
544 reg-names = "phy_ctrl", "pmu1", "pmu2";
545 clocks = <&usb_clk 8>;
546 clock-names = "usb_phy";
547 resets = <&usb_clk 1>, <&usb_clk 2>;
548 reset-names = "usb1_reset", "usb2_reset";
549 status = "disabled";
550 };
551
552 ehci0: usb@01c14000 {
553 compatible = "allwinner,sun7i-a20-ehci", "generic-ehci";
554 reg = <0x01c14000 0x100>;
555 interrupts = <0 39 4>;
556 clocks = <&ahb_gates 1>;
557 phys = <&usbphy 1>;
558 phy-names = "usb";
559 status = "disabled";
560 };
561
562 ohci0: usb@01c14400 {
563 compatible = "allwinner,sun7i-a20-ohci", "generic-ohci";
564 reg = <0x01c14400 0x100>;
565 interrupts = <0 64 4>;
566 clocks = <&usb_clk 6>, <&ahb_gates 2>;
567 phys = <&usbphy 1>;
568 phy-names = "usb";
569 status = "disabled";
570 };
571
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100572 spi2: spi@01c17000 {
573 compatible = "allwinner,sun4i-a10-spi";
574 reg = <0x01c17000 0x1000>;
575 interrupts = <0 12 4>;
576 clocks = <&ahb_gates 22>, <&spi2_clk>;
577 clock-names = "ahb", "mod";
Emilio Lópezffec7212014-08-04 17:10:02 -0300578 dmas = <&dma 1 29>, <&dma 1 28>;
579 dma-names = "rx", "tx";
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100580 status = "disabled";
581 #address-cells = <1>;
582 #size-cells = <0>;
583 };
584
Hans de Goede902febf2014-03-01 20:26:22 +0100585 ahci: sata@01c18000 {
586 compatible = "allwinner,sun4i-a10-ahci";
587 reg = <0x01c18000 0x1000>;
588 interrupts = <0 56 4>;
589 clocks = <&pll6 0>, <&ahb_gates 25>;
590 status = "disabled";
591 };
592
Roman Byshko9debd0a2014-03-01 20:26:25 +0100593 ehci1: usb@01c1c000 {
594 compatible = "allwinner,sun7i-a20-ehci", "generic-ehci";
595 reg = <0x01c1c000 0x100>;
596 interrupts = <0 40 4>;
597 clocks = <&ahb_gates 3>;
598 phys = <&usbphy 2>;
599 phy-names = "usb";
600 status = "disabled";
601 };
602
603 ohci1: usb@01c1c400 {
604 compatible = "allwinner,sun7i-a20-ohci", "generic-ohci";
605 reg = <0x01c1c400 0x100>;
606 interrupts = <0 65 4>;
607 clocks = <&usb_clk 7>, <&ahb_gates 4>;
608 phys = <&usbphy 2>;
609 phy-names = "usb";
610 status = "disabled";
611 };
612
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100613 spi3: spi@01c1f000 {
614 compatible = "allwinner,sun4i-a10-spi";
615 reg = <0x01c1f000 0x1000>;
616 interrupts = <0 50 4>;
617 clocks = <&ahb_gates 23>, <&spi3_clk>;
618 clock-names = "ahb", "mod";
Emilio Lópezffec7212014-08-04 17:10:02 -0300619 dmas = <&dma 1 31>, <&dma 1 30>;
620 dma-names = "rx", "tx";
Maxime Ripard36ab3e72014-02-22 22:35:54 +0100621 status = "disabled";
622 #address-cells = <1>;
623 #size-cells = <0>;
624 };
625
Maxime Ripard17eac032013-07-24 23:46:11 +0200626 pio: pinctrl@01c20800 {
627 compatible = "allwinner,sun7i-a20-pinctrl";
628 reg = <0x01c20800 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100629 interrupts = <0 28 4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200630 clocks = <&apb0_gates 5>;
Maxime Ripard17eac032013-07-24 23:46:11 +0200631 gpio-controller;
632 interrupt-controller;
Chen-Yu Tsai7d4ff962014-06-30 23:57:51 +0200633 #interrupt-cells = <2>;
Maxime Ripard17eac032013-07-24 23:46:11 +0200634 #size-cells = <0>;
635 #gpio-cells = <3>;
Maxime Ripard9f229ba2013-07-25 00:09:47 +0200636
Alexandre Bellonifd7898a2014-04-28 18:17:12 +0200637 pwm0_pins_a: pwm0@0 {
638 allwinner,pins = "PB2";
639 allwinner,function = "pwm";
640 allwinner,drive = <0>;
641 allwinner,pull = <0>;
642 };
643
644 pwm1_pins_a: pwm1@0 {
645 allwinner,pins = "PI3";
646 allwinner,function = "pwm";
647 allwinner,drive = <0>;
648 allwinner,pull = <0>;
649 };
650
Maxime Ripard9f229ba2013-07-25 00:09:47 +0200651 uart0_pins_a: uart0@0 {
652 allwinner,pins = "PB22", "PB23";
653 allwinner,function = "uart0";
654 allwinner,drive = <0>;
655 allwinner,pull = <0>;
656 };
657
Chen-Yu Tsai4261ec42014-01-14 22:49:50 +0800658 uart2_pins_a: uart2@0 {
659 allwinner,pins = "PI16", "PI17", "PI18", "PI19";
660 allwinner,function = "uart2";
661 allwinner,drive = <0>;
662 allwinner,pull = <0>;
663 };
664
Wills Wang7b5bace2014-08-19 15:33:00 +0800665 uart3_pins_a: uart3@0 {
666 allwinner,pins = "PG6", "PG7", "PG8", "PG9";
667 allwinner,function = "uart3";
668 allwinner,drive = <0>;
669 allwinner,pull = <0>;
670 };
671
672 uart4_pins_a: uart4@0 {
673 allwinner,pins = "PG10", "PG11";
674 allwinner,function = "uart4";
675 allwinner,drive = <0>;
676 allwinner,pull = <0>;
677 };
678
679 uart5_pins_a: uart5@0 {
680 allwinner,pins = "PI10", "PI11";
681 allwinner,function = "uart5";
682 allwinner,drive = <0>;
683 allwinner,pull = <0>;
684 };
685
Maxime Ripard9f229ba2013-07-25 00:09:47 +0200686 uart6_pins_a: uart6@0 {
687 allwinner,pins = "PI12", "PI13";
688 allwinner,function = "uart6";
689 allwinner,drive = <0>;
690 allwinner,pull = <0>;
691 };
692
693 uart7_pins_a: uart7@0 {
694 allwinner,pins = "PI20", "PI21";
695 allwinner,function = "uart7";
696 allwinner,drive = <0>;
697 allwinner,pull = <0>;
698 };
Maxime Ripard756084c2013-09-11 11:10:07 +0200699
Maxime Riparde5496a32013-08-31 23:08:49 +0200700 i2c0_pins_a: i2c0@0 {
701 allwinner,pins = "PB0", "PB1";
702 allwinner,function = "i2c0";
703 allwinner,drive = <0>;
704 allwinner,pull = <0>;
705 };
706
707 i2c1_pins_a: i2c1@0 {
708 allwinner,pins = "PB18", "PB19";
709 allwinner,function = "i2c1";
710 allwinner,drive = <0>;
711 allwinner,pull = <0>;
712 };
713
714 i2c2_pins_a: i2c2@0 {
715 allwinner,pins = "PB20", "PB21";
716 allwinner,function = "i2c2";
717 allwinner,drive = <0>;
718 allwinner,pull = <0>;
719 };
720
Wills Wang7b5bace2014-08-19 15:33:00 +0800721 i2c3_pins_a: i2c3@0 {
722 allwinner,pins = "PI0", "PI1";
723 allwinner,function = "i2c3";
724 allwinner,drive = <0>;
725 allwinner,pull = <0>;
726 };
727
Maxime Ripard756084c2013-09-11 11:10:07 +0200728 emac_pins_a: emac0@0 {
729 allwinner,pins = "PA0", "PA1", "PA2",
730 "PA3", "PA4", "PA5", "PA6",
731 "PA7", "PA8", "PA9", "PA10",
732 "PA11", "PA12", "PA13", "PA14",
733 "PA15", "PA16";
734 allwinner,function = "emac";
735 allwinner,drive = <0>;
736 allwinner,pull = <0>;
737 };
Chen-Yu Tsaif2e07592014-01-01 10:30:50 +0800738
739 clk_out_a_pins_a: clk_out_a@0 {
740 allwinner,pins = "PI12";
741 allwinner,function = "clk_out_a";
742 allwinner,drive = <0>;
743 allwinner,pull = <0>;
744 };
745
746 clk_out_b_pins_a: clk_out_b@0 {
747 allwinner,pins = "PI13";
748 allwinner,function = "clk_out_b";
749 allwinner,drive = <0>;
750 allwinner,pull = <0>;
751 };
Chen-Yu Tsai129ccbc2014-02-10 18:35:50 +0800752
753 gmac_pins_mii_a: gmac_mii@0 {
754 allwinner,pins = "PA0", "PA1", "PA2",
755 "PA3", "PA4", "PA5", "PA6",
756 "PA7", "PA8", "PA9", "PA10",
757 "PA11", "PA12", "PA13", "PA14",
758 "PA15", "PA16";
759 allwinner,function = "gmac";
760 allwinner,drive = <0>;
761 allwinner,pull = <0>;
762 };
763
764 gmac_pins_rgmii_a: gmac_rgmii@0 {
765 allwinner,pins = "PA0", "PA1", "PA2",
766 "PA3", "PA4", "PA5", "PA6",
767 "PA7", "PA8", "PA10",
768 "PA11", "PA12", "PA13",
769 "PA15", "PA16";
770 allwinner,function = "gmac";
771 /*
772 * data lines in RGMII mode use DDR mode
773 * and need a higher signal drive strength
774 */
775 allwinner,drive = <3>;
776 allwinner,pull = <0>;
777 };
Maxime Ripard412f2c62014-02-22 22:35:58 +0100778
779 spi1_pins_a: spi1@0 {
780 allwinner,pins = "PI16", "PI17", "PI18", "PI19";
781 allwinner,function = "spi1";
782 allwinner,drive = <0>;
783 allwinner,pull = <0>;
784 };
785
786 spi2_pins_a: spi2@0 {
787 allwinner,pins = "PC19", "PC20", "PC21", "PC22";
788 allwinner,function = "spi2";
789 allwinner,drive = <0>;
790 allwinner,pull = <0>;
791 };
Hans de Goede11fbedf2014-05-02 17:57:27 +0200792
Wills Wang7b5bace2014-08-19 15:33:00 +0800793 spi2_pins_b: spi2@1 {
794 allwinner,pins = "PB14", "PB15", "PB16", "PB17";
795 allwinner,function = "spi2";
796 allwinner,drive = <0>;
797 allwinner,pull = <0>;
798 };
799
Hans de Goede11fbedf2014-05-02 17:57:27 +0200800 mmc0_pins_a: mmc0@0 {
801 allwinner,pins = "PF0","PF1","PF2","PF3","PF4","PF5";
802 allwinner,function = "mmc0";
803 allwinner,drive = <2>;
804 allwinner,pull = <0>;
805 };
806
807 mmc0_cd_pin_reference_design: mmc0_cd_pin@0 {
808 allwinner,pins = "PH1";
809 allwinner,function = "gpio_in";
810 allwinner,drive = <0>;
811 allwinner,pull = <1>;
812 };
813
814 mmc3_pins_a: mmc3@0 {
815 allwinner,pins = "PI4","PI5","PI6","PI7","PI8","PI9";
816 allwinner,function = "mmc3";
817 allwinner,drive = <2>;
818 allwinner,pull = <0>;
819 };
Alexander Bersenev0fc2b7a2014-06-09 00:08:11 +0600820
821 ir0_pins_a: ir0@0 {
822 allwinner,pins = "PB3","PB4";
823 allwinner,function = "ir0";
824 allwinner,drive = <0>;
825 allwinner,pull = <0>;
826 };
827
828 ir1_pins_a: ir1@0 {
829 allwinner,pins = "PB22","PB23";
830 allwinner,function = "ir1";
831 allwinner,drive = <0>;
832 allwinner,pull = <0>;
833 };
Maxime Ripard17eac032013-07-24 23:46:11 +0200834 };
835
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200836 timer@01c20c00 {
Maxime Ripardb4f26442014-02-06 10:40:32 +0100837 compatible = "allwinner,sun4i-a10-timer";
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200838 reg = <0x01c20c00 0x90>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100839 interrupts = <0 22 4>,
840 <0 23 4>,
841 <0 24 4>,
842 <0 25 4>,
843 <0 67 4>,
844 <0 68 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200845 clocks = <&osc24M>;
846 };
847
848 wdt: watchdog@01c20c90 {
Maxime Ripardca5d04d2014-02-07 22:29:26 +0100849 compatible = "allwinner,sun4i-a10-wdt";
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200850 reg = <0x01c20c90 0x10>;
851 };
852
Carlo Caioneb5d905c2013-10-16 20:30:26 +0200853 rtc: rtc@01c20d00 {
854 compatible = "allwinner,sun7i-a20-rtc";
855 reg = <0x01c20d00 0x20>;
Maxime Ripard2f418982014-02-01 16:46:16 +0100856 interrupts = <0 24 4>;
Carlo Caioneb5d905c2013-10-16 20:30:26 +0200857 };
858
Alexandre Belloni8ec40c22014-04-28 18:17:13 +0200859 pwm: pwm@01c20e00 {
860 compatible = "allwinner,sun7i-a20-pwm";
861 reg = <0x01c20e00 0xc>;
862 clocks = <&osc24M>;
863 #pwm-cells = <3>;
864 status = "disabled";
865 };
866
Alexander Bersenevc1a0ee32014-06-21 17:04:05 +0600867 ir0: ir@01c21800 {
Hans de Goede1715a382014-06-30 23:57:54 +0200868 compatible = "allwinner,sun4i-a10-ir";
Alexander Bersenevc1a0ee32014-06-21 17:04:05 +0600869 clocks = <&apb0_gates 6>, <&ir0_clk>;
870 clock-names = "apb", "ir";
871 interrupts = <0 5 4>;
872 reg = <0x01c21800 0x40>;
873 status = "disabled";
874 };
875
876 ir1: ir@01c21c00 {
Hans de Goede1715a382014-06-30 23:57:54 +0200877 compatible = "allwinner,sun4i-a10-ir";
Alexander Bersenevc1a0ee32014-06-21 17:04:05 +0600878 clocks = <&apb0_gates 7>, <&ir1_clk>;
879 clock-names = "apb", "ir";
880 interrupts = <0 6 4>;
881 reg = <0x01c21c00 0x40>;
882 status = "disabled";
883 };
884
Oliver Schinagl2bad9692013-09-03 12:33:28 +0200885 sid: eeprom@01c23800 {
886 compatible = "allwinner,sun7i-a20-sid";
887 reg = <0x01c23800 0x200>;
888 };
889
Hans de Goede00f7ed82013-12-31 17:20:52 +0100890 rtp: rtp@01c25000 {
Maxime Ripard40dd8f32014-02-02 14:52:40 +0100891 compatible = "allwinner,sun4i-a10-ts";
Hans de Goede00f7ed82013-12-31 17:20:52 +0100892 reg = <0x01c25000 0x100>;
893 interrupts = <0 29 4>;
894 };
895
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200896 uart0: serial@01c28000 {
897 compatible = "snps,dw-apb-uart";
898 reg = <0x01c28000 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100899 interrupts = <0 1 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200900 reg-shift = <2>;
901 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200902 clocks = <&apb1_gates 16>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200903 status = "disabled";
904 };
905
906 uart1: serial@01c28400 {
907 compatible = "snps,dw-apb-uart";
908 reg = <0x01c28400 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100909 interrupts = <0 2 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200910 reg-shift = <2>;
911 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200912 clocks = <&apb1_gates 17>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200913 status = "disabled";
914 };
915
916 uart2: serial@01c28800 {
917 compatible = "snps,dw-apb-uart";
918 reg = <0x01c28800 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100919 interrupts = <0 3 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200920 reg-shift = <2>;
921 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200922 clocks = <&apb1_gates 18>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200923 status = "disabled";
924 };
925
926 uart3: serial@01c28c00 {
927 compatible = "snps,dw-apb-uart";
928 reg = <0x01c28c00 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100929 interrupts = <0 4 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200930 reg-shift = <2>;
931 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200932 clocks = <&apb1_gates 19>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200933 status = "disabled";
934 };
935
936 uart4: serial@01c29000 {
937 compatible = "snps,dw-apb-uart";
938 reg = <0x01c29000 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100939 interrupts = <0 17 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200940 reg-shift = <2>;
941 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200942 clocks = <&apb1_gates 20>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200943 status = "disabled";
944 };
945
946 uart5: serial@01c29400 {
947 compatible = "snps,dw-apb-uart";
948 reg = <0x01c29400 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100949 interrupts = <0 18 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200950 reg-shift = <2>;
951 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200952 clocks = <&apb1_gates 21>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200953 status = "disabled";
954 };
955
956 uart6: serial@01c29800 {
957 compatible = "snps,dw-apb-uart";
958 reg = <0x01c29800 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100959 interrupts = <0 19 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200960 reg-shift = <2>;
961 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200962 clocks = <&apb1_gates 22>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200963 status = "disabled";
964 };
965
966 uart7: serial@01c29c00 {
967 compatible = "snps,dw-apb-uart";
968 reg = <0x01c29c00 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100969 interrupts = <0 20 4>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200970 reg-shift = <2>;
971 reg-io-width = <4>;
Maxime Ripardde7dc932013-07-25 21:12:52 +0200972 clocks = <&apb1_gates 23>;
Maxime Ripard4790ecf2013-07-17 10:07:10 +0200973 status = "disabled";
974 };
975
Maxime Ripard428abbb2013-08-31 23:07:24 +0200976 i2c0: i2c@01c2ac00 {
Maxime Ripardd2755452014-03-31 14:54:58 +0200977 compatible = "allwinner,sun7i-a20-i2c", "allwinner,sun4i-a10-i2c";
Maxime Ripard428abbb2013-08-31 23:07:24 +0200978 reg = <0x01c2ac00 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100979 interrupts = <0 7 4>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200980 clocks = <&apb1_gates 0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200981 status = "disabled";
Hans de Goeded1412ae2014-04-13 13:41:05 +0200982 #address-cells = <1>;
983 #size-cells = <0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200984 };
985
986 i2c1: i2c@01c2b000 {
Maxime Ripardd2755452014-03-31 14:54:58 +0200987 compatible = "allwinner,sun7i-a20-i2c", "allwinner,sun4i-a10-i2c";
Maxime Ripard428abbb2013-08-31 23:07:24 +0200988 reg = <0x01c2b000 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100989 interrupts = <0 8 4>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200990 clocks = <&apb1_gates 1>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200991 status = "disabled";
Hans de Goeded1412ae2014-04-13 13:41:05 +0200992 #address-cells = <1>;
993 #size-cells = <0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +0200994 };
995
996 i2c2: i2c@01c2b400 {
Maxime Ripardd2755452014-03-31 14:54:58 +0200997 compatible = "allwinner,sun7i-a20-i2c", "allwinner,sun4i-a10-i2c";
Maxime Ripard428abbb2013-08-31 23:07:24 +0200998 reg = <0x01c2b400 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +0100999 interrupts = <0 9 4>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001000 clocks = <&apb1_gates 2>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001001 status = "disabled";
Hans de Goeded1412ae2014-04-13 13:41:05 +02001002 #address-cells = <1>;
1003 #size-cells = <0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001004 };
1005
1006 i2c3: i2c@01c2b800 {
Maxime Ripardd2755452014-03-31 14:54:58 +02001007 compatible = "allwinner,sun7i-a20-i2c", "allwinner,sun4i-a10-i2c";
Maxime Ripard428abbb2013-08-31 23:07:24 +02001008 reg = <0x01c2b800 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +01001009 interrupts = <0 88 4>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001010 clocks = <&apb1_gates 3>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001011 status = "disabled";
Hans de Goeded1412ae2014-04-13 13:41:05 +02001012 #address-cells = <1>;
1013 #size-cells = <0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001014 };
1015
Maxime Riparda3867042014-04-18 21:13:08 +02001016 i2c4: i2c@01c2c000 {
Maxime Ripardd2755452014-03-31 14:54:58 +02001017 compatible = "allwinner,sun7i-a20-i2c", "allwinner,sun4i-a10-i2c";
Maxime Riparda3867042014-04-18 21:13:08 +02001018 reg = <0x01c2c000 0x400>;
Maxime Ripard378d0ae2013-12-10 19:37:21 +01001019 interrupts = <0 89 4>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001020 clocks = <&apb1_gates 15>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001021 status = "disabled";
Hans de Goeded1412ae2014-04-13 13:41:05 +02001022 #address-cells = <1>;
1023 #size-cells = <0>;
Maxime Ripard428abbb2013-08-31 23:07:24 +02001024 };
1025
Chen-Yu Tsaic40b8d52014-02-10 18:35:49 +08001026 gmac: ethernet@01c50000 {
1027 compatible = "allwinner,sun7i-a20-gmac";
1028 reg = <0x01c50000 0x10000>;
1029 interrupts = <0 85 4>;
1030 interrupt-names = "macirq";
1031 clocks = <&ahb_gates 49>, <&gmac_tx_clk>;
1032 clock-names = "stmmaceth", "allwinner_gmac_tx";
1033 snps,pbl = <2>;
1034 snps,fixed-burst;
1035 snps,force_sf_dma_mode;
1036 status = "disabled";
1037 #address-cells = <1>;
1038 #size-cells = <0>;
1039 };
1040
Maxime Ripard31f8ad32013-11-07 12:01:48 +01001041 hstimer@01c60000 {
1042 compatible = "allwinner,sun7i-a20-hstimer";
1043 reg = <0x01c60000 0x1000>;
Maxime Ripard2f418982014-02-01 16:46:16 +01001044 interrupts = <0 81 4>,
1045 <0 82 4>,
1046 <0 83 4>,
1047 <0 84 4>;
Maxime Ripard31f8ad32013-11-07 12:01:48 +01001048 clocks = <&ahb_gates 28>;
1049 };
1050
Maxime Ripard4790ecf2013-07-17 10:07:10 +02001051 gic: interrupt-controller@01c81000 {
1052 compatible = "arm,cortex-a7-gic", "arm,cortex-a15-gic";
1053 reg = <0x01c81000 0x1000>,
1054 <0x01c82000 0x1000>,
1055 <0x01c84000 0x2000>,
1056 <0x01c86000 0x2000>;
1057 interrupt-controller;
1058 #interrupt-cells = <3>;
1059 interrupts = <1 9 0xf04>;
1060 };
1061 };
1062};