aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorAndy Boyett <agb@openwrt.org>2009-02-26 01:22:57 +0000
committerAndy Boyett <agb@openwrt.org>2009-02-26 01:22:57 +0000
commit0e2970634ec6b0959f303d155fb8f55bccc6405f (patch)
treeaf6e8d23e9318b42e3241721e2bbc5c17c332dce /target
parent4e31ac069e8693e2780cc19c42e5d322bcdfe0a3 (diff)
downloadupstream-0e2970634ec6b0959f303d155fb8f55bccc6405f.tar.gz
upstream-0e2970634ec6b0959f303d155fb8f55bccc6405f.tar.bz2
upstream-0e2970634ec6b0959f303d155fb8f55bccc6405f.zip
[ar71xx] wnr2000: configure eth1 (WAN) and detect the ar8216 switch on eth0 (LAN)
ar8216 headers are embedded in packets on eth0 so it is not usable yet git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14661 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c
index 1b419c599a..be51727c9c 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c
@@ -127,6 +127,19 @@ static struct gpio_button wnr2000_gpio_buttons[] __initdata = {
static void __init wnr2000_setup(void)
{
+ ar71xx_add_device_mdio(0x0);
+
+ ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
+ ar71xx_eth0_data.phy_mask = 0xf;
+ ar71xx_eth0_data.speed = SPEED_100;
+ ar71xx_eth0_data.duplex = DUPLEX_FULL;
+
+ ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
+ ar71xx_eth1_data.phy_mask = 0x10;
+
+ ar71xx_add_device_eth(0);
+ ar71xx_add_device_eth(1);
+
ar71xx_add_device_spi(NULL, wnr2000_spi_info,
ARRAY_SIZE(wnr2000_spi_info));