mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:16:16 +02:00
Add Trendware TEW-411BRplus (#1038)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5764 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
6e336367e4
commit
d313d6dbc3
@ -91,6 +91,9 @@ enum {
|
|||||||
|
|
||||||
/* Belkin */
|
/* Belkin */
|
||||||
BELKIN_UNKNOWN,
|
BELKIN_UNKNOWN,
|
||||||
|
|
||||||
|
/* Trendware */
|
||||||
|
TEW411BRPP,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_t __initdata platforms[] = {
|
static struct platform_t __initdata platforms[] = {
|
||||||
@ -416,6 +419,18 @@ static struct platform_t __initdata platforms[] = {
|
|||||||
{ .name = "connected", .gpio = 1 << 0, .polarity = NORMAL },
|
{ .name = "connected", .gpio = 1 << 0, .polarity = NORMAL },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
/* Trendware */
|
||||||
|
[TEW411BRPP] = {
|
||||||
|
.name = "Trendware TEW411BRP+",
|
||||||
|
.buttons = {
|
||||||
|
{ /* No usable buttons */ },
|
||||||
|
},
|
||||||
|
.leds = {
|
||||||
|
{ .name = "power", .gpio = 1 << 7, .polarity = NORMAL },
|
||||||
|
{ .name = "wlan", .gpio = 1 << 1, .polarity = NORMAL },
|
||||||
|
{ .name = "bridge", .gpio = 1 << 6, .polarity = NORMAL },
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_t __init *platform_detect(void)
|
static struct platform_t __init *platform_detect(void)
|
||||||
@ -509,6 +524,10 @@ static struct platform_t __init *platform_detect(void)
|
|||||||
return &platforms[WR850GV2V3];
|
return &platforms[WR850GV2V3];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!strcmp(boardnum, "44")) { /* Trendware TEW-411BRP+ */
|
||||||
|
return &platforms[TEW411BRPP];
|
||||||
|
}
|
||||||
|
|
||||||
/* not found */
|
/* not found */
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -498,8 +498,17 @@ static int detect_adm(void)
|
|||||||
|
|
||||||
#if defined(BCMGPIO2) || defined(BCMGPIO)
|
#if defined(BCMGPIO2) || defined(BCMGPIO)
|
||||||
int boardflags = atoi(nvram_get("boardflags"));
|
int boardflags = atoi(nvram_get("boardflags"));
|
||||||
|
int boardnum = atoi(nvram_get("boardnum"));
|
||||||
|
|
||||||
if ((boardflags & 0x80) || force) {
|
if (boardnum == 44) { /* Trendware TEW-411BRP+ */
|
||||||
|
ret = 1;
|
||||||
|
|
||||||
|
eecs = getgpiopin("adm_eecs", 2);
|
||||||
|
eesk = getgpiopin("adm_eesk", 3);
|
||||||
|
eedi = getgpiopin("adm_eedi", 4);
|
||||||
|
eerc = getgpiopin("adm_rc", 5);
|
||||||
|
|
||||||
|
} else if ((boardflags & 0x80) || force) {
|
||||||
ret = 1;
|
ret = 1;
|
||||||
|
|
||||||
eecs = getgpiopin("adm_eecs", 2);
|
eecs = getgpiopin("adm_eecs", 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user