This patch adds D-Link DIR-320 support to broadcom-diag.

"reserved" button is the button on the right side of the router without
any title. I'm not sure if I've selected right name.

Signed-off-by: Leonid Evdokimov <[email protected]>

Index: package/broadcom-diag/src/diag.c
===================================================================
--- package/broadcom-diag/src/diag.c    (revision 16441)
+++ package/broadcom-diag/src/diag.c    (working copy)
@@ -123,6 +123,7 @@

        /* D-Link */
        DIR130,
+       DIR320,
        DIR330,
        DWL3150,

@@ -718,6 +719,20 @@
                        { .name = "blue",       .gpio = 1 << 6},
                },
        },
+       [DIR320] = {
+               .name     = "D-Link DIR-320",
+               .buttons        = {
+                       { .name = "reserved",   .gpio = 1 << 6},
+                       { .name = "reset",      .gpio = 1 << 7},
+               },
+               .leds      = {
+                       { .name = "wlan",       .gpio = 1 << 0, .polarity = 
NORMAL },
+                       { .name = "diag",       .gpio = 1 << 1, .polarity = 
NORMAL }, /* "status"
led */
+                       { .name = "red",        .gpio = 1 << 3, .polarity = 
REVERSE },
+                       { .name = "blue",       .gpio = 1 << 4, .polarity = 
REVERSE },
+                       { .name = "usb",        .gpio = 1 << 5, .polarity = 
NORMAL },
+               },
+       },
        [DIR330] = {
                .name     = "D-Link DIR-330",
                .buttons        = {
@@ -875,6 +890,10 @@
                if (!strcmp(getvar("boardtype"), "0x0101") &&
!strcmp(getvar("boardrev"), "0x10")) /* SE505V2 With Modified CFE */
                        return &platforms[SE505V2];

+               if (!strcmp(boardtype, "0x048e") && !strcmp(getvar("boardrev"),
"0x35") &&
+                       !strcmp(getvar("boardflags"), "0x750")) /* D-Link 
DIR-320 */
+                       return &platforms[DIR320];
+
        } else { /* PMON based - old stuff */
                if ((simple_strtoul(getvar("GemtekPmonVer"), NULL, 0) == 9) &&
                        (simple_strtoul(getvar("et0phyaddr"), NULL, 0) == 30)) {

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to