From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3BEE2A0597; Sat, 18 Apr 2020 00:28:22 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 894731EB37; Sat, 18 Apr 2020 00:28:21 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id D5A2B1D9AA for ; Sat, 18 Apr 2020 00:28:19 +0200 (CEST) IronPort-SDR: JcJa0kt32TYwPpEpfS7n83evoyLjyI72Cvq6SQddcqX87f0AczX5vDGLawNdm59fmS10ffyL1m s2fpYBslyX+A== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Apr 2020 15:28:18 -0700 IronPort-SDR: pwrF4bGY3yJh1EVRZ6bRndo84rHnckDZVwMBwqzdmIe+VdWYlNAgI5Kx4frq3iaikNWYVHP8sL Upt6uaSk0bog== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,395,1580803200"; d="scan'208";a="244824874" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga007.fm.intel.com with ESMTP; 17 Apr 2020 15:28:17 -0700 Received: from fmsmsx101.amr.corp.intel.com (10.18.124.199) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 17 Apr 2020 15:28:17 -0700 Received: from FMSMSX109.amr.corp.intel.com ([169.254.15.84]) by fmsmsx101.amr.corp.intel.com ([169.254.1.121]) with mapi id 14.03.0439.000; Fri, 17 Apr 2020 15:28:17 -0700 From: "Chautru, Nicolas" To: Akhil Goyal , "dev@dpdk.org" CC: "Richardson, Bruce" Thread-Topic: [PATCH v3 08/11] baseband/fpga_5gnr_fec: add configure function Thread-Index: AQHWFHKBh0KBCwIqi0aSIl6z4AfUXqh+PFkA//+nLvA= Date: Fri, 17 Apr 2020 22:28:16 +0000 Message-ID: <1183128033837D43A851F70F33ED5C57893DADF6@FMSMSX109.amr.corp.intel.com> References: <1587098436-7493-1-git-send-email-nicolas.chautru@intel.com> <1587098436-7493-9-git-send-email-nicolas.chautru@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.1.200.107] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 08/11] baseband/fpga_5gnr_fec: add configure function 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" > > Add configure function to configure the PF from within the bbdev-test > > itself without external application configuration the device. > > > > Signed-off-by: Nicolas Chautru > > --- > > app/test-bbdev/test_bbdev_perf.c | 57 ++++++ > > doc/guides/bbdevs/fpga_5gnr_fec.rst | 123 +++++++++++++ > > drivers/baseband/fpga_5gnr_fec/Makefile | 3 + > > drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 196 > > +++++++++++++++++++++ > > .../rte_pmd_bbdev_fpga_5gnr_fec_version.map | 7 + > > .../baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h | 74 ++++++++ > > 6 files changed, 460 insertions(+) > > create mode 100644 > > drivers/baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h > > >=20 > Header need to be installed in meson.build as well. Is that actually required to build with meson? It seems to build fine with = it and the meson.build is the same for fpga_lte_fec (other PMD with also ex= pect a configure function to test application). Still I will add now.=20