diff options
author | claudio <claudio@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-01-15 13:30:46 +0000 |
---|---|---|
committer | claudio <claudio@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-01-15 13:30:46 +0000 |
commit | 6e2911b4f9b43249a3a8783f777e39591d89ef96 (patch) | |
tree | 292bc9c05579e2cd3ec78b60dc6d72c575401daa /target/linux/brcm63xx/files/arch/mips/bcm63xx/boards | |
parent | 4c2fa4ed06396476898e8abd6201a41842e27584 (diff) |
bcm63xx: add gpio leds to alice gate
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19152 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/files/arch/mips/bcm63xx/boards')
-rw-r--r-- | target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c index d9c4a20c6..ba5719045 100644 --- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c @@ -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 = { |