blob: 7dde32f2170d383ee34651961d3e81e690c168d3 [file] [log] [blame]
Stefan Roese7423d2d2012-11-26 15:46:12 +01001/*
2 * Copyright 2012 Stefan Roese
3 * Stefan Roese <sr@denx.de>
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
Maxime Ripard69144e32013-03-13 20:07:37 +010013/include/ "skeleton.dtsi"
Stefan Roese7423d2d2012-11-26 15:46:12 +010014
15/ {
Maxime Ripard69144e32013-03-13 20:07:37 +010016 interrupt-parent = <&intc>;
17
18 cpus {
19 cpu@0 {
20 compatible = "arm,cortex-a8";
21 };
22 };
23
Stefan Roese7423d2d2012-11-26 15:46:12 +010024 memory {
25 reg = <0x40000000 0x80000000>;
26 };
Maxime Ripard874b4e42013-01-26 15:36:54 +010027
Maxime Ripard69144e32013-03-13 20:07:37 +010028 clocks {
29 #address-cells = <1>;
30 #size-cells = <1>;
31 ranges;
32
33 /*
34 * This is a dummy clock, to be used as placeholder on
35 * other mux clocks when a specific parent clock is not
36 * yet implemented. It should be dropped when the driver
37 * is complete.
38 */
39 dummy: dummy {
40 #clock-cells = <0>;
41 compatible = "fixed-clock";
42 clock-frequency = <0>;
43 };
44
Maxime Ripard69144e32013-03-13 20:07:37 +010045 osc24M: osc24M@01c20050 {
46 #clock-cells = <0>;
47 compatible = "allwinner,sun4i-osc-clk";
48 reg = <0x01c20050 0x4>;
Emilio López92fd6e02013-04-09 10:48:04 -030049 clock-frequency = <24000000>;
Maxime Ripard69144e32013-03-13 20:07:37 +010050 };
51
52 osc32k: osc32k {
53 #clock-cells = <0>;
54 compatible = "fixed-clock";
55 clock-frequency = <32768>;
56 };
57
58 pll1: pll1@01c20000 {
59 #clock-cells = <0>;
60 compatible = "allwinner,sun4i-pll1-clk";
61 reg = <0x01c20000 0x4>;
62 clocks = <&osc24M>;
63 };
64
65 /* dummy is 200M */
66 cpu: cpu@01c20054 {
67 #clock-cells = <0>;
68 compatible = "allwinner,sun4i-cpu-clk";
69 reg = <0x01c20054 0x4>;
70 clocks = <&osc32k>, <&osc24M>, <&pll1>, <&dummy>;
71 };
72
73 axi: axi@01c20054 {
74 #clock-cells = <0>;
75 compatible = "allwinner,sun4i-axi-clk";
76 reg = <0x01c20054 0x4>;
77 clocks = <&cpu>;
78 };
79
80 axi_gates: axi_gates@01c2005c {
81 #clock-cells = <1>;
82 compatible = "allwinner,sun4i-axi-gates-clk";
83 reg = <0x01c2005c 0x4>;
84 clocks = <&axi>;
85 clock-output-names = "axi_dram";
86 };
87
88 ahb: ahb@01c20054 {
89 #clock-cells = <0>;
90 compatible = "allwinner,sun4i-ahb-clk";
91 reg = <0x01c20054 0x4>;
92 clocks = <&axi>;
93 };
94
95 ahb_gates: ahb_gates@01c20060 {
96 #clock-cells = <1>;
97 compatible = "allwinner,sun4i-ahb-gates-clk";
98 reg = <0x01c20060 0x8>;
99 clocks = <&ahb>;
100 clock-output-names = "ahb_usb0", "ahb_ehci0",
101 "ahb_ohci0", "ahb_ehci1", "ahb_ohci1", "ahb_ss",
102 "ahb_dma", "ahb_bist", "ahb_mmc0", "ahb_mmc1",
103 "ahb_mmc2", "ahb_mmc3", "ahb_ms", "ahb_nand",
104 "ahb_sdram", "ahb_ace", "ahb_emac", "ahb_ts",
105 "ahb_spi0", "ahb_spi1", "ahb_spi2", "ahb_spi3",
106 "ahb_pata", "ahb_sata", "ahb_gps", "ahb_ve",
107 "ahb_tvd", "ahb_tve0", "ahb_tve1", "ahb_lcd0",
108 "ahb_lcd1", "ahb_csi0", "ahb_csi1", "ahb_hdmi",
109 "ahb_de_be0", "ahb_de_be1", "ahb_de_fe0",
110 "ahb_de_fe1", "ahb_mp", "ahb_mali400";
111 };
112
113 apb0: apb0@01c20054 {
114 #clock-cells = <0>;
115 compatible = "allwinner,sun4i-apb0-clk";
116 reg = <0x01c20054 0x4>;
117 clocks = <&ahb>;
118 };
119
120 apb0_gates: apb0_gates@01c20068 {
121 #clock-cells = <1>;
122 compatible = "allwinner,sun4i-apb0-gates-clk";
123 reg = <0x01c20068 0x4>;
124 clocks = <&apb0>;
125 clock-output-names = "apb0_codec", "apb0_spdif",
126 "apb0_ac97", "apb0_iis", "apb0_pio", "apb0_ir0",
127 "apb0_ir1", "apb0_keypad";
128 };
129
130 /* dummy is pll62 */
131 apb1_mux: apb1_mux@01c20058 {
132 #clock-cells = <0>;
133 compatible = "allwinner,sun4i-apb1-mux-clk";
134 reg = <0x01c20058 0x4>;
135 clocks = <&osc24M>, <&dummy>, <&osc32k>;
136 };
137
138 apb1: apb1@01c20058 {
139 #clock-cells = <0>;
140 compatible = "allwinner,sun4i-apb1-clk";
141 reg = <0x01c20058 0x4>;
142 clocks = <&apb1_mux>;
143 };
144
145 apb1_gates: apb1_gates@01c2006c {
146 #clock-cells = <1>;
147 compatible = "allwinner,sun4i-apb1-gates-clk";
148 reg = <0x01c2006c 0x4>;
149 clocks = <&apb1>;
150 clock-output-names = "apb1_i2c0", "apb1_i2c1",
151 "apb1_i2c2", "apb1_can", "apb1_scr",
152 "apb1_ps20", "apb1_ps21", "apb1_uart0",
153 "apb1_uart1", "apb1_uart2", "apb1_uart3",
154 "apb1_uart4", "apb1_uart5", "apb1_uart6",
155 "apb1_uart7";
156 };
157 };
158
159 soc@01c20000 {
160 compatible = "simple-bus";
161 #address-cells = <1>;
162 #size-cells = <1>;
163 reg = <0x01c20000 0x300000>;
164 ranges;
165
166 intc: interrupt-controller@01c20400 {
Maxime Ripard6def1262013-03-24 19:20:52 +0100167 compatible = "allwinner,sun4i-ic";
Maxime Ripard69144e32013-03-13 20:07:37 +0100168 reg = <0x01c20400 0x400>;
169 interrupt-controller;
170 #interrupt-cells = <1>;
171 };
172
Maxime Riparde10911e2013-01-27 19:26:05 +0100173 pio: pinctrl@01c20800 {
Maxime Ripard874b4e42013-01-26 15:36:54 +0100174 compatible = "allwinner,sun4i-a10-pinctrl";
175 reg = <0x01c20800 0x400>;
Maxime Ripard39138bc2013-04-06 15:00:48 +0200176 interrupts = <28>;
Emilio López36386d62013-03-27 18:20:41 -0300177 clocks = <&apb0_gates 5>;
Maxime Riparde10911e2013-01-27 19:26:05 +0100178 gpio-controller;
Maxime Ripard39138bc2013-04-06 15:00:48 +0200179 interrupt-controller;
Maxime Ripard874b4e42013-01-26 15:36:54 +0100180 #address-cells = <1>;
181 #size-cells = <0>;
Maxime Riparde10911e2013-01-27 19:26:05 +0100182 #gpio-cells = <3>;
Maxime Ripard581981b2013-01-26 15:36:55 +0100183
184 uart0_pins_a: uart0@0 {
185 allwinner,pins = "PB22", "PB23";
186 allwinner,function = "uart0";
187 allwinner,drive = <0>;
188 allwinner,pull = <0>;
189 };
190
191 uart0_pins_b: uart0@1 {
192 allwinner,pins = "PF2", "PF4";
193 allwinner,function = "uart0";
194 allwinner,drive = <0>;
195 allwinner,pull = <0>;
196 };
197
198 uart1_pins_a: uart1@0 {
199 allwinner,pins = "PA10", "PA11";
200 allwinner,function = "uart1";
201 allwinner,drive = <0>;
202 allwinner,pull = <0>;
203 };
Maxime Ripard27cce4f2013-03-10 13:44:38 +0100204
205 i2c0_pins_a: i2c0@0 {
206 allwinner,pins = "PB0", "PB1";
207 allwinner,function = "i2c0";
208 allwinner,drive = <0>;
209 allwinner,pull = <0>;
210 };
211
212 i2c1_pins_a: i2c1@0 {
213 allwinner,pins = "PB18", "PB19";
214 allwinner,function = "i2c1";
215 allwinner,drive = <0>;
216 allwinner,pull = <0>;
217 };
218
219 i2c2_pins_a: i2c2@0 {
220 allwinner,pins = "PB20", "PB21";
221 allwinner,function = "i2c2";
222 allwinner,drive = <0>;
223 allwinner,pull = <0>;
224 };
Maxime Ripard874b4e42013-01-26 15:36:54 +0100225 };
Maxime Ripard89b3c992013-02-20 17:25:03 -0800226
Maxime Ripard69144e32013-03-13 20:07:37 +0100227 timer@01c20c00 {
Maxime Ripardb6e1a532013-03-24 19:00:17 +0100228 compatible = "allwinner,sun4i-timer";
Maxime Ripard69144e32013-03-13 20:07:37 +0100229 reg = <0x01c20c00 0x90>;
230 interrupts = <22>;
231 clocks = <&osc24M>;
232 };
233
234 wdt: watchdog@01c20c90 {
Maxime Ripard0b19b7c2013-03-24 19:32:34 +0100235 compatible = "allwinner,sun4i-wdt";
Maxime Ripard69144e32013-03-13 20:07:37 +0100236 reg = <0x01c20c90 0x10>;
237 };
238
Maxime Ripard89b3c992013-02-20 17:25:03 -0800239 uart0: serial@01c28000 {
240 compatible = "snps,dw-apb-uart";
241 reg = <0x01c28000 0x400>;
242 interrupts = <1>;
243 reg-shift = <2>;
244 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300245 clocks = <&apb1_gates 16>;
Maxime Ripard89b3c992013-02-20 17:25:03 -0800246 status = "disabled";
247 };
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800248
Maxime Ripard69144e32013-03-13 20:07:37 +0100249 uart1: serial@01c28400 {
250 compatible = "snps,dw-apb-uart";
251 reg = <0x01c28400 0x400>;
252 interrupts = <2>;
253 reg-shift = <2>;
254 reg-io-width = <4>;
255 clocks = <&apb1_gates 17>;
256 status = "disabled";
257 };
258
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800259 uart2: serial@01c28800 {
260 compatible = "snps,dw-apb-uart";
261 reg = <0x01c28800 0x400>;
262 interrupts = <3>;
263 reg-shift = <2>;
264 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300265 clocks = <&apb1_gates 18>;
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800266 status = "disabled";
267 };
268
Maxime Ripard69144e32013-03-13 20:07:37 +0100269 uart3: serial@01c28c00 {
270 compatible = "snps,dw-apb-uart";
271 reg = <0x01c28c00 0x400>;
272 interrupts = <4>;
273 reg-shift = <2>;
274 reg-io-width = <4>;
275 clocks = <&apb1_gates 19>;
276 status = "disabled";
277 };
278
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800279 uart4: serial@01c29000 {
280 compatible = "snps,dw-apb-uart";
281 reg = <0x01c29000 0x400>;
282 interrupts = <17>;
283 reg-shift = <2>;
284 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300285 clocks = <&apb1_gates 20>;
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800286 status = "disabled";
287 };
288
289 uart5: serial@01c29400 {
290 compatible = "snps,dw-apb-uart";
291 reg = <0x01c29400 0x400>;
292 interrupts = <18>;
293 reg-shift = <2>;
294 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300295 clocks = <&apb1_gates 21>;
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800296 status = "disabled";
297 };
298
299 uart6: serial@01c29800 {
300 compatible = "snps,dw-apb-uart";
301 reg = <0x01c29800 0x400>;
302 interrupts = <19>;
303 reg-shift = <2>;
304 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300305 clocks = <&apb1_gates 22>;
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800306 status = "disabled";
307 };
308
309 uart7: serial@01c29c00 {
310 compatible = "snps,dw-apb-uart";
311 reg = <0x01c29c00 0x400>;
312 interrupts = <20>;
313 reg-shift = <2>;
314 reg-io-width = <4>;
Emilio López9ff49ec2013-03-27 18:20:39 -0300315 clocks = <&apb1_gates 23>;
Maxime Ripard76f14d0a2013-02-20 17:38:27 -0800316 status = "disabled";
317 };
Maxime Ripardf1741fd2013-03-10 13:34:36 +0100318
319 i2c0: i2c@01c2ac00 {
320 compatible = "allwinner,sun4i-i2c";
321 reg = <0x01c2ac00 0x400>;
322 interrupts = <7>;
323 clocks = <&apb1_gates 0>;
324 clock-frequency = <100000>;
325 status = "disabled";
326 };
327
328 i2c1: i2c@01c2b000 {
329 compatible = "allwinner,sun4i-i2c";
330 reg = <0x01c2b000 0x400>;
331 interrupts = <8>;
332 clocks = <&apb1_gates 1>;
333 clock-frequency = <100000>;
334 status = "disabled";
335 };
336
337 i2c2: i2c@01c2b400 {
338 compatible = "allwinner,sun4i-i2c";
339 reg = <0x01c2b400 0x400>;
340 interrupts = <9>;
341 clocks = <&apb1_gates 2>;
342 clock-frequency = <100000>;
343 status = "disabled";
344 };
Maxime Ripard874b4e42013-01-26 15:36:54 +0100345 };
Stefan Roese7423d2d2012-11-26 15:46:12 +0100346};