From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 808A7A0096 for ; Wed, 5 Jun 2019 19:39:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C59E61B945; Wed, 5 Jun 2019 19:39:49 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 67B2B5398 for ; Wed, 5 Jun 2019 19:39:48 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Jun 2019 10:39:46 -0700 X-ExtLoop1: 1 Received: from skx-5gnr-sc12-1.sc.intel.com ([172.25.69.194]) by orsmga002.jf.intel.com with ESMTP; 05 Jun 2019 10:39:47 -0700 From: Nicolas Chautru To: amr.mokhtar@intel.com, ferruh.yigit@intel.com, thomas@monjalon.net, akhil.goyal@nxp.com, dev@dpdk.org Cc: Nicolas Chautru Date: Wed, 5 Jun 2019 10:38:42 -0700 Message-Id: <1559756323-179855-1-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] 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" 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 (1): baseband/turbo_sw: Option to build turbosw PMD without SDK config/common_base | 3 +- doc/guides/bbdevs/turbo_sw.rst | 339 ++++++++++++----------- drivers/baseband/meson.build | 14 +- drivers/baseband/turbo_sw/Makefile | 13 +- drivers/baseband/turbo_sw/bbdev_turbo_software.c | 39 ++- drivers/baseband/turbo_sw/meson.build | 30 ++ mk/rte.app.mk | 3 + 7 files changed, 268 insertions(+), 173 deletions(-) create mode 100644 drivers/baseband/turbo_sw/meson.build -- 1.8.3.1