1
2
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
20struct mlx5_regex_sq {
21 uint16_t log_nb_desc;
22 struct mlx5_devx_sq sq_obj;
23 size_t pi, db_pi;
24 size_t ci;
25 uint32_t sqn;
26};
27
28struct mlx5_regex_cq {
29 uint32_t log_nb_desc;
30 struct mlx5_devx_cq cq_obj;
31 size_t ci;
32};
33
34struct mlx5_regex_qp {
35 uint32_t flags;
36 uint32_t nb_desc;
37 struct mlx5_regex_sq *sqs;
38 uint16_t nb_obj;
39 struct mlx5_regex_cq cq;
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;
45 size_t ci, pi;
46 struct mlx5_mr_ctrl mr_ctrl;
47};
48
49struct mlx5_regex_db {
50 void *ptr;
51 uint32_t len;
52 bool active;
53 uint8_t db_assigned_to_eng_num;
54
55 struct mlx5_regex_umem umem;
56
57};
58
59struct mlx5_regex_priv {
60 TAILQ_ENTRY(mlx5_regex_priv) next;
61 struct ibv_context *ctx;
62 struct rte_regexdev *regexdev;
63 uint16_t nb_queues;
64 struct mlx5_regex_qp *qps;
65 uint16_t nb_max_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;
70 struct mlx5dv_devx_uar *uar;
71 struct ibv_pd *pd;
72 TAILQ_ENTRY(mlx5_regex_priv) mem_event_cb;
73
74 struct mlx5_mr_share_cache mr_scache;
75 uint8_t is_bf2;
76 uint8_t sq_ts_format;
77 uint8_t has_umr;
78};
79
80#ifdef HAVE_IBV_FLOW_DV_SUPPORT
81static inline int
82regex_get_pdn(void *pd, uint32_t *pdn)
83{
84 struct mlx5dv_obj obj;
85 struct mlx5dv_pd pd_info;
86 int ret = 0;
87
88 obj.pd.in = pd;
89 obj.pd.out = &pd_info;
90 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_PD);
91 if (ret) {
92 DRV_LOG(DEBUG, "Fail to get PD object info");
93 return ret;
94 }
95 *pdn = pd_info.pdn;
96 return 0;
97}
98#endif
99
100
101int mlx5_regex_start(struct rte_regexdev *dev);
102int mlx5_regex_stop(struct rte_regexdev *dev);
103int mlx5_regex_close(struct rte_regexdev *dev);
104
105
106int mlx5_regex_info_get(struct rte_regexdev *dev,
107 struct rte_regexdev_info *info);
108int mlx5_regex_configure(struct rte_regexdev *dev,
109 const struct rte_regexdev_config *cfg);
110int mlx5_regex_rules_db_import(struct rte_regexdev *dev,
111 const char *rule_db, uint32_t rule_db_len);
112
113
114int mlx5_devx_regex_register_write(struct ibv_context *ctx, int engine_id,
115 uint32_t addr, uint32_t data);
116int mlx5_devx_regex_register_read(struct ibv_context *ctx, int engine_id,
117 uint32_t addr, uint32_t *data);
118int mlx5_devx_regex_database_stop(void *ctx, uint8_t engine);
119int mlx5_devx_regex_database_resume(void *ctx, uint8_t engine);
120int mlx5_devx_regex_database_program(void *ctx, uint8_t engine,
121 uint32_t umem_id, uint64_t umem_offset);
122
123
124int mlx5_regex_qp_setup(struct rte_regexdev *dev, uint16_t qp_ind,
125 const struct rte_regexdev_qp_conf *cfg);
126
127
128int mlx5_regexdev_setup_fastpath(struct mlx5_regex_priv *priv, uint32_t qp_id);
129void mlx5_regexdev_teardown_fastpath(struct mlx5_regex_priv *priv,
130 uint32_t qp_id);
131uint16_t mlx5_regexdev_enqueue(struct rte_regexdev *dev, uint16_t qp_id,
132 struct rte_regex_ops **ops, uint16_t nb_ops);
133uint16_t mlx5_regexdev_dequeue(struct rte_regexdev *dev, uint16_t qp_id,
134 struct rte_regex_ops **ops, uint16_t nb_ops);
135uint16_t mlx5_regexdev_enqueue_gga(struct rte_regexdev *dev, uint16_t qp_id,
136 struct rte_regex_ops **ops, uint16_t nb_ops);
137#endif
138