*** BLURB HERE *** Oleksandr Kolomeiets (30): 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 (1): net/ntnic: add Tx Packet Editor (TPE) flow module drivers/net/ntnic/adapter/nt4ga_adapter.c | 49 + 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_stat.h | 11 + .../ntnic/include/stream_binary_flow_api.h | 22 + drivers/net/ntnic/meson.build | 31 + .../net/ntnic/nthw/core/include/nthw_rmc.h | 49 + drivers/net/ntnic/nthw/core/nthw_rmc.c | 90 + 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 + drivers/net/ntnic/nthw/nthw_drv.h | 2 + drivers/net/ntnic/nthw/nthw_helper.h | 11 + drivers/net/ntnic/nthw/nthw_rac.c | 181 ++ drivers/net/ntnic/nthw/nthw_rac.h | 9 + .../supported/nthw_fpga_9563_055_049_0000.c | 513 +++- .../ntnic/nthw/supported/nthw_fpga_mod_defs.h | 15 + .../ntnic/nthw/supported/nthw_fpga_reg_defs.h | 19 + .../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_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/ntnic_mod_reg.c | 30 + drivers/net/ntnic/ntnic_mod_reg.h | 21 + drivers/net/ntnic/ntutil/nt_util.c | 6 + drivers/net/ntnic/ntutil/nt_util.h | 6 + 96 files changed, 16599 insertions(+), 1 deletion(-) 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_stat.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/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 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_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 -- 2.45.0