summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-02-27 18:32:04 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-02-27 18:32:04 +0000
commit91984cff197b918289c41a385dc5452d0a8d767c (patch)
tree0f654535eba3a9f479ef2f28ae4edec0f9840060
parent23636366dcc9e82e7104f816a596bb0902f8e4b6 (diff)
downloadmaster-31e0f0ae-91984cff197b918289c41a385dc5452d0a8d767c.tar.gz
master-31e0f0ae-91984cff197b918289c41a385dc5452d0a8d767c.tar.bz2
master-31e0f0ae-91984cff197b918289c41a385dc5452d0a8d767c.zip
aw-nr580: add GPIO LEDs
SVN-Revision: 14687
-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 c7258632ad..1e8c2baec9 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);