summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-27 18:32:04 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-27 18:32:04 +0000
commit7a6bbf20f3caa8400ea1af429aa320b2f7cb0cf4 (patch)
tree5d273b5058f7fa8a730767c0a29751b975a3f2c0 /target/linux/ar71xx
parent28b2a5f4c48a29a341469231134f2681479991c4 (diff)
[ar71xx] aw-nr580: add GPIO LEDs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14687 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c34
1 files changed, 33 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c
index c7258632a..1e8c2baec 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c
@@ -22,6 +22,12 @@
#include "devices.h"
+#define AW_NR580_GPIO_LED_READY_RED 0
+#define AW_NR580_GPIO_LED_WLAN 1
+#define AW_NR580_GPIO_LED_READY_GREEN 2
+#define AW_NR580_GPIO_LED_WPS_GREEN 4
+#define AW_NR580_GPIO_LED_WPS_AMBER 5
+
#define AW_NR580_GPIO_BTN_WPS 3
#define AW_NR580_GPIO_BTN_RESET 11
@@ -36,6 +42,30 @@ static struct spi_board_info aw_nr580_spi_info[] = {
}
};
+static struct gpio_led aw_nr580_leds_gpio[] __initdata = {
+ {
+ .name = "aw-nr580:red:ready",
+ .gpio = AW_NR580_GPIO_LED_READY_RED,
+ .active_low = 0,
+ }, {
+ .name = "aw-nr580:green:ready",
+ .gpio = AW_NR580_GPIO_LED_READY_GREEN,
+ .active_low = 0,
+ }, {
+ .name = "aw-nr580:green:wps",
+ .gpio = AW_NR580_GPIO_LED_WPS_GREEN,
+ .active_low = 0,
+ }, {
+ .name = "aw-nr580:amber:wps",
+ .gpio = AW_NR580_GPIO_LED_WPS_AMBER,
+ .active_low = 0,
+ }, {
+ .name = "aw-nr580:green:wlan",
+ .gpio = AW_NR580_GPIO_LED_WLAN,
+ .active_low = 0,
+ }
+};
+
static struct gpio_button aw_nr580_gpio_buttons[] __initdata = {
{
.desc = "reset",
@@ -62,7 +92,6 @@ static struct ar71xx_pci_irq aw_nr580_pci_irqs[] __initdata = {
}
};
-
static void __init aw_nr580_setup(void)
{
ar71xx_add_device_mdio(0x0);
@@ -79,6 +108,9 @@ static void __init aw_nr580_setup(void)
ar71xx_add_device_spi(NULL, aw_nr580_spi_info,
ARRAY_SIZE(aw_nr580_spi_info));
+ ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(aw_nr580_leds_gpio),
+ aw_nr580_leds_gpio);
+
ar71xx_add_device_gpio_buttons(-1, AW_NR580_BUTTONS_POLL_INTERVAL,
ARRAY_SIZE(aw_nr580_gpio_buttons),
aw_nr580_gpio_buttons);