1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 3#include <dt-bindings/gpio/gpio.h> 4#include <dt-bindings/interrupt-controller/irq.h> 5#include <dt-bindings/interrupt-controller/arm-gic.h> 6#include <dt-bindings/pinctrl/rockchip.h> 7#include <dt-bindings/clock/rk3036-cru.h> 8#include <dt-bindings/soc/rockchip,boot-mode.h> 9 10/ { 11 #address-cells = <1>; 12 #size-cells = <1>; 13 14 compatible = "rockchip,rk3036"; 15 16 interrupt-parent = <&gic>; 17 18 aliases { 19 i2c0 = &i2c0; 20 i2c1 = &i2c1; 21 i2c2 = &i2c2; 22 mshc0 = &emmc; 23 mshc1 = &sdmmc; 24 mshc2 = &sdio; 25 serial0 = &uart0; 26 serial1 = &uart1; 27 serial2 = &uart2; 28 spi = &spi; 29 }; 30 31 cpus { 32 #address-cells = <1>; 33 #size-cells = <0>; 34 enable-method = "rockchip,rk3036-smp"; 35 36 cpu0: cpu@f00 { 37 device_type = "cpu"; 38 compatible = "arm,cortex-a7"; 39 reg = <0xf00>; 40 resets = <&cru SRST_CORE0>; 41 operating-points = < 42 /* KHz uV */ 43 816000 1000000 44 >; 45 clock-latency = <40000>; 46 clocks = <&cru ARMCLK>; 47 }; 48 49 cpu1: cpu@f01 { 50 device_type = "cpu"; 51 compatible = "arm,cortex-a7"; 52 reg = <0xf01>; 53 resets = <&cru SRST_CORE1>; 54 }; 55 }; 56 57 amba { 58 compatible = "simple-bus"; 59 #address-cells = <1>; 60 #size-cells = <1>; 61 ranges; 62 63 pdma: pdma@20078000 { 64 compatible = "arm,pl330", "arm,primecell"; 65 reg = <0x20078000 0x4000>; 66 interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>, 67 <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>; 68 #dma-cells = <1>; 69 arm,pl330-broken-no-flushp; 70 clocks = <&cru ACLK_DMAC2>; 71 clock-names = "apb_pclk"; 72 }; 73 }; 74 75 arm-pmu { 76 compatible = "arm,cortex-a7-pmu"; 77 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>, 78 <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 79 interrupt-affinity = <&cpu0>, <&cpu1>; 80 }; 81 82 display-subsystem { 83 compatible = "rockchip,display-subsystem"; 84 ports = <&vop_out>; 85 }; 86 87 timer { 88 compatible = "arm,armv7-timer"; 89 arm,cpu-registers-not-fw-configured; 90 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>, 91 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>, 92 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>, 93 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>; 94 clock-frequency = <24000000>; 95 }; 96 97 xin24m: oscillator { 98 compatible = "fixed-clock"; 99 clock-frequency = <24000000>; 100 clock-output-names = "xin24m"; 101 #clock-cells = <0>; 102 }; 103 104 bus_intmem@10080000 { 105 compatible = "mmio-sram"; 106 reg = <0x10080000 0x2000>; 107 #address-cells = <1>; 108 #size-cells = <1>; 109 ranges = <0 0x10080000 0x2000>; 110 111 smp-sram@0 { 112 compatible = "rockchip,rk3066-smp-sram"; 113 reg = <0x00 0x10>; 114 }; 115 }; 116 117 gpu: gpu@10090000 { 118 compatible = "rockchip,rk3036-mali", "arm,mali-400"; 119 reg = <0x10090000 0x10000>; 120 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>, 121 <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, 122 <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>, 123 <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; 124 interrupt-names = "gp", 125 "gpmmu", 126 "pp0", 127 "ppmmu0"; 128 assigned-clocks = <&cru SCLK_GPU>; 129 assigned-clock-rates = <100000000>; 130 clocks = <&cru SCLK_GPU>, <&cru SCLK_GPU>; 131 clock-names = "bus", "core"; 132 resets = <&cru SRST_GPU>; 133 status = "disabled"; 134 }; 135 136 vop: vop@10118000 { 137 compatible = "rockchip,rk3036-vop"; 138 reg = <0x10118000 0x19c>; 139 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; 140 clocks = <&cru ACLK_LCDC>, <&cru SCLK_LCDC>, <&cru HCLK_LCDC>; 141 clock-names = "aclk_vop", "dclk_vop", "hclk_vop"; 142 resets = <&cru SRST_LCDC1_A>, <&cru SRST_LCDC1_H>, <&cru SRST_LCDC1_D>; 143 reset-names = "axi", "ahb", "dclk"; 144 iommus = <&vop_mmu>; 145 status = "disabled"; 146 147 vop_out: port { 148 #address-cells = <1>; 149 #size-cells = <0>; 150 vop_out_hdmi: endpoint@0 { 151 reg = <0>; 152 remote-endpoint = <&hdmi_in_vop>; 153 }; 154 }; 155 }; 156 157 vop_mmu: iommu@10118300 { 158 compatible = "rockchip,iommu"; 159 reg = <0x10118300 0x100>; 160 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; 161 interrupt-names = "vop_mmu"; 162 clocks = <&cru ACLK_LCDC>, <&cru HCLK_LCDC>; 163 clock-names = "aclk", "iface"; 164 #iommu-cells = <0>; 165 status = "disabled"; 166 }; 167 168 gic: interrupt-controller@10139000 { 169 compatible = "arm,gic-400"; 170 interrupt-controller; 171 #interrupt-cells = <3>; 172 #address-cells = <0>; 173 174 reg = <0x10139000 0x1000>, 175 <0x1013a000 0x2000>, 176 <0x1013c000 0x2000>, 177 <0x1013e000 0x2000>; 178 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>; 179 }; 180 181 usb_otg: usb@10180000 { 182 compatible = "rockchip,rk3036-usb", "rockchip,rk3066-usb", 183 "snps,dwc2"; 184 reg = <0x10180000 0x40000>; 185 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 186 clocks = <&cru HCLK_OTG0>; 187 clock-names = "otg"; 188 dr_mode = "otg"; 189 g-np-tx-fifo-size = <16>; 190 g-rx-fifo-size = <275>; 191 g-tx-fifo-size = <256 128 128 64 64 32>; 192 status = "disabled"; 193 }; 194 195 usb_host: usb@101c0000 { 196 compatible = "rockchip,rk3036-usb", "rockchip,rk3066-usb", 197 "snps,dwc2"; 198 reg = <0x101c0000 0x40000>; 199 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; 200 clocks = <&cru HCLK_OTG1>; 201 clock-names = "otg"; 202 dr_mode = "host"; 203 status = "disabled"; 204 }; 205 206 emac: ethernet@10200000 { 207 compatible = "rockchip,rk3036-emac", "snps,arc-emac"; 208 reg = <0x10200000 0x4000>; 209 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; 210 #address-cells = <1>; 211 #size-cells = <0>; 212 rockchip,grf = <&grf>; 213 clocks = <&cru HCLK_MAC>, <&cru SCLK_MACREF>, <&cru SCLK_MAC>; 214 clock-names = "hclk", "macref", "macclk"; 215 /* 216 * Fix the emac parent clock is DPLL instead of APLL. 217 * since that will cause some unstable things if the cpufreq 218 * is working. (e.g: the accurate 50MHz what mac_ref need) 219 */ 220 assigned-clocks = <&cru SCLK_MACPLL>; 221 assigned-clock-parents = <&cru PLL_DPLL>; 222 max-speed = <100>; 223 phy-mode = "rmii"; 224 status = "disabled"; 225 }; 226 227 sdmmc: dwmmc@10214000 { 228 compatible = "rockchip,rk3036-dw-mshc", "rockchip,rk3288-dw-mshc"; 229 reg = <0x10214000 0x4000>; 230 clock-frequency = <37500000>; 231 max-frequency = <37500000>; 232 clocks = <&cru HCLK_SDMMC>, <&cru SCLK_SDMMC>; 233 clock-names = "biu", "ciu"; 234 fifo-depth = <0x100>; 235 interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>; 236 resets = <&cru SRST_MMC0>; 237 reset-names = "reset"; 238 status = "disabled"; 239 }; 240 241 sdio: dwmmc@10218000 { 242 compatible = "rockchip,rk3036-dw-mshc", "rockchip,rk3288-dw-mshc"; 243 reg = <0x10218000 0x4000>; 244 max-frequency = <37500000>; 245 clocks = <&cru HCLK_SDIO>, <&cru SCLK_SDIO>, 246 <&cru SCLK_SDIO_DRV>, <&cru SCLK_SDIO_SAMPLE>; 247 clock-names = "biu", "ciu", "ciu-drive", "ciu-sample"; 248 fifo-depth = <0x100>; 249 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>; 250 resets = <&cru SRST_SDIO>; 251 reset-names = "reset"; 252 status = "disabled"; 253 }; 254 255 emmc: dwmmc@1021c000 { 256 compatible = "rockchip,rk3036-dw-mshc", "rockchip,rk3288-dw-mshc"; 257 reg = <0x1021c000 0x4000>; 258 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>; 259 bus-width = <8>; 260 cap-mmc-highspeed; 261 clock-frequency = <37500000>; 262 max-frequency = <37500000>; 263 clocks = <&cru HCLK_EMMC>, <&cru SCLK_EMMC>, 264 <&cru SCLK_EMMC_DRV>, <&cru SCLK_EMMC_SAMPLE>; 265 clock-names = "biu", "ciu", "ciu-drive", "ciu-sample"; 266 default-sample-phase = <158>; 267 disable-wp; 268 dmas = <&pdma 12>; 269 dma-names = "rx-tx"; 270 fifo-depth = <0x100>; 271 mmc-ddr-1_8v; 272 non-removable; 273 pinctrl-names = "default"; 274 pinctrl-0 = <&emmc_clk &emmc_cmd &emmc_bus8>; 275 resets = <&cru SRST_EMMC>; 276 reset-names = "reset"; 277 status = "disabled"; 278 }; 279 280 i2s: i2s@10220000 { 281 compatible = "rockchip,rk3036-i2s", "rockchip,rk3066-i2s"; 282 reg = <0x10220000 0x4000>; 283 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>; 284 #address-cells = <1>; 285 #size-cells = <0>; 286 clock-names = "i2s_clk", "i2s_hclk"; 287 clocks = <&cru SCLK_I2S>, <&cru HCLK_I2S>; 288 dmas = <&pdma 0>, <&pdma 1>; 289 dma-names = "tx", "rx"; 290 pinctrl-names = "default"; 291 pinctrl-0 = <&i2s_bus>; 292 status = "disabled"; 293 }; 294 295 cru: clock-controller@20000000 { 296 compatible = "rockchip,rk3036-cru"; 297 reg = <0x20000000 0x1000>; 298 rockchip,grf = <&grf>; 299 #clock-cells = <1>; 300 #reset-cells = <1>; 301 assigned-clocks = <&cru PLL_GPLL>; 302 assigned-clock-rates = <594000000>; 303 }; 304 305 grf: syscon@20008000 { 306 compatible = "rockchip,rk3036-grf", "syscon", "simple-mfd"; 307 reg = <0x20008000 0x1000>; 308 309 reboot-mode { 310 compatible = "syscon-reboot-mode"; 311 offset = <0x1d8>; 312 mode-normal = <BOOT_NORMAL>; 313 mode-recovery = <BOOT_RECOVERY>; 314 mode-bootloader = <BOOT_FASTBOOT>; 315 mode-loader = <BOOT_BL_DOWNLOAD>; 316 }; 317 }; 318 319 acodec: acodec-ana@20030000 { 320 compatible = "rk3036-codec"; 321 reg = <0x20030000 0x4000>; 322 rockchip,grf = <&grf>; 323 clock-names = "acodec_pclk"; 324 clocks = <&cru PCLK_ACODEC>; 325 status = "disabled"; 326 }; 327 328 hdmi: hdmi@20034000 { 329 compatible = "rockchip,rk3036-inno-hdmi"; 330 reg = <0x20034000 0x4000>; 331 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>; 332 clocks = <&cru PCLK_HDMI>; 333 clock-names = "pclk"; 334 rockchip,grf = <&grf>; 335 pinctrl-names = "default"; 336 pinctrl-0 = <&hdmi_ctl>; 337 status = "disabled"; 338 339 hdmi_in: port { 340 #address-cells = <1>; 341 #size-cells = <0>; 342 hdmi_in_vop: endpoint@0 { 343 reg = <0>; 344 remote-endpoint = <&vop_out_hdmi>; 345 }; 346 }; 347 }; 348 349 timer: timer@20044000 { 350 compatible = "rockchip,rk3036-timer", "rockchip,rk3288-timer"; 351 reg = <0x20044000 0x20>; 352 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; 353 clocks = <&xin24m>, <&cru PCLK_TIMER>; 354 clock-names = "timer", "pclk"; 355 }; 356 357 pwm0: pwm@20050000 { 358 compatible = "rockchip,rk3036-pwm", "rockchip,rk2928-pwm"; 359 reg = <0x20050000 0x10>; 360 #pwm-cells = <3>; 361 clocks = <&cru PCLK_PWM>; 362 clock-names = "pwm"; 363 pinctrl-names = "default"; 364 pinctrl-0 = <&pwm0_pin>; 365 status = "disabled"; 366 }; 367 368 pwm1: pwm@20050010 { 369 compatible = "rockchip,rk3036-pwm", "rockchip,rk2928-pwm"; 370 reg = <0x20050010 0x10>; 371 #pwm-cells = <3>; 372 clocks = <&cru PCLK_PWM>; 373 clock-names = "pwm"; 374 pinctrl-names = "default"; 375 pinctrl-0 = <&pwm1_pin>; 376 status = "disabled"; 377 }; 378 379 pwm2: pwm@20050020 { 380 compatible = "rockchip,rk3036-pwm", "rockchip,rk2928-pwm"; 381 reg = <0x20050020 0x10>; 382 #pwm-cells = <3>; 383 clocks = <&cru PCLK_PWM>; 384 clock-names = "pwm"; 385 pinctrl-names = "default"; 386 pinctrl-0 = <&pwm2_pin>; 387 status = "disabled"; 388 }; 389 390 pwm3: pwm@20050030 { 391 compatible = "rockchip,rk3036-pwm", "rockchip,rk2928-pwm"; 392 reg = <0x20050030 0x10>; 393 #pwm-cells = <2>; 394 clocks = <&cru PCLK_PWM>; 395 clock-names = "pwm"; 396 pinctrl-names = "default"; 397 pinctrl-0 = <&pwm3_pin>; 398 status = "disabled"; 399 }; 400 401 i2c1: i2c@20056000 { 402 compatible = "rockchip,rk3036-i2c", "rockchip,rk3288-i2c"; 403 reg = <0x20056000 0x1000>; 404 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>; 405 #address-cells = <1>; 406 #size-cells = <0>; 407 clock-names = "i2c"; 408 clocks = <&cru PCLK_I2C1>; 409 pinctrl-names = "default"; 410 pinctrl-0 = <&i2c1_xfer>; 411 status = "disabled"; 412 }; 413 414 i2c2: i2c@2005a000 { 415 compatible = "rockchip,rk3036-i2c", "rockchip,rk3288-i2c"; 416 reg = <0x2005a000 0x1000>; 417 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; 418 #address-cells = <1>; 419 #size-cells = <0>; 420 clock-names = "i2c"; 421 clocks = <&cru PCLK_I2C2>; 422 pinctrl-names = "default"; 423 pinctrl-0 = <&i2c2_xfer>; 424 status = "disabled"; 425 }; 426 427 uart0: serial@20060000 { 428 compatible = "rockchip,rk3036-uart", "snps,dw-apb-uart"; 429 reg = <0x20060000 0x100>; 430 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 431 reg-shift = <2>; 432 reg-io-width = <4>; 433 clock-frequency = <24000000>; 434 clocks = <&cru SCLK_UART0>, <&cru PCLK_UART0>; 435 clock-names = "baudclk", "apb_pclk"; 436 pinctrl-names = "default"; 437 pinctrl-0 = <&uart0_xfer &uart0_cts &uart0_rts>; 438 status = "disabled"; 439 }; 440 441 uart1: serial@20064000 { 442 compatible = "rockchip,rk3036-uart", "snps,dw-apb-uart"; 443 reg = <0x20064000 0x100>; 444 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>; 445 reg-shift = <2>; 446 reg-io-width = <4>; 447 clock-frequency = <24000000>; 448 clocks = <&cru SCLK_UART1>, <&cru PCLK_UART1>; 449 clock-names = "baudclk", "apb_pclk"; 450 pinctrl-names = "default"; 451 pinctrl-0 = <&uart1_xfer>; 452 status = "disabled"; 453 }; 454 455 uart2: serial@20068000 { 456 compatible = "rockchip,rk3036-uart", "snps,dw-apb-uart"; 457 reg = <0x20068000 0x100>; 458 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>; 459 reg-shift = <2>; 460 reg-io-width = <4>; 461 clock-frequency = <24000000>; 462 clocks = <&cru SCLK_UART2>, <&cru PCLK_UART2>; 463 clock-names = "baudclk", "apb_pclk"; 464 pinctrl-names = "default"; 465 pinctrl-0 = <&uart2_xfer>; 466 status = "disabled"; 467 }; 468 469 i2c0: i2c@20072000 { 470 compatible = "rockchip,rk3036-i2c", "rockchip,rk3288-i2c"; 471 reg = <0x20072000 0x1000>; 472 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; 473 #address-cells = <1>; 474 #size-cells = <0>; 475 clock-names = "i2c"; 476 clocks = <&cru PCLK_I2C0>; 477 pinctrl-names = "default"; 478 pinctrl-0 = <&i2c0_xfer>; 479 status = "disabled"; 480 }; 481 482 spi: spi@20074000 { 483 compatible = "rockchip,rockchip-spi"; 484 reg = <0x20074000 0x1000>; 485 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; 486 clocks =<&cru PCLK_SPI>, <&cru SCLK_SPI>; 487 clock-names = "apb-pclk","spi_pclk"; 488 dmas = <&pdma 8>, <&pdma 9>; 489 dma-names = "tx", "rx"; 490 pinctrl-names = "default"; 491 pinctrl-0 = <&spi_txd &spi_rxd &spi_clk &spi_cs0>; 492 #address-cells = <1>; 493 #size-cells = <0>; 494 status = "disabled"; 495 }; 496 497 pinctrl: pinctrl { 498 compatible = "rockchip,rk3036-pinctrl"; 499 rockchip,grf = <&grf>; 500 #address-cells = <1>; 501 #size-cells = <1>; 502 ranges; 503 504 gpio0: gpio0@2007c000 { 505 compatible = "rockchip,gpio-bank"; 506 reg = <0x2007c000 0x100>; 507 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; 508 clocks = <&cru PCLK_GPIO0>; 509 510 gpio-controller; 511 #gpio-cells = <2>; 512 513 interrupt-controller; 514 #interrupt-cells = <2>; 515 }; 516 517 gpio1: gpio1@20080000 { 518 compatible = "rockchip,gpio-bank"; 519 reg = <0x20080000 0x100>; 520 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; 521 clocks = <&cru PCLK_GPIO1>; 522 523 gpio-controller; 524 #gpio-cells = <2>; 525 526 interrupt-controller; 527 #interrupt-cells = <2>; 528 }; 529 530 gpio2: gpio2@20084000 { 531 compatible = "rockchip,gpio-bank"; 532 reg = <0x20084000 0x100>; 533 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; 534 clocks = <&cru PCLK_GPIO2>; 535 536 gpio-controller; 537 #gpio-cells = <2>; 538 539 interrupt-controller; 540 #interrupt-cells = <2>; 541 }; 542 543 pcfg_pull_default: pcfg_pull_default { 544 bias-pull-pin-default; 545 }; 546 547 pcfg_pull_none: pcfg-pull-none { 548 bias-disable; 549 }; 550 551 pwm0 { 552 pwm0_pin: pwm0-pin { 553 rockchip,pins = <0 0 RK_FUNC_2 &pcfg_pull_none>; 554 }; 555 }; 556 557 pwm1 { 558 pwm1_pin: pwm1-pin { 559 rockchip,pins = <0 1 RK_FUNC_2 &pcfg_pull_none>; 560 }; 561 }; 562 563 pwm2 { 564 pwm2_pin: pwm2-pin { 565 rockchip,pins = <0 1 2 &pcfg_pull_none>; 566 }; 567 }; 568 569 pwm3 { 570 pwm3_pin: pwm3-pin { 571 rockchip,pins = <0 27 1 &pcfg_pull_none>; 572 }; 573 }; 574 575 sdmmc { 576 sdmmc_clk: sdmmc-clk { 577 rockchip,pins = <1 16 RK_FUNC_1 &pcfg_pull_none>; 578 }; 579 580 sdmmc_cmd: sdmmc-cmd { 581 rockchip,pins = <1 15 RK_FUNC_1 &pcfg_pull_default>; 582 }; 583 584 sdmmc_cd: sdmmc-cd { 585 rockchip,pins = <1 17 RK_FUNC_1 &pcfg_pull_default>; 586 }; 587 588 sdmmc_bus1: sdmmc-bus1 { 589 rockchip,pins = <1 18 RK_FUNC_1 &pcfg_pull_default>; 590 }; 591 592 sdmmc_bus4: sdmmc-bus4 { 593 rockchip,pins = <1 18 RK_FUNC_1 &pcfg_pull_default>, 594 <1 19 RK_FUNC_1 &pcfg_pull_default>, 595 <1 20 RK_FUNC_1 &pcfg_pull_default>, 596 <1 21 RK_FUNC_1 &pcfg_pull_default>; 597 }; 598 }; 599 600 sdio { 601 sdio_bus1: sdio-bus1 { 602 rockchip,pins = <0 11 RK_FUNC_1 &pcfg_pull_default>; 603 }; 604 605 sdio_bus4: sdio-bus4 { 606 rockchip,pins = <0 11 RK_FUNC_1 &pcfg_pull_default>, 607 <0 12 RK_FUNC_1 &pcfg_pull_default>, 608 <0 13 RK_FUNC_1 &pcfg_pull_default>, 609 <0 14 RK_FUNC_1 &pcfg_pull_default>; 610 }; 611 612 sdio_cmd: sdio-cmd { 613 rockchip,pins = <0 8 RK_FUNC_1 &pcfg_pull_default>; 614 }; 615 616 sdio_clk: sdio-clk { 617 rockchip,pins = <0 9 RK_FUNC_1 &pcfg_pull_none>; 618 }; 619 }; 620 621 emmc { 622 /* 623 * We run eMMC at max speed; bump up drive strength. 624 * We also have external pulls, so disable the internal ones. 625 */ 626 emmc_clk: emmc-clk { 627 rockchip,pins = <2 4 RK_FUNC_2 &pcfg_pull_none>; 628 }; 629 630 emmc_cmd: emmc-cmd { 631 rockchip,pins = <2 1 RK_FUNC_2 &pcfg_pull_default>; 632 }; 633 634 emmc_bus8: emmc-bus8 { 635 rockchip,pins = <1 24 RK_FUNC_2 &pcfg_pull_default>, 636 <1 25 RK_FUNC_2 &pcfg_pull_default>, 637 <1 26 RK_FUNC_2 &pcfg_pull_default>, 638 <1 27 RK_FUNC_2 &pcfg_pull_default>, 639 <1 28 RK_FUNC_2 &pcfg_pull_default>, 640 <1 29 RK_FUNC_2 &pcfg_pull_default>, 641 <1 30 RK_FUNC_2 &pcfg_pull_default>, 642 <1 31 RK_FUNC_2 &pcfg_pull_default>; 643 }; 644 }; 645 646 emac { 647 emac_xfer: emac-xfer { 648 rockchip,pins = <2 10 RK_FUNC_1 &pcfg_pull_default>, /* crs_dvalid */ 649 <2 13 RK_FUNC_1 &pcfg_pull_default>, /* tx_en */ 650 <2 14 RK_FUNC_1 &pcfg_pull_default>, /* mac_clk */ 651 <2 15 RK_FUNC_1 &pcfg_pull_default>, /* rx_err */ 652 <2 16 RK_FUNC_1 &pcfg_pull_default>, /* rxd1 */ 653 <2 17 RK_FUNC_1 &pcfg_pull_default>, /* rxd0 */ 654 <2 18 RK_FUNC_1 &pcfg_pull_default>, /* txd1 */ 655 <2 19 RK_FUNC_1 &pcfg_pull_default>; /* txd0 */ 656 }; 657 658 emac_mdio: emac-mdio { 659 rockchip,pins = <2 12 RK_FUNC_1 &pcfg_pull_default>, /* mac_md */ 660 <2 25 RK_FUNC_1 &pcfg_pull_default>; /* mac_mdclk */ 661 }; 662 }; 663 664 i2c0 { 665 i2c0_xfer: i2c0-xfer { 666 rockchip,pins = <0 0 RK_FUNC_1 &pcfg_pull_none>, 667 <0 1 RK_FUNC_1 &pcfg_pull_none>; 668 }; 669 }; 670 671 i2c1 { 672 i2c1_xfer: i2c1-xfer { 673 rockchip,pins = <0 2 RK_FUNC_1 &pcfg_pull_none>, 674 <0 3 RK_FUNC_1 &pcfg_pull_none>; 675 }; 676 }; 677 678 i2c2 { 679 i2c2_xfer: i2c2-xfer { 680 rockchip,pins = <2 20 RK_FUNC_1 &pcfg_pull_none>, 681 <2 21 RK_FUNC_1 &pcfg_pull_none>; 682 }; 683 }; 684 685 i2s { 686 i2s_bus: i2s-bus { 687 rockchip,pins = <1 0 RK_FUNC_1 &pcfg_pull_default>, 688 <1 1 RK_FUNC_1 &pcfg_pull_default>, 689 <1 2 RK_FUNC_1 &pcfg_pull_default>, 690 <1 3 RK_FUNC_1 &pcfg_pull_default>, 691 <1 4 RK_FUNC_1 &pcfg_pull_default>, 692 <1 5 RK_FUNC_1 &pcfg_pull_default>; 693 }; 694 }; 695 696 hdmi { 697 hdmi_ctl: hdmi-ctl { 698 rockchip,pins = <1 8 RK_FUNC_1 &pcfg_pull_none>, 699 <1 9 RK_FUNC_1 &pcfg_pull_none>, 700 <1 10 RK_FUNC_1 &pcfg_pull_none>, 701 <1 11 RK_FUNC_1 &pcfg_pull_none>; 702 }; 703 }; 704 705 uart0 { 706 uart0_xfer: uart0-xfer { 707 rockchip,pins = <0 16 RK_FUNC_1 &pcfg_pull_default>, 708 <0 17 RK_FUNC_1 &pcfg_pull_none>; 709 }; 710 711 uart0_cts: uart0-cts { 712 rockchip,pins = <0 18 RK_FUNC_1 &pcfg_pull_default>; 713 }; 714 715 uart0_rts: uart0-rts { 716 rockchip,pins = <0 19 RK_FUNC_1 &pcfg_pull_none>; 717 }; 718 }; 719 720 uart1 { 721 uart1_xfer: uart1-xfer { 722 rockchip,pins = <2 22 RK_FUNC_1 &pcfg_pull_default>, 723 <2 23 RK_FUNC_1 &pcfg_pull_none>; 724 }; 725 /* no rts / cts for uart1 */ 726 }; 727 728 uart2 { 729 uart2_xfer: uart2-xfer { 730 rockchip,pins = <1 18 RK_FUNC_2 &pcfg_pull_default>, 731 <1 19 RK_FUNC_2 &pcfg_pull_none>; 732 }; 733 /* no rts / cts for uart2 */ 734 }; 735 736 spi-pins { 737 spi_txd:spi-txd { 738 rockchip,pins = <1 29 RK_FUNC_3 &pcfg_pull_default>; 739 }; 740 741 spi_rxd:spi-rxd { 742 rockchip,pins = <1 28 RK_FUNC_3 &pcfg_pull_default>; 743 }; 744 745 spi_clk:spi-clk { 746 rockchip,pins = <2 0 RK_FUNC_2 &pcfg_pull_default>; 747 }; 748 749 spi_cs0:spi-cs0 { 750 rockchip,pins = <1 30 RK_FUNC_3 &pcfg_pull_default>; 751 752 }; 753 754 spi_cs1:spi-cs1 { 755 rockchip,pins = <1 31 RK_FUNC_3 &pcfg_pull_default>; 756 757 }; 758 }; 759 }; 760}; 761