rockchip: add h68k/h69k hardware v2 support
This commit is contained in:
parent
fd83f07839
commit
621d8f3280
@ -474,7 +474,6 @@ CONFIG_PADATA=y
|
|||||||
CONFIG_PAGE_POOL=y
|
CONFIG_PAGE_POOL=y
|
||||||
CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
|
CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
|
||||||
CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
|
CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
|
||||||
CONFIG_PAHOLE_VERSION=0
|
|
||||||
# CONFIG_PANIC_ON_OOPS is not set
|
# CONFIG_PANIC_ON_OOPS is not set
|
||||||
CONFIG_PANIC_ON_OOPS_VALUE=0
|
CONFIG_PANIC_ON_OOPS_VALUE=0
|
||||||
CONFIG_PANIC_TIMEOUT=0
|
CONFIG_PANIC_TIMEOUT=0
|
||||||
|
@ -33,6 +33,13 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pwm-fan {
|
||||||
|
compatible = "pwm-fan";
|
||||||
|
cooling-levels = <0 100 150 200 255>;
|
||||||
|
#cooling-cells = <2>;
|
||||||
|
pwms = <&pwm0 0 50000 0>;
|
||||||
|
};
|
||||||
|
|
||||||
keys {
|
keys {
|
||||||
compatible = "gpio-keys";
|
compatible = "gpio-keys";
|
||||||
pinctrl-0 = <&reset_button_pin>;
|
pinctrl-0 = <&reset_button_pin>;
|
||||||
@ -548,6 +555,10 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&pwm0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&rng {
|
&rng {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
@ -58,15 +58,17 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mdio0 {
|
&mdio0 {
|
||||||
rgmii_phy0: ethernet-phy@0 {
|
rgmii_phy0: phy@0 {
|
||||||
compatible = "ethernet-phy-ieee802.3-c22";
|
compatible = "ethernet-phy-id001c.c916",
|
||||||
|
"ethernet-phy-ieee802.3-c22";
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&mdio1 {
|
&mdio1 {
|
||||||
rgmii_phy1: ethernet-phy@0 {
|
rgmii_phy1: phy@0 {
|
||||||
compatible = "ethernet-phy-ieee802.3-c22";
|
compatible = "ethernet-phy-id001c.c916",
|
||||||
|
"ethernet-phy-ieee802.3-c22";
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -15,6 +15,19 @@
|
|||||||
ethernet2 = &rtl8125_2;
|
ethernet2 = &rtl8125_2;
|
||||||
ethernet3 = &rtl8125_1;
|
ethernet3 = &rtl8125_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vcc5v0_ahci: vcc5v0-ahci {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&gpio0 RK_PC5 GPIO_ACTIVE_HIGH>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sata_pwr_en>;
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
regulator-name = "vcc5v0_ahci";
|
||||||
|
vin-supply = <&vcc5v0_sys>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gmac0 {
|
&gmac0 {
|
||||||
@ -60,19 +73,33 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mdio0 {
|
&mdio0 {
|
||||||
rgmii_phy0: ethernet-phy@0 {
|
rgmii_phy0: phy@0 {
|
||||||
compatible = "ethernet-phy-ieee802.3-c22";
|
compatible = "ethernet-phy-id001c.c916",
|
||||||
|
"ethernet-phy-ieee802.3-c22";
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&mdio1 {
|
&mdio1 {
|
||||||
rgmii_phy1: ethernet-phy@0 {
|
rgmii_phy1: phy@0 {
|
||||||
compatible = "ethernet-phy-ieee802.3-c22";
|
compatible = "ethernet-phy-id001c.c916",
|
||||||
|
"ethernet-phy-ieee802.3-c22";
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&vcc3v3_pcie {
|
&vcc3v3_pcie {
|
||||||
gpio = <&gpio0 RK_PC4 GPIO_ACTIVE_HIGH>;
|
gpio = <&gpio0 RK_PC4 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&pinctrl {
|
||||||
|
sata {
|
||||||
|
sata_pwr_en: sata-pwr-en {
|
||||||
|
rockchip,pins = <0 RK_PC5 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&sata0 {
|
||||||
|
target-supply = <&vcc5v0_ahci>;
|
||||||
};
|
};
|
@ -69,7 +69,7 @@ define Device/hinlink_common
|
|||||||
DEVICE_VENDOR := HINLINK
|
DEVICE_VENDOR := HINLINK
|
||||||
UBOOT_DEVICE_NAME := opc-h68k-rk3568
|
UBOOT_DEVICE_NAME := opc-h68k-rk3568
|
||||||
IMAGE/sysupgrade.img.gz := boot-common | boot-script rk356x | pine64-img | gzip | append-metadata
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script rk356x | pine64-img | gzip | append-metadata
|
||||||
DEVICE_PACKAGES := kmod-ata-ahci-platform kmod-mt7921e kmod-r8125 kmod-usb-serial-cp210x wpad-openssl
|
DEVICE_PACKAGES := kmod-ata-ahci-platform kmod-hwmon-pwmfan kmod-mt7921e kmod-r8125 wpad-openssl
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/hinlink_opc-h66k
|
define Device/hinlink_opc-h66k
|
||||||
|
Loading…
x
Reference in New Issue
Block a user