diff --git a/target/linux/ramips/dts/mt7620a_trendnet_tha103ac.dts b/target/linux/ramips/dts/mt7620a_trendnet_tha103ac.dts new file mode 100644 index 00000000000..c7587550b0d --- /dev/null +++ b/target/linux/ramips/dts/mt7620a_trendnet_tha103ac.dts @@ -0,0 +1,201 @@ +// SPDX-License-Identifier: GPL-2.0-or-later OR MIT + +#include "mt7620a.dtsi" + +#include +#include +#include + +/ { + compatible = "trendnet,tha103ac", "ralink,mt7620a-soc"; + model = "TRENDNET THA-103AC (EU)"; + + aliases { + label-mac-device = ðernet; + led-boot = &led_power; + led-failsafe = &led_power; + led-running = &led_power; + led-upgrade = &led_power; + }; + + keys: keys { + compatible = "gpio-keys"; + + button_reset { + label = "reset"; + gpios = <&gpio0 9 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + + /* wps button reassigned to rfkill */ + button_rfkill { + label = "wifi on/off"; + gpios = <&gpio0 13 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + + }; + + leds { + compatible = "gpio-leds"; + + led-0 { + color = ; + function = LED_FUNCTION_WPS; + gpios = <&gpio0 10 GPIO_ACTIVE_LOW>; + }; + + led_power: led-1 { + color = ; + function = LED_FUNCTION_POWER; + gpios = <&gpio0 14 GPIO_ACTIVE_LOW>; + default-state = "on"; + }; + + led-2 { + color = ; + function = LED_FUNCTION_WLAN; + gpios = <&gpio1 14 GPIO_ACTIVE_LOW>; + }; + + led-3 { + color = ; + /* LED_FUNCTION_RSSILOW isn't implemented yet */ + function = "rssilow"; + gpios = <&gpio2 16 GPIO_ACTIVE_LOW>; + }; + + led-4 { + color = ; + /* LED_FUNCTION_RSSIMEDLOW isn't implemented yet */ + function = "rssimedlow"; + gpios = <&gpio2 17 GPIO_ACTIVE_LOW>; + }; + + led-5 { + color = ; + /* LED_FUNCTION_RSSIMEDIUM isn't implemented yet */ + function = "rssimedium"; + gpios = <&gpio2 18 GPIO_ACTIVE_LOW>; + }; + + led-6 { + color = ; + /* LED_FUNCTION_RSSIHIGH isn't implemented yet */ + function = "rssihigh"; + gpios = <&gpio2 19 GPIO_ACTIVE_LOW>; + }; + }; +}; + +&spi0 { + status = "okay"; + + flash@0 { + compatible = "jedec,spi-nor"; + reg = <0>; + spi-max-frequency = <50000000>; + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + partition@0 { + label = "u-boot"; + reg = <0x0 0x30000>; + read-only; + }; + + partition@30000 { + label = "u-boot-env"; + reg = <0x30000 0x10000>; + read-only; + }; + + partition@40000 { + label = "factory"; + reg = <0x40000 0x10000>; + read-only; + + nvmem-layout { + compatible = "fixed-layout"; + #address-cells = <1>; + #size-cells = <1>; + + eeprom_factory_0: eeprom@0 { + reg = <0x0 0x200>; + }; + + eeprom_factory_8000: eeprom@8000 { + reg = <0x8000 0x200>; + }; + + macaddr_factory_4: macaddr@4 { + compatible = "mac-base"; + reg = <0x4 0x6>; + #nvmem-cell-cells = <1>; + }; + + macaddr_factory_28: macaddr@28 { + compatible = "mac-base"; + reg = <0x28 0x6>; + #nvmem-cell-cells = <1>; + }; + + macaddr_factory_8004: macaddr@8004 { + compatible = "mac-base"; + reg = <0x8004 0x6>; + #nvmem-cell-cells = <1>; + }; + }; + }; + + partition@50000 { + compatible = "denx,uimage"; + label = "firmware"; + reg = <0x50000 0x7b0000>; + }; + }; + }; +}; + +&state_default { + gpio { + groups = "i2c", "uartf", "ephy"; + function = "gpio"; + }; +}; + +ðernet { + nvmem-cells = <&macaddr_factory_28 0>; + nvmem-cell-names = "mac-address"; + + mediatek,portmap = "wl"; +}; + +&gpio1 { + status = "okay"; +}; + +&gpio2 { + status = "okay"; +}; + +&wmac { + nvmem-cells = <&eeprom_factory_0>, <&macaddr_factory_4 0>; + nvmem-cell-names = "eeprom", "mac-address"; +}; + +&pcie { + status = "okay"; +}; + +&pcie0 { + wifi@0,0 { + reg = <0x0000 0 0 0 0>; + ieee80211-freq-limit = <5000000 6000000>; + nvmem-cells = <&eeprom_factory_8000>, <&macaddr_factory_8004 0>; + nvmem-cell-names = "eeprom", "mac-address"; + }; +}; diff --git a/target/linux/ramips/image/mt7620.mk b/target/linux/ramips/image/mt7620.mk index 6cf65ad1194..f12f13d9e93 100644 --- a/target/linux/ramips/image/mt7620.mk +++ b/target/linux/ramips/image/mt7620.mk @@ -1322,6 +1322,16 @@ define Device/trendnet_tew-810dr endef TARGET_DEVICES += trendnet_tew-810dr +define Device/trendnet_tha103ac + SOC := mt7620a + DEVICE_PACKAGES := kmod-mt76x0e rssileds + DEVICE_VENDOR := TRENDnet + DEVICE_MODEL := THA-103AC + IMAGE_SIZE := 7872k + SUPPORTED_DEVICES += mt7620a_mt7610e +endef +TARGET_DEVICES += trendnet_tha103ac + define Device/vonets_var11n-300 SOC := mt7620n IMAGE_SIZE := 3776k diff --git a/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds b/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds index 261e54f5e19..ff5d3debfd9 100644 --- a/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds @@ -249,6 +249,13 @@ tplink,ec220-g5-v2) tplink,re200-v1) ucidef_set_led_netdev "lan" "lan" "green:lan" "eth0" ;; +trendnet,tha103ac) + ucidef_set_rssimon "wlan0" "200000" "1" + ucidef_set_led_rssi "led_rssilow" "RSSILOW" "blue:rssilow" "wlan0" "31" "100" + ucidef_set_led_rssi "led_rssimedlow" "RSSIMEDIUMLOW" "blue:rssimedlow" "wlan0" "41" "100" + ucidef_set_led_rssi "led_rssimedium" "RSSIMEDIUM" "blue:rssimedium" "wlan0" "51" "100" + ucidef_set_led_rssi "led_rssihigh" "RSSIHIGH" "blue:rssihigh" "wlan0" "71" "100" + ;; wavlink,wl-wn535k1) ucidef_set_led_switch "lan1" "lan1" "green:lan1" "switch0" "0x20" ucidef_set_led_switch "lan2" "lan2" "green:lan2" "switch0" "0x04" diff --git a/target/linux/ramips/mt7620/base-files/etc/board.d/02_network b/target/linux/ramips/mt7620/base-files/etc/board.d/02_network index 577f77cb933..204a1b0a54f 100644 --- a/target/linux/ramips/mt7620/base-files/etc/board.d/02_network +++ b/target/linux/ramips/mt7620/base-files/etc/board.d/02_network @@ -65,6 +65,7 @@ ramips_setup_interfaces() sercomm,na930|\ tplink,re200-v1|\ tplink,re210-v1|\ + trendnet,tha103ac|\ yukai,bocco|\ zbtlink,zbt-cpe102|\ zte,q7) @@ -340,7 +341,8 @@ ramips_setup_macs() asus,rt-ac54u) lan_mac=$(mtd_get_mac_binary factory 0x22) ;; - dlink,dch-m225) + dlink,dch-m225|\ + trendnet,tha103ac) lan_mac=$(mtd_get_mac_ascii factory lanmac) ;; dlink,dir-510l|\