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 573E1A00C2; Mon, 23 May 2022 23:34:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5EA8D427F0; Mon, 23 May 2022 23:34:06 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id CFBB14067B for ; Mon, 23 May 2022 23:34:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653341644; x=1684877644; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=i+8W4iwBQIMiZOQeT0bmSXyxi4hFAKX5psVtrGLH/v4=; b=bSpmI5UXBuJvIcfAqvPTHOhjJ5IvjowW1lit7H+KZszNY1LqUlq6/d11 04U+TbQcl3o+lDtj5PgoP3E1Oam9w5vVg+wuuah9SSrYvCTfftjoej1Kc JEJlp/T1l9+qT/R1KIB+DteDy2XBE1e8Q+MVDKLTHBKFnwVnj4Q4tfemI NesLoBIyO5lQobfzRIpEVVXGasGRa+667GpSp2aAvfjHcXIgAiHqQREWa xFHoQvP2LUE/7ahw3iz3JhutH8k7QPVNNHxIeHJpIZoJKhffWJyWvXRkW ZVn/8rHN/CokOxDFCFr9pO7xJPNMSxVUF9cJsJgd7XH+Tm8Kl59tFbxPs w==; X-IronPort-AV: E=McAfee;i="6400,9594,10356"; a="336419937" X-IronPort-AV: E=Sophos;i="5.91,247,1647327600"; d="scan'208";a="336419937" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 May 2022 14:33:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,247,1647327600"; d="scan'208";a="629591627" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by fmsmga008.fm.intel.com with ESMTP; 23 May 2022 14:33:56 -0700 From: Nicolas Chautru To: dev@dpdk.org, gakhil@marvell.com, trix@redhat.com, maxime.coquelin@redhat.com Cc: thomas@monjalon.net, ray.kinsella@intel.com, bruce.richardson@intel.com, hemant.agrawal@nxp.com, hernan.vargas@intel.com, david.marchand@redhat.com, Nicolas Chautru Subject: [PATCH v4 0/5] drivers/baseband: PMD to support ACC100/ACC101 devices Date: Mon, 23 May 2022 14:25:11 -0700 Message-Id: <1653341116-50325-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1651083423-33202-1-git-send-email-nicolas.chautru@intel.com> References: <1651083423-33202-1-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 v4: incremental updates based on reviews Changed order of patchset to include two ACC100 specific commits first: updating formally the companion configure function from PF and the protection adjustment. Then next 3 commits for the actual changes specific to ACC101: the device specific function for FCW 5GUL generation used as a local function, combined documentations into a single .rst common to both devices, updated comments, removed unused #defines. v3: Feedback from Tom Rix: missing copyright, refactor bbdev-test section calling the configure companion function for ACC100/101, taking the Pmon commit out which is not directly required. v2: Based on good feedback from Thomas and David, now implementing the ACC101 PMD as a close derivative from existing ACC100 PMD with hooks to have different behaviour based on variant. This prevents code duplication and only rely on different functions and behaviour when hardware requires or support differences. Note that these are pending changes for ACC100 which would be specific to that device and not ACC101 but these can be managed based on the new implementation, ie. is_acc100() etc... (such incremental changes for ACC100 trending 22.11 but confirming this is future proof). The serie also includes commits which were meant for ACC101 but are also valuable for ACC100. v1: This serie introduces the PMD for the new bbdev device ACC101 (aka Mount Cirrus). This is a derivative from previous Mount Bryce ACC100 which includes silicon improvement, bug fixes, capacity improvement for 5GNR and feature improvement. Nicolas Chautru (5): baseband/acc100: update companion PF configure function baseband/acc100: add protection for some negative scenario baseband/acc100: introduce PMD for ACC101 baseband/acc100: modify validation code for ACC101 baseband/acc100: configuration of ACC101 from PF MAINTAINERS | 1 + app/test-bbdev/test_bbdev_perf.c | 22 +- doc/guides/bbdevs/acc100.rst | 37 +- doc/guides/bbdevs/features/acc101.ini | 13 + doc/guides/bbdevs/index.rst | 1 + doc/guides/rel_notes/release_22_07.rst | 3 + drivers/baseband/acc100/acc100_pf_enum.h | 18 + drivers/baseband/acc100/rte_acc100_cfg.h | 17 + drivers/baseband/acc100/rte_acc100_pmd.c | 685 ++++++++++++++++++++++++++++--- drivers/baseband/acc100/rte_acc100_pmd.h | 26 ++ drivers/baseband/acc100/rte_acc101_pmd.h | 59 +++ drivers/baseband/acc100/version.map | 2 +- 12 files changed, 815 insertions(+), 69 deletions(-) create mode 100644 doc/guides/bbdevs/features/acc101.ini create mode 100644 drivers/baseband/acc100/rte_acc101_pmd.h -- 1.8.3.1