blob: 2dd30ecf0dc120cdb7ccba0ca64433fa99e5281b [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 {
Lothar Waßmann5f8fbc22013-12-12 14:27:57 +010017 can0 = &can1;
18 can1 = &can2;
Shawn Guo5230f8f2012-08-05 14:01:28 +080019 gpio0 = &gpio1;
20 gpio1 = &gpio2;
21 gpio2 = &gpio3;
22 gpio3 = &gpio4;
23 gpio4 = &gpio5;
24 gpio5 = &gpio6;
25 gpio6 = &gpio7;
Sascha Hauer80fa0582013-06-25 15:51:57 +020026 i2c0 = &i2c1;
27 i2c1 = &i2c2;
28 i2c2 = &i2c3;
Sascha Hauerfb06d652014-01-16 13:44:20 +010029 mmc0 = &usdhc1;
30 mmc1 = &usdhc2;
31 mmc2 = &usdhc3;
32 mmc3 = &usdhc4;
Sascha Hauer80fa0582013-06-25 15:51:57 +020033 serial0 = &uart1;
34 serial1 = &uart2;
35 serial2 = &uart3;
36 serial3 = &uart4;
37 serial4 = &uart5;
38 spi0 = &ecspi1;
39 spi1 = &ecspi2;
40 spi2 = &ecspi3;
41 spi3 = &ecspi4;
Peter Chen8189c512013-12-20 15:52:05 +080042 usbphy0 = &usbphy1;
43 usbphy1 = &usbphy2;
Shawn Guo7d740f82011-09-06 13:53:26 +080044 };
45
Shawn Guo7d740f82011-09-06 13:53:26 +080046 intc: interrupt-controller@00a01000 {
47 compatible = "arm,cortex-a9-gic";
48 #interrupt-cells = <3>;
49 #address-cells = <1>;
50 #size-cells = <1>;
51 interrupt-controller;
52 reg = <0x00a01000 0x1000>,
53 <0x00a00100 0x100>;
54 };
55
56 clocks {
57 #address-cells = <1>;
58 #size-cells = <0>;
59
60 ckil {
61 compatible = "fsl,imx-ckil", "fixed-clock";
62 clock-frequency = <32768>;
63 };
64
65 ckih1 {
66 compatible = "fsl,imx-ckih1", "fixed-clock";
67 clock-frequency = <0>;
68 };
69
70 osc {
71 compatible = "fsl,imx-osc", "fixed-clock";
72 clock-frequency = <24000000>;
73 };
74 };
75
76 soc {
77 #address-cells = <1>;
78 #size-cells = <1>;
79 compatible = "simple-bus";
80 interrupt-parent = <&intc>;
81 ranges;
82
Shawn Guof30fb032013-02-25 21:56:56 +080083 dma_apbh: dma-apbh@00110000 {
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040084 compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh";
85 reg = <0x00110000 0x2000>;
Troy Kisky275c08b2013-11-14 14:02:13 -070086 interrupts = <0 13 IRQ_TYPE_LEVEL_HIGH>,
87 <0 13 IRQ_TYPE_LEVEL_HIGH>,
88 <0 13 IRQ_TYPE_LEVEL_HIGH>,
89 <0 13 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guof30fb032013-02-25 21:56:56 +080090 interrupt-names = "gpmi0", "gpmi1", "gpmi2", "gpmi3";
91 #dma-cells = <1>;
92 dma-channels = <4>;
Shawn Guo0e87e042012-08-22 21:36:28 +080093 clocks = <&clks 106>;
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040094 };
95
Shawn Guobe4ccfc2012-12-31 11:32:48 +080096 gpmi: gpmi-nand@00112000 {
Shawn Guo0e87e042012-08-22 21:36:28 +080097 compatible = "fsl,imx6q-gpmi-nand";
98 #address-cells = <1>;
99 #size-cells = <1>;
100 reg = <0x00112000 0x2000>, <0x00114000 0x2000>;
101 reg-names = "gpmi-nand", "bch";
Troy Kisky275c08b2013-11-14 14:02:13 -0700102 interrupts = <0 15 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoc7aa12a2013-07-16 17:13:00 +0800103 interrupt-names = "bch";
Shawn Guo0e87e042012-08-22 21:36:28 +0800104 clocks = <&clks 152>, <&clks 153>, <&clks 151>,
105 <&clks 150>, <&clks 149>;
106 clock-names = "gpmi_io", "gpmi_apb", "gpmi_bch",
107 "gpmi_bch_apb", "per1_bch";
Shawn Guof30fb032013-02-25 21:56:56 +0800108 dmas = <&dma_apbh 0>;
109 dma-names = "rx-tx";
Shawn Guo0e87e042012-08-22 21:36:28 +0800110 status = "disabled";
Huang Shijiecf922fa2012-07-01 23:38:46 -0400111 };
112
Shawn Guo7d740f82011-09-06 13:53:26 +0800113 timer@00a00600 {
Marc Zyngier58458e02012-01-10 19:44:19 +0000114 compatible = "arm,cortex-a9-twd-timer";
115 reg = <0x00a00600 0x20>;
116 interrupts = <1 13 0xf01>;
Shawn Guo2bb4b702013-04-03 23:50:09 +0800117 clocks = <&clks 15>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800118 };
119
120 L2: l2-cache@00a02000 {
121 compatible = "arm,pl310-cache";
122 reg = <0x00a02000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700123 interrupts = <0 92 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800124 cache-unified;
125 cache-level = <2>;
Dirk Behme5a5ca562013-04-26 10:13:55 +0200126 arm,tag-latency = <4 2 3>;
127 arm,data-latency = <4 2 3>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800128 };
129
Sean Cross3a572912013-09-26 10:51:09 +0800130 pcie: pcie@0x01000000 {
131 compatible = "fsl,imx6q-pcie", "snps,dw-pcie";
132 reg = <0x01ffc000 0x4000>; /* DBI */
133 #address-cells = <3>;
134 #size-cells = <2>;
135 device_type = "pci";
136 ranges = <0x00000800 0 0x01f00000 0x01f00000 0 0x00080000 /* configuration space */
137 0x81000000 0 0 0x01f80000 0 0x00010000 /* downstream I/O */
138 0x82000000 0 0x01000000 0x01000000 0 0x00f00000>; /* non-prefetchable memory */
139 num-lanes = <1>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700140 interrupts = <0 123 IRQ_TYPE_LEVEL_HIGH>;
Sean Cross3a572912013-09-26 10:51:09 +0800141 clocks = <&clks 189>, <&clks 187>, <&clks 206>, <&clks 144>;
142 clock-names = "pcie_ref_125m", "sata_ref_100m", "lvds_gate", "pcie_axi";
143 status = "disabled";
144 };
145
Dirk Behme218abe62013-02-15 15:10:01 +0100146 pmu {
147 compatible = "arm,cortex-a9-pmu";
Troy Kisky275c08b2013-11-14 14:02:13 -0700148 interrupts = <0 94 IRQ_TYPE_LEVEL_HIGH>;
Dirk Behme218abe62013-02-15 15:10:01 +0100149 };
150
Shawn Guo7d740f82011-09-06 13:53:26 +0800151 aips-bus@02000000 { /* AIPS1 */
152 compatible = "fsl,aips-bus", "simple-bus";
153 #address-cells = <1>;
154 #size-cells = <1>;
155 reg = <0x02000000 0x100000>;
156 ranges;
157
158 spba-bus@02000000 {
159 compatible = "fsl,spba-bus", "simple-bus";
160 #address-cells = <1>;
161 #size-cells = <1>;
162 reg = <0x02000000 0x40000>;
163 ranges;
164
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100165 spdif: spdif@02004000 {
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300166 compatible = "fsl,imx35-spdif";
Shawn Guo7d740f82011-09-06 13:53:26 +0800167 reg = <0x02004000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700168 interrupts = <0 52 IRQ_TYPE_LEVEL_HIGH>;
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300169 dmas = <&sdma 14 18 0>,
170 <&sdma 15 18 0>;
171 dma-names = "rx", "tx";
172 clocks = <&clks 197>, <&clks 3>,
173 <&clks 197>, <&clks 107>,
174 <&clks 0>, <&clks 118>,
Shawn Guo793b4b12013-11-16 22:38:29 +0800175 <&clks 0>, <&clks 139>,
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300176 <&clks 0>;
177 clock-names = "core", "rxtx0",
178 "rxtx1", "rxtx2",
179 "rxtx3", "rxtx4",
180 "rxtx5", "rxtx6",
181 "rxtx7";
182 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800183 };
184
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100185 ecspi1: ecspi@02008000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800186 #address-cells = <1>;
187 #size-cells = <0>;
188 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
189 reg = <0x02008000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700190 interrupts = <0 31 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800191 clocks = <&clks 112>, <&clks 112>;
192 clock-names = "ipg", "per";
Frank Lib3810c32014-01-04 06:53:52 +0800193 dmas = <&sdma 3 7 1>, <&sdma 4 7 2>;
194 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800195 status = "disabled";
196 };
197
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100198 ecspi2: ecspi@0200c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800199 #address-cells = <1>;
200 #size-cells = <0>;
201 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
202 reg = <0x0200c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700203 interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800204 clocks = <&clks 113>, <&clks 113>;
205 clock-names = "ipg", "per";
Frank Lib3810c32014-01-04 06:53:52 +0800206 dmas = <&sdma 5 7 1>, <&sdma 6 7 2>;
207 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800208 status = "disabled";
209 };
210
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100211 ecspi3: ecspi@02010000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800212 #address-cells = <1>;
213 #size-cells = <0>;
214 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
215 reg = <0x02010000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700216 interrupts = <0 33 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800217 clocks = <&clks 114>, <&clks 114>;
218 clock-names = "ipg", "per";
Frank Lib3810c32014-01-04 06:53:52 +0800219 dmas = <&sdma 7 7 1>, <&sdma 8 7 2>;
220 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800221 status = "disabled";
222 };
223
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100224 ecspi4: ecspi@02014000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800225 #address-cells = <1>;
226 #size-cells = <0>;
227 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
228 reg = <0x02014000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700229 interrupts = <0 34 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800230 clocks = <&clks 115>, <&clks 115>;
231 clock-names = "ipg", "per";
Frank Lib3810c32014-01-04 06:53:52 +0800232 dmas = <&sdma 9 7 1>, <&sdma 10 7 2>;
233 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800234 status = "disabled";
235 };
236
Shawn Guo0c456cf2012-04-02 14:39:26 +0800237 uart1: serial@02020000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800238 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
239 reg = <0x02020000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700240 interrupts = <0 26 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800241 clocks = <&clks 160>, <&clks 161>;
242 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800243 dmas = <&sdma 25 4 0>, <&sdma 26 4 0>;
244 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800245 status = "disabled";
246 };
247
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100248 esai: esai@02024000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800249 reg = <0x02024000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700250 interrupts = <0 51 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800251 };
252
Richard Zhaob1a5da82012-05-02 10:29:10 +0800253 ssi1: ssi@02028000 {
254 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800255 reg = <0x02028000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700256 interrupts = <0 46 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800257 clocks = <&clks 178>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800258 dmas = <&sdma 37 1 0>,
259 <&sdma 38 1 0>;
260 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800261 fsl,fifo-depth = <15>;
262 fsl,ssi-dma-events = <38 37>;
263 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800264 };
265
Richard Zhaob1a5da82012-05-02 10:29:10 +0800266 ssi2: ssi@0202c000 {
267 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800268 reg = <0x0202c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700269 interrupts = <0 47 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800270 clocks = <&clks 179>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800271 dmas = <&sdma 41 1 0>,
272 <&sdma 42 1 0>;
273 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800274 fsl,fifo-depth = <15>;
275 fsl,ssi-dma-events = <42 41>;
276 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800277 };
278
Richard Zhaob1a5da82012-05-02 10:29:10 +0800279 ssi3: ssi@02030000 {
280 compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800281 reg = <0x02030000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700282 interrupts = <0 48 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800283 clocks = <&clks 180>;
Shawn Guo5da826a2013-07-17 13:50:54 +0800284 dmas = <&sdma 45 1 0>,
285 <&sdma 46 1 0>;
286 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800287 fsl,fifo-depth = <15>;
288 fsl,ssi-dma-events = <46 45>;
289 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800290 };
291
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100292 asrc: asrc@02034000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800293 reg = <0x02034000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700294 interrupts = <0 50 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800295 };
296
297 spba@0203c000 {
298 reg = <0x0203c000 0x4000>;
299 };
300 };
301
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100302 vpu: vpu@02040000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800303 reg = <0x02040000 0x3c000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700304 interrupts = <0 3 IRQ_TYPE_LEVEL_HIGH>,
305 <0 12 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800306 };
307
308 aipstz@0207c000 { /* AIPSTZ1 */
309 reg = <0x0207c000 0x4000>;
310 };
311
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100312 pwm1: pwm@02080000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100313 #pwm-cells = <2>;
314 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800315 reg = <0x02080000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700316 interrupts = <0 83 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100317 clocks = <&clks 62>, <&clks 145>;
318 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800319 };
320
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100321 pwm2: pwm@02084000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100322 #pwm-cells = <2>;
323 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800324 reg = <0x02084000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700325 interrupts = <0 84 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100326 clocks = <&clks 62>, <&clks 146>;
327 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800328 };
329
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100330 pwm3: pwm@02088000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100331 #pwm-cells = <2>;
332 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800333 reg = <0x02088000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700334 interrupts = <0 85 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100335 clocks = <&clks 62>, <&clks 147>;
336 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800337 };
338
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100339 pwm4: pwm@0208c000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100340 #pwm-cells = <2>;
341 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800342 reg = <0x0208c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700343 interrupts = <0 86 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100344 clocks = <&clks 62>, <&clks 148>;
345 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800346 };
347
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100348 can1: flexcan@02090000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200349 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800350 reg = <0x02090000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700351 interrupts = <0 110 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200352 clocks = <&clks 108>, <&clks 109>;
353 clock-names = "ipg", "per";
Tim Harveya1135332013-10-22 21:51:27 -0700354 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800355 };
356
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100357 can2: flexcan@02094000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200358 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800359 reg = <0x02094000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700360 interrupts = <0 111 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200361 clocks = <&clks 110>, <&clks 111>;
362 clock-names = "ipg", "per";
Tim Harveya1135332013-10-22 21:51:27 -0700363 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800364 };
365
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100366 gpt: gpt@02098000 {
Sascha Hauer97b108f2013-06-25 15:51:47 +0200367 compatible = "fsl,imx6q-gpt", "fsl,imx31-gpt";
Shawn Guo7d740f82011-09-06 13:53:26 +0800368 reg = <0x02098000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700369 interrupts = <0 55 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer4efccad2013-03-14 13:09:01 +0100370 clocks = <&clks 119>, <&clks 120>;
371 clock-names = "ipg", "per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800372 };
373
Richard Zhao4d191862011-12-14 09:26:44 +0800374 gpio1: gpio@0209c000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200375 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800376 reg = <0x0209c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700377 interrupts = <0 66 IRQ_TYPE_LEVEL_HIGH>,
378 <0 67 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800379 gpio-controller;
380 #gpio-cells = <2>;
381 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800382 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800383 };
384
Richard Zhao4d191862011-12-14 09:26:44 +0800385 gpio2: gpio@020a0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200386 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800387 reg = <0x020a0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700388 interrupts = <0 68 IRQ_TYPE_LEVEL_HIGH>,
389 <0 69 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800390 gpio-controller;
391 #gpio-cells = <2>;
392 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800393 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800394 };
395
Richard Zhao4d191862011-12-14 09:26:44 +0800396 gpio3: gpio@020a4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200397 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800398 reg = <0x020a4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700399 interrupts = <0 70 IRQ_TYPE_LEVEL_HIGH>,
400 <0 71 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800401 gpio-controller;
402 #gpio-cells = <2>;
403 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800404 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800405 };
406
Richard Zhao4d191862011-12-14 09:26:44 +0800407 gpio4: gpio@020a8000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200408 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800409 reg = <0x020a8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700410 interrupts = <0 72 IRQ_TYPE_LEVEL_HIGH>,
411 <0 73 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800412 gpio-controller;
413 #gpio-cells = <2>;
414 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800415 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800416 };
417
Richard Zhao4d191862011-12-14 09:26:44 +0800418 gpio5: gpio@020ac000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200419 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800420 reg = <0x020ac000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700421 interrupts = <0 74 IRQ_TYPE_LEVEL_HIGH>,
422 <0 75 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800423 gpio-controller;
424 #gpio-cells = <2>;
425 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800426 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800427 };
428
Richard Zhao4d191862011-12-14 09:26:44 +0800429 gpio6: gpio@020b0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200430 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800431 reg = <0x020b0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700432 interrupts = <0 76 IRQ_TYPE_LEVEL_HIGH>,
433 <0 77 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800434 gpio-controller;
435 #gpio-cells = <2>;
436 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800437 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800438 };
439
Richard Zhao4d191862011-12-14 09:26:44 +0800440 gpio7: gpio@020b4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200441 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800442 reg = <0x020b4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700443 interrupts = <0 78 IRQ_TYPE_LEVEL_HIGH>,
444 <0 79 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800445 gpio-controller;
446 #gpio-cells = <2>;
447 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800448 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800449 };
450
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100451 kpp: kpp@020b8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800452 reg = <0x020b8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700453 interrupts = <0 82 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800454 };
455
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100456 wdog1: wdog@020bc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800457 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
458 reg = <0x020bc000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700459 interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800460 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800461 };
462
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100463 wdog2: wdog@020c0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800464 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
465 reg = <0x020c0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700466 interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800467 clocks = <&clks 0>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800468 status = "disabled";
469 };
470
Shawn Guo0e87e042012-08-22 21:36:28 +0800471 clks: ccm@020c4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800472 compatible = "fsl,imx6q-ccm";
473 reg = <0x020c4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700474 interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>,
475 <0 88 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800476 #clock-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800477 };
478
Dong Aishengbaa64152012-09-05 10:57:15 +0800479 anatop: anatop@020c8000 {
480 compatible = "fsl,imx6q-anatop", "syscon", "simple-bus";
Shawn Guo7d740f82011-09-06 13:53:26 +0800481 reg = <0x020c8000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700482 interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>,
483 <0 54 IRQ_TYPE_LEVEL_HIGH>,
484 <0 127 IRQ_TYPE_LEVEL_HIGH>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800485
486 regulator-1p1@110 {
487 compatible = "fsl,anatop-regulator";
488 regulator-name = "vdd1p1";
489 regulator-min-microvolt = <800000>;
490 regulator-max-microvolt = <1375000>;
491 regulator-always-on;
492 anatop-reg-offset = <0x110>;
493 anatop-vol-bit-shift = <8>;
494 anatop-vol-bit-width = <5>;
495 anatop-min-bit-val = <4>;
496 anatop-min-voltage = <800000>;
497 anatop-max-voltage = <1375000>;
498 };
499
500 regulator-3p0@120 {
501 compatible = "fsl,anatop-regulator";
502 regulator-name = "vdd3p0";
503 regulator-min-microvolt = <2800000>;
504 regulator-max-microvolt = <3150000>;
505 regulator-always-on;
506 anatop-reg-offset = <0x120>;
507 anatop-vol-bit-shift = <8>;
508 anatop-vol-bit-width = <5>;
509 anatop-min-bit-val = <0>;
510 anatop-min-voltage = <2625000>;
511 anatop-max-voltage = <3400000>;
512 };
513
514 regulator-2p5@130 {
515 compatible = "fsl,anatop-regulator";
516 regulator-name = "vdd2p5";
517 regulator-min-microvolt = <2000000>;
518 regulator-max-microvolt = <2750000>;
519 regulator-always-on;
520 anatop-reg-offset = <0x130>;
521 anatop-vol-bit-shift = <8>;
522 anatop-vol-bit-width = <5>;
523 anatop-min-bit-val = <0>;
524 anatop-min-voltage = <2000000>;
525 anatop-max-voltage = <2750000>;
526 };
527
Shawn Guo96574a62013-01-08 14:25:14 +0800528 reg_arm: regulator-vddcore@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800529 compatible = "fsl,anatop-regulator";
Fabio Estevam118c98a2013-12-19 21:08:52 -0200530 regulator-name = "vddarm";
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800531 regulator-min-microvolt = <725000>;
532 regulator-max-microvolt = <1450000>;
533 regulator-always-on;
534 anatop-reg-offset = <0x140>;
535 anatop-vol-bit-shift = <0>;
536 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500537 anatop-delay-reg-offset = <0x170>;
538 anatop-delay-bit-shift = <24>;
539 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800540 anatop-min-bit-val = <1>;
541 anatop-min-voltage = <725000>;
542 anatop-max-voltage = <1450000>;
543 };
544
Shawn Guo96574a62013-01-08 14:25:14 +0800545 reg_pu: regulator-vddpu@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800546 compatible = "fsl,anatop-regulator";
547 regulator-name = "vddpu";
548 regulator-min-microvolt = <725000>;
549 regulator-max-microvolt = <1450000>;
550 regulator-always-on;
551 anatop-reg-offset = <0x140>;
552 anatop-vol-bit-shift = <9>;
553 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500554 anatop-delay-reg-offset = <0x170>;
555 anatop-delay-bit-shift = <26>;
556 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800557 anatop-min-bit-val = <1>;
558 anatop-min-voltage = <725000>;
559 anatop-max-voltage = <1450000>;
560 };
561
Shawn Guo96574a62013-01-08 14:25:14 +0800562 reg_soc: regulator-vddsoc@140 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800563 compatible = "fsl,anatop-regulator";
564 regulator-name = "vddsoc";
565 regulator-min-microvolt = <725000>;
566 regulator-max-microvolt = <1450000>;
567 regulator-always-on;
568 anatop-reg-offset = <0x140>;
569 anatop-vol-bit-shift = <18>;
570 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500571 anatop-delay-reg-offset = <0x170>;
572 anatop-delay-bit-shift = <28>;
573 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800574 anatop-min-bit-val = <1>;
575 anatop-min-voltage = <725000>;
576 anatop-max-voltage = <1450000>;
577 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800578 };
579
Shawn Guo3fe63732013-07-16 21:16:36 +0800580 tempmon: tempmon {
581 compatible = "fsl,imx6q-tempmon";
Troy Kisky275c08b2013-11-14 14:02:13 -0700582 interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo3fe63732013-07-16 21:16:36 +0800583 fsl,tempmon = <&anatop>;
584 fsl,tempmon-data = <&ocotp>;
Anson Huangf430d192013-12-19 13:17:23 -0500585 clocks = <&clks 172>;
Shawn Guo3fe63732013-07-16 21:16:36 +0800586 };
587
Richard Zhao74bd88f2012-07-12 14:21:41 +0800588 usbphy1: usbphy@020c9000 {
589 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800590 reg = <0x020c9000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700591 interrupts = <0 44 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800592 clocks = <&clks 182>;
Peter Chen76a38852013-12-20 15:52:01 +0800593 fsl,anatop = <&anatop>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800594 };
595
Richard Zhao74bd88f2012-07-12 14:21:41 +0800596 usbphy2: usbphy@020ca000 {
597 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800598 reg = <0x020ca000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700599 interrupts = <0 45 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800600 clocks = <&clks 183>;
Peter Chen76a38852013-12-20 15:52:01 +0800601 fsl,anatop = <&anatop>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800602 };
603
604 snvs@020cc000 {
Shawn Guoc9250382012-07-02 20:13:03 +0800605 compatible = "fsl,sec-v4.0-mon", "simple-bus";
606 #address-cells = <1>;
607 #size-cells = <1>;
608 ranges = <0 0x020cc000 0x4000>;
609
610 snvs-rtc-lp@34 {
611 compatible = "fsl,sec-v4.0-mon-rtc-lp";
612 reg = <0x34 0x58>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700613 interrupts = <0 19 IRQ_TYPE_LEVEL_HIGH>,
614 <0 20 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoc9250382012-07-02 20:13:03 +0800615 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800616 };
617
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100618 epit1: epit@020d0000 { /* EPIT1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800619 reg = <0x020d0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700620 interrupts = <0 56 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800621 };
622
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100623 epit2: epit@020d4000 { /* EPIT2 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800624 reg = <0x020d4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700625 interrupts = <0 57 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800626 };
627
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100628 src: src@020d8000 {
Philipp Zabelbd3d9242013-03-28 17:35:22 +0100629 compatible = "fsl,imx6q-src", "fsl,imx51-src";
Shawn Guo7d740f82011-09-06 13:53:26 +0800630 reg = <0x020d8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700631 interrupts = <0 91 IRQ_TYPE_LEVEL_HIGH>,
632 <0 96 IRQ_TYPE_LEVEL_HIGH>;
Philipp Zabel09ebf362013-03-28 17:35:20 +0100633 #reset-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800634 };
635
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100636 gpc: gpc@020dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800637 compatible = "fsl,imx6q-gpc";
638 reg = <0x020dc000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700639 interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>,
640 <0 90 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800641 };
642
Dong Aishengdf37e0c2012-09-05 10:57:14 +0800643 gpr: iomuxc-gpr@020e0000 {
644 compatible = "fsl,imx6q-iomuxc-gpr", "syscon";
645 reg = <0x020e0000 0x38>;
646 };
647
Shawn Guoc56009b2f2013-07-11 13:58:36 +0800648 iomuxc: iomuxc@020e0000 {
649 compatible = "fsl,imx6dl-iomuxc", "fsl,imx6q-iomuxc";
650 reg = <0x020e0000 0x4000>;
Shawn Guoc56009b2f2013-07-11 13:58:36 +0800651 };
652
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100653 ldb: ldb@020e0008 {
654 #address-cells = <1>;
655 #size-cells = <0>;
656 compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb";
657 gpr = <&gpr>;
658 status = "disabled";
659
660 lvds-channel@0 {
661 reg = <0>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100662 status = "disabled";
663 };
664
665 lvds-channel@1 {
666 reg = <1>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100667 status = "disabled";
668 };
669 };
670
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100671 dcic1: dcic@020e4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800672 reg = <0x020e4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700673 interrupts = <0 124 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800674 };
675
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100676 dcic2: dcic@020e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800677 reg = <0x020e8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700678 interrupts = <0 125 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800679 };
680
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100681 sdma: sdma@020ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800682 compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma";
683 reg = <0x020ec000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700684 interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800685 clocks = <&clks 155>, <&clks 155>;
686 clock-names = "ipg", "ahb";
Huang Shijiefb72bb22013-07-02 10:15:29 +0800687 #dma-cells = <3>;
Fabio Estevamd6b9c592013-01-17 12:13:25 -0200688 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin";
Shawn Guo7d740f82011-09-06 13:53:26 +0800689 };
690 };
691
692 aips-bus@02100000 { /* AIPS2 */
693 compatible = "fsl,aips-bus", "simple-bus";
694 #address-cells = <1>;
695 #size-cells = <1>;
696 reg = <0x02100000 0x100000>;
697 ranges;
698
699 caam@02100000 {
700 reg = <0x02100000 0x40000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700701 interrupts = <0 105 IRQ_TYPE_LEVEL_HIGH>,
702 <0 106 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800703 };
704
705 aipstz@0217c000 { /* AIPSTZ2 */
706 reg = <0x0217c000 0x4000>;
707 };
708
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100709 usbotg: usb@02184000 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800710 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
711 reg = <0x02184000 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700712 interrupts = <0 43 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800713 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800714 fsl,usbphy = <&usbphy1>;
Richard Zhao28342c62012-09-14 14:42:45 +0800715 fsl,usbmisc = <&usbmisc 0>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800716 status = "disabled";
717 };
718
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100719 usbh1: usb@02184200 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800720 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
721 reg = <0x02184200 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700722 interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800723 clocks = <&clks 162>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800724 fsl,usbphy = <&usbphy2>;
Richard Zhao28342c62012-09-14 14:42:45 +0800725 fsl,usbmisc = <&usbmisc 1>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800726 status = "disabled";
727 };
728
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100729 usbh2: usb@02184400 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800730 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
731 reg = <0x02184400 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700732 interrupts = <0 41 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800733 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800734 fsl,usbmisc = <&usbmisc 2>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800735 status = "disabled";
736 };
737
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100738 usbh3: usb@02184600 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800739 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
740 reg = <0x02184600 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700741 interrupts = <0 42 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800742 clocks = <&clks 162>;
Richard Zhao28342c62012-09-14 14:42:45 +0800743 fsl,usbmisc = <&usbmisc 3>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800744 status = "disabled";
745 };
746
Shawn Guo60984bd2013-04-28 09:59:54 +0800747 usbmisc: usbmisc@02184800 {
Richard Zhao28342c62012-09-14 14:42:45 +0800748 #index-cells = <1>;
749 compatible = "fsl,imx6q-usbmisc";
750 reg = <0x02184800 0x200>;
751 clocks = <&clks 162>;
752 };
753
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100754 fec: ethernet@02188000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800755 compatible = "fsl,imx6q-fec";
756 reg = <0x02188000 0x4000>;
Troy Kisky454cf8f2013-12-20 11:47:10 -0700757 interrupts-extended =
758 <&intc 0 118 IRQ_TYPE_LEVEL_HIGH>,
759 <&intc 0 119 IRQ_TYPE_LEVEL_HIGH>;
Frank Li8dd5c662013-02-05 14:21:06 +0800760 clocks = <&clks 117>, <&clks 117>, <&clks 190>;
Frank Li76298382012-10-30 18:24:57 +0000761 clock-names = "ipg", "ahb", "ptp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800762 status = "disabled";
763 };
764
765 mlb@0218c000 {
766 reg = <0x0218c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700767 interrupts = <0 53 IRQ_TYPE_LEVEL_HIGH>,
768 <0 117 IRQ_TYPE_LEVEL_HIGH>,
769 <0 126 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800770 };
771
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100772 usdhc1: usdhc@02190000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800773 compatible = "fsl,imx6q-usdhc";
774 reg = <0x02190000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700775 interrupts = <0 22 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800776 clocks = <&clks 163>, <&clks 163>, <&clks 163>;
777 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200778 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800779 status = "disabled";
780 };
781
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100782 usdhc2: usdhc@02194000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800783 compatible = "fsl,imx6q-usdhc";
784 reg = <0x02194000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700785 interrupts = <0 23 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800786 clocks = <&clks 164>, <&clks 164>, <&clks 164>;
787 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200788 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800789 status = "disabled";
790 };
791
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100792 usdhc3: usdhc@02198000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800793 compatible = "fsl,imx6q-usdhc";
794 reg = <0x02198000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700795 interrupts = <0 24 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800796 clocks = <&clks 165>, <&clks 165>, <&clks 165>;
797 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200798 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800799 status = "disabled";
800 };
801
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100802 usdhc4: usdhc@0219c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800803 compatible = "fsl,imx6q-usdhc";
804 reg = <0x0219c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700805 interrupts = <0 25 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800806 clocks = <&clks 166>, <&clks 166>, <&clks 166>;
807 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +0200808 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800809 status = "disabled";
810 };
811
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100812 i2c1: i2c@021a0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800813 #address-cells = <1>;
814 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800815 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800816 reg = <0x021a0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700817 interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800818 clocks = <&clks 125>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800819 status = "disabled";
820 };
821
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100822 i2c2: i2c@021a4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800823 #address-cells = <1>;
824 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800825 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800826 reg = <0x021a4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700827 interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800828 clocks = <&clks 126>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800829 status = "disabled";
830 };
831
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100832 i2c3: i2c@021a8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800833 #address-cells = <1>;
834 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +0800835 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +0800836 reg = <0x021a8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700837 interrupts = <0 38 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800838 clocks = <&clks 127>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800839 status = "disabled";
840 };
841
842 romcp@021ac000 {
843 reg = <0x021ac000 0x4000>;
844 };
845
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100846 mmdc0: mmdc@021b0000 { /* MMDC0 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800847 compatible = "fsl,imx6q-mmdc";
848 reg = <0x021b0000 0x4000>;
849 };
850
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100851 mmdc1: mmdc@021b4000 { /* MMDC1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800852 reg = <0x021b4000 0x4000>;
853 };
854
Huang Shijie05e3f8e2013-05-28 14:20:09 +0800855 weim: weim@021b8000 {
856 compatible = "fsl,imx6q-weim";
Shawn Guo7d740f82011-09-06 13:53:26 +0800857 reg = <0x021b8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700858 interrupts = <0 14 IRQ_TYPE_LEVEL_HIGH>;
Huang Shijie05e3f8e2013-05-28 14:20:09 +0800859 clocks = <&clks 196>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800860 };
861
Shawn Guo3fe63732013-07-16 21:16:36 +0800862 ocotp: ocotp@021bc000 {
863 compatible = "fsl,imx6q-ocotp", "syscon";
Shawn Guo7d740f82011-09-06 13:53:26 +0800864 reg = <0x021bc000 0x4000>;
865 };
866
Shawn Guo7d740f82011-09-06 13:53:26 +0800867 tzasc@021d0000 { /* TZASC1 */
868 reg = <0x021d0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700869 interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800870 };
871
872 tzasc@021d4000 { /* TZASC2 */
873 reg = <0x021d4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700874 interrupts = <0 109 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800875 };
876
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100877 audmux: audmux@021d8000 {
Richard Zhaof965cd52012-05-02 10:32:26 +0800878 compatible = "fsl,imx6q-audmux", "fsl,imx31-audmux";
Shawn Guo7d740f82011-09-06 13:53:26 +0800879 reg = <0x021d8000 0x4000>;
Richard Zhaof965cd52012-05-02 10:32:26 +0800880 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800881 };
882
Troy Kisky5e0c7cd2013-11-14 14:02:08 -0700883 mipi_csi: mipi@021dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800884 reg = <0x021dc000 0x4000>;
885 };
886
887 mipi@021e0000 { /* MIPI-DSI */
888 reg = <0x021e0000 0x4000>;
889 };
890
891 vdoa@021e4000 {
892 reg = <0x021e4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700893 interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800894 };
895
Shawn Guo0c456cf2012-04-02 14:39:26 +0800896 uart2: serial@021e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800897 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
898 reg = <0x021e8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700899 interrupts = <0 27 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800900 clocks = <&clks 160>, <&clks 161>;
901 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800902 dmas = <&sdma 27 4 0>, <&sdma 28 4 0>;
903 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800904 status = "disabled";
905 };
906
Shawn Guo0c456cf2012-04-02 14:39:26 +0800907 uart3: serial@021ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800908 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
909 reg = <0x021ec000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700910 interrupts = <0 28 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800911 clocks = <&clks 160>, <&clks 161>;
912 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800913 dmas = <&sdma 29 4 0>, <&sdma 30 4 0>;
914 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800915 status = "disabled";
916 };
917
Shawn Guo0c456cf2012-04-02 14:39:26 +0800918 uart4: serial@021f0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800919 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
920 reg = <0x021f0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700921 interrupts = <0 29 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800922 clocks = <&clks 160>, <&clks 161>;
923 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800924 dmas = <&sdma 31 4 0>, <&sdma 32 4 0>;
925 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800926 status = "disabled";
927 };
928
Shawn Guo0c456cf2012-04-02 14:39:26 +0800929 uart5: serial@021f4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800930 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
931 reg = <0x021f4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700932 interrupts = <0 30 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800933 clocks = <&clks 160>, <&clks 161>;
934 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800935 dmas = <&sdma 33 4 0>, <&sdma 34 4 0>;
936 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800937 status = "disabled";
938 };
939 };
Sascha Hauer91660d72012-11-12 15:52:21 +0100940
941 ipu1: ipu@02400000 {
942 #crtc-cells = <1>;
943 compatible = "fsl,imx6q-ipu";
944 reg = <0x02400000 0x400000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700945 interrupts = <0 6 IRQ_TYPE_LEVEL_HIGH>,
946 <0 5 IRQ_TYPE_LEVEL_HIGH>;
Sascha Hauer91660d72012-11-12 15:52:21 +0100947 clocks = <&clks 130>, <&clks 131>, <&clks 132>;
948 clock-names = "bus", "di0", "di1";
Philipp Zabel09ebf362013-03-28 17:35:20 +0100949 resets = <&src 2>;
Sascha Hauer91660d72012-11-12 15:52:21 +0100950 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800951 };
952};