1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-18 13:13:55 +02:00

ramips: improve support for HiWiFi HC5661A and HC5861B

HC5661A:
- Fix pinctrl
- Fix image size (15808k)
- Use switch trigger for WAN LED

Both:
- Use tpt LED trigger for wireless
- Explicitly disable USB nodes

Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
This commit is contained in:
DENG Qingfang 2019-07-23 20:12:37 +08:00 committed by Chuanhong Guo
parent 521fcd0e8b
commit 9852859e77
3 changed files with 25 additions and 8 deletions

View File

@ -78,8 +78,7 @@ asus,rt-n14u)
ucidef_set_led_netdev "wan" "wan" "$boardname:blue:wan" eth0.2
set_wifi_led "$boardname:blue:air"
;;
bdcom,wap2100-sk|\
hiwifi,hc5861b)
bdcom,wap2100-sk)
set_wifi_led "$boardname:green:wlan2g"
;;
belkin,f9k1109v1)
@ -204,11 +203,14 @@ gnubee,gb-pc2)
hauppauge,broadway)
set_wifi_led "$boardname:red:wps_active"
;;
hiwifi,hc5661|\
hiwifi,hc5661a)
hiwifi,hc5661)
ucidef_set_led_netdev "internet" "internet" "$boardname:blue:internet" "eth0.2"
set_wifi_led "$boardname:blue:wlan2g"
;;
hiwifi,hc5661a|\
xzwifi,creativebox-v1)
ucidef_set_led_switch "internet" "internet" "$boardname:blue:internet" "switch0" "0x10"
;;
hiwifi,hc5761|\
hiwifi,hc5861)
ucidef_set_led_netdev "internet" "internet" "$boardname:blue:internet" "eth0.2"
@ -426,9 +428,6 @@ xiaomi,mir3p)
ucidef_set_led_switch "lan2-amber" "LAN2 (amber)" "$boardname:amber:lan2" "switch0" "0x04" "0x08"
ucidef_set_led_switch "lan3-amber" "LAN3 (amber)" "$boardname:amber:lan3" "switch0" "0x08" "0x08"
;;
xzwifi,creativebox-v1)
ucidef_set_led_switch "internet" "internet" "$boardname:blue:internet" "switch0" "0x10"
;;
youhua,wr1200js)
ucidef_set_led_switch "internet" "INTERNET" "$boardname:green:wan" "switch0" "0x01"
;;

View File

@ -22,6 +22,7 @@
wlan2g {
label = "hc5661a:blue:wlan2g";
gpios = <&gpio1 12 GPIO_ACTIVE_HIGH>;
linux,default-trigger = "phy0tpt";
};
};
};
@ -29,8 +30,16 @@
&pinctrl {
state_default: pinctrl0 {
gpio {
ralink,group = "i2c", "refclk", "wled_an";
ralink,group = "i2c", "refclk", "wdt", "wled_an";
ralink,function = "gpio";
};
};
};
&ehci {
status = "disabled";
};
&ohci {
status = "disabled";
};

View File

@ -17,6 +17,7 @@
wlan2g {
label = "hc5861b:green:wlan2g";
gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
linux,default-trigger = "phy0tpt";
};
};
};
@ -30,6 +31,14 @@
};
};
&ehci {
status = "disabled";
};
&ohci {
status = "disabled";
};
&pcie {
status = "okay";
};