1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 12:00:43 +03:00

bcm63xx: add gpio leds to alice gate

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19152 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
claudio 2010-01-15 13:30:46 +00:00
parent 4c2fa4ed06
commit 6e2911b4f9
2 changed files with 50 additions and 1 deletions

View File

@ -559,6 +559,55 @@ static struct board_info __initdata board_AGPFS0 = {
.has_ohci0 = 1,
.has_ehci0 = 1,
.leds = {
/*Each led on alice gate is bi-color so final char */
/* is r for red and g for green leds */
{
.name = "pwrr",
.gpio = 5,
.active_low = 1,
},
{
.name = "pwrg",
.gpio = 4,
.active_low = 1,
.default_trigger = "default-on",
},
{
.name = "wifir",
.gpio = 23,
.active_low = 1,
},
{
.name = "wifig",
.gpio = 22,
.active_low = 1,
},
{
.name = "usr1r",
.gpio = 27,
.active_low = 1,
},
{
.name = "usr1g",
.gpio = 26,
.active_low = 1,
},
{
.name = "usr2r",
.gpio = 30,
.active_low = 1,
},
{
.name = "usr2g",
.gpio = 29,
.active_low = 1,
},
},
.reset_btn = 37; /* sw2 */
/* sw1 is connected to gpio34*/
};
static struct board_info __initdata board_DWVS0 = {

View File

@ -55,7 +55,7 @@ struct board_info {
struct bcm63xx_dsp_platform_data dsp;
/* GPIO LEDs */
struct gpio_led leds[5];
struct gpio_led leds[8];
/* Reset button */
unsigned int reset_btn;