From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A853346E0A; Sat, 30 Aug 2025 14:46:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6503140E41; Sat, 30 Aug 2025 14:45:08 +0200 (CEST) Received: from mail-m16.vip.163.com (mail-m16.vip.163.com [1.95.21.3]) by mails.dpdk.org (Postfix) with ESMTP id AA61840DCF for ; Sat, 30 Aug 2025 14:45:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=vip.163.com; s=s110527; h=From:To:Subject:Date:Message-ID: MIME-Version; bh=gfPesTjPzJUyFDZCoglUIaW0EF6NLxSf4MKGbs3x2J8=; b=jStw00nU5Md2AXg6OCz9Y2plU8Wi7/AKRNRpFbOqLikc4Xf4A2oVsnAsB4reT/ rvVxqNFm8pb9AZKyeeHKnNZZ6DedV0xzP/li5qKx7wwSXWY0RKl98LyPM29XH8tk y+bdpaoGgj/VdrXTOYGLvpa0EVx55f0VHIucwjGBelKS4= Received: from localhost.localdomain (unknown [114.116.198.59]) by gzsmtp2 (Coremail) with SMTP id As8vCgDHz+YN8rJogy_MAg--.2603S21; Sat, 30 Aug 2025 20:44:59 +0800 (CST) From: Feifei Wang To: dev@dpdk.org Cc: Yi Chen , Xin Wang , Feifei Wang Subject: [V6 17/17] drivers/net: add hinic3 PMD build and doc files Date: Sat, 30 Aug 2025 20:43:21 +0800 Message-ID: <20250830124332.5351-18-wff_light@vip.163.com> X-Mailer: git-send-email 2.47.0.windows.2 In-Reply-To: <20250830124332.5351-1-wff_light@vip.163.com> References: <20250418090621.9638-1-wff_light@vip.163.com> <20250830124332.5351-1-wff_light@vip.163.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CM-TRANSID: As8vCgDHz+YN8rJogy_MAg--.2603S21 X-Coremail-Antispam: 1Uf129KBjvJXoW7KF4xGw18trW7tw1Dtw4DCFg_yoW5JrW3pa 1UC3yFkryxGr47XwnxtF17ArZ5Jw4vkayUu39rCa4YyF98Gr1UZw4jyay0vrZrJ34IvFyS 9F1Svr9Ikr1jqwUanT9S1TB71UUUUU7qnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07j089tUUUUU= X-Originating-IP: [114.116.198.59] X-CM-SenderInfo: pziiszhljk3qxylshiywtou0bp/1tbiBgi5Cmiyd2bAAgAAs0 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 From: Yi Chen The hinic3.ini file is added to this patch. Signed-off-by: Yi Chen Reviewed-by: Xin Wang Reviewed-by: Feifei Wang --- MAINTAINERS | 1 + doc/guides/nics/features/hinic3.ini | 60 +++++++++++++++++++++++++++++ drivers/net/meson.build | 1 + 3 files changed, 62 insertions(+) create mode 100644 doc/guides/nics/features/hinic3.ini diff --git a/MAINTAINERS b/MAINTAINERS index 9b7c1fc813..06816a2c2d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -783,6 +783,7 @@ Huawei hinic3 M: Feifei Wang F: drivers/net/hinic3/ F: doc/guides/nics/hinic3.rst +F: doc/guides/nics/features/hinic3.ini Intel Network Common Code M: Bruce Richardson diff --git a/doc/guides/nics/features/hinic3.ini b/doc/guides/nics/features/hinic3.ini new file mode 100644 index 0000000000..50012ca696 --- /dev/null +++ b/doc/guides/nics/features/hinic3.ini @@ -0,0 +1,60 @@ +; +; Supported features of the 'hinic3' network poll mode driver. +; +; Refer to default.ini for the full list of available PMD features. +; +[Features] +Speed capabilities = Y +Link speed configuration = Y +Link status = Y +Link status event = Y +Rx interrupt = Y +Queue start/stop = Y +Runtime Rx queue setup = Y +Runtime Tx queue setup = Y +Burst mode info = Y +Fast mbuf free = Y +Free Tx mbuf on demand = Y +MTU update = Y +Scattered Rx = Y +TSO = Y +LRO = Y +Promiscuous mode = Y +Allmulticast mode = Y +Unicast MAC filter = Y +Multicast MAC filter = Y +RSS hash = Y +RSS key update = Y +RSS reta update = Y +VLAN filter = Y +Flow control = Y +Traffic manager = Y +CRC offload = Y +FEC = Y +L3 checksum offload = Y +L4 checksum offload = Y +Inner L3 checksum = Y +Inner L4 checksum = Y +Packet type parsing = Y +Basic stats = Y +Extended stats = Y +Stats per queue = Y +FW version = Y +Registers dump = Y +Timesync = Y +Multiprocess aware = Y +Linux = Y +x86-64 = Y +ARMv8 = Y + +[rte_flow items] +any = Y +eth = Y +icmp = Y +ipv4 = Y +ipv6 = Y +tcp = Y +udp = Y +vxlan = Y +[rte_flow actions] +queue = Y diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 61f8cddb30..2d32068ed2 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -23,6 +23,7 @@ drivers = [ 'failsafe', 'gve', 'hinic', + 'hinic3', 'hns3', 'intel/e1000', 'intel/fm10k', -- 2.47.0.windows.2