DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [DPDK] net/igc: fix speed configuration
@ 2021-05-12  8:28 Alvin Zhang
       [not found] ` <DM6PR11MB3898E214158AA1508ACAB5ED9F529@DM6PR11MB3898.namprd11.prod.outlook.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Alvin Zhang @ 2021-05-12  8:28 UTC (permalink / raw)
  To: haiyue.wang; +Cc: dev, Alvin Zhang, stable

Fixed speed mode is not supported currently, this patch
removes configurations for this mode and adds fault handling
for ETH_LINK_SPEED_FIXED.

Fixes: 4f09bc55ac3d ("net/igc: implement device base operations")
Cc: stable@dpdk.org

Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com>
---
 drivers/net/igc/igc_ethdev.c | 26 ++++++++++----------------
 1 file changed, 10 insertions(+), 16 deletions(-)

diff --git a/drivers/net/igc/igc_ethdev.c b/drivers/net/igc/igc_ethdev.c
index b1c58fb..224a095 100644
--- a/drivers/net/igc/igc_ethdev.c
+++ b/drivers/net/igc/igc_ethdev.c
@@ -989,15 +989,20 @@ static int eth_igc_vlan_tpid_set(struct rte_eth_dev *dev,
 		hw->mac.autoneg = 1;
 	} else {
 		int num_speeds = 0;
-		bool autoneg = (*speeds & ETH_LINK_SPEED_FIXED) == 0;
 
-		/* Reset */
+		if (*speeds & ETH_LINK_SPEED_FIXED) {
+			PMD_DRV_LOG(ERR,
+				    "Force speed mode currently not supported");
+			igc_dev_clear_queues(dev);
+			return -EINVAL;
+		}
+
 		hw->phy.autoneg_advertised = 0;
+		hw->mac.autoneg = 1;
 
 		if (*speeds & ~(ETH_LINK_SPEED_10M_HD | ETH_LINK_SPEED_10M |
 				ETH_LINK_SPEED_100M_HD | ETH_LINK_SPEED_100M |
-				ETH_LINK_SPEED_1G | ETH_LINK_SPEED_2_5G |
-				ETH_LINK_SPEED_FIXED)) {
+				ETH_LINK_SPEED_1G | ETH_LINK_SPEED_2_5G)) {
 			num_speeds = -1;
 			goto error_invalid_config;
 		}
@@ -1025,19 +1030,8 @@ static int eth_igc_vlan_tpid_set(struct rte_eth_dev *dev,
 			hw->phy.autoneg_advertised |= ADVERTISE_2500_FULL;
 			num_speeds++;
 		}
-		if (num_speeds == 0 || (!autoneg && num_speeds > 1))
+		if (num_speeds == 0)
 			goto error_invalid_config;
-
-		/* Set/reset the mac.autoneg based on the link speed,
-		 * fixed or not
-		 */
-		if (!autoneg) {
-			hw->mac.autoneg = 0;
-			hw->mac.forced_speed_duplex =
-					hw->phy.autoneg_advertised;
-		} else {
-			hw->mac.autoneg = 1;
-		}
 	}
 
 	igc_setup_link(hw);
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [DPDK] net/igc: fix speed configuration
       [not found] ` <DM6PR11MB3898E214158AA1508ACAB5ED9F529@DM6PR11MB3898.namprd11.prod.outlook.com>
@ 2021-05-12  9:20   ` Guo, Junfeng
  2021-05-12 10:36     ` Zhang, Qi Z
  0 siblings, 1 reply; 3+ messages in thread
From: Guo, Junfeng @ 2021-05-12  9:20 UTC (permalink / raw)
  To: dev; +Cc: Zhang, AlvinX, Wang, Haiyue



> -----Original Message-----
> From: Zhang, AlvinX <alvinx.zhang@intel.com>
> Sent: Wednesday, May 12, 2021 17:16
> To: Guo, Junfeng <junfeng.guo@intel.com>
> Subject: [DPDK] net/igc: fix speed configuration
> 
> Fixed speed mode is not supported currently, this patch removes
> configurations for this mode and adds fault handling for
> ETH_LINK_SPEED_FIXED.
> 
> Fixes: 4f09bc55ac3d ("net/igc: implement device base operations")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com>

Acked-by: Junfeng Guo < junfeng.guo@intel.com>

Regards,
Junfeng Guo

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [DPDK] net/igc: fix speed configuration
  2021-05-12  9:20   ` Guo, Junfeng
@ 2021-05-12 10:36     ` Zhang, Qi Z
  0 siblings, 0 replies; 3+ messages in thread
From: Zhang, Qi Z @ 2021-05-12 10:36 UTC (permalink / raw)
  To: Guo, Junfeng, dev; +Cc: Zhang, AlvinX, Wang, Haiyue



> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Guo, Junfeng
> Sent: Wednesday, May 12, 2021 5:20 PM
> To: dev@dpdk.org
> Cc: Zhang, AlvinX <alvinx.zhang@intel.com>; Wang, Haiyue
> <haiyue.wang@intel.com>
> Subject: Re: [dpdk-dev] [DPDK] net/igc: fix speed configuration
> 
> 
> 
> > -----Original Message-----
> > From: Zhang, AlvinX <alvinx.zhang@intel.com>
> > Sent: Wednesday, May 12, 2021 17:16
> > To: Guo, Junfeng <junfeng.guo@intel.com>
> > Subject: [DPDK] net/igc: fix speed configuration
> >
> > Fixed speed mode is not supported currently, this patch removes
> > configurations for this mode and adds fault handling for
> > ETH_LINK_SPEED_FIXED.
> >
> > Fixes: 4f09bc55ac3d ("net/igc: implement device base operations")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com>
> 
> Acked-by: Junfeng Guo < junfeng.guo@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi
> 
> Regards,
> Junfeng Guo

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-12 10:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-12  8:28 [dpdk-dev] [DPDK] net/igc: fix speed configuration Alvin Zhang
     [not found] ` <DM6PR11MB3898E214158AA1508ACAB5ED9F529@DM6PR11MB3898.namprd11.prod.outlook.com>
2021-05-12  9:20   ` Guo, Junfeng
2021-05-12 10:36     ` Zhang, Qi Z

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).