aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79
diff options
context:
space:
mode:
authorLech Perczak <lech.perczak@gmail.com>2022-05-23 19:51:54 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2022-06-07 22:28:59 +0200
commit9325aefaf3f1ff26ac769120591a7cdfc1ca8c46 (patch)
treebb2a8e6dfaacdbbfc8d060d1aa3c4137da8adafc /target/linux/ath79
parent720a7db7eaf416f7e4abdde1551d0201e7830310 (diff)
downloadupstream-9325aefaf3f1ff26ac769120591a7cdfc1ca8c46.tar.gz
upstream-9325aefaf3f1ff26ac769120591a7cdfc1ca8c46.tar.bz2
upstream-9325aefaf3f1ff26ac769120591a7cdfc1ca8c46.zip
ath79: ZTE MF286[,A,R]: fix WLAN LED mapping
The default configuration of pinctrl for GPIO19 set by U-boot was not a GPIO, but an alternate function, which prevented the GPIO hog from working. Set GPIO19 into GPIO mode to allow the hog to work, then the ath10k LED output can control the state of actual LED properly. Link: <https://github.com/openwrt/openwrt/pull/9941> Signed-off-by: Lech Perczak <lech.perczak@gmail.com> (cherry picked from commit 82b59846368db85ad1470396d95e7c20157288eb)
Diffstat (limited to 'target/linux/ath79')
-rw-r--r--target/linux/ath79/dts/qca9563_zte_mf286.dtsi8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/qca9563_zte_mf286.dtsi b/target/linux/ath79/dts/qca9563_zte_mf286.dtsi
index 3013daa470..f7cbbb85bd 100644
--- a/target/linux/ath79/dts/qca9563_zte_mf286.dtsi
+++ b/target/linux/ath79/dts/qca9563_zte_mf286.dtsi
@@ -18,6 +18,8 @@
leds {
compatible = "gpio-leds";
+ pinctrl-names = "default";
+ pinctrl-0 = <&enable_wlan_led_gpio>;
/* Hidden SMD LED below signal strength LEDs.
* Visible through slits underside of the case,
@@ -137,6 +139,12 @@
};
};
+&pinmux {
+ enable_wlan_led_gpio: pinmux_wlan_led_gpio {
+ pinctrl-single,bits = <0x10 0x0 0xff000000>;
+ };
+};
+
&wmac {
status = "okay";
};