vdpa/mlx5: separate virtq stop
[dpdk.git] / drivers / vdpa / mlx5 / mlx5_vdpa.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2019 Mellanox Technologies, Ltd
3  */
4
5 #ifndef RTE_PMD_MLX5_VDPA_H_
6 #define RTE_PMD_MLX5_VDPA_H_
7
8 #include <linux/virtio_net.h>
9 #include <sys/queue.h>
10
11 #ifdef PEDANTIC
12 #pragma GCC diagnostic ignored "-Wpedantic"
13 #endif
14 #include <rte_vdpa.h>
15 #include <rte_vhost.h>
16 #ifdef PEDANTIC
17 #pragma GCC diagnostic error "-Wpedantic"
18 #endif
19 #include <rte_spinlock.h>
20 #include <rte_interrupts.h>
21
22 #include <mlx5_glue.h>
23 #include <mlx5_devx_cmds.h>
24 #include <mlx5_prm.h>
25
26
27 #define MLX5_VDPA_INTR_RETRIES 256
28 #define MLX5_VDPA_INTR_RETRIES_USEC 1000
29
30 #ifndef VIRTIO_F_ORDER_PLATFORM
31 #define VIRTIO_F_ORDER_PLATFORM 36
32 #endif
33
34 #ifndef VIRTIO_F_RING_PACKED
35 #define VIRTIO_F_RING_PACKED 34
36 #endif
37
38 struct mlx5_vdpa_cq {
39         uint16_t log_desc_n;
40         uint32_t cq_ci:24;
41         uint32_t arm_sn:2;
42         int callfd;
43         rte_spinlock_t sl;
44         struct mlx5_devx_obj *cq;
45         struct mlx5dv_devx_umem *umem_obj;
46         union {
47                 volatile void *umem_buf;
48                 volatile struct mlx5_cqe *cqes;
49         };
50         volatile uint32_t *db_rec;
51         uint64_t errors;
52 };
53
54 struct mlx5_vdpa_event_qp {
55         struct mlx5_vdpa_cq cq;
56         struct mlx5_devx_obj *fw_qp;
57         struct mlx5_devx_obj *sw_qp;
58         struct mlx5dv_devx_umem *umem_obj;
59         void *umem_buf;
60         volatile uint32_t *db_rec;
61 };
62
63 struct mlx5_vdpa_query_mr {
64         SLIST_ENTRY(mlx5_vdpa_query_mr) next;
65         void *addr;
66         uint64_t length;
67         struct mlx5dv_devx_umem *umem;
68         struct mlx5_devx_obj *mkey;
69         int is_indirect;
70 };
71
72 struct mlx5_vdpa_virtq {
73         SLIST_ENTRY(mlx5_vdpa_virtq) next;
74         uint8_t enable;
75         uint16_t index;
76         uint16_t vq_size;
77         struct mlx5_vdpa_priv *priv;
78         struct mlx5_devx_obj *virtq;
79         struct mlx5_vdpa_event_qp eqp;
80         struct {
81                 struct mlx5dv_devx_umem *obj;
82                 void *buf;
83                 uint32_t size;
84         } umems[3];
85         struct rte_intr_handle intr_handle;
86 };
87
88 struct mlx5_vdpa_steer {
89         struct mlx5_devx_obj *rqt;
90         void *domain;
91         void *tbl;
92         struct {
93                 struct mlx5dv_flow_matcher *matcher;
94                 struct mlx5_devx_obj *tir;
95                 void *tir_action;
96                 void *flow;
97         } rss[7];
98 };
99
100 struct mlx5_vdpa_priv {
101         TAILQ_ENTRY(mlx5_vdpa_priv) next;
102         uint8_t configured;
103         uint8_t direct_notifier; /* Whether direct notifier is on or off. */
104         int id; /* vDPA device id. */
105         int vid; /* vhost device id. */
106         struct ibv_context *ctx; /* Device context. */
107         struct rte_vdpa_dev_addr dev_addr;
108         struct mlx5_hca_vdpa_attr caps;
109         uint32_t pdn; /* Protection Domain number. */
110         struct ibv_pd *pd;
111         uint32_t gpa_mkey_index;
112         struct ibv_mr *null_mr;
113         struct rte_vhost_memory *vmem;
114         uint32_t eqn;
115         struct mlx5dv_devx_event_channel *eventc;
116         struct mlx5dv_devx_uar *uar;
117         struct rte_intr_handle intr_handle;
118         struct mlx5_devx_obj *td;
119         struct mlx5_devx_obj *tis;
120         uint16_t nr_virtqs;
121         uint64_t features; /* Negotiated features. */
122         uint16_t log_max_rqt_size;
123         struct mlx5_vdpa_steer steer;
124         struct mlx5dv_var *var;
125         void *virtq_db_addr;
126         SLIST_HEAD(mr_list, mlx5_vdpa_query_mr) mr_list;
127         struct mlx5_vdpa_virtq virtqs[];
128 };
129
130 /**
131  * Release all the prepared memory regions and all their related resources.
132  *
133  * @param[in] priv
134  *   The vdpa driver private structure.
135  */
136 void mlx5_vdpa_mem_dereg(struct mlx5_vdpa_priv *priv);
137
138 /**
139  * Register all the memory regions of the virtio device to the HW and allocate
140  * all their related resources.
141  *
142  * @param[in] priv
143  *   The vdpa driver private structure.
144  *
145  * @return
146  *   0 on success, a negative errno value otherwise and rte_errno is set.
147  */
148 int mlx5_vdpa_mem_register(struct mlx5_vdpa_priv *priv);
149
150
151 /**
152  * Create an event QP and all its related resources.
153  *
154  * @param[in] priv
155  *   The vdpa driver private structure.
156  * @param[in] desc_n
157  *   Number of descriptors.
158  * @param[in] callfd
159  *   The guest notification file descriptor.
160  * @param[in/out] eqp
161  *   Pointer to the event QP structure.
162  *
163  * @return
164  *   0 on success, -1 otherwise and rte_errno is set.
165  */
166 int mlx5_vdpa_event_qp_create(struct mlx5_vdpa_priv *priv, uint16_t desc_n,
167                               int callfd, struct mlx5_vdpa_event_qp *eqp);
168
169 /**
170  * Destroy an event QP and all its related resources.
171  *
172  * @param[in/out] eqp
173  *   Pointer to the event QP structure.
174  */
175 void mlx5_vdpa_event_qp_destroy(struct mlx5_vdpa_event_qp *eqp);
176
177 /**
178  * Release all the event global resources.
179  *
180  * @param[in] priv
181  *   The vdpa driver private structure.
182  */
183 void mlx5_vdpa_event_qp_global_release(struct mlx5_vdpa_priv *priv);
184
185 /**
186  * Setup CQE event.
187  *
188  * @param[in] priv
189  *   The vdpa driver private structure.
190  *
191  * @return
192  *   0 on success, a negative errno value otherwise and rte_errno is set.
193  */
194 int mlx5_vdpa_cqe_event_setup(struct mlx5_vdpa_priv *priv);
195
196 /**
197  * Unset CQE event .
198  *
199  * @param[in] priv
200  *   The vdpa driver private structure.
201  */
202 void mlx5_vdpa_cqe_event_unset(struct mlx5_vdpa_priv *priv);
203
204 /**
205  * Release a virtq and all its related resources.
206  *
207  * @param[in] priv
208  *   The vdpa driver private structure.
209  */
210 void mlx5_vdpa_virtqs_release(struct mlx5_vdpa_priv *priv);
211
212 /**
213  * Create all the HW virtqs resources and all their related resources.
214  *
215  * @param[in] priv
216  *   The vdpa driver private structure.
217  *
218  * @return
219  *   0 on success, a negative errno value otherwise and rte_errno is set.
220  */
221 int mlx5_vdpa_virtqs_prepare(struct mlx5_vdpa_priv *priv);
222
223 /**
224  * Enable\Disable virtq..
225  *
226  * @param[in] virtq
227  *   The vdpa driver private virtq structure.
228  * @param[in] enable
229  *   Set to enable, otherwise disable.
230  *
231  * @return
232  *   0 on success, a negative value otherwise.
233  */
234 int mlx5_vdpa_virtq_enable(struct mlx5_vdpa_virtq *virtq, int enable);
235
236 /**
237  * Unset steering and release all its related resources- stop traffic.
238  *
239  * @param[in] priv
240  *   The vdpa driver private structure.
241  */
242 int mlx5_vdpa_steer_unset(struct mlx5_vdpa_priv *priv);
243
244 /**
245  * Setup steering and all its related resources to enable RSS traffic from the
246  * device to all the Rx host queues.
247  *
248  * @param[in] priv
249  *   The vdpa driver private structure.
250  *
251  * @return
252  *   0 on success, a negative value otherwise.
253  */
254 int mlx5_vdpa_steer_setup(struct mlx5_vdpa_priv *priv);
255
256 /**
257  * Enable\Disable live migration logging.
258  *
259  * @param[in] priv
260  *   The vdpa driver private structure.
261  * @param[in] enable
262  *   Set for enable, unset for disable.
263  *
264  * @return
265  *   0 on success, a negative value otherwise.
266  */
267 int mlx5_vdpa_logging_enable(struct mlx5_vdpa_priv *priv, int enable);
268
269 /**
270  * Set dirty bitmap logging to allow live migration.
271  *
272  * @param[in] priv
273  *   The vdpa driver private structure.
274  * @param[in] log_base
275  *   Vhost log base.
276  * @param[in] log_size
277  *   Vhost log size.
278  *
279  * @return
280  *   0 on success, a negative value otherwise.
281  */
282 int mlx5_vdpa_dirty_bitmap_set(struct mlx5_vdpa_priv *priv, uint64_t log_base,
283                                uint64_t log_size);
284
285 /**
286  * Log all virtqs information for live migration.
287  *
288  * @param[in] priv
289  *   The vdpa driver private structure.
290  * @param[in] enable
291  *   Set for enable, unset for disable.
292  *
293  * @return
294  *   0 on success, a negative value otherwise.
295  */
296 int mlx5_vdpa_lm_log(struct mlx5_vdpa_priv *priv);
297
298 /**
299  * Modify virtq state to be ready or suspend.
300  *
301  * @param[in] virtq
302  *   The vdpa driver private virtq structure.
303  * @param[in] state
304  *   Set for ready, otherwise suspend.
305  *
306  * @return
307  *   0 on success, a negative value otherwise.
308  */
309 int mlx5_vdpa_virtq_modify(struct mlx5_vdpa_virtq *virtq, int state);
310
311 /**
312  * Stop virtq before destroying it.
313  *
314  * @param[in] priv
315  *   The vdpa driver private structure.
316  * @param[in] index
317  *   The virtq index.
318  *
319  * @return
320  *   0 on success, a negative value otherwise.
321  */
322 int mlx5_vdpa_virtq_stop(struct mlx5_vdpa_priv *priv, int index);
323
324 #endif /* RTE_PMD_MLX5_VDPA_H_ */