2018-01-29 14:11:31 +01:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright 2017 6WIND S.A.
|
2018-03-20 21:20:35 +02:00
|
|
|
* Copyright 2017 Mellanox Technologies, Ltd
|
2017-09-01 10:06:59 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Tx queues configuration for mlx4 driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2019-04-01 14:15:53 -07:00
|
|
|
#include <sys/mman.h>
|
2018-01-10 11:17:02 +02:00
|
|
|
#include <inttypes.h>
|
2019-04-01 14:15:53 -07:00
|
|
|
#include <unistd.h>
|
2017-09-01 10:06:59 +02:00
|
|
|
|
|
|
|
/* Verbs headers do not support -pedantic. */
|
|
|
|
#ifdef PEDANTIC
|
|
|
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
|
|
|
#endif
|
|
|
|
#include <infiniband/verbs.h>
|
|
|
|
#ifdef PEDANTIC
|
|
|
|
#pragma GCC diagnostic error "-Wpedantic"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <rte_common.h>
|
|
|
|
#include <rte_errno.h>
|
2018-01-22 00:16:22 +00:00
|
|
|
#include <rte_ethdev_driver.h>
|
2017-09-01 10:06:59 +02:00
|
|
|
#include <rte_malloc.h>
|
|
|
|
#include <rte_mbuf.h>
|
|
|
|
#include <rte_mempool.h>
|
|
|
|
|
|
|
|
#include "mlx4.h"
|
2018-01-30 16:34:52 +01:00
|
|
|
#include "mlx4_glue.h"
|
2017-10-12 14:29:56 +02:00
|
|
|
#include "mlx4_prm.h"
|
2017-09-01 10:06:59 +02:00
|
|
|
#include "mlx4_rxtx.h"
|
|
|
|
#include "mlx4_utils.h"
|
|
|
|
|
2019-04-01 14:15:53 -07:00
|
|
|
/**
|
2019-04-10 11:41:18 -07:00
|
|
|
* Initialize Tx UAR registers for primary process.
|
2019-04-01 14:15:53 -07:00
|
|
|
*
|
2019-04-10 11:41:18 -07:00
|
|
|
* @param txq
|
|
|
|
* Pointer to Tx queue structure.
|
|
|
|
*/
|
|
|
|
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));
|
|
|
|
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
|
|
|
|
MLX4_ASSERT(ppriv);
|
2019-04-10 11:41:18 -07:00
|
|
|
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, a negative errno value otherwise and rte_errno is set.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
txq_uar_init_secondary(struct txq *txq, int fd)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(ppriv);
|
2019-04-10 11:41:18 -07:00
|
|
|
/*
|
|
|
|
* As rdma-core, UARs are mapped in size of OS page
|
|
|
|
* size. Ref to libmlx4 function: mlx4_init_context()
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unmap UAR register of a Tx queue for secondary process.
|
|
|
|
*
|
|
|
|
* @param txq
|
|
|
|
* Pointer to Tx queue structure.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
txq_uar_uninit_secondary(struct txq *txq)
|
|
|
|
{
|
|
|
|
struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(txq->priv));
|
|
|
|
const size_t page_size = sysconf(_SC_PAGESIZE);
|
|
|
|
void *addr;
|
|
|
|
|
|
|
|
addr = ppriv->uar_table[txq->stats.idx];
|
|
|
|
munmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize Tx UAR registers for secondary process.
|
|
|
|
*
|
|
|
|
* @param dev
|
2019-04-01 14:15:53 -07:00
|
|
|
* Pointer to Ethernet device.
|
|
|
|
* @param fd
|
|
|
|
* Verbs file descriptor to map UAR pages.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* 0 on success, a negative errno value otherwise and rte_errno is set.
|
|
|
|
*/
|
|
|
|
int
|
2019-04-10 11:41:18 -07:00
|
|
|
mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev, int fd)
|
2019-04-01 14:15:53 -07:00
|
|
|
{
|
|
|
|
const unsigned int txqs_n = dev->data->nb_tx_queues;
|
|
|
|
struct txq *txq;
|
2019-04-10 11:41:18 -07:00
|
|
|
unsigned int i;
|
|
|
|
int ret;
|
2019-04-01 14:15:53 -07:00
|
|
|
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
|
2019-04-01 14:15:53 -07:00
|
|
|
for (i = 0; i != txqs_n; ++i) {
|
|
|
|
txq = dev->data->tx_queues[i];
|
|
|
|
if (!txq)
|
|
|
|
continue;
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(txq->stats.idx == (uint16_t)i);
|
2019-04-10 11:41:18 -07:00
|
|
|
ret = txq_uar_init_secondary(txq, fd);
|
|
|
|
if (ret)
|
|
|
|
goto error;
|
2019-04-01 14:15:53 -07:00
|
|
|
}
|
|
|
|
return 0;
|
2019-04-10 11:41:18 -07:00
|
|
|
error:
|
|
|
|
/* Rollback. */
|
|
|
|
do {
|
|
|
|
txq = dev->data->tx_queues[i];
|
|
|
|
if (!txq)
|
|
|
|
continue;
|
|
|
|
txq_uar_uninit_secondary(txq);
|
|
|
|
} while (i--);
|
|
|
|
return -rte_errno;
|
2019-04-01 14:15:53 -07:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
int
|
2019-04-10 11:41:18 -07:00
|
|
|
mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev __rte_unused,
|
|
|
|
int fd __rte_unused)
|
2019-04-01 14:15:53 -07:00
|
|
|
{
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
|
2019-04-01 14:15:53 -07:00
|
|
|
ERROR("UAR remap is not supported");
|
|
|
|
rte_errno = ENOTSUP;
|
|
|
|
return -rte_errno;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-09-01 10:06:59 +02:00
|
|
|
/**
|
|
|
|
* Free Tx queue elements.
|
|
|
|
*
|
|
|
|
* @param txq
|
|
|
|
* Pointer to Tx queue structure.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mlx4_txq_free_elts(struct txq *txq)
|
|
|
|
{
|
|
|
|
unsigned int elts_head = txq->elts_head;
|
|
|
|
unsigned int elts_tail = txq->elts_tail;
|
2017-10-12 14:19:38 +02:00
|
|
|
struct txq_elt (*elts)[txq->elts_n] = txq->elts;
|
2017-12-06 17:57:55 +00:00
|
|
|
unsigned int elts_m = txq->elts_n - 1;
|
2017-09-01 10:06:59 +02:00
|
|
|
|
|
|
|
DEBUG("%p: freeing WRs", (void *)txq);
|
|
|
|
while (elts_tail != elts_head) {
|
2017-12-06 17:57:55 +00:00
|
|
|
struct txq_elt *elt = &(*elts)[elts_tail++ & elts_m];
|
2017-09-01 10:06:59 +02:00
|
|
|
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(elt->buf != NULL);
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_pktmbuf_free(elt->buf);
|
2017-10-12 14:19:38 +02:00
|
|
|
elt->buf = NULL;
|
2017-12-06 17:57:53 +00:00
|
|
|
elt->wqe = NULL;
|
2017-09-01 10:06:59 +02:00
|
|
|
}
|
2017-10-12 14:19:38 +02:00
|
|
|
txq->elts_tail = txq->elts_head;
|
2017-09-01 10:06:59 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 14:29:56 +02:00
|
|
|
/**
|
|
|
|
* Retrieves information needed in order to directly access the Tx queue.
|
|
|
|
*
|
|
|
|
* @param txq
|
|
|
|
* Pointer to Tx queue structure.
|
|
|
|
* @param mlxdv
|
|
|
|
* Pointer to device information for this Tx queue.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mlx4_txq_fill_dv_obj_info(struct txq *txq, struct mlx4dv_obj *mlxdv)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* Total length, including headroom and spare WQEs. */
|
2017-12-06 17:57:53 +00:00
|
|
|
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;
|
2018-05-16 18:20:54 +02:00
|
|
|
sq->owner_opcode = MLX4_OPCODE_SEND | (0u << MLX4_SQ_OWNER_BIT);
|
2017-12-06 17:57:53 +00:00
|
|
|
sq->stamp = rte_cpu_to_be_32(MLX4_SQ_STAMP_VAL |
|
2018-05-16 18:20:54 +02:00
|
|
|
(0u << MLX4_SQ_OWNER_BIT));
|
2019-04-01 14:15:53 -07:00
|
|
|
#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
|
2019-04-10 11:41:18 -07:00
|
|
|
sq->db = dqp->sdb;
|
2017-10-12 14:29:56 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-10 11:17:02 +02:00
|
|
|
/**
|
|
|
|
* Returns the per-port supported offloads.
|
|
|
|
*
|
|
|
|
* @param priv
|
|
|
|
* Pointer to private structure.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* Supported Tx offloads.
|
|
|
|
*/
|
|
|
|
uint64_t
|
2019-02-21 10:29:14 +01:00
|
|
|
mlx4_get_tx_port_offloads(struct mlx4_priv *priv)
|
2018-01-10 11:17:02 +02:00
|
|
|
{
|
|
|
|
uint64_t offloads = DEV_TX_OFFLOAD_MULTI_SEGS;
|
|
|
|
|
|
|
|
if (priv->hw_csum) {
|
|
|
|
offloads |= (DEV_TX_OFFLOAD_IPV4_CKSUM |
|
|
|
|
DEV_TX_OFFLOAD_UDP_CKSUM |
|
|
|
|
DEV_TX_OFFLOAD_TCP_CKSUM);
|
|
|
|
}
|
2018-07-10 13:45:54 +03:00
|
|
|
if (priv->tso)
|
|
|
|
offloads |= DEV_TX_OFFLOAD_TCP_TSO;
|
|
|
|
if (priv->hw_csum_l2tun) {
|
2018-01-10 11:17:02 +02:00
|
|
|
offloads |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
|
2018-07-10 13:45:54 +03:00
|
|
|
if (priv->tso)
|
|
|
|
offloads |= (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
|
|
|
|
DEV_TX_OFFLOAD_GRE_TNL_TSO);
|
|
|
|
}
|
2018-01-10 11:17:02 +02:00
|
|
|
return offloads;
|
|
|
|
}
|
|
|
|
|
2017-09-01 10:06:59 +02:00
|
|
|
/**
|
2017-10-12 14:19:37 +02:00
|
|
|
* DPDK callback to configure a Tx queue.
|
2017-09-01 10:06:59 +02:00
|
|
|
*
|
|
|
|
* @param dev
|
|
|
|
* Pointer to Ethernet device structure.
|
2017-10-12 14:19:37 +02:00
|
|
|
* @param idx
|
|
|
|
* Tx queue index.
|
2017-09-01 10:06:59 +02:00
|
|
|
* @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.
|
|
|
|
*/
|
2017-10-12 14:19:37 +02:00
|
|
|
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)
|
2017-09-01 10:06:59 +02:00
|
|
|
{
|
2019-02-21 10:29:14 +01:00
|
|
|
struct mlx4_priv *priv = dev->data->dev_private;
|
2017-10-12 14:29:56 +02:00
|
|
|
struct mlx4dv_obj mlxdv;
|
|
|
|
struct mlx4dv_qp dv_qp;
|
|
|
|
struct mlx4dv_cq dv_cq;
|
2017-12-06 17:57:55 +00:00
|
|
|
struct txq_elt (*elts)[rte_align32pow2(desc)];
|
2017-10-12 14:19:37 +02:00
|
|
|
struct ibv_qp_init_attr qp_init_attr;
|
|
|
|
struct txq *txq;
|
2017-10-12 14:29:56 +02:00
|
|
|
uint8_t *bounce_buf;
|
2017-10-12 14:19:38 +02:00
|
|
|
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,
|
|
|
|
},
|
2017-10-12 14:29:56 +02:00
|
|
|
{
|
|
|
|
.align = RTE_CACHE_LINE_SIZE,
|
|
|
|
.size = MLX4_MAX_WQE_SIZE,
|
|
|
|
.addr = (void **)&bounce_buf,
|
|
|
|
},
|
2017-10-12 14:19:38 +02:00
|
|
|
};
|
2017-09-01 10:06:59 +02:00
|
|
|
int ret;
|
2018-05-10 19:56:55 +08:00
|
|
|
uint64_t offloads;
|
|
|
|
|
|
|
|
offloads = conf->offloads | dev->data->dev_conf.txmode.offloads;
|
2017-10-12 14:19:37 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
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;
|
2017-09-01 10:06:59 +02:00
|
|
|
}
|
2017-10-12 14:19:37 +02:00
|
|
|
if (!desc) {
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_errno = EINVAL;
|
|
|
|
ERROR("%p: invalid number of Tx descriptors", (void *)dev);
|
2017-10-12 14:19:37 +02:00
|
|
|
return -rte_errno;
|
2017-09-01 10:06:59 +02:00
|
|
|
}
|
2017-12-06 17:57:55 +00:00
|
|
|
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);
|
|
|
|
}
|
2017-10-12 14:19:37 +02:00
|
|
|
/* Allocate and initialize Tx queue. */
|
2017-10-12 14:19:38 +02:00
|
|
|
mlx4_zmallocv_socket("TXQ", vec, RTE_DIM(vec), socket);
|
2017-10-12 14:19:37 +02:00
|
|
|
if (!txq) {
|
|
|
|
ERROR("%p: unable to allocate queue index %u",
|
|
|
|
(void *)dev, idx);
|
|
|
|
return -rte_errno;
|
|
|
|
}
|
|
|
|
*txq = (struct txq){
|
|
|
|
.priv = priv,
|
2019-04-10 11:41:18 -07:00
|
|
|
.port_id = dev->data->port_id,
|
2017-10-13 11:31:05 +02:00
|
|
|
.stats = {
|
|
|
|
.idx = idx,
|
|
|
|
},
|
2017-10-12 14:19:37 +02:00
|
|
|
.socket = socket,
|
2017-10-12 14:19:38 +02:00
|
|
|
.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),
|
2018-01-10 11:17:02 +02:00
|
|
|
.csum = priv->hw_csum &&
|
2018-05-10 19:56:55 +08:00
|
|
|
(offloads & (DEV_TX_OFFLOAD_IPV4_CKSUM |
|
2018-01-10 11:17:02 +02:00
|
|
|
DEV_TX_OFFLOAD_UDP_CKSUM |
|
|
|
|
DEV_TX_OFFLOAD_TCP_CKSUM)),
|
|
|
|
.csum_l2tun = priv->hw_csum_l2tun &&
|
2018-05-10 19:56:55 +08:00
|
|
|
(offloads &
|
2018-01-10 11:17:02 +02:00
|
|
|
DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM),
|
2017-10-12 14:30:00 +02:00
|
|
|
/* Enable Tx loopback for VF devices. */
|
|
|
|
.lb = !!priv->vf,
|
2017-10-12 14:29:56 +02:00
|
|
|
.bounce_buf = bounce_buf,
|
2017-10-12 14:19:37 +02:00
|
|
|
};
|
2019-04-01 14:15:52 -07:00
|
|
|
priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_TX_QUEUE;
|
|
|
|
priv->verbs_alloc_ctx.obj = txq;
|
2018-01-30 16:34:52 +01:00
|
|
|
txq->cq = mlx4_glue->create_cq(priv->ctx, desc, NULL, NULL, 0);
|
2017-10-12 14:19:37 +02:00
|
|
|
if (!txq->cq) {
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_errno = ENOMEM;
|
|
|
|
ERROR("%p: CQ creation failure: %s",
|
|
|
|
(void *)dev, strerror(rte_errno));
|
|
|
|
goto error;
|
|
|
|
}
|
2017-10-12 14:19:37 +02:00
|
|
|
qp_init_attr = (struct ibv_qp_init_attr){
|
|
|
|
.send_cq = txq->cq,
|
|
|
|
.recv_cq = txq->cq,
|
2017-09-01 10:06:59 +02:00
|
|
|
.cap = {
|
2017-10-12 14:19:37 +02:00
|
|
|
.max_send_wr =
|
|
|
|
RTE_MIN(priv->device_attr.max_qp_wr, desc),
|
2017-09-01 10:06:59 +02:00
|
|
|
.max_send_sge = 1,
|
|
|
|
.max_inline_data = MLX4_PMD_MAX_INLINE,
|
|
|
|
},
|
|
|
|
.qp_type = IBV_QPT_RAW_PACKET,
|
2017-10-12 14:19:37 +02:00
|
|
|
/* No completion events must occur by default. */
|
2017-09-01 10:06:59 +02:00
|
|
|
.sq_sig_all = 0,
|
|
|
|
};
|
2018-01-30 16:34:52 +01:00
|
|
|
txq->qp = mlx4_glue->create_qp(priv->pd, &qp_init_attr);
|
2017-10-12 14:19:37 +02:00
|
|
|
if (!txq->qp) {
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_errno = errno ? errno : EINVAL;
|
|
|
|
ERROR("%p: QP creation failure: %s",
|
|
|
|
(void *)dev, strerror(rte_errno));
|
|
|
|
goto error;
|
|
|
|
}
|
2017-10-12 14:19:37 +02:00
|
|
|
txq->max_inline = qp_init_attr.cap.max_inline_data;
|
2018-01-30 16:34:52 +01:00
|
|
|
ret = mlx4_glue->modify_qp
|
2017-10-12 14:19:37 +02:00
|
|
|
(txq->qp,
|
|
|
|
&(struct ibv_qp_attr){
|
|
|
|
.qp_state = IBV_QPS_INIT,
|
|
|
|
.port_num = priv->port,
|
|
|
|
},
|
|
|
|
IBV_QP_STATE | IBV_QP_PORT);
|
2017-09-01 10:06:59 +02:00
|
|
|
if (ret) {
|
|
|
|
rte_errno = ret;
|
|
|
|
ERROR("%p: QP state to IBV_QPS_INIT failed: %s",
|
|
|
|
(void *)dev, strerror(rte_errno));
|
|
|
|
goto error;
|
|
|
|
}
|
2018-01-30 16:34:52 +01:00
|
|
|
ret = mlx4_glue->modify_qp
|
2017-10-12 14:19:37 +02:00
|
|
|
(txq->qp,
|
|
|
|
&(struct ibv_qp_attr){
|
|
|
|
.qp_state = IBV_QPS_RTR,
|
|
|
|
},
|
|
|
|
IBV_QP_STATE);
|
2017-09-01 10:06:59 +02:00
|
|
|
if (ret) {
|
|
|
|
rte_errno = ret;
|
|
|
|
ERROR("%p: QP state to IBV_QPS_RTR failed: %s",
|
|
|
|
(void *)dev, strerror(rte_errno));
|
|
|
|
goto error;
|
|
|
|
}
|
2018-01-30 16:34:52 +01:00
|
|
|
ret = mlx4_glue->modify_qp
|
2017-10-12 14:19:37 +02:00
|
|
|
(txq->qp,
|
|
|
|
&(struct ibv_qp_attr){
|
|
|
|
.qp_state = IBV_QPS_RTS,
|
|
|
|
},
|
|
|
|
IBV_QP_STATE);
|
2017-09-01 10:06:59 +02:00
|
|
|
if (ret) {
|
|
|
|
rte_errno = ret;
|
|
|
|
ERROR("%p: QP state to IBV_QPS_RTS failed: %s",
|
|
|
|
(void *)dev, strerror(rte_errno));
|
|
|
|
goto error;
|
|
|
|
}
|
2017-10-12 14:29:56 +02:00
|
|
|
/* Retrieve device queue information. */
|
2019-04-01 14:15:53 -07:00
|
|
|
#ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
|
|
|
|
dv_qp = (struct mlx4dv_qp){
|
|
|
|
.comp_mask = MLX4DV_QP_MASK_UAR_MMAP_OFFSET,
|
|
|
|
};
|
|
|
|
#endif
|
2017-10-12 14:29:56 +02:00
|
|
|
mlxdv.cq.in = txq->cq;
|
|
|
|
mlxdv.cq.out = &dv_cq;
|
|
|
|
mlxdv.qp.in = txq->qp;
|
|
|
|
mlxdv.qp.out = &dv_qp;
|
2018-01-30 16:34:52 +01:00
|
|
|
ret = mlx4_glue->dv_init_obj(&mlxdv, MLX4DV_OBJ_QP | MLX4DV_OBJ_CQ);
|
2017-10-12 14:29:56 +02:00
|
|
|
if (ret) {
|
|
|
|
rte_errno = EINVAL;
|
|
|
|
ERROR("%p: failed to obtain information needed for"
|
|
|
|
" accessing the device queues", (void *)dev);
|
|
|
|
goto error;
|
|
|
|
}
|
2019-04-01 14:15:53 -07:00
|
|
|
#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
|
2017-10-12 14:29:56 +02:00
|
|
|
mlx4_txq_fill_dv_obj_info(txq, &mlxdv);
|
2019-04-10 11:41:18 -07:00
|
|
|
txq_uar_init(txq);
|
2017-12-06 17:57:53 +00:00
|
|
|
/* Save first wqe pointer in the first element. */
|
|
|
|
(&(*txq->elts)[0])->wqe =
|
|
|
|
(volatile struct mlx4_wqe_ctrl_seg *)txq->msq.buf;
|
net/mlx4: add new memory region support
This is the new design of Memory Region (MR) for mlx PMD, in order to:
- Accommodate the new memory hotplug model.
- Support non-contiguous Mempool.
There are multiple layers for MR search.
L0 is to look up the last-hit entry which is pointed by mr_ctrl->mru (Most
Recently Used). If L0 misses, L1 is to look up the address in a fixed-sized
array by linear search. L0/L1 is in an inline function -
mlx4_mr_lookup_cache().
If L1 misses, the bottom-half function is called to look up the address
from the bigger local cache of the queue. This is L2 - mlx4_mr_addr2mr_bh()
and it is not an inline function. Data structure for L2 is the Binary Tree.
If L2 misses, the search falls into the slowest path which takes locks in
order to access global device cache (priv->mr.cache) which is also a B-tree
and caches the original MR list (priv->mr.mr_list) of the device. Unless
the global cache is overflowed, it is all-inclusive of the MR list. This is
L3 - mlx4_mr_lookup_dev(). The size of the L3 cache table is limited and
can't be expanded on the fly due to deadlock. Refer to the comments in the
code for the details - mr_lookup_dev(). If L3 is overflowed, the list will
have to be searched directly bypassing the cache although it is slower.
If L3 misses, a new MR for the address should be created -
mlx4_mr_create(). When it creates a new MR, it tries to register adjacent
memsegs as much as possible which are virtually contiguous around the
address. This must take two locks - memory_hotplug_lock and
priv->mr.rwlock. Due to memory_hotplug_lock, there can't be any
allocation/free of memory inside.
In the free callback of the memory hotplug event, freed space is searched
from the MR list and corresponding bits are cleared from the bitmap of MRs.
This can fragment a MR and the MR will have multiple search entries in the
caches. Once there's a change by the event, the global cache must be
rebuilt and all the per-queue caches will be flushed as well. If memory is
frequently freed in run-time, that may cause jitter on dataplane processing
in the worst case by incurring MR cache flush and rebuild. But, it would be
the least probable scenario.
To guarantee the most optimal performance, it is highly recommended to use
an EAL option - '--socket-mem'. Then, the reserved memory will be pinned
and won't be freed dynamically. And it is also recommended to configure
per-lcore cache of Mempool. Even though there're many MRs for a device or
MRs are highly fragmented, the cache of Mempool will be much helpful to
reduce misses on per-queue caches anyway.
'--legacy-mem' is also supported.
Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
2018-05-09 04:09:06 -07:00
|
|
|
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;
|
2017-10-12 14:19:37 +02:00
|
|
|
DEBUG("%p: adding Tx queue %p to list", (void *)dev, (void *)txq);
|
|
|
|
dev->data->tx_queues[idx] = txq;
|
2019-04-01 14:15:52 -07:00
|
|
|
priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
|
2017-09-01 10:06:59 +02:00
|
|
|
return 0;
|
|
|
|
error:
|
2017-10-12 14:19:37 +02:00
|
|
|
dev->data->tx_queues[idx] = NULL;
|
2017-09-01 10:06:59 +02:00
|
|
|
ret = rte_errno;
|
2017-10-12 14:19:37 +02:00
|
|
|
mlx4_tx_queue_release(txq);
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_errno = ret;
|
2020-01-30 18:14:38 +02:00
|
|
|
MLX4_ASSERT(rte_errno > 0);
|
2019-04-01 14:15:52 -07:00
|
|
|
priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
|
2017-09-01 10:06:59 +02:00
|
|
|
return -rte_errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DPDK callback to release a Tx queue.
|
|
|
|
*
|
|
|
|
* @param dpdk_txq
|
|
|
|
* Generic Tx queue pointer.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mlx4_tx_queue_release(void *dpdk_txq)
|
|
|
|
{
|
|
|
|
struct txq *txq = (struct txq *)dpdk_txq;
|
2019-02-21 10:29:14 +01:00
|
|
|
struct mlx4_priv *priv;
|
2017-09-01 10:06:59 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (txq == NULL)
|
|
|
|
return;
|
|
|
|
priv = txq->priv;
|
2019-04-01 14:15:51 -07:00
|
|
|
for (i = 0; i != ETH_DEV(priv)->data->nb_tx_queues; ++i)
|
|
|
|
if (ETH_DEV(priv)->data->tx_queues[i] == txq) {
|
2017-09-01 10:06:59 +02:00
|
|
|
DEBUG("%p: removing Tx queue %p from list",
|
2019-04-01 14:15:51 -07:00
|
|
|
(void *)ETH_DEV(priv), (void *)txq);
|
|
|
|
ETH_DEV(priv)->data->tx_queues[i] = NULL;
|
2017-09-01 10:06:59 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-12 14:19:37 +02:00
|
|
|
mlx4_txq_free_elts(txq);
|
|
|
|
if (txq->qp)
|
2018-01-30 16:34:52 +01:00
|
|
|
claim_zero(mlx4_glue->destroy_qp(txq->qp));
|
2017-10-12 14:19:37 +02:00
|
|
|
if (txq->cq)
|
2018-01-30 16:34:52 +01:00
|
|
|
claim_zero(mlx4_glue->destroy_cq(txq->cq));
|
net/mlx4: add new memory region support
This is the new design of Memory Region (MR) for mlx PMD, in order to:
- Accommodate the new memory hotplug model.
- Support non-contiguous Mempool.
There are multiple layers for MR search.
L0 is to look up the last-hit entry which is pointed by mr_ctrl->mru (Most
Recently Used). If L0 misses, L1 is to look up the address in a fixed-sized
array by linear search. L0/L1 is in an inline function -
mlx4_mr_lookup_cache().
If L1 misses, the bottom-half function is called to look up the address
from the bigger local cache of the queue. This is L2 - mlx4_mr_addr2mr_bh()
and it is not an inline function. Data structure for L2 is the Binary Tree.
If L2 misses, the search falls into the slowest path which takes locks in
order to access global device cache (priv->mr.cache) which is also a B-tree
and caches the original MR list (priv->mr.mr_list) of the device. Unless
the global cache is overflowed, it is all-inclusive of the MR list. This is
L3 - mlx4_mr_lookup_dev(). The size of the L3 cache table is limited and
can't be expanded on the fly due to deadlock. Refer to the comments in the
code for the details - mr_lookup_dev(). If L3 is overflowed, the list will
have to be searched directly bypassing the cache although it is slower.
If L3 misses, a new MR for the address should be created -
mlx4_mr_create(). When it creates a new MR, it tries to register adjacent
memsegs as much as possible which are virtually contiguous around the
address. This must take two locks - memory_hotplug_lock and
priv->mr.rwlock. Due to memory_hotplug_lock, there can't be any
allocation/free of memory inside.
In the free callback of the memory hotplug event, freed space is searched
from the MR list and corresponding bits are cleared from the bitmap of MRs.
This can fragment a MR and the MR will have multiple search entries in the
caches. Once there's a change by the event, the global cache must be
rebuilt and all the per-queue caches will be flushed as well. If memory is
frequently freed in run-time, that may cause jitter on dataplane processing
in the worst case by incurring MR cache flush and rebuild. But, it would be
the least probable scenario.
To guarantee the most optimal performance, it is highly recommended to use
an EAL option - '--socket-mem'. Then, the reserved memory will be pinned
and won't be freed dynamically. And it is also recommended to configure
per-lcore cache of Mempool. Even though there're many MRs for a device or
MRs are highly fragmented, the cache of Mempool will be much helpful to
reduce misses on per-queue caches anyway.
'--legacy-mem' is also supported.
Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
2018-05-09 04:09:06 -07:00
|
|
|
mlx4_mr_btree_free(&txq->mr_ctrl.cache_bh);
|
2017-09-01 10:06:59 +02:00
|
|
|
rte_free(txq);
|
|
|
|
}
|