mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-08 10:23:47 +08:00
mediatek: add support for H3C NX30 Pro
This commit is contained in:
parent
69794b4861
commit
b0360ffa94
@ -5,6 +5,8 @@ CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_cetron_ct3003=y
|
|||||||
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_cetron_ct3003=""
|
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_cetron_ct3003=""
|
||||||
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_cmcc_rax3000m=y
|
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_cmcc_rax3000m=y
|
||||||
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_cmcc_rax3000m=""
|
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_cmcc_rax3000m=""
|
||||||
|
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_h3c_nx30pro=y
|
||||||
|
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_h3c_nx30pro=""
|
||||||
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_jcg_q30=y
|
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_jcg_q30=y
|
||||||
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_jcg_q30=""
|
CONFIG_TARGET_DEVICE_PACKAGES_mediatek_mt7981_DEVICE_jcg_q30=""
|
||||||
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_livinet_zr-3020=y
|
CONFIG_TARGET_DEVICE_mediatek_mt7981_DEVICE_livinet_zr-3020=y
|
||||||
|
@ -17,6 +17,7 @@ case "$board" in
|
|||||||
livinet,zr-3020*)
|
livinet,zr-3020*)
|
||||||
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x20000" "0x20000" "1"
|
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x20000" "0x20000" "1"
|
||||||
;;
|
;;
|
||||||
|
h3c,nx30pro |\
|
||||||
cmcc,rax3000m)
|
cmcc,rax3000m)
|
||||||
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x80000" "0x20000" "4"
|
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x80000" "0x20000" "4"
|
||||||
;;
|
;;
|
||||||
|
@ -721,6 +721,7 @@ setup_model()
|
|||||||
*360,t7* |\
|
*360,t7* |\
|
||||||
xiaomi,mi-router-wr30u* |\
|
xiaomi,mi-router-wr30u* |\
|
||||||
*rax3000m* |\
|
*rax3000m* |\
|
||||||
|
h3c,nx30pro |\
|
||||||
*7981*)
|
*7981*)
|
||||||
MT7981_whnat $num_of_wifi
|
MT7981_whnat $num_of_wifi
|
||||||
;;
|
;;
|
||||||
|
@ -0,0 +1,237 @@
|
|||||||
|
/dts-v1/;
|
||||||
|
#include "mt7981.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "H3C NX30PRO";
|
||||||
|
compatible = "h3c,nx30pro", "mediatek,mt7981";
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
led-boot = &red_led;
|
||||||
|
led-failsafe = &red_led;
|
||||||
|
led-running = &green_led;
|
||||||
|
led-upgrade = &green_led;
|
||||||
|
};
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
bootargs = "console=ttyS0,115200n1 loglevel=8 \
|
||||||
|
earlycon=uart8250,mmio32,0x11002000";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
reg = <0 0x40000000 0 0x10000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
|
||||||
|
green_led: green {
|
||||||
|
label = "nx30pro:green";
|
||||||
|
gpios = <&pio 4 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
|
||||||
|
red_led: red {
|
||||||
|
label = "nx30pro:red";
|
||||||
|
gpios = <&pio 5 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio-keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
reset {
|
||||||
|
label = "reset";
|
||||||
|
linux,code = <KEY_RESTART>;
|
||||||
|
gpios = <&pio 1 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
|
||||||
|
mesh {
|
||||||
|
label = "mesh";
|
||||||
|
gpios = <&pio 0 GPIO_ACTIVE_LOW>;
|
||||||
|
linux,code = <BTN_9>;
|
||||||
|
linux,input-type = <EV_SW>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gsw: gsw@0 {
|
||||||
|
compatible = "mediatek,mt753x";
|
||||||
|
mediatek,ethsys = <ðsys>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
nmbm_spim_nand {
|
||||||
|
compatible = "generic,nmbm";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
lower-mtd-device = <&spi_nand>;
|
||||||
|
forced-create;
|
||||||
|
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
partition@0 {
|
||||||
|
label = "BL2";
|
||||||
|
reg = <0x00 0x100000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@100000 {
|
||||||
|
label = "u-boot-env";
|
||||||
|
reg = <0x100000 0x80000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@180000 {
|
||||||
|
label = "Factory";
|
||||||
|
reg = <0x180000 0x200000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@380000 {
|
||||||
|
label = "FIP";
|
||||||
|
reg = <0x380000 0x200000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@580000 {
|
||||||
|
label = "ubi";
|
||||||
|
reg = <0x580000 0x4000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@4580000 {
|
||||||
|
label = "pdt_data";
|
||||||
|
reg = <0x4580000 0x0600000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@4b80000 {
|
||||||
|
label = "pdt_data_1";
|
||||||
|
reg = <0x4b80000 0x0600000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@5180000 {
|
||||||
|
label = "exp";
|
||||||
|
reg = <0x5180000 0x0100000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@5280000 {
|
||||||
|
label = "plugin";
|
||||||
|
reg = <0x5280000 0x2580000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&watchdog {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
ð {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
gmac0: mac@0 {
|
||||||
|
compatible = "mediatek,eth-mac";
|
||||||
|
reg = <0>;
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
|
||||||
|
fixed-link {
|
||||||
|
speed = <2500>;
|
||||||
|
full-duplex;
|
||||||
|
pause;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gmac1: mac@1 {
|
||||||
|
compatible = "mediatek,eth-mac";
|
||||||
|
reg = <1>;
|
||||||
|
phy-mode = "gmii";
|
||||||
|
phy-handle = <&phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
mdio: mdio-bus {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
phy0: ethernet-phy@0 {
|
||||||
|
compatible = "ethernet-phy-id03a2.9461";
|
||||||
|
reg = <0>;
|
||||||
|
phy-mode = "gmii";
|
||||||
|
nvmem-cells = <&phy_calibration>;
|
||||||
|
nvmem-cell-names = "phy-cal-data";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&gsw {
|
||||||
|
mediatek,mdio = <&mdio>;
|
||||||
|
mediatek,mdio_master_pinmux = <0>;
|
||||||
|
reset-gpios = <&pio 39 0>;
|
||||||
|
interrupt-parent = <&pio>;
|
||||||
|
interrupts = <38 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
port6: port@6 {
|
||||||
|
compatible = "mediatek,mt753x-port";
|
||||||
|
mediatek,ssc-on;
|
||||||
|
reg = <6>;
|
||||||
|
phy-mode = "sgmii";
|
||||||
|
|
||||||
|
fixed-link {
|
||||||
|
speed = <2500>;
|
||||||
|
full-duplex;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&hnat {
|
||||||
|
mtketh-wan = "eth1";
|
||||||
|
mtketh-lan = "eth0";
|
||||||
|
mtketh-max-gmac = <2>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&spi0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&spi0_flash_pins>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
spi_nand: spi_nand@0 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "spi-nand";
|
||||||
|
reg = <0>;
|
||||||
|
spi-max-frequency = <52000000>;
|
||||||
|
spi-tx-buswidth = <4>;
|
||||||
|
spi-rx-buswidth = <4>;
|
||||||
|
spi-cal-enable;
|
||||||
|
spi-cal-mode = "read-data";
|
||||||
|
spi-cal-datalen = <7>;
|
||||||
|
spi-cal-data = /bits/ 8 <0x53 0x50 0x49 0x4E 0x41 0x4E 0x44>; /* 'SPINAND' */
|
||||||
|
spi-cal-addrlen = <5>;
|
||||||
|
spi-cal-addr = /bits/ 32 <0x0 0x0 0x0 0x0 0x0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&pio {
|
||||||
|
spi0_flash_pins: spi0-pins {
|
||||||
|
mux {
|
||||||
|
function = "spi";
|
||||||
|
groups = "spi0", "spi0_wp_hold";
|
||||||
|
};
|
||||||
|
|
||||||
|
conf-pu {
|
||||||
|
pins = "SPI0_CS", "SPI0_HOLD", "SPI0_WP";
|
||||||
|
drive-strength = <MTK_DRIVE_8mA>;
|
||||||
|
bias-pull-up = <MTK_PUPD_SET_R1R0_11>;
|
||||||
|
};
|
||||||
|
|
||||||
|
conf-pd {
|
||||||
|
pins = "SPI0_CLK", "SPI0_MOSI", "SPI0_MISO";
|
||||||
|
drive-strength = <MTK_DRIVE_8mA>;
|
||||||
|
bias-pull-down = <MTK_PUPD_SET_R1R0_11>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
@ -354,3 +354,20 @@ define Device/cmcc_rax3000m
|
|||||||
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += cmcc_rax3000m
|
TARGET_DEVICES += cmcc_rax3000m
|
||||||
|
|
||||||
|
define Device/h3c_nx30pro
|
||||||
|
DEVICE_VENDOR := H3C
|
||||||
|
DEVICE_MODEL := NX30PRO
|
||||||
|
DEVICE_DTS := mt7981-h3c-nx30pro
|
||||||
|
DEVICE_DTS_DIR := $(DTS_DIR)/mediatek
|
||||||
|
SUPPORTED_DEVICES := h3c,nx30pro
|
||||||
|
UBINIZE_OPTS := -E 5
|
||||||
|
BLOCKSIZE := 128k
|
||||||
|
PAGESIZE := 2048
|
||||||
|
IMAGE_SIZE := 65536k
|
||||||
|
KERNEL_IN_UBI := 1
|
||||||
|
IMAGES += factory.bin
|
||||||
|
IMAGE/factory.bin := append-ubi | check-size $$$$(IMAGE_SIZE)
|
||||||
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
||||||
|
endef
|
||||||
|
TARGET_DEVICES += h3c_nx30pro
|
||||||
|
@ -23,6 +23,10 @@ xiaomi,mi-router-wr30u*)
|
|||||||
ucidef_set_led_default "green" "GREEN" "360t7:green" "1"
|
ucidef_set_led_default "green" "GREEN" "360t7:green" "1"
|
||||||
ucidef_set_led_default "red" "RED" "360t7:red" "0"
|
ucidef_set_led_default "red" "RED" "360t7:red" "0"
|
||||||
;;
|
;;
|
||||||
|
h3c,nx30pro)
|
||||||
|
ucidef_set_led_default "green" "GREEN" "nx30pro:green" "1"
|
||||||
|
ucidef_set_led_default "red" "RED" "nx30pro:red" "0"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
board_config_flush
|
board_config_flush
|
||||||
|
@ -42,6 +42,7 @@ mediatek_setup_interfaces()
|
|||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "2:lan" "3:lan" "0:wan" "6t@eth0"
|
"1:lan" "2:lan" "3:lan" "0:wan" "6t@eth0"
|
||||||
;;
|
;;
|
||||||
|
h3c,nx30pro |\
|
||||||
*rax3000m*)
|
*rax3000m*)
|
||||||
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
@ -151,16 +152,22 @@ mediatek_setup_macs()
|
|||||||
lan_mac=$(mtd_get_mac_ascii art MAC_ADDRESS)
|
lan_mac=$(mtd_get_mac_ascii art MAC_ADDRESS)
|
||||||
wan_mac=$(macaddr_add $lan_mac 3)
|
wan_mac=$(macaddr_add $lan_mac 3)
|
||||||
label_mac=$lan_mac
|
label_mac=$lan_mac
|
||||||
#if [ "$(mtk_factory_get_byte Factory 4 2)" = "00-0c" ]; then
|
local wifi_mac="$(macaddr_add $lan_mac 1)"
|
||||||
local wifi_mac="$(macaddr_add $lan_mac 1)"
|
mtk_facrory_write_mac Factory 4 "$wifi_mac"
|
||||||
mtk_facrory_write_mac Factory 4 "$wifi_mac"
|
|
||||||
#fi
|
|
||||||
;;
|
;;
|
||||||
*jcg,q30*)
|
*jcg,q30*)
|
||||||
wan_mac=$(mtd_get_mac_binary $part_name 0xa0024)
|
wan_mac=$(mtd_get_mac_binary $part_name 0xa0024)
|
||||||
lan_mac=$(mtd_get_mac_binary $part_name 0xa002a)
|
lan_mac=$(mtd_get_mac_binary $part_name 0xa002a)
|
||||||
label_mac=$lan_mac
|
label_mac=$lan_mac
|
||||||
;;
|
;;
|
||||||
|
h3c,nx30pro)
|
||||||
|
wan_mac=$(mtd_get_mac_ascii pdt_data_1 ethaddr)
|
||||||
|
lan_mac=$(macaddr_add $wan_mac 1)
|
||||||
|
if [ "$(mtk_factory_get_byte "Factory" 4 2)" = "00-0c" ]; then
|
||||||
|
local wifi_mac="$(macaddr_add $wan_mac 2)"
|
||||||
|
mtk_facrory_write_mac "Factory" 4 $wifi_mac
|
||||||
|
fi
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
wan_mac=$(mtd_get_mac_binary $part_name $wan_mac_offset)
|
wan_mac=$(mtd_get_mac_binary $part_name $wan_mac_offset)
|
||||||
lan_mac=$(mtd_get_mac_binary $part_name $lan_mac_offset)
|
lan_mac=$(mtd_get_mac_binary $part_name $lan_mac_offset)
|
||||||
|
@ -196,6 +196,7 @@ platform_do_upgrade() {
|
|||||||
*cetron,ct3003* |\
|
*cetron,ct3003* |\
|
||||||
*jcg,q30* |\
|
*jcg,q30* |\
|
||||||
cmcc,rax3000m |\
|
cmcc,rax3000m |\
|
||||||
|
h3c,nx30pro |\
|
||||||
*snand*)
|
*snand*)
|
||||||
nand_do_upgrade "$1"
|
nand_do_upgrade "$1"
|
||||||
;;
|
;;
|
||||||
@ -231,6 +232,7 @@ platform_check_image() {
|
|||||||
*cetron,ct3003* |\
|
*cetron,ct3003* |\
|
||||||
*jcg,q30* |\
|
*jcg,q30* |\
|
||||||
cmcc,rax3000m |\
|
cmcc,rax3000m |\
|
||||||
|
h3c,nx30pro |\
|
||||||
*snand* |\
|
*snand* |\
|
||||||
*emmc*)
|
*emmc*)
|
||||||
# tar magic `ustar`
|
# tar magic `ustar`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user