Commit 4381ffdf authored by Lendacky, Thomas's avatar Lendacky, Thomas Committed by Greg Kroah-Hartman

amd-xgbe: Stop the PHY before releasing interrupts

[ Upstream commit 402168b4 ]

Some configurations require the use of the hardware's MDIO support to
communicate with external PHYs. The MDIO commands indicate completion
through the device interrupt. When bringing down the device the interrupts
were released before stopping the external PHY, resulting in MDIO command
timeouts. Move the stopping of the PHY to before the releasing of the
interrupts.
Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7558c56c
...@@ -1131,12 +1131,12 @@ static void xgbe_stop(struct xgbe_prv_data *pdata) ...@@ -1131,12 +1131,12 @@ static void xgbe_stop(struct xgbe_prv_data *pdata)
hw_if->disable_tx(pdata); hw_if->disable_tx(pdata);
hw_if->disable_rx(pdata); hw_if->disable_rx(pdata);
phy_if->phy_stop(pdata);
xgbe_free_irqs(pdata); xgbe_free_irqs(pdata);
xgbe_napi_disable(pdata, 1); xgbe_napi_disable(pdata, 1);
phy_if->phy_stop(pdata);
hw_if->exit(pdata); hw_if->exit(pdata);
channel = pdata->channel; channel = pdata->channel;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment