1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Copyright (c) 2024 Rockchip Electronics Co., Ltd. 4 * 5 */ 6 7/dts-v1/; 8 9#include <dt-bindings/gpio/gpio.h> 10#include <dt-bindings/input/input.h> 11#include <dt-bindings/leds/common.h> 12#include <dt-bindings/pinctrl/rockchip.h> 13#include <dt-bindings/soc/rockchip,vop2.h> 14#include "rk3576.dtsi" 15 16/ { 17 model = "Rockchip RK3576 EVB V10 Board"; 18 compatible = "rockchip,rk3576-evb1-v10", "rockchip,rk3576"; 19 20 aliases { 21 ethernet0 = &gmac0; 22 ethernet1 = &gmac1; 23 }; 24 25 chosen: chosen { 26 stdout-path = "serial0:1500000n8"; 27 }; 28 29 adc_keys: adc-keys { 30 compatible = "adc-keys"; 31 io-channels = <&saradc 1>; 32 io-channel-names = "buttons"; 33 keyup-threshold-microvolt = <1800000>; 34 poll-interval = <100>; 35 36 button-back { 37 label = "back"; 38 linux,code = <KEY_BACK>; 39 press-threshold-microvolt = <1235000>; 40 }; 41 42 button-menu { 43 label = "menu"; 44 linux,code = <KEY_MENU>; 45 press-threshold-microvolt = <890000>; 46 }; 47 48 button-vol-down { 49 label = "volume down"; 50 linux,code = <KEY_VOLUMEDOWN>; 51 press-threshold-microvolt = <417000>; 52 }; 53 54 button-vol-up { 55 label = "volume up"; 56 linux,code = <KEY_VOLUMEUP>; 57 press-threshold-microvolt = <17000>; 58 }; 59 }; 60 61 hdmi-con { 62 compatible = "hdmi-connector"; 63 type = "a"; 64 65 port { 66 hdmi_con_in: endpoint { 67 remote-endpoint = <&hdmi_out_con>; 68 }; 69 }; 70 }; 71 72 leds: leds { 73 compatible = "gpio-leds"; 74 75 work_led: led-0 { 76 gpios = <&gpio0 RK_PB4 GPIO_ACTIVE_HIGH>; 77 linux,default-trigger = "heartbeat"; 78 }; 79 }; 80 81 vbus5v0_typec: regulator-vbus5v0-typec { 82 compatible = "regulator-fixed"; 83 regulator-name = "vbus5v0_typec"; 84 regulator-min-microvolt = <5000000>; 85 regulator-max-microvolt = <5000000>; 86 enable-active-high; 87 gpio = <&gpio0 RK_PD1 GPIO_ACTIVE_HIGH>; 88 vin-supply = <&vcc5v0_device>; 89 pinctrl-names = "default"; 90 pinctrl-0 = <&usb_otg0_pwren>; 91 }; 92 93 vcc12v_dcin: regulator-vcc12v-dcin { 94 compatible = "regulator-fixed"; 95 regulator-name = "vcc12v_dcin"; 96 regulator-always-on; 97 regulator-boot-on; 98 regulator-min-microvolt = <12000000>; 99 regulator-max-microvolt = <12000000>; 100 }; 101 102 vcc1v2_ufs_vccq_s0: regulator-vcc1v2-ufs-vccq-s0 { 103 compatible = "regulator-fixed"; 104 regulator-name = "vcc1v2_ufs_vccq_s0"; 105 regulator-boot-on; 106 regulator-always-on; 107 regulator-min-microvolt = <1200000>; 108 regulator-max-microvolt = <1200000>; 109 vin-supply = <&vcc_sys>; 110 }; 111 112 vcc1v8_ufs_vccq2_s0: regulator-vcc1v8-ufs-vccq2-s0 { 113 compatible = "regulator-fixed"; 114 regulator-name = "vcc1v8_ufs_vccq2_s0"; 115 regulator-boot-on; 116 regulator-always-on; 117 regulator-min-microvolt = <1800000>; 118 regulator-max-microvolt = <1800000>; 119 vin-supply = <&vcc_1v8_s3>; 120 }; 121 122 vcc3v3_lcd_n: regulator-vcc3v3-lcd0-n { 123 compatible = "regulator-fixed"; 124 regulator-name = "vcc3v3_lcd0_n"; 125 regulator-boot-on; 126 enable-active-high; 127 gpio = <&gpio0 RK_PC6 GPIO_ACTIVE_HIGH>; 128 vin-supply = <&vcc_3v3_s0>; 129 }; 130 131 vcc3v3_pcie1: regulator-vcc3v3-pcie1 { 132 compatible = "regulator-fixed"; 133 regulator-name = "vcc3v3_pcie1"; 134 regulator-min-microvolt = <3300000>; 135 regulator-max-microvolt = <3300000>; 136 enable-active-high; 137 gpios = <&gpio3 RK_PD4 GPIO_ACTIVE_HIGH>; 138 startup-delay-us = <5000>; 139 vin-supply = <&vcc12v_dcin>; 140 }; 141 142 vcc3v3_rtc_s5: regulator-vcc3v3-rtc-s5 { 143 compatible = "regulator-fixed"; 144 regulator-name = "vcc3v3_rtc_s5"; 145 regulator-boot-on; 146 regulator-always-on; 147 regulator-min-microvolt = <3300000>; 148 regulator-max-microvolt = <3300000>; 149 vin-supply = <&vcc_sys>; 150 }; 151 152 vcc5v0_device: regulator-vcc5v0-device { 153 compatible = "regulator-fixed"; 154 regulator-name = "vcc5v0_device"; 155 regulator-always-on; 156 regulator-boot-on; 157 regulator-min-microvolt = <5000000>; 158 regulator-max-microvolt = <5000000>; 159 vin-supply = <&vcc12v_dcin>; 160 }; 161 162 vcc5v0_host: regulator-vcc5v0-host { 163 compatible = "regulator-fixed"; 164 regulator-name = "vcc5v0_host"; 165 regulator-boot-on; 166 regulator-always-on; 167 regulator-min-microvolt = <5000000>; 168 regulator-max-microvolt = <5000000>; 169 enable-active-high; 170 gpio = <&gpio0 RK_PC7 GPIO_ACTIVE_HIGH>; 171 vin-supply = <&vcc5v0_device>; 172 pinctrl-names = "default"; 173 pinctrl-0 = <&usb_host_pwren>; 174 }; 175 176 vcc_sys: regulator-vcc5v0-sys { 177 compatible = "regulator-fixed"; 178 regulator-name = "vcc_sys"; 179 regulator-always-on; 180 regulator-boot-on; 181 regulator-min-microvolt = <5000000>; 182 regulator-max-microvolt = <5000000>; 183 vin-supply = <&vcc12v_dcin>; 184 }; 185 186 vcc_1v1_nldo_s3: regulator-vcc-1v1-nldo-s3 { 187 compatible = "regulator-fixed"; 188 regulator-name = "vcc_1v1_nldo_s3"; 189 regulator-boot-on; 190 regulator-always-on; 191 regulator-min-microvolt = <1100000>; 192 regulator-max-microvolt = <1100000>; 193 vin-supply = <&vcc_sys>; 194 }; 195 196 vcc_1v8_s0: regulator-vcc-1v8-s0 { 197 compatible = "regulator-fixed"; 198 regulator-name = "vcc_1v8_s0"; 199 regulator-boot-on; 200 regulator-always-on; 201 regulator-min-microvolt = <1800000>; 202 regulator-max-microvolt = <1800000>; 203 vin-supply = <&vcc_1v8_s3>; 204 }; 205 206 vcc_2v0_pldo_s3: regulator-vcc-2v0-pldo-s3 { 207 compatible = "regulator-fixed"; 208 regulator-name = "vcc_2v0_pldo_s3"; 209 regulator-boot-on; 210 regulator-always-on; 211 regulator-min-microvolt = <2000000>; 212 regulator-max-microvolt = <2000000>; 213 vin-supply = <&vcc_sys>; 214 }; 215 216 vcc_3v3_s0: regulator-vcc-3v3-s0 { 217 compatible = "regulator-fixed"; 218 regulator-name = "vcc_3v3_s0"; 219 regulator-boot-on; 220 regulator-always-on; 221 regulator-min-microvolt = <3300000>; 222 regulator-max-microvolt = <3300000>; 223 vin-supply = <&vcc_3v3_s3>; 224 }; 225 226 vcc_ufs_s0: regulator-vcc-ufs-s0 { 227 compatible = "regulator-fixed"; 228 regulator-name = "vcc_ufs_s0"; 229 regulator-boot-on; 230 regulator-always-on; 231 regulator-min-microvolt = <3300000>; 232 regulator-max-microvolt = <3300000>; 233 vin-supply = <&vcc_sys>; 234 }; 235}; 236 237&cpu_l0 { 238 cpu-supply = <&vdd_cpu_lit_s0>; 239}; 240 241&cpu_b0 { 242 cpu-supply = <&vdd_cpu_big_s0>; 243}; 244 245&combphy1_psu { 246 status = "okay"; 247}; 248 249&gmac0 { 250 clock_in_out = "output"; 251 phy-mode = "rgmii-rxid"; 252 phy-handle = <&rgmii_phy0>; 253 pinctrl-names = "default"; 254 pinctrl-0 = <ð0m0_miim 255 ð0m0_tx_bus2 256 ð0m0_rx_bus2 257 ð0m0_rgmii_clk 258 ð0m0_rgmii_bus 259 ðm0_clk0_25m_out>; 260 snps,reset-gpio = <&gpio2 RK_PB5 GPIO_ACTIVE_LOW>; 261 snps,reset-active-low; 262 snps,reset-delays-us = <0 20000 100000>; 263 tx_delay = <0x21>; 264 status = "okay"; 265}; 266 267&gmac1 { 268 clock_in_out = "output"; 269 phy-handle = <&rgmii_phy1>; 270 phy-mode = "rgmii-rxid"; 271 pinctrl-names = "default"; 272 pinctrl-0 = <ð1m0_miim 273 ð1m0_tx_bus2 274 ð1m0_rx_bus2 275 ð1m0_rgmii_clk 276 ð1m0_rgmii_bus 277 ðm0_clk1_25m_out>; 278 snps,reset-gpio = <&gpio3 RK_PA3 GPIO_ACTIVE_LOW>; 279 snps,reset-active-low; 280 snps,reset-delays-us = <0 20000 100000>; 281 tx_delay = <0x20>; 282 status = "okay"; 283}; 284 285&gpu { 286 mali-supply = <&vdd_gpu_s0>; 287 status = "okay"; 288}; 289 290&hdmi { 291 status = "okay"; 292}; 293 294&hdmi_in { 295 hdmi_in_vp0: endpoint { 296 remote-endpoint = <&vp0_out_hdmi>; 297 }; 298}; 299 300&hdmi_out { 301 hdmi_out_con: endpoint { 302 remote-endpoint = <&hdmi_con_in>; 303 }; 304}; 305 306&hdptxphy { 307 status = "okay"; 308}; 309 310&i2c1 { 311 status = "okay"; 312 313 rk806: pmic@23 { 314 compatible = "rockchip,rk806"; 315 reg = <0x23>; 316 interrupt-parent = <&gpio0>; 317 interrupts = <6 IRQ_TYPE_LEVEL_LOW>; 318 gpio-controller; 319 #gpio-cells = <2>; 320 pinctrl-names = "default"; 321 pinctrl-0 = <&pmic_pins>, <&rk806_dvs1_null>, 322 <&rk806_dvs2_null>, <&rk806_dvs3_null>; 323 system-power-controller; 324 325 vcc1-supply = <&vcc_sys>; 326 vcc2-supply = <&vcc_sys>; 327 vcc3-supply = <&vcc_sys>; 328 vcc4-supply = <&vcc_sys>; 329 vcc5-supply = <&vcc_sys>; 330 vcc6-supply = <&vcc_sys>; 331 vcc7-supply = <&vcc_sys>; 332 vcc8-supply = <&vcc_sys>; 333 vcc9-supply = <&vcc_sys>; 334 vcc10-supply = <&vcc_sys>; 335 vcc11-supply = <&vcc_2v0_pldo_s3>; 336 vcc12-supply = <&vcc_sys>; 337 vcc13-supply = <&vcc_1v1_nldo_s3>; 338 vcc14-supply = <&vcc_1v1_nldo_s3>; 339 vcca-supply = <&vcc_sys>; 340 341 rk806_dvs1_null: dvs1-null-pins { 342 pins = "gpio_pwrctrl1"; 343 function = "pin_fun0"; 344 }; 345 346 rk806_dvs2_null: dvs2-null-pins { 347 pins = "gpio_pwrctrl2"; 348 function = "pin_fun0"; 349 }; 350 351 rk806_dvs3_null: dvs3-null-pins { 352 pins = "gpio_pwrctrl3"; 353 function = "pin_fun0"; 354 }; 355 356 rk806_dvs1_slp: dvs1-slp-pins { 357 pins = "gpio_pwrctrl1"; 358 function = "pin_fun1"; 359 }; 360 361 rk806_dvs1_pwrdn: dvs1-pwrdn-pins { 362 pins = "gpio_pwrctrl1"; 363 function = "pin_fun2"; 364 }; 365 366 rk806_dvs1_rst: dvs1-rst-pins { 367 pins = "gpio_pwrctrl1"; 368 function = "pin_fun3"; 369 }; 370 371 rk806_dvs2_slp: dvs2-slp-pins { 372 pins = "gpio_pwrctrl2"; 373 function = "pin_fun1"; 374 }; 375 376 rk806_dvs2_pwrdn: dvs2-pwrdn-pins { 377 pins = "gpio_pwrctrl2"; 378 function = "pin_fun2"; 379 }; 380 381 rk806_dvs2_rst: dvs2-rst-pins { 382 pins = "gpio_pwrctrl2"; 383 function = "pin_fun3"; 384 }; 385 386 rk806_dvs2_dvs: dvs2-dvs-pins { 387 pins = "gpio_pwrctrl2"; 388 function = "pin_fun4"; 389 }; 390 391 rk806_dvs2_gpio: dvs2-gpio-pins { 392 pins = "gpio_pwrctrl2"; 393 function = "pin_fun5"; 394 }; 395 396 rk806_dvs3_slp: dvs3-slp-pins { 397 pins = "gpio_pwrctrl3"; 398 function = "pin_fun1"; 399 }; 400 401 rk806_dvs3_pwrdn: dvs3-pwrdn-pins { 402 pins = "gpio_pwrctrl3"; 403 function = "pin_fun2"; 404 }; 405 406 rk806_dvs3_rst: dvs3-rst-pins { 407 pins = "gpio_pwrctrl3"; 408 function = "pin_fun3"; 409 }; 410 411 rk806_dvs3_dvs: dvs3-dvs-pins { 412 pins = "gpio_pwrctrl3"; 413 function = "pin_fun4"; 414 }; 415 416 rk806_dvs3_gpio: dvs3-gpio-pins { 417 pins = "gpio_pwrctrl3"; 418 function = "pin_fun5"; 419 }; 420 421 regulators { 422 vdd_cpu_big_s0: dcdc-reg1 { 423 regulator-always-on; 424 regulator-boot-on; 425 regulator-min-microvolt = <550000>; 426 regulator-max-microvolt = <950000>; 427 regulator-ramp-delay = <12500>; 428 regulator-name = "vdd_cpu_big_s0"; 429 regulator-enable-ramp-delay = <400>; 430 431 regulator-state-mem { 432 regulator-off-in-suspend; 433 }; 434 }; 435 436 vdd_npu_s0: dcdc-reg2 { 437 regulator-boot-on; 438 regulator-min-microvolt = <550000>; 439 regulator-max-microvolt = <950000>; 440 regulator-ramp-delay = <12500>; 441 regulator-name = "vdd_npu_s0"; 442 regulator-enable-ramp-delay = <400>; 443 444 regulator-state-mem { 445 regulator-off-in-suspend; 446 }; 447 }; 448 449 vdd_cpu_lit_s0: dcdc-reg3 { 450 regulator-always-on; 451 regulator-boot-on; 452 regulator-min-microvolt = <550000>; 453 regulator-max-microvolt = <950000>; 454 regulator-ramp-delay = <12500>; 455 regulator-name = "vdd_cpu_lit_s0"; 456 457 regulator-state-mem { 458 regulator-off-in-suspend; 459 regulator-suspend-microvolt = <750000>; 460 }; 461 }; 462 463 vcc_3v3_s3: dcdc-reg4 { 464 regulator-always-on; 465 regulator-boot-on; 466 regulator-min-microvolt = <3300000>; 467 regulator-max-microvolt = <3300000>; 468 regulator-name = "vcc_3v3_s3"; 469 470 regulator-state-mem { 471 regulator-on-in-suspend; 472 regulator-suspend-microvolt = <3300000>; 473 }; 474 }; 475 476 vdd_gpu_s0: dcdc-reg5 { 477 regulator-boot-on; 478 regulator-min-microvolt = <550000>; 479 regulator-max-microvolt = <900000>; 480 regulator-ramp-delay = <12500>; 481 regulator-name = "vdd_gpu_s0"; 482 regulator-enable-ramp-delay = <400>; 483 484 regulator-state-mem { 485 regulator-off-in-suspend; 486 regulator-suspend-microvolt = <850000>; 487 }; 488 }; 489 490 vddq_ddr_s0: dcdc-reg6 { 491 regulator-always-on; 492 regulator-boot-on; 493 regulator-name = "vddq_ddr_s0"; 494 495 regulator-state-mem { 496 regulator-off-in-suspend; 497 }; 498 }; 499 500 vdd_logic_s0: dcdc-reg7 { 501 regulator-always-on; 502 regulator-boot-on; 503 regulator-min-microvolt = <550000>; 504 regulator-max-microvolt = <800000>; 505 regulator-name = "vdd_logic_s0"; 506 507 regulator-state-mem { 508 regulator-off-in-suspend; 509 }; 510 }; 511 512 vcc_1v8_s3: dcdc-reg8 { 513 regulator-always-on; 514 regulator-boot-on; 515 regulator-min-microvolt = <1800000>; 516 regulator-max-microvolt = <1800000>; 517 regulator-name = "vcc_1v8_s3"; 518 519 regulator-state-mem { 520 regulator-on-in-suspend; 521 regulator-suspend-microvolt = <1800000>; 522 }; 523 }; 524 525 vdd2_ddr_s3: dcdc-reg9 { 526 regulator-always-on; 527 regulator-boot-on; 528 regulator-name = "vdd2_ddr_s3"; 529 530 regulator-state-mem { 531 regulator-on-in-suspend; 532 }; 533 }; 534 535 vdd_ddr_s0: dcdc-reg10 { 536 regulator-always-on; 537 regulator-boot-on; 538 regulator-min-microvolt = <550000>; 539 regulator-max-microvolt = <1200000>; 540 regulator-name = "vdd_ddr_s0"; 541 542 regulator-state-mem { 543 regulator-off-in-suspend; 544 }; 545 }; 546 547 vcca_1v8_s0: pldo-reg1 { 548 regulator-always-on; 549 regulator-boot-on; 550 regulator-min-microvolt = <1800000>; 551 regulator-max-microvolt = <1800000>; 552 regulator-name = "vcca_1v8_s0"; 553 554 regulator-state-mem { 555 regulator-off-in-suspend; 556 }; 557 }; 558 559 vcca1v8_pldo2_s0: pldo-reg2 { 560 regulator-always-on; 561 regulator-boot-on; 562 regulator-min-microvolt = <1800000>; 563 regulator-max-microvolt = <1800000>; 564 regulator-name = "vcca1v8_pldo2_s0"; 565 566 regulator-state-mem { 567 regulator-off-in-suspend; 568 }; 569 }; 570 571 vdda_1v2_s0: pldo-reg3 { 572 regulator-always-on; 573 regulator-boot-on; 574 regulator-min-microvolt = <1200000>; 575 regulator-max-microvolt = <1200000>; 576 regulator-name = "vdda_1v2_s0"; 577 578 regulator-state-mem { 579 regulator-off-in-suspend; 580 }; 581 }; 582 583 vcca_3v3_s0: pldo-reg4 { 584 regulator-always-on; 585 regulator-boot-on; 586 regulator-min-microvolt = <3300000>; 587 regulator-max-microvolt = <3300000>; 588 regulator-name = "vcca_3v3_s0"; 589 590 regulator-state-mem { 591 regulator-off-in-suspend; 592 }; 593 }; 594 595 vccio_sd_s0: pldo-reg5 { 596 regulator-always-on; 597 regulator-boot-on; 598 regulator-min-microvolt = <1800000>; 599 regulator-max-microvolt = <3300000>; 600 regulator-name = "vccio_sd_s0"; 601 602 regulator-state-mem { 603 regulator-off-in-suspend; 604 }; 605 }; 606 607 vcca1v8_pldo6_s3: pldo-reg6 { 608 regulator-always-on; 609 regulator-boot-on; 610 regulator-min-microvolt = <1800000>; 611 regulator-max-microvolt = <1800000>; 612 regulator-name = "vcca1v8_pldo6_s3"; 613 614 regulator-state-mem { 615 regulator-on-in-suspend; 616 regulator-suspend-microvolt = <1800000>; 617 }; 618 }; 619 620 vdd_0v75_s3: nldo-reg1 { 621 regulator-always-on; 622 regulator-boot-on; 623 regulator-min-microvolt = <550000>; 624 regulator-max-microvolt = <750000>; 625 regulator-name = "vdd_0v75_s3"; 626 627 regulator-state-mem { 628 regulator-on-in-suspend; 629 regulator-suspend-microvolt = <750000>; 630 }; 631 }; 632 633 vdda_ddr_pll_s0: nldo-reg2 { 634 regulator-always-on; 635 regulator-boot-on; 636 regulator-min-microvolt = <850000>; 637 regulator-max-microvolt = <850000>; 638 regulator-name = "vdda_ddr_pll_s0"; 639 640 regulator-state-mem { 641 regulator-off-in-suspend; 642 }; 643 }; 644 645 vdda0v75_hdmi_s0: nldo-reg3 { 646 regulator-boot-on; 647 regulator-min-microvolt = <837500>; 648 regulator-max-microvolt = <837500>; 649 regulator-name = "vdda0v75_hdmi_s0"; 650 651 regulator-state-mem { 652 regulator-off-in-suspend; 653 }; 654 }; 655 656 vdda_0v85_s0: nldo-reg4 { 657 regulator-always-on; 658 regulator-boot-on; 659 regulator-min-microvolt = <850000>; 660 regulator-max-microvolt = <850000>; 661 regulator-name = "vdda_0v85_s0"; 662 663 regulator-state-mem { 664 regulator-off-in-suspend; 665 }; 666 }; 667 668 vdda_0v75_s0: nldo-reg5 { 669 regulator-always-on; 670 regulator-boot-on; 671 regulator-min-microvolt = <750000>; 672 regulator-max-microvolt = <750000>; 673 regulator-name = "vdda_0v75_s0"; 674 675 regulator-state-mem { 676 regulator-off-in-suspend; 677 }; 678 }; 679 }; 680 }; 681}; 682 683&mdio0 { 684 rgmii_phy0: phy@1 { 685 compatible = "ethernet-phy-ieee802.3-c22"; 686 reg = <0x1>; 687 clocks = <&cru REFCLKO25M_GMAC0_OUT>; 688 }; 689}; 690 691&mdio1 { 692 rgmii_phy1: phy@1 { 693 compatible = "ethernet-phy-ieee802.3-c22"; 694 reg = <0x1>; 695 clocks = <&cru REFCLKO25M_GMAC1_OUT>; 696 }; 697}; 698 699&pcie1 { 700 reset-gpios = <&gpio4 RK_PC4 GPIO_ACTIVE_HIGH>; 701 vpcie3v3-supply = <&vcc3v3_pcie1>; 702 703 /* 704 * Disable usb_drd1_dwc3 if enabling pcie1 and set Dial_Switch_1 705 * to low state according to the schematic of page 17. 706 */ 707 status = "disabled"; 708}; 709 710&pinctrl { 711 usb { 712 usb_host_pwren: usb-host-pwren { 713 rockchip,pins = <0 RK_PC7 RK_FUNC_GPIO &pcfg_pull_none>; 714 }; 715 716 usb_otg0_pwren: usb-otg0-pwren { 717 rockchip,pins = <0 RK_PD1 RK_FUNC_GPIO &pcfg_pull_none>; 718 }; 719 720 usbc0_int: usbc0-int { 721 rockchip,pins = <0 RK_PA5 RK_FUNC_GPIO &pcfg_pull_up>; 722 }; 723 }; 724}; 725 726&sdmmc { 727 bus-width = <4>; 728 cap-mmc-highspeed; 729 cap-sd-highspeed; 730 disable-wp; 731 max-frequency = <200000000>; 732 no-sdio; 733 no-mmc; 734 sd-uhs-sdr104; 735 vqmmc-supply = <&vccio_sd_s0>; 736 status = "okay"; 737}; 738 739&saradc { 740 vref-supply = <&vcca_1v8_s0>; 741 status = "okay"; 742}; 743 744&u2phy0 { 745 status = "okay"; 746}; 747 748&u2phy0_otg { 749 phy-supply = <&vbus5v0_typec>; 750 status = "okay"; 751}; 752 753&u2phy1 { 754 status = "okay"; 755}; 756 757&u2phy1_otg { 758 phy-supply = <&vcc5v0_host>; 759 status = "okay"; 760}; 761 762&uart0 { 763 status = "okay"; 764}; 765 766&ufshc { 767 status = "okay"; 768}; 769 770&usbdp_phy { 771 rockchip,dp-lane-mux = <2 3>; 772 status = "okay"; 773}; 774 775&usb_drd0_dwc3 { 776 dr_mode = "host"; 777 status = "okay"; 778}; 779 780&usb_drd1_dwc3 { 781 dr_mode = "host"; 782 status = "okay"; 783}; 784 785&vop { 786 status = "okay"; 787}; 788 789&vop_mmu { 790 status = "okay"; 791}; 792 793&vp0 { 794 vp0_out_hdmi: endpoint@ROCKCHIP_VOP2_EP_HDMI0 { 795 reg = <ROCKCHIP_VOP2_EP_HDMI0>; 796 remote-endpoint = <&hdmi_in_vp0>; 797 }; 798}; 799