broadcom-diag: add gpio config for Linksys E4200v1

GPIO for Linksys E4200v1, tested and works. This closes #13454 and #13894

Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

SVN-Revision: 37666
v19.07.3_mercusys_ac12_duma
Hauke Mehrtens 11 years ago
parent 18e37d8caf
commit b1b3067a12

@ -91,6 +91,7 @@ enum {
E1000V1,
E3000V1,
E3200V1,
E4200V1,
/* ASUS */
WLHDD,
@ -496,6 +497,16 @@ static struct platform_t __initdata platforms[] = {
{ .name = "power", .gpio = 1 << 3, .polarity = REVERSE }, /* Power LED */
},
},
[E4200V1] = {
.name = "Linksys E4200 V1",
.buttons = {
{ .name = "reset", .gpio = 1 << 6 },
{ .name = "wps", .gpio = 1 << 4 },
},
.leds = {
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
},
},
/* Asus */
[WLHDD] = {
.name = "ASUS WL-HDD",
@ -1348,6 +1359,8 @@ static struct platform_t __init *platform_detect(void)
return &platforms[E3000V1];
case BCM47XX_BOARD_LINKSYS_E3200V1:
return &platforms[E3200V1];
case BCM47XX_BOARD_LINKSYS_E4200V1:
return &platforms[E4200V1];
case BCM47XX_BOARD_LINKSYS_WRT150NV1:
return &platforms[WRT150NV1];
case BCM47XX_BOARD_LINKSYS_WRT150NV11:

Loading…
Cancel
Save