Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 916102c6 authored by Lendacky, Thomas's avatar Lendacky, Thomas Committed by David S. Miller
Browse files

amd-xgbe: Clear all state during a device restart



When performing a device restart, like during an MTU change, sometimes
the device queues still have data and get hung up trying to flush
resulting in the device becoming unresponsive until brought down and
back up. To prevent this, always perform a device reset during a
restart.

Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 03e50fd7
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -2107,6 +2107,23 @@ static void xgbe_config_jumbo_enable(struct xgbe_prv_data *pdata)
	XGMAC_IOWRITE_BITS(pdata, MAC_RCR, JE, val);
}

static void xgbe_config_mac_speed(struct xgbe_prv_data *pdata)
{
	switch (pdata->phy_speed) {
	case SPEED_10000:
		xgbe_set_xgmii_speed(pdata);
		break;

	case SPEED_2500:
		xgbe_set_gmii_2500_speed(pdata);
		break;

	case SPEED_1000:
		xgbe_set_gmii_speed(pdata);
		break;
	}
}

static void xgbe_config_checksum_offload(struct xgbe_prv_data *pdata)
{
	if (pdata->netdev->features & NETIF_F_RXCSUM)
@@ -2757,6 +2774,7 @@ static int xgbe_init(struct xgbe_prv_data *pdata)
	xgbe_config_mac_address(pdata);
	xgbe_config_jumbo_enable(pdata);
	xgbe_config_flow_control(pdata);
	xgbe_config_mac_speed(pdata);
	xgbe_config_checksum_offload(pdata);
	xgbe_config_vlan_support(pdata);
	xgbe_config_mmc(pdata);
+5 −6
Original line number Diff line number Diff line
@@ -927,7 +927,7 @@ static void xgbe_stop(struct xgbe_prv_data *pdata)
	DBGPR("<--xgbe_stop\n");
}

static void xgbe_restart_dev(struct xgbe_prv_data *pdata, unsigned int reset)
static void xgbe_restart_dev(struct xgbe_prv_data *pdata)
{
	struct xgbe_channel *channel;
	struct xgbe_hw_if *hw_if = &pdata->hw_if;
@@ -950,8 +950,7 @@ static void xgbe_restart_dev(struct xgbe_prv_data *pdata, unsigned int reset)
	xgbe_free_tx_data(pdata);
	xgbe_free_rx_data(pdata);

	/* Issue software reset to device if requested */
	if (reset)
	/* Issue software reset to device */
	hw_if->exit(pdata);

	xgbe_start(pdata);
@@ -967,7 +966,7 @@ static void xgbe_restart(struct work_struct *work)

	rtnl_lock();

	xgbe_restart_dev(pdata, 1);
	xgbe_restart_dev(pdata);

	rtnl_unlock();
}
@@ -1587,7 +1586,7 @@ static int xgbe_change_mtu(struct net_device *netdev, int mtu)
	pdata->rx_buf_size = ret;
	netdev->mtu = mtu;

	xgbe_restart_dev(pdata, 0);
	xgbe_restart_dev(pdata);

	DBGPR("<--xgbe_change_mtu\n");

+1 −0
Original line number Diff line number Diff line
@@ -148,6 +148,7 @@ static void xgbe_default_config(struct xgbe_prv_data *pdata)
	pdata->pause_autoneg = 1;
	pdata->tx_pause = 1;
	pdata->rx_pause = 1;
	pdata->phy_speed = SPEED_UNKNOWN;
	pdata->power_down = 0;
	pdata->default_autoneg = AUTONEG_ENABLE;
	pdata->default_speed = SPEED_10000;