mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ar71xx: fix MII clock settings for various chips, improves ethernet stability on AR934x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31925 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -199,17 +199,25 @@ void __init ath79_register_mdio(unsigned int id, u32 phy_mask)
|
||||
|
||||
switch (ath79_soc) {
|
||||
case ATH79_SOC_AR7240:
|
||||
case ATH79_SOC_AR7241:
|
||||
case ATH79_SOC_AR9330:
|
||||
case ATH79_SOC_AR9331:
|
||||
mdio_data->is_ar7240 = 1;
|
||||
/* fall through */
|
||||
case ATH79_SOC_AR7241:
|
||||
mdio_data->builtin_switch = 1;
|
||||
break;
|
||||
|
||||
case ATH79_SOC_AR9330:
|
||||
mdio_data->is_ar9330 = 1;
|
||||
/* fall through */
|
||||
case ATH79_SOC_AR9331:
|
||||
mdio_data->builtin_switch = 1;
|
||||
break;
|
||||
|
||||
case ATH79_SOC_AR9341:
|
||||
case ATH79_SOC_AR9342:
|
||||
case ATH79_SOC_AR9344:
|
||||
if (id == 1)
|
||||
mdio_data->is_ar7240 = 1;
|
||||
mdio_data->builtin_switch = 1;
|
||||
mdio_data->is_ar934x = 1;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
@@ -49,7 +49,10 @@ struct ag71xx_platform_data {
|
||||
|
||||
struct ag71xx_mdio_platform_data {
|
||||
u32 phy_mask;
|
||||
int is_ar7240;
|
||||
u8 builtin_switch:1;
|
||||
u8 is_ar7240:1;
|
||||
u8 is_ar9330:1;
|
||||
u8 is_ar934x:1;
|
||||
};
|
||||
|
||||
#endif /* __ASM_MACH_ATH79_PLATFORM_H */
|
||||
|
||||
Reference in New Issue
Block a user