From patchwork Fri Jun 7 23:54:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Chautru X-Patchwork-Id: 54547 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8D7AA1BC1D; Sat, 8 Jun 2019 01:54:52 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 868571BC02 for ; Sat, 8 Jun 2019 01:54:51 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Jun 2019 16:54:50 -0700 X-ExtLoop1: 1 Received: from skx-5gnr-sc12-1.sc.intel.com ([172.25.69.194]) by fmsmga008.fm.intel.com with ESMTP; 07 Jun 2019 16:54:50 -0700 From: Nicolas Chautru To: thomas@monjalon.net, akhil.goyal@nxp.com, dev@dpdk.org Cc: ferruh.yigit@intel.com, amr.mokhtar@intel.com, Nicolas Chautru Date: Fri, 7 Jun 2019 16:54:45 -0700 Message-Id: <1559951688-61951-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1559816262-32092-2-git-send-email-nicolas.chautru@intel.com> References: <1559816262-32092-2-git-send-email-nicolas.chautru@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] BBDEV turbo_sw PMD compilation fix X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Update v4: Missed one file for meson build path and minor change to prevent warning for some configurations due to unused symbols. Update v3: Cosmetic changes in documentation commit to be more 4G/AVX2 specific. Update v2: Splitting into 3 patches as recommended (ignore previous v2 which had a typo) Based on discussion with maintainer, pushing first a patch to help maintenance of the baseband_turbo_sw which had been lacking. The documentation is clarified to point to steps on building the SDK libraries which are now publicly available. (Cosmetic changes to the webpage containing these SDK will happen in parallel based on feedback from maintainer). A compile flag is added to be able to build the turbo_sw PMD when the SDK libraries for AVX2 are installed or not. In both cases this can be compiled with gcc RTE_TARGET. Missing meson build support is also added. Note that additional BBDEV changes pushed in previous v1 https://patches.dpdk.org/project/dpdk/list/?series=4657 will be added in a separate v2 patchset which will depend on this very patchset. Nicolas Chautru (3): baseband/turbo_sw: option to build turbosw PMD without SDK docs/guides: updating turbo_sw building steps baseband/turbo_sw: meson build support for PMD driver config/common_base | 3 +- doc/guides/bbdevs/turbo_sw.rst | 81 +++++++++++++----------- drivers/baseband/meson.build | 2 +- drivers/baseband/turbo_sw/Makefile | 13 ++-- drivers/baseband/turbo_sw/bbdev_turbo_software.c | 45 ++++++++++++- drivers/baseband/turbo_sw/meson.build | 30 +++++++++ meson_options.txt | 2 + mk/rte.app.mk | 3 + 8 files changed, 133 insertions(+), 46 deletions(-) create mode 100644 drivers/baseband/turbo_sw/meson.build