DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 0/9] drivers/raw: introduce cnxk rvu lf device driver
@ 2024-09-07 19:33 Akhil Goyal
  2024-09-07 19:33 ` [PATCH 1/9] rawdev: add API to get device from index Akhil Goyal
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Akhil Goyal @ 2024-09-07 19:33 UTC (permalink / raw)
  To: dev; +Cc: thomas, david.marchand, hemant.agrawal, jerinj, hkalra, Akhil Goyal

CNXK product families can have a use case to allow PF and VF
applications to communicate using mailboxes and also get notified
of any interrupt that may occur on the device.
Hence, a new raw device driver is added for such RVU LF devices.
These devices can map to a PF or a VF which can send mailboxes to
each other.
The RVU LF device implements following features in the rawdev API:

- Register mailbox callbacks for the other side to process mailboxes.
- Register interrupt handler callbacks.
- Process mailbox.
- Set range of message IDs allowed for communication.

Akhil Goyal (9):
  rawdev: add API to get device from index
  drivers/raw: introduce cnxk rvu lf device driver
  raw/cnxk_rvu_lf: add PMD API to get npa/sso pffunc
  raw/cnxk_rvu_lf: add PMD API to get BAR addresses
  raw/cnxk_rvu_lf: register/unregister interrupt handler
  raw/cnxk_rvu_lf: register/unregister msg handler
  raw/cnxk_rvu_lf: set message ID range
  raw/cnxk_rvu_lf: process mailbox message
  raw/cnxk_rvu_lf: add selftest

 MAINTAINERS                              |   6 +
 doc/guides/rawdevs/cnxk_rvu_lf.rst       | 100 ++++++
 doc/guides/rawdevs/index.rst             |   1 +
 drivers/common/cnxk/meson.build          |   1 +
 drivers/common/cnxk/roc_api.h            |   3 +
 drivers/common/cnxk/roc_constants.h      |   2 +
 drivers/common/cnxk/roc_dev.c            | 117 ++++++-
 drivers/common/cnxk/roc_dev_priv.h       |   7 +
 drivers/common/cnxk/roc_idev.c           |  46 +++
 drivers/common/cnxk/roc_idev.h           |   4 +
 drivers/common/cnxk/roc_idev_priv.h      |   1 +
 drivers/common/cnxk/roc_mbox.h           |   2 +
 drivers/common/cnxk/roc_npa.c            |   6 +
 drivers/common/cnxk/roc_npa.h            |   3 +
 drivers/common/cnxk/roc_priv.h           |   2 +
 drivers/common/cnxk/roc_rvu_lf.c         | 202 ++++++++++++
 drivers/common/cnxk/roc_rvu_lf.h         |  44 +++
 drivers/common/cnxk/roc_rvu_lf_priv.h    |  37 +++
 drivers/common/cnxk/roc_sso.c            |   6 +
 drivers/common/cnxk/roc_sso.h            |   3 +
 drivers/common/cnxk/roc_utils.c          |   2 +
 drivers/common/cnxk/version.map          |  15 +
 drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf.c    | 380 +++++++++++++++++++++++
 drivers/raw/cnxk_rvu_lf/meson.build      |  10 +
 drivers/raw/cnxk_rvu_lf/rte_pmd_rvu_lf.h | 214 +++++++++++++
 drivers/raw/meson.build                  |   1 +
 lib/rawdev/rte_rawdev_pmd.h              |  24 ++
 27 files changed, 1233 insertions(+), 6 deletions(-)
 create mode 100644 doc/guides/rawdevs/cnxk_rvu_lf.rst
 create mode 100644 drivers/common/cnxk/roc_rvu_lf.c
 create mode 100644 drivers/common/cnxk/roc_rvu_lf.h
 create mode 100644 drivers/common/cnxk/roc_rvu_lf_priv.h
 create mode 100644 drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf.c
 create mode 100644 drivers/raw/cnxk_rvu_lf/meson.build
 create mode 100644 drivers/raw/cnxk_rvu_lf/rte_pmd_rvu_lf.h

-- 
2.25.1


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

end of thread, other threads:[~2024-09-07 19:34 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-07 19:33 [PATCH 0/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-09-07 19:33 ` [PATCH 1/9] rawdev: add API to get device from index Akhil Goyal
2024-09-07 19:33 ` [PATCH 2/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-09-07 19:33 ` [PATCH 3/9] raw/cnxk_rvu_lf: add PMD API to get npa/sso pffunc Akhil Goyal
2024-09-07 19:33 ` [PATCH 4/9] raw/cnxk_rvu_lf: add PMD API to get BAR addresses Akhil Goyal
2024-09-07 19:33 ` [PATCH 5/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-09-07 19:33 ` [PATCH 6/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-09-07 19:33 ` [PATCH 7/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-09-07 19:33 ` [PATCH 8/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-09-07 19:33 ` [PATCH 9/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal

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