1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2017 6WIND S.A.
3 * Copyright 2017 Mellanox Technologies, Ltd
12 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
14 #pragma GCC diagnostic ignored "-Wpedantic"
16 #include <infiniband/verbs.h>
17 #include <infiniband/mlx5dv.h>
19 #pragma GCC diagnostic error "-Wpedantic"
23 #include <rte_mempool.h>
24 #include <rte_prefetch.h>
27 #include "mlx5_utils.h"
28 #include "mlx5_rxtx.h"
29 #include "mlx5_rxtx_vec.h"
30 #include "mlx5_autoconf.h"
31 #include "mlx5_defs.h"
34 #if defined RTE_ARCH_X86_64
35 #include "mlx5_rxtx_vec_sse.h"
36 #elif defined RTE_ARCH_ARM64
37 #include "mlx5_rxtx_vec_neon.h"
39 #error "This should not be compiled if SIMD instructions are not supported."
46 * Pointer to RX queue structure.
48 * Array to store received packets.
50 * Maximum number of packets in array.
53 * Number of packets successfully received (<= pkts_n).
56 rxq_handle_pending_error(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts,
61 #ifdef MLX5_PMD_SOFT_COUNTERS
62 uint32_t err_bytes = 0;
65 for (i = 0; i < pkts_n; ++i) {
66 struct rte_mbuf *pkt = pkts[i];
68 if (pkt->packet_type == RTE_PTYPE_ALL_MASK || rxq->err_state) {
69 #ifdef MLX5_PMD_SOFT_COUNTERS
70 err_bytes += PKT_LEN(pkt);
72 rte_pktmbuf_free_seg(pkt);
77 rxq->stats.idropped += (pkts_n - n);
78 #ifdef MLX5_PMD_SOFT_COUNTERS
79 /* Correct counters of errored completions. */
80 rxq->stats.ipackets -= (pkts_n - n);
81 rxq->stats.ibytes -= err_bytes;
83 mlx5_rx_err_handle(rxq, 1);
88 * DPDK callback for vectorized RX.
91 * Generic pointer to RX queue structure.
93 * Array to store received packets.
95 * Maximum number of packets in array.
98 * Number of packets successfully received (<= pkts_n).
101 mlx5_rx_burst_vec(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
103 struct mlx5_rxq_data *rxq = dpdk_rxq;
107 nb_rx = rxq_burst_v(rxq, pkts, pkts_n, &err);
108 if (unlikely(err | rxq->err_state))
109 nb_rx = rxq_handle_pending_error(rxq, pkts, nb_rx);
114 * Check a RX queue can support vectorized RX.
117 * Pointer to RX queue.
120 * 1 if supported, negative errno value if not.
122 int __attribute__((cold))
123 mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq)
125 struct mlx5_rxq_ctrl *ctrl =
126 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
128 if (mlx5_mprq_enabled(ETH_DEV(ctrl->priv)))
130 if (!ctrl->priv->config.rx_vec_en || rxq->sges_n != 0)
138 * Check a device can support vectorized RX.
141 * Pointer to Ethernet device.
144 * 1 if supported, negative errno value if not.
146 int __attribute__((cold))
147 mlx5_check_vec_rx_support(struct rte_eth_dev *dev)
149 struct mlx5_priv *priv = dev->data->dev_private;
152 if (!priv->config.rx_vec_en)
154 if (mlx5_mprq_enabled(dev))
156 /* All the configured queues should support. */
157 for (i = 0; i < priv->rxqs_n; ++i) {
158 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
162 if (mlx5_rxq_check_vec_support(rxq) < 0)
165 if (i != priv->rxqs_n)