ath79: fix/improve LED control for TL-WPA8630 v1/v2
authorJoe Mullally <jwmullally@gmail.com>
Fri, 21 Aug 2020 06:02:23 +0000 (07:02 +0100)
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>
Sat, 22 Aug 2020 13:13:15 +0000 (15:13 +0200)
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>
target/linux/ath79/dts/qca9563_tplink_tl-wpa8630.dtsi
target/linux/ath79/dts/qca9563_tplink_tl-wpa8630p-v2.dtsi

index 1f16f9a6174859221dc20d7c31144ef95a48b62b..14602a1c24393f13255b6662e9a85be1cd1064c2 100644 (file)
@@ -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>;
                };
                        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 {
index 2389fe9734c46eaf79a651b4fa28a6ca25e09be2..2d3128e037387ad0abe73fad81541748a9d11012 100644 (file)
@@ -6,15 +6,6 @@
        aliases {
                label-mac-device = &eth0;
        };
-
-       gpio-export {
-               compatible = "gpio-export";
-
-               led_control {
-                       gpio-export,name = "tp-link:led:control";
-                       gpios = <&gpio 14 GPIO_ACTIVE_HIGH>;
-               };
-       };
 };
 
 &partitions {