|
|
|
|
@@ -0,0 +1,664 @@
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
#include "rk3399.dtsi"
|
|
|
|
|
#include "rk3399-opp.dtsi"
|
|
|
|
|
|
|
|
|
|
/ {
|
|
|
|
|
model = "Huake-Cloud GuangMiao G4C";
|
|
|
|
|
compatible = "huake,guangmiao-g4c", "rockchip,rk3399";
|
|
|
|
|
|
|
|
|
|
/delete-node/ display-subsystem;
|
|
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
|
led-boot = &status_led;
|
|
|
|
|
led-failsafe = &status_led;
|
|
|
|
|
led-running = &status_led;
|
|
|
|
|
led-upgrade = &status_led;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
|
stdout-path = "serial2:1500000n8";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clkin_gmac: external-gmac-clock {
|
|
|
|
|
compatible = "fixed-clock";
|
|
|
|
|
clock-frequency = <125000000>;
|
|
|
|
|
clock-output-names = "clkin_gmac";
|
|
|
|
|
#clock-cells = <0>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_sys: vcc-sys-regulator {
|
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <5000000>;
|
|
|
|
|
regulator-max-microvolt = <5000000>;
|
|
|
|
|
regulator-name = "vcc_sys";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc3v3_sys: vcc3v3-sys-regulator {
|
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <3300000>;
|
|
|
|
|
regulator-max-microvolt = <3300000>;
|
|
|
|
|
regulator-name = "vcc3v3_sys";
|
|
|
|
|
vin-supply = <&vcc_sys>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_0v9: vcc-0v9-regulator {
|
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <900000>;
|
|
|
|
|
regulator-max-microvolt = <900000>;
|
|
|
|
|
regulator-name = "vcc_0v9";
|
|
|
|
|
vin-supply = <&vcc3v3_sys>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc5v0_host0: vcc5v0-host0-regulator {
|
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-name = "vcc5v0_host0";
|
|
|
|
|
vin-supply = <&vcc_sys>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vdd_log: vdd-log-regulator {
|
|
|
|
|
compatible = "pwm-regulator";
|
|
|
|
|
pwms = <&pwm2 0 25000 1>;
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <800000>;
|
|
|
|
|
regulator-max-microvolt = <1400000>;
|
|
|
|
|
regulator-name = "vdd_log";
|
|
|
|
|
vin-supply = <&vcc_sys>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gpio-keys {
|
|
|
|
|
compatible = "gpio-keys";
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&reset_button_pin>;
|
|
|
|
|
|
|
|
|
|
button-reset {
|
|
|
|
|
label = "reset";
|
|
|
|
|
debounce-interval = <100>;
|
|
|
|
|
gpios = <&gpio0 RK_PA5 GPIO_ACTIVE_LOW>;
|
|
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gpio-leds {
|
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&lan_led_pin>, <&status_led_pin>, <&wan_led_pin>;
|
|
|
|
|
|
|
|
|
|
lan_led: led-lan {
|
|
|
|
|
gpios = <&gpio0 RK_PA3 GPIO_ACTIVE_HIGH>;
|
|
|
|
|
label = "green:lan";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
status_led: led-status {
|
|
|
|
|
gpios = <&gpio0 RK_PB3 GPIO_ACTIVE_HIGH>;
|
|
|
|
|
label = "green:status";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wan_led: led-wan {
|
|
|
|
|
gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_HIGH>;
|
|
|
|
|
label = "green:wan";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_b0 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_b>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_b1 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_b>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_l0 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_l>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_l1 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_l>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_l2 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_l>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&cpu_l3 {
|
|
|
|
|
cpu-supply = <&vdd_cpu_l>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&emmc_phy {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&gmac {
|
|
|
|
|
assigned-clock-parents = <&clkin_gmac>;
|
|
|
|
|
assigned-clocks = <&cru SCLK_RMII_SRC>;
|
|
|
|
|
clock_in_out = "input";
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&rgmii_pins>, <&phy_intb>, <&phy_pmeb>, <&phy_rstb>;
|
|
|
|
|
phy-handle = <&rtl8211e>;
|
|
|
|
|
phy-mode = "rgmii";
|
|
|
|
|
phy-supply = <&vcc3v3_s3>;
|
|
|
|
|
tx_delay = <0x28>;
|
|
|
|
|
rx_delay = <0x11>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
|
|
mdio {
|
|
|
|
|
compatible = "snps,dwmac-mdio";
|
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
|
|
|
|
|
rtl8211e: ethernet-phy@1 {
|
|
|
|
|
reg = <1>;
|
|
|
|
|
interrupt-parent = <&gpio3>;
|
|
|
|
|
interrupts = <RK_PB2 IRQ_TYPE_LEVEL_LOW>;
|
|
|
|
|
reset-assert-us = <10000>;
|
|
|
|
|
reset-deassert-us = <30000>;
|
|
|
|
|
reset-gpios = <&gpio3 RK_PB7 GPIO_ACTIVE_LOW>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&gpu {
|
|
|
|
|
mali-supply = <&vdd_gpu>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&i2c0 {
|
|
|
|
|
clock-frequency = <400000>;
|
|
|
|
|
i2c-scl-rising-time-ns = <160>;
|
|
|
|
|
i2c-scl-falling-time-ns = <30>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
|
|
vdd_cpu_b: regulator@40 {
|
|
|
|
|
compatible = "silergy,syr827";
|
|
|
|
|
reg = <0x40>;
|
|
|
|
|
fcs,suspend-voltage-selector = <1>;
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&cpu_b_sleep>;
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <712500>;
|
|
|
|
|
regulator-max-microvolt = <1500000>;
|
|
|
|
|
regulator-name = "vdd_cpu_b";
|
|
|
|
|
regulator-ramp-delay = <1000>;
|
|
|
|
|
vin-supply = <&vcc_sys>;
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vdd_gpu: regulator@41 {
|
|
|
|
|
compatible = "silergy,syr828";
|
|
|
|
|
reg = <0x41>;
|
|
|
|
|
fcs,suspend-voltage-selector = <1>;
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&gpu_sleep>;
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <712500>;
|
|
|
|
|
regulator-max-microvolt = <1500000>;
|
|
|
|
|
regulator-name = "vdd_gpu";
|
|
|
|
|
regulator-ramp-delay = <1000>;
|
|
|
|
|
vin-supply = <&vcc_sys>;
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
rk808: pmic@1b {
|
|
|
|
|
compatible = "rockchip,rk808";
|
|
|
|
|
reg = <0x1b>;
|
|
|
|
|
clock-output-names = "rtc_clko_soc", "rtc_clko_wifi";
|
|
|
|
|
#clock-cells = <1>;
|
|
|
|
|
interrupt-parent = <&gpio1>;
|
|
|
|
|
interrupts = <21 IRQ_TYPE_LEVEL_LOW>;
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&pmic_int_l>;
|
|
|
|
|
rockchip,system-power-controller;
|
|
|
|
|
wakeup-source;
|
|
|
|
|
|
|
|
|
|
vcc1-supply = <&vcc_sys>;
|
|
|
|
|
vcc2-supply = <&vcc_sys>;
|
|
|
|
|
vcc3-supply = <&vcc_sys>;
|
|
|
|
|
vcc4-supply = <&vcc_sys>;
|
|
|
|
|
vcc6-supply = <&vcc_sys>;
|
|
|
|
|
vcc7-supply = <&vcc_sys>;
|
|
|
|
|
vcc8-supply = <&vcc_3v0>;
|
|
|
|
|
vcc9-supply = <&vcc_sys>;
|
|
|
|
|
vcc10-supply = <&vcc_sys>;
|
|
|
|
|
vcc11-supply = <&vcc_sys>;
|
|
|
|
|
vcc12-supply = <&vcc_sys>;
|
|
|
|
|
vddio-supply = <&vcc_3v0>;
|
|
|
|
|
|
|
|
|
|
regulators {
|
|
|
|
|
vdd_center: DCDC_REG1 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <750000>;
|
|
|
|
|
regulator-max-microvolt = <1350000>;
|
|
|
|
|
regulator-name = "vdd_center";
|
|
|
|
|
regulator-ramp-delay = <6001>;
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vdd_cpu_l: DCDC_REG2 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <750000>;
|
|
|
|
|
regulator-max-microvolt = <1350000>;
|
|
|
|
|
regulator-name = "vdd_cpu_l";
|
|
|
|
|
regulator-ramp-delay = <6001>;
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_ddr: DCDC_REG3 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-name = "vcc_ddr";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_1v8: DCDC_REG4 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
regulator-name = "vcc_1v8";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <1800000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_vldo1: LDO_REG1 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
regulator-name = "vcc_vldo1";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_vldo2: LDO_REG2 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
regulator-name = "vcc_vldo2";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcca_1v8: LDO_REG3 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
regulator-name = "vcca_1v8";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <1800000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_sdio: LDO_REG4 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <3300000>;
|
|
|
|
|
regulator-name = "vcc_sdio";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <3300000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc3v0_sd: LDO_REG5 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <3000000>;
|
|
|
|
|
regulator-max-microvolt = <3000000>;
|
|
|
|
|
regulator-name = "vcc3v0_sd";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <3000000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_1v5: LDO_REG6 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1500000>;
|
|
|
|
|
regulator-max-microvolt = <1500000>;
|
|
|
|
|
regulator-name = "vcc_1v5";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <1500000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcca1v8_codec: LDO_REG7 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
regulator-name = "vcca1v8_codec";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc_3v0: LDO_REG8 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-min-microvolt = <3000000>;
|
|
|
|
|
regulator-max-microvolt = <3000000>;
|
|
|
|
|
regulator-name = "vcc_3v0";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-on-in-suspend;
|
|
|
|
|
regulator-suspend-microvolt = <3000000>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc3v3_s3: SWITCH_REG1 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-name = "vcc3v3_s3";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
vcc3v3_s0: SWITCH_REG2 {
|
|
|
|
|
regulator-always-on;
|
|
|
|
|
regulator-boot-on;
|
|
|
|
|
regulator-name = "vcc3v3_s0";
|
|
|
|
|
|
|
|
|
|
regulator-state-mem {
|
|
|
|
|
regulator-off-in-suspend;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&i2c3 {
|
|
|
|
|
i2c-scl-rising-time-ns = <450>;
|
|
|
|
|
i2c-scl-falling-time-ns = <15>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&io_domains {
|
|
|
|
|
bt656-supply = <&vcc_1v8>;
|
|
|
|
|
audio-supply = <&vcca1v8_codec>;
|
|
|
|
|
sdmmc-supply = <&vcc_sdio>;
|
|
|
|
|
gpio1830-supply = <&vcc_3v0>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pcie_phy {
|
|
|
|
|
assigned-clock-parents = <&cru SCLK_PCIEPHY_REF100M>;
|
|
|
|
|
assigned-clock-rates = <100000000>;
|
|
|
|
|
assigned-clocks = <&cru SCLK_PCIEPHY_REF>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pcie0 {
|
|
|
|
|
ep-gpios = <&gpio4 RK_PD2 GPIO_ACTIVE_HIGH>;
|
|
|
|
|
max-link-speed = <1>;
|
|
|
|
|
num-lanes = <1>;
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&pcie_clkreqnb_cpm>;
|
|
|
|
|
vpcie0v9-supply = <&vcc_0v9>;
|
|
|
|
|
vpcie1v8-supply = <&vcca_1v8>;
|
|
|
|
|
vpcie3v3-supply = <&vcc3v3_sys>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
|
|
pcie@0 {
|
|
|
|
|
reg = <0x00000000 0 0 0 0>;
|
|
|
|
|
#address-cells = <3>;
|
|
|
|
|
#size-cells = <2>;
|
|
|
|
|
|
|
|
|
|
pcie-eth@0,0 {
|
|
|
|
|
compatible = "realtek,r8168";
|
|
|
|
|
reg = <0x000000 0 0 0 0>;
|
|
|
|
|
|
|
|
|
|
realtek,led-data = <0x87>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pinctrl {
|
|
|
|
|
gpio-leds {
|
|
|
|
|
lan_led_pin: lan-led-pin {
|
|
|
|
|
rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
status_led_pin: status-led-pin {
|
|
|
|
|
rockchip,pins = <0 RK_PB3 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wan_led_pin: wan-led-pin {
|
|
|
|
|
rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gmac {
|
|
|
|
|
phy_intb: phy-intb {
|
|
|
|
|
rockchip,pins = <3 RK_PB2 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
phy_pmeb: phy-pmeb {
|
|
|
|
|
rockchip,pins = <0 RK_PA1 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
phy_rstb: phy-rstb {
|
|
|
|
|
rockchip,pins = <3 RK_PB7 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pmic {
|
|
|
|
|
cpu_b_sleep: cpu-b-sleep {
|
|
|
|
|
rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_down>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gpu_sleep: gpu-sleep {
|
|
|
|
|
rockchip,pins = <1 RK_PB6 RK_FUNC_GPIO &pcfg_pull_down>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pmic_int_l: pmic-int-l {
|
|
|
|
|
rockchip,pins = <1 RK_PC5 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
rockchip-key {
|
|
|
|
|
reset_button_pin: reset-button-pin {
|
|
|
|
|
rockchip,pins = <0 RK_PA5 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sdio {
|
|
|
|
|
bt_reg_on_h: bt-reg-on-h {
|
|
|
|
|
/* external pullup to VCC1V8_PMUPLL */
|
|
|
|
|
rockchip,pins = <0 RK_PB1 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sdmmc {
|
|
|
|
|
sdmmc0_det_l: sdmmc0-det-l {
|
|
|
|
|
rockchip,pins = <0 RK_PA7 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pmu_io_domains {
|
|
|
|
|
pmu1830-supply = <&vcc_3v0>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pwm0 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pwm1 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&pwm2 {
|
|
|
|
|
pinctrl-names = "active";
|
|
|
|
|
pinctrl-0 = <&pwm2_pin_pull_down>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&saradc {
|
|
|
|
|
vref-supply = <&vcc_1v8>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&sdhci {
|
|
|
|
|
bus-width = <8>;
|
|
|
|
|
mmc-hs200-1_8v;
|
|
|
|
|
non-removable;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&sdmmc {
|
|
|
|
|
bus-width = <4>;
|
|
|
|
|
cap-mmc-highspeed;
|
|
|
|
|
cap-sd-highspeed;
|
|
|
|
|
cd-gpios = <&gpio0 RK_PA7 GPIO_ACTIVE_LOW>;
|
|
|
|
|
disable-wp;
|
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
pinctrl-0 = <&sdmmc_bus4 &sdmmc_clk &sdmmc_cmd &sdmmc0_det_l>;
|
|
|
|
|
vqmmc-supply = <&vcc_sdio>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&tcphy0 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&tcphy1 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&tsadc {
|
|
|
|
|
rockchip,hw-tshut-mode = <1>;
|
|
|
|
|
rockchip,hw-tshut-polarity = <1>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy0 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy0_host {
|
|
|
|
|
phy-supply = <&vcc5v0_host0>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy0_otg {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy1 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy1_host {
|
|
|
|
|
phy-supply = <&vcc5v0_host0>;
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&u2phy1_otg {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&uart2 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usbdrd3_0 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usbdrd3_1 {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usbdrd_dwc3_0 {
|
|
|
|
|
dr_mode = "host";
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usbdrd_dwc3_1 {
|
|
|
|
|
dr_mode = "host";
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usb_host0_ehci {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usb_host0_ohci {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usb_host1_ehci {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&usb_host1_ohci {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&vopb {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&vopb_mmu {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&vopl {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
&vopl_mmu {
|
|
|
|
|
status = "okay";
|
|
|
|
|
};
|