blob: b620ac884cfd0ac53808129443e13fcc45a423ab [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 Guo8888f652014-06-15 20:36:50 +080013#include <dt-bindings/clock/imx6qdl-clock.h>
Lucas Stach07134a32014-03-05 14:25:50 +010014#include <dt-bindings/interrupt-controller/arm-gic.h>
15
Shawn Guo36dffd82013-04-07 10:49:34 +080016#include "skeleton.dtsi"
Shawn Guo7d740f82011-09-06 13:53:26 +080017
18/ {
19 aliases {
Marek Vasut22970072014-02-28 12:58:41 +010020 ethernet0 = &fec;
Lothar Waßmann5f8fbc22013-12-12 14:27:57 +010021 can0 = &can1;
22 can1 = &can2;
Shawn Guo5230f8f2012-08-05 14:01:28 +080023 gpio0 = &gpio1;
24 gpio1 = &gpio2;
25 gpio2 = &gpio3;
26 gpio3 = &gpio4;
27 gpio4 = &gpio5;
28 gpio5 = &gpio6;
29 gpio6 = &gpio7;
Sascha Hauer80fa0582013-06-25 15:51:57 +020030 i2c0 = &i2c1;
31 i2c1 = &i2c2;
32 i2c2 = &i2c3;
Philipp Zabel41beef32015-12-02 14:42:22 +010033 ipu0 = &ipu1;
Sascha Hauerfb06d652014-01-16 13:44:20 +010034 mmc0 = &usdhc1;
35 mmc1 = &usdhc2;
36 mmc2 = &usdhc3;
37 mmc3 = &usdhc4;
Sascha Hauer80fa0582013-06-25 15:51:57 +020038 serial0 = &uart1;
39 serial1 = &uart2;
40 serial2 = &uart3;
41 serial3 = &uart4;
42 serial4 = &uart5;
43 spi0 = &ecspi1;
44 spi1 = &ecspi2;
45 spi2 = &ecspi3;
46 spi3 = &ecspi4;
Peter Chen8189c512013-12-20 15:52:05 +080047 usbphy0 = &usbphy1;
48 usbphy1 = &usbphy2;
Shawn Guo7d740f82011-09-06 13:53:26 +080049 };
50
Shawn Guo7d740f82011-09-06 13:53:26 +080051 clocks {
52 #address-cells = <1>;
53 #size-cells = <0>;
54
55 ckil {
56 compatible = "fsl,imx-ckil", "fixed-clock";
Shawn Guo4b2b4042014-04-11 09:56:46 +080057 #clock-cells = <0>;
Shawn Guo7d740f82011-09-06 13:53:26 +080058 clock-frequency = <32768>;
59 };
60
61 ckih1 {
62 compatible = "fsl,imx-ckih1", "fixed-clock";
Shawn Guo4b2b4042014-04-11 09:56:46 +080063 #clock-cells = <0>;
Shawn Guo7d740f82011-09-06 13:53:26 +080064 clock-frequency = <0>;
65 };
66
67 osc {
68 compatible = "fsl,imx-osc", "fixed-clock";
Shawn Guo4b2b4042014-04-11 09:56:46 +080069 #clock-cells = <0>;
Shawn Guo7d740f82011-09-06 13:53:26 +080070 clock-frequency = <24000000>;
71 };
72 };
73
74 soc {
75 #address-cells = <1>;
76 #size-cells = <1>;
77 compatible = "simple-bus";
Marc Zyngierb923ff62015-02-23 17:45:18 +000078 interrupt-parent = <&gpc>;
Shawn Guo7d740f82011-09-06 13:53:26 +080079 ranges;
80
Shawn Guof30fb032013-02-25 21:56:56 +080081 dma_apbh: dma-apbh@00110000 {
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040082 compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh";
83 reg = <0x00110000 0x2000>;
Troy Kisky275c08b2013-11-14 14:02:13 -070084 interrupts = <0 13 IRQ_TYPE_LEVEL_HIGH>,
85 <0 13 IRQ_TYPE_LEVEL_HIGH>,
86 <0 13 IRQ_TYPE_LEVEL_HIGH>,
87 <0 13 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guof30fb032013-02-25 21:56:56 +080088 interrupt-names = "gpmi0", "gpmi1", "gpmi2", "gpmi3";
89 #dma-cells = <1>;
90 dma-channels = <4>;
Shawn Guo8888f652014-06-15 20:36:50 +080091 clocks = <&clks IMX6QDL_CLK_APBH_DMA>;
Huang Shijiee5d0f9f2012-06-06 21:22:57 -040092 };
93
Shawn Guobe4ccfc2012-12-31 11:32:48 +080094 gpmi: gpmi-nand@00112000 {
Shawn Guo0e87e042012-08-22 21:36:28 +080095 compatible = "fsl,imx6q-gpmi-nand";
96 #address-cells = <1>;
97 #size-cells = <1>;
98 reg = <0x00112000 0x2000>, <0x00114000 0x2000>;
99 reg-names = "gpmi-nand", "bch";
Troy Kisky275c08b2013-11-14 14:02:13 -0700100 interrupts = <0 15 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoc7aa12a2013-07-16 17:13:00 +0800101 interrupt-names = "bch";
Shawn Guo8888f652014-06-15 20:36:50 +0800102 clocks = <&clks IMX6QDL_CLK_GPMI_IO>,
103 <&clks IMX6QDL_CLK_GPMI_APB>,
104 <&clks IMX6QDL_CLK_GPMI_BCH>,
105 <&clks IMX6QDL_CLK_GPMI_BCH_APB>,
106 <&clks IMX6QDL_CLK_PER1_BCH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800107 clock-names = "gpmi_io", "gpmi_apb", "gpmi_bch",
108 "gpmi_bch_apb", "per1_bch";
Shawn Guof30fb032013-02-25 21:56:56 +0800109 dmas = <&dma_apbh 0>;
110 dma-names = "rx-tx";
Shawn Guo0e87e042012-08-22 21:36:28 +0800111 status = "disabled";
Huang Shijiecf922fa2012-07-01 23:38:46 -0400112 };
113
Lucas Stachac4af822015-04-01 11:26:54 +0200114 hdmi: hdmi@0120000 {
115 #address-cells = <1>;
116 #size-cells = <0>;
117 reg = <0x00120000 0x9000>;
118 interrupts = <0 115 0x04>;
119 gpr = <&gpr>;
120 clocks = <&clks IMX6QDL_CLK_HDMI_IAHB>,
121 <&clks IMX6QDL_CLK_HDMI_ISFR>;
122 clock-names = "iahb", "isfr";
123 status = "disabled";
124
125 port@0 {
126 reg = <0>;
127
128 hdmi_mux_0: endpoint {
129 remote-endpoint = <&ipu1_di0_hdmi>;
130 };
131 };
132
133 port@1 {
134 reg = <1>;
135
136 hdmi_mux_1: endpoint {
137 remote-endpoint = <&ipu1_di1_hdmi>;
138 };
139 };
140 };
141
Lucas Stach419e2022015-12-15 17:30:09 +0100142 gpu_3d: gpu@00130000 {
143 compatible = "vivante,gc";
144 reg = <0x00130000 0x4000>;
145 interrupts = <0 9 IRQ_TYPE_LEVEL_HIGH>;
146 clocks = <&clks IMX6QDL_CLK_GPU3D_AXI>,
147 <&clks IMX6QDL_CLK_GPU3D_CORE>,
148 <&clks IMX6QDL_CLK_GPU3D_SHADER>;
149 clock-names = "bus", "core", "shader";
150 power-domains = <&gpc 1>;
151 };
152
153 gpu_2d: gpu@00134000 {
154 compatible = "vivante,gc";
155 reg = <0x00134000 0x4000>;
156 interrupts = <0 10 IRQ_TYPE_LEVEL_HIGH>;
157 clocks = <&clks IMX6QDL_CLK_GPU2D_AXI>,
158 <&clks IMX6QDL_CLK_GPU2D_CORE>;
159 clock-names = "bus", "core";
160 power-domains = <&gpc 1>;
161 };
162
Shawn Guo7d740f82011-09-06 13:53:26 +0800163 timer@00a00600 {
Marc Zyngier58458e02012-01-10 19:44:19 +0000164 compatible = "arm,cortex-a9-twd-timer";
165 reg = <0x00a00600 0x20>;
166 interrupts = <1 13 0xf01>;
Marc Zyngierb923ff62015-02-23 17:45:18 +0000167 interrupt-parent = <&intc>;
Shawn Guo8888f652014-06-15 20:36:50 +0800168 clocks = <&clks IMX6QDL_CLK_TWD>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800169 };
170
Lucas Stach67157882015-12-02 14:42:55 +0100171 intc: interrupt-controller@00a01000 {
172 compatible = "arm,cortex-a9-gic";
173 #interrupt-cells = <3>;
174 interrupt-controller;
175 reg = <0x00a01000 0x1000>,
176 <0x00a00100 0x100>;
177 interrupt-parent = <&intc>;
178 };
179
Shawn Guo7d740f82011-09-06 13:53:26 +0800180 L2: l2-cache@00a02000 {
181 compatible = "arm,pl310-cache";
182 reg = <0x00a02000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700183 interrupts = <0 92 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800184 cache-unified;
185 cache-level = <2>;
Dirk Behme5a5ca562013-04-26 10:13:55 +0200186 arm,tag-latency = <4 2 3>;
187 arm,data-latency = <4 2 3>;
Peter Chen74332d72016-06-07 17:39:25 +0800188 arm,shared-override;
Shawn Guo7d740f82011-09-06 13:53:26 +0800189 };
190
Sean Cross3a572912013-09-26 10:51:09 +0800191 pcie: pcie@0x01000000 {
192 compatible = "fsl,imx6q-pcie", "snps,dw-pcie";
Lucas Stachfcd17302014-08-07 19:39:41 +0200193 reg = <0x01ffc000 0x04000>,
194 <0x01f00000 0x80000>;
195 reg-names = "dbi", "config";
Sean Cross3a572912013-09-26 10:51:09 +0800196 #address-cells = <3>;
197 #size-cells = <2>;
198 device_type = "pci";
Lucas Stachd9cf0a12015-11-30 18:00:10 +0100199 ranges = <0x81000000 0 0 0x01f80000 0 0x00010000 /* downstream I/O */
Sean Cross3a572912013-09-26 10:51:09 +0800200 0x82000000 0 0x01000000 0x01000000 0 0x00f00000>; /* non-prefetchable memory */
201 num-lanes = <1>;
Lucas Stach92a7eb72014-04-30 13:58:15 +0800202 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
203 interrupt-names = "msi";
Lucas Stach07134a32014-03-05 14:25:50 +0100204 #interrupt-cells = <1>;
205 interrupt-map-mask = <0 0 0 0x7>;
Lucas Stach1a9fa192015-08-05 18:54:37 +0200206 interrupt-map = <0 0 0 1 &gpc GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>,
207 <0 0 0 2 &gpc GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>,
208 <0 0 0 3 &gpc GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>,
209 <0 0 0 4 &gpc GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800210 clocks = <&clks IMX6QDL_CLK_PCIE_AXI>,
211 <&clks IMX6QDL_CLK_LVDS1_GATE>,
212 <&clks IMX6QDL_CLK_PCIE_REF_125M>;
Lucas Stach92a7eb72014-04-30 13:58:15 +0800213 clock-names = "pcie", "pcie_bus", "pcie_phy";
Sean Cross3a572912013-09-26 10:51:09 +0800214 status = "disabled";
215 };
216
Dirk Behme218abe62013-02-15 15:10:01 +0100217 pmu {
218 compatible = "arm,cortex-a9-pmu";
Troy Kisky275c08b2013-11-14 14:02:13 -0700219 interrupts = <0 94 IRQ_TYPE_LEVEL_HIGH>;
Dirk Behme218abe62013-02-15 15:10:01 +0100220 };
221
Shawn Guo7d740f82011-09-06 13:53:26 +0800222 aips-bus@02000000 { /* AIPS1 */
223 compatible = "fsl,aips-bus", "simple-bus";
224 #address-cells = <1>;
225 #size-cells = <1>;
226 reg = <0x02000000 0x100000>;
227 ranges;
228
229 spba-bus@02000000 {
230 compatible = "fsl,spba-bus", "simple-bus";
231 #address-cells = <1>;
232 #size-cells = <1>;
233 reg = <0x02000000 0x40000>;
234 ranges;
235
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100236 spdif: spdif@02004000 {
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300237 compatible = "fsl,imx35-spdif";
Shawn Guo7d740f82011-09-06 13:53:26 +0800238 reg = <0x02004000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700239 interrupts = <0 52 IRQ_TYPE_LEVEL_HIGH>;
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300240 dmas = <&sdma 14 18 0>,
241 <&sdma 15 18 0>;
242 dma-names = "rx", "tx";
Shengjiu Wang833f2cb2015-10-10 18:15:07 +0800243 clocks = <&clks IMX6QDL_CLK_SPDIF_GCLK>, <&clks IMX6QDL_CLK_OSC>,
244 <&clks IMX6QDL_CLK_SPDIF>, <&clks IMX6QDL_CLK_ASRC>,
245 <&clks IMX6QDL_CLK_DUMMY>, <&clks IMX6QDL_CLK_ESAI_EXTAL>,
246 <&clks IMX6QDL_CLK_IPG>, <&clks IMX6QDL_CLK_MLB>,
247 <&clks IMX6QDL_CLK_DUMMY>, <&clks IMX6QDL_CLK_SPBA>;
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300248 clock-names = "core", "rxtx0",
249 "rxtx1", "rxtx2",
250 "rxtx3", "rxtx4",
251 "rxtx5", "rxtx6",
Shengjiu Wang09d30592015-11-26 10:39:30 +0800252 "rxtx7", "spba";
Fabio Estevamc9d96df2013-09-02 23:51:41 -0300253 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800254 };
255
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100256 ecspi1: ecspi@02008000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800257 #address-cells = <1>;
258 #size-cells = <0>;
259 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
260 reg = <0x02008000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700261 interrupts = <0 31 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800262 clocks = <&clks IMX6QDL_CLK_ECSPI1>,
263 <&clks IMX6QDL_CLK_ECSPI1>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800264 clock-names = "ipg", "per";
Sascha Hauerdd4b4872016-02-17 14:28:59 +0100265 dmas = <&sdma 3 8 1>, <&sdma 4 8 2>;
Frank Lib3810c32014-01-04 06:53:52 +0800266 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800267 status = "disabled";
268 };
269
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100270 ecspi2: ecspi@0200c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800271 #address-cells = <1>;
272 #size-cells = <0>;
273 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
274 reg = <0x0200c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700275 interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800276 clocks = <&clks IMX6QDL_CLK_ECSPI2>,
277 <&clks IMX6QDL_CLK_ECSPI2>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800278 clock-names = "ipg", "per";
Sascha Hauerdd4b4872016-02-17 14:28:59 +0100279 dmas = <&sdma 5 8 1>, <&sdma 6 8 2>;
Frank Lib3810c32014-01-04 06:53:52 +0800280 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800281 status = "disabled";
282 };
283
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100284 ecspi3: ecspi@02010000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800285 #address-cells = <1>;
286 #size-cells = <0>;
287 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
288 reg = <0x02010000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700289 interrupts = <0 33 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800290 clocks = <&clks IMX6QDL_CLK_ECSPI3>,
291 <&clks IMX6QDL_CLK_ECSPI3>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800292 clock-names = "ipg", "per";
Sascha Hauerdd4b4872016-02-17 14:28:59 +0100293 dmas = <&sdma 7 8 1>, <&sdma 8 8 2>;
Frank Lib3810c32014-01-04 06:53:52 +0800294 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800295 status = "disabled";
296 };
297
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100298 ecspi4: ecspi@02014000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800299 #address-cells = <1>;
300 #size-cells = <0>;
301 compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
302 reg = <0x02014000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700303 interrupts = <0 34 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800304 clocks = <&clks IMX6QDL_CLK_ECSPI4>,
305 <&clks IMX6QDL_CLK_ECSPI4>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800306 clock-names = "ipg", "per";
Sascha Hauerdd4b4872016-02-17 14:28:59 +0100307 dmas = <&sdma 9 8 1>, <&sdma 10 8 2>;
Frank Lib3810c32014-01-04 06:53:52 +0800308 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800309 status = "disabled";
310 };
311
Shawn Guo0c456cf2012-04-02 14:39:26 +0800312 uart1: serial@02020000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800313 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
314 reg = <0x02020000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700315 interrupts = <0 26 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800316 clocks = <&clks IMX6QDL_CLK_UART_IPG>,
317 <&clks IMX6QDL_CLK_UART_SERIAL>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800318 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +0800319 dmas = <&sdma 25 4 0>, <&sdma 26 4 0>;
320 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +0800321 status = "disabled";
322 };
323
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100324 esai: esai@02024000 {
Shengjiu Wang97dae852015-06-18 13:58:44 +0800325 #sound-dai-cells = <0>;
326 compatible = "fsl,imx35-esai";
Shawn Guo7d740f82011-09-06 13:53:26 +0800327 reg = <0x02024000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700328 interrupts = <0 51 IRQ_TYPE_LEVEL_HIGH>;
Shengjiu Wang97dae852015-06-18 13:58:44 +0800329 clocks = <&clks IMX6QDL_CLK_ESAI_IPG>,
330 <&clks IMX6QDL_CLK_ESAI_MEM>,
331 <&clks IMX6QDL_CLK_ESAI_EXTAL>,
332 <&clks IMX6QDL_CLK_ESAI_IPG>,
333 <&clks IMX6QDL_CLK_SPBA>;
Shengjiu Wang09d30592015-11-26 10:39:30 +0800334 clock-names = "core", "mem", "extal", "fsys", "spba";
Shengjiu Wang97dae852015-06-18 13:58:44 +0800335 dmas = <&sdma 23 21 0>, <&sdma 24 21 0>;
336 dma-names = "rx", "tx";
337 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800338 };
339
Richard Zhaob1a5da82012-05-02 10:29:10 +0800340 ssi1: ssi@02028000 {
Alexander Shiyan6ff7f512014-08-19 20:00:09 +0400341 #sound-dai-cells = <0>;
Markus Pargmann98ea6ad2014-01-17 10:07:42 +0100342 compatible = "fsl,imx6q-ssi",
Fabio Estevam4c035272014-07-07 10:04:52 -0300343 "fsl,imx51-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800344 reg = <0x02028000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700345 interrupts = <0 46 IRQ_TYPE_LEVEL_HIGH>;
Shengjiu Wang935632e2014-09-09 17:13:26 +0800346 clocks = <&clks IMX6QDL_CLK_SSI1_IPG>,
347 <&clks IMX6QDL_CLK_SSI1>;
348 clock-names = "ipg", "baud";
Shawn Guo5da826a2013-07-17 13:50:54 +0800349 dmas = <&sdma 37 1 0>,
350 <&sdma 38 1 0>;
351 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800352 fsl,fifo-depth = <15>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800353 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800354 };
355
Richard Zhaob1a5da82012-05-02 10:29:10 +0800356 ssi2: ssi@0202c000 {
Alexander Shiyan6ff7f512014-08-19 20:00:09 +0400357 #sound-dai-cells = <0>;
Markus Pargmann98ea6ad2014-01-17 10:07:42 +0100358 compatible = "fsl,imx6q-ssi",
Fabio Estevam4c035272014-07-07 10:04:52 -0300359 "fsl,imx51-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800360 reg = <0x0202c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700361 interrupts = <0 47 IRQ_TYPE_LEVEL_HIGH>;
Shengjiu Wang935632e2014-09-09 17:13:26 +0800362 clocks = <&clks IMX6QDL_CLK_SSI2_IPG>,
363 <&clks IMX6QDL_CLK_SSI2>;
364 clock-names = "ipg", "baud";
Shawn Guo5da826a2013-07-17 13:50:54 +0800365 dmas = <&sdma 41 1 0>,
366 <&sdma 42 1 0>;
367 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800368 fsl,fifo-depth = <15>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800369 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800370 };
371
Richard Zhaob1a5da82012-05-02 10:29:10 +0800372 ssi3: ssi@02030000 {
Alexander Shiyan6ff7f512014-08-19 20:00:09 +0400373 #sound-dai-cells = <0>;
Markus Pargmann98ea6ad2014-01-17 10:07:42 +0100374 compatible = "fsl,imx6q-ssi",
Fabio Estevam4c035272014-07-07 10:04:52 -0300375 "fsl,imx51-ssi";
Shawn Guo7d740f82011-09-06 13:53:26 +0800376 reg = <0x02030000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700377 interrupts = <0 48 IRQ_TYPE_LEVEL_HIGH>;
Shengjiu Wang935632e2014-09-09 17:13:26 +0800378 clocks = <&clks IMX6QDL_CLK_SSI3_IPG>,
379 <&clks IMX6QDL_CLK_SSI3>;
380 clock-names = "ipg", "baud";
Shawn Guo5da826a2013-07-17 13:50:54 +0800381 dmas = <&sdma 45 1 0>,
382 <&sdma 46 1 0>;
383 dma-names = "rx", "tx";
Richard Zhaob1a5da82012-05-02 10:29:10 +0800384 fsl,fifo-depth = <15>;
Richard Zhaob1a5da82012-05-02 10:29:10 +0800385 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800386 };
387
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100388 asrc: asrc@02034000 {
Shengjiu Wang97dae852015-06-18 13:58:44 +0800389 compatible = "fsl,imx53-asrc";
Shawn Guo7d740f82011-09-06 13:53:26 +0800390 reg = <0x02034000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700391 interrupts = <0 50 IRQ_TYPE_LEVEL_HIGH>;
Shengjiu Wang97dae852015-06-18 13:58:44 +0800392 clocks = <&clks IMX6QDL_CLK_ASRC_IPG>,
393 <&clks IMX6QDL_CLK_ASRC_MEM>, <&clks 0>,
394 <&clks 0>, <&clks 0>, <&clks 0>, <&clks 0>,
395 <&clks 0>, <&clks 0>, <&clks 0>, <&clks 0>,
396 <&clks 0>, <&clks 0>, <&clks 0>, <&clks 0>,
397 <&clks IMX6QDL_CLK_ASRC>, <&clks 0>, <&clks 0>,
398 <&clks IMX6QDL_CLK_SPBA>;
399 clock-names = "mem", "ipg", "asrck_0",
400 "asrck_1", "asrck_2", "asrck_3", "asrck_4",
401 "asrck_5", "asrck_6", "asrck_7", "asrck_8",
402 "asrck_9", "asrck_a", "asrck_b", "asrck_c",
Shengjiu Wang09d30592015-11-26 10:39:30 +0800403 "asrck_d", "asrck_e", "asrck_f", "spba";
Shengjiu Wang97dae852015-06-18 13:58:44 +0800404 dmas = <&sdma 17 23 1>, <&sdma 18 23 1>, <&sdma 19 23 1>,
405 <&sdma 20 23 1>, <&sdma 21 23 1>, <&sdma 22 23 1>;
406 dma-names = "rxa", "rxb", "rxc",
407 "txa", "txb", "txc";
408 fsl,asrc-rate = <48000>;
409 fsl,asrc-width = <16>;
410 status = "okay";
Shawn Guo7d740f82011-09-06 13:53:26 +0800411 };
412
413 spba@0203c000 {
414 reg = <0x0203c000 0x4000>;
415 };
416 };
417
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100418 vpu: vpu@02040000 {
Philipp Zabela04a0b62014-11-11 19:12:47 -0200419 compatible = "cnm,coda960";
Shawn Guo7d740f82011-09-06 13:53:26 +0800420 reg = <0x02040000 0x3c000>;
Philipp Zabelb2faf1a2014-11-28 16:23:46 +0100421 interrupts = <0 12 IRQ_TYPE_LEVEL_HIGH>,
422 <0 3 IRQ_TYPE_LEVEL_HIGH>;
Philipp Zabela04a0b62014-11-11 19:12:47 -0200423 interrupt-names = "bit", "jpeg";
424 clocks = <&clks IMX6QDL_CLK_VPU_AXI>,
Fabio Estevamc9997ba2014-12-16 11:02:41 -0200425 <&clks IMX6QDL_CLK_MMDC_CH0_AXI>;
426 clock-names = "per", "ahb";
Philipp Zabel29eea642015-05-07 15:24:16 +0200427 power-domains = <&gpc 1>;
Philipp Zabela04a0b62014-11-11 19:12:47 -0200428 resets = <&src 1>;
429 iram = <&ocram>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800430 };
431
432 aipstz@0207c000 { /* AIPSTZ1 */
433 reg = <0x0207c000 0x4000>;
434 };
435
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100436 pwm1: pwm@02080000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100437 #pwm-cells = <2>;
438 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800439 reg = <0x02080000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700440 interrupts = <0 83 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800441 clocks = <&clks IMX6QDL_CLK_IPG>,
442 <&clks IMX6QDL_CLK_PWM1>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100443 clock-names = "ipg", "per";
Philipp Zabele2675262015-03-09 17:40:36 +0100444 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800445 };
446
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100447 pwm2: pwm@02084000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100448 #pwm-cells = <2>;
449 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800450 reg = <0x02084000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700451 interrupts = <0 84 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800452 clocks = <&clks IMX6QDL_CLK_IPG>,
453 <&clks IMX6QDL_CLK_PWM2>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100454 clock-names = "ipg", "per";
Philipp Zabele2675262015-03-09 17:40:36 +0100455 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800456 };
457
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100458 pwm3: pwm@02088000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100459 #pwm-cells = <2>;
460 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800461 reg = <0x02088000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700462 interrupts = <0 85 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800463 clocks = <&clks IMX6QDL_CLK_IPG>,
464 <&clks IMX6QDL_CLK_PWM3>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100465 clock-names = "ipg", "per";
Philipp Zabele2675262015-03-09 17:40:36 +0100466 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800467 };
468
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100469 pwm4: pwm@0208c000 {
Sascha Hauer33b38582012-11-21 12:18:28 +0100470 #pwm-cells = <2>;
471 compatible = "fsl,imx6q-pwm", "fsl,imx27-pwm";
Shawn Guo7d740f82011-09-06 13:53:26 +0800472 reg = <0x0208c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700473 interrupts = <0 86 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800474 clocks = <&clks IMX6QDL_CLK_IPG>,
475 <&clks IMX6QDL_CLK_PWM4>;
Sascha Hauer33b38582012-11-21 12:18:28 +0100476 clock-names = "ipg", "per";
Philipp Zabele2675262015-03-09 17:40:36 +0100477 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800478 };
479
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100480 can1: flexcan@02090000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200481 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800482 reg = <0x02090000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700483 interrupts = <0 110 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800484 clocks = <&clks IMX6QDL_CLK_CAN1_IPG>,
485 <&clks IMX6QDL_CLK_CAN1_SERIAL>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200486 clock-names = "ipg", "per";
Tim Harveya1135332013-10-22 21:51:27 -0700487 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800488 };
489
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100490 can2: flexcan@02094000 {
Sascha Hauer0f225212013-06-25 15:51:46 +0200491 compatible = "fsl,imx6q-flexcan";
Shawn Guo7d740f82011-09-06 13:53:26 +0800492 reg = <0x02094000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700493 interrupts = <0 111 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800494 clocks = <&clks IMX6QDL_CLK_CAN2_IPG>,
495 <&clks IMX6QDL_CLK_CAN2_SERIAL>;
Sascha Hauer0f225212013-06-25 15:51:46 +0200496 clock-names = "ipg", "per";
Tim Harveya1135332013-10-22 21:51:27 -0700497 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800498 };
499
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100500 gpt: gpt@02098000 {
Sascha Hauer97b108f2013-06-25 15:51:47 +0200501 compatible = "fsl,imx6q-gpt", "fsl,imx31-gpt";
Shawn Guo7d740f82011-09-06 13:53:26 +0800502 reg = <0x02098000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700503 interrupts = <0 55 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800504 clocks = <&clks IMX6QDL_CLK_GPT_IPG>,
Anson Huang2b2244a2014-09-11 11:29:41 +0800505 <&clks IMX6QDL_CLK_GPT_IPG_PER>,
506 <&clks IMX6QDL_CLK_GPT_3M>;
507 clock-names = "ipg", "per", "osc_per";
Shawn Guo7d740f82011-09-06 13:53:26 +0800508 };
509
Richard Zhao4d191862011-12-14 09:26:44 +0800510 gpio1: gpio@0209c000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200511 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800512 reg = <0x0209c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700513 interrupts = <0 66 IRQ_TYPE_LEVEL_HIGH>,
514 <0 67 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800515 gpio-controller;
516 #gpio-cells = <2>;
517 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800518 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800519 };
520
Richard Zhao4d191862011-12-14 09:26:44 +0800521 gpio2: gpio@020a0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200522 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800523 reg = <0x020a0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700524 interrupts = <0 68 IRQ_TYPE_LEVEL_HIGH>,
525 <0 69 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800526 gpio-controller;
527 #gpio-cells = <2>;
528 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800529 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800530 };
531
Richard Zhao4d191862011-12-14 09:26:44 +0800532 gpio3: gpio@020a4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200533 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800534 reg = <0x020a4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700535 interrupts = <0 70 IRQ_TYPE_LEVEL_HIGH>,
536 <0 71 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800537 gpio-controller;
538 #gpio-cells = <2>;
539 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800540 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800541 };
542
Richard Zhao4d191862011-12-14 09:26:44 +0800543 gpio4: gpio@020a8000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200544 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800545 reg = <0x020a8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700546 interrupts = <0 72 IRQ_TYPE_LEVEL_HIGH>,
547 <0 73 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800548 gpio-controller;
549 #gpio-cells = <2>;
550 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800551 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800552 };
553
Richard Zhao4d191862011-12-14 09:26:44 +0800554 gpio5: gpio@020ac000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200555 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800556 reg = <0x020ac000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700557 interrupts = <0 74 IRQ_TYPE_LEVEL_HIGH>,
558 <0 75 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800559 gpio-controller;
560 #gpio-cells = <2>;
561 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800562 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800563 };
564
Richard Zhao4d191862011-12-14 09:26:44 +0800565 gpio6: gpio@020b0000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200566 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800567 reg = <0x020b0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700568 interrupts = <0 76 IRQ_TYPE_LEVEL_HIGH>,
569 <0 77 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800570 gpio-controller;
571 #gpio-cells = <2>;
572 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800573 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800574 };
575
Richard Zhao4d191862011-12-14 09:26:44 +0800576 gpio7: gpio@020b4000 {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200577 compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
Shawn Guo7d740f82011-09-06 13:53:26 +0800578 reg = <0x020b4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700579 interrupts = <0 78 IRQ_TYPE_LEVEL_HIGH>,
580 <0 79 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800581 gpio-controller;
582 #gpio-cells = <2>;
583 interrupt-controller;
Shawn Guo88cde8b2012-07-06 20:03:37 +0800584 #interrupt-cells = <2>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800585 };
586
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100587 kpp: kpp@020b8000 {
Lothar Waßmann36d3a8f2014-06-06 13:02:59 +0200588 compatible = "fsl,imx6q-kpp", "fsl,imx21-kpp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800589 reg = <0x020b8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700590 interrupts = <0 82 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800591 clocks = <&clks IMX6QDL_CLK_IPG>;
Fabio Estevam1b6f2362014-06-24 21:13:44 -0300592 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +0800593 };
594
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100595 wdog1: wdog@020bc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800596 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
597 reg = <0x020bc000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700598 interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800599 clocks = <&clks IMX6QDL_CLK_DUMMY>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800600 };
601
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100602 wdog2: wdog@020c0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800603 compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
604 reg = <0x020c0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700605 interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800606 clocks = <&clks IMX6QDL_CLK_DUMMY>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800607 status = "disabled";
608 };
609
Shawn Guo0e87e042012-08-22 21:36:28 +0800610 clks: ccm@020c4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800611 compatible = "fsl,imx6q-ccm";
612 reg = <0x020c4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700613 interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>,
614 <0 88 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800615 #clock-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800616 };
617
Dong Aishengbaa64152012-09-05 10:57:15 +0800618 anatop: anatop@020c8000 {
619 compatible = "fsl,imx6q-anatop", "syscon", "simple-bus";
Shawn Guo7d740f82011-09-06 13:53:26 +0800620 reg = <0x020c8000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700621 interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>,
622 <0 54 IRQ_TYPE_LEVEL_HIGH>,
623 <0 127 IRQ_TYPE_LEVEL_HIGH>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800624
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300625 regulator-1p1 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800626 compatible = "fsl,anatop-regulator";
627 regulator-name = "vdd1p1";
628 regulator-min-microvolt = <800000>;
629 regulator-max-microvolt = <1375000>;
630 regulator-always-on;
631 anatop-reg-offset = <0x110>;
632 anatop-vol-bit-shift = <8>;
633 anatop-vol-bit-width = <5>;
634 anatop-min-bit-val = <4>;
635 anatop-min-voltage = <800000>;
636 anatop-max-voltage = <1375000>;
637 };
638
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300639 regulator-3p0 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800640 compatible = "fsl,anatop-regulator";
641 regulator-name = "vdd3p0";
642 regulator-min-microvolt = <2800000>;
643 regulator-max-microvolt = <3150000>;
644 regulator-always-on;
645 anatop-reg-offset = <0x120>;
646 anatop-vol-bit-shift = <8>;
647 anatop-vol-bit-width = <5>;
648 anatop-min-bit-val = <0>;
649 anatop-min-voltage = <2625000>;
650 anatop-max-voltage = <3400000>;
651 };
652
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300653 regulator-2p5 {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800654 compatible = "fsl,anatop-regulator";
655 regulator-name = "vdd2p5";
656 regulator-min-microvolt = <2000000>;
657 regulator-max-microvolt = <2750000>;
658 regulator-always-on;
659 anatop-reg-offset = <0x130>;
660 anatop-vol-bit-shift = <8>;
661 anatop-vol-bit-width = <5>;
662 anatop-min-bit-val = <0>;
663 anatop-min-voltage = <2000000>;
664 anatop-max-voltage = <2750000>;
665 };
666
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300667 reg_arm: regulator-vddcore {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800668 compatible = "fsl,anatop-regulator";
Fabio Estevam118c98a2013-12-19 21:08:52 -0200669 regulator-name = "vddarm";
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800670 regulator-min-microvolt = <725000>;
671 regulator-max-microvolt = <1450000>;
672 regulator-always-on;
673 anatop-reg-offset = <0x140>;
674 anatop-vol-bit-shift = <0>;
675 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500676 anatop-delay-reg-offset = <0x170>;
677 anatop-delay-bit-shift = <24>;
678 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800679 anatop-min-bit-val = <1>;
680 anatop-min-voltage = <725000>;
681 anatop-max-voltage = <1450000>;
682 };
683
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300684 reg_pu: regulator-vddpu {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800685 compatible = "fsl,anatop-regulator";
686 regulator-name = "vddpu";
687 regulator-min-microvolt = <725000>;
688 regulator-max-microvolt = <1450000>;
Philipp Zabel40130d32015-02-23 18:40:15 +0100689 regulator-enable-ramp-delay = <150>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800690 anatop-reg-offset = <0x140>;
691 anatop-vol-bit-shift = <9>;
692 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500693 anatop-delay-reg-offset = <0x170>;
694 anatop-delay-bit-shift = <26>;
695 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800696 anatop-min-bit-val = <1>;
697 anatop-min-voltage = <725000>;
698 anatop-max-voltage = <1450000>;
699 };
700
Fabio Estevamc77ebb42016-04-29 19:39:45 -0300701 reg_soc: regulator-vddsoc {
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800702 compatible = "fsl,anatop-regulator";
703 regulator-name = "vddsoc";
704 regulator-min-microvolt = <725000>;
705 regulator-max-microvolt = <1450000>;
706 regulator-always-on;
707 anatop-reg-offset = <0x140>;
708 anatop-vol-bit-shift = <18>;
709 anatop-vol-bit-width = <5>;
Anson Huang46743dd2013-01-30 17:33:44 -0500710 anatop-delay-reg-offset = <0x170>;
711 anatop-delay-bit-shift = <28>;
712 anatop-delay-bit-width = <2>;
Ying-Chun Liu (PaulLiu)a1e327e2012-03-30 21:46:53 +0800713 anatop-min-bit-val = <1>;
714 anatop-min-voltage = <725000>;
715 anatop-max-voltage = <1450000>;
716 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800717 };
718
Shawn Guo3fe63732013-07-16 21:16:36 +0800719 tempmon: tempmon {
720 compatible = "fsl,imx6q-tempmon";
Troy Kisky275c08b2013-11-14 14:02:13 -0700721 interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo3fe63732013-07-16 21:16:36 +0800722 fsl,tempmon = <&anatop>;
723 fsl,tempmon-data = <&ocotp>;
Shawn Guo8888f652014-06-15 20:36:50 +0800724 clocks = <&clks IMX6QDL_CLK_PLL3_USB_OTG>;
Shawn Guo3fe63732013-07-16 21:16:36 +0800725 };
726
Richard Zhao74bd88f2012-07-12 14:21:41 +0800727 usbphy1: usbphy@020c9000 {
728 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800729 reg = <0x020c9000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700730 interrupts = <0 44 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800731 clocks = <&clks IMX6QDL_CLK_USBPHY1>;
Peter Chen76a38852013-12-20 15:52:01 +0800732 fsl,anatop = <&anatop>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800733 };
734
Richard Zhao74bd88f2012-07-12 14:21:41 +0800735 usbphy2: usbphy@020ca000 {
736 compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
Shawn Guo7d740f82011-09-06 13:53:26 +0800737 reg = <0x020ca000 0x1000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700738 interrupts = <0 45 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800739 clocks = <&clks IMX6QDL_CLK_USBPHY2>;
Peter Chen76a38852013-12-20 15:52:01 +0800740 fsl,anatop = <&anatop>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800741 };
742
Frank Li95d739b2015-05-27 00:25:59 +0800743 snvs: snvs@020cc000 {
744 compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd";
745 reg = <0x020cc000 0x4000>;
Shawn Guoc9250382012-07-02 20:13:03 +0800746
Frank Li95d739b2015-05-27 00:25:59 +0800747 snvs_rtc: snvs-rtc-lp {
Shawn Guoc9250382012-07-02 20:13:03 +0800748 compatible = "fsl,sec-v4.0-mon-rtc-lp";
Frank Li95d739b2015-05-27 00:25:59 +0800749 regmap = <&snvs>;
750 offset = <0x34>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700751 interrupts = <0 19 IRQ_TYPE_LEVEL_HIGH>,
752 <0 20 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guoc9250382012-07-02 20:13:03 +0800753 };
Robin Gong422b0672014-11-12 16:20:37 +0800754
Frank Li95d739b2015-05-27 00:25:59 +0800755 snvs_poweroff: snvs-poweroff {
756 compatible = "syscon-poweroff";
757 regmap = <&snvs>;
758 offset = <0x38>;
759 mask = <0x60>;
Robin Gong422b0672014-11-12 16:20:37 +0800760 status = "disabled";
761 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800762 };
763
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100764 epit1: epit@020d0000 { /* EPIT1 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800765 reg = <0x020d0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700766 interrupts = <0 56 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800767 };
768
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100769 epit2: epit@020d4000 { /* EPIT2 */
Shawn Guo7d740f82011-09-06 13:53:26 +0800770 reg = <0x020d4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700771 interrupts = <0 57 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800772 };
773
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100774 src: src@020d8000 {
Philipp Zabelbd3d9242013-03-28 17:35:22 +0100775 compatible = "fsl,imx6q-src", "fsl,imx51-src";
Shawn Guo7d740f82011-09-06 13:53:26 +0800776 reg = <0x020d8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700777 interrupts = <0 91 IRQ_TYPE_LEVEL_HIGH>,
778 <0 96 IRQ_TYPE_LEVEL_HIGH>;
Philipp Zabel09ebf362013-03-28 17:35:20 +0100779 #reset-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800780 };
781
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100782 gpc: gpc@020dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800783 compatible = "fsl,imx6q-gpc";
784 reg = <0x020dc000 0x4000>;
Marc Zyngierb923ff62015-02-23 17:45:18 +0000785 interrupt-controller;
786 #interrupt-cells = <3>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700787 interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>,
788 <0 90 IRQ_TYPE_LEVEL_HIGH>;
Marc Zyngierb923ff62015-02-23 17:45:18 +0000789 interrupt-parent = <&intc>;
Philipp Zabel729c8882015-02-23 18:40:13 +0100790 pu-supply = <&reg_pu>;
791 clocks = <&clks IMX6QDL_CLK_GPU3D_CORE>,
792 <&clks IMX6QDL_CLK_GPU3D_SHADER>,
793 <&clks IMX6QDL_CLK_GPU2D_CORE>,
794 <&clks IMX6QDL_CLK_GPU2D_AXI>,
795 <&clks IMX6QDL_CLK_OPENVG_AXI>,
796 <&clks IMX6QDL_CLK_VPU_AXI>;
797 #power-domain-cells = <1>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800798 };
799
Dong Aishengdf37e0c2012-09-05 10:57:14 +0800800 gpr: iomuxc-gpr@020e0000 {
801 compatible = "fsl,imx6q-iomuxc-gpr", "syscon";
802 reg = <0x020e0000 0x38>;
803 };
804
Shawn Guoc56009b2f2013-07-11 13:58:36 +0800805 iomuxc: iomuxc@020e0000 {
806 compatible = "fsl,imx6dl-iomuxc", "fsl,imx6q-iomuxc";
807 reg = <0x020e0000 0x4000>;
Shawn Guoc56009b2f2013-07-11 13:58:36 +0800808 };
809
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100810 ldb: ldb@020e0008 {
811 #address-cells = <1>;
812 #size-cells = <0>;
813 compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb";
814 gpr = <&gpr>;
815 status = "disabled";
816
817 lvds-channel@0 {
Philipp Zabel4520e692014-03-05 10:21:01 +0100818 #address-cells = <1>;
819 #size-cells = <0>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100820 reg = <0>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100821 status = "disabled";
Philipp Zabel4520e692014-03-05 10:21:01 +0100822
823 port@0 {
824 reg = <0>;
825
826 lvds0_mux_0: endpoint {
827 remote-endpoint = <&ipu1_di0_lvds0>;
828 };
829 };
830
831 port@1 {
832 reg = <1>;
833
834 lvds0_mux_1: endpoint {
835 remote-endpoint = <&ipu1_di1_lvds0>;
836 };
837 };
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100838 };
839
840 lvds-channel@1 {
Philipp Zabel4520e692014-03-05 10:21:01 +0100841 #address-cells = <1>;
842 #size-cells = <0>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100843 reg = <1>;
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100844 status = "disabled";
Philipp Zabel4520e692014-03-05 10:21:01 +0100845
846 port@0 {
847 reg = <0>;
848
849 lvds1_mux_0: endpoint {
850 remote-endpoint = <&ipu1_di0_lvds1>;
851 };
852 };
853
854 port@1 {
855 reg = <1>;
856
857 lvds1_mux_1: endpoint {
858 remote-endpoint = <&ipu1_di1_lvds1>;
859 };
860 };
Steffen Trumtrar41c04342013-03-28 16:23:35 +0100861 };
862 };
863
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100864 dcic1: dcic@020e4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800865 reg = <0x020e4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700866 interrupts = <0 124 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800867 };
868
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100869 dcic2: dcic@020e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800870 reg = <0x020e8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700871 interrupts = <0 125 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +0800872 };
873
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100874 sdma: sdma@020ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800875 compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma";
876 reg = <0x020ec000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700877 interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800878 clocks = <&clks IMX6QDL_CLK_SDMA>,
879 <&clks IMX6QDL_CLK_SDMA>;
Shawn Guo0e87e042012-08-22 21:36:28 +0800880 clock-names = "ipg", "ahb";
Huang Shijiefb72bb22013-07-02 10:15:29 +0800881 #dma-cells = <3>;
Fabio Estevamd6b9c592013-01-17 12:13:25 -0200882 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin";
Shawn Guo7d740f82011-09-06 13:53:26 +0800883 };
884 };
885
886 aips-bus@02100000 { /* AIPS2 */
887 compatible = "fsl,aips-bus", "simple-bus";
888 #address-cells = <1>;
889 #size-cells = <1>;
890 reg = <0x02100000 0x100000>;
891 ranges;
892
Victoria Milhoand462ce92015-08-05 11:28:44 -0700893 crypto: caam@2100000 {
894 compatible = "fsl,sec-v4.0";
895 fsl,sec-era = <4>;
896 #address-cells = <1>;
897 #size-cells = <1>;
898 reg = <0x2100000 0x10000>;
899 ranges = <0 0x2100000 0x10000>;
Victoria Milhoand462ce92015-08-05 11:28:44 -0700900 clocks = <&clks IMX6QDL_CLK_CAAM_MEM>,
901 <&clks IMX6QDL_CLK_CAAM_ACLK>,
902 <&clks IMX6QDL_CLK_CAAM_IPG>,
903 <&clks IMX6QDL_CLK_EIM_SLOW>;
904 clock-names = "mem", "aclk", "ipg", "emi_slow";
905
906 sec_jr0: jr0@1000 {
907 compatible = "fsl,sec-v4.0-job-ring";
908 reg = <0x1000 0x1000>;
909 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
910 };
911
912 sec_jr1: jr1@2000 {
913 compatible = "fsl,sec-v4.0-job-ring";
914 reg = <0x2000 0x1000>;
915 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
916 };
Shawn Guo7d740f82011-09-06 13:53:26 +0800917 };
918
919 aipstz@0217c000 { /* AIPSTZ2 */
920 reg = <0x0217c000 0x4000>;
921 };
922
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100923 usbotg: usb@02184000 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800924 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
925 reg = <0x02184000 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700926 interrupts = <0 43 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800927 clocks = <&clks IMX6QDL_CLK_USBOH3>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800928 fsl,usbphy = <&usbphy1>;
Richard Zhao28342c62012-09-14 14:42:45 +0800929 fsl,usbmisc = <&usbmisc 0>;
Peter Chen9493bf52015-09-30 10:17:16 +0800930 ahb-burst-config = <0x0>;
Peter Chen2b1a40e2015-09-30 10:17:17 +0800931 tx-burst-size-dword = <0x10>;
932 rx-burst-size-dword = <0x10>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800933 status = "disabled";
934 };
935
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100936 usbh1: usb@02184200 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800937 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
938 reg = <0x02184200 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700939 interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800940 clocks = <&clks IMX6QDL_CLK_USBOH3>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800941 fsl,usbphy = <&usbphy2>;
Richard Zhao28342c62012-09-14 14:42:45 +0800942 fsl,usbmisc = <&usbmisc 1>;
Matt Porter3ec481e2015-02-27 09:06:00 -0500943 dr_mode = "host";
Peter Chen9493bf52015-09-30 10:17:16 +0800944 ahb-burst-config = <0x0>;
Peter Chen2b1a40e2015-09-30 10:17:17 +0800945 tx-burst-size-dword = <0x10>;
946 rx-burst-size-dword = <0x10>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800947 status = "disabled";
948 };
949
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100950 usbh2: usb@02184400 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800951 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
952 reg = <0x02184400 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700953 interrupts = <0 41 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800954 clocks = <&clks IMX6QDL_CLK_USBOH3>;
Richard Zhao28342c62012-09-14 14:42:45 +0800955 fsl,usbmisc = <&usbmisc 2>;
Matt Porter3ec481e2015-02-27 09:06:00 -0500956 dr_mode = "host";
Peter Chen9493bf52015-09-30 10:17:16 +0800957 ahb-burst-config = <0x0>;
Peter Chen2b1a40e2015-09-30 10:17:17 +0800958 tx-burst-size-dword = <0x10>;
959 rx-burst-size-dword = <0x10>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800960 status = "disabled";
961 };
962
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100963 usbh3: usb@02184600 {
Richard Zhao74bd88f2012-07-12 14:21:41 +0800964 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
965 reg = <0x02184600 0x200>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700966 interrupts = <0 42 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800967 clocks = <&clks IMX6QDL_CLK_USBOH3>;
Richard Zhao28342c62012-09-14 14:42:45 +0800968 fsl,usbmisc = <&usbmisc 3>;
Matt Porter3ec481e2015-02-27 09:06:00 -0500969 dr_mode = "host";
Peter Chen9493bf52015-09-30 10:17:16 +0800970 ahb-burst-config = <0x0>;
Peter Chen2b1a40e2015-09-30 10:17:17 +0800971 tx-burst-size-dword = <0x10>;
972 rx-burst-size-dword = <0x10>;
Richard Zhao74bd88f2012-07-12 14:21:41 +0800973 status = "disabled";
974 };
975
Shawn Guo60984bd2013-04-28 09:59:54 +0800976 usbmisc: usbmisc@02184800 {
Richard Zhao28342c62012-09-14 14:42:45 +0800977 #index-cells = <1>;
978 compatible = "fsl,imx6q-usbmisc";
979 reg = <0x02184800 0x200>;
Shawn Guo8888f652014-06-15 20:36:50 +0800980 clocks = <&clks IMX6QDL_CLK_USBOH3>;
Richard Zhao28342c62012-09-14 14:42:45 +0800981 };
982
Sascha Hauer7b7d6722012-11-15 09:31:52 +0100983 fec: ethernet@02188000 {
Shawn Guo7d740f82011-09-06 13:53:26 +0800984 compatible = "fsl,imx6q-fec";
985 reg = <0x02188000 0x4000>;
Troy Kisky454cf8f2013-12-20 11:47:10 -0700986 interrupts-extended =
987 <&intc 0 118 IRQ_TYPE_LEVEL_HIGH>,
988 <&intc 0 119 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +0800989 clocks = <&clks IMX6QDL_CLK_ENET>,
990 <&clks IMX6QDL_CLK_ENET>,
991 <&clks IMX6QDL_CLK_ENET_REF>;
Frank Li76298382012-10-30 18:24:57 +0000992 clock-names = "ipg", "ahb", "ptp";
Shawn Guo7d740f82011-09-06 13:53:26 +0800993 status = "disabled";
994 };
995
996 mlb@0218c000 {
997 reg = <0x0218c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -0700998 interrupts = <0 53 IRQ_TYPE_LEVEL_HIGH>,
999 <0 117 IRQ_TYPE_LEVEL_HIGH>,
1000 <0 126 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001001 };
1002
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001003 usdhc1: usdhc@02190000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001004 compatible = "fsl,imx6q-usdhc";
1005 reg = <0x02190000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001006 interrupts = <0 22 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001007 clocks = <&clks IMX6QDL_CLK_USDHC1>,
1008 <&clks IMX6QDL_CLK_USDHC1>,
1009 <&clks IMX6QDL_CLK_USDHC1>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001010 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +02001011 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001012 status = "disabled";
1013 };
1014
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001015 usdhc2: usdhc@02194000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001016 compatible = "fsl,imx6q-usdhc";
1017 reg = <0x02194000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001018 interrupts = <0 23 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001019 clocks = <&clks IMX6QDL_CLK_USDHC2>,
1020 <&clks IMX6QDL_CLK_USDHC2>,
1021 <&clks IMX6QDL_CLK_USDHC2>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001022 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +02001023 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001024 status = "disabled";
1025 };
1026
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001027 usdhc3: usdhc@02198000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001028 compatible = "fsl,imx6q-usdhc";
1029 reg = <0x02198000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001030 interrupts = <0 24 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001031 clocks = <&clks IMX6QDL_CLK_USDHC3>,
1032 <&clks IMX6QDL_CLK_USDHC3>,
1033 <&clks IMX6QDL_CLK_USDHC3>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001034 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +02001035 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001036 status = "disabled";
1037 };
1038
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001039 usdhc4: usdhc@0219c000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001040 compatible = "fsl,imx6q-usdhc";
1041 reg = <0x0219c000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001042 interrupts = <0 25 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001043 clocks = <&clks IMX6QDL_CLK_USDHC4>,
1044 <&clks IMX6QDL_CLK_USDHC4>,
1045 <&clks IMX6QDL_CLK_USDHC4>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001046 clock-names = "ipg", "ahb", "per";
Sascha Hauerc104b6a2012-09-25 11:49:33 +02001047 bus-width = <4>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001048 status = "disabled";
1049 };
1050
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001051 i2c1: i2c@021a0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001052 #address-cells = <1>;
1053 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +08001054 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +08001055 reg = <0x021a0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001056 interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001057 clocks = <&clks IMX6QDL_CLK_I2C1>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001058 status = "disabled";
1059 };
1060
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001061 i2c2: i2c@021a4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001062 #address-cells = <1>;
1063 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +08001064 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +08001065 reg = <0x021a4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001066 interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001067 clocks = <&clks IMX6QDL_CLK_I2C2>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001068 status = "disabled";
1069 };
1070
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001071 i2c3: i2c@021a8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001072 #address-cells = <1>;
1073 #size-cells = <0>;
Shawn Guo5bdfba22012-09-14 15:19:00 +08001074 compatible = "fsl,imx6q-i2c", "fsl,imx21-i2c";
Shawn Guo7d740f82011-09-06 13:53:26 +08001075 reg = <0x021a8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001076 interrupts = <0 38 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001077 clocks = <&clks IMX6QDL_CLK_I2C3>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001078 status = "disabled";
1079 };
1080
1081 romcp@021ac000 {
1082 reg = <0x021ac000 0x4000>;
1083 };
1084
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001085 mmdc0: mmdc@021b0000 { /* MMDC0 */
Shawn Guo7d740f82011-09-06 13:53:26 +08001086 compatible = "fsl,imx6q-mmdc";
1087 reg = <0x021b0000 0x4000>;
1088 };
1089
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001090 mmdc1: mmdc@021b4000 { /* MMDC1 */
Shawn Guo7d740f82011-09-06 13:53:26 +08001091 reg = <0x021b4000 0x4000>;
1092 };
1093
Huang Shijie05e3f8e2013-05-28 14:20:09 +08001094 weim: weim@021b8000 {
1095 compatible = "fsl,imx6q-weim";
Shawn Guo7d740f82011-09-06 13:53:26 +08001096 reg = <0x021b8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001097 interrupts = <0 14 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001098 clocks = <&clks IMX6QDL_CLK_EIM_SLOW>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001099 };
1100
Shawn Guo3fe63732013-07-16 21:16:36 +08001101 ocotp: ocotp@021bc000 {
1102 compatible = "fsl,imx6q-ocotp", "syscon";
Shawn Guo7d740f82011-09-06 13:53:26 +08001103 reg = <0x021bc000 0x4000>;
Peng Fanb8ecd882016-04-21 01:26:15 +08001104 clocks = <&clks IMX6QDL_CLK_IIM>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001105 };
1106
Shawn Guo7d740f82011-09-06 13:53:26 +08001107 tzasc@021d0000 { /* TZASC1 */
1108 reg = <0x021d0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001109 interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001110 };
1111
1112 tzasc@021d4000 { /* TZASC2 */
1113 reg = <0x021d4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001114 interrupts = <0 109 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001115 };
1116
Sascha Hauer7b7d6722012-11-15 09:31:52 +01001117 audmux: audmux@021d8000 {
Richard Zhaof965cd52012-05-02 10:32:26 +08001118 compatible = "fsl,imx6q-audmux", "fsl,imx31-audmux";
Shawn Guo7d740f82011-09-06 13:53:26 +08001119 reg = <0x021d8000 0x4000>;
Richard Zhaof965cd52012-05-02 10:32:26 +08001120 status = "disabled";
Shawn Guo7d740f82011-09-06 13:53:26 +08001121 };
1122
Troy Kisky5e0c7cd2013-11-14 14:02:08 -07001123 mipi_csi: mipi@021dc000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001124 reg = <0x021dc000 0x4000>;
1125 };
1126
Philipp Zabel4520e692014-03-05 10:21:01 +01001127 mipi_dsi: mipi@021e0000 {
1128 #address-cells = <1>;
1129 #size-cells = <0>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001130 reg = <0x021e0000 0x4000>;
Philipp Zabel4520e692014-03-05 10:21:01 +01001131 status = "disabled";
1132
Liu Ying70c26522015-02-12 14:01:31 +08001133 ports {
1134 #address-cells = <1>;
1135 #size-cells = <0>;
Philipp Zabel4520e692014-03-05 10:21:01 +01001136
Liu Ying70c26522015-02-12 14:01:31 +08001137 port@0 {
1138 reg = <0>;
1139
1140 mipi_mux_0: endpoint {
1141 remote-endpoint = <&ipu1_di0_mipi>;
1142 };
Philipp Zabel4520e692014-03-05 10:21:01 +01001143 };
Philipp Zabel4520e692014-03-05 10:21:01 +01001144
Liu Ying70c26522015-02-12 14:01:31 +08001145 port@1 {
1146 reg = <1>;
Philipp Zabel4520e692014-03-05 10:21:01 +01001147
Liu Ying70c26522015-02-12 14:01:31 +08001148 mipi_mux_1: endpoint {
1149 remote-endpoint = <&ipu1_di1_mipi>;
1150 };
Philipp Zabel4520e692014-03-05 10:21:01 +01001151 };
1152 };
Shawn Guo7d740f82011-09-06 13:53:26 +08001153 };
1154
1155 vdoa@021e4000 {
1156 reg = <0x021e4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001157 interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo7d740f82011-09-06 13:53:26 +08001158 };
1159
Shawn Guo0c456cf2012-04-02 14:39:26 +08001160 uart2: serial@021e8000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001161 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
1162 reg = <0x021e8000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001163 interrupts = <0 27 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001164 clocks = <&clks IMX6QDL_CLK_UART_IPG>,
1165 <&clks IMX6QDL_CLK_UART_SERIAL>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001166 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +08001167 dmas = <&sdma 27 4 0>, <&sdma 28 4 0>;
1168 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +08001169 status = "disabled";
1170 };
1171
Shawn Guo0c456cf2012-04-02 14:39:26 +08001172 uart3: serial@021ec000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001173 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
1174 reg = <0x021ec000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001175 interrupts = <0 28 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001176 clocks = <&clks IMX6QDL_CLK_UART_IPG>,
1177 <&clks IMX6QDL_CLK_UART_SERIAL>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001178 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +08001179 dmas = <&sdma 29 4 0>, <&sdma 30 4 0>;
1180 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +08001181 status = "disabled";
1182 };
1183
Shawn Guo0c456cf2012-04-02 14:39:26 +08001184 uart4: serial@021f0000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001185 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
1186 reg = <0x021f0000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001187 interrupts = <0 29 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001188 clocks = <&clks IMX6QDL_CLK_UART_IPG>,
1189 <&clks IMX6QDL_CLK_UART_SERIAL>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001190 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +08001191 dmas = <&sdma 31 4 0>, <&sdma 32 4 0>;
1192 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +08001193 status = "disabled";
1194 };
1195
Shawn Guo0c456cf2012-04-02 14:39:26 +08001196 uart5: serial@021f4000 {
Shawn Guo7d740f82011-09-06 13:53:26 +08001197 compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
1198 reg = <0x021f4000 0x4000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001199 interrupts = <0 30 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001200 clocks = <&clks IMX6QDL_CLK_UART_IPG>,
1201 <&clks IMX6QDL_CLK_UART_SERIAL>;
Shawn Guo0e87e042012-08-22 21:36:28 +08001202 clock-names = "ipg", "per";
Huang Shijie72a5ceb2013-07-12 18:02:09 +08001203 dmas = <&sdma 33 4 0>, <&sdma 34 4 0>;
1204 dma-names = "rx", "tx";
Shawn Guo7d740f82011-09-06 13:53:26 +08001205 status = "disabled";
1206 };
1207 };
Sascha Hauer91660d72012-11-12 15:52:21 +01001208
1209 ipu1: ipu@02400000 {
Philipp Zabel4520e692014-03-05 10:21:01 +01001210 #address-cells = <1>;
1211 #size-cells = <0>;
Sascha Hauer91660d72012-11-12 15:52:21 +01001212 compatible = "fsl,imx6q-ipu";
1213 reg = <0x02400000 0x400000>;
Troy Kisky275c08b2013-11-14 14:02:13 -07001214 interrupts = <0 6 IRQ_TYPE_LEVEL_HIGH>,
1215 <0 5 IRQ_TYPE_LEVEL_HIGH>;
Shawn Guo8888f652014-06-15 20:36:50 +08001216 clocks = <&clks IMX6QDL_CLK_IPU1>,
1217 <&clks IMX6QDL_CLK_IPU1_DI0>,
1218 <&clks IMX6QDL_CLK_IPU1_DI1>;
Sascha Hauer91660d72012-11-12 15:52:21 +01001219 clock-names = "bus", "di0", "di1";
Philipp Zabel09ebf362013-03-28 17:35:20 +01001220 resets = <&src 2>;
Philipp Zabel4520e692014-03-05 10:21:01 +01001221
Philipp Zabelc0470c32014-05-27 17:26:37 +02001222 ipu1_csi0: port@0 {
1223 reg = <0>;
1224 };
1225
1226 ipu1_csi1: port@1 {
1227 reg = <1>;
1228 };
1229
Philipp Zabel4520e692014-03-05 10:21:01 +01001230 ipu1_di0: port@2 {
1231 #address-cells = <1>;
1232 #size-cells = <0>;
1233 reg = <2>;
1234
Joshua Clayton416196c2016-04-25 18:09:33 -07001235 ipu1_di0_disp0: disp0-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001236 };
1237
Joshua Clayton416196c2016-04-25 18:09:33 -07001238 ipu1_di0_hdmi: hdmi-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001239 remote-endpoint = <&hdmi_mux_0>;
1240 };
1241
Joshua Clayton416196c2016-04-25 18:09:33 -07001242 ipu1_di0_mipi: mipi-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001243 remote-endpoint = <&mipi_mux_0>;
1244 };
1245
Joshua Clayton416196c2016-04-25 18:09:33 -07001246 ipu1_di0_lvds0: lvds0-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001247 remote-endpoint = <&lvds0_mux_0>;
1248 };
1249
Joshua Clayton416196c2016-04-25 18:09:33 -07001250 ipu1_di0_lvds1: lvds1-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001251 remote-endpoint = <&lvds1_mux_0>;
1252 };
1253 };
1254
1255 ipu1_di1: port@3 {
1256 #address-cells = <1>;
1257 #size-cells = <0>;
1258 reg = <3>;
1259
Juergen Borleisf255f892016-05-31 16:49:37 +02001260 ipu1_di1_disp1: disp1-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001261 };
1262
Joshua Clayton416196c2016-04-25 18:09:33 -07001263 ipu1_di1_hdmi: hdmi-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001264 remote-endpoint = <&hdmi_mux_1>;
1265 };
1266
Joshua Clayton416196c2016-04-25 18:09:33 -07001267 ipu1_di1_mipi: mipi-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001268 remote-endpoint = <&mipi_mux_1>;
1269 };
1270
Joshua Clayton416196c2016-04-25 18:09:33 -07001271 ipu1_di1_lvds0: lvds0-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001272 remote-endpoint = <&lvds0_mux_1>;
1273 };
1274
Joshua Clayton416196c2016-04-25 18:09:33 -07001275 ipu1_di1_lvds1: lvds1-endpoint {
Philipp Zabel4520e692014-03-05 10:21:01 +01001276 remote-endpoint = <&lvds1_mux_1>;
1277 };
1278 };
Sascha Hauer91660d72012-11-12 15:52:21 +01001279 };
Shawn Guo7d740f82011-09-06 13:53:26 +08001280 };
1281};