aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-11-11 23:04:23 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2013-11-11 23:04:23 +0000
commit09fd5cbd4c2e171a32e138e2d21e0d12b4bb14ef (patch)
tree42bd7e09532f04d236264a1007311e925a9c8f48 /package
parente8d0b5249669aa20e7b97ee7b0d1e39a94d0ca88 (diff)
downloadupstream-09fd5cbd4c2e171a32e138e2d21e0d12b4bb14ef.tar.gz
upstream-09fd5cbd4c2e171a32e138e2d21e0d12b4bb14ef.tar.bz2
upstream-09fd5cbd4c2e171a32e138e2d21e0d12b4bb14ef.zip
broadcom-diag: add Belkin F7D3302/F7D7302
Signed-off-by: Cody P Schafer <devel@codyps.com> SVN-Revision: 38768
Diffstat (limited to 'package')
-rw-r--r--package/kernel/broadcom-diag/src/diag.c31
1 files changed, 28 insertions, 3 deletions
diff --git a/package/kernel/broadcom-diag/src/diag.c b/package/kernel/broadcom-diag/src/diag.c
index e11141ec45..fccc2194b4 100644
--- a/package/kernel/broadcom-diag/src/diag.c
+++ b/package/kernel/broadcom-diag/src/diag.c
@@ -145,6 +145,7 @@ enum {
/* Belkin */
BELKIN_UNKNOWN,
+ BELKIN_F7D330X, /* covers F7D7302,F7D3302,F7D3301, and F7D7301 */
BELKIN_F7D4301,
/* Netgear */
@@ -966,6 +967,26 @@ static struct platform_t __initdata platforms[] = {
{ .name = "connected", .gpio = 1 << 0, .polarity = NORMAL },
},
},
+ [BELKIN_F7D330X] = {
+ .name = "Belkin F7D330X",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 6 },
+ { .name = "wps", .gpio = 1 << 8 },
+ },
+ .leds = {
+ /* green */
+ { .name = "power", .gpio = 1 << 10, .polarity = REVERSE },
+ /* orange power */
+ { .name = "warn", .gpio = 1 << 11, .polarity = REVERSE },
+ /* green */
+ { .name = "wps", .gpio = 1 << 12, .polarity = REVERSE },
+ /* orange wps */
+ { .name = "wlan", .gpio = 1 << 13, .polarity = REVERSE },
+ { .name = "usb0", .gpio = 1 << 14, .polarity = REVERSE },
+ /* shipped unconnected in the F7D3302 */
+ { .name = "usb1", .gpio = 1 << 15, .polarity = REVERSE },
+ },
+ },
[BELKIN_F7D4301] = {
.name = "Belkin PlayMax F7D4301",
.buttons = {
@@ -973,10 +994,12 @@ static struct platform_t __initdata platforms[] = {
{ .name = "wps", .gpio = 1 << 8 },
},
.leds = {
- { .name = "power", .gpio = 1 << 11, .polarity = REVERSE },
+ { .name = "power", .gpio = 1 << 10, .polarity = REVERSE },
+ { .name = "warn", .gpio = 1 << 11, .polarity = REVERSE },
+ { .name = "wps", .gpio = 1 << 12, .polarity = REVERSE },
{ .name = "wlan", .gpio = 1 << 13, .polarity = REVERSE },
- { .name = "led0", .gpio = 1 << 14, .polarity = REVERSE },
- { .name = "led1", .gpio = 1 << 15, .polarity = REVERSE },
+ { .name = "usb0", .gpio = 1 << 14, .polarity = REVERSE },
+ { .name = "usb1", .gpio = 1 << 15, .polarity = REVERSE },
},
},
/* Netgear */
@@ -1378,6 +1401,8 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WLHDD];
case BCM47XX_BOARD_BELKIN_F7D4301:
return &platforms[BELKIN_F7D4301];
+ case BCM47XX_BOARD_BELKIN_F7D330X:
+ return &platforms[BELKIN_F7D330X];
case BCM47XX_BOARD_BUFFALO_WBR2_G54:
return &platforms[WBR2_G54];
case BCM47XX_BOARD_BUFFALO_WHR2_A54G54: