1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015 Mellanox Technologies, Ltd
12 #include <sys/queue.h>
15 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
17 #pragma GCC diagnostic ignored "-Wpedantic"
19 #include <infiniband/verbs.h>
20 #include <infiniband/mlx5dv.h>
22 #pragma GCC diagnostic error "-Wpedantic"
26 #include <rte_malloc.h>
27 #include <rte_ethdev_driver.h>
28 #include <rte_common.h>
29 #include <rte_interrupts.h>
30 #include <rte_debug.h>
34 #include "mlx5_rxtx.h"
35 #include "mlx5_utils.h"
36 #include "mlx5_autoconf.h"
37 #include "mlx5_defs.h"
38 #include "mlx5_glue.h"
40 /* Default RSS hash key also used for ConnectX-3. */
41 uint8_t rss_hash_default_key[] = {
42 0x2c, 0xc6, 0x81, 0xd1,
43 0x5b, 0xdb, 0xf4, 0xf7,
44 0xfc, 0xa2, 0x83, 0x19,
45 0xdb, 0x1a, 0x3e, 0x94,
46 0x6b, 0x9e, 0x38, 0xd9,
47 0x2c, 0x9c, 0x03, 0xd1,
48 0xad, 0x99, 0x44, 0xa7,
49 0xd9, 0x56, 0x3d, 0x59,
50 0x06, 0x3c, 0x25, 0xf3,
51 0xfc, 0x1f, 0xdc, 0x2a,
54 /* Length of the default RSS hash key. */
55 static_assert(MLX5_RSS_HASH_KEY_LEN ==
56 (unsigned int)sizeof(rss_hash_default_key),
57 "wrong RSS default key size.");
60 * Check whether Multi-Packet RQ can be enabled for the device.
63 * Pointer to Ethernet device.
66 * 1 if supported, negative errno value if not.
69 mlx5_check_mprq_support(struct rte_eth_dev *dev)
71 struct mlx5_priv *priv = dev->data->dev_private;
73 if (priv->config.mprq.enabled &&
74 priv->rxqs_n >= priv->config.mprq.min_rxqs_num)
80 * Check whether Multi-Packet RQ is enabled for the Rx queue.
83 * Pointer to receive queue structure.
86 * 0 if disabled, otherwise enabled.
89 mlx5_rxq_mprq_enabled(struct mlx5_rxq_data *rxq)
91 return rxq->strd_num_n > 0;
95 * Check whether Multi-Packet RQ is enabled for the device.
98 * Pointer to Ethernet device.
101 * 0 if disabled, otherwise enabled.
104 mlx5_mprq_enabled(struct rte_eth_dev *dev)
106 struct mlx5_priv *priv = dev->data->dev_private;
110 if (mlx5_check_mprq_support(dev) < 0)
112 /* All the configured queues should be enabled. */
113 for (i = 0; i < priv->rxqs_n; ++i) {
114 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
118 if (mlx5_rxq_mprq_enabled(rxq))
121 /* Multi-Packet RQ can't be partially configured. */
122 assert(n == 0 || n == priv->rxqs_n);
123 return n == priv->rxqs_n;
127 * Allocate RX queue elements for Multi-Packet RQ.
130 * Pointer to RX queue structure.
133 * 0 on success, a negative errno value otherwise and rte_errno is set.
136 rxq_alloc_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
138 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
139 unsigned int wqe_n = 1 << rxq->elts_n;
143 /* Iterate on segments. */
144 for (i = 0; i <= wqe_n; ++i) {
145 struct mlx5_mprq_buf *buf;
147 if (rte_mempool_get(rxq->mprq_mp, (void **)&buf) < 0) {
148 DRV_LOG(ERR, "port %u empty mbuf pool", rxq->port_id);
153 (*rxq->mprq_bufs)[i] = buf;
155 rxq->mprq_repl = buf;
158 "port %u Rx queue %u allocated and configured %u segments",
159 rxq->port_id, rxq->idx, wqe_n);
162 err = rte_errno; /* Save rte_errno before cleanup. */
164 for (i = 0; (i != wqe_n); ++i) {
165 if ((*rxq->mprq_bufs)[i] != NULL)
166 rte_mempool_put(rxq->mprq_mp,
167 (*rxq->mprq_bufs)[i]);
168 (*rxq->mprq_bufs)[i] = NULL;
170 DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
171 rxq->port_id, rxq->idx);
172 rte_errno = err; /* Restore rte_errno. */
177 * Allocate RX queue elements for Single-Packet RQ.
180 * Pointer to RX queue structure.
183 * 0 on success, errno value on failure.
186 rxq_alloc_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
188 const unsigned int sges_n = 1 << rxq_ctrl->rxq.sges_n;
189 unsigned int elts_n = 1 << rxq_ctrl->rxq.elts_n;
193 /* Iterate on segments. */
194 for (i = 0; (i != elts_n); ++i) {
195 struct rte_mbuf *buf;
197 buf = rte_pktmbuf_alloc(rxq_ctrl->rxq.mp);
199 DRV_LOG(ERR, "port %u empty mbuf pool",
200 PORT_ID(rxq_ctrl->priv));
204 /* Headroom is reserved by rte_pktmbuf_alloc(). */
205 assert(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
206 /* Buffer is supposed to be empty. */
207 assert(rte_pktmbuf_data_len(buf) == 0);
208 assert(rte_pktmbuf_pkt_len(buf) == 0);
210 /* Only the first segment keeps headroom. */
212 SET_DATA_OFF(buf, 0);
213 PORT(buf) = rxq_ctrl->rxq.port_id;
214 DATA_LEN(buf) = rte_pktmbuf_tailroom(buf);
215 PKT_LEN(buf) = DATA_LEN(buf);
217 (*rxq_ctrl->rxq.elts)[i] = buf;
219 /* If Rx vector is activated. */
220 if (mlx5_rxq_check_vec_support(&rxq_ctrl->rxq) > 0) {
221 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
222 struct rte_mbuf *mbuf_init = &rxq->fake_mbuf;
225 /* Initialize default rearm_data for vPMD. */
226 mbuf_init->data_off = RTE_PKTMBUF_HEADROOM;
227 rte_mbuf_refcnt_set(mbuf_init, 1);
228 mbuf_init->nb_segs = 1;
229 mbuf_init->port = rxq->port_id;
231 * prevent compiler reordering:
232 * rearm_data covers previous fields.
234 rte_compiler_barrier();
235 rxq->mbuf_initializer =
236 *(uint64_t *)&mbuf_init->rearm_data;
237 /* Padding with a fake mbuf for vectorized Rx. */
238 for (j = 0; j < MLX5_VPMD_DESCS_PER_LOOP; ++j)
239 (*rxq->elts)[elts_n + j] = &rxq->fake_mbuf;
242 "port %u Rx queue %u allocated and configured %u segments"
244 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx, elts_n,
245 elts_n / (1 << rxq_ctrl->rxq.sges_n));
248 err = rte_errno; /* Save rte_errno before cleanup. */
250 for (i = 0; (i != elts_n); ++i) {
251 if ((*rxq_ctrl->rxq.elts)[i] != NULL)
252 rte_pktmbuf_free_seg((*rxq_ctrl->rxq.elts)[i]);
253 (*rxq_ctrl->rxq.elts)[i] = NULL;
255 DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
256 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx);
257 rte_errno = err; /* Restore rte_errno. */
262 * Allocate RX queue elements.
265 * Pointer to RX queue structure.
268 * 0 on success, errno value on failure.
271 rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
273 return mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq) ?
274 rxq_alloc_elts_mprq(rxq_ctrl) : rxq_alloc_elts_sprq(rxq_ctrl);
278 * Free RX queue elements for Multi-Packet RQ.
281 * Pointer to RX queue structure.
284 rxq_free_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
286 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
289 DRV_LOG(DEBUG, "port %u Multi-Packet Rx queue %u freeing WRs",
290 rxq->port_id, rxq->idx);
291 if (rxq->mprq_bufs == NULL)
293 assert(mlx5_rxq_check_vec_support(rxq) < 0);
294 for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
295 if ((*rxq->mprq_bufs)[i] != NULL)
296 mlx5_mprq_buf_free((*rxq->mprq_bufs)[i]);
297 (*rxq->mprq_bufs)[i] = NULL;
299 if (rxq->mprq_repl != NULL) {
300 mlx5_mprq_buf_free(rxq->mprq_repl);
301 rxq->mprq_repl = NULL;
306 * Free RX queue elements for Single-Packet RQ.
309 * Pointer to RX queue structure.
312 rxq_free_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
314 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
315 const uint16_t q_n = (1 << rxq->elts_n);
316 const uint16_t q_mask = q_n - 1;
317 uint16_t used = q_n - (rxq->rq_ci - rxq->rq_pi);
320 DRV_LOG(DEBUG, "port %u Rx queue %u freeing WRs",
321 PORT_ID(rxq_ctrl->priv), rxq->idx);
322 if (rxq->elts == NULL)
325 * Some mbuf in the Ring belongs to the application. They cannot be
328 if (mlx5_rxq_check_vec_support(rxq) > 0) {
329 for (i = 0; i < used; ++i)
330 (*rxq->elts)[(rxq->rq_ci + i) & q_mask] = NULL;
331 rxq->rq_pi = rxq->rq_ci;
333 for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
334 if ((*rxq->elts)[i] != NULL)
335 rte_pktmbuf_free_seg((*rxq->elts)[i]);
336 (*rxq->elts)[i] = NULL;
341 * Free RX queue elements.
344 * Pointer to RX queue structure.
347 rxq_free_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
349 if (mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq))
350 rxq_free_elts_mprq(rxq_ctrl);
352 rxq_free_elts_sprq(rxq_ctrl);
356 * Returns the per-queue supported offloads.
359 * Pointer to Ethernet device.
362 * Supported Rx offloads.
365 mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev)
367 struct mlx5_priv *priv = dev->data->dev_private;
368 struct mlx5_dev_config *config = &priv->config;
369 uint64_t offloads = (DEV_RX_OFFLOAD_SCATTER |
370 DEV_RX_OFFLOAD_TIMESTAMP |
371 DEV_RX_OFFLOAD_JUMBO_FRAME);
373 if (config->hw_fcs_strip)
374 offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
377 offloads |= (DEV_RX_OFFLOAD_IPV4_CKSUM |
378 DEV_RX_OFFLOAD_UDP_CKSUM |
379 DEV_RX_OFFLOAD_TCP_CKSUM);
380 if (config->hw_vlan_strip)
381 offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
387 * Returns the per-port supported offloads.
390 * Supported Rx offloads.
393 mlx5_get_rx_port_offloads(void)
395 uint64_t offloads = DEV_RX_OFFLOAD_VLAN_FILTER;
401 * Verify if the queue can be released.
404 * Pointer to Ethernet device.
409 * 1 if the queue can be released
410 * 0 if the queue can not be released, there are references to it.
411 * Negative errno and rte_errno is set if queue doesn't exist.
414 mlx5_rxq_releasable(struct rte_eth_dev *dev, uint16_t idx)
416 struct mlx5_priv *priv = dev->data->dev_private;
417 struct mlx5_rxq_ctrl *rxq_ctrl;
419 if (!(*priv->rxqs)[idx]) {
423 rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
424 return (rte_atomic32_read(&rxq_ctrl->refcnt) == 1);
430 * Pointer to Ethernet device structure.
434 * Number of descriptors to configure in queue.
436 * NUMA socket on which memory must be allocated.
438 * Thresholds parameters.
440 * Memory pool for buffer allocations.
443 * 0 on success, a negative errno value otherwise and rte_errno is set.
446 mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
447 unsigned int socket, const struct rte_eth_rxconf *conf,
448 struct rte_mempool *mp)
450 struct mlx5_priv *priv = dev->data->dev_private;
451 struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
452 struct mlx5_rxq_ctrl *rxq_ctrl =
453 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
455 if (!rte_is_power_of_2(desc)) {
456 desc = 1 << log2above(desc);
458 "port %u increased number of descriptors in Rx queue %u"
459 " to the next power of two (%d)",
460 dev->data->port_id, idx, desc);
462 DRV_LOG(DEBUG, "port %u configuring Rx queue %u for %u descriptors",
463 dev->data->port_id, idx, desc);
464 if (idx >= priv->rxqs_n) {
465 DRV_LOG(ERR, "port %u Rx queue index out of range (%u >= %u)",
466 dev->data->port_id, idx, priv->rxqs_n);
467 rte_errno = EOVERFLOW;
470 if (!mlx5_rxq_releasable(dev, idx)) {
471 DRV_LOG(ERR, "port %u unable to release queue index %u",
472 dev->data->port_id, idx);
476 mlx5_rxq_release(dev, idx);
477 rxq_ctrl = mlx5_rxq_new(dev, idx, desc, socket, conf, mp);
479 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
480 dev->data->port_id, idx);
484 DRV_LOG(DEBUG, "port %u adding Rx queue %u to list",
485 dev->data->port_id, idx);
486 (*priv->rxqs)[idx] = &rxq_ctrl->rxq;
491 * DPDK callback to release a RX queue.
494 * Generic RX queue pointer.
497 mlx5_rx_queue_release(void *dpdk_rxq)
499 struct mlx5_rxq_data *rxq = (struct mlx5_rxq_data *)dpdk_rxq;
500 struct mlx5_rxq_ctrl *rxq_ctrl;
501 struct mlx5_priv *priv;
505 rxq_ctrl = container_of(rxq, struct mlx5_rxq_ctrl, rxq);
506 priv = rxq_ctrl->priv;
507 if (!mlx5_rxq_releasable(ETH_DEV(priv), rxq_ctrl->rxq.idx))
508 rte_panic("port %u Rx queue %u is still used by a flow and"
509 " cannot be removed\n",
510 PORT_ID(priv), rxq->idx);
511 mlx5_rxq_release(ETH_DEV(priv), rxq_ctrl->rxq.idx);
515 * Get an Rx queue Verbs object.
518 * Pointer to Ethernet device.
520 * Queue index in DPDK Rx queue array
523 * The Verbs object if it exists.
525 static struct mlx5_rxq_ibv *
526 mlx5_rxq_ibv_get(struct rte_eth_dev *dev, uint16_t idx)
528 struct mlx5_priv *priv = dev->data->dev_private;
529 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
530 struct mlx5_rxq_ctrl *rxq_ctrl;
532 if (idx >= priv->rxqs_n)
536 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
538 rte_atomic32_inc(&rxq_ctrl->ibv->refcnt);
539 return rxq_ctrl->ibv;
543 * Release an Rx verbs queue object.
546 * Verbs Rx queue object.
549 * 1 while a reference on it exists, 0 when freed.
552 mlx5_rxq_ibv_release(struct mlx5_rxq_ibv *rxq_ibv)
557 if (rte_atomic32_dec_and_test(&rxq_ibv->refcnt)) {
558 rxq_free_elts(rxq_ibv->rxq_ctrl);
559 claim_zero(mlx5_glue->destroy_wq(rxq_ibv->wq));
560 claim_zero(mlx5_glue->destroy_cq(rxq_ibv->cq));
561 if (rxq_ibv->channel)
562 claim_zero(mlx5_glue->destroy_comp_channel
564 LIST_REMOVE(rxq_ibv, next);
572 * Allocate queue vector and fill epoll fd list for Rx interrupts.
575 * Pointer to Ethernet device.
578 * 0 on success, a negative errno value otherwise and rte_errno is set.
581 mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev)
583 struct mlx5_priv *priv = dev->data->dev_private;
585 unsigned int rxqs_n = priv->rxqs_n;
586 unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
587 unsigned int count = 0;
588 struct rte_intr_handle *intr_handle = dev->intr_handle;
590 if (!dev->data->dev_conf.intr_conf.rxq)
592 mlx5_rx_intr_vec_disable(dev);
593 intr_handle->intr_vec = malloc(n * sizeof(intr_handle->intr_vec[0]));
594 if (intr_handle->intr_vec == NULL) {
596 "port %u failed to allocate memory for interrupt"
597 " vector, Rx interrupts will not be supported",
602 intr_handle->type = RTE_INTR_HANDLE_EXT;
603 for (i = 0; i != n; ++i) {
604 /* This rxq ibv must not be released in this function. */
605 struct mlx5_rxq_ibv *rxq_ibv = mlx5_rxq_ibv_get(dev, i);
610 /* Skip queues that cannot request interrupts. */
611 if (!rxq_ibv || !rxq_ibv->channel) {
612 /* Use invalid intr_vec[] index to disable entry. */
613 intr_handle->intr_vec[i] =
614 RTE_INTR_VEC_RXTX_OFFSET +
615 RTE_MAX_RXTX_INTR_VEC_ID;
618 if (count >= RTE_MAX_RXTX_INTR_VEC_ID) {
620 "port %u too many Rx queues for interrupt"
621 " vector size (%d), Rx interrupts cannot be"
623 dev->data->port_id, RTE_MAX_RXTX_INTR_VEC_ID);
624 mlx5_rx_intr_vec_disable(dev);
628 fd = rxq_ibv->channel->fd;
629 flags = fcntl(fd, F_GETFL);
630 rc = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
634 "port %u failed to make Rx interrupt file"
635 " descriptor %d non-blocking for queue index"
637 dev->data->port_id, fd, i);
638 mlx5_rx_intr_vec_disable(dev);
641 intr_handle->intr_vec[i] = RTE_INTR_VEC_RXTX_OFFSET + count;
642 intr_handle->efds[count] = fd;
646 mlx5_rx_intr_vec_disable(dev);
648 intr_handle->nb_efd = count;
653 * Clean up Rx interrupts handler.
656 * Pointer to Ethernet device.
659 mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev)
661 struct mlx5_priv *priv = dev->data->dev_private;
662 struct rte_intr_handle *intr_handle = dev->intr_handle;
664 unsigned int rxqs_n = priv->rxqs_n;
665 unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
667 if (!dev->data->dev_conf.intr_conf.rxq)
669 if (!intr_handle->intr_vec)
671 for (i = 0; i != n; ++i) {
672 struct mlx5_rxq_ctrl *rxq_ctrl;
673 struct mlx5_rxq_data *rxq_data;
675 if (intr_handle->intr_vec[i] == RTE_INTR_VEC_RXTX_OFFSET +
676 RTE_MAX_RXTX_INTR_VEC_ID)
679 * Need to access directly the queue to release the reference
680 * kept in mlx5_rx_intr_vec_enable().
682 rxq_data = (*priv->rxqs)[i];
683 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
685 mlx5_rxq_ibv_release(rxq_ctrl->ibv);
688 rte_intr_free_epoll_fd(intr_handle);
689 if (intr_handle->intr_vec)
690 free(intr_handle->intr_vec);
691 intr_handle->nb_efd = 0;
692 intr_handle->intr_vec = NULL;
696 * MLX5 CQ notification .
699 * Pointer to receive queue structure.
701 * Sequence number per receive queue .
704 mlx5_arm_cq(struct mlx5_rxq_data *rxq, int sq_n_rxq)
707 uint32_t doorbell_hi;
709 void *cq_db_reg = (char *)rxq->cq_uar + MLX5_CQ_DOORBELL;
711 sq_n = sq_n_rxq & MLX5_CQ_SQN_MASK;
712 doorbell_hi = sq_n << MLX5_CQ_SQN_OFFSET | (rxq->cq_ci & MLX5_CI_MASK);
713 doorbell = (uint64_t)doorbell_hi << 32;
714 doorbell |= rxq->cqn;
715 rxq->cq_db[MLX5_CQ_ARM_DB] = rte_cpu_to_be_32(doorbell_hi);
716 mlx5_uar_write64(rte_cpu_to_be_64(doorbell),
717 cq_db_reg, rxq->uar_lock_cq);
721 * DPDK callback for Rx queue interrupt enable.
724 * Pointer to Ethernet device structure.
729 * 0 on success, a negative errno value otherwise and rte_errno is set.
732 mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
734 struct mlx5_priv *priv = dev->data->dev_private;
735 struct mlx5_rxq_data *rxq_data;
736 struct mlx5_rxq_ctrl *rxq_ctrl;
738 rxq_data = (*priv->rxqs)[rx_queue_id];
743 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
745 struct mlx5_rxq_ibv *rxq_ibv;
747 rxq_ibv = mlx5_rxq_ibv_get(dev, rx_queue_id);
752 mlx5_arm_cq(rxq_data, rxq_data->cq_arm_sn);
753 mlx5_rxq_ibv_release(rxq_ibv);
759 * DPDK callback for Rx queue interrupt disable.
762 * Pointer to Ethernet device structure.
767 * 0 on success, a negative errno value otherwise and rte_errno is set.
770 mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
772 struct mlx5_priv *priv = dev->data->dev_private;
773 struct mlx5_rxq_data *rxq_data;
774 struct mlx5_rxq_ctrl *rxq_ctrl;
775 struct mlx5_rxq_ibv *rxq_ibv = NULL;
776 struct ibv_cq *ev_cq;
780 rxq_data = (*priv->rxqs)[rx_queue_id];
785 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
788 rxq_ibv = mlx5_rxq_ibv_get(dev, rx_queue_id);
793 ret = mlx5_glue->get_cq_event(rxq_ibv->channel, &ev_cq, &ev_ctx);
794 if (ret || ev_cq != rxq_ibv->cq) {
798 rxq_data->cq_arm_sn++;
799 mlx5_glue->ack_cq_events(rxq_ibv->cq, 1);
800 mlx5_rxq_ibv_release(rxq_ibv);
803 ret = rte_errno; /* Save rte_errno before cleanup. */
805 mlx5_rxq_ibv_release(rxq_ibv);
806 DRV_LOG(WARNING, "port %u unable to disable interrupt on Rx queue %d",
807 dev->data->port_id, rx_queue_id);
808 rte_errno = ret; /* Restore rte_errno. */
813 * Create the Rx queue Verbs object.
816 * Pointer to Ethernet device.
818 * Queue index in DPDK Rx queue array
821 * The Verbs object initialised, NULL otherwise and rte_errno is set.
823 struct mlx5_rxq_ibv *
824 mlx5_rxq_ibv_new(struct rte_eth_dev *dev, uint16_t idx)
826 struct mlx5_priv *priv = dev->data->dev_private;
827 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
828 struct mlx5_rxq_ctrl *rxq_ctrl =
829 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
830 struct ibv_wq_attr mod;
833 struct ibv_cq_init_attr_ex ibv;
834 struct mlx5dv_cq_init_attr mlx5;
837 struct ibv_wq_init_attr ibv;
838 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
839 struct mlx5dv_wq_init_attr mlx5;
842 struct ibv_cq_ex cq_attr;
845 unsigned int wqe_n = 1 << rxq_data->elts_n;
846 struct mlx5_rxq_ibv *tmpl = NULL;
847 struct mlx5dv_cq cq_info;
848 struct mlx5dv_rwq rwq;
851 struct mlx5dv_obj obj;
852 struct mlx5_dev_config *config = &priv->config;
853 const int mprq_en = mlx5_rxq_mprq_enabled(rxq_data);
856 assert(!rxq_ctrl->ibv);
857 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_RX_QUEUE;
858 priv->verbs_alloc_ctx.obj = rxq_ctrl;
859 tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
863 "port %u Rx queue %u cannot allocate verbs resources",
864 dev->data->port_id, rxq_data->idx);
868 tmpl->rxq_ctrl = rxq_ctrl;
870 tmpl->channel = mlx5_glue->create_comp_channel(priv->sh->ctx);
871 if (!tmpl->channel) {
872 DRV_LOG(ERR, "port %u: comp channel creation failure",
879 cqe_n = wqe_n * (1 << rxq_data->strd_num_n) - 1;
882 attr.cq.ibv = (struct ibv_cq_init_attr_ex){
884 .channel = tmpl->channel,
887 attr.cq.mlx5 = (struct mlx5dv_cq_init_attr){
890 if (config->cqe_comp && !rxq_data->hw_timestamp) {
891 attr.cq.mlx5.comp_mask |=
892 MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE;
893 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
894 attr.cq.mlx5.cqe_comp_res_format =
895 mprq_en ? MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX :
896 MLX5DV_CQE_RES_FORMAT_HASH;
898 attr.cq.mlx5.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH;
901 * For vectorized Rx, it must not be doubled in order to
902 * make cq_ci and rq_ci aligned.
904 if (mlx5_rxq_check_vec_support(rxq_data) < 0)
905 attr.cq.ibv.cqe *= 2;
906 } else if (config->cqe_comp && rxq_data->hw_timestamp) {
908 "port %u Rx CQE compression is disabled for HW"
912 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
913 if (config->cqe_pad) {
914 attr.cq.mlx5.comp_mask |= MLX5DV_CQ_INIT_ATTR_MASK_FLAGS;
915 attr.cq.mlx5.flags |= MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD;
918 tmpl->cq = mlx5_glue->cq_ex_to_cq
919 (mlx5_glue->dv_create_cq(priv->sh->ctx, &attr.cq.ibv,
921 if (tmpl->cq == NULL) {
922 DRV_LOG(ERR, "port %u Rx queue %u CQ creation failure",
923 dev->data->port_id, idx);
927 DRV_LOG(DEBUG, "port %u device_attr.max_qp_wr is %d",
928 dev->data->port_id, priv->sh->device_attr.orig_attr.max_qp_wr);
929 DRV_LOG(DEBUG, "port %u device_attr.max_sge is %d",
930 dev->data->port_id, priv->sh->device_attr.orig_attr.max_sge);
931 attr.wq.ibv = (struct ibv_wq_init_attr){
932 .wq_context = NULL, /* Could be useful in the future. */
933 .wq_type = IBV_WQT_RQ,
934 /* Max number of outstanding WRs. */
935 .max_wr = wqe_n >> rxq_data->sges_n,
936 /* Max number of scatter/gather elements in a WR. */
937 .max_sge = 1 << rxq_data->sges_n,
941 IBV_WQ_FLAGS_CVLAN_STRIPPING |
943 .create_flags = (rxq_data->vlan_strip ?
944 IBV_WQ_FLAGS_CVLAN_STRIPPING :
947 /* By default, FCS (CRC) is stripped by hardware. */
948 if (rxq_data->crc_present) {
949 attr.wq.ibv.create_flags |= IBV_WQ_FLAGS_SCATTER_FCS;
950 attr.wq.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
952 if (config->hw_padding) {
953 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
954 attr.wq.ibv.create_flags |= IBV_WQ_FLAG_RX_END_PADDING;
955 attr.wq.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
956 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
957 attr.wq.ibv.create_flags |= IBV_WQ_FLAGS_PCI_WRITE_END_PADDING;
958 attr.wq.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
961 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
962 attr.wq.mlx5 = (struct mlx5dv_wq_init_attr){
966 struct mlx5dv_striding_rq_init_attr *mprq_attr =
967 &attr.wq.mlx5.striding_rq_attrs;
969 attr.wq.mlx5.comp_mask |= MLX5DV_WQ_INIT_ATTR_MASK_STRIDING_RQ;
970 *mprq_attr = (struct mlx5dv_striding_rq_init_attr){
971 .single_stride_log_num_of_bytes = rxq_data->strd_sz_n,
972 .single_wqe_log_num_of_strides = rxq_data->strd_num_n,
973 .two_byte_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT,
976 tmpl->wq = mlx5_glue->dv_create_wq(priv->sh->ctx, &attr.wq.ibv,
979 tmpl->wq = mlx5_glue->create_wq(priv->sh->ctx, &attr.wq.ibv);
981 if (tmpl->wq == NULL) {
982 DRV_LOG(ERR, "port %u Rx queue %u WQ creation failure",
983 dev->data->port_id, idx);
988 * Make sure number of WRs*SGEs match expectations since a queue
989 * cannot allocate more than "desc" buffers.
991 if (attr.wq.ibv.max_wr != (wqe_n >> rxq_data->sges_n) ||
992 attr.wq.ibv.max_sge != (1u << rxq_data->sges_n)) {
994 "port %u Rx queue %u requested %u*%u but got %u*%u"
996 dev->data->port_id, idx,
997 wqe_n >> rxq_data->sges_n, (1 << rxq_data->sges_n),
998 attr.wq.ibv.max_wr, attr.wq.ibv.max_sge);
1002 /* Change queue state to ready. */
1003 mod = (struct ibv_wq_attr){
1004 .attr_mask = IBV_WQ_ATTR_STATE,
1005 .wq_state = IBV_WQS_RDY,
1007 ret = mlx5_glue->modify_wq(tmpl->wq, &mod);
1010 "port %u Rx queue %u WQ state to IBV_WQS_RDY failed",
1011 dev->data->port_id, idx);
1015 obj.cq.in = tmpl->cq;
1016 obj.cq.out = &cq_info;
1017 obj.rwq.in = tmpl->wq;
1019 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ | MLX5DV_OBJ_RWQ);
1024 if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) {
1026 "port %u wrong MLX5_CQE_SIZE environment variable"
1027 " value: it should be set to %u",
1028 dev->data->port_id, RTE_CACHE_LINE_SIZE);
1032 /* Fill the rings. */
1033 rxq_data->wqes = rwq.buf;
1034 for (i = 0; (i != wqe_n); ++i) {
1035 volatile struct mlx5_wqe_data_seg *scat;
1037 uint32_t byte_count;
1040 struct mlx5_mprq_buf *buf = (*rxq_data->mprq_bufs)[i];
1042 scat = &((volatile struct mlx5_wqe_mprq *)
1043 rxq_data->wqes)[i].dseg;
1044 addr = (uintptr_t)mlx5_mprq_buf_addr(buf);
1045 byte_count = (1 << rxq_data->strd_sz_n) *
1046 (1 << rxq_data->strd_num_n);
1048 struct rte_mbuf *buf = (*rxq_data->elts)[i];
1050 scat = &((volatile struct mlx5_wqe_data_seg *)
1052 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1053 byte_count = DATA_LEN(buf);
1055 /* scat->addr must be able to store a pointer. */
1056 assert(sizeof(scat->addr) >= sizeof(uintptr_t));
1057 *scat = (struct mlx5_wqe_data_seg){
1058 .addr = rte_cpu_to_be_64(addr),
1059 .byte_count = rte_cpu_to_be_32(byte_count),
1060 .lkey = mlx5_rx_addr2mr(rxq_data, addr),
1063 rxq_data->rq_db = rwq.dbrec;
1064 rxq_data->cqe_n = log2above(cq_info.cqe_cnt);
1065 rxq_data->cq_ci = 0;
1066 rxq_data->consumed_strd = 0;
1067 rxq_data->rq_pi = 0;
1068 rxq_data->zip = (struct rxq_zip){
1071 rxq_data->cq_db = cq_info.dbrec;
1072 rxq_data->cqes = (volatile struct mlx5_cqe (*)[])(uintptr_t)cq_info.buf;
1073 rxq_data->cq_uar = cq_info.cq_uar;
1074 rxq_data->cqn = cq_info.cqn;
1075 rxq_data->cq_arm_sn = 0;
1076 rxq_data->decompressed = 0;
1077 /* Update doorbell counter. */
1078 rxq_data->rq_ci = wqe_n >> rxq_data->sges_n;
1080 *rxq_data->rq_db = rte_cpu_to_be_32(rxq_data->rq_ci);
1081 DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1082 idx, (void *)&tmpl);
1083 rte_atomic32_inc(&tmpl->refcnt);
1084 LIST_INSERT_HEAD(&priv->rxqsibv, tmpl, next);
1085 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1089 ret = rte_errno; /* Save rte_errno before cleanup. */
1091 claim_zero(mlx5_glue->destroy_wq(tmpl->wq));
1093 claim_zero(mlx5_glue->destroy_cq(tmpl->cq));
1095 claim_zero(mlx5_glue->destroy_comp_channel
1098 rte_errno = ret; /* Restore rte_errno. */
1100 priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1105 * Verify the Verbs Rx queue list is empty
1108 * Pointer to Ethernet device.
1111 * The number of object not released.
1114 mlx5_rxq_ibv_verify(struct rte_eth_dev *dev)
1116 struct mlx5_priv *priv = dev->data->dev_private;
1118 struct mlx5_rxq_ibv *rxq_ibv;
1120 LIST_FOREACH(rxq_ibv, &priv->rxqsibv, next) {
1121 DRV_LOG(DEBUG, "port %u Verbs Rx queue %u still referenced",
1122 dev->data->port_id, rxq_ibv->rxq_ctrl->rxq.idx);
1129 * Callback function to initialize mbufs for Multi-Packet RQ.
1132 mlx5_mprq_buf_init(struct rte_mempool *mp, void *opaque_arg __rte_unused,
1133 void *_m, unsigned int i __rte_unused)
1135 struct mlx5_mprq_buf *buf = _m;
1137 memset(_m, 0, sizeof(*buf));
1139 rte_atomic16_set(&buf->refcnt, 1);
1143 * Free mempool of Multi-Packet RQ.
1146 * Pointer to Ethernet device.
1149 * 0 on success, negative errno value on failure.
1152 mlx5_mprq_free_mp(struct rte_eth_dev *dev)
1154 struct mlx5_priv *priv = dev->data->dev_private;
1155 struct rte_mempool *mp = priv->mprq_mp;
1160 DRV_LOG(DEBUG, "port %u freeing mempool (%s) for Multi-Packet RQ",
1161 dev->data->port_id, mp->name);
1163 * If a buffer in the pool has been externally attached to a mbuf and it
1164 * is still in use by application, destroying the Rx qeueue can spoil
1165 * the packet. It is unlikely to happen but if application dynamically
1166 * creates and destroys with holding Rx packets, this can happen.
1168 * TODO: It is unavoidable for now because the mempool for Multi-Packet
1169 * RQ isn't provided by application but managed by PMD.
1171 if (!rte_mempool_full(mp)) {
1173 "port %u mempool for Multi-Packet RQ is still in use",
1174 dev->data->port_id);
1178 rte_mempool_free(mp);
1179 /* Unset mempool for each Rx queue. */
1180 for (i = 0; i != priv->rxqs_n; ++i) {
1181 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1185 rxq->mprq_mp = NULL;
1187 priv->mprq_mp = NULL;
1192 * Allocate a mempool for Multi-Packet RQ. All configured Rx queues share the
1193 * mempool. If already allocated, reuse it if there're enough elements.
1194 * Otherwise, resize it.
1197 * Pointer to Ethernet device.
1200 * 0 on success, negative errno value on failure.
1203 mlx5_mprq_alloc_mp(struct rte_eth_dev *dev)
1205 struct mlx5_priv *priv = dev->data->dev_private;
1206 struct rte_mempool *mp = priv->mprq_mp;
1207 char name[RTE_MEMPOOL_NAMESIZE];
1208 unsigned int desc = 0;
1209 unsigned int buf_len;
1210 unsigned int obj_num;
1211 unsigned int obj_size;
1212 unsigned int strd_num_n = 0;
1213 unsigned int strd_sz_n = 0;
1216 if (!mlx5_mprq_enabled(dev))
1218 /* Count the total number of descriptors configured. */
1219 for (i = 0; i != priv->rxqs_n; ++i) {
1220 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1224 desc += 1 << rxq->elts_n;
1225 /* Get the max number of strides. */
1226 if (strd_num_n < rxq->strd_num_n)
1227 strd_num_n = rxq->strd_num_n;
1228 /* Get the max size of a stride. */
1229 if (strd_sz_n < rxq->strd_sz_n)
1230 strd_sz_n = rxq->strd_sz_n;
1232 assert(strd_num_n && strd_sz_n);
1233 buf_len = (1 << strd_num_n) * (1 << strd_sz_n);
1234 obj_size = buf_len + sizeof(struct mlx5_mprq_buf);
1236 * Received packets can be either memcpy'd or externally referenced. In
1237 * case that the packet is attached to an mbuf as an external buffer, as
1238 * it isn't possible to predict how the buffers will be queued by
1239 * application, there's no option to exactly pre-allocate needed buffers
1240 * in advance but to speculatively prepares enough buffers.
1242 * In the data path, if this Mempool is depleted, PMD will try to memcpy
1243 * received packets to buffers provided by application (rxq->mp) until
1244 * this Mempool gets available again.
1247 obj_num = desc + MLX5_MPRQ_MP_CACHE_SZ * priv->rxqs_n;
1249 * rte_mempool_create_empty() has sanity check to refuse large cache
1250 * size compared to the number of elements.
1251 * CACHE_FLUSHTHRESH_MULTIPLIER is defined in a C file, so using a
1252 * constant number 2 instead.
1254 obj_num = RTE_MAX(obj_num, MLX5_MPRQ_MP_CACHE_SZ * 2);
1255 /* Check a mempool is already allocated and if it can be resued. */
1256 if (mp != NULL && mp->elt_size >= obj_size && mp->size >= obj_num) {
1257 DRV_LOG(DEBUG, "port %u mempool %s is being reused",
1258 dev->data->port_id, mp->name);
1261 } else if (mp != NULL) {
1262 DRV_LOG(DEBUG, "port %u mempool %s should be resized, freeing it",
1263 dev->data->port_id, mp->name);
1265 * If failed to free, which means it may be still in use, no way
1266 * but to keep using the existing one. On buffer underrun,
1267 * packets will be memcpy'd instead of external buffer
1270 if (mlx5_mprq_free_mp(dev)) {
1271 if (mp->elt_size >= obj_size)
1277 snprintf(name, sizeof(name), "port-%u-mprq", dev->data->port_id);
1278 mp = rte_mempool_create(name, obj_num, obj_size, MLX5_MPRQ_MP_CACHE_SZ,
1279 0, NULL, NULL, mlx5_mprq_buf_init, NULL,
1280 dev->device->numa_node, 0);
1283 "port %u failed to allocate a mempool for"
1284 " Multi-Packet RQ, count=%u, size=%u",
1285 dev->data->port_id, obj_num, obj_size);
1291 /* Set mempool for each Rx queue. */
1292 for (i = 0; i != priv->rxqs_n; ++i) {
1293 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1299 DRV_LOG(INFO, "port %u Multi-Packet RQ is configured",
1300 dev->data->port_id);
1305 * Create a DPDK Rx queue.
1308 * Pointer to Ethernet device.
1312 * Number of descriptors to configure in queue.
1314 * NUMA socket on which memory must be allocated.
1317 * A DPDK queue object on success, NULL otherwise and rte_errno is set.
1319 struct mlx5_rxq_ctrl *
1320 mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1321 unsigned int socket, const struct rte_eth_rxconf *conf,
1322 struct rte_mempool *mp)
1324 struct mlx5_priv *priv = dev->data->dev_private;
1325 struct mlx5_rxq_ctrl *tmpl;
1326 unsigned int mb_len = rte_pktmbuf_data_room_size(mp);
1327 unsigned int mprq_stride_size;
1328 struct mlx5_dev_config *config = &priv->config;
1330 * Always allocate extra slots, even if eventually
1331 * the vector Rx will not be used.
1334 desc + config->rx_vec_en * MLX5_VPMD_DESCS_PER_LOOP;
1335 uint64_t offloads = conf->offloads |
1336 dev->data->dev_conf.rxmode.offloads;
1337 const int mprq_en = mlx5_check_mprq_support(dev) > 0;
1339 tmpl = rte_calloc_socket("RXQ", 1,
1341 desc_n * sizeof(struct rte_mbuf *),
1347 if (mlx5_mr_btree_init(&tmpl->rxq.mr_ctrl.cache_bh,
1348 MLX5_MR_BTREE_CACHE_N, socket)) {
1349 /* rte_errno is already set. */
1352 tmpl->socket = socket;
1353 if (dev->data->dev_conf.intr_conf.rxq)
1356 * This Rx queue can be configured as a Multi-Packet RQ if all of the
1357 * following conditions are met:
1358 * - MPRQ is enabled.
1359 * - The number of descs is more than the number of strides.
1360 * - max_rx_pkt_len plus overhead is less than the max size of a
1362 * Otherwise, enable Rx scatter if necessary.
1364 assert(mb_len >= RTE_PKTMBUF_HEADROOM);
1366 dev->data->dev_conf.rxmode.max_rx_pkt_len +
1367 sizeof(struct rte_mbuf_ext_shared_info) +
1368 RTE_PKTMBUF_HEADROOM;
1370 desc > (1U << config->mprq.stride_num_n) &&
1371 mprq_stride_size <= (1U << config->mprq.max_stride_size_n)) {
1372 /* TODO: Rx scatter isn't supported yet. */
1373 tmpl->rxq.sges_n = 0;
1374 /* Trim the number of descs needed. */
1375 desc >>= config->mprq.stride_num_n;
1376 tmpl->rxq.strd_num_n = config->mprq.stride_num_n;
1377 tmpl->rxq.strd_sz_n = RTE_MAX(log2above(mprq_stride_size),
1378 config->mprq.min_stride_size_n);
1379 tmpl->rxq.strd_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT;
1380 tmpl->rxq.mprq_max_memcpy_len =
1381 RTE_MIN(mb_len - RTE_PKTMBUF_HEADROOM,
1382 config->mprq.max_memcpy_len);
1384 "port %u Rx queue %u: Multi-Packet RQ is enabled"
1385 " strd_num_n = %u, strd_sz_n = %u",
1386 dev->data->port_id, idx,
1387 tmpl->rxq.strd_num_n, tmpl->rxq.strd_sz_n);
1388 } else if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
1389 (mb_len - RTE_PKTMBUF_HEADROOM)) {
1390 tmpl->rxq.sges_n = 0;
1391 } else if (offloads & DEV_RX_OFFLOAD_SCATTER) {
1393 RTE_PKTMBUF_HEADROOM +
1394 dev->data->dev_conf.rxmode.max_rx_pkt_len;
1395 unsigned int sges_n;
1398 * Determine the number of SGEs needed for a full packet
1399 * and round it to the next power of two.
1401 sges_n = log2above((size / mb_len) + !!(size % mb_len));
1402 tmpl->rxq.sges_n = sges_n;
1403 /* Make sure rxq.sges_n did not overflow. */
1404 size = mb_len * (1 << tmpl->rxq.sges_n);
1405 size -= RTE_PKTMBUF_HEADROOM;
1406 if (size < dev->data->dev_conf.rxmode.max_rx_pkt_len) {
1408 "port %u too many SGEs (%u) needed to handle"
1409 " requested maximum packet size %u",
1412 dev->data->dev_conf.rxmode.max_rx_pkt_len);
1413 rte_errno = EOVERFLOW;
1418 "port %u the requested maximum Rx packet size (%u) is"
1419 " larger than a single mbuf (%u) and scattered mode has"
1420 " not been requested",
1422 dev->data->dev_conf.rxmode.max_rx_pkt_len,
1423 mb_len - RTE_PKTMBUF_HEADROOM);
1425 if (mprq_en && !mlx5_rxq_mprq_enabled(&tmpl->rxq))
1427 "port %u MPRQ is requested but cannot be enabled"
1428 " (requested: desc = %u, stride_sz = %u,"
1429 " supported: min_stride_num = %u, max_stride_sz = %u).",
1430 dev->data->port_id, desc, mprq_stride_size,
1431 (1 << config->mprq.stride_num_n),
1432 (1 << config->mprq.max_stride_size_n));
1433 DRV_LOG(DEBUG, "port %u maximum number of segments per packet: %u",
1434 dev->data->port_id, 1 << tmpl->rxq.sges_n);
1435 if (desc % (1 << tmpl->rxq.sges_n)) {
1437 "port %u number of Rx queue descriptors (%u) is not a"
1438 " multiple of SGEs per packet (%u)",
1441 1 << tmpl->rxq.sges_n);
1445 /* Toggle RX checksum offload if hardware supports it. */
1446 tmpl->rxq.csum = !!(offloads & DEV_RX_OFFLOAD_CHECKSUM);
1447 tmpl->rxq.hw_timestamp = !!(offloads & DEV_RX_OFFLOAD_TIMESTAMP);
1448 /* Configure VLAN stripping. */
1449 tmpl->rxq.vlan_strip = !!(offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
1450 /* By default, FCS (CRC) is stripped by hardware. */
1451 tmpl->rxq.crc_present = 0;
1452 if (offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
1453 if (config->hw_fcs_strip) {
1454 tmpl->rxq.crc_present = 1;
1457 "port %u CRC stripping has been disabled but will"
1458 " still be performed by hardware, make sure MLNX_OFED"
1459 " and firmware are up to date",
1460 dev->data->port_id);
1464 "port %u CRC stripping is %s, %u bytes will be subtracted from"
1465 " incoming frames to hide it",
1467 tmpl->rxq.crc_present ? "disabled" : "enabled",
1468 tmpl->rxq.crc_present << 2);
1470 tmpl->rxq.rss_hash = !!priv->rss_conf.rss_hf &&
1471 (!!(dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS));
1472 tmpl->rxq.port_id = dev->data->port_id;
1475 tmpl->rxq.elts_n = log2above(desc);
1476 tmpl->rxq.rq_repl_thresh =
1477 MLX5_VPMD_RXQ_RPLNSH_THRESH(1 << tmpl->rxq.elts_n);
1479 (struct rte_mbuf *(*)[1 << tmpl->rxq.elts_n])(tmpl + 1);
1481 tmpl->rxq.uar_lock_cq = &priv->uar_lock_cq;
1483 tmpl->rxq.idx = idx;
1484 rte_atomic32_inc(&tmpl->refcnt);
1485 LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
1496 * Pointer to Ethernet device.
1501 * A pointer to the queue if it exists, NULL otherwise.
1503 struct mlx5_rxq_ctrl *
1504 mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx)
1506 struct mlx5_priv *priv = dev->data->dev_private;
1507 struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
1509 if ((*priv->rxqs)[idx]) {
1510 rxq_ctrl = container_of((*priv->rxqs)[idx],
1511 struct mlx5_rxq_ctrl,
1513 mlx5_rxq_ibv_get(dev, idx);
1514 rte_atomic32_inc(&rxq_ctrl->refcnt);
1520 * Release a Rx queue.
1523 * Pointer to Ethernet device.
1528 * 1 while a reference on it exists, 0 when freed.
1531 mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx)
1533 struct mlx5_priv *priv = dev->data->dev_private;
1534 struct mlx5_rxq_ctrl *rxq_ctrl;
1536 if (!(*priv->rxqs)[idx])
1538 rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
1539 assert(rxq_ctrl->priv);
1540 if (rxq_ctrl->ibv && !mlx5_rxq_ibv_release(rxq_ctrl->ibv))
1541 rxq_ctrl->ibv = NULL;
1542 if (rte_atomic32_dec_and_test(&rxq_ctrl->refcnt)) {
1543 mlx5_mr_btree_free(&rxq_ctrl->rxq.mr_ctrl.cache_bh);
1544 LIST_REMOVE(rxq_ctrl, next);
1546 (*priv->rxqs)[idx] = NULL;
1553 * Verify the Rx Queue list is empty
1556 * Pointer to Ethernet device.
1559 * The number of object not released.
1562 mlx5_rxq_verify(struct rte_eth_dev *dev)
1564 struct mlx5_priv *priv = dev->data->dev_private;
1565 struct mlx5_rxq_ctrl *rxq_ctrl;
1568 LIST_FOREACH(rxq_ctrl, &priv->rxqsctrl, next) {
1569 DRV_LOG(DEBUG, "port %u Rx Queue %u still referenced",
1570 dev->data->port_id, rxq_ctrl->rxq.idx);
1577 * Create an indirection table.
1580 * Pointer to Ethernet device.
1582 * Queues entering in the indirection table.
1584 * Number of queues in the array.
1587 * The Verbs object initialised, NULL otherwise and rte_errno is set.
1589 static struct mlx5_ind_table_ibv *
1590 mlx5_ind_table_ibv_new(struct rte_eth_dev *dev, const uint16_t *queues,
1593 struct mlx5_priv *priv = dev->data->dev_private;
1594 struct mlx5_ind_table_ibv *ind_tbl;
1595 const unsigned int wq_n = rte_is_power_of_2(queues_n) ?
1596 log2above(queues_n) :
1597 log2above(priv->config.ind_table_max_size);
1598 struct ibv_wq *wq[1 << wq_n];
1602 ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl) +
1603 queues_n * sizeof(uint16_t), 0);
1608 for (i = 0; i != queues_n; ++i) {
1609 struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev, queues[i]);
1613 wq[i] = rxq->ibv->wq;
1614 ind_tbl->queues[i] = queues[i];
1616 ind_tbl->queues_n = queues_n;
1617 /* Finalise indirection table. */
1618 for (j = 0; i != (unsigned int)(1 << wq_n); ++i, ++j)
1620 ind_tbl->ind_table = mlx5_glue->create_rwq_ind_table
1622 &(struct ibv_rwq_ind_table_init_attr){
1623 .log_ind_tbl_size = wq_n,
1627 if (!ind_tbl->ind_table) {
1631 rte_atomic32_inc(&ind_tbl->refcnt);
1632 LIST_INSERT_HEAD(&priv->ind_tbls, ind_tbl, next);
1636 DEBUG("port %u cannot create indirection table", dev->data->port_id);
1641 * Get an indirection table.
1644 * Pointer to Ethernet device.
1646 * Queues entering in the indirection table.
1648 * Number of queues in the array.
1651 * An indirection table if found.
1653 static struct mlx5_ind_table_ibv *
1654 mlx5_ind_table_ibv_get(struct rte_eth_dev *dev, const uint16_t *queues,
1657 struct mlx5_priv *priv = dev->data->dev_private;
1658 struct mlx5_ind_table_ibv *ind_tbl;
1660 LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
1661 if ((ind_tbl->queues_n == queues_n) &&
1662 (memcmp(ind_tbl->queues, queues,
1663 ind_tbl->queues_n * sizeof(ind_tbl->queues[0]))
1670 rte_atomic32_inc(&ind_tbl->refcnt);
1671 for (i = 0; i != ind_tbl->queues_n; ++i)
1672 mlx5_rxq_get(dev, ind_tbl->queues[i]);
1678 * Release an indirection table.
1681 * Pointer to Ethernet device.
1683 * Indirection table to release.
1686 * 1 while a reference on it exists, 0 when freed.
1689 mlx5_ind_table_ibv_release(struct rte_eth_dev *dev,
1690 struct mlx5_ind_table_ibv *ind_tbl)
1694 if (rte_atomic32_dec_and_test(&ind_tbl->refcnt))
1695 claim_zero(mlx5_glue->destroy_rwq_ind_table
1696 (ind_tbl->ind_table));
1697 for (i = 0; i != ind_tbl->queues_n; ++i)
1698 claim_nonzero(mlx5_rxq_release(dev, ind_tbl->queues[i]));
1699 if (!rte_atomic32_read(&ind_tbl->refcnt)) {
1700 LIST_REMOVE(ind_tbl, next);
1708 * Verify the Rx Queue list is empty
1711 * Pointer to Ethernet device.
1714 * The number of object not released.
1717 mlx5_ind_table_ibv_verify(struct rte_eth_dev *dev)
1719 struct mlx5_priv *priv = dev->data->dev_private;
1720 struct mlx5_ind_table_ibv *ind_tbl;
1723 LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
1725 "port %u Verbs indirection table %p still referenced",
1726 dev->data->port_id, (void *)ind_tbl);
1733 * Create an Rx Hash queue.
1736 * Pointer to Ethernet device.
1738 * RSS key for the Rx hash queue.
1739 * @param rss_key_len
1741 * @param hash_fields
1742 * Verbs protocol hash field to make the RSS on.
1744 * Queues entering in hash queue. In case of empty hash_fields only the
1745 * first queue index will be taken for the indirection table.
1752 * The Verbs object initialised, NULL otherwise and rte_errno is set.
1755 mlx5_hrxq_new(struct rte_eth_dev *dev,
1756 const uint8_t *rss_key, uint32_t rss_key_len,
1757 uint64_t hash_fields,
1758 const uint16_t *queues, uint32_t queues_n,
1759 int tunnel __rte_unused)
1761 struct mlx5_priv *priv = dev->data->dev_private;
1762 struct mlx5_hrxq *hrxq;
1763 struct mlx5_ind_table_ibv *ind_tbl;
1765 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1766 struct mlx5dv_qp_init_attr qp_init_attr;
1770 queues_n = hash_fields ? queues_n : 1;
1771 ind_tbl = mlx5_ind_table_ibv_get(dev, queues, queues_n);
1773 ind_tbl = mlx5_ind_table_ibv_new(dev, queues, queues_n);
1778 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1779 memset(&qp_init_attr, 0, sizeof(qp_init_attr));
1781 qp_init_attr.comp_mask =
1782 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
1783 qp_init_attr.create_flags = MLX5DV_QP_CREATE_TUNNEL_OFFLOADS;
1785 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1786 if (dev->data->dev_conf.lpbk_mode) {
1787 /* Allow packet sent from NIC loop back w/o source MAC check. */
1788 qp_init_attr.comp_mask |=
1789 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
1790 qp_init_attr.create_flags |=
1791 MLX5DV_QP_CREATE_TIR_ALLOW_SELF_LOOPBACK_UC;
1794 qp = mlx5_glue->dv_create_qp
1796 &(struct ibv_qp_init_attr_ex){
1797 .qp_type = IBV_QPT_RAW_PACKET,
1799 IBV_QP_INIT_ATTR_PD |
1800 IBV_QP_INIT_ATTR_IND_TABLE |
1801 IBV_QP_INIT_ATTR_RX_HASH,
1802 .rx_hash_conf = (struct ibv_rx_hash_conf){
1803 .rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ,
1804 .rx_hash_key_len = rss_key_len,
1805 .rx_hash_key = (void *)(uintptr_t)rss_key,
1806 .rx_hash_fields_mask = hash_fields,
1808 .rwq_ind_tbl = ind_tbl->ind_table,
1813 qp = mlx5_glue->create_qp_ex
1815 &(struct ibv_qp_init_attr_ex){
1816 .qp_type = IBV_QPT_RAW_PACKET,
1818 IBV_QP_INIT_ATTR_PD |
1819 IBV_QP_INIT_ATTR_IND_TABLE |
1820 IBV_QP_INIT_ATTR_RX_HASH,
1821 .rx_hash_conf = (struct ibv_rx_hash_conf){
1822 .rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ,
1823 .rx_hash_key_len = rss_key_len,
1824 .rx_hash_key = (void *)(uintptr_t)rss_key,
1825 .rx_hash_fields_mask = hash_fields,
1827 .rwq_ind_tbl = ind_tbl->ind_table,
1835 hrxq = rte_calloc(__func__, 1, sizeof(*hrxq) + rss_key_len, 0);
1838 hrxq->ind_table = ind_tbl;
1840 hrxq->rss_key_len = rss_key_len;
1841 hrxq->hash_fields = hash_fields;
1842 memcpy(hrxq->rss_key, rss_key, rss_key_len);
1843 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1844 hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
1845 if (!hrxq->action) {
1850 rte_atomic32_inc(&hrxq->refcnt);
1851 LIST_INSERT_HEAD(&priv->hrxqs, hrxq, next);
1854 err = rte_errno; /* Save rte_errno before cleanup. */
1855 mlx5_ind_table_ibv_release(dev, ind_tbl);
1857 claim_zero(mlx5_glue->destroy_qp(qp));
1858 rte_errno = err; /* Restore rte_errno. */
1863 * Get an Rx Hash queue.
1866 * Pointer to Ethernet device.
1868 * RSS configuration for the Rx hash queue.
1870 * Queues entering in hash queue. In case of empty hash_fields only the
1871 * first queue index will be taken for the indirection table.
1876 * An hash Rx queue on success.
1879 mlx5_hrxq_get(struct rte_eth_dev *dev,
1880 const uint8_t *rss_key, uint32_t rss_key_len,
1881 uint64_t hash_fields,
1882 const uint16_t *queues, uint32_t queues_n)
1884 struct mlx5_priv *priv = dev->data->dev_private;
1885 struct mlx5_hrxq *hrxq;
1887 queues_n = hash_fields ? queues_n : 1;
1888 LIST_FOREACH(hrxq, &priv->hrxqs, next) {
1889 struct mlx5_ind_table_ibv *ind_tbl;
1891 if (hrxq->rss_key_len != rss_key_len)
1893 if (memcmp(hrxq->rss_key, rss_key, rss_key_len))
1895 if (hrxq->hash_fields != hash_fields)
1897 ind_tbl = mlx5_ind_table_ibv_get(dev, queues, queues_n);
1900 if (ind_tbl != hrxq->ind_table) {
1901 mlx5_ind_table_ibv_release(dev, ind_tbl);
1904 rte_atomic32_inc(&hrxq->refcnt);
1911 * Release the hash Rx queue.
1914 * Pointer to Ethernet device.
1916 * Pointer to Hash Rx queue to release.
1919 * 1 while a reference on it exists, 0 when freed.
1922 mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq)
1924 if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
1925 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1926 mlx5_glue->destroy_flow_action(hrxq->action);
1928 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
1929 mlx5_ind_table_ibv_release(dev, hrxq->ind_table);
1930 LIST_REMOVE(hrxq, next);
1934 claim_nonzero(mlx5_ind_table_ibv_release(dev, hrxq->ind_table));
1939 * Verify the Rx Queue list is empty
1942 * Pointer to Ethernet device.
1945 * The number of object not released.
1948 mlx5_hrxq_ibv_verify(struct rte_eth_dev *dev)
1950 struct mlx5_priv *priv = dev->data->dev_private;
1951 struct mlx5_hrxq *hrxq;
1954 LIST_FOREACH(hrxq, &priv->hrxqs, next) {
1956 "port %u Verbs hash Rx queue %p still referenced",
1957 dev->data->port_id, (void *)hrxq);
1964 * Create a drop Rx queue Verbs object.
1967 * Pointer to Ethernet device.
1970 * The Verbs object initialised, NULL otherwise and rte_errno is set.
1972 static struct mlx5_rxq_ibv *
1973 mlx5_rxq_ibv_drop_new(struct rte_eth_dev *dev)
1975 struct mlx5_priv *priv = dev->data->dev_private;
1976 struct ibv_context *ctx = priv->sh->ctx;
1978 struct ibv_wq *wq = NULL;
1979 struct mlx5_rxq_ibv *rxq;
1981 if (priv->drop_queue.rxq)
1982 return priv->drop_queue.rxq;
1983 cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0);
1985 DEBUG("port %u cannot allocate CQ for drop queue",
1986 dev->data->port_id);
1990 wq = mlx5_glue->create_wq(ctx,
1991 &(struct ibv_wq_init_attr){
1992 .wq_type = IBV_WQT_RQ,
1999 DEBUG("port %u cannot allocate WQ for drop queue",
2000 dev->data->port_id);
2004 rxq = rte_calloc(__func__, 1, sizeof(*rxq), 0);
2006 DEBUG("port %u cannot allocate drop Rx queue memory",
2007 dev->data->port_id);
2013 priv->drop_queue.rxq = rxq;
2017 claim_zero(mlx5_glue->destroy_wq(wq));
2019 claim_zero(mlx5_glue->destroy_cq(cq));
2024 * Release a drop Rx queue Verbs object.
2027 * Pointer to Ethernet device.
2030 * The Verbs object initialised, NULL otherwise and rte_errno is set.
2033 mlx5_rxq_ibv_drop_release(struct rte_eth_dev *dev)
2035 struct mlx5_priv *priv = dev->data->dev_private;
2036 struct mlx5_rxq_ibv *rxq = priv->drop_queue.rxq;
2039 claim_zero(mlx5_glue->destroy_wq(rxq->wq));
2041 claim_zero(mlx5_glue->destroy_cq(rxq->cq));
2043 priv->drop_queue.rxq = NULL;
2047 * Create a drop indirection table.
2050 * Pointer to Ethernet device.
2053 * The Verbs object initialised, NULL otherwise and rte_errno is set.
2055 static struct mlx5_ind_table_ibv *
2056 mlx5_ind_table_ibv_drop_new(struct rte_eth_dev *dev)
2058 struct mlx5_priv *priv = dev->data->dev_private;
2059 struct mlx5_ind_table_ibv *ind_tbl;
2060 struct mlx5_rxq_ibv *rxq;
2061 struct mlx5_ind_table_ibv tmpl;
2063 rxq = mlx5_rxq_ibv_drop_new(dev);
2066 tmpl.ind_table = mlx5_glue->create_rwq_ind_table
2068 &(struct ibv_rwq_ind_table_init_attr){
2069 .log_ind_tbl_size = 0,
2070 .ind_tbl = &rxq->wq,
2073 if (!tmpl.ind_table) {
2074 DEBUG("port %u cannot allocate indirection table for drop"
2076 dev->data->port_id);
2080 ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl), 0);
2085 ind_tbl->ind_table = tmpl.ind_table;
2088 mlx5_rxq_ibv_drop_release(dev);
2093 * Release a drop indirection table.
2096 * Pointer to Ethernet device.
2099 mlx5_ind_table_ibv_drop_release(struct rte_eth_dev *dev)
2101 struct mlx5_priv *priv = dev->data->dev_private;
2102 struct mlx5_ind_table_ibv *ind_tbl = priv->drop_queue.hrxq->ind_table;
2104 claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl->ind_table));
2105 mlx5_rxq_ibv_drop_release(dev);
2107 priv->drop_queue.hrxq->ind_table = NULL;
2111 * Create a drop Rx Hash queue.
2114 * Pointer to Ethernet device.
2117 * The Verbs object initialised, NULL otherwise and rte_errno is set.
2120 mlx5_hrxq_drop_new(struct rte_eth_dev *dev)
2122 struct mlx5_priv *priv = dev->data->dev_private;
2123 struct mlx5_ind_table_ibv *ind_tbl;
2125 struct mlx5_hrxq *hrxq;
2127 if (priv->drop_queue.hrxq) {
2128 rte_atomic32_inc(&priv->drop_queue.hrxq->refcnt);
2129 return priv->drop_queue.hrxq;
2131 ind_tbl = mlx5_ind_table_ibv_drop_new(dev);
2134 qp = mlx5_glue->create_qp_ex(priv->sh->ctx,
2135 &(struct ibv_qp_init_attr_ex){
2136 .qp_type = IBV_QPT_RAW_PACKET,
2138 IBV_QP_INIT_ATTR_PD |
2139 IBV_QP_INIT_ATTR_IND_TABLE |
2140 IBV_QP_INIT_ATTR_RX_HASH,
2141 .rx_hash_conf = (struct ibv_rx_hash_conf){
2143 IBV_RX_HASH_FUNC_TOEPLITZ,
2144 .rx_hash_key_len = MLX5_RSS_HASH_KEY_LEN,
2145 .rx_hash_key = rss_hash_default_key,
2146 .rx_hash_fields_mask = 0,
2148 .rwq_ind_tbl = ind_tbl->ind_table,
2152 DEBUG("port %u cannot allocate QP for drop queue",
2153 dev->data->port_id);
2157 hrxq = rte_calloc(__func__, 1, sizeof(*hrxq), 0);
2160 "port %u cannot allocate memory for drop queue",
2161 dev->data->port_id);
2165 hrxq->ind_table = ind_tbl;
2167 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2168 hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2169 if (!hrxq->action) {
2174 priv->drop_queue.hrxq = hrxq;
2175 rte_atomic32_set(&hrxq->refcnt, 1);
2179 mlx5_ind_table_ibv_drop_release(dev);
2184 * Release a drop hash Rx queue.
2187 * Pointer to Ethernet device.
2190 mlx5_hrxq_drop_release(struct rte_eth_dev *dev)
2192 struct mlx5_priv *priv = dev->data->dev_private;
2193 struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
2195 if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2196 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2197 mlx5_glue->destroy_flow_action(hrxq->action);
2199 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2200 mlx5_ind_table_ibv_drop_release(dev);
2202 priv->drop_queue.hrxq = NULL;