The mlx5 PMDs for compress and regex classes use an MMO WQE operated by the GGA engine in BF devices. Currently, all the MMO WQEs are managed by the SQ object. Starting from BF3, the queue of the MMO WQEs should be connected to the GGA engine using a new configuration, mmo, that will be supported only in the QP object. The FW introduced new capabilities to define whether the mmo configuration should be configured for the GGA queue. Replace all the GGA queue objects to QP, set mmo configuration according to the new FW capabilities.
Raja Zidane (3): common/mlx5: add common qp_create compress/mlx5: refactor queue creation in mlx5 add support to compress and regex drivers in BlueField3 regex/mlx5: refactor queue creation in mlx5 add support to compress and regex drivers in Bluefield3 drivers/common/mlx5/mlx5_common_devx.c | 139 ++++++++++++++++++++++++ drivers/common/mlx5/mlx5_common_devx.h | 23 ++++ drivers/common/mlx5/mlx5_devx_cmds.c | 14 ++- drivers/common/mlx5/mlx5_devx_cmds.h | 10 +- drivers/common/mlx5/mlx5_prm.h | 42 ++++++- drivers/common/mlx5/version.map | 3 + drivers/compress/mlx5/mlx5_compress.c | 62 ++++++----- drivers/crypto/mlx5/mlx5_crypto.c | 98 ++++------------- drivers/crypto/mlx5/mlx5_crypto.h | 5 +- drivers/regex/mlx5/mlx5_regex.h | 6 +- drivers/regex/mlx5/mlx5_regex_control.c | 60 +++++----- drivers/vdpa/mlx5/mlx5_vdpa.h | 5 +- drivers/vdpa/mlx5/mlx5_vdpa_event.c | 58 +++------- 13 files changed, 326 insertions(+), 199 deletions(-) -- 2.27.0