aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/bcm47xx/leds.c
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2014-03-02 11:49:28 -0500
committerRalf Baechle <ralf@linux-mips.org>2014-03-26 18:09:23 -0400
commitd508eb79ab54917a9e741a09f3c1b699998e89f2 (patch)
tree1eae46665f0ad1337354b33223be3089910f4b5e /arch/mips/bcm47xx/leds.c
parent96c10de32fde6c50e4f9e5c1f027e670073ea086 (diff)
MIPS: BCM47XX: Add detection and GPIO config for Siemens SE505v2
This adds board detection for the Siemens SE505v2 and the led gpio configuration. This board does not have any buttons. This is based on OpenWrt broadcom-diag and Manuel Munz's nvram dump. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Cc: linux-mips@linux-mips.org Cc: zajec5@gmail.com Patchwork: https://patchwork.linux-mips.org/patch/6593/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm47xx/leds.c')
-rw-r--r--arch/mips/bcm47xx/leds.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/mips/bcm47xx/leds.c b/arch/mips/bcm47xx/leds.c
index d74117574f01..8bacc37e0382 100644
--- a/arch/mips/bcm47xx/leds.c
+++ b/arch/mips/bcm47xx/leds.c
@@ -383,6 +383,14 @@ bcm47xx_leds_netgear_wnr834bv2[] __initconst = {
383 BCM47XX_GPIO_LED(7, "unk", "connected", 0, LEDS_GPIO_DEFSTATE_OFF), 383 BCM47XX_GPIO_LED(7, "unk", "connected", 0, LEDS_GPIO_DEFSTATE_OFF),
384}; 384};
385 385
386/* Siemens */
387static const struct gpio_led
388bcm47xx_leds_siemens_se505v2[] __initconst = {
389 BCM47XX_GPIO_LED(0, "unk", "dmz", 1, LEDS_GPIO_DEFSTATE_OFF),
390 BCM47XX_GPIO_LED(3, "unk", "wlan", 1, LEDS_GPIO_DEFSTATE_OFF),
391 BCM47XX_GPIO_LED(5, "unk", "power", 1, LEDS_GPIO_DEFSTATE_ON),
392};
393
386/* SimpleTech */ 394/* SimpleTech */
387 395
388static const struct gpio_led 396static const struct gpio_led
@@ -562,6 +570,10 @@ void __init bcm47xx_leds_register(void)
562 bcm47xx_set_pdata(bcm47xx_leds_netgear_wnr834bv2); 570 bcm47xx_set_pdata(bcm47xx_leds_netgear_wnr834bv2);
563 break; 571 break;
564 572
573 case BCM47XX_BOARD_SIEMENS_SE505V2:
574 bcm47xx_set_pdata(bcm47xx_leds_siemens_se505v2);
575 break;
576
565 case BCM47XX_BOARD_SIMPLETECH_SIMPLESHARE: 577 case BCM47XX_BOARD_SIMPLETECH_SIMPLESHARE:
566 bcm47xx_set_pdata(bcm47xx_leds_simpletech_simpleshare); 578 bcm47xx_set_pdata(bcm47xx_leds_simpletech_simpleshare);
567 break; 579 break;