]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: freescale: ucc_geth: Fix WOL configuration
authorMaxime Chevallier <maxime.chevallier@bootlin.com>
Tue, 3 Dec 2024 12:43:15 +0000 (13:43 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 Dec 2024 13:41:52 +0000 (13:41 +0000)
The get/set_wol ethtool ops rely on querying the PHY for its WoL
capabilities, checking for the presence of a PHY and a PHY interrupts
isn't enough. Address that by cleaning up the WoL configuration
sequence.

Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/ucc_geth.c
drivers/net/ethernet/freescale/ucc_geth.h
drivers/net/ethernet/freescale/ucc_geth_ethtool.c

index cc5f9ca42a780a83f76b40a21060bb92faee3f3b..587bcbc079dae8a3643b3e0f877b28cb19b97348 100644 (file)
@@ -3413,11 +3413,11 @@ static int ucc_geth_suspend(struct platform_device *ofdev, pm_message_t state)
         */
        ugeth_disable(ugeth, COMM_DIR_RX_AND_TX);
 
-       if (ugeth->wol_en & WAKE_MAGIC) {
+       if (ugeth->wol_en & WAKE_MAGIC && !ugeth->phy_wol_en) {
                setbits32(ugeth->uccf->p_uccm, UCC_GETH_UCCE_MPD);
                setbits32(&ugeth->ug_regs->maccfg2, MACCFG2_MPE);
                ucc_fast_enable(ugeth->uccf, COMM_DIR_RX_AND_TX);
-       } else if (!(ugeth->wol_en & WAKE_PHY)) {
+       } else if (!ugeth->phy_wol_en) {
                phy_stop(ndev->phydev);
        }
 
index c08a56b7c9fe3a9c1a0298b9a04c751b69a39ae2..e08cfc8d8904b7f15375de0ea61146b96dd330cb 100644 (file)
@@ -1217,6 +1217,7 @@ struct ucc_geth_private {
        int oldduplex;
        int oldlink;
        int wol_en;
+       u32 phy_wol_en;
 
        struct device_node *node;
 };
index fb5254d7d1ba37ca0d2b25ec0ea7efa0c61cfdcc..89b323ef814506773fbc2b0c4604c9b04a3310a0 100644 (file)
@@ -346,26 +346,48 @@ static void uec_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
        struct ucc_geth_private *ugeth = netdev_priv(netdev);
        struct phy_device *phydev = netdev->phydev;
 
-       if (phydev && phydev->irq)
-               wol->supported |= WAKE_PHY;
+       wol->supported = 0;
+       wol->wolopts = 0;
+
+       if (phydev)
+               phy_ethtool_get_wol(phydev, wol);
+
        if (qe_alive_during_sleep())
                wol->supported |= WAKE_MAGIC;
 
-       wol->wolopts = ugeth->wol_en;
+       wol->wolopts |= ugeth->wol_en;
 }
 
 static int uec_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
 {
        struct ucc_geth_private *ugeth = netdev_priv(netdev);
        struct phy_device *phydev = netdev->phydev;
+       int ret = 0;
 
-       if (wol->wolopts & ~(WAKE_PHY | WAKE_MAGIC))
-               return -EINVAL;
-       else if (wol->wolopts & WAKE_PHY && (!phydev || !phydev->irq))
+       if (phydev) {
+               ret = phy_ethtool_set_wol(phydev, wol);
+               if (ret == -EOPNOTSUPP) {
+                       ugeth->phy_wol_en = 0;
+               } else if (ret) {
+                       return ret;
+               } else {
+                       ugeth->phy_wol_en = wol->wolopts;
+                       goto out;
+               }
+       }
+
+       /* If the PHY isn't handling the WoL and the MAC is asked to more than
+        * WAKE_MAGIC, error-out
+        */
+       if (!ugeth->phy_wol_en &&
+           wol->wolopts & ~WAKE_MAGIC)
                return -EINVAL;
-       else if (wol->wolopts & WAKE_MAGIC && !qe_alive_during_sleep())
+
+       if (wol->wolopts & WAKE_MAGIC &&
+           !qe_alive_during_sleep())
                return -EINVAL;
 
+out:
        ugeth->wol_en = wol->wolopts;
        device_set_wakeup_enable(&netdev->dev, ugeth->wol_en);