broadcom-diag: add support for e3200 v1
[openwrt/openwrt.git] / package / broadcom-diag / src / diag.c
index 774f0cefd019796edbd0023f2b7df4addbb4a7ff..168f81d77e2542e149243397f33d8d744d37162b 100644 (file)
@@ -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: