DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2] cxgbe: report 100G link speed capability for Chelsio T6 adapters
@ 2017-06-22  8:57 Martin Weiser
  2017-06-22  9:35 ` Van Haaren, Harry
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Weiser @ 2017-06-22  8:57 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..b0d5ed7 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] 3+ messages in thread

end of thread, other threads:[~2017-06-22  9:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22  8:57 [dpdk-dev] [PATCH v2] cxgbe: report 100G link speed capability for Chelsio T6 adapters Martin Weiser
2017-06-22  9:35 ` Van Haaren, Harry
2017-06-22  9:59   ` 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).