From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id C821FC5DF7D for ; Fri, 21 Aug 2026 05:57:22 +0000 (UTC) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F008E406BA; Fri, 21 Aug 2026 07:56:58 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by mails.dpdk.org (Postfix) with ESMTP id AE1F540658 for ; Fri, 21 Aug 2026 07:56:49 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 91B931A024B; Fri, 21 Aug 2026 07:56:49 +0200 (CEST) Received: from aprdc01srsp001v.ap-rdc01.nxp.com (aprdc01srsp001v.ap-rdc01.nxp.com [165.114.16.16]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 598251A0251; Fri, 21 Aug 2026 07:56:49 +0200 (CEST) Received: from lsv03457.swis.in-blr01.nxp.com (lsv03457.swis.in-blr01.nxp.com [92.120.147.250]) by aprdc01srsp001v.ap-rdc01.nxp.com (Postfix) with ESMTP id 870BF18000BF; Fri, 21 Aug 2026 13:56:48 +0800 (+08) From: Gagandeep Singh To: dev@dpdk.org Cc: hemant.agrawal@nxp.com, Gagandeep Singh Subject: [PATCH v12 05/15] net/enetc: add VF supported features file Date: Fri, 21 Aug 2026 11:26:33 +0530 Message-Id: <20260821055643.1359277-6-g.singh@nxp.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20260821055643.1359277-1-g.singh@nxp.com> References: <20260819053415.645865-1-g.singh@nxp.com> <20260821055643.1359277-1-g.singh@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The upcoming VF-specific feature work needs its own supported-features documentation, separate from the PF (enetc4). Add a dedicated enetc4_vf.ini for the net_enetc4_vf PMD so that VF-only features can be tracked independently, and reference it in MAINTAINERS. Signed-off-by: Gagandeep Singh Acked-by: Hemant Agrawal --- MAINTAINERS | 1 + doc/guides/nics/features/enetc4_vf.ini | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 doc/guides/nics/features/enetc4_vf.ini diff --git a/MAINTAINERS b/MAINTAINERS index e99a65d197..8f64a7b3ed 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -995,6 +995,7 @@ F: doc/guides/nics/enetc.rst F: doc/guides/nics/enetc4.rst F: doc/guides/nics/features/enetc.ini F: doc/guides/nics/features/enetc4.ini +F: doc/guides/nics/features/enetc4_vf.ini NXP enetfec - EXPERIMENTAL M: Apeksha Gupta diff --git a/doc/guides/nics/features/enetc4_vf.ini b/doc/guides/nics/features/enetc4_vf.ini new file mode 100644 index 0000000000..9107c8ede5 --- /dev/null +++ b/doc/guides/nics/features/enetc4_vf.ini @@ -0,0 +1,25 @@ +; +; Supported features of the 'enetc4_vf' network poll mode driver. +; +; Refer to default.ini for the full list of available PMD features. +; +[Features] +Link status event = Y +Speed capabilities = Y +Link status = Y +LRO = Y +TSO = Y +Promiscuous mode = Y +Allmulticast mode = Y +VLAN filter = Y +RSS hash = Y +Packet type parsing = Y +Basic stats = Y +L3 checksum offload = Y +L4 checksum offload = Y +CRC offload = Y +Queue start/stop = Y +Scattered Rx = Y +Linux = Y +ARMv8 = Y +Usage doc = Y -- 2.25.1