V5: - split driver into multiple patches,part of the zxdh driver, later provide dev start/stop,queue_setup,mac,vlan,rss ,etc. - fix errors reported by scripts. - move the product link in zxdh.rst. - fix meson check use RTE_ARCH_X86_64/RTE_ARCH_ARM64. - modify other comments according to Ferruh's comments. V4: - Resolve compilation issues Junlong Wang (9): net/zxdh: add zxdh ethdev pmd driver net/zxdh: add logging implementation net/zxdh: add zxdh device pci init implementation net/zxdh: add msg chan and msg hwlock init net/zxdh: add msg chan enable implementation net/zxdh: add zxdh get device backend infos net/zxdh: add configure zxdh intr implementation net/zxdh: add zxdh dev infos get ops net/zxdh: add zxdh dev configure ops doc/guides/nics/features/zxdh.ini | 9 + doc/guides/nics/index.rst | 1 + doc/guides/nics/zxdh.rst | 30 + drivers/net/meson.build | 1 + drivers/net/zxdh/meson.build | 22 + drivers/net/zxdh/zxdh_common.c | 368 +++++++++++ drivers/net/zxdh/zxdh_common.h | 42 ++ drivers/net/zxdh/zxdh_ethdev.c | 1021 +++++++++++++++++++++++++++++ drivers/net/zxdh/zxdh_ethdev.h | 105 +++ drivers/net/zxdh/zxdh_logs.h | 35 + drivers/net/zxdh/zxdh_msg.c | 992 ++++++++++++++++++++++++++++ drivers/net/zxdh/zxdh_msg.h | 228 +++++++ drivers/net/zxdh/zxdh_pci.c | 449 +++++++++++++ drivers/net/zxdh/zxdh_pci.h | 191 ++++++ drivers/net/zxdh/zxdh_queue.c | 131 ++++ drivers/net/zxdh/zxdh_queue.h | 280 ++++++++ drivers/net/zxdh/zxdh_rxtx.h | 55 ++ 17 files changed, 3960 insertions(+) create mode 100644 doc/guides/nics/features/zxdh.ini create mode 100644 doc/guides/nics/zxdh.rst create mode 100644 drivers/net/zxdh/meson.build create mode 100644 drivers/net/zxdh/zxdh_common.c create mode 100644 drivers/net/zxdh/zxdh_common.h create mode 100644 drivers/net/zxdh/zxdh_ethdev.c create mode 100644 drivers/net/zxdh/zxdh_ethdev.h create mode 100644 drivers/net/zxdh/zxdh_logs.h create mode 100644 drivers/net/zxdh/zxdh_msg.c create mode 100644 drivers/net/zxdh/zxdh_msg.h create mode 100644 drivers/net/zxdh/zxdh_pci.c create mode 100644 drivers/net/zxdh/zxdh_pci.h create mode 100644 drivers/net/zxdh/zxdh_queue.c create mode 100644 drivers/net/zxdh/zxdh_queue.h create mode 100644 drivers/net/zxdh/zxdh_rxtx.h -- 2.27.0