DPDK patches and discussions
 help / color / mirror / Atom feed
* From: Nicolas Chautru <nicolas.chautru@intel.com>
@ 2022-09-24  0:50 Nicolas Chautru
  2022-09-24  0:50 ` [PATCH v6 01/14] baseband/acc100: remove unused registers Nicolas Chautru
                   ` (13 more replies)
  0 siblings, 14 replies; 25+ messages in thread
From: Nicolas Chautru @ 2022-09-24  0:50 UTC (permalink / raw)
  To: dev, thomas
  Cc: maxime.coquelin, trix, mdr, bruce.richardson, hemant.agrawal,
	david.marchand, stephen, hernan.vargas, n-reply-to,
	1657238503-143836-2-git-send-email-nicolas.chautru,
	d0fed7134087a905de72e62c2a6465a46039cbe9, Mon, Sep, 17, 00:00:00,
	2001

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.
There is a dependency on that parallel patch serie still in-flight
which extends the bbdev api https://patches.dpdk.org/project/dpdk/list/?series=23894
and is required to apply that patch.


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                  |  244 +
 doc/guides/bbdevs/index.rst                   |    1 +
 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             | 1388 ++++++
 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         | 4023 +++++++++++++++++
 .../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 +-
 24 files changed, 7151 insertions(+), 2977 deletions(-)
 create mode 100644 doc/guides/bbdevs/acc200.rst
 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


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2022-09-29 21:15 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-24  0:50 From: Nicolas Chautru <nicolas.chautru@intel.com> Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 01/14] baseband/acc100: remove unused registers Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 02/14] baseband/acc100: refactor to segregate common code Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 03/14] baseband/acc: rename directory from acc100 to acc Nicolas Chautru
2022-09-27 13:01   ` Maxime Coquelin
2022-09-24  0:50 ` [PATCH v6 04/14] baseband/acc: introduce PMD for ACC200 Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 05/14] baseband/acc: add HW register definitions " Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 06/14] baseband/acc: add info get function " Nicolas Chautru
2022-09-27 13:03   ` Maxime Coquelin
2022-09-24  0:50 ` [PATCH v6 07/14] baseband/acc: add queue configuration " Nicolas Chautru
2022-09-27 13:06   ` Maxime Coquelin
2022-09-24  0:50 ` [PATCH v6 08/14] baseband/acc: add LDPC processing functions Nicolas Chautru
2022-09-27 13:21   ` Maxime Coquelin
2022-09-24  0:50 ` [PATCH v6 09/14] baseband/acc: add LTE " Nicolas Chautru
2022-09-27 13:43   ` Maxime Coquelin
2022-09-29 21:13     ` Chautru, Nicolas
2022-09-24  0:50 ` [PATCH v6 10/14] baseband/acc: add support for FFT operations Nicolas Chautru
2022-09-27 13:45   ` Maxime Coquelin
2022-09-29 21:14     ` Chautru, Nicolas
2022-09-24  0:50 ` [PATCH v6 11/14] baseband/acc: support interrupt Nicolas Chautru
2022-09-27 13:49   ` Maxime Coquelin
2022-09-29 21:15     ` Chautru, Nicolas
2022-09-24  0:50 ` [PATCH v6 12/14] baseband/acc: add device status and vf2pf comms Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 13/14] baseband/acc: add PF configure companion function Nicolas Chautru
2022-09-24  0:50 ` [PATCH v6 14/14] baseband/acc: simplify meson dependency Nicolas Chautru

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).