ethdev: add namespace
[dpdk.git] / drivers / net / mlx4 / mlx4_txq.c
index 3cece3e..0db2e55 100644 (file)
@@ -1,34 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright 2017 6WIND S.A.
- *   Copyright 2017 Mellanox
- *
- *   Redistribution and use in source and binary forms, with or without
- *   modification, are permitted provided that the following conditions
- *   are met:
- *
- *     * Redistributions of source code must retain the above copyright
- *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright
- *       notice, this list of conditions and the following disclaimer in
- *       the documentation and/or other materials provided with the
- *       distribution.
- *     * Neither the name of 6WIND S.A. nor the names of its
- *       contributors may be used to endorse or promote products derived
- *       from this software without specific prior written permission.
- *
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2017 6WIND S.A.
+ * Copyright 2017 Mellanox Technologies, Ltd
  */
 
 /**
  * Tx queues configuration for mlx4 driver.
  */
 
-#include <assert.h>
 #include <errno.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <string.h>
+#include <sys/mman.h>
+#include <inttypes.h>
+#include <unistd.h>
 
 /* Verbs headers do not support -pedantic. */
 #ifdef PEDANTIC
 
 #include <rte_common.h>
 #include <rte_errno.h>
-#include <rte_ethdev.h>
+#include <ethdev_driver.h>
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
 #include <rte_mempool.h>
 
 #include "mlx4.h"
-#include "mlx4_autoconf.h"
+#include "mlx4_glue.h"
+#include "mlx4_prm.h"
 #include "mlx4_rxtx.h"
 #include "mlx4_utils.h"
 
 /**
- * Allocate Tx queue elements.
+ * Initialize Tx UAR registers for primary process.
  *
  * @param txq
  *   Pointer to Tx queue structure.
- * @param elts_n
- *   Number of elements to allocate.
+ */
+static void
+txq_uar_init(struct txq *txq)
+{
+       struct mlx4_priv *priv = txq->priv;
+       struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(priv));
+
+       MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
+       MLX4_ASSERT(ppriv);
+       ppriv->uar_table[txq->stats.idx] = txq->msq.db;
+}
+
+#ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
+/**
+ * Remap UAR register of a Tx queue for secondary process.
+ *
+ * Remapped address is stored at the table in the process private structure of
+ * the device, indexed by queue index.
+ *
+ * @param txq
+ *   Pointer to Tx queue structure.
+ * @param fd
+ *   Verbs file descriptor to map UAR pages.
  *
  * @return
- *   0 on success, negative errno value otherwise and rte_errno is set.
+ *   0 on success, negative errno value otherwise and rte_errno is set.
  */
 static int
-mlx4_txq_alloc_elts(struct txq *txq, unsigned int elts_n)
+txq_uar_init_secondary(struct txq *txq, int fd)
 {
-       unsigned int i;
-       struct txq_elt (*elts)[elts_n] =
-               rte_calloc_socket("TXQ", 1, sizeof(*elts), 0, txq->socket);
-       int ret = 0;
+       struct mlx4_priv *priv = txq->priv;
+       struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(priv));
+       void *addr;
+       uintptr_t uar_va;
+       uintptr_t offset;
+       const size_t page_size = sysconf(_SC_PAGESIZE);
 
-       if (elts == NULL) {
-               ERROR("%p: can't allocate packets array", (void *)txq);
-               ret = ENOMEM;
-               goto error;
-       }
-       for (i = 0; (i != elts_n); ++i) {
-               struct txq_elt *elt = &(*elts)[i];
-
-               elt->buf = NULL;
-       }
-       DEBUG("%p: allocated and configured %u WRs", (void *)txq, elts_n);
-       txq->elts_n = elts_n;
-       txq->elts = elts;
-       txq->elts_head = 0;
-       txq->elts_tail = 0;
-       txq->elts_comp = 0;
+       MLX4_ASSERT(ppriv);
        /*
-        * Request send completion every MLX4_PMD_TX_PER_COMP_REQ packets or
-        * at least 4 times per ring.
+        * As rdma-core, UARs are mapped in size of OS page
+        * size. Ref to libmlx4 function: mlx4_init_context()
         */
-       txq->elts_comp_cd_init =
-               ((MLX4_PMD_TX_PER_COMP_REQ < (elts_n / 4)) ?
-                MLX4_PMD_TX_PER_COMP_REQ : (elts_n / 4));
-       txq->elts_comp_cd = txq->elts_comp_cd_init;
-       assert(ret == 0);
+       uar_va = (uintptr_t)txq->msq.db;
+       offset = uar_va & (page_size - 1); /* Offset in page. */
+       addr = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd,
+                       txq->msq.uar_mmap_offset);
+       if (addr == MAP_FAILED) {
+               ERROR("port %u mmap failed for BF reg of txq %u",
+                     txq->port_id, txq->stats.idx);
+               rte_errno = ENXIO;
+               return -rte_errno;
+       }
+       addr = RTE_PTR_ADD(addr, offset);
+       ppriv->uar_table[txq->stats.idx] = addr;
        return 0;
-error:
-       rte_free(elts);
-       DEBUG("%p: failed, freed everything", (void *)txq);
-       assert(ret > 0);
-       rte_errno = ret;
-       return -rte_errno;
 }
 
 /**
- * Free Tx queue elements.
+ * Unmap UAR register of a Tx queue for secondary process.
  *
  * @param txq
  *   Pointer to Tx queue structure.
  */
 static void
-mlx4_txq_free_elts(struct txq *txq)
+txq_uar_uninit_secondary(struct txq *txq)
 {
-       unsigned int elts_n = txq->elts_n;
-       unsigned int elts_head = txq->elts_head;
-       unsigned int elts_tail = txq->elts_tail;
-       struct txq_elt (*elts)[elts_n] = txq->elts;
+       struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(txq->priv));
+       const size_t page_size = sysconf(_SC_PAGESIZE);
+       void *addr;
 
-       DEBUG("%p: freeing WRs", (void *)txq);
-       txq->elts_n = 0;
-       txq->elts_head = 0;
-       txq->elts_tail = 0;
-       txq->elts_comp = 0;
-       txq->elts_comp_cd = 0;
-       txq->elts_comp_cd_init = 0;
-       txq->elts = NULL;
-       if (elts == NULL)
-               return;
-       while (elts_tail != elts_head) {
-               struct txq_elt *elt = &(*elts)[elts_tail];
-
-               assert(elt->buf != NULL);
-               rte_pktmbuf_free(elt->buf);
-#ifndef NDEBUG
-               /* Poisoning. */
-               memset(elt, 0x77, sizeof(*elt));
-#endif
-               if (++elts_tail == elts_n)
-                       elts_tail = 0;
-       }
-       rte_free(elts);
+       addr = ppriv->uar_table[txq->stats.idx];
+       munmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
 }
 
 /**
- * Clean up a Tx queue.
+ * Initialize Tx UAR registers for secondary process.
  *
- * Destroy objects, free allocated memory and reset the structure for reuse.
+ * @param dev
+ *   Pointer to Ethernet device.
+ * @param fd
+ *   Verbs file descriptor to map UAR pages.
  *
- * @param txq
- *   Pointer to Tx queue structure.
+ * @return
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
  */
+int
+mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev, int fd)
+{
+       const unsigned int txqs_n = dev->data->nb_tx_queues;
+       struct txq *txq;
+       unsigned int i;
+       int ret;
+
+       MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
+       for (i = 0; i != txqs_n; ++i) {
+               txq = dev->data->tx_queues[i];
+               if (!txq)
+                       continue;
+               MLX4_ASSERT(txq->stats.idx == (uint16_t)i);
+               ret = txq_uar_init_secondary(txq, fd);
+               if (ret)
+                       goto error;
+       }
+       return 0;
+error:
+       /* Rollback. */
+       do {
+               txq = dev->data->tx_queues[i];
+               if (!txq)
+                       continue;
+               txq_uar_uninit_secondary(txq);
+       } while (i--);
+       return -rte_errno;
+}
+
 void
-mlx4_txq_cleanup(struct txq *txq)
+mlx4_tx_uar_uninit_secondary(struct rte_eth_dev *dev)
 {
+       struct mlx4_proc_priv *ppriv =
+                       (struct mlx4_proc_priv *)dev->process_private;
+       const size_t page_size = sysconf(_SC_PAGESIZE);
+       void *addr;
        size_t i;
 
-       DEBUG("cleaning up %p", (void *)txq);
-       mlx4_txq_free_elts(txq);
-       if (txq->qp != NULL)
-               claim_zero(ibv_destroy_qp(txq->qp));
-       if (txq->cq != NULL)
-               claim_zero(ibv_destroy_cq(txq->cq));
-       for (i = 0; (i != RTE_DIM(txq->mp2mr)); ++i) {
-               if (txq->mp2mr[i].mp == NULL)
-                       break;
-               assert(txq->mp2mr[i].mr != NULL);
-               claim_zero(ibv_dereg_mr(txq->mp2mr[i].mr));
+       if (page_size == (size_t)-1) {
+               ERROR("Failed to get mem page size");
+               return;
+       }
+       for (i = 0; i < ppriv->uar_table_sz; i++) {
+               addr = ppriv->uar_table[i];
+               if (addr)
+                       munmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
        }
-       memset(txq, 0, sizeof(*txq));
 }
 
-struct txq_mp2mr_mbuf_check_data {
-       int ret;
-};
+#else
+int
+mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev __rte_unused,
+                          int fd __rte_unused)
+{
+       MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
+       ERROR("UAR remap is not supported");
+       rte_errno = ENOTSUP;
+       return -rte_errno;
+}
+
+void
+mlx4_tx_uar_uninit_secondary(struct rte_eth_dev *dev __rte_unused)
+{
+       assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
+       ERROR("UAR remap is not supported");
+}
+#endif
 
 /**
- * Callback function for rte_mempool_obj_iter() to check whether a given
- * mempool object looks like a mbuf.
+ * Free Tx queue elements.
  *
- * @param[in] mp
- *   The mempool pointer
- * @param[in] arg
- *   Context data (struct mlx4_txq_mp2mr_mbuf_check_data). Contains the
- *   return value.
- * @param[in] obj
- *   Object address.
- * @param index
- *   Object index, unused.
+ * @param txq
+ *   Pointer to Tx queue structure.
  */
 static void
-mlx4_txq_mp2mr_mbuf_check(struct rte_mempool *mp, void *arg, void *obj,
-                         uint32_t index)
+mlx4_txq_free_elts(struct txq *txq)
 {
-       struct txq_mp2mr_mbuf_check_data *data = arg;
-       struct rte_mbuf *buf = obj;
+       struct txq_elt (*elts)[txq->elts_n] = txq->elts;
+       unsigned int n = txq->elts_n;
 
-       (void)index;
-       /*
-        * Check whether mbuf structure fits element size and whether mempool
-        * pointer is valid.
-        */
-       if (sizeof(*buf) > mp->elt_size || buf->pool != mp)
-               data->ret = -1;
+       DEBUG("%p: freeing WRs, %u", (void *)txq, n);
+       while (n--) {
+               struct txq_elt *elt = &(*elts)[n];
+
+               if (elt->buf) {
+                       rte_pktmbuf_free(elt->buf);
+                       elt->buf = NULL;
+                       elt->wqe = NULL;
+               }
+       }
+       txq->elts_tail = txq->elts_head;
 }
 
 /**
- * Iterator function for rte_mempool_walk() to register existing mempools and
- * fill the MP to MR cache of a Tx queue.
+ * Retrieves information needed in order to directly access the Tx queue.
  *
- * @param[in] mp
- *   Memory Pool to register.
- * @param *arg
+ * @param txq
  *   Pointer to Tx queue structure.
+ * @param mlxdv
+ *   Pointer to device information for this Tx queue.
  */
 static void
-mlx4_txq_mp2mr_iter(struct rte_mempool *mp, void *arg)
+mlx4_txq_fill_dv_obj_info(struct txq *txq, struct mlx4dv_obj *mlxdv)
 {
-       struct txq *txq = arg;
-       struct txq_mp2mr_mbuf_check_data data = {
-               .ret = 0,
-       };
+       struct mlx4_sq *sq = &txq->msq;
+       struct mlx4_cq *cq = &txq->mcq;
+       struct mlx4dv_qp *dqp = mlxdv->qp.out;
+       struct mlx4dv_cq *dcq = mlxdv->cq.out;
 
-       /* Register mempool only if the first element looks like a mbuf. */
-       if (rte_mempool_obj_iter(mp, mlx4_txq_mp2mr_mbuf_check, &data) == 0 ||
-                       data.ret == -1)
-               return;
-       mlx4_txq_mp2mr(txq, mp);
+       /* Total length, including headroom and spare WQEs. */
+       sq->size = (uint32_t)dqp->rq.offset - (uint32_t)dqp->sq.offset;
+       sq->buf = (uint8_t *)dqp->buf.buf + dqp->sq.offset;
+       sq->eob = sq->buf + sq->size;
+       uint32_t headroom_size = 2048 + (1 << dqp->sq.wqe_shift);
+       /* Continuous headroom size bytes must always stay freed. */
+       sq->remain_size = sq->size - headroom_size;
+       sq->owner_opcode = MLX4_OPCODE_SEND | (0u << MLX4_SQ_OWNER_BIT);
+       sq->stamp = rte_cpu_to_be_32(MLX4_SQ_STAMP_VAL |
+                                    (0u << MLX4_SQ_OWNER_BIT));
+#ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
+       sq->uar_mmap_offset = dqp->uar_mmap_offset;
+#else
+       sq->uar_mmap_offset = -1; /* Make mmap() fail. */
+#endif
+       sq->db = dqp->sdb;
+       sq->doorbell_qpn = dqp->doorbell_qpn;
+       cq->buf = dcq->buf.buf;
+       cq->cqe_cnt = dcq->cqe_cnt;
+       cq->set_ci_db = dcq->set_ci_db;
+       cq->cqe_64 = (dcq->cqe_size & 64) ? 1 : 0;
+}
+
+/**
+ * Returns the per-port supported offloads.
+ *
+ * @param priv
+ *   Pointer to private structure.
+ *
+ * @return
+ *   Supported Tx offloads.
+ */
+uint64_t
+mlx4_get_tx_port_offloads(struct mlx4_priv *priv)
+{
+       uint64_t offloads = RTE_ETH_TX_OFFLOAD_MULTI_SEGS;
+
+       if (priv->hw_csum) {
+               offloads |= (RTE_ETH_TX_OFFLOAD_IPV4_CKSUM |
+                            RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
+                            RTE_ETH_TX_OFFLOAD_TCP_CKSUM);
+       }
+       if (priv->tso)
+               offloads |= RTE_ETH_TX_OFFLOAD_TCP_TSO;
+       if (priv->hw_csum_l2tun) {
+               offloads |= RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM;
+               if (priv->tso)
+                       offloads |= (RTE_ETH_TX_OFFLOAD_VXLAN_TNL_TSO |
+                                    RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO);
+       }
+       return offloads;
 }
 
 /**
- * Configure a Tx queue.
+ * DPDK callback to configure a Tx queue.
  *
  * @param dev
  *   Pointer to Ethernet device structure.
- * @param txq
- *   Pointer to Tx queue structure.
+ * @param idx
+ *   Tx queue index.
  * @param desc
  *   Number of descriptors to configure in queue.
  * @param socket
@@ -258,212 +308,239 @@ mlx4_txq_mp2mr_iter(struct rte_mempool *mp, void *arg)
  * @return
  *   0 on success, negative errno value otherwise and rte_errno is set.
  */
-static int
-mlx4_txq_setup(struct rte_eth_dev *dev, struct txq *txq, uint16_t desc,
-              unsigned int socket, const struct rte_eth_txconf *conf)
+int
+mlx4_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
+                   unsigned int socket, const struct rte_eth_txconf *conf)
 {
-       struct priv *priv = dev->data->dev_private;
-       struct txq tmpl = {
-               .priv = priv,
-               .socket = socket
+       struct mlx4_priv *priv = dev->data->dev_private;
+       struct mlx4dv_obj mlxdv;
+       struct mlx4dv_qp dv_qp;
+       struct mlx4dv_cq dv_cq;
+       struct txq_elt (*elts)[rte_align32pow2(desc)];
+       struct ibv_qp_init_attr qp_init_attr;
+       struct txq *txq;
+       uint8_t *bounce_buf;
+       struct mlx4_malloc_vec vec[] = {
+               {
+                       .align = RTE_CACHE_LINE_SIZE,
+                       .size = sizeof(*txq),
+                       .addr = (void **)&txq,
+               },
+               {
+                       .align = RTE_CACHE_LINE_SIZE,
+                       .size = sizeof(*elts),
+                       .addr = (void **)&elts,
+               },
+               {
+                       .align = RTE_CACHE_LINE_SIZE,
+                       .size = MLX4_MAX_WQE_SIZE,
+                       .addr = (void **)&bounce_buf,
+               },
        };
-       union {
-               struct ibv_qp_init_attr init;
-               struct ibv_qp_attr mod;
-       } attr;
        int ret;
+       uint64_t offloads;
 
-       (void)conf; /* Thresholds configuration (ignored). */
-       if (priv == NULL) {
-               rte_errno = EINVAL;
-               goto error;
+       offloads = conf->offloads | dev->data->dev_conf.txmode.offloads;
+       DEBUG("%p: configuring queue %u for %u descriptors",
+             (void *)dev, idx, desc);
+       if (idx >= dev->data->nb_tx_queues) {
+               rte_errno = EOVERFLOW;
+               ERROR("%p: queue index out of range (%u >= %u)",
+                     (void *)dev, idx, dev->data->nb_tx_queues);
+               return -rte_errno;
        }
-       if (desc == 0) {
+       txq = dev->data->tx_queues[idx];
+       if (txq) {
+               rte_errno = EEXIST;
+               DEBUG("%p: Tx queue %u already configured, release it first",
+                     (void *)dev, idx);
+               return -rte_errno;
+       }
+       if (!desc) {
                rte_errno = EINVAL;
                ERROR("%p: invalid number of Tx descriptors", (void *)dev);
-               goto error;
+               return -rte_errno;
        }
-       /* MRs will be registered in mp2mr[] later. */
-       tmpl.cq = ibv_create_cq(priv->ctx, desc, NULL, NULL, 0);
-       if (tmpl.cq == NULL) {
+       if (desc != RTE_DIM(*elts)) {
+               desc = RTE_DIM(*elts);
+               WARN("%p: increased number of descriptors in Tx queue %u"
+                    " to the next power of two (%u)",
+                    (void *)dev, idx, desc);
+       }
+       /* Allocate and initialize Tx queue. */
+       mlx4_zmallocv_socket("TXQ", vec, RTE_DIM(vec), socket);
+       if (!txq) {
+               ERROR("%p: unable to allocate queue index %u",
+                     (void *)dev, idx);
+               return -rte_errno;
+       }
+       *txq = (struct txq){
+               .priv = priv,
+               .port_id = dev->data->port_id,
+               .stats = {
+                       .idx = idx,
+               },
+               .socket = socket,
+               .elts_n = desc,
+               .elts = elts,
+               .elts_head = 0,
+               .elts_tail = 0,
+               /*
+                * Request send completion every MLX4_PMD_TX_PER_COMP_REQ
+                * packets or at least 4 times per ring.
+                */
+               .elts_comp_cd =
+                       RTE_MIN(MLX4_PMD_TX_PER_COMP_REQ, desc / 4),
+               .elts_comp_cd_init =
+                       RTE_MIN(MLX4_PMD_TX_PER_COMP_REQ, desc / 4),
+               .csum = priv->hw_csum &&
+                       (offloads & (RTE_ETH_TX_OFFLOAD_IPV4_CKSUM |
+                                          RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
+                                          RTE_ETH_TX_OFFLOAD_TCP_CKSUM)),
+               .csum_l2tun = priv->hw_csum_l2tun &&
+                             (offloads &
+                              RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM),
+               /* Enable Tx loopback for VF devices. */
+               .lb = !!priv->vf,
+               .bounce_buf = bounce_buf,
+       };
+       dev->data->tx_queues[idx] = txq;
+       priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_TX_QUEUE;
+       priv->verbs_alloc_ctx.obj = txq;
+       txq->cq = mlx4_glue->create_cq(priv->ctx, desc, NULL, NULL, 0);
+       if (!txq->cq) {
                rte_errno = ENOMEM;
                ERROR("%p: CQ creation failure: %s",
                      (void *)dev, strerror(rte_errno));
                goto error;
        }
-       DEBUG("priv->device_attr.max_qp_wr is %d",
-             priv->device_attr.max_qp_wr);
-       DEBUG("priv->device_attr.max_sge is %d",
-             priv->device_attr.max_sge);
-       attr.init = (struct ibv_qp_init_attr){
-               /* CQ to be associated with the send queue. */
-               .send_cq = tmpl.cq,
-               /* CQ to be associated with the receive queue. */
-               .recv_cq = tmpl.cq,
+       qp_init_attr = (struct ibv_qp_init_attr){
+               .send_cq = txq->cq,
+               .recv_cq = txq->cq,
                .cap = {
-                       /* Max number of outstanding WRs. */
-                       .max_send_wr = ((priv->device_attr.max_qp_wr < desc) ?
-                                       priv->device_attr.max_qp_wr :
-                                       desc),
-                       /* Max number of scatter/gather elements in a WR. */
+                       .max_send_wr =
+                               RTE_MIN(priv->device_attr.max_qp_wr, desc),
                        .max_send_sge = 1,
                        .max_inline_data = MLX4_PMD_MAX_INLINE,
                },
                .qp_type = IBV_QPT_RAW_PACKET,
-               /*
-                * Do *NOT* enable this, completions events are managed per
-                * Tx burst.
-                */
+               /* No completion events must occur by default. */
                .sq_sig_all = 0,
        };
-       tmpl.qp = ibv_create_qp(priv->pd, &attr.init);
-       if (tmpl.qp == NULL) {
+       txq->qp = mlx4_glue->create_qp(priv->pd, &qp_init_attr);
+       if (!txq->qp) {
                rte_errno = errno ? errno : EINVAL;
                ERROR("%p: QP creation failure: %s",
                      (void *)dev, strerror(rte_errno));
                goto error;
        }
-       /* ibv_create_qp() updates this value. */
-       tmpl.max_inline = attr.init.cap.max_inline_data;
-       attr.mod = (struct ibv_qp_attr){
-               /* Move the QP to this state. */
-               .qp_state = IBV_QPS_INIT,
-               /* Primary port number. */
-               .port_num = priv->port
-       };
-       ret = ibv_modify_qp(tmpl.qp, &attr.mod, IBV_QP_STATE | IBV_QP_PORT);
+       txq->max_inline = qp_init_attr.cap.max_inline_data;
+       ret = mlx4_glue->modify_qp
+               (txq->qp,
+                &(struct ibv_qp_attr){
+                       .qp_state = IBV_QPS_INIT,
+                       .port_num = priv->port,
+                },
+                IBV_QP_STATE | IBV_QP_PORT);
        if (ret) {
                rte_errno = ret;
                ERROR("%p: QP state to IBV_QPS_INIT failed: %s",
                      (void *)dev, strerror(rte_errno));
                goto error;
        }
-       ret = mlx4_txq_alloc_elts(&tmpl, desc);
-       if (ret) {
-               ERROR("%p: TXQ allocation failed: %s",
-                     (void *)dev, strerror(rte_errno));
-               goto error;
-       }
-       attr.mod = (struct ibv_qp_attr){
-               .qp_state = IBV_QPS_RTR
-       };
-       ret = ibv_modify_qp(tmpl.qp, &attr.mod, IBV_QP_STATE);
+       ret = mlx4_glue->modify_qp
+               (txq->qp,
+                &(struct ibv_qp_attr){
+                       .qp_state = IBV_QPS_RTR,
+                },
+                IBV_QP_STATE);
        if (ret) {
                rte_errno = ret;
                ERROR("%p: QP state to IBV_QPS_RTR failed: %s",
                      (void *)dev, strerror(rte_errno));
                goto error;
        }
-       attr.mod.qp_state = IBV_QPS_RTS;
-       ret = ibv_modify_qp(tmpl.qp, &attr.mod, IBV_QP_STATE);
+       ret = mlx4_glue->modify_qp
+               (txq->qp,
+                &(struct ibv_qp_attr){
+                       .qp_state = IBV_QPS_RTS,
+                },
+                IBV_QP_STATE);
        if (ret) {
                rte_errno = ret;
                ERROR("%p: QP state to IBV_QPS_RTS failed: %s",
                      (void *)dev, strerror(rte_errno));
                goto error;
        }
-       /* Clean up txq in case we're reinitializing it. */
-       DEBUG("%p: cleaning-up old txq just in case", (void *)txq);
-       mlx4_txq_cleanup(txq);
-       *txq = tmpl;
-       DEBUG("%p: txq updated with %p", (void *)txq, (void *)&tmpl);
-       /* Pre-register known mempools. */
-       rte_mempool_walk(mlx4_txq_mp2mr_iter, txq);
+       /* Retrieve device queue information. */
+#ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
+       dv_qp = (struct mlx4dv_qp){
+               .comp_mask = MLX4DV_QP_MASK_UAR_MMAP_OFFSET,
+       };
+#endif
+       mlxdv.cq.in = txq->cq;
+       mlxdv.cq.out = &dv_cq;
+       mlxdv.qp.in = txq->qp;
+       mlxdv.qp.out = &dv_qp;
+       ret = mlx4_glue->dv_init_obj(&mlxdv, MLX4DV_OBJ_QP | MLX4DV_OBJ_CQ);
+       if (ret) {
+               rte_errno = EINVAL;
+               ERROR("%p: failed to obtain information needed for"
+                     " accessing the device queues", (void *)dev);
+               goto error;
+       }
+#ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
+       if (!(dv_qp.comp_mask & MLX4DV_QP_MASK_UAR_MMAP_OFFSET)) {
+               WARN("%p: failed to obtain UAR mmap offset", (void *)dev);
+               dv_qp.uar_mmap_offset = -1; /* Make mmap() fail. */
+       }
+#endif
+       mlx4_txq_fill_dv_obj_info(txq, &mlxdv);
+       txq_uar_init(txq);
+       /* Save first wqe pointer in the first element. */
+       (&(*txq->elts)[0])->wqe =
+               (volatile struct mlx4_wqe_ctrl_seg *)txq->msq.buf;
+       if (mlx4_mr_btree_init(&txq->mr_ctrl.cache_bh,
+                              MLX4_MR_BTREE_CACHE_N, socket)) {
+               /* rte_errno is already set. */
+               goto error;
+       }
+       /* Save pointer of global generation number to check memory event. */
+       txq->mr_ctrl.dev_gen_ptr = &priv->mr.dev_gen;
+       DEBUG("%p: adding Tx queue %p to list", (void *)dev, (void *)txq);
+       priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
        return 0;
 error:
        ret = rte_errno;
-       mlx4_txq_cleanup(&tmpl);
+       mlx4_tx_queue_release(dev, idx);
        rte_errno = ret;
-       assert(rte_errno > 0);
+       MLX4_ASSERT(rte_errno > 0);
+       priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
        return -rte_errno;
 }
 
 /**
- * DPDK callback to configure a Tx queue.
+ * DPDK callback to release a Tx queue.
  *
  * @param dev
  *   Pointer to Ethernet device structure.
  * @param idx
- *   Tx queue index.
- * @param desc
- *   Number of descriptors to configure in queue.
- * @param socket
- *   NUMA socket on which memory must be allocated.
- * @param[in] conf
- *   Thresholds parameters.
- *
- * @return
- *   0 on success, negative errno value otherwise and rte_errno is set.
- */
-int
-mlx4_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
-                   unsigned int socket, const struct rte_eth_txconf *conf)
-{
-       struct priv *priv = dev->data->dev_private;
-       struct txq *txq = dev->data->tx_queues[idx];
-       int ret;
-
-       DEBUG("%p: configuring queue %u for %u descriptors",
-             (void *)dev, idx, desc);
-       if (idx >= dev->data->nb_tx_queues) {
-               rte_errno = EOVERFLOW;
-               ERROR("%p: queue index out of range (%u >= %u)",
-                     (void *)dev, idx, dev->data->nb_tx_queues);
-               return -rte_errno;
-       }
-       if (txq != NULL) {
-               DEBUG("%p: reusing already allocated queue index %u (%p)",
-                     (void *)dev, idx, (void *)txq);
-               if (priv->started) {
-                       rte_errno = EEXIST;
-                       return -rte_errno;
-               }
-               dev->data->tx_queues[idx] = NULL;
-               mlx4_txq_cleanup(txq);
-       } else {
-               txq = rte_calloc_socket("TXQ", 1, sizeof(*txq), 0, socket);
-               if (txq == NULL) {
-                       rte_errno = ENOMEM;
-                       ERROR("%p: unable to allocate queue index %u",
-                             (void *)dev, idx);
-                       return -rte_errno;
-               }
-       }
-       ret = mlx4_txq_setup(dev, txq, desc, socket, conf);
-       if (ret) {
-               rte_free(txq);
-       } else {
-               txq->stats.idx = idx;
-               DEBUG("%p: adding Tx queue %p to list",
-                     (void *)dev, (void *)txq);
-               dev->data->tx_queues[idx] = txq;
-       }
-       return ret;
-}
-
-/**
- * DPDK callback to release a Tx queue.
- *
- * @param dpdk_txq
- *   Generic Tx queue pointer.
+ *   Transmit queue index.
  */
 void
-mlx4_tx_queue_release(void *dpdk_txq)
+mlx4_tx_queue_release(struct rte_eth_dev *dev, uint16_t idx)
 {
-       struct txq *txq = (struct txq *)dpdk_txq;
-       struct priv *priv;
-       unsigned int i;
+       struct txq *txq = dev->data->tx_queues[idx];
 
        if (txq == NULL)
                return;
-       priv = txq->priv;
-       for (i = 0; i != priv->dev->data->nb_tx_queues; ++i)
-               if (priv->dev->data->tx_queues[i] == txq) {
-                       DEBUG("%p: removing Tx queue %p from list",
-                             (void *)priv->dev, (void *)txq);
-                       priv->dev->data->tx_queues[i] = NULL;
-                       break;
-               }
-       mlx4_txq_cleanup(txq);
+       DEBUG("%p: removing Tx queue %hu from list", (void *)dev, idx);
+       dev->data->tx_queues[idx] = NULL;
+       mlx4_txq_free_elts(txq);
+       if (txq->qp)
+               claim_zero(mlx4_glue->destroy_qp(txq->qp));
+       if (txq->cq)
+               claim_zero(mlx4_glue->destroy_cq(txq->cq));
+       mlx4_mr_btree_free(&txq->mr_ctrl.cache_bh);
        rte_free(txq);
 }