|
@@ -4,6 +4,7 @@
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
+#include <dt-bindings/leds/common.h>
|
|
|
#include <dt-bindings/mtd/partitions/uimage.h>
|
|
|
|
|
|
/ {
|
|
@@ -51,12 +52,14 @@
|
|
|
pinctrl-0 = <&jtag_disable_pins &switch_led_disable_pins &clks_disable_pins>;
|
|
|
|
|
|
wan_green {
|
|
|
- label = "green:wan";
|
|
|
+ function = LED_FUNCTION_WAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
wan_amber {
|
|
|
- label = "amber:wan";
|
|
|
+ function = LED_FUNCTION_WAN;
|
|
|
+ color = <LED_COLOR_ID_AMBER>;
|
|
|
gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
@@ -101,12 +104,14 @@
|
|
|
};
|
|
|
|
|
|
wps_green {
|
|
|
- label = "green:wps";
|
|
|
+ function = LED_FUNCTION_WPS;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
usb_green {
|
|
|
- label = "green:usb";
|
|
|
+ function = LED_FUNCTION_USB;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
|
|
|
trigger-sources = <&hub_port>;
|
|
|
linux,default-trigger = "usbport";
|
|
@@ -117,18 +122,21 @@
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
|
led_power_green: power_green {
|
|
|
- label = "green:power";
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
gpios = <&ath9k 2 GPIO_ACTIVE_LOW>;
|
|
|
};
|
|
|
|
|
|
led_power_amber: power_amber {
|
|
|
- label = "amber:power";
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ color = <LED_COLOR_ID_AMBER>;
|
|
|
gpios = <&ath9k 1 GPIO_ACTIVE_LOW>;
|
|
|
default-state = "keep";
|
|
|
};
|
|
|
|
|
|
wlan_blue {
|
|
|
- label = "blue:wlan";
|
|
|
+ function = LED_FUNCTION_WLAN;
|
|
|
+ color = <LED_COLOR_ID_BLUE>;
|
|
|
gpios = <&ath9k 0 GPIO_ACTIVE_LOW>;
|
|
|
linux,default-trigger = "phy0tpt";
|
|
|
};
|