diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-01 17:36:27 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-04-12 12:26:17 -0400 |
commit | f29b7cac19ef5aa093fc9403d10735fa72cabf99 (patch) | |
tree | 4082e2026e4d5c3e43b80421c36384715e4b6c14 /arch/mips | |
parent | 2e6ad9a9585b5520cddda4743bfbfdf7f11c5a50 (diff) |
MIPS: BCM63xx: Add DWVS0 board
The DWVS0 board is a BCM6358-based board with an on-board OHCI controler.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
To: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/1015/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/bcm63xx/boards/board_bcm963xx.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/mips/bcm63xx/boards/board_bcm963xx.c b/arch/mips/bcm63xx/boards/board_bcm963xx.c index 874bbdb2d939..a690afb4ee8d 100644 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c | |||
@@ -550,6 +550,27 @@ static struct board_info __initdata board_AGPFS0 = { | |||
550 | .has_ohci0 = 1, | 550 | .has_ohci0 = 1, |
551 | .has_ehci0 = 1, | 551 | .has_ehci0 = 1, |
552 | }; | 552 | }; |
553 | |||
554 | static struct board_info __initdata board_DWVS0 = { | ||
555 | .name = "DWV-S0", | ||
556 | .expected_cpu_id = 0x6358, | ||
557 | |||
558 | .has_enet0 = 1, | ||
559 | .has_enet1 = 1, | ||
560 | .has_pci = 1, | ||
561 | |||
562 | .enet0 = { | ||
563 | .has_phy = 1, | ||
564 | .use_internal_phy = 1, | ||
565 | }, | ||
566 | |||
567 | .enet1 = { | ||
568 | .force_speed_100 = 1, | ||
569 | .force_duplex_full = 1, | ||
570 | }, | ||
571 | |||
572 | .has_ohci0 = 1, | ||
573 | }; | ||
553 | #endif | 574 | #endif |
554 | 575 | ||
555 | /* | 576 | /* |
@@ -578,6 +599,7 @@ static const struct board_info __initdata *bcm963xx_boards[] = { | |||
578 | &board_96358vw, | 599 | &board_96358vw, |
579 | &board_96358vw2, | 600 | &board_96358vw2, |
580 | &board_AGPFS0, | 601 | &board_AGPFS0, |
602 | &board_DWVS0, | ||
581 | #endif | 603 | #endif |
582 | }; | 604 | }; |
583 | 605 | ||