Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Florian Fainelli and committed by
Ralf Baechle
f29b7cac 2e6ad9a9

+22
+22
arch/mips/bcm63xx/boards/board_bcm963xx.c
··· 550 550 .has_ohci0 = 1, 551 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 574 #endif 554 575 555 576 /* ··· 599 578 &board_96358vw, 600 579 &board_96358vw2, 601 580 &board_AGPFS0, 581 + &board_DWVS0, 602 582 #endif 603 583 }; 604 584