Message ID | 20250305081320.1161982-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 3543D46347; Wed, 5 Mar 2025 09:28:11 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 78C8B40616; Wed, 5 Mar 2025 09:28:00 +0100 (CET) Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.40]) by mails.dpdk.org (Postfix) with ESMTP id 37E06402F1 for <dev@dpdk.org>; Wed, 5 Mar 2025 09:27:58 +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 4Z75K56y2Xz8RSdM; Wed, 5 Mar 2025 16:27:53 +0800 (CST) Received: from szxlzmapp03.zte.com.cn ([10.5.231.207]) by mse-fl2.zte.com.cn with SMTP id 5258ROlo085841; Wed, 5 Mar 2025 16:27:24 +0800 (+08) (envelope-from chen.bingbin@zte.com.cn) Received: from localhost.localdomain (unknown [192.168.6.15]) by smtp (Zmail) with SMTP; Wed, 5 Mar 2025 16:27:27 +0800 X-Zmail-TransId: 3e8167c80ae5005-f11e0 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 v3 00/14] net/zxdh: add network processor ops Date: Wed, 5 Mar 2025 16:13:06 +0800 Message-ID: <20250305081320.1161982-1-chen.bingbin@zte.com.cn> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250210014441.4105335-1-chen.bingbin@zte.com.cn> References: <20250210014441.4105335-1-chen.bingbin@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 5258ROlo085841 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 67C80B09.003/4Z75K56y2Xz8RSdM 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 5, 2025, 8:13 a.m. UTC
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: modify parameters of the plcr function drivers/net/zxdh/zxdh_ethdev.c | 70 + drivers/net/zxdh/zxdh_ethdev.h | 1 + drivers/net/zxdh/zxdh_msg.c | 3 +- drivers/net/zxdh/zxdh_mtr.c | 8 +- drivers/net/zxdh/zxdh_np.c | 11387 +++++++++++++++++++++++++++---- drivers/net/zxdh/zxdh_np.h | 1223 +++- 6 files changed, 11118 insertions(+), 1574 deletions(-) -- 2.27.0