From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 71938ECAAD8 for ; Thu, 22 Sep 2022 00:28:12 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4662940691; Thu, 22 Sep 2022 02:28:11 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 18D634067C for ; Thu, 22 Sep 2022 02:28:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663806489; x=1695342489; h=from:to:cc:subject:date:message-id; bh=TmcNvsNTgPUebpjd+NkZfg/JGKmUxjTygc9OFB7o8wo=; b=I0g/i2gRzUZjriaMmoQqFRGfj/kuIQbkkDSHx1WQ8j+HwuUX+CO6KtLm Q5VS4dxBct6XCnAVSbZlJXKBKzlzyOVDzGlEpOs4e1f8hU2QjdbvJx0pB D+nx3E0tvr59MQGd48euQGDK1E8k6jurh1hqhka9iEsOnvul4msEXSRyM 4RBUzkiIJp5IplS4EAOAYnHehiKOGo2Uf+4xMTejvkxcbDKG1d5OE31HE QR7BcD5HBuzv/jEXJ0J5ZSQE2W+N+How2kRMMoGgKHvU++h3MS98TRfOf ycEu4KrDMWtjLUWbaljP57hiXgS/CJqBQm7ENLquhZ9aQMUNv41xLvM5O w==; X-IronPort-AV: E=McAfee;i="6500,9779,10477"; a="279883393" X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="279883393" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 17:28:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="615010934" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga007.jf.intel.com with ESMTP; 21 Sep 2022 17:28:06 -0700 From: Nic Chautru To: dev@dpdk.org, thomas@monjalon.net Cc: maxime.coquelin@redhat.com, trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, hemant.agrawal@nxp.com, david.marchand@redhat.com, stephen@networkplumber.org, hernan.vargas@intel.com, n-reply-to@dpdk.org, 1657238503-143836-2-git-send-email-nicolas.chautru@intel.comFrom, 02c7fe87d2a55f1215cd80782ba554f2f231af5c@dpdk.org, Mon@dpdk.org, Sep@dpdk.org, 17@dpdk.org, "00:00:00"@dpdk.org, 2001@dpdk.org Subject: From: Nic Chautru Date: Wed, 21 Sep 2022 17:27:26 -0700 Message-Id: <1663806460-45162-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 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 v4: Rebase to split the first commit and change the order within the series based on Maxime's feedback. No functional change. v3: Merge ACC100 and ACC200 PMDs in the same directory v2: Includes now code refactory to have common structures and code reused with the parallel ACC1XX serie PMD which can be shared moving forward. v1: This is targeting 22.11 and includes the PMD for the new integrated accelerator on Intel Xeon SPR-EEC. There is a dependency on that parallel patch serie still in-flight which extends the bbdev api https://patches.dpdk.org/project/dpdk/list/?series=23894 and is required to apply that patch. Nic Chautru (14): baseband/acc100: remove unused registers baseband/acc100: refactor to segregate common code baseband/acc: rename directory from acc100 to acc baseband/acc: introduce PMD for ACC200 baseband/acc: add HW register definitions for ACC200 baseband/acc: add info get function for ACC200 baseband/acc: add queue configuration for ACC200 baseband/acc: add LDPC processing functions baseband/acc: add LTE processing functions baseband/acc: add support for FFT operations baseband/acc: support interrupt baseband/acc: add device status and vf2pf comms baseband/acc: add PF configure companion function baseband/acc: simplify meson dependency MAINTAINERS | 5 +- app/test-bbdev/meson.build | 4 +- app/test-bbdev/test_bbdev_perf.c | 81 +- doc/guides/bbdevs/acc200.rst | 244 ++ doc/guides/bbdevs/index.rst | 1 + drivers/baseband/acc/acc100_pf_enum.h | 147 + drivers/baseband/acc/acc100_pmd.h | 177 + drivers/baseband/acc/acc100_vf_enum.h | 73 + drivers/baseband/acc/acc101_pmd.h | 40 + drivers/baseband/acc/acc200_pf_enum.h | 108 + drivers/baseband/acc/acc200_pmd.h | 196 ++ drivers/baseband/acc/acc200_vf_enum.h | 83 + drivers/baseband/acc/acc_common.h | 1387 ++++++++ drivers/baseband/acc/meson.build | 8 + drivers/baseband/acc/rte_acc100_cfg.h | 49 + drivers/baseband/acc/rte_acc100_pmd.c | 4655 +++++++++++++++++++++++++ drivers/baseband/acc/rte_acc200_cfg.h | 48 + drivers/baseband/acc/rte_acc200_pmd.c | 4195 +++++++++++++++++++++++ drivers/baseband/acc/rte_acc_common_cfg.h | 101 + drivers/baseband/acc/version.map | 10 + drivers/baseband/acc100/acc100_pf_enum.h | 1086 ------ drivers/baseband/acc100/acc100_pmd.h | 624 ---- drivers/baseband/acc100/acc100_vf_enum.h | 73 - drivers/baseband/acc100/acc101_pmd.h | 50 - drivers/baseband/acc100/meson.build | 8 - drivers/baseband/acc100/rte_acc100_cfg.h | 113 - drivers/baseband/acc100/rte_acc100_pmd.c | 5288 ----------------------------- drivers/baseband/acc100/version.map | 9 - drivers/baseband/meson.build | 2 +- 29 files changed, 11605 insertions(+), 7260 deletions(-) create mode 100644 doc/guides/bbdevs/acc200.rst create mode 100644 drivers/baseband/acc/acc100_pf_enum.h create mode 100644 drivers/baseband/acc/acc100_pmd.h create mode 100644 drivers/baseband/acc/acc100_vf_enum.h create mode 100644 drivers/baseband/acc/acc101_pmd.h create mode 100644 drivers/baseband/acc/acc200_pf_enum.h create mode 100644 drivers/baseband/acc/acc200_pmd.h create mode 100644 drivers/baseband/acc/acc200_vf_enum.h create mode 100644 drivers/baseband/acc/acc_common.h create mode 100644 drivers/baseband/acc/meson.build create mode 100644 drivers/baseband/acc/rte_acc100_cfg.h create mode 100644 drivers/baseband/acc/rte_acc100_pmd.c create mode 100644 drivers/baseband/acc/rte_acc200_cfg.h create mode 100644 drivers/baseband/acc/rte_acc200_pmd.c create mode 100644 drivers/baseband/acc/rte_acc_common_cfg.h create mode 100644 drivers/baseband/acc/version.map delete mode 100644 drivers/baseband/acc100/acc100_pf_enum.h delete mode 100644 drivers/baseband/acc100/acc100_pmd.h delete mode 100644 drivers/baseband/acc100/acc100_vf_enum.h delete mode 100644 drivers/baseband/acc100/acc101_pmd.h delete mode 100644 drivers/baseband/acc100/meson.build delete mode 100644 drivers/baseband/acc100/rte_acc100_cfg.h delete mode 100644 drivers/baseband/acc100/rte_acc100_pmd.c delete mode 100644 drivers/baseband/acc100/version.map -- 1.8.3.1