2
0
forked from Ivasoft/openwrt

ar71xx: add a new driver for the ar7240 switch using swconfig. hooks directly into the ethernet driver, as MAC resets also require switch reinitializations and the switch is part of the cpu core anyway switch only tl-wr741nd (and other devices using this board file, such as tl-wr841nd) over to using this by default, as other devices are still untested fixes #7563

SVN-Revision: 22675
This commit is contained in:
Felix Fietkau
2010-08-16 19:21:57 +00:00
parent 9f1ed6e4d3
commit 523fcf0497
7 changed files with 902 additions and 8 deletions

View File

@@ -108,7 +108,23 @@ static void __init tl_wr741nd_setup(void)
ARRAY_SIZE(tl_wr741nd_gpio_buttons),
tl_wr741nd_gpio_buttons);
ap91_eth_init(mac, NULL);
ar71xx_eth1_data.has_ar7240_switch = 1;
ar71xx_set_mac_base(mac);
/* WAN port */
ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
ar71xx_eth0_data.speed = SPEED_100;
ar71xx_eth0_data.duplex = DUPLEX_FULL;
/* LAN ports */
ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
ar71xx_eth1_data.speed = SPEED_1000;
ar71xx_eth1_data.duplex = DUPLEX_FULL;
ar71xx_add_device_mdio(0x0);
ar71xx_add_device_eth(1);
ar71xx_add_device_eth(0);
ap91_pci_init(ee, mac);
}
MIPS_MACHINE(AR71XX_MACH_TL_WR741ND, "TL-WR741ND", "TP-LINK TL-WR741ND",

View File

@@ -31,6 +31,7 @@ struct ag71xx_platform_data {
u8 is_ar91xx:1;
u8 is_ar724x:1;
u8 has_ar8216:1;
u8 has_ar7240_switch:1;
void (* ddr_flush)(void);
void (* set_pll)(int speed);