blob: d1dbfb4fa71ee8aa9a0d4c2da1e6407c246e11c5 [file] [log] [blame]
Shawn Guoe29fe212013-05-03 11:26:30 +08001/*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 */
9
Troy Kisky13088c22013-11-14 14:02:12 -070010#include <dt-bindings/interrupt-controller/irq.h>
Shawn Guoe29fe212013-05-03 11:26:30 +080011#include "skeleton.dtsi"
12#include "imx6sl-pinfunc.h"
13#include <dt-bindings/clock/imx6sl-clock.h>
14
15/ {
16 aliases {
Shawn Guoe29fe212013-05-03 11:26:30 +080017 gpio0 = &gpio1;
18 gpio1 = &gpio2;
19 gpio2 = &gpio3;
20 gpio3 = &gpio4;
21 gpio4 = &gpio5;
Fabio Estevam640a7f32013-09-13 18:13:00 -030022 serial0 = &uart1;
23 serial1 = &uart2;
24 serial2 = &uart3;
25 serial3 = &uart4;
26 serial4 = &uart5;
27 spi0 = &ecspi1;
28 spi1 = &ecspi2;
29 spi2 = &ecspi3;
30 spi3 = &ecspi4;
Shawn Guoe29fe212013-05-03 11:26:30 +080031 };
32
33 cpus {
34 #address-cells = <1>;
35 #size-cells = <0>;
36
37 cpu@0 {
38 compatible = "arm,cortex-a9";
39 device_type = "cpu";
40 reg = <0x0>;
41 next-level-cache = <&L2>;
42 };
43 };
44
45 intc: interrupt-controller@00a01000 {
46 compatible = "arm,cortex-a9-gic";
47 #interrupt-cells = <3>;
48 #address-cells = <1>;
49 #size-cells = <1>;
50 interrupt-controller;
51 reg = <0x00a01000 0x1000>,
52 <0x00a00100 0x100>;
53 };
54
55 clocks {
56 #address-cells = <1>;
57 #size-cells = <0>;
58
59 ckil {
60 compatible = "fixed-clock";
61 clock-frequency = <32768>;
62 };
63
64 osc {
65 compatible = "fixed-clock";
66 clock-frequency = <24000000>;
67 };
68 };
69
70 soc {
71 #address-cells = <1>;
72 #size-cells = <1>;
73 compatible = "simple-bus";
74 interrupt-parent = <&intc>;
75 ranges;
76
77 L2: l2-cache@00a02000 {
78 compatible = "arm,pl310-cache";
79 reg = <0x00a02000 0x1000>;
Troy Kisky13088c22013-11-14 14:02:12 -070080 interrupts = <0 92 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +080081 cache-unified;
82 cache-level = <2>;
83 arm,tag-latency = <4 2 3>;
84 arm,data-latency = <4 2 3>;
85 };
86
87 pmu {
88 compatible = "arm,cortex-a9-pmu";
Troy Kisky13088c22013-11-14 14:02:12 -070089 interrupts = <0 94 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +080090 };
91
92 aips1: aips-bus@02000000 {
93 compatible = "fsl,aips-bus", "simple-bus";
94 #address-cells = <1>;
95 #size-cells = <1>;
96 reg = <0x02000000 0x100000>;
97 ranges;
98
99 spba: spba-bus@02000000 {
100 compatible = "fsl,spba-bus", "simple-bus";
101 #address-cells = <1>;
102 #size-cells = <1>;
103 reg = <0x02000000 0x40000>;
104 ranges;
105
106 spdif: spdif@02004000 {
107 reg = <0x02004000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700108 interrupts = <0 52 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800109 };
110
111 ecspi1: ecspi@02008000 {
112 #address-cells = <1>;
113 #size-cells = <0>;
114 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
115 reg = <0x02008000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700116 interrupts = <0 31 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800117 clocks = <&clks IMX6SL_CLK_ECSPI1>,
118 <&clks IMX6SL_CLK_ECSPI1>;
119 clock-names = "ipg", "per";
120 status = "disabled";
121 };
122
123 ecspi2: ecspi@0200c000 {
124 #address-cells = <1>;
125 #size-cells = <0>;
126 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
127 reg = <0x0200c000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700128 interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800129 clocks = <&clks IMX6SL_CLK_ECSPI2>,
130 <&clks IMX6SL_CLK_ECSPI2>;
131 clock-names = "ipg", "per";
132 status = "disabled";
133 };
134
135 ecspi3: ecspi@02010000 {
136 #address-cells = <1>;
137 #size-cells = <0>;
138 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
139 reg = <0x02010000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700140 interrupts = <0 33 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800141 clocks = <&clks IMX6SL_CLK_ECSPI3>,
142 <&clks IMX6SL_CLK_ECSPI3>;
143 clock-names = "ipg", "per";
144 status = "disabled";
145 };
146
147 ecspi4: ecspi@02014000 {
148 #address-cells = <1>;
149 #size-cells = <0>;
150 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
151 reg = <0x02014000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700152 interrupts = <0 34 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800153 clocks = <&clks IMX6SL_CLK_ECSPI4>,
154 <&clks IMX6SL_CLK_ECSPI4>;
155 clock-names = "ipg", "per";
156 status = "disabled";
157 };
158
159 uart5: serial@02018000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800160 compatible = "fsl,imx6sl-uart",
161 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800162 reg = <0x02018000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700163 interrupts = <0 30 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800164 clocks = <&clks IMX6SL_CLK_UART>,
165 <&clks IMX6SL_CLK_UART_SERIAL>;
166 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800167 dmas = <&sdma 33 4 0>, <&sdma 34 4 0>;
168 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800169 status = "disabled";
170 };
171
172 uart1: serial@02020000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800173 compatible = "fsl,imx6sl-uart",
174 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800175 reg = <0x02020000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700176 interrupts = <0 26 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800177 clocks = <&clks IMX6SL_CLK_UART>,
178 <&clks IMX6SL_CLK_UART_SERIAL>;
179 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800180 dmas = <&sdma 25 4 0>, <&sdma 26 4 0>;
181 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800182 status = "disabled";
183 };
184
185 uart2: serial@02024000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800186 compatible = "fsl,imx6sl-uart",
187 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800188 reg = <0x02024000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700189 interrupts = <0 27 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800190 clocks = <&clks IMX6SL_CLK_UART>,
191 <&clks IMX6SL_CLK_UART_SERIAL>;
192 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800193 dmas = <&sdma 27 4 0>, <&sdma 28 4 0>;
194 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800195 status = "disabled";
196 };
197
198 ssi1: ssi@02028000 {
199 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
200 reg = <0x02028000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700201 interrupts = <0 46 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800202 clocks = <&clks IMX6SL_CLK_SSI1>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800203 dmas = <&sdma 37 1 0>,
204 <&sdma 38 1 0>;
205 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800206 fsl,fifo-depth = <15>;
207 status = "disabled";
208 };
209
210 ssi2: ssi@0202c000 {
211 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
212 reg = <0x0202c000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700213 interrupts = <0 47 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800214 clocks = <&clks IMX6SL_CLK_SSI2>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800215 dmas = <&sdma 41 1 0>,
216 <&sdma 42 1 0>;
217 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800218 fsl,fifo-depth = <15>;
219 status = "disabled";
220 };
221
222 ssi3: ssi@02030000 {
223 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
224 reg = <0x02030000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700225 interrupts = <0 48 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800226 clocks = <&clks IMX6SL_CLK_SSI3>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800227 dmas = <&sdma 45 1 0>,
228 <&sdma 46 1 0>;
229 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800230 fsl,fifo-depth = <15>;
231 status = "disabled";
232 };
233
234 uart3: serial@02034000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800235 compatible = "fsl,imx6sl-uart",
236 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800237 reg = <0x02034000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700238 interrupts = <0 28 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800239 clocks = <&clks IMX6SL_CLK_UART>,
240 <&clks IMX6SL_CLK_UART_SERIAL>;
241 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800242 dmas = <&sdma 29 4 0>, <&sdma 30 4 0>;
243 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800244 status = "disabled";
245 };
246
247 uart4: serial@02038000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800248 compatible = "fsl,imx6sl-uart",
249 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800250 reg = <0x02038000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700251 interrupts = <0 29 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800252 clocks = <&clks IMX6SL_CLK_UART>,
253 <&clks IMX6SL_CLK_UART_SERIAL>;
254 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800255 dmas = <&sdma 31 4 0>, <&sdma 32 4 0>;
256 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800257 status = "disabled";
258 };
259 };
260
261 pwm1: pwm@02080000 {
262 #pwm-cells = <2>;
263 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
264 reg = <0x02080000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700265 interrupts = <0 83 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800266 clocks = <&clks IMX6SL_CLK_PWM1>,
267 <&clks IMX6SL_CLK_PWM1>;
268 clock-names = "ipg", "per";
269 };
270
271 pwm2: pwm@02084000 {
272 #pwm-cells = <2>;
273 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
274 reg = <0x02084000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700275 interrupts = <0 84 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800276 clocks = <&clks IMX6SL_CLK_PWM2>,
277 <&clks IMX6SL_CLK_PWM2>;
278 clock-names = "ipg", "per";
279 };
280
281 pwm3: pwm@02088000 {
282 #pwm-cells = <2>;
283 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
284 reg = <0x02088000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700285 interrupts = <0 85 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800286 clocks = <&clks IMX6SL_CLK_PWM3>,
287 <&clks IMX6SL_CLK_PWM3>;
288 clock-names = "ipg", "per";
289 };
290
291 pwm4: pwm@0208c000 {
292 #pwm-cells = <2>;
293 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
294 reg = <0x0208c000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700295 interrupts = <0 86 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800296 clocks = <&clks IMX6SL_CLK_PWM4>,
297 <&clks IMX6SL_CLK_PWM4>;
298 clock-names = "ipg", "per";
299 };
300
301 gpt: gpt@02098000 {
302 compatible = "fsl,imx6sl-gpt";
303 reg = <0x02098000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700304 interrupts = <0 55 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800305 clocks = <&clks IMX6SL_CLK_GPT>,
306 <&clks IMX6SL_CLK_GPT_SERIAL>;
307 clock-names = "ipg", "per";
308 };
309
310 gpio1: gpio@0209c000 {
311 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
312 reg = <0x0209c000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700313 interrupts = <0 66 IRQ_TYPE_LEVEL_HIGH>,
314 <0 67 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800315 gpio-controller;
316 #gpio-cells = <2>;
317 interrupt-controller;
318 #interrupt-cells = <2>;
319 };
320
321 gpio2: gpio@020a0000 {
322 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
323 reg = <0x020a0000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700324 interrupts = <0 68 IRQ_TYPE_LEVEL_HIGH>,
325 <0 69 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800326 gpio-controller;
327 #gpio-cells = <2>;
328 interrupt-controller;
329 #interrupt-cells = <2>;
330 };
331
332 gpio3: gpio@020a4000 {
333 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
334 reg = <0x020a4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700335 interrupts = <0 70 IRQ_TYPE_LEVEL_HIGH>,
336 <0 71 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800337 gpio-controller;
338 #gpio-cells = <2>;
339 interrupt-controller;
340 #interrupt-cells = <2>;
341 };
342
343 gpio4: gpio@020a8000 {
344 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
345 reg = <0x020a8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700346 interrupts = <0 72 IRQ_TYPE_LEVEL_HIGH>,
347 <0 73 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800348 gpio-controller;
349 #gpio-cells = <2>;
350 interrupt-controller;
351 #interrupt-cells = <2>;
352 };
353
354 gpio5: gpio@020ac000 {
355 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
356 reg = <0x020ac000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700357 interrupts = <0 74 IRQ_TYPE_LEVEL_HIGH>,
358 <0 75 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800359 gpio-controller;
360 #gpio-cells = <2>;
361 interrupt-controller;
362 #interrupt-cells = <2>;
363 };
364
365 kpp: kpp@020b8000 {
366 reg = <0x020b8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700367 interrupts = <0 82 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800368 };
369
370 wdog1: wdog@020bc000 {
371 compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt";
372 reg = <0x020bc000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700373 interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800374 clocks = <&clks IMX6SL_CLK_DUMMY>;
375 };
376
377 wdog2: wdog@020c0000 {
378 compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt";
379 reg = <0x020c0000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700380 interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800381 clocks = <&clks IMX6SL_CLK_DUMMY>;
382 status = "disabled";
383 };
384
385 clks: ccm@020c4000 {
386 compatible = "fsl,imx6sl-ccm";
387 reg = <0x020c4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700388 interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>,
389 <0 88 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800390 #clock-cells = <1>;
391 };
392
393 anatop: anatop@020c8000 {
Shawn Guod8ce8232013-08-13 16:54:05 +0800394 compatible = "fsl,imx6sl-anatop",
395 "fsl,imx6q-anatop",
396 "syscon", "simple-bus";
Shawn Guoe29fe212013-05-03 11:26:30 +0800397 reg = <0x020c8000 0x1000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700398 interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>,
399 <0 54 IRQ_TYPE_LEVEL_HIGH>,
400 <0 127 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800401
402 regulator-1p1@110 {
403 compatible = "fsl,anatop-regulator";
404 regulator-name = "vdd1p1";
405 regulator-min-microvolt = <800000>;
406 regulator-max-microvolt = <1375000>;
407 regulator-always-on;
408 anatop-reg-offset = <0x110>;
409 anatop-vol-bit-shift = <8>;
410 anatop-vol-bit-width = <5>;
411 anatop-min-bit-val = <4>;
412 anatop-min-voltage = <800000>;
413 anatop-max-voltage = <1375000>;
414 };
415
416 regulator-3p0@120 {
417 compatible = "fsl,anatop-regulator";
418 regulator-name = "vdd3p0";
419 regulator-min-microvolt = <2800000>;
420 regulator-max-microvolt = <3150000>;
421 regulator-always-on;
422 anatop-reg-offset = <0x120>;
423 anatop-vol-bit-shift = <8>;
424 anatop-vol-bit-width = <5>;
425 anatop-min-bit-val = <0>;
426 anatop-min-voltage = <2625000>;
427 anatop-max-voltage = <3400000>;
428 };
429
430 regulator-2p5@130 {
431 compatible = "fsl,anatop-regulator";
432 regulator-name = "vdd2p5";
433 regulator-min-microvolt = <2100000>;
434 regulator-max-microvolt = <2850000>;
435 regulator-always-on;
436 anatop-reg-offset = <0x130>;
437 anatop-vol-bit-shift = <8>;
438 anatop-vol-bit-width = <5>;
439 anatop-min-bit-val = <0>;
440 anatop-min-voltage = <2100000>;
441 anatop-max-voltage = <2850000>;
442 };
443
444 reg_arm: regulator-vddcore@140 {
445 compatible = "fsl,anatop-regulator";
446 regulator-name = "cpu";
447 regulator-min-microvolt = <725000>;
448 regulator-max-microvolt = <1450000>;
449 regulator-always-on;
450 anatop-reg-offset = <0x140>;
451 anatop-vol-bit-shift = <0>;
452 anatop-vol-bit-width = <5>;
453 anatop-delay-reg-offset = <0x170>;
454 anatop-delay-bit-shift = <24>;
455 anatop-delay-bit-width = <2>;
456 anatop-min-bit-val = <1>;
457 anatop-min-voltage = <725000>;
458 anatop-max-voltage = <1450000>;
459 };
460
461 reg_pu: regulator-vddpu@140 {
462 compatible = "fsl,anatop-regulator";
463 regulator-name = "vddpu";
464 regulator-min-microvolt = <725000>;
465 regulator-max-microvolt = <1450000>;
466 regulator-always-on;
467 anatop-reg-offset = <0x140>;
468 anatop-vol-bit-shift = <9>;
469 anatop-vol-bit-width = <5>;
470 anatop-delay-reg-offset = <0x170>;
471 anatop-delay-bit-shift = <26>;
472 anatop-delay-bit-width = <2>;
473 anatop-min-bit-val = <1>;
474 anatop-min-voltage = <725000>;
475 anatop-max-voltage = <1450000>;
476 };
477
478 reg_soc: regulator-vddsoc@140 {
479 compatible = "fsl,anatop-regulator";
480 regulator-name = "vddsoc";
481 regulator-min-microvolt = <725000>;
482 regulator-max-microvolt = <1450000>;
483 regulator-always-on;
484 anatop-reg-offset = <0x140>;
485 anatop-vol-bit-shift = <18>;
486 anatop-vol-bit-width = <5>;
487 anatop-delay-reg-offset = <0x170>;
488 anatop-delay-bit-shift = <28>;
489 anatop-delay-bit-width = <2>;
490 anatop-min-bit-val = <1>;
491 anatop-min-voltage = <725000>;
492 anatop-max-voltage = <1450000>;
493 };
494 };
495
496 usbphy1: usbphy@020c9000 {
497 compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy";
498 reg = <0x020c9000 0x1000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700499 interrupts = <0 44 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800500 clocks = <&clks IMX6SL_CLK_USBPHY1>;
501 };
502
503 usbphy2: usbphy@020ca000 {
504 compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy";
505 reg = <0x020ca000 0x1000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700506 interrupts = <0 45 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800507 clocks = <&clks IMX6SL_CLK_USBPHY2>;
508 };
509
510 snvs@020cc000 {
511 compatible = "fsl,sec-v4.0-mon", "simple-bus";
512 #address-cells = <1>;
513 #size-cells = <1>;
514 ranges = <0 0x020cc000 0x4000>;
515
516 snvs-rtc-lp@34 {
517 compatible = "fsl,sec-v4.0-mon-rtc-lp";
518 reg = <0x34 0x58>;
Troy Kisky13088c22013-11-14 14:02:12 -0700519 interrupts = <0 19 IRQ_TYPE_LEVEL_HIGH>,
520 <0 20 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800521 };
522 };
523
524 epit1: epit@020d0000 {
525 reg = <0x020d0000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700526 interrupts = <0 56 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800527 };
528
529 epit2: epit@020d4000 {
530 reg = <0x020d4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700531 interrupts = <0 57 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800532 };
533
534 src: src@020d8000 {
535 compatible = "fsl,imx6sl-src", "fsl,imx51-src";
536 reg = <0x020d8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700537 interrupts = <0 91 IRQ_TYPE_LEVEL_HIGH>,
538 <0 96 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800539 #reset-cells = <1>;
540 };
541
542 gpc: gpc@020dc000 {
543 compatible = "fsl,imx6sl-gpc", "fsl,imx6q-gpc";
544 reg = <0x020dc000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700545 interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800546 };
547
Fugang Duane03d10f2013-09-03 12:26:22 +0800548 gpr: iomuxc-gpr@020e0000 {
Shawn Guo5f7adc92013-10-18 23:27:37 +0800549 compatible = "fsl,imx6sl-iomuxc-gpr",
550 "fsl,imx6q-iomuxc-gpr", "syscon";
Fugang Duane03d10f2013-09-03 12:26:22 +0800551 reg = <0x020e0000 0x38>;
552 };
553
Shawn Guoe29fe212013-05-03 11:26:30 +0800554 iomuxc: iomuxc@020e0000 {
555 compatible = "fsl,imx6sl-iomuxc";
556 reg = <0x020e0000 0x4000>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800557 };
558
559 csi: csi@020e4000 {
560 reg = <0x020e4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700561 interrupts = <0 7 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800562 };
563
564 spdc: spdc@020e8000 {
565 reg = <0x020e8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700566 interrupts = <0 6 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800567 };
568
569 sdma: sdma@020ec000 {
570 compatible = "fsl,imx6sl-sdma", "fsl,imx35-sdma";
571 reg = <0x020ec000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700572 interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800573 clocks = <&clks IMX6SL_CLK_SDMA>,
574 <&clks IMX6SL_CLK_SDMA>;
575 clock-names = "ipg", "ahb";
Huang Shijiefb72bb22013-07-02 10:15:29 +0800576 #dma-cells = <3>;
Shawn Guo44a26872013-08-13 08:55:02 +0800577 /* imx6sl reuses imx6q sdma firmware */
578 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin";
Shawn Guoe29fe212013-05-03 11:26:30 +0800579 };
580
581 pxp: pxp@020f0000 {
582 reg = <0x020f0000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700583 interrupts = <0 98 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800584 };
585
586 epdc: epdc@020f4000 {
587 reg = <0x020f4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700588 interrupts = <0 97 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800589 };
590
591 lcdif: lcdif@020f8000 {
592 reg = <0x020f8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700593 interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800594 };
595
596 dcp: dcp@020fc000 {
597 reg = <0x020fc000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700598 interrupts = <0 99 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800599 };
600 };
601
602 aips2: aips-bus@02100000 {
603 compatible = "fsl,aips-bus", "simple-bus";
604 #address-cells = <1>;
605 #size-cells = <1>;
606 reg = <0x02100000 0x100000>;
607 ranges;
608
609 usbotg1: usb@02184000 {
610 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
611 reg = <0x02184000 0x200>;
Troy Kisky13088c22013-11-14 14:02:12 -0700612 interrupts = <0 43 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800613 clocks = <&clks IMX6SL_CLK_USBOH3>;
614 fsl,usbphy = <&usbphy1>;
615 fsl,usbmisc = <&usbmisc 0>;
616 status = "disabled";
617 };
618
619 usbotg2: usb@02184200 {
620 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
621 reg = <0x02184200 0x200>;
Troy Kisky13088c22013-11-14 14:02:12 -0700622 interrupts = <0 42 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800623 clocks = <&clks IMX6SL_CLK_USBOH3>;
624 fsl,usbphy = <&usbphy2>;
625 fsl,usbmisc = <&usbmisc 1>;
626 status = "disabled";
627 };
628
629 usbh: usb@02184400 {
630 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
631 reg = <0x02184400 0x200>;
Troy Kisky13088c22013-11-14 14:02:12 -0700632 interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800633 clocks = <&clks IMX6SL_CLK_USBOH3>;
634 fsl,usbmisc = <&usbmisc 2>;
635 status = "disabled";
636 };
637
638 usbmisc: usbmisc@02184800 {
639 #index-cells = <1>;
640 compatible = "fsl,imx6sl-usbmisc", "fsl,imx6q-usbmisc";
641 reg = <0x02184800 0x200>;
642 clocks = <&clks IMX6SL_CLK_USBOH3>;
643 };
644
645 fec: ethernet@02188000 {
646 compatible = "fsl,imx6sl-fec", "fsl,imx25-fec";
647 reg = <0x02188000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700648 interrupts = <0 114 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800649 clocks = <&clks IMX6SL_CLK_ENET_REF>,
650 <&clks IMX6SL_CLK_ENET_REF>;
651 clock-names = "ipg", "ahb";
652 status = "disabled";
653 };
654
655 usdhc1: usdhc@02190000 {
656 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
657 reg = <0x02190000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700658 interrupts = <0 22 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800659 clocks = <&clks IMX6SL_CLK_USDHC1>,
660 <&clks IMX6SL_CLK_USDHC1>,
661 <&clks IMX6SL_CLK_USDHC1>;
662 clock-names = "ipg", "ahb", "per";
663 bus-width = <4>;
664 status = "disabled";
665 };
666
667 usdhc2: usdhc@02194000 {
668 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
669 reg = <0x02194000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700670 interrupts = <0 23 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800671 clocks = <&clks IMX6SL_CLK_USDHC2>,
672 <&clks IMX6SL_CLK_USDHC2>,
673 <&clks IMX6SL_CLK_USDHC2>;
674 clock-names = "ipg", "ahb", "per";
675 bus-width = <4>;
676 status = "disabled";
677 };
678
679 usdhc3: usdhc@02198000 {
680 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
681 reg = <0x02198000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700682 interrupts = <0 24 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800683 clocks = <&clks IMX6SL_CLK_USDHC3>,
684 <&clks IMX6SL_CLK_USDHC3>,
685 <&clks IMX6SL_CLK_USDHC3>;
686 clock-names = "ipg", "ahb", "per";
687 bus-width = <4>;
688 status = "disabled";
689 };
690
691 usdhc4: usdhc@0219c000 {
692 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
693 reg = <0x0219c000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700694 interrupts = <0 25 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800695 clocks = <&clks IMX6SL_CLK_USDHC4>,
696 <&clks IMX6SL_CLK_USDHC4>,
697 <&clks IMX6SL_CLK_USDHC4>;
698 clock-names = "ipg", "ahb", "per";
699 bus-width = <4>;
700 status = "disabled";
701 };
702
703 i2c1: i2c@021a0000 {
704 #address-cells = <1>;
705 #size-cells = <0>;
706 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
707 reg = <0x021a0000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700708 interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800709 clocks = <&clks IMX6SL_CLK_I2C1>;
710 status = "disabled";
711 };
712
713 i2c2: i2c@021a4000 {
714 #address-cells = <1>;
715 #size-cells = <0>;
716 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
717 reg = <0x021a4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700718 interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800719 clocks = <&clks IMX6SL_CLK_I2C2>;
720 status = "disabled";
721 };
722
723 i2c3: i2c@021a8000 {
724 #address-cells = <1>;
725 #size-cells = <0>;
726 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
727 reg = <0x021a8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700728 interrupts = <0 38 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800729 clocks = <&clks IMX6SL_CLK_I2C3>;
730 status = "disabled";
731 };
732
733 mmdc: mmdc@021b0000 {
734 compatible = "fsl,imx6sl-mmdc", "fsl,imx6q-mmdc";
735 reg = <0x021b0000 0x4000>;
736 };
737
738 rngb: rngb@021b4000 {
739 reg = <0x021b4000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700740 interrupts = <0 5 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800741 };
742
743 weim: weim@021b8000 {
744 reg = <0x021b8000 0x4000>;
Troy Kisky13088c22013-11-14 14:02:12 -0700745 interrupts = <0 14 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800746 };
747
748 ocotp: ocotp@021bc000 {
749 compatible = "fsl,imx6sl-ocotp";
750 reg = <0x021bc000 0x4000>;
751 };
752
753 audmux: audmux@021d8000 {
754 compatible = "fsl,imx6sl-audmux", "fsl,imx31-audmux";
755 reg = <0x021d8000 0x4000>;
756 status = "disabled";
757 };
758 };
759 };
760};