|
@@ -285,6 +285,48 @@ static int marvell_config_aneg(struct phy_device *phydev)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int m88e1111_config_aneg(struct phy_device *phydev)
|
|
|
|
+{
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ /* The Marvell PHY has an errata which requires
|
|
|
|
+ * that certain registers get written in order
|
|
|
|
+ * to restart autonegotiation
|
|
|
|
+ */
|
|
|
|
+ err = phy_write(phydev, MII_BMCR, BMCR_RESET);
|
|
|
|
+
|
|
|
|
+ err = marvell_set_polarity(phydev, phydev->mdix);
|
|
|
|
+ if (err < 0)
|
|
|
|
+ return err;
|
|
|
|
+
|
|
|
|
+ err = phy_write(phydev, MII_M1111_PHY_LED_CONTROL,
|
|
|
|
+ MII_M1111_PHY_LED_DIRECT);
|
|
|
|
+ if (err < 0)
|
|
|
|
+ return err;
|
|
|
|
+
|
|
|
|
+ err = genphy_config_aneg(phydev);
|
|
|
|
+ if (err < 0)
|
|
|
|
+ return err;
|
|
|
|
+
|
|
|
|
+ if (phydev->autoneg != AUTONEG_ENABLE) {
|
|
|
|
+ int bmcr;
|
|
|
|
+
|
|
|
|
+ /* A write to speed/duplex bits (that is performed by
|
|
|
|
+ * genphy_config_aneg() call above) must be followed by
|
|
|
|
+ * a software reset. Otherwise, the write has no effect.
|
|
|
|
+ */
|
|
|
|
+ bmcr = phy_read(phydev, MII_BMCR);
|
|
|
|
+ if (bmcr < 0)
|
|
|
|
+ return bmcr;
|
|
|
|
+
|
|
|
|
+ err = phy_write(phydev, MII_BMCR, bmcr | BMCR_RESET);
|
|
|
|
+ if (err < 0)
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
#ifdef CONFIG_OF_MDIO
|
|
#ifdef CONFIG_OF_MDIO
|
|
/*
|
|
/*
|
|
* Set and/or override some configuration registers based on the
|
|
* Set and/or override some configuration registers based on the
|
|
@@ -1175,7 +1217,7 @@ static struct phy_driver marvell_drivers[] = {
|
|
.flags = PHY_HAS_INTERRUPT,
|
|
.flags = PHY_HAS_INTERRUPT,
|
|
.probe = marvell_probe,
|
|
.probe = marvell_probe,
|
|
.config_init = &m88e1111_config_init,
|
|
.config_init = &m88e1111_config_init,
|
|
- .config_aneg = &marvell_config_aneg,
|
|
|
|
|
|
+ .config_aneg = &m88e1111_config_aneg,
|
|
.read_status = &marvell_read_status,
|
|
.read_status = &marvell_read_status,
|
|
.ack_interrupt = &marvell_ack_interrupt,
|
|
.ack_interrupt = &marvell_ack_interrupt,
|
|
.config_intr = &marvell_config_intr,
|
|
.config_intr = &marvell_config_intr,
|