From: Zaiyu Wang <zaiyuwang@trustnetic.com>
To: dev@dpdk.org
Cc: Zaiyu Wang <zaiyuwang@trustnetic.com>
Subject: [PATCH 00/15] net/ngbe: add VF driver support
Date: Thu, 9 Jan 2025 12:02:10 +0800 [thread overview]
Message-ID: <20250109040227.1016-1-zaiyuwang@trustnetic.com> (raw)
This patch adds support to VF device for ngbe PMD
Zaiyu Wang (15):
net/ngbe: add ethdev probe and remove for VF device
net/ngbe: add support for PF-VF mailbox interface
net/ngbe: add hardware configuration code for VF device
net/ngbe: add promiscuous and allmulticast ops for VF device
net/ngbe: add set MTU ops for VF device
net/ngbe: add add/remove/set mac addr ops for VF device
net/ngbe: add datapath init code for VF device
net/ngbe: add vlan related ops for VF device
net/ngbe: add interrupt support for VF device
net/ngbe: add link update ops for VF device
net/ngbe: add stats and xstats ops for VF device
net/ngbe: add start/stop/reset/close ops for VF device
net/ngbe: add multicast MAC filter ops for VF device
net/ngbe: add dump registers ops for VF device
net/ngbe: add some ops which PF has implemented
doc/guides/nics/features/ngbe_vf.ini | 38 +
drivers/net/ngbe/base/meson.build | 1 +
drivers/net/ngbe/base/ngbe.h | 1 +
drivers/net/ngbe/base/ngbe_hw.c | 4 +
drivers/net/ngbe/base/ngbe_mbx.c | 338 +++++++
drivers/net/ngbe/base/ngbe_mbx.h | 31 +
drivers/net/ngbe/base/ngbe_type.h | 15 +
drivers/net/ngbe/base/ngbe_vf.c | 669 +++++++++++++
drivers/net/ngbe/base/ngbe_vf.h | 68 ++
drivers/net/ngbe/meson.build | 1 +
drivers/net/ngbe/ngbe_ethdev.h | 6 +
drivers/net/ngbe/ngbe_ethdev_vf.c | 1351 ++++++++++++++++++++++++++
drivers/net/ngbe/ngbe_rxtx.c | 210 ++++
13 files changed, 2733 insertions(+)
create mode 100644 doc/guides/nics/features/ngbe_vf.ini
create mode 100644 drivers/net/ngbe/base/ngbe_vf.c
create mode 100644 drivers/net/ngbe/base/ngbe_vf.h
create mode 100644 drivers/net/ngbe/ngbe_ethdev_vf.c
--
2.21.0.windows.1
next reply other threads:[~2025-01-09 4:03 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 4:02 Zaiyu Wang [this message]
2025-01-09 4:02 ` [PATCH 01/15] net/ngbe: add ethdev probe and remove for VF device Zaiyu Wang
2025-01-09 4:02 ` [PATCH 02/15] net/ngbe: add support for PF-VF mailbox interface Zaiyu Wang
2025-01-09 4:02 ` [PATCH 03/15] net/ngbe: add hardware configuration code for VF device Zaiyu Wang
2025-01-09 4:02 ` [PATCH 04/15] net/ngbe: add promiscuous and allmulticast ops " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 05/15] net/ngbe: add set MTU " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 06/15] net/ngbe: add add/remove/set mac addr " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 07/15] net/ngbe: add datapath init code " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 08/15] net/ngbe: add vlan related ops " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 09/15] net/ngbe: add interrupt support " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 10/15] net/ngbe: add link update ops " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 11/15] net/ngbe: add stats and xstats " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 12/15] net/ngbe: add start/stop/reset/close " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 13/15] net/ngbe: add multicast MAC filter " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 14/15] net/ngbe: add dump registers " Zaiyu Wang
2025-01-09 4:02 ` [PATCH 15/15] net/ngbe: add some ops which PF has implemented Zaiyu Wang
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=20250109040227.1016-1-zaiyuwang@trustnetic.com \
--to=zaiyuwang@trustnetic.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).