From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 51F4CA04BA; Fri, 2 Oct 2020 03:03:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BDBC61D5B2; Fri, 2 Oct 2020 03:03:07 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B755A1D5B0 for ; Fri, 2 Oct 2020 03:03:05 +0200 (CEST) IronPort-SDR: CzMnUpSSIYQwlBb2p/JeMsKcsBXms3aL3T6+dyqsLDat8f0wI82WQE0Q0mSbnn9uTcwNLAqRdY V0nHJ+34wiJg== X-IronPort-AV: E=McAfee;i="6000,8403,9761"; a="162961251" X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="162961251" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Oct 2020 18:03:02 -0700 IronPort-SDR: +f+bz6MialgjzRlFG0f/ZkZd7UBszcl0r/wQ9ECwqYms7pFG3UFr08jvi2TNZcHdK1Xc1P5LHQ /3j6eVX7XG1A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="341824487" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by orsmga008.jf.intel.com with ESMTP; 01 Oct 2020 18:03:02 -0700 From: Nicolas Chautru To: dev@dpdk.org, akhil.goyal@nxp.com Cc: bruce.richardson@intel.com, rosen.xu@intel.com, trix@redhat.com, maxime.coquelin@redhat.com, ferruh.yigit@intel.com, tianjiao.liu@intel.com, Nicolas Chautru Date: Thu, 1 Oct 2020 18:01:11 -0700 Message-Id: <1601600481-174133-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1597796731-57841-12-git-send-email-nicolas.chautru@intel.com> References: <1597796731-57841-12-git-send-email-nicolas.chautru@intel.com> Subject: [dpdk-dev] [PATCH v11 00/10] bbdev PMD ACC100 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" v11: Addtional updates based on Tom + Maxime review comments on v9 and v10. Thanks v10: Updates based on Tom Rix valuable review comments. Notably doc clarifiction, #define names updates, few magic numbers left, stricter error handling and few valuable coding suggestions. Thanks v9: moved the release notes update to the last commit v8: integrated the doc feature table in previous commit as suggested. v7: Fingers trouble. Previous one sent mid-rebase. My bad. v6: removed a legacy makefile no longer required v5: rebase based on latest on main. The legacy makefiles are removed. v4: an odd compilation error is reported for one CI variant using "gcc latest" which looks to me like a false positive of maybe-undeclared. http://mails.dpdk.org/archives/test-report/2020-August/148936.html Still forcing a dummy declare to remove this CI warning I will check with ci@dpdk.org in parallel. v3: missed a change during rebase v2: includes clean up from latest CI checks. Nicolas Chautru (10): drivers/baseband: add PMD for ACC100 baseband/acc100: add register definition file baseband/acc100: add info get function baseband/acc100: add queue configuration baseband/acc100: add LDPC processing functions baseband/acc100: add HARQ loopback support baseband/acc100: add support for 4G processing baseband/acc100: add interrupt support to PMD baseband/acc100: add debug function to validate input baseband/acc100: add configure function app/test-bbdev/meson.build | 3 + app/test-bbdev/test_bbdev_perf.c | 71 + doc/guides/bbdevs/acc100.rst | 228 + doc/guides/bbdevs/features/acc100.ini | 14 + doc/guides/bbdevs/index.rst | 1 + doc/guides/rel_notes/release_20_11.rst | 5 + drivers/baseband/acc100/acc100_pf_enum.h | 1068 +++++ drivers/baseband/acc100/acc100_vf_enum.h | 73 + drivers/baseband/acc100/meson.build | 8 + drivers/baseband/acc100/rte_acc100_cfg.h | 113 + drivers/baseband/acc100/rte_acc100_pmd.c | 4727 ++++++++++++++++++++ drivers/baseband/acc100/rte_acc100_pmd.h | 602 +++ .../acc100/rte_pmd_bbdev_acc100_version.map | 10 + drivers/baseband/meson.build | 2 +- 14 files changed, 6924 insertions(+), 1 deletion(-) create mode 100644 doc/guides/bbdevs/acc100.rst create mode 100644 doc/guides/bbdevs/features/acc100.ini create mode 100644 drivers/baseband/acc100/acc100_pf_enum.h create mode 100644 drivers/baseband/acc100/acc100_vf_enum.h create mode 100644 drivers/baseband/acc100/meson.build create mode 100644 drivers/baseband/acc100/rte_acc100_cfg.h create mode 100644 drivers/baseband/acc100/rte_acc100_pmd.c create mode 100644 drivers/baseband/acc100/rte_acc100_pmd.h create mode 100644 drivers/baseband/acc100/rte_pmd_bbdev_acc100_version.map -- 1.8.3.1