mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-12 07:50:16 +02:00
[ar71xx] aw-nr580: add GPIO LEDs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14687 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
28b2a5f4c4
commit
7a6bbf20f3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user