Skip to content

Commit

Permalink
r6040: add a MAC operation timeout define
Browse files Browse the repository at this point in the history
2048 is the usual value for busy-waiting on a register r/w, define it
as MAC_DEF_TIMEOUT and use it where it is appropriate.

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 Apr 12, 2012
1 parent 0db0cfc commit 2fa15bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/net/ethernet/rdc/r6040.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@
#define MBCR_DEFAULT 0x012A /* MAC Bus Control Register */
#define MCAST_MAX 3 /* Max number multicast addresses to filter */

#define MAC_DEF_TIMEOUT 2048 /* Default MAC read/write operation timeout */

/* Descriptor status */
#define DSC_OWNER_MAC 0x8000 /* MAC is the owner of this descriptor */
#define DSC_RX_OK 0x4000 /* RX was successful */
Expand Down Expand Up @@ -204,7 +206,7 @@ static char version[] __devinitdata = DRV_NAME
/* Read a word data from PHY Chip */
static int r6040_phy_read(void __iomem *ioaddr, int phy_addr, int reg)
{
int limit = 2048;
int limit = MAC_DEF_TIMEOUT;
u16 cmd;

iowrite16(MDIO_READ + reg + (phy_addr << 8), ioaddr + MMDIO);
Expand All @@ -222,7 +224,7 @@ static int r6040_phy_read(void __iomem *ioaddr, int phy_addr, int reg)
static void r6040_phy_write(void __iomem *ioaddr,
int phy_addr, int reg, u16 val)
{
int limit = 2048;
int limit = MAC_DEF_TIMEOUT;
u16 cmd;

iowrite16(val, ioaddr + MMWD);
Expand Down Expand Up @@ -361,7 +363,7 @@ static int r6040_alloc_rxbufs(struct net_device *dev)
static void r6040_reset_mac(struct r6040_private *lp)
{
void __iomem *ioaddr = lp->base;
int limit = 2048;
int limit = MAC_DEF_TIMEOUT;
u16 cmd;

iowrite16(MAC_RST, ioaddr + MCR1);
Expand Down

0 comments on commit 2fa15bb

Please sign in to comment.