Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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 | soc: soc { |
| 180 | #address-cells = <1>; |
| 181 | #size-cells = <1>; |
| 182 | compatible = "simple-bus"; |
| 183 | interrupt-parent = <&gpc>; |
| 184 | ranges; |
| 185 | |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 186 | ocram: sram@900000 { |
| 187 | compatible = "mmio-sram"; |
| 188 | reg = <0x00900000 0x20000>; |
| 189 | ranges = <0 0x00900000 0x20000>; |
| 190 | #address-cells = <1>; |
| 191 | #size-cells = <1>; |
| 192 | clocks = <&clks IMX7D_OCRAM_CLK>; |
| 193 | }; |
| 194 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 195 | funnel@30041000 { |
| 196 | compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; |
| 197 | reg = <0x30041000 0x1000>; |
| 198 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 199 | clock-names = "apb_pclk"; |
| 200 | |
| 201 | ca_funnel_in_ports: in-ports { |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 202 | #address-cells = <1>; |
| 203 | #size-cells = <0>; |
| 204 | |
| 205 | port@0 { |
| 206 | reg = <0>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 207 | ca_funnel_in_port0: endpoint { |
| 208 | remote-endpoint = <&etm0_out_port>; |
| 209 | }; |
| 210 | }; |
| 211 | |
| 212 | /* the other input ports are not connect to anything */ |
| 213 | }; |
| 214 | |
| 215 | out-ports { |
| 216 | port { |
| 217 | ca_funnel_out_port0: endpoint { |
| 218 | remote-endpoint = <&hugo_funnel_in_port0>; |
| 219 | }; |
| 220 | }; |
| 221 | |
| 222 | }; |
| 223 | }; |
| 224 | |
| 225 | etm@3007c000 { |
| 226 | compatible = "arm,coresight-etm3x", "arm,primecell"; |
| 227 | reg = <0x3007c000 0x1000>; |
| 228 | cpu = <&cpu0>; |
| 229 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 230 | clock-names = "apb_pclk"; |
| 231 | |
| 232 | out-ports { |
| 233 | port { |
| 234 | etm0_out_port: endpoint { |
| 235 | remote-endpoint = <&ca_funnel_in_port0>; |
| 236 | }; |
| 237 | }; |
| 238 | }; |
| 239 | }; |
| 240 | |
| 241 | funnel@30083000 { |
| 242 | compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; |
| 243 | reg = <0x30083000 0x1000>; |
| 244 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 245 | clock-names = "apb_pclk"; |
| 246 | |
| 247 | in-ports { |
| 248 | #address-cells = <1>; |
| 249 | #size-cells = <0>; |
| 250 | |
| 251 | port@0 { |
| 252 | reg = <0>; |
| 253 | hugo_funnel_in_port0: endpoint { |
| 254 | remote-endpoint = <&ca_funnel_out_port0>; |
| 255 | }; |
| 256 | }; |
| 257 | |
| 258 | port@1 { |
| 259 | reg = <1>; |
| 260 | hugo_funnel_in_port1: endpoint { |
| 261 | /* M4 input */ |
| 262 | }; |
| 263 | }; |
| 264 | /* the other input ports are not connect to anything */ |
| 265 | }; |
| 266 | |
| 267 | out-ports { |
| 268 | port { |
| 269 | hugo_funnel_out_port0: endpoint { |
| 270 | remote-endpoint = <&etf_in_port>; |
| 271 | }; |
| 272 | }; |
| 273 | }; |
| 274 | }; |
| 275 | |
| 276 | etf@30084000 { |
| 277 | compatible = "arm,coresight-tmc", "arm,primecell"; |
| 278 | reg = <0x30084000 0x1000>; |
| 279 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 280 | clock-names = "apb_pclk"; |
| 281 | |
| 282 | in-ports { |
| 283 | port { |
| 284 | etf_in_port: endpoint { |
| 285 | remote-endpoint = <&hugo_funnel_out_port0>; |
| 286 | }; |
| 287 | }; |
| 288 | }; |
| 289 | |
| 290 | out-ports { |
| 291 | port { |
| 292 | etf_out_port: endpoint { |
| 293 | remote-endpoint = <&replicator_in_port0>; |
| 294 | }; |
| 295 | }; |
| 296 | }; |
| 297 | }; |
| 298 | |
| 299 | etr@30086000 { |
| 300 | compatible = "arm,coresight-tmc", "arm,primecell"; |
| 301 | reg = <0x30086000 0x1000>; |
| 302 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 303 | clock-names = "apb_pclk"; |
| 304 | |
| 305 | in-ports { |
| 306 | port { |
| 307 | etr_in_port: endpoint { |
| 308 | remote-endpoint = <&replicator_out_port1>; |
| 309 | }; |
| 310 | }; |
| 311 | }; |
| 312 | }; |
| 313 | |
| 314 | tpiu@30087000 { |
| 315 | compatible = "arm,coresight-tpiu", "arm,primecell"; |
| 316 | reg = <0x30087000 0x1000>; |
| 317 | clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>; |
| 318 | clock-names = "apb_pclk"; |
| 319 | |
| 320 | in-ports { |
| 321 | port { |
| 322 | tpiu_in_port: endpoint { |
| 323 | remote-endpoint = <&replicator_out_port0>; |
| 324 | }; |
| 325 | }; |
| 326 | }; |
| 327 | }; |
| 328 | |
| 329 | intc: interrupt-controller@31001000 { |
| 330 | compatible = "arm,cortex-a7-gic"; |
| 331 | interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_HIGH)>; |
| 332 | #interrupt-cells = <3>; |
| 333 | interrupt-controller; |
| 334 | interrupt-parent = <&intc>; |
| 335 | reg = <0x31001000 0x1000>, |
| 336 | <0x31002000 0x2000>, |
| 337 | <0x31004000 0x2000>, |
| 338 | <0x31006000 0x2000>; |
| 339 | }; |
| 340 | |
| 341 | aips1: 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>; |
| 357 | gpio-ranges = <&iomuxc_lpsr 0 0 8>, <&iomuxc 8 5 8>; |
| 358 | }; |
| 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>; |
| 369 | gpio-ranges = <&iomuxc 0 13 32>; |
| 370 | }; |
| 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>; |
| 381 | gpio-ranges = <&iomuxc 0 45 29>; |
| 382 | }; |
| 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>; |
| 393 | gpio-ranges = <&iomuxc 0 74 24>; |
| 394 | }; |
| 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>; |
| 405 | gpio-ranges = <&iomuxc 0 98 18>; |
| 406 | }; |
| 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>; |
| 417 | gpio-ranges = <&iomuxc 0 116 23>; |
| 418 | }; |
| 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>; |
| 429 | gpio-ranges = <&iomuxc 0 139 16>; |
| 430 | }; |
| 431 | |
| 432 | wdog1: watchdog@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: watchdog@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: watchdog@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: watchdog@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 | |
| 463 | iomuxc_lpsr: pinctrl@302c0000 { |
| 464 | compatible = "fsl,imx7d-iomuxc-lpsr"; |
| 465 | reg = <0x302c0000 0x10000>; |
| 466 | fsl,input-sel = <&iomuxc>; |
| 467 | }; |
| 468 | |
| 469 | gpt1: timer@302d0000 { |
| 470 | compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; |
| 471 | reg = <0x302d0000 0x10000>; |
| 472 | interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>; |
| 473 | clocks = <&clks IMX7D_GPT1_ROOT_CLK>, |
| 474 | <&clks IMX7D_GPT1_ROOT_CLK>; |
| 475 | clock-names = "ipg", "per"; |
| 476 | }; |
| 477 | |
| 478 | gpt2: timer@302e0000 { |
| 479 | compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; |
| 480 | reg = <0x302e0000 0x10000>; |
| 481 | interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>; |
| 482 | clocks = <&clks IMX7D_GPT2_ROOT_CLK>, |
| 483 | <&clks IMX7D_GPT2_ROOT_CLK>; |
| 484 | clock-names = "ipg", "per"; |
| 485 | status = "disabled"; |
| 486 | }; |
| 487 | |
| 488 | gpt3: timer@302f0000 { |
| 489 | compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; |
| 490 | reg = <0x302f0000 0x10000>; |
| 491 | interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>; |
| 492 | clocks = <&clks IMX7D_GPT3_ROOT_CLK>, |
| 493 | <&clks IMX7D_GPT3_ROOT_CLK>; |
| 494 | clock-names = "ipg", "per"; |
| 495 | status = "disabled"; |
| 496 | }; |
| 497 | |
| 498 | gpt4: timer@30300000 { |
| 499 | compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; |
| 500 | reg = <0x30300000 0x10000>; |
| 501 | interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; |
| 502 | clocks = <&clks IMX7D_GPT4_ROOT_CLK>, |
| 503 | <&clks IMX7D_GPT4_ROOT_CLK>; |
| 504 | clock-names = "ipg", "per"; |
| 505 | status = "disabled"; |
| 506 | }; |
| 507 | |
| 508 | kpp: keypad@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 | |
| 516 | iomuxc: pinctrl@30330000 { |
| 517 | compatible = "fsl,imx7d-iomuxc"; |
| 518 | reg = <0x30330000 0x10000>; |
| 519 | }; |
| 520 | |
| 521 | gpr: iomuxc-gpr@30340000 { |
| 522 | compatible = "fsl,imx7d-iomuxc-gpr", |
| 523 | "fsl,imx6q-iomuxc-gpr", "syscon", |
| 524 | "simple-mfd"; |
| 525 | reg = <0x30340000 0x10000>; |
| 526 | |
| 527 | mux: mux-controller { |
| 528 | compatible = "mmio-mux"; |
| 529 | #mux-control-cells = <1>; |
| 530 | mux-reg-masks = <0x14 0x00000010>; |
| 531 | }; |
| 532 | |
| 533 | video_mux: csi-mux { |
| 534 | compatible = "video-mux"; |
| 535 | mux-controls = <&mux 0>; |
| 536 | #address-cells = <1>; |
| 537 | #size-cells = <0>; |
| 538 | status = "disabled"; |
| 539 | |
| 540 | port@0 { |
| 541 | reg = <0>; |
| 542 | }; |
| 543 | |
| 544 | port@1 { |
| 545 | reg = <1>; |
| 546 | |
| 547 | csi_mux_from_mipi_vc0: endpoint { |
| 548 | remote-endpoint = <&mipi_vc0_to_csi_mux>; |
| 549 | }; |
| 550 | }; |
| 551 | |
| 552 | port@2 { |
| 553 | reg = <2>; |
| 554 | |
| 555 | csi_mux_to_csi: endpoint { |
| 556 | remote-endpoint = <&csi_from_csi_mux>; |
| 557 | }; |
| 558 | }; |
| 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>; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 621 | #thermal-sensor-cells = <0>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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_pwrkey: snvs-powerkey { |
| 640 | compatible = "fsl,sec-v4.0-pwrkey"; |
| 641 | regmap = <&snvs>; |
| 642 | interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; |
| 643 | clocks = <&clks IMX7D_SNVS_CLK>; |
| 644 | clock-names = "snvs-pwrkey"; |
| 645 | linux,keycode = <KEY_POWER>; |
| 646 | wakeup-source; |
| 647 | status = "disabled"; |
| 648 | }; |
| 649 | }; |
| 650 | |
| 651 | clks: clock-controller@30380000 { |
| 652 | compatible = "fsl,imx7d-ccm"; |
| 653 | reg = <0x30380000 0x10000>; |
| 654 | interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>, |
| 655 | <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; |
| 656 | #clock-cells = <1>; |
| 657 | clocks = <&ckil>, <&osc>; |
| 658 | clock-names = "ckil", "osc"; |
| 659 | }; |
| 660 | |
| 661 | src: reset-controller@30390000 { |
| 662 | compatible = "fsl,imx7d-src", "syscon"; |
| 663 | reg = <0x30390000 0x10000>; |
| 664 | interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; |
| 665 | #reset-cells = <1>; |
| 666 | }; |
| 667 | |
| 668 | gpc: gpc@303a0000 { |
| 669 | compatible = "fsl,imx7d-gpc"; |
| 670 | reg = <0x303a0000 0x10000>; |
| 671 | interrupt-controller; |
| 672 | interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>; |
| 673 | #interrupt-cells = <3>; |
| 674 | interrupt-parent = <&intc>; |
| 675 | |
| 676 | pgc { |
| 677 | #address-cells = <1>; |
| 678 | #size-cells = <0>; |
| 679 | |
| 680 | pgc_mipi_phy: power-domain@0 { |
| 681 | #power-domain-cells = <0>; |
| 682 | reg = <0>; |
| 683 | power-supply = <®_1p0d>; |
| 684 | }; |
| 685 | |
| 686 | pgc_pcie_phy: power-domain@1 { |
| 687 | #power-domain-cells = <0>; |
| 688 | reg = <1>; |
| 689 | power-supply = <®_1p0d>; |
| 690 | }; |
| 691 | |
| 692 | pgc_hsic_phy: power-domain@2 { |
| 693 | #power-domain-cells = <0>; |
| 694 | reg = <2>; |
| 695 | power-supply = <®_1p2>; |
| 696 | }; |
| 697 | }; |
| 698 | }; |
| 699 | }; |
| 700 | |
| 701 | aips2: bus@30400000 { |
| 702 | compatible = "fsl,aips-bus", "simple-bus"; |
| 703 | #address-cells = <1>; |
| 704 | #size-cells = <1>; |
| 705 | reg = <0x30400000 0x400000>; |
| 706 | ranges; |
| 707 | |
| 708 | adc1: adc@30610000 { |
| 709 | compatible = "fsl,imx7d-adc"; |
| 710 | reg = <0x30610000 0x10000>; |
| 711 | interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>; |
| 712 | clocks = <&clks IMX7D_ADC_ROOT_CLK>; |
| 713 | clock-names = "adc"; |
| 714 | #io-channel-cells = <1>; |
| 715 | status = "disabled"; |
| 716 | }; |
| 717 | |
| 718 | adc2: adc@30620000 { |
| 719 | compatible = "fsl,imx7d-adc"; |
| 720 | reg = <0x30620000 0x10000>; |
| 721 | interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>; |
| 722 | clocks = <&clks IMX7D_ADC_ROOT_CLK>; |
| 723 | clock-names = "adc"; |
| 724 | #io-channel-cells = <1>; |
| 725 | status = "disabled"; |
| 726 | }; |
| 727 | |
| 728 | ecspi4: spi@30630000 { |
| 729 | #address-cells = <1>; |
| 730 | #size-cells = <0>; |
| 731 | compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; |
| 732 | reg = <0x30630000 0x10000>; |
| 733 | interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; |
| 734 | clocks = <&clks IMX7D_ECSPI4_ROOT_CLK>, |
| 735 | <&clks IMX7D_ECSPI4_ROOT_CLK>; |
| 736 | clock-names = "ipg", "per"; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 737 | dma-names = "rx", "tx"; |
| 738 | dmas = <&sdma 6 7 1>, <&sdma 7 7 2>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 739 | status = "disabled"; |
| 740 | }; |
| 741 | |
| 742 | ftm1: pwm@30640000 { |
| 743 | compatible = "fsl,vf610-ftm-pwm"; |
| 744 | reg = <0x30640000 0x10000>; |
| 745 | #pwm-cells = <3>; |
| 746 | interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>; |
| 747 | clock-names = "ftm_sys", "ftm_ext", |
| 748 | "ftm_fix", "ftm_cnt_clk_en"; |
| 749 | clocks = <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, |
| 750 | <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, |
| 751 | <&clks IMX7D_FLEXTIMER1_ROOT_CLK>, |
| 752 | <&clks IMX7D_FLEXTIMER1_ROOT_CLK>; |
| 753 | status = "disabled"; |
| 754 | }; |
| 755 | |
| 756 | ftm2: pwm@30650000 { |
| 757 | compatible = "fsl,vf610-ftm-pwm"; |
| 758 | reg = <0x30650000 0x10000>; |
| 759 | #pwm-cells = <3>; |
| 760 | interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; |
| 761 | clock-names = "ftm_sys", "ftm_ext", |
| 762 | "ftm_fix", "ftm_cnt_clk_en"; |
| 763 | clocks = <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, |
| 764 | <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, |
| 765 | <&clks IMX7D_FLEXTIMER2_ROOT_CLK>, |
| 766 | <&clks IMX7D_FLEXTIMER2_ROOT_CLK>; |
| 767 | status = "disabled"; |
| 768 | }; |
| 769 | |
| 770 | pwm1: pwm@30660000 { |
| 771 | compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; |
| 772 | reg = <0x30660000 0x10000>; |
| 773 | interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; |
| 774 | clocks = <&clks IMX7D_PWM1_ROOT_CLK>, |
| 775 | <&clks IMX7D_PWM1_ROOT_CLK>; |
| 776 | clock-names = "ipg", "per"; |
| 777 | #pwm-cells = <3>; |
| 778 | status = "disabled"; |
| 779 | }; |
| 780 | |
| 781 | pwm2: pwm@30670000 { |
| 782 | compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; |
| 783 | reg = <0x30670000 0x10000>; |
| 784 | interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; |
| 785 | clocks = <&clks IMX7D_PWM2_ROOT_CLK>, |
| 786 | <&clks IMX7D_PWM2_ROOT_CLK>; |
| 787 | clock-names = "ipg", "per"; |
| 788 | #pwm-cells = <3>; |
| 789 | status = "disabled"; |
| 790 | }; |
| 791 | |
| 792 | pwm3: pwm@30680000 { |
| 793 | compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; |
| 794 | reg = <0x30680000 0x10000>; |
| 795 | interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; |
| 796 | clocks = <&clks IMX7D_PWM3_ROOT_CLK>, |
| 797 | <&clks IMX7D_PWM3_ROOT_CLK>; |
| 798 | clock-names = "ipg", "per"; |
| 799 | #pwm-cells = <3>; |
| 800 | status = "disabled"; |
| 801 | }; |
| 802 | |
| 803 | pwm4: pwm@30690000 { |
| 804 | compatible = "fsl,imx7d-pwm", "fsl,imx27-pwm"; |
| 805 | reg = <0x30690000 0x10000>; |
| 806 | interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; |
| 807 | clocks = <&clks IMX7D_PWM4_ROOT_CLK>, |
| 808 | <&clks IMX7D_PWM4_ROOT_CLK>; |
| 809 | clock-names = "ipg", "per"; |
| 810 | #pwm-cells = <3>; |
| 811 | status = "disabled"; |
| 812 | }; |
| 813 | |
| 814 | csi: csi@30710000 { |
| 815 | compatible = "fsl,imx7-csi"; |
| 816 | reg = <0x30710000 0x10000>; |
| 817 | interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; |
| 818 | clocks = <&clks IMX7D_CSI_MCLK_ROOT_CLK>; |
| 819 | clock-names = "mclk"; |
| 820 | status = "disabled"; |
| 821 | |
| 822 | port { |
| 823 | csi_from_csi_mux: endpoint { |
| 824 | remote-endpoint = <&csi_mux_to_csi>; |
| 825 | }; |
| 826 | }; |
| 827 | }; |
| 828 | |
| 829 | lcdif: lcdif@30730000 { |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 830 | compatible = "fsl,imx7d-lcdif", "fsl,imx6sx-lcdif"; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 831 | reg = <0x30730000 0x10000>; |
| 832 | interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; |
| 833 | clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>, |
| 834 | <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>; |
| 835 | clock-names = "pix", "axi"; |
| 836 | status = "disabled"; |
| 837 | }; |
| 838 | |
| 839 | mipi_csi: mipi-csi@30750000 { |
| 840 | compatible = "fsl,imx7-mipi-csi2"; |
| 841 | reg = <0x30750000 0x10000>; |
| 842 | interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>; |
| 843 | clocks = <&clks IMX7D_IPG_ROOT_CLK>, |
| 844 | <&clks IMX7D_MIPI_CSI_ROOT_CLK>, |
| 845 | <&clks IMX7D_MIPI_DPHY_ROOT_CLK>; |
| 846 | clock-names = "pclk", "wrap", "phy"; |
| 847 | power-domains = <&pgc_mipi_phy>; |
| 848 | phy-supply = <®_1p0d>; |
| 849 | resets = <&src IMX7_RESET_MIPI_PHY_MRST>; |
| 850 | status = "disabled"; |
| 851 | |
| 852 | ports { |
| 853 | #address-cells = <1>; |
| 854 | #size-cells = <0>; |
| 855 | |
| 856 | port@0 { |
| 857 | reg = <0>; |
| 858 | }; |
| 859 | |
| 860 | port@1 { |
| 861 | reg = <1>; |
| 862 | |
| 863 | mipi_vc0_to_csi_mux: endpoint { |
| 864 | remote-endpoint = <&csi_mux_from_mipi_vc0>; |
| 865 | }; |
| 866 | }; |
| 867 | }; |
| 868 | }; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 869 | |
| 870 | mipi_dsi: dsi@30760000 { |
| 871 | compatible = "fsl,imx7d-mipi-dsim", "fsl,imx8mm-mipi-dsim"; |
| 872 | #address-cells = <1>; |
| 873 | #size-cells = <0>; |
| 874 | reg = <0x30760000 0x400>; |
| 875 | clocks = <&clks IMX7D_MIPI_DSI_ROOT_CLK>, |
| 876 | <&clks IMX7D_MIPI_DPHY_ROOT_CLK>; |
| 877 | clock-names = "bus_clk", "sclk_mipi"; |
| 878 | assigned-clocks = <&clks IMX7D_MIPI_DSI_ROOT_SRC>, |
| 879 | <&clks IMX7D_PLL_SYS_PFD5_CLK>; |
| 880 | assigned-clock-parents = <&clks IMX7D_PLL_SYS_PFD5_CLK>; |
| 881 | assigned-clock-rates = <0>, <333000000>; |
| 882 | power-domains = <&pgc_mipi_phy>; |
| 883 | interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; |
| 884 | samsung,burst-clock-frequency = <891000000>; |
| 885 | samsung,esc-clock-frequency = <20000000>; |
| 886 | samsung,pll-clock-frequency = <24000000>; |
| 887 | status = "disabled"; |
| 888 | }; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 889 | }; |
| 890 | |
| 891 | aips3: bus@30800000 { |
| 892 | compatible = "fsl,aips-bus", "simple-bus"; |
| 893 | #address-cells = <1>; |
| 894 | #size-cells = <1>; |
| 895 | reg = <0x30800000 0x400000>; |
| 896 | ranges; |
| 897 | |
| 898 | spba-bus@30800000 { |
| 899 | compatible = "fsl,spba-bus", "simple-bus"; |
| 900 | #address-cells = <1>; |
| 901 | #size-cells = <1>; |
| 902 | reg = <0x30800000 0x100000>; |
| 903 | ranges; |
| 904 | |
| 905 | ecspi1: spi@30820000 { |
| 906 | #address-cells = <1>; |
| 907 | #size-cells = <0>; |
| 908 | compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; |
| 909 | reg = <0x30820000 0x10000>; |
| 910 | interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>; |
| 911 | clocks = <&clks IMX7D_ECSPI1_ROOT_CLK>, |
| 912 | <&clks IMX7D_ECSPI1_ROOT_CLK>; |
| 913 | clock-names = "ipg", "per"; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 914 | dma-names = "rx", "tx"; |
| 915 | dmas = <&sdma 0 7 1>, <&sdma 1 7 2>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 916 | status = "disabled"; |
| 917 | }; |
| 918 | |
| 919 | ecspi2: spi@30830000 { |
| 920 | #address-cells = <1>; |
| 921 | #size-cells = <0>; |
| 922 | compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; |
| 923 | reg = <0x30830000 0x10000>; |
| 924 | interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; |
| 925 | clocks = <&clks IMX7D_ECSPI2_ROOT_CLK>, |
| 926 | <&clks IMX7D_ECSPI2_ROOT_CLK>; |
| 927 | clock-names = "ipg", "per"; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 928 | dma-names = "rx", "tx"; |
| 929 | dmas = <&sdma 2 7 1>, <&sdma 3 7 2>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 930 | status = "disabled"; |
| 931 | }; |
| 932 | |
| 933 | ecspi3: spi@30840000 { |
| 934 | #address-cells = <1>; |
| 935 | #size-cells = <0>; |
| 936 | compatible = "fsl,imx7d-ecspi", "fsl,imx51-ecspi"; |
| 937 | reg = <0x30840000 0x10000>; |
| 938 | interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; |
| 939 | clocks = <&clks IMX7D_ECSPI3_ROOT_CLK>, |
| 940 | <&clks IMX7D_ECSPI3_ROOT_CLK>; |
| 941 | clock-names = "ipg", "per"; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 942 | dma-names = "rx", "tx"; |
| 943 | dmas = <&sdma 4 7 1>, <&sdma 5 7 2>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 944 | status = "disabled"; |
| 945 | }; |
| 946 | |
| 947 | uart1: serial@30860000 { |
| 948 | compatible = "fsl,imx7d-uart", |
| 949 | "fsl,imx6q-uart"; |
| 950 | reg = <0x30860000 0x10000>; |
| 951 | interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; |
| 952 | clocks = <&clks IMX7D_UART1_ROOT_CLK>, |
| 953 | <&clks IMX7D_UART1_ROOT_CLK>; |
| 954 | clock-names = "ipg", "per"; |
| 955 | status = "disabled"; |
| 956 | }; |
| 957 | |
| 958 | uart2: serial@30890000 { |
| 959 | compatible = "fsl,imx7d-uart", |
| 960 | "fsl,imx6q-uart"; |
| 961 | reg = <0x30890000 0x10000>; |
| 962 | interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; |
| 963 | clocks = <&clks IMX7D_UART2_ROOT_CLK>, |
| 964 | <&clks IMX7D_UART2_ROOT_CLK>; |
| 965 | clock-names = "ipg", "per"; |
| 966 | status = "disabled"; |
| 967 | }; |
| 968 | |
| 969 | uart3: serial@30880000 { |
| 970 | compatible = "fsl,imx7d-uart", |
| 971 | "fsl,imx6q-uart"; |
| 972 | reg = <0x30880000 0x10000>; |
| 973 | interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; |
| 974 | clocks = <&clks IMX7D_UART3_ROOT_CLK>, |
| 975 | <&clks IMX7D_UART3_ROOT_CLK>; |
| 976 | clock-names = "ipg", "per"; |
| 977 | status = "disabled"; |
| 978 | }; |
| 979 | |
| 980 | sai1: sai@308a0000 { |
| 981 | #sound-dai-cells = <0>; |
| 982 | compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; |
| 983 | reg = <0x308a0000 0x10000>; |
| 984 | interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>; |
| 985 | clocks = <&clks IMX7D_SAI1_IPG_CLK>, |
| 986 | <&clks IMX7D_SAI1_ROOT_CLK>, |
| 987 | <&clks IMX7D_CLK_DUMMY>, |
| 988 | <&clks IMX7D_CLK_DUMMY>; |
| 989 | clock-names = "bus", "mclk1", "mclk2", "mclk3"; |
| 990 | dma-names = "rx", "tx"; |
| 991 | dmas = <&sdma 8 24 0>, <&sdma 9 24 0>; |
| 992 | status = "disabled"; |
| 993 | }; |
| 994 | |
| 995 | sai2: sai@308b0000 { |
| 996 | #sound-dai-cells = <0>; |
| 997 | compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; |
| 998 | reg = <0x308b0000 0x10000>; |
| 999 | interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; |
| 1000 | clocks = <&clks IMX7D_SAI2_IPG_CLK>, |
| 1001 | <&clks IMX7D_SAI2_ROOT_CLK>, |
| 1002 | <&clks IMX7D_CLK_DUMMY>, |
| 1003 | <&clks IMX7D_CLK_DUMMY>; |
| 1004 | clock-names = "bus", "mclk1", "mclk2", "mclk3"; |
| 1005 | dma-names = "rx", "tx"; |
| 1006 | dmas = <&sdma 10 24 0>, <&sdma 11 24 0>; |
| 1007 | status = "disabled"; |
| 1008 | }; |
| 1009 | |
| 1010 | sai3: sai@308c0000 { |
| 1011 | #sound-dai-cells = <0>; |
| 1012 | compatible = "fsl,imx7d-sai", "fsl,imx6sx-sai"; |
| 1013 | reg = <0x308c0000 0x10000>; |
| 1014 | interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>; |
| 1015 | clocks = <&clks IMX7D_SAI3_IPG_CLK>, |
| 1016 | <&clks IMX7D_SAI3_ROOT_CLK>, |
| 1017 | <&clks IMX7D_CLK_DUMMY>, |
| 1018 | <&clks IMX7D_CLK_DUMMY>; |
| 1019 | clock-names = "bus", "mclk1", "mclk2", "mclk3"; |
| 1020 | dma-names = "rx", "tx"; |
| 1021 | dmas = <&sdma 12 24 0>, <&sdma 13 24 0>; |
| 1022 | status = "disabled"; |
| 1023 | }; |
| 1024 | }; |
| 1025 | |
| 1026 | crypto: crypto@30900000 { |
| 1027 | compatible = "fsl,sec-v4.0"; |
| 1028 | #address-cells = <1>; |
| 1029 | #size-cells = <1>; |
| 1030 | reg = <0x30900000 0x40000>; |
| 1031 | ranges = <0 0x30900000 0x40000>; |
| 1032 | interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>; |
| 1033 | clocks = <&clks IMX7D_CAAM_CLK>, |
| 1034 | <&clks IMX7D_AHB_CHANNEL_ROOT_CLK>; |
| 1035 | clock-names = "ipg", "aclk"; |
| 1036 | |
| 1037 | sec_jr0: jr@1000 { |
| 1038 | compatible = "fsl,sec-v4.0-job-ring"; |
| 1039 | reg = <0x1000 0x1000>; |
| 1040 | interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>; |
| 1041 | }; |
| 1042 | |
| 1043 | sec_jr1: jr@2000 { |
| 1044 | compatible = "fsl,sec-v4.0-job-ring"; |
| 1045 | reg = <0x2000 0x1000>; |
| 1046 | interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>; |
| 1047 | }; |
| 1048 | |
| 1049 | sec_jr2: jr@3000 { |
| 1050 | compatible = "fsl,sec-v4.0-job-ring"; |
| 1051 | reg = <0x3000 0x1000>; |
| 1052 | interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; |
| 1053 | }; |
| 1054 | }; |
| 1055 | |
| 1056 | flexcan1: can@30a00000 { |
| 1057 | compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan"; |
| 1058 | reg = <0x30a00000 0x10000>; |
| 1059 | interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>; |
| 1060 | clocks = <&clks IMX7D_CLK_DUMMY>, |
| 1061 | <&clks IMX7D_CAN1_ROOT_CLK>; |
| 1062 | clock-names = "ipg", "per"; |
| 1063 | fsl,stop-mode = <&gpr 0x10 1>; |
| 1064 | status = "disabled"; |
| 1065 | }; |
| 1066 | |
| 1067 | flexcan2: can@30a10000 { |
| 1068 | compatible = "fsl,imx7d-flexcan", "fsl,imx6q-flexcan"; |
| 1069 | reg = <0x30a10000 0x10000>; |
| 1070 | interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>; |
| 1071 | clocks = <&clks IMX7D_CLK_DUMMY>, |
| 1072 | <&clks IMX7D_CAN2_ROOT_CLK>; |
| 1073 | clock-names = "ipg", "per"; |
| 1074 | fsl,stop-mode = <&gpr 0x10 2>; |
| 1075 | status = "disabled"; |
| 1076 | }; |
| 1077 | |
| 1078 | i2c1: i2c@30a20000 { |
| 1079 | #address-cells = <1>; |
| 1080 | #size-cells = <0>; |
| 1081 | compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; |
| 1082 | reg = <0x30a20000 0x10000>; |
| 1083 | interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; |
| 1084 | clocks = <&clks IMX7D_I2C1_ROOT_CLK>; |
| 1085 | status = "disabled"; |
| 1086 | }; |
| 1087 | |
| 1088 | i2c2: i2c@30a30000 { |
| 1089 | #address-cells = <1>; |
| 1090 | #size-cells = <0>; |
| 1091 | compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; |
| 1092 | reg = <0x30a30000 0x10000>; |
| 1093 | interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; |
| 1094 | clocks = <&clks IMX7D_I2C2_ROOT_CLK>; |
| 1095 | status = "disabled"; |
| 1096 | }; |
| 1097 | |
| 1098 | i2c3: i2c@30a40000 { |
| 1099 | #address-cells = <1>; |
| 1100 | #size-cells = <0>; |
| 1101 | compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; |
| 1102 | reg = <0x30a40000 0x10000>; |
| 1103 | interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; |
| 1104 | clocks = <&clks IMX7D_I2C3_ROOT_CLK>; |
| 1105 | status = "disabled"; |
| 1106 | }; |
| 1107 | |
| 1108 | i2c4: i2c@30a50000 { |
| 1109 | #address-cells = <1>; |
| 1110 | #size-cells = <0>; |
| 1111 | compatible = "fsl,imx7d-i2c", "fsl,imx21-i2c"; |
| 1112 | reg = <0x30a50000 0x10000>; |
| 1113 | interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; |
| 1114 | clocks = <&clks IMX7D_I2C4_ROOT_CLK>; |
| 1115 | status = "disabled"; |
| 1116 | }; |
| 1117 | |
| 1118 | uart4: serial@30a60000 { |
| 1119 | compatible = "fsl,imx7d-uart", |
| 1120 | "fsl,imx6q-uart"; |
| 1121 | reg = <0x30a60000 0x10000>; |
| 1122 | interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; |
| 1123 | clocks = <&clks IMX7D_UART4_ROOT_CLK>, |
| 1124 | <&clks IMX7D_UART4_ROOT_CLK>; |
| 1125 | clock-names = "ipg", "per"; |
| 1126 | status = "disabled"; |
| 1127 | }; |
| 1128 | |
| 1129 | uart5: serial@30a70000 { |
| 1130 | compatible = "fsl,imx7d-uart", |
| 1131 | "fsl,imx6q-uart"; |
| 1132 | reg = <0x30a70000 0x10000>; |
| 1133 | interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>; |
| 1134 | clocks = <&clks IMX7D_UART5_ROOT_CLK>, |
| 1135 | <&clks IMX7D_UART5_ROOT_CLK>; |
| 1136 | clock-names = "ipg", "per"; |
| 1137 | status = "disabled"; |
| 1138 | }; |
| 1139 | |
| 1140 | uart6: serial@30a80000 { |
| 1141 | compatible = "fsl,imx7d-uart", |
| 1142 | "fsl,imx6q-uart"; |
| 1143 | reg = <0x30a80000 0x10000>; |
| 1144 | interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>; |
| 1145 | clocks = <&clks IMX7D_UART6_ROOT_CLK>, |
| 1146 | <&clks IMX7D_UART6_ROOT_CLK>; |
| 1147 | clock-names = "ipg", "per"; |
| 1148 | status = "disabled"; |
| 1149 | }; |
| 1150 | |
| 1151 | uart7: serial@30a90000 { |
| 1152 | compatible = "fsl,imx7d-uart", |
| 1153 | "fsl,imx6q-uart"; |
| 1154 | reg = <0x30a90000 0x10000>; |
| 1155 | interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>; |
| 1156 | clocks = <&clks IMX7D_UART7_ROOT_CLK>, |
| 1157 | <&clks IMX7D_UART7_ROOT_CLK>; |
| 1158 | clock-names = "ipg", "per"; |
| 1159 | status = "disabled"; |
| 1160 | }; |
| 1161 | |
| 1162 | mu0a: mailbox@30aa0000 { |
| 1163 | compatible = "fsl,imx7s-mu", "fsl,imx6sx-mu"; |
| 1164 | reg = <0x30aa0000 0x10000>; |
| 1165 | interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; |
| 1166 | clocks = <&clks IMX7D_MU_ROOT_CLK>; |
| 1167 | #mbox-cells = <2>; |
| 1168 | status = "disabled"; |
| 1169 | }; |
| 1170 | |
| 1171 | mu0b: mailbox@30ab0000 { |
| 1172 | compatible = "fsl,imx7s-mu", "fsl,imx6sx-mu"; |
| 1173 | reg = <0x30ab0000 0x10000>; |
| 1174 | interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>; |
| 1175 | clocks = <&clks IMX7D_MU_ROOT_CLK>; |
| 1176 | #mbox-cells = <2>; |
| 1177 | fsl,mu-side-b; |
| 1178 | status = "disabled"; |
| 1179 | }; |
| 1180 | |
| 1181 | usbotg1: usb@30b10000 { |
| 1182 | compatible = "fsl,imx7d-usb", "fsl,imx27-usb"; |
| 1183 | reg = <0x30b10000 0x200>; |
| 1184 | interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; |
| 1185 | clocks = <&clks IMX7D_USB_CTRL_CLK>; |
| 1186 | fsl,usbphy = <&usbphynop1>; |
| 1187 | fsl,usbmisc = <&usbmisc1 0>; |
| 1188 | phy-clkgate-delay-us = <400>; |
| 1189 | status = "disabled"; |
| 1190 | }; |
| 1191 | |
| 1192 | usbh: usb@30b30000 { |
| 1193 | compatible = "fsl,imx7d-usb", "fsl,imx27-usb"; |
| 1194 | reg = <0x30b30000 0x200>; |
| 1195 | interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; |
| 1196 | clocks = <&clks IMX7D_USB_CTRL_CLK>; |
| 1197 | fsl,usbphy = <&usbphynop3>; |
| 1198 | fsl,usbmisc = <&usbmisc3 0>; |
| 1199 | phy_type = "hsic"; |
| 1200 | dr_mode = "host"; |
| 1201 | phy-clkgate-delay-us = <400>; |
| 1202 | status = "disabled"; |
| 1203 | }; |
| 1204 | |
| 1205 | usbmisc1: usbmisc@30b10200 { |
| 1206 | #index-cells = <1>; |
| 1207 | compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc"; |
| 1208 | reg = <0x30b10200 0x200>; |
| 1209 | }; |
| 1210 | |
| 1211 | usbmisc3: usbmisc@30b30200 { |
| 1212 | #index-cells = <1>; |
| 1213 | compatible = "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc"; |
| 1214 | reg = <0x30b30200 0x200>; |
| 1215 | }; |
| 1216 | |
| 1217 | usdhc1: mmc@30b40000 { |
| 1218 | compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; |
| 1219 | reg = <0x30b40000 0x10000>; |
| 1220 | interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>; |
| 1221 | clocks = <&clks IMX7D_IPG_ROOT_CLK>, |
| 1222 | <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, |
| 1223 | <&clks IMX7D_USDHC1_ROOT_CLK>; |
| 1224 | clock-names = "ipg", "ahb", "per"; |
| 1225 | bus-width = <4>; |
| 1226 | fsl,tuning-step = <2>; |
| 1227 | fsl,tuning-start-tap = <20>; |
| 1228 | status = "disabled"; |
| 1229 | }; |
| 1230 | |
| 1231 | usdhc2: mmc@30b50000 { |
| 1232 | compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; |
| 1233 | reg = <0x30b50000 0x10000>; |
| 1234 | interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; |
| 1235 | clocks = <&clks IMX7D_IPG_ROOT_CLK>, |
| 1236 | <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, |
| 1237 | <&clks IMX7D_USDHC2_ROOT_CLK>; |
| 1238 | clock-names = "ipg", "ahb", "per"; |
| 1239 | bus-width = <4>; |
| 1240 | fsl,tuning-step = <2>; |
| 1241 | fsl,tuning-start-tap = <20>; |
| 1242 | status = "disabled"; |
| 1243 | }; |
| 1244 | |
| 1245 | usdhc3: mmc@30b60000 { |
| 1246 | compatible = "fsl,imx7d-usdhc", "fsl,imx6sl-usdhc"; |
| 1247 | reg = <0x30b60000 0x10000>; |
| 1248 | interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; |
| 1249 | clocks = <&clks IMX7D_IPG_ROOT_CLK>, |
| 1250 | <&clks IMX7D_NAND_USDHC_BUS_ROOT_CLK>, |
| 1251 | <&clks IMX7D_USDHC3_ROOT_CLK>; |
| 1252 | clock-names = "ipg", "ahb", "per"; |
| 1253 | bus-width = <4>; |
| 1254 | fsl,tuning-step = <2>; |
| 1255 | fsl,tuning-start-tap = <20>; |
| 1256 | status = "disabled"; |
| 1257 | }; |
| 1258 | |
| 1259 | qspi: spi@30bb0000 { |
| 1260 | compatible = "fsl,imx7d-qspi"; |
| 1261 | reg = <0x30bb0000 0x10000>, <0x60000000 0x10000000>; |
| 1262 | reg-names = "QuadSPI", "QuadSPI-memory"; |
| 1263 | #address-cells = <1>; |
| 1264 | #size-cells = <0>; |
| 1265 | interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; |
| 1266 | clocks = <&clks IMX7D_QSPI_ROOT_CLK>, |
| 1267 | <&clks IMX7D_QSPI_ROOT_CLK>; |
| 1268 | clock-names = "qspi_en", "qspi"; |
| 1269 | status = "disabled"; |
| 1270 | }; |
| 1271 | |
| 1272 | sdma: dma-controller@30bd0000 { |
| 1273 | compatible = "fsl,imx7d-sdma", "fsl,imx35-sdma"; |
| 1274 | reg = <0x30bd0000 0x10000>; |
| 1275 | interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; |
| 1276 | clocks = <&clks IMX7D_IPG_ROOT_CLK>, |
| 1277 | <&clks IMX7D_SDMA_CORE_CLK>; |
| 1278 | clock-names = "ipg", "ahb"; |
| 1279 | #dma-cells = <3>; |
| 1280 | fsl,sdma-ram-script-name = "imx/sdma/sdma-imx7d.bin"; |
| 1281 | }; |
| 1282 | |
| 1283 | fec1: ethernet@30be0000 { |
| 1284 | compatible = "fsl,imx7d-fec", "fsl,imx6sx-fec"; |
| 1285 | reg = <0x30be0000 0x10000>; |
| 1286 | interrupt-names = "int0", "int1", "int2", "pps"; |
| 1287 | interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>, |
| 1288 | <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, |
| 1289 | <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>, |
| 1290 | <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>; |
| 1291 | clocks = <&clks IMX7D_ENET1_IPG_ROOT_CLK>, |
| 1292 | <&clks IMX7D_ENET_AXI_ROOT_CLK>, |
| 1293 | <&clks IMX7D_ENET1_TIME_ROOT_CLK>, |
| 1294 | <&clks IMX7D_PLL_ENET_MAIN_125M_CLK>, |
| 1295 | <&clks IMX7D_ENET_PHY_REF_ROOT_CLK>; |
| 1296 | clock-names = "ipg", "ahb", "ptp", |
| 1297 | "enet_clk_ref", "enet_out"; |
| 1298 | fsl,num-tx-queues = <3>; |
| 1299 | fsl,num-rx-queues = <3>; |
| 1300 | fsl,stop-mode = <&gpr 0x10 3>; |
| 1301 | status = "disabled"; |
| 1302 | }; |
| 1303 | }; |
| 1304 | |
| 1305 | dma_apbh: dma-controller@33000000 { |
| 1306 | compatible = "fsl,imx7d-dma-apbh", "fsl,imx28-dma-apbh"; |
| 1307 | reg = <0x33000000 0x2000>; |
| 1308 | interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, |
| 1309 | <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, |
| 1310 | <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, |
| 1311 | <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>; |
| 1312 | #dma-cells = <1>; |
| 1313 | dma-channels = <4>; |
| 1314 | clocks = <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>; |
| 1315 | }; |
| 1316 | |
| 1317 | gpmi: nand-controller@33002000 { |
| 1318 | compatible = "fsl,imx7d-gpmi-nand"; |
| 1319 | #address-cells = <1>; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame^] | 1320 | #size-cells = <0>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1321 | reg = <0x33002000 0x2000>, <0x33004000 0x4000>; |
| 1322 | reg-names = "gpmi-nand", "bch"; |
| 1323 | interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>; |
| 1324 | interrupt-names = "bch"; |
| 1325 | clocks = <&clks IMX7D_NAND_RAWNAND_CLK>, |
| 1326 | <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>; |
| 1327 | clock-names = "gpmi_io", "gpmi_bch_apb"; |
| 1328 | dmas = <&dma_apbh 0>; |
| 1329 | dma-names = "rx-tx"; |
| 1330 | status = "disabled"; |
| 1331 | assigned-clocks = <&clks IMX7D_NAND_ROOT_SRC>; |
| 1332 | assigned-clock-parents = <&clks IMX7D_PLL_ENET_MAIN_500M_CLK>; |
| 1333 | }; |
| 1334 | }; |
| 1335 | }; |