[00/19] net/cpfl: support port representor

Message ID 20230809155134.539287-1-beilei.xing@intel.com (mailing list archive)
Headers
Series net/cpfl: support port representor |

Message

Xing, Beilei Aug. 9, 2023, 3:51 p.m. UTC
  From: Beilei Xing <beilei.xing@intel.com>

1. code refine for representor support
2. support port representor

Beilei Xing (19):
  net/cpfl: refine devargs parse and process
  net/cpfl: introduce interface structure
  net/cpfl: add cp channel
  net/cpfl: enable vport mapping
  net/cpfl: parse representor devargs
  net/cpfl: support probe again
  net/cpfl: create port representor
  net/cpfl: support vport list/info get
  net/cpfl: update vport info before creating representor
  net/cpfl: refine handle virtual channel message
  net/cpfl: add exceptional vport
  net/cpfl: support representor Rx/Tx queue setup
  net/cpfl: support link update for representor
  net/cpfl: add stats ops for representor
  common/idpf: refine inline function
  net/cpfl: support representor data path
  net/cpfl: support dispatch process
  net/cpfl: add dispatch service
  doc: update release notes for representor

 doc/guides/rel_notes/release_23_11.rst |   3 +
 drivers/common/idpf/idpf_common_rxtx.c | 246 -------
 drivers/common/idpf/idpf_common_rxtx.h | 246 +++++++
 drivers/common/idpf/version.map        |   3 +
 drivers/net/cpfl/cpfl_cpchnl.h         | 313 +++++++++
 drivers/net/cpfl/cpfl_ethdev.c         | 884 ++++++++++++++++++++---
 drivers/net/cpfl/cpfl_ethdev.h         | 120 +++-
 drivers/net/cpfl/cpfl_representor.c    | 935 +++++++++++++++++++++++++
 drivers/net/cpfl/cpfl_representor.h    |  26 +
 drivers/net/cpfl/cpfl_rxtx.c           | 268 +++++++
 drivers/net/cpfl/cpfl_rxtx.h           |  19 +
 drivers/net/cpfl/cpfl_vchnl.c          |  72 ++
 drivers/net/cpfl/meson.build           |   4 +-
 13 files changed, 2783 insertions(+), 356 deletions(-)
 create mode 100644 drivers/net/cpfl/cpfl_cpchnl.h
 create mode 100644 drivers/net/cpfl/cpfl_representor.c
 create mode 100644 drivers/net/cpfl/cpfl_representor.h
 create mode 100644 drivers/net/cpfl/cpfl_vchnl.c