]> git.dujemihanovic.xyz Git - linux.git/commitdiff
net: renesas: rswitch: Add phy_power_{on,off}() calling
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Wed, 1 Feb 2023 13:14:53 +0000 (22:14 +0900)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Feb 2023 09:19:40 +0000 (09:19 +0000)
Some Ethernet PHYs (like marvell10g) will decide the host interface
mode by the media-side speed. So, the rswitch driver needs to
initialize one of the Ethernet SERDES (r8a779f0-eth-serdes) ports
after linked the Ethernet PHY up. The r8a779f0-eth-serdes driver has
.init() for initializing all ports and .power_on() for initializing
each port. So, add phy_power_{on,off} calling for it.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/renesas/rswitch.c

index f8b3a81c044793c4f4298966cc49bc52da17ba7d..f1a0dd1098f96d66c0819814775566eeab558ed7 100644 (file)
@@ -1146,6 +1146,11 @@ static void rswitch_adjust_link(struct net_device *ndev)
        /* Current hardware has a restriction not to change speed at runtime */
        if (phydev->link != rdev->etha->link) {
                phy_print_status(phydev);
+               if (phydev->link)
+                       phy_power_on(rdev->serdes);
+               else
+                       phy_power_off(rdev->serdes);
+
                rdev->etha->link = phydev->link;
        }
 }