[net-next,v4,06/11] net: stmmac: resetup XPCS according to the new interface mode
Commit Message
XPCS creation will map the configuration for the provided interface mode.
Then XPCS will operate according to the interface mode.
When the interface mode changes, XPCS is required to map the configuration
to the new interface mode and destroy the old interface mode where it
is not in use.
Signed-off-by: Choong Yong Liang <yong.liang.choong@linux.intel.com>
---
drivers/net/ethernet/stmicro/stmmac/stmmac.h | 2 +-
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 13 +++++++++++--
drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 7 +++----
3 files changed, 15 insertions(+), 7 deletions(-)
@@ -357,7 +357,7 @@ enum stmmac_state {
int stmmac_mdio_unregister(struct net_device *ndev);
int stmmac_mdio_register(struct net_device *ndev);
int stmmac_mdio_reset(struct mii_bus *mii);
-int stmmac_xpcs_setup(struct mii_bus *mii);
+int stmmac_xpcs_setup(struct mii_bus *mii, phy_interface_t interface);
void stmmac_set_ethtool_ops(struct net_device *netdev);
int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
@@ -941,8 +941,17 @@ static struct phylink_pcs *stmmac_mac_select_pcs(struct phylink_config *config,
{
struct stmmac_priv *priv = netdev_priv(to_net_dev(config->dev));
- if (priv->hw->xpcs)
+ if (priv->hw->xpcs) {
+ if (interface != PHY_INTERFACE_MODE_NA &&
+ interface != priv->plat->phy_interface) {
+ /* When there are major changes, we reconfigure
+ * the setup for xpcs according to the interface.
+ */
+ xpcs_destroy(priv->hw->xpcs);
+ stmmac_xpcs_setup(priv->mii, interface);
+ }
return &priv->hw->xpcs->pcs;
+ }
if (priv->hw->lynx_pcs)
return priv->hw->lynx_pcs;
@@ -7737,7 +7746,7 @@ int stmmac_dvr_probe(struct device *device,
priv->plat->speed_mode_2500(ndev, priv->plat->bsp_priv);
if (priv->plat->mdio_bus_data && priv->plat->mdio_bus_data->has_xpcs) {
- ret = stmmac_xpcs_setup(priv->mii);
+ ret = stmmac_xpcs_setup(priv->mii, priv->plat->phy_interface);
if (ret)
goto error_xpcs_setup;
}
@@ -495,19 +495,18 @@ int stmmac_mdio_reset(struct mii_bus *bus)
return 0;
}
-int stmmac_xpcs_setup(struct mii_bus *bus)
+int stmmac_xpcs_setup(struct mii_bus *bus, phy_interface_t interface)
{
struct net_device *ndev = bus->priv;
struct stmmac_priv *priv;
struct dw_xpcs *xpcs;
- int mode, addr;
+ int addr;
priv = netdev_priv(ndev);
- mode = priv->plat->phy_interface;
/* Try to probe the XPCS by scanning all addresses. */
for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
- xpcs = xpcs_create_mdiodev(bus, addr, mode);
+ xpcs = xpcs_create_mdiodev(bus, addr, interface);
if (IS_ERR(xpcs))
continue;