DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] cxgbe: report 100G link speed capability for Chelsio T6 adapters
@ 2017-06-22  8:41 Martin Weiser
  0 siblings, 0 replies; only message in thread
From: Martin Weiser @ 2017-06-22  8:41 UTC (permalink / raw)
  To: rahul.lakkireddy; +Cc: dev, Martin Weiser

These adapters support 100G link speed but the speed_capa bitmask in the
device info did not reflect that.

Signed-off-by: Martin Weiser <martin.weiser@allegro-packets.com>
---
 drivers/net/cxgbe/cxgbe_ethdev.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/net/cxgbe/cxgbe_ethdev.c b/drivers/net/cxgbe/cxgbe_ethdev.c
index b622d25..4981be4 100644
--- a/drivers/net/cxgbe/cxgbe_ethdev.c
+++ b/drivers/net/cxgbe/cxgbe_ethdev.c
@@ -175,7 +175,11 @@ static void cxgbe_dev_info_get(struct rte_eth_dev *eth_dev,
 
 	device_info->rx_desc_lim = cxgbe_desc_lim;
 	device_info->tx_desc_lim = cxgbe_desc_lim;
-	device_info->speed_capa = ETH_LINK_SPEED_10G | ETH_LINK_SPEED_40G;
+	if (CHELSIO_CHIP_VERSION(adapter->params.chip) == CHELSIO_T6) {
+		device_info->speed_capa = ETH_LINK_SPEED_10G | ETH_LINK_SPEED_40G | ETH_LINK_SPEED_100G;
+	} else {
+		device_info->speed_capa = ETH_LINK_SPEED_10G | ETH_LINK_SPEED_40G;
+	}
 }
 
 static void cxgbe_dev_promiscuous_enable(struct rte_eth_dev *eth_dev)
-- 
2.7.4

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-22  8:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22  8:41 [dpdk-dev] [PATCH] cxgbe: report 100G link speed capability for Chelsio T6 adapters Martin Weiser

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).