1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2020 Mellanox Technologies, Ltd 3 */ 4 5 #ifndef MLX5_REGEX_H 6 #define MLX5_REGEX_H 7 8 #include <rte_regexdev.h> 9 10 #include <infiniband/verbs.h> 11 #include <infiniband/mlx5dv.h> 12 13 #include <mlx5_common.h> 14 #include <mlx5_common_mr.h> 15 #include <mlx5_common_devx.h> 16 17 #include "mlx5_rxp.h" 18 #include "mlx5_regex_utils.h" 19 20 struct mlx5_regex_sq { 21 uint16_t log_nb_desc; /* Log 2 number of desc for this object. */ 22 struct mlx5_devx_sq sq_obj; /* The SQ DevX object. */ 23 size_t pi, db_pi; 24 size_t ci; 25 uint32_t sqn; 26 }; 27 28 struct mlx5_regex_cq { 29 uint32_t log_nb_desc; /* Log 2 number of desc for this object. */ 30 struct mlx5_devx_cq cq_obj; /* The CQ DevX object. */ 31 size_t ci; 32 }; 33 34 struct mlx5_regex_qp { 35 uint32_t flags; /* QP user flags. */ 36 uint32_t nb_desc; /* Total number of desc for this qp. */ 37 struct mlx5_regex_sq *sqs; /* Pointer to sq array. */ 38 uint16_t nb_obj; /* Number of sq objects. */ 39 struct mlx5_regex_cq cq; /* CQ struct. */ 40 uint32_t free_sqs; 41 struct mlx5_regex_job *jobs; 42 struct ibv_mr *metadata; 43 struct ibv_mr *outputs; 44 struct ibv_mr *imkey_addr; /* Indirect mkey array region. */ 45 size_t ci, pi; 46 struct mlx5_mr_ctrl mr_ctrl; 47 }; 48 49 struct mlx5_regex_db { 50 void *ptr; /* Pointer to the db memory. */ 51 uint32_t len; /* The memory len. */ 52 bool active; /* Active flag. */ 53 uint8_t db_assigned_to_eng_num; 54 /**< To which engine the db is connected. */ 55 struct mlx5_regex_umem umem; 56 /**< The umem struct. */ 57 }; 58 59 struct mlx5_regex_priv { 60 TAILQ_ENTRY(mlx5_regex_priv) next; 61 struct ibv_context *ctx; /* Device context. */ 62 struct rte_regexdev *regexdev; /* Pointer to the RegEx dev. */ 63 uint16_t nb_queues; /* Number of queues. */ 64 struct mlx5_regex_qp *qps; /* Pointer to the qp array. */ 65 uint16_t nb_max_matches; /* Max number of matches. */ 66 enum mlx5_rxp_program_mode prog_mode; 67 struct mlx5_regex_db db[MLX5_RXP_MAX_ENGINES + 68 MLX5_RXP_EM_COUNT]; 69 uint32_t nb_engines; /* Number of RegEx engines. */ 70 struct mlx5dv_devx_uar *uar; /* UAR object. */ 71 struct ibv_pd *pd; 72 struct mlx5_mr_share_cache mr_scache; /* Global shared MR cache. */ 73 uint8_t is_bf2; /* The device is BF2 device. */ 74 uint8_t sq_ts_format; /* Whether SQ supports timestamp formats. */ 75 uint8_t has_umr; /* The device supports UMR. */ 76 }; 77 78 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 79 static inline int 80 regex_get_pdn(void *pd, uint32_t *pdn) 81 { 82 struct mlx5dv_obj obj; 83 struct mlx5dv_pd pd_info; 84 int ret = 0; 85 86 obj.pd.in = pd; 87 obj.pd.out = &pd_info; 88 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_PD); 89 if (ret) { 90 DRV_LOG(DEBUG, "Fail to get PD object info"); 91 return ret; 92 } 93 *pdn = pd_info.pdn; 94 return 0; 95 } 96 #endif 97 98 /* mlx5_regex.c */ 99 int mlx5_regex_start(struct rte_regexdev *dev); 100 int mlx5_regex_stop(struct rte_regexdev *dev); 101 int mlx5_regex_close(struct rte_regexdev *dev); 102 103 /* mlx5_rxp.c */ 104 int mlx5_regex_info_get(struct rte_regexdev *dev, 105 struct rte_regexdev_info *info); 106 int mlx5_regex_configure(struct rte_regexdev *dev, 107 const struct rte_regexdev_config *cfg); 108 int mlx5_regex_rules_db_import(struct rte_regexdev *dev, 109 const char *rule_db, uint32_t rule_db_len); 110 111 /* mlx5_regex_devx.c */ 112 int mlx5_devx_regex_register_write(struct ibv_context *ctx, int engine_id, 113 uint32_t addr, uint32_t data); 114 int mlx5_devx_regex_register_read(struct ibv_context *ctx, int engine_id, 115 uint32_t addr, uint32_t *data); 116 int mlx5_devx_regex_database_stop(void *ctx, uint8_t engine); 117 int mlx5_devx_regex_database_resume(void *ctx, uint8_t engine); 118 int mlx5_devx_regex_database_program(void *ctx, uint8_t engine, 119 uint32_t umem_id, uint64_t umem_offset); 120 121 /* mlx5_regex_control.c */ 122 int mlx5_regex_qp_setup(struct rte_regexdev *dev, uint16_t qp_ind, 123 const struct rte_regexdev_qp_conf *cfg); 124 125 /* mlx5_regex_fastpath.c */ 126 int mlx5_regexdev_setup_fastpath(struct mlx5_regex_priv *priv, uint32_t qp_id); 127 void mlx5_regexdev_teardown_fastpath(struct mlx5_regex_priv *priv, 128 uint32_t qp_id); 129 uint16_t mlx5_regexdev_enqueue(struct rte_regexdev *dev, uint16_t qp_id, 130 struct rte_regex_ops **ops, uint16_t nb_ops); 131 uint16_t mlx5_regexdev_dequeue(struct rte_regexdev *dev, uint16_t qp_id, 132 struct rte_regex_ops **ops, uint16_t nb_ops); 133 uint16_t mlx5_regexdev_enqueue_gga(struct rte_regexdev *dev, uint16_t qp_id, 134 struct rte_regex_ops **ops, uint16_t nb_ops); 135 #endif /* MLX5_REGEX_H */ 136