Skip to content

Commit

Permalink
korina: periodically poll the media
Browse files Browse the repository at this point in the history
This patch makes the korina driver poll the media
for link change. This is actually required on
Mikrotik RB532 (not RB532A) for korina to
operate properly.

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Fainelli authored and David S. Miller committed May 29, 2009
1 parent 5d23a1d commit 4d5ef9f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions drivers/net/korina.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ struct korina_private {
int dma_halt_cnt;
int dma_run_cnt;
struct napi_struct napi;
struct timer_list media_check_timer;
struct mii_if_info mii_if;
struct net_device *dev;
int phy_addr;
Expand Down Expand Up @@ -664,6 +665,15 @@ static void korina_check_media(struct net_device *dev, unsigned int init_media)
&lp->eth_regs->ethmac2);
}

static void korina_poll_media(unsigned long data)
{
struct net_device *dev = (struct net_device *) data;
struct korina_private *lp = netdev_priv(dev);

korina_check_media(dev, 0);
mod_timer(&lp->media_check_timer, jiffies + HZ);
}

static void korina_set_carrier(struct mii_if_info *mii)
{
if (mii->force_media) {
Expand Down Expand Up @@ -1034,6 +1044,7 @@ static int korina_open(struct net_device *dev)
dev->name, lp->und_irq);
goto err_free_ovr_irq;
}
mod_timer(&lp->media_check_timer, jiffies + 1);
out:
return ret;

Expand All @@ -1053,6 +1064,8 @@ static int korina_close(struct net_device *dev)
struct korina_private *lp = netdev_priv(dev);
u32 tmp;

del_timer(&lp->media_check_timer);

/* Disable interrupts */
disable_irq(lp->rx_irq);
disable_irq(lp->tx_irq);
Expand Down Expand Up @@ -1183,6 +1196,7 @@ static int korina_probe(struct platform_device *pdev)
": cannot register net device %d\n", rc);
goto probe_err_register;
}
setup_timer(&lp->media_check_timer, korina_poll_media, (unsigned long) dev);
out:
return rc;

Expand Down

0 comments on commit 4d5ef9f

Please sign in to comment.