// SPDX-License-Identifier: GPL-2.0 // Broadcom BCM84881 NBASE-T PHY driver, as found on a SFP+ module. // Copyright (C) 2019 Russell King, Deep Blue Solutions Ltd. // // Like the Marvell 88x3310, the Broadcom 84881 changes its host-side // interface according to the operating speed between 10GBASE-R, // 2500BASE-X and SGMII (but unlike the 88x3310, without the control // word). // // This driver only supports those aspects of the PHY that I'm able to // observe and test with the SFP+ module, which is an incomplete subset // of what this PHY is able to support. For example, I only assume it // supports a single lane Serdes connection, but it may be that the PHY // is able to support more than that. #include <linux/delay.h> #include <linux/module.h> #include <linux/phy.h>
enum {
MDIO_AN_C22 = 0xffe0,
};
staticint bcm84881_wait_init(struct phy_device *phydev)
{ int val;
switch (phydev->interface) { case PHY_INTERFACE_MODE_SGMII: case PHY_INTERFACE_MODE_2500BASEX: case PHY_INTERFACE_MODE_10GBASER: break; default: return -ENODEV;
}
return 0;
}
staticint bcm84881_probe(struct phy_device *phydev)
{ /* This driver requires PMAPMD and AN blocks */ const u32 mmd_mask = MDIO_DEVS_PMAPMD | MDIO_DEVS_AN;
if (!phydev->is_c45 ||
(phydev->c45_ids.devices_in_package & mmd_mask) != mmd_mask) return -ENODEV;
return 0;
}
staticint bcm84881_get_features(struct phy_device *phydev)
{ int ret;
ret = genphy_c45_pma_read_abilities(phydev); if (ret) return ret;
/* Although the PHY sets bit 1.11.8, it does not support 10M modes */
linkmode_clear_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT,
phydev->supported);
linkmode_clear_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT,
phydev->supported);
/* Wait for the PHY to finish initialising, otherwise our * advertisement may be overwritten.
*/
ret = bcm84881_wait_init(phydev); if (ret) return ret;
/* We don't support manual MDI control */
phydev->mdix_ctrl = ETH_TP_MDI_AUTO;
/* disabled autoneg doesn't seem to work with this PHY */ if (phydev->autoneg == AUTONEG_DISABLE) return -EINVAL;
ret = genphy_c45_an_config_aneg(phydev); if (ret < 0) return ret; if (ret > 0)
changed = true;
adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
ret = phy_modify_mmd_changed(phydev, MDIO_MMD_AN,
MDIO_AN_C22 + MII_CTRL1000,
ADVERTISE_1000FULL | ADVERTISE_1000HALF,
adv); if (ret < 0) return ret; if (ret > 0)
changed = true;
if (phydev->autoneg == AUTONEG_ENABLE)
phy_resolve_aneg_linkmode(phydev);
}
if (phydev->autoneg == AUTONEG_DISABLE) { /* disabled autoneg doesn't seem to work, so force the link * down.
*/
phydev->link = 0; return 0;
}
/* Set the host link mode - we set the phy interface mode and * the speed according to this register so that downshift works. * We leave the duplex setting as per the resolution from the * above.
*/
val = phy_read_mmd(phydev, MDIO_MMD_VEND1, 0x4011);
mode = (val & 0x1e) >> 1; if (mode == 1 || mode == 2)
phydev->interface = PHY_INTERFACE_MODE_SGMII; elseif (mode == 3)
phydev->interface = PHY_INTERFACE_MODE_10GBASER; elseif (mode == 4)
phydev->interface = PHY_INTERFACE_MODE_2500BASEX; switch (mode & 7) { case 1:
phydev->speed = SPEED_100; break; case 2:
phydev->speed = SPEED_1000; break; case 3:
phydev->speed = SPEED_10000; break; case 4:
phydev->speed = SPEED_2500; break; case 5:
phydev->speed = SPEED_5000; break;
}
return genphy_c45_read_mdix(phydev);
}
/* The Broadcom BCM84881 in the Methode DM7052 is unable to provide a SGMII * or 802.3z control word, so inband will not work.
*/ staticunsignedint bcm84881_inband_caps(struct phy_device *phydev,
phy_interface_t interface)
{ return LINK_INBAND_DISABLE;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.