Skip to content

Commit

Permalink
net: phy: realtek: clear 1000Base-T link partner advertisement
Browse files Browse the repository at this point in the history
Clear 1000Base-T link partner advertisement bits in Clause-45
read_status() function in case auto-negotiation is disabled or has not
been completed.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Link: https://patch.msgid.link/9dc9b47b2d675708afef3ad366bfd78eb584d958.1728565530.git.daniel@makrotopia.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
  • Loading branch information
Daniel Golle authored and Paolo Abeni committed Oct 17, 2024
1 parent 68d5cd0 commit 5cb409b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/net/phy/realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,10 @@ static int rtl822x_c45_read_status(struct phy_device *phydev)
if (ret < 0)
return ret;

if (phydev->autoneg == AUTONEG_DISABLE ||
!genphy_c45_aneg_done(phydev))
mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising, 0);

/* Vendor register as C45 has no standardized support for 1000BaseT */
if (phydev->autoneg == AUTONEG_ENABLE) {
val = phy_read_mmd(phydev, MDIO_MMD_VEND2,
Expand Down

0 comments on commit 5cb409b

Please sign in to comment.