DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <akhil.goyal@nxp.com>
To: Nicolas Chautru <nicolas.chautru@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: "bruce.richardson@intel.com" <bruce.richardson@intel.com>
Subject: Re: [dpdk-dev] [PATCH v3 00/11] drivers/baseband: PMD for FPGA 5GNR FEC
Date: Fri, 17 Apr 2020 20:00:49 +0000	[thread overview]
Message-ID: <VI1PR04MB3168D7FE95A7267A08B15BC9E6D90@VI1PR04MB3168.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <1587098436-7493-1-git-send-email-nicolas.chautru@intel.com>


> 
> 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 device 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         |    6 +
>  drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2187
> ++++++++++++++++++++
>  .../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, 3160 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
> 
> --
Please also update the MAINTAINERS for the newly added files.

  parent reply	other threads:[~2020-04-17 20:00 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-17  4:40 Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 01/11] drivers/baseband: add " Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 02/11] baseband/fpga_5gnr_fec: add register definition file Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 03/11] baseband/fpga_5gnr_fec: add device info_get function Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 04/11] baseband/fpga_5gnr_fec: add queue configuration Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 05/11] baseband/fpga_5gnr_fec: add LDPC processing functions Nicolas Chautru
2020-04-17 18:38   ` Akhil Goyal
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 06/11] baseband/fpga_5gnr_fec: add HW error capture Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 07/11] baseband/fpga_5gnr_fec: add debug functionality Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 08/11] baseband/fpga_5gnr_fec: add configure function Nicolas Chautru
2020-04-17 20:37   ` Akhil Goyal
2020-04-17 22:28     ` Chautru, Nicolas
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 09/11] baseband/fpga_5gnr_fec: add harq loopback capability Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 10/11] baseband/fpga_5gnr_fec: add interrupt support Nicolas Chautru
2020-04-17  4:40 ` [dpdk-dev] [PATCH v3 11/11] doc: add feature matrix table for bbdev devices Nicolas Chautru
2020-04-17 15:16 ` [dpdk-dev] [PATCH v3 00/11] drivers/baseband: PMD for FPGA 5GNR FEC Akhil Goyal
2020-04-17 16:49   ` Chautru, Nicolas
2020-04-17 16:51     ` Akhil Goyal
2020-04-17 20:00 ` Akhil Goyal [this message]
2020-04-17 20:06   ` Akhil Goyal

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=VI1PR04MB3168D7FE95A7267A08B15BC9E6D90@VI1PR04MB3168.eurprd04.prod.outlook.com \
    --to=akhil.goyal@nxp.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=nicolas.chautru@intel.com \
    /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).