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
This commit is contained in:
parent
18e37d8caf
commit
b1b3067a12
1 changed files with 13 additions and 0 deletions
|
@ -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…
Reference in a new issue