Skip to content

Commit

Permalink
net: systemport: update umac_enable_set to take a bitmask
Browse files Browse the repository at this point in the history
Quite often we need to enable either the transmitter or the receiver
bits in UMAC_CMD, use umac_enable_set() to do that for us.

This is a preliminary change to introduce suspend/resume support in the
driver.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Fainelli authored and David S. Miller committed Jul 8, 2014
1 parent 4710d80 commit 18e21b0
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions drivers/net/ethernet/broadcom/bcmsysport.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,15 +1236,15 @@ static void bcm_sysport_set_rx_mode(struct net_device *dev)
}

static inline void umac_enable_set(struct bcm_sysport_priv *priv,
unsigned int enable)
u32 mask, unsigned int enable)
{
u32 reg;

reg = umac_readl(priv, UMAC_CMD);
if (enable)
reg |= CMD_RX_EN | CMD_TX_EN;
reg |= mask;
else
reg &= ~(CMD_RX_EN | CMD_TX_EN);
reg &= ~mask;
umac_writel(priv, reg, UMAC_CMD);

/* UniMAC stops on a packet boundary, wait for a full-sized packet
Expand Down Expand Up @@ -1313,7 +1313,7 @@ static int bcm_sysport_open(struct net_device *dev)
topctrl_flush(priv);

/* Disable the UniMAC RX/TX */
umac_enable_set(priv, 0);
umac_enable_set(priv, CMD_RX_EN | CMD_TX_EN, 0);

/* Enable RBUF 2bytes alignment and Receive Status Block */
reg = rbuf_readl(priv, RBUF_CONTROL);
Expand Down Expand Up @@ -1398,7 +1398,7 @@ static int bcm_sysport_open(struct net_device *dev)
napi_enable(&priv->napi);

/* Turn on UniMAC TX/RX */
umac_enable_set(priv, 1);
umac_enable_set(priv, CMD_RX_EN | CMD_TX_EN, 1);

phy_start(priv->phydev);

Expand Down Expand Up @@ -1429,7 +1429,6 @@ static int bcm_sysport_stop(struct net_device *dev)
{
struct bcm_sysport_priv *priv = netdev_priv(dev);
unsigned int i;
u32 reg;
int ret;

/* stop all software from updating hardware */
Expand All @@ -1444,9 +1443,7 @@ static int bcm_sysport_stop(struct net_device *dev)
intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);

/* Disable UniMAC RX */
reg = umac_readl(priv, UMAC_CMD);
reg &= ~CMD_RX_EN;
umac_writel(priv, reg, UMAC_CMD);
umac_enable_set(priv, CMD_RX_EN, 0);

ret = tdma_enable_set(priv, 0);
if (ret) {
Expand All @@ -1464,9 +1461,7 @@ static int bcm_sysport_stop(struct net_device *dev)
}

/* Disable UniMAC TX */
reg = umac_readl(priv, UMAC_CMD);
reg &= ~CMD_TX_EN;
umac_writel(priv, reg, UMAC_CMD);
umac_enable_set(priv, CMD_TX_EN, 0);

/* Free RX/TX rings SW structures */
for (i = 0; i < dev->num_tx_queues; i++)
Expand Down

0 comments on commit 18e21b0

Please sign in to comment.