All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Chautru <nicolas.chautru@intel.com>
To: dev@dpdk.org, gakhil@marvell.com, maxime.coquelin@redhat.com
Cc: trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com,
	hemant.agrawal@nxp.com, david.marchand@redhat.com,
	stephen@networkplumber.org, hernan.vargas@intel.com,
	n-reply-to@dpdk.org,
	1657238503-143836-2-git-send-email-nicolas.chautru@intel.comFrom,
	e25680a8bd5d58c6d365910d05d0639208592496@dpdk.org, Mon@dpdk.org,
	Sep@dpdk.org, 17@dpdk.org, "00:00:00"@dpdk.org, 2001@dpdk.org
Subject: From: Nicolas Chautru <nicolas.chautru@intel.com>
Date: Fri,  7 Oct 2022 12:03:15 -0700	[thread overview]
Message-ID: <20221007190329.25381-1-nicolas.chautru@intel.com> (raw)

v8: Rebased to latest and fix related compilation error. Added acc200.ini and updated rel_notes.
    Formatting improvement in comments, docs and commit message.
v7: Additional update in commits 9,10,11 based on review from Maxime.
v5/v6:Updates based on Maxime reviews of v4/v5. Thanks.
v4: Rebase suggested by Maxime to split first commit and update the order within the series. No functional change. 
v3: Putting together ACC100 and ACC200 PMDs in common acc directory based on previous discussion on v2. 
v2: Includes now code refactory to have common structures and code reused with the parallel ACC1XX serie PMD which can be shared moving forward.
v1: This is targeting 22.11 and includes the PMD for the new serie integrated accelerator on Intel Xeon SPR-EEC.

Nic Chautru (13):
  baseband/acc100: remove unused registers
  baseband/acc100: refactor to segregate common code
  baseband/acc: rename directory from acc100 to acc
  baseband/acc: add HW register definitions for ACC200
  baseband/acc: add info get function for ACC200
  baseband/acc: add queue configuration for ACC200
  baseband/acc: add LDPC processing functions
  baseband/acc: add LTE processing functions
  baseband/acc: add support for FFT operations
  baseband/acc: support interrupt
  baseband/acc: add device status and vf2pf comms
  baseband/acc: add PF configure companion function
  baseband/acc: simplify meson dependency

Nicolas Chautru (1):
  baseband/acc: introduce PMD for ACC200

 MAINTAINERS                                   |    5 +-
 app/test-bbdev/meson.build                    |    4 +-
 app/test-bbdev/test_bbdev_perf.c              |   81 +-
 doc/guides/bbdevs/acc200.rst                  |  257 ++
 doc/guides/bbdevs/features/acc200.ini         |   14 +
 doc/guides/bbdevs/features/default.ini        |    1 +
 doc/guides/bbdevs/index.rst                   |    1 +
 doc/guides/rel_notes/release_22_11.rst        |    6 +
 drivers/baseband/acc/acc100_pf_enum.h         |  147 +
 drivers/baseband/acc/acc100_pmd.h             |  177 +
 .../baseband/{acc100 => acc}/acc100_vf_enum.h |    0
 drivers/baseband/{acc100 => acc}/acc101_pmd.h |   10 -
 drivers/baseband/acc/acc200_pf_enum.h         |  108 +
 drivers/baseband/acc/acc200_pmd.h             |  196 +
 drivers/baseband/acc/acc200_vf_enum.h         |   83 +
 drivers/baseband/acc/acc_common.h             | 1389 ++++++
 drivers/baseband/acc/meson.build              |    8 +
 drivers/baseband/acc/rte_acc100_cfg.h         |   49 +
 .../baseband/{acc100 => acc}/rte_acc100_pmd.c | 1773 +++-----
 drivers/baseband/acc/rte_acc200_cfg.h         |   48 +
 drivers/baseband/acc/rte_acc200_pmd.c         | 3941 +++++++++++++++++
 .../rte_acc_common_cfg.h}                     |   62 +-
 drivers/baseband/{acc100 => acc}/version.map  |    1 +
 drivers/baseband/acc100/acc100_pf_enum.h      | 1086 -----
 drivers/baseband/acc100/acc100_pmd.h          |  624 ---
 drivers/baseband/acc100/meson.build           |    8 -
 drivers/baseband/meson.build                  |    2 +-
 27 files changed, 7104 insertions(+), 2977 deletions(-)
 create mode 100644 doc/guides/bbdevs/acc200.rst
 create mode 100644 doc/guides/bbdevs/features/acc200.ini
 create mode 100644 drivers/baseband/acc/acc100_pf_enum.h
 create mode 100644 drivers/baseband/acc/acc100_pmd.h
 rename drivers/baseband/{acc100 => acc}/acc100_vf_enum.h (100%)
 rename drivers/baseband/{acc100 => acc}/acc101_pmd.h (76%)
 create mode 100644 drivers/baseband/acc/acc200_pf_enum.h
 create mode 100644 drivers/baseband/acc/acc200_pmd.h
 create mode 100644 drivers/baseband/acc/acc200_vf_enum.h
 create mode 100644 drivers/baseband/acc/acc_common.h
 create mode 100644 drivers/baseband/acc/meson.build
 create mode 100644 drivers/baseband/acc/rte_acc100_cfg.h
 rename drivers/baseband/{acc100 => acc}/rte_acc100_pmd.c (71%)
 create mode 100644 drivers/baseband/acc/rte_acc200_cfg.h
 create mode 100644 drivers/baseband/acc/rte_acc200_pmd.c
 rename drivers/baseband/{acc100/rte_acc100_cfg.h => acc/rte_acc_common_cfg.h} (58%)
 rename drivers/baseband/{acc100 => acc}/version.map (76%)
 delete mode 100644 drivers/baseband/acc100/acc100_pf_enum.h
 delete mode 100644 drivers/baseband/acc100/acc100_pmd.h
 delete mode 100644 drivers/baseband/acc100/meson.build

-- 
2.37.1


             reply	other threads:[~2022-10-07 19:03 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-07 19:03 Nicolas Chautru [this message]
2022-10-07 19:03 ` [PATCH v8 01/14] baseband/acc100: remove unused registers Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 02/14] baseband/acc100: refactor to segregate common code Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 03/14] baseband/acc: rename directory from acc100 to acc Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 04/14] baseband/acc: introduce PMD for ACC200 Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 05/14] baseband/acc: add HW register definitions " Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 06/14] baseband/acc: add info get function " Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 07/14] baseband/acc: add queue configuration " Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 08/14] baseband/acc: add LDPC processing functions Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 09/14] baseband/acc: add LTE " Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 10/14] baseband/acc: add support for FFT operations Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 11/14] baseband/acc: support interrupt Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 12/14] baseband/acc: add device status and vf2pf comms Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 13/14] baseband/acc: add PF configure companion function Nicolas Chautru
2022-10-07 19:03 ` [PATCH v8 14/14] baseband/acc: simplify meson dependency Nicolas Chautru
  -- strict thread matches above, loose matches on Subject: below --
2022-09-29 21:11 From: Nicolas Chautru <nicolas.chautru@intel.com> Nicolas Chautru
2022-09-24  0:50 Nicolas Chautru
2022-03-21 18:19 Nicolas Chautru

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=20221007190329.25381-1-nicolas.chautru@intel.com \
    --to=nicolas.chautru@intel.com \
    --cc="00:00:00"@dpdk.org \
    --cc=1657238503-143836-2-git-send-email-nicolas.chautru@intel.comFrom \
    --cc=17@dpdk.org \
    --cc=2001@dpdk.org \
    --cc=Mon@dpdk.org \
    --cc=Sep@dpdk.org \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=e25680a8bd5d58c6d365910d05d0639208592496@dpdk.org \
    --cc=gakhil@marvell.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=hernan.vargas@intel.com \
    --cc=maxime.coquelin@redhat.com \
    --cc=mdr@ashroe.eu \
    --cc=n-reply-to@dpdk.org \
    --cc=stephen@networkplumber.org \
    --cc=trix@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.