blob: 06ec460b4581c4163e4053953e84acfaad01a76b [file] [log] [blame]
Shawn Guo7d740f82011-09-06 13:53:26 +08001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 * Copyright 2011 Linaro Ltd.
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
13/include/ "skeleton.dtsi"
14
15/ {
16 aliases {
Richard Zhao8f9ffec2011-12-14 09:26:45 +080017 serial0 = &uart1;
18 serial1 = &uart2;
19 serial2 = &uart3;
20 serial3 = &uart4;
21 serial4 = &uart5;
Shawn Guo5230f8f2012-08-05 14:01:28 +080022 gpio0 = &gpio1;
23 gpio1 = &gpio2;
24 gpio2 = &gpio3;
25 gpio3 = &gpio4;
26 gpio4 = &gpio5;
27 gpio5 = &gpio6;
28 gpio6 = &gpio7;
Shawn Guo7d740f82011-09-06 13:53:26 +080029 };
30
Shawn Guo7d740f82011-09-06 13:53:26 +080031 intc: interrupt-controller@00a01000 {
32 compatible = "arm,cortex-a9-gic";
33 #interrupt-cells = <3>;
34 #address-cells = <1>;
35 #size-cells = <1>;
36 interrupt-controller;
37 reg = <0x00a01000 0x1000>,
38 <0x00a00100 0x100>;
39 };
40
41 clocks {
42 #address-cells = <1>;
43 #size-cells = <0>;
44
45 ckil {
46 compatible = "fsl,imx-ckil", "fixed-clock";
47 clock-frequency = <32768>;
48 };
49
50 ckih1 {
51 compatible = "fsl,imx-ckih1", "fixed-clock";
52 clock-frequency = <0>;
53 };
54
55 osc {
56 compatible = "fsl,imx-osc", "fixed-clock";
57 clock-frequency = <24000000>;
58 };
59 };
60
61 soc {
62 #address-cells = <1>;
63 #size-cells = <1>;
64 compatible = "simple-bus";
65 interrupt-parent = <&intc>;
66 ranges;
67
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040068 dma-apbh@00110000 {
69 compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh";
70 reg = <0x00110000 0x2000>;
Shawn Guo0e87e042012-08-22 21:36:28 +080071 clocks = <&clks 106>;
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040072 };
73
Shawn Guobe4ccfc2012-12-31 11:32:48 +080074 gpmi: gpmi-nand@00112000 {
Shawn Guo0e87e042012-08-22 21:36:28 +080075 compatible = "fsl,imx6q-gpmi-nand";
76 #address-cells = <1>;
77 #size-cells = <1>;
78 reg = <0x00112000 0x2000>, <0x00114000 0x2000>;
79 reg-names = "gpmi-nand", "bch";
80 interrupts = <0 13 0x04>, <0 15 0x04>;
81 interrupt-names = "gpmi-dma", "bch";
82 clocks = <&clks 152>, <&clks 153>, <&clks 151>,
83 <&clks 150>, <&clks 149>;
84 clock-names = "gpmi_io", "gpmi_apb", "gpmi_bch",
85 "gpmi_bch_apb", "per1_bch";
86 fsl,gpmi-dma-channel = <0>;
87 status = "disabled";
Huang Shijiecf922fa2012-07-01 23:38:46 -040088 };
89
Shawn Guo7d740f82011-09-06 13:53:26 +080090 timer@00a00600 {
Marc Zyngier58458e02012-01-10 19:44:19 +000091 compatible = "arm,cortex-a9-twd-timer";
92 reg = <0x00a00600 0x20>;
93 interrupts = <1 13 0xf01>;
Shawn Guo7d740f82011-09-06 13:53:26 +080094 };
95
96 L2: l2-cache@00a02000 {
97 compatible = "arm,pl310-cache";
98 reg = <0x00a02000 0x1000>;
99 interrupts = <0 92 0x04>;
100 cache-unified;
101 cache-level = <2>;
102 };
103
104 aips-bus@02000000 { /* AIPS1 */
105 compatible = "fsl,aips-bus", "simple-bus";
106 #address-cells = <1>;
107 #size-cells = <1>;
108 reg = <0x02000000 0x100000>;
109 ranges;
110
111 spba-bus@02000000 {
112 compatible = "fsl,spba-bus", "simple-bus";
113 #address-cells = <1>;
114 #size-cells = <1>;
115 reg = <0x02000000 0x40000>;
116 ranges;
117
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100118 spdif: spdif@02004000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800119 reg = <0x02004000 0x4000>;
120 interrupts = <0 52 0x04>;
121 };
122
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100123 ecspi1: ecspi@02008000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800124 #address-cells = <1>;
125 #size-cells = <0>;
126 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
127 reg = <0x02008000 0x4000>;
128 interrupts = <0 31 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800129 clocks = <&clks 112>, <&clks 112>;
130 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800131 status = "disabled";
132 };
133
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100134 ecspi2: ecspi@0200c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800135 #address-cells = <1>;
136 #size-cells = <0>;
137 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
138 reg = <0x0200c000 0x4000>;
139 interrupts = <0 32 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800140 clocks = <&clks 113>, <&clks 113>;
141 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800142 status = "disabled";
143 };
144
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100145 ecspi3: ecspi@02010000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800146 #address-cells = <1>;
147 #size-cells = <0>;
148 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
149 reg = <0x02010000 0x4000>;
150 interrupts = <0 33 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800151 clocks = <&clks 114>, <&clks 114>;
152 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800153 status = "disabled";
154 };
155
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100156 ecspi4: ecspi@02014000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800157 #address-cells = <1>;
158 #size-cells = <0>;
159 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
160 reg = <0x02014000 0x4000>;
161 interrupts = <0 34 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800162 clocks = <&clks 115>, <&clks 115>;
163 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800164 status = "disabled";
165 };
166
Shawn Guo0c456cf2012-04-02 14:39:26 +0800167 uart1: serial@02020000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800168 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
169 reg = <0x02020000 0x4000>;
170 interrupts = <0 26 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800171 clocks = <&clks 160>, <&clks 161>;
172 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800173 status = "disabled";
174 };
175
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100176 esai: esai@02024000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800177 reg = <0x02024000 0x4000>;
178 interrupts = <0 51 0x04>;
179 };
180
Richard Zhaob1a5da82012-05-02 10:29:10 +0800181 ssi1: ssi@02028000 {
182 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800183 reg = <0x02028000 0x4000>;
184 interrupts = <0 46 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800185 clocks = <&clks 178>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800186 fsl,fifo-depth = <15>;
187 fsl,ssi-dma-events = <38 37>;
188 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800189 };
190
Richard Zhaob1a5da82012-05-02 10:29:10 +0800191 ssi2: ssi@0202c000 {
192 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800193 reg = <0x0202c000 0x4000>;
194 interrupts = <0 47 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800195 clocks = <&clks 179>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800196 fsl,fifo-depth = <15>;
197 fsl,ssi-dma-events = <42 41>;
198 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800199 };
200
Richard Zhaob1a5da82012-05-02 10:29:10 +0800201 ssi3: ssi@02030000 {
202 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800203 reg = <0x02030000 0x4000>;
204 interrupts = <0 48 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800205 clocks = <&clks 180>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800206 fsl,fifo-depth = <15>;
207 fsl,ssi-dma-events = <46 45>;
208 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800209 };
210
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100211 asrc: asrc@02034000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800212 reg = <0x02034000 0x4000>;
213 interrupts = <0 50 0x04>;
214 };
215
216 spba@0203c000 {
217 reg = <0x0203c000 0x4000>;
218 };
219 };
220
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100221 vpu: vpu@02040000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800222 reg = <0x02040000 0x3c000>;
223 interrupts = <0 3 0x04 0 12 0x04>;
224 };
225
226 aipstz@0207c000 { /* AIPSTZ1 */
227 reg = <0x0207c000 0x4000>;
228 };
229
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100230 pwm1: pwm@02080000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100231 #pwm-cells = <2>;
232 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800233 reg = <0x02080000 0x4000>;
234 interrupts = <0 83 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100235 clocks = <&clks 62>, <&clks 145>;
236 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800237 };
238
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100239 pwm2: pwm@02084000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100240 #pwm-cells = <2>;
241 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800242 reg = <0x02084000 0x4000>;
243 interrupts = <0 84 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100244 clocks = <&clks 62>, <&clks 146>;
245 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800246 };
247
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100248 pwm3: pwm@02088000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100249 #pwm-cells = <2>;
250 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800251 reg = <0x02088000 0x4000>;
252 interrupts = <0 85 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100253 clocks = <&clks 62>, <&clks 147>;
254 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800255 };
256
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100257 pwm4: pwm@0208c000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100258 #pwm-cells = <2>;
259 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800260 reg = <0x0208c000 0x4000>;
261 interrupts = <0 86 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100262 clocks = <&clks 62>, <&clks 148>;
263 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800264 };
265
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100266 can1: flexcan@02090000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800267 reg = <0x02090000 0x4000>;
268 interrupts = <0 110 0x04>;
269 };
270
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100271 can2: flexcan@02094000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800272 reg = <0x02094000 0x4000>;
273 interrupts = <0 111 0x04>;
274 };
275
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100276 gpt: gpt@02098000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800277 compatible = "fsl,imx6q-gpt";
278 reg = <0x02098000 0x4000>;
279 interrupts = <0 55 0x04>;
280 };
281
Richard Zhao4d191862011-12-14 09:26:44 +0800282 gpio1: gpio@0209c000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200283 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800284 reg = <0x0209c000 0x4000>;
285 interrupts = <0 66 0x04 0 67 0x04>;
286 gpio-controller;
287 #gpio-cells = <2>;
288 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800289 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800290 };
291
Richard Zhao4d191862011-12-14 09:26:44 +0800292 gpio2: gpio@020a0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200293 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800294 reg = <0x020a0000 0x4000>;
295 interrupts = <0 68 0x04 0 69 0x04>;
296 gpio-controller;
297 #gpio-cells = <2>;
298 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800299 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800300 };
301
Richard Zhao4d191862011-12-14 09:26:44 +0800302 gpio3: gpio@020a4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200303 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800304 reg = <0x020a4000 0x4000>;
305 interrupts = <0 70 0x04 0 71 0x04>;
306 gpio-controller;
307 #gpio-cells = <2>;
308 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800309 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800310 };
311
Richard Zhao4d191862011-12-14 09:26:44 +0800312 gpio4: gpio@020a8000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200313 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800314 reg = <0x020a8000 0x4000>;
315 interrupts = <0 72 0x04 0 73 0x04>;
316 gpio-controller;
317 #gpio-cells = <2>;
318 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800319 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800320 };
321
Richard Zhao4d191862011-12-14 09:26:44 +0800322 gpio5: gpio@020ac000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200323 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800324 reg = <0x020ac000 0x4000>;
325 interrupts = <0 74 0x04 0 75 0x04>;
326 gpio-controller;
327 #gpio-cells = <2>;
328 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800329 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800330 };
331
Richard Zhao4d191862011-12-14 09:26:44 +0800332 gpio6: gpio@020b0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200333 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800334 reg = <0x020b0000 0x4000>;
335 interrupts = <0 76 0x04 0 77 0x04>;
336 gpio-controller;
337 #gpio-cells = <2>;
338 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800339 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800340 };
341
Richard Zhao4d191862011-12-14 09:26:44 +0800342 gpio7: gpio@020b4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200343 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800344 reg = <0x020b4000 0x4000>;
345 interrupts = <0 78 0x04 0 79 0x04>;
346 gpio-controller;
347 #gpio-cells = <2>;
348 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800349 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800350 };
351
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100352 kpp: kpp@020b8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800353 reg = <0x020b8000 0x4000>;
354 interrupts = <0 82 0x04>;
355 };
356
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100357 wdog1: wdog@020bc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800358 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
359 reg = <0x020bc000 0x4000>;
360 interrupts = <0 80 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800361 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800362 };
363
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100364 wdog2: wdog@020c0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800365 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
366 reg = <0x020c0000 0x4000>;
367 interrupts = <0 81 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800368 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800369 status = "disabled";
370 };
371
Shawn Guo0e87e042012-08-22 21:36:28 +0800372 clks: ccm@020c4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800373 compatible = "fsl,imx6q-ccm";
374 reg = <0x020c4000 0x4000>;
375 interrupts = <0 87 0x04 0 88 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800376 #clock-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800377 };
378
Dong Aishengbaa64152012-09-05 10:57:15 +0800379 anatop: anatop@020c8000 {
380 compatible = "fsl,imx6q-anatop", "syscon", "simple-bus";
Shawn Guo7d740f82011-09-06 13:53:26 +0800381 reg = <0x020c8000 0x1000>;
382 interrupts = <0 49 0x04 0 54 0x04 0 127 0x04>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800383
384 regulator-1p1@110 {
385 compatible = "fsl,anatop-regulator";
386 regulator-name = "vdd1p1";
387 regulator-min-microvolt = <800000>;
388 regulator-max-microvolt = <1375000>;
389 regulator-always-on;
390 anatop-reg-offset = <0x110>;
391 anatop-vol-bit-shift = <8>;
392 anatop-vol-bit-width = <5>;
393 anatop-min-bit-val = <4>;
394 anatop-min-voltage = <800000>;
395 anatop-max-voltage = <1375000>;
396 };
397
398 regulator-3p0@120 {
399 compatible = "fsl,anatop-regulator";
400 regulator-name = "vdd3p0";
401 regulator-min-microvolt = <2800000>;
402 regulator-max-microvolt = <3150000>;
403 regulator-always-on;
404 anatop-reg-offset = <0x120>;
405 anatop-vol-bit-shift = <8>;
406 anatop-vol-bit-width = <5>;
407 anatop-min-bit-val = <0>;
408 anatop-min-voltage = <2625000>;
409 anatop-max-voltage = <3400000>;
410 };
411
412 regulator-2p5@130 {
413 compatible = "fsl,anatop-regulator";
414 regulator-name = "vdd2p5";
415 regulator-min-microvolt = <2000000>;
416 regulator-max-microvolt = <2750000>;
417 regulator-always-on;
418 anatop-reg-offset = <0x130>;
419 anatop-vol-bit-shift = <8>;
420 anatop-vol-bit-width = <5>;
421 anatop-min-bit-val = <0>;
422 anatop-min-voltage = <2000000>;
423 anatop-max-voltage = <2750000>;
424 };
425
Shawn Guo96574a62013-01-08 14:25:14 +0800426 reg_arm: regulator-vddcore@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800427 compatible = "fsl,anatop-regulator";
428 regulator-name = "cpu";
429 regulator-min-microvolt = <725000>;
430 regulator-max-microvolt = <1450000>;
431 regulator-always-on;
432 anatop-reg-offset = <0x140>;
433 anatop-vol-bit-shift = <0>;
434 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500435 anatop-delay-reg-offset = <0x170>;
436 anatop-delay-bit-shift = <24>;
437 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800438 anatop-min-bit-val = <1>;
439 anatop-min-voltage = <725000>;
440 anatop-max-voltage = <1450000>;
441 };
442
Shawn Guo96574a62013-01-08 14:25:14 +0800443 reg_pu: regulator-vddpu@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800444 compatible = "fsl,anatop-regulator";
445 regulator-name = "vddpu";
446 regulator-min-microvolt = <725000>;
447 regulator-max-microvolt = <1450000>;
448 regulator-always-on;
449 anatop-reg-offset = <0x140>;
450 anatop-vol-bit-shift = <9>;
451 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500452 anatop-delay-reg-offset = <0x170>;
453 anatop-delay-bit-shift = <26>;
454 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800455 anatop-min-bit-val = <1>;
456 anatop-min-voltage = <725000>;
457 anatop-max-voltage = <1450000>;
458 };
459
Shawn Guo96574a62013-01-08 14:25:14 +0800460 reg_soc: regulator-vddsoc@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800461 compatible = "fsl,anatop-regulator";
462 regulator-name = "vddsoc";
463 regulator-min-microvolt = <725000>;
464 regulator-max-microvolt = <1450000>;
465 regulator-always-on;
466 anatop-reg-offset = <0x140>;
467 anatop-vol-bit-shift = <18>;
468 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500469 anatop-delay-reg-offset = <0x170>;
470 anatop-delay-bit-shift = <28>;
471 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800472 anatop-min-bit-val = <1>;
473 anatop-min-voltage = <725000>;
474 anatop-max-voltage = <1450000>;
475 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800476 };
477
Richard Zhao74bd88f2012-07-12 14:21:41 +0800478 usbphy1: usbphy@020c9000 {
479 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800480 reg = <0x020c9000 0x1000>;
481 interrupts = <0 44 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800482 clocks = <&clks 182>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800483 };
484
Richard Zhao74bd88f2012-07-12 14:21:41 +0800485 usbphy2: usbphy@020ca000 {
486 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800487 reg = <0x020ca000 0x1000>;
488 interrupts = <0 45 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800489 clocks = <&clks 183>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800490 };
491
492 snvs@020cc000 {
Shawn Guoc9250382012-07-02 20:13:03 +0800493 compatible = "fsl,sec-v4.0-mon", "simple-bus";
494 #address-cells = <1>;
495 #size-cells = <1>;
496 ranges = <0 0x020cc000 0x4000>;
497
498 snvs-rtc-lp@34 {
499 compatible = "fsl,sec-v4.0-mon-rtc-lp";
500 reg = <0x34 0x58>;
501 interrupts = <0 19 0x04 0 20 0x04>;
502 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800503 };
504
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100505 epit1: epit@020d0000 { /* EPIT1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800506 reg = <0x020d0000 0x4000>;
507 interrupts = <0 56 0x04>;
508 };
509
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100510 epit2: epit@020d4000 { /* EPIT2 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800511 reg = <0x020d4000 0x4000>;
512 interrupts = <0 57 0x04>;
513 };
514
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100515 src: src@020d8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800516 compatible = "fsl,imx6q-src";
517 reg = <0x020d8000 0x4000>;
518 interrupts = <0 91 0x04 0 96 0x04>;
519 };
520
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100521 gpc: gpc@020dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800522 compatible = "fsl,imx6q-gpc";
523 reg = <0x020dc000 0x4000>;
524 interrupts = <0 89 0x04 0 90 0x04>;
525 };
526
Dong Aishengdf37e0c2012-09-05 10:57:14 +0800527 gpr: iomuxc-gpr@020e0000 {
528 compatible = "fsl,imx6q-iomuxc-gpr", "syscon";
529 reg = <0x020e0000 0x38>;
530 };
531
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100532 dcic1: dcic@020e4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800533 reg = <0x020e4000 0x4000>;
534 interrupts = <0 124 0x04>;
535 };
536
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100537 dcic2: dcic@020e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800538 reg = <0x020e8000 0x4000>;
539 interrupts = <0 125 0x04>;
540 };
541
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100542 sdma: sdma@020ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800543 compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma";
544 reg = <0x020ec000 0x4000>;
545 interrupts = <0 2 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800546 clocks = <&clks 155>, <&clks 155>;
547 clock-names = "ipg", "ahb";
Fabio Estevamd6b9c592013-01-17 12:13:25 -0200548 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin";
Shawn Guo7d740f82011-09-06 13:53:26 +0800549 };
550 };
551
552 aips-bus@02100000 { /* AIPS2 */
553 compatible = "fsl,aips-bus", "simple-bus";
554 #address-cells = <1>;
555 #size-cells = <1>;
556 reg = <0x02100000 0x100000>;
557 ranges;
558
559 caam@02100000 {
560 reg = <0x02100000 0x40000>;
561 interrupts = <0 105 0x04 0 106 0x04>;
562 };
563
564 aipstz@0217c000 { /* AIPSTZ2 */
565 reg = <0x0217c000 0x4000>;
566 };
567
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100568 usbotg: usb@02184000 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800569 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
570 reg = <0x02184000 0x200>;
571 interrupts = <0 43 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800572 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800573 fsl,usbphy = <&usbphy1>;
Richard Zhao28342c62012-09-14 14:42:45 +0800574 fsl,usbmisc = <&usbmisc 0>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800575 status = "disabled";
576 };
577
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100578 usbh1: usb@02184200 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800579 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
580 reg = <0x02184200 0x200>;
581 interrupts = <0 40 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800582 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800583 fsl,usbphy = <&usbphy2>;
Richard Zhao28342c62012-09-14 14:42:45 +0800584 fsl,usbmisc = <&usbmisc 1>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800585 status = "disabled";
586 };
587
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100588 usbh2: usb@02184400 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800589 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
590 reg = <0x02184400 0x200>;
591 interrupts = <0 41 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800592 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800593 fsl,usbmisc = <&usbmisc 2>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800594 status = "disabled";
595 };
596
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100597 usbh3: usb@02184600 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800598 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
599 reg = <0x02184600 0x200>;
600 interrupts = <0 42 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800601 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800602 fsl,usbmisc = <&usbmisc 3>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800603 status = "disabled";
604 };
605
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100606 usbmisc: usbmisc: usbmisc@02184800 {
Richard Zhao28342c62012-09-14 14:42:45 +0800607 #index-cells = <1>;
608 compatible = "fsl,imx6q-usbmisc";
609 reg = <0x02184800 0x200>;
610 clocks = <&clks 162>;
611 };
612
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100613 fec: ethernet@02188000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800614 compatible = "fsl,imx6q-fec";
615 reg = <0x02188000 0x4000>;
616 interrupts = <0 118 0x04 0 119 0x04>;
Frank Li8dd5c662013-02-05 14:21:06 +0800617 clocks = <&clks 117>, <&clks 117>, <&clks 190>;
Frank Li76298382012-10-30 18:24:57 +0000618 clock-names = "ipg", "ahb", "ptp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800619 status = "disabled";
620 };
621
622 mlb@0218c000 {
623 reg = <0x0218c000 0x4000>;
624 interrupts = <0 53 0x04 0 117 0x04 0 126 0x04>;
625 };
626
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100627 usdhc1: usdhc@02190000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800628 compatible = "fsl,imx6q-usdhc";
629 reg = <0x02190000 0x4000>;
630 interrupts = <0 22 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800631 clocks = <&clks 163>, <&clks 163>, <&clks 163>;
632 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200633 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800634 status = "disabled";
635 };
636
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100637 usdhc2: usdhc@02194000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800638 compatible = "fsl,imx6q-usdhc";
639 reg = <0x02194000 0x4000>;
640 interrupts = <0 23 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800641 clocks = <&clks 164>, <&clks 164>, <&clks 164>;
642 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200643 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800644 status = "disabled";
645 };
646
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100647 usdhc3: usdhc@02198000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800648 compatible = "fsl,imx6q-usdhc";
649 reg = <0x02198000 0x4000>;
650 interrupts = <0 24 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800651 clocks = <&clks 165>, <&clks 165>, <&clks 165>;
652 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200653 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800654 status = "disabled";
655 };
656
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100657 usdhc4: usdhc@0219c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800658 compatible = "fsl,imx6q-usdhc";
659 reg = <0x0219c000 0x4000>;
660 interrupts = <0 25 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800661 clocks = <&clks 166>, <&clks 166>, <&clks 166>;
662 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200663 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800664 status = "disabled";
665 };
666
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100667 i2c1: i2c@021a0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800668 #address-cells = <1>;
669 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800670 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800671 reg = <0x021a0000 0x4000>;
672 interrupts = <0 36 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800673 clocks = <&clks 125>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800674 status = "disabled";
675 };
676
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100677 i2c2: i2c@021a4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800678 #address-cells = <1>;
679 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800680 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800681 reg = <0x021a4000 0x4000>;
682 interrupts = <0 37 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800683 clocks = <&clks 126>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800684 status = "disabled";
685 };
686
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100687 i2c3: i2c@021a8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800688 #address-cells = <1>;
689 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800690 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800691 reg = <0x021a8000 0x4000>;
692 interrupts = <0 38 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800693 clocks = <&clks 127>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800694 status = "disabled";
695 };
696
697 romcp@021ac000 {
698 reg = <0x021ac000 0x4000>;
699 };
700
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100701 mmdc0: mmdc@021b0000 { /* MMDC0 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800702 compatible = "fsl,imx6q-mmdc";
703 reg = <0x021b0000 0x4000>;
704 };
705
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100706 mmdc1: mmdc@021b4000 { /* MMDC1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800707 reg = <0x021b4000 0x4000>;
708 };
709
710 weim@021b8000 {
711 reg = <0x021b8000 0x4000>;
712 interrupts = <0 14 0x04>;
713 };
714
715 ocotp@021bc000 {
Shawn Guo96574a62013-01-08 14:25:14 +0800716 compatible = "fsl,imx6q-ocotp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800717 reg = <0x021bc000 0x4000>;
718 };
719
720 ocotp@021c0000 {
721 reg = <0x021c0000 0x4000>;
722 interrupts = <0 21 0x04>;
723 };
724
725 tzasc@021d0000 { /* TZASC1 */
726 reg = <0x021d0000 0x4000>;
727 interrupts = <0 108 0x04>;
728 };
729
730 tzasc@021d4000 { /* TZASC2 */
731 reg = <0x021d4000 0x4000>;
732 interrupts = <0 109 0x04>;
733 };
734
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100735 audmux: audmux@021d8000 {
Richard Zhaof965cd52012-05-02 10:32:26 +0800736 compatible = "fsl,imx6q-audmux", "fsl,imx31-audmux";
Shawn Guo7d740f82011-09-06 13:53:26 +0800737 reg = <0x021d8000 0x4000>;
Richard Zhaof965cd52012-05-02 10:32:26 +0800738 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800739 };
740
741 mipi@021dc000 { /* MIPI-CSI */
742 reg = <0x021dc000 0x4000>;
743 };
744
745 mipi@021e0000 { /* MIPI-DSI */
746 reg = <0x021e0000 0x4000>;
747 };
748
749 vdoa@021e4000 {
750 reg = <0x021e4000 0x4000>;
751 interrupts = <0 18 0x04>;
752 };
753
Shawn Guo0c456cf2012-04-02 14:39:26 +0800754 uart2: serial@021e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800755 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
756 reg = <0x021e8000 0x4000>;
757 interrupts = <0 27 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800758 clocks = <&clks 160>, <&clks 161>;
759 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800760 status = "disabled";
761 };
762
Shawn Guo0c456cf2012-04-02 14:39:26 +0800763 uart3: serial@021ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800764 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
765 reg = <0x021ec000 0x4000>;
766 interrupts = <0 28 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800767 clocks = <&clks 160>, <&clks 161>;
768 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800769 status = "disabled";
770 };
771
Shawn Guo0c456cf2012-04-02 14:39:26 +0800772 uart4: serial@021f0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800773 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
774 reg = <0x021f0000 0x4000>;
775 interrupts = <0 29 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800776 clocks = <&clks 160>, <&clks 161>;
777 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800778 status = "disabled";
779 };
780
Shawn Guo0c456cf2012-04-02 14:39:26 +0800781 uart5: serial@021f4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800782 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
783 reg = <0x021f4000 0x4000>;
784 interrupts = <0 30 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800785 clocks = <&clks 160>, <&clks 161>;
786 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800787 status = "disabled";
788 };
789 };
Sascha Hauer91660d72012-11-12 15:52:21 +0100790
791 ipu1: ipu@02400000 {
792 #crtc-cells = <1>;
793 compatible = "fsl,imx6q-ipu";
794 reg = <0x02400000 0x400000>;
795 interrupts = <0 6 0x4 0 5 0x4>;
796 clocks = <&clks 130>, <&clks 131>, <&clks 132>;
797 clock-names = "bus", "di0", "di1";
798 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800799 };
800};