From: Samuel Holland Date: Sun, 28 Jan 2018 05:53:20 +0000 (-0600) Subject: net: sun8i_emac: Fix PHY initialization X-Git-Tag: v2018.05-rc1~93^2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2d53018a0ef268ba73aebe2441f1fd7c65533d78;p=u-boot net: sun8i_emac: Fix PHY initialization The previous code tried to update the PHY parameters without waiting for autonegotiation to complete. This caused wrong values to be written to the EMAC in sun8i_adjust_link(). As a result, any commands that called eth_start() before autonegotiation completed would find the network nonfunctional. Fix this by using the correct function to start up the PHY. Signed-off-by: Samuel Holland Acked-by: Joe Hershberger Reviewed-by: Jagan Teki --- diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c index 3ccc6b0bb6..be43472b1a 100644 --- a/drivers/net/sun8i_emac.c +++ b/drivers/net/sun8i_emac.c @@ -431,7 +431,7 @@ static int _sun8i_emac_eth_init(struct emac_eth_dev *priv, u8 *enetaddr) tx_descs_init(priv); /* PHY Start Up */ - genphy_parse_link(priv->phydev); + phy_startup(priv->phydev); sun8i_adjust_link(priv, priv->phydev);