From patchwork Thu Jun 15 16:48:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 128752 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 B9C7342CC8; Thu, 15 Jun 2023 18:54:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 41BC540FAE; Thu, 15 Jun 2023 18:54:52 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 4590140A8B for ; Thu, 15 Jun 2023 18:54:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686848090; x=1718384090; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=bkwPzJ24UuoZ9L/UyF4/1T0rGi2PfomAi5PWHvxUWYo=; b=HOeGGvCpFO28Ei1/9mDN+v6otQ7/uqqQwKZFHYDNjICvURZdTtUBAcNx aL6ehDarbk6ECInWB6JC/4aeEYUdwuAogHXo6uqLCwGec4++JwbrlW5NQ iRIGzcr0Uug44YVVDgPY7bcHbwmtbJdnVU1MrIP6DucgNs6VBGTlAfORw o2svxi705yavGR7J1EjKMBje82ZVuDgg4Bd3QplZHAW2vtdvpH8W+dA17 +9cYoeurAGJ/VWJVdEFRmQtY9swbYHgfBiuAMYP+ezaWfSgw+WnDgLxIc mJEeUA5zWjaJOPv2g4w3+p4AanKgVHqpHf9ms8a0zmfv25igDzVvqxtei Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="356469798" X-IronPort-AV: E=Sophos;i="6.00,245,1681196400"; d="scan'208";a="356469798" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2023 09:54:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="712518704" X-IronPort-AV: E=Sophos;i="6.00,245,1681196400"; d="scan'208";a="712518704" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by orsmga002.jf.intel.com with ESMTP; 15 Jun 2023 09:54:26 -0700 From: Nicolas Chautru To: dev@dpdk.org, maxime.coquelin@redhat.com Cc: trix@redhat.com, hemant.agrawal@nxp.com, david.marchand@redhat.com, hernan.vargas@intel.com, Nicolas Chautru Subject: [PATCH v2 0/5] bbdev: API extension for 23.11 Date: Thu, 15 Jun 2023 16:48:56 +0000 Message-Id: <20230615164901.40845-1-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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 v2: moving the new mld functions at the end of struct rte_bbdev to avoid ABI offset changes based on feedback with Maxime. Adding a commit to waive the FFT ABI warning since that experimental function could break ABI (let me know if preferred to be merged with the FFT commit causing the FFT change). Including v1 for extending the bbdev api for 23.11. The new MLD-TS is expected to be non ABI compatible, the other ones should not break ABI. I will send a deprecation notice in parallel. This introduces a new operation (on top of FEC and FFT) to support equalization for MLD-TS. There also more modular API extension for existing FFT and FEC operation. Thanks Nic Nicolas Chautru (5): bbdev: add operation type for MLDTS procession bbdev: add new capabilities for FFT processing bbdev: add new capability for FEC 5G UL processing bbdev: improving error handling for queue configuration devtools: ignore changes into bbdev experimental API devtools/libabigail.abignore | 4 +- doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ lib/bbdev/rte_bbdev.c | 26 +++--- lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ lib/bbdev/rte_bbdev_op.h | 143 +++++++++++++++++++++++++++++++- lib/bbdev/version.map | 5 ++ 6 files changed, 323 insertions(+), 14 deletions(-) Acked-by: Hemant Agrawal