broadcom-diag: Add WRT310N v1 gpio leds and buttons
Signed-off-by: Flavio Silveira <fggs@terra.com.br> SVN-Revision: 38007
This commit is contained in:
parent
bc5b56f42b
commit
2b4e96fe09
1 changed files with 15 additions and 0 deletions
|
@ -83,6 +83,7 @@ enum {
|
||||||
WRT160NV1,
|
WRT160NV1,
|
||||||
WRT160NV3,
|
WRT160NV3,
|
||||||
WRT300NV11,
|
WRT300NV11,
|
||||||
|
WRT310NV1,
|
||||||
WRT350N,
|
WRT350N,
|
||||||
WRT600N,
|
WRT600N,
|
||||||
WRT600NV11,
|
WRT600NV11,
|
||||||
|
@ -382,6 +383,18 @@ static struct platform_t __initdata platforms[] = {
|
||||||
},
|
},
|
||||||
.platform_init = bcm57xx_init,
|
.platform_init = bcm57xx_init,
|
||||||
},
|
},
|
||||||
|
[WRT310NV1] = {
|
||||||
|
.name = "Linksys WRT310N V1",
|
||||||
|
.buttons = {
|
||||||
|
{ .name = "reset", .gpio = 1 << 6 }, // "Reset" on back panel
|
||||||
|
{ .name = "ses", .gpio = 1 << 8 }, // "Reserved" on top panel
|
||||||
|
},
|
||||||
|
.leds = {
|
||||||
|
{ .name = "power", .gpio = 1 << 1, .polarity = NORMAL }, // Power LED
|
||||||
|
{ .name = "ses_amber", .gpio = 1 << 3, .polarity = REVERSE }, // "Security" Amber
|
||||||
|
{ .name = "ses_blue", .gpio = 1 << 9, .polarity = REVERSE }, // "Security" Blue
|
||||||
|
},
|
||||||
|
},
|
||||||
[WRT350N] = {
|
[WRT350N] = {
|
||||||
.name = "Linksys WRT350N",
|
.name = "Linksys WRT350N",
|
||||||
.buttons = {
|
.buttons = {
|
||||||
|
@ -1397,6 +1410,8 @@ static struct platform_t __init *platform_detect(void)
|
||||||
return &platforms[WRT160NV3];
|
return &platforms[WRT160NV3];
|
||||||
case BCM47XX_BOARD_LINKSYS_WRT300NV11:
|
case BCM47XX_BOARD_LINKSYS_WRT300NV11:
|
||||||
return &platforms[WRT300NV11];
|
return &platforms[WRT300NV11];
|
||||||
|
case BCM47XX_BOARD_LINKSYS_WRT310NV1:
|
||||||
|
return &platforms[WRT310NV1];
|
||||||
case BCM47XX_BOARD_LINKSYS_WRT54G3GV2:
|
case BCM47XX_BOARD_LINKSYS_WRT54G3GV2:
|
||||||
return &platforms[WRT54G3GV2_VF];
|
return &platforms[WRT54G3GV2_VF];
|
||||||
case BCM47XX_BOARD_LINKSYS_WRT610NV1:
|
case BCM47XX_BOARD_LINKSYS_WRT610NV1:
|
||||||
|
|
Loading…
Reference in a new issue