1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2019 MediaTek Inc. 4 * Copyright (c) 2019 BayLibre, SAS. 5 * Author: Fabien Parent <fparent@baylibre.com> 6 */ 7 8#include <dt-bindings/clock/mt8516-clk.h> 9#include <dt-bindings/interrupt-controller/arm-gic.h> 10#include <dt-bindings/interrupt-controller/irq.h> 11#include <dt-bindings/phy/phy.h> 12 13#include "mt8516-pinfunc.h" 14 15/ { 16 compatible = "mediatek,mt8516"; 17 interrupt-parent = <&sysirq>; 18 #address-cells = <2>; 19 #size-cells = <2>; 20 21 cluster0_opp: opp-table-0 { 22 compatible = "operating-points-v2"; 23 opp-shared; 24 opp-598000000 { 25 opp-hz = /bits/ 64 <598000000>; 26 opp-microvolt = <1150000>; 27 }; 28 opp-747500000 { 29 opp-hz = /bits/ 64 <747500000>; 30 opp-microvolt = <1150000>; 31 }; 32 opp-1040000000 { 33 opp-hz = /bits/ 64 <1040000000>; 34 opp-microvolt = <1200000>; 35 }; 36 opp-1196000000 { 37 opp-hz = /bits/ 64 <1196000000>; 38 opp-microvolt = <1250000>; 39 }; 40 opp-1300000000 { 41 opp-hz = /bits/ 64 <1300000000>; 42 opp-microvolt = <1300000>; 43 }; 44 }; 45 46 cpus { 47 #address-cells = <1>; 48 #size-cells = <0>; 49 50 cpu0: cpu@0 { 51 device_type = "cpu"; 52 compatible = "arm,cortex-a35"; 53 reg = <0x0>; 54 enable-method = "psci"; 55 cpu-idle-states = <&CLUSTER_SLEEP_0 &CLUSTER_SLEEP_0>, 56 <&CPU_SLEEP_0_0 &CPU_SLEEP_0_0 &CPU_SLEEP_0_0>; 57 clocks = <&infracfg CLK_IFR_MUX1_SEL>, 58 <&topckgen CLK_TOP_MAINPLL_D2>; 59 clock-names = "cpu", "intermediate"; 60 operating-points-v2 = <&cluster0_opp>; 61 }; 62 63 cpu1: cpu@1 { 64 device_type = "cpu"; 65 compatible = "arm,cortex-a35"; 66 reg = <0x1>; 67 enable-method = "psci"; 68 cpu-idle-states = <&CLUSTER_SLEEP_0 &CLUSTER_SLEEP_0>, 69 <&CPU_SLEEP_0_0 &CPU_SLEEP_0_0 &CPU_SLEEP_0_0>; 70 clocks = <&infracfg CLK_IFR_MUX1_SEL>, 71 <&topckgen CLK_TOP_MAINPLL_D2>; 72 clock-names = "cpu", "intermediate"; 73 operating-points-v2 = <&cluster0_opp>; 74 }; 75 76 cpu2: cpu@2 { 77 device_type = "cpu"; 78 compatible = "arm,cortex-a35"; 79 reg = <0x2>; 80 enable-method = "psci"; 81 cpu-idle-states = <&CLUSTER_SLEEP_0 &CLUSTER_SLEEP_0>, 82 <&CPU_SLEEP_0_0 &CPU_SLEEP_0_0 &CPU_SLEEP_0_0>; 83 clocks = <&infracfg CLK_IFR_MUX1_SEL>, 84 <&topckgen CLK_TOP_MAINPLL_D2>; 85 clock-names = "cpu", "intermediate"; 86 operating-points-v2 = <&cluster0_opp>; 87 }; 88 89 cpu3: cpu@3 { 90 device_type = "cpu"; 91 compatible = "arm,cortex-a35"; 92 reg = <0x3>; 93 enable-method = "psci"; 94 cpu-idle-states = <&CLUSTER_SLEEP_0 &CLUSTER_SLEEP_0>, 95 <&CPU_SLEEP_0_0 &CPU_SLEEP_0_0 &CPU_SLEEP_0_0>; 96 clocks = <&infracfg CLK_IFR_MUX1_SEL>, 97 <&topckgen CLK_TOP_MAINPLL_D2>; 98 clock-names = "cpu", "intermediate", "armpll"; 99 operating-points-v2 = <&cluster0_opp>; 100 }; 101 102 idle-states { 103 entry-method = "psci"; 104 105 CPU_SLEEP_0_0: cpu-sleep-0-0 { 106 compatible = "arm,idle-state"; 107 entry-latency-us = <600>; 108 exit-latency-us = <600>; 109 min-residency-us = <1200>; 110 arm,psci-suspend-param = <0x0010000>; 111 }; 112 113 CLUSTER_SLEEP_0: cluster-sleep-0 { 114 compatible = "arm,idle-state"; 115 entry-latency-us = <800>; 116 exit-latency-us = <1000>; 117 min-residency-us = <2000>; 118 arm,psci-suspend-param = <0x2010000>; 119 }; 120 }; 121 }; 122 123 psci { 124 compatible = "arm,psci-1.0"; 125 method = "smc"; 126 }; 127 128 clk26m: clk26m { 129 compatible = "fixed-clock"; 130 #clock-cells = <0>; 131 clock-frequency = <26000000>; 132 clock-output-names = "clk26m"; 133 }; 134 135 clk32k: clk32k { 136 compatible = "fixed-clock"; 137 #clock-cells = <0>; 138 clock-frequency = <32000>; 139 clock-output-names = "clk32k"; 140 }; 141 142 reserved-memory { 143 #address-cells = <2>; 144 #size-cells = <2>; 145 ranges; 146 147 /* 128 KiB reserved for ARM Trusted Firmware (BL31) */ 148 bl31_secmon_reserved: secmon@43000000 { 149 no-map; 150 reg = <0 0x43000000 0 0x20000>; 151 }; 152 }; 153 154 timer { 155 compatible = "arm,armv8-timer"; 156 interrupt-parent = <&gic>; 157 interrupts = <GIC_PPI 13 158 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 159 <GIC_PPI 14 160 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 161 <GIC_PPI 11 162 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 163 <GIC_PPI 10 164 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; 165 }; 166 167 pmu { 168 compatible = "arm,armv8-pmuv3"; 169 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_LOW>, 170 <GIC_SPI 5 IRQ_TYPE_LEVEL_LOW>, 171 <GIC_SPI 6 IRQ_TYPE_LEVEL_LOW>, 172 <GIC_SPI 7 IRQ_TYPE_LEVEL_LOW>; 173 interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>; 174 }; 175 176 soc { 177 #address-cells = <2>; 178 #size-cells = <2>; 179 compatible = "simple-bus"; 180 ranges; 181 182 topckgen: topckgen@10000000 { 183 compatible = "mediatek,mt8516-topckgen", "syscon"; 184 reg = <0 0x10000000 0 0x1000>; 185 #clock-cells = <1>; 186 }; 187 188 infracfg: infracfg@10001000 { 189 compatible = "mediatek,mt8516-infracfg", "syscon"; 190 reg = <0 0x10001000 0 0x1000>; 191 #clock-cells = <1>; 192 }; 193 194 pericfg: pericfg@10003050 { 195 compatible = "mediatek,mt8516-pericfg", "syscon"; 196 reg = <0 0x10003050 0 0x1000>; 197 }; 198 199 apmixedsys: apmixedsys@10018000 { 200 compatible = "mediatek,mt8516-apmixedsys", "syscon"; 201 reg = <0 0x10018000 0 0x710>; 202 #clock-cells = <1>; 203 }; 204 205 toprgu: toprgu@10007000 { 206 compatible = "mediatek,mt8516-wdt", 207 "mediatek,mt6589-wdt"; 208 reg = <0 0x10007000 0 0x1000>; 209 interrupts = <GIC_SPI 198 IRQ_TYPE_EDGE_FALLING>; 210 #reset-cells = <1>; 211 }; 212 213 timer: timer@10008000 { 214 compatible = "mediatek,mt8516-timer", 215 "mediatek,mt6577-timer"; 216 reg = <0 0x10008000 0 0x1000>; 217 interrupts = <GIC_SPI 132 IRQ_TYPE_LEVEL_LOW>; 218 clocks = <&topckgen CLK_TOP_CLK26M_D2>, 219 <&topckgen CLK_TOP_APXGPT>; 220 clock-names = "clk13m", "bus"; 221 }; 222 223 syscfg_pctl: syscfg-pctl@10005000 { 224 compatible = "syscon"; 225 reg = <0 0x10005000 0 0x1000>; 226 }; 227 228 pio: pinctrl@1000b000 { 229 compatible = "mediatek,mt8516-pinctrl"; 230 reg = <0 0x1000b000 0 0x1000>; 231 mediatek,pctl-regmap = <&syscfg_pctl>; 232 pins-are-numbered; 233 gpio-controller; 234 #gpio-cells = <2>; 235 interrupt-controller; 236 #interrupt-cells = <2>; 237 interrupts = <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>; 238 }; 239 240 efuse: efuse@10009000 { 241 compatible = "mediatek,mt8516-efuse", "mediatek,efuse"; 242 reg = <0 0x10009000 0 0x1000>; 243 #address-cells = <1>; 244 #size-cells = <1>; 245 }; 246 247 pwrap: pwrap@1000f000 { 248 compatible = "mediatek,mt8516-pwrap"; 249 reg = <0 0x1000f000 0 0x1000>; 250 reg-names = "pwrap"; 251 interrupts = <GIC_SPI 204 IRQ_TYPE_LEVEL_LOW>; 252 clocks = <&topckgen CLK_TOP_PMICWRAP_26M>, 253 <&topckgen CLK_TOP_PMICWRAP_AP>; 254 clock-names = "spi", "wrap"; 255 }; 256 257 sysirq: interrupt-controller@10200620 { 258 compatible = "mediatek,mt8516-sysirq", 259 "mediatek,mt6577-sysirq"; 260 interrupt-controller; 261 #interrupt-cells = <3>; 262 interrupt-parent = <&gic>; 263 reg = <0 0x10200620 0 0x20>; 264 }; 265 266 gic: interrupt-controller@10310000 { 267 compatible = "arm,gic-400"; 268 #interrupt-cells = <3>; 269 interrupt-parent = <&gic>; 270 interrupt-controller; 271 reg = <0 0x10310000 0 0x1000>, 272 <0 0x10320000 0 0x1000>, 273 <0 0x10340000 0 0x2000>, 274 <0 0x10360000 0 0x2000>; 275 interrupts = <GIC_PPI 9 276 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; 277 }; 278 279 uart0: serial@11005000 { 280 compatible = "mediatek,mt8516-uart", 281 "mediatek,mt6577-uart"; 282 reg = <0 0x11005000 0 0x1000>; 283 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_LOW>; 284 clocks = <&topckgen CLK_TOP_UART0_SEL>, 285 <&topckgen CLK_TOP_UART0>; 286 clock-names = "baud", "bus"; 287 status = "disabled"; 288 }; 289 290 uart1: serial@11006000 { 291 compatible = "mediatek,mt8516-uart", 292 "mediatek,mt6577-uart"; 293 reg = <0 0x11006000 0 0x1000>; 294 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_LOW>; 295 clocks = <&topckgen CLK_TOP_UART1_SEL>, 296 <&topckgen CLK_TOP_UART1>; 297 clock-names = "baud", "bus"; 298 status = "disabled"; 299 }; 300 301 uart2: serial@11007000 { 302 compatible = "mediatek,mt8516-uart", 303 "mediatek,mt6577-uart"; 304 reg = <0 0x11007000 0 0x1000>; 305 interrupts = <GIC_SPI 211 IRQ_TYPE_LEVEL_LOW>; 306 clocks = <&topckgen CLK_TOP_UART2_SEL>, 307 <&topckgen CLK_TOP_UART2>; 308 clock-names = "baud", "bus"; 309 status = "disabled"; 310 }; 311 312 i2c0: i2c@11009000 { 313 compatible = "mediatek,mt8516-i2c", 314 "mediatek,mt2712-i2c"; 315 reg = <0 0x11009000 0 0x90>, 316 <0 0x11000180 0 0x80>; 317 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_LOW>; 318 clocks = <&topckgen CLK_TOP_AHB_INFRA_D2>, 319 <&infracfg CLK_IFR_I2C0_SEL>, 320 <&topckgen CLK_TOP_I2C0>, 321 <&topckgen CLK_TOP_APDMA>; 322 clock-names = "main-source", 323 "main-sel", 324 "main", 325 "dma"; 326 #address-cells = <1>; 327 #size-cells = <0>; 328 status = "disabled"; 329 }; 330 331 i2c1: i2c@1100a000 { 332 compatible = "mediatek,mt8516-i2c", 333 "mediatek,mt2712-i2c"; 334 reg = <0 0x1100a000 0 0x90>, 335 <0 0x11000200 0 0x80>; 336 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_LOW>; 337 clocks = <&topckgen CLK_TOP_AHB_INFRA_D2>, 338 <&infracfg CLK_IFR_I2C1_SEL>, 339 <&topckgen CLK_TOP_I2C1>, 340 <&topckgen CLK_TOP_APDMA>; 341 clock-names = "main-source", 342 "main-sel", 343 "main", 344 "dma"; 345 #address-cells = <1>; 346 #size-cells = <0>; 347 status = "disabled"; 348 }; 349 350 i2c2: i2c@1100b000 { 351 compatible = "mediatek,mt8516-i2c", 352 "mediatek,mt2712-i2c"; 353 reg = <0 0x1100b000 0 0x90>, 354 <0 0x11000280 0 0x80>; 355 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_LOW>; 356 clocks = <&topckgen CLK_TOP_AHB_INFRA_D2>, 357 <&infracfg CLK_IFR_I2C2_SEL>, 358 <&topckgen CLK_TOP_I2C2>, 359 <&topckgen CLK_TOP_APDMA>; 360 clock-names = "main-source", 361 "main-sel", 362 "main", 363 "dma"; 364 #address-cells = <1>; 365 #size-cells = <0>; 366 status = "disabled"; 367 }; 368 369 spi: spi@1100c000 { 370 compatible = "mediatek,mt8516-spi", 371 "mediatek,mt2712-spi"; 372 #address-cells = <1>; 373 #size-cells = <0>; 374 reg = <0 0x1100c000 0 0x1000>; 375 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_LOW>; 376 clocks = <&topckgen CLK_TOP_UNIVPLL_D12>, 377 <&topckgen CLK_TOP_SPI_SEL>, 378 <&topckgen CLK_TOP_SPI>; 379 clock-names = "parent-clk", "sel-clk", "spi-clk"; 380 status = "disabled"; 381 }; 382 383 mmc0: mmc@11120000 { 384 compatible = "mediatek,mt8516-mmc"; 385 reg = <0 0x11120000 0 0x1000>; 386 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_LOW>; 387 clocks = <&topckgen CLK_TOP_MSDC0>, 388 <&topckgen CLK_TOP_AHB_INFRA_SEL>, 389 <&topckgen CLK_TOP_MSDC0_INFRA>; 390 clock-names = "source", "hclk", "source_cg"; 391 status = "disabled"; 392 }; 393 394 mmc1: mmc@11130000 { 395 compatible = "mediatek,mt8516-mmc"; 396 reg = <0 0x11130000 0 0x1000>; 397 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_LOW>; 398 clocks = <&topckgen CLK_TOP_MSDC1>, 399 <&topckgen CLK_TOP_AHB_INFRA_SEL>, 400 <&topckgen CLK_TOP_MSDC1_INFRA>; 401 clock-names = "source", "hclk", "source_cg"; 402 status = "disabled"; 403 }; 404 405 mmc2: mmc@11170000 { 406 compatible = "mediatek,mt8516-mmc"; 407 reg = <0 0x11170000 0 0x1000>; 408 interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_LOW>; 409 clocks = <&topckgen CLK_TOP_MSDC2>, 410 <&topckgen CLK_TOP_RG_MSDC2>, 411 <&topckgen CLK_TOP_MSDC2_INFRA>; 412 clock-names = "source", "hclk", "source_cg"; 413 status = "disabled"; 414 }; 415 416 ethernet: ethernet@11180000 { 417 compatible = "mediatek,mt8516-eth"; 418 reg = <0 0x11180000 0 0x1000>; 419 mediatek,pericfg = <&pericfg>; 420 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_LOW>; 421 clocks = <&topckgen CLK_TOP_RG_ETH>, 422 <&topckgen CLK_TOP_66M_ETH>, 423 <&topckgen CLK_TOP_133M_ETH>; 424 clock-names = "core", "reg", "trans"; 425 status = "disabled"; 426 }; 427 428 rng: rng@1020c000 { 429 compatible = "mediatek,mt8516-rng", 430 "mediatek,mt7623-rng"; 431 reg = <0 0x1020c000 0 0x100>; 432 clocks = <&topckgen CLK_TOP_TRNG>; 433 clock-names = "rng"; 434 }; 435 436 pwm: pwm@11008000 { 437 compatible = "mediatek,mt8516-pwm"; 438 reg = <0 0x11008000 0 0x1000>; 439 #pwm-cells = <2>; 440 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_LOW>; 441 clocks = <&topckgen CLK_TOP_PWM>, 442 <&topckgen CLK_TOP_PWM_B>, 443 <&topckgen CLK_TOP_PWM1_FB>, 444 <&topckgen CLK_TOP_PWM2_FB>, 445 <&topckgen CLK_TOP_PWM3_FB>, 446 <&topckgen CLK_TOP_PWM4_FB>, 447 <&topckgen CLK_TOP_PWM5_FB>; 448 clock-names = "top", "main", "pwm1", "pwm2", "pwm3", 449 "pwm4", "pwm5"; 450 }; 451 452 usb0: usb@11100000 { 453 compatible = "mediatek,mtk-musb"; 454 reg = <0 0x11100000 0 0x1000>; 455 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_LOW>; 456 interrupt-names = "mc"; 457 phys = <&usb0_port PHY_TYPE_USB2>; 458 clocks = <&topckgen CLK_TOP_USB>, 459 <&topckgen CLK_TOP_USBIF>, 460 <&topckgen CLK_TOP_USB_1P>; 461 clock-names = "main","mcu","univpll"; 462 status = "disabled"; 463 }; 464 465 usb1: usb@11190000 { 466 compatible = "mediatek,mtk-musb"; 467 reg = <0 0x11190000 0 0x1000>; 468 interrupts = <GIC_SPI 210 IRQ_TYPE_LEVEL_LOW>; 469 interrupt-names = "mc"; 470 phys = <&usb1_port PHY_TYPE_USB2>; 471 clocks = <&topckgen CLK_TOP_USB>, 472 <&topckgen CLK_TOP_USBIF>, 473 <&topckgen CLK_TOP_USB_1P>; 474 clock-names = "main","mcu","univpll"; 475 dr_mode = "host"; 476 status = "disabled"; 477 }; 478 479 usb_phy: usb@11110000 { 480 compatible = "mediatek,generic-tphy-v1"; 481 reg = <0 0x11110000 0 0x800>; 482 #address-cells = <2>; 483 #size-cells = <2>; 484 ranges; 485 status = "disabled"; 486 487 usb0_port: usb-phy@11110800 { 488 reg = <0 0x11110800 0 0x100>; 489 clocks = <&topckgen CLK_TOP_USB_PHY48M>; 490 clock-names = "ref"; 491 #phy-cells = <1>; 492 }; 493 494 usb1_port: usb-phy@11110900 { 495 reg = <0 0x11110900 0 0x100>; 496 clocks = <&topckgen CLK_TOP_USB_PHY48M>; 497 clock-names = "ref"; 498 #phy-cells = <1>; 499 }; 500 }; 501 502 auxadc: adc@11003000 { 503 compatible = "mediatek,mt8516-auxadc", 504 "mediatek,mt8173-auxadc"; 505 reg = <0 0x11003000 0 0x1000>; 506 clocks = <&topckgen CLK_TOP_AUX_ADC>; 507 clock-names = "main"; 508 #io-channel-cells = <1>; 509 status = "disabled"; 510 }; 511 }; 512}; 513