mbox

[v2,00/10] extend octeon ep driver functionality

Message ID 20230405142537.1899973-1-sedara@marvell.com (mailing list archive)
Headers

Message

Sathesh B Edara April 5, 2023, 2:25 p.m. UTC
  This patch set adds the following support to
octeon_ep driver
- extends support for newer SoCs
- support new features like IQ/OQ reset, ISM,
mailbox between VF and PF and sets the watermark
level for output queues.

V2 changes:
- Fixes compilation errors and warnings

Sathesh Edara (10):
  net/octeon_ep: support cnf95n and cnf95o SoC
  net/octeon_ep: support CNX10K series SoC
  net/octeon_ep: support error propagation
  net/octeon_ep: support IQ/OQ reset
  net/octeon_ep: support ISM
  net/octeon_ep: fix DMA incompletion
  net/octeon_ep: update queue size checks
  net/octeon_ep: support Mailbox between VF and PF
  net/octeon_ep: set watermark for output queues
  net/octeon_ep: set secondary process dev ops

 drivers/net/octeon_ep/cnxk_ep_vf.c    |  92 ++++++--
 drivers/net/octeon_ep/cnxk_ep_vf.h    |  29 ++-
 drivers/net/octeon_ep/meson.build     |   1 +
 drivers/net/octeon_ep/otx2_ep_vf.c    | 279 ++++++++++++++++++++---
 drivers/net/octeon_ep/otx2_ep_vf.h    |  77 ++++++-
 drivers/net/octeon_ep/otx_ep_common.h |  71 +++++-
 drivers/net/octeon_ep/otx_ep_ethdev.c | 264 +++++++++++++++++++---
 drivers/net/octeon_ep/otx_ep_mbox.c   | 309 ++++++++++++++++++++++++++
 drivers/net/octeon_ep/otx_ep_mbox.h   | 163 ++++++++++++++
 drivers/net/octeon_ep/otx_ep_rxtx.c   | 111 +++++----
 drivers/net/octeon_ep/otx_ep_rxtx.h   |   4 +-
 drivers/net/octeon_ep/otx_ep_vf.c     |  71 ++++--
 12 files changed, 1316 insertions(+), 155 deletions(-)
 create mode 100644 drivers/net/octeon_ep/otx_ep_mbox.c
 create mode 100644 drivers/net/octeon_ep/otx_ep_mbox.h