diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-02-27 16:34:09 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-02-27 16:34:09 +0000 |
commit | 5842bd91b6d8b3f6dee570c172868d001f669eef (patch) | |
tree | 9a7e278e53f2372e98033d48601aceb92a4be33f /target | |
parent | c7074a84f46cbe7a1bca8581a2d0f0130043f622 (diff) | |
download | upstream-5842bd91b6d8b3f6dee570c172868d001f669eef.tar.gz upstream-5842bd91b6d8b3f6dee570c172868d001f669eef.tar.bz2 upstream-5842bd91b6d8b3f6dee570c172868d001f669eef.zip |
aw-nr580: add support for the LAN ports
SVN-Revision: 14685
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c index 3ebba07716..1ab5584e72 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c @@ -56,6 +56,15 @@ static struct gpio_button aw_nr580_gpio_buttons[] __initdata = { static void __init aw_nr580_setup(void) { + ar71xx_add_device_mdio(0x0); + + ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII; + ar71xx_eth0_data.phy_mask = 0xf; + ar71xx_eth0_data.speed = SPEED_100; + ar71xx_eth0_data.duplex = DUPLEX_FULL; + + ar71xx_add_device_eth(0); + ar71xx_add_device_spi(NULL, aw_nr580_spi_info, ARRAY_SIZE(aw_nr580_spi_info)); |