blob: 69436b9a404cd0b91e2e3c62a0993937ef021d0a [file] [log] [blame]
Frank Li94967342015-05-19 02:45:04 +08001/*
2 * Copyright 2015 Freescale Semiconductor, Inc.
Stefan Agnera67970a2016-06-26 01:47:53 -07003 * Copyright 2016 Toradex AG
Frank Li94967342015-05-19 02:45:04 +08004 *
5 * This file is dual-licensed: you can use it either under the terms
6 * of the GPL or the X11 license, at your option. Note that this dual
7 * licensing only applies to this file, and not this project as a
8 * whole.
9 *
10 * a) This file is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This file is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * Or, alternatively,
21 *
22 * b) Permission is hereby granted, free of charge, to any person
23 * obtaining a copy of this software and associated documentation
24 * files (the "Software"), to deal in the Software without
25 * restriction, including without limitation the rights to use,
26 * copy, modify, merge, publish, distribute, sublicense, and/or
27 * sell copies of the Software, and to permit persons to whom the
28 * Software is furnished to do so, subject to the following
29 * conditions:
30 *
31 * The above copyright notice and this permission notice shall be
32 * included in all copies or substantial portions of the Software.
33 *
34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
36 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
38 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
39 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41 * OTHER DEALINGS IN THE SOFTWARE.
42 */
43
44#include <dt-bindings/clock/imx7d-clock.h>
Andrey Smirnov0f90b432017-05-15 07:53:01 -070045#include <dt-bindings/power/imx7-power.h>
Frank Li94967342015-05-19 02:45:04 +080046#include <dt-bindings/gpio/gpio.h>
Stefan Agner1e886a12016-06-26 01:47:54 -070047#include <dt-bindings/input/input.h>
Frank Li94967342015-05-19 02:45:04 +080048#include <dt-bindings/interrupt-controller/arm-gic.h>
49#include "imx7d-pinfunc.h"
Frank Li94967342015-05-19 02:45:04 +080050
51/ {
Fabio Estevam7f107882016-11-12 13:30:35 -020052 #address-cells = <1>;
53 #size-cells = <1>;
Fabio Estevama971c552017-01-23 14:54:10 -020054 /*
55 * The decompressor and also some bootloaders rely on a
56 * pre-existing /chosen node to be available to insert the
57 * command line and merge other ATAGS info.
58 * Also for U-Boot there must be a pre-existing /memory node.
59 */
60 chosen {};
Marco Franchi7f08e6a2018-01-24 11:22:13 -020061 memory { device_type = "memory"; };
Fabio Estevam7f107882016-11-12 13:30:35 -020062
Frank Li94967342015-05-19 02:45:04 +080063 aliases {
64 gpio0 = &gpio1;
65 gpio1 = &gpio2;
66 gpio2 = &gpio3;
67 gpio3 = &gpio4;
68 gpio4 = &gpio5;
69 gpio5 = &gpio6;
70 gpio6 = &gpio7;
71 i2c0 = &i2c1;
72 i2c1 = &i2c2;
73 i2c2 = &i2c3;
74 i2c3 = &i2c4;
75 mmc0 = &usdhc1;
76 mmc1 = &usdhc2;
77 mmc2 = &usdhc3;
78 serial0 = &uart1;
79 serial1 = &uart2;
80 serial2 = &uart3;
81 serial3 = &uart4;
82 serial4 = &uart5;
83 serial5 = &uart6;
84 serial6 = &uart7;
Diego Dortab754af32016-06-22 16:37:07 -030085 spi0 = &ecspi1;
86 spi1 = &ecspi2;
87 spi2 = &ecspi3;
88 spi3 = &ecspi4;
Frank Li94967342015-05-19 02:45:04 +080089 };
90
91 cpus {
92 #address-cells = <1>;
93 #size-cells = <0>;
94
95 cpu0: cpu@0 {
96 compatible = "arm,cortex-a7";
97 device_type = "cpu";
98 reg = <0>;
Stefan Agner1c4e2a12016-08-11 17:11:07 -070099 clock-frequency = <792000000>;
Frank Li94967342015-05-19 02:45:04 +0800100 clock-latency = <61036>; /* two CLK32 periods */
Bai Ping698e2ac2015-11-24 18:25:15 +0800101 clocks = <&clks IMX7D_CLK_ARM>;
Frank Li94967342015-05-19 02:45:04 +0800102 };
Frank Li94967342015-05-19 02:45:04 +0800103 };
104
Frank Li94967342015-05-19 02:45:04 +0800105 ckil: clock-cki {
106 compatible = "fixed-clock";
107 #clock-cells = <0>;
108 clock-frequency = <32768>;
109 clock-output-names = "ckil";
110 };
111
112 osc: clock-osc {
113 compatible = "fixed-clock";
114 #clock-cells = <0>;
115 clock-frequency = <24000000>;
116 clock-output-names = "osc";
117 };
118
Fabio Estevamdd55cb42017-11-29 16:54:39 -0200119 usbphynop1: usbphynop1 {
120 compatible = "usb-nop-xceiv";
121 clocks = <&clks IMX7D_USB_PHY1_CLK>;
122 clock-names = "main_clk";
123 #phy-cells = <0>;
124 };
125
126 usbphynop3: usbphynop3 {
127 compatible = "usb-nop-xceiv";
128 clocks = <&clks IMX7D_USB_HSIC_ROOT_CLK>;
129 clock-names = "main_clk";
130 #phy-cells = <0>;
131 };
132
Stefan Agnera934a582018-02-27 16:16:10 +0100133 pmu {
134 compatible = "arm,cortex-a7-pmu";
135 interrupt-parent = <&gpc>;
136 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
137 interrupt-affinity = <&cpu0>;
138 };
Fabio Estevamdd55cb42017-11-29 16:54:39 -0200139
140 replicator {
141 /*
142 * non-configurable replicators don't show up on the
143 * AMBA bus. As such no need to add "arm,primecell"
144 */
145 compatible = "arm,coresight-replicator";
146
147 ports {
148 #address-cells = <1>;
149 #size-cells = <0>;
150 /* replicator output ports */
151 port@0 {
152 reg = <0>;
153 replicator_out_port0: endpoint {
154 remote-endpoint = <&tpiu_in_port>;
155 };
156 };
157
158 port@1 {
159 reg = <1>;
160 replicator_out_port1: endpoint {
161 remote-endpoint = <&etr_in_port>;
162 };
163 };
164
165 /* replicator input port */
166 port@2 {
167 reg = <0>;
168 replicator_in_port0: endpoint {
169 slave-mode;
170 remote-endpoint = <&etf_out_port>;
171 };
172 };
173 };
174 };
175
176 timer {
177 compatible = "arm,armv7-timer";
178 interrupt-parent = <&intc>;
179 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
180 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
181 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
182 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
183 };
184
Frank Li94967342015-05-19 02:45:04 +0800185 soc {
186 #address-cells = <1>;
187 #size-cells = <1>;
188 compatible = "simple-bus";
Andrey Smirnov0f90b432017-05-15 07:53:01 -0700189 interrupt-parent = <&gpc>;
Frank Li94967342015-05-19 02:45:04 +0800190 ranges;
191
Stefan Agner974a3ab2016-07-25 23:42:35 -0700192 funnel@30041000 {
193 compatible = "arm,coresight-funnel", "arm,primecell";
194 reg = <0x30041000 0x1000>;
195 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
196 clock-names = "apb_pclk";
197
198 ca_funnel_ports: ports {
199 #address-cells = <1>;
200 #size-cells = <0>;
201
202 /* funnel input ports */
203 port@0 {
204 reg = <0>;
205 ca_funnel_in_port0: endpoint {
206 slave-mode;
207 remote-endpoint = <&etm0_out_port>;
208 };
209 };
210
211 /* funnel output port */
212 port@2 {
213 reg = <0>;
214 ca_funnel_out_port0: endpoint {
215 remote-endpoint = <&hugo_funnel_in_port0>;
216 };
217 };
218
219 /* the other input ports are not connect to anything */
220 };
221 };
222
223 etm@3007c000 {
224 compatible = "arm,coresight-etm3x", "arm,primecell";
225 reg = <0x3007c000 0x1000>;
226 cpu = <&cpu0>;
227 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
228 clock-names = "apb_pclk";
229
230 port {
231 etm0_out_port: endpoint {
232 remote-endpoint = <&ca_funnel_in_port0>;
233 };
234 };
235 };
236
237 funnel@30083000 {
238 compatible = "arm,coresight-funnel", "arm,primecell";
239 reg = <0x30083000 0x1000>;
240 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
241 clock-names = "apb_pclk";
242
243 ports {
244 #address-cells = <1>;
245 #size-cells = <0>;
246
247 /* funnel input ports */
248 port@0 {
249 reg = <0>;
250 hugo_funnel_in_port0: endpoint {
251 slave-mode;
252 remote-endpoint = <&ca_funnel_out_port0>;
253 };
254 };
255
256 port@1 {
257 reg = <1>;
258 hugo_funnel_in_port1: endpoint {
259 slave-mode; /* M4 input */
260 };
261 };
262
263 port@2 {
264 reg = <0>;
265 hugo_funnel_out_port0: endpoint {
266 remote-endpoint = <&etf_in_port>;
267 };
268 };
269
270 /* the other input ports are not connect to anything */
271 };
272 };
273
274 etf@30084000 {
275 compatible = "arm,coresight-tmc", "arm,primecell";
276 reg = <0x30084000 0x1000>;
277 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
278 clock-names = "apb_pclk";
279
280 ports {
281 #address-cells = <1>;
282 #size-cells = <0>;
283
284 port@0 {
285 reg = <0>;
286 etf_in_port: endpoint {
287 slave-mode;
288 remote-endpoint = <&hugo_funnel_out_port0>;
289 };
290 };
291
292 port@1 {
293 reg = <0>;
294 etf_out_port: endpoint {
295 remote-endpoint = <&replicator_in_port0>;
296 };
297 };
298 };
299 };
300
301 etr@30086000 {
302 compatible = "arm,coresight-tmc", "arm,primecell";
303 reg = <0x30086000 0x1000>;
304 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
305 clock-names = "apb_pclk";
306
307 port {
308 etr_in_port: endpoint {
309 slave-mode;
310 remote-endpoint = <&replicator_out_port1>;
311 };
312 };
313 };
314
315 tpiu@30087000 {
316 compatible = "arm,coresight-tpiu", "arm,primecell";
317 reg = <0x30087000 0x1000>;
318 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
319 clock-names = "apb_pclk";
320
321 port {
322 tpiu_in_port: endpoint {
323 slave-mode;
324 remote-endpoint = <&replicator_out_port1>;
325 };
326 };
327 };
328
Stefan Agner974a3ab2016-07-25 23:42:35 -0700329 intc: interrupt-controller@31001000 {
330 compatible = "arm,cortex-a7-gic";
Stefan Agnerb28c9bf2016-07-25 23:42:36 -0700331 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
Stefan Agner974a3ab2016-07-25 23:42:35 -0700332 #interrupt-cells = <3>;
333 interrupt-controller;
Andrey Smirnov0f90b432017-05-15 07:53:01 -0700334 interrupt-parent = <&intc>;
Stefan Agner974a3ab2016-07-25 23:42:35 -0700335 reg = <0x31001000 0x1000>,
Stefan Agnerb28c9bf2016-07-25 23:42:36 -0700336 <0x31002000 0x2000>,
Stefan Agner974a3ab2016-07-25 23:42:35 -0700337 <0x31004000 0x2000>,
338 <0x31006000 0x2000>;
339 };
340
Frank Li94967342015-05-19 02:45:04 +0800341 aips1: aips-bus@30000000 {
342 compatible = "fsl,aips-bus", "simple-bus";
343 #address-cells = <1>;
344 #size-cells = <1>;
345 reg = <0x30000000 0x400000>;
346 ranges;
347
348 gpio1: gpio@30200000 {
349 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
350 reg = <0x30200000 0x10000>;
351 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>, /* GPIO1_INT15_0 */
352 <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; /* GPIO1_INT31_16 */
353 gpio-controller;
354 #gpio-cells = <2>;
355 interrupt-controller;
356 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300357 gpio-ranges = <&iomuxc_lpsr 0 0 8>, <&iomuxc 8 5 8>;
Frank Li94967342015-05-19 02:45:04 +0800358 };
359
360 gpio2: gpio@30210000 {
361 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
362 reg = <0x30210000 0x10000>;
363 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>,
364 <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
365 gpio-controller;
366 #gpio-cells = <2>;
367 interrupt-controller;
368 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300369 gpio-ranges = <&iomuxc 0 13 32>;
Frank Li94967342015-05-19 02:45:04 +0800370 };
371
372 gpio3: gpio@30220000 {
373 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
374 reg = <0x30220000 0x10000>;
375 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>,
376 <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
377 gpio-controller;
378 #gpio-cells = <2>;
379 interrupt-controller;
380 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300381 gpio-ranges = <&iomuxc 0 45 29>;
Frank Li94967342015-05-19 02:45:04 +0800382 };
383
384 gpio4: gpio@30230000 {
385 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
386 reg = <0x30230000 0x10000>;
387 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>,
388 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
389 gpio-controller;
390 #gpio-cells = <2>;
391 interrupt-controller;
392 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300393 gpio-ranges = <&iomuxc 0 74 24>;
Frank Li94967342015-05-19 02:45:04 +0800394 };
395
396 gpio5: gpio@30240000 {
397 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
398 reg = <0x30240000 0x10000>;
399 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>,
400 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
401 gpio-controller;
402 #gpio-cells = <2>;
403 interrupt-controller;
404 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300405 gpio-ranges = <&iomuxc 0 98 18>;
Frank Li94967342015-05-19 02:45:04 +0800406 };
407
408 gpio6: gpio@30250000 {
409 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
410 reg = <0x30250000 0x10000>;
411 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>,
412 <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
413 gpio-controller;
414 #gpio-cells = <2>;
415 interrupt-controller;
416 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300417 gpio-ranges = <&iomuxc 0 116 23>;
Frank Li94967342015-05-19 02:45:04 +0800418 };
419
420 gpio7: gpio@30260000 {
421 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio";
422 reg = <0x30260000 0x10000>;
423 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>,
424 <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
425 gpio-controller;
426 #gpio-cells = <2>;
427 interrupt-controller;
428 #interrupt-cells = <2>;
Vladimir Zapolskiybb728d62016-09-09 05:02:36 +0300429 gpio-ranges = <&iomuxc 0 139 16>;
Frank Li94967342015-05-19 02:45:04 +0800430 };
431
Frank Li6f5f9bc2015-05-29 03:40:57 +0800432 wdog1: wdog@30280000 {
433 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt";
434 reg = <0x30280000 0x10000>;
435 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
436 clocks = <&clks IMX7D_WDOG1_ROOT_CLK>;
437 };
438
439 wdog2: wdog@30290000 {
440 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt";
441 reg = <0x30290000 0x10000>;
442 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
443 clocks = <&clks IMX7D_WDOG2_ROOT_CLK>;
444 status = "disabled";
445 };
446
447 wdog3: wdog@302a0000 {
448 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt";
449 reg = <0x302a0000 0x10000>;
450 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
451 clocks = <&clks IMX7D_WDOG3_ROOT_CLK>;
452 status = "disabled";
453 };
454
455 wdog4: wdog@302b0000 {
456 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt";
457 reg = <0x302b0000 0x10000>;
458 interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
459 clocks = <&clks IMX7D_WDOG4_ROOT_CLK>;
460 status = "disabled";
461 };
462
Adrian Alonso149c08e2015-09-25 16:05:57 -0500463 iomuxc_lpsr: iomuxc-lpsr@302c0000 {
464 compatible = "fsl,imx7d-iomuxc-lpsr";
465 reg = <0x302c0000 0x10000>;
466 fsl,input-sel = <&iomuxc>;
467 };
468
Frank Li94967342015-05-19 02:45:04 +0800469 gpt1: gpt@302d0000 {
470 compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt";
471 reg = <0x302d0000 0x10000>;
472 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
473 clocks = <&clks IMX7D_CLK_DUMMY>,
474 <&clks IMX7D_GPT1_ROOT_CLK>;
475 clock-names = "ipg", "per";
476 };
477
478 gpt2: gpt@302e0000 {
479 compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt";
480 reg = <0x302e0000 0x10000>;
481 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
482 clocks = <&clks IMX7D_CLK_DUMMY>,
483 <&clks IMX7D_GPT2_ROOT_CLK>;
484 clock-names = "ipg", "per";
485 status = "disabled";
486 };
487
488 gpt3: gpt@302f0000 {
489 compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt";
490 reg = <0x302f0000 0x10000>;
491 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
492 clocks = <&clks IMX7D_CLK_DUMMY>,
493 <&clks IMX7D_GPT3_ROOT_CLK>;
494 clock-names = "ipg", "per";
495 status = "disabled";
496 };
497
498 gpt4: gpt@30300000 {
499 compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt";
500 reg = <0x30300000 0x10000>;
501 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
502 clocks = <&clks IMX7D_CLK_DUMMY>,
503 <&clks IMX7D_GPT4_ROOT_CLK>;
504 clock-names = "ipg", "per";
505 status = "disabled";
506 };
507
Stefan Agner303aa1b2018-02-27 17:05:44 +0100508 kpp: kpp@30320000 {
509 compatible = "fsl,imx7d-kpp", "fsl,imx21-kpp";
510 reg = <0x30320000 0x10000>;
511 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
512 clocks = <&clks IMX7D_KPP_ROOT_CLK>;
513 status = "disabled";
514 };
515
Frank Li94967342015-05-19 02:45:04 +0800516 iomuxc: iomuxc@30330000 {
517 compatible = "fsl,imx7d-iomuxc";
518 reg = <0x30330000 0x10000>;
519 };
520
521 gpr: iomuxc-gpr@30340000 {
Andrey Smirnov9760c062017-05-15 07:53:02 -0700522 compatible = "fsl,imx7d-iomuxc-gpr",
523 "fsl,imx6q-iomuxc-gpr", "syscon";
Frank Li94967342015-05-19 02:45:04 +0800524 reg = <0x30340000 0x10000>;
525 };
526
527 ocotp: ocotp-ctrl@30350000 {
Anson Huangde25b9b2018-03-02 09:59:29 +0800528 #address-cells = <1>;
529 #size-cells = <1>;
Peng Fan9f291832017-03-01 14:40:53 +0800530 compatible = "fsl,imx7d-ocotp", "syscon";
Frank Li94967342015-05-19 02:45:04 +0800531 reg = <0x30350000 0x10000>;
Peng Fan9f291832017-03-01 14:40:53 +0800532 clocks = <&clks IMX7D_OCOTP_CLK>;
Anson Huangde25b9b2018-03-02 09:59:29 +0800533
534 tempmon_calib: calib@3c {
535 reg = <0x3c 0x4>;
536 };
537
538 tempmon_temp_grade: temp-grade@10 {
539 reg = <0x10 0x4>;
540 };
541 };
542
543 tempmon: tempmon {
544 compatible = "fsl,imx7d-tempmon";
545 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
546 fsl,tempmon =<&anatop>;
547 nvmem-cells = <&tempmon_calib>,
548 <&tempmon_temp_grade>;
549 nvmem-cell-names = "calib", "temp_grade";
550 clocks = <&clks IMX7D_PLL_SYS_MAIN_CLK>;
Frank Li94967342015-05-19 02:45:04 +0800551 };
552
553 anatop: anatop@30360000 {
554 compatible = "fsl,imx7d-anatop", "fsl,imx6q-anatop",
555 "syscon", "simple-bus";
556 reg = <0x30360000 0x10000>;
557 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>,
558 <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
Fabio Estevamebb84692017-11-29 16:54:41 -0200559 #address-cells = <1>;
560 #size-cells = <0>;
Frank Li94967342015-05-19 02:45:04 +0800561
Fabio Estevamebb84692017-11-29 16:54:41 -0200562 reg_1p0d: regulator-vdd1p0d@30360210 {
563 reg = <0x30360210>;
Frank Li94967342015-05-19 02:45:04 +0800564 compatible = "fsl,anatop-regulator";
565 regulator-name = "vdd1p0d";
566 regulator-min-microvolt = <800000>;
567 regulator-max-microvolt = <1200000>;
568 anatop-reg-offset = <0x210>;
569 anatop-vol-bit-shift = <8>;
570 anatop-vol-bit-width = <5>;
571 anatop-min-bit-val = <8>;
572 anatop-min-voltage = <800000>;
573 anatop-max-voltage = <1200000>;
Andrey Smirnov38281a42017-05-15 07:52:59 -0700574 anatop-enable-bit = <0>;
Frank Li94967342015-05-19 02:45:04 +0800575 };
576 };
577
578 snvs: snvs@30370000 {
Frank Liabb9f252015-07-29 01:50:00 +0800579 compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd";
580 reg = <0x30370000 0x10000>;
Frank Li94967342015-05-19 02:45:04 +0800581
Frank Liabb9f252015-07-29 01:50:00 +0800582 snvs_rtc: snvs-rtc-lp {
Frank Li94967342015-05-19 02:45:04 +0800583 compatible = "fsl,sec-v4.0-mon-rtc-lp";
Frank Liabb9f252015-07-29 01:50:00 +0800584 regmap = <&snvs>;
585 offset = <0x34>;
Frank Li94967342015-05-19 02:45:04 +0800586 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>,
587 <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Anson Huangec2a8442018-01-09 17:52:06 +0800588 clocks = <&clks IMX7D_SNVS_CLK>;
589 clock-names = "snvs-rtc";
Frank Li94967342015-05-19 02:45:04 +0800590 };
Frank Liabb9f252015-07-29 01:50:00 +0800591
592 snvs_poweroff: snvs-poweroff {
593 compatible = "syscon-poweroff";
594 regmap = <&snvs>;
595 offset = <0x38>;
Guy Shapiro87a84c62017-07-04 18:19:12 +0200596 value = <0x60>;
Frank Liabb9f252015-07-29 01:50:00 +0800597 mask = <0x60>;
598 };
599
600 snvs_pwrkey: snvs-powerkey {
601 compatible = "fsl,sec-v4.0-pwrkey";
602 regmap = <&snvs>;
603 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
604 linux,keycode = <KEY_POWER>;
605 wakeup-source;
606 };
Frank Li94967342015-05-19 02:45:04 +0800607 };
608
609 clks: ccm@30380000 {
610 compatible = "fsl,imx7d-ccm";
611 reg = <0x30380000 0x10000>;
612 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>,
613 <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
614 #clock-cells = <1>;
615 clocks = <&ckil>, <&osc>;
616 clock-names = "ckil", "osc";
617 };
618
619 src: src@30390000 {
Andrey Smirnove6e9d8e2017-03-14 08:33:57 -0700620 compatible = "fsl,imx7d-src", "syscon";
Frank Li94967342015-05-19 02:45:04 +0800621 reg = <0x30390000 0x10000>;
622 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
623 #reset-cells = <1>;
624 };
Andrey Smirnov0f90b432017-05-15 07:53:01 -0700625
626 gpc: gpc@303a0000 {
627 compatible = "fsl,imx7d-gpc";
628 reg = <0x303a0000 0x10000>;
629 interrupt-controller;
630 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
631 #interrupt-cells = <3>;
632 interrupt-parent = <&intc>;
633 #power-domain-cells = <1>;
634
635 pgc {
636 #address-cells = <1>;
637 #size-cells = <0>;
638
Fabio Estevam84a82ef2017-12-26 17:59:45 -0200639 pgc_pcie_phy: pgc-power-domain@1 {
Andrey Smirnov0f90b432017-05-15 07:53:01 -0700640 #power-domain-cells = <0>;
Fabio Estevam84a82ef2017-12-26 17:59:45 -0200641 reg = <1>;
Andrey Smirnov0f90b432017-05-15 07:53:01 -0700642 power-supply = <&reg_1p0d>;
643 };
644 };
645 };
Frank Li94967342015-05-19 02:45:04 +0800646 };
647
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300648 aips2: aips-bus@30400000 {
649 compatible = "fsl,aips-bus", "simple-bus";
650 #address-cells = <1>;
651 #size-cells = <1>;
652 reg = <0x30400000 0x400000>;
653 ranges;
654
Haibo Chena3d19f22015-12-08 18:26:22 +0800655 adc1: adc@30610000 {
656 compatible = "fsl,imx7d-adc";
657 reg = <0x30610000 0x10000>;
658 interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
659 clocks = <&clks IMX7D_ADC_ROOT_CLK>;
660 clock-names = "adc";
661 status = "disabled";
662 };
663
664 adc2: adc@30620000 {
665 compatible = "fsl,imx7d-adc";
666 reg = <0x30620000 0x10000>;
667 interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
668 clocks = <&clks IMX7D_ADC_ROOT_CLK>;
669 clock-names = "adc";
670 status = "disabled";
671 };
672
Diego Dortab754af32016-06-22 16:37:07 -0300673 ecspi4: ecspi@30630000 {
674 #address-cells = <1>;
675 #size-cells = <0>;
676 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi";
677 reg = <0x30630000 0x10000>;
678 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
679 clocks = <&clks IMX7D_ECSPI4_ROOT_CLK>,
680 <&clks IMX7D_ECSPI4_ROOT_CLK>;
681 clock-names = "ipg", "per";
682 status = "disabled";
683 };
684
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300685 pwm1: pwm@30660000 {
686 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm";
687 reg = <0x30660000 0x10000>;
688 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
689 clocks = <&clks IMX7D_PWM1_ROOT_CLK>,
690 <&clks IMX7D_PWM1_ROOT_CLK>;
691 clock-names = "ipg", "per";
Stefan Agner9be48d2d2017-05-16 00:40:13 -0700692 #pwm-cells = <3>;
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300693 status = "disabled";
694 };
695
696 pwm2: pwm@30670000 {
697 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm";
698 reg = <0x30670000 0x10000>;
699 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
700 clocks = <&clks IMX7D_PWM2_ROOT_CLK>,
701 <&clks IMX7D_PWM2_ROOT_CLK>;
702 clock-names = "ipg", "per";
Stefan Agner9be48d2d2017-05-16 00:40:13 -0700703 #pwm-cells = <3>;
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300704 status = "disabled";
705 };
706
707 pwm3: pwm@30680000 {
708 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm";
709 reg = <0x30680000 0x10000>;
710 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
711 clocks = <&clks IMX7D_PWM3_ROOT_CLK>,
712 <&clks IMX7D_PWM3_ROOT_CLK>;
713 clock-names = "ipg", "per";
Stefan Agner9be48d2d2017-05-16 00:40:13 -0700714 #pwm-cells = <3>;
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300715 status = "disabled";
716 };
717
718 pwm4: pwm@30690000 {
719 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm";
720 reg = <0x30690000 0x10000>;
721 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
722 clocks = <&clks IMX7D_PWM4_ROOT_CLK>,
723 <&clks IMX7D_PWM4_ROOT_CLK>;
724 clock-names = "ipg", "per";
Stefan Agner9be48d2d2017-05-16 00:40:13 -0700725 #pwm-cells = <3>;
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300726 status = "disabled";
727 };
Gary Bissone8ed73f2016-04-02 18:25:43 +0200728
729 lcdif: lcdif@30730000 {
730 compatible = "fsl,imx7d-lcdif", "fsl,imx28-lcdif";
731 reg = <0x30730000 0x10000>;
732 interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
733 clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>,
Stefan Agner4b707fa2016-11-22 16:42:04 -0800734 <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>;
735 clock-names = "pix", "axi";
Gary Bissone8ed73f2016-04-02 18:25:43 +0200736 status = "disabled";
737 };
Fabio Estevam208c9fe2015-09-02 15:16:20 -0300738 };
739
Frank Li94967342015-05-19 02:45:04 +0800740 aips3: aips-bus@30800000 {
741 compatible = "fsl,aips-bus", "simple-bus";
742 #address-cells = <1>;
743 #size-cells = <1>;
744 reg = <0x30800000 0x400000>;
745 ranges;
746
Stefan Agner8efaff52018-02-27 17:30:49 +0100747 spba-bus@30800000 {
748 compatible = "fsl,spba-bus", "simple-bus";
Diego Dortab754af32016-06-22 16:37:07 -0300749 #address-cells = <1>;
Stefan Agner8efaff52018-02-27 17:30:49 +0100750 #size-cells = <1>;
751 reg = <0x30800000 0x100000>;
752 ranges;
Diego Dortab754af32016-06-22 16:37:07 -0300753
Stefan Agner8efaff52018-02-27 17:30:49 +0100754 ecspi1: ecspi@30820000 {
755 #address-cells = <1>;
756 #size-cells = <0>;
757 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi";
758 reg = <0x30820000 0x10000>;
759 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
760 clocks = <&clks IMX7D_ECSPI1_ROOT_CLK>,
761 <&clks IMX7D_ECSPI1_ROOT_CLK>;
762 clock-names = "ipg", "per";
763 status = "disabled";
764 };
Diego Dortab754af32016-06-22 16:37:07 -0300765
Stefan Agner8efaff52018-02-27 17:30:49 +0100766 ecspi2: ecspi@30830000 {
767 #address-cells = <1>;
768 #size-cells = <0>;
769 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi";
770 reg = <0x30830000 0x10000>;
771 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
772 clocks = <&clks IMX7D_ECSPI2_ROOT_CLK>,
773 <&clks IMX7D_ECSPI2_ROOT_CLK>;
774 clock-names = "ipg", "per";
775 status = "disabled";
776 };
Diego Dortab754af32016-06-22 16:37:07 -0300777
Stefan Agner8efaff52018-02-27 17:30:49 +0100778 ecspi3: ecspi@30840000 {
779 #address-cells = <1>;
780 #size-cells = <0>;
781 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi";
782 reg = <0x30840000 0x10000>;
783 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
784 clocks = <&clks IMX7D_ECSPI3_ROOT_CLK>,
785 <&clks IMX7D_ECSPI3_ROOT_CLK>;
786 clock-names = "ipg", "per";
787 status = "disabled";
788 };
Frank Li94967342015-05-19 02:45:04 +0800789
Stefan Agner8efaff52018-02-27 17:30:49 +0100790 uart1: serial@30860000 {
791 compatible = "fsl,imx7d-uart",
792 "fsl,imx6q-uart";
793 reg = <0x30860000 0x10000>;
794 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
795 clocks = <&clks IMX7D_UART1_ROOT_CLK>,
796 <&clks IMX7D_UART1_ROOT_CLK>;
797 clock-names = "ipg", "per";
798 status = "disabled";
799 };
Frank Li94967342015-05-19 02:45:04 +0800800
Stefan Agner8efaff52018-02-27 17:30:49 +0100801 uart2: serial@30890000 {
802 compatible = "fsl,imx7d-uart",
803 "fsl,imx6q-uart";
804 reg = <0x30890000 0x10000>;
805 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
806 clocks = <&clks IMX7D_UART2_ROOT_CLK>,
807 <&clks IMX7D_UART2_ROOT_CLK>;
808 clock-names = "ipg", "per";
809 status = "disabled";
810 };
Frank Li94967342015-05-19 02:45:04 +0800811
Stefan Agner8efaff52018-02-27 17:30:49 +0100812 uart3: serial@30880000 {
813 compatible = "fsl,imx7d-uart",
814 "fsl,imx6q-uart";
815 reg = <0x30880000 0x10000>;
816 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
817 clocks = <&clks IMX7D_UART3_ROOT_CLK>,
818 <&clks IMX7D_UART3_ROOT_CLK>;
819 clock-names = "ipg", "per";
820 status = "disabled";
821 };
Fabio Estevam7310f072016-08-10 13:00:27 -0300822
Stefan Agner8efaff52018-02-27 17:30:49 +0100823 sai1: sai@308a0000 {
824 #sound-dai-cells = <0>;
825 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai";
826 reg = <0x308a0000 0x10000>;
827 interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
828 clocks = <&clks IMX7D_SAI1_IPG_CLK>,
829 <&clks IMX7D_SAI1_ROOT_CLK>,
830 <&clks IMX7D_CLK_DUMMY>,
831 <&clks IMX7D_CLK_DUMMY>;
832 clock-names = "bus", "mclk1", "mclk2", "mclk3";
833 dma-names = "rx", "tx";
834 dmas = <&sdma 8 24 0>, <&sdma 9 24 0>;
835 status = "disabled";
836 };
Fabio Estevam7310f072016-08-10 13:00:27 -0300837
Stefan Agner8efaff52018-02-27 17:30:49 +0100838 sai2: sai@308b0000 {
839 #sound-dai-cells = <0>;
840 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai";
841 reg = <0x308b0000 0x10000>;
842 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
843 clocks = <&clks IMX7D_SAI2_IPG_CLK>,
844 <&clks IMX7D_SAI2_ROOT_CLK>,
845 <&clks IMX7D_CLK_DUMMY>,
846 <&clks IMX7D_CLK_DUMMY>;
847 clock-names = "bus", "mclk1", "mclk2", "mclk3";
848 dma-names = "rx", "tx";
849 dmas = <&sdma 10 24 0>, <&sdma 11 24 0>;
850 status = "disabled";
851 };
852
853 sai3: sai@308c0000 {
854 #sound-dai-cells = <0>;
855 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai";
856 reg = <0x308c0000 0x10000>;
857 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
858 clocks = <&clks IMX7D_SAI3_IPG_CLK>,
859 <&clks IMX7D_SAI3_ROOT_CLK>,
860 <&clks IMX7D_CLK_DUMMY>,
861 <&clks IMX7D_CLK_DUMMY>;
862 clock-names = "bus", "mclk1", "mclk2", "mclk3";
863 dma-names = "rx", "tx";
864 dmas = <&sdma 12 24 0>, <&sdma 13 24 0>;
865 status = "disabled";
866 };
Fabio Estevam7310f072016-08-10 13:00:27 -0300867 };
868
Rui Miguel Silva0eeabca2018-02-22 14:22:50 +0000869 crypto: caam@30900000 {
870 compatible = "fsl,sec-v4.0";
Fabio Estevam388126a2018-04-24 17:25:19 -0300871 fsl,sec-era = <8>;
Rui Miguel Silva0eeabca2018-02-22 14:22:50 +0000872 #address-cells = <1>;
873 #size-cells = <1>;
874 reg = <0x30900000 0x40000>;
875 ranges = <0 0x30900000 0x40000>;
876 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
877 clocks = <&clks IMX7D_CAAM_CLK>,
878 <&clks IMX7D_AHB_CHANNEL_ROOT_CLK>;
879 clock-names = "ipg", "aclk";
880
881 sec_jr0: jr0@1000 {
882 compatible = "fsl,sec-v4.0-job-ring";
883 reg = <0x1000 0x1000>;
884 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
885 };
886
887 sec_jr1: jr1@2000 {
888 compatible = "fsl,sec-v4.0-job-ring";
889 reg = <0x2000 0x1000>;
890 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
891 };
892
893 sec_jr2: jr1@3000 {
894 compatible = "fsl,sec-v4.0-job-ring";
895 reg = <0x3000 0x1000>;
896 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
897 };
898 };
899
Gary Bissonc1474012016-04-02 18:25:44 +0200900 flexcan1: can@30a00000 {
901 compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan";
902 reg = <0x30a00000 0x10000>;
903 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
904 clocks = <&clks IMX7D_CLK_DUMMY>,
905 <&clks IMX7D_CAN1_ROOT_CLK>;
906 clock-names = "ipg", "per";
907 status = "disabled";
908 };
909
910 flexcan2: can@30a10000 {
911 compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan";
912 reg = <0x30a10000 0x10000>;
913 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
914 clocks = <&clks IMX7D_CLK_DUMMY>,
915 <&clks IMX7D_CAN2_ROOT_CLK>;
916 clock-names = "ipg", "per";
917 status = "disabled";
918 };
919
Frank Li94967342015-05-19 02:45:04 +0800920 i2c1: i2c@30a20000 {
921 #address-cells = <1>;
922 #size-cells = <0>;
923 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c";
924 reg = <0x30a20000 0x10000>;
925 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
926 clocks = <&clks IMX7D_I2C1_ROOT_CLK>;
927 status = "disabled";
928 };
929
930 i2c2: i2c@30a30000 {
931 #address-cells = <1>;
932 #size-cells = <0>;
933 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c";
934 reg = <0x30a30000 0x10000>;
935 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
936 clocks = <&clks IMX7D_I2C2_ROOT_CLK>;
937 status = "disabled";
938 };
939
940 i2c3: i2c@30a40000 {
941 #address-cells = <1>;
942 #size-cells = <0>;
943 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c";
944 reg = <0x30a40000 0x10000>;
945 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
946 clocks = <&clks IMX7D_I2C3_ROOT_CLK>;
947 status = "disabled";
948 };
949
950 i2c4: i2c@30a50000 {
951 #address-cells = <1>;
952 #size-cells = <0>;
953 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c";
954 reg = <0x30a50000 0x10000>;
955 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
956 clocks = <&clks IMX7D_I2C4_ROOT_CLK>;
957 status = "disabled";
958 };
959
960 uart4: serial@30a60000 {
961 compatible = "fsl,imx7d-uart",
962 "fsl,imx6q-uart";
963 reg = <0x30a60000 0x10000>;
964 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
965 clocks = <&clks IMX7D_UART4_ROOT_CLK>,
966 <&clks IMX7D_UART4_ROOT_CLK>;
967 clock-names = "ipg", "per";
968 status = "disabled";
969 };
970
971 uart5: serial@30a70000 {
972 compatible = "fsl,imx7d-uart",
973 "fsl,imx6q-uart";
974 reg = <0x30a70000 0x10000>;
975 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
976 clocks = <&clks IMX7D_UART5_ROOT_CLK>,
977 <&clks IMX7D_UART5_ROOT_CLK>;
978 clock-names = "ipg", "per";
979 status = "disabled";
980 };
981
982 uart6: serial@30a80000 {
983 compatible = "fsl,imx7d-uart",
984 "fsl,imx6q-uart";
985 reg = <0x30a80000 0x10000>;
986 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
987 clocks = <&clks IMX7D_UART6_ROOT_CLK>,
988 <&clks IMX7D_UART6_ROOT_CLK>;
989 clock-names = "ipg", "per";
990 status = "disabled";
991 };
992
993 uart7: serial@30a90000 {
994 compatible = "fsl,imx7d-uart",
995 "fsl,imx6q-uart";
996 reg = <0x30a90000 0x10000>;
997 interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
998 clocks = <&clks IMX7D_UART7_ROOT_CLK>,
999 <&clks IMX7D_UART7_ROOT_CLK>;
1000 clock-names = "ipg", "per";
1001 status = "disabled";
1002 };
1003
Fabio Estevam60f5a222015-09-07 22:57:11 -03001004 usbotg1: usb@30b10000 {
1005 compatible = "fsl,imx7d-usb", "fsl,imx27-usb";
1006 reg = <0x30b10000 0x200>;
1007 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
1008 clocks = <&clks IMX7D_USB_CTRL_CLK>;
1009 fsl,usbphy = <&usbphynop1>;
1010 fsl,usbmisc = <&usbmisc1 0>;
1011 phy-clkgate-delay-us = <400>;
1012 status = "disabled";
1013 };
1014
Fabio Estevam60f5a222015-09-07 22:57:11 -03001015 usbh: usb@30b30000 {
1016 compatible = "fsl,imx7d-usb", "fsl,imx27-usb";
1017 reg = <0x30b30000 0x200>;
1018 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
1019 clocks = <&clks IMX7D_USB_CTRL_CLK>;
1020 fsl,usbphy = <&usbphynop3>;
1021 fsl,usbmisc = <&usbmisc3 0>;
1022 phy_type = "hsic";
1023 dr_mode = "host";
1024 phy-clkgate-delay-us = <400>;
1025 status = "disabled";
1026 };
1027
1028 usbmisc1: usbmisc@30b10200 {
1029 #index-cells = <1>;
1030 compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc";
1031 reg = <0x30b10200 0x200>;
1032 };
1033
Fabio Estevam60f5a222015-09-07 22:57:11 -03001034 usbmisc3: usbmisc@30b30200 {
1035 #index-cells = <1>;
1036 compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc";
1037 reg = <0x30b30200 0x200>;
1038 };
1039
Frank Li94967342015-05-19 02:45:04 +08001040 usdhc1: usdhc@30b40000 {
1041 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc";
1042 reg = <0x30b40000 0x10000>;
1043 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Stefan Agnere711b852017-04-10 14:00:15 -07001044 clocks = <&clks IMX7D_IPG_ROOT_CLK>,
1045 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>,
Frank Li94967342015-05-19 02:45:04 +08001046 <&clks IMX7D_USDHC1_ROOT_CLK>;
1047 clock-names = "ipg", "ahb", "per";
1048 bus-width = <4>;
1049 status = "disabled";
1050 };
1051
1052 usdhc2: usdhc@30b50000 {
1053 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc";
1054 reg = <0x30b50000 0x10000>;
1055 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Stefan Agnere711b852017-04-10 14:00:15 -07001056 clocks = <&clks IMX7D_IPG_ROOT_CLK>,
1057 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>,
Frank Li94967342015-05-19 02:45:04 +08001058 <&clks IMX7D_USDHC2_ROOT_CLK>;
1059 clock-names = "ipg", "ahb", "per";
1060 bus-width = <4>;
1061 status = "disabled";
1062 };
1063
1064 usdhc3: usdhc@30b60000 {
1065 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc";
1066 reg = <0x30b60000 0x10000>;
1067 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
Stefan Agnere711b852017-04-10 14:00:15 -07001068 clocks = <&clks IMX7D_IPG_ROOT_CLK>,
1069 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>,
Frank Li94967342015-05-19 02:45:04 +08001070 <&clks IMX7D_USDHC3_ROOT_CLK>;
1071 clock-names = "ipg", "ahb", "per";
1072 bus-width = <4>;
1073 status = "disabled";
1074 };
Fugang Duan0f629212015-09-07 10:55:01 +08001075
Fabio Estevam2f5ac9b2016-08-10 13:00:28 -03001076 sdma: sdma@30bd0000 {
1077 compatible = "fsl,imx7d-sdma", "fsl,imx35-sdma";
1078 reg = <0x30bd0000 0x10000>;
1079 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
1080 clocks = <&clks IMX7D_SDMA_CORE_CLK>,
1081 <&clks IMX7D_AHB_CHANNEL_ROOT_CLK>;
1082 clock-names = "ipg", "ahb";
1083 #dma-cells = <3>;
1084 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx7d.bin";
1085 };
1086
Fugang Duan0f629212015-09-07 10:55:01 +08001087 fec1: ethernet@30be0000 {
1088 compatible = "fsl,imx7d-fec", "fsl,imx6sx-fec";
1089 reg = <0x30be0000 0x10000>;
Troy Kiskye94a2302017-11-03 10:29:58 -07001090 interrupt-names = "int0", "int1", "int2", "pps";
1091 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>,
1092 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>,
Fugang Duan0f629212015-09-07 10:55:01 +08001093 <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>,
Troy Kiskye94a2302017-11-03 10:29:58 -07001094 <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
Anson Huang64f929d2018-05-18 09:01:06 +08001095 clocks = <&clks IMX7D_ENET1_IPG_ROOT_CLK>,
Fugang Duan0f629212015-09-07 10:55:01 +08001096 <&clks IMX7D_ENET_AXI_ROOT_CLK>,
1097 <&clks IMX7D_ENET1_TIME_ROOT_CLK>,
1098 <&clks IMX7D_PLL_ENET_MAIN_125M_CLK>,
1099 <&clks IMX7D_ENET_PHY_REF_ROOT_CLK>;
1100 clock-names = "ipg", "ahb", "ptp",
1101 "enet_clk_ref", "enet_out";
1102 fsl,num-tx-queues=<3>;
1103 fsl,num-rx-queues=<3>;
1104 status = "disabled";
1105 };
Frank Li94967342015-05-19 02:45:04 +08001106 };
Stefan Agnere7495a42017-06-08 15:34:48 -07001107
1108 dma_apbh: dma-apbh@33000000 {
1109 compatible = "fsl,imx7d-dma-apbh", "fsl,imx28-dma-apbh";
1110 reg = <0x33000000 0x2000>;
1111 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
1112 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
1113 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
1114 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>;
1115 interrupt-names = "gpmi0", "gpmi1", "gpmi2", "gpmi3";
1116 #dma-cells = <1>;
1117 dma-channels = <4>;
1118 clocks = <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>;
1119 };
1120
1121 gpmi: gpmi-nand@33002000{
1122 compatible = "fsl,imx7d-gpmi-nand";
1123 #address-cells = <1>;
1124 #size-cells = <1>;
1125 reg = <0x33002000 0x2000>, <0x33004000 0x4000>;
1126 reg-names = "gpmi-nand", "bch";
1127 interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
1128 interrupt-names = "bch";
1129 clocks = <&clks IMX7D_NAND_RAWNAND_CLK>,
1130 <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>;
1131 clock-names = "gpmi_io", "gpmi_bch_apb";
1132 dmas = <&dma_apbh 0>;
1133 dma-names = "rx-tx";
1134 status = "disabled";
1135 assigned-clocks = <&clks IMX7D_NAND_ROOT_SRC>;
1136 assigned-clock-parents = <&clks IMX7D_PLL_ENET_MAIN_500M_CLK>;
1137 };
Frank Li94967342015-05-19 02:45:04 +08001138 };
1139};