aboutsummaryrefslogtreecommitdiffstats
path: root/package/broadcom-diag
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-24 02:39:41 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-24 02:39:41 +0000
commit7bb9865fff3ffcda0727b25e2bde089b1ae89c9a (patch)
tree0318f71c03dfe239c892fb2cc78c02937ba4d14c /package/broadcom-diag
parentbeaeecbb9f504cd7e6fe12c3eed04c2f699f3dd1 (diff)
downloadupstream-7bb9865fff3ffcda0727b25e2bde089b1ae89c9a.tar.gz
upstream-7bb9865fff3ffcda0727b25e2bde089b1ae89c9a.tar.bz2
upstream-7bb9865fff3ffcda0727b25e2bde089b1ae89c9a.zip
fix gpios for wzr-rs-g54, add support for the wzr-rs-g54hp
SVN-Revision: 5636
Diffstat (limited to 'package/broadcom-diag')
-rw-r--r--package/broadcom-diag/src/diag.c21
1 files changed, 19 insertions, 2 deletions
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c
index c85401f7f9..e17f255e5b 100644
--- a/package/broadcom-diag/src/diag.c
+++ b/package/broadcom-diag/src/diag.c
@@ -70,6 +70,7 @@ enum {
WHR2_A54G54,
WLA2_G54L,
WZR_RS_G54,
+ WZR_RS_G54HP,
BUFFALO_UNKNOWN,
BUFFALO_UNKNOWN_4710,
@@ -284,10 +285,24 @@ static struct platform_t __initdata platforms[] = {
.name = "Buffalo WZR-RS-G54",
.buttons = {
{ .name = "ses", .gpio = 1 << 0 },
- { .name = "reset", .gpio = 1 << 7 },
+ { .name = "reset", .gpio = 1 << 4 },
},
.leds = {
- { .name = "diag", .gpio = 1 << 1, .polarity = REVERSE },
+ { .name = "diag", .gpio = 1 << 7, .polarity = REVERSE },
+ { .name = "ses", .gpio = 1 << 6, .polarity = REVERSE },
+ { .name = "vpn", .gpio = 1 << 1, .polarity = REVERSE },
+ },
+ },
+ [WZR_RS_G54HP] = {
+ .name = "Buffalo WZR-RS-G54HP",
+ .buttons = {
+ { .name = "ses", .gpio = 1 << 0 },
+ { .name = "reset", .gpio = 1 << 4 },
+ },
+ .leds = {
+ { .name = "diag", .gpio = 1 << 7, .polarity = REVERSE },
+ { .name = "ses", .gpio = 1 << 6, .polarity = REVERSE },
+ { .name = "vpn", .gpio = 1 << 1, .polarity = REVERSE },
},
},
[BUFFALO_UNKNOWN] = {
@@ -476,6 +491,8 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WHR2_A54G54];
if (!strcmp(buf, "30083"))
return &platforms[WZR_RS_G54];
+ if (!strcmp(buf, "30103"))
+ return &platforms[WZR_RS_G54HP];
}
if (buf || !strcmp(boardnum, "00")) {/* probably buffalo */