net: phy: marvell10g: Use 2500BASEX when using 2.5GBASET
The Marvell Alaska family of PHYs supports 2.5GBaseT and 5GBaseT modes, as defined in the 802.3bz specification. Upon establishing a 2.5GBASET link, the PHY will reconfigure it's MII interface to 2500BASEX. At 5G, the PHY will reconfigure it's interface to 5GBASE-R, but this mode isn't supported by any MAC for now. This was tested with : - The 88X3310, which is on the MacchiatoBin - The 88E2010, an Alaska PHY that has no fiber interfaces, and is limited to 5G maximum speed. Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0feaccd595
commit
e555e5b1b9
@ -235,6 +235,7 @@ static int mv3310_config_init(struct phy_device *phydev)
|
|||||||
{
|
{
|
||||||
/* Check that the PHY interface type is compatible */
|
/* Check that the PHY interface type is compatible */
|
||||||
if (phydev->interface != PHY_INTERFACE_MODE_SGMII &&
|
if (phydev->interface != PHY_INTERFACE_MODE_SGMII &&
|
||||||
|
phydev->interface != PHY_INTERFACE_MODE_2500BASEX &&
|
||||||
phydev->interface != PHY_INTERFACE_MODE_XAUI &&
|
phydev->interface != PHY_INTERFACE_MODE_XAUI &&
|
||||||
phydev->interface != PHY_INTERFACE_MODE_RXAUI &&
|
phydev->interface != PHY_INTERFACE_MODE_RXAUI &&
|
||||||
phydev->interface != PHY_INTERFACE_MODE_10GKR)
|
phydev->interface != PHY_INTERFACE_MODE_10GKR)
|
||||||
@ -313,18 +314,29 @@ static int mv3310_aneg_done(struct phy_device *phydev)
|
|||||||
static void mv3310_update_interface(struct phy_device *phydev)
|
static void mv3310_update_interface(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
if ((phydev->interface == PHY_INTERFACE_MODE_SGMII ||
|
if ((phydev->interface == PHY_INTERFACE_MODE_SGMII ||
|
||||||
|
phydev->interface == PHY_INTERFACE_MODE_2500BASEX ||
|
||||||
phydev->interface == PHY_INTERFACE_MODE_10GKR) && phydev->link) {
|
phydev->interface == PHY_INTERFACE_MODE_10GKR) && phydev->link) {
|
||||||
/* The PHY automatically switches its serdes interface (and
|
/* The PHY automatically switches its serdes interface (and
|
||||||
* active PHYXS instance) between Cisco SGMII and 10GBase-KR
|
* active PHYXS instance) between Cisco SGMII, 10GBase-KR and
|
||||||
* modes according to the speed. Florian suggests setting
|
* 2500BaseX modes according to the speed. Florian suggests
|
||||||
* phydev->interface to communicate this to the MAC. Only do
|
* setting phydev->interface to communicate this to the MAC.
|
||||||
* this if we are already in either SGMII or 10GBase-KR mode.
|
* Only do this if we are already in one of the above modes.
|
||||||
*/
|
*/
|
||||||
if (phydev->speed == SPEED_10000)
|
switch (phydev->speed) {
|
||||||
|
case SPEED_10000:
|
||||||
phydev->interface = PHY_INTERFACE_MODE_10GKR;
|
phydev->interface = PHY_INTERFACE_MODE_10GKR;
|
||||||
else if (phydev->speed >= SPEED_10 &&
|
break;
|
||||||
phydev->speed < SPEED_10000)
|
case SPEED_2500:
|
||||||
|
phydev->interface = PHY_INTERFACE_MODE_2500BASEX;
|
||||||
|
break;
|
||||||
|
case SPEED_1000:
|
||||||
|
case SPEED_100:
|
||||||
|
case SPEED_10:
|
||||||
phydev->interface = PHY_INTERFACE_MODE_SGMII;
|
phydev->interface = PHY_INTERFACE_MODE_SGMII;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user