1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add WRT300N v1.1 support (patch from #6379)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18921 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2009-12-24 10:58:09 +00:00
parent f3b0c7130c
commit 035f5fa612
4 changed files with 40 additions and 3 deletions

View File

@@ -61,6 +61,7 @@ enum {
WRTSL54GS,
WRT54G3G,
WRT160N,
WRT300NV11,
WRT350N,
WRT600N,
WRT600NV11,
@@ -255,6 +256,19 @@ static struct platform_t __initdata platforms[] = {
{ .name = "ses_orange", .gpio = 1 << 3, .polarity = REVERSE },
},
},
[WRT300NV11] = {
.name = "Linksys WRT300N V1.1",
.buttons = {
{ .name = "reset", .gpio = 1 << 6 }, // "Reset" on back panel
{ .name = "ses", .gpio = 1 << 4 }, // "Reserved" on top panel
},
.leds = {
{ .name = "power", .gpio = 1 << 1, .polarity = NORMAL }, // "Power"
{ .name = "ses_amber", .gpio = 1 << 3, .polarity = REVERSE }, // "Security" Amber
{ .name = "ses_green", .gpio = 1 << 5, .polarity = REVERSE }, // "Security" Green
},
.platform_init = bcm57xx_init,
},
[WRT350N] = {
.name = "Linksys WRT350N",
.buttons = {
@@ -886,6 +900,9 @@ static struct platform_t __init *platform_detect(void)
if (startswith(getvar("pmon_ver"), "CFE")) {
/* CFE based - newer hardware */
if (!strcmp(boardnum, "42")) { /* Linksys */
if (!strcmp(boardtype, "0x478") && !strcmp(getvar("boot_hw_model"), "WRT300N") && !strcmp(getvar("boot_hw_ver"), "1.1"))
return &platforms[WRT300NV11];
if (!strcmp(boardtype, "0x478") && !strcmp(getvar("cardbus"), "1"))
return &platforms[WRT350N];