Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: bcmgenet: Indicate MAC is in charge of PHY PM

Avoid the PHY library call unnecessarily into the suspend/resume functions by
setting phydev->mac_managed_pm to true. The GENET driver essentially does
exactly what mdio_bus_phy_resume() does by calling phy_init_hw() plus
phy_resume().

Fixes: fba863b81604 ("net: phy: make PHY PM ops a no-op if MAC driver manages PHY PM")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20220804173605.1266574-1-f.fainelli@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Florian Fainelli and committed by
Jakub Kicinski
bc3410f2 049d5d98

+3
+3
drivers/net/ethernet/broadcom/genet/bcmmii.c
··· 393 393 if (priv->internal_phy && !GENET_IS_V5(priv)) 394 394 dev->phydev->irq = PHY_MAC_INTERRUPT; 395 395 396 + /* Indicate that the MAC is responsible for PHY PM */ 397 + dev->phydev->mac_managed_pm = true; 398 + 396 399 return 0; 397 400 } 398 401