diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-02-23 07:58:44 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-02-23 07:58:44 +0000 |
commit | a34753cacd99c636d62b02f465a54be6b5602739 (patch) | |
tree | 701ba5c76ae90d825453b6d664f2faecf5690c2c /target/linux/ar71xx | |
parent | 0d56c7c638678d6369e6d64d1a7a5bd0c626fc76 (diff) | |
download | upstream-a34753cacd99c636d62b02f465a54be6b5602739.tar.gz upstream-a34753cacd99c636d62b02f465a54be6b5602739.tar.bz2 upstream-a34753cacd99c636d62b02f465a54be6b5602739.zip |
tl-wr941nd: register ethernet device, and fix machine id
SVN-Revision: 14632
Diffstat (limited to 'target/linux/ar71xx')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c index 12afad3ffd..e5ccd925d7 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c @@ -109,6 +109,19 @@ static struct gpio_button tl_wr941nd_gpio_buttons[] __initdata = { static void __init tl_wr941nd_setup(void) { + u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00); + + ar71xx_set_mac_base(mac); + + ar71xx_add_device_mdio(0x0); + + ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII; + ar71xx_eth0_data.phy_mask = 0x0; + ar71xx_eth0_data.speed = SPEED_100; + ar71xx_eth0_data.duplex = DUPLEX_FULL; + + ar71xx_add_device_eth(0); + ar71xx_add_device_spi(NULL, tl_wr941nd_spi_info, ARRAY_SIZE(tl_wr941nd_spi_info)); @@ -121,4 +134,4 @@ static void __init tl_wr941nd_setup(void) ar91xx_add_device_wmac(); } -MIPS_MACHINE(AR71XX_MACH_MZK_W04NU, "TP-LINK TL-WR941ND", tl_wr941nd_setup); +MIPS_MACHINE(AR71XX_MACH_TL_WR941ND, "TP-LINK TL-WR941ND", tl_wr941nd_setup); |