mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
mediatek: Add support for GL.iNet X3000 (Spitz AX) and XE3000 (Puli AX)
This commit is contained in:
parent
b9910de8d9
commit
eaa043c4cf
@ -0,0 +1,273 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
#include "mt7981.dtsi"
|
||||
|
||||
/ {
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n8 root=PARTLABEL=rootfs rootwait";
|
||||
};
|
||||
|
||||
aliases {
|
||||
label-mac-device = &gmac0;
|
||||
led-boot = &led_power;
|
||||
led-failsafe = &led_power;
|
||||
led-running = &led_power;
|
||||
led-upgrade = &led_power;
|
||||
};
|
||||
|
||||
reg_5v: regulator-5v {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "fixed-5V";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
regulator-max-microvolt = <5000000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
fan_5v: regulator-fan-5v {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "fan";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
regulator-max-microvolt = <5000000>;
|
||||
gpio = <&pio 28 GPIO_ACTIVE_HIGH>;
|
||||
enable-active-high;
|
||||
};
|
||||
|
||||
gpio-keys {
|
||||
compatible = "gpio-keys";
|
||||
|
||||
reset {
|
||||
label = "reset";
|
||||
linux,code = <KEY_RESTART>;
|
||||
gpios = <&pio 1 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
gpio-export {
|
||||
compatible = "gpio-export";
|
||||
|
||||
hub_power {
|
||||
gpio-export,name = "hub_power";
|
||||
gpio-export,output = <1>;
|
||||
gpios = <&pio 5 GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
|
||||
5G_power {
|
||||
gpio-export,name = "5G_power";
|
||||
gpio-export,output = <1>;
|
||||
gpios = <&pio 11 GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
|
||||
5G_control {
|
||||
gpio-export,name = "5G_control";
|
||||
gpio-export,output = <1>;
|
||||
gpios = <&pio 9 GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
|
||||
5G_reset {
|
||||
gpio-export,name = "5G_reset";
|
||||
gpio-export,output = <0>;
|
||||
gpios = <&pio 10 GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
};
|
||||
|
||||
leds {
|
||||
compatible = "gpio-leds";
|
||||
|
||||
wifi2g {
|
||||
label = "green:wifi2g";
|
||||
gpios = <&pio 30 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
wifi5g {
|
||||
label = "green:wifi5g";
|
||||
gpios = <&pio 38 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
5g_led1 {
|
||||
label = "green:5g:led1";
|
||||
gpios = <&pio 6 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
5g_led2 {
|
||||
label = "green:5g:led2";
|
||||
gpios = <&pio 7 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
5g_led3 {
|
||||
label = "green:5g:led3";
|
||||
gpios = <&pio 8 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
5g_led4 {
|
||||
label = "green:5g:led4";
|
||||
gpios = <&pio 4 GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
|
||||
led_power: power {
|
||||
label = "green:power";
|
||||
gpios = <&pio 39 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
wan {
|
||||
label = "green:wan";
|
||||
gpios = <&pio 31 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&uart0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&watchdog {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&mmc0 {
|
||||
pinctrl-names = "default", "state_uhs";
|
||||
pinctrl-0 = <&mmc0_pins_default>;
|
||||
pinctrl-1 = <&mmc0_pins_uhs>;
|
||||
bus-width = <8>;
|
||||
max-frequency = <52000000>;
|
||||
cap-mmc-highspeed;
|
||||
vmmc-supply = <®_3p3v>;
|
||||
non-removable;
|
||||
status = "okay";
|
||||
|
||||
card@0 {
|
||||
compatible = "mmc-card";
|
||||
reg = <0>;
|
||||
|
||||
block {
|
||||
compatible = "block-device";
|
||||
partitions {
|
||||
block-partition-env {
|
||||
partname = "u-boot-env";
|
||||
|
||||
nvmem-layout {
|
||||
compatible = "u-boot,env-layout";
|
||||
};
|
||||
};
|
||||
|
||||
block-partition-factory {
|
||||
partname = "factory";
|
||||
|
||||
nvmem-layout {
|
||||
compatible = "fixed-layout";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
eeprom_factory_0: eeprom@0 {
|
||||
reg = <0x0 0x1000>;
|
||||
};
|
||||
|
||||
macaddr_factory_a: macaddr@a {
|
||||
compatible = "mac-base";
|
||||
reg = <0xa 0x6>;
|
||||
#nvmem-cell-cells = <1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&mdio_bus {
|
||||
reset-gpios = <&pio 14 GPIO_ACTIVE_LOW>;
|
||||
reset-delay-us = <600>;
|
||||
reset-post-delay-us = <20000>;
|
||||
|
||||
phy5: ethernet-phy@5 {
|
||||
reg = <5>;
|
||||
compatible = "ethernet-phy-ieee802.3-c45";
|
||||
};
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
|
||||
gmac0: mac@0 {
|
||||
compatible = "mediatek,eth-mac";
|
||||
reg = <0>;
|
||||
phy-mode = "2500base-x";
|
||||
phy-handle = <&phy5>;
|
||||
nvmem-cells = <&macaddr_factory_a 0>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
};
|
||||
|
||||
gmac1: mac@1 {
|
||||
compatible = "mediatek,eth-mac";
|
||||
reg = <1>;
|
||||
phy-mode = "gmii";
|
||||
phy-handle = <&int_gbe_phy>;
|
||||
nvmem-cells = <&macaddr_factory_a 1>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
};
|
||||
};
|
||||
|
||||
&pio {
|
||||
mmc0_pins_default: mmc0-pins-default {
|
||||
mux {
|
||||
function = "flash";
|
||||
groups = "emmc_8";
|
||||
};
|
||||
};
|
||||
mmc0_pins_uhs: mmc0-pins-uhs {
|
||||
mux {
|
||||
function = "flash";
|
||||
groups = "emmc_8";
|
||||
};
|
||||
};
|
||||
pcie_pins: pcie-pins {
|
||||
mux {
|
||||
function = "pcie";
|
||||
groups = "pcie_pereset", "pcie_clk", "pcie_wake";
|
||||
};
|
||||
};
|
||||
pwm0_pin: pwm0-pin-g0 {
|
||||
mux {
|
||||
function = "pwm";
|
||||
groups = "pwm0_1";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&xhci {
|
||||
phys = <&u2port0 PHY_TYPE_USB2>;
|
||||
vbus-supply = <®_5v>;
|
||||
mediatek,u3p-dis-msk = <0x01>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&usb_phy {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&pcie {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pcie_pins>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&pwm {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pwm0_pin>;
|
||||
};
|
||||
|
||||
&wifi {
|
||||
nvmem-cells = <&eeprom_factory_0>;
|
||||
nvmem-cell-names = "eeprom";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&fan {
|
||||
pwms = <&pwm 0 40000 0>;
|
||||
fan-supply = <&fan_5v>;
|
||||
interrupt-parent = <&pio>;
|
||||
interrupts = <29 IRQ_TYPE_EDGE_RISING>;
|
||||
status = "okay";
|
||||
};
|
8
target/linux/mediatek/dts/mt7981a-glinet-gl-x3000.dts
Normal file
8
target/linux/mediatek/dts/mt7981a-glinet-gl-x3000.dts
Normal file
@ -0,0 +1,8 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
|
||||
#include "mt7981a-glinet-gl-x3000-xe3000-common.dtsi"
|
||||
|
||||
/ {
|
||||
model = "GL.iNet GL-X3000";
|
||||
compatible = "glinet,gl-x3000", "mediatek,mt7981";
|
||||
};
|
23
target/linux/mediatek/dts/mt7981a-glinet-gl-xe3000.dts
Normal file
23
target/linux/mediatek/dts/mt7981a-glinet-gl-xe3000.dts
Normal file
@ -0,0 +1,23 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
|
||||
#include "mt7981a-glinet-gl-x3000-xe3000-common.dtsi"
|
||||
|
||||
/ {
|
||||
model = "GL.iNet GL-XE3000";
|
||||
compatible = "glinet,gl-xe3000", "mediatek,mt7981";
|
||||
};
|
||||
|
||||
&uart1 {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&uart1_pins>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&pio {
|
||||
uart1_pins: uart1-pins-g1 {
|
||||
mux {
|
||||
function = "uart";
|
||||
groups = "uart1_3";
|
||||
};
|
||||
};
|
||||
};
|
@ -23,6 +23,17 @@ hf,m7986r1*)
|
||||
ucidef_set_led_netdev "led-4" "LAN4" "led-4" "lan4"
|
||||
ucidef_set_led_netdev "led-5" "WWAN" "led-5" "usb0"
|
||||
;;
|
||||
glinet,gl-x3000|\
|
||||
glinet,gl-xe3000)
|
||||
ucidef_set_led_default "power" "POWER" "green:power" "1"
|
||||
ucidef_set_led_netdev "wan" "WAN" "green:wan" "eth0"
|
||||
ucidef_set_led_netdev "5g_1" "5G_1" "green:5g:led1" "wwan0"
|
||||
ucidef_set_led_netdev "5g_2" "5G_2" "green:5g:led2" "wwan0"
|
||||
ucidef_set_led_netdev "5g_3" "5G_3" "green:5g:led3" "wwan0"
|
||||
ucidef_set_led_netdev "5g_4" "5G_4" "green:5g:led4" "wwan0"
|
||||
ucidef_set_led_netdev "wlan2g" "WLAN2G" "green:wifi2g" "phy0-ap0"
|
||||
ucidef_set_led_netdev "wlan5g" "WLAN5G" "green:wifi5g" "phy1-ap0"
|
||||
;;
|
||||
imou,lc-hx3001|\
|
||||
nokia,ea0326gmp)
|
||||
ucidef_set_led_netdev "lan" "LAN" "green:lan" "br-lan"
|
||||
|
@ -36,6 +36,8 @@ mediatek_setup_interfaces()
|
||||
;;
|
||||
glinet,gl-mt2500|\
|
||||
glinet,gl-mt3000|\
|
||||
glinet,gl-x3000|\
|
||||
glinet,gl-xe3000|\
|
||||
openembed,som7981)
|
||||
ucidef_set_interfaces_lan_wan eth1 eth0
|
||||
;;
|
||||
|
@ -41,7 +41,9 @@ case "$board" in
|
||||
[ "$PHYNBR" = "0" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
|
||||
[ "$PHYNBR" = "1" ] && macaddr_setbit_la $(macaddr_add $addr 2) > /sys${DEVPATH}/macaddress
|
||||
;;
|
||||
glinet,gl-mt6000)
|
||||
glinet,gl-mt6000|\
|
||||
glinet,gl-x3000|\
|
||||
glinet,gl-xe3000)
|
||||
addr=$(mmc_get_mac_binary factory 0x04)
|
||||
[ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
|
||||
[ "$PHYNBR" = "1" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
|
||||
|
@ -45,6 +45,8 @@ platform_do_upgrade() {
|
||||
cmcc,rax3000m-emmc|\
|
||||
glinet,gl-mt2500|\
|
||||
glinet,gl-mt6000|\
|
||||
glinet,gl-x3000|\
|
||||
glinet,gl-xe3000|\
|
||||
hf,m7986r1-emmc|\
|
||||
jdcloud,re-cs-05)
|
||||
CI_KERNPART="kernel"
|
||||
@ -98,6 +100,8 @@ platform_copy_config() {
|
||||
cmcc,rax3000m-emmc|\
|
||||
glinet,gl-mt2500|\
|
||||
glinet,gl-mt6000|\
|
||||
glinet,gl-x3000|\
|
||||
glinet,gl-xe3000|\
|
||||
hf,m7986r1-emmc|\
|
||||
jdcloud,re-cs-05)
|
||||
emmc_copy_config
|
||||
|
@ -324,6 +324,31 @@ define Device/glinet_gl-mt6000
|
||||
endef
|
||||
TARGET_DEVICES += glinet_gl-mt6000
|
||||
|
||||
define Device/glinet_gl-x3000-xe3000-common
|
||||
DEVICE_VENDOR := GL.iNet
|
||||
DEVICE_DTS_DIR := ../dts
|
||||
DEVICE_PACKAGES := kmod-mt7981-firmware mt7981-wo-firmware mkf2fs \
|
||||
kmod-fs-f2fs kmod-hwmon-pwmfan kmod-usb3 kmod-usb-serial-option \
|
||||
kmod-usb-storage kmod-usb-net-qmi-wwan uqmi
|
||||
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
||||
endef
|
||||
|
||||
define Device/glinet_gl-x3000
|
||||
DEVICE_MODEL := GL-X3000
|
||||
DEVICE_DTS := mt7981a-glinet-gl-x3000
|
||||
SUPPORTED_DEVICES := glinet,gl-x3000
|
||||
$(call Device/glinet_gl-x3000-xe3000-common)
|
||||
endef
|
||||
TARGET_DEVICES += glinet_gl-x3000
|
||||
|
||||
define Device/glinet_gl-xe3000
|
||||
DEVICE_MODEL := GL-XE3000
|
||||
DEVICE_DTS := mt7981a-glinet-gl-xe3000
|
||||
SUPPORTED_DEVICES := glinet,gl-xe3000
|
||||
$(call Device/glinet_gl-x3000-xe3000-common)
|
||||
endef
|
||||
TARGET_DEVICES += glinet_gl-xe3000
|
||||
|
||||
define Device/h3c_magic-nx30-pro
|
||||
DEVICE_VENDOR := H3C
|
||||
DEVICE_MODEL := Magic NX30 Pro
|
||||
|
Loading…
Reference in New Issue
Block a user