net: phy: Read EEE abilities when using .features
authorAndrew Lunn <andrew@lunn.ch>
Fri, 17 Feb 2023 03:15:20 +0000 (04:15 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 20 Feb 2023 10:06:49 +0000 (10:06 +0000)
A PHY driver can use a static integer value to indicate what link mode
features it supports, i.e, its abilities.. This is the old way, but
useful when dynamically determining the devices features does not
work, e.g. support of fibre.

EEE support has been moved into phydev->supported_eee. This needs to
be set otherwise the code assumes EEE is not supported. It is normally
set as part of reading the devices abilities. However if a static
integer value was used, the dynamic reading of the abilities is not
performed. Add a call to genphy_c45_read_eee_abilities() to read the
EEE abilities.

Fixes: 8b68710a3121 ("net: phy: start using genphy_c45_ethtool_get/set_eee()")
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy_device.c

index 8d927c5e3bf8de76ee7229ae45b342934ab5baa7..71becceb8764c004ccfc91d49854b15b912ef23b 100644 (file)
@@ -3113,8 +3113,10 @@ static int phy_probe(struct device *dev)
         * a controller will attach, and may modify one
         * or both of these values
         */
-       if (phydrv->features)
+       if (phydrv->features) {
                linkmode_copy(phydev->supported, phydrv->features);
+               genphy_c45_read_eee_abilities(phydev);
+       }
        else if (phydrv->get_features)
                err = phydrv->get_features(phydev);
        else if (phydev->is_c45)