]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: phy: fix phy link up when limiting speed via device tree
authorMugunthan V N <mugunthanvnm@ti.com>
Thu, 25 Jun 2015 16:51:02 +0000 (22:21 +0530)
committerLuis Henriques <luis.henriques@canonical.com>
Mon, 6 Jul 2015 09:39:16 +0000 (10:39 +0100)
commit eb686231fce3770299760f24fdcf5ad041f44153 upstream.

When limiting phy link speed using "max-speed" to 100mbps or less on a
giga bit phy, phy never completes auto negotiation and phy state
machine is held in PHY_AN. Fixing this issue by comparing the giga
bit advertise though phydev->supported doesn't have it but phy has
BMSR_ESTATEN set. So that auto negotiation is restarted as old and
new advertise are different and link comes up fine.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/net/phy/phy_device.c

index 22c57be4dfa0544199a516a00bbe16bf291c9b26..5a501bca344fb88f0c45dbf1f0318eeff5b091a0 100644 (file)
@@ -780,10 +780,11 @@ static int genphy_config_advert(struct phy_device *phydev)
        if (phydev->supported & (SUPPORTED_1000baseT_Half |
                                 SUPPORTED_1000baseT_Full)) {
                adv |= ethtool_adv_to_mii_ctrl1000_t(advertise);
-               if (adv != oldadv)
-                       changed = 1;
        }
 
+       if (adv != oldadv)
+               changed = 1;
+
        err = phy_write(phydev, MII_CTRL1000, adv);
        if (err < 0)
                return err;