Message ID | 20241206055715.506961-1-wang.junlong1@zte.com.cn (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1039D45E16; Fri, 6 Dec 2024 07:04:55 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B2D4A40DD7; Fri, 6 Dec 2024 07:04:47 +0100 (CET) Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.35]) by mails.dpdk.org (Postfix) with ESMTP id A86F340695 for <dev@dpdk.org>; Fri, 6 Dec 2024 07:04:45 +0100 (CET) Received: from mse-fl2.zte.com.cn (unknown [10.5.228.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mxhk.zte.com.cn (FangMail) with ESMTPS id 4Y4LLz2Hrlz5B1KQ; Fri, 6 Dec 2024 14:04:43 +0800 (CST) Received: from szxlzmapp01.zte.com.cn ([10.5.231.85]) by mse-fl2.zte.com.cn with SMTP id 4B664Kea033121; Fri, 6 Dec 2024 14:04:20 +0800 (+08) (envelope-from wang.junlong1@zte.com.cn) Received: from localhost.localdomain (unknown [192.168.6.15]) by smtp (Zmail) with SMTP; Fri, 6 Dec 2024 14:04:22 +0800 X-Zmail-TransId: 3e81675293e1001-71380 From: Junlong Wang <wang.junlong1@zte.com.cn> To: ferruh.yigit@amd.com Cc: dev@dpdk.org, Junlong Wang <wang.junlong1@zte.com.cn> Subject: [PATCH v1 00/15] net/zxdh: updated net zxdh driver Date: Fri, 6 Dec 2024 13:57:00 +0800 Message-ID: <20241206055715.506961-1-wang.junlong1@zte.com.cn> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241104115856.2795213-2-wang.junlong1@zte.com.cn> References: <20241104115856.2795213-2-wang.junlong1@zte.com.cn> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: multipart/mixed; boundary="=====_001_next=====" X-MAIL: mse-fl2.zte.com.cn 4B664Kea033121 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 675293FB.000/4Y4LLz2Hrlz5B1KQ X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org |
Series |
net/zxdh: updated net zxdh driver
|
|
Message
Junlong Wang
Dec. 6, 2024, 5:57 a.m. UTC
V1: - updated net zxdh driver provided insert/delete/get table code funcs. provided link/mac/vlan/promiscuous/rss/mtu ops. Junlong Wang (15): net/zxdh: zxdh np init implementation net/zxdh: zxdh np uninit implementation net/zxdh: port tables init implementations net/zxdh: port tables unint implementations net/zxdh: rx/tx queue setup and intr enable net/zxdh: dev start/stop ops implementations net/zxdh: provided dev simple tx implementations net/zxdh: provided dev simple rx implementations net/zxdh: link info update, set link up/down net/zxdh: mac set/add/remove ops implementations net/zxdh: promiscuous/allmulticast ops implementations net/zxdh: vlan filter, vlan offload ops implementations net/zxdh: rss hash config/update, reta update/get net/zxdh: basic stats ops implementations net/zxdh: mtu update ops implementations doc/guides/nics/features/zxdh.ini | 17 + doc/guides/nics/zxdh.rst | 17 + drivers/net/zxdh/meson.build | 4 + drivers/net/zxdh/zxdh_common.c | 24 + drivers/net/zxdh/zxdh_common.h | 1 + drivers/net/zxdh/zxdh_ethdev.c | 556 +++++++- drivers/net/zxdh/zxdh_ethdev.h | 36 + drivers/net/zxdh/zxdh_ethdev_ops.c | 1500 +++++++++++++++++++ drivers/net/zxdh/zxdh_ethdev_ops.h | 60 + drivers/net/zxdh/zxdh_msg.c | 164 +++ drivers/net/zxdh/zxdh_msg.h | 231 +++ drivers/net/zxdh/zxdh_np.c | 2144 ++++++++++++++++++++++++++++ drivers/net/zxdh/zxdh_np.h | 579 ++++++++ drivers/net/zxdh/zxdh_pci.c | 26 +- drivers/net/zxdh/zxdh_pci.h | 9 +- drivers/net/zxdh/zxdh_queue.c | 244 +++- drivers/net/zxdh/zxdh_queue.h | 142 +- drivers/net/zxdh/zxdh_rxtx.c | 802 +++++++++++ drivers/net/zxdh/zxdh_rxtx.h | 6 + drivers/net/zxdh/zxdh_tables.c | 782 ++++++++++ drivers/net/zxdh/zxdh_tables.h | 231 +++ 21 files changed, 7541 insertions(+), 34 deletions(-) create mode 100644 drivers/net/zxdh/zxdh_ethdev_ops.c create mode 100644 drivers/net/zxdh/zxdh_ethdev_ops.h create mode 100644 drivers/net/zxdh/zxdh_np.c create mode 100644 drivers/net/zxdh/zxdh_np.h create mode 100644 drivers/net/zxdh/zxdh_rxtx.c create mode 100644 drivers/net/zxdh/zxdh_tables.c create mode 100644 drivers/net/zxdh/zxdh_tables.h -- 2.27.0