diff mbox series

[net,v2] net: phy: broadcom: Add power down exit reset state delay

Message ID 20210311045343.3259383-1-f.fainelli@gmail.com
State New
Headers show
Series [net,v2] net: phy: broadcom: Add power down exit reset state delay | expand

Commit Message

Florian Fainelli March 11, 2021, 4:53 a.m. UTC
Per the datasheet, when we clear the power down bit, the PHY remains in
an internal reset state for 40us and then resume normal operation.
Account for that delay to avoid any issues in the future if
genphy_resume() changes.

Fixes: fe26821fa614 ("net: phy: broadcom: Wire suspend/resume for BCM54810")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
Changes in v2:

- make it build by using flseep()

 drivers/net/phy/broadcom.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

patchwork-bot+netdevbpf@kernel.org March 12, 2021, 2:30 a.m. UTC | #1
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Wed, 10 Mar 2021 20:53:42 -0800 you wrote:
> Per the datasheet, when we clear the power down bit, the PHY remains in

> an internal reset state for 40us and then resume normal operation.

> Account for that delay to avoid any issues in the future if

> genphy_resume() changes.

> 

> Fixes: fe26821fa614 ("net: phy: broadcom: Wire suspend/resume for BCM54810")

> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

> 

> [...]


Here is the summary with links:
  - [net,v2] net: phy: broadcom: Add power down exit reset state delay
    https://git.kernel.org/netdev/net/c/7a1468ba0e02

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c
index fa0be591ae79..ad51f1889435 100644
--- a/drivers/net/phy/broadcom.c
+++ b/drivers/net/phy/broadcom.c
@@ -399,6 +399,11 @@  static int bcm54xx_resume(struct phy_device *phydev)
 	if (ret < 0)
 		return ret;
 
+	/* Upon exiting power down, the PHY remains in an internal reset state
+	 * for 40us
+	 */
+	fsleep(40);
+
 	return bcm54xx_config_init(phydev);
 }