From: Marek Vasut Date: Sat, 4 Apr 2020 13:01:22 +0000 (+0200) Subject: net: sh_eth: Init the hardware before PHY access X-Git-Tag: v2020.10~304^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b13da11255a01475d41bdc5d367d55ed3656bae8;p=platform%2Fkernel%2Fu-boot.git net: sh_eth: Init the hardware before PHY access To access the PHY, the MAC registers must be initialized. Call the init function in probe() to make it so, otherwise the PHY ID readout returns all zeroes. Signed-off-by: Marek Vasut Cc: Joe Hershberger Cc: Nobuhiro Iwamatsu --- diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 183e8e3..f8e5d05 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c @@ -859,6 +859,10 @@ static int sh_ether_probe(struct udevice *udev) goto err_mdio_register; #endif + ret = sh_eth_init_common(eth, pdata->enetaddr); + if (ret) + goto err_phy_config; + ret = sh_eth_phy_config(udev); if (ret) { printf(SHETHER_NAME ": phy config timeout\n");