|
|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
+#include <dt-bindings/leds/common.h>
|
|
|
|
|
|
/ {
|
|
|
compatible = "tplink,archer-c2-v1", "ralink,mt7620a-soc";
|
|
|
@@ -22,29 +23,34 @@
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
|
lan {
|
|
|
- label = "green:lan";
|
|
|
+ function = LED_FUNCTION_LAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
usb {
|
|
|
- label = "green:usb";
|
|
|
+ function = LED_FUNCTION_USB;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;
|
|
|
trigger-sources = <&ohci_port1>, <&ehci_port1>;
|
|
|
linux,default-trigger = "usbport";
|
|
|
};
|
|
|
|
|
|
led_wps: wps {
|
|
|
- label = "green:wps";
|
|
|
+ function = LED_FUNCTION_WPS;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio1 15 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
wan {
|
|
|
- label = "green:wan";
|
|
|
+ function = LED_FUNCTION_WAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio2 0 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
wlan {
|
|
|
- label = "green:wlan";
|
|
|
+ function = LED_FUNCTION_WLAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio3 0 GPIO_ACTIVE_LOW>;
|
|
|
linux,default-trigger = "phy1tpt";
|
|
|
};
|