Message ID | 20250317145802.1819809-1-chen.bingbin@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 BC84A46409; Mon, 17 Mar 2025 16:14:17 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 87A16402D1; Mon, 17 Mar 2025 16:14:17 +0100 (CET) Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.35]) by mails.dpdk.org (Postfix) with ESMTP id 37572402BB for <dev@dpdk.org>; Mon, 17 Mar 2025 16:14:15 +0100 (CET) Received: from mse-fl1.zte.com.cn (unknown [10.5.228.132]) (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 4ZGdmN3RTfz5B1Jt; Mon, 17 Mar 2025 23:14:12 +0800 (CST) Received: from szxlzmapp02.zte.com.cn ([10.5.231.79]) by mse-fl1.zte.com.cn with SMTP id 52HFE0aT071463; Mon, 17 Mar 2025 23:14:00 +0800 (+08) (envelope-from chen.bingbin@zte.com.cn) Received: from localhost.localdomain (unknown [192.168.6.15]) by smtp (Zmail) with SMTP; Mon, 17 Mar 2025 23:14:04 +0800 X-Zmail-TransId: 3e8167d83c33007-78e5d From: Bingbin Chen <chen.bingbin@zte.com.cn> To: stephen@networkplumber.org, wang.junlong1@zte.com.cn, yang.yonggang@zte.com.cn Cc: dev@dpdk.org, Bingbin Chen <chen.bingbin@zte.com.cn> Subject: [PATCH v4 00/14] net/zxdh: add network processor ops Date: Mon, 17 Mar 2025 22:57:48 +0800 Message-ID: <20250317145802.1819809-1-chen.bingbin@zte.com.cn> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250305081320.1161982-2-chen.bingbin@zte.com.cn> References: <20250305081320.1161982-2-chen.bingbin@zte.com.cn> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: multipart/mixed; boundary="=====_001_next=====" X-MAIL: mse-fl1.zte.com.cn 52HFE0aT071463 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 67D83C44.001/4ZGdmN3RTfz5B1Jt 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: add network processor ops
|
|
Message
Bingbin Chen
March 17, 2025, 2:57 p.m. UTC
v4: - change some tables to const. - use %u instead of %d. - delete cast of ret_zmalloc() return. - resolve code functionality issues. V3: - resolve code style. - resolve spin lock build issue. - rebase code baseline. - modify parameters of the plcr function. V2: - resolve code style and github-robot build issue. - eliminate commit warning. - remove unnecessary initialization, which first usage will set. - replace mutex lock with spinlock. V1: - updated network processor driver. - improve insert/delete/get table code funcs. Bingbin Chen (14): net/zxdh: add network processor registers ops net/zxdh: support compatibility check net/zxdh: add agent channel net/zxdh: modify dtb queue ops net/zxdh: add tables dump address ops net/zxdh: add eram tables ops net/zxdh: get flow tables resources net/zxdh: support hash resources configuration net/zxdh: implement tables initialization net/zxdh: support hash tables write and delete ops net/zxdh: get hash table entry result net/zxdh: delete all hash entries net/zxdh: add acl tables ops net/zxdh: fix debugging errors drivers/net/zxdh/zxdh_ethdev.c | 89 +- drivers/net/zxdh/zxdh_ethdev.h | 1 + drivers/net/zxdh/zxdh_ethdev_ops.c | 15 +- drivers/net/zxdh/zxdh_msg.c | 20 +- drivers/net/zxdh/zxdh_msg.h | 12 +- drivers/net/zxdh/zxdh_mtr.c | 8 +- drivers/net/zxdh/zxdh_np.c | 11631 +++++++++++++++++++++++---- drivers/net/zxdh/zxdh_np.h | 1243 ++- drivers/net/zxdh/zxdh_pci.c | 24 +- drivers/net/zxdh/zxdh_pci.h | 2 +- drivers/net/zxdh/zxdh_rxtx.c | 11 +- drivers/net/zxdh/zxdh_tables.c | 42 +- drivers/net/zxdh/zxdh_tables.h | 68 +- 13 files changed, 11464 insertions(+), 1702 deletions(-) -- 2.27.0