[PATCH v1 00/50] Provide: flow filter init API, Enable virtual queues, fix ntnic issues for release 24.07
Stephen Hemminger
stephen at networkplumber.org
Mon Oct 7 00:27:00 CEST 2024
On Sun, 6 Oct 2024 22:36:27 +0200
Serhii Iliushyk <sil-plv at napatech.com> wrote:
> *** BLURB HERE ***
Please add a short paragraph to the cover letter
>
> Danylo Vodopianov (15):
> net/ntnic: fix coverity issues:
> net/ntnic: extend and fix logging implementation
> net/ntnic: add basic queue operations
> net/ntnic: enhance Ethernet device configuration
> net/ntnic: add scatter-gather HW deallocation
> net/ntnic: add queue setup operations
> net/ntnic: add packet handler for virtio queues
> net/ntnic: add init for virt queues in the DBS
> net/ntnic: add split-queue support
> net/ntnic: add functions for availability monitor management
> net/ntnic: used writer data handling functions
> net/ntnic: add descriptor reader data handling functions
> net/ntnic: virtqueue setup managed packed-ring was added
> net/ntnic: add functions for releasing virt queues
> net/ntnic: add functions for retrieving and managing packets
>
> Oleksandr Kolomeiets (33):
> net/ntnic: update NT NiC PMD driver with FPGA version
> net/ntnic: update documentation
> net/ntnic: remove extra calling of the API for release port
> net/ntnic: add flow filter init API
> net/ntnic: add flow filter deinitialization API
> net/ntnic: add flow backend initialization API
> net/ntnic: add flow backend deinitialization API
> net/ntnic: add INFO flow module
> net/ntnic: add categorizer (CAT) flow module
> net/ntnic: add key match (KM) flow module
> net/ntnic: add flow matcher (FLM) flow module
> net/ntnic: add IP fragmenter (IFR) flow module
> net/ntnic: add hasher (HSH) flow module
> net/ntnic: add queue select (QSL) flow module
> net/ntnic: add slicer (SLC LR) flow module
> net/ntnic: add packet descriptor builder (PDB) flow module
> net/ntnic: add header field update (HFU) flow module
> net/ntnic: add RPP local retransmit (RPP LR) flow module
> net/ntnic: add copier (Tx CPY) flow module
> net/ntnic: add checksum update (CSU) flow module
> net/ntnic: add insert (Tx INS) flow module
> net/ntnic: add replacer (Tx RPL) flow module
> net/ntnic: add base init and deinit of the NT flow API
> net/ntnic: add base init and deinit the NT flow backend
> net/ntnic: add categorizer (CAT) FPGA module
> net/ntnic: add key match (KM) FPGA module
> net/ntnic: add flow matcher (FLM) FPGA module
> net/ntnic: add hasher (HSH) FPGA module
> net/ntnic: add queue select (QSL) FPGA module
> net/ntnic: add slicer (SLC LR) FPGA module
> net/ntnic: add packet descriptor builder (PDB) FPGA module
> net/ntnic: add Tx Packet Editor (TPE) FPGA module
> net/ntnic: add receive MAC converter (RMC) core module
>
> Serhii Iliushyk (2):
> net/ntnic: add Tx Packet Editor (TPE) flow module
> net/ntnic: update FPGA registeris related to DBS
>
> .mailmap | 1 +
> doc/guides/nics/features/ntnic.ini | 2 +
> doc/guides/nics/ntnic.rst | 73 +
> drivers/net/ntnic/adapter/nt4ga_adapter.c | 49 +
> drivers/net/ntnic/dbsconfig/ntnic_dbsconfig.c | 1428 +++++++++++
> drivers/net/ntnic/include/flow_api.h | 104 +
> drivers/net/ntnic/include/flow_api_engine.h | 48 +
> drivers/net/ntnic/include/flow_filter.h | 15 +
> drivers/net/ntnic/include/hw_mod_backend.h | 910 +++++++
> drivers/net/ntnic/include/hw_mod_cat_v18.h | 141 ++
> drivers/net/ntnic/include/hw_mod_cat_v21.h | 91 +
> drivers/net/ntnic/include/hw_mod_flm_v25.h | 342 +++
> drivers/net/ntnic/include/hw_mod_hsh_v5.h | 46 +
> drivers/net/ntnic/include/hw_mod_km_v7.h | 96 +
> drivers/net/ntnic/include/hw_mod_pdb_v9.h | 42 +
> drivers/net/ntnic/include/hw_mod_qsl_v7.h | 48 +
> drivers/net/ntnic/include/hw_mod_slc_lr_v2.h | 25 +
> drivers/net/ntnic/include/hw_mod_tpe_v3.h | 126 +
> drivers/net/ntnic/include/nt4ga_adapter.h | 7 +
> drivers/net/ntnic/include/nt4ga_filter.h | 13 +
> drivers/net/ntnic/include/ntnic_dbs.h | 313 +++
> drivers/net/ntnic/include/ntnic_stat.h | 11 +
> drivers/net/ntnic/include/ntnic_virt_queue.h | 146 ++
> drivers/net/ntnic/include/ntos_drv.h | 70 +
> .../ntnic/include/stream_binary_flow_api.h | 22 +
> drivers/net/ntnic/meson.build | 35 +-
> drivers/net/ntnic/nim/i2c_nim.c | 16 +-
> .../net/ntnic/nthw/core/include/nthw_rmc.h | 49 +
> .../nthw/core/nt200a0x/nthw_fpga_nt200a0x.c | 2 +-
> .../core/nt200a0x/reset/nthw_fpga_rst9563.c | 12 +-
> .../nt200a0x/reset/nthw_fpga_rst_nt200a0x.c | 12 +-
> drivers/net/ntnic/nthw/core/nthw_fpga.c | 24 +-
> drivers/net/ntnic/nthw/core/nthw_hif.c | 18 +-
> drivers/net/ntnic/nthw/core/nthw_iic.c | 6 +-
> drivers/net/ntnic/nthw/core/nthw_pcie3.c | 2 +-
> drivers/net/ntnic/nthw/core/nthw_rmc.c | 90 +
> drivers/net/ntnic/nthw/dbs/nthw_dbs.c | 1157 +++++++++
> drivers/net/ntnic/nthw/flow_api/flow_api.c | 391 +++
> .../ntnic/nthw/flow_api/flow_api_nic_setup.h | 20 +
> .../nthw/flow_api/flow_backend/flow_backend.c | 2255 +++++++++++++++++
> drivers/net/ntnic/nthw/flow_api/flow_filter.c | 55 +
> drivers/net/ntnic/nthw/flow_api/flow_kcc.c | 19 +
> drivers/net/ntnic/nthw/flow_api/flow_km.c | 19 +
> .../nthw/flow_api/hw_mod/hw_mod_backend.c | 145 ++
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_cat.c | 985 +++++++
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_flm.c | 300 +++
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_hsh.c | 84 +
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_km.c | 278 ++
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_pdb.c | 86 +
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_qsl.c | 170 ++
> .../nthw/flow_api/hw_mod/hw_mod_slc_lr.c | 65 +
> .../ntnic/nthw/flow_api/hw_mod/hw_mod_tpe.c | 277 ++
> .../ntnic/nthw/flow_filter/flow_nthw_cat.c | 872 +++++++
> .../ntnic/nthw/flow_filter/flow_nthw_cat.h | 291 +++
> .../ntnic/nthw/flow_filter/flow_nthw_csu.c | 141 ++
> .../ntnic/nthw/flow_filter/flow_nthw_csu.h | 44 +
> .../ntnic/nthw/flow_filter/flow_nthw_flm.c | 1225 +++++++++
> .../ntnic/nthw/flow_filter/flow_nthw_flm.h | 433 ++++
> .../ntnic/nthw/flow_filter/flow_nthw_hfu.c | 230 ++
> .../ntnic/nthw/flow_filter/flow_nthw_hfu.h | 84 +
> .../ntnic/nthw/flow_filter/flow_nthw_hsh.c | 260 ++
> .../ntnic/nthw/flow_filter/flow_nthw_hsh.h | 87 +
> .../ntnic/nthw/flow_filter/flow_nthw_ifr.c | 123 +
> .../ntnic/nthw/flow_filter/flow_nthw_ifr.h | 54 +
> .../ntnic/nthw/flow_filter/flow_nthw_info.c | 341 +++
> .../ntnic/nthw/flow_filter/flow_nthw_info.h | 110 +
> .../net/ntnic/nthw/flow_filter/flow_nthw_km.c | 610 +++++
> .../net/ntnic/nthw/flow_filter/flow_nthw_km.h | 214 ++
> .../ntnic/nthw/flow_filter/flow_nthw_pdb.c | 210 ++
> .../ntnic/nthw/flow_filter/flow_nthw_pdb.h | 85 +
> .../ntnic/nthw/flow_filter/flow_nthw_qsl.c | 295 +++
> .../ntnic/nthw/flow_filter/flow_nthw_qsl.h | 113 +
> .../ntnic/nthw/flow_filter/flow_nthw_rpp_lr.c | 157 ++
> .../ntnic/nthw/flow_filter/flow_nthw_rpp_lr.h | 61 +
> .../ntnic/nthw/flow_filter/flow_nthw_slc_lr.c | 126 +
> .../ntnic/nthw/flow_filter/flow_nthw_slc_lr.h | 54 +
> .../ntnic/nthw/flow_filter/flow_nthw_tx_cpy.c | 388 +++
> .../ntnic/nthw/flow_filter/flow_nthw_tx_cpy.h | 59 +
> .../ntnic/nthw/flow_filter/flow_nthw_tx_ins.c | 98 +
> .../ntnic/nthw/flow_filter/flow_nthw_tx_ins.h | 44 +
> .../ntnic/nthw/flow_filter/flow_nthw_tx_rpl.c | 172 ++
> .../ntnic/nthw/flow_filter/flow_nthw_tx_rpl.h | 74 +
> .../net/ntnic/nthw/model/nthw_fpga_model.c | 75 +-
> drivers/net/ntnic/nthw/nthw_drv.h | 5 +
> drivers/net/ntnic/nthw/nthw_helper.h | 11 +
> drivers/net/ntnic/nthw/nthw_rac.c | 181 ++
> drivers/net/ntnic/nthw/nthw_rac.h | 9 +
> ...9_0000.c => nthw_fpga_9563_055_049_0000.c} | 727 +++++-
> .../nthw/supported/nthw_fpga_instances.c | 2 +-
> .../nthw/supported/nthw_fpga_instances.h | 2 +-
> .../ntnic/nthw/supported/nthw_fpga_mod_defs.h | 16 +
> .../ntnic/nthw/supported/nthw_fpga_reg_defs.h | 20 +
> .../nthw/supported/nthw_fpga_reg_defs_cat.h | 238 ++
> .../nthw/supported/nthw_fpga_reg_defs_cpy.h | 113 +
> .../nthw/supported/nthw_fpga_reg_defs_csu.h | 31 +
> .../nthw/supported/nthw_fpga_reg_defs_dbs.h | 144 ++
> .../nthw/supported/nthw_fpga_reg_defs_flm.h | 242 ++
> .../nthw/supported/nthw_fpga_reg_defs_hfu.h | 49 +
> .../nthw/supported/nthw_fpga_reg_defs_hsh.h | 50 +
> .../nthw/supported/nthw_fpga_reg_defs_ifr.h | 42 +
> .../nthw/supported/nthw_fpga_reg_defs_ins.h | 30 +
> .../nthw/supported/nthw_fpga_reg_defs_km.h | 126 +
> .../nthw/supported/nthw_fpga_reg_defs_pdb.h | 48 +
> .../nthw/supported/nthw_fpga_reg_defs_qsl.h | 66 +
> .../nthw/supported/nthw_fpga_reg_defs_rmc.h | 36 +
> .../nthw/supported/nthw_fpga_reg_defs_rpl.h | 43 +
> .../supported/nthw_fpga_reg_defs_rpp_lr.h | 37 +
> .../nthw/supported/nthw_fpga_reg_defs_slc.h | 34 +
> .../supported/nthw_fpga_reg_defs_slc_lr.h | 23 +
> .../supported/nthw_fpga_reg_defs_tx_cpy.h | 23 +
> .../supported/nthw_fpga_reg_defs_tx_ins.h | 23 +
> .../supported/nthw_fpga_reg_defs_tx_rpl.h | 23 +
> drivers/net/ntnic/ntlog/ntlog.c | 2 -
> drivers/net/ntnic/ntlog/ntlog.h | 63 +-
> drivers/net/ntnic/ntnic_ethdev.c | 1126 +++++++-
> drivers/net/ntnic/ntnic_mod_reg.c | 44 +
> drivers/net/ntnic/ntnic_mod_reg.h | 116 +
> drivers/net/ntnic/ntnic_vfio.c | 5 +-
> drivers/net/ntnic/ntutil/nt_util.c | 19 +-
> drivers/net/ntnic/ntutil/nt_util.h | 8 +
> 120 files changed, 21489 insertions(+), 159 deletions(-)
> create mode 100644 drivers/net/ntnic/dbsconfig/ntnic_dbsconfig.c
> create mode 100644 drivers/net/ntnic/include/flow_api.h
> create mode 100644 drivers/net/ntnic/include/flow_api_engine.h
> create mode 100644 drivers/net/ntnic/include/flow_filter.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_backend.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_cat_v18.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_cat_v21.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_flm_v25.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_hsh_v5.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_km_v7.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_pdb_v9.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_qsl_v7.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_slc_lr_v2.h
> create mode 100644 drivers/net/ntnic/include/hw_mod_tpe_v3.h
> create mode 100644 drivers/net/ntnic/include/nt4ga_filter.h
> create mode 100644 drivers/net/ntnic/include/ntnic_dbs.h
> create mode 100644 drivers/net/ntnic/include/ntnic_stat.h
> create mode 100644 drivers/net/ntnic/include/ntnic_virt_queue.h
> create mode 100644 drivers/net/ntnic/include/stream_binary_flow_api.h
> create mode 100644 drivers/net/ntnic/nthw/core/include/nthw_rmc.h
> create mode 100644 drivers/net/ntnic/nthw/core/nthw_rmc.c
> create mode 100644 drivers/net/ntnic/nthw/dbs/nthw_dbs.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_api.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_api_nic_setup.h
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_backend/flow_backend.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_filter.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_kcc.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/flow_km.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_backend.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_cat.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_flm.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_hsh.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_km.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_pdb.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_qsl.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_slc_lr.c
> create mode 100644 drivers/net/ntnic/nthw/flow_api/hw_mod/hw_mod_tpe.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_cat.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_cat.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_csu.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_csu.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_flm.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_flm.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_hfu.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_hfu.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_hsh.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_hsh.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_ifr.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_ifr.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_info.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_info.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_km.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_km.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_pdb.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_pdb.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_qsl.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_qsl.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_rpp_lr.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_rpp_lr.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_slc_lr.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_slc_lr.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_cpy.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_cpy.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_ins.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_ins.h
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_rpl.c
> create mode 100644 drivers/net/ntnic/nthw/flow_filter/flow_nthw_tx_rpl.h
> create mode 100644 drivers/net/ntnic/nthw/nthw_helper.h
> rename drivers/net/ntnic/nthw/supported/{nthw_fpga_9563_055_039_0000.c => nthw_fpga_9563_055_049_0000.c} (60%)
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_cat.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_cpy.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_csu.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_dbs.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_flm.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_hfu.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_hsh.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_ifr.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_ins.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_km.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_pdb.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_qsl.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_rmc.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_rpl.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_rpp_lr.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_slc.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_slc_lr.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_tx_cpy.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_tx_ins.h
> create mode 100644 drivers/net/ntnic/nthw/supported/nthw_fpga_reg_defs_tx_rpl.h
>
Note: build is failing because of trivial error in doc.
Please fix and resubmit all the patches.
More information about the dev
mailing list