Message ID | 20241009211302.177471-1-hernan.vargas@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> 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 7FBDE45AF8; Wed, 9 Oct 2024 23:17:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0572D4014F; Wed, 9 Oct 2024 23:17:43 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.10]) by mails.dpdk.org (Postfix) with ESMTP id 9BE604014F for <dev@dpdk.org>; Wed, 9 Oct 2024 23:17:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1728508662; x=1760044662; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=/rIA5xJDYySjxcGmsqK0qB9OVi7VLXw3joznJcDZ+nw=; b=bTV02ofj9Ap3JbPzn9gtj86CvCe7MVJAuwagTwdmrqZ8N0MTR25ftHKu lkBd/dRV9V+gac36YzCxhpJuzSnHN6HFC9JgctKo/Ptrc8zQmKoIxMkXb Q9Z5PqQfII8J1Nxju3icg2oZV3kyLGPL7Y07h8iAv+UGlqJ4kQspvgOV7 3uWdJUL/d1vb79x4Rm90BL0oS0VdntERV1hxqZymPEJ5Cas7AdptFdSBb MywxCW1JKv7lDlg/Z4CbUw+VS/aa5HZKtnP6K8yVyfJsN6bMsxCP/pdzX blvPR98Fzem5J4AQOuMq0hHnw6fpYFSzLvvyxedIpQArIo4/2W8QR4c1K Q==; X-CSE-ConnectionGUID: A7a2hsJ+QUiouV7vtYdIsQ== X-CSE-MsgGUID: nG+paYAzQ/mOMU/0UGHh9g== X-IronPort-AV: E=McAfee;i="6700,10204,11220"; a="39202217" X-IronPort-AV: E=Sophos;i="6.11,190,1725346800"; d="scan'208";a="39202217" Received: from fmviesa008.fm.intel.com ([10.60.135.148]) by fmvoesa104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Oct 2024 14:17:40 -0700 X-CSE-ConnectionGUID: Yliyr7YeTombt4AAre84hw== X-CSE-MsgGUID: 7jCMpMLgTXaOagztW3Bs4w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,190,1725346800"; d="scan'208";a="76480575" Received: from unknown (HELO csl-npg-qt0.la.intel.com) ([10.233.181.103]) by fmviesa008.fm.intel.com with ESMTP; 09 Oct 2024 14:17:40 -0700 From: Hernan Vargas <hernan.vargas@intel.com> To: dev@dpdk.org, gakhil@marvell.com, trix@redhat.com, maxime.coquelin@redhat.com Cc: nicolas.chautru@intel.com, qi.z.zhang@intel.com, Hernan Vargas <hernan.vargas@intel.com> Subject: [PATCH v3 00/12] acc baseband PMD fix and updates for 24.11 Date: Wed, 9 Oct 2024 14:12:50 -0700 Message-Id: <20241009211302.177471-1-hernan.vargas@intel.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org |
Series |
acc baseband PMD fix and updates for 24.11
|
|
Message
Hernan Vargas
Oct. 9, 2024, 9:12 p.m. UTC
This series targets 24.11. v3: Updated code with community recommendations. Added 2 commits for rte_free refactor and clean up of VRB1 capabilities. v2: Rebased to the latest next-baseband-for-main which includes needed rte_bbdev lib updates. v1: It includes a memory access fix, refactoring of queue allocation and general improvements. Hernan Vargas (12): baseband/acc: fix access to deallocated mem baseband/acc: fix soft output bypass RM baseband/acc: queue allocation refactor baseband/acc: configure max queues per device baseband/acc: future proof structure comparison baseband/acc: enhance SW ring alignment baseband/acc: algorithm tuning for LDPC decoder baseband/acc: remove check on HARQ memory baseband/acc: reset ring data valid bit baseband/acc: cosmetic changes baseband/acc: rte free refactor baseband/acc: clean up of VRB1 capabilities doc/guides/bbdevs/vrb1.rst | 3 - drivers/baseband/acc/acc_common.h | 16 +- drivers/baseband/acc/rte_acc100_pmd.c | 61 ++--- drivers/baseband/acc/rte_vrb_pmd.c | 335 ++++++++++++++++---------- 4 files changed, 227 insertions(+), 188 deletions(-)
Comments
On 10/9/24 23:12, Hernan Vargas wrote: > This series targets 24.11. > v3: Updated code with community recommendations. Added 2 commits for rte_free refactor and clean up of VRB1 capabilities. > v2: Rebased to the latest next-baseband-for-main which includes needed rte_bbdev lib updates. > v1: It includes a memory access fix, refactoring of queue allocation and general improvements. > > Hernan Vargas (12): > baseband/acc: fix access to deallocated mem > baseband/acc: fix soft output bypass RM > baseband/acc: queue allocation refactor > baseband/acc: configure max queues per device > baseband/acc: future proof structure comparison > baseband/acc: enhance SW ring alignment > baseband/acc: algorithm tuning for LDPC decoder > baseband/acc: remove check on HARQ memory > baseband/acc: reset ring data valid bit > baseband/acc: cosmetic changes > baseband/acc: rte free refactor > baseband/acc: clean up of VRB1 capabilities > > doc/guides/bbdevs/vrb1.rst | 3 - > drivers/baseband/acc/acc_common.h | 16 +- > drivers/baseband/acc/rte_acc100_pmd.c | 61 ++--- > drivers/baseband/acc/rte_vrb_pmd.c | 335 ++++++++++++++++---------- > 4 files changed, 227 insertions(+), 188 deletions(-) > Series applied to next-baseband/for-main. Thanks, Maxime