From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B78B2A00C3; Wed, 21 Sep 2022 23:03:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5FDE740F17; Wed, 21 Sep 2022 23:03:22 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id AD30A4067C for ; Wed, 21 Sep 2022 23:03:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663794200; x=1695330200; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=KM+U5ymfRA2Pcoh3wiUx+h9t8JIjDGaSeZV2TZtT5Rg=; b=kiBEs5DCVna1KZjRl/Y9VYCQO3b3Mf88YOGVmbdyOOqtIHYBF6TImh2s ZVh8L+iANiEneEt+GSgOOQRjGUHbW1JEPbnztU9x5lPHgyzyAem+vc//j IJvtk5A0FadXGtmVcVmeOY0PvEZl1c0zUvB4K/D9lzDAvU2Zc3MYtLTZz 5QR0RSobr6bqDk40dwu3hsNqdE+CQ0sIJbAkSPNXRV4rpprZWA+sEbTN6 YP3dsmndTl4BMyHbTmBwVyR7Bo1BDKd58eGcJMYW7vY/ybFrtsTf0yQ5F fkHyLn/jdGGHjyDsCrk8pSrKxD3mQBIGCnq8LmmO5h5P5fHjN8t6tPLep w==; X-IronPort-AV: E=McAfee;i="6500,9779,10477"; a="300967604" X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="300967604" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 14:03:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="794832323" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga005.jf.intel.com with ESMTP; 21 Sep 2022 14:03:19 -0700 From: Nic Chautru To: dev@dpdk.org, thomas@monjalon.net, gakhil@marvell.com Cc: maxime.coquelin@redhat.com, trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, david.marchand@redhat.com, stephen@networkplumber.org, mingshan.zhang@intel.com, hemant.agrawal@nxp.com, Nic Chautru Subject: [PATCH v8 0/7] bbdev changes for 22.11 Date: Wed, 21 Sep 2022 14:02:45 -0700 Message-Id: <1663794172-19697-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1655491040-183649-6-git-send-email-nicolas.chautru@intel.com> References: <1655491040-183649-6-git-send-email-nicolas.chautru@intel.com> 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 v8: edit based on review by Akhil : typos, coding guidelines. No functional change. Thanks v7: couple of typos in documentation spotted by Maxime. Thanks. v6: added one comment in commit 2/7 suggested by Maxime. v5: update base on review from Tom Rix. Number of typos reported and resolved, removed the commit related to rw_lock for now, added a commit for code clean up from review, resolved one rebase issue between 2 commits, used size of array for some bound check implementation. Thanks. v4: update to the last 2 commits to include function to print the queue status and a fix to the rte_lock within the wrong structure v3: update to device status info to also use padded size for the related array. Adding also 2 additionals commits to allow the API struc to expose more information related to queues corner cases/warning as well as an optional rw lock. Hemant, Maxime, this is planned for DPDK 21.11 but would like review/ack early is possible to get this applied earlier and due to time off this summer. Thanks Nic Nicolas Chautru (7): bbdev: allow operation type enum for growth bbdev: add device status info bbdev: add device info on queue topology drivers/baseband: update PMDs to expose queue per operation bbdev: add new operation for FFT processing bbdev: add queue related warning and status information bbdev: remove unnecessary if-check app/test-bbdev/test_bbdev.c | 2 +- app/test-bbdev/test_bbdev_perf.c | 6 +- doc/guides/prog_guide/bbdev.rst | 130 +++++++++++++++++ drivers/baseband/acc100/rte_acc100_pmd.c | 30 ++-- drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 9 ++ drivers/baseband/fpga_lte_fec/fpga_lte_fec.c | 9 ++ drivers/baseband/la12xx/bbdev_la12xx.c | 10 +- drivers/baseband/null/bbdev_null.c | 1 + drivers/baseband/turbo_sw/bbdev_turbo_software.c | 13 ++ examples/bbdev_app/main.c | 2 +- lib/bbdev/rte_bbdev.c | 57 +++++++- lib/bbdev/rte_bbdev.h | 149 ++++++++++++++++++- lib/bbdev/rte_bbdev_op.h | 157 +++++++++++++++++++-- lib/bbdev/version.map | 12 ++ 14 files changed, 553 insertions(+), 34 deletions(-) -- 1.8.3.1