From patchwork Thu May 25 23:23:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 127508 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 A0A2842BA1; Fri, 26 May 2023 01:28:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7AD7240ED9; Fri, 26 May 2023 01:28:57 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 73FC840A87 for ; Fri, 26 May 2023 01:28:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685057336; x=1716593336; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=NNrfpuIcpSKrTYzZwNBo6GaZhdFrGA4qQpYZAen5hk8=; b=ihojLgS0D561LP/SucCnHSCw6zUAhQMx72qqzQb3FXcnBJn6YzT5cNbC wGkAsNAcUXzLDloBgoWlTfBwsu2y1LC3T6XNQYomkUtuzGHTKEfUvkM8X uYC4sGjx8f7MYzJeFXnLyKIgEQRUCE6HxzPaFWnkBq4Xme/cjMH6Em3dD WEXHXedTY206eaC1V4xuqjGSV/iiAx8URyuwGq/D176b1uCXmUWqkkUsU skGrpeoc7o0FCj7Sq1xwiD+Rv7gmfR+XLDyT8nIim68nN6hx/IUhgdVmX LpNqnI4RRVHa5M0PaENtHY3fZWF1jDNrKDaeQ1oMirSTVTM5tQIabgwuB A==; X-IronPort-AV: E=McAfee;i="6600,9927,10721"; a="338653642" X-IronPort-AV: E=Sophos;i="6.00,192,1681196400"; d="scan'208";a="338653642" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 May 2023 16:28:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10721"; a="655428600" X-IronPort-AV: E=Sophos;i="6.00,192,1681196400"; d="scan'208";a="655428600" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by orsmga003.jf.intel.com with ESMTP; 25 May 2023 16:28:40 -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 v1 0/4] bbdev: API extension for 23.11 Date: Thu, 25 May 2023 23:23:27 +0000 Message-Id: <20230525232331.34645-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 Hi, 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 (4): 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 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 ++ 5 files changed, 320 insertions(+), 13 deletions(-)