Skip to content

Commit

Permalink
net: ethernet: ti/cpsw: do not crash on single-MAC machines during re…
Browse files Browse the repository at this point in the history
…sume

During resume, use for_each_slave to walk the slaves of the cpsw, and
soft-reset each of them. This prevents oopses if there is only one
slave configured.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Mugunthan V N <mugunthanvnm@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Daniel Mack authored and David S. Miller committed Nov 15, 2013
1 parent 82c80e9 commit 1e7a2e2
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions drivers/net/ethernet/ti/cpsw.c
Original file line number Diff line number Diff line change
Expand Up @@ -967,14 +967,19 @@ static inline void cpsw_add_dual_emac_def_ale_entries(
priv->host_port, ALE_VLAN, slave->port_vlan);
}

static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
static void soft_reset_slave(struct cpsw_slave *slave)
{
char name[32];
u32 slave_port;

sprintf(name, "slave-%d", slave->slave_num);

snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
soft_reset(name, &slave->sliver->soft_reset);
}

static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
{
u32 slave_port;

soft_reset_slave(slave);

/* setup priority mapping */
__raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Expand Down Expand Up @@ -2171,8 +2176,9 @@ static int cpsw_suspend(struct device *dev)

if (netif_running(ndev))
cpsw_ndo_stop(ndev);
soft_reset("sliver 0", &priv->slaves[0].sliver->soft_reset);
soft_reset("sliver 1", &priv->slaves[1].sliver->soft_reset);

for_each_slave(priv, soft_reset_slave);

pm_runtime_put_sync(&pdev->dev);

/* Select sleep pin state */
Expand Down

0 comments on commit 1e7a2e2

Please sign in to comment.