diff mbox series

[v3/RFT,2/2] net: phy: assert the phy reset during suspended if phy is not attached

Message ID 1547723109-28792-3-git-send-email-yoshihiro.shimoda.uh@renesas.com (mailing list archive)
State Under Review
Delegated to: Geert Uytterhoeven
Headers show
Series net: phy: assert the phy reset during suspended if phy is not attached | expand

Commit Message

Yoshihiro Shimoda Jan. 17, 2019, 11:05 a.m. UTC
This phy_device driver deasserts the reset signal in the following
functions (expect error path):
 - phy_device_register()
 - phy_probe()
 - phy_init_hw() that is called by phy_attach_direct()

And, the phy_device asserts the reset signal in the following
functions (expect error path):
 - phy_device_remove()
 - phy_remove()
 - phy_detach()

So, if the following conditions happen, the reset signal keeps to be
deasserted during suspended:
 - The phy driver is probed
 - But a net device doesn't open
 - And then the system enters suspend

So, this patch adds to assert the reset signal in phy_suspend() if
a phy is not attached. Otherwise, R-Car Gen3 Salvator-XS board could
not link up correctly if we do the following method:

 1) Kernel boots by using initramfs.
 2) Kernel enters the suspend.
 3) Kernel returns from suspend.
 4) ifconfig eth0 up
 --> Then, since edge signal of the reset doesn't happen,
     it cannot link up.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
 drivers/net/phy/phy_device.c | 8 ++++++++
 1 file changed, 8 insertions(+)
diff mbox series

Patch

diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index d86356f..09ab62a 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -1346,6 +1346,10 @@  int phy_suspend(struct phy_device *phydev)
 	if (ret)
 		return ret;
 
+	/* Assert the reset signal if the phydev is not attached */
+	if (!phydev->attached_dev)
+		phy_device_reset(phydev, 1);
+
 	phydev->suspended = true;
 
 	return ret;
@@ -1359,6 +1363,10 @@  int __phy_resume(struct phy_device *phydev)
 
 	WARN_ON(!mutex_is_locked(&phydev->lock));
 
+	/* Deassert the reset signal if the phydev is not attached */
+	if (!phydev->attached_dev)
+		phy_device_reset(phydev, 0);
+
 	if (phydev->drv && phydrv->resume)
 		ret = phydrv->resume(phydev);