2
0
forked from Ivasoft/openwrt

ar71xx: allow to disable link polling on unused PHYs

SVN-Revision: 31533
This commit is contained in:
Gabor Juhos
2012-04-29 18:29:24 +00:00
parent a8d3109208
commit 3e3a4d3d6b
3 changed files with 16 additions and 4 deletions

View File

@@ -1115,19 +1115,26 @@ static void link_function(struct work_struct *work) {
struct ag71xx *ag = container_of(work, struct ag71xx, link_work.work);
struct ar7240sw *as = ag->phy_priv;
unsigned long flags;
u8 mask;
int i;
int status = 0;
for (i = 0; i < as->swdev.ports; i++) {
int link = ar7240sw_phy_read(ag->mii_bus, i, MII_BMSR);
if(link & BMSR_LSTATUS) {
mask = ~as->swdata->phy_poll_mask;
for (i = 0; i < AR7240_NUM_PHYS; i++) {
int link;
if (!(mask & BIT(i)))
continue;
link = ar7240sw_phy_read(ag->mii_bus, i, MII_BMSR);
if (link & BMSR_LSTATUS) {
status = 1;
break;
}
}
spin_lock_irqsave(&ag->lock, flags);
if(status != ag->link) {
if (status != ag->link) {
ag->link = status;
ag71xx_link_adjust(ag);
}