1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015 Mellanox Technologies, Ltd
11 #include <sys/queue.h>
14 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
16 #pragma GCC diagnostic ignored "-Wpedantic"
18 #include <infiniband/verbs.h>
19 #include <infiniband/mlx5dv.h>
21 #pragma GCC diagnostic error "-Wpedantic"
25 #include <rte_malloc.h>
26 #include <rte_ethdev_driver.h>
27 #include <rte_common.h>
28 #include <rte_interrupts.h>
29 #include <rte_debug.h>
32 #include <mlx5_glue.h>
33 #include <mlx5_devx_cmds.h>
35 #include "mlx5_defs.h"
37 #include "mlx5_common_os.h"
38 #include "mlx5_rxtx.h"
39 #include "mlx5_utils.h"
40 #include "mlx5_autoconf.h"
41 #include "mlx5_flow.h"
44 /* Default RSS hash key also used for ConnectX-3. */
45 uint8_t rss_hash_default_key[] = {
46 0x2c, 0xc6, 0x81, 0xd1,
47 0x5b, 0xdb, 0xf4, 0xf7,
48 0xfc, 0xa2, 0x83, 0x19,
49 0xdb, 0x1a, 0x3e, 0x94,
50 0x6b, 0x9e, 0x38, 0xd9,
51 0x2c, 0x9c, 0x03, 0xd1,
52 0xad, 0x99, 0x44, 0xa7,
53 0xd9, 0x56, 0x3d, 0x59,
54 0x06, 0x3c, 0x25, 0xf3,
55 0xfc, 0x1f, 0xdc, 0x2a,
58 /* Length of the default RSS hash key. */
59 static_assert(MLX5_RSS_HASH_KEY_LEN ==
60 (unsigned int)sizeof(rss_hash_default_key),
61 "wrong RSS default key size.");
64 * Check whether Multi-Packet RQ can be enabled for the device.
67 * Pointer to Ethernet device.
70 * 1 if supported, negative errno value if not.
73 mlx5_check_mprq_support(struct rte_eth_dev *dev)
75 struct mlx5_priv *priv = dev->data->dev_private;
77 if (priv->config.mprq.enabled &&
78 priv->rxqs_n >= priv->config.mprq.min_rxqs_num)
84 * Check whether Multi-Packet RQ is enabled for the Rx queue.
87 * Pointer to receive queue structure.
90 * 0 if disabled, otherwise enabled.
93 mlx5_rxq_mprq_enabled(struct mlx5_rxq_data *rxq)
95 return rxq->strd_num_n > 0;
99 * Check whether Multi-Packet RQ is enabled for the device.
102 * Pointer to Ethernet device.
105 * 0 if disabled, otherwise enabled.
108 mlx5_mprq_enabled(struct rte_eth_dev *dev)
110 struct mlx5_priv *priv = dev->data->dev_private;
115 if (mlx5_check_mprq_support(dev) < 0)
117 /* All the configured queues should be enabled. */
118 for (i = 0; i < priv->rxqs_n; ++i) {
119 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
120 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
121 (rxq, struct mlx5_rxq_ctrl, rxq);
123 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
126 if (mlx5_rxq_mprq_enabled(rxq))
129 /* Multi-Packet RQ can't be partially configured. */
130 MLX5_ASSERT(n == 0 || n == n_ibv);
135 * Allocate RX queue elements for Multi-Packet RQ.
138 * Pointer to RX queue structure.
141 * 0 on success, a negative errno value otherwise and rte_errno is set.
144 rxq_alloc_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
146 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
147 unsigned int wqe_n = 1 << rxq->elts_n;
151 /* Iterate on segments. */
152 for (i = 0; i <= wqe_n; ++i) {
153 struct mlx5_mprq_buf *buf;
155 if (rte_mempool_get(rxq->mprq_mp, (void **)&buf) < 0) {
156 DRV_LOG(ERR, "port %u empty mbuf pool", rxq->port_id);
161 (*rxq->mprq_bufs)[i] = buf;
163 rxq->mprq_repl = buf;
166 "port %u Rx queue %u allocated and configured %u segments",
167 rxq->port_id, rxq->idx, wqe_n);
170 err = rte_errno; /* Save rte_errno before cleanup. */
172 for (i = 0; (i != wqe_n); ++i) {
173 if ((*rxq->mprq_bufs)[i] != NULL)
174 rte_mempool_put(rxq->mprq_mp,
175 (*rxq->mprq_bufs)[i]);
176 (*rxq->mprq_bufs)[i] = NULL;
178 DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
179 rxq->port_id, rxq->idx);
180 rte_errno = err; /* Restore rte_errno. */
185 * Allocate RX queue elements for Single-Packet RQ.
188 * Pointer to RX queue structure.
191 * 0 on success, errno value on failure.
194 rxq_alloc_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
196 const unsigned int sges_n = 1 << rxq_ctrl->rxq.sges_n;
197 unsigned int elts_n = 1 << rxq_ctrl->rxq.elts_n;
201 /* Iterate on segments. */
202 for (i = 0; (i != elts_n); ++i) {
203 struct rte_mbuf *buf;
205 buf = rte_pktmbuf_alloc(rxq_ctrl->rxq.mp);
207 DRV_LOG(ERR, "port %u empty mbuf pool",
208 PORT_ID(rxq_ctrl->priv));
212 /* Headroom is reserved by rte_pktmbuf_alloc(). */
213 MLX5_ASSERT(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
214 /* Buffer is supposed to be empty. */
215 MLX5_ASSERT(rte_pktmbuf_data_len(buf) == 0);
216 MLX5_ASSERT(rte_pktmbuf_pkt_len(buf) == 0);
217 MLX5_ASSERT(!buf->next);
218 /* Only the first segment keeps headroom. */
220 SET_DATA_OFF(buf, 0);
221 PORT(buf) = rxq_ctrl->rxq.port_id;
222 DATA_LEN(buf) = rte_pktmbuf_tailroom(buf);
223 PKT_LEN(buf) = DATA_LEN(buf);
225 (*rxq_ctrl->rxq.elts)[i] = buf;
227 /* If Rx vector is activated. */
228 if (mlx5_rxq_check_vec_support(&rxq_ctrl->rxq) > 0) {
229 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
230 struct rte_mbuf *mbuf_init = &rxq->fake_mbuf;
231 struct rte_pktmbuf_pool_private *priv =
232 (struct rte_pktmbuf_pool_private *)
233 rte_mempool_get_priv(rxq_ctrl->rxq.mp);
236 /* Initialize default rearm_data for vPMD. */
237 mbuf_init->data_off = RTE_PKTMBUF_HEADROOM;
238 rte_mbuf_refcnt_set(mbuf_init, 1);
239 mbuf_init->nb_segs = 1;
240 mbuf_init->port = rxq->port_id;
241 if (priv->flags & RTE_PKTMBUF_POOL_F_PINNED_EXT_BUF)
242 mbuf_init->ol_flags = EXT_ATTACHED_MBUF;
244 * prevent compiler reordering:
245 * rearm_data covers previous fields.
247 rte_compiler_barrier();
248 rxq->mbuf_initializer =
249 *(rte_xmm_t *)&mbuf_init->rearm_data;
250 /* Padding with a fake mbuf for vectorized Rx. */
251 for (j = 0; j < MLX5_VPMD_DESCS_PER_LOOP; ++j)
252 (*rxq->elts)[elts_n + j] = &rxq->fake_mbuf;
255 "port %u Rx queue %u allocated and configured %u segments"
257 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx, elts_n,
258 elts_n / (1 << rxq_ctrl->rxq.sges_n));
261 err = rte_errno; /* Save rte_errno before cleanup. */
263 for (i = 0; (i != elts_n); ++i) {
264 if ((*rxq_ctrl->rxq.elts)[i] != NULL)
265 rte_pktmbuf_free_seg((*rxq_ctrl->rxq.elts)[i]);
266 (*rxq_ctrl->rxq.elts)[i] = NULL;
268 DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
269 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx);
270 rte_errno = err; /* Restore rte_errno. */
275 * Allocate RX queue elements.
278 * Pointer to RX queue structure.
281 * 0 on success, errno value on failure.
284 rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
286 return mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq) ?
287 rxq_alloc_elts_mprq(rxq_ctrl) : rxq_alloc_elts_sprq(rxq_ctrl);
291 * Free RX queue elements for Multi-Packet RQ.
294 * Pointer to RX queue structure.
297 rxq_free_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
299 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
302 DRV_LOG(DEBUG, "port %u Multi-Packet Rx queue %u freeing WRs",
303 rxq->port_id, rxq->idx);
304 if (rxq->mprq_bufs == NULL)
306 MLX5_ASSERT(mlx5_rxq_check_vec_support(rxq) < 0);
307 for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
308 if ((*rxq->mprq_bufs)[i] != NULL)
309 mlx5_mprq_buf_free((*rxq->mprq_bufs)[i]);
310 (*rxq->mprq_bufs)[i] = NULL;
312 if (rxq->mprq_repl != NULL) {
313 mlx5_mprq_buf_free(rxq->mprq_repl);
314 rxq->mprq_repl = NULL;
319 * Free RX queue elements for Single-Packet RQ.
322 * Pointer to RX queue structure.
325 rxq_free_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
327 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
328 const uint16_t q_n = (1 << rxq->elts_n);
329 const uint16_t q_mask = q_n - 1;
330 uint16_t used = q_n - (rxq->rq_ci - rxq->rq_pi);
333 DRV_LOG(DEBUG, "port %u Rx queue %u freeing WRs",
334 PORT_ID(rxq_ctrl->priv), rxq->idx);
335 if (rxq->elts == NULL)
338 * Some mbuf in the Ring belongs to the application. They cannot be
341 if (mlx5_rxq_check_vec_support(rxq) > 0) {
342 for (i = 0; i < used; ++i)
343 (*rxq->elts)[(rxq->rq_ci + i) & q_mask] = NULL;
344 rxq->rq_pi = rxq->rq_ci;
346 for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
347 if ((*rxq->elts)[i] != NULL)
348 rte_pktmbuf_free_seg((*rxq->elts)[i]);
349 (*rxq->elts)[i] = NULL;
354 * Free RX queue elements.
357 * Pointer to RX queue structure.
360 rxq_free_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
362 if (mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq))
363 rxq_free_elts_mprq(rxq_ctrl);
365 rxq_free_elts_sprq(rxq_ctrl);
369 * Returns the per-queue supported offloads.
372 * Pointer to Ethernet device.
375 * Supported Rx offloads.
378 mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev)
380 struct mlx5_priv *priv = dev->data->dev_private;
381 struct mlx5_dev_config *config = &priv->config;
382 uint64_t offloads = (DEV_RX_OFFLOAD_SCATTER |
383 DEV_RX_OFFLOAD_TIMESTAMP |
384 DEV_RX_OFFLOAD_JUMBO_FRAME |
385 DEV_RX_OFFLOAD_RSS_HASH);
387 if (config->hw_fcs_strip)
388 offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
391 offloads |= (DEV_RX_OFFLOAD_IPV4_CKSUM |
392 DEV_RX_OFFLOAD_UDP_CKSUM |
393 DEV_RX_OFFLOAD_TCP_CKSUM);
394 if (config->hw_vlan_strip)
395 offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
396 if (MLX5_LRO_SUPPORTED(dev))
397 offloads |= DEV_RX_OFFLOAD_TCP_LRO;
403 * Returns the per-port supported offloads.
406 * Supported Rx offloads.
409 mlx5_get_rx_port_offloads(void)
411 uint64_t offloads = DEV_RX_OFFLOAD_VLAN_FILTER;
417 * Verify if the queue can be released.
420 * Pointer to Ethernet device.
425 * 1 if the queue can be released
426 * 0 if the queue can not be released, there are references to it.
427 * Negative errno and rte_errno is set if queue doesn't exist.
430 mlx5_rxq_releasable(struct rte_eth_dev *dev, uint16_t idx)
432 struct mlx5_priv *priv = dev->data->dev_private;
433 struct mlx5_rxq_ctrl *rxq_ctrl;
435 if (!(*priv->rxqs)[idx]) {
439 rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
440 return (rte_atomic32_read(&rxq_ctrl->refcnt) == 1);
444 * Rx queue presetup checks.
447 * Pointer to Ethernet device structure.
451 * Number of descriptors to configure in queue.
454 * 0 on success, a negative errno value otherwise and rte_errno is set.
457 mlx5_rx_queue_pre_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t *desc)
459 struct mlx5_priv *priv = dev->data->dev_private;
461 if (!rte_is_power_of_2(*desc)) {
462 *desc = 1 << log2above(*desc);
464 "port %u increased number of descriptors in Rx queue %u"
465 " to the next power of two (%d)",
466 dev->data->port_id, idx, *desc);
468 DRV_LOG(DEBUG, "port %u configuring Rx queue %u for %u descriptors",
469 dev->data->port_id, idx, *desc);
470 if (idx >= priv->rxqs_n) {
471 DRV_LOG(ERR, "port %u Rx queue index out of range (%u >= %u)",
472 dev->data->port_id, idx, priv->rxqs_n);
473 rte_errno = EOVERFLOW;
476 if (!mlx5_rxq_releasable(dev, idx)) {
477 DRV_LOG(ERR, "port %u unable to release queue index %u",
478 dev->data->port_id, idx);
482 mlx5_rxq_release(dev, idx);
489 * Pointer to Ethernet device structure.
493 * Number of descriptors to configure in queue.
495 * NUMA socket on which memory must be allocated.
497 * Thresholds parameters.
499 * Memory pool for buffer allocations.
502 * 0 on success, a negative errno value otherwise and rte_errno is set.
505 mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
506 unsigned int socket, const struct rte_eth_rxconf *conf,
507 struct rte_mempool *mp)
509 struct mlx5_priv *priv = dev->data->dev_private;
510 struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
511 struct mlx5_rxq_ctrl *rxq_ctrl =
512 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
515 res = mlx5_rx_queue_pre_setup(dev, idx, &desc);
518 rxq_ctrl = mlx5_rxq_new(dev, idx, desc, socket, conf, mp);
520 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
521 dev->data->port_id, idx);
525 DRV_LOG(DEBUG, "port %u adding Rx queue %u to list",
526 dev->data->port_id, idx);
527 (*priv->rxqs)[idx] = &rxq_ctrl->rxq;
534 * Pointer to Ethernet device structure.
538 * Number of descriptors to configure in queue.
539 * @param hairpin_conf
540 * Hairpin configuration parameters.
543 * 0 on success, a negative errno value otherwise and rte_errno is set.
546 mlx5_rx_hairpin_queue_setup(struct rte_eth_dev *dev, uint16_t idx,
548 const struct rte_eth_hairpin_conf *hairpin_conf)
550 struct mlx5_priv *priv = dev->data->dev_private;
551 struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
552 struct mlx5_rxq_ctrl *rxq_ctrl =
553 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
556 res = mlx5_rx_queue_pre_setup(dev, idx, &desc);
559 if (hairpin_conf->peer_count != 1 ||
560 hairpin_conf->peers[0].port != dev->data->port_id ||
561 hairpin_conf->peers[0].queue >= priv->txqs_n) {
562 DRV_LOG(ERR, "port %u unable to setup hairpin queue index %u "
563 " invalid hairpind configuration", dev->data->port_id,
568 rxq_ctrl = mlx5_rxq_hairpin_new(dev, idx, desc, hairpin_conf);
570 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
571 dev->data->port_id, idx);
575 DRV_LOG(DEBUG, "port %u adding Rx queue %u to list",
576 dev->data->port_id, idx);
577 (*priv->rxqs)[idx] = &rxq_ctrl->rxq;
582 * DPDK callback to release a RX queue.
585 * Generic RX queue pointer.
588 mlx5_rx_queue_release(void *dpdk_rxq)
590 struct mlx5_rxq_data *rxq = (struct mlx5_rxq_data *)dpdk_rxq;
591 struct mlx5_rxq_ctrl *rxq_ctrl;
592 struct mlx5_priv *priv;
596 rxq_ctrl = container_of(rxq, struct mlx5_rxq_ctrl, rxq);
597 priv = rxq_ctrl->priv;
598 if (!mlx5_rxq_releasable(ETH_DEV(priv), rxq_ctrl->rxq.idx))
599 rte_panic("port %u Rx queue %u is still used by a flow and"
600 " cannot be removed\n",
601 PORT_ID(priv), rxq->idx);
602 mlx5_rxq_release(ETH_DEV(priv), rxq_ctrl->rxq.idx);
606 * Get an Rx queue Verbs/DevX object.
609 * Pointer to Ethernet device.
611 * Queue index in DPDK Rx queue array
614 * The Verbs/DevX object if it exists.
616 static struct mlx5_rxq_obj *
617 mlx5_rxq_obj_get(struct rte_eth_dev *dev, uint16_t idx)
619 struct mlx5_priv *priv = dev->data->dev_private;
620 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
621 struct mlx5_rxq_ctrl *rxq_ctrl;
623 if (idx >= priv->rxqs_n)
627 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
629 rte_atomic32_inc(&rxq_ctrl->obj->refcnt);
630 return rxq_ctrl->obj;
634 * Release the resources allocated for an RQ DevX object.
637 * DevX Rx queue object.
640 rxq_release_rq_resources(struct mlx5_rxq_ctrl *rxq_ctrl)
642 if (rxq_ctrl->rxq.wqes) {
643 rte_free((void *)(uintptr_t)rxq_ctrl->rxq.wqes);
644 rxq_ctrl->rxq.wqes = NULL;
646 if (rxq_ctrl->wq_umem) {
647 mlx5_glue->devx_umem_dereg(rxq_ctrl->wq_umem);
648 rxq_ctrl->wq_umem = NULL;
653 * Release an Rx hairpin related resources.
656 * Hairpin Rx queue object.
659 rxq_obj_hairpin_release(struct mlx5_rxq_obj *rxq_obj)
661 struct mlx5_devx_modify_rq_attr rq_attr = { 0 };
663 MLX5_ASSERT(rxq_obj);
664 rq_attr.state = MLX5_RQC_STATE_RST;
665 rq_attr.rq_state = MLX5_RQC_STATE_RDY;
666 mlx5_devx_cmd_modify_rq(rxq_obj->rq, &rq_attr);
667 claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
671 * Release an Rx verbs/DevX queue object.
674 * Verbs/DevX Rx queue object.
677 * 1 while a reference on it exists, 0 when freed.
680 mlx5_rxq_obj_release(struct mlx5_rxq_obj *rxq_obj)
682 MLX5_ASSERT(rxq_obj);
683 if (rte_atomic32_dec_and_test(&rxq_obj->refcnt)) {
684 switch (rxq_obj->type) {
685 case MLX5_RXQ_OBJ_TYPE_IBV:
686 MLX5_ASSERT(rxq_obj->wq);
687 MLX5_ASSERT(rxq_obj->cq);
688 rxq_free_elts(rxq_obj->rxq_ctrl);
689 claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
690 claim_zero(mlx5_glue->destroy_cq(rxq_obj->cq));
692 case MLX5_RXQ_OBJ_TYPE_DEVX_RQ:
693 MLX5_ASSERT(rxq_obj->cq);
694 MLX5_ASSERT(rxq_obj->rq);
695 rxq_free_elts(rxq_obj->rxq_ctrl);
696 claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
697 rxq_release_rq_resources(rxq_obj->rxq_ctrl);
698 claim_zero(mlx5_glue->destroy_cq(rxq_obj->cq));
700 case MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN:
701 MLX5_ASSERT(rxq_obj->rq);
702 rxq_obj_hairpin_release(rxq_obj);
705 if (rxq_obj->channel)
706 claim_zero(mlx5_glue->destroy_comp_channel
708 LIST_REMOVE(rxq_obj, next);
716 * Allocate queue vector and fill epoll fd list for Rx interrupts.
719 * Pointer to Ethernet device.
722 * 0 on success, a negative errno value otherwise and rte_errno is set.
725 mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev)
727 struct mlx5_priv *priv = dev->data->dev_private;
729 unsigned int rxqs_n = priv->rxqs_n;
730 unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
731 unsigned int count = 0;
732 struct rte_intr_handle *intr_handle = dev->intr_handle;
734 if (!dev->data->dev_conf.intr_conf.rxq)
736 mlx5_rx_intr_vec_disable(dev);
737 intr_handle->intr_vec = malloc(n * sizeof(intr_handle->intr_vec[0]));
738 if (intr_handle->intr_vec == NULL) {
740 "port %u failed to allocate memory for interrupt"
741 " vector, Rx interrupts will not be supported",
746 intr_handle->type = RTE_INTR_HANDLE_EXT;
747 for (i = 0; i != n; ++i) {
748 /* This rxq obj must not be released in this function. */
749 struct mlx5_rxq_obj *rxq_obj = mlx5_rxq_obj_get(dev, i);
754 /* Skip queues that cannot request interrupts. */
755 if (!rxq_obj || !rxq_obj->channel) {
756 /* Use invalid intr_vec[] index to disable entry. */
757 intr_handle->intr_vec[i] =
758 RTE_INTR_VEC_RXTX_OFFSET +
759 RTE_MAX_RXTX_INTR_VEC_ID;
762 if (count >= RTE_MAX_RXTX_INTR_VEC_ID) {
764 "port %u too many Rx queues for interrupt"
765 " vector size (%d), Rx interrupts cannot be"
767 dev->data->port_id, RTE_MAX_RXTX_INTR_VEC_ID);
768 mlx5_rx_intr_vec_disable(dev);
772 fd = rxq_obj->channel->fd;
773 flags = fcntl(fd, F_GETFL);
774 rc = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
778 "port %u failed to make Rx interrupt file"
779 " descriptor %d non-blocking for queue index"
781 dev->data->port_id, fd, i);
782 mlx5_rx_intr_vec_disable(dev);
785 intr_handle->intr_vec[i] = RTE_INTR_VEC_RXTX_OFFSET + count;
786 intr_handle->efds[count] = fd;
790 mlx5_rx_intr_vec_disable(dev);
792 intr_handle->nb_efd = count;
797 * Clean up Rx interrupts handler.
800 * Pointer to Ethernet device.
803 mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev)
805 struct mlx5_priv *priv = dev->data->dev_private;
806 struct rte_intr_handle *intr_handle = dev->intr_handle;
808 unsigned int rxqs_n = priv->rxqs_n;
809 unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
811 if (!dev->data->dev_conf.intr_conf.rxq)
813 if (!intr_handle->intr_vec)
815 for (i = 0; i != n; ++i) {
816 struct mlx5_rxq_ctrl *rxq_ctrl;
817 struct mlx5_rxq_data *rxq_data;
819 if (intr_handle->intr_vec[i] == RTE_INTR_VEC_RXTX_OFFSET +
820 RTE_MAX_RXTX_INTR_VEC_ID)
823 * Need to access directly the queue to release the reference
824 * kept in mlx5_rx_intr_vec_enable().
826 rxq_data = (*priv->rxqs)[i];
827 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
829 mlx5_rxq_obj_release(rxq_ctrl->obj);
832 rte_intr_free_epoll_fd(intr_handle);
833 if (intr_handle->intr_vec)
834 free(intr_handle->intr_vec);
835 intr_handle->nb_efd = 0;
836 intr_handle->intr_vec = NULL;
840 * MLX5 CQ notification .
843 * Pointer to receive queue structure.
845 * Sequence number per receive queue .
848 mlx5_arm_cq(struct mlx5_rxq_data *rxq, int sq_n_rxq)
851 uint32_t doorbell_hi;
853 void *cq_db_reg = (char *)rxq->cq_uar + MLX5_CQ_DOORBELL;
855 sq_n = sq_n_rxq & MLX5_CQ_SQN_MASK;
856 doorbell_hi = sq_n << MLX5_CQ_SQN_OFFSET | (rxq->cq_ci & MLX5_CI_MASK);
857 doorbell = (uint64_t)doorbell_hi << 32;
858 doorbell |= rxq->cqn;
859 rxq->cq_db[MLX5_CQ_ARM_DB] = rte_cpu_to_be_32(doorbell_hi);
860 mlx5_uar_write64(rte_cpu_to_be_64(doorbell),
861 cq_db_reg, rxq->uar_lock_cq);
865 * DPDK callback for Rx queue interrupt enable.
868 * Pointer to Ethernet device structure.
873 * 0 on success, a negative errno value otherwise and rte_errno is set.
876 mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
878 struct mlx5_priv *priv = dev->data->dev_private;
879 struct mlx5_rxq_data *rxq_data;
880 struct mlx5_rxq_ctrl *rxq_ctrl;
882 rxq_data = (*priv->rxqs)[rx_queue_id];
887 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
889 struct mlx5_rxq_obj *rxq_obj;
891 rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
896 mlx5_arm_cq(rxq_data, rxq_data->cq_arm_sn);
897 mlx5_rxq_obj_release(rxq_obj);
903 * DPDK callback for Rx queue interrupt disable.
906 * Pointer to Ethernet device structure.
911 * 0 on success, a negative errno value otherwise and rte_errno is set.
914 mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
916 struct mlx5_priv *priv = dev->data->dev_private;
917 struct mlx5_rxq_data *rxq_data;
918 struct mlx5_rxq_ctrl *rxq_ctrl;
919 struct mlx5_rxq_obj *rxq_obj = NULL;
920 struct ibv_cq *ev_cq;
924 rxq_data = (*priv->rxqs)[rx_queue_id];
929 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
932 rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
937 ret = mlx5_glue->get_cq_event(rxq_obj->channel, &ev_cq, &ev_ctx);
938 if (ret || ev_cq != rxq_obj->cq) {
942 rxq_data->cq_arm_sn++;
943 mlx5_glue->ack_cq_events(rxq_obj->cq, 1);
944 mlx5_rxq_obj_release(rxq_obj);
947 ret = rte_errno; /* Save rte_errno before cleanup. */
949 mlx5_rxq_obj_release(rxq_obj);
950 DRV_LOG(WARNING, "port %u unable to disable interrupt on Rx queue %d",
951 dev->data->port_id, rx_queue_id);
952 rte_errno = ret; /* Restore rte_errno. */
957 * Create a CQ Verbs object.
960 * Pointer to Ethernet device.
962 * Pointer to device private data.
964 * Pointer to Rx queue data.
966 * Number of CQEs in CQ.
968 * Pointer to Rx queue object data.
971 * The Verbs object initialised, NULL otherwise and rte_errno is set.
973 static struct ibv_cq *
974 mlx5_ibv_cq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
975 struct mlx5_rxq_data *rxq_data,
976 unsigned int cqe_n, struct mlx5_rxq_obj *rxq_obj)
979 struct ibv_cq_init_attr_ex ibv;
980 struct mlx5dv_cq_init_attr mlx5;
983 cq_attr.ibv = (struct ibv_cq_init_attr_ex){
985 .channel = rxq_obj->channel,
988 cq_attr.mlx5 = (struct mlx5dv_cq_init_attr){
991 if (priv->config.cqe_comp && !rxq_data->hw_timestamp &&
993 cq_attr.mlx5.comp_mask |=
994 MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE;
995 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
996 cq_attr.mlx5.cqe_comp_res_format =
997 mlx5_rxq_mprq_enabled(rxq_data) ?
998 MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX :
999 MLX5DV_CQE_RES_FORMAT_HASH;
1001 cq_attr.mlx5.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH;
1004 * For vectorized Rx, it must not be doubled in order to
1005 * make cq_ci and rq_ci aligned.
1007 if (mlx5_rxq_check_vec_support(rxq_data) < 0)
1008 cq_attr.ibv.cqe *= 2;
1009 } else if (priv->config.cqe_comp && rxq_data->hw_timestamp) {
1011 "port %u Rx CQE compression is disabled for HW"
1013 dev->data->port_id);
1014 } else if (priv->config.cqe_comp && rxq_data->lro) {
1016 "port %u Rx CQE compression is disabled for LRO",
1017 dev->data->port_id);
1019 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
1020 if (priv->config.cqe_pad) {
1021 cq_attr.mlx5.comp_mask |= MLX5DV_CQ_INIT_ATTR_MASK_FLAGS;
1022 cq_attr.mlx5.flags |= MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD;
1025 return mlx5_glue->cq_ex_to_cq(mlx5_glue->dv_create_cq(priv->sh->ctx,
1031 * Create a WQ Verbs object.
1034 * Pointer to Ethernet device.
1036 * Pointer to device private data.
1038 * Pointer to Rx queue data.
1040 * Queue index in DPDK Rx queue array
1042 * Number of WQEs in WQ.
1044 * Pointer to Rx queue object data.
1047 * The Verbs object initialised, NULL otherwise and rte_errno is set.
1049 static struct ibv_wq *
1050 mlx5_ibv_wq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
1051 struct mlx5_rxq_data *rxq_data, uint16_t idx,
1052 unsigned int wqe_n, struct mlx5_rxq_obj *rxq_obj)
1055 struct ibv_wq_init_attr ibv;
1056 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1057 struct mlx5dv_wq_init_attr mlx5;
1061 wq_attr.ibv = (struct ibv_wq_init_attr){
1062 .wq_context = NULL, /* Could be useful in the future. */
1063 .wq_type = IBV_WQT_RQ,
1064 /* Max number of outstanding WRs. */
1065 .max_wr = wqe_n >> rxq_data->sges_n,
1066 /* Max number of scatter/gather elements in a WR. */
1067 .max_sge = 1 << rxq_data->sges_n,
1070 .comp_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING | 0,
1071 .create_flags = (rxq_data->vlan_strip ?
1072 IBV_WQ_FLAGS_CVLAN_STRIPPING : 0),
1074 /* By default, FCS (CRC) is stripped by hardware. */
1075 if (rxq_data->crc_present) {
1076 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_SCATTER_FCS;
1077 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1079 if (priv->config.hw_padding) {
1080 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
1081 wq_attr.ibv.create_flags |= IBV_WQ_FLAG_RX_END_PADDING;
1082 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1083 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
1084 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_PCI_WRITE_END_PADDING;
1085 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1088 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1089 wq_attr.mlx5 = (struct mlx5dv_wq_init_attr){
1092 if (mlx5_rxq_mprq_enabled(rxq_data)) {
1093 struct mlx5dv_striding_rq_init_attr *mprq_attr =
1094 &wq_attr.mlx5.striding_rq_attrs;
1096 wq_attr.mlx5.comp_mask |= MLX5DV_WQ_INIT_ATTR_MASK_STRIDING_RQ;
1097 *mprq_attr = (struct mlx5dv_striding_rq_init_attr){
1098 .single_stride_log_num_of_bytes = rxq_data->strd_sz_n,
1099 .single_wqe_log_num_of_strides = rxq_data->strd_num_n,
1100 .two_byte_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT,
1103 rxq_obj->wq = mlx5_glue->dv_create_wq(priv->sh->ctx, &wq_attr.ibv,
1106 rxq_obj->wq = mlx5_glue->create_wq(priv->sh->ctx, &wq_attr.ibv);
1110 * Make sure number of WRs*SGEs match expectations since a queue
1111 * cannot allocate more than "desc" buffers.
1113 if (wq_attr.ibv.max_wr != (wqe_n >> rxq_data->sges_n) ||
1114 wq_attr.ibv.max_sge != (1u << rxq_data->sges_n)) {
1116 "port %u Rx queue %u requested %u*%u but got"
1118 dev->data->port_id, idx,
1119 wqe_n >> rxq_data->sges_n,
1120 (1 << rxq_data->sges_n),
1121 wq_attr.ibv.max_wr, wq_attr.ibv.max_sge);
1122 claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
1131 * Fill common fields of create RQ attributes structure.
1134 * Pointer to Rx queue data.
1136 * CQ number to use with this RQ.
1138 * RQ attributes structure to fill..
1141 mlx5_devx_create_rq_attr_fill(struct mlx5_rxq_data *rxq_data, uint32_t cqn,
1142 struct mlx5_devx_create_rq_attr *rq_attr)
1144 rq_attr->state = MLX5_RQC_STATE_RST;
1145 rq_attr->vsd = (rxq_data->vlan_strip) ? 0 : 1;
1147 rq_attr->scatter_fcs = (rxq_data->crc_present) ? 1 : 0;
1151 * Fill common fields of DevX WQ attributes structure.
1154 * Pointer to device private data.
1156 * Pointer to Rx queue control structure.
1158 * WQ attributes structure to fill..
1161 mlx5_devx_wq_attr_fill(struct mlx5_priv *priv, struct mlx5_rxq_ctrl *rxq_ctrl,
1162 struct mlx5_devx_wq_attr *wq_attr)
1164 wq_attr->end_padding_mode = priv->config.cqe_pad ?
1165 MLX5_WQ_END_PAD_MODE_ALIGN :
1166 MLX5_WQ_END_PAD_MODE_NONE;
1167 wq_attr->pd = priv->sh->pdn;
1168 wq_attr->dbr_addr = rxq_ctrl->dbr_offset;
1169 wq_attr->dbr_umem_id = rxq_ctrl->dbr_umem_id;
1170 wq_attr->dbr_umem_valid = 1;
1171 wq_attr->wq_umem_id = rxq_ctrl->wq_umem->umem_id;
1172 wq_attr->wq_umem_valid = 1;
1176 * Create a RQ object using DevX.
1179 * Pointer to Ethernet device.
1181 * Queue index in DPDK Rx queue array
1183 * CQ number to use with this RQ.
1186 * The DevX object initialised, NULL otherwise and rte_errno is set.
1188 static struct mlx5_devx_obj *
1189 mlx5_devx_rq_new(struct rte_eth_dev *dev, uint16_t idx, uint32_t cqn)
1191 struct mlx5_priv *priv = dev->data->dev_private;
1192 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1193 struct mlx5_rxq_ctrl *rxq_ctrl =
1194 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1195 struct mlx5_devx_create_rq_attr rq_attr;
1196 uint32_t wqe_n = 1 << (rxq_data->elts_n - rxq_data->sges_n);
1197 uint32_t wq_size = 0;
1198 uint32_t wqe_size = 0;
1199 uint32_t log_wqe_size = 0;
1201 struct mlx5_devx_obj *rq;
1203 memset(&rq_attr, 0, sizeof(rq_attr));
1204 /* Fill RQ attributes. */
1205 rq_attr.mem_rq_type = MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE;
1206 rq_attr.flush_in_error_en = 1;
1207 mlx5_devx_create_rq_attr_fill(rxq_data, cqn, &rq_attr);
1208 /* Fill WQ attributes for this RQ. */
1209 if (mlx5_rxq_mprq_enabled(rxq_data)) {
1210 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ;
1212 * Number of strides in each WQE:
1213 * 512*2^single_wqe_log_num_of_strides.
1215 rq_attr.wq_attr.single_wqe_log_num_of_strides =
1216 rxq_data->strd_num_n -
1217 MLX5_MIN_SINGLE_WQE_LOG_NUM_STRIDES;
1218 /* Stride size = (2^single_stride_log_num_of_bytes)*64B. */
1219 rq_attr.wq_attr.single_stride_log_num_of_bytes =
1220 rxq_data->strd_sz_n -
1221 MLX5_MIN_SINGLE_STRIDE_LOG_NUM_BYTES;
1222 wqe_size = sizeof(struct mlx5_wqe_mprq);
1224 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC;
1225 wqe_size = sizeof(struct mlx5_wqe_data_seg);
1227 log_wqe_size = log2above(wqe_size) + rxq_data->sges_n;
1228 rq_attr.wq_attr.log_wq_stride = log_wqe_size;
1229 rq_attr.wq_attr.log_wq_sz = rxq_data->elts_n - rxq_data->sges_n;
1230 /* Calculate and allocate WQ memory space. */
1231 wqe_size = 1 << log_wqe_size; /* round up power of two.*/
1232 wq_size = wqe_n * wqe_size;
1233 buf = rte_calloc_socket(__func__, 1, wq_size, MLX5_WQE_BUF_ALIGNMENT,
1237 rxq_data->wqes = buf;
1238 rxq_ctrl->wq_umem = mlx5_glue->devx_umem_reg(priv->sh->ctx,
1240 if (!rxq_ctrl->wq_umem) {
1244 mlx5_devx_wq_attr_fill(priv, rxq_ctrl, &rq_attr.wq_attr);
1245 rq = mlx5_devx_cmd_create_rq(priv->sh->ctx, &rq_attr, rxq_ctrl->socket);
1247 rxq_release_rq_resources(rxq_ctrl);
1252 * Create the Rx hairpin queue object.
1255 * Pointer to Ethernet device.
1257 * Queue index in DPDK Rx queue array
1260 * The hairpin DevX object initialised, NULL otherwise and rte_errno is set.
1262 static struct mlx5_rxq_obj *
1263 mlx5_rxq_obj_hairpin_new(struct rte_eth_dev *dev, uint16_t idx)
1265 struct mlx5_priv *priv = dev->data->dev_private;
1266 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1267 struct mlx5_rxq_ctrl *rxq_ctrl =
1268 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1269 struct mlx5_devx_create_rq_attr attr = { 0 };
1270 struct mlx5_rxq_obj *tmpl = NULL;
1271 uint32_t max_wq_data;
1273 MLX5_ASSERT(rxq_data);
1274 MLX5_ASSERT(!rxq_ctrl->obj);
1275 tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
1279 "port %u Rx queue %u cannot allocate verbs resources",
1280 dev->data->port_id, rxq_data->idx);
1284 tmpl->type = MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN;
1285 tmpl->rxq_ctrl = rxq_ctrl;
1287 max_wq_data = priv->config.hca_attr.log_max_hairpin_wq_data_sz;
1288 /* Jumbo frames > 9KB should be supported, and more packets. */
1289 if (priv->config.log_hp_size != (uint32_t)MLX5_ARG_UNSET) {
1290 if (priv->config.log_hp_size > max_wq_data) {
1291 DRV_LOG(ERR, "total data size %u power of 2 is "
1292 "too large for hairpin",
1293 priv->config.log_hp_size);
1298 attr.wq_attr.log_hairpin_data_sz = priv->config.log_hp_size;
1300 attr.wq_attr.log_hairpin_data_sz =
1301 (max_wq_data < MLX5_HAIRPIN_JUMBO_LOG_SIZE) ?
1302 max_wq_data : MLX5_HAIRPIN_JUMBO_LOG_SIZE;
1304 /* Set the packets number to the maximum value for performance. */
1305 attr.wq_attr.log_hairpin_num_packets =
1306 attr.wq_attr.log_hairpin_data_sz -
1307 MLX5_HAIRPIN_QUEUE_STRIDE;
1308 tmpl->rq = mlx5_devx_cmd_create_rq(priv->sh->ctx, &attr,
1312 "port %u Rx hairpin queue %u can't create rq object",
1313 dev->data->port_id, idx);
1318 DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1319 idx, (void *)&tmpl);
1320 rte_atomic32_inc(&tmpl->refcnt);
1321 LIST_INSERT_HEAD(&priv->rxqsobj, tmpl, next);
1322 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1327 * Create the Rx queue Verbs/DevX object.
1330 * Pointer to Ethernet device.
1332 * Queue index in DPDK Rx queue array
1334 * Type of Rx queue object to create.
1337 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
1339 struct mlx5_rxq_obj *
1340 mlx5_rxq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
1341 enum mlx5_rxq_obj_type type)
1343 struct mlx5_priv *priv = dev->data->dev_private;
1344 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1345 struct mlx5_rxq_ctrl *rxq_ctrl =
1346 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1347 struct ibv_wq_attr mod;
1349 unsigned int wqe_n = 1 << rxq_data->elts_n;
1350 struct mlx5_rxq_obj *tmpl = NULL;
1351 struct mlx5dv_cq cq_info;
1352 struct mlx5dv_rwq rwq;
1354 struct mlx5dv_obj obj;
1356 MLX5_ASSERT(rxq_data);
1357 MLX5_ASSERT(!rxq_ctrl->obj);
1358 if (type == MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN)
1359 return mlx5_rxq_obj_hairpin_new(dev, idx);
1360 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_RX_QUEUE;
1361 priv->verbs_alloc_ctx.obj = rxq_ctrl;
1362 tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
1366 "port %u Rx queue %u cannot allocate verbs resources",
1367 dev->data->port_id, rxq_data->idx);
1372 tmpl->rxq_ctrl = rxq_ctrl;
1373 if (rxq_ctrl->irq) {
1374 tmpl->channel = mlx5_glue->create_comp_channel(priv->sh->ctx);
1375 if (!tmpl->channel) {
1376 DRV_LOG(ERR, "port %u: comp channel creation failure",
1377 dev->data->port_id);
1382 if (mlx5_rxq_mprq_enabled(rxq_data))
1383 cqe_n = wqe_n * (1 << rxq_data->strd_num_n) - 1;
1386 tmpl->cq = mlx5_ibv_cq_new(dev, priv, rxq_data, cqe_n, tmpl);
1388 DRV_LOG(ERR, "port %u Rx queue %u CQ creation failure",
1389 dev->data->port_id, idx);
1393 obj.cq.in = tmpl->cq;
1394 obj.cq.out = &cq_info;
1395 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ);
1400 if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) {
1402 "port %u wrong MLX5_CQE_SIZE environment variable"
1403 " value: it should be set to %u",
1404 dev->data->port_id, RTE_CACHE_LINE_SIZE);
1408 DRV_LOG(DEBUG, "port %u device_attr.max_qp_wr is %d",
1409 dev->data->port_id, priv->sh->device_attr.max_qp_wr);
1410 DRV_LOG(DEBUG, "port %u device_attr.max_sge is %d",
1411 dev->data->port_id, priv->sh->device_attr.max_sge);
1412 /* Allocate door-bell for types created with DevX. */
1413 if (tmpl->type != MLX5_RXQ_OBJ_TYPE_IBV) {
1414 struct mlx5_devx_dbr_page *dbr_page;
1417 dbr_offset = mlx5_get_dbr(priv->sh->ctx, &priv->dbrpgs,
1421 rxq_ctrl->dbr_offset = dbr_offset;
1422 rxq_ctrl->dbr_umem_id = mlx5_os_get_umem_id(dbr_page->umem);
1423 rxq_ctrl->dbr_umem_id_valid = 1;
1424 rxq_data->rq_db = (uint32_t *)((uintptr_t)dbr_page->dbrs +
1425 (uintptr_t)rxq_ctrl->dbr_offset);
1427 if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV) {
1428 tmpl->wq = mlx5_ibv_wq_new(dev, priv, rxq_data, idx, wqe_n,
1431 DRV_LOG(ERR, "port %u Rx queue %u WQ creation failure",
1432 dev->data->port_id, idx);
1436 /* Change queue state to ready. */
1437 mod = (struct ibv_wq_attr){
1438 .attr_mask = IBV_WQ_ATTR_STATE,
1439 .wq_state = IBV_WQS_RDY,
1441 ret = mlx5_glue->modify_wq(tmpl->wq, &mod);
1444 "port %u Rx queue %u WQ state to IBV_WQS_RDY"
1445 " failed", dev->data->port_id, idx);
1449 obj.rwq.in = tmpl->wq;
1451 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_RWQ);
1456 rxq_data->wqes = rwq.buf;
1457 rxq_data->rq_db = rwq.dbrec;
1458 } else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ) {
1459 struct mlx5_devx_modify_rq_attr rq_attr;
1461 memset(&rq_attr, 0, sizeof(rq_attr));
1462 tmpl->rq = mlx5_devx_rq_new(dev, idx, cq_info.cqn);
1464 DRV_LOG(ERR, "port %u Rx queue %u RQ creation failure",
1465 dev->data->port_id, idx);
1469 /* Change queue state to ready. */
1470 rq_attr.rq_state = MLX5_RQC_STATE_RST;
1471 rq_attr.state = MLX5_RQC_STATE_RDY;
1472 ret = mlx5_devx_cmd_modify_rq(tmpl->rq, &rq_attr);
1476 /* Fill the rings. */
1477 rxq_data->cqe_n = log2above(cq_info.cqe_cnt);
1478 rxq_data->cq_db = cq_info.dbrec;
1479 rxq_data->cqes = (volatile struct mlx5_cqe (*)[])(uintptr_t)cq_info.buf;
1480 rxq_data->cq_uar = cq_info.cq_uar;
1481 rxq_data->cqn = cq_info.cqn;
1482 rxq_data->cq_arm_sn = 0;
1483 mlx5_rxq_initialize(rxq_data);
1484 rxq_data->cq_ci = 0;
1485 DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1486 idx, (void *)&tmpl);
1487 rte_atomic32_inc(&tmpl->refcnt);
1488 LIST_INSERT_HEAD(&priv->rxqsobj, tmpl, next);
1489 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1493 ret = rte_errno; /* Save rte_errno before cleanup. */
1494 if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV && tmpl->wq)
1495 claim_zero(mlx5_glue->destroy_wq(tmpl->wq));
1496 else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ && tmpl->rq)
1497 claim_zero(mlx5_devx_cmd_destroy(tmpl->rq));
1499 claim_zero(mlx5_glue->destroy_cq(tmpl->cq));
1501 claim_zero(mlx5_glue->destroy_comp_channel
1504 rte_errno = ret; /* Restore rte_errno. */
1506 if (type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ)
1507 rxq_release_rq_resources(rxq_ctrl);
1508 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1513 * Verify the Rx queue objects list is empty
1516 * Pointer to Ethernet device.
1519 * The number of objects not released.
1522 mlx5_rxq_obj_verify(struct rte_eth_dev *dev)
1524 struct mlx5_priv *priv = dev->data->dev_private;
1526 struct mlx5_rxq_obj *rxq_obj;
1528 LIST_FOREACH(rxq_obj, &priv->rxqsobj, next) {
1529 DRV_LOG(DEBUG, "port %u Rx queue %u still referenced",
1530 dev->data->port_id, rxq_obj->rxq_ctrl->rxq.idx);
1537 * Callback function to initialize mbufs for Multi-Packet RQ.
1540 mlx5_mprq_buf_init(struct rte_mempool *mp, void *opaque_arg,
1541 void *_m, unsigned int i __rte_unused)
1543 struct mlx5_mprq_buf *buf = _m;
1544 struct rte_mbuf_ext_shared_info *shinfo;
1545 unsigned int strd_n = (unsigned int)(uintptr_t)opaque_arg;
1548 memset(_m, 0, sizeof(*buf));
1550 rte_atomic16_set(&buf->refcnt, 1);
1551 for (j = 0; j != strd_n; ++j) {
1552 shinfo = &buf->shinfos[j];
1553 shinfo->free_cb = mlx5_mprq_buf_free_cb;
1554 shinfo->fcb_opaque = buf;
1559 * Free mempool of Multi-Packet RQ.
1562 * Pointer to Ethernet device.
1565 * 0 on success, negative errno value on failure.
1568 mlx5_mprq_free_mp(struct rte_eth_dev *dev)
1570 struct mlx5_priv *priv = dev->data->dev_private;
1571 struct rte_mempool *mp = priv->mprq_mp;
1576 DRV_LOG(DEBUG, "port %u freeing mempool (%s) for Multi-Packet RQ",
1577 dev->data->port_id, mp->name);
1579 * If a buffer in the pool has been externally attached to a mbuf and it
1580 * is still in use by application, destroying the Rx queue can spoil
1581 * the packet. It is unlikely to happen but if application dynamically
1582 * creates and destroys with holding Rx packets, this can happen.
1584 * TODO: It is unavoidable for now because the mempool for Multi-Packet
1585 * RQ isn't provided by application but managed by PMD.
1587 if (!rte_mempool_full(mp)) {
1589 "port %u mempool for Multi-Packet RQ is still in use",
1590 dev->data->port_id);
1594 rte_mempool_free(mp);
1595 /* Unset mempool for each Rx queue. */
1596 for (i = 0; i != priv->rxqs_n; ++i) {
1597 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1601 rxq->mprq_mp = NULL;
1603 priv->mprq_mp = NULL;
1608 * Allocate a mempool for Multi-Packet RQ. All configured Rx queues share the
1609 * mempool. If already allocated, reuse it if there're enough elements.
1610 * Otherwise, resize it.
1613 * Pointer to Ethernet device.
1616 * 0 on success, negative errno value on failure.
1619 mlx5_mprq_alloc_mp(struct rte_eth_dev *dev)
1621 struct mlx5_priv *priv = dev->data->dev_private;
1622 struct rte_mempool *mp = priv->mprq_mp;
1623 char name[RTE_MEMPOOL_NAMESIZE];
1624 unsigned int desc = 0;
1625 unsigned int buf_len;
1626 unsigned int obj_num;
1627 unsigned int obj_size;
1628 unsigned int strd_num_n = 0;
1629 unsigned int strd_sz_n = 0;
1631 unsigned int n_ibv = 0;
1633 if (!mlx5_mprq_enabled(dev))
1635 /* Count the total number of descriptors configured. */
1636 for (i = 0; i != priv->rxqs_n; ++i) {
1637 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1638 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
1639 (rxq, struct mlx5_rxq_ctrl, rxq);
1641 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
1644 desc += 1 << rxq->elts_n;
1645 /* Get the max number of strides. */
1646 if (strd_num_n < rxq->strd_num_n)
1647 strd_num_n = rxq->strd_num_n;
1648 /* Get the max size of a stride. */
1649 if (strd_sz_n < rxq->strd_sz_n)
1650 strd_sz_n = rxq->strd_sz_n;
1652 MLX5_ASSERT(strd_num_n && strd_sz_n);
1653 buf_len = (1 << strd_num_n) * (1 << strd_sz_n);
1654 obj_size = sizeof(struct mlx5_mprq_buf) + buf_len + (1 << strd_num_n) *
1655 sizeof(struct rte_mbuf_ext_shared_info) + RTE_PKTMBUF_HEADROOM;
1657 * Received packets can be either memcpy'd or externally referenced. In
1658 * case that the packet is attached to an mbuf as an external buffer, as
1659 * it isn't possible to predict how the buffers will be queued by
1660 * application, there's no option to exactly pre-allocate needed buffers
1661 * in advance but to speculatively prepares enough buffers.
1663 * In the data path, if this Mempool is depleted, PMD will try to memcpy
1664 * received packets to buffers provided by application (rxq->mp) until
1665 * this Mempool gets available again.
1668 obj_num = desc + MLX5_MPRQ_MP_CACHE_SZ * n_ibv;
1670 * rte_mempool_create_empty() has sanity check to refuse large cache
1671 * size compared to the number of elements.
1672 * CACHE_FLUSHTHRESH_MULTIPLIER is defined in a C file, so using a
1673 * constant number 2 instead.
1675 obj_num = RTE_MAX(obj_num, MLX5_MPRQ_MP_CACHE_SZ * 2);
1676 /* Check a mempool is already allocated and if it can be resued. */
1677 if (mp != NULL && mp->elt_size >= obj_size && mp->size >= obj_num) {
1678 DRV_LOG(DEBUG, "port %u mempool %s is being reused",
1679 dev->data->port_id, mp->name);
1682 } else if (mp != NULL) {
1683 DRV_LOG(DEBUG, "port %u mempool %s should be resized, freeing it",
1684 dev->data->port_id, mp->name);
1686 * If failed to free, which means it may be still in use, no way
1687 * but to keep using the existing one. On buffer underrun,
1688 * packets will be memcpy'd instead of external buffer
1691 if (mlx5_mprq_free_mp(dev)) {
1692 if (mp->elt_size >= obj_size)
1698 snprintf(name, sizeof(name), "port-%u-mprq", dev->data->port_id);
1699 mp = rte_mempool_create(name, obj_num, obj_size, MLX5_MPRQ_MP_CACHE_SZ,
1700 0, NULL, NULL, mlx5_mprq_buf_init,
1701 (void *)(uintptr_t)(1 << strd_num_n),
1702 dev->device->numa_node, 0);
1705 "port %u failed to allocate a mempool for"
1706 " Multi-Packet RQ, count=%u, size=%u",
1707 dev->data->port_id, obj_num, obj_size);
1713 /* Set mempool for each Rx queue. */
1714 for (i = 0; i != priv->rxqs_n; ++i) {
1715 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1716 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
1717 (rxq, struct mlx5_rxq_ctrl, rxq);
1719 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
1723 DRV_LOG(INFO, "port %u Multi-Packet RQ is configured",
1724 dev->data->port_id);
1728 #define MLX5_MAX_TCP_HDR_OFFSET ((unsigned int)(sizeof(struct rte_ether_hdr) + \
1729 sizeof(struct rte_vlan_hdr) * 2 + \
1730 sizeof(struct rte_ipv6_hdr)))
1731 #define MAX_TCP_OPTION_SIZE 40u
1732 #define MLX5_MAX_LRO_HEADER_FIX ((unsigned int)(MLX5_MAX_TCP_HDR_OFFSET + \
1733 sizeof(struct rte_tcp_hdr) + \
1734 MAX_TCP_OPTION_SIZE))
1737 * Adjust the maximum LRO massage size.
1740 * Pointer to Ethernet device.
1743 * @param max_lro_size
1744 * The maximum size for LRO packet.
1747 mlx5_max_lro_msg_size_adjust(struct rte_eth_dev *dev, uint16_t idx,
1748 uint32_t max_lro_size)
1750 struct mlx5_priv *priv = dev->data->dev_private;
1752 if (priv->config.hca_attr.lro_max_msg_sz_mode ==
1753 MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4 && max_lro_size >
1754 MLX5_MAX_TCP_HDR_OFFSET)
1755 max_lro_size -= MLX5_MAX_TCP_HDR_OFFSET;
1756 max_lro_size = RTE_MIN(max_lro_size, MLX5_MAX_LRO_SIZE);
1757 MLX5_ASSERT(max_lro_size >= MLX5_LRO_SEG_CHUNK_SIZE);
1758 max_lro_size /= MLX5_LRO_SEG_CHUNK_SIZE;
1759 if (priv->max_lro_msg_size)
1760 priv->max_lro_msg_size =
1761 RTE_MIN((uint32_t)priv->max_lro_msg_size, max_lro_size);
1763 priv->max_lro_msg_size = max_lro_size;
1765 "port %u Rx Queue %u max LRO message size adjusted to %u bytes",
1766 dev->data->port_id, idx,
1767 priv->max_lro_msg_size * MLX5_LRO_SEG_CHUNK_SIZE);
1771 * Create a DPDK Rx queue.
1774 * Pointer to Ethernet device.
1778 * Number of descriptors to configure in queue.
1780 * NUMA socket on which memory must be allocated.
1783 * A DPDK queue object on success, NULL otherwise and rte_errno is set.
1785 struct mlx5_rxq_ctrl *
1786 mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1787 unsigned int socket, const struct rte_eth_rxconf *conf,
1788 struct rte_mempool *mp)
1790 struct mlx5_priv *priv = dev->data->dev_private;
1791 struct mlx5_rxq_ctrl *tmpl;
1792 unsigned int mb_len = rte_pktmbuf_data_room_size(mp);
1793 unsigned int mprq_stride_nums;
1794 unsigned int mprq_stride_size;
1795 unsigned int mprq_stride_cap;
1796 struct mlx5_dev_config *config = &priv->config;
1798 * Always allocate extra slots, even if eventually
1799 * the vector Rx will not be used.
1802 desc + config->rx_vec_en * MLX5_VPMD_DESCS_PER_LOOP;
1803 uint64_t offloads = conf->offloads |
1804 dev->data->dev_conf.rxmode.offloads;
1805 unsigned int lro_on_queue = !!(offloads & DEV_RX_OFFLOAD_TCP_LRO);
1806 const int mprq_en = mlx5_check_mprq_support(dev) > 0;
1807 unsigned int max_rx_pkt_len = lro_on_queue ?
1808 dev->data->dev_conf.rxmode.max_lro_pkt_size :
1809 dev->data->dev_conf.rxmode.max_rx_pkt_len;
1810 unsigned int non_scatter_min_mbuf_size = max_rx_pkt_len +
1811 RTE_PKTMBUF_HEADROOM;
1812 unsigned int max_lro_size = 0;
1813 unsigned int first_mb_free_size = mb_len - RTE_PKTMBUF_HEADROOM;
1815 if (non_scatter_min_mbuf_size > mb_len && !(offloads &
1816 DEV_RX_OFFLOAD_SCATTER)) {
1817 DRV_LOG(ERR, "port %u Rx queue %u: Scatter offload is not"
1818 " configured and no enough mbuf space(%u) to contain "
1819 "the maximum RX packet length(%u) with head-room(%u)",
1820 dev->data->port_id, idx, mb_len, max_rx_pkt_len,
1821 RTE_PKTMBUF_HEADROOM);
1825 tmpl = rte_calloc_socket("RXQ", 1,
1827 desc_n * sizeof(struct rte_mbuf *),
1833 tmpl->type = MLX5_RXQ_TYPE_STANDARD;
1834 if (mlx5_mr_btree_init(&tmpl->rxq.mr_ctrl.cache_bh,
1835 MLX5_MR_BTREE_CACHE_N, socket)) {
1836 /* rte_errno is already set. */
1839 tmpl->socket = socket;
1840 if (dev->data->dev_conf.intr_conf.rxq)
1842 mprq_stride_nums = config->mprq.stride_num_n ?
1843 config->mprq.stride_num_n : MLX5_MPRQ_STRIDE_NUM_N;
1844 mprq_stride_size = non_scatter_min_mbuf_size <=
1845 (1U << config->mprq.max_stride_size_n) ?
1846 log2above(non_scatter_min_mbuf_size) : MLX5_MPRQ_STRIDE_SIZE_N;
1847 mprq_stride_cap = (config->mprq.stride_num_n ?
1848 (1U << config->mprq.stride_num_n) : (1U << mprq_stride_nums)) *
1849 (config->mprq.stride_size_n ?
1850 (1U << config->mprq.stride_size_n) : (1U << mprq_stride_size));
1852 * This Rx queue can be configured as a Multi-Packet RQ if all of the
1853 * following conditions are met:
1854 * - MPRQ is enabled.
1855 * - The number of descs is more than the number of strides.
1856 * - max_rx_pkt_len plus overhead is less than the max size
1857 * of a stride or mprq_stride_size is specified by a user.
1858 * Need to nake sure that there are enough stides to encap
1859 * the maximum packet size in case mprq_stride_size is set.
1860 * Otherwise, enable Rx scatter if necessary.
1862 if (mprq_en && desc > (1U << mprq_stride_nums) &&
1863 (non_scatter_min_mbuf_size <=
1864 (1U << config->mprq.max_stride_size_n) ||
1865 (config->mprq.stride_size_n &&
1866 non_scatter_min_mbuf_size <= mprq_stride_cap))) {
1867 /* TODO: Rx scatter isn't supported yet. */
1868 tmpl->rxq.sges_n = 0;
1869 /* Trim the number of descs needed. */
1870 desc >>= mprq_stride_nums;
1871 tmpl->rxq.strd_num_n = config->mprq.stride_num_n ?
1872 config->mprq.stride_num_n : mprq_stride_nums;
1873 tmpl->rxq.strd_sz_n = config->mprq.stride_size_n ?
1874 config->mprq.stride_size_n : mprq_stride_size;
1875 tmpl->rxq.strd_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT;
1876 tmpl->rxq.strd_scatter_en =
1877 !!(offloads & DEV_RX_OFFLOAD_SCATTER);
1878 tmpl->rxq.mprq_max_memcpy_len = RTE_MIN(first_mb_free_size,
1879 config->mprq.max_memcpy_len);
1880 max_lro_size = RTE_MIN(max_rx_pkt_len,
1881 (1u << tmpl->rxq.strd_num_n) *
1882 (1u << tmpl->rxq.strd_sz_n));
1884 "port %u Rx queue %u: Multi-Packet RQ is enabled"
1885 " strd_num_n = %u, strd_sz_n = %u",
1886 dev->data->port_id, idx,
1887 tmpl->rxq.strd_num_n, tmpl->rxq.strd_sz_n);
1888 } else if (max_rx_pkt_len <= first_mb_free_size) {
1889 tmpl->rxq.sges_n = 0;
1890 max_lro_size = max_rx_pkt_len;
1891 } else if (offloads & DEV_RX_OFFLOAD_SCATTER) {
1892 unsigned int size = non_scatter_min_mbuf_size;
1893 unsigned int sges_n;
1895 if (lro_on_queue && first_mb_free_size <
1896 MLX5_MAX_LRO_HEADER_FIX) {
1897 DRV_LOG(ERR, "Not enough space in the first segment(%u)"
1898 " to include the max header size(%u) for LRO",
1899 first_mb_free_size, MLX5_MAX_LRO_HEADER_FIX);
1900 rte_errno = ENOTSUP;
1904 * Determine the number of SGEs needed for a full packet
1905 * and round it to the next power of two.
1907 sges_n = log2above((size / mb_len) + !!(size % mb_len));
1908 if (sges_n > MLX5_MAX_LOG_RQ_SEGS) {
1910 "port %u too many SGEs (%u) needed to handle"
1911 " requested maximum packet size %u, the maximum"
1912 " supported are %u", dev->data->port_id,
1913 1 << sges_n, max_rx_pkt_len,
1914 1u << MLX5_MAX_LOG_RQ_SEGS);
1915 rte_errno = ENOTSUP;
1918 tmpl->rxq.sges_n = sges_n;
1919 max_lro_size = max_rx_pkt_len;
1921 if (config->mprq.enabled && !mlx5_rxq_mprq_enabled(&tmpl->rxq))
1923 "port %u MPRQ is requested but cannot be enabled\n"
1924 " (requested: pkt_sz = %u, desc_num = %u,"
1925 " rxq_num = %u, stride_sz = %u, stride_num = %u\n"
1926 " supported: min_rxqs_num = %u,"
1927 " min_stride_sz = %u, max_stride_sz = %u).",
1928 dev->data->port_id, non_scatter_min_mbuf_size,
1930 config->mprq.stride_size_n ?
1931 (1U << config->mprq.stride_size_n) :
1932 (1U << mprq_stride_size),
1933 config->mprq.stride_num_n ?
1934 (1U << config->mprq.stride_num_n) :
1935 (1U << mprq_stride_nums),
1936 config->mprq.min_rxqs_num,
1937 (1U << config->mprq.min_stride_size_n),
1938 (1U << config->mprq.max_stride_size_n));
1939 DRV_LOG(DEBUG, "port %u maximum number of segments per packet: %u",
1940 dev->data->port_id, 1 << tmpl->rxq.sges_n);
1941 if (desc % (1 << tmpl->rxq.sges_n)) {
1943 "port %u number of Rx queue descriptors (%u) is not a"
1944 " multiple of SGEs per packet (%u)",
1947 1 << tmpl->rxq.sges_n);
1951 mlx5_max_lro_msg_size_adjust(dev, idx, max_lro_size);
1952 /* Toggle RX checksum offload if hardware supports it. */
1953 tmpl->rxq.csum = !!(offloads & DEV_RX_OFFLOAD_CHECKSUM);
1954 tmpl->rxq.hw_timestamp = !!(offloads & DEV_RX_OFFLOAD_TIMESTAMP);
1955 /* Configure VLAN stripping. */
1956 tmpl->rxq.vlan_strip = !!(offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
1957 /* By default, FCS (CRC) is stripped by hardware. */
1958 tmpl->rxq.crc_present = 0;
1959 tmpl->rxq.lro = lro_on_queue;
1960 if (offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
1961 if (config->hw_fcs_strip) {
1963 * RQs used for LRO-enabled TIRs should not be
1964 * configured to scatter the FCS.
1968 "port %u CRC stripping has been "
1969 "disabled but will still be performed "
1970 "by hardware, because LRO is enabled",
1971 dev->data->port_id);
1973 tmpl->rxq.crc_present = 1;
1976 "port %u CRC stripping has been disabled but will"
1977 " still be performed by hardware, make sure MLNX_OFED"
1978 " and firmware are up to date",
1979 dev->data->port_id);
1983 "port %u CRC stripping is %s, %u bytes will be subtracted from"
1984 " incoming frames to hide it",
1986 tmpl->rxq.crc_present ? "disabled" : "enabled",
1987 tmpl->rxq.crc_present << 2);
1989 tmpl->rxq.rss_hash = !!priv->rss_conf.rss_hf &&
1990 (!!(dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS));
1991 tmpl->rxq.port_id = dev->data->port_id;
1994 tmpl->rxq.elts_n = log2above(desc);
1995 tmpl->rxq.rq_repl_thresh =
1996 MLX5_VPMD_RXQ_RPLNSH_THRESH(1 << tmpl->rxq.elts_n);
1998 (struct rte_mbuf *(*)[1 << tmpl->rxq.elts_n])(tmpl + 1);
2000 tmpl->rxq.uar_lock_cq = &priv->uar_lock_cq;
2002 tmpl->rxq.idx = idx;
2003 rte_atomic32_inc(&tmpl->refcnt);
2004 LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
2012 * Create a DPDK Rx hairpin queue.
2015 * Pointer to Ethernet device.
2019 * Number of descriptors to configure in queue.
2020 * @param hairpin_conf
2021 * The hairpin binding configuration.
2024 * A DPDK queue object on success, NULL otherwise and rte_errno is set.
2026 struct mlx5_rxq_ctrl *
2027 mlx5_rxq_hairpin_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
2028 const struct rte_eth_hairpin_conf *hairpin_conf)
2030 struct mlx5_priv *priv = dev->data->dev_private;
2031 struct mlx5_rxq_ctrl *tmpl;
2033 tmpl = rte_calloc_socket("RXQ", 1, sizeof(*tmpl), 0, SOCKET_ID_ANY);
2038 tmpl->type = MLX5_RXQ_TYPE_HAIRPIN;
2039 tmpl->socket = SOCKET_ID_ANY;
2040 tmpl->rxq.rss_hash = 0;
2041 tmpl->rxq.port_id = dev->data->port_id;
2043 tmpl->rxq.mp = NULL;
2044 tmpl->rxq.elts_n = log2above(desc);
2045 tmpl->rxq.elts = NULL;
2046 tmpl->rxq.mr_ctrl.cache_bh = (struct mlx5_mr_btree) { 0 };
2047 tmpl->hairpin_conf = *hairpin_conf;
2048 tmpl->rxq.idx = idx;
2049 rte_atomic32_inc(&tmpl->refcnt);
2050 LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
2058 * Pointer to Ethernet device.
2063 * A pointer to the queue if it exists, NULL otherwise.
2065 struct mlx5_rxq_ctrl *
2066 mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx)
2068 struct mlx5_priv *priv = dev->data->dev_private;
2069 struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
2071 if ((*priv->rxqs)[idx]) {
2072 rxq_ctrl = container_of((*priv->rxqs)[idx],
2073 struct mlx5_rxq_ctrl,
2075 mlx5_rxq_obj_get(dev, idx);
2076 rte_atomic32_inc(&rxq_ctrl->refcnt);
2082 * Release a Rx queue.
2085 * Pointer to Ethernet device.
2090 * 1 while a reference on it exists, 0 when freed.
2093 mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx)
2095 struct mlx5_priv *priv = dev->data->dev_private;
2096 struct mlx5_rxq_ctrl *rxq_ctrl;
2098 if (!(*priv->rxqs)[idx])
2100 rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
2101 MLX5_ASSERT(rxq_ctrl->priv);
2102 if (rxq_ctrl->obj && !mlx5_rxq_obj_release(rxq_ctrl->obj))
2103 rxq_ctrl->obj = NULL;
2104 if (rte_atomic32_dec_and_test(&rxq_ctrl->refcnt)) {
2105 if (rxq_ctrl->dbr_umem_id_valid)
2106 claim_zero(mlx5_release_dbr(&priv->dbrpgs,
2107 rxq_ctrl->dbr_umem_id,
2108 rxq_ctrl->dbr_offset));
2109 if (rxq_ctrl->type == MLX5_RXQ_TYPE_STANDARD)
2110 mlx5_mr_btree_free(&rxq_ctrl->rxq.mr_ctrl.cache_bh);
2111 LIST_REMOVE(rxq_ctrl, next);
2113 (*priv->rxqs)[idx] = NULL;
2120 * Verify the Rx Queue list is empty
2123 * Pointer to Ethernet device.
2126 * The number of object not released.
2129 mlx5_rxq_verify(struct rte_eth_dev *dev)
2131 struct mlx5_priv *priv = dev->data->dev_private;
2132 struct mlx5_rxq_ctrl *rxq_ctrl;
2135 LIST_FOREACH(rxq_ctrl, &priv->rxqsctrl, next) {
2136 DRV_LOG(DEBUG, "port %u Rx Queue %u still referenced",
2137 dev->data->port_id, rxq_ctrl->rxq.idx);
2144 * Get a Rx queue type.
2147 * Pointer to Ethernet device.
2152 * The Rx queue type.
2155 mlx5_rxq_get_type(struct rte_eth_dev *dev, uint16_t idx)
2157 struct mlx5_priv *priv = dev->data->dev_private;
2158 struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
2160 if (idx < priv->rxqs_n && (*priv->rxqs)[idx]) {
2161 rxq_ctrl = container_of((*priv->rxqs)[idx],
2162 struct mlx5_rxq_ctrl,
2164 return rxq_ctrl->type;
2166 return MLX5_RXQ_TYPE_UNDEFINED;
2170 * Create an indirection table.
2173 * Pointer to Ethernet device.
2175 * Queues entering in the indirection table.
2177 * Number of queues in the array.
2180 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2182 static struct mlx5_ind_table_obj *
2183 mlx5_ind_table_obj_new(struct rte_eth_dev *dev, const uint16_t *queues,
2184 uint32_t queues_n, enum mlx5_ind_tbl_type type)
2186 struct mlx5_priv *priv = dev->data->dev_private;
2187 struct mlx5_ind_table_obj *ind_tbl;
2188 unsigned int i = 0, j = 0, k = 0;
2190 ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl) +
2191 queues_n * sizeof(uint16_t), 0);
2196 ind_tbl->type = type;
2197 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2198 const unsigned int wq_n = rte_is_power_of_2(queues_n) ?
2199 log2above(queues_n) :
2200 log2above(priv->config.ind_table_max_size);
2201 struct ibv_wq *wq[1 << wq_n];
2203 for (i = 0; i != queues_n; ++i) {
2204 struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
2208 wq[i] = rxq->obj->wq;
2209 ind_tbl->queues[i] = queues[i];
2211 ind_tbl->queues_n = queues_n;
2212 /* Finalise indirection table. */
2213 k = i; /* Retain value of i for use in error case. */
2214 for (j = 0; k != (unsigned int)(1 << wq_n); ++k, ++j)
2216 ind_tbl->ind_table = mlx5_glue->create_rwq_ind_table
2218 &(struct ibv_rwq_ind_table_init_attr){
2219 .log_ind_tbl_size = wq_n,
2223 if (!ind_tbl->ind_table) {
2227 } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2228 struct mlx5_devx_rqt_attr *rqt_attr = NULL;
2229 const unsigned int rqt_n =
2230 1 << (rte_is_power_of_2(queues_n) ?
2231 log2above(queues_n) :
2232 log2above(priv->config.ind_table_max_size));
2234 rqt_attr = rte_calloc(__func__, 1, sizeof(*rqt_attr) +
2235 rqt_n * sizeof(uint32_t), 0);
2237 DRV_LOG(ERR, "port %u cannot allocate RQT resources",
2238 dev->data->port_id);
2242 rqt_attr->rqt_max_size = priv->config.ind_table_max_size;
2243 rqt_attr->rqt_actual_size = rqt_n;
2244 for (i = 0; i != queues_n; ++i) {
2245 struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
2249 rqt_attr->rq_list[i] = rxq->obj->rq->id;
2250 ind_tbl->queues[i] = queues[i];
2252 k = i; /* Retain value of i for use in error case. */
2253 for (j = 0; k != rqt_n; ++k, ++j)
2254 rqt_attr->rq_list[k] = rqt_attr->rq_list[j];
2255 ind_tbl->rqt = mlx5_devx_cmd_create_rqt(priv->sh->ctx,
2258 if (!ind_tbl->rqt) {
2259 DRV_LOG(ERR, "port %u cannot create DevX RQT",
2260 dev->data->port_id);
2264 ind_tbl->queues_n = queues_n;
2266 rte_atomic32_inc(&ind_tbl->refcnt);
2267 LIST_INSERT_HEAD(&priv->ind_tbls, ind_tbl, next);
2270 for (j = 0; j < i; j++)
2271 mlx5_rxq_release(dev, ind_tbl->queues[j]);
2273 DEBUG("port %u cannot create indirection table", dev->data->port_id);
2278 * Get an indirection table.
2281 * Pointer to Ethernet device.
2283 * Queues entering in the indirection table.
2285 * Number of queues in the array.
2288 * An indirection table if found.
2290 static struct mlx5_ind_table_obj *
2291 mlx5_ind_table_obj_get(struct rte_eth_dev *dev, const uint16_t *queues,
2294 struct mlx5_priv *priv = dev->data->dev_private;
2295 struct mlx5_ind_table_obj *ind_tbl;
2297 LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2298 if ((ind_tbl->queues_n == queues_n) &&
2299 (memcmp(ind_tbl->queues, queues,
2300 ind_tbl->queues_n * sizeof(ind_tbl->queues[0]))
2307 rte_atomic32_inc(&ind_tbl->refcnt);
2308 for (i = 0; i != ind_tbl->queues_n; ++i)
2309 mlx5_rxq_get(dev, ind_tbl->queues[i]);
2315 * Release an indirection table.
2318 * Pointer to Ethernet device.
2320 * Indirection table to release.
2323 * 1 while a reference on it exists, 0 when freed.
2326 mlx5_ind_table_obj_release(struct rte_eth_dev *dev,
2327 struct mlx5_ind_table_obj *ind_tbl)
2331 if (rte_atomic32_dec_and_test(&ind_tbl->refcnt)) {
2332 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV)
2333 claim_zero(mlx5_glue->destroy_rwq_ind_table
2334 (ind_tbl->ind_table));
2335 else if (ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX)
2336 claim_zero(mlx5_devx_cmd_destroy(ind_tbl->rqt));
2338 for (i = 0; i != ind_tbl->queues_n; ++i)
2339 claim_nonzero(mlx5_rxq_release(dev, ind_tbl->queues[i]));
2340 if (!rte_atomic32_read(&ind_tbl->refcnt)) {
2341 LIST_REMOVE(ind_tbl, next);
2349 * Verify the Rx Queue list is empty
2352 * Pointer to Ethernet device.
2355 * The number of object not released.
2358 mlx5_ind_table_obj_verify(struct rte_eth_dev *dev)
2360 struct mlx5_priv *priv = dev->data->dev_private;
2361 struct mlx5_ind_table_obj *ind_tbl;
2364 LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2366 "port %u indirection table obj %p still referenced",
2367 dev->data->port_id, (void *)ind_tbl);
2374 * Create an Rx Hash queue.
2377 * Pointer to Ethernet device.
2379 * RSS key for the Rx hash queue.
2380 * @param rss_key_len
2382 * @param hash_fields
2383 * Verbs protocol hash field to make the RSS on.
2385 * Queues entering in hash queue. In case of empty hash_fields only the
2386 * first queue index will be taken for the indirection table.
2393 * The Verbs/DevX object initialised index, 0 otherwise and rte_errno is set.
2396 mlx5_hrxq_new(struct rte_eth_dev *dev,
2397 const uint8_t *rss_key, uint32_t rss_key_len,
2398 uint64_t hash_fields,
2399 const uint16_t *queues, uint32_t queues_n,
2400 int tunnel __rte_unused)
2402 struct mlx5_priv *priv = dev->data->dev_private;
2403 struct mlx5_hrxq *hrxq;
2404 uint32_t hrxq_idx = 0;
2405 struct ibv_qp *qp = NULL;
2406 struct mlx5_ind_table_obj *ind_tbl;
2408 struct mlx5_devx_obj *tir = NULL;
2409 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[queues[0]];
2410 struct mlx5_rxq_ctrl *rxq_ctrl =
2411 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
2413 queues_n = hash_fields ? queues_n : 1;
2414 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2416 enum mlx5_ind_tbl_type type;
2418 type = rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_IBV ?
2419 MLX5_IND_TBL_TYPE_IBV : MLX5_IND_TBL_TYPE_DEVX;
2420 ind_tbl = mlx5_ind_table_obj_new(dev, queues, queues_n, type);
2426 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2427 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2428 struct mlx5dv_qp_init_attr qp_init_attr;
2430 memset(&qp_init_attr, 0, sizeof(qp_init_attr));
2432 qp_init_attr.comp_mask =
2433 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2434 qp_init_attr.create_flags =
2435 MLX5DV_QP_CREATE_TUNNEL_OFFLOADS;
2437 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2438 if (dev->data->dev_conf.lpbk_mode) {
2440 * Allow packet sent from NIC loop back
2441 * w/o source MAC check.
2443 qp_init_attr.comp_mask |=
2444 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2445 qp_init_attr.create_flags |=
2446 MLX5DV_QP_CREATE_TIR_ALLOW_SELF_LOOPBACK_UC;
2449 qp = mlx5_glue->dv_create_qp
2451 &(struct ibv_qp_init_attr_ex){
2452 .qp_type = IBV_QPT_RAW_PACKET,
2454 IBV_QP_INIT_ATTR_PD |
2455 IBV_QP_INIT_ATTR_IND_TABLE |
2456 IBV_QP_INIT_ATTR_RX_HASH,
2457 .rx_hash_conf = (struct ibv_rx_hash_conf){
2459 IBV_RX_HASH_FUNC_TOEPLITZ,
2460 .rx_hash_key_len = rss_key_len,
2462 (void *)(uintptr_t)rss_key,
2463 .rx_hash_fields_mask = hash_fields,
2465 .rwq_ind_tbl = ind_tbl->ind_table,
2470 qp = mlx5_glue->create_qp_ex
2472 &(struct ibv_qp_init_attr_ex){
2473 .qp_type = IBV_QPT_RAW_PACKET,
2475 IBV_QP_INIT_ATTR_PD |
2476 IBV_QP_INIT_ATTR_IND_TABLE |
2477 IBV_QP_INIT_ATTR_RX_HASH,
2478 .rx_hash_conf = (struct ibv_rx_hash_conf){
2480 IBV_RX_HASH_FUNC_TOEPLITZ,
2481 .rx_hash_key_len = rss_key_len,
2483 (void *)(uintptr_t)rss_key,
2484 .rx_hash_fields_mask = hash_fields,
2486 .rwq_ind_tbl = ind_tbl->ind_table,
2494 } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2495 struct mlx5_devx_tir_attr tir_attr;
2499 /* Enable TIR LRO only if all the queues were configured for. */
2500 for (i = 0; i < queues_n; ++i) {
2501 if (!(*priv->rxqs)[queues[i]]->lro) {
2506 memset(&tir_attr, 0, sizeof(tir_attr));
2507 tir_attr.disp_type = MLX5_TIRC_DISP_TYPE_INDIRECT;
2508 tir_attr.rx_hash_fn = MLX5_RX_HASH_FN_TOEPLITZ;
2509 tir_attr.tunneled_offload_en = !!tunnel;
2510 /* If needed, translate hash_fields bitmap to PRM format. */
2512 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2513 struct mlx5_rx_hash_field_select *rx_hash_field_select =
2514 hash_fields & IBV_RX_HASH_INNER ?
2515 &tir_attr.rx_hash_field_selector_inner :
2516 &tir_attr.rx_hash_field_selector_outer;
2518 struct mlx5_rx_hash_field_select *rx_hash_field_select =
2519 &tir_attr.rx_hash_field_selector_outer;
2522 /* 1 bit: 0: IPv4, 1: IPv6. */
2523 rx_hash_field_select->l3_prot_type =
2524 !!(hash_fields & MLX5_IPV6_IBV_RX_HASH);
2525 /* 1 bit: 0: TCP, 1: UDP. */
2526 rx_hash_field_select->l4_prot_type =
2527 !!(hash_fields & MLX5_UDP_IBV_RX_HASH);
2528 /* Bitmask which sets which fields to use in RX Hash. */
2529 rx_hash_field_select->selected_fields =
2530 ((!!(hash_fields & MLX5_L3_SRC_IBV_RX_HASH)) <<
2531 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_SRC_IP) |
2532 (!!(hash_fields & MLX5_L3_DST_IBV_RX_HASH)) <<
2533 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_DST_IP |
2534 (!!(hash_fields & MLX5_L4_SRC_IBV_RX_HASH)) <<
2535 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_SPORT |
2536 (!!(hash_fields & MLX5_L4_DST_IBV_RX_HASH)) <<
2537 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_DPORT;
2539 if (rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN)
2540 tir_attr.transport_domain = priv->sh->td->id;
2542 tir_attr.transport_domain = priv->sh->tdn;
2543 memcpy(tir_attr.rx_hash_toeplitz_key, rss_key,
2544 MLX5_RSS_HASH_KEY_LEN);
2545 tir_attr.indirect_table = ind_tbl->rqt->id;
2546 if (dev->data->dev_conf.lpbk_mode)
2547 tir_attr.self_lb_block =
2548 MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST;
2550 tir_attr.lro_timeout_period_usecs =
2551 priv->config.lro.timeout;
2552 tir_attr.lro_max_msg_sz = priv->max_lro_msg_size;
2553 tir_attr.lro_enable_mask =
2554 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
2555 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO;
2557 tir = mlx5_devx_cmd_create_tir(priv->sh->ctx, &tir_attr);
2559 DRV_LOG(ERR, "port %u cannot create DevX TIR",
2560 dev->data->port_id);
2565 hrxq = mlx5_ipool_zmalloc(priv->sh->ipool[MLX5_IPOOL_HRXQ], &hrxq_idx);
2568 hrxq->ind_table = ind_tbl;
2569 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2571 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2573 mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2574 if (!hrxq->action) {
2579 } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2581 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2582 hrxq->action = mlx5_glue->dv_create_flow_action_dest_devx_tir
2584 if (!hrxq->action) {
2590 hrxq->rss_key_len = rss_key_len;
2591 hrxq->hash_fields = hash_fields;
2592 memcpy(hrxq->rss_key, rss_key, rss_key_len);
2593 rte_atomic32_inc(&hrxq->refcnt);
2594 ILIST_INSERT(priv->sh->ipool[MLX5_IPOOL_HRXQ], &priv->hrxqs, hrxq_idx,
2598 err = rte_errno; /* Save rte_errno before cleanup. */
2599 mlx5_ind_table_obj_release(dev, ind_tbl);
2601 claim_zero(mlx5_glue->destroy_qp(qp));
2603 claim_zero(mlx5_devx_cmd_destroy(tir));
2604 rte_errno = err; /* Restore rte_errno. */
2609 * Get an Rx Hash queue.
2612 * Pointer to Ethernet device.
2614 * RSS configuration for the Rx hash queue.
2616 * Queues entering in hash queue. In case of empty hash_fields only the
2617 * first queue index will be taken for the indirection table.
2622 * An hash Rx queue index on success.
2625 mlx5_hrxq_get(struct rte_eth_dev *dev,
2626 const uint8_t *rss_key, uint32_t rss_key_len,
2627 uint64_t hash_fields,
2628 const uint16_t *queues, uint32_t queues_n)
2630 struct mlx5_priv *priv = dev->data->dev_private;
2631 struct mlx5_hrxq *hrxq;
2634 queues_n = hash_fields ? queues_n : 1;
2635 ILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_HRXQ], priv->hrxqs, idx,
2637 struct mlx5_ind_table_obj *ind_tbl;
2639 if (hrxq->rss_key_len != rss_key_len)
2641 if (memcmp(hrxq->rss_key, rss_key, rss_key_len))
2643 if (hrxq->hash_fields != hash_fields)
2645 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2648 if (ind_tbl != hrxq->ind_table) {
2649 mlx5_ind_table_obj_release(dev, ind_tbl);
2652 rte_atomic32_inc(&hrxq->refcnt);
2659 * Release the hash Rx queue.
2662 * Pointer to Ethernet device.
2664 * Index to Hash Rx queue to release.
2667 * 1 while a reference on it exists, 0 when freed.
2670 mlx5_hrxq_release(struct rte_eth_dev *dev, uint32_t hrxq_idx)
2672 struct mlx5_priv *priv = dev->data->dev_private;
2673 struct mlx5_hrxq *hrxq;
2675 hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq_idx);
2678 if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2679 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2680 mlx5_glue->destroy_flow_action(hrxq->action);
2682 if (hrxq->ind_table->type == MLX5_IND_TBL_TYPE_IBV)
2683 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2684 else /* hrxq->ind_table->type == MLX5_IND_TBL_TYPE_DEVX */
2685 claim_zero(mlx5_devx_cmd_destroy(hrxq->tir));
2686 mlx5_ind_table_obj_release(dev, hrxq->ind_table);
2687 ILIST_REMOVE(priv->sh->ipool[MLX5_IPOOL_HRXQ], &priv->hrxqs,
2688 hrxq_idx, hrxq, next);
2689 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq_idx);
2692 claim_nonzero(mlx5_ind_table_obj_release(dev, hrxq->ind_table));
2697 * Verify the Rx Queue list is empty
2700 * Pointer to Ethernet device.
2703 * The number of object not released.
2706 mlx5_hrxq_verify(struct rte_eth_dev *dev)
2708 struct mlx5_priv *priv = dev->data->dev_private;
2709 struct mlx5_hrxq *hrxq;
2713 ILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_HRXQ], priv->hrxqs, idx,
2716 "port %u hash Rx queue %p still referenced",
2717 dev->data->port_id, (void *)hrxq);
2724 * Create a drop Rx queue Verbs/DevX object.
2727 * Pointer to Ethernet device.
2730 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2732 static struct mlx5_rxq_obj *
2733 mlx5_rxq_obj_drop_new(struct rte_eth_dev *dev)
2735 struct mlx5_priv *priv = dev->data->dev_private;
2736 struct ibv_context *ctx = priv->sh->ctx;
2738 struct ibv_wq *wq = NULL;
2739 struct mlx5_rxq_obj *rxq;
2741 if (priv->drop_queue.rxq)
2742 return priv->drop_queue.rxq;
2743 cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0);
2745 DEBUG("port %u cannot allocate CQ for drop queue",
2746 dev->data->port_id);
2750 wq = mlx5_glue->create_wq(ctx,
2751 &(struct ibv_wq_init_attr){
2752 .wq_type = IBV_WQT_RQ,
2759 DEBUG("port %u cannot allocate WQ for drop queue",
2760 dev->data->port_id);
2764 rxq = rte_calloc(__func__, 1, sizeof(*rxq), 0);
2766 DEBUG("port %u cannot allocate drop Rx queue memory",
2767 dev->data->port_id);
2773 priv->drop_queue.rxq = rxq;
2777 claim_zero(mlx5_glue->destroy_wq(wq));
2779 claim_zero(mlx5_glue->destroy_cq(cq));
2784 * Release a drop Rx queue Verbs/DevX object.
2787 * Pointer to Ethernet device.
2790 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2793 mlx5_rxq_obj_drop_release(struct rte_eth_dev *dev)
2795 struct mlx5_priv *priv = dev->data->dev_private;
2796 struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq;
2799 claim_zero(mlx5_glue->destroy_wq(rxq->wq));
2801 claim_zero(mlx5_glue->destroy_cq(rxq->cq));
2803 priv->drop_queue.rxq = NULL;
2807 * Create a drop indirection table.
2810 * Pointer to Ethernet device.
2813 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2815 static struct mlx5_ind_table_obj *
2816 mlx5_ind_table_obj_drop_new(struct rte_eth_dev *dev)
2818 struct mlx5_priv *priv = dev->data->dev_private;
2819 struct mlx5_ind_table_obj *ind_tbl;
2820 struct mlx5_rxq_obj *rxq;
2821 struct mlx5_ind_table_obj tmpl;
2823 rxq = mlx5_rxq_obj_drop_new(dev);
2826 tmpl.ind_table = mlx5_glue->create_rwq_ind_table
2828 &(struct ibv_rwq_ind_table_init_attr){
2829 .log_ind_tbl_size = 0,
2830 .ind_tbl = &rxq->wq,
2833 if (!tmpl.ind_table) {
2834 DEBUG("port %u cannot allocate indirection table for drop"
2836 dev->data->port_id);
2840 ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl), 0);
2845 ind_tbl->ind_table = tmpl.ind_table;
2848 mlx5_rxq_obj_drop_release(dev);
2853 * Release a drop indirection table.
2856 * Pointer to Ethernet device.
2859 mlx5_ind_table_obj_drop_release(struct rte_eth_dev *dev)
2861 struct mlx5_priv *priv = dev->data->dev_private;
2862 struct mlx5_ind_table_obj *ind_tbl = priv->drop_queue.hrxq->ind_table;
2864 claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl->ind_table));
2865 mlx5_rxq_obj_drop_release(dev);
2867 priv->drop_queue.hrxq->ind_table = NULL;
2871 * Create a drop Rx Hash queue.
2874 * Pointer to Ethernet device.
2877 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2880 mlx5_hrxq_drop_new(struct rte_eth_dev *dev)
2882 struct mlx5_priv *priv = dev->data->dev_private;
2883 struct mlx5_ind_table_obj *ind_tbl = NULL;
2884 struct ibv_qp *qp = NULL;
2885 struct mlx5_hrxq *hrxq = NULL;
2887 if (priv->drop_queue.hrxq) {
2888 rte_atomic32_inc(&priv->drop_queue.hrxq->refcnt);
2889 return priv->drop_queue.hrxq;
2891 hrxq = rte_calloc(__func__, 1, sizeof(*hrxq), 0);
2894 "port %u cannot allocate memory for drop queue",
2895 dev->data->port_id);
2899 priv->drop_queue.hrxq = hrxq;
2900 ind_tbl = mlx5_ind_table_obj_drop_new(dev);
2903 hrxq->ind_table = ind_tbl;
2904 qp = mlx5_glue->create_qp_ex(priv->sh->ctx,
2905 &(struct ibv_qp_init_attr_ex){
2906 .qp_type = IBV_QPT_RAW_PACKET,
2908 IBV_QP_INIT_ATTR_PD |
2909 IBV_QP_INIT_ATTR_IND_TABLE |
2910 IBV_QP_INIT_ATTR_RX_HASH,
2911 .rx_hash_conf = (struct ibv_rx_hash_conf){
2913 IBV_RX_HASH_FUNC_TOEPLITZ,
2914 .rx_hash_key_len = MLX5_RSS_HASH_KEY_LEN,
2915 .rx_hash_key = rss_hash_default_key,
2916 .rx_hash_fields_mask = 0,
2918 .rwq_ind_tbl = ind_tbl->ind_table,
2922 DEBUG("port %u cannot allocate QP for drop queue",
2923 dev->data->port_id);
2928 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2929 hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2930 if (!hrxq->action) {
2935 rte_atomic32_set(&hrxq->refcnt, 1);
2938 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2939 if (hrxq && hrxq->action)
2940 mlx5_glue->destroy_flow_action(hrxq->action);
2943 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2945 mlx5_ind_table_obj_drop_release(dev);
2947 priv->drop_queue.hrxq = NULL;
2954 * Release a drop hash Rx queue.
2957 * Pointer to Ethernet device.
2960 mlx5_hrxq_drop_release(struct rte_eth_dev *dev)
2962 struct mlx5_priv *priv = dev->data->dev_private;
2963 struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
2965 if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2966 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2967 mlx5_glue->destroy_flow_action(hrxq->action);
2969 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2970 mlx5_ind_table_obj_drop_release(dev);
2972 priv->drop_queue.hrxq = NULL;