From: hauke Date: Sun, 24 Feb 2013 17:57:28 +0000 (+0000) Subject: broadcom-diag: add support for e3200 v1 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=286276a34bd0bd644b114690bb28d5aa16ce1146;p=openwrt.git broadcom-diag: add support for e3200 v1 Hex values in nvram seem to be uppercase on my e3200 device. Define one power led and two buttons (reset/wps). Signed-off-by: Tijs Van Buggenhout Signed-off-by: Hauke Mehrtens git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35766 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c index 774f0cefd0..168f81d77e 100644 --- a/package/broadcom-diag/src/diag.c +++ b/package/broadcom-diag/src/diag.c @@ -66,6 +66,7 @@ enum { WRT610NV2, E1000V1, E3000V1, + E3200V1, /* ASUS */ WLHDD, @@ -457,6 +458,18 @@ static struct platform_t __initdata platforms[] = { { .name = "wlan", .gpio = 1 << 1, .polarity = NORMAL }, // Wireless LED }, }, + [E3200V1] = { + .name = "Linksys E3200 V1", + .buttons = { + /* { .name = "switch", .gpio = 1 << 4 },*/ /* nvram get gpio4=robo_reset */ + { .name = "reset", .gpio = 1 << 5 }, /* nvram get reset_gpio=5 */ + { .name = "wps", .gpio = 1 << 8 }, /* nvram get gpio8=wps_button */ + /* { .name = "wombo", .gpio = 1 << 23 },*/ /* nvram get gpio23=wombo_reset - wireless on motherboard */ + }, + .leds = { + { .name = "power", .gpio = 1 << 3, .polarity = REVERSE }, /* Power LED */ + }, + }, /* Asus */ [WLHDD] = { .name = "ASUS WL-HDD", @@ -1269,6 +1282,8 @@ static struct platform_t __init *platform_detect(void) return &platforms[E1000V1]; case BCM47XX_BOARD_LINKSYS_E3000V1: return &platforms[E3000V1]; + case BCM47XX_BOARD_LINKSYS_E3200V1: + return &platforms[E3200V1]; case BCM47XX_BOARD_LINKSYS_WRT150NV1: return &platforms[WRT150NV1]; case BCM47XX_BOARD_LINKSYS_WRT150NV11: