diff options
author | Joe Mullally <jwmullally@gmail.com> | 2020-08-21 07:02:23 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-08-22 15:13:15 +0200 |
commit | 685d2513b51094f183d0a93f207b73c8b1c598f3 (patch) | |
tree | d07238ba96ec324f7b42a8b4bc6ee9cee916ddcf /target/linux/ath79/dts | |
parent | 441b36236f9830b4b3a9c2509908a55471a56f1c (diff) | |
download | upstream-685d2513b51094f183d0a93f207b73c8b1c598f3.tar.gz upstream-685d2513b51094f183d0a93f207b73c8b1c598f3.tar.bz2 upstream-685d2513b51094f183d0a93f207b73c8b1c598f3.zip |
ath79: fix/improve LED control for TL-WPA8630 v1/v2
The TL-WPA8630 v1 and v2 have the same LED Control GPIO configuration
according to the TP-Link GPL sources. Set the GPIO to output to make
it work and set to Active Low. It defaults to LEDs on at bootup.
To turn all LEDs off:
echo 0 > /sys/class/gpio/tp-link\:led\:control/value
To turn all LEDs on:
echo 1 > /sys/class/gpio/tp-link\:led\:control/value
Change the "LED" button from BTN_0 to KEY_LIGHTS_TOGGLE to match other
devices and the button guide, and to reduce the number of unintuitive
"BTN_X" inputs.
Fixes: ab74def0db93 ("ath79: add support for TP-Link TL-WPA8630P v2")
Signed-off-by: Joe Mullally <jwmullally@gmail.com>
[shorten commit title, minor commit message adjustments]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ath79/dts')
-rw-r--r-- | target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi | 12 | ||||
-rw-r--r-- | target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi | 9 |
2 files changed, 11 insertions, 10 deletions
diff --git a/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi b/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi index 1f16f9a617..14602a1c24 100644 --- a/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi +++ b/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi @@ -25,7 +25,7 @@ leds { label = "LED control button"; - linux,code = <BTN_0>; + linux,code = <KEY_LIGHTS_TOGGLE>; gpios = <&gpio 6 GPIO_ACTIVE_LOW>; debounce-interval = <60>; }; @@ -70,6 +70,16 @@ linux,default-trigger = "phy0tpt"; }; }; + + gpio-export { + compatible = "gpio-export"; + + led_control { + gpio-export,name = "tp-link:led:control"; + gpio-export,output = <0>; + gpios = <&gpio 14 GPIO_ACTIVE_LOW>; + }; + }; }; &spi { diff --git a/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi b/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi index 2389fe9734..2d3128e037 100644 --- a/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi +++ b/target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi @@ -6,15 +6,6 @@ aliases { label-mac-device = ð0; }; - - gpio-export { - compatible = "gpio-export"; - - led_control { - gpio-export,name = "tp-link:led:control"; - gpios = <&gpio 14 GPIO_ACTIVE_HIGH>; - }; - }; }; &partitions { |