From patchwork Mon Sep 27 13:25:08 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nipun Gupta X-Patchwork-Id: 99785 Return-Path: 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 CB96CA0548; Mon, 27 Sep 2021 15:25:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 58358410DC; Mon, 27 Sep 2021 15:25:22 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by mails.dpdk.org (Postfix) with ESMTP id 03C5640E3C for ; Mon, 27 Sep 2021 15:25:20 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id BCF6E1A146B; Mon, 27 Sep 2021 15:25:20 +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 846BE1A1469; Mon, 27 Sep 2021 15:25:20 +0200 (CEST) Received: from lsv03274.swis.in-blr01.nxp.com (lsv03274.swis.in-blr01.nxp.com [92.120.147.114]) by aprdc01srsp001v.ap-rdc01.nxp.com (Postfix) with ESMTP id 90CB6183AD07; Mon, 27 Sep 2021 21:25:19 +0800 (+08) From: nipun.gupta@nxp.com To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@intel.com, hemant.agrawal@nxp.com, sachin.saxena@nxp.com Date: Mon, 27 Sep 2021 18:55:08 +0530 Message-Id: <20210927132519.19264-1-nipun.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210927122650.30881-1-nipun.gupta@nxp.com> References: <20210927122650.30881-1-nipun.gupta@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH v1 00/11] NXP DPAAx Bus and PMD changes 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 Sender: "dev" From: Nipun Gupta This series adds new functionality related to flow redirection, multiple ordered tx enqueues, generating HW hash key etc. It also updates the MC firmware version and includes a fix in dpaxx library. Changes in v1: - Fix checkpatch errors Gagandeep Singh (1): common/dpaax: fix paddr to vaddr invalid conversion Hemant Agrawal (4): bus/fslmc: updated MC FW to 10.28 bus/fslmc: add qbman debug APIs support net/dpaa2: add debug print for MTU set for jumbo net/dpaa2: add function to generate HW hash key Jun Yang (2): net/dpaa2: support Tx flow redirection action net/dpaa2: support multiple Tx queues enqueue for ordered Nipun Gupta (2): raw/dpaa2_qdma: use correct params for config and queue setup raw/dpaa2_qdma: remove checks for lcore ID Rohit Raj (1): net/dpaa: add comments to explain driver behaviour Vanshika Shukla (1): net/dpaa2: update RSS to support additional distributions drivers/bus/fslmc/mc/dpdmai.c | 4 +- drivers/bus/fslmc/mc/fsl_dpdmai.h | 21 +- drivers/bus/fslmc/mc/fsl_dpdmai_cmd.h | 15 +- drivers/bus/fslmc/mc/fsl_dpmng.h | 4 +- drivers/bus/fslmc/mc/fsl_dpopr.h | 7 +- .../bus/fslmc/qbman/include/fsl_qbman_debug.h | 201 +++++- drivers/bus/fslmc/qbman/qbman_debug.c | 621 ++++++++++++++++++ drivers/bus/fslmc/qbman/qbman_portal.c | 6 + drivers/common/dpaax/dpaax_iova_table.h | 8 +- drivers/event/dpaa2/dpaa2_eventdev.c | 12 +- drivers/net/dpaa/dpaa_fmc.c | 8 +- drivers/net/dpaa2/base/dpaa2_hw_dpni.c | 70 +- drivers/net/dpaa2/base/dpaa2_tlu_hash.c | 153 +++++ drivers/net/dpaa2/dpaa2_ethdev.c | 9 +- drivers/net/dpaa2/dpaa2_ethdev.h | 12 +- drivers/net/dpaa2/dpaa2_flow.c | 116 +++- drivers/net/dpaa2/dpaa2_rxtx.c | 140 ++++ drivers/net/dpaa2/mc/dpdmux.c | 43 ++ drivers/net/dpaa2/mc/dpni.c | 48 +- drivers/net/dpaa2/mc/dprtc.c | 78 ++- drivers/net/dpaa2/mc/fsl_dpdmux.h | 6 + drivers/net/dpaa2/mc/fsl_dpdmux_cmd.h | 9 + drivers/net/dpaa2/mc/fsl_dpkg.h | 6 +- drivers/net/dpaa2/mc/fsl_dpni.h | 147 ++++- drivers/net/dpaa2/mc/fsl_dpni_cmd.h | 55 +- drivers/net/dpaa2/mc/fsl_dprtc.h | 19 +- drivers/net/dpaa2/mc/fsl_dprtc_cmd.h | 25 +- drivers/net/dpaa2/meson.build | 1 + drivers/net/dpaa2/rte_pmd_dpaa2.h | 19 + drivers/net/dpaa2/version.map | 3 + drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 26 +- drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h | 8 +- 32 files changed, 1789 insertions(+), 111 deletions(-) create mode 100644 drivers/net/dpaa2/base/dpaa2_tlu_hash.c