From: juhosg Date: Fri, 27 Feb 2009 18:32:04 +0000 (+0000) Subject: [ar71xx] aw-nr580: add GPIO LEDs X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=7a6bbf20f3caa8400ea1af429aa320b2f7cb0cf4;p=openwrt-10.03%2F.git [ar71xx] aw-nr580: add GPIO LEDs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14687 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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);