blob: c46651e4d966769948be53636b6e1653005cda13 [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
10#include "skeleton.dtsi"
11#include "imx6sl-pinfunc.h"
12#include <dt-bindings/clock/imx6sl-clock.h>
13
14/ {
15 aliases {
16 serial0 = &uart1;
17 serial1 = &uart2;
18 serial2 = &uart3;
19 serial3 = &uart4;
20 serial4 = &uart5;
21 gpio0 = &gpio1;
22 gpio1 = &gpio2;
23 gpio2 = &gpio3;
24 gpio3 = &gpio4;
25 gpio4 = &gpio5;
26 };
27
28 cpus {
29 #address-cells = <1>;
30 #size-cells = <0>;
31
32 cpu@0 {
33 compatible = "arm,cortex-a9";
34 device_type = "cpu";
35 reg = <0x0>;
36 next-level-cache = <&L2>;
37 };
38 };
39
40 intc: interrupt-controller@00a01000 {
41 compatible = "arm,cortex-a9-gic";
42 #interrupt-cells = <3>;
43 #address-cells = <1>;
44 #size-cells = <1>;
45 interrupt-controller;
46 reg = <0x00a01000 0x1000>,
47 <0x00a00100 0x100>;
48 };
49
50 clocks {
51 #address-cells = <1>;
52 #size-cells = <0>;
53
54 ckil {
55 compatible = "fixed-clock";
56 clock-frequency = <32768>;
57 };
58
59 osc {
60 compatible = "fixed-clock";
61 clock-frequency = <24000000>;
62 };
63 };
64
65 soc {
66 #address-cells = <1>;
67 #size-cells = <1>;
68 compatible = "simple-bus";
69 interrupt-parent = <&intc>;
70 ranges;
71
72 L2: l2-cache@00a02000 {
73 compatible = "arm,pl310-cache";
74 reg = <0x00a02000 0x1000>;
75 interrupts = <0 92 0x04>;
76 cache-unified;
77 cache-level = <2>;
78 arm,tag-latency = <4 2 3>;
79 arm,data-latency = <4 2 3>;
80 };
81
82 pmu {
83 compatible = "arm,cortex-a9-pmu";
84 interrupts = <0 94 0x04>;
85 };
86
87 aips1: aips-bus@02000000 {
88 compatible = "fsl,aips-bus", "simple-bus";
89 #address-cells = <1>;
90 #size-cells = <1>;
91 reg = <0x02000000 0x100000>;
92 ranges;
93
94 spba: spba-bus@02000000 {
95 compatible = "fsl,spba-bus", "simple-bus";
96 #address-cells = <1>;
97 #size-cells = <1>;
98 reg = <0x02000000 0x40000>;
99 ranges;
100
101 spdif: spdif@02004000 {
102 reg = <0x02004000 0x4000>;
103 interrupts = <0 52 0x04>;
104 };
105
106 ecspi1: ecspi@02008000 {
107 #address-cells = <1>;
108 #size-cells = <0>;
109 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
110 reg = <0x02008000 0x4000>;
111 interrupts = <0 31 0x04>;
112 clocks = <&clks IMX6SL_CLK_ECSPI1>,
113 <&clks IMX6SL_CLK_ECSPI1>;
114 clock-names = "ipg", "per";
115 status = "disabled";
116 };
117
118 ecspi2: ecspi@0200c000 {
119 #address-cells = <1>;
120 #size-cells = <0>;
121 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
122 reg = <0x0200c000 0x4000>;
123 interrupts = <0 32 0x04>;
124 clocks = <&clks IMX6SL_CLK_ECSPI2>,
125 <&clks IMX6SL_CLK_ECSPI2>;
126 clock-names = "ipg", "per";
127 status = "disabled";
128 };
129
130 ecspi3: ecspi@02010000 {
131 #address-cells = <1>;
132 #size-cells = <0>;
133 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
134 reg = <0x02010000 0x4000>;
135 interrupts = <0 33 0x04>;
136 clocks = <&clks IMX6SL_CLK_ECSPI3>,
137 <&clks IMX6SL_CLK_ECSPI3>;
138 clock-names = "ipg", "per";
139 status = "disabled";
140 };
141
142 ecspi4: ecspi@02014000 {
143 #address-cells = <1>;
144 #size-cells = <0>;
145 compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi";
146 reg = <0x02014000 0x4000>;
147 interrupts = <0 34 0x04>;
148 clocks = <&clks IMX6SL_CLK_ECSPI4>,
149 <&clks IMX6SL_CLK_ECSPI4>;
150 clock-names = "ipg", "per";
151 status = "disabled";
152 };
153
154 uart5: serial@02018000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800155 compatible = "fsl,imx6sl-uart",
156 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800157 reg = <0x02018000 0x4000>;
158 interrupts = <0 30 0x04>;
159 clocks = <&clks IMX6SL_CLK_UART>,
160 <&clks IMX6SL_CLK_UART_SERIAL>;
161 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800162 dmas = <&sdma 33 4 0>, <&sdma 34 4 0>;
163 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800164 status = "disabled";
165 };
166
167 uart1: serial@02020000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800168 compatible = "fsl,imx6sl-uart",
169 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800170 reg = <0x02020000 0x4000>;
171 interrupts = <0 26 0x04>;
172 clocks = <&clks IMX6SL_CLK_UART>,
173 <&clks IMX6SL_CLK_UART_SERIAL>;
174 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800175 dmas = <&sdma 25 4 0>, <&sdma 26 4 0>;
176 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800177 status = "disabled";
178 };
179
180 uart2: serial@02024000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800181 compatible = "fsl,imx6sl-uart",
182 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800183 reg = <0x02024000 0x4000>;
184 interrupts = <0 27 0x04>;
185 clocks = <&clks IMX6SL_CLK_UART>,
186 <&clks IMX6SL_CLK_UART_SERIAL>;
187 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800188 dmas = <&sdma 27 4 0>, <&sdma 28 4 0>;
189 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800190 status = "disabled";
191 };
192
193 ssi1: ssi@02028000 {
194 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
195 reg = <0x02028000 0x4000>;
196 interrupts = <0 46 0x04>;
197 clocks = <&clks IMX6SL_CLK_SSI1>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800198 dmas = <&sdma 37 1 0>,
199 <&sdma 38 1 0>;
200 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800201 fsl,fifo-depth = <15>;
202 status = "disabled";
203 };
204
205 ssi2: ssi@0202c000 {
206 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
207 reg = <0x0202c000 0x4000>;
208 interrupts = <0 47 0x04>;
209 clocks = <&clks IMX6SL_CLK_SSI2>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800210 dmas = <&sdma 41 1 0>,
211 <&sdma 42 1 0>;
212 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800213 fsl,fifo-depth = <15>;
214 status = "disabled";
215 };
216
217 ssi3: ssi@02030000 {
218 compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi";
219 reg = <0x02030000 0x4000>;
220 interrupts = <0 48 0x04>;
221 clocks = <&clks IMX6SL_CLK_SSI3>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800222 dmas = <&sdma 45 1 0>,
223 <&sdma 46 1 0>;
224 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800225 fsl,fifo-depth = <15>;
226 status = "disabled";
227 };
228
229 uart3: serial@02034000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800230 compatible = "fsl,imx6sl-uart",
231 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800232 reg = <0x02034000 0x4000>;
233 interrupts = <0 28 0x04>;
234 clocks = <&clks IMX6SL_CLK_UART>,
235 <&clks IMX6SL_CLK_UART_SERIAL>;
236 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800237 dmas = <&sdma 29 4 0>, <&sdma 30 4 0>;
238 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800239 status = "disabled";
240 };
241
242 uart4: serial@02038000 {
Huang Shijie6eb85f92013-07-08 17:14:19 +0800243 compatible = "fsl,imx6sl-uart",
244 "fsl,imx6q-uart", "fsl,imx21-uart";
Shawn Guoe29fe212013-05-03 11:26:30 +0800245 reg = <0x02038000 0x4000>;
246 interrupts = <0 29 0x04>;
247 clocks = <&clks IMX6SL_CLK_UART>,
248 <&clks IMX6SL_CLK_UART_SERIAL>;
249 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800250 dmas = <&sdma 31 4 0>, <&sdma 32 4 0>;
251 dma-names = "rx", "tx";
Shawn Guoe29fe212013-05-03 11:26:30 +0800252 status = "disabled";
253 };
254 };
255
256 pwm1: pwm@02080000 {
257 #pwm-cells = <2>;
258 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
259 reg = <0x02080000 0x4000>;
260 interrupts = <0 83 0x04>;
261 clocks = <&clks IMX6SL_CLK_PWM1>,
262 <&clks IMX6SL_CLK_PWM1>;
263 clock-names = "ipg", "per";
264 };
265
266 pwm2: pwm@02084000 {
267 #pwm-cells = <2>;
268 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
269 reg = <0x02084000 0x4000>;
270 interrupts = <0 84 0x04>;
271 clocks = <&clks IMX6SL_CLK_PWM2>,
272 <&clks IMX6SL_CLK_PWM2>;
273 clock-names = "ipg", "per";
274 };
275
276 pwm3: pwm@02088000 {
277 #pwm-cells = <2>;
278 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
279 reg = <0x02088000 0x4000>;
280 interrupts = <0 85 0x04>;
281 clocks = <&clks IMX6SL_CLK_PWM3>,
282 <&clks IMX6SL_CLK_PWM3>;
283 clock-names = "ipg", "per";
284 };
285
286 pwm4: pwm@0208c000 {
287 #pwm-cells = <2>;
288 compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm";
289 reg = <0x0208c000 0x4000>;
290 interrupts = <0 86 0x04>;
291 clocks = <&clks IMX6SL_CLK_PWM4>,
292 <&clks IMX6SL_CLK_PWM4>;
293 clock-names = "ipg", "per";
294 };
295
296 gpt: gpt@02098000 {
297 compatible = "fsl,imx6sl-gpt";
298 reg = <0x02098000 0x4000>;
299 interrupts = <0 55 0x04>;
300 clocks = <&clks IMX6SL_CLK_GPT>,
301 <&clks IMX6SL_CLK_GPT_SERIAL>;
302 clock-names = "ipg", "per";
303 };
304
305 gpio1: gpio@0209c000 {
306 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
307 reg = <0x0209c000 0x4000>;
308 interrupts = <0 66 0x04 0 67 0x04>;
309 gpio-controller;
310 #gpio-cells = <2>;
311 interrupt-controller;
312 #interrupt-cells = <2>;
313 };
314
315 gpio2: gpio@020a0000 {
316 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
317 reg = <0x020a0000 0x4000>;
318 interrupts = <0 68 0x04 0 69 0x04>;
319 gpio-controller;
320 #gpio-cells = <2>;
321 interrupt-controller;
322 #interrupt-cells = <2>;
323 };
324
325 gpio3: gpio@020a4000 {
326 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
327 reg = <0x020a4000 0x4000>;
328 interrupts = <0 70 0x04 0 71 0x04>;
329 gpio-controller;
330 #gpio-cells = <2>;
331 interrupt-controller;
332 #interrupt-cells = <2>;
333 };
334
335 gpio4: gpio@020a8000 {
336 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
337 reg = <0x020a8000 0x4000>;
338 interrupts = <0 72 0x04 0 73 0x04>;
339 gpio-controller;
340 #gpio-cells = <2>;
341 interrupt-controller;
342 #interrupt-cells = <2>;
343 };
344
345 gpio5: gpio@020ac000 {
346 compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio";
347 reg = <0x020ac000 0x4000>;
348 interrupts = <0 74 0x04 0 75 0x04>;
349 gpio-controller;
350 #gpio-cells = <2>;
351 interrupt-controller;
352 #interrupt-cells = <2>;
353 };
354
355 kpp: kpp@020b8000 {
356 reg = <0x020b8000 0x4000>;
357 interrupts = <0 82 0x04>;
358 };
359
360 wdog1: wdog@020bc000 {
361 compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt";
362 reg = <0x020bc000 0x4000>;
363 interrupts = <0 80 0x04>;
364 clocks = <&clks IMX6SL_CLK_DUMMY>;
365 };
366
367 wdog2: wdog@020c0000 {
368 compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt";
369 reg = <0x020c0000 0x4000>;
370 interrupts = <0 81 0x04>;
371 clocks = <&clks IMX6SL_CLK_DUMMY>;
372 status = "disabled";
373 };
374
375 clks: ccm@020c4000 {
376 compatible = "fsl,imx6sl-ccm";
377 reg = <0x020c4000 0x4000>;
378 interrupts = <0 87 0x04 0 88 0x04>;
379 #clock-cells = <1>;
380 };
381
382 anatop: anatop@020c8000 {
383 compatible = "fsl,imx6sl-anatop", "syscon", "simple-bus";
384 reg = <0x020c8000 0x1000>;
385 interrupts = <0 49 0x04 0 54 0x04 0 127 0x04>;
386
387 regulator-1p1@110 {
388 compatible = "fsl,anatop-regulator";
389 regulator-name = "vdd1p1";
390 regulator-min-microvolt = <800000>;
391 regulator-max-microvolt = <1375000>;
392 regulator-always-on;
393 anatop-reg-offset = <0x110>;
394 anatop-vol-bit-shift = <8>;
395 anatop-vol-bit-width = <5>;
396 anatop-min-bit-val = <4>;
397 anatop-min-voltage = <800000>;
398 anatop-max-voltage = <1375000>;
399 };
400
401 regulator-3p0@120 {
402 compatible = "fsl,anatop-regulator";
403 regulator-name = "vdd3p0";
404 regulator-min-microvolt = <2800000>;
405 regulator-max-microvolt = <3150000>;
406 regulator-always-on;
407 anatop-reg-offset = <0x120>;
408 anatop-vol-bit-shift = <8>;
409 anatop-vol-bit-width = <5>;
410 anatop-min-bit-val = <0>;
411 anatop-min-voltage = <2625000>;
412 anatop-max-voltage = <3400000>;
413 };
414
415 regulator-2p5@130 {
416 compatible = "fsl,anatop-regulator";
417 regulator-name = "vdd2p5";
418 regulator-min-microvolt = <2100000>;
419 regulator-max-microvolt = <2850000>;
420 regulator-always-on;
421 anatop-reg-offset = <0x130>;
422 anatop-vol-bit-shift = <8>;
423 anatop-vol-bit-width = <5>;
424 anatop-min-bit-val = <0>;
425 anatop-min-voltage = <2100000>;
426 anatop-max-voltage = <2850000>;
427 };
428
429 reg_arm: regulator-vddcore@140 {
430 compatible = "fsl,anatop-regulator";
431 regulator-name = "cpu";
432 regulator-min-microvolt = <725000>;
433 regulator-max-microvolt = <1450000>;
434 regulator-always-on;
435 anatop-reg-offset = <0x140>;
436 anatop-vol-bit-shift = <0>;
437 anatop-vol-bit-width = <5>;
438 anatop-delay-reg-offset = <0x170>;
439 anatop-delay-bit-shift = <24>;
440 anatop-delay-bit-width = <2>;
441 anatop-min-bit-val = <1>;
442 anatop-min-voltage = <725000>;
443 anatop-max-voltage = <1450000>;
444 };
445
446 reg_pu: regulator-vddpu@140 {
447 compatible = "fsl,anatop-regulator";
448 regulator-name = "vddpu";
449 regulator-min-microvolt = <725000>;
450 regulator-max-microvolt = <1450000>;
451 regulator-always-on;
452 anatop-reg-offset = <0x140>;
453 anatop-vol-bit-shift = <9>;
454 anatop-vol-bit-width = <5>;
455 anatop-delay-reg-offset = <0x170>;
456 anatop-delay-bit-shift = <26>;
457 anatop-delay-bit-width = <2>;
458 anatop-min-bit-val = <1>;
459 anatop-min-voltage = <725000>;
460 anatop-max-voltage = <1450000>;
461 };
462
463 reg_soc: regulator-vddsoc@140 {
464 compatible = "fsl,anatop-regulator";
465 regulator-name = "vddsoc";
466 regulator-min-microvolt = <725000>;
467 regulator-max-microvolt = <1450000>;
468 regulator-always-on;
469 anatop-reg-offset = <0x140>;
470 anatop-vol-bit-shift = <18>;
471 anatop-vol-bit-width = <5>;
472 anatop-delay-reg-offset = <0x170>;
473 anatop-delay-bit-shift = <28>;
474 anatop-delay-bit-width = <2>;
475 anatop-min-bit-val = <1>;
476 anatop-min-voltage = <725000>;
477 anatop-max-voltage = <1450000>;
478 };
479 };
480
481 usbphy1: usbphy@020c9000 {
482 compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy";
483 reg = <0x020c9000 0x1000>;
484 interrupts = <0 44 0x04>;
485 clocks = <&clks IMX6SL_CLK_USBPHY1>;
486 };
487
488 usbphy2: usbphy@020ca000 {
489 compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy";
490 reg = <0x020ca000 0x1000>;
491 interrupts = <0 45 0x04>;
492 clocks = <&clks IMX6SL_CLK_USBPHY2>;
493 };
494
495 snvs@020cc000 {
496 compatible = "fsl,sec-v4.0-mon", "simple-bus";
497 #address-cells = <1>;
498 #size-cells = <1>;
499 ranges = <0 0x020cc000 0x4000>;
500
501 snvs-rtc-lp@34 {
502 compatible = "fsl,sec-v4.0-mon-rtc-lp";
503 reg = <0x34 0x58>;
504 interrupts = <0 19 0x04 0 20 0x04>;
505 };
506 };
507
508 epit1: epit@020d0000 {
509 reg = <0x020d0000 0x4000>;
510 interrupts = <0 56 0x04>;
511 };
512
513 epit2: epit@020d4000 {
514 reg = <0x020d4000 0x4000>;
515 interrupts = <0 57 0x04>;
516 };
517
518 src: src@020d8000 {
519 compatible = "fsl,imx6sl-src", "fsl,imx51-src";
520 reg = <0x020d8000 0x4000>;
521 interrupts = <0 91 0x04 0 96 0x04>;
522 #reset-cells = <1>;
523 };
524
525 gpc: gpc@020dc000 {
526 compatible = "fsl,imx6sl-gpc", "fsl,imx6q-gpc";
527 reg = <0x020dc000 0x4000>;
528 interrupts = <0 89 0x04>;
529 };
530
531 iomuxc: iomuxc@020e0000 {
532 compatible = "fsl,imx6sl-iomuxc";
533 reg = <0x020e0000 0x4000>;
534
535 fec {
536 pinctrl_fec_1: fecgrp-1 {
537 fsl,pins = <
538 MX6SL_PAD_FEC_MDC__FEC_MDC 0x1b0b0
539 MX6SL_PAD_FEC_MDIO__FEC_MDIO 0x1b0b0
540 MX6SL_PAD_FEC_CRS_DV__FEC_RX_DV 0x1b0b0
541 MX6SL_PAD_FEC_RXD0__FEC_RX_DATA0 0x1b0b0
542 MX6SL_PAD_FEC_RXD1__FEC_RX_DATA1 0x1b0b0
543 MX6SL_PAD_FEC_TX_EN__FEC_TX_EN 0x1b0b0
544 MX6SL_PAD_FEC_TXD0__FEC_TX_DATA0 0x1b0b0
545 MX6SL_PAD_FEC_TXD1__FEC_TX_DATA1 0x1b0b0
546 MX6SL_PAD_FEC_REF_CLK__FEC_REF_OUT 0x4001b0a8
547 >;
548 };
549 };
550
551 uart1 {
552 pinctrl_uart1_1: uart1grp-1 {
553 fsl,pins = <
554 MX6SL_PAD_UART1_RXD__UART1_RX_DATA 0x1b0b1
555 MX6SL_PAD_UART1_TXD__UART1_TX_DATA 0x1b0b1
556 >;
557 };
558 };
559
560 usdhc1 {
561 pinctrl_usdhc1_1: usdhc1grp-1 {
562 fsl,pins = <
563 MX6SL_PAD_SD1_CMD__SD1_CMD 0x17059
564 MX6SL_PAD_SD1_CLK__SD1_CLK 0x10059
565 MX6SL_PAD_SD1_DAT0__SD1_DATA0 0x17059
566 MX6SL_PAD_SD1_DAT1__SD1_DATA1 0x17059
567 MX6SL_PAD_SD1_DAT2__SD1_DATA2 0x17059
568 MX6SL_PAD_SD1_DAT3__SD1_DATA3 0x17059
569 MX6SL_PAD_SD1_DAT4__SD1_DATA4 0x17059
570 MX6SL_PAD_SD1_DAT5__SD1_DATA5 0x17059
571 MX6SL_PAD_SD1_DAT6__SD1_DATA6 0x17059
572 MX6SL_PAD_SD1_DAT7__SD1_DATA7 0x17059
573 >;
574 };
575 };
576
577 usdhc2 {
578 pinctrl_usdhc2_1: usdhc2grp-1 {
579 fsl,pins = <
580 MX6SL_PAD_SD2_CMD__SD2_CMD 0x17059
581 MX6SL_PAD_SD2_CLK__SD2_CLK 0x10059
582 MX6SL_PAD_SD2_DAT0__SD2_DATA0 0x17059
583 MX6SL_PAD_SD2_DAT1__SD2_DATA1 0x17059
584 MX6SL_PAD_SD2_DAT2__SD2_DATA2 0x17059
585 MX6SL_PAD_SD2_DAT3__SD2_DATA3 0x17059
586 >;
587 };
588 };
589
590 usdhc3 {
591 pinctrl_usdhc3_1: usdhc3grp-1 {
592 fsl,pins = <
593 MX6SL_PAD_SD3_CMD__SD3_CMD 0x17059
594 MX6SL_PAD_SD3_CLK__SD3_CLK 0x10059
595 MX6SL_PAD_SD3_DAT0__SD3_DATA0 0x17059
596 MX6SL_PAD_SD3_DAT1__SD3_DATA1 0x17059
597 MX6SL_PAD_SD3_DAT2__SD3_DATA2 0x17059
598 MX6SL_PAD_SD3_DAT3__SD3_DATA3 0x17059
599 >;
600 };
601 };
602 };
603
604 csi: csi@020e4000 {
605 reg = <0x020e4000 0x4000>;
606 interrupts = <0 7 0x04>;
607 };
608
609 spdc: spdc@020e8000 {
610 reg = <0x020e8000 0x4000>;
611 interrupts = <0 6 0x04>;
612 };
613
614 sdma: sdma@020ec000 {
615 compatible = "fsl,imx6sl-sdma", "fsl,imx35-sdma";
616 reg = <0x020ec000 0x4000>;
617 interrupts = <0 2 0x04>;
618 clocks = <&clks IMX6SL_CLK_SDMA>,
619 <&clks IMX6SL_CLK_SDMA>;
620 clock-names = "ipg", "ahb";
Huang Shijiefb72bb22013-07-02 10:15:29 +0800621 #dma-cells = <3>;
Shawn Guoe29fe212013-05-03 11:26:30 +0800622 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6sl.bin";
623 };
624
625 pxp: pxp@020f0000 {
626 reg = <0x020f0000 0x4000>;
627 interrupts = <0 98 0x04>;
628 };
629
630 epdc: epdc@020f4000 {
631 reg = <0x020f4000 0x4000>;
632 interrupts = <0 97 0x04>;
633 };
634
635 lcdif: lcdif@020f8000 {
636 reg = <0x020f8000 0x4000>;
637 interrupts = <0 39 0x04>;
638 };
639
640 dcp: dcp@020fc000 {
641 reg = <0x020fc000 0x4000>;
642 interrupts = <0 99 0x04>;
643 };
644 };
645
646 aips2: aips-bus@02100000 {
647 compatible = "fsl,aips-bus", "simple-bus";
648 #address-cells = <1>;
649 #size-cells = <1>;
650 reg = <0x02100000 0x100000>;
651 ranges;
652
653 usbotg1: usb@02184000 {
654 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
655 reg = <0x02184000 0x200>;
656 interrupts = <0 43 0x04>;
657 clocks = <&clks IMX6SL_CLK_USBOH3>;
658 fsl,usbphy = <&usbphy1>;
659 fsl,usbmisc = <&usbmisc 0>;
660 status = "disabled";
661 };
662
663 usbotg2: usb@02184200 {
664 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
665 reg = <0x02184200 0x200>;
666 interrupts = <0 40 0x04>;
667 clocks = <&clks IMX6SL_CLK_USBOH3>;
668 fsl,usbphy = <&usbphy2>;
669 fsl,usbmisc = <&usbmisc 1>;
670 status = "disabled";
671 };
672
673 usbh: usb@02184400 {
674 compatible = "fsl,imx6sl-usb", "fsl,imx27-usb";
675 reg = <0x02184400 0x200>;
676 interrupts = <0 42 0x04>;
677 clocks = <&clks IMX6SL_CLK_USBOH3>;
678 fsl,usbmisc = <&usbmisc 2>;
679 status = "disabled";
680 };
681
682 usbmisc: usbmisc@02184800 {
683 #index-cells = <1>;
684 compatible = "fsl,imx6sl-usbmisc", "fsl,imx6q-usbmisc";
685 reg = <0x02184800 0x200>;
686 clocks = <&clks IMX6SL_CLK_USBOH3>;
687 };
688
689 fec: ethernet@02188000 {
690 compatible = "fsl,imx6sl-fec", "fsl,imx25-fec";
691 reg = <0x02188000 0x4000>;
692 interrupts = <0 114 0x04>;
693 clocks = <&clks IMX6SL_CLK_ENET_REF>,
694 <&clks IMX6SL_CLK_ENET_REF>;
695 clock-names = "ipg", "ahb";
696 status = "disabled";
697 };
698
699 usdhc1: usdhc@02190000 {
700 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
701 reg = <0x02190000 0x4000>;
702 interrupts = <0 22 0x04>;
703 clocks = <&clks IMX6SL_CLK_USDHC1>,
704 <&clks IMX6SL_CLK_USDHC1>,
705 <&clks IMX6SL_CLK_USDHC1>;
706 clock-names = "ipg", "ahb", "per";
707 bus-width = <4>;
708 status = "disabled";
709 };
710
711 usdhc2: usdhc@02194000 {
712 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
713 reg = <0x02194000 0x4000>;
714 interrupts = <0 23 0x04>;
715 clocks = <&clks IMX6SL_CLK_USDHC2>,
716 <&clks IMX6SL_CLK_USDHC2>,
717 <&clks IMX6SL_CLK_USDHC2>;
718 clock-names = "ipg", "ahb", "per";
719 bus-width = <4>;
720 status = "disabled";
721 };
722
723 usdhc3: usdhc@02198000 {
724 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
725 reg = <0x02198000 0x4000>;
726 interrupts = <0 24 0x04>;
727 clocks = <&clks IMX6SL_CLK_USDHC3>,
728 <&clks IMX6SL_CLK_USDHC3>,
729 <&clks IMX6SL_CLK_USDHC3>;
730 clock-names = "ipg", "ahb", "per";
731 bus-width = <4>;
732 status = "disabled";
733 };
734
735 usdhc4: usdhc@0219c000 {
736 compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc";
737 reg = <0x0219c000 0x4000>;
738 interrupts = <0 25 0x04>;
739 clocks = <&clks IMX6SL_CLK_USDHC4>,
740 <&clks IMX6SL_CLK_USDHC4>,
741 <&clks IMX6SL_CLK_USDHC4>;
742 clock-names = "ipg", "ahb", "per";
743 bus-width = <4>;
744 status = "disabled";
745 };
746
747 i2c1: i2c@021a0000 {
748 #address-cells = <1>;
749 #size-cells = <0>;
750 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
751 reg = <0x021a0000 0x4000>;
752 interrupts = <0 36 0x04>;
753 clocks = <&clks IMX6SL_CLK_I2C1>;
754 status = "disabled";
755 };
756
757 i2c2: i2c@021a4000 {
758 #address-cells = <1>;
759 #size-cells = <0>;
760 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
761 reg = <0x021a4000 0x4000>;
762 interrupts = <0 37 0x04>;
763 clocks = <&clks IMX6SL_CLK_I2C2>;
764 status = "disabled";
765 };
766
767 i2c3: i2c@021a8000 {
768 #address-cells = <1>;
769 #size-cells = <0>;
770 compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c";
771 reg = <0x021a8000 0x4000>;
772 interrupts = <0 38 0x04>;
773 clocks = <&clks IMX6SL_CLK_I2C3>;
774 status = "disabled";
775 };
776
777 mmdc: mmdc@021b0000 {
778 compatible = "fsl,imx6sl-mmdc", "fsl,imx6q-mmdc";
779 reg = <0x021b0000 0x4000>;
780 };
781
782 rngb: rngb@021b4000 {
783 reg = <0x021b4000 0x4000>;
784 interrupts = <0 5 0x04>;
785 };
786
787 weim: weim@021b8000 {
788 reg = <0x021b8000 0x4000>;
789 interrupts = <0 14 0x04>;
790 };
791
792 ocotp: ocotp@021bc000 {
793 compatible = "fsl,imx6sl-ocotp";
794 reg = <0x021bc000 0x4000>;
795 };
796
797 audmux: audmux@021d8000 {
798 compatible = "fsl,imx6sl-audmux", "fsl,imx31-audmux";
799 reg = <0x021d8000 0x4000>;
800 status = "disabled";
801 };
802 };
803 };
804};