xref: /dpdk/drivers/net/mlx5/mlx5_devx.c (revision bc5bee028ebc79c86dd846e9b661e0541e5da23c)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2020 Mellanox Technologies, Ltd
3  */
4 
5 #include <stddef.h>
6 #include <errno.h>
7 #include <stdbool.h>
8 #include <string.h>
9 #include <stdint.h>
10 #include <sys/queue.h>
11 
12 #include <rte_malloc.h>
13 #include <rte_common.h>
14 #include <rte_eal_paging.h>
15 
16 #include <mlx5_glue.h>
17 #include <mlx5_devx_cmds.h>
18 #include <mlx5_common_devx.h>
19 #include <mlx5_malloc.h>
20 
21 #include "mlx5.h"
22 #include "mlx5_common_os.h"
23 #include "mlx5_tx.h"
24 #include "mlx5_rx.h"
25 #include "mlx5_utils.h"
26 #include "mlx5_devx.h"
27 #include "mlx5_flow.h"
28 #include "mlx5_flow_os.h"
29 
30 /**
31  * Modify RQ vlan stripping offload
32  *
33  * @param rxq_obj
34  *   Rx queue object.
35  *
36  * @return
37  *   0 on success, non-0 otherwise
38  */
39 static int
40 mlx5_rxq_obj_modify_rq_vlan_strip(struct mlx5_rxq_obj *rxq_obj, int on)
41 {
42 	struct mlx5_devx_modify_rq_attr rq_attr;
43 
44 	memset(&rq_attr, 0, sizeof(rq_attr));
45 	rq_attr.rq_state = MLX5_RQC_STATE_RDY;
46 	rq_attr.state = MLX5_RQC_STATE_RDY;
47 	rq_attr.vsd = (on ? 0 : 1);
48 	rq_attr.modify_bitmask = MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD;
49 	return mlx5_devx_cmd_modify_rq(rxq_obj->rq_obj.rq, &rq_attr);
50 }
51 
52 /**
53  * Modify RQ using DevX API.
54  *
55  * @param rxq_obj
56  *   DevX Rx queue object.
57  * @param type
58  *   Type of change queue state.
59  *
60  * @return
61  *   0 on success, a negative errno value otherwise and rte_errno is set.
62  */
63 static int
64 mlx5_devx_modify_rq(struct mlx5_rxq_obj *rxq_obj, uint8_t type)
65 {
66 	struct mlx5_devx_modify_rq_attr rq_attr;
67 
68 	memset(&rq_attr, 0, sizeof(rq_attr));
69 	switch (type) {
70 	case MLX5_RXQ_MOD_ERR2RST:
71 		rq_attr.rq_state = MLX5_RQC_STATE_ERR;
72 		rq_attr.state = MLX5_RQC_STATE_RST;
73 		break;
74 	case MLX5_RXQ_MOD_RST2RDY:
75 		rq_attr.rq_state = MLX5_RQC_STATE_RST;
76 		rq_attr.state = MLX5_RQC_STATE_RDY;
77 		break;
78 	case MLX5_RXQ_MOD_RDY2ERR:
79 		rq_attr.rq_state = MLX5_RQC_STATE_RDY;
80 		rq_attr.state = MLX5_RQC_STATE_ERR;
81 		break;
82 	case MLX5_RXQ_MOD_RDY2RST:
83 		rq_attr.rq_state = MLX5_RQC_STATE_RDY;
84 		rq_attr.state = MLX5_RQC_STATE_RST;
85 		break;
86 	default:
87 		break;
88 	}
89 	return mlx5_devx_cmd_modify_rq(rxq_obj->rq_obj.rq, &rq_attr);
90 }
91 
92 /**
93  * Modify SQ using DevX API.
94  *
95  * @param txq_obj
96  *   DevX Tx queue object.
97  * @param type
98  *   Type of change queue state.
99  * @param dev_port
100  *   Unnecessary.
101  *
102  * @return
103  *   0 on success, a negative errno value otherwise and rte_errno is set.
104  */
105 int
106 mlx5_txq_devx_modify(struct mlx5_txq_obj *obj, enum mlx5_txq_modify_type type,
107 		     uint8_t dev_port)
108 {
109 	struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
110 	int ret;
111 
112 	if (type != MLX5_TXQ_MOD_RST2RDY) {
113 		/* Change queue state to reset. */
114 		if (type == MLX5_TXQ_MOD_ERR2RDY)
115 			msq_attr.sq_state = MLX5_SQC_STATE_ERR;
116 		else
117 			msq_attr.sq_state = MLX5_SQC_STATE_RDY;
118 		msq_attr.state = MLX5_SQC_STATE_RST;
119 		ret = mlx5_devx_cmd_modify_sq(obj->sq_obj.sq, &msq_attr);
120 		if (ret) {
121 			DRV_LOG(ERR, "Cannot change the Tx SQ state to RESET"
122 				" %s", strerror(errno));
123 			rte_errno = errno;
124 			return ret;
125 		}
126 	}
127 	if (type != MLX5_TXQ_MOD_RDY2RST) {
128 		/* Change queue state to ready. */
129 		msq_attr.sq_state = MLX5_SQC_STATE_RST;
130 		msq_attr.state = MLX5_SQC_STATE_RDY;
131 		ret = mlx5_devx_cmd_modify_sq(obj->sq_obj.sq, &msq_attr);
132 		if (ret) {
133 			DRV_LOG(ERR, "Cannot change the Tx SQ state to READY"
134 				" %s", strerror(errno));
135 			rte_errno = errno;
136 			return ret;
137 		}
138 	}
139 	/*
140 	 * The dev_port variable is relevant only in Verbs API, and there is a
141 	 * pointer that points to this function and a parallel function in verbs
142 	 * intermittently, so they should have the same parameters.
143 	 */
144 	(void)dev_port;
145 	return 0;
146 }
147 
148 /**
149  * Destroy the Rx queue DevX object.
150  *
151  * @param rxq_obj
152  *   Rxq object to destroy.
153  */
154 static void
155 mlx5_rxq_release_devx_resources(struct mlx5_rxq_obj *rxq_obj)
156 {
157 	mlx5_devx_rq_destroy(&rxq_obj->rq_obj);
158 	memset(&rxq_obj->rq_obj, 0, sizeof(rxq_obj->rq_obj));
159 	mlx5_devx_cq_destroy(&rxq_obj->cq_obj);
160 	memset(&rxq_obj->cq_obj, 0, sizeof(rxq_obj->cq_obj));
161 }
162 
163 /**
164  * Release an Rx DevX queue object.
165  *
166  * @param rxq_obj
167  *   DevX Rx queue object.
168  */
169 static void
170 mlx5_rxq_devx_obj_release(struct mlx5_rxq_obj *rxq_obj)
171 {
172 	MLX5_ASSERT(rxq_obj);
173 	if (rxq_obj->rxq_ctrl->type == MLX5_RXQ_TYPE_HAIRPIN) {
174 		MLX5_ASSERT(rxq_obj->rq);
175 		mlx5_devx_modify_rq(rxq_obj, MLX5_RXQ_MOD_RDY2RST);
176 		claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
177 	} else {
178 		MLX5_ASSERT(rxq_obj->cq_obj.cq);
179 		MLX5_ASSERT(rxq_obj->rq_obj.rq);
180 		mlx5_rxq_release_devx_resources(rxq_obj);
181 		if (rxq_obj->devx_channel)
182 			mlx5_os_devx_destroy_event_channel
183 							(rxq_obj->devx_channel);
184 	}
185 }
186 
187 /**
188  * Get event for an Rx DevX queue object.
189  *
190  * @param rxq_obj
191  *   DevX Rx queue object.
192  *
193  * @return
194  *   0 on success, a negative errno value otherwise and rte_errno is set.
195  */
196 static int
197 mlx5_rx_devx_get_event(struct mlx5_rxq_obj *rxq_obj)
198 {
199 #ifdef HAVE_IBV_DEVX_EVENT
200 	union {
201 		struct mlx5dv_devx_async_event_hdr event_resp;
202 		uint8_t buf[sizeof(struct mlx5dv_devx_async_event_hdr) + 128];
203 	} out;
204 	int ret = mlx5_glue->devx_get_event(rxq_obj->devx_channel,
205 					    &out.event_resp,
206 					    sizeof(out.buf));
207 
208 	if (ret < 0) {
209 		rte_errno = errno;
210 		return -rte_errno;
211 	}
212 	if (out.event_resp.cookie != (uint64_t)(uintptr_t)rxq_obj->cq_obj.cq) {
213 		rte_errno = EINVAL;
214 		return -rte_errno;
215 	}
216 	return 0;
217 #else
218 	(void)rxq_obj;
219 	rte_errno = ENOTSUP;
220 	return -rte_errno;
221 #endif /* HAVE_IBV_DEVX_EVENT */
222 }
223 
224 /**
225  * Create a RQ object using DevX.
226  *
227  * @param dev
228  *   Pointer to Ethernet device.
229  * @param rxq_data
230  *   RX queue data.
231  *
232  * @return
233  *   0 on success, a negative errno value otherwise and rte_errno is set.
234  */
235 static int
236 mlx5_rxq_create_devx_rq_resources(struct rte_eth_dev *dev,
237 				  struct mlx5_rxq_data *rxq_data)
238 {
239 	struct mlx5_priv *priv = dev->data->dev_private;
240 	struct mlx5_common_device *cdev = priv->sh->cdev;
241 	struct mlx5_rxq_ctrl *rxq_ctrl =
242 		container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
243 	struct mlx5_devx_create_rq_attr rq_attr = { 0 };
244 	uint16_t log_desc_n = rxq_data->elts_n - rxq_data->sges_n;
245 	uint32_t wqe_size, log_wqe_size;
246 
247 	/* Fill RQ attributes. */
248 	rq_attr.mem_rq_type = MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE;
249 	rq_attr.flush_in_error_en = 1;
250 	rq_attr.vsd = (rxq_data->vlan_strip) ? 0 : 1;
251 	rq_attr.cqn = rxq_ctrl->obj->cq_obj.cq->id;
252 	rq_attr.scatter_fcs = (rxq_data->crc_present) ? 1 : 0;
253 	rq_attr.ts_format =
254 			mlx5_ts_format_conv(cdev->config.hca_attr.rq_ts_format);
255 	/* Fill WQ attributes for this RQ. */
256 	if (mlx5_rxq_mprq_enabled(rxq_data)) {
257 		rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ;
258 		/*
259 		 * Number of strides in each WQE:
260 		 * 512*2^single_wqe_log_num_of_strides.
261 		 */
262 		rq_attr.wq_attr.single_wqe_log_num_of_strides =
263 				rxq_data->strd_num_n -
264 				MLX5_MIN_SINGLE_WQE_LOG_NUM_STRIDES;
265 		/* Stride size = (2^single_stride_log_num_of_bytes)*64B. */
266 		rq_attr.wq_attr.single_stride_log_num_of_bytes =
267 				rxq_data->strd_sz_n -
268 				MLX5_MIN_SINGLE_STRIDE_LOG_NUM_BYTES;
269 		wqe_size = sizeof(struct mlx5_wqe_mprq);
270 	} else {
271 		rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC;
272 		wqe_size = sizeof(struct mlx5_wqe_data_seg);
273 	}
274 	log_wqe_size = log2above(wqe_size) + rxq_data->sges_n;
275 	wqe_size = 1 << log_wqe_size; /* round up power of two.*/
276 	rq_attr.wq_attr.log_wq_stride = log_wqe_size;
277 	rq_attr.wq_attr.log_wq_sz = log_desc_n;
278 	rq_attr.wq_attr.end_padding_mode = priv->config.hw_padding ?
279 						MLX5_WQ_END_PAD_MODE_ALIGN :
280 						MLX5_WQ_END_PAD_MODE_NONE;
281 	rq_attr.wq_attr.pd = cdev->pdn;
282 	rq_attr.counter_set_id = priv->counter_set_id;
283 	/* Create RQ using DevX API. */
284 	return mlx5_devx_rq_create(cdev->ctx, &rxq_ctrl->obj->rq_obj, wqe_size,
285 				   log_desc_n, &rq_attr, rxq_ctrl->socket);
286 }
287 
288 /**
289  * Create a DevX CQ object for an Rx queue.
290  *
291  * @param dev
292  *   Pointer to Ethernet device.
293  * @param rxq_data
294  *   RX queue data.
295  *
296  * @return
297  *   0 on success, a negative errno value otherwise and rte_errno is set.
298  */
299 static int
300 mlx5_rxq_create_devx_cq_resources(struct rte_eth_dev *dev,
301 				  struct mlx5_rxq_data *rxq_data)
302 {
303 	struct mlx5_devx_cq *cq_obj = 0;
304 	struct mlx5_devx_cq_attr cq_attr = { 0 };
305 	struct mlx5_priv *priv = dev->data->dev_private;
306 	struct mlx5_dev_ctx_shared *sh = priv->sh;
307 	struct mlx5_rxq_ctrl *rxq_ctrl =
308 		container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
309 	unsigned int cqe_n = mlx5_rxq_cqe_num(rxq_data);
310 	uint32_t log_cqe_n;
311 	uint16_t event_nums[1] = { 0 };
312 	int ret = 0;
313 
314 	if (priv->config.cqe_comp && !rxq_data->hw_timestamp &&
315 	    !rxq_data->lro) {
316 		cq_attr.cqe_comp_en = 1u;
317 		rxq_data->mcqe_format = priv->config.cqe_comp_fmt;
318 		rxq_data->byte_mask = UINT32_MAX;
319 		switch (priv->config.cqe_comp_fmt) {
320 		case MLX5_CQE_RESP_FORMAT_HASH:
321 			/* fallthrough */
322 		case MLX5_CQE_RESP_FORMAT_CSUM:
323 			/*
324 			 * Select CSUM miniCQE format only for non-vectorized
325 			 * MPRQ Rx burst, use HASH miniCQE format for others.
326 			 */
327 			if (mlx5_rxq_check_vec_support(rxq_data) < 0 &&
328 			    mlx5_rxq_mprq_enabled(rxq_data))
329 				cq_attr.mini_cqe_res_format =
330 					MLX5_CQE_RESP_FORMAT_CSUM_STRIDX;
331 			else
332 				cq_attr.mini_cqe_res_format =
333 					MLX5_CQE_RESP_FORMAT_HASH;
334 			rxq_data->mcqe_format = cq_attr.mini_cqe_res_format;
335 			break;
336 		case MLX5_CQE_RESP_FORMAT_FTAG_STRIDX:
337 			rxq_data->byte_mask = MLX5_LEN_WITH_MARK_MASK;
338 			/* fallthrough */
339 		case MLX5_CQE_RESP_FORMAT_CSUM_STRIDX:
340 			cq_attr.mini_cqe_res_format = priv->config.cqe_comp_fmt;
341 			break;
342 		case MLX5_CQE_RESP_FORMAT_L34H_STRIDX:
343 			cq_attr.mini_cqe_res_format = 0;
344 			cq_attr.mini_cqe_res_format_ext = 1;
345 			break;
346 		}
347 		DRV_LOG(DEBUG,
348 			"Port %u Rx CQE compression is enabled, format %d.",
349 			dev->data->port_id, priv->config.cqe_comp_fmt);
350 		/*
351 		 * For vectorized Rx, it must not be doubled in order to
352 		 * make cq_ci and rq_ci aligned.
353 		 */
354 		if (mlx5_rxq_check_vec_support(rxq_data) < 0)
355 			cqe_n *= 2;
356 	} else if (priv->config.cqe_comp && rxq_data->hw_timestamp) {
357 		DRV_LOG(DEBUG,
358 			"Port %u Rx CQE compression is disabled for HW"
359 			" timestamp.",
360 			dev->data->port_id);
361 	} else if (priv->config.cqe_comp && rxq_data->lro) {
362 		DRV_LOG(DEBUG,
363 			"Port %u Rx CQE compression is disabled for LRO.",
364 			dev->data->port_id);
365 	}
366 	cq_attr.uar_page_id = mlx5_os_get_devx_uar_page_id(sh->devx_rx_uar);
367 	log_cqe_n = log2above(cqe_n);
368 	/* Create CQ using DevX API. */
369 	ret = mlx5_devx_cq_create(sh->cdev->ctx, &rxq_ctrl->obj->cq_obj,
370 				  log_cqe_n, &cq_attr, sh->numa_node);
371 	if (ret)
372 		return ret;
373 	cq_obj = &rxq_ctrl->obj->cq_obj;
374 	rxq_data->cqes = (volatile struct mlx5_cqe (*)[])
375 							(uintptr_t)cq_obj->cqes;
376 	rxq_data->cq_db = cq_obj->db_rec;
377 	rxq_data->cq_uar = mlx5_os_get_devx_uar_base_addr(sh->devx_rx_uar);
378 	rxq_data->cqe_n = log_cqe_n;
379 	rxq_data->cqn = cq_obj->cq->id;
380 	if (rxq_ctrl->obj->devx_channel) {
381 		ret = mlx5_os_devx_subscribe_devx_event
382 					      (rxq_ctrl->obj->devx_channel,
383 					       cq_obj->cq->obj,
384 					       sizeof(event_nums),
385 					       event_nums,
386 					       (uint64_t)(uintptr_t)cq_obj->cq);
387 		if (ret) {
388 			DRV_LOG(ERR, "Fail to subscribe CQ to event channel.");
389 			ret = errno;
390 			mlx5_devx_cq_destroy(cq_obj);
391 			memset(cq_obj, 0, sizeof(*cq_obj));
392 			rte_errno = ret;
393 			return -ret;
394 		}
395 	}
396 	return 0;
397 }
398 
399 /**
400  * Create the Rx hairpin queue object.
401  *
402  * @param dev
403  *   Pointer to Ethernet device.
404  * @param idx
405  *   Queue index in DPDK Rx queue array.
406  *
407  * @return
408  *   0 on success, a negative errno value otherwise and rte_errno is set.
409  */
410 static int
411 mlx5_rxq_obj_hairpin_new(struct rte_eth_dev *dev, uint16_t idx)
412 {
413 	struct mlx5_priv *priv = dev->data->dev_private;
414 	struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
415 	struct mlx5_rxq_ctrl *rxq_ctrl =
416 		container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
417 	struct mlx5_devx_create_rq_attr attr = { 0 };
418 	struct mlx5_rxq_obj *tmpl = rxq_ctrl->obj;
419 	uint32_t max_wq_data;
420 
421 	MLX5_ASSERT(rxq_data);
422 	MLX5_ASSERT(tmpl);
423 	tmpl->rxq_ctrl = rxq_ctrl;
424 	attr.hairpin = 1;
425 	max_wq_data = priv->config.hca_attr.log_max_hairpin_wq_data_sz;
426 	/* Jumbo frames > 9KB should be supported, and more packets. */
427 	if (priv->config.log_hp_size != (uint32_t)MLX5_ARG_UNSET) {
428 		if (priv->config.log_hp_size > max_wq_data) {
429 			DRV_LOG(ERR, "Total data size %u power of 2 is "
430 				"too large for hairpin.",
431 				priv->config.log_hp_size);
432 			rte_errno = ERANGE;
433 			return -rte_errno;
434 		}
435 		attr.wq_attr.log_hairpin_data_sz = priv->config.log_hp_size;
436 	} else {
437 		attr.wq_attr.log_hairpin_data_sz =
438 				(max_wq_data < MLX5_HAIRPIN_JUMBO_LOG_SIZE) ?
439 				 max_wq_data : MLX5_HAIRPIN_JUMBO_LOG_SIZE;
440 	}
441 	/* Set the packets number to the maximum value for performance. */
442 	attr.wq_attr.log_hairpin_num_packets =
443 			attr.wq_attr.log_hairpin_data_sz -
444 			MLX5_HAIRPIN_QUEUE_STRIDE;
445 	attr.counter_set_id = priv->counter_set_id;
446 	tmpl->rq = mlx5_devx_cmd_create_rq(priv->sh->cdev->ctx, &attr,
447 					   rxq_ctrl->socket);
448 	if (!tmpl->rq) {
449 		DRV_LOG(ERR,
450 			"Port %u Rx hairpin queue %u can't create rq object.",
451 			dev->data->port_id, idx);
452 		rte_errno = errno;
453 		return -rte_errno;
454 	}
455 	dev->data->rx_queue_state[idx] = RTE_ETH_QUEUE_STATE_HAIRPIN;
456 	return 0;
457 }
458 
459 /**
460  * Create the Rx queue DevX object.
461  *
462  * @param dev
463  *   Pointer to Ethernet device.
464  * @param idx
465  *   Queue index in DPDK Rx queue array.
466  *
467  * @return
468  *   0 on success, a negative errno value otherwise and rte_errno is set.
469  */
470 static int
471 mlx5_rxq_devx_obj_new(struct rte_eth_dev *dev, uint16_t idx)
472 {
473 	struct mlx5_priv *priv = dev->data->dev_private;
474 	struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
475 	struct mlx5_rxq_ctrl *rxq_ctrl =
476 		container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
477 	struct mlx5_rxq_obj *tmpl = rxq_ctrl->obj;
478 	int ret = 0;
479 
480 	MLX5_ASSERT(rxq_data);
481 	MLX5_ASSERT(tmpl);
482 	if (rxq_ctrl->type == MLX5_RXQ_TYPE_HAIRPIN)
483 		return mlx5_rxq_obj_hairpin_new(dev, idx);
484 	tmpl->rxq_ctrl = rxq_ctrl;
485 	if (rxq_ctrl->irq) {
486 		int devx_ev_flag =
487 			  MLX5DV_DEVX_CREATE_EVENT_CHANNEL_FLAGS_OMIT_EV_DATA;
488 
489 		tmpl->devx_channel = mlx5_os_devx_create_event_channel
490 							(priv->sh->cdev->ctx,
491 							 devx_ev_flag);
492 		if (!tmpl->devx_channel) {
493 			rte_errno = errno;
494 			DRV_LOG(ERR, "Failed to create event channel %d.",
495 				rte_errno);
496 			goto error;
497 		}
498 		tmpl->fd = mlx5_os_get_devx_channel_fd(tmpl->devx_channel);
499 	}
500 	/* Create CQ using DevX API. */
501 	ret = mlx5_rxq_create_devx_cq_resources(dev, rxq_data);
502 	if (ret) {
503 		DRV_LOG(ERR, "Failed to create CQ.");
504 		goto error;
505 	}
506 	/* Create RQ using DevX API. */
507 	ret = mlx5_rxq_create_devx_rq_resources(dev, rxq_data);
508 	if (ret) {
509 		DRV_LOG(ERR, "Port %u Rx queue %u RQ creation failure.",
510 			dev->data->port_id, idx);
511 		rte_errno = ENOMEM;
512 		goto error;
513 	}
514 	/* Change queue state to ready. */
515 	ret = mlx5_devx_modify_rq(tmpl, MLX5_RXQ_MOD_RST2RDY);
516 	if (ret)
517 		goto error;
518 	rxq_data->wqes = (void *)(uintptr_t)tmpl->rq_obj.umem_buf;
519 	rxq_data->rq_db = (uint32_t *)(uintptr_t)tmpl->rq_obj.db_rec;
520 	rxq_data->cq_arm_sn = 0;
521 	rxq_data->cq_ci = 0;
522 	mlx5_rxq_initialize(rxq_data);
523 	dev->data->rx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED;
524 	rxq_ctrl->wqn = tmpl->rq_obj.rq->id;
525 	return 0;
526 error:
527 	ret = rte_errno; /* Save rte_errno before cleanup. */
528 	mlx5_rxq_devx_obj_release(tmpl);
529 	rte_errno = ret; /* Restore rte_errno. */
530 	return -rte_errno;
531 }
532 
533 /**
534  * Prepare RQT attribute structure for DevX RQT API.
535  *
536  * @param dev
537  *   Pointer to Ethernet device.
538  * @param log_n
539  *   Log of number of queues in the array.
540  * @param queues
541  *   List of RX queue indices or NULL, in which case
542  *   the attribute will be filled by drop queue ID.
543  * @param queues_n
544  *   Size of @p queues array or 0 if it is NULL.
545  * @param ind_tbl
546  *   DevX indirection table object.
547  *
548  * @return
549  *   The RQT attr object initialized, NULL otherwise and rte_errno is set.
550  */
551 static struct mlx5_devx_rqt_attr *
552 mlx5_devx_ind_table_create_rqt_attr(struct rte_eth_dev *dev,
553 				     const unsigned int log_n,
554 				     const uint16_t *queues,
555 				     const uint32_t queues_n)
556 {
557 	struct mlx5_priv *priv = dev->data->dev_private;
558 	struct mlx5_devx_rqt_attr *rqt_attr = NULL;
559 	const unsigned int rqt_n = 1 << log_n;
560 	unsigned int i, j;
561 
562 	rqt_attr = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rqt_attr) +
563 			      rqt_n * sizeof(uint32_t), 0, SOCKET_ID_ANY);
564 	if (!rqt_attr) {
565 		DRV_LOG(ERR, "Port %u cannot allocate RQT resources.",
566 			dev->data->port_id);
567 		rte_errno = ENOMEM;
568 		return NULL;
569 	}
570 	rqt_attr->rqt_max_size = priv->config.ind_table_max_size;
571 	rqt_attr->rqt_actual_size = rqt_n;
572 	if (queues == NULL) {
573 		for (i = 0; i < rqt_n; i++)
574 			rqt_attr->rq_list[i] = priv->drop_queue.rxq->rq->id;
575 		return rqt_attr;
576 	}
577 	for (i = 0; i != queues_n; ++i) {
578 		struct mlx5_rxq_data *rxq = (*priv->rxqs)[queues[i]];
579 		struct mlx5_rxq_ctrl *rxq_ctrl =
580 				container_of(rxq, struct mlx5_rxq_ctrl, rxq);
581 
582 		rqt_attr->rq_list[i] = rxq_ctrl->obj->rq_obj.rq->id;
583 	}
584 	MLX5_ASSERT(i > 0);
585 	for (j = 0; i != rqt_n; ++j, ++i)
586 		rqt_attr->rq_list[i] = rqt_attr->rq_list[j];
587 	return rqt_attr;
588 }
589 
590 /**
591  * Create RQT using DevX API as a filed of indirection table.
592  *
593  * @param dev
594  *   Pointer to Ethernet device.
595  * @param log_n
596  *   Log of number of queues in the array.
597  * @param ind_tbl
598  *   DevX indirection table object.
599  *
600  * @return
601  *   0 on success, a negative errno value otherwise and rte_errno is set.
602  */
603 static int
604 mlx5_devx_ind_table_new(struct rte_eth_dev *dev, const unsigned int log_n,
605 			struct mlx5_ind_table_obj *ind_tbl)
606 {
607 	struct mlx5_priv *priv = dev->data->dev_private;
608 	struct mlx5_devx_rqt_attr *rqt_attr = NULL;
609 	const uint16_t *queues = dev->data->dev_started ? ind_tbl->queues :
610 							  NULL;
611 
612 	MLX5_ASSERT(ind_tbl);
613 	rqt_attr = mlx5_devx_ind_table_create_rqt_attr(dev, log_n, queues,
614 						       ind_tbl->queues_n);
615 	if (!rqt_attr)
616 		return -rte_errno;
617 	ind_tbl->rqt = mlx5_devx_cmd_create_rqt(priv->sh->cdev->ctx, rqt_attr);
618 	mlx5_free(rqt_attr);
619 	if (!ind_tbl->rqt) {
620 		DRV_LOG(ERR, "Port %u cannot create DevX RQT.",
621 			dev->data->port_id);
622 		rte_errno = errno;
623 		return -rte_errno;
624 	}
625 	return 0;
626 }
627 
628 /**
629  * Modify RQT using DevX API as a filed of indirection table.
630  *
631  * @param dev
632  *   Pointer to Ethernet device.
633  * @param log_n
634  *   Log of number of queues in the array.
635  * @param ind_tbl
636  *   DevX indirection table object.
637  *
638  * @return
639  *   0 on success, a negative errno value otherwise and rte_errno is set.
640  */
641 static int
642 mlx5_devx_ind_table_modify(struct rte_eth_dev *dev, const unsigned int log_n,
643 			   const uint16_t *queues, const uint32_t queues_n,
644 			   struct mlx5_ind_table_obj *ind_tbl)
645 {
646 	int ret = 0;
647 	struct mlx5_devx_rqt_attr *rqt_attr = NULL;
648 
649 	MLX5_ASSERT(ind_tbl);
650 	rqt_attr = mlx5_devx_ind_table_create_rqt_attr(dev, log_n,
651 							queues,
652 							queues_n);
653 	if (!rqt_attr)
654 		return -rte_errno;
655 	ret = mlx5_devx_cmd_modify_rqt(ind_tbl->rqt, rqt_attr);
656 	mlx5_free(rqt_attr);
657 	if (ret)
658 		DRV_LOG(ERR, "Port %u cannot modify DevX RQT.",
659 			dev->data->port_id);
660 	return ret;
661 }
662 
663 /**
664  * Destroy the DevX RQT object.
665  *
666  * @param ind_table
667  *   Indirection table to release.
668  */
669 static void
670 mlx5_devx_ind_table_destroy(struct mlx5_ind_table_obj *ind_tbl)
671 {
672 	claim_zero(mlx5_devx_cmd_destroy(ind_tbl->rqt));
673 }
674 
675 /**
676  * Set TIR attribute struct with relevant input values.
677  *
678  * @param[in] dev
679  *   Pointer to Ethernet device.
680  * @param[in] rss_key
681  *   RSS key for the Rx hash queue.
682  * @param[in] hash_fields
683  *   Verbs protocol hash field to make the RSS on.
684  * @param[in] ind_tbl
685  *   Indirection table for TIR. If table queues array is NULL,
686  *   a TIR for drop queue is assumed.
687  * @param[in] tunnel
688  *   Tunnel type.
689  * @param[out] tir_attr
690  *   Parameters structure for TIR creation/modification.
691  *
692  * @return
693  *   The Verbs/DevX object initialised index, 0 otherwise and rte_errno is set.
694  */
695 static void
696 mlx5_devx_tir_attr_set(struct rte_eth_dev *dev, const uint8_t *rss_key,
697 		       uint64_t hash_fields,
698 		       const struct mlx5_ind_table_obj *ind_tbl,
699 		       int tunnel, struct mlx5_devx_tir_attr *tir_attr)
700 {
701 	struct mlx5_priv *priv = dev->data->dev_private;
702 	enum mlx5_rxq_type rxq_obj_type;
703 	bool lro = true;
704 	uint32_t i;
705 
706 	/* NULL queues designate drop queue. */
707 	if (ind_tbl->queues != NULL) {
708 		struct mlx5_rxq_data *rxq_data =
709 					(*priv->rxqs)[ind_tbl->queues[0]];
710 		struct mlx5_rxq_ctrl *rxq_ctrl =
711 			container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
712 		rxq_obj_type = rxq_ctrl->type;
713 
714 		/* Enable TIR LRO only if all the queues were configured for. */
715 		for (i = 0; i < ind_tbl->queues_n; ++i) {
716 			if (!(*priv->rxqs)[ind_tbl->queues[i]]->lro) {
717 				lro = false;
718 				break;
719 			}
720 		}
721 	} else {
722 		rxq_obj_type = priv->drop_queue.rxq->rxq_ctrl->type;
723 	}
724 	memset(tir_attr, 0, sizeof(*tir_attr));
725 	tir_attr->disp_type = MLX5_TIRC_DISP_TYPE_INDIRECT;
726 	tir_attr->rx_hash_fn = MLX5_RX_HASH_FN_TOEPLITZ;
727 	tir_attr->tunneled_offload_en = !!tunnel;
728 	/* If needed, translate hash_fields bitmap to PRM format. */
729 	if (hash_fields) {
730 		struct mlx5_rx_hash_field_select *rx_hash_field_select =
731 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
732 			hash_fields & IBV_RX_HASH_INNER ?
733 				&tir_attr->rx_hash_field_selector_inner :
734 #endif
735 				&tir_attr->rx_hash_field_selector_outer;
736 		/* 1 bit: 0: IPv4, 1: IPv6. */
737 		rx_hash_field_select->l3_prot_type =
738 					!!(hash_fields & MLX5_IPV6_IBV_RX_HASH);
739 		/* 1 bit: 0: TCP, 1: UDP. */
740 		rx_hash_field_select->l4_prot_type =
741 					!!(hash_fields & MLX5_UDP_IBV_RX_HASH);
742 		/* Bitmask which sets which fields to use in RX Hash. */
743 		rx_hash_field_select->selected_fields =
744 			((!!(hash_fields & MLX5_L3_SRC_IBV_RX_HASH)) <<
745 			 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_SRC_IP) |
746 			(!!(hash_fields & MLX5_L3_DST_IBV_RX_HASH)) <<
747 			 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_DST_IP |
748 			(!!(hash_fields & MLX5_L4_SRC_IBV_RX_HASH)) <<
749 			 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_SPORT |
750 			(!!(hash_fields & MLX5_L4_DST_IBV_RX_HASH)) <<
751 			 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_DPORT;
752 	}
753 	if (rxq_obj_type == MLX5_RXQ_TYPE_HAIRPIN)
754 		tir_attr->transport_domain = priv->sh->td->id;
755 	else
756 		tir_attr->transport_domain = priv->sh->tdn;
757 	memcpy(tir_attr->rx_hash_toeplitz_key, rss_key, MLX5_RSS_HASH_KEY_LEN);
758 	tir_attr->indirect_table = ind_tbl->rqt->id;
759 	if (dev->data->dev_conf.lpbk_mode)
760 		tir_attr->self_lb_block =
761 					MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST;
762 	if (lro) {
763 		tir_attr->lro_timeout_period_usecs = priv->config.lro.timeout;
764 		tir_attr->lro_max_msg_sz = priv->max_lro_msg_size;
765 		tir_attr->lro_enable_mask =
766 				MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
767 				MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO;
768 	}
769 }
770 
771 /**
772  * Create an Rx Hash queue.
773  *
774  * @param dev
775  *   Pointer to Ethernet device.
776  * @param hrxq
777  *   Pointer to Rx Hash queue.
778  * @param tunnel
779  *   Tunnel type.
780  *
781  * @return
782  *   0 on success, a negative errno value otherwise and rte_errno is set.
783  */
784 static int
785 mlx5_devx_hrxq_new(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
786 		   int tunnel __rte_unused)
787 {
788 	struct mlx5_priv *priv = dev->data->dev_private;
789 	struct mlx5_devx_tir_attr tir_attr = {0};
790 	int err;
791 
792 	mlx5_devx_tir_attr_set(dev, hrxq->rss_key, hrxq->hash_fields,
793 			       hrxq->ind_table, tunnel, &tir_attr);
794 	hrxq->tir = mlx5_devx_cmd_create_tir(priv->sh->cdev->ctx, &tir_attr);
795 	if (!hrxq->tir) {
796 		DRV_LOG(ERR, "Port %u cannot create DevX TIR.",
797 			dev->data->port_id);
798 		rte_errno = errno;
799 		goto error;
800 	}
801 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
802 	if (mlx5_flow_os_create_flow_action_dest_devx_tir(hrxq->tir,
803 							  &hrxq->action)) {
804 		rte_errno = errno;
805 		goto error;
806 	}
807 #endif
808 	return 0;
809 error:
810 	err = rte_errno; /* Save rte_errno before cleanup. */
811 	if (hrxq->tir)
812 		claim_zero(mlx5_devx_cmd_destroy(hrxq->tir));
813 	rte_errno = err; /* Restore rte_errno. */
814 	return -rte_errno;
815 }
816 
817 /**
818  * Destroy a DevX TIR object.
819  *
820  * @param hrxq
821  *   Hash Rx queue to release its tir.
822  */
823 static void
824 mlx5_devx_tir_destroy(struct mlx5_hrxq *hrxq)
825 {
826 	claim_zero(mlx5_devx_cmd_destroy(hrxq->tir));
827 }
828 
829 /**
830  * Modify an Rx Hash queue configuration.
831  *
832  * @param dev
833  *   Pointer to Ethernet device.
834  * @param hrxq
835  *   Hash Rx queue to modify.
836  * @param rss_key
837  *   RSS key for the Rx hash queue.
838  * @param hash_fields
839  *   Verbs protocol hash field to make the RSS on.
840  * @param[in] ind_tbl
841  *   Indirection table for TIR.
842  *
843  * @return
844  *   0 on success, a negative errno value otherwise and rte_errno is set.
845  */
846 static int
847 mlx5_devx_hrxq_modify(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
848 		       const uint8_t *rss_key,
849 		       uint64_t hash_fields,
850 		       const struct mlx5_ind_table_obj *ind_tbl)
851 {
852 	struct mlx5_devx_modify_tir_attr modify_tir = {0};
853 
854 	/*
855 	 * untested for modification fields:
856 	 * - rx_hash_symmetric not set in hrxq_new(),
857 	 * - rx_hash_fn set hard-coded in hrxq_new(),
858 	 * - lro_xxx not set after rxq setup
859 	 */
860 	if (ind_tbl != hrxq->ind_table)
861 		modify_tir.modify_bitmask |=
862 			MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_INDIRECT_TABLE;
863 	if (hash_fields != hrxq->hash_fields ||
864 			memcmp(hrxq->rss_key, rss_key, MLX5_RSS_HASH_KEY_LEN))
865 		modify_tir.modify_bitmask |=
866 			MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_HASH;
867 	mlx5_devx_tir_attr_set(dev, rss_key, hash_fields, ind_tbl,
868 			       0, /* N/A - tunnel modification unsupported */
869 			       &modify_tir.tir);
870 	modify_tir.tirn = hrxq->tir->id;
871 	if (mlx5_devx_cmd_modify_tir(hrxq->tir, &modify_tir)) {
872 		DRV_LOG(ERR, "port %u cannot modify DevX TIR",
873 			dev->data->port_id);
874 		rte_errno = errno;
875 		return -rte_errno;
876 	}
877 	return 0;
878 }
879 
880 /**
881  * Create a DevX drop Rx queue.
882  *
883  * @param dev
884  *   Pointer to Ethernet device.
885  *
886  * @return
887  *   0 on success, a negative errno value otherwise and rte_errno is set.
888  */
889 static int
890 mlx5_rxq_devx_obj_drop_create(struct rte_eth_dev *dev)
891 {
892 	struct mlx5_priv *priv = dev->data->dev_private;
893 	int socket_id = dev->device->numa_node;
894 	struct mlx5_rxq_ctrl *rxq_ctrl;
895 	struct mlx5_rxq_data *rxq_data;
896 	struct mlx5_rxq_obj *rxq = NULL;
897 	int ret;
898 
899 	/*
900 	 * Initialize dummy control structures.
901 	 * They are required to hold pointers for cleanup
902 	 * and are only accessible via drop queue DevX objects.
903 	 */
904 	rxq_ctrl = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rxq_ctrl),
905 			       0, socket_id);
906 	if (rxq_ctrl == NULL) {
907 		DRV_LOG(ERR, "Port %u could not allocate drop queue control",
908 			dev->data->port_id);
909 		rte_errno = ENOMEM;
910 		goto error;
911 	}
912 	rxq = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rxq), 0, socket_id);
913 	if (rxq == NULL) {
914 		DRV_LOG(ERR, "Port %u could not allocate drop queue object",
915 			dev->data->port_id);
916 		rte_errno = ENOMEM;
917 		goto error;
918 	}
919 	rxq->rxq_ctrl = rxq_ctrl;
920 	rxq_ctrl->type = MLX5_RXQ_TYPE_STANDARD;
921 	rxq_ctrl->priv = priv;
922 	rxq_ctrl->obj = rxq;
923 	rxq_data = &rxq_ctrl->rxq;
924 	/* Create CQ using DevX API. */
925 	ret = mlx5_rxq_create_devx_cq_resources(dev, rxq_data);
926 	if (ret != 0) {
927 		DRV_LOG(ERR, "Port %u drop queue CQ creation failed.",
928 			dev->data->port_id);
929 		goto error;
930 	}
931 	/* Create RQ using DevX API. */
932 	ret = mlx5_rxq_create_devx_rq_resources(dev, rxq_data);
933 	if (ret != 0) {
934 		DRV_LOG(ERR, "Port %u drop queue RQ creation failed.",
935 			dev->data->port_id);
936 		rte_errno = ENOMEM;
937 		goto error;
938 	}
939 	/* Change queue state to ready. */
940 	ret = mlx5_devx_modify_rq(rxq, MLX5_RXQ_MOD_RST2RDY);
941 	if (ret != 0)
942 		goto error;
943 	/* Initialize drop queue. */
944 	priv->drop_queue.rxq = rxq;
945 	return 0;
946 error:
947 	ret = rte_errno; /* Save rte_errno before cleanup. */
948 	if (rxq != NULL) {
949 		if (rxq->rq_obj.rq != NULL)
950 			mlx5_devx_rq_destroy(&rxq->rq_obj);
951 		if (rxq->cq_obj.cq != NULL)
952 			mlx5_devx_cq_destroy(&rxq->cq_obj);
953 		if (rxq->devx_channel)
954 			mlx5_os_devx_destroy_event_channel
955 							(rxq->devx_channel);
956 		mlx5_free(rxq);
957 	}
958 	if (rxq_ctrl != NULL)
959 		mlx5_free(rxq_ctrl);
960 	rte_errno = ret; /* Restore rte_errno. */
961 	return -rte_errno;
962 }
963 
964 /**
965  * Release drop Rx queue resources.
966  *
967  * @param dev
968  *   Pointer to Ethernet device.
969  */
970 static void
971 mlx5_rxq_devx_obj_drop_release(struct rte_eth_dev *dev)
972 {
973 	struct mlx5_priv *priv = dev->data->dev_private;
974 	struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq;
975 	struct mlx5_rxq_ctrl *rxq_ctrl = rxq->rxq_ctrl;
976 
977 	mlx5_rxq_devx_obj_release(rxq);
978 	mlx5_free(rxq);
979 	mlx5_free(rxq_ctrl);
980 	priv->drop_queue.rxq = NULL;
981 }
982 
983 /**
984  * Release a drop hash Rx queue.
985  *
986  * @param dev
987  *   Pointer to Ethernet device.
988  */
989 static void
990 mlx5_devx_drop_action_destroy(struct rte_eth_dev *dev)
991 {
992 	struct mlx5_priv *priv = dev->data->dev_private;
993 	struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
994 
995 	if (hrxq->tir != NULL)
996 		mlx5_devx_tir_destroy(hrxq);
997 	if (hrxq->ind_table->ind_table != NULL)
998 		mlx5_devx_ind_table_destroy(hrxq->ind_table);
999 	if (priv->drop_queue.rxq->rq != NULL)
1000 		mlx5_rxq_devx_obj_drop_release(dev);
1001 }
1002 
1003 /**
1004  * Create a DevX drop action for Rx Hash queue.
1005  *
1006  * @param dev
1007  *   Pointer to Ethernet device.
1008  *
1009  * @return
1010  *   0 on success, a negative errno value otherwise and rte_errno is set.
1011  */
1012 static int
1013 mlx5_devx_drop_action_create(struct rte_eth_dev *dev)
1014 {
1015 	struct mlx5_priv *priv = dev->data->dev_private;
1016 	struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
1017 	int ret;
1018 
1019 	ret = mlx5_rxq_devx_obj_drop_create(dev);
1020 	if (ret != 0) {
1021 		DRV_LOG(ERR, "Cannot create drop RX queue");
1022 		return ret;
1023 	}
1024 	/* hrxq->ind_table queues are NULL, drop RX queue ID will be used */
1025 	ret = mlx5_devx_ind_table_new(dev, 0, hrxq->ind_table);
1026 	if (ret != 0) {
1027 		DRV_LOG(ERR, "Cannot create drop hash RX queue indirection table");
1028 		goto error;
1029 	}
1030 	ret = mlx5_devx_hrxq_new(dev, hrxq, /* tunnel */ false);
1031 	if (ret != 0) {
1032 		DRV_LOG(ERR, "Cannot create drop hash RX queue");
1033 		goto error;
1034 	}
1035 	return 0;
1036 error:
1037 	mlx5_devx_drop_action_destroy(dev);
1038 	return ret;
1039 }
1040 
1041 /**
1042  * Select TXQ TIS number.
1043  *
1044  * @param dev
1045  *   Pointer to Ethernet device.
1046  * @param queue_idx
1047  *   Queue index in DPDK Tx queue array.
1048  *
1049  * @return
1050  *   > 0 on success, a negative errno value otherwise.
1051  */
1052 static uint32_t
1053 mlx5_get_txq_tis_num(struct rte_eth_dev *dev, uint16_t queue_idx)
1054 {
1055 	struct mlx5_priv *priv = dev->data->dev_private;
1056 	int tis_idx;
1057 
1058 	if (priv->sh->bond.n_port && priv->sh->lag.affinity_mode ==
1059 			MLX5_LAG_MODE_TIS) {
1060 		tis_idx = (priv->lag_affinity_idx + queue_idx) %
1061 			priv->sh->bond.n_port;
1062 		DRV_LOG(INFO, "port %d txq %d gets affinity %d and maps to PF %d.",
1063 			dev->data->port_id, queue_idx, tis_idx + 1,
1064 			priv->sh->lag.tx_remap_affinity[tis_idx]);
1065 	} else {
1066 		tis_idx = 0;
1067 	}
1068 	MLX5_ASSERT(priv->sh->tis[tis_idx]);
1069 	return priv->sh->tis[tis_idx]->id;
1070 }
1071 
1072 /**
1073  * Create the Tx hairpin queue object.
1074  *
1075  * @param dev
1076  *   Pointer to Ethernet device.
1077  * @param idx
1078  *   Queue index in DPDK Tx queue array.
1079  *
1080  * @return
1081  *   0 on success, a negative errno value otherwise and rte_errno is set.
1082  */
1083 static int
1084 mlx5_txq_obj_hairpin_new(struct rte_eth_dev *dev, uint16_t idx)
1085 {
1086 	struct mlx5_priv *priv = dev->data->dev_private;
1087 	struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
1088 	struct mlx5_txq_ctrl *txq_ctrl =
1089 		container_of(txq_data, struct mlx5_txq_ctrl, txq);
1090 	struct mlx5_devx_create_sq_attr attr = { 0 };
1091 	struct mlx5_txq_obj *tmpl = txq_ctrl->obj;
1092 	uint32_t max_wq_data;
1093 
1094 	MLX5_ASSERT(txq_data);
1095 	MLX5_ASSERT(tmpl);
1096 	tmpl->txq_ctrl = txq_ctrl;
1097 	attr.hairpin = 1;
1098 	attr.tis_lst_sz = 1;
1099 	max_wq_data = priv->config.hca_attr.log_max_hairpin_wq_data_sz;
1100 	/* Jumbo frames > 9KB should be supported, and more packets. */
1101 	if (priv->config.log_hp_size != (uint32_t)MLX5_ARG_UNSET) {
1102 		if (priv->config.log_hp_size > max_wq_data) {
1103 			DRV_LOG(ERR, "Total data size %u power of 2 is "
1104 				"too large for hairpin.",
1105 				priv->config.log_hp_size);
1106 			rte_errno = ERANGE;
1107 			return -rte_errno;
1108 		}
1109 		attr.wq_attr.log_hairpin_data_sz = priv->config.log_hp_size;
1110 	} else {
1111 		attr.wq_attr.log_hairpin_data_sz =
1112 				(max_wq_data < MLX5_HAIRPIN_JUMBO_LOG_SIZE) ?
1113 				 max_wq_data : MLX5_HAIRPIN_JUMBO_LOG_SIZE;
1114 	}
1115 	/* Set the packets number to the maximum value for performance. */
1116 	attr.wq_attr.log_hairpin_num_packets =
1117 			attr.wq_attr.log_hairpin_data_sz -
1118 			MLX5_HAIRPIN_QUEUE_STRIDE;
1119 
1120 	attr.tis_num = mlx5_get_txq_tis_num(dev, idx);
1121 	tmpl->sq = mlx5_devx_cmd_create_sq(priv->sh->cdev->ctx, &attr);
1122 	if (!tmpl->sq) {
1123 		DRV_LOG(ERR,
1124 			"Port %u tx hairpin queue %u can't create SQ object.",
1125 			dev->data->port_id, idx);
1126 		rte_errno = errno;
1127 		return -rte_errno;
1128 	}
1129 	return 0;
1130 }
1131 
1132 #if defined(HAVE_MLX5DV_DEVX_UAR_OFFSET) || !defined(HAVE_INFINIBAND_VERBS_H)
1133 /**
1134  * Destroy the Tx queue DevX object.
1135  *
1136  * @param txq_obj
1137  *   Txq object to destroy.
1138  */
1139 static void
1140 mlx5_txq_release_devx_resources(struct mlx5_txq_obj *txq_obj)
1141 {
1142 	mlx5_devx_sq_destroy(&txq_obj->sq_obj);
1143 	memset(&txq_obj->sq_obj, 0, sizeof(txq_obj->sq_obj));
1144 	mlx5_devx_cq_destroy(&txq_obj->cq_obj);
1145 	memset(&txq_obj->cq_obj, 0, sizeof(txq_obj->cq_obj));
1146 }
1147 
1148 /**
1149  * Create a SQ object and its resources using DevX.
1150  *
1151  * @param dev
1152  *   Pointer to Ethernet device.
1153  * @param idx
1154  *   Queue index in DPDK Tx queue array.
1155  * @param[in] log_desc_n
1156  *   Log of number of descriptors in queue.
1157  *
1158  * @return
1159  *   0 on success, a negative errno value otherwise and rte_errno is set.
1160  */
1161 static int
1162 mlx5_txq_create_devx_sq_resources(struct rte_eth_dev *dev, uint16_t idx,
1163 				  uint16_t log_desc_n)
1164 {
1165 	struct mlx5_priv *priv = dev->data->dev_private;
1166 	struct mlx5_common_device *cdev = priv->sh->cdev;
1167 	struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
1168 	struct mlx5_txq_ctrl *txq_ctrl =
1169 			container_of(txq_data, struct mlx5_txq_ctrl, txq);
1170 	struct mlx5_txq_obj *txq_obj = txq_ctrl->obj;
1171 	struct mlx5_devx_create_sq_attr sq_attr = {
1172 		.flush_in_error_en = 1,
1173 		.allow_multi_pkt_send_wqe = !!priv->config.mps,
1174 		.min_wqe_inline_mode = priv->config.hca_attr.vport_inline_mode,
1175 		.allow_swp = !!priv->config.swp,
1176 		.cqn = txq_obj->cq_obj.cq->id,
1177 		.tis_lst_sz = 1,
1178 		.wq_attr = (struct mlx5_devx_wq_attr){
1179 			.pd = cdev->pdn,
1180 			.uar_page =
1181 				 mlx5_os_get_devx_uar_page_id(priv->sh->tx_uar),
1182 		},
1183 		.ts_format =
1184 			mlx5_ts_format_conv(cdev->config.hca_attr.sq_ts_format),
1185 		.tis_num = mlx5_get_txq_tis_num(dev, idx),
1186 	};
1187 
1188 	/* Create Send Queue object with DevX. */
1189 	return mlx5_devx_sq_create(cdev->ctx, &txq_obj->sq_obj,
1190 				   log_desc_n, &sq_attr, priv->sh->numa_node);
1191 }
1192 #endif
1193 
1194 /**
1195  * Create the Tx queue DevX object.
1196  *
1197  * @param dev
1198  *   Pointer to Ethernet device.
1199  * @param idx
1200  *   Queue index in DPDK Tx queue array.
1201  *
1202  * @return
1203  *   0 on success, a negative errno value otherwise and rte_errno is set.
1204  */
1205 int
1206 mlx5_txq_devx_obj_new(struct rte_eth_dev *dev, uint16_t idx)
1207 {
1208 	struct mlx5_priv *priv = dev->data->dev_private;
1209 	struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
1210 	struct mlx5_txq_ctrl *txq_ctrl =
1211 			container_of(txq_data, struct mlx5_txq_ctrl, txq);
1212 
1213 	if (txq_ctrl->type == MLX5_TXQ_TYPE_HAIRPIN)
1214 		return mlx5_txq_obj_hairpin_new(dev, idx);
1215 #if !defined(HAVE_MLX5DV_DEVX_UAR_OFFSET) && defined(HAVE_INFINIBAND_VERBS_H)
1216 	DRV_LOG(ERR, "Port %u Tx queue %u cannot create with DevX, no UAR.",
1217 		     dev->data->port_id, idx);
1218 	rte_errno = ENOMEM;
1219 	return -rte_errno;
1220 #else
1221 	struct mlx5_dev_ctx_shared *sh = priv->sh;
1222 	struct mlx5_txq_obj *txq_obj = txq_ctrl->obj;
1223 	struct mlx5_devx_cq_attr cq_attr = {
1224 		.uar_page_id = mlx5_os_get_devx_uar_page_id(sh->tx_uar),
1225 	};
1226 	void *reg_addr;
1227 	uint32_t cqe_n, log_desc_n;
1228 	uint32_t wqe_n, wqe_size;
1229 	int ret = 0;
1230 
1231 	MLX5_ASSERT(txq_data);
1232 	MLX5_ASSERT(txq_obj);
1233 	txq_obj->txq_ctrl = txq_ctrl;
1234 	txq_obj->dev = dev;
1235 	cqe_n = (1UL << txq_data->elts_n) / MLX5_TX_COMP_THRESH +
1236 		1 + MLX5_TX_COMP_THRESH_INLINE_DIV;
1237 	log_desc_n = log2above(cqe_n);
1238 	cqe_n = 1UL << log_desc_n;
1239 	if (cqe_n > UINT16_MAX) {
1240 		DRV_LOG(ERR, "Port %u Tx queue %u requests to many CQEs %u.",
1241 			dev->data->port_id, txq_data->idx, cqe_n);
1242 		rte_errno = EINVAL;
1243 		return 0;
1244 	}
1245 	/* Create completion queue object with DevX. */
1246 	ret = mlx5_devx_cq_create(sh->cdev->ctx, &txq_obj->cq_obj, log_desc_n,
1247 				  &cq_attr, priv->sh->numa_node);
1248 	if (ret) {
1249 		DRV_LOG(ERR, "Port %u Tx queue %u CQ creation failure.",
1250 			dev->data->port_id, idx);
1251 		goto error;
1252 	}
1253 	txq_data->cqe_n = log_desc_n;
1254 	txq_data->cqe_s = cqe_n;
1255 	txq_data->cqe_m = txq_data->cqe_s - 1;
1256 	txq_data->cqes = txq_obj->cq_obj.cqes;
1257 	txq_data->cq_ci = 0;
1258 	txq_data->cq_pi = 0;
1259 	txq_data->cq_db = txq_obj->cq_obj.db_rec;
1260 	*txq_data->cq_db = 0;
1261 	/*
1262 	 * Adjust the amount of WQEs depending on inline settings.
1263 	 * The number of descriptors should be enough to handle
1264 	 * the specified number of packets. If queue is being created
1265 	 * with Verbs the rdma-core does queue size adjustment
1266 	 * internally in the mlx5_calc_sq_size(), we do the same
1267 	 * for the queue being created with DevX at this point.
1268 	 */
1269 	wqe_size = txq_data->tso_en ?
1270 		   RTE_ALIGN(txq_ctrl->max_tso_header, MLX5_WSEG_SIZE) : 0;
1271 	wqe_size += sizeof(struct mlx5_wqe_cseg) +
1272 		    sizeof(struct mlx5_wqe_eseg) +
1273 		    sizeof(struct mlx5_wqe_dseg);
1274 	if (txq_data->inlen_send)
1275 		wqe_size = RTE_MAX(wqe_size, sizeof(struct mlx5_wqe_cseg) +
1276 					     sizeof(struct mlx5_wqe_eseg) +
1277 					     RTE_ALIGN(txq_data->inlen_send +
1278 						       sizeof(uint32_t),
1279 						       MLX5_WSEG_SIZE));
1280 	wqe_size = RTE_ALIGN(wqe_size, MLX5_WQE_SIZE) / MLX5_WQE_SIZE;
1281 	/* Create Send Queue object with DevX. */
1282 	wqe_n = RTE_MIN((1UL << txq_data->elts_n) * wqe_size,
1283 			(uint32_t)priv->sh->device_attr.max_qp_wr);
1284 	log_desc_n = log2above(wqe_n);
1285 	ret = mlx5_txq_create_devx_sq_resources(dev, idx, log_desc_n);
1286 	if (ret) {
1287 		DRV_LOG(ERR, "Port %u Tx queue %u SQ creation failure.",
1288 			dev->data->port_id, idx);
1289 		rte_errno = errno;
1290 		goto error;
1291 	}
1292 	/* Create the Work Queue. */
1293 	txq_data->wqe_n = log_desc_n;
1294 	txq_data->wqe_s = 1 << txq_data->wqe_n;
1295 	txq_data->wqe_m = txq_data->wqe_s - 1;
1296 	txq_data->wqes = (struct mlx5_wqe *)(uintptr_t)txq_obj->sq_obj.wqes;
1297 	txq_data->wqes_end = txq_data->wqes + txq_data->wqe_s;
1298 	txq_data->wqe_ci = 0;
1299 	txq_data->wqe_pi = 0;
1300 	txq_data->wqe_comp = 0;
1301 	txq_data->wqe_thres = txq_data->wqe_s / MLX5_TX_COMP_THRESH_INLINE_DIV;
1302 	txq_data->qp_db = &txq_obj->sq_obj.db_rec[MLX5_SND_DBR];
1303 	*txq_data->qp_db = 0;
1304 	txq_data->qp_num_8s = txq_obj->sq_obj.sq->id << 8;
1305 	/* Change Send Queue state to Ready-to-Send. */
1306 	ret = mlx5_txq_devx_modify(txq_obj, MLX5_TXQ_MOD_RST2RDY, 0);
1307 	if (ret) {
1308 		rte_errno = errno;
1309 		DRV_LOG(ERR,
1310 			"Port %u Tx queue %u SQ state to SQC_STATE_RDY failed.",
1311 			dev->data->port_id, idx);
1312 		goto error;
1313 	}
1314 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1315 	/*
1316 	 * If using DevX need to query and store TIS transport domain value.
1317 	 * This is done once per port.
1318 	 * Will use this value on Rx, when creating matching TIR.
1319 	 */
1320 	if (!priv->sh->tdn)
1321 		priv->sh->tdn = priv->sh->td->id;
1322 #endif
1323 	MLX5_ASSERT(sh->tx_uar);
1324 	reg_addr = mlx5_os_get_devx_uar_reg_addr(sh->tx_uar);
1325 	MLX5_ASSERT(reg_addr);
1326 	txq_ctrl->bf_reg = reg_addr;
1327 	txq_ctrl->uar_mmap_offset =
1328 				mlx5_os_get_devx_uar_mmap_offset(sh->tx_uar);
1329 	txq_uar_init(txq_ctrl);
1330 	dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED;
1331 	return 0;
1332 error:
1333 	ret = rte_errno; /* Save rte_errno before cleanup. */
1334 	mlx5_txq_release_devx_resources(txq_obj);
1335 	rte_errno = ret; /* Restore rte_errno. */
1336 	return -rte_errno;
1337 #endif
1338 }
1339 
1340 /**
1341  * Release an Tx DevX queue object.
1342  *
1343  * @param txq_obj
1344  *   DevX Tx queue object.
1345  */
1346 void
1347 mlx5_txq_devx_obj_release(struct mlx5_txq_obj *txq_obj)
1348 {
1349 	MLX5_ASSERT(txq_obj);
1350 	if (txq_obj->txq_ctrl->type == MLX5_TXQ_TYPE_HAIRPIN) {
1351 		if (txq_obj->tis)
1352 			claim_zero(mlx5_devx_cmd_destroy(txq_obj->tis));
1353 #if defined(HAVE_MLX5DV_DEVX_UAR_OFFSET) || !defined(HAVE_INFINIBAND_VERBS_H)
1354 	} else {
1355 		mlx5_txq_release_devx_resources(txq_obj);
1356 #endif
1357 	}
1358 }
1359 
1360 struct mlx5_obj_ops devx_obj_ops = {
1361 	.rxq_obj_modify_vlan_strip = mlx5_rxq_obj_modify_rq_vlan_strip,
1362 	.rxq_obj_new = mlx5_rxq_devx_obj_new,
1363 	.rxq_event_get = mlx5_rx_devx_get_event,
1364 	.rxq_obj_modify = mlx5_devx_modify_rq,
1365 	.rxq_obj_release = mlx5_rxq_devx_obj_release,
1366 	.ind_table_new = mlx5_devx_ind_table_new,
1367 	.ind_table_modify = mlx5_devx_ind_table_modify,
1368 	.ind_table_destroy = mlx5_devx_ind_table_destroy,
1369 	.hrxq_new = mlx5_devx_hrxq_new,
1370 	.hrxq_destroy = mlx5_devx_tir_destroy,
1371 	.hrxq_modify = mlx5_devx_hrxq_modify,
1372 	.drop_action_create = mlx5_devx_drop_action_create,
1373 	.drop_action_destroy = mlx5_devx_drop_action_destroy,
1374 	.txq_obj_new = mlx5_txq_devx_obj_new,
1375 	.txq_obj_modify = mlx5_txq_devx_modify,
1376 	.txq_obj_release = mlx5_txq_devx_obj_release,
1377 	.lb_dummy_queue_create = NULL,
1378 	.lb_dummy_queue_release = NULL,
1379 };
1380