mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
phy/micrel: KSZ8031RNL RMII clock reconfiguration bug
Bug: Unable to send and receive Ethernet packets with Micrel PHY. Affected devices: KSZ8031RNL (commercial temp) KSZ8031RNLI (industrial temp) Description: PHY device is correctly detected during probe. PHY power-up default is 25MHz crystal clock input and output 50MHz RMII clock to MAC. Reconfiguration of PHY to input 50MHz RMII clock from MAC causes PHY to become unresponsive if clock source is changed after Operation Mode Strap Override (OMSO) register setup. Cause: Long lead times on parts where clock setup match circuit design forces the usage of similar parts with wrong default setup. Solution: Swapped KSZ8031 register setup and added phy_write return code validation. Tested with Freescale i.MX28 Fast Ethernet Controler (fec). Signed-off-by: Bruno Thomsen <bth@kamstrup.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
01d2d484e4
commit
b838b4aced
@ -198,8 +198,10 @@ static int ksz8021_config_init(struct phy_device *phydev)
|
||||
if (rc)
|
||||
dev_err(&phydev->dev, "failed to set led mode\n");
|
||||
|
||||
phy_write(phydev, MII_KSZPHY_OMSO, val);
|
||||
rc = ksz_config_flags(phydev);
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
rc = phy_write(phydev, MII_KSZPHY_OMSO, val);
|
||||
return rc < 0 ? rc : 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user