80be07001e
HW ptype are missing TUNNEL_GENEVE support
Fixes: e59a5dbcfd
("net/mlx5: add flow match on GENEVE item")
Signed-off-by: Wisam Jaddo <wisamm@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
704 lines
24 KiB
C
704 lines
24 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2015 6WIND S.A.
|
|
* Copyright 2015 Mellanox Technologies, Ltd
|
|
*/
|
|
|
|
#ifndef RTE_PMD_MLX5_RXTX_H_
|
|
#define RTE_PMD_MLX5_RXTX_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <sys/queue.h>
|
|
|
|
/* Verbs header. */
|
|
/* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
|
|
#ifdef PEDANTIC
|
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
|
#endif
|
|
#include <infiniband/verbs.h>
|
|
#include <infiniband/mlx5dv.h>
|
|
#ifdef PEDANTIC
|
|
#pragma GCC diagnostic error "-Wpedantic"
|
|
#endif
|
|
|
|
#include <rte_mbuf.h>
|
|
#include <rte_mempool.h>
|
|
#include <rte_common.h>
|
|
#include <rte_hexdump.h>
|
|
#include <rte_atomic.h>
|
|
#include <rte_spinlock.h>
|
|
#include <rte_io.h>
|
|
#include <rte_bus_pci.h>
|
|
#include <rte_malloc.h>
|
|
|
|
#include "mlx5_utils.h"
|
|
#include "mlx5.h"
|
|
#include "mlx5_mr.h"
|
|
#include "mlx5_autoconf.h"
|
|
#include "mlx5_defs.h"
|
|
#include "mlx5_prm.h"
|
|
#include "mlx5_glue.h"
|
|
|
|
/* Support tunnel matching. */
|
|
#define MLX5_FLOW_TUNNEL 9
|
|
|
|
struct mlx5_rxq_stats {
|
|
#ifdef MLX5_PMD_SOFT_COUNTERS
|
|
uint64_t ipackets; /**< Total of successfully received packets. */
|
|
uint64_t ibytes; /**< Total of successfully received bytes. */
|
|
#endif
|
|
uint64_t idropped; /**< Total of packets dropped when RX ring full. */
|
|
uint64_t rx_nombuf; /**< Total of RX mbuf allocation failures. */
|
|
};
|
|
|
|
struct mlx5_txq_stats {
|
|
#ifdef MLX5_PMD_SOFT_COUNTERS
|
|
uint64_t opackets; /**< Total of successfully sent packets. */
|
|
uint64_t obytes; /**< Total of successfully sent bytes. */
|
|
#endif
|
|
uint64_t oerrors; /**< Total number of failed transmitted packets. */
|
|
};
|
|
|
|
struct mlx5_priv;
|
|
|
|
/* Compressed CQE context. */
|
|
struct rxq_zip {
|
|
uint16_t ai; /* Array index. */
|
|
uint16_t ca; /* Current array index. */
|
|
uint16_t na; /* Next array index. */
|
|
uint16_t cq_ci; /* The next CQE. */
|
|
uint32_t cqe_cnt; /* Number of CQEs. */
|
|
};
|
|
|
|
/* Multi-Packet RQ buffer header. */
|
|
struct mlx5_mprq_buf {
|
|
struct rte_mempool *mp;
|
|
rte_atomic16_t refcnt; /* Atomically accessed refcnt. */
|
|
uint8_t pad[RTE_PKTMBUF_HEADROOM]; /* Headroom for the first packet. */
|
|
struct rte_mbuf_ext_shared_info shinfos[];
|
|
/*
|
|
* Shared information per stride.
|
|
* More memory will be allocated for the first stride head-room and for
|
|
* the strides data.
|
|
*/
|
|
} __rte_cache_aligned;
|
|
|
|
/* Get pointer to the first stride. */
|
|
#define mlx5_mprq_buf_addr(ptr, strd_n) (RTE_PTR_ADD((ptr), \
|
|
sizeof(struct mlx5_mprq_buf) + \
|
|
(strd_n) * \
|
|
sizeof(struct rte_mbuf_ext_shared_info) + \
|
|
RTE_PKTMBUF_HEADROOM))
|
|
|
|
#define MLX5_MIN_SINGLE_STRIDE_LOG_NUM_BYTES 6
|
|
#define MLX5_MIN_SINGLE_WQE_LOG_NUM_STRIDES 9
|
|
|
|
enum mlx5_rxq_err_state {
|
|
MLX5_RXQ_ERR_STATE_NO_ERROR = 0,
|
|
MLX5_RXQ_ERR_STATE_NEED_RESET,
|
|
MLX5_RXQ_ERR_STATE_NEED_READY,
|
|
};
|
|
|
|
/* RX queue descriptor. */
|
|
struct mlx5_rxq_data {
|
|
unsigned int csum:1; /* Enable checksum offloading. */
|
|
unsigned int hw_timestamp:1; /* Enable HW timestamp. */
|
|
unsigned int vlan_strip:1; /* Enable VLAN stripping. */
|
|
unsigned int crc_present:1; /* CRC must be subtracted. */
|
|
unsigned int sges_n:3; /* Log 2 of SGEs (max buffers per packet). */
|
|
unsigned int cqe_n:4; /* Log 2 of CQ elements. */
|
|
unsigned int elts_n:4; /* Log 2 of Mbufs. */
|
|
unsigned int rss_hash:1; /* RSS hash result is enabled. */
|
|
unsigned int mark:1; /* Marked flow available on the queue. */
|
|
unsigned int strd_num_n:5; /* Log 2 of the number of stride. */
|
|
unsigned int strd_sz_n:4; /* Log 2 of stride size. */
|
|
unsigned int strd_shift_en:1; /* Enable 2bytes shift on a stride. */
|
|
unsigned int err_state:2; /* enum mlx5_rxq_err_state. */
|
|
unsigned int strd_headroom_en:1; /* Enable mbuf headroom in MPRQ. */
|
|
unsigned int lro:1; /* Enable LRO. */
|
|
unsigned int :1; /* Remaining bits. */
|
|
volatile uint32_t *rq_db;
|
|
volatile uint32_t *cq_db;
|
|
uint16_t port_id;
|
|
uint32_t rq_ci;
|
|
uint16_t consumed_strd; /* Number of consumed strides in WQE. */
|
|
uint32_t rq_pi;
|
|
uint32_t cq_ci;
|
|
uint16_t rq_repl_thresh; /* Threshold for buffer replenishment. */
|
|
union {
|
|
struct rxq_zip zip; /* Compressed context. */
|
|
uint16_t decompressed;
|
|
/* Number of ready mbufs decompressed from the CQ. */
|
|
};
|
|
struct mlx5_mr_ctrl mr_ctrl; /* MR control descriptor. */
|
|
uint16_t mprq_max_memcpy_len; /* Maximum size of packet to memcpy. */
|
|
volatile void *wqes;
|
|
volatile struct mlx5_cqe(*cqes)[];
|
|
RTE_STD_C11
|
|
union {
|
|
struct rte_mbuf *(*elts)[];
|
|
struct mlx5_mprq_buf *(*mprq_bufs)[];
|
|
};
|
|
struct rte_mempool *mp;
|
|
struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
|
|
struct mlx5_mprq_buf *mprq_repl; /* Stashed mbuf for replenish. */
|
|
uint16_t idx; /* Queue index. */
|
|
struct mlx5_rxq_stats stats;
|
|
uint64_t mbuf_initializer; /* Default rearm_data for vectorized Rx. */
|
|
struct rte_mbuf fake_mbuf; /* elts padding for vectorized Rx. */
|
|
void *cq_uar; /* CQ user access region. */
|
|
uint32_t cqn; /* CQ number. */
|
|
uint8_t cq_arm_sn; /* CQ arm seq number. */
|
|
#ifndef RTE_ARCH_64
|
|
rte_spinlock_t *uar_lock_cq;
|
|
/* CQ (UAR) access lock required for 32bit implementations */
|
|
#endif
|
|
uint32_t tunnel; /* Tunnel information. */
|
|
} __rte_cache_aligned;
|
|
|
|
enum mlx5_rxq_obj_type {
|
|
MLX5_RXQ_OBJ_TYPE_IBV, /* mlx5_rxq_obj with ibv_wq. */
|
|
MLX5_RXQ_OBJ_TYPE_DEVX_RQ, /* mlx5_rxq_obj with mlx5_devx_rq. */
|
|
MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN,
|
|
/* mlx5_rxq_obj with mlx5_devx_rq and hairpin support. */
|
|
};
|
|
|
|
enum mlx5_rxq_type {
|
|
MLX5_RXQ_TYPE_STANDARD, /* Standard Rx queue. */
|
|
MLX5_RXQ_TYPE_HAIRPIN, /* Hairpin Rx queue. */
|
|
MLX5_RXQ_TYPE_UNDEFINED,
|
|
};
|
|
|
|
/* Verbs/DevX Rx queue elements. */
|
|
struct mlx5_rxq_obj {
|
|
LIST_ENTRY(mlx5_rxq_obj) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
|
|
struct ibv_cq *cq; /* Completion Queue. */
|
|
enum mlx5_rxq_obj_type type;
|
|
RTE_STD_C11
|
|
union {
|
|
struct ibv_wq *wq; /* Work Queue. */
|
|
struct mlx5_devx_obj *rq; /* DevX object for Rx Queue. */
|
|
};
|
|
struct ibv_comp_channel *channel;
|
|
};
|
|
|
|
/* RX queue control descriptor. */
|
|
struct mlx5_rxq_ctrl {
|
|
struct mlx5_rxq_data rxq; /* Data path structure. */
|
|
LIST_ENTRY(mlx5_rxq_ctrl) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
struct mlx5_rxq_obj *obj; /* Verbs/DevX elements. */
|
|
struct mlx5_priv *priv; /* Back pointer to private data. */
|
|
enum mlx5_rxq_type type; /* Rxq type. */
|
|
unsigned int socket; /* CPU socket ID for allocations. */
|
|
unsigned int irq:1; /* Whether IRQ is enabled. */
|
|
unsigned int dbr_umem_id_valid:1; /* dbr_umem_id holds a valid value. */
|
|
uint32_t flow_mark_n; /* Number of Mark/Flag flows using this Queue. */
|
|
uint32_t flow_tunnels_n[MLX5_FLOW_TUNNEL]; /* Tunnels counters. */
|
|
uint32_t wqn; /* WQ number. */
|
|
uint16_t dump_file_n; /* Number of dump files. */
|
|
uint32_t dbr_umem_id; /* Storing door-bell information, */
|
|
uint64_t dbr_offset; /* needed when freeing door-bell. */
|
|
struct mlx5dv_devx_umem *wq_umem; /* WQ buffer registration info. */
|
|
struct rte_eth_hairpin_conf hairpin_conf; /* Hairpin configuration. */
|
|
};
|
|
|
|
enum mlx5_ind_tbl_type {
|
|
MLX5_IND_TBL_TYPE_IBV,
|
|
MLX5_IND_TBL_TYPE_DEVX,
|
|
};
|
|
|
|
/* Indirection table. */
|
|
struct mlx5_ind_table_obj {
|
|
LIST_ENTRY(mlx5_ind_table_obj) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
enum mlx5_ind_tbl_type type;
|
|
RTE_STD_C11
|
|
union {
|
|
struct ibv_rwq_ind_table *ind_table; /**< Indirection table. */
|
|
struct mlx5_devx_obj *rqt; /* DevX RQT object. */
|
|
};
|
|
uint32_t queues_n; /**< Number of queues in the list. */
|
|
uint16_t queues[]; /**< Queue list. */
|
|
};
|
|
|
|
/* Hash Rx queue. */
|
|
struct mlx5_hrxq {
|
|
LIST_ENTRY(mlx5_hrxq) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
struct mlx5_ind_table_obj *ind_table; /* Indirection table. */
|
|
RTE_STD_C11
|
|
union {
|
|
struct ibv_qp *qp; /* Verbs queue pair. */
|
|
struct mlx5_devx_obj *tir; /* DevX TIR object. */
|
|
};
|
|
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
|
|
void *action; /* DV QP action pointer. */
|
|
#endif
|
|
uint64_t hash_fields; /* Verbs Hash fields. */
|
|
uint32_t rss_key_len; /* Hash key length in bytes. */
|
|
uint8_t rss_key[]; /* Hash key. */
|
|
};
|
|
|
|
/* TX queue send local data. */
|
|
__extension__
|
|
struct mlx5_txq_local {
|
|
struct mlx5_wqe *wqe_last; /* last sent WQE pointer. */
|
|
struct rte_mbuf *mbuf; /* first mbuf to process. */
|
|
uint16_t pkts_copy; /* packets copied to elts. */
|
|
uint16_t pkts_sent; /* packets sent. */
|
|
uint16_t pkts_loop; /* packets sent on loop entry. */
|
|
uint16_t elts_free; /* available elts remain. */
|
|
uint16_t wqe_free; /* available wqe remain. */
|
|
uint16_t mbuf_off; /* data offset in current mbuf. */
|
|
uint16_t mbuf_nseg; /* number of remaining mbuf. */
|
|
};
|
|
|
|
/* TX queue descriptor. */
|
|
__extension__
|
|
struct mlx5_txq_data {
|
|
uint16_t elts_head; /* Current counter in (*elts)[]. */
|
|
uint16_t elts_tail; /* Counter of first element awaiting completion. */
|
|
uint16_t elts_comp; /* elts index since last completion request. */
|
|
uint16_t elts_s; /* Number of mbuf elements. */
|
|
uint16_t elts_m; /* Mask for mbuf elements indices. */
|
|
/* Fields related to elts mbuf storage. */
|
|
uint16_t wqe_ci; /* Consumer index for work queue. */
|
|
uint16_t wqe_pi; /* Producer index for work queue. */
|
|
uint16_t wqe_s; /* Number of WQ elements. */
|
|
uint16_t wqe_m; /* Mask Number for WQ elements. */
|
|
uint16_t wqe_comp; /* WQE index since last completion request. */
|
|
uint16_t wqe_thres; /* WQE threshold to request completion in CQ. */
|
|
/* WQ related fields. */
|
|
uint16_t cq_ci; /* Consumer index for completion queue. */
|
|
#ifndef NDEBUG
|
|
uint16_t cq_pi; /* Counter of issued CQE "always" requests. */
|
|
#endif
|
|
uint16_t cqe_s; /* Number of CQ elements. */
|
|
uint16_t cqe_m; /* Mask for CQ indices. */
|
|
/* CQ related fields. */
|
|
uint16_t elts_n:4; /* elts[] length (in log2). */
|
|
uint16_t cqe_n:4; /* Number of CQ elements (in log2). */
|
|
uint16_t wqe_n:4; /* Number of WQ elements (in log2). */
|
|
uint16_t tso_en:1; /* When set hardware TSO is enabled. */
|
|
uint16_t tunnel_en:1;
|
|
/* When set TX offload for tunneled packets are supported. */
|
|
uint16_t swp_en:1; /* Whether SW parser is enabled. */
|
|
uint16_t vlan_en:1; /* VLAN insertion in WQE is supported. */
|
|
uint16_t inlen_send; /* Ordinary send data inline size. */
|
|
uint16_t inlen_empw; /* eMPW max packet size to inline. */
|
|
uint16_t inlen_mode; /* Minimal data length to inline. */
|
|
uint32_t qp_num_8s; /* QP number shifted by 8. */
|
|
uint64_t offloads; /* Offloads for Tx Queue. */
|
|
struct mlx5_mr_ctrl mr_ctrl; /* MR control descriptor. */
|
|
struct mlx5_wqe *wqes; /* Work queue. */
|
|
struct mlx5_wqe *wqes_end; /* Work queue array limit. */
|
|
volatile struct mlx5_cqe *cqes; /* Completion queue. */
|
|
volatile uint32_t *qp_db; /* Work queue doorbell. */
|
|
volatile uint32_t *cq_db; /* Completion queue doorbell. */
|
|
uint16_t port_id; /* Port ID of device. */
|
|
uint16_t idx; /* Queue index. */
|
|
struct mlx5_txq_stats stats; /* TX queue counters. */
|
|
#ifndef RTE_ARCH_64
|
|
rte_spinlock_t *uar_lock;
|
|
/* UAR access lock required for 32bit implementations */
|
|
#endif
|
|
struct rte_mbuf *elts[0];
|
|
/* Storage for queued packets, must be the last field. */
|
|
} __rte_cache_aligned;
|
|
|
|
enum mlx5_txq_obj_type {
|
|
MLX5_TXQ_OBJ_TYPE_IBV, /* mlx5_txq_obj with ibv_wq. */
|
|
MLX5_TXQ_OBJ_TYPE_DEVX_HAIRPIN,
|
|
/* mlx5_txq_obj with mlx5_devx_tq and hairpin support. */
|
|
};
|
|
|
|
enum mlx5_txq_type {
|
|
MLX5_TXQ_TYPE_STANDARD, /* Standard Tx queue. */
|
|
MLX5_TXQ_TYPE_HAIRPIN, /* Hairpin Rx queue. */
|
|
};
|
|
|
|
/* Verbs/DevX Tx queue elements. */
|
|
struct mlx5_txq_obj {
|
|
LIST_ENTRY(mlx5_txq_obj) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */
|
|
enum mlx5_txq_obj_type type; /* The txq object type. */
|
|
RTE_STD_C11
|
|
union {
|
|
struct {
|
|
struct ibv_cq *cq; /* Completion Queue. */
|
|
struct ibv_qp *qp; /* Queue Pair. */
|
|
};
|
|
struct {
|
|
struct mlx5_devx_obj *sq;
|
|
/* DevX object for Sx queue. */
|
|
struct mlx5_devx_obj *tis; /* The TIS object. */
|
|
};
|
|
};
|
|
};
|
|
|
|
/* TX queue control descriptor. */
|
|
struct mlx5_txq_ctrl {
|
|
LIST_ENTRY(mlx5_txq_ctrl) next; /* Pointer to the next element. */
|
|
rte_atomic32_t refcnt; /* Reference counter. */
|
|
unsigned int socket; /* CPU socket ID for allocations. */
|
|
enum mlx5_txq_type type; /* The txq ctrl type. */
|
|
unsigned int max_inline_data; /* Max inline data. */
|
|
unsigned int max_tso_header; /* Max TSO header size. */
|
|
struct mlx5_txq_obj *obj; /* Verbs/DevX queue object. */
|
|
struct mlx5_priv *priv; /* Back pointer to private data. */
|
|
off_t uar_mmap_offset; /* UAR mmap offset for non-primary process. */
|
|
void *bf_reg; /* BlueFlame register from Verbs. */
|
|
uint16_t dump_file_n; /* Number of dump files. */
|
|
struct rte_eth_hairpin_conf hairpin_conf; /* Hairpin configuration. */
|
|
struct mlx5_txq_data txq; /* Data path structure. */
|
|
/* Must be the last field in the structure, contains elts[]. */
|
|
};
|
|
|
|
#define MLX5_TX_BFREG(txq) \
|
|
(MLX5_PROC_PRIV((txq)->port_id)->uar_table[(txq)->idx])
|
|
|
|
/* mlx5_rxq.c */
|
|
|
|
extern uint8_t rss_hash_default_key[];
|
|
|
|
int mlx5_check_mprq_support(struct rte_eth_dev *dev);
|
|
int mlx5_rxq_mprq_enabled(struct mlx5_rxq_data *rxq);
|
|
int mlx5_mprq_enabled(struct rte_eth_dev *dev);
|
|
int mlx5_mprq_free_mp(struct rte_eth_dev *dev);
|
|
int mlx5_mprq_alloc_mp(struct rte_eth_dev *dev);
|
|
int mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
unsigned int socket, const struct rte_eth_rxconf *conf,
|
|
struct rte_mempool *mp);
|
|
int mlx5_rx_hairpin_queue_setup
|
|
(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
const struct rte_eth_hairpin_conf *hairpin_conf);
|
|
void mlx5_rx_queue_release(void *dpdk_rxq);
|
|
int mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev);
|
|
void mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev);
|
|
int mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
|
|
int mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
|
|
struct mlx5_rxq_obj *mlx5_rxq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
|
|
enum mlx5_rxq_obj_type type);
|
|
int mlx5_rxq_obj_verify(struct rte_eth_dev *dev);
|
|
struct mlx5_rxq_ctrl *mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx,
|
|
uint16_t desc, unsigned int socket,
|
|
const struct rte_eth_rxconf *conf,
|
|
struct rte_mempool *mp);
|
|
struct mlx5_rxq_ctrl *mlx5_rxq_hairpin_new
|
|
(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
const struct rte_eth_hairpin_conf *hairpin_conf);
|
|
struct mlx5_rxq_ctrl *mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_rxq_verify(struct rte_eth_dev *dev);
|
|
int rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl);
|
|
int mlx5_ind_table_obj_verify(struct rte_eth_dev *dev);
|
|
struct mlx5_hrxq *mlx5_hrxq_new(struct rte_eth_dev *dev,
|
|
const uint8_t *rss_key, uint32_t rss_key_len,
|
|
uint64_t hash_fields,
|
|
const uint16_t *queues, uint32_t queues_n,
|
|
int tunnel __rte_unused);
|
|
struct mlx5_hrxq *mlx5_hrxq_get(struct rte_eth_dev *dev,
|
|
const uint8_t *rss_key, uint32_t rss_key_len,
|
|
uint64_t hash_fields,
|
|
const uint16_t *queues, uint32_t queues_n);
|
|
int mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hxrq);
|
|
int mlx5_hrxq_verify(struct rte_eth_dev *dev);
|
|
enum mlx5_rxq_type mlx5_rxq_get_type(struct rte_eth_dev *dev, uint16_t idx);
|
|
struct mlx5_hrxq *mlx5_hrxq_drop_new(struct rte_eth_dev *dev);
|
|
void mlx5_hrxq_drop_release(struct rte_eth_dev *dev);
|
|
uint64_t mlx5_get_rx_port_offloads(void);
|
|
uint64_t mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev);
|
|
|
|
/* mlx5_txq.c */
|
|
|
|
int mlx5_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
unsigned int socket, const struct rte_eth_txconf *conf);
|
|
int mlx5_tx_hairpin_queue_setup
|
|
(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
const struct rte_eth_hairpin_conf *hairpin_conf);
|
|
void mlx5_tx_queue_release(void *dpdk_txq);
|
|
int mlx5_tx_uar_init_secondary(struct rte_eth_dev *dev, int fd);
|
|
struct mlx5_txq_obj *mlx5_txq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
|
|
enum mlx5_txq_obj_type type);
|
|
struct mlx5_txq_obj *mlx5_txq_obj_get(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_txq_obj_release(struct mlx5_txq_obj *txq_ibv);
|
|
int mlx5_txq_obj_verify(struct rte_eth_dev *dev);
|
|
struct mlx5_txq_ctrl *mlx5_txq_new(struct rte_eth_dev *dev, uint16_t idx,
|
|
uint16_t desc, unsigned int socket,
|
|
const struct rte_eth_txconf *conf);
|
|
struct mlx5_txq_ctrl *mlx5_txq_hairpin_new
|
|
(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
|
|
const struct rte_eth_hairpin_conf *hairpin_conf);
|
|
struct mlx5_txq_ctrl *mlx5_txq_get(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_txq_release(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_txq_releasable(struct rte_eth_dev *dev, uint16_t idx);
|
|
int mlx5_txq_verify(struct rte_eth_dev *dev);
|
|
void txq_alloc_elts(struct mlx5_txq_ctrl *txq_ctrl);
|
|
uint64_t mlx5_get_tx_port_offloads(struct rte_eth_dev *dev);
|
|
|
|
/* mlx5_rxtx.c */
|
|
|
|
extern uint32_t mlx5_ptype_table[];
|
|
extern uint8_t mlx5_cksum_table[];
|
|
extern uint8_t mlx5_swp_types_table[];
|
|
|
|
void mlx5_set_ptype_table(void);
|
|
void mlx5_set_cksum_table(void);
|
|
void mlx5_set_swp_types_table(void);
|
|
__rte_noinline int mlx5_tx_error_cqe_handle
|
|
(struct mlx5_txq_data *restrict txq,
|
|
volatile struct mlx5_err_cqe *err_cqe);
|
|
uint16_t mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n);
|
|
void mlx5_rxq_initialize(struct mlx5_rxq_data *rxq);
|
|
__rte_noinline int mlx5_rx_err_handle(struct mlx5_rxq_data *rxq, uint8_t vec);
|
|
void mlx5_mprq_buf_free_cb(void *addr, void *opaque);
|
|
void mlx5_mprq_buf_free(struct mlx5_mprq_buf *buf);
|
|
uint16_t mlx5_rx_burst_mprq(void *dpdk_rxq, struct rte_mbuf **pkts,
|
|
uint16_t pkts_n);
|
|
uint16_t removed_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts,
|
|
uint16_t pkts_n);
|
|
uint16_t removed_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts,
|
|
uint16_t pkts_n);
|
|
int mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset);
|
|
int mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset);
|
|
uint32_t mlx5_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id);
|
|
void mlx5_dump_debug_information(const char *path, const char *title,
|
|
const void *buf, unsigned int len);
|
|
int mlx5_queue_state_modify_primary(struct rte_eth_dev *dev,
|
|
const struct mlx5_mp_arg_queue_state_modify *sm);
|
|
|
|
/* Vectorized version of mlx5_rxtx.c */
|
|
int mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq_data);
|
|
int mlx5_check_vec_rx_support(struct rte_eth_dev *dev);
|
|
uint16_t mlx5_rx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts,
|
|
uint16_t pkts_n);
|
|
|
|
/* mlx5_mr.c */
|
|
|
|
void mlx5_mr_flush_local_cache(struct mlx5_mr_ctrl *mr_ctrl);
|
|
uint32_t mlx5_rx_addr2mr_bh(struct mlx5_rxq_data *rxq, uintptr_t addr);
|
|
uint32_t mlx5_tx_mb2mr_bh(struct mlx5_txq_data *txq, struct rte_mbuf *mb);
|
|
uint32_t mlx5_tx_update_ext_mp(struct mlx5_txq_data *txq, uintptr_t addr,
|
|
struct rte_mempool *mp);
|
|
int mlx5_dma_map(struct rte_pci_device *pdev, void *addr, uint64_t iova,
|
|
size_t len);
|
|
int mlx5_dma_unmap(struct rte_pci_device *pdev, void *addr, uint64_t iova,
|
|
size_t len);
|
|
|
|
/**
|
|
* Provide safe 64bit store operation to mlx5 UAR region for both 32bit and
|
|
* 64bit architectures.
|
|
*
|
|
* @param val
|
|
* value to write in CPU endian format.
|
|
* @param addr
|
|
* Address to write to.
|
|
* @param lock
|
|
* Address of the lock to use for that UAR access.
|
|
*/
|
|
static __rte_always_inline void
|
|
__mlx5_uar_write64_relaxed(uint64_t val, void *addr,
|
|
rte_spinlock_t *lock __rte_unused)
|
|
{
|
|
#ifdef RTE_ARCH_64
|
|
*(uint64_t *)addr = val;
|
|
#else /* !RTE_ARCH_64 */
|
|
rte_spinlock_lock(lock);
|
|
*(uint32_t *)addr = val;
|
|
rte_io_wmb();
|
|
*((uint32_t *)addr + 1) = val >> 32;
|
|
rte_spinlock_unlock(lock);
|
|
#endif
|
|
}
|
|
|
|
/**
|
|
* Provide safe 64bit store operation to mlx5 UAR region for both 32bit and
|
|
* 64bit architectures while guaranteeing the order of execution with the
|
|
* code being executed.
|
|
*
|
|
* @param val
|
|
* value to write in CPU endian format.
|
|
* @param addr
|
|
* Address to write to.
|
|
* @param lock
|
|
* Address of the lock to use for that UAR access.
|
|
*/
|
|
static __rte_always_inline void
|
|
__mlx5_uar_write64(uint64_t val, void *addr, rte_spinlock_t *lock)
|
|
{
|
|
rte_io_wmb();
|
|
__mlx5_uar_write64_relaxed(val, addr, lock);
|
|
}
|
|
|
|
/* Assist macros, used instead of directly calling the functions they wrap. */
|
|
#ifdef RTE_ARCH_64
|
|
#define mlx5_uar_write64_relaxed(val, dst, lock) \
|
|
__mlx5_uar_write64_relaxed(val, dst, NULL)
|
|
#define mlx5_uar_write64(val, dst, lock) __mlx5_uar_write64(val, dst, NULL)
|
|
#else
|
|
#define mlx5_uar_write64_relaxed(val, dst, lock) \
|
|
__mlx5_uar_write64_relaxed(val, dst, lock)
|
|
#define mlx5_uar_write64(val, dst, lock) __mlx5_uar_write64(val, dst, lock)
|
|
#endif
|
|
|
|
/* CQE status. */
|
|
enum mlx5_cqe_status {
|
|
MLX5_CQE_STATUS_SW_OWN = -1,
|
|
MLX5_CQE_STATUS_HW_OWN = -2,
|
|
MLX5_CQE_STATUS_ERR = -3,
|
|
};
|
|
|
|
/**
|
|
* Check whether CQE is valid.
|
|
*
|
|
* @param cqe
|
|
* Pointer to CQE.
|
|
* @param cqes_n
|
|
* Size of completion queue.
|
|
* @param ci
|
|
* Consumer index.
|
|
*
|
|
* @return
|
|
* The CQE status.
|
|
*/
|
|
static __rte_always_inline enum mlx5_cqe_status
|
|
check_cqe(volatile struct mlx5_cqe *cqe, const uint16_t cqes_n,
|
|
const uint16_t ci)
|
|
{
|
|
const uint16_t idx = ci & cqes_n;
|
|
const uint8_t op_own = cqe->op_own;
|
|
const uint8_t op_owner = MLX5_CQE_OWNER(op_own);
|
|
const uint8_t op_code = MLX5_CQE_OPCODE(op_own);
|
|
|
|
if (unlikely((op_owner != (!!(idx))) || (op_code == MLX5_CQE_INVALID)))
|
|
return MLX5_CQE_STATUS_HW_OWN;
|
|
rte_cio_rmb();
|
|
if (unlikely(op_code == MLX5_CQE_RESP_ERR ||
|
|
op_code == MLX5_CQE_REQ_ERR))
|
|
return MLX5_CQE_STATUS_ERR;
|
|
return MLX5_CQE_STATUS_SW_OWN;
|
|
}
|
|
|
|
/**
|
|
* Get Memory Pool (MP) from mbuf. If mbuf is indirect, the pool from which the
|
|
* cloned mbuf is allocated is returned instead.
|
|
*
|
|
* @param buf
|
|
* Pointer to mbuf.
|
|
*
|
|
* @return
|
|
* Memory pool where data is located for given mbuf.
|
|
*/
|
|
static inline struct rte_mempool *
|
|
mlx5_mb2mp(struct rte_mbuf *buf)
|
|
{
|
|
if (unlikely(RTE_MBUF_CLONED(buf)))
|
|
return rte_mbuf_from_indirect(buf)->pool;
|
|
return buf->pool;
|
|
}
|
|
|
|
/**
|
|
* Query LKey from a packet buffer for Rx. No need to flush local caches for Rx
|
|
* as mempool is pre-configured and static.
|
|
*
|
|
* @param rxq
|
|
* Pointer to Rx queue structure.
|
|
* @param addr
|
|
* Address to search.
|
|
*
|
|
* @return
|
|
* Searched LKey on success, UINT32_MAX on no match.
|
|
*/
|
|
static __rte_always_inline uint32_t
|
|
mlx5_rx_addr2mr(struct mlx5_rxq_data *rxq, uintptr_t addr)
|
|
{
|
|
struct mlx5_mr_ctrl *mr_ctrl = &rxq->mr_ctrl;
|
|
uint32_t lkey;
|
|
|
|
/* Linear search on MR cache array. */
|
|
lkey = mlx5_mr_lookup_cache(mr_ctrl->cache, &mr_ctrl->mru,
|
|
MLX5_MR_CACHE_N, addr);
|
|
if (likely(lkey != UINT32_MAX))
|
|
return lkey;
|
|
/* Take slower bottom-half (Binary Search) on miss. */
|
|
return mlx5_rx_addr2mr_bh(rxq, addr);
|
|
}
|
|
|
|
#define mlx5_rx_mb2mr(rxq, mb) mlx5_rx_addr2mr(rxq, (uintptr_t)((mb)->buf_addr))
|
|
|
|
/**
|
|
* Query LKey from a packet buffer for Tx. If not found, add the mempool.
|
|
*
|
|
* @param txq
|
|
* Pointer to Tx queue structure.
|
|
* @param addr
|
|
* Address to search.
|
|
*
|
|
* @return
|
|
* Searched LKey on success, UINT32_MAX on no match.
|
|
*/
|
|
static __rte_always_inline uint32_t
|
|
mlx5_tx_mb2mr(struct mlx5_txq_data *txq, struct rte_mbuf *mb)
|
|
{
|
|
struct mlx5_mr_ctrl *mr_ctrl = &txq->mr_ctrl;
|
|
uintptr_t addr = (uintptr_t)mb->buf_addr;
|
|
uint32_t lkey;
|
|
|
|
/* Check generation bit to see if there's any change on existing MRs. */
|
|
if (unlikely(*mr_ctrl->dev_gen_ptr != mr_ctrl->cur_gen))
|
|
mlx5_mr_flush_local_cache(mr_ctrl);
|
|
/* Linear search on MR cache array. */
|
|
lkey = mlx5_mr_lookup_cache(mr_ctrl->cache, &mr_ctrl->mru,
|
|
MLX5_MR_CACHE_N, addr);
|
|
if (likely(lkey != UINT32_MAX))
|
|
return lkey;
|
|
/* Take slower bottom-half on miss. */
|
|
return mlx5_tx_mb2mr_bh(txq, mb);
|
|
}
|
|
|
|
/**
|
|
* Ring TX queue doorbell and flush the update if requested.
|
|
*
|
|
* @param txq
|
|
* Pointer to TX queue structure.
|
|
* @param wqe
|
|
* Pointer to the last WQE posted in the NIC.
|
|
* @param cond
|
|
* Request for write memory barrier after BlueFlame update.
|
|
*/
|
|
static __rte_always_inline void
|
|
mlx5_tx_dbrec_cond_wmb(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe,
|
|
int cond)
|
|
{
|
|
uint64_t *dst = MLX5_TX_BFREG(txq);
|
|
volatile uint64_t *src = ((volatile uint64_t *)wqe);
|
|
|
|
rte_cio_wmb();
|
|
*txq->qp_db = rte_cpu_to_be_32(txq->wqe_ci);
|
|
/* Ensure ordering between DB record and BF copy. */
|
|
rte_wmb();
|
|
mlx5_uar_write64_relaxed(*src, dst, txq->uar_lock);
|
|
if (cond)
|
|
rte_wmb();
|
|
}
|
|
|
|
/**
|
|
* Ring TX queue doorbell and flush the update by write memory barrier.
|
|
*
|
|
* @param txq
|
|
* Pointer to TX queue structure.
|
|
* @param wqe
|
|
* Pointer to the last WQE posted in the NIC.
|
|
*/
|
|
static __rte_always_inline void
|
|
mlx5_tx_dbrec(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe)
|
|
{
|
|
mlx5_tx_dbrec_cond_wmb(txq, wqe, 1);
|
|
}
|
|
|
|
#endif /* RTE_PMD_MLX5_RXTX_H_ */
|