From: "Chautru, Nicolas" <nicolas.chautru@intel.com>
To: Akhil Goyal <akhil.goyal@nxp.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "Richardson, Bruce" <bruce.richardson@intel.com>
Subject: Re: [dpdk-dev] [PATCH v4 00/11] drivers/baseband: PMD for FPGA 5GNR FEC
Date: Sat, 18 Apr 2020 20:51:31 +0000 [thread overview]
Message-ID: <1183128033837D43A851F70F33ED5C57893DC790@FMSMSX109.amr.corp.intel.com> (raw)
In-Reply-To: <VI1PR04MB3168A160CEE3BE4B7A094EFFE6D60@VI1PR04MB3168.eurprd04.prod.outlook.com>
Hi Akhil,
> I am seeing some compilation issues again on individual patches. Please be
> careful. This is causing a lot of duplicate effort.
Yes I missed that one unfortunately, something seems to be wrong in our CI for patch by patch build. I am checking manually for each commit this time.
> 1. Rebase your release note just below the other baseband PMD change.
ok
> 2. remove DALLOW_EXPERIMENTAL_API from Makefile
> 3. remove
> allow_experimental_apis = true from meson.build
OK I see the related change. I am missing something about it but still will change for the sake of the rebase.
> 4. header installation in
> meson.build is not correct -headers = files(
> - 'rte_pmd_fpga_5gnr_fec.h',
> -)
> +install_headers('rte_pmd_fpga_5gnr_fec.h')
ok
> Please do the above changes and make sure you check meson build/clang/gcc
> shared/static builds on all patches separately. I don't want to spend more time
> on this.
Got it.
>
> Regards,
> Akhil
> >
> > v4: Fix incremental patch build and expose PMD header file to meson.
> > v3: Incremental changes from reviews : file name change, moving few
> > inline function to .h, adding missing inline, doxygen markup fix.
> >
> > Adding new baseband PMD for FPGA 5GNR FEC implementation.
> >
> >
> > Nicolas Chautru (11):
> > drivers/baseband: add PMD for FPGA 5GNR FEC
> > baseband/fpga_5gnr_fec: add register definition file
> > baseband/fpga_5gnr_fec: add info_get function
> > baseband/fpga_5gnr_fec: add queue configuration
> > baseband/fpga_5gnr_fec: add LDPC processing functions
> > baseband/fpga_5gnr_fec: add HW error capture
> > baseband/fpga_5gnr_fec: add debug functionality
> > baseband/fpga_5gnr_fec: add configure function
> > baseband/fpga_5gnr_fec: add harq loopback capability
> > baseband/fpga_5gnr_fec: add interrupt support
> > doc: add feature matrix table for bbdev devices
> >
> > .gitignore | 1 +
> > app/test-bbdev/Makefile | 3 +
> > app/test-bbdev/meson.build | 3 +
> > app/test-bbdev/test_bbdev_perf.c | 57 +
> > config/common_base | 5 +
> > doc/guides/bbdevs/features/default.ini | 16 +
> > doc/guides/bbdevs/features/fpga_5gnr_fec.ini | 11 +
> > doc/guides/bbdevs/features/fpga_lte_fec.ini | 10 +
> > doc/guides/bbdevs/features/mbc.ini | 14 +
> > doc/guides/bbdevs/features/null.ini | 7 +
> > doc/guides/bbdevs/features/turbo_sw.ini | 11 +
> > doc/guides/bbdevs/fpga_5gnr_fec.rst | 297 +++
> > doc/guides/bbdevs/index.rst | 2 +
> > doc/guides/bbdevs/overview.rst | 15 +
> > doc/guides/conf.py | 5 +
> > doc/guides/rel_notes/release_20_05.rst | 5 +
> > drivers/baseband/Makefile | 2 +
> > drivers/baseband/fpga_5gnr_fec/Makefile | 29 +
> > drivers/baseband/fpga_5gnr_fec/fpga_5gnr_fec.h | 388 ++++
> > drivers/baseband/fpga_5gnr_fec/meson.build | 10 +
> > drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2186
> > ++++++++++++++++++++
> > .../rte_pmd_bbdev_fpga_5gnr_fec_version.map | 10 +
> > .../baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h | 74 +
> > drivers/baseband/meson.build | 2 +-
> > mk/rte.app.mk | 1 +
> > 25 files changed, 3163 insertions(+), 1 deletion(-) create mode
> > 100644 doc/guides/bbdevs/features/default.ini
> > create mode 100644 doc/guides/bbdevs/features/fpga_5gnr_fec.ini
> > create mode 100644 doc/guides/bbdevs/features/fpga_lte_fec.ini
> > create mode 100644 doc/guides/bbdevs/features/mbc.ini
> > create mode 100644 doc/guides/bbdevs/features/null.ini
> > create mode 100644 doc/guides/bbdevs/features/turbo_sw.ini
> > create mode 100644 doc/guides/bbdevs/fpga_5gnr_fec.rst
> > create mode 100644 doc/guides/bbdevs/overview.rst create mode 100644
> > drivers/baseband/fpga_5gnr_fec/Makefile
> > create mode 100644 drivers/baseband/fpga_5gnr_fec/fpga_5gnr_fec.h
> > create mode 100644 drivers/baseband/fpga_5gnr_fec/meson.build
> > create mode 100644 drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c
> > create mode 100644
> >
> drivers/baseband/fpga_5gnr_fec/rte_pmd_bbdev_fpga_5gnr_fec_version.map
> > create mode 100644
> > drivers/baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h
> >
> > --
> > 1.8.3.1
prev parent reply other threads:[~2020-04-18 20:51 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-18 3:04 Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 01/11] drivers/baseband: add " Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 02/11] baseband/fpga_5gnr_fec: add register definition file Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 03/11] baseband/fpga_5gnr_fec: add info_get function Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 04/11] baseband/fpga_5gnr_fec: add queue configuration Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 05/11] baseband/fpga_5gnr_fec: add LDPC processing functions Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 06/11] baseband/fpga_5gnr_fec: add HW error capture Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 07/11] baseband/fpga_5gnr_fec: add debug functionality Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 08/11] baseband/fpga_5gnr_fec: add configure function Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 09/11] baseband/fpga_5gnr_fec: add harq loopback capability Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 10/11] baseband/fpga_5gnr_fec: add interrupt support Nicolas Chautru
2020-04-18 3:04 ` [dpdk-dev] [PATCH v4 11/11] doc: add feature matrix table for bbdev devices Nicolas Chautru
2020-04-18 7:09 ` [dpdk-dev] [PATCH v4 00/11] drivers/baseband: PMD for FPGA 5GNR FEC Akhil Goyal
2020-04-18 20:51 ` Chautru, Nicolas [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1183128033837D43A851F70F33ED5C57893DC790@FMSMSX109.amr.corp.intel.com \
--to=nicolas.chautru@intel.com \
--cc=akhil.goyal@nxp.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).