1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Copyright 2017 NXP 4 * Copyright (C) 2017-2018 Pengutronix, Lucas Stach <kernel@pengutronix.de> 5 */ 6 7#include <dt-bindings/clock/imx8mq-clock.h> 8#include <dt-bindings/power/imx8mq-power.h> 9#include <dt-bindings/reset/imx8mq-reset.h> 10#include <dt-bindings/gpio/gpio.h> 11#include "dt-bindings/input/input.h" 12#include <dt-bindings/interrupt-controller/arm-gic.h> 13#include <dt-bindings/thermal/thermal.h> 14#include "imx8mq-pinfunc.h" 15 16/ { 17 interrupt-parent = <&gpc>; 18 19 #address-cells = <2>; 20 #size-cells = <2>; 21 22 aliases { 23 gpio0 = &gpio1; 24 gpio1 = &gpio2; 25 gpio2 = &gpio3; 26 gpio3 = &gpio4; 27 gpio4 = &gpio5; 28 i2c0 = &i2c1; 29 i2c1 = &i2c2; 30 i2c2 = &i2c3; 31 i2c3 = &i2c4; 32 serial0 = &uart1; 33 serial1 = &uart2; 34 serial2 = &uart3; 35 serial3 = &uart4; 36 spi0 = &ecspi1; 37 spi1 = &ecspi2; 38 spi2 = &ecspi3; 39 }; 40 41 ckil: clock-ckil { 42 compatible = "fixed-clock"; 43 #clock-cells = <0>; 44 clock-frequency = <32768>; 45 clock-output-names = "ckil"; 46 }; 47 48 osc_25m: clock-osc-25m { 49 compatible = "fixed-clock"; 50 #clock-cells = <0>; 51 clock-frequency = <25000000>; 52 clock-output-names = "osc_25m"; 53 }; 54 55 osc_27m: clock-osc-27m { 56 compatible = "fixed-clock"; 57 #clock-cells = <0>; 58 clock-frequency = <27000000>; 59 clock-output-names = "osc_27m"; 60 }; 61 62 clk_ext1: clock-ext1 { 63 compatible = "fixed-clock"; 64 #clock-cells = <0>; 65 clock-frequency = <133000000>; 66 clock-output-names = "clk_ext1"; 67 }; 68 69 clk_ext2: clock-ext2 { 70 compatible = "fixed-clock"; 71 #clock-cells = <0>; 72 clock-frequency = <133000000>; 73 clock-output-names = "clk_ext2"; 74 }; 75 76 clk_ext3: clock-ext3 { 77 compatible = "fixed-clock"; 78 #clock-cells = <0>; 79 clock-frequency = <133000000>; 80 clock-output-names = "clk_ext3"; 81 }; 82 83 clk_ext4: clock-ext4 { 84 compatible = "fixed-clock"; 85 #clock-cells = <0>; 86 clock-frequency= <133000000>; 87 clock-output-names = "clk_ext4"; 88 }; 89 90 cpus { 91 #address-cells = <1>; 92 #size-cells = <0>; 93 94 A53_0: cpu@0 { 95 device_type = "cpu"; 96 compatible = "arm,cortex-a53"; 97 reg = <0x0>; 98 clock-latency = <61036>; /* two CLK32 periods */ 99 clocks = <&clk IMX8MQ_CLK_ARM>; 100 enable-method = "psci"; 101 next-level-cache = <&A53_L2>; 102 operating-points-v2 = <&a53_opp_table>; 103 #cooling-cells = <2>; 104 nvmem-cells = <&cpu_speed_grade>; 105 nvmem-cell-names = "speed_grade"; 106 }; 107 108 A53_1: cpu@1 { 109 device_type = "cpu"; 110 compatible = "arm,cortex-a53"; 111 reg = <0x1>; 112 clock-latency = <61036>; /* two CLK32 periods */ 113 clocks = <&clk IMX8MQ_CLK_ARM>; 114 enable-method = "psci"; 115 next-level-cache = <&A53_L2>; 116 operating-points-v2 = <&a53_opp_table>; 117 #cooling-cells = <2>; 118 }; 119 120 A53_2: cpu@2 { 121 device_type = "cpu"; 122 compatible = "arm,cortex-a53"; 123 reg = <0x2>; 124 clock-latency = <61036>; /* two CLK32 periods */ 125 clocks = <&clk IMX8MQ_CLK_ARM>; 126 enable-method = "psci"; 127 next-level-cache = <&A53_L2>; 128 operating-points-v2 = <&a53_opp_table>; 129 #cooling-cells = <2>; 130 }; 131 132 A53_3: cpu@3 { 133 device_type = "cpu"; 134 compatible = "arm,cortex-a53"; 135 reg = <0x3>; 136 clock-latency = <61036>; /* two CLK32 periods */ 137 clocks = <&clk IMX8MQ_CLK_ARM>; 138 enable-method = "psci"; 139 next-level-cache = <&A53_L2>; 140 operating-points-v2 = <&a53_opp_table>; 141 #cooling-cells = <2>; 142 }; 143 144 A53_L2: l2-cache0 { 145 compatible = "cache"; 146 }; 147 }; 148 149 a53_opp_table: opp-table { 150 compatible = "operating-points-v2"; 151 opp-shared; 152 153 opp-800000000 { 154 opp-hz = /bits/ 64 <800000000>; 155 opp-microvolt = <900000>; 156 /* Industrial only */ 157 opp-supported-hw = <0xf>, <0x4>; 158 clock-latency-ns = <150000>; 159 opp-suspend; 160 }; 161 162 opp-1000000000 { 163 opp-hz = /bits/ 64 <1000000000>; 164 opp-microvolt = <900000>; 165 /* Consumer only */ 166 opp-supported-hw = <0xe>, <0x3>; 167 clock-latency-ns = <150000>; 168 opp-suspend; 169 }; 170 171 opp-1300000000 { 172 opp-hz = /bits/ 64 <1300000000>; 173 opp-microvolt = <1000000>; 174 opp-supported-hw = <0xc>, <0x4>; 175 clock-latency-ns = <150000>; 176 opp-suspend; 177 }; 178 179 opp-1500000000 { 180 opp-hz = /bits/ 64 <1500000000>; 181 opp-microvolt = <1000000>; 182 opp-supported-hw = <0x8>, <0x3>; 183 clock-latency-ns = <150000>; 184 opp-suspend; 185 }; 186 }; 187 188 pmu { 189 compatible = "arm,cortex-a53-pmu"; 190 interrupts = <GIC_PPI 7 IRQ_TYPE_LEVEL_HIGH>; 191 interrupt-parent = <&gic>; 192 interrupt-affinity = <&A53_0>, <&A53_1>, <&A53_2>, <&A53_3>; 193 }; 194 195 psci { 196 compatible = "arm,psci-1.0"; 197 method = "smc"; 198 }; 199 200 thermal-zones { 201 cpu-thermal { 202 polling-delay-passive = <250>; 203 polling-delay = <2000>; 204 thermal-sensors = <&tmu 0>; 205 206 trips { 207 cpu_alert: cpu-alert { 208 temperature = <80000>; 209 hysteresis = <2000>; 210 type = "passive"; 211 }; 212 213 cpu-crit { 214 temperature = <90000>; 215 hysteresis = <2000>; 216 type = "critical"; 217 }; 218 }; 219 220 cooling-maps { 221 map0 { 222 trip = <&cpu_alert>; 223 cooling-device = 224 <&A53_0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 225 <&A53_1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 226 <&A53_2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 227 <&A53_3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; 228 }; 229 }; 230 }; 231 232 gpu-thermal { 233 polling-delay-passive = <250>; 234 polling-delay = <2000>; 235 thermal-sensors = <&tmu 1>; 236 237 trips { 238 gpu-crit { 239 temperature = <90000>; 240 hysteresis = <2000>; 241 type = "critical"; 242 }; 243 }; 244 }; 245 246 vpu-thermal { 247 polling-delay-passive = <250>; 248 polling-delay = <2000>; 249 thermal-sensors = <&tmu 2>; 250 251 trips { 252 vpu-crit { 253 temperature = <90000>; 254 hysteresis = <2000>; 255 type = "critical"; 256 }; 257 }; 258 }; 259 }; 260 261 timer { 262 compatible = "arm,armv8-timer"; 263 interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>, /* Physical Secure */ 264 <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>, /* Physical Non-Secure */ 265 <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>, /* Virtual */ 266 <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>; /* Hypervisor */ 267 interrupt-parent = <&gic>; 268 arm,no-tick-in-suspend; 269 }; 270 271 soc@0 { 272 compatible = "simple-bus"; 273 #address-cells = <1>; 274 #size-cells = <1>; 275 ranges = <0x0 0x0 0x0 0x3e000000>; 276 dma-ranges = <0x40000000 0x0 0x40000000 0xc0000000>; 277 278 bus@30000000 { /* AIPS1 */ 279 compatible = "fsl,imx8mq-aips-bus", "simple-bus"; 280 #address-cells = <1>; 281 #size-cells = <1>; 282 ranges = <0x30000000 0x30000000 0x400000>; 283 284 gpio1: gpio@30200000 { 285 compatible = "fsl,imx8mq-gpio", "fsl,imx35-gpio"; 286 reg = <0x30200000 0x10000>; 287 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>, 288 <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; 289 clocks = <&clk IMX8MQ_CLK_GPIO1_ROOT>; 290 gpio-controller; 291 #gpio-cells = <2>; 292 interrupt-controller; 293 #interrupt-cells = <2>; 294 gpio-ranges = <&iomuxc 0 10 30>; 295 }; 296 297 gpio2: gpio@30210000 { 298 compatible = "fsl,imx8mq-gpio", "fsl,imx35-gpio"; 299 reg = <0x30210000 0x10000>; 300 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>, 301 <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; 302 clocks = <&clk IMX8MQ_CLK_GPIO2_ROOT>; 303 gpio-controller; 304 #gpio-cells = <2>; 305 interrupt-controller; 306 #interrupt-cells = <2>; 307 gpio-ranges = <&iomuxc 0 40 21>; 308 }; 309 310 gpio3: gpio@30220000 { 311 compatible = "fsl,imx8mq-gpio", "fsl,imx35-gpio"; 312 reg = <0x30220000 0x10000>; 313 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>, 314 <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>; 315 clocks = <&clk IMX8MQ_CLK_GPIO3_ROOT>; 316 gpio-controller; 317 #gpio-cells = <2>; 318 interrupt-controller; 319 #interrupt-cells = <2>; 320 gpio-ranges = <&iomuxc 0 61 26>; 321 }; 322 323 gpio4: gpio@30230000 { 324 compatible = "fsl,imx8mq-gpio", "fsl,imx35-gpio"; 325 reg = <0x30230000 0x10000>; 326 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>, 327 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; 328 clocks = <&clk IMX8MQ_CLK_GPIO4_ROOT>; 329 gpio-controller; 330 #gpio-cells = <2>; 331 interrupt-controller; 332 #interrupt-cells = <2>; 333 gpio-ranges = <&iomuxc 0 87 32>; 334 }; 335 336 gpio5: gpio@30240000 { 337 compatible = "fsl,imx8mq-gpio", "fsl,imx35-gpio"; 338 reg = <0x30240000 0x10000>; 339 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>, 340 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>; 341 clocks = <&clk IMX8MQ_CLK_GPIO5_ROOT>; 342 gpio-controller; 343 #gpio-cells = <2>; 344 interrupt-controller; 345 #interrupt-cells = <2>; 346 gpio-ranges = <&iomuxc 0 119 30>; 347 }; 348 349 tmu: tmu@30260000 { 350 compatible = "fsl,imx8mq-tmu"; 351 reg = <0x30260000 0x10000>; 352 interrupt = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; 353 clocks = <&clk IMX8MQ_CLK_TMU_ROOT>; 354 little-endian; 355 fsl,tmu-range = <0xb0000 0xa0026 0x80048 0x70061>; 356 fsl,tmu-calibration = <0x00000000 0x00000023 357 0x00000001 0x00000029 358 0x00000002 0x0000002f 359 0x00000003 0x00000035 360 0x00000004 0x0000003d 361 0x00000005 0x00000043 362 0x00000006 0x0000004b 363 0x00000007 0x00000051 364 0x00000008 0x00000057 365 0x00000009 0x0000005f 366 0x0000000a 0x00000067 367 0x0000000b 0x0000006f 368 369 0x00010000 0x0000001b 370 0x00010001 0x00000023 371 0x00010002 0x0000002b 372 0x00010003 0x00000033 373 0x00010004 0x0000003b 374 0x00010005 0x00000043 375 0x00010006 0x0000004b 376 0x00010007 0x00000055 377 0x00010008 0x0000005d 378 0x00010009 0x00000067 379 0x0001000a 0x00000070 380 381 0x00020000 0x00000017 382 0x00020001 0x00000023 383 0x00020002 0x0000002d 384 0x00020003 0x00000037 385 0x00020004 0x00000041 386 0x00020005 0x0000004b 387 0x00020006 0x00000057 388 0x00020007 0x00000063 389 0x00020008 0x0000006f 390 391 0x00030000 0x00000015 392 0x00030001 0x00000021 393 0x00030002 0x0000002d 394 0x00030003 0x00000039 395 0x00030004 0x00000045 396 0x00030005 0x00000053 397 0x00030006 0x0000005f 398 0x00030007 0x00000071>; 399 #thermal-sensor-cells = <1>; 400 }; 401 402 wdog1: watchdog@30280000 { 403 compatible = "fsl,imx8mq-wdt", "fsl,imx21-wdt"; 404 reg = <0x30280000 0x10000>; 405 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>; 406 clocks = <&clk IMX8MQ_CLK_WDOG1_ROOT>; 407 status = "disabled"; 408 }; 409 410 wdog2: watchdog@30290000 { 411 compatible = "fsl,imx8mq-wdt", "fsl,imx21-wdt"; 412 reg = <0x30290000 0x10000>; 413 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>; 414 clocks = <&clk IMX8MQ_CLK_WDOG2_ROOT>; 415 status = "disabled"; 416 }; 417 418 wdog3: watchdog@302a0000 { 419 compatible = "fsl,imx8mq-wdt", "fsl,imx21-wdt"; 420 reg = <0x302a0000 0x10000>; 421 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 422 clocks = <&clk IMX8MQ_CLK_WDOG3_ROOT>; 423 status = "disabled"; 424 }; 425 426 sdma2: sdma@302c0000 { 427 compatible = "fsl,imx8mq-sdma","fsl,imx7d-sdma"; 428 reg = <0x302c0000 0x10000>; 429 interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>; 430 clocks = <&clk IMX8MQ_CLK_SDMA2_ROOT>, 431 <&clk IMX8MQ_CLK_SDMA2_ROOT>; 432 clock-names = "ipg", "ahb"; 433 #dma-cells = <3>; 434 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx7d.bin"; 435 }; 436 437 iomuxc: iomuxc@30330000 { 438 compatible = "fsl,imx8mq-iomuxc"; 439 reg = <0x30330000 0x10000>; 440 }; 441 442 iomuxc_gpr: syscon@30340000 { 443 compatible = "fsl,imx8mq-iomuxc-gpr", "fsl,imx6q-iomuxc-gpr", 444 "syscon", "simple-mfd"; 445 reg = <0x30340000 0x10000>; 446 447 mux: mux-controller { 448 compatible = "mmio-mux"; 449 #mux-control-cells = <1>; 450 mux-reg-masks = <0x34 0x00000004>; /* MIPI_MUX_SEL */ 451 }; 452 }; 453 454 ocotp: ocotp-ctrl@30350000 { 455 compatible = "fsl,imx8mq-ocotp", "syscon"; 456 reg = <0x30350000 0x10000>; 457 clocks = <&clk IMX8MQ_CLK_OCOTP_ROOT>; 458 #address-cells = <1>; 459 #size-cells = <1>; 460 461 cpu_speed_grade: speed-grade@10 { 462 reg = <0x10 4>; 463 }; 464 }; 465 466 anatop: syscon@30360000 { 467 compatible = "fsl,imx8mq-anatop", "syscon"; 468 reg = <0x30360000 0x10000>; 469 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; 470 }; 471 472 snvs: snvs@30370000 { 473 compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd"; 474 reg = <0x30370000 0x10000>; 475 476 snvs_rtc: snvs-rtc-lp{ 477 compatible = "fsl,sec-v4.0-mon-rtc-lp"; 478 regmap =<&snvs>; 479 offset = <0x34>; 480 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>, 481 <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 482 clocks = <&clk IMX8MQ_CLK_SNVS_ROOT>; 483 clock-names = "snvs-rtc"; 484 }; 485 486 snvs_pwrkey: snvs-powerkey { 487 compatible = "fsl,sec-v4.0-pwrkey"; 488 regmap = <&snvs>; 489 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; 490 linux,keycode = <KEY_POWER>; 491 wakeup-source; 492 status = "disabled"; 493 }; 494 }; 495 496 clk: clock-controller@30380000 { 497 compatible = "fsl,imx8mq-ccm"; 498 reg = <0x30380000 0x10000>; 499 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>, 500 <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; 501 #clock-cells = <1>; 502 clocks = <&ckil>, <&osc_25m>, <&osc_27m>, 503 <&clk_ext1>, <&clk_ext2>, 504 <&clk_ext3>, <&clk_ext4>; 505 clock-names = "ckil", "osc_25m", "osc_27m", 506 "clk_ext1", "clk_ext2", 507 "clk_ext3", "clk_ext4"; 508 }; 509 510 src: reset-controller@30390000 { 511 compatible = "fsl,imx8mq-src", "syscon"; 512 reg = <0x30390000 0x10000>; 513 #reset-cells = <1>; 514 }; 515 516 gpc: gpc@303a0000 { 517 compatible = "fsl,imx8mq-gpc"; 518 reg = <0x303a0000 0x10000>; 519 interrupt-parent = <&gic>; 520 interrupt-controller; 521 #interrupt-cells = <3>; 522 523 pgc { 524 #address-cells = <1>; 525 #size-cells = <0>; 526 527 pgc_mipi: power-domain@0 { 528 #power-domain-cells = <0>; 529 reg = <IMX8M_POWER_DOMAIN_MIPI>; 530 }; 531 532 /* 533 * As per comment in ATF source code: 534 * 535 * PCIE1 and PCIE2 share the 536 * same reset signal, if we 537 * power down PCIE2, PCIE1 538 * will be held in reset too. 539 * 540 * So instead of creating two 541 * separate power domains for 542 * PCIE1 and PCIE2 we create a 543 * link between both and use 544 * it as a shared PCIE power 545 * domain. 546 */ 547 pgc_pcie: power-domain@1 { 548 #power-domain-cells = <0>; 549 reg = <IMX8M_POWER_DOMAIN_PCIE1>; 550 power-domains = <&pgc_pcie2>; 551 }; 552 553 pgc_otg1: power-domain@2 { 554 #power-domain-cells = <0>; 555 reg = <IMX8M_POWER_DOMAIN_USB_OTG1>; 556 }; 557 558 pgc_otg2: power-domain@3 { 559 #power-domain-cells = <0>; 560 reg = <IMX8M_POWER_DOMAIN_USB_OTG2>; 561 }; 562 563 pgc_ddr1: power-domain@4 { 564 #power-domain-cells = <0>; 565 reg = <IMX8M_POWER_DOMAIN_DDR1>; 566 }; 567 568 pgc_gpu: power-domain@5 { 569 #power-domain-cells = <0>; 570 reg = <IMX8M_POWER_DOMAIN_GPU>; 571 clocks = <&clk IMX8MQ_CLK_GPU_ROOT>, 572 <&clk IMX8MQ_CLK_GPU_SHADER_DIV>, 573 <&clk IMX8MQ_CLK_GPU_AXI>, 574 <&clk IMX8MQ_CLK_GPU_AHB>; 575 }; 576 577 pgc_vpu: power-domain@6 { 578 #power-domain-cells = <0>; 579 reg = <IMX8M_POWER_DOMAIN_VPU>; 580 }; 581 582 pgc_disp: power-domain@7 { 583 #power-domain-cells = <0>; 584 reg = <IMX8M_POWER_DOMAIN_DISP>; 585 }; 586 587 pgc_mipi_csi1: power-domain@8 { 588 #power-domain-cells = <0>; 589 reg = <IMX8M_POWER_DOMAIN_MIPI_CSI1>; 590 }; 591 592 pgc_mipi_csi2: power-domain@9 { 593 #power-domain-cells = <0>; 594 reg = <IMX8M_POWER_DOMAIN_MIPI_CSI2>; 595 }; 596 597 pgc_pcie2: power-domain@a { 598 #power-domain-cells = <0>; 599 reg = <IMX8M_POWER_DOMAIN_PCIE2>; 600 }; 601 }; 602 }; 603 }; 604 605 bus@30400000 { /* AIPS2 */ 606 compatible = "fsl,imx8mq-aips-bus", "simple-bus"; 607 #address-cells = <1>; 608 #size-cells = <1>; 609 ranges = <0x30400000 0x30400000 0x400000>; 610 611 pwm1: pwm@30660000 { 612 compatible = "fsl,imx8mq-pwm", "fsl,imx27-pwm"; 613 reg = <0x30660000 0x10000>; 614 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; 615 clocks = <&clk IMX8MQ_CLK_PWM1_ROOT>, 616 <&clk IMX8MQ_CLK_PWM1_ROOT>; 617 clock-names = "ipg", "per"; 618 #pwm-cells = <2>; 619 status = "disabled"; 620 }; 621 622 pwm2: pwm@30670000 { 623 compatible = "fsl,imx8mq-pwm", "fsl,imx27-pwm"; 624 reg = <0x30670000 0x10000>; 625 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 626 clocks = <&clk IMX8MQ_CLK_PWM2_ROOT>, 627 <&clk IMX8MQ_CLK_PWM2_ROOT>; 628 clock-names = "ipg", "per"; 629 #pwm-cells = <2>; 630 status = "disabled"; 631 }; 632 633 pwm3: pwm@30680000 { 634 compatible = "fsl,imx8mq-pwm", "fsl,imx27-pwm"; 635 reg = <0x30680000 0x10000>; 636 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 637 clocks = <&clk IMX8MQ_CLK_PWM3_ROOT>, 638 <&clk IMX8MQ_CLK_PWM3_ROOT>; 639 clock-names = "ipg", "per"; 640 #pwm-cells = <2>; 641 status = "disabled"; 642 }; 643 644 pwm4: pwm@30690000 { 645 compatible = "fsl,imx8mq-pwm", "fsl,imx27-pwm"; 646 reg = <0x30690000 0x10000>; 647 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; 648 clocks = <&clk IMX8MQ_CLK_PWM4_ROOT>, 649 <&clk IMX8MQ_CLK_PWM4_ROOT>; 650 clock-names = "ipg", "per"; 651 #pwm-cells = <2>; 652 status = "disabled"; 653 }; 654 655 system_counter: timer@306a0000 { 656 compatible = "nxp,sysctr-timer"; 657 reg = <0x306a0000 0x20000>; 658 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>; 659 clocks = <&osc_25m>; 660 clock-names = "per"; 661 }; 662 }; 663 664 bus@30800000 { /* AIPS3 */ 665 compatible = "fsl,imx8mq-aips-bus", "simple-bus"; 666 #address-cells = <1>; 667 #size-cells = <1>; 668 ranges = <0x30800000 0x30800000 0x400000>, 669 <0x08000000 0x08000000 0x10000000>; 670 671 ecspi1: spi@30820000 { 672 #address-cells = <1>; 673 #size-cells = <0>; 674 compatible = "fsl,imx8mq-ecspi", "fsl,imx51-ecspi"; 675 reg = <0x30820000 0x10000>; 676 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>; 677 clocks = <&clk IMX8MQ_CLK_ECSPI1_ROOT>, 678 <&clk IMX8MQ_CLK_ECSPI1_ROOT>; 679 clock-names = "ipg", "per"; 680 status = "disabled"; 681 }; 682 683 ecspi2: spi@30830000 { 684 #address-cells = <1>; 685 #size-cells = <0>; 686 compatible = "fsl,imx8mq-ecspi", "fsl,imx51-ecspi"; 687 reg = <0x30830000 0x10000>; 688 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 689 clocks = <&clk IMX8MQ_CLK_ECSPI2_ROOT>, 690 <&clk IMX8MQ_CLK_ECSPI2_ROOT>; 691 clock-names = "ipg", "per"; 692 status = "disabled"; 693 }; 694 695 ecspi3: spi@30840000 { 696 #address-cells = <1>; 697 #size-cells = <0>; 698 compatible = "fsl,imx8mq-ecspi", "fsl,imx51-ecspi"; 699 reg = <0x30840000 0x10000>; 700 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 701 clocks = <&clk IMX8MQ_CLK_ECSPI3_ROOT>, 702 <&clk IMX8MQ_CLK_ECSPI3_ROOT>; 703 clock-names = "ipg", "per"; 704 status = "disabled"; 705 }; 706 707 uart1: serial@30860000 { 708 compatible = "fsl,imx8mq-uart", 709 "fsl,imx6q-uart"; 710 reg = <0x30860000 0x10000>; 711 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; 712 clocks = <&clk IMX8MQ_CLK_UART1_ROOT>, 713 <&clk IMX8MQ_CLK_UART1_ROOT>; 714 clock-names = "ipg", "per"; 715 status = "disabled"; 716 }; 717 718 uart3: serial@30880000 { 719 compatible = "fsl,imx8mq-uart", 720 "fsl,imx6q-uart"; 721 reg = <0x30880000 0x10000>; 722 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; 723 clocks = <&clk IMX8MQ_CLK_UART3_ROOT>, 724 <&clk IMX8MQ_CLK_UART3_ROOT>; 725 clock-names = "ipg", "per"; 726 status = "disabled"; 727 }; 728 729 uart2: serial@30890000 { 730 compatible = "fsl,imx8mq-uart", 731 "fsl,imx6q-uart"; 732 reg = <0x30890000 0x10000>; 733 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; 734 clocks = <&clk IMX8MQ_CLK_UART2_ROOT>, 735 <&clk IMX8MQ_CLK_UART2_ROOT>; 736 clock-names = "ipg", "per"; 737 status = "disabled"; 738 }; 739 740 sai2: sai@308b0000 { 741 #sound-dai-cells = <0>; 742 compatible = "fsl,imx8mq-sai"; 743 reg = <0x308b0000 0x10000>; 744 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; 745 clocks = <&clk IMX8MQ_CLK_SAI2_IPG>, 746 <&clk IMX8MQ_CLK_SAI2_ROOT>, 747 <&clk IMX8MQ_CLK_DUMMY>, <&clk IMX8MQ_CLK_DUMMY>; 748 clock-names = "bus", "mclk1", "mclk2", "mclk3"; 749 dmas = <&sdma1 10 24 0>, <&sdma1 11 24 0>; 750 dma-names = "rx", "tx"; 751 status = "disabled"; 752 }; 753 754 dphy: dphy@30a00300 { 755 compatible = "fsl,imx8mq-mipi-dphy"; 756 reg = <0x30a00300 0x100>; 757 clocks = <&clk IMX8MQ_CLK_DSI_PHY_REF>; 758 clock-names = "phy_ref"; 759 assigned-clocks = <&clk IMX8MQ_CLK_DSI_PHY_REF>; 760 assigned-clock-parents = <&clk IMX8MQ_VIDEO_PLL1_OUT>; 761 assigned-clock-rates = <24000000>; 762 #phy-cells = <0>; 763 power-domains = <&pgc_mipi>; 764 status = "disabled"; 765 }; 766 767 i2c1: i2c@30a20000 { 768 compatible = "fsl,imx8mq-i2c", "fsl,imx21-i2c"; 769 reg = <0x30a20000 0x10000>; 770 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; 771 clocks = <&clk IMX8MQ_CLK_I2C1_ROOT>; 772 #address-cells = <1>; 773 #size-cells = <0>; 774 status = "disabled"; 775 }; 776 777 i2c2: i2c@30a30000 { 778 compatible = "fsl,imx8mq-i2c", "fsl,imx21-i2c"; 779 reg = <0x30a30000 0x10000>; 780 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; 781 clocks = <&clk IMX8MQ_CLK_I2C2_ROOT>; 782 #address-cells = <1>; 783 #size-cells = <0>; 784 status = "disabled"; 785 }; 786 787 i2c3: i2c@30a40000 { 788 compatible = "fsl,imx8mq-i2c", "fsl,imx21-i2c"; 789 reg = <0x30a40000 0x10000>; 790 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; 791 clocks = <&clk IMX8MQ_CLK_I2C3_ROOT>; 792 #address-cells = <1>; 793 #size-cells = <0>; 794 status = "disabled"; 795 }; 796 797 i2c4: i2c@30a50000 { 798 compatible = "fsl,imx8mq-i2c", "fsl,imx21-i2c"; 799 reg = <0x30a50000 0x10000>; 800 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; 801 clocks = <&clk IMX8MQ_CLK_I2C4_ROOT>; 802 #address-cells = <1>; 803 #size-cells = <0>; 804 status = "disabled"; 805 }; 806 807 uart4: serial@30a60000 { 808 compatible = "fsl,imx8mq-uart", 809 "fsl,imx6q-uart"; 810 reg = <0x30a60000 0x10000>; 811 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; 812 clocks = <&clk IMX8MQ_CLK_UART4_ROOT>, 813 <&clk IMX8MQ_CLK_UART4_ROOT>; 814 clock-names = "ipg", "per"; 815 status = "disabled"; 816 }; 817 818 usdhc1: mmc@30b40000 { 819 compatible = "fsl,imx8mq-usdhc", 820 "fsl,imx7d-usdhc"; 821 reg = <0x30b40000 0x10000>; 822 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>; 823 clocks = <&clk IMX8MQ_CLK_DUMMY>, 824 <&clk IMX8MQ_CLK_NAND_USDHC_BUS>, 825 <&clk IMX8MQ_CLK_USDHC1_ROOT>; 826 clock-names = "ipg", "ahb", "per"; 827 assigned-clocks = <&clk IMX8MQ_CLK_USDHC1>; 828 assigned-clock-rates = <400000000>; 829 fsl,tuning-start-tap = <20>; 830 fsl,tuning-step = <2>; 831 bus-width = <4>; 832 status = "disabled"; 833 }; 834 835 usdhc2: mmc@30b50000 { 836 compatible = "fsl,imx8mq-usdhc", 837 "fsl,imx7d-usdhc"; 838 reg = <0x30b50000 0x10000>; 839 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; 840 clocks = <&clk IMX8MQ_CLK_DUMMY>, 841 <&clk IMX8MQ_CLK_NAND_USDHC_BUS>, 842 <&clk IMX8MQ_CLK_USDHC2_ROOT>; 843 clock-names = "ipg", "ahb", "per"; 844 fsl,tuning-start-tap = <20>; 845 fsl,tuning-step = <2>; 846 bus-width = <4>; 847 status = "disabled"; 848 }; 849 850 qspi0: spi@30bb0000 { 851 #address-cells = <1>; 852 #size-cells = <0>; 853 compatible = "fsl,imx8mq-qspi", "fsl,imx7d-qspi"; 854 reg = <0x30bb0000 0x10000>, 855 <0x08000000 0x10000000>; 856 reg-names = "QuadSPI", "QuadSPI-memory"; 857 interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; 858 clocks = <&clk IMX8MQ_CLK_QSPI_ROOT>, 859 <&clk IMX8MQ_CLK_QSPI_ROOT>; 860 clock-names = "qspi_en", "qspi"; 861 status = "disabled"; 862 }; 863 864 sdma1: sdma@30bd0000 { 865 compatible = "fsl,imx8mq-sdma","fsl,imx7d-sdma"; 866 reg = <0x30bd0000 0x10000>; 867 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; 868 clocks = <&clk IMX8MQ_CLK_SDMA1_ROOT>, 869 <&clk IMX8MQ_CLK_AHB>; 870 clock-names = "ipg", "ahb"; 871 #dma-cells = <3>; 872 fsl,sdma-ram-script-name = "imx/sdma/sdma-imx7d.bin"; 873 }; 874 875 fec1: ethernet@30be0000 { 876 compatible = "fsl,imx8mq-fec", "fsl,imx6sx-fec"; 877 reg = <0x30be0000 0x10000>; 878 interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, 879 <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>, 880 <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>; 881 clocks = <&clk IMX8MQ_CLK_ENET1_ROOT>, 882 <&clk IMX8MQ_CLK_ENET1_ROOT>, 883 <&clk IMX8MQ_CLK_ENET_TIMER>, 884 <&clk IMX8MQ_CLK_ENET_REF>, 885 <&clk IMX8MQ_CLK_ENET_PHY_REF>; 886 clock-names = "ipg", "ahb", "ptp", 887 "enet_clk_ref", "enet_out"; 888 fsl,num-tx-queues = <3>; 889 fsl,num-rx-queues = <3>; 890 status = "disabled"; 891 }; 892 }; 893 894 bus@32c00000 { /* AIPS4 */ 895 compatible = "fsl,imx8mq-aips-bus", "simple-bus"; 896 #address-cells = <1>; 897 #size-cells = <1>; 898 ranges = <0x32c00000 0x32c00000 0x400000>; 899 900 irqsteer: interrupt-controller@32e2d000 { 901 compatible = "fsl,imx8m-irqsteer", "fsl,imx-irqsteer"; 902 reg = <0x32e2d000 0x1000>; 903 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; 904 clocks = <&clk IMX8MQ_CLK_DISP_APB_ROOT>; 905 clock-names = "ipg"; 906 fsl,channel = <0>; 907 fsl,num-irqs = <64>; 908 interrupt-controller; 909 #interrupt-cells = <1>; 910 }; 911 }; 912 913 gpu: gpu@38000000 { 914 compatible = "vivante,gc"; 915 reg = <0x38000000 0x40000>; 916 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>; 917 clocks = <&clk IMX8MQ_CLK_GPU_ROOT>, 918 <&clk IMX8MQ_CLK_GPU_SHADER_DIV>, 919 <&clk IMX8MQ_CLK_GPU_AXI>, 920 <&clk IMX8MQ_CLK_GPU_AHB>; 921 clock-names = "core", "shader", "bus", "reg"; 922 assigned-clocks = <&clk IMX8MQ_CLK_GPU_CORE_SRC>, 923 <&clk IMX8MQ_CLK_GPU_SHADER_SRC>, 924 <&clk IMX8MQ_CLK_GPU_AXI>, 925 <&clk IMX8MQ_CLK_GPU_AHB>, 926 <&clk IMX8MQ_GPU_PLL_BYPASS>; 927 assigned-clock-parents = <&clk IMX8MQ_GPU_PLL_OUT>, 928 <&clk IMX8MQ_GPU_PLL_OUT>, 929 <&clk IMX8MQ_GPU_PLL_OUT>, 930 <&clk IMX8MQ_GPU_PLL_OUT>, 931 <&clk IMX8MQ_GPU_PLL>; 932 assigned-clock-rates = <800000000>, <800000000>, 933 <800000000>, <800000000>, <0>; 934 power-domains = <&pgc_gpu>; 935 }; 936 937 usb_dwc3_0: usb@38100000 { 938 compatible = "fsl,imx8mq-dwc3", "snps,dwc3"; 939 reg = <0x38100000 0x10000>; 940 clocks = <&clk IMX8MQ_CLK_USB1_CTRL_ROOT>, 941 <&clk IMX8MQ_CLK_USB_CORE_REF>, 942 <&clk IMX8MQ_CLK_32K>; 943 clock-names = "bus_early", "ref", "suspend"; 944 assigned-clocks = <&clk IMX8MQ_CLK_USB_BUS>, 945 <&clk IMX8MQ_CLK_USB_CORE_REF>; 946 assigned-clock-parents = <&clk IMX8MQ_SYS2_PLL_500M>, 947 <&clk IMX8MQ_SYS1_PLL_100M>; 948 assigned-clock-rates = <500000000>, <100000000>; 949 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; 950 phys = <&usb3_phy0>, <&usb3_phy0>; 951 phy-names = "usb2-phy", "usb3-phy"; 952 power-domains = <&pgc_otg1>; 953 usb3-resume-missing-cas; 954 status = "disabled"; 955 }; 956 957 usb3_phy0: usb-phy@381f0040 { 958 compatible = "fsl,imx8mq-usb-phy"; 959 reg = <0x381f0040 0x40>; 960 clocks = <&clk IMX8MQ_CLK_USB1_PHY_ROOT>; 961 clock-names = "phy"; 962 assigned-clocks = <&clk IMX8MQ_CLK_USB_PHY_REF>; 963 assigned-clock-parents = <&clk IMX8MQ_SYS1_PLL_100M>; 964 assigned-clock-rates = <100000000>; 965 #phy-cells = <0>; 966 status = "disabled"; 967 }; 968 969 usb_dwc3_1: usb@38200000 { 970 compatible = "fsl,imx8mq-dwc3", "snps,dwc3"; 971 reg = <0x38200000 0x10000>; 972 clocks = <&clk IMX8MQ_CLK_USB2_CTRL_ROOT>, 973 <&clk IMX8MQ_CLK_USB_CORE_REF>, 974 <&clk IMX8MQ_CLK_32K>; 975 clock-names = "bus_early", "ref", "suspend"; 976 assigned-clocks = <&clk IMX8MQ_CLK_USB_BUS>, 977 <&clk IMX8MQ_CLK_USB_CORE_REF>; 978 assigned-clock-parents = <&clk IMX8MQ_SYS2_PLL_500M>, 979 <&clk IMX8MQ_SYS1_PLL_100M>; 980 assigned-clock-rates = <500000000>, <100000000>; 981 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; 982 phys = <&usb3_phy1>, <&usb3_phy1>; 983 phy-names = "usb2-phy", "usb3-phy"; 984 power-domains = <&pgc_otg2>; 985 usb3-resume-missing-cas; 986 status = "disabled"; 987 }; 988 989 usb3_phy1: usb-phy@382f0040 { 990 compatible = "fsl,imx8mq-usb-phy"; 991 reg = <0x382f0040 0x40>; 992 clocks = <&clk IMX8MQ_CLK_USB2_PHY_ROOT>; 993 clock-names = "phy"; 994 assigned-clocks = <&clk IMX8MQ_CLK_USB_PHY_REF>; 995 assigned-clock-parents = <&clk IMX8MQ_SYS1_PLL_100M>; 996 assigned-clock-rates = <100000000>; 997 #phy-cells = <0>; 998 status = "disabled"; 999 }; 1000 1001 pcie0: pcie@33800000 { 1002 compatible = "fsl,imx8mq-pcie"; 1003 reg = <0x33800000 0x400000>, 1004 <0x1ff00000 0x80000>; 1005 reg-names = "dbi", "config"; 1006 #address-cells = <3>; 1007 #size-cells = <2>; 1008 device_type = "pci"; 1009 bus-range = <0x00 0xff>; 1010 ranges = <0x81000000 0 0x00000000 0x1ff80000 0 0x00010000 /* downstream I/O 64KB */ 1011 0x82000000 0 0x18000000 0x18000000 0 0x07f00000>; /* non-prefetchable memory */ 1012 num-lanes = <1>; 1013 num-viewport = <4>; 1014 interrupts = <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>; 1015 interrupt-names = "msi"; 1016 #interrupt-cells = <1>; 1017 interrupt-map-mask = <0 0 0 0x7>; 1018 interrupt-map = <0 0 0 1 &gic GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>, 1019 <0 0 0 2 &gic GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>, 1020 <0 0 0 3 &gic GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, 1021 <0 0 0 4 &gic GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>; 1022 fsl,max-link-speed = <2>; 1023 power-domains = <&pgc_pcie>; 1024 resets = <&src IMX8MQ_RESET_PCIEPHY>, 1025 <&src IMX8MQ_RESET_PCIE_CTRL_APPS_EN>, 1026 <&src IMX8MQ_RESET_PCIE_CTRL_APPS_TURNOFF>; 1027 reset-names = "pciephy", "apps", "turnoff"; 1028 status = "disabled"; 1029 }; 1030 1031 pcie1: pcie@33c00000 { 1032 compatible = "fsl,imx8mq-pcie"; 1033 reg = <0x33c00000 0x400000>, 1034 <0x27f00000 0x80000>; 1035 reg-names = "dbi", "config"; 1036 #address-cells = <3>; 1037 #size-cells = <2>; 1038 device_type = "pci"; 1039 ranges = <0x81000000 0 0x00000000 0x27f80000 0 0x00010000 /* downstream I/O 64KB */ 1040 0x82000000 0 0x20000000 0x20000000 0 0x07f00000>; /* non-prefetchable memory */ 1041 num-lanes = <1>; 1042 num-viewport = <4>; 1043 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>; 1044 interrupt-names = "msi"; 1045 #interrupt-cells = <1>; 1046 interrupt-map-mask = <0 0 0 0x7>; 1047 interrupt-map = <0 0 0 1 &gic GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>, 1048 <0 0 0 2 &gic GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>, 1049 <0 0 0 3 &gic GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>, 1050 <0 0 0 4 &gic GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>; 1051 fsl,max-link-speed = <2>; 1052 power-domains = <&pgc_pcie>; 1053 resets = <&src IMX8MQ_RESET_PCIEPHY2>, 1054 <&src IMX8MQ_RESET_PCIE2_CTRL_APPS_EN>, 1055 <&src IMX8MQ_RESET_PCIE2_CTRL_APPS_TURNOFF>; 1056 reset-names = "pciephy", "apps", "turnoff"; 1057 status = "disabled"; 1058 }; 1059 1060 gic: interrupt-controller@38800000 { 1061 compatible = "arm,gic-v3"; 1062 reg = <0x38800000 0x10000>, /* GIC Dist */ 1063 <0x38880000 0xc0000>, /* GICR */ 1064 <0x31000000 0x2000>, /* GICC */ 1065 <0x31010000 0x2000>, /* GICV */ 1066 <0x31020000 0x2000>; /* GICH */ 1067 #interrupt-cells = <3>; 1068 interrupt-controller; 1069 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>; 1070 interrupt-parent = <&gic>; 1071 }; 1072 1073 ddr-pmu@3d800000 { 1074 compatible = "fsl,imx8mq-ddr-pmu", "fsl,imx8m-ddr-pmu"; 1075 reg = <0x3d800000 0x400000>; 1076 interrupt-parent = <&gic>; 1077 interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>; 1078 }; 1079 }; 1080}; 1081