Re: [PATCH] net: phy: motorcomm: Fix yt8521 Speed issue

From: Andrew Lunn
Date: Fri Jan 10 2025 - 11:50:47 EST


On Fri, Jan 10, 2025 at 05:33:58PM +0800, Xiangqian Zhang wrote:
> yt8521 is 1000Mb/s after connecting to the network cable, but it is
> still 1000Mb/s after unplugging the network cable.

If you look at genphy_read_status() it does:

phydev->master_slave_get = MASTER_SLAVE_CFG_UNSUPPORTED;
phydev->master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
phydev->speed = SPEED_UNKNOWN;
phydev->duplex = DUPLEX_UNKNOWN;
phydev->pause = 0;
phydev->asym_pause = 0;

and then reads the status from the hardware and sets all these. You
might want to make yt8521_read_status() more like
genphy_read_status().

Andrew