broadcom-diag: add support for e3200 v1
Hex values in nvram seem to be uppercase on my e3200 device. Define one power led and two buttons (reset/wps). Signed-off-by: Tijs Van Buggenhout <tvb@able.be> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 35766
This commit is contained in:
parent
c3563fbea6
commit
58eea9dc28
1 changed files with 15 additions and 0 deletions
|
@ -66,6 +66,7 @@ enum {
|
|||
WRT610NV2,
|
||||
E1000V1,
|
||||
E3000V1,
|
||||
E3200V1,
|
||||
|
||||
/* ASUS */
|
||||
WLHDD,
|
||||
|
@ -457,6 +458,18 @@ static struct platform_t __initdata platforms[] = {
|
|||
{ .name = "wlan", .gpio = 1 << 1, .polarity = NORMAL }, // Wireless LED
|
||||
},
|
||||
},
|
||||
[E3200V1] = {
|
||||
.name = "Linksys E3200 V1",
|
||||
.buttons = {
|
||||
/* { .name = "switch", .gpio = 1 << 4 },*/ /* nvram get gpio4=robo_reset */
|
||||
{ .name = "reset", .gpio = 1 << 5 }, /* nvram get reset_gpio=5 */
|
||||
{ .name = "wps", .gpio = 1 << 8 }, /* nvram get gpio8=wps_button */
|
||||
/* { .name = "wombo", .gpio = 1 << 23 },*/ /* nvram get gpio23=wombo_reset - wireless on motherboard */
|
||||
},
|
||||
.leds = {
|
||||
{ .name = "power", .gpio = 1 << 3, .polarity = REVERSE }, /* Power LED */
|
||||
},
|
||||
},
|
||||
/* Asus */
|
||||
[WLHDD] = {
|
||||
.name = "ASUS WL-HDD",
|
||||
|
@ -1269,6 +1282,8 @@ static struct platform_t __init *platform_detect(void)
|
|||
return &platforms[E1000V1];
|
||||
case BCM47XX_BOARD_LINKSYS_E3000V1:
|
||||
return &platforms[E3000V1];
|
||||
case BCM47XX_BOARD_LINKSYS_E3200V1:
|
||||
return &platforms[E3200V1];
|
||||
case BCM47XX_BOARD_LINKSYS_WRT150NV1:
|
||||
return &platforms[WRT150NV1];
|
||||
case BCM47XX_BOARD_LINKSYS_WRT150NV11:
|
||||
|
|
Loading…
Reference in a new issue