1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2017 6WIND S.A.
3 * Copyright 2017 Mellanox
8 * Rx queues configuration for mlx4 driver.
17 /* Verbs headers do not support -pedantic. */
19 #pragma GCC diagnostic ignored "-Wpedantic"
21 #include <infiniband/mlx4dv.h>
22 #include <infiniband/verbs.h>
24 #pragma GCC diagnostic error "-Wpedantic"
27 #include <rte_byteorder.h>
28 #include <rte_common.h>
29 #include <rte_errno.h>
30 #include <rte_ethdev_driver.h>
32 #include <rte_malloc.h>
34 #include <rte_mempool.h>
37 #include "mlx4_glue.h"
38 #include "mlx4_flow.h"
39 #include "mlx4_rxtx.h"
40 #include "mlx4_utils.h"
43 * Historical RSS hash key.
45 * This used to be the default for mlx4 in Linux before v3.19 switched to
46 * generating random hash keys through netdev_rss_key_fill().
48 * It is used in this PMD for consistency with past DPDK releases but can
49 * now be overridden through user configuration.
51 * Note: this is not const to work around API quirks.
54 mlx4_rss_hash_key_default[MLX4_RSS_HASH_KEY_SIZE] = {
55 0x2c, 0xc6, 0x81, 0xd1,
56 0x5b, 0xdb, 0xf4, 0xf7,
57 0xfc, 0xa2, 0x83, 0x19,
58 0xdb, 0x1a, 0x3e, 0x94,
59 0x6b, 0x9e, 0x38, 0xd9,
60 0x2c, 0x9c, 0x03, 0xd1,
61 0xad, 0x99, 0x44, 0xa7,
62 0xd9, 0x56, 0x3d, 0x59,
63 0x06, 0x3c, 0x25, 0xf3,
64 0xfc, 0x1f, 0xdc, 0x2a,
68 * Obtain a RSS context with specified properties.
70 * Used when creating a flow rule targeting one or several Rx queues.
72 * If a matching RSS context already exists, it is returned with its
73 * reference count incremented.
76 * Pointer to private structure.
78 * Fields for RSS processing (Verbs format).
80 * Hash key to use (whose size is exactly MLX4_RSS_HASH_KEY_SIZE).
82 * Number of target queues.
87 * Pointer to RSS context on success, NULL otherwise and rte_errno is set.
90 mlx4_rss_get(struct priv *priv, uint64_t fields,
91 uint8_t key[MLX4_RSS_HASH_KEY_SIZE],
92 uint16_t queues, const uint16_t queue_id[])
95 size_t queue_id_size = sizeof(queue_id[0]) * queues;
97 LIST_FOREACH(rss, &priv->rss, next)
98 if (fields == rss->fields &&
99 queues == rss->queues &&
100 !memcmp(key, rss->key, MLX4_RSS_HASH_KEY_SIZE) &&
101 !memcmp(queue_id, rss->queue_id, queue_id_size)) {
105 rss = rte_malloc(__func__, offsetof(struct mlx4_rss, queue_id) +
109 *rss = (struct mlx4_rss){
118 memcpy(rss->key, key, MLX4_RSS_HASH_KEY_SIZE);
119 memcpy(rss->queue_id, queue_id, queue_id_size);
120 LIST_INSERT_HEAD(&priv->rss, rss, next);
128 * Release a RSS context instance.
130 * Used when destroying a flow rule targeting one or several Rx queues.
132 * This function decrements the reference count of the context and destroys
133 * it after reaching 0. The context must have no users at this point; all
134 * prior calls to mlx4_rss_attach() must have been followed by matching
135 * calls to mlx4_rss_detach().
138 * RSS context to release.
141 mlx4_rss_put(struct mlx4_rss *rss)
146 assert(!rss->usecnt);
149 LIST_REMOVE(rss, next);
154 * Attach a user to a RSS context instance.
156 * Used when the RSS QP and indirection table objects must be instantiated,
157 * that is, when a flow rule must be enabled.
159 * This function increments the usage count of the context.
162 * RSS context to attach to.
165 * 0 on success, a negative errno value otherwise and rte_errno is set.
168 mlx4_rss_attach(struct mlx4_rss *rss)
177 struct ibv_wq *ind_tbl[rss->queues];
178 struct priv *priv = rss->priv;
183 if (!rte_is_power_of_2(RTE_DIM(ind_tbl))) {
185 msg = "number of RSS queues must be a power of two";
188 for (i = 0; i != RTE_DIM(ind_tbl); ++i) {
189 uint16_t id = rss->queue_id[i];
190 struct rxq *rxq = NULL;
192 if (id < priv->dev->data->nb_rx_queues)
193 rxq = priv->dev->data->rx_queues[id];
196 msg = "RSS target queue is not configured";
199 ret = mlx4_rxq_attach(rxq);
202 msg = "unable to attach RSS target queue";
205 ind_tbl[i] = rxq->wq;
207 rss->ind = mlx4_glue->create_rwq_ind_table
209 &(struct ibv_rwq_ind_table_init_attr){
210 .log_ind_tbl_size = rte_log2_u32(RTE_DIM(ind_tbl)),
215 ret = errno ? errno : EINVAL;
216 msg = "RSS indirection table creation failure";
219 rss->qp = mlx4_glue->create_qp_ex
221 &(struct ibv_qp_init_attr_ex){
222 .comp_mask = (IBV_QP_INIT_ATTR_PD |
223 IBV_QP_INIT_ATTR_RX_HASH |
224 IBV_QP_INIT_ATTR_IND_TABLE),
225 .qp_type = IBV_QPT_RAW_PACKET,
227 .rwq_ind_tbl = rss->ind,
229 .rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ,
230 .rx_hash_key_len = MLX4_RSS_HASH_KEY_SIZE,
231 .rx_hash_key = rss->key,
232 .rx_hash_fields_mask = rss->fields,
236 ret = errno ? errno : EINVAL;
237 msg = "RSS hash QP creation failure";
240 ret = mlx4_glue->modify_qp
242 &(struct ibv_qp_attr){
243 .qp_state = IBV_QPS_INIT,
244 .port_num = priv->port,
246 IBV_QP_STATE | IBV_QP_PORT);
248 msg = "failed to switch RSS hash QP to INIT state";
251 ret = mlx4_glue->modify_qp
253 &(struct ibv_qp_attr){
254 .qp_state = IBV_QPS_RTR,
258 msg = "failed to switch RSS hash QP to RTR state";
264 claim_zero(mlx4_glue->destroy_qp(rss->qp));
268 claim_zero(mlx4_glue->destroy_rwq_ind_table(rss->ind));
272 mlx4_rxq_detach(priv->dev->data->rx_queues[rss->queue_id[i]]);
273 ERROR("mlx4: %s", msg);
280 * Detach a user from a RSS context instance.
282 * Used when disabling (not destroying) a flow rule.
284 * This function decrements the usage count of the context and destroys
285 * usage resources after reaching 0.
288 * RSS context to detach from.
291 mlx4_rss_detach(struct mlx4_rss *rss)
293 struct priv *priv = rss->priv;
301 claim_zero(mlx4_glue->destroy_qp(rss->qp));
303 claim_zero(mlx4_glue->destroy_rwq_ind_table(rss->ind));
305 for (i = 0; i != rss->queues; ++i)
306 mlx4_rxq_detach(priv->dev->data->rx_queues[rss->queue_id[i]]);
310 * Initialize common RSS context resources.
312 * Because ConnectX-3 hardware limitations require a fixed order in the
313 * indirection table, WQs must be allocated sequentially to be part of a
314 * common RSS context.
316 * Since a newly created WQ cannot be moved to a different context, this
317 * function allocates them all at once, one for each configured Rx queue,
318 * as well as all related resources (CQs and mbufs).
320 * This must therefore be done before creating any Rx flow rules relying on
321 * indirection tables.
324 * Pointer to private structure.
327 * 0 on success, a negative errno value otherwise and rte_errno is set.
330 mlx4_rss_init(struct priv *priv)
332 struct rte_eth_dev *dev = priv->dev;
333 uint8_t log2_range = rte_log2_u32(dev->data->nb_rx_queues);
334 uint32_t wq_num_prev = 0;
339 /* Prepare range for RSS contexts before creating the first WQ. */
340 ret = mlx4_glue->dv_set_context_attr
342 MLX4DV_SET_CTX_ATTR_LOG_WQS_RANGE_SZ,
345 ERROR("cannot set up range size for RSS context to %u"
346 " (for %u Rx queues), error: %s",
347 1 << log2_range, dev->data->nb_rx_queues, strerror(ret));
351 for (i = 0; i != priv->dev->data->nb_rx_queues; ++i) {
352 struct rxq *rxq = priv->dev->data->rx_queues[i];
357 /* Attach the configured Rx queues. */
359 assert(!rxq->usecnt);
360 ret = mlx4_rxq_attach(rxq);
362 wq_num = rxq->wq->wq_num;
366 msg = "unable to create Rx queue resources";
370 * WQs are temporarily allocated for unconfigured Rx queues
371 * to maintain proper index alignment in indirection table
372 * by skipping unused WQ numbers.
374 * The reason this works at all even though these WQs are
375 * immediately destroyed is that WQNs are allocated
376 * sequentially and are guaranteed to never be reused in the
377 * same context by the underlying implementation.
379 cq = mlx4_glue->create_cq(priv->ctx, 1, NULL, NULL, 0);
382 msg = "placeholder CQ creation failure";
385 wq = mlx4_glue->create_wq
387 &(struct ibv_wq_init_attr){
388 .wq_type = IBV_WQT_RQ,
396 claim_zero(mlx4_glue->destroy_wq(wq));
398 wq_num = 0; /* Shut up GCC 4.8 warnings. */
400 claim_zero(mlx4_glue->destroy_cq(cq));
403 msg = "placeholder WQ creation failure";
408 * While guaranteed by the implementation, make sure WQ
409 * numbers are really sequential (as the saying goes,
410 * trust, but verify).
412 if (i && wq_num - wq_num_prev != 1) {
414 mlx4_rxq_detach(rxq);
416 msg = "WQ numbers are not sequential";
419 wq_num_prev = wq_num;
423 ERROR("cannot initialize common RSS resources (queue %u): %s: %s",
424 i, msg, strerror(ret));
426 struct rxq *rxq = priv->dev->data->rx_queues[i];
429 mlx4_rxq_detach(rxq);
436 * Release common RSS context resources.
438 * As the reverse of mlx4_rss_init(), this must be done after removing all
439 * flow rules relying on indirection tables.
442 * Pointer to private structure.
445 mlx4_rss_deinit(struct priv *priv)
449 for (i = 0; i != priv->dev->data->nb_rx_queues; ++i) {
450 struct rxq *rxq = priv->dev->data->rx_queues[i];
453 assert(rxq->usecnt == 1);
454 mlx4_rxq_detach(rxq);
460 * Attach a user to a Rx queue.
462 * Used when the resources of an Rx queue must be instantiated for it to
463 * become in a usable state.
465 * This function increments the usage count of the Rx queue.
468 * Pointer to Rx queue structure.
471 * 0 on success, negative errno value otherwise and rte_errno is set.
474 mlx4_rxq_attach(struct rxq *rxq)
484 struct priv *priv = rxq->priv;
485 const uint32_t elts_n = 1 << rxq->elts_n;
486 const uint32_t sges_n = 1 << rxq->sges_n;
487 struct rte_mbuf *(*elts)[elts_n] = rxq->elts;
488 struct mlx4dv_obj mlxdv;
489 struct mlx4dv_rwq dv_rwq;
490 struct mlx4dv_cq dv_cq = { .comp_mask = MLX4DV_CQ_MASK_UAR, };
492 struct ibv_cq *cq = NULL;
493 struct ibv_wq *wq = NULL;
494 volatile struct mlx4_wqe_data_seg (*wqes)[];
498 assert(rte_is_power_of_2(elts_n));
499 cq = mlx4_glue->create_cq(priv->ctx, elts_n / sges_n, NULL,
503 msg = "CQ creation failure";
506 wq = mlx4_glue->create_wq
508 &(struct ibv_wq_init_attr){
509 .wq_type = IBV_WQT_RQ,
510 .max_wr = elts_n / sges_n,
516 ret = errno ? errno : EINVAL;
517 msg = "WQ creation failure";
520 ret = mlx4_glue->modify_wq
522 &(struct ibv_wq_attr){
523 .attr_mask = IBV_WQ_ATTR_STATE,
524 .wq_state = IBV_WQS_RDY,
527 msg = "WQ state change to IBV_WQS_RDY failed";
530 /* Retrieve device queue information. */
532 mlxdv.cq.out = &dv_cq;
534 mlxdv.rwq.out = &dv_rwq;
535 ret = mlx4_glue->dv_init_obj(&mlxdv, MLX4DV_OBJ_RWQ | MLX4DV_OBJ_CQ);
537 msg = "failed to obtain device information from WQ/CQ objects";
540 wqes = (volatile struct mlx4_wqe_data_seg (*)[])
541 ((uintptr_t)dv_rwq.buf.buf + dv_rwq.rq.offset);
542 for (i = 0; i != RTE_DIM(*elts); ++i) {
543 volatile struct mlx4_wqe_data_seg *scat = &(*wqes)[i];
544 struct rte_mbuf *buf = rte_pktmbuf_alloc(rxq->mp);
548 rte_pktmbuf_free_seg((*elts)[i]);
552 msg = "cannot allocate mbuf";
555 /* Headroom is reserved by rte_pktmbuf_alloc(). */
556 assert(buf->data_off == RTE_PKTMBUF_HEADROOM);
557 /* Buffer is supposed to be empty. */
558 assert(rte_pktmbuf_data_len(buf) == 0);
559 assert(rte_pktmbuf_pkt_len(buf) == 0);
560 /* Only the first segment keeps headroom. */
563 buf->port = rxq->port_id;
564 buf->data_len = rte_pktmbuf_tailroom(buf);
565 buf->pkt_len = rte_pktmbuf_tailroom(buf);
567 *scat = (struct mlx4_wqe_data_seg){
568 .addr = rte_cpu_to_be_64(rte_pktmbuf_mtod(buf,
570 .byte_count = rte_cpu_to_be_32(buf->data_len),
571 .lkey = rte_cpu_to_be_32(rxq->mr->lkey),
575 DEBUG("%p: allocated and configured %u segments (max %u packets)",
576 (void *)rxq, elts_n, elts_n / sges_n);
580 rxq->rq_db = dv_rwq.rdb;
581 rxq->mcq.buf = dv_cq.buf.buf;
582 rxq->mcq.cqe_cnt = dv_cq.cqe_cnt;
583 rxq->mcq.set_ci_db = dv_cq.set_ci_db;
584 rxq->mcq.cqe_64 = (dv_cq.cqe_size & 64) ? 1 : 0;
585 rxq->mcq.arm_db = dv_cq.arm_db;
586 rxq->mcq.arm_sn = dv_cq.arm_sn;
587 rxq->mcq.cqn = dv_cq.cqn;
588 rxq->mcq.cq_uar = dv_cq.cq_uar;
589 rxq->mcq.cq_db_reg = (uint8_t *)dv_cq.cq_uar + MLX4_CQ_DOORBELL;
590 /* Update doorbell counter. */
591 rxq->rq_ci = elts_n / sges_n;
593 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
597 claim_zero(mlx4_glue->destroy_wq(wq));
599 claim_zero(mlx4_glue->destroy_cq(cq));
601 ERROR("error while attaching Rx queue %p: %s: %s",
602 (void *)rxq, msg, strerror(ret));
607 * Detach a user from a Rx queue.
609 * This function decrements the usage count of the Rx queue and destroys
610 * usage resources after reaching 0.
613 * Pointer to Rx queue structure.
616 mlx4_rxq_detach(struct rxq *rxq)
619 struct rte_mbuf *(*elts)[1 << rxq->elts_n] = rxq->elts;
624 memset(&rxq->mcq, 0, sizeof(rxq->mcq));
627 claim_zero(mlx4_glue->destroy_wq(rxq->wq));
629 claim_zero(mlx4_glue->destroy_cq(rxq->cq));
631 DEBUG("%p: freeing Rx queue elements", (void *)rxq);
632 for (i = 0; (i != RTE_DIM(*elts)); ++i) {
635 rte_pktmbuf_free_seg((*elts)[i]);
641 * Returns the per-queue supported offloads.
644 * Pointer to private structure.
647 * Supported Tx offloads.
650 mlx4_get_rx_queue_offloads(struct priv *priv)
652 uint64_t offloads = DEV_RX_OFFLOAD_SCATTER |
653 DEV_RX_OFFLOAD_CRC_STRIP;
656 offloads |= DEV_RX_OFFLOAD_CHECKSUM;
661 * Returns the per-port supported offloads.
664 * Pointer to private structure.
667 * Supported Rx offloads.
670 mlx4_get_rx_port_offloads(struct priv *priv)
672 uint64_t offloads = DEV_RX_OFFLOAD_VLAN_FILTER;
679 * Checks if the per-queue offload configuration is valid.
682 * Pointer to private structure.
684 * Per-queue offloads configuration.
687 * Nonzero when configuration is valid.
690 mlx4_check_rx_queue_offloads(struct priv *priv, uint64_t requested)
692 uint64_t mandatory = priv->dev->data->dev_conf.rxmode.offloads;
693 uint64_t supported = mlx4_get_rx_port_offloads(priv);
695 return !((mandatory ^ requested) & supported);
699 * DPDK callback to configure a Rx queue.
702 * Pointer to Ethernet device structure.
706 * Number of descriptors to configure in queue.
708 * NUMA socket on which memory must be allocated.
710 * Thresholds parameters.
712 * Memory pool for buffer allocations.
715 * 0 on success, negative errno value otherwise and rte_errno is set.
718 mlx4_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
719 unsigned int socket, const struct rte_eth_rxconf *conf,
720 struct rte_mempool *mp)
722 struct priv *priv = dev->data->dev_private;
723 uint32_t mb_len = rte_pktmbuf_data_room_size(mp);
724 struct rte_mbuf *(*elts)[rte_align32pow2(desc)];
726 struct mlx4_malloc_vec vec[] = {
728 .align = RTE_CACHE_LINE_SIZE,
729 .size = sizeof(*rxq),
730 .addr = (void **)&rxq,
733 .align = RTE_CACHE_LINE_SIZE,
734 .size = sizeof(*elts),
735 .addr = (void **)&elts,
740 (void)conf; /* Thresholds configuration (ignored). */
741 DEBUG("%p: configuring queue %u for %u descriptors",
742 (void *)dev, idx, desc);
743 if (!mlx4_check_rx_queue_offloads(priv, conf->offloads)) {
745 ERROR("%p: Rx queue offloads 0x%" PRIx64 " don't match port "
746 "offloads 0x%" PRIx64 " or supported offloads 0x%" PRIx64,
747 (void *)dev, conf->offloads,
748 dev->data->dev_conf.rxmode.offloads,
749 (mlx4_get_rx_port_offloads(priv) |
750 mlx4_get_rx_queue_offloads(priv)));
753 if (idx >= dev->data->nb_rx_queues) {
754 rte_errno = EOVERFLOW;
755 ERROR("%p: queue index out of range (%u >= %u)",
756 (void *)dev, idx, dev->data->nb_rx_queues);
759 rxq = dev->data->rx_queues[idx];
762 ERROR("%p: Rx queue %u already configured, release it first",
768 ERROR("%p: invalid number of Rx descriptors", (void *)dev);
771 if (desc != RTE_DIM(*elts)) {
772 desc = RTE_DIM(*elts);
773 WARN("%p: increased number of descriptors in Rx queue %u"
774 " to the next power of two (%u)",
775 (void *)dev, idx, desc);
777 /* Allocate and initialize Rx queue. */
778 mlx4_zmallocv_socket("RXQ", vec, RTE_DIM(vec), socket);
780 ERROR("%p: unable to allocate queue index %u",
787 .port_id = dev->data->port_id,
789 .elts_n = rte_log2_u32(desc),
791 /* Toggle Rx checksum offload if hardware supports it. */
792 .csum = priv->hw_csum &&
793 (conf->offloads & DEV_RX_OFFLOAD_CHECKSUM),
794 .csum_l2tun = priv->hw_csum_l2tun &&
795 (conf->offloads & DEV_RX_OFFLOAD_CHECKSUM),
796 .l2tun_offload = priv->hw_csum_l2tun,
802 /* Enable scattered packets support for this queue if necessary. */
803 assert(mb_len >= RTE_PKTMBUF_HEADROOM);
804 if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
805 (mb_len - RTE_PKTMBUF_HEADROOM)) {
807 } else if (conf->offloads & DEV_RX_OFFLOAD_SCATTER) {
809 RTE_PKTMBUF_HEADROOM +
810 dev->data->dev_conf.rxmode.max_rx_pkt_len;
814 * Determine the number of SGEs needed for a full packet
815 * and round it to the next power of two.
817 sges_n = rte_log2_u32((size / mb_len) + !!(size % mb_len));
818 rxq->sges_n = sges_n;
819 /* Make sure sges_n did not overflow. */
820 size = mb_len * (1 << rxq->sges_n);
821 size -= RTE_PKTMBUF_HEADROOM;
822 if (size < dev->data->dev_conf.rxmode.max_rx_pkt_len) {
823 rte_errno = EOVERFLOW;
824 ERROR("%p: too many SGEs (%u) needed to handle"
825 " requested maximum packet size %u",
828 dev->data->dev_conf.rxmode.max_rx_pkt_len);
832 WARN("%p: the requested maximum Rx packet size (%u) is"
833 " larger than a single mbuf (%u) and scattered"
834 " mode has not been requested",
836 dev->data->dev_conf.rxmode.max_rx_pkt_len,
837 mb_len - RTE_PKTMBUF_HEADROOM);
839 DEBUG("%p: maximum number of segments per packet: %u",
840 (void *)dev, 1 << rxq->sges_n);
841 if (desc % (1 << rxq->sges_n)) {
843 ERROR("%p: number of Rx queue descriptors (%u) is not a"
844 " multiple of maximum segments per packet (%u)",
850 /* Use the entire Rx mempool as the memory region. */
851 rxq->mr = mlx4_mr_get(priv, mp);
853 ERROR("%p: MR creation failure: %s",
854 (void *)dev, strerror(rte_errno));
857 if (dev->data->dev_conf.intr_conf.rxq) {
858 rxq->channel = mlx4_glue->create_comp_channel(priv->ctx);
859 if (rxq->channel == NULL) {
861 ERROR("%p: Rx interrupt completion channel creation"
863 (void *)dev, strerror(rte_errno));
866 if (mlx4_fd_set_non_blocking(rxq->channel->fd) < 0) {
867 ERROR("%p: unable to make Rx interrupt completion"
868 " channel non-blocking: %s",
869 (void *)dev, strerror(rte_errno));
873 DEBUG("%p: adding Rx queue %p to list", (void *)dev, (void *)rxq);
874 dev->data->rx_queues[idx] = rxq;
877 dev->data->rx_queues[idx] = NULL;
879 mlx4_rx_queue_release(rxq);
881 assert(rte_errno > 0);
886 * DPDK callback to release a Rx queue.
889 * Generic Rx queue pointer.
892 mlx4_rx_queue_release(void *dpdk_rxq)
894 struct rxq *rxq = (struct rxq *)dpdk_rxq;
901 for (i = 0; i != priv->dev->data->nb_rx_queues; ++i)
902 if (priv->dev->data->rx_queues[i] == rxq) {
903 DEBUG("%p: removing Rx queue %p from list",
904 (void *)priv->dev, (void *)rxq);
905 priv->dev->data->rx_queues[i] = NULL;
913 claim_zero(mlx4_glue->destroy_comp_channel(rxq->channel));
915 mlx4_mr_put(rxq->mr);