[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1579701573-6609-3-git-send-email-madalin.bucur@oss.nxp.com>
Date: Wed, 22 Jan 2020 15:59:33 +0200
From: Madalin Bucur <madalin.bucur@....nxp.com>
To: davem@...emloft.net
Cc: andrew@...n.ch, f.fainelli@...il.com, hkallweit1@...il.com,
netdev@...r.kernel.org, ykaukab@...e.de,
Madalin Bucur <madalin.bucur@....nxp.com>
Subject: [PATCH net-next 2/2] dpaa_eth: support all modes with rate adapting PHYs
Stop removing modes that are not supported on the system interface
when the connected PHY is capable of rate adaptation. This addresses
an issue with the LS1046ARDB board 10G interface no longer working
with an 1G link partner after autonegotiation support was added
for the Aquantia PHY on board in
commit 09c4c57f7bc4 ("net: phy: aquantia: add support for auto-negotiation configuration")
As it only worked in other modes besides 10G because the PHY
was not configured by its driver to remove them, this is not
really a bug fix but more of a feature add.
Reported-by: Mian Yousaf Kaukab <ykaukab@...e.de>
Signed-off-by: Madalin Bucur <madalin.bucur@....nxp.com>
---
drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
index a301f0095223..d3eb235450e5 100644
--- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
+++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
@@ -2471,9 +2471,13 @@ static int dpaa_phy_init(struct net_device *net_dev)
return -ENODEV;
}
- /* Remove any features not supported by the controller */
- ethtool_convert_legacy_u32_to_link_mode(mask, mac_dev->if_support);
- linkmode_and(phy_dev->supported, phy_dev->supported, mask);
+ if (mac_dev->phy_if != PHY_INTERFACE_MODE_XGMII ||
+ !phy_dev->rate_adaptation) {
+ /* Remove any features not supported by the controller */
+ ethtool_convert_legacy_u32_to_link_mode(mask,
+ mac_dev->if_support);
+ linkmode_and(phy_dev->supported, phy_dev->supported, mask);
+ }
phy_support_asym_pause(phy_dev);
--
2.1.0
Powered by blists - more mailing lists