17d0873ebSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 27d0873ebSEmmanuel Vadot 37d0873ebSEmmanuel Vadot/dts-v1/; 47d0873ebSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 57d0873ebSEmmanuel Vadot#include <dt-bindings/leds/common.h> 67d0873ebSEmmanuel Vadot#include <dt-bindings/pinctrl/rockchip.h> 77d0873ebSEmmanuel Vadot#include <dt-bindings/pwm/pwm.h> 87d0873ebSEmmanuel Vadot#include "rk3568.dtsi" 97d0873ebSEmmanuel Vadot 107d0873ebSEmmanuel Vadot/ { 117d0873ebSEmmanuel Vadot model = "Protonic MECSBC"; 127d0873ebSEmmanuel Vadot compatible = "prt,mecsbc", "rockchip,rk3568"; 137d0873ebSEmmanuel Vadot 147d0873ebSEmmanuel Vadot aliases { 157d0873ebSEmmanuel Vadot mmc0 = &sdhci; 167d0873ebSEmmanuel Vadot mmc1 = &sdmmc0; 177d0873ebSEmmanuel Vadot }; 187d0873ebSEmmanuel Vadot 197d0873ebSEmmanuel Vadot chosen: chosen { 207d0873ebSEmmanuel Vadot stdout-path = "serial2:1500000n8"; 217d0873ebSEmmanuel Vadot }; 227d0873ebSEmmanuel Vadot 237d0873ebSEmmanuel Vadot tas2562-sound { 247d0873ebSEmmanuel Vadot compatible = "simple-audio-card"; 257d0873ebSEmmanuel Vadot simple-audio-card,format = "i2s"; 267d0873ebSEmmanuel Vadot simple-audio-card,name = "Speaker"; 277d0873ebSEmmanuel Vadot simple-audio-card,mclk-fs = <256>; 287d0873ebSEmmanuel Vadot 297d0873ebSEmmanuel Vadot simple-audio-card,cpu { 307d0873ebSEmmanuel Vadot sound-dai = <&i2s1_8ch>; 317d0873ebSEmmanuel Vadot }; 327d0873ebSEmmanuel Vadot 337d0873ebSEmmanuel Vadot simple-audio-card,codec { 347d0873ebSEmmanuel Vadot sound-dai = <&tas2562>; 357d0873ebSEmmanuel Vadot }; 367d0873ebSEmmanuel Vadot }; 377d0873ebSEmmanuel Vadot 387d0873ebSEmmanuel Vadot vdd_gpu: regulator-vdd-gpu { 397d0873ebSEmmanuel Vadot compatible = "pwm-regulator"; 407d0873ebSEmmanuel Vadot pwms = <&pwm1 0 5000 PWM_POLARITY_INVERTED>; 417d0873ebSEmmanuel Vadot regulator-name = "vdd_gpu"; 427d0873ebSEmmanuel Vadot regulator-min-microvolt = <915000>; 437d0873ebSEmmanuel Vadot regulator-max-microvolt = <1000000>; 447d0873ebSEmmanuel Vadot regulator-always-on; 457d0873ebSEmmanuel Vadot regulator-boot-on; 467d0873ebSEmmanuel Vadot regulator-settling-time-up-us = <250>; 477d0873ebSEmmanuel Vadot pwm-dutycycle-range = <0 100>; /* dutycycle inverted 0% => 0.915V */ 487d0873ebSEmmanuel Vadot }; 497d0873ebSEmmanuel Vadot 507d0873ebSEmmanuel Vadot p3v3: regulator-p3v3 { 517d0873ebSEmmanuel Vadot compatible = "regulator-fixed"; 527d0873ebSEmmanuel Vadot regulator-name = "p3v3"; 537d0873ebSEmmanuel Vadot regulator-always-on; 547d0873ebSEmmanuel Vadot regulator-boot-on; 557d0873ebSEmmanuel Vadot regulator-min-microvolt = <3300000>; 567d0873ebSEmmanuel Vadot regulator-max-microvolt = <3300000>; 577d0873ebSEmmanuel Vadot }; 587d0873ebSEmmanuel Vadot 597d0873ebSEmmanuel Vadot p1v8: regulator-p1v8 { 607d0873ebSEmmanuel Vadot compatible = "regulator-fixed"; 617d0873ebSEmmanuel Vadot regulator-name = "p1v8"; 627d0873ebSEmmanuel Vadot regulator-always-on; 637d0873ebSEmmanuel Vadot regulator-boot-on; 647d0873ebSEmmanuel Vadot regulator-min-microvolt = <1800000>; 657d0873ebSEmmanuel Vadot regulator-max-microvolt = <1800000>; 667d0873ebSEmmanuel Vadot }; 677d0873ebSEmmanuel Vadot 687d0873ebSEmmanuel Vadot vcc_sd: regulator-sd { 697d0873ebSEmmanuel Vadot compatible = "regulator-gpio"; 707d0873ebSEmmanuel Vadot enable-gpios = <&gpio0 RK_PA5 GPIO_ACTIVE_HIGH>; 717d0873ebSEmmanuel Vadot enable-active-high; 727d0873ebSEmmanuel Vadot gpios = <&gpio0 RK_PA6 GPIO_ACTIVE_HIGH>; 737d0873ebSEmmanuel Vadot regulator-name = "sdcard-gpio-supply"; 747d0873ebSEmmanuel Vadot regulator-min-microvolt = <1800000>; 757d0873ebSEmmanuel Vadot regulator-max-microvolt = <3300000>; 767d0873ebSEmmanuel Vadot states = <1800000 0x1>, <3300000 0x0>; 777d0873ebSEmmanuel Vadot }; 787d0873ebSEmmanuel Vadot 797d0873ebSEmmanuel Vadot vdd_npu: regulator-vdd-npu { 807d0873ebSEmmanuel Vadot compatible = "pwm-regulator"; 817d0873ebSEmmanuel Vadot pwms = <&pwm2 0 5000 PWM_POLARITY_INVERTED>; 827d0873ebSEmmanuel Vadot regulator-name = "vdd_npu"; 837d0873ebSEmmanuel Vadot regulator-min-microvolt = <915000>; 847d0873ebSEmmanuel Vadot regulator-max-microvolt = <1000000>; 857d0873ebSEmmanuel Vadot regulator-always-on; 867d0873ebSEmmanuel Vadot regulator-boot-on; 877d0873ebSEmmanuel Vadot regulator-settling-time-up-us = <250>; 887d0873ebSEmmanuel Vadot pwm-dutycycle-range = <0 100>; /* dutycycle inverted 0% => 0.915V */ 897d0873ebSEmmanuel Vadot }; 907d0873ebSEmmanuel Vadot}; 917d0873ebSEmmanuel Vadot 92*b2d2a78aSEmmanuel Vadot&can0 { 93*b2d2a78aSEmmanuel Vadot compatible = "rockchip,rk3568v3-canfd", "rockchip,rk3568v2-canfd"; 94*b2d2a78aSEmmanuel Vadot pinctrl-names = "default"; 95*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&can0m0_pins>; 96*b2d2a78aSEmmanuel Vadot status = "okay"; 97*b2d2a78aSEmmanuel Vadot}; 98*b2d2a78aSEmmanuel Vadot 99*b2d2a78aSEmmanuel Vadot&can1 { 100*b2d2a78aSEmmanuel Vadot compatible = "rockchip,rk3568v3-canfd", "rockchip,rk3568v2-canfd"; 101*b2d2a78aSEmmanuel Vadot pinctrl-names = "default"; 102*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&can1m1_pins>; 103*b2d2a78aSEmmanuel Vadot status = "okay"; 104*b2d2a78aSEmmanuel Vadot}; 105*b2d2a78aSEmmanuel Vadot 1067d0873ebSEmmanuel Vadot&combphy0 { 1077d0873ebSEmmanuel Vadot status = "okay"; 1087d0873ebSEmmanuel Vadot}; 1097d0873ebSEmmanuel Vadot 1107d0873ebSEmmanuel Vadot&combphy1 { 1117d0873ebSEmmanuel Vadot status = "okay"; 1127d0873ebSEmmanuel Vadot}; 1137d0873ebSEmmanuel Vadot 1147d0873ebSEmmanuel Vadot&combphy2 { 1157d0873ebSEmmanuel Vadot status = "okay"; 1167d0873ebSEmmanuel Vadot}; 1177d0873ebSEmmanuel Vadot 1187d0873ebSEmmanuel Vadot&cpu0 { 1197d0873ebSEmmanuel Vadot cpu-supply = <&vdd_cpu>; 1207d0873ebSEmmanuel Vadot}; 1217d0873ebSEmmanuel Vadot 1227d0873ebSEmmanuel Vadot&cpu1 { 1237d0873ebSEmmanuel Vadot cpu-supply = <&vdd_cpu>; 1247d0873ebSEmmanuel Vadot}; 1257d0873ebSEmmanuel Vadot 1267d0873ebSEmmanuel Vadot&cpu2 { 1277d0873ebSEmmanuel Vadot cpu-supply = <&vdd_cpu>; 1287d0873ebSEmmanuel Vadot}; 1297d0873ebSEmmanuel Vadot 1307d0873ebSEmmanuel Vadot&cpu3 { 1317d0873ebSEmmanuel Vadot cpu-supply = <&vdd_cpu>; 1327d0873ebSEmmanuel Vadot}; 1337d0873ebSEmmanuel Vadot 1347d0873ebSEmmanuel Vadot&gmac1 { 1357d0873ebSEmmanuel Vadot assigned-clocks = <&cru SCLK_GMAC1_RX_TX>, <&cru SCLK_GMAC1>; 1367d0873ebSEmmanuel Vadot assigned-clock-parents = <&cru SCLK_GMAC1_RGMII_SPEED>, <&cru CLK_MAC1_2TOP>; 1377d0873ebSEmmanuel Vadot phy-handle = <&rgmii_phy1>; 1387d0873ebSEmmanuel Vadot phy-mode = "rgmii-id"; 1397d0873ebSEmmanuel Vadot clock_in_out = "output"; 1407d0873ebSEmmanuel Vadot pinctrl-names = "default"; 1417d0873ebSEmmanuel Vadot pinctrl-0 = <&gmac1m1_miim 1427d0873ebSEmmanuel Vadot &gmac1m1_tx_bus2 1437d0873ebSEmmanuel Vadot &gmac1m1_rx_bus2 1447d0873ebSEmmanuel Vadot &gmac1m1_rgmii_clk 1457d0873ebSEmmanuel Vadot &gmac1m1_clkinout 1467d0873ebSEmmanuel Vadot &gmac1m1_rgmii_bus>; 1477d0873ebSEmmanuel Vadot status = "okay"; 1487d0873ebSEmmanuel Vadot}; 1497d0873ebSEmmanuel Vadot 1507d0873ebSEmmanuel Vadot&gpu { 1517d0873ebSEmmanuel Vadot mali-supply = <&vdd_gpu>; 1527d0873ebSEmmanuel Vadot status = "okay"; 1537d0873ebSEmmanuel Vadot}; 1547d0873ebSEmmanuel Vadot 1557d0873ebSEmmanuel Vadot&gpu_opp_table { 1567d0873ebSEmmanuel Vadot compatible = "operating-points-v2"; 1577d0873ebSEmmanuel Vadot 1587d0873ebSEmmanuel Vadot opp-200000000 { 1597d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <200000000>; 1607d0873ebSEmmanuel Vadot opp-microvolt = <915000>; 1617d0873ebSEmmanuel Vadot }; 1627d0873ebSEmmanuel Vadot 1637d0873ebSEmmanuel Vadot opp-300000000 { 1647d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <300000000>; 1657d0873ebSEmmanuel Vadot opp-microvolt = <915000>; 1667d0873ebSEmmanuel Vadot }; 1677d0873ebSEmmanuel Vadot 1687d0873ebSEmmanuel Vadot opp-400000000 { 1697d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 1707d0873ebSEmmanuel Vadot opp-microvolt = <915000>; 1717d0873ebSEmmanuel Vadot }; 1727d0873ebSEmmanuel Vadot 1737d0873ebSEmmanuel Vadot opp-600000000 { 1747d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 1757d0873ebSEmmanuel Vadot opp-microvolt = <920000>; 1767d0873ebSEmmanuel Vadot }; 1777d0873ebSEmmanuel Vadot 1787d0873ebSEmmanuel Vadot opp-700000000 { 1797d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <700000000>; 1807d0873ebSEmmanuel Vadot opp-microvolt = <950000>; 1817d0873ebSEmmanuel Vadot }; 1827d0873ebSEmmanuel Vadot 1837d0873ebSEmmanuel Vadot opp-800000000 { 1847d0873ebSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 1857d0873ebSEmmanuel Vadot opp-microvolt = <1000000>; 1867d0873ebSEmmanuel Vadot }; 1877d0873ebSEmmanuel Vadot}; 1887d0873ebSEmmanuel Vadot 1897d0873ebSEmmanuel Vadot&i2c0 { 1907d0873ebSEmmanuel Vadot status = "okay"; 1917d0873ebSEmmanuel Vadot 1927d0873ebSEmmanuel Vadot vdd_cpu: regulator@60 { 1937d0873ebSEmmanuel Vadot compatible = "fcs,fan53555"; 1947d0873ebSEmmanuel Vadot reg = <0x60>; 1957d0873ebSEmmanuel Vadot fcs,suspend-voltage-selector = <1>; 1967d0873ebSEmmanuel Vadot regulator-name = "vdd_cpu"; 1977d0873ebSEmmanuel Vadot regulator-always-on; 1987d0873ebSEmmanuel Vadot regulator-boot-on; 1997d0873ebSEmmanuel Vadot regulator-min-microvolt = <800000>; 2007d0873ebSEmmanuel Vadot regulator-max-microvolt = <1150000>; 2017d0873ebSEmmanuel Vadot regulator-ramp-delay = <2300>; 2027d0873ebSEmmanuel Vadot 2037d0873ebSEmmanuel Vadot regulator-state-mem { 2047d0873ebSEmmanuel Vadot regulator-off-in-suspend; 2057d0873ebSEmmanuel Vadot }; 2067d0873ebSEmmanuel Vadot }; 2077d0873ebSEmmanuel Vadot}; 2087d0873ebSEmmanuel Vadot 2097d0873ebSEmmanuel Vadot&i2c2 { 2107d0873ebSEmmanuel Vadot status = "okay"; 2117d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2127d0873ebSEmmanuel Vadot pinctrl-0 = <&i2c2m0_xfer>; 2137d0873ebSEmmanuel Vadot}; 2147d0873ebSEmmanuel Vadot 2157d0873ebSEmmanuel Vadot&i2c3 { 2167d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2177d0873ebSEmmanuel Vadot pinctrl-0 = <&i2c3m0_xfer>; 2187d0873ebSEmmanuel Vadot status = "okay"; 2197d0873ebSEmmanuel Vadot 2207d0873ebSEmmanuel Vadot tas2562: amplifier@4c { 2217d0873ebSEmmanuel Vadot compatible = "ti,tas2562"; 2227d0873ebSEmmanuel Vadot reg = <0x4c>; 2237d0873ebSEmmanuel Vadot #sound-dai-cells = <0>; 2247d0873ebSEmmanuel Vadot shutdown-gpios = <&gpio1 RK_PD4 GPIO_ACTIVE_HIGH>; 2257d0873ebSEmmanuel Vadot interrupt-parent = <&gpio1>; 2267d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2277d0873ebSEmmanuel Vadot pinctrl-0 = <&pinctrl_tas2562>; 2287d0873ebSEmmanuel Vadot interrupts = <RK_PD1 IRQ_TYPE_LEVEL_LOW>; 2297d0873ebSEmmanuel Vadot ti,imon-slot-no = <0>; 2307d0873ebSEmmanuel Vadot }; 2317d0873ebSEmmanuel Vadot}; 2327d0873ebSEmmanuel Vadot 2337d0873ebSEmmanuel Vadot&i2c5 { 2347d0873ebSEmmanuel Vadot status = "okay"; 2357d0873ebSEmmanuel Vadot 2367d0873ebSEmmanuel Vadot temperature-sensor@48 { 2377d0873ebSEmmanuel Vadot compatible = "ti,tmp1075"; 2387d0873ebSEmmanuel Vadot reg = <0x48>; 2397d0873ebSEmmanuel Vadot }; 2407d0873ebSEmmanuel Vadot 2417d0873ebSEmmanuel Vadot rtc@51 { 2427d0873ebSEmmanuel Vadot compatible = "nxp,pcf85363"; 2437d0873ebSEmmanuel Vadot reg = <0x51>; 2447d0873ebSEmmanuel Vadot #clock-cells = <0>; 2457d0873ebSEmmanuel Vadot clock-output-names = "rtcic_32kout"; 2467d0873ebSEmmanuel Vadot }; 2477d0873ebSEmmanuel Vadot}; 2487d0873ebSEmmanuel Vadot 2497d0873ebSEmmanuel Vadot&i2s1_8ch { 2507d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2517d0873ebSEmmanuel Vadot pinctrl-0 = <&i2s1m0_sclktx &i2s1m0_lrcktx &i2s1m0_sdi0 &i2s1m0_sdo0>; 2527d0873ebSEmmanuel Vadot rockchip,trcm-sync-tx-only; 2537d0873ebSEmmanuel Vadot status = "okay"; 2547d0873ebSEmmanuel Vadot}; 2557d0873ebSEmmanuel Vadot 2567d0873ebSEmmanuel Vadot&mdio1 { 2577d0873ebSEmmanuel Vadot rgmii_phy1: ethernet-phy@2 { 2587d0873ebSEmmanuel Vadot compatible = "ethernet-phy-ieee802.3-c22"; 2597d0873ebSEmmanuel Vadot reg = <0x2>; 2607d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2617d0873ebSEmmanuel Vadot pinctrl-0 = <ð_phy1_rst>; 2627d0873ebSEmmanuel Vadot reset-assert-us = <20000>; 2637d0873ebSEmmanuel Vadot reset-deassert-us = <100000>; 2647d0873ebSEmmanuel Vadot reset-gpios = <&gpio4 RK_PB3 GPIO_ACTIVE_LOW>; 2657d0873ebSEmmanuel Vadot }; 2667d0873ebSEmmanuel Vadot}; 2677d0873ebSEmmanuel Vadot 2687d0873ebSEmmanuel Vadot&pcie2x1 { 2697d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2707d0873ebSEmmanuel Vadot pinctrl-0 = <&pcie20m1_pins>; 2717d0873ebSEmmanuel Vadot reset-gpios = <&gpio3 RK_PC1 GPIO_ACTIVE_HIGH>; 2727d0873ebSEmmanuel Vadot status = "okay"; 2737d0873ebSEmmanuel Vadot}; 2747d0873ebSEmmanuel Vadot 2757d0873ebSEmmanuel Vadot&pcie30phy { 2767d0873ebSEmmanuel Vadot status = "okay"; 2777d0873ebSEmmanuel Vadot}; 2787d0873ebSEmmanuel Vadot 2797d0873ebSEmmanuel Vadot&pcie3x2 { 2807d0873ebSEmmanuel Vadot pinctrl-names = "default"; 2817d0873ebSEmmanuel Vadot pinctrl-0 = <&pcie30x2m1_pins>; 2827d0873ebSEmmanuel Vadot reset-gpios = <&gpio2 RK_PD6 GPIO_ACTIVE_HIGH>; 2837d0873ebSEmmanuel Vadot vpcie3v3-supply = <&p3v3>; 2847d0873ebSEmmanuel Vadot status = "okay"; 2857d0873ebSEmmanuel Vadot}; 2867d0873ebSEmmanuel Vadot 2877d0873ebSEmmanuel Vadot&pinctrl { 2887d0873ebSEmmanuel Vadot ethernet { 2897d0873ebSEmmanuel Vadot eth_phy1_rst: eth-phy1-rst { 2907d0873ebSEmmanuel Vadot rockchip,pins = <4 RK_PB3 RK_FUNC_GPIO &pcfg_pull_none>; 2917d0873ebSEmmanuel Vadot }; 2927d0873ebSEmmanuel Vadot }; 2937d0873ebSEmmanuel Vadot 2947d0873ebSEmmanuel Vadot tas2562 { 2957d0873ebSEmmanuel Vadot pinctrl_tas2562: tas2562 { 2967d0873ebSEmmanuel Vadot rockchip,pins = <1 RK_PD4 RK_FUNC_GPIO &pcfg_pull_up>; 2977d0873ebSEmmanuel Vadot }; 2987d0873ebSEmmanuel Vadot }; 2997d0873ebSEmmanuel Vadot}; 3007d0873ebSEmmanuel Vadot 3017d0873ebSEmmanuel Vadot&pmu_io_domains { 3027d0873ebSEmmanuel Vadot pmuio1-supply = <&p3v3>; 3037d0873ebSEmmanuel Vadot pmuio2-supply = <&p3v3>; 3047d0873ebSEmmanuel Vadot vccio1-supply = <&p1v8>; 3057d0873ebSEmmanuel Vadot vccio2-supply = <&p1v8>; 3067d0873ebSEmmanuel Vadot vccio3-supply = <&vcc_sd>; 3077d0873ebSEmmanuel Vadot vccio4-supply = <&p1v8>; 3087d0873ebSEmmanuel Vadot vccio5-supply = <&p3v3>; 3097d0873ebSEmmanuel Vadot vccio6-supply = <&p1v8>; 3107d0873ebSEmmanuel Vadot vccio7-supply = <&p3v3>; 3117d0873ebSEmmanuel Vadot status = "okay"; 3127d0873ebSEmmanuel Vadot}; 3137d0873ebSEmmanuel Vadot 3147d0873ebSEmmanuel Vadot&pwm1 { 3157d0873ebSEmmanuel Vadot status = "okay"; 3167d0873ebSEmmanuel Vadot pinctrl-names = "default"; 3177d0873ebSEmmanuel Vadot pinctrl-0 = <&pwm1m0_pins>; 3187d0873ebSEmmanuel Vadot}; 3197d0873ebSEmmanuel Vadot 3207d0873ebSEmmanuel Vadot&pwm2 { 3217d0873ebSEmmanuel Vadot status = "okay"; 3227d0873ebSEmmanuel Vadot pinctrl-names = "default"; 3237d0873ebSEmmanuel Vadot pinctrl-0 = <&pwm2m0_pins>; 3247d0873ebSEmmanuel Vadot}; 3257d0873ebSEmmanuel Vadot 3267d0873ebSEmmanuel Vadot&saradc { 3277d0873ebSEmmanuel Vadot vref-supply = <&p1v8>; 3287d0873ebSEmmanuel Vadot status = "okay"; 3297d0873ebSEmmanuel Vadot}; 3307d0873ebSEmmanuel Vadot 3317d0873ebSEmmanuel Vadot&sdhci { 3327d0873ebSEmmanuel Vadot bus-width = <8>; 3337d0873ebSEmmanuel Vadot max-frequency = <200000000>; 3347d0873ebSEmmanuel Vadot non-removable; 3357d0873ebSEmmanuel Vadot pinctrl-names = "default"; 3367d0873ebSEmmanuel Vadot pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd &emmc_datastrobe>; 3377d0873ebSEmmanuel Vadot vmmc-supply = <&p3v3>; 3387d0873ebSEmmanuel Vadot vqmmc-supply = <&p1v8>; 3397d0873ebSEmmanuel Vadot mmc-hs200-1_8v; 3407d0873ebSEmmanuel Vadot non-removable; 3417d0873ebSEmmanuel Vadot no-sd; 3427d0873ebSEmmanuel Vadot no-sdio; 3437d0873ebSEmmanuel Vadot status = "okay"; 3447d0873ebSEmmanuel Vadot}; 3457d0873ebSEmmanuel Vadot 3467d0873ebSEmmanuel Vadot&sdmmc0 { 3477d0873ebSEmmanuel Vadot bus-width = <4>; 3487d0873ebSEmmanuel Vadot cap-sd-highspeed; 3497d0873ebSEmmanuel Vadot cd-gpios = <&gpio0 RK_PA4 GPIO_ACTIVE_LOW>; 3507d0873ebSEmmanuel Vadot disable-wp; 3517d0873ebSEmmanuel Vadot pinctrl-names = "default"; 3527d0873ebSEmmanuel Vadot pinctrl-0 = <&sdmmc0_bus4 &sdmmc0_clk &sdmmc0_cmd &sdmmc0_det>; 3537d0873ebSEmmanuel Vadot sd-uhs-sdr50; 3547d0873ebSEmmanuel Vadot sd-uhs-sdr104; 3557d0873ebSEmmanuel Vadot vmmc-supply = <&p3v3>; 3567d0873ebSEmmanuel Vadot vqmmc-supply = <&vcc_sd>; 3577d0873ebSEmmanuel Vadot status = "okay"; 3587d0873ebSEmmanuel Vadot}; 3597d0873ebSEmmanuel Vadot 3607d0873ebSEmmanuel Vadot&tsadc { 3617d0873ebSEmmanuel Vadot rockchip,hw-tshut-mode = <1>; 3627d0873ebSEmmanuel Vadot rockchip,hw-tshut-polarity = <0>; 3637d0873ebSEmmanuel Vadot status = "okay"; 3647d0873ebSEmmanuel Vadot}; 3657d0873ebSEmmanuel Vadot 3667d0873ebSEmmanuel Vadot&uart2 { 3677d0873ebSEmmanuel Vadot status = "okay"; 3687d0873ebSEmmanuel Vadot}; 3697d0873ebSEmmanuel Vadot 3707d0873ebSEmmanuel Vadot&usb_host0_ehci { 3717d0873ebSEmmanuel Vadot status = "okay"; 3727d0873ebSEmmanuel Vadot}; 3737d0873ebSEmmanuel Vadot 3747d0873ebSEmmanuel Vadot&usb_host0_ohci { 3757d0873ebSEmmanuel Vadot status = "okay"; 3767d0873ebSEmmanuel Vadot}; 3777d0873ebSEmmanuel Vadot 3787d0873ebSEmmanuel Vadot&usb_host0_xhci { 3797d0873ebSEmmanuel Vadot dr_mode = "host"; 3807d0873ebSEmmanuel Vadot extcon = <&usb2phy0>; 3817d0873ebSEmmanuel Vadot status = "okay"; 3827d0873ebSEmmanuel Vadot}; 3837d0873ebSEmmanuel Vadot 3847d0873ebSEmmanuel Vadot&usb_host1_ehci { 3857d0873ebSEmmanuel Vadot status = "okay"; 3867d0873ebSEmmanuel Vadot}; 3877d0873ebSEmmanuel Vadot 3887d0873ebSEmmanuel Vadot&usb_host1_ohci { 3897d0873ebSEmmanuel Vadot status = "okay"; 3907d0873ebSEmmanuel Vadot}; 3917d0873ebSEmmanuel Vadot 3927d0873ebSEmmanuel Vadot&usb_host1_xhci { 3937d0873ebSEmmanuel Vadot status = "okay"; 3947d0873ebSEmmanuel Vadot}; 3957d0873ebSEmmanuel Vadot 3967d0873ebSEmmanuel Vadot&usb2phy0 { 3977d0873ebSEmmanuel Vadot status = "okay"; 3987d0873ebSEmmanuel Vadot}; 3997d0873ebSEmmanuel Vadot 4007d0873ebSEmmanuel Vadot&usb2phy0_host { 4017d0873ebSEmmanuel Vadot status = "okay"; 4027d0873ebSEmmanuel Vadot}; 4037d0873ebSEmmanuel Vadot 4047d0873ebSEmmanuel Vadot&usb2phy0_otg { 4057d0873ebSEmmanuel Vadot status = "okay"; 4067d0873ebSEmmanuel Vadot}; 4077d0873ebSEmmanuel Vadot 4087d0873ebSEmmanuel Vadot&usb2phy1 { 4097d0873ebSEmmanuel Vadot status = "okay"; 4107d0873ebSEmmanuel Vadot}; 4117d0873ebSEmmanuel Vadot 4127d0873ebSEmmanuel Vadot&usb2phy1_host { 4137d0873ebSEmmanuel Vadot status = "okay"; 4147d0873ebSEmmanuel Vadot}; 4157d0873ebSEmmanuel Vadot 4167d0873ebSEmmanuel Vadot&usb2phy1_otg { 4177d0873ebSEmmanuel Vadot status = "okay"; 4187d0873ebSEmmanuel Vadot}; 419