1// SPDX-License-Identifier: GPL-2.0+ OR MIT 2// 3// Copyright 2015 Freescale Semiconductor, Inc. 4// Copyright 2016 Toradex AG 5 6#include <dt-bindings/clock/imx7d-clock.h> 7#include <dt-bindings/power/imx7-power.h> 8#include <dt-bindings/gpio/gpio.h> 9#include <dt-bindings/input/input.h> 10#include <dt-bindings/interrupt-controller/arm-gic.h> 11#include <dt-bindings/reset/imx7-reset.h> 12#include "imx7d-pinfunc.h" 13 14/ { 15 #address-cells = <1>; 16 #size-cells = <1>; 17 /* 18 * The decompressor and also some bootloaders rely on a 19 * pre-existing /chosen node to be available to insert the 20 * command line and merge other ATAGS info. 21 */ 22 chosen {}; 23 24 aliases { 25 gpio0 = &gpio1; 26 gpio1 = &gpio2; 27 gpio2 = &gpio3; 28 gpio3 = &gpio4; 29 gpio4 = &gpio5; 30 gpio5 = &gpio6; 31 gpio6 = &gpio7; 32 i2c0 = &i2c1; 33 i2c1 = &i2c2; 34 i2c2 = &i2c3; 35 i2c3 = &i2c4; 36 mmc0 = &usdhc1; 37 mmc1 = &usdhc2; 38 mmc2 = &usdhc3; 39 serial0 = &uart1; 40 serial1 = &uart2; 41 serial2 = &uart3; 42 serial3 = &uart4; 43 serial4 = &uart5; 44 serial5 = &uart6; 45 serial6 = &uart7; 46 spi0 = &ecspi1; 47 spi1 = &ecspi2; 48 spi2 = &ecspi3; 49 spi3 = &ecspi4; 50 usb0 = &usbotg1; 51 usb1 = &usbh; 52 }; 53 54 cpus { 55 #address-cells = <1>; 56 #size-cells = <0>; 57 58 idle-states { 59 entry-method = "psci"; 60 61 cpu_sleep_wait: cpu-sleep-wait { 62 compatible = "arm,idle-state"; 63 arm,psci-suspend-param = <0x0010000>; 64 local-timer-stop; 65 entry-latency-us = <100>; 66 exit-latency-us = <50>; 67 min-residency-us = <1000>; 68 }; 69 }; 70 71 cpu0: cpu@0 { 72 compatible = "arm,cortex-a7"; 73 device_type = "cpu"; 74 reg = <0>; 75 clock-frequency = <792000000>; 76 clock-latency = <61036>; /* two CLK32 periods */ 77 clocks = <&clks IMX7D_CLK_ARM>; 78 cpu-idle-states = <&cpu_sleep_wait>; 79 operating-points-v2 = <&cpu0_opp_table>; 80 #cooling-cells = <2>; 81 nvmem-cells = <&fuse_grade>; 82 nvmem-cell-names = "speed_grade"; 83 }; 84 }; 85 86 cpu0_opp_table: opp-table { 87 compatible = "operating-points-v2"; 88 opp-shared; 89 90 opp-792000000 { 91 opp-hz = /bits/ 64 <792000000>; 92 opp-microvolt = <1000000>; 93 clock-latency-ns = <150000>; 94 opp-supported-hw = <0xf>, <0xf>; 95 }; 96 }; 97 98 ckil: clock-cki { 99 compatible = "fixed-clock"; 100 #clock-cells = <0>; 101 clock-frequency = <32768>; 102 clock-output-names = "ckil"; 103 }; 104 105 osc: clock-osc { 106 compatible = "fixed-clock"; 107 #clock-cells = <0>; 108 clock-frequency = <24000000>; 109 clock-output-names = "osc"; 110 }; 111 112 usbphynop1: usbphynop1 { 113 compatible = "usb-nop-xceiv"; 114 clocks = <&clks IMX7D_USB_PHY1_CLK>; 115 clock-names = "main_clk"; 116 #phy-cells = <0>; 117 }; 118 119 usbphynop3: usbphynop3 { 120 compatible = "usb-nop-xceiv"; 121 clocks = <&clks IMX7D_USB_HSIC_ROOT_CLK>; 122 clock-names = "main_clk"; 123 power-domains = <&pgc_hsic_phy>; 124 #phy-cells = <0>; 125 }; 126 127 pmu { 128 compatible = "arm,cortex-a7-pmu"; 129 interrupt-parent = <&gpc>; 130 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>; 131 interrupt-affinity = <&cpu0>; 132 }; 133 134 replicator { 135 /* 136 * non-configurable replicators don't show up on the 137 * AMBA bus. As such no need to add "arm,primecell" 138 */ 139 compatible = "arm,coresight-static-replicator"; 140 141 out-ports { 142 #address-cells = <1>; 143 #size-cells = <0>; 144 /* replicator output ports */ 145 port@0 { 146 reg = <0>; 147 replicator_out_port0: endpoint { 148 remote-endpoint = <&tpiu_in_port>; 149 }; 150 }; 151 152 port@1 { 153 reg = <1>; 154 replicator_out_port1: endpoint { 155 remote-endpoint = <&etr_in_port>; 156 }; 157 }; 158 }; 159 160 in-ports { 161 port { 162 replicator_in_port0: endpoint { 163 remote-endpoint = <&etf_out_port>; 164 }; 165 }; 166 }; 167 }; 168 169 timer { 170 compatible = "arm,armv7-timer"; 171 arm,cpu-registers-not-fw-configured; 172 interrupt-parent = <&intc>; 173 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, 174 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, 175 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, 176 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>; 177 }; 178 179 video_mux: csi-mux { 180 compatible = "video-mux"; 181 mux-controls = <&mux 0>; 182 #address-cells = <1>; 183 #size-cells = <0>; 184 status = "disabled"; 185 186 port@0 { 187 reg = <0>; 188 }; 189 190 port@1 { 191 reg = <1>; 192 193 csi_mux_from_mipi_vc0: endpoint { 194 remote-endpoint = <&mipi_vc0_to_csi_mux>; 195 }; 196 }; 197 198 port@2 { 199 reg = <2>; 200 201 csi_mux_to_csi: endpoint { 202 remote-endpoint = <&csi_from_csi_mux>; 203 }; 204 }; 205 }; 206 207 soc: soc { 208 #address-cells = <1>; 209 #size-cells = <1>; 210 compatible = "simple-bus"; 211 interrupt-parent = <&gpc>; 212 ranges; 213 214 ocram: sram@900000 { 215 compatible = "mmio-sram"; 216 reg = <0x00900000 0x20000>; 217 ranges = <0 0x00900000 0x20000>; 218 #address-cells = <1>; 219 #size-cells = <1>; 220 clocks = <&clks IMX7D_OCRAM_CLK>; 221 }; 222 223 funnel@30041000 { 224 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 225 reg = <0x30041000 0x1000>; 226 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 227 clock-names = "apb_pclk"; 228 229 ca_funnel_in_ports: in-ports { 230 #address-cells = <1>; 231 #size-cells = <0>; 232 233 port@0 { 234 reg = <0>; 235 ca_funnel_in_port0: endpoint { 236 remote-endpoint = <&etm0_out_port>; 237 }; 238 }; 239 240 /* the other input ports are not connect to anything */ 241 }; 242 243 out-ports { 244 port { 245 ca_funnel_out_port0: endpoint { 246 remote-endpoint = <&hugo_funnel_in_port0>; 247 }; 248 }; 249 250 }; 251 }; 252 253 etm@3007c000 { 254 compatible = "arm,coresight-etm3x", "arm,primecell"; 255 reg = <0x3007c000 0x1000>; 256 cpu = <&cpu0>; 257 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 258 clock-names = "apb_pclk"; 259 260 out-ports { 261 port { 262 etm0_out_port: endpoint { 263 remote-endpoint = <&ca_funnel_in_port0>; 264 }; 265 }; 266 }; 267 }; 268 269 funnel@30083000 { 270 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 271 reg = <0x30083000 0x1000>; 272 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 273 clock-names = "apb_pclk"; 274 275 in-ports { 276 #address-cells = <1>; 277 #size-cells = <0>; 278 279 port@0 { 280 reg = <0>; 281 hugo_funnel_in_port0: endpoint { 282 remote-endpoint = <&ca_funnel_out_port0>; 283 }; 284 }; 285 286 port@1 { 287 reg = <1>; 288 hugo_funnel_in_port1: endpoint { 289 /* M4 input */ 290 }; 291 }; 292 /* the other input ports are not connect to anything */ 293 }; 294 295 out-ports { 296 port { 297 hugo_funnel_out_port0: endpoint { 298 remote-endpoint = <&etf_in_port>; 299 }; 300 }; 301 }; 302 }; 303 304 etf@30084000 { 305 compatible = "arm,coresight-tmc", "arm,primecell"; 306 reg = <0x30084000 0x1000>; 307 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 308 clock-names = "apb_pclk"; 309 310 in-ports { 311 port { 312 etf_in_port: endpoint { 313 remote-endpoint = <&hugo_funnel_out_port0>; 314 }; 315 }; 316 }; 317 318 out-ports { 319 port { 320 etf_out_port: endpoint { 321 remote-endpoint = <&replicator_in_port0>; 322 }; 323 }; 324 }; 325 }; 326 327 etr@30086000 { 328 compatible = "arm,coresight-tmc", "arm,primecell"; 329 reg = <0x30086000 0x1000>; 330 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 331 clock-names = "apb_pclk"; 332 333 in-ports { 334 port { 335 etr_in_port: endpoint { 336 remote-endpoint = <&replicator_out_port1>; 337 }; 338 }; 339 }; 340 }; 341 342 tpiu@30087000 { 343 compatible = "arm,coresight-tpiu", "arm,primecell"; 344 reg = <0x30087000 0x1000>; 345 clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; 346 clock-names = "apb_pclk"; 347 348 in-ports { 349 port { 350 tpiu_in_port: endpoint { 351 remote-endpoint = <&replicator_out_port0>; 352 }; 353 }; 354 }; 355 }; 356 357 intc: interrupt-controller@31001000 { 358 compatible = "arm,cortex-a7-gic"; 359 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_HIGH)>; 360 #interrupt-cells = <3>; 361 interrupt-controller; 362 interrupt-parent = <&intc>; 363 reg = <0x31001000 0x1000>, 364 <0x31002000 0x2000>, 365 <0x31004000 0x2000>, 366 <0x31006000 0x2000>; 367 }; 368 369 aips1: bus@30000000 { 370 compatible = "fsl,aips-bus", "simple-bus"; 371 #address-cells = <1>; 372 #size-cells = <1>; 373 reg = <0x30000000 0x400000>; 374 ranges; 375 376 gpio1: gpio@30200000 { 377 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 378 reg = <0x30200000 0x10000>; 379 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>, /* GPIO1_INT15_0 */ 380 <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; /* GPIO1_INT31_16 */ 381 gpio-controller; 382 #gpio-cells = <2>; 383 interrupt-controller; 384 #interrupt-cells = <2>; 385 gpio-ranges = <&iomuxc_lpsr 0 0 8>, <&iomuxc 8 5 8>; 386 }; 387 388 gpio2: gpio@30210000 { 389 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 390 reg = <0x30210000 0x10000>; 391 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>, 392 <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; 393 gpio-controller; 394 #gpio-cells = <2>; 395 interrupt-controller; 396 #interrupt-cells = <2>; 397 gpio-ranges = <&iomuxc 0 13 32>; 398 }; 399 400 gpio3: gpio@30220000 { 401 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 402 reg = <0x30220000 0x10000>; 403 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>, 404 <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>; 405 gpio-controller; 406 #gpio-cells = <2>; 407 interrupt-controller; 408 #interrupt-cells = <2>; 409 gpio-ranges = <&iomuxc 0 45 29>; 410 }; 411 412 gpio4: gpio@30230000 { 413 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 414 reg = <0x30230000 0x10000>; 415 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>, 416 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; 417 gpio-controller; 418 #gpio-cells = <2>; 419 interrupt-controller; 420 #interrupt-cells = <2>; 421 gpio-ranges = <&iomuxc 0 74 24>; 422 }; 423 424 gpio5: gpio@30240000 { 425 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 426 reg = <0x30240000 0x10000>; 427 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>, 428 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>; 429 gpio-controller; 430 #gpio-cells = <2>; 431 interrupt-controller; 432 #interrupt-cells = <2>; 433 gpio-ranges = <&iomuxc 0 98 18>; 434 }; 435 436 gpio6: gpio@30250000 { 437 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 438 reg = <0x30250000 0x10000>; 439 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>, 440 <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; 441 gpio-controller; 442 #gpio-cells = <2>; 443 interrupt-controller; 444 #interrupt-cells = <2>; 445 gpio-ranges = <&iomuxc 0 116 23>; 446 }; 447 448 gpio7: gpio@30260000 { 449 compatible = "fsl,imx7d-gpio", "fsl,imx35-gpio"; 450 reg = <0x30260000 0x10000>; 451 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>, 452 <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 453 gpio-controller; 454 #gpio-cells = <2>; 455 interrupt-controller; 456 #interrupt-cells = <2>; 457 gpio-ranges = <&iomuxc 0 139 16>; 458 }; 459 460 wdog1: watchdog@30280000 { 461 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt"; 462 reg = <0x30280000 0x10000>; 463 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>; 464 clocks = <&clks IMX7D_WDOG1_ROOT_CLK>; 465 }; 466 467 wdog2: watchdog@30290000 { 468 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt"; 469 reg = <0x30290000 0x10000>; 470 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>; 471 clocks = <&clks IMX7D_WDOG2_ROOT_CLK>; 472 status = "disabled"; 473 }; 474 475 wdog3: watchdog@302a0000 { 476 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt"; 477 reg = <0x302a0000 0x10000>; 478 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 479 clocks = <&clks IMX7D_WDOG3_ROOT_CLK>; 480 status = "disabled"; 481 }; 482 483 wdog4: watchdog@302b0000 { 484 compatible = "fsl,imx7d-wdt", "fsl,imx21-wdt"; 485 reg = <0x302b0000 0x10000>; 486 interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>; 487 clocks = <&clks IMX7D_WDOG4_ROOT_CLK>; 488 status = "disabled"; 489 }; 490 491 iomuxc_lpsr: pinctrl@302c0000 { 492 compatible = "fsl,imx7d-iomuxc-lpsr"; 493 reg = <0x302c0000 0x10000>; 494 fsl,input-sel = <&iomuxc>; 495 }; 496 497 gpt1: timer@302d0000 { 498 compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; 499 reg = <0x302d0000 0x10000>; 500 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>; 501 clocks = <&clks IMX7D_GPT1_ROOT_CLK>, 502 <&clks IMX7D_GPT1_ROOT_CLK>; 503 clock-names = "ipg", "per"; 504 }; 505 506 gpt2: timer@302e0000 { 507 compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; 508 reg = <0x302e0000 0x10000>; 509 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>; 510 clocks = <&clks IMX7D_GPT2_ROOT_CLK>, 511 <&clks IMX7D_GPT2_ROOT_CLK>; 512 clock-names = "ipg", "per"; 513 status = "disabled"; 514 }; 515 516 gpt3: timer@302f0000 { 517 compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; 518 reg = <0x302f0000 0x10000>; 519 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>; 520 clocks = <&clks IMX7D_GPT3_ROOT_CLK>, 521 <&clks IMX7D_GPT3_ROOT_CLK>; 522 clock-names = "ipg", "per"; 523 status = "disabled"; 524 }; 525 526 gpt4: timer@30300000 { 527 compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; 528 reg = <0x30300000 0x10000>; 529 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; 530 clocks = <&clks IMX7D_GPT4_ROOT_CLK>, 531 <&clks IMX7D_GPT4_ROOT_CLK>; 532 clock-names = "ipg", "per"; 533 status = "disabled"; 534 }; 535 536 kpp: keypad@30320000 { 537 compatible = "fsl,imx7d-kpp", "fsl,imx21-kpp"; 538 reg = <0x30320000 0x10000>; 539 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>; 540 clocks = <&clks IMX7D_KPP_ROOT_CLK>; 541 status = "disabled"; 542 }; 543 544 iomuxc: pinctrl@30330000 { 545 compatible = "fsl,imx7d-iomuxc"; 546 reg = <0x30330000 0x10000>; 547 }; 548 549 gpr: iomuxc-gpr@30340000 { 550 compatible = "fsl,imx7d-iomuxc-gpr", 551 "fsl,imx6q-iomuxc-gpr", "syscon", 552 "simple-mfd"; 553 reg = <0x30340000 0x10000>; 554 555 mux: mux-controller { 556 compatible = "mmio-mux"; 557 #mux-control-cells = <1>; 558 mux-reg-masks = <0x14 0x00000010>; 559 }; 560 }; 561 562 ocotp: efuse@30350000 { 563 #address-cells = <1>; 564 #size-cells = <1>; 565 compatible = "fsl,imx7d-ocotp", "syscon"; 566 reg = <0x30350000 0x10000>; 567 clocks = <&clks IMX7D_OCOTP_CLK>; 568 569 tempmon_calib: calib@3c { 570 reg = <0x3c 0x4>; 571 }; 572 573 fuse_grade: fuse-grade@10 { 574 reg = <0x10 0x4>; 575 }; 576 }; 577 578 anatop: anatop@30360000 { 579 compatible = "fsl,imx7d-anatop", "fsl,imx6q-anatop", 580 "syscon", "simple-mfd"; 581 reg = <0x30360000 0x10000>; 582 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>, 583 <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>; 584 585 reg_1p0d: regulator-vdd1p0d { 586 compatible = "fsl,anatop-regulator"; 587 regulator-name = "vdd1p0d"; 588 regulator-min-microvolt = <800000>; 589 regulator-max-microvolt = <1200000>; 590 anatop-reg-offset = <0x210>; 591 anatop-vol-bit-shift = <8>; 592 anatop-vol-bit-width = <5>; 593 anatop-min-bit-val = <8>; 594 anatop-min-voltage = <800000>; 595 anatop-max-voltage = <1200000>; 596 anatop-enable-bit = <0>; 597 }; 598 599 reg_1p2: regulator-vdd1p2 { 600 compatible = "fsl,anatop-regulator"; 601 regulator-name = "vdd1p2"; 602 regulator-min-microvolt = <1100000>; 603 regulator-max-microvolt = <1300000>; 604 anatop-reg-offset = <0x220>; 605 anatop-vol-bit-shift = <8>; 606 anatop-vol-bit-width = <5>; 607 anatop-min-bit-val = <0x14>; 608 anatop-min-voltage = <1100000>; 609 anatop-max-voltage = <1300000>; 610 anatop-enable-bit = <0>; 611 }; 612 613 tempmon: tempmon { 614 compatible = "fsl,imx7d-tempmon"; 615 interrupt-parent = <&gpc>; 616 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; 617 fsl,tempmon = <&anatop>; 618 nvmem-cells = <&tempmon_calib>, <&fuse_grade>; 619 nvmem-cell-names = "calib", "temp_grade"; 620 clocks = <&clks IMX7D_PLL_SYS_MAIN_CLK>; 621 #thermal-sensor-cells = <0>; 622 }; 623 }; 624 625 snvs: snvs@30370000 { 626 compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd"; 627 reg = <0x30370000 0x10000>; 628 629 snvs_rtc: snvs-rtc-lp { 630 compatible = "fsl,sec-v4.0-mon-rtc-lp"; 631 regmap = <&snvs>; 632 offset = <0x34>; 633 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>, 634 <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 635 clocks = <&clks IMX7D_SNVS_CLK>; 636 clock-names = "snvs-rtc"; 637 }; 638 639 snvs_poweroff: snvs-poweroff { 640 compatible = "syscon-poweroff"; 641 regmap = <&snvs>; 642 offset = <0x38>; 643 value = <0x60>; 644 mask = <0x60>; 645 status = "disabled"; 646 }; 647 648 snvs_pwrkey: snvs-powerkey { 649 compatible = "fsl,sec-v4.0-pwrkey"; 650 regmap = <&snvs>; 651 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; 652 clocks = <&clks IMX7D_SNVS_CLK>; 653 clock-names = "snvs-pwrkey"; 654 linux,keycode = <KEY_POWER>; 655 wakeup-source; 656 status = "disabled"; 657 }; 658 }; 659 660 clks: clock-controller@30380000 { 661 compatible = "fsl,imx7d-ccm"; 662 reg = <0x30380000 0x10000>; 663 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>, 664 <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; 665 #clock-cells = <1>; 666 clocks = <&ckil>, <&osc>; 667 clock-names = "ckil", "osc"; 668 }; 669 670 src: reset-controller@30390000 { 671 compatible = "fsl,imx7d-src", "syscon"; 672 reg = <0x30390000 0x10000>; 673 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; 674 #reset-cells = <1>; 675 }; 676 677 gpc: gpc@303a0000 { 678 compatible = "fsl,imx7d-gpc"; 679 reg = <0x303a0000 0x10000>; 680 interrupt-controller; 681 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>; 682 #interrupt-cells = <3>; 683 interrupt-parent = <&intc>; 684 685 pgc { 686 #address-cells = <1>; 687 #size-cells = <0>; 688 689 pgc_mipi_phy: power-domain@0 { 690 #power-domain-cells = <0>; 691 reg = <0>; 692 power-supply = <®_1p0d>; 693 }; 694 695 pgc_pcie_phy: power-domain@1 { 696 #power-domain-cells = <0>; 697 reg = <1>; 698 power-supply = <®_1p0d>; 699 }; 700 701 pgc_hsic_phy: power-domain@2 { 702 #power-domain-cells = <0>; 703 reg = <2>; 704 power-supply = <®_1p2>; 705 }; 706 }; 707 }; 708 }; 709 710 aips2: bus@30400000 { 711 compatible = "fsl,aips-bus", "simple-bus"; 712 #address-cells = <1>; 713 #size-cells = <1>; 714 reg = <0x30400000 0x400000>; 715 ranges; 716 717 adc1: adc@30610000 { 718 compatible = "fsl,imx7d-adc"; 719 reg = <0x30610000 0x10000>; 720 interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>; 721 clocks = <&clks IMX7D_ADC_ROOT_CLK>; 722 clock-names = "adc"; 723 #io-channel-cells = <1>; 724 status = "disabled"; 725 }; 726 727 adc2: adc@30620000 { 728 compatible = "fsl,imx7d-adc"; 729 reg = <0x30620000 0x10000>; 730 interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>; 731 clocks = <&clks IMX7D_ADC_ROOT_CLK>; 732 clock-names = "adc"; 733 #io-channel-cells = <1>; 734 status = "disabled"; 735 }; 736 737 ecspi4: spi@30630000 { 738 #address-cells = <1>; 739 #size-cells = <0>; 740 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; 741 reg = <0x30630000 0x10000>; 742 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 743 clocks = <&clks IMX7D_ECSPI4_ROOT_CLK>, 744 <&clks IMX7D_ECSPI4_ROOT_CLK>; 745 clock-names = "ipg", "per"; 746 dma-names = "rx", "tx"; 747 dmas = <&sdma 6 7 1>, <&sdma 7 7 2>; 748 status = "disabled"; 749 }; 750 751 ftm1: pwm@30640000 { 752 compatible = "fsl,vf610-ftm-pwm"; 753 reg = <0x30640000 0x10000>; 754 #pwm-cells = <3>; 755 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>; 756 clock-names = "ftm_sys", "ftm_ext", 757 "ftm_fix", "ftm_cnt_clk_en"; 758 clocks = <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, 759 <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, 760 <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, 761 <&clks IMX7D_FLEXTIMER1_ROOT_CLK>; 762 status = "disabled"; 763 }; 764 765 ftm2: pwm@30650000 { 766 compatible = "fsl,vf610-ftm-pwm"; 767 reg = <0x30650000 0x10000>; 768 #pwm-cells = <3>; 769 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; 770 clock-names = "ftm_sys", "ftm_ext", 771 "ftm_fix", "ftm_cnt_clk_en"; 772 clocks = <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, 773 <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, 774 <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, 775 <&clks IMX7D_FLEXTIMER2_ROOT_CLK>; 776 status = "disabled"; 777 }; 778 779 pwm1: pwm@30660000 { 780 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; 781 reg = <0x30660000 0x10000>; 782 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; 783 clocks = <&clks IMX7D_PWM1_ROOT_CLK>, 784 <&clks IMX7D_PWM1_ROOT_CLK>; 785 clock-names = "ipg", "per"; 786 #pwm-cells = <3>; 787 status = "disabled"; 788 }; 789 790 pwm2: pwm@30670000 { 791 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; 792 reg = <0x30670000 0x10000>; 793 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 794 clocks = <&clks IMX7D_PWM2_ROOT_CLK>, 795 <&clks IMX7D_PWM2_ROOT_CLK>; 796 clock-names = "ipg", "per"; 797 #pwm-cells = <3>; 798 status = "disabled"; 799 }; 800 801 pwm3: pwm@30680000 { 802 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; 803 reg = <0x30680000 0x10000>; 804 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 805 clocks = <&clks IMX7D_PWM3_ROOT_CLK>, 806 <&clks IMX7D_PWM3_ROOT_CLK>; 807 clock-names = "ipg", "per"; 808 #pwm-cells = <3>; 809 status = "disabled"; 810 }; 811 812 pwm4: pwm@30690000 { 813 compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; 814 reg = <0x30690000 0x10000>; 815 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; 816 clocks = <&clks IMX7D_PWM4_ROOT_CLK>, 817 <&clks IMX7D_PWM4_ROOT_CLK>; 818 clock-names = "ipg", "per"; 819 #pwm-cells = <3>; 820 status = "disabled"; 821 }; 822 823 csi: csi@30710000 { 824 compatible = "fsl,imx7-csi"; 825 reg = <0x30710000 0x10000>; 826 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; 827 clocks = <&clks IMX7D_CSI_MCLK_ROOT_CLK>; 828 clock-names = "mclk"; 829 status = "disabled"; 830 831 port { 832 csi_from_csi_mux: endpoint { 833 remote-endpoint = <&csi_mux_to_csi>; 834 }; 835 }; 836 }; 837 838 lcdif: lcdif@30730000 { 839 compatible = "fsl,imx7d-lcdif", "fsl,imx6sx-lcdif"; 840 reg = <0x30730000 0x10000>; 841 interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; 842 clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>, 843 <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>; 844 clock-names = "pix", "axi"; 845 status = "disabled"; 846 }; 847 848 mipi_csi: mipi-csi@30750000 { 849 compatible = "fsl,imx7-mipi-csi2"; 850 reg = <0x30750000 0x10000>; 851 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>; 852 clocks = <&clks IMX7D_IPG_ROOT_CLK>, 853 <&clks IMX7D_MIPI_CSI_ROOT_CLK>, 854 <&clks IMX7D_MIPI_DPHY_ROOT_CLK>; 855 clock-names = "pclk", "wrap", "phy"; 856 power-domains = <&pgc_mipi_phy>; 857 phy-supply = <®_1p0d>; 858 resets = <&src IMX7_RESET_MIPI_PHY_MRST>; 859 status = "disabled"; 860 861 ports { 862 #address-cells = <1>; 863 #size-cells = <0>; 864 865 port@0 { 866 reg = <0>; 867 }; 868 869 port@1 { 870 reg = <1>; 871 872 mipi_vc0_to_csi_mux: endpoint { 873 remote-endpoint = <&csi_mux_from_mipi_vc0>; 874 }; 875 }; 876 }; 877 }; 878 879 mipi_dsi: dsi@30760000 { 880 compatible = "fsl,imx7d-mipi-dsim", "fsl,imx8mm-mipi-dsim"; 881 #address-cells = <1>; 882 #size-cells = <0>; 883 reg = <0x30760000 0x400>; 884 clocks = <&clks IMX7D_MIPI_DSI_ROOT_CLK>, 885 <&clks IMX7D_MIPI_DPHY_ROOT_CLK>; 886 clock-names = "bus_clk", "sclk_mipi"; 887 assigned-clocks = <&clks IMX7D_MIPI_DSI_ROOT_SRC>, 888 <&clks IMX7D_PLL_SYS_PFD5_CLK>; 889 assigned-clock-parents = <&clks IMX7D_PLL_SYS_PFD5_CLK>; 890 assigned-clock-rates = <0>, <333000000>; 891 power-domains = <&pgc_mipi_phy>; 892 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; 893 samsung,burst-clock-frequency = <891000000>; 894 samsung,esc-clock-frequency = <20000000>; 895 samsung,pll-clock-frequency = <24000000>; 896 status = "disabled"; 897 }; 898 }; 899 900 aips3: bus@30800000 { 901 compatible = "fsl,aips-bus", "simple-bus"; 902 #address-cells = <1>; 903 #size-cells = <1>; 904 reg = <0x30800000 0x400000>; 905 ranges; 906 907 spba-bus@30800000 { 908 compatible = "fsl,spba-bus", "simple-bus"; 909 #address-cells = <1>; 910 #size-cells = <1>; 911 reg = <0x30800000 0x100000>; 912 ranges; 913 914 ecspi1: spi@30820000 { 915 #address-cells = <1>; 916 #size-cells = <0>; 917 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; 918 reg = <0x30820000 0x10000>; 919 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>; 920 clocks = <&clks IMX7D_ECSPI1_ROOT_CLK>, 921 <&clks IMX7D_ECSPI1_ROOT_CLK>; 922 clock-names = "ipg", "per"; 923 dma-names = "rx", "tx"; 924 dmas = <&sdma 0 7 1>, <&sdma 1 7 2>; 925 status = "disabled"; 926 }; 927 928 ecspi2: spi@30830000 { 929 #address-cells = <1>; 930 #size-cells = <0>; 931 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; 932 reg = <0x30830000 0x10000>; 933 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 934 clocks = <&clks IMX7D_ECSPI2_ROOT_CLK>, 935 <&clks IMX7D_ECSPI2_ROOT_CLK>; 936 clock-names = "ipg", "per"; 937 dma-names = "rx", "tx"; 938 dmas = <&sdma 2 7 1>, <&sdma 3 7 2>; 939 status = "disabled"; 940 }; 941 942 ecspi3: spi@30840000 { 943 #address-cells = <1>; 944 #size-cells = <0>; 945 compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; 946 reg = <0x30840000 0x10000>; 947 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 948 clocks = <&clks IMX7D_ECSPI3_ROOT_CLK>, 949 <&clks IMX7D_ECSPI3_ROOT_CLK>; 950 clock-names = "ipg", "per"; 951 dma-names = "rx", "tx"; 952 dmas = <&sdma 4 7 1>, <&sdma 5 7 2>; 953 status = "disabled"; 954 }; 955 956 uart1: serial@30860000 { 957 compatible = "fsl,imx7d-uart", 958 "fsl,imx6q-uart"; 959 reg = <0x30860000 0x10000>; 960 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; 961 clocks = <&clks IMX7D_UART1_ROOT_CLK>, 962 <&clks IMX7D_UART1_ROOT_CLK>; 963 clock-names = "ipg", "per"; 964 status = "disabled"; 965 }; 966 967 uart2: serial@30890000 { 968 compatible = "fsl,imx7d-uart", 969 "fsl,imx6q-uart"; 970 reg = <0x30890000 0x10000>; 971 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; 972 clocks = <&clks IMX7D_UART2_ROOT_CLK>, 973 <&clks IMX7D_UART2_ROOT_CLK>; 974 clock-names = "ipg", "per"; 975 status = "disabled"; 976 }; 977 978 uart3: serial@30880000 { 979 compatible = "fsl,imx7d-uart", 980 "fsl,imx6q-uart"; 981 reg = <0x30880000 0x10000>; 982 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; 983 clocks = <&clks IMX7D_UART3_ROOT_CLK>, 984 <&clks IMX7D_UART3_ROOT_CLK>; 985 clock-names = "ipg", "per"; 986 status = "disabled"; 987 }; 988 989 sai1: sai@308a0000 { 990 #sound-dai-cells = <0>; 991 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; 992 reg = <0x308a0000 0x10000>; 993 interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>; 994 clocks = <&clks IMX7D_SAI1_IPG_CLK>, 995 <&clks IMX7D_SAI1_ROOT_CLK>, 996 <&clks IMX7D_CLK_DUMMY>, 997 <&clks IMX7D_CLK_DUMMY>; 998 clock-names = "bus", "mclk1", "mclk2", "mclk3"; 999 dma-names = "rx", "tx"; 1000 dmas = <&sdma 8 24 0>, <&sdma 9 24 0>; 1001 status = "disabled"; 1002 }; 1003 1004 sai2: sai@308b0000 { 1005 #sound-dai-cells = <0>; 1006 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; 1007 reg = <0x308b0000 0x10000>; 1008 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; 1009 clocks = <&clks IMX7D_SAI2_IPG_CLK>, 1010 <&clks IMX7D_SAI2_ROOT_CLK>, 1011 <&clks IMX7D_CLK_DUMMY>, 1012 <&clks IMX7D_CLK_DUMMY>; 1013 clock-names = "bus", "mclk1", "mclk2", "mclk3"; 1014 dma-names = "rx", "tx"; 1015 dmas = <&sdma 10 24 0>, <&sdma 11 24 0>; 1016 status = "disabled"; 1017 }; 1018 1019 sai3: sai@308c0000 { 1020 #sound-dai-cells = <0>; 1021 compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; 1022 reg = <0x308c0000 0x10000>; 1023 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>; 1024 clocks = <&clks IMX7D_SAI3_IPG_CLK>, 1025 <&clks IMX7D_SAI3_ROOT_CLK>, 1026 <&clks IMX7D_CLK_DUMMY>, 1027 <&clks IMX7D_CLK_DUMMY>; 1028 clock-names = "bus", "mclk1", "mclk2", "mclk3"; 1029 dma-names = "rx", "tx"; 1030 dmas = <&sdma 12 24 0>, <&sdma 13 24 0>; 1031 status = "disabled"; 1032 }; 1033 }; 1034 1035 crypto: crypto@30900000 { 1036 compatible = "fsl,sec-v4.0"; 1037 #address-cells = <1>; 1038 #size-cells = <1>; 1039 reg = <0x30900000 0x40000>; 1040 ranges = <0 0x30900000 0x40000>; 1041 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>; 1042 clocks = <&clks IMX7D_CAAM_CLK>, 1043 <&clks IMX7D_AHB_CHANNEL_ROOT_CLK>; 1044 clock-names = "ipg", "aclk"; 1045 1046 sec_jr0: jr@1000 { 1047 compatible = "fsl,sec-v4.0-job-ring"; 1048 reg = <0x1000 0x1000>; 1049 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>; 1050 }; 1051 1052 sec_jr1: jr@2000 { 1053 compatible = "fsl,sec-v4.0-job-ring"; 1054 reg = <0x2000 0x1000>; 1055 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>; 1056 }; 1057 1058 sec_jr2: jr@3000 { 1059 compatible = "fsl,sec-v4.0-job-ring"; 1060 reg = <0x3000 0x1000>; 1061 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; 1062 }; 1063 }; 1064 1065 flexcan1: can@30a00000 { 1066 compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan"; 1067 reg = <0x30a00000 0x10000>; 1068 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>; 1069 clocks = <&clks IMX7D_CLK_DUMMY>, 1070 <&clks IMX7D_CAN1_ROOT_CLK>; 1071 clock-names = "ipg", "per"; 1072 fsl,stop-mode = <&gpr 0x10 1>; 1073 status = "disabled"; 1074 }; 1075 1076 flexcan2: can@30a10000 { 1077 compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan"; 1078 reg = <0x30a10000 0x10000>; 1079 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>; 1080 clocks = <&clks IMX7D_CLK_DUMMY>, 1081 <&clks IMX7D_CAN2_ROOT_CLK>; 1082 clock-names = "ipg", "per"; 1083 fsl,stop-mode = <&gpr 0x10 2>; 1084 status = "disabled"; 1085 }; 1086 1087 i2c1: i2c@30a20000 { 1088 #address-cells = <1>; 1089 #size-cells = <0>; 1090 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; 1091 reg = <0x30a20000 0x10000>; 1092 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; 1093 clocks = <&clks IMX7D_I2C1_ROOT_CLK>; 1094 status = "disabled"; 1095 }; 1096 1097 i2c2: i2c@30a30000 { 1098 #address-cells = <1>; 1099 #size-cells = <0>; 1100 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; 1101 reg = <0x30a30000 0x10000>; 1102 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; 1103 clocks = <&clks IMX7D_I2C2_ROOT_CLK>; 1104 status = "disabled"; 1105 }; 1106 1107 i2c3: i2c@30a40000 { 1108 #address-cells = <1>; 1109 #size-cells = <0>; 1110 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; 1111 reg = <0x30a40000 0x10000>; 1112 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; 1113 clocks = <&clks IMX7D_I2C3_ROOT_CLK>; 1114 status = "disabled"; 1115 }; 1116 1117 i2c4: i2c@30a50000 { 1118 #address-cells = <1>; 1119 #size-cells = <0>; 1120 compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; 1121 reg = <0x30a50000 0x10000>; 1122 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; 1123 clocks = <&clks IMX7D_I2C4_ROOT_CLK>; 1124 status = "disabled"; 1125 }; 1126 1127 uart4: serial@30a60000 { 1128 compatible = "fsl,imx7d-uart", 1129 "fsl,imx6q-uart"; 1130 reg = <0x30a60000 0x10000>; 1131 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; 1132 clocks = <&clks IMX7D_UART4_ROOT_CLK>, 1133 <&clks IMX7D_UART4_ROOT_CLK>; 1134 clock-names = "ipg", "per"; 1135 status = "disabled"; 1136 }; 1137 1138 uart5: serial@30a70000 { 1139 compatible = "fsl,imx7d-uart", 1140 "fsl,imx6q-uart"; 1141 reg = <0x30a70000 0x10000>; 1142 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>; 1143 clocks = <&clks IMX7D_UART5_ROOT_CLK>, 1144 <&clks IMX7D_UART5_ROOT_CLK>; 1145 clock-names = "ipg", "per"; 1146 status = "disabled"; 1147 }; 1148 1149 uart6: serial@30a80000 { 1150 compatible = "fsl,imx7d-uart", 1151 "fsl,imx6q-uart"; 1152 reg = <0x30a80000 0x10000>; 1153 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>; 1154 clocks = <&clks IMX7D_UART6_ROOT_CLK>, 1155 <&clks IMX7D_UART6_ROOT_CLK>; 1156 clock-names = "ipg", "per"; 1157 status = "disabled"; 1158 }; 1159 1160 uart7: serial@30a90000 { 1161 compatible = "fsl,imx7d-uart", 1162 "fsl,imx6q-uart"; 1163 reg = <0x30a90000 0x10000>; 1164 interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>; 1165 clocks = <&clks IMX7D_UART7_ROOT_CLK>, 1166 <&clks IMX7D_UART7_ROOT_CLK>; 1167 clock-names = "ipg", "per"; 1168 status = "disabled"; 1169 }; 1170 1171 mu0a: mailbox@30aa0000 { 1172 compatible = "fsl,imx7s-mu", "fsl,imx6sx-mu"; 1173 reg = <0x30aa0000 0x10000>; 1174 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; 1175 clocks = <&clks IMX7D_MU_ROOT_CLK>; 1176 #mbox-cells = <2>; 1177 status = "disabled"; 1178 }; 1179 1180 mu0b: mailbox@30ab0000 { 1181 compatible = "fsl,imx7s-mu", "fsl,imx6sx-mu"; 1182 reg = <0x30ab0000 0x10000>; 1183 interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>; 1184 clocks = <&clks IMX7D_MU_ROOT_CLK>; 1185 #mbox-cells = <2>; 1186 fsl,mu-side-b; 1187 status = "disabled"; 1188 }; 1189 1190 usbotg1: usb@30b10000 { 1191 compatible = "fsl,imx7d-usb", "fsl,imx27-usb"; 1192 reg = <0x30b10000 0x200>; 1193 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; 1194 clocks = <&clks IMX7D_USB_CTRL_CLK>; 1195 fsl,usbphy = <&usbphynop1>; 1196 fsl,usbmisc = <&usbmisc1 0>; 1197 phy-clkgate-delay-us = <400>; 1198 status = "disabled"; 1199 }; 1200 1201 usbh: usb@30b30000 { 1202 compatible = "fsl,imx7d-usb", "fsl,imx27-usb"; 1203 reg = <0x30b30000 0x200>; 1204 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; 1205 clocks = <&clks IMX7D_USB_CTRL_CLK>; 1206 fsl,usbphy = <&usbphynop3>; 1207 fsl,usbmisc = <&usbmisc3 0>; 1208 phy_type = "hsic"; 1209 dr_mode = "host"; 1210 phy-clkgate-delay-us = <400>; 1211 status = "disabled"; 1212 }; 1213 1214 usbmisc1: usbmisc@30b10200 { 1215 #index-cells = <1>; 1216 compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc"; 1217 reg = <0x30b10200 0x200>; 1218 }; 1219 1220 usbmisc3: usbmisc@30b30200 { 1221 #index-cells = <1>; 1222 compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc"; 1223 reg = <0x30b30200 0x200>; 1224 }; 1225 1226 usdhc1: mmc@30b40000 { 1227 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; 1228 reg = <0x30b40000 0x10000>; 1229 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>; 1230 clocks = <&clks IMX7D_IPG_ROOT_CLK>, 1231 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, 1232 <&clks IMX7D_USDHC1_ROOT_CLK>; 1233 clock-names = "ipg", "ahb", "per"; 1234 bus-width = <4>; 1235 fsl,tuning-step = <2>; 1236 fsl,tuning-start-tap = <20>; 1237 status = "disabled"; 1238 }; 1239 1240 usdhc2: mmc@30b50000 { 1241 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; 1242 reg = <0x30b50000 0x10000>; 1243 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; 1244 clocks = <&clks IMX7D_IPG_ROOT_CLK>, 1245 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, 1246 <&clks IMX7D_USDHC2_ROOT_CLK>; 1247 clock-names = "ipg", "ahb", "per"; 1248 bus-width = <4>; 1249 fsl,tuning-step = <2>; 1250 fsl,tuning-start-tap = <20>; 1251 status = "disabled"; 1252 }; 1253 1254 usdhc3: mmc@30b60000 { 1255 compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; 1256 reg = <0x30b60000 0x10000>; 1257 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; 1258 clocks = <&clks IMX7D_IPG_ROOT_CLK>, 1259 <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, 1260 <&clks IMX7D_USDHC3_ROOT_CLK>; 1261 clock-names = "ipg", "ahb", "per"; 1262 bus-width = <4>; 1263 fsl,tuning-step = <2>; 1264 fsl,tuning-start-tap = <20>; 1265 status = "disabled"; 1266 }; 1267 1268 qspi: spi@30bb0000 { 1269 compatible = "fsl,imx7d-qspi"; 1270 reg = <0x30bb0000 0x10000>, <0x60000000 0x10000000>; 1271 reg-names = "QuadSPI", "QuadSPI-memory"; 1272 #address-cells = <1>; 1273 #size-cells = <0>; 1274 interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; 1275 clocks = <&clks IMX7D_QSPI_ROOT_CLK>, 1276 <&clks IMX7D_QSPI_ROOT_CLK>; 1277 clock-names = "qspi_en", "qspi"; 1278 status = "disabled"; 1279 }; 1280 1281 sdma: dma-controller@30bd0000 { 1282 compatible = "fsl,imx7d-sdma", "fsl,imx35-sdma"; 1283 reg = <0x30bd0000 0x10000>; 1284 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; 1285 clocks = <&clks IMX7D_IPG_ROOT_CLK>, 1286 <&clks IMX7D_SDMA_CORE_CLK>; 1287 clock-names = "ipg", "ahb"; 1288 #dma-cells = <3>; 1289 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx7d.bin"; 1290 }; 1291 1292 fec1: ethernet@30be0000 { 1293 compatible = "fsl,imx7d-fec", "fsl,imx6sx-fec"; 1294 reg = <0x30be0000 0x10000>; 1295 interrupt-names = "int0", "int1", "int2", "pps"; 1296 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>, 1297 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, 1298 <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>, 1299 <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>; 1300 clocks = <&clks IMX7D_ENET1_IPG_ROOT_CLK>, 1301 <&clks IMX7D_ENET_AXI_ROOT_CLK>, 1302 <&clks IMX7D_ENET1_TIME_ROOT_CLK>, 1303 <&clks IMX7D_PLL_ENET_MAIN_125M_CLK>, 1304 <&clks IMX7D_ENET_PHY_REF_ROOT_CLK>; 1305 clock-names = "ipg", "ahb", "ptp", 1306 "enet_clk_ref", "enet_out"; 1307 fsl,num-tx-queues = <3>; 1308 fsl,num-rx-queues = <3>; 1309 fsl,stop-mode = <&gpr 0x10 3>; 1310 status = "disabled"; 1311 }; 1312 }; 1313 1314 dma_apbh: dma-controller@33000000 { 1315 compatible = "fsl,imx7d-dma-apbh", "fsl,imx28-dma-apbh"; 1316 reg = <0x33000000 0x2000>; 1317 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, 1318 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, 1319 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, 1320 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>; 1321 #dma-cells = <1>; 1322 dma-channels = <4>; 1323 clocks = <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>; 1324 }; 1325 1326 gpmi: nand-controller@33002000 { 1327 compatible = "fsl,imx7d-gpmi-nand"; 1328 #address-cells = <1>; 1329 #size-cells = <0>; 1330 reg = <0x33002000 0x2000>, <0x33004000 0x4000>; 1331 reg-names = "gpmi-nand", "bch"; 1332 interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>; 1333 interrupt-names = "bch"; 1334 clocks = <&clks IMX7D_NAND_RAWNAND_CLK>, 1335 <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>; 1336 clock-names = "gpmi_io", "gpmi_bch_apb"; 1337 dmas = <&dma_apbh 0>; 1338 dma-names = "rx-tx"; 1339 status = "disabled"; 1340 assigned-clocks = <&clks IMX7D_NAND_ROOT_SRC>; 1341 assigned-clock-parents = <&clks IMX7D_PLL_ENET_MAIN_500M_CLK>; 1342 }; 1343 }; 1344}; 1345