From: Shaiq Wani <shaiq.wani@intel.com>
To: dev@dpdk.org, bruce.richardson@intel.com, anatoly.burakov@intel.com
Cc: aman.deep.singh@intel.com
Subject: [PATCH] net/ixgbe: add E610 NIC speed support
Date: Mon, 3 Nov 2025 19:08:04 +0530 [thread overview]
Message-ID: <20251103133804.585506-1-shaiq.wani@intel.com> (raw)
Added a switch case for the E610 NIC adapter to set all supported link
speeds (10M, 100M, 1G, 2.5G, 5G, 10G) in the ixgbe driver.
Previously, E610 was not explicitly handled.
Signed-off-by: Shaiq Wani <shaiq.wani@intel.com>
---
drivers/net/intel/ixgbe/ixgbe_ethdev.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/net/intel/ixgbe/ixgbe_ethdev.c b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
index bfc091c367..c01f53d8ad 100644
--- a/drivers/net/intel/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
@@ -2797,6 +2797,11 @@ ixgbe_dev_start(struct rte_eth_dev *dev)
allowed_speeds = RTE_ETH_LINK_SPEED_10M |
RTE_ETH_LINK_SPEED_100M | RTE_ETH_LINK_SPEED_1G;
break;
+ case ixgbe_mac_E610:
+ allowed_speeds = RTE_ETH_LINK_SPEED_10M | RTE_ETH_LINK_SPEED_100M |
+ RTE_ETH_LINK_SPEED_1G | RTE_ETH_LINK_SPEED_2_5G |
+ RTE_ETH_LINK_SPEED_5G | RTE_ETH_LINK_SPEED_10G;
+ break;
default:
allowed_speeds = RTE_ETH_LINK_SPEED_100M | RTE_ETH_LINK_SPEED_1G |
RTE_ETH_LINK_SPEED_10G;
--
2.34.1
next reply other threads:[~2025-11-03 13:38 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-03 13:38 Shaiq Wani [this message]
2025-11-04 11:42 ` Bruce Richardson
2025-11-04 11:48 ` Bruce Richardson
2025-11-04 15:01 ` [PATCH v2] " Shaiq Wani
2025-11-04 17:41 ` Bruce Richardson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251103133804.585506-1-shaiq.wani@intel.com \
--to=shaiq.wani@intel.com \
--cc=aman.deep.singh@intel.com \
--cc=anatoly.burakov@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).