blob: 2d73f83101fce0e0cd62cbe59adcbb866a8d32a8 [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
Shawn Guo36dffd82013-04-07 10:49:34 +080013#include "skeleton.dtsi"
Shawn Guo7d740f82011-09-06 13:53:26 +080014
15/ {
16 aliases {
Shawn Guo5230f8f2012-08-05 14:01:28 +080017 gpio0 = &gpio1;
18 gpio1 = &gpio2;
19 gpio2 = &gpio3;
20 gpio3 = &gpio4;
21 gpio4 = &gpio5;
22 gpio5 = &gpio6;
23 gpio6 = &gpio7;
Sascha Hauer80fa0582013-06-25 15:51:57 +020024 i2c0 = &i2c1;
25 i2c1 = &i2c2;
26 i2c2 = &i2c3;
27 serial0 = &uart1;
28 serial1 = &uart2;
29 serial2 = &uart3;
30 serial3 = &uart4;
31 serial4 = &uart5;
32 spi0 = &ecspi1;
33 spi1 = &ecspi2;
34 spi2 = &ecspi3;
35 spi3 = &ecspi4;
Shawn Guo7d740f82011-09-06 13:53:26 +080036 };
37
Shawn Guo7d740f82011-09-06 13:53:26 +080038 intc: interrupt-controller@00a01000 {
39 compatible = "arm,cortex-a9-gic";
40 #interrupt-cells = <3>;
41 #address-cells = <1>;
42 #size-cells = <1>;
43 interrupt-controller;
44 reg = <0x00a01000 0x1000>,
45 <0x00a00100 0x100>;
46 };
47
48 clocks {
49 #address-cells = <1>;
50 #size-cells = <0>;
51
52 ckil {
53 compatible = "fsl,imx-ckil", "fixed-clock";
54 clock-frequency = <32768>;
55 };
56
57 ckih1 {
58 compatible = "fsl,imx-ckih1", "fixed-clock";
59 clock-frequency = <0>;
60 };
61
62 osc {
63 compatible = "fsl,imx-osc", "fixed-clock";
64 clock-frequency = <24000000>;
65 };
66 };
67
68 soc {
69 #address-cells = <1>;
70 #size-cells = <1>;
71 compatible = "simple-bus";
72 interrupt-parent = <&intc>;
73 ranges;
74
Shawn Guof30fb032013-02-25 21:56:56 +080075 dma_apbh: dma-apbh@00110000 {
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040076 compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh";
77 reg = <0x00110000 0x2000>;
Shawn Guof30fb032013-02-25 21:56:56 +080078 interrupts = <0 13 0x04>, <0 13 0x04>, <0 13 0x04>, <0 13 0x04>;
79 interrupt-names = "gpmi0", "gpmi1", "gpmi2", "gpmi3";
80 #dma-cells = <1>;
81 dma-channels = <4>;
Shawn Guo0e87e042012-08-22 21:36:28 +080082 clocks = <&clks 106>;
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040083 };
84
Shawn Guobe4ccfc2012-12-31 11:32:48 +080085 gpmi: gpmi-nand@00112000 {
Shawn Guo0e87e042012-08-22 21:36:28 +080086 compatible = "fsl,imx6q-gpmi-nand";
87 #address-cells = <1>;
88 #size-cells = <1>;
89 reg = <0x00112000 0x2000>, <0x00114000 0x2000>;
90 reg-names = "gpmi-nand", "bch";
91 interrupts = <0 13 0x04>, <0 15 0x04>;
92 interrupt-names = "gpmi-dma", "bch";
93 clocks = <&clks 152>, <&clks 153>, <&clks 151>,
94 <&clks 150>, <&clks 149>;
95 clock-names = "gpmi_io", "gpmi_apb", "gpmi_bch",
96 "gpmi_bch_apb", "per1_bch";
Shawn Guof30fb032013-02-25 21:56:56 +080097 dmas = <&dma_apbh 0>;
98 dma-names = "rx-tx";
Shawn Guo0e87e042012-08-22 21:36:28 +080099 fsl,gpmi-dma-channel = <0>;
100 status = "disabled";
Huang Shijiecf922fa2012-07-01 23:38:46 -0400101 };
102
Shawn Guo7d740f82011-09-06 13:53:26 +0800103 timer@00a00600 {
Marc Zyngier58458e02012-01-10 19:44:19 +0000104 compatible = "arm,cortex-a9-twd-timer";
105 reg = <0x00a00600 0x20>;
106 interrupts = <1 13 0xf01>;
Shawn Guo2bb4b702013-04-03 23:50:09 +0800107 clocks = <&clks 15>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800108 };
109
110 L2: l2-cache@00a02000 {
111 compatible = "arm,pl310-cache";
112 reg = <0x00a02000 0x1000>;
113 interrupts = <0 92 0x04>;
114 cache-unified;
115 cache-level = <2>;
Dirk Behme5a5ca562013-04-26 10:13:55 +0200116 arm,tag-latency = <4 2 3>;
117 arm,data-latency = <4 2 3>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800118 };
119
Dirk Behme218abe62013-02-15 15:10:01 +0100120 pmu {
121 compatible = "arm,cortex-a9-pmu";
122 interrupts = <0 94 0x04>;
123 };
124
Shawn Guo7d740f82011-09-06 13:53:26 +0800125 aips-bus@02000000 { /* AIPS1 */
126 compatible = "fsl,aips-bus", "simple-bus";
127 #address-cells = <1>;
128 #size-cells = <1>;
129 reg = <0x02000000 0x100000>;
130 ranges;
131
132 spba-bus@02000000 {
133 compatible = "fsl,spba-bus", "simple-bus";
134 #address-cells = <1>;
135 #size-cells = <1>;
136 reg = <0x02000000 0x40000>;
137 ranges;
138
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100139 spdif: spdif@02004000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800140 reg = <0x02004000 0x4000>;
141 interrupts = <0 52 0x04>;
142 };
143
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100144 ecspi1: ecspi@02008000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800145 #address-cells = <1>;
146 #size-cells = <0>;
147 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
148 reg = <0x02008000 0x4000>;
149 interrupts = <0 31 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800150 clocks = <&clks 112>, <&clks 112>;
151 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800152 status = "disabled";
153 };
154
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100155 ecspi2: ecspi@0200c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800156 #address-cells = <1>;
157 #size-cells = <0>;
158 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
159 reg = <0x0200c000 0x4000>;
160 interrupts = <0 32 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800161 clocks = <&clks 113>, <&clks 113>;
162 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800163 status = "disabled";
164 };
165
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100166 ecspi3: ecspi@02010000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800167 #address-cells = <1>;
168 #size-cells = <0>;
169 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
170 reg = <0x02010000 0x4000>;
171 interrupts = <0 33 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800172 clocks = <&clks 114>, <&clks 114>;
173 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800174 status = "disabled";
175 };
176
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100177 ecspi4: ecspi@02014000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800178 #address-cells = <1>;
179 #size-cells = <0>;
180 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
181 reg = <0x02014000 0x4000>;
182 interrupts = <0 34 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800183 clocks = <&clks 115>, <&clks 115>;
184 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800185 status = "disabled";
186 };
187
Shawn Guo0c456cf2012-04-02 14:39:26 +0800188 uart1: serial@02020000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800189 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
190 reg = <0x02020000 0x4000>;
191 interrupts = <0 26 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800192 clocks = <&clks 160>, <&clks 161>;
193 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800194 status = "disabled";
195 };
196
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100197 esai: esai@02024000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800198 reg = <0x02024000 0x4000>;
199 interrupts = <0 51 0x04>;
200 };
201
Richard Zhaob1a5da82012-05-02 10:29:10 +0800202 ssi1: ssi@02028000 {
203 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800204 reg = <0x02028000 0x4000>;
205 interrupts = <0 46 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800206 clocks = <&clks 178>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800207 fsl,fifo-depth = <15>;
208 fsl,ssi-dma-events = <38 37>;
209 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800210 };
211
Richard Zhaob1a5da82012-05-02 10:29:10 +0800212 ssi2: ssi@0202c000 {
213 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800214 reg = <0x0202c000 0x4000>;
215 interrupts = <0 47 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800216 clocks = <&clks 179>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800217 fsl,fifo-depth = <15>;
218 fsl,ssi-dma-events = <42 41>;
219 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800220 };
221
Richard Zhaob1a5da82012-05-02 10:29:10 +0800222 ssi3: ssi@02030000 {
223 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800224 reg = <0x02030000 0x4000>;
225 interrupts = <0 48 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800226 clocks = <&clks 180>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800227 fsl,fifo-depth = <15>;
228 fsl,ssi-dma-events = <46 45>;
229 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800230 };
231
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100232 asrc: asrc@02034000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800233 reg = <0x02034000 0x4000>;
234 interrupts = <0 50 0x04>;
235 };
236
237 spba@0203c000 {
238 reg = <0x0203c000 0x4000>;
239 };
240 };
241
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100242 vpu: vpu@02040000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800243 reg = <0x02040000 0x3c000>;
244 interrupts = <0 3 0x04 0 12 0x04>;
245 };
246
247 aipstz@0207c000 { /* AIPSTZ1 */
248 reg = <0x0207c000 0x4000>;
249 };
250
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100251 pwm1: pwm@02080000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100252 #pwm-cells = <2>;
253 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800254 reg = <0x02080000 0x4000>;
255 interrupts = <0 83 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100256 clocks = <&clks 62>, <&clks 145>;
257 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800258 };
259
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100260 pwm2: pwm@02084000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100261 #pwm-cells = <2>;
262 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800263 reg = <0x02084000 0x4000>;
264 interrupts = <0 84 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100265 clocks = <&clks 62>, <&clks 146>;
266 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800267 };
268
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100269 pwm3: pwm@02088000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100270 #pwm-cells = <2>;
271 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800272 reg = <0x02088000 0x4000>;
273 interrupts = <0 85 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100274 clocks = <&clks 62>, <&clks 147>;
275 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800276 };
277
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100278 pwm4: pwm@0208c000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100279 #pwm-cells = <2>;
280 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800281 reg = <0x0208c000 0x4000>;
282 interrupts = <0 86 0x04>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100283 clocks = <&clks 62>, <&clks 148>;
284 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800285 };
286
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100287 can1: flexcan@02090000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200288 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800289 reg = <0x02090000 0x4000>;
290 interrupts = <0 110 0x04>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200291 clocks = <&clks 108>, <&clks 109>;
292 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800293 };
294
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100295 can2: flexcan@02094000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200296 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800297 reg = <0x02094000 0x4000>;
298 interrupts = <0 111 0x04>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200299 clocks = <&clks 110>, <&clks 111>;
300 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800301 };
302
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100303 gpt: gpt@02098000 {
Sascha Hauer97b108f2013-06-25 15:51:47 +0200304 compatible = "fsl,imx6q-gpt", "fsl,imx31-gpt";
Shawn Guo7d740f82011-09-06 13:53:26 +0800305 reg = <0x02098000 0x4000>;
306 interrupts = <0 55 0x04>;
Sascha Hauer4efccad2013-03-14 13:09:01 +0100307 clocks = <&clks 119>, <&clks 120>;
308 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800309 };
310
Richard Zhao4d191862011-12-14 09:26:44 +0800311 gpio1: gpio@0209c000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200312 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800313 reg = <0x0209c000 0x4000>;
314 interrupts = <0 66 0x04 0 67 0x04>;
315 gpio-controller;
316 #gpio-cells = <2>;
317 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800318 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800319 };
320
Richard Zhao4d191862011-12-14 09:26:44 +0800321 gpio2: gpio@020a0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200322 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800323 reg = <0x020a0000 0x4000>;
324 interrupts = <0 68 0x04 0 69 0x04>;
325 gpio-controller;
326 #gpio-cells = <2>;
327 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800328 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800329 };
330
Richard Zhao4d191862011-12-14 09:26:44 +0800331 gpio3: gpio@020a4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200332 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800333 reg = <0x020a4000 0x4000>;
334 interrupts = <0 70 0x04 0 71 0x04>;
335 gpio-controller;
336 #gpio-cells = <2>;
337 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800338 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800339 };
340
Richard Zhao4d191862011-12-14 09:26:44 +0800341 gpio4: gpio@020a8000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200342 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800343 reg = <0x020a8000 0x4000>;
344 interrupts = <0 72 0x04 0 73 0x04>;
345 gpio-controller;
346 #gpio-cells = <2>;
347 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800348 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800349 };
350
Richard Zhao4d191862011-12-14 09:26:44 +0800351 gpio5: gpio@020ac000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200352 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800353 reg = <0x020ac000 0x4000>;
354 interrupts = <0 74 0x04 0 75 0x04>;
355 gpio-controller;
356 #gpio-cells = <2>;
357 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800358 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800359 };
360
Richard Zhao4d191862011-12-14 09:26:44 +0800361 gpio6: gpio@020b0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200362 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800363 reg = <0x020b0000 0x4000>;
364 interrupts = <0 76 0x04 0 77 0x04>;
365 gpio-controller;
366 #gpio-cells = <2>;
367 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800368 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800369 };
370
Richard Zhao4d191862011-12-14 09:26:44 +0800371 gpio7: gpio@020b4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200372 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800373 reg = <0x020b4000 0x4000>;
374 interrupts = <0 78 0x04 0 79 0x04>;
375 gpio-controller;
376 #gpio-cells = <2>;
377 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800378 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800379 };
380
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100381 kpp: kpp@020b8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800382 reg = <0x020b8000 0x4000>;
383 interrupts = <0 82 0x04>;
384 };
385
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100386 wdog1: wdog@020bc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800387 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
388 reg = <0x020bc000 0x4000>;
389 interrupts = <0 80 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800390 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800391 };
392
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100393 wdog2: wdog@020c0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800394 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
395 reg = <0x020c0000 0x4000>;
396 interrupts = <0 81 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800397 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800398 status = "disabled";
399 };
400
Shawn Guo0e87e042012-08-22 21:36:28 +0800401 clks: ccm@020c4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800402 compatible = "fsl,imx6q-ccm";
403 reg = <0x020c4000 0x4000>;
404 interrupts = <0 87 0x04 0 88 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800405 #clock-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800406 };
407
Dong Aishengbaa64152012-09-05 10:57:15 +0800408 anatop: anatop@020c8000 {
409 compatible = "fsl,imx6q-anatop", "syscon", "simple-bus";
Shawn Guo7d740f82011-09-06 13:53:26 +0800410 reg = <0x020c8000 0x1000>;
411 interrupts = <0 49 0x04 0 54 0x04 0 127 0x04>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800412
413 regulator-1p1@110 {
414 compatible = "fsl,anatop-regulator";
415 regulator-name = "vdd1p1";
416 regulator-min-microvolt = <800000>;
417 regulator-max-microvolt = <1375000>;
418 regulator-always-on;
419 anatop-reg-offset = <0x110>;
420 anatop-vol-bit-shift = <8>;
421 anatop-vol-bit-width = <5>;
422 anatop-min-bit-val = <4>;
423 anatop-min-voltage = <800000>;
424 anatop-max-voltage = <1375000>;
425 };
426
427 regulator-3p0@120 {
428 compatible = "fsl,anatop-regulator";
429 regulator-name = "vdd3p0";
430 regulator-min-microvolt = <2800000>;
431 regulator-max-microvolt = <3150000>;
432 regulator-always-on;
433 anatop-reg-offset = <0x120>;
434 anatop-vol-bit-shift = <8>;
435 anatop-vol-bit-width = <5>;
436 anatop-min-bit-val = <0>;
437 anatop-min-voltage = <2625000>;
438 anatop-max-voltage = <3400000>;
439 };
440
441 regulator-2p5@130 {
442 compatible = "fsl,anatop-regulator";
443 regulator-name = "vdd2p5";
444 regulator-min-microvolt = <2000000>;
445 regulator-max-microvolt = <2750000>;
446 regulator-always-on;
447 anatop-reg-offset = <0x130>;
448 anatop-vol-bit-shift = <8>;
449 anatop-vol-bit-width = <5>;
450 anatop-min-bit-val = <0>;
451 anatop-min-voltage = <2000000>;
452 anatop-max-voltage = <2750000>;
453 };
454
Shawn Guo96574a62013-01-08 14:25:14 +0800455 reg_arm: regulator-vddcore@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800456 compatible = "fsl,anatop-regulator";
457 regulator-name = "cpu";
458 regulator-min-microvolt = <725000>;
459 regulator-max-microvolt = <1450000>;
460 regulator-always-on;
461 anatop-reg-offset = <0x140>;
462 anatop-vol-bit-shift = <0>;
463 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500464 anatop-delay-reg-offset = <0x170>;
465 anatop-delay-bit-shift = <24>;
466 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800467 anatop-min-bit-val = <1>;
468 anatop-min-voltage = <725000>;
469 anatop-max-voltage = <1450000>;
470 };
471
Shawn Guo96574a62013-01-08 14:25:14 +0800472 reg_pu: regulator-vddpu@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800473 compatible = "fsl,anatop-regulator";
474 regulator-name = "vddpu";
475 regulator-min-microvolt = <725000>;
476 regulator-max-microvolt = <1450000>;
477 regulator-always-on;
478 anatop-reg-offset = <0x140>;
479 anatop-vol-bit-shift = <9>;
480 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500481 anatop-delay-reg-offset = <0x170>;
482 anatop-delay-bit-shift = <26>;
483 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800484 anatop-min-bit-val = <1>;
485 anatop-min-voltage = <725000>;
486 anatop-max-voltage = <1450000>;
487 };
488
Shawn Guo96574a62013-01-08 14:25:14 +0800489 reg_soc: regulator-vddsoc@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800490 compatible = "fsl,anatop-regulator";
491 regulator-name = "vddsoc";
492 regulator-min-microvolt = <725000>;
493 regulator-max-microvolt = <1450000>;
494 regulator-always-on;
495 anatop-reg-offset = <0x140>;
496 anatop-vol-bit-shift = <18>;
497 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500498 anatop-delay-reg-offset = <0x170>;
499 anatop-delay-bit-shift = <28>;
500 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800501 anatop-min-bit-val = <1>;
502 anatop-min-voltage = <725000>;
503 anatop-max-voltage = <1450000>;
504 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800505 };
506
Richard Zhao74bd88f2012-07-12 14:21:41 +0800507 usbphy1: usbphy@020c9000 {
508 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800509 reg = <0x020c9000 0x1000>;
510 interrupts = <0 44 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800511 clocks = <&clks 182>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800512 };
513
Richard Zhao74bd88f2012-07-12 14:21:41 +0800514 usbphy2: usbphy@020ca000 {
515 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800516 reg = <0x020ca000 0x1000>;
517 interrupts = <0 45 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800518 clocks = <&clks 183>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800519 };
520
521 snvs@020cc000 {
Shawn Guoc9250382012-07-02 20:13:03 +0800522 compatible = "fsl,sec-v4.0-mon", "simple-bus";
523 #address-cells = <1>;
524 #size-cells = <1>;
525 ranges = <0 0x020cc000 0x4000>;
526
527 snvs-rtc-lp@34 {
528 compatible = "fsl,sec-v4.0-mon-rtc-lp";
529 reg = <0x34 0x58>;
530 interrupts = <0 19 0x04 0 20 0x04>;
531 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800532 };
533
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100534 epit1: epit@020d0000 { /* EPIT1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800535 reg = <0x020d0000 0x4000>;
536 interrupts = <0 56 0x04>;
537 };
538
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100539 epit2: epit@020d4000 { /* EPIT2 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800540 reg = <0x020d4000 0x4000>;
541 interrupts = <0 57 0x04>;
542 };
543
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100544 src: src@020d8000 {
Philipp Zabelbd3d9242013-03-28 17:35:22 +0100545 compatible = "fsl,imx6q-src", "fsl,imx51-src";
Shawn Guo7d740f82011-09-06 13:53:26 +0800546 reg = <0x020d8000 0x4000>;
547 interrupts = <0 91 0x04 0 96 0x04>;
Philipp Zabel09ebf362013-03-28 17:35:20 +0100548 #reset-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800549 };
550
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100551 gpc: gpc@020dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800552 compatible = "fsl,imx6q-gpc";
553 reg = <0x020dc000 0x4000>;
554 interrupts = <0 89 0x04 0 90 0x04>;
555 };
556
Dong Aishengdf37e0c2012-09-05 10:57:14 +0800557 gpr: iomuxc-gpr@020e0000 {
558 compatible = "fsl,imx6q-iomuxc-gpr", "syscon";
559 reg = <0x020e0000 0x38>;
560 };
561
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100562 ldb: ldb@020e0008 {
563 #address-cells = <1>;
564 #size-cells = <0>;
565 compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb";
566 gpr = <&gpr>;
567 status = "disabled";
568
569 lvds-channel@0 {
570 reg = <0>;
571 crtcs = <&ipu1 0>;
572 status = "disabled";
573 };
574
575 lvds-channel@1 {
576 reg = <1>;
577 crtcs = <&ipu1 1>;
578 status = "disabled";
579 };
580 };
581
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100582 dcic1: dcic@020e4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800583 reg = <0x020e4000 0x4000>;
584 interrupts = <0 124 0x04>;
585 };
586
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100587 dcic2: dcic@020e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800588 reg = <0x020e8000 0x4000>;
589 interrupts = <0 125 0x04>;
590 };
591
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100592 sdma: sdma@020ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800593 compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma";
594 reg = <0x020ec000 0x4000>;
595 interrupts = <0 2 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800596 clocks = <&clks 155>, <&clks 155>;
597 clock-names = "ipg", "ahb";
Fabio Estevamd6b9c592013-01-17 12:13:25 -0200598 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin";
Shawn Guo7d740f82011-09-06 13:53:26 +0800599 };
600 };
601
602 aips-bus@02100000 { /* AIPS2 */
603 compatible = "fsl,aips-bus", "simple-bus";
604 #address-cells = <1>;
605 #size-cells = <1>;
606 reg = <0x02100000 0x100000>;
607 ranges;
608
609 caam@02100000 {
610 reg = <0x02100000 0x40000>;
611 interrupts = <0 105 0x04 0 106 0x04>;
612 };
613
614 aipstz@0217c000 { /* AIPSTZ2 */
615 reg = <0x0217c000 0x4000>;
616 };
617
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100618 usbotg: usb@02184000 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800619 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
620 reg = <0x02184000 0x200>;
621 interrupts = <0 43 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800622 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800623 fsl,usbphy = <&usbphy1>;
Richard Zhao28342c62012-09-14 14:42:45 +0800624 fsl,usbmisc = <&usbmisc 0>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800625 status = "disabled";
626 };
627
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100628 usbh1: usb@02184200 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800629 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
630 reg = <0x02184200 0x200>;
631 interrupts = <0 40 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800632 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800633 fsl,usbphy = <&usbphy2>;
Richard Zhao28342c62012-09-14 14:42:45 +0800634 fsl,usbmisc = <&usbmisc 1>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800635 status = "disabled";
636 };
637
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100638 usbh2: usb@02184400 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800639 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
640 reg = <0x02184400 0x200>;
641 interrupts = <0 41 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800642 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800643 fsl,usbmisc = <&usbmisc 2>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800644 status = "disabled";
645 };
646
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100647 usbh3: usb@02184600 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800648 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
649 reg = <0x02184600 0x200>;
650 interrupts = <0 42 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800651 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800652 fsl,usbmisc = <&usbmisc 3>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800653 status = "disabled";
654 };
655
Shawn Guo60984bd2013-04-28 09:59:54 +0800656 usbmisc: usbmisc@02184800 {
Richard Zhao28342c62012-09-14 14:42:45 +0800657 #index-cells = <1>;
658 compatible = "fsl,imx6q-usbmisc";
659 reg = <0x02184800 0x200>;
660 clocks = <&clks 162>;
661 };
662
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100663 fec: ethernet@02188000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800664 compatible = "fsl,imx6q-fec";
665 reg = <0x02188000 0x4000>;
666 interrupts = <0 118 0x04 0 119 0x04>;
Frank Li8dd5c662013-02-05 14:21:06 +0800667 clocks = <&clks 117>, <&clks 117>, <&clks 190>;
Frank Li76298382012-10-30 18:24:57 +0000668 clock-names = "ipg", "ahb", "ptp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800669 status = "disabled";
670 };
671
672 mlb@0218c000 {
673 reg = <0x0218c000 0x4000>;
674 interrupts = <0 53 0x04 0 117 0x04 0 126 0x04>;
675 };
676
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100677 usdhc1: usdhc@02190000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800678 compatible = "fsl,imx6q-usdhc";
679 reg = <0x02190000 0x4000>;
680 interrupts = <0 22 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800681 clocks = <&clks 163>, <&clks 163>, <&clks 163>;
682 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200683 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800684 status = "disabled";
685 };
686
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100687 usdhc2: usdhc@02194000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800688 compatible = "fsl,imx6q-usdhc";
689 reg = <0x02194000 0x4000>;
690 interrupts = <0 23 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800691 clocks = <&clks 164>, <&clks 164>, <&clks 164>;
692 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200693 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800694 status = "disabled";
695 };
696
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100697 usdhc3: usdhc@02198000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800698 compatible = "fsl,imx6q-usdhc";
699 reg = <0x02198000 0x4000>;
700 interrupts = <0 24 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800701 clocks = <&clks 165>, <&clks 165>, <&clks 165>;
702 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200703 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800704 status = "disabled";
705 };
706
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100707 usdhc4: usdhc@0219c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800708 compatible = "fsl,imx6q-usdhc";
709 reg = <0x0219c000 0x4000>;
710 interrupts = <0 25 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800711 clocks = <&clks 166>, <&clks 166>, <&clks 166>;
712 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200713 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800714 status = "disabled";
715 };
716
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100717 i2c1: i2c@021a0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800718 #address-cells = <1>;
719 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800720 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800721 reg = <0x021a0000 0x4000>;
722 interrupts = <0 36 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800723 clocks = <&clks 125>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800724 status = "disabled";
725 };
726
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100727 i2c2: i2c@021a4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800728 #address-cells = <1>;
729 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800730 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800731 reg = <0x021a4000 0x4000>;
732 interrupts = <0 37 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800733 clocks = <&clks 126>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800734 status = "disabled";
735 };
736
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100737 i2c3: i2c@021a8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800738 #address-cells = <1>;
739 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800740 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800741 reg = <0x021a8000 0x4000>;
742 interrupts = <0 38 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800743 clocks = <&clks 127>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800744 status = "disabled";
745 };
746
747 romcp@021ac000 {
748 reg = <0x021ac000 0x4000>;
749 };
750
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100751 mmdc0: mmdc@021b0000 { /* MMDC0 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800752 compatible = "fsl,imx6q-mmdc";
753 reg = <0x021b0000 0x4000>;
754 };
755
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100756 mmdc1: mmdc@021b4000 { /* MMDC1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800757 reg = <0x021b4000 0x4000>;
758 };
759
Huang Shijie05e3f8e2013-05-28 14:20:09 +0800760 weim: weim@021b8000 {
761 compatible = "fsl,imx6q-weim";
Shawn Guo7d740f82011-09-06 13:53:26 +0800762 reg = <0x021b8000 0x4000>;
763 interrupts = <0 14 0x04>;
Huang Shijie05e3f8e2013-05-28 14:20:09 +0800764 clocks = <&clks 196>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800765 };
766
767 ocotp@021bc000 {
Shawn Guo96574a62013-01-08 14:25:14 +0800768 compatible = "fsl,imx6q-ocotp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800769 reg = <0x021bc000 0x4000>;
770 };
771
Shawn Guo7d740f82011-09-06 13:53:26 +0800772 tzasc@021d0000 { /* TZASC1 */
773 reg = <0x021d0000 0x4000>;
774 interrupts = <0 108 0x04>;
775 };
776
777 tzasc@021d4000 { /* TZASC2 */
778 reg = <0x021d4000 0x4000>;
779 interrupts = <0 109 0x04>;
780 };
781
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100782 audmux: audmux@021d8000 {
Richard Zhaof965cd52012-05-02 10:32:26 +0800783 compatible = "fsl,imx6q-audmux", "fsl,imx31-audmux";
Shawn Guo7d740f82011-09-06 13:53:26 +0800784 reg = <0x021d8000 0x4000>;
Richard Zhaof965cd52012-05-02 10:32:26 +0800785 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800786 };
787
788 mipi@021dc000 { /* MIPI-CSI */
789 reg = <0x021dc000 0x4000>;
790 };
791
792 mipi@021e0000 { /* MIPI-DSI */
793 reg = <0x021e0000 0x4000>;
794 };
795
796 vdoa@021e4000 {
797 reg = <0x021e4000 0x4000>;
798 interrupts = <0 18 0x04>;
799 };
800
Shawn Guo0c456cf2012-04-02 14:39:26 +0800801 uart2: serial@021e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800802 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
803 reg = <0x021e8000 0x4000>;
804 interrupts = <0 27 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800805 clocks = <&clks 160>, <&clks 161>;
806 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800807 status = "disabled";
808 };
809
Shawn Guo0c456cf2012-04-02 14:39:26 +0800810 uart3: serial@021ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800811 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
812 reg = <0x021ec000 0x4000>;
813 interrupts = <0 28 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800814 clocks = <&clks 160>, <&clks 161>;
815 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800816 status = "disabled";
817 };
818
Shawn Guo0c456cf2012-04-02 14:39:26 +0800819 uart4: serial@021f0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800820 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
821 reg = <0x021f0000 0x4000>;
822 interrupts = <0 29 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800823 clocks = <&clks 160>, <&clks 161>;
824 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800825 status = "disabled";
826 };
827
Shawn Guo0c456cf2012-04-02 14:39:26 +0800828 uart5: serial@021f4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800829 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
830 reg = <0x021f4000 0x4000>;
831 interrupts = <0 30 0x04>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800832 clocks = <&clks 160>, <&clks 161>;
833 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800834 status = "disabled";
835 };
836 };
Sascha Hauer91660d72012-11-12 15:52:21 +0100837
838 ipu1: ipu@02400000 {
839 #crtc-cells = <1>;
840 compatible = "fsl,imx6q-ipu";
841 reg = <0x02400000 0x400000>;
842 interrupts = <0 6 0x4 0 5 0x4>;
843 clocks = <&clks 130>, <&clks 131>, <&clks 132>;
844 clock-names = "bus", "di0", "di1";
Philipp Zabel09ebf362013-03-28 17:35:20 +0100845 resets = <&src 2>;
Sascha Hauer91660d72012-11-12 15:52:21 +0100846 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800847 };
848};