1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015-2019 Mellanox Technologies, Ltd
11 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
13 #pragma GCC diagnostic ignored "-Wpedantic"
15 #include <infiniband/verbs.h>
16 #include <infiniband/mlx5dv.h>
18 #pragma GCC diagnostic error "-Wpedantic"
22 #include <rte_mempool.h>
23 #include <rte_prefetch.h>
24 #include <rte_common.h>
25 #include <rte_branch_prediction.h>
26 #include <rte_ether.h>
27 #include <rte_cycles.h>
30 #include <mlx5_devx_cmds.h>
32 #include <mlx5_common.h>
34 #include "mlx5_defs.h"
37 #include "mlx5_utils.h"
38 #include "mlx5_rxtx.h"
39 #include "mlx5_autoconf.h"
41 /* TX burst subroutines return codes. */
42 enum mlx5_txcmp_code {
43 MLX5_TXCMP_CODE_EXIT = 0,
44 MLX5_TXCMP_CODE_ERROR,
45 MLX5_TXCMP_CODE_SINGLE,
46 MLX5_TXCMP_CODE_MULTI,
52 * These defines are used to configure Tx burst routine option set
53 * supported at compile time. The not specified options are optimized out
54 * out due to if conditions can be explicitly calculated at compile time.
55 * The offloads with bigger runtime check (require more CPU cycles to
56 * skip) overhead should have the bigger index - this is needed to
57 * select the better matching routine function if no exact match and
58 * some offloads are not actually requested.
60 #define MLX5_TXOFF_CONFIG_MULTI (1u << 0) /* Multi-segment packets.*/
61 #define MLX5_TXOFF_CONFIG_TSO (1u << 1) /* TCP send offload supported.*/
62 #define MLX5_TXOFF_CONFIG_SWP (1u << 2) /* Tunnels/SW Parser offloads.*/
63 #define MLX5_TXOFF_CONFIG_CSUM (1u << 3) /* Check Sums offloaded. */
64 #define MLX5_TXOFF_CONFIG_INLINE (1u << 4) /* Data inlining supported. */
65 #define MLX5_TXOFF_CONFIG_VLAN (1u << 5) /* VLAN insertion supported.*/
66 #define MLX5_TXOFF_CONFIG_METADATA (1u << 6) /* Flow metadata. */
67 #define MLX5_TXOFF_CONFIG_EMPW (1u << 8) /* Enhanced MPW supported.*/
68 #define MLX5_TXOFF_CONFIG_MPW (1u << 9) /* Legacy MPW supported.*/
70 /* The most common offloads groups. */
71 #define MLX5_TXOFF_CONFIG_NONE 0
72 #define MLX5_TXOFF_CONFIG_FULL (MLX5_TXOFF_CONFIG_MULTI | \
73 MLX5_TXOFF_CONFIG_TSO | \
74 MLX5_TXOFF_CONFIG_SWP | \
75 MLX5_TXOFF_CONFIG_CSUM | \
76 MLX5_TXOFF_CONFIG_INLINE | \
77 MLX5_TXOFF_CONFIG_VLAN | \
78 MLX5_TXOFF_CONFIG_METADATA)
80 #define MLX5_TXOFF_CONFIG(mask) (olx & MLX5_TXOFF_CONFIG_##mask)
82 #define MLX5_TXOFF_DECL(func, olx) \
83 static uint16_t mlx5_tx_burst_##func(void *txq, \
84 struct rte_mbuf **pkts, \
87 return mlx5_tx_burst_tmpl((struct mlx5_txq_data *)txq, \
88 pkts, pkts_n, (olx)); \
91 #define MLX5_TXOFF_INFO(func, olx) {mlx5_tx_burst_##func, olx},
93 static __rte_always_inline uint32_t
94 rxq_cq_to_pkt_type(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe);
96 static __rte_always_inline int
97 mlx5_rx_poll_len(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe,
98 uint16_t cqe_cnt, volatile struct mlx5_mini_cqe8 **mcqe);
100 static __rte_always_inline uint32_t
101 rxq_cq_to_ol_flags(volatile struct mlx5_cqe *cqe);
103 static __rte_always_inline void
104 rxq_cq_to_mbuf(struct mlx5_rxq_data *rxq, struct rte_mbuf *pkt,
105 volatile struct mlx5_cqe *cqe, uint32_t rss_hash_res);
107 static __rte_always_inline void
108 mprq_buf_replace(struct mlx5_rxq_data *rxq, uint16_t rq_idx,
109 const unsigned int strd_n);
112 mlx5_queue_state_modify(struct rte_eth_dev *dev,
113 struct mlx5_mp_arg_queue_state_modify *sm);
116 mlx5_lro_update_tcp_hdr(struct rte_tcp_hdr *restrict tcp,
117 volatile struct mlx5_cqe *restrict cqe,
121 mlx5_lro_update_hdr(uint8_t *restrict padd,
122 volatile struct mlx5_cqe *restrict cqe,
125 uint32_t mlx5_ptype_table[] __rte_cache_aligned = {
126 [0xff] = RTE_PTYPE_ALL_MASK, /* Last entry for errored packet. */
129 uint8_t mlx5_cksum_table[1 << 10] __rte_cache_aligned;
130 uint8_t mlx5_swp_types_table[1 << 10] __rte_cache_aligned;
132 uint64_t rte_net_mlx5_dynf_inline_mask;
133 #define PKT_TX_DYNF_NOINLINE rte_net_mlx5_dynf_inline_mask
136 * Build a table to translate Rx completion flags to packet type.
138 * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
141 mlx5_set_ptype_table(void)
144 uint32_t (*p)[RTE_DIM(mlx5_ptype_table)] = &mlx5_ptype_table;
146 /* Last entry must not be overwritten, reserved for errored packet. */
147 for (i = 0; i < RTE_DIM(mlx5_ptype_table) - 1; ++i)
148 (*p)[i] = RTE_PTYPE_UNKNOWN;
150 * The index to the array should have:
151 * bit[1:0] = l3_hdr_type
152 * bit[4:2] = l4_hdr_type
155 * bit[7] = outer_l3_type
158 (*p)[0x00] = RTE_PTYPE_L2_ETHER;
160 (*p)[0x01] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
161 RTE_PTYPE_L4_NONFRAG;
162 (*p)[0x02] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
163 RTE_PTYPE_L4_NONFRAG;
165 (*p)[0x21] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
167 (*p)[0x22] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
170 (*p)[0x05] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
172 (*p)[0x06] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
174 (*p)[0x0d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
176 (*p)[0x0e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
178 (*p)[0x11] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
180 (*p)[0x12] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
183 (*p)[0x09] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
185 (*p)[0x0a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
187 /* Repeat with outer_l3_type being set. Just in case. */
188 (*p)[0x81] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
189 RTE_PTYPE_L4_NONFRAG;
190 (*p)[0x82] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
191 RTE_PTYPE_L4_NONFRAG;
192 (*p)[0xa1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
194 (*p)[0xa2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
196 (*p)[0x85] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
198 (*p)[0x86] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
200 (*p)[0x8d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
202 (*p)[0x8e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
204 (*p)[0x91] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
206 (*p)[0x92] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
208 (*p)[0x89] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
210 (*p)[0x8a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
213 (*p)[0x40] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN;
214 (*p)[0x41] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
215 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
216 RTE_PTYPE_INNER_L4_NONFRAG;
217 (*p)[0x42] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
218 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
219 RTE_PTYPE_INNER_L4_NONFRAG;
220 (*p)[0xc0] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN;
221 (*p)[0xc1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
222 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
223 RTE_PTYPE_INNER_L4_NONFRAG;
224 (*p)[0xc2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
225 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
226 RTE_PTYPE_INNER_L4_NONFRAG;
227 /* Tunneled - Fragmented */
228 (*p)[0x61] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
229 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
230 RTE_PTYPE_INNER_L4_FRAG;
231 (*p)[0x62] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
232 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
233 RTE_PTYPE_INNER_L4_FRAG;
234 (*p)[0xe1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
235 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
236 RTE_PTYPE_INNER_L4_FRAG;
237 (*p)[0xe2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
238 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
239 RTE_PTYPE_INNER_L4_FRAG;
241 (*p)[0x45] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
242 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
243 RTE_PTYPE_INNER_L4_TCP;
244 (*p)[0x46] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
245 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
246 RTE_PTYPE_INNER_L4_TCP;
247 (*p)[0x4d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
248 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
249 RTE_PTYPE_INNER_L4_TCP;
250 (*p)[0x4e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
251 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
252 RTE_PTYPE_INNER_L4_TCP;
253 (*p)[0x51] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
254 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
255 RTE_PTYPE_INNER_L4_TCP;
256 (*p)[0x52] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
257 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
258 RTE_PTYPE_INNER_L4_TCP;
259 (*p)[0xc5] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
260 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
261 RTE_PTYPE_INNER_L4_TCP;
262 (*p)[0xc6] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
263 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
264 RTE_PTYPE_INNER_L4_TCP;
265 (*p)[0xcd] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
266 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
267 RTE_PTYPE_INNER_L4_TCP;
268 (*p)[0xce] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
269 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
270 RTE_PTYPE_INNER_L4_TCP;
271 (*p)[0xd1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
272 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
273 RTE_PTYPE_INNER_L4_TCP;
274 (*p)[0xd2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
275 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
276 RTE_PTYPE_INNER_L4_TCP;
278 (*p)[0x49] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
279 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
280 RTE_PTYPE_INNER_L4_UDP;
281 (*p)[0x4a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
282 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
283 RTE_PTYPE_INNER_L4_UDP;
284 (*p)[0xc9] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
285 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
286 RTE_PTYPE_INNER_L4_UDP;
287 (*p)[0xca] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
288 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
289 RTE_PTYPE_INNER_L4_UDP;
293 * Build a table to translate packet to checksum type of Verbs.
296 mlx5_set_cksum_table(void)
302 * The index should have:
303 * bit[0] = PKT_TX_TCP_SEG
304 * bit[2:3] = PKT_TX_UDP_CKSUM, PKT_TX_TCP_CKSUM
305 * bit[4] = PKT_TX_IP_CKSUM
306 * bit[8] = PKT_TX_OUTER_IP_CKSUM
309 for (i = 0; i < RTE_DIM(mlx5_cksum_table); ++i) {
312 /* Tunneled packet. */
313 if (i & (1 << 8)) /* Outer IP. */
314 v |= MLX5_ETH_WQE_L3_CSUM;
315 if (i & (1 << 4)) /* Inner IP. */
316 v |= MLX5_ETH_WQE_L3_INNER_CSUM;
317 if (i & (3 << 2 | 1 << 0)) /* L4 or TSO. */
318 v |= MLX5_ETH_WQE_L4_INNER_CSUM;
321 if (i & (1 << 4)) /* IP. */
322 v |= MLX5_ETH_WQE_L3_CSUM;
323 if (i & (3 << 2 | 1 << 0)) /* L4 or TSO. */
324 v |= MLX5_ETH_WQE_L4_CSUM;
326 mlx5_cksum_table[i] = v;
331 * Build a table to translate packet type of mbuf to SWP type of Verbs.
334 mlx5_set_swp_types_table(void)
340 * The index should have:
341 * bit[0:1] = PKT_TX_L4_MASK
342 * bit[4] = PKT_TX_IPV6
343 * bit[8] = PKT_TX_OUTER_IPV6
344 * bit[9] = PKT_TX_OUTER_UDP
346 for (i = 0; i < RTE_DIM(mlx5_swp_types_table); ++i) {
349 v |= MLX5_ETH_WQE_L3_OUTER_IPV6;
351 v |= MLX5_ETH_WQE_L4_OUTER_UDP;
353 v |= MLX5_ETH_WQE_L3_INNER_IPV6;
354 if ((i & 3) == (PKT_TX_UDP_CKSUM >> 52))
355 v |= MLX5_ETH_WQE_L4_INNER_UDP;
356 mlx5_swp_types_table[i] = v;
361 * Set Software Parser flags and offsets in Ethernet Segment of WQE.
362 * Flags must be preliminary initialized to zero.
365 * Pointer to burst routine local context.
367 * Pointer to store Software Parser flags
369 * Configured Tx offloads mask. It is fully defined at
370 * compile time and may be used for optimization.
373 * Software Parser offsets packed in dword.
374 * Software Parser flags are set by pointer.
376 static __rte_always_inline uint32_t
377 txq_mbuf_to_swp(struct mlx5_txq_local *restrict loc,
382 unsigned int idx, off;
385 if (!MLX5_TXOFF_CONFIG(SWP))
387 ol = loc->mbuf->ol_flags;
388 tunnel = ol & PKT_TX_TUNNEL_MASK;
390 * Check whether Software Parser is required.
391 * Only customized tunnels may ask for.
393 if (likely(tunnel != PKT_TX_TUNNEL_UDP && tunnel != PKT_TX_TUNNEL_IP))
396 * The index should have:
397 * bit[0:1] = PKT_TX_L4_MASK
398 * bit[4] = PKT_TX_IPV6
399 * bit[8] = PKT_TX_OUTER_IPV6
400 * bit[9] = PKT_TX_OUTER_UDP
402 idx = (ol & (PKT_TX_L4_MASK | PKT_TX_IPV6 | PKT_TX_OUTER_IPV6)) >> 52;
403 idx |= (tunnel == PKT_TX_TUNNEL_UDP) ? (1 << 9) : 0;
404 *swp_flags = mlx5_swp_types_table[idx];
406 * Set offsets for SW parser. Since ConnectX-5, SW parser just
407 * complements HW parser. SW parser starts to engage only if HW parser
408 * can't reach a header. For the older devices, HW parser will not kick
409 * in if any of SWP offsets is set. Therefore, all of the L3 offsets
410 * should be set regardless of HW offload.
412 off = loc->mbuf->outer_l2_len;
413 if (MLX5_TXOFF_CONFIG(VLAN) && ol & PKT_TX_VLAN_PKT)
414 off += sizeof(struct rte_vlan_hdr);
415 set = (off >> 1) << 8; /* Outer L3 offset. */
416 off += loc->mbuf->outer_l3_len;
417 if (tunnel == PKT_TX_TUNNEL_UDP)
418 set |= off >> 1; /* Outer L4 offset. */
419 if (ol & (PKT_TX_IPV4 | PKT_TX_IPV6)) { /* Inner IP. */
420 const uint64_t csum = ol & PKT_TX_L4_MASK;
421 off += loc->mbuf->l2_len;
422 set |= (off >> 1) << 24; /* Inner L3 offset. */
423 if (csum == PKT_TX_TCP_CKSUM ||
424 csum == PKT_TX_UDP_CKSUM ||
425 (MLX5_TXOFF_CONFIG(TSO) && ol & PKT_TX_TCP_SEG)) {
426 off += loc->mbuf->l3_len;
427 set |= (off >> 1) << 16; /* Inner L4 offset. */
430 set = rte_cpu_to_le_32(set);
435 * Convert the Checksum offloads to Verbs.
438 * Pointer to the mbuf.
441 * Converted checksum flags.
443 static __rte_always_inline uint8_t
444 txq_ol_cksum_to_cs(struct rte_mbuf *buf)
447 uint8_t is_tunnel = !!(buf->ol_flags & PKT_TX_TUNNEL_MASK);
448 const uint64_t ol_flags_mask = PKT_TX_TCP_SEG | PKT_TX_L4_MASK |
449 PKT_TX_IP_CKSUM | PKT_TX_OUTER_IP_CKSUM;
452 * The index should have:
453 * bit[0] = PKT_TX_TCP_SEG
454 * bit[2:3] = PKT_TX_UDP_CKSUM, PKT_TX_TCP_CKSUM
455 * bit[4] = PKT_TX_IP_CKSUM
456 * bit[8] = PKT_TX_OUTER_IP_CKSUM
459 idx = ((buf->ol_flags & ol_flags_mask) >> 50) | (!!is_tunnel << 9);
460 return mlx5_cksum_table[idx];
464 * Internal function to compute the number of used descriptors in an RX queue
470 * The number of used rx descriptor.
473 rx_queue_count(struct mlx5_rxq_data *rxq)
475 struct rxq_zip *zip = &rxq->zip;
476 volatile struct mlx5_cqe *cqe;
477 const unsigned int cqe_n = (1 << rxq->cqe_n);
478 const unsigned int cqe_cnt = cqe_n - 1;
482 /* if we are processing a compressed cqe */
484 used = zip->cqe_cnt - zip->ca;
490 cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
491 while (check_cqe(cqe, cqe_n, cq_ci) != MLX5_CQE_STATUS_HW_OWN) {
495 op_own = cqe->op_own;
496 if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED)
497 n = rte_be_to_cpu_32(cqe->byte_cnt);
502 cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
504 used = RTE_MIN(used, (1U << rxq->elts_n) - 1);
509 * DPDK callback to check the status of a rx descriptor.
514 * The index of the descriptor in the ring.
517 * The status of the tx descriptor.
520 mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset)
522 struct mlx5_rxq_data *rxq = rx_queue;
523 struct mlx5_rxq_ctrl *rxq_ctrl =
524 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
525 struct rte_eth_dev *dev = ETH_DEV(rxq_ctrl->priv);
527 if (dev->rx_pkt_burst != mlx5_rx_burst) {
531 if (offset >= (1 << rxq->elts_n)) {
535 if (offset < rx_queue_count(rxq))
536 return RTE_ETH_RX_DESC_DONE;
537 return RTE_ETH_RX_DESC_AVAIL;
541 * DPDK callback to get the RX queue information
544 * Pointer to the device structure.
547 * Rx queue identificator.
550 * Pointer to the RX queue information structure.
557 mlx5_rxq_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
558 struct rte_eth_rxq_info *qinfo)
560 struct mlx5_priv *priv = dev->data->dev_private;
561 struct mlx5_rxq_data *rxq = (*priv->rxqs)[rx_queue_id];
562 struct mlx5_rxq_ctrl *rxq_ctrl =
563 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
567 qinfo->mp = mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq) ?
568 rxq->mprq_mp : rxq->mp;
569 qinfo->conf.rx_thresh.pthresh = 0;
570 qinfo->conf.rx_thresh.hthresh = 0;
571 qinfo->conf.rx_thresh.wthresh = 0;
572 qinfo->conf.rx_free_thresh = rxq->rq_repl_thresh;
573 qinfo->conf.rx_drop_en = 1;
574 qinfo->conf.rx_deferred_start = rxq_ctrl ? 0 : 1;
575 qinfo->conf.offloads = dev->data->dev_conf.rxmode.offloads;
576 qinfo->scattered_rx = dev->data->scattered_rx;
577 qinfo->nb_desc = 1 << rxq->elts_n;
581 * DPDK callback to get the RX packet burst mode information
584 * Pointer to the device structure.
587 * Rx queue identificatior.
590 * Pointer to the burts mode information.
593 * 0 as success, -EINVAL as failure.
597 mlx5_rx_burst_mode_get(struct rte_eth_dev *dev,
598 uint16_t rx_queue_id __rte_unused,
599 struct rte_eth_burst_mode *mode)
601 eth_rx_burst_t pkt_burst = dev->rx_pkt_burst;
603 if (pkt_burst == mlx5_rx_burst) {
604 snprintf(mode->info, sizeof(mode->info), "%s", "Scalar");
605 } else if (pkt_burst == mlx5_rx_burst_mprq) {
606 snprintf(mode->info, sizeof(mode->info), "%s", "Multi-Packet RQ");
607 } else if (pkt_burst == mlx5_rx_burst_vec) {
608 #if defined RTE_ARCH_X86_64
609 snprintf(mode->info, sizeof(mode->info), "%s", "Vector SSE");
610 #elif defined RTE_ARCH_ARM64
611 snprintf(mode->info, sizeof(mode->info), "%s", "Vector Neon");
612 #elif defined RTE_ARCH_PPC_64
613 snprintf(mode->info, sizeof(mode->info), "%s", "Vector AltiVec");
624 * DPDK callback to get the number of used descriptors in a RX queue
627 * Pointer to the device structure.
633 * The number of used rx descriptor.
634 * -EINVAL if the queue is invalid
637 mlx5_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
639 struct mlx5_priv *priv = dev->data->dev_private;
640 struct mlx5_rxq_data *rxq;
642 if (dev->rx_pkt_burst != mlx5_rx_burst) {
646 rxq = (*priv->rxqs)[rx_queue_id];
651 return rx_queue_count(rxq);
654 #define MLX5_SYSTEM_LOG_DIR "/var/log"
656 * Dump debug information to log file.
661 * If not NULL this string is printed as a header to the output
662 * and the output will be in hexadecimal view.
664 * This is the buffer address to print out.
666 * The number of bytes to dump out.
669 mlx5_dump_debug_information(const char *fname, const char *hex_title,
670 const void *buf, unsigned int hex_len)
674 MKSTR(path, "%s/%s", MLX5_SYSTEM_LOG_DIR, fname);
675 fd = fopen(path, "a+");
677 DRV_LOG(WARNING, "cannot open %s for debug dump", path);
678 MKSTR(path2, "./%s", fname);
679 fd = fopen(path2, "a+");
681 DRV_LOG(ERR, "cannot open %s for debug dump", path2);
684 DRV_LOG(INFO, "New debug dump in file %s", path2);
686 DRV_LOG(INFO, "New debug dump in file %s", path);
689 rte_hexdump(fd, hex_title, buf, hex_len);
691 fprintf(fd, "%s", (const char *)buf);
692 fprintf(fd, "\n\n\n");
697 * Move QP from error state to running state and initialize indexes.
700 * Pointer to TX queue control structure.
703 * 0 on success, else -1.
706 tx_recover_qp(struct mlx5_txq_ctrl *txq_ctrl)
708 struct mlx5_mp_arg_queue_state_modify sm = {
710 .queue_id = txq_ctrl->txq.idx,
713 if (mlx5_queue_state_modify(ETH_DEV(txq_ctrl->priv), &sm))
715 txq_ctrl->txq.wqe_ci = 0;
716 txq_ctrl->txq.wqe_pi = 0;
717 txq_ctrl->txq.elts_comp = 0;
721 /* Return 1 if the error CQE is signed otherwise, sign it and return 0. */
723 check_err_cqe_seen(volatile struct mlx5_err_cqe *err_cqe)
725 static const uint8_t magic[] = "seen";
729 for (i = 0; i < sizeof(magic); ++i)
730 if (!ret || err_cqe->rsvd1[i] != magic[i]) {
732 err_cqe->rsvd1[i] = magic[i];
741 * Pointer to TX queue structure.
743 * Pointer to the error CQE.
746 * Negative value if queue recovery failed, otherwise
747 * the error completion entry is handled successfully.
750 mlx5_tx_error_cqe_handle(struct mlx5_txq_data *restrict txq,
751 volatile struct mlx5_err_cqe *err_cqe)
753 if (err_cqe->syndrome != MLX5_CQE_SYNDROME_WR_FLUSH_ERR) {
754 const uint16_t wqe_m = ((1 << txq->wqe_n) - 1);
755 struct mlx5_txq_ctrl *txq_ctrl =
756 container_of(txq, struct mlx5_txq_ctrl, txq);
757 uint16_t new_wqe_pi = rte_be_to_cpu_16(err_cqe->wqe_counter);
758 int seen = check_err_cqe_seen(err_cqe);
760 if (!seen && txq_ctrl->dump_file_n <
761 txq_ctrl->priv->config.max_dump_files_num) {
762 MKSTR(err_str, "Unexpected CQE error syndrome "
763 "0x%02x CQN = %u SQN = %u wqe_counter = %u "
764 "wq_ci = %u cq_ci = %u", err_cqe->syndrome,
765 txq->cqe_s, txq->qp_num_8s >> 8,
766 rte_be_to_cpu_16(err_cqe->wqe_counter),
767 txq->wqe_ci, txq->cq_ci);
768 MKSTR(name, "dpdk_mlx5_port_%u_txq_%u_index_%u_%u",
769 PORT_ID(txq_ctrl->priv), txq->idx,
770 txq_ctrl->dump_file_n, (uint32_t)rte_rdtsc());
771 mlx5_dump_debug_information(name, NULL, err_str, 0);
772 mlx5_dump_debug_information(name, "MLX5 Error CQ:",
773 (const void *)((uintptr_t)
777 mlx5_dump_debug_information(name, "MLX5 Error SQ:",
778 (const void *)((uintptr_t)
782 txq_ctrl->dump_file_n++;
786 * Count errors in WQEs units.
787 * Later it can be improved to count error packets,
788 * for example, by SQ parsing to find how much packets
789 * should be counted for each WQE.
791 txq->stats.oerrors += ((txq->wqe_ci & wqe_m) -
793 if (tx_recover_qp(txq_ctrl)) {
794 /* Recovering failed - retry later on the same WQE. */
797 /* Release all the remaining buffers. */
798 txq_free_elts(txq_ctrl);
804 * Translate RX completion flags to packet type.
807 * Pointer to RX queue structure.
811 * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
814 * Packet type for struct rte_mbuf.
816 static inline uint32_t
817 rxq_cq_to_pkt_type(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe)
820 uint8_t pinfo = cqe->pkt_info;
821 uint16_t ptype = cqe->hdr_type_etc;
824 * The index to the array should have:
825 * bit[1:0] = l3_hdr_type
826 * bit[4:2] = l4_hdr_type
829 * bit[7] = outer_l3_type
831 idx = ((pinfo & 0x3) << 6) | ((ptype & 0xfc00) >> 10);
832 return mlx5_ptype_table[idx] | rxq->tunnel * !!(idx & (1 << 6));
836 * Initialize Rx WQ and indexes.
839 * Pointer to RX queue structure.
842 mlx5_rxq_initialize(struct mlx5_rxq_data *rxq)
844 const unsigned int wqe_n = 1 << rxq->elts_n;
847 for (i = 0; (i != wqe_n); ++i) {
848 volatile struct mlx5_wqe_data_seg *scat;
852 if (mlx5_rxq_mprq_enabled(rxq)) {
853 struct mlx5_mprq_buf *buf = (*rxq->mprq_bufs)[i];
855 scat = &((volatile struct mlx5_wqe_mprq *)
857 addr = (uintptr_t)mlx5_mprq_buf_addr(buf,
858 1 << rxq->strd_num_n);
859 byte_count = (1 << rxq->strd_sz_n) *
860 (1 << rxq->strd_num_n);
862 struct rte_mbuf *buf = (*rxq->elts)[i];
864 scat = &((volatile struct mlx5_wqe_data_seg *)
866 addr = rte_pktmbuf_mtod(buf, uintptr_t);
867 byte_count = DATA_LEN(buf);
869 /* scat->addr must be able to store a pointer. */
870 MLX5_ASSERT(sizeof(scat->addr) >= sizeof(uintptr_t));
871 *scat = (struct mlx5_wqe_data_seg){
872 .addr = rte_cpu_to_be_64(addr),
873 .byte_count = rte_cpu_to_be_32(byte_count),
874 .lkey = mlx5_rx_addr2mr(rxq, addr),
877 rxq->consumed_strd = 0;
878 rxq->decompressed = 0;
880 rxq->zip = (struct rxq_zip){
883 /* Update doorbell counter. */
884 rxq->rq_ci = wqe_n >> rxq->sges_n;
886 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
890 * Modify a Verbs/DevX queue state.
891 * This must be called from the primary process.
894 * Pointer to Ethernet device.
896 * State modify request parameters.
899 * 0 in case of success else non-zero value and rte_errno is set.
902 mlx5_queue_state_modify_primary(struct rte_eth_dev *dev,
903 const struct mlx5_mp_arg_queue_state_modify *sm)
906 struct mlx5_priv *priv = dev->data->dev_private;
909 struct mlx5_rxq_data *rxq = (*priv->rxqs)[sm->queue_id];
910 struct mlx5_rxq_ctrl *rxq_ctrl =
911 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
913 if (rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_IBV) {
914 struct ibv_wq_attr mod = {
915 .attr_mask = IBV_WQ_ATTR_STATE,
916 .wq_state = sm->state,
919 ret = mlx5_glue->modify_wq(rxq_ctrl->obj->wq, &mod);
920 } else { /* rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ. */
921 struct mlx5_devx_modify_rq_attr rq_attr;
923 memset(&rq_attr, 0, sizeof(rq_attr));
924 if (sm->state == IBV_WQS_RESET) {
925 rq_attr.rq_state = MLX5_RQC_STATE_ERR;
926 rq_attr.state = MLX5_RQC_STATE_RST;
927 } else if (sm->state == IBV_WQS_RDY) {
928 rq_attr.rq_state = MLX5_RQC_STATE_RST;
929 rq_attr.state = MLX5_RQC_STATE_RDY;
930 } else if (sm->state == IBV_WQS_ERR) {
931 rq_attr.rq_state = MLX5_RQC_STATE_RDY;
932 rq_attr.state = MLX5_RQC_STATE_ERR;
934 ret = mlx5_devx_cmd_modify_rq(rxq_ctrl->obj->rq,
938 DRV_LOG(ERR, "Cannot change Rx WQ state to %u - %s",
939 sm->state, strerror(errno));
944 struct mlx5_txq_data *txq = (*priv->txqs)[sm->queue_id];
945 struct mlx5_txq_ctrl *txq_ctrl =
946 container_of(txq, struct mlx5_txq_ctrl, txq);
947 struct ibv_qp_attr mod = {
948 .qp_state = IBV_QPS_RESET,
949 .port_num = (uint8_t)priv->ibv_port,
951 struct ibv_qp *qp = txq_ctrl->obj->qp;
953 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
955 DRV_LOG(ERR, "Cannot change the Tx QP state to RESET "
956 "%s", strerror(errno));
960 mod.qp_state = IBV_QPS_INIT;
961 ret = mlx5_glue->modify_qp(qp, &mod,
962 (IBV_QP_STATE | IBV_QP_PORT));
964 DRV_LOG(ERR, "Cannot change Tx QP state to INIT %s",
969 mod.qp_state = IBV_QPS_RTR;
970 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
972 DRV_LOG(ERR, "Cannot change Tx QP state to RTR %s",
977 mod.qp_state = IBV_QPS_RTS;
978 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
980 DRV_LOG(ERR, "Cannot change Tx QP state to RTS %s",
990 * Modify a Verbs queue state.
993 * Pointer to Ethernet device.
995 * State modify request parameters.
998 * 0 in case of success else non-zero value.
1001 mlx5_queue_state_modify(struct rte_eth_dev *dev,
1002 struct mlx5_mp_arg_queue_state_modify *sm)
1004 struct mlx5_priv *priv = dev->data->dev_private;
1007 switch (rte_eal_process_type()) {
1008 case RTE_PROC_PRIMARY:
1009 ret = mlx5_queue_state_modify_primary(dev, sm);
1011 case RTE_PROC_SECONDARY:
1012 ret = mlx5_mp_req_queue_state_modify(&priv->mp_id, sm);
1021 * Handle a Rx error.
1022 * The function inserts the RQ state to reset when the first error CQE is
1023 * shown, then drains the CQ by the caller function loop. When the CQ is empty,
1024 * it moves the RQ state to ready and initializes the RQ.
1025 * Next CQE identification and error counting are in the caller responsibility.
1028 * Pointer to RX queue structure.
1030 * 1 when called from vectorized Rx burst, need to prepare mbufs for the RQ.
1031 * 0 when called from non-vectorized Rx burst.
1034 * -1 in case of recovery error, otherwise the CQE status.
1037 mlx5_rx_err_handle(struct mlx5_rxq_data *rxq, uint8_t vec)
1039 const uint16_t cqe_n = 1 << rxq->cqe_n;
1040 const uint16_t cqe_mask = cqe_n - 1;
1041 const unsigned int wqe_n = 1 << rxq->elts_n;
1042 struct mlx5_rxq_ctrl *rxq_ctrl =
1043 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
1045 volatile struct mlx5_cqe *cqe;
1046 volatile struct mlx5_err_cqe *err_cqe;
1048 .cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_mask],
1050 struct mlx5_mp_arg_queue_state_modify sm;
1053 switch (rxq->err_state) {
1054 case MLX5_RXQ_ERR_STATE_NO_ERROR:
1055 rxq->err_state = MLX5_RXQ_ERR_STATE_NEED_RESET;
1057 case MLX5_RXQ_ERR_STATE_NEED_RESET:
1059 sm.queue_id = rxq->idx;
1060 sm.state = IBV_WQS_RESET;
1061 if (mlx5_queue_state_modify(ETH_DEV(rxq_ctrl->priv), &sm))
1063 if (rxq_ctrl->dump_file_n <
1064 rxq_ctrl->priv->config.max_dump_files_num) {
1065 MKSTR(err_str, "Unexpected CQE error syndrome "
1066 "0x%02x CQN = %u RQN = %u wqe_counter = %u"
1067 " rq_ci = %u cq_ci = %u", u.err_cqe->syndrome,
1068 rxq->cqn, rxq_ctrl->wqn,
1069 rte_be_to_cpu_16(u.err_cqe->wqe_counter),
1070 rxq->rq_ci << rxq->sges_n, rxq->cq_ci);
1071 MKSTR(name, "dpdk_mlx5_port_%u_rxq_%u_%u",
1072 rxq->port_id, rxq->idx, (uint32_t)rte_rdtsc());
1073 mlx5_dump_debug_information(name, NULL, err_str, 0);
1074 mlx5_dump_debug_information(name, "MLX5 Error CQ:",
1075 (const void *)((uintptr_t)
1077 sizeof(*u.cqe) * cqe_n);
1078 mlx5_dump_debug_information(name, "MLX5 Error RQ:",
1079 (const void *)((uintptr_t)
1082 rxq_ctrl->dump_file_n++;
1084 rxq->err_state = MLX5_RXQ_ERR_STATE_NEED_READY;
1086 case MLX5_RXQ_ERR_STATE_NEED_READY:
1087 ret = check_cqe(u.cqe, cqe_n, rxq->cq_ci);
1088 if (ret == MLX5_CQE_STATUS_HW_OWN) {
1090 *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1093 * The RQ consumer index must be zeroed while moving
1094 * from RESET state to RDY state.
1096 *rxq->rq_db = rte_cpu_to_be_32(0);
1099 sm.queue_id = rxq->idx;
1100 sm.state = IBV_WQS_RDY;
1101 if (mlx5_queue_state_modify(ETH_DEV(rxq_ctrl->priv),
1105 const uint16_t q_mask = wqe_n - 1;
1107 struct rte_mbuf **elt;
1109 unsigned int n = wqe_n - (rxq->rq_ci -
1112 for (i = 0; i < (int)n; ++i) {
1113 elt_idx = (rxq->rq_ci + i) & q_mask;
1114 elt = &(*rxq->elts)[elt_idx];
1115 *elt = rte_mbuf_raw_alloc(rxq->mp);
1117 for (i--; i >= 0; --i) {
1118 elt_idx = (rxq->rq_ci +
1122 rte_pktmbuf_free_seg
1128 for (i = 0; i < (int)wqe_n; ++i) {
1129 elt = &(*rxq->elts)[i];
1131 (uint16_t)((*elt)->buf_len -
1132 rte_pktmbuf_headroom(*elt));
1134 /* Padding with a fake mbuf for vec Rx. */
1135 for (i = 0; i < MLX5_VPMD_DESCS_PER_LOOP; ++i)
1136 (*rxq->elts)[wqe_n + i] =
1139 mlx5_rxq_initialize(rxq);
1140 rxq->err_state = MLX5_RXQ_ERR_STATE_NO_ERROR;
1149 * Get size of the next packet for a given CQE. For compressed CQEs, the
1150 * consumer index is updated only once all packets of the current one have
1154 * Pointer to RX queue.
1158 * Store pointer to mini-CQE if compressed. Otherwise, the pointer is not
1162 * 0 in case of empty CQE, otherwise the packet size in bytes.
1165 mlx5_rx_poll_len(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe,
1166 uint16_t cqe_cnt, volatile struct mlx5_mini_cqe8 **mcqe)
1168 struct rxq_zip *zip = &rxq->zip;
1169 uint16_t cqe_n = cqe_cnt + 1;
1175 /* Process compressed data in the CQE and mini arrays. */
1177 volatile struct mlx5_mini_cqe8 (*mc)[8] =
1178 (volatile struct mlx5_mini_cqe8 (*)[8])
1179 (uintptr_t)(&(*rxq->cqes)[zip->ca &
1182 len = rte_be_to_cpu_32((*mc)[zip->ai & 7].byte_cnt);
1183 *mcqe = &(*mc)[zip->ai & 7];
1184 if ((++zip->ai & 7) == 0) {
1185 /* Invalidate consumed CQEs */
1188 while (idx != end) {
1189 (*rxq->cqes)[idx & cqe_cnt].op_own =
1190 MLX5_CQE_INVALIDATE;
1194 * Increment consumer index to skip the number
1195 * of CQEs consumed. Hardware leaves holes in
1196 * the CQ ring for software use.
1201 if (unlikely(rxq->zip.ai == rxq->zip.cqe_cnt)) {
1202 /* Invalidate the rest */
1206 while (idx != end) {
1207 (*rxq->cqes)[idx & cqe_cnt].op_own =
1208 MLX5_CQE_INVALIDATE;
1211 rxq->cq_ci = zip->cq_ci;
1215 * No compressed data, get next CQE and verify if it is
1222 ret = check_cqe(cqe, cqe_n, rxq->cq_ci);
1223 if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) {
1224 if (unlikely(ret == MLX5_CQE_STATUS_ERR ||
1226 ret = mlx5_rx_err_handle(rxq, 0);
1227 if (ret == MLX5_CQE_STATUS_HW_OWN ||
1235 op_own = cqe->op_own;
1236 if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED) {
1237 volatile struct mlx5_mini_cqe8 (*mc)[8] =
1238 (volatile struct mlx5_mini_cqe8 (*)[8])
1239 (uintptr_t)(&(*rxq->cqes)
1243 /* Fix endianness. */
1244 zip->cqe_cnt = rte_be_to_cpu_32(cqe->byte_cnt);
1246 * Current mini array position is the one
1247 * returned by check_cqe64().
1249 * If completion comprises several mini arrays,
1250 * as a special case the second one is located
1251 * 7 CQEs after the initial CQE instead of 8
1252 * for subsequent ones.
1254 zip->ca = rxq->cq_ci;
1255 zip->na = zip->ca + 7;
1256 /* Compute the next non compressed CQE. */
1258 zip->cq_ci = rxq->cq_ci + zip->cqe_cnt;
1259 /* Get packet size to return. */
1260 len = rte_be_to_cpu_32((*mc)[0].byte_cnt);
1263 /* Prefetch all to be invalidated */
1266 while (idx != end) {
1267 rte_prefetch0(&(*rxq->cqes)[(idx) &
1272 len = rte_be_to_cpu_32(cqe->byte_cnt);
1275 if (unlikely(rxq->err_state)) {
1276 cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1277 ++rxq->stats.idropped;
1285 * Translate RX completion flags to offload flags.
1291 * Offload flags (ol_flags) for struct rte_mbuf.
1293 static inline uint32_t
1294 rxq_cq_to_ol_flags(volatile struct mlx5_cqe *cqe)
1296 uint32_t ol_flags = 0;
1297 uint16_t flags = rte_be_to_cpu_16(cqe->hdr_type_etc);
1301 MLX5_CQE_RX_L3_HDR_VALID,
1302 PKT_RX_IP_CKSUM_GOOD) |
1304 MLX5_CQE_RX_L4_HDR_VALID,
1305 PKT_RX_L4_CKSUM_GOOD);
1310 * Fill in mbuf fields from RX completion flags.
1311 * Note that pkt->ol_flags should be initialized outside of this function.
1314 * Pointer to RX queue.
1319 * @param rss_hash_res
1320 * Packet RSS Hash result.
1323 rxq_cq_to_mbuf(struct mlx5_rxq_data *rxq, struct rte_mbuf *pkt,
1324 volatile struct mlx5_cqe *cqe, uint32_t rss_hash_res)
1326 /* Update packet information. */
1327 pkt->packet_type = rxq_cq_to_pkt_type(rxq, cqe);
1328 if (rss_hash_res && rxq->rss_hash) {
1329 pkt->hash.rss = rss_hash_res;
1330 pkt->ol_flags |= PKT_RX_RSS_HASH;
1332 if (rxq->mark && MLX5_FLOW_MARK_IS_VALID(cqe->sop_drop_qpn)) {
1333 pkt->ol_flags |= PKT_RX_FDIR;
1334 if (cqe->sop_drop_qpn !=
1335 rte_cpu_to_be_32(MLX5_FLOW_MARK_DEFAULT)) {
1336 uint32_t mark = cqe->sop_drop_qpn;
1338 pkt->ol_flags |= PKT_RX_FDIR_ID;
1339 pkt->hash.fdir.hi = mlx5_flow_mark_get(mark);
1342 if (rxq->dynf_meta && cqe->flow_table_metadata) {
1343 pkt->ol_flags |= rxq->flow_meta_mask;
1344 *RTE_MBUF_DYNFIELD(pkt, rxq->flow_meta_offset, uint32_t *) =
1345 cqe->flow_table_metadata;
1348 pkt->ol_flags |= rxq_cq_to_ol_flags(cqe);
1349 if (rxq->vlan_strip &&
1350 (cqe->hdr_type_etc & rte_cpu_to_be_16(MLX5_CQE_VLAN_STRIPPED))) {
1351 pkt->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
1352 pkt->vlan_tci = rte_be_to_cpu_16(cqe->vlan_info);
1354 if (rxq->hw_timestamp) {
1355 pkt->timestamp = rte_be_to_cpu_64(cqe->timestamp);
1356 pkt->ol_flags |= PKT_RX_TIMESTAMP;
1361 * DPDK callback for RX.
1364 * Generic pointer to RX queue structure.
1366 * Array to store received packets.
1368 * Maximum number of packets in array.
1371 * Number of packets successfully received (<= pkts_n).
1374 mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1376 struct mlx5_rxq_data *rxq = dpdk_rxq;
1377 const unsigned int wqe_cnt = (1 << rxq->elts_n) - 1;
1378 const unsigned int cqe_cnt = (1 << rxq->cqe_n) - 1;
1379 const unsigned int sges_n = rxq->sges_n;
1380 struct rte_mbuf *pkt = NULL;
1381 struct rte_mbuf *seg = NULL;
1382 volatile struct mlx5_cqe *cqe =
1383 &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1385 unsigned int rq_ci = rxq->rq_ci << sges_n;
1386 int len = 0; /* keep its value across iterations. */
1389 unsigned int idx = rq_ci & wqe_cnt;
1390 volatile struct mlx5_wqe_data_seg *wqe =
1391 &((volatile struct mlx5_wqe_data_seg *)rxq->wqes)[idx];
1392 struct rte_mbuf *rep = (*rxq->elts)[idx];
1393 volatile struct mlx5_mini_cqe8 *mcqe = NULL;
1394 uint32_t rss_hash_res;
1402 rep = rte_mbuf_raw_alloc(rxq->mp);
1403 if (unlikely(rep == NULL)) {
1404 ++rxq->stats.rx_nombuf;
1407 * no buffers before we even started,
1408 * bail out silently.
1412 while (pkt != seg) {
1413 MLX5_ASSERT(pkt != (*rxq->elts)[idx]);
1417 rte_mbuf_raw_free(pkt);
1423 cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1424 len = mlx5_rx_poll_len(rxq, cqe, cqe_cnt, &mcqe);
1426 rte_mbuf_raw_free(rep);
1430 MLX5_ASSERT(len >= (rxq->crc_present << 2));
1431 pkt->ol_flags &= EXT_ATTACHED_MBUF;
1432 /* If compressed, take hash result from mini-CQE. */
1433 rss_hash_res = rte_be_to_cpu_32(mcqe == NULL ?
1435 mcqe->rx_hash_result);
1436 rxq_cq_to_mbuf(rxq, pkt, cqe, rss_hash_res);
1437 if (rxq->crc_present)
1438 len -= RTE_ETHER_CRC_LEN;
1440 if (cqe->lro_num_seg > 1) {
1442 (rte_pktmbuf_mtod(pkt, uint8_t *), cqe,
1444 pkt->ol_flags |= PKT_RX_LRO;
1445 pkt->tso_segsz = len / cqe->lro_num_seg;
1448 DATA_LEN(rep) = DATA_LEN(seg);
1449 PKT_LEN(rep) = PKT_LEN(seg);
1450 SET_DATA_OFF(rep, DATA_OFF(seg));
1451 PORT(rep) = PORT(seg);
1452 (*rxq->elts)[idx] = rep;
1454 * Fill NIC descriptor with the new buffer. The lkey and size
1455 * of the buffers are already known, only the buffer address
1458 wqe->addr = rte_cpu_to_be_64(rte_pktmbuf_mtod(rep, uintptr_t));
1459 /* If there's only one MR, no need to replace LKey in WQE. */
1460 if (unlikely(mlx5_mr_btree_len(&rxq->mr_ctrl.cache_bh) > 1))
1461 wqe->lkey = mlx5_rx_mb2mr(rxq, rep);
1462 if (len > DATA_LEN(seg)) {
1463 len -= DATA_LEN(seg);
1468 DATA_LEN(seg) = len;
1469 #ifdef MLX5_PMD_SOFT_COUNTERS
1470 /* Increment bytes counter. */
1471 rxq->stats.ibytes += PKT_LEN(pkt);
1473 /* Return packet. */
1478 /* Align consumer index to the next stride. */
1483 if (unlikely((i == 0) && ((rq_ci >> sges_n) == rxq->rq_ci)))
1485 /* Update the consumer index. */
1486 rxq->rq_ci = rq_ci >> sges_n;
1488 *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1490 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
1491 #ifdef MLX5_PMD_SOFT_COUNTERS
1492 /* Increment packets counter. */
1493 rxq->stats.ipackets += i;
1499 * Update LRO packet TCP header.
1500 * The HW LRO feature doesn't update the TCP header after coalescing the
1501 * TCP segments but supplies information in CQE to fill it by SW.
1504 * Pointer to the TCP header.
1506 * Pointer to the completion entry..
1508 * The L3 pseudo-header checksum.
1511 mlx5_lro_update_tcp_hdr(struct rte_tcp_hdr *restrict tcp,
1512 volatile struct mlx5_cqe *restrict cqe,
1515 uint8_t l4_type = (rte_be_to_cpu_16(cqe->hdr_type_etc) &
1516 MLX5_CQE_L4_TYPE_MASK) >> MLX5_CQE_L4_TYPE_SHIFT;
1518 * The HW calculates only the TCP payload checksum, need to complete
1519 * the TCP header checksum and the L3 pseudo-header checksum.
1521 uint32_t csum = phcsum + cqe->csum;
1523 if (l4_type == MLX5_L4_HDR_TYPE_TCP_EMPTY_ACK ||
1524 l4_type == MLX5_L4_HDR_TYPE_TCP_WITH_ACL) {
1525 tcp->tcp_flags |= RTE_TCP_ACK_FLAG;
1526 tcp->recv_ack = cqe->lro_ack_seq_num;
1527 tcp->rx_win = cqe->lro_tcp_win;
1529 if (cqe->lro_tcppsh_abort_dupack & MLX5_CQE_LRO_PUSH_MASK)
1530 tcp->tcp_flags |= RTE_TCP_PSH_FLAG;
1532 csum += rte_raw_cksum(tcp, (tcp->data_off & 0xF) * 4);
1533 csum = ((csum & 0xffff0000) >> 16) + (csum & 0xffff);
1534 csum = (~csum) & 0xffff;
1541 * Update LRO packet headers.
1542 * The HW LRO feature doesn't update the L3/TCP headers after coalescing the
1543 * TCP segments but supply information in CQE to fill it by SW.
1546 * The packet address.
1548 * Pointer to the completion entry..
1550 * The packet length.
1553 mlx5_lro_update_hdr(uint8_t *restrict padd,
1554 volatile struct mlx5_cqe *restrict cqe,
1558 struct rte_ether_hdr *eth;
1559 struct rte_vlan_hdr *vlan;
1560 struct rte_ipv4_hdr *ipv4;
1561 struct rte_ipv6_hdr *ipv6;
1562 struct rte_tcp_hdr *tcp;
1567 uint16_t proto = h.eth->ether_type;
1571 while (proto == RTE_BE16(RTE_ETHER_TYPE_VLAN) ||
1572 proto == RTE_BE16(RTE_ETHER_TYPE_QINQ)) {
1573 proto = h.vlan->eth_proto;
1576 if (proto == RTE_BE16(RTE_ETHER_TYPE_IPV4)) {
1577 h.ipv4->time_to_live = cqe->lro_min_ttl;
1578 h.ipv4->total_length = rte_cpu_to_be_16(len - (h.hdr - padd));
1579 h.ipv4->hdr_checksum = 0;
1580 h.ipv4->hdr_checksum = rte_ipv4_cksum(h.ipv4);
1581 phcsum = rte_ipv4_phdr_cksum(h.ipv4, 0);
1584 h.ipv6->hop_limits = cqe->lro_min_ttl;
1585 h.ipv6->payload_len = rte_cpu_to_be_16(len - (h.hdr - padd) -
1587 phcsum = rte_ipv6_phdr_cksum(h.ipv6, 0);
1590 mlx5_lro_update_tcp_hdr(h.tcp, cqe, phcsum);
1594 mlx5_mprq_buf_free_cb(void *addr __rte_unused, void *opaque)
1596 struct mlx5_mprq_buf *buf = opaque;
1598 if (rte_atomic16_read(&buf->refcnt) == 1) {
1599 rte_mempool_put(buf->mp, buf);
1600 } else if (rte_atomic16_add_return(&buf->refcnt, -1) == 0) {
1601 rte_atomic16_set(&buf->refcnt, 1);
1602 rte_mempool_put(buf->mp, buf);
1607 mlx5_mprq_buf_free(struct mlx5_mprq_buf *buf)
1609 mlx5_mprq_buf_free_cb(NULL, buf);
1613 mprq_buf_replace(struct mlx5_rxq_data *rxq, uint16_t rq_idx,
1614 const unsigned int strd_n)
1616 struct mlx5_mprq_buf *rep = rxq->mprq_repl;
1617 volatile struct mlx5_wqe_data_seg *wqe =
1618 &((volatile struct mlx5_wqe_mprq *)rxq->wqes)[rq_idx].dseg;
1621 MLX5_ASSERT(rep != NULL);
1622 /* Replace MPRQ buf. */
1623 (*rxq->mprq_bufs)[rq_idx] = rep;
1625 addr = mlx5_mprq_buf_addr(rep, strd_n);
1626 wqe->addr = rte_cpu_to_be_64((uintptr_t)addr);
1627 /* If there's only one MR, no need to replace LKey in WQE. */
1628 if (unlikely(mlx5_mr_btree_len(&rxq->mr_ctrl.cache_bh) > 1))
1629 wqe->lkey = mlx5_rx_addr2mr(rxq, (uintptr_t)addr);
1630 /* Stash a mbuf for next replacement. */
1631 if (likely(!rte_mempool_get(rxq->mprq_mp, (void **)&rep)))
1632 rxq->mprq_repl = rep;
1634 rxq->mprq_repl = NULL;
1638 * DPDK callback for RX with Multi-Packet RQ support.
1641 * Generic pointer to RX queue structure.
1643 * Array to store received packets.
1645 * Maximum number of packets in array.
1648 * Number of packets successfully received (<= pkts_n).
1651 mlx5_rx_burst_mprq(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1653 struct mlx5_rxq_data *rxq = dpdk_rxq;
1654 const unsigned int strd_n = 1 << rxq->strd_num_n;
1655 const unsigned int strd_sz = 1 << rxq->strd_sz_n;
1656 const unsigned int strd_shift =
1657 MLX5_MPRQ_STRIDE_SHIFT_BYTE * rxq->strd_shift_en;
1658 const unsigned int cq_mask = (1 << rxq->cqe_n) - 1;
1659 const unsigned int wq_mask = (1 << rxq->elts_n) - 1;
1660 volatile struct mlx5_cqe *cqe = &(*rxq->cqes)[rxq->cq_ci & cq_mask];
1662 uint32_t rq_ci = rxq->rq_ci;
1663 uint16_t consumed_strd = rxq->consumed_strd;
1664 struct mlx5_mprq_buf *buf = (*rxq->mprq_bufs)[rq_ci & wq_mask];
1666 while (i < pkts_n) {
1667 struct rte_mbuf *pkt;
1675 int32_t hdrm_overlap;
1676 volatile struct mlx5_mini_cqe8 *mcqe = NULL;
1677 uint32_t rss_hash_res = 0;
1679 if (consumed_strd == strd_n) {
1680 /* Replace WQE only if the buffer is still in use. */
1681 if (rte_atomic16_read(&buf->refcnt) > 1) {
1682 mprq_buf_replace(rxq, rq_ci & wq_mask, strd_n);
1683 /* Release the old buffer. */
1684 mlx5_mprq_buf_free(buf);
1685 } else if (unlikely(rxq->mprq_repl == NULL)) {
1686 struct mlx5_mprq_buf *rep;
1689 * Currently, the MPRQ mempool is out of buffer
1690 * and doing memcpy regardless of the size of Rx
1691 * packet. Retry allocation to get back to
1694 if (!rte_mempool_get(rxq->mprq_mp,
1696 rxq->mprq_repl = rep;
1698 /* Advance to the next WQE. */
1701 buf = (*rxq->mprq_bufs)[rq_ci & wq_mask];
1703 cqe = &(*rxq->cqes)[rxq->cq_ci & cq_mask];
1704 ret = mlx5_rx_poll_len(rxq, cqe, cq_mask, &mcqe);
1708 strd_cnt = (byte_cnt & MLX5_MPRQ_STRIDE_NUM_MASK) >>
1709 MLX5_MPRQ_STRIDE_NUM_SHIFT;
1710 MLX5_ASSERT(strd_cnt);
1711 consumed_strd += strd_cnt;
1712 if (byte_cnt & MLX5_MPRQ_FILLER_MASK)
1715 rss_hash_res = rte_be_to_cpu_32(cqe->rx_hash_res);
1716 strd_idx = rte_be_to_cpu_16(cqe->wqe_counter);
1718 /* mini-CQE for MPRQ doesn't have hash result. */
1719 strd_idx = rte_be_to_cpu_16(mcqe->stride_idx);
1721 MLX5_ASSERT(strd_idx < strd_n);
1722 MLX5_ASSERT(!((rte_be_to_cpu_16(cqe->wqe_id) ^ rq_ci) &
1724 pkt = rte_pktmbuf_alloc(rxq->mp);
1725 if (unlikely(pkt == NULL)) {
1726 ++rxq->stats.rx_nombuf;
1729 len = (byte_cnt & MLX5_MPRQ_LEN_MASK) >> MLX5_MPRQ_LEN_SHIFT;
1730 MLX5_ASSERT((int)len >= (rxq->crc_present << 2));
1731 if (rxq->crc_present)
1732 len -= RTE_ETHER_CRC_LEN;
1733 offset = strd_idx * strd_sz + strd_shift;
1734 addr = RTE_PTR_ADD(mlx5_mprq_buf_addr(buf, strd_n), offset);
1735 hdrm_overlap = len + RTE_PKTMBUF_HEADROOM - strd_cnt * strd_sz;
1737 * Memcpy packets to the target mbuf if:
1738 * - The size of packet is smaller than mprq_max_memcpy_len.
1739 * - Out of buffer in the Mempool for Multi-Packet RQ.
1740 * - The packet's stride overlaps a headroom and scatter is off.
1742 if (len <= rxq->mprq_max_memcpy_len ||
1743 rxq->mprq_repl == NULL ||
1744 (hdrm_overlap > 0 && !rxq->strd_scatter_en)) {
1745 if (likely(rte_pktmbuf_tailroom(pkt) >= len)) {
1746 rte_memcpy(rte_pktmbuf_mtod(pkt, void *),
1748 DATA_LEN(pkt) = len;
1749 } else if (rxq->strd_scatter_en) {
1750 struct rte_mbuf *prev = pkt;
1752 RTE_MIN(rte_pktmbuf_tailroom(pkt), len);
1753 uint32_t rem_len = len - seg_len;
1755 rte_memcpy(rte_pktmbuf_mtod(pkt, void *),
1757 DATA_LEN(pkt) = seg_len;
1759 struct rte_mbuf *next =
1760 rte_pktmbuf_alloc(rxq->mp);
1762 if (unlikely(next == NULL)) {
1763 rte_pktmbuf_free(pkt);
1764 ++rxq->stats.rx_nombuf;
1768 SET_DATA_OFF(next, 0);
1769 addr = RTE_PTR_ADD(addr, seg_len);
1771 (rte_pktmbuf_tailroom(next),
1774 (rte_pktmbuf_mtod(next, void *),
1776 DATA_LEN(next) = seg_len;
1782 rte_pktmbuf_free_seg(pkt);
1783 ++rxq->stats.idropped;
1787 rte_iova_t buf_iova;
1788 struct rte_mbuf_ext_shared_info *shinfo;
1789 uint16_t buf_len = strd_cnt * strd_sz;
1792 /* Increment the refcnt of the whole chunk. */
1793 rte_atomic16_add_return(&buf->refcnt, 1);
1794 MLX5_ASSERT((uint16_t)rte_atomic16_read(&buf->refcnt) <=
1796 buf_addr = RTE_PTR_SUB(addr, RTE_PKTMBUF_HEADROOM);
1798 * MLX5 device doesn't use iova but it is necessary in a
1799 * case where the Rx packet is transmitted via a
1802 buf_iova = rte_mempool_virt2iova(buf) +
1803 RTE_PTR_DIFF(buf_addr, buf);
1804 shinfo = &buf->shinfos[strd_idx];
1805 rte_mbuf_ext_refcnt_set(shinfo, 1);
1807 * EXT_ATTACHED_MBUF will be set to pkt->ol_flags when
1808 * attaching the stride to mbuf and more offload flags
1809 * will be added below by calling rxq_cq_to_mbuf().
1810 * Other fields will be overwritten.
1812 rte_pktmbuf_attach_extbuf(pkt, buf_addr, buf_iova,
1814 /* Set mbuf head-room. */
1815 SET_DATA_OFF(pkt, RTE_PKTMBUF_HEADROOM);
1816 MLX5_ASSERT(pkt->ol_flags == EXT_ATTACHED_MBUF);
1817 MLX5_ASSERT(rte_pktmbuf_tailroom(pkt) >=
1818 len - (hdrm_overlap > 0 ? hdrm_overlap : 0));
1819 DATA_LEN(pkt) = len;
1821 * Copy the last fragment of a packet (up to headroom
1822 * size bytes) in case there is a stride overlap with
1823 * a next packet's headroom. Allocate a separate mbuf
1824 * to store this fragment and link it. Scatter is on.
1826 if (hdrm_overlap > 0) {
1827 MLX5_ASSERT(rxq->strd_scatter_en);
1828 struct rte_mbuf *seg =
1829 rte_pktmbuf_alloc(rxq->mp);
1831 if (unlikely(seg == NULL)) {
1832 rte_pktmbuf_free_seg(pkt);
1833 ++rxq->stats.rx_nombuf;
1836 SET_DATA_OFF(seg, 0);
1837 rte_memcpy(rte_pktmbuf_mtod(seg, void *),
1838 RTE_PTR_ADD(addr, len - hdrm_overlap),
1840 DATA_LEN(seg) = hdrm_overlap;
1841 DATA_LEN(pkt) = len - hdrm_overlap;
1846 rxq_cq_to_mbuf(rxq, pkt, cqe, rss_hash_res);
1847 if (cqe->lro_num_seg > 1) {
1848 mlx5_lro_update_hdr(addr, cqe, len);
1849 pkt->ol_flags |= PKT_RX_LRO;
1850 pkt->tso_segsz = len / cqe->lro_num_seg;
1853 PORT(pkt) = rxq->port_id;
1854 #ifdef MLX5_PMD_SOFT_COUNTERS
1855 /* Increment bytes counter. */
1856 rxq->stats.ibytes += PKT_LEN(pkt);
1858 /* Return packet. */
1863 /* Update the consumer indexes. */
1864 rxq->consumed_strd = consumed_strd;
1866 *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1867 if (rq_ci != rxq->rq_ci) {
1870 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
1872 #ifdef MLX5_PMD_SOFT_COUNTERS
1873 /* Increment packets counter. */
1874 rxq->stats.ipackets += i;
1880 * Dummy DPDK callback for TX.
1882 * This function is used to temporarily replace the real callback during
1883 * unsafe control operations on the queue, or in case of error.
1886 * Generic pointer to TX queue structure.
1888 * Packets to transmit.
1890 * Number of packets in array.
1893 * Number of packets successfully transmitted (<= pkts_n).
1896 removed_tx_burst(void *dpdk_txq __rte_unused,
1897 struct rte_mbuf **pkts __rte_unused,
1898 uint16_t pkts_n __rte_unused)
1905 * Dummy DPDK callback for RX.
1907 * This function is used to temporarily replace the real callback during
1908 * unsafe control operations on the queue, or in case of error.
1911 * Generic pointer to RX queue structure.
1913 * Array to store received packets.
1915 * Maximum number of packets in array.
1918 * Number of packets successfully received (<= pkts_n).
1921 removed_rx_burst(void *dpdk_txq __rte_unused,
1922 struct rte_mbuf **pkts __rte_unused,
1923 uint16_t pkts_n __rte_unused)
1930 * Vectorized Rx/Tx routines are not compiled in when required vector
1931 * instructions are not supported on a target architecture. The following null
1932 * stubs are needed for linkage when those are not included outside of this file
1933 * (e.g. mlx5_rxtx_vec_sse.c for x86).
1937 mlx5_rx_burst_vec(void *dpdk_txq __rte_unused,
1938 struct rte_mbuf **pkts __rte_unused,
1939 uint16_t pkts_n __rte_unused)
1945 mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq __rte_unused)
1951 mlx5_check_vec_rx_support(struct rte_eth_dev *dev __rte_unused)
1957 * Free the mbufs from the linear array of pointers.
1960 * Pointer to array of packets to be free.
1962 * Number of packets to be freed.
1964 * Configured Tx offloads mask. It is fully defined at
1965 * compile time and may be used for optimization.
1967 static __rte_always_inline void
1968 mlx5_tx_free_mbuf(struct rte_mbuf **restrict pkts,
1969 unsigned int pkts_n,
1970 unsigned int olx __rte_unused)
1972 struct rte_mempool *pool = NULL;
1973 struct rte_mbuf **p_free = NULL;
1974 struct rte_mbuf *mbuf;
1975 unsigned int n_free = 0;
1978 * The implemented algorithm eliminates
1979 * copying pointers to temporary array
1980 * for rte_mempool_put_bulk() calls.
1983 MLX5_ASSERT(pkts_n);
1987 * Decrement mbuf reference counter, detach
1988 * indirect and external buffers if needed.
1990 mbuf = rte_pktmbuf_prefree_seg(*pkts);
1991 if (likely(mbuf != NULL)) {
1992 MLX5_ASSERT(mbuf == *pkts);
1993 if (likely(n_free != 0)) {
1994 if (unlikely(pool != mbuf->pool))
1995 /* From different pool. */
1998 /* Start new scan array. */
2005 if (unlikely(pkts_n == 0)) {
2011 * This happens if mbuf is still referenced.
2012 * We can't put it back to the pool, skip.
2016 if (unlikely(n_free != 0))
2017 /* There is some array to free.*/
2019 if (unlikely(pkts_n == 0))
2020 /* Last mbuf, nothing to free. */
2026 * This loop is implemented to avoid multiple
2027 * inlining of rte_mempool_put_bulk().
2030 MLX5_ASSERT(p_free);
2031 MLX5_ASSERT(n_free);
2033 * Free the array of pre-freed mbufs
2034 * belonging to the same memory pool.
2036 rte_mempool_put_bulk(pool, (void *)p_free, n_free);
2037 if (unlikely(mbuf != NULL)) {
2038 /* There is the request to start new scan. */
2043 if (likely(pkts_n != 0))
2046 * This is the last mbuf to be freed.
2047 * Do one more loop iteration to complete.
2048 * This is rare case of the last unique mbuf.
2053 if (likely(pkts_n == 0))
2062 * Free the mbuf from the elts ring buffer till new tail.
2065 * Pointer to Tx queue structure.
2067 * Index in elts to free up to, becomes new elts tail.
2069 * Configured Tx offloads mask. It is fully defined at
2070 * compile time and may be used for optimization.
2072 static __rte_always_inline void
2073 mlx5_tx_free_elts(struct mlx5_txq_data *restrict txq,
2075 unsigned int olx __rte_unused)
2077 uint16_t n_elts = tail - txq->elts_tail;
2079 MLX5_ASSERT(n_elts);
2080 MLX5_ASSERT(n_elts <= txq->elts_s);
2082 * Implement a loop to support ring buffer wraparound
2083 * with single inlining of mlx5_tx_free_mbuf().
2088 part = txq->elts_s - (txq->elts_tail & txq->elts_m);
2089 part = RTE_MIN(part, n_elts);
2091 MLX5_ASSERT(part <= txq->elts_s);
2092 mlx5_tx_free_mbuf(&txq->elts[txq->elts_tail & txq->elts_m],
2094 txq->elts_tail += part;
2100 * Store the mbuf being sent into elts ring buffer.
2101 * On Tx completion these mbufs will be freed.
2104 * Pointer to Tx queue structure.
2106 * Pointer to array of packets to be stored.
2108 * Number of packets to be stored.
2110 * Configured Tx offloads mask. It is fully defined at
2111 * compile time and may be used for optimization.
2113 static __rte_always_inline void
2114 mlx5_tx_copy_elts(struct mlx5_txq_data *restrict txq,
2115 struct rte_mbuf **restrict pkts,
2116 unsigned int pkts_n,
2117 unsigned int olx __rte_unused)
2120 struct rte_mbuf **elts = (struct rte_mbuf **)txq->elts;
2123 MLX5_ASSERT(pkts_n);
2124 part = txq->elts_s - (txq->elts_head & txq->elts_m);
2126 MLX5_ASSERT(part <= txq->elts_s);
2127 /* This code is a good candidate for vectorizing with SIMD. */
2128 rte_memcpy((void *)(elts + (txq->elts_head & txq->elts_m)),
2130 RTE_MIN(part, pkts_n) * sizeof(struct rte_mbuf *));
2131 txq->elts_head += pkts_n;
2132 if (unlikely(part < pkts_n))
2133 /* The copy is wrapping around the elts array. */
2134 rte_memcpy((void *)elts, (void *)(pkts + part),
2135 (pkts_n - part) * sizeof(struct rte_mbuf *));
2139 * Update completion queue consuming index via doorbell
2140 * and flush the completed data buffers.
2143 * Pointer to TX queue structure.
2144 * @param valid CQE pointer
2145 * if not NULL update txq->wqe_pi and flush the buffers
2147 * Configured Tx offloads mask. It is fully defined at
2148 * compile time and may be used for optimization.
2150 static __rte_always_inline void
2151 mlx5_tx_comp_flush(struct mlx5_txq_data *restrict txq,
2152 volatile struct mlx5_cqe *last_cqe,
2153 unsigned int olx __rte_unused)
2155 if (likely(last_cqe != NULL)) {
2158 txq->wqe_pi = rte_be_to_cpu_16(last_cqe->wqe_counter);
2159 tail = txq->fcqs[(txq->cq_ci - 1) & txq->cqe_m];
2160 if (likely(tail != txq->elts_tail)) {
2161 mlx5_tx_free_elts(txq, tail, olx);
2162 MLX5_ASSERT(tail == txq->elts_tail);
2168 * Manage TX completions. This routine checks the CQ for
2169 * arrived CQEs, deduces the last accomplished WQE in SQ,
2170 * updates SQ producing index and frees all completed mbufs.
2173 * Pointer to TX queue structure.
2175 * Configured Tx offloads mask. It is fully defined at
2176 * compile time and may be used for optimization.
2178 * NOTE: not inlined intentionally, it makes tx_burst
2179 * routine smaller, simple and faster - from experiments.
2182 mlx5_tx_handle_completion(struct mlx5_txq_data *restrict txq,
2183 unsigned int olx __rte_unused)
2185 unsigned int count = MLX5_TX_COMP_MAX_CQE;
2186 volatile struct mlx5_cqe *last_cqe = NULL;
2187 bool ring_doorbell = false;
2190 static_assert(MLX5_CQE_STATUS_HW_OWN < 0, "Must be negative value");
2191 static_assert(MLX5_CQE_STATUS_SW_OWN < 0, "Must be negative value");
2193 volatile struct mlx5_cqe *cqe;
2195 cqe = &txq->cqes[txq->cq_ci & txq->cqe_m];
2196 ret = check_cqe(cqe, txq->cqe_s, txq->cq_ci);
2197 if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) {
2198 if (likely(ret != MLX5_CQE_STATUS_ERR)) {
2199 /* No new CQEs in completion queue. */
2200 MLX5_ASSERT(ret == MLX5_CQE_STATUS_HW_OWN);
2204 * Some error occurred, try to restart.
2205 * We have no barrier after WQE related Doorbell
2206 * written, make sure all writes are completed
2207 * here, before we might perform SQ reset.
2210 ret = mlx5_tx_error_cqe_handle
2211 (txq, (volatile struct mlx5_err_cqe *)cqe);
2212 if (unlikely(ret < 0)) {
2214 * Some error occurred on queue error
2215 * handling, we do not advance the index
2216 * here, allowing to retry on next call.
2221 * We are going to fetch all entries with
2222 * MLX5_CQE_SYNDROME_WR_FLUSH_ERR status.
2223 * The send queue is supposed to be empty.
2225 ring_doorbell = true;
2227 txq->cq_pi = txq->cq_ci;
2231 /* Normal transmit completion. */
2232 MLX5_ASSERT(txq->cq_ci != txq->cq_pi);
2233 MLX5_ASSERT((txq->fcqs[txq->cq_ci & txq->cqe_m] >> 16) ==
2235 ring_doorbell = true;
2239 * We have to restrict the amount of processed CQEs
2240 * in one tx_burst routine call. The CQ may be large
2241 * and many CQEs may be updated by the NIC in one
2242 * transaction. Buffers freeing is time consuming,
2243 * multiple iterations may introduce significant
2246 if (likely(--count == 0))
2249 if (likely(ring_doorbell)) {
2250 /* Ring doorbell to notify hardware. */
2251 rte_compiler_barrier();
2252 *txq->cq_db = rte_cpu_to_be_32(txq->cq_ci);
2253 mlx5_tx_comp_flush(txq, last_cqe, olx);
2258 * Check if the completion request flag should be set in the last WQE.
2259 * Both pushed mbufs and WQEs are monitored and the completion request
2260 * flag is set if any of thresholds is reached.
2263 * Pointer to TX queue structure.
2265 * Pointer to burst routine local context.
2267 * Configured Tx offloads mask. It is fully defined at
2268 * compile time and may be used for optimization.
2270 static __rte_always_inline void
2271 mlx5_tx_request_completion(struct mlx5_txq_data *restrict txq,
2272 struct mlx5_txq_local *restrict loc,
2275 uint16_t head = txq->elts_head;
2278 part = MLX5_TXOFF_CONFIG(INLINE) ?
2279 0 : loc->pkts_sent - loc->pkts_copy;
2281 if ((uint16_t)(head - txq->elts_comp) >= MLX5_TX_COMP_THRESH ||
2282 (MLX5_TXOFF_CONFIG(INLINE) &&
2283 (uint16_t)(txq->wqe_ci - txq->wqe_comp) >= txq->wqe_thres)) {
2284 volatile struct mlx5_wqe *last = loc->wqe_last;
2287 txq->elts_comp = head;
2288 if (MLX5_TXOFF_CONFIG(INLINE))
2289 txq->wqe_comp = txq->wqe_ci;
2290 /* Request unconditional completion on last WQE. */
2291 last->cseg.flags = RTE_BE32(MLX5_COMP_ALWAYS <<
2292 MLX5_COMP_MODE_OFFSET);
2293 /* Save elts_head in dedicated free on completion queue. */
2294 #ifdef RTE_LIBRTE_MLX5_DEBUG
2295 txq->fcqs[txq->cq_pi++ & txq->cqe_m] = head |
2296 (last->cseg.opcode >> 8) << 16;
2298 txq->fcqs[txq->cq_pi++ & txq->cqe_m] = head;
2300 /* A CQE slot must always be available. */
2301 MLX5_ASSERT((txq->cq_pi - txq->cq_ci) <= txq->cqe_s);
2306 * DPDK callback to check the status of a tx descriptor.
2311 * The index of the descriptor in the ring.
2314 * The status of the tx descriptor.
2317 mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset)
2319 struct mlx5_txq_data *restrict txq = tx_queue;
2322 mlx5_tx_handle_completion(txq, 0);
2323 used = txq->elts_head - txq->elts_tail;
2325 return RTE_ETH_TX_DESC_FULL;
2326 return RTE_ETH_TX_DESC_DONE;
2330 * Build the Control Segment with specified opcode:
2331 * - MLX5_OPCODE_SEND
2332 * - MLX5_OPCODE_ENHANCED_MPSW
2336 * Pointer to TX queue structure.
2338 * Pointer to burst routine local context.
2340 * Pointer to WQE to fill with built Control Segment.
2342 * Supposed length of WQE in segments.
2344 * SQ WQE opcode to put into Control Segment.
2346 * Configured Tx offloads mask. It is fully defined at
2347 * compile time and may be used for optimization.
2349 static __rte_always_inline void
2350 mlx5_tx_cseg_init(struct mlx5_txq_data *restrict txq,
2351 struct mlx5_txq_local *restrict loc __rte_unused,
2352 struct mlx5_wqe *restrict wqe,
2354 unsigned int opcode,
2355 unsigned int olx __rte_unused)
2357 struct mlx5_wqe_cseg *restrict cs = &wqe->cseg;
2359 /* For legacy MPW replace the EMPW by TSO with modifier. */
2360 if (MLX5_TXOFF_CONFIG(MPW) && opcode == MLX5_OPCODE_ENHANCED_MPSW)
2361 opcode = MLX5_OPCODE_TSO | MLX5_OPC_MOD_MPW << 24;
2362 cs->opcode = rte_cpu_to_be_32((txq->wqe_ci << 8) | opcode);
2363 cs->sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
2364 cs->flags = RTE_BE32(MLX5_COMP_ONLY_FIRST_ERR <<
2365 MLX5_COMP_MODE_OFFSET);
2366 cs->misc = RTE_BE32(0);
2370 * Build the Ethernet Segment without inlined data.
2371 * Supports Software Parser, Checksums and VLAN
2372 * insertion Tx offload features.
2375 * Pointer to TX queue structure.
2377 * Pointer to burst routine local context.
2379 * Pointer to WQE to fill with built Ethernet Segment.
2381 * Configured Tx offloads mask. It is fully defined at
2382 * compile time and may be used for optimization.
2384 static __rte_always_inline void
2385 mlx5_tx_eseg_none(struct mlx5_txq_data *restrict txq __rte_unused,
2386 struct mlx5_txq_local *restrict loc,
2387 struct mlx5_wqe *restrict wqe,
2390 struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2394 * Calculate and set check sum flags first, dword field
2395 * in segment may be shared with Software Parser flags.
2397 csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2398 es->flags = rte_cpu_to_le_32(csum);
2400 * Calculate and set Software Parser offsets and flags.
2401 * These flags a set for custom UDP and IP tunnel packets.
2403 es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2404 /* Fill metadata field if needed. */
2405 es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2406 loc->mbuf->ol_flags & PKT_TX_DYNF_METADATA ?
2407 *RTE_FLOW_DYNF_METADATA(loc->mbuf) : 0 : 0;
2408 /* Engage VLAN tag insertion feature if requested. */
2409 if (MLX5_TXOFF_CONFIG(VLAN) &&
2410 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
2412 * We should get here only if device support
2413 * this feature correctly.
2415 MLX5_ASSERT(txq->vlan_en);
2416 es->inline_hdr = rte_cpu_to_be_32(MLX5_ETH_WQE_VLAN_INSERT |
2417 loc->mbuf->vlan_tci);
2419 es->inline_hdr = RTE_BE32(0);
2424 * Build the Ethernet Segment with minimal inlined data
2425 * of MLX5_ESEG_MIN_INLINE_SIZE bytes length. This is
2426 * used to fill the gap in single WQEBB WQEs.
2427 * Supports Software Parser, Checksums and VLAN
2428 * insertion Tx offload features.
2431 * Pointer to TX queue structure.
2433 * Pointer to burst routine local context.
2435 * Pointer to WQE to fill with built Ethernet Segment.
2437 * Length of VLAN tag insertion if any.
2439 * Configured Tx offloads mask. It is fully defined at
2440 * compile time and may be used for optimization.
2442 static __rte_always_inline void
2443 mlx5_tx_eseg_dmin(struct mlx5_txq_data *restrict txq __rte_unused,
2444 struct mlx5_txq_local *restrict loc,
2445 struct mlx5_wqe *restrict wqe,
2449 struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2451 uint8_t *psrc, *pdst;
2454 * Calculate and set check sum flags first, dword field
2455 * in segment may be shared with Software Parser flags.
2457 csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2458 es->flags = rte_cpu_to_le_32(csum);
2460 * Calculate and set Software Parser offsets and flags.
2461 * These flags a set for custom UDP and IP tunnel packets.
2463 es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2464 /* Fill metadata field if needed. */
2465 es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2466 loc->mbuf->ol_flags & PKT_TX_DYNF_METADATA ?
2467 *RTE_FLOW_DYNF_METADATA(loc->mbuf) : 0 : 0;
2468 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2470 sizeof(rte_v128u32_t)),
2471 "invalid Ethernet Segment data size");
2472 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2474 sizeof(struct rte_vlan_hdr) +
2475 2 * RTE_ETHER_ADDR_LEN),
2476 "invalid Ethernet Segment data size");
2477 psrc = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
2478 es->inline_hdr_sz = RTE_BE16(MLX5_ESEG_MIN_INLINE_SIZE);
2479 es->inline_data = *(unaligned_uint16_t *)psrc;
2480 psrc += sizeof(uint16_t);
2481 pdst = (uint8_t *)(es + 1);
2482 if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2483 /* Implement VLAN tag insertion as part inline data. */
2484 memcpy(pdst, psrc, 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t));
2485 pdst += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2486 psrc += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2487 /* Insert VLAN ethertype + VLAN tag. */
2488 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2489 ((RTE_ETHER_TYPE_VLAN << 16) |
2490 loc->mbuf->vlan_tci);
2491 pdst += sizeof(struct rte_vlan_hdr);
2492 /* Copy the rest two bytes from packet data. */
2493 MLX5_ASSERT(pdst == RTE_PTR_ALIGN(pdst, sizeof(uint16_t)));
2494 *(uint16_t *)pdst = *(unaligned_uint16_t *)psrc;
2496 /* Fill the gap in the title WQEBB with inline data. */
2497 rte_mov16(pdst, psrc);
2502 * Build the Ethernet Segment with entire packet
2503 * data inlining. Checks the boundary of WQEBB and
2504 * ring buffer wrapping, supports Software Parser,
2505 * Checksums and VLAN insertion Tx offload features.
2508 * Pointer to TX queue structure.
2510 * Pointer to burst routine local context.
2512 * Pointer to WQE to fill with built Ethernet Segment.
2514 * Length of VLAN tag insertion if any.
2516 * Length of data to inline (VLAN included, if any).
2518 * TSO flag, set mss field from the packet.
2520 * Configured Tx offloads mask. It is fully defined at
2521 * compile time and may be used for optimization.
2524 * Pointer to the next Data Segment (aligned and wrapped around).
2526 static __rte_always_inline struct mlx5_wqe_dseg *
2527 mlx5_tx_eseg_data(struct mlx5_txq_data *restrict txq,
2528 struct mlx5_txq_local *restrict loc,
2529 struct mlx5_wqe *restrict wqe,
2535 struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2537 uint8_t *psrc, *pdst;
2541 * Calculate and set check sum flags first, dword field
2542 * in segment may be shared with Software Parser flags.
2544 csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2547 csum |= loc->mbuf->tso_segsz;
2548 es->flags = rte_cpu_to_be_32(csum);
2550 es->flags = rte_cpu_to_le_32(csum);
2553 * Calculate and set Software Parser offsets and flags.
2554 * These flags a set for custom UDP and IP tunnel packets.
2556 es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2557 /* Fill metadata field if needed. */
2558 es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2559 loc->mbuf->ol_flags & PKT_TX_DYNF_METADATA ?
2560 *RTE_FLOW_DYNF_METADATA(loc->mbuf) : 0 : 0;
2561 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2563 sizeof(rte_v128u32_t)),
2564 "invalid Ethernet Segment data size");
2565 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2567 sizeof(struct rte_vlan_hdr) +
2568 2 * RTE_ETHER_ADDR_LEN),
2569 "invalid Ethernet Segment data size");
2570 psrc = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
2571 es->inline_hdr_sz = rte_cpu_to_be_16(inlen);
2572 es->inline_data = *(unaligned_uint16_t *)psrc;
2573 psrc += sizeof(uint16_t);
2574 pdst = (uint8_t *)(es + 1);
2575 if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2576 /* Implement VLAN tag insertion as part inline data. */
2577 memcpy(pdst, psrc, 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t));
2578 pdst += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2579 psrc += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2580 /* Insert VLAN ethertype + VLAN tag. */
2581 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2582 ((RTE_ETHER_TYPE_VLAN << 16) |
2583 loc->mbuf->vlan_tci);
2584 pdst += sizeof(struct rte_vlan_hdr);
2585 /* Copy the rest two bytes from packet data. */
2586 MLX5_ASSERT(pdst == RTE_PTR_ALIGN(pdst, sizeof(uint16_t)));
2587 *(uint16_t *)pdst = *(unaligned_uint16_t *)psrc;
2588 psrc += sizeof(uint16_t);
2590 /* Fill the gap in the title WQEBB with inline data. */
2591 rte_mov16(pdst, psrc);
2592 psrc += sizeof(rte_v128u32_t);
2594 pdst = (uint8_t *)(es + 2);
2595 MLX5_ASSERT(inlen >= MLX5_ESEG_MIN_INLINE_SIZE);
2596 MLX5_ASSERT(pdst < (uint8_t *)txq->wqes_end);
2597 inlen -= MLX5_ESEG_MIN_INLINE_SIZE;
2599 MLX5_ASSERT(pdst == RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE));
2600 return (struct mlx5_wqe_dseg *)pdst;
2603 * The WQEBB space availability is checked by caller.
2604 * Here we should be aware of WQE ring buffer wraparound only.
2606 part = (uint8_t *)txq->wqes_end - pdst;
2607 part = RTE_MIN(part, inlen);
2609 rte_memcpy(pdst, psrc, part);
2611 if (likely(!inlen)) {
2613 * If return value is not used by the caller
2614 * the code below will be optimized out.
2617 pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2618 if (unlikely(pdst >= (uint8_t *)txq->wqes_end))
2619 pdst = (uint8_t *)txq->wqes;
2620 return (struct mlx5_wqe_dseg *)pdst;
2622 pdst = (uint8_t *)txq->wqes;
2629 * Copy data from chain of mbuf to the specified linear buffer.
2630 * Checksums and VLAN insertion Tx offload features. If data
2631 * from some mbuf copied completely this mbuf is freed. Local
2632 * structure is used to keep the byte stream state.
2635 * Pointer to the destination linear buffer.
2637 * Pointer to burst routine local context.
2639 * Length of data to be copied.
2641 * Length of data to be copied ignoring no inline hint.
2643 * Configured Tx offloads mask. It is fully defined at
2644 * compile time and may be used for optimization.
2647 * Number of actual copied data bytes. This is always greater than or
2648 * equal to must parameter and might be lesser than len in no inline
2649 * hint flag is encountered.
2651 static __rte_always_inline unsigned int
2652 mlx5_tx_mseg_memcpy(uint8_t *pdst,
2653 struct mlx5_txq_local *restrict loc,
2656 unsigned int olx __rte_unused)
2658 struct rte_mbuf *mbuf;
2659 unsigned int part, dlen, copy = 0;
2663 MLX5_ASSERT(must <= len);
2665 /* Allow zero length packets, must check first. */
2666 dlen = rte_pktmbuf_data_len(loc->mbuf);
2667 if (dlen <= loc->mbuf_off) {
2668 /* Exhausted packet, just free. */
2670 loc->mbuf = mbuf->next;
2671 rte_pktmbuf_free_seg(mbuf);
2673 MLX5_ASSERT(loc->mbuf_nseg > 1);
2674 MLX5_ASSERT(loc->mbuf);
2676 if (loc->mbuf->ol_flags & PKT_TX_DYNF_NOINLINE) {
2681 * We already copied the minimal
2682 * requested amount of data.
2687 if (diff <= rte_pktmbuf_data_len(loc->mbuf)) {
2689 * Copy only the minimal required
2690 * part of the data buffer.
2697 dlen -= loc->mbuf_off;
2698 psrc = rte_pktmbuf_mtod_offset(loc->mbuf, uint8_t *,
2700 part = RTE_MIN(len, dlen);
2701 rte_memcpy(pdst, psrc, part);
2703 loc->mbuf_off += part;
2706 if (loc->mbuf_off >= rte_pktmbuf_data_len(loc->mbuf)) {
2708 /* Exhausted packet, just free. */
2710 loc->mbuf = mbuf->next;
2711 rte_pktmbuf_free_seg(mbuf);
2713 MLX5_ASSERT(loc->mbuf_nseg >= 1);
2723 * Build the Ethernet Segment with inlined data from
2724 * multi-segment packet. Checks the boundary of WQEBB
2725 * and ring buffer wrapping, supports Software Parser,
2726 * Checksums and VLAN insertion Tx offload features.
2729 * Pointer to TX queue structure.
2731 * Pointer to burst routine local context.
2733 * Pointer to WQE to fill with built Ethernet Segment.
2735 * Length of VLAN tag insertion if any.
2737 * Length of data to inline (VLAN included, if any).
2739 * TSO flag, set mss field from the packet.
2741 * Configured Tx offloads mask. It is fully defined at
2742 * compile time and may be used for optimization.
2745 * Pointer to the next Data Segment (aligned and
2746 * possible NOT wrapped around - caller should do
2747 * wrapping check on its own).
2749 static __rte_always_inline struct mlx5_wqe_dseg *
2750 mlx5_tx_eseg_mdat(struct mlx5_txq_data *restrict txq,
2751 struct mlx5_txq_local *restrict loc,
2752 struct mlx5_wqe *restrict wqe,
2758 struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2761 unsigned int part, tlen = 0;
2764 * Calculate and set check sum flags first, uint32_t field
2765 * in segment may be shared with Software Parser flags.
2767 csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2770 csum |= loc->mbuf->tso_segsz;
2771 es->flags = rte_cpu_to_be_32(csum);
2773 es->flags = rte_cpu_to_le_32(csum);
2776 * Calculate and set Software Parser offsets and flags.
2777 * These flags a set for custom UDP and IP tunnel packets.
2779 es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2780 /* Fill metadata field if needed. */
2781 es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2782 loc->mbuf->ol_flags & PKT_TX_DYNF_METADATA ?
2783 *RTE_FLOW_DYNF_METADATA(loc->mbuf) : 0 : 0;
2784 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2786 sizeof(rte_v128u32_t)),
2787 "invalid Ethernet Segment data size");
2788 static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2790 sizeof(struct rte_vlan_hdr) +
2791 2 * RTE_ETHER_ADDR_LEN),
2792 "invalid Ethernet Segment data size");
2793 MLX5_ASSERT(inlen >= MLX5_ESEG_MIN_INLINE_SIZE);
2794 pdst = (uint8_t *)&es->inline_data;
2795 if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2796 /* Implement VLAN tag insertion as part inline data. */
2797 mlx5_tx_mseg_memcpy(pdst, loc,
2798 2 * RTE_ETHER_ADDR_LEN,
2799 2 * RTE_ETHER_ADDR_LEN, olx);
2800 pdst += 2 * RTE_ETHER_ADDR_LEN;
2801 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2802 ((RTE_ETHER_TYPE_VLAN << 16) |
2803 loc->mbuf->vlan_tci);
2804 pdst += sizeof(struct rte_vlan_hdr);
2805 tlen += 2 * RTE_ETHER_ADDR_LEN + sizeof(struct rte_vlan_hdr);
2807 MLX5_ASSERT(pdst < (uint8_t *)txq->wqes_end);
2809 * The WQEBB space availability is checked by caller.
2810 * Here we should be aware of WQE ring buffer wraparound only.
2812 part = (uint8_t *)txq->wqes_end - pdst;
2813 part = RTE_MIN(part, inlen - tlen);
2819 * Copying may be interrupted inside the routine
2820 * if run into no inline hint flag.
2822 copy = tlen >= txq->inlen_mode ? 0 : (txq->inlen_mode - tlen);
2823 copy = mlx5_tx_mseg_memcpy(pdst, loc, part, copy, olx);
2825 if (likely(inlen <= tlen) || copy < part) {
2826 es->inline_hdr_sz = rte_cpu_to_be_16(tlen);
2828 pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2829 return (struct mlx5_wqe_dseg *)pdst;
2831 pdst = (uint8_t *)txq->wqes;
2832 part = inlen - tlen;
2837 * Build the Data Segment of pointer type.
2840 * Pointer to TX queue structure.
2842 * Pointer to burst routine local context.
2844 * Pointer to WQE to fill with built Data Segment.
2846 * Data buffer to point.
2848 * Data buffer length.
2850 * Configured Tx offloads mask. It is fully defined at
2851 * compile time and may be used for optimization.
2853 static __rte_always_inline void
2854 mlx5_tx_dseg_ptr(struct mlx5_txq_data *restrict txq,
2855 struct mlx5_txq_local *restrict loc,
2856 struct mlx5_wqe_dseg *restrict dseg,
2859 unsigned int olx __rte_unused)
2863 dseg->bcount = rte_cpu_to_be_32(len);
2864 dseg->lkey = mlx5_tx_mb2mr(txq, loc->mbuf);
2865 dseg->pbuf = rte_cpu_to_be_64((uintptr_t)buf);
2869 * Build the Data Segment of pointer type or inline
2870 * if data length is less than buffer in minimal
2871 * Data Segment size.
2874 * Pointer to TX queue structure.
2876 * Pointer to burst routine local context.
2878 * Pointer to WQE to fill with built Data Segment.
2880 * Data buffer to point.
2882 * Data buffer length.
2884 * Configured Tx offloads mask. It is fully defined at
2885 * compile time and may be used for optimization.
2887 static __rte_always_inline void
2888 mlx5_tx_dseg_iptr(struct mlx5_txq_data *restrict txq,
2889 struct mlx5_txq_local *restrict loc,
2890 struct mlx5_wqe_dseg *restrict dseg,
2893 unsigned int olx __rte_unused)
2899 if (len > MLX5_DSEG_MIN_INLINE_SIZE) {
2900 dseg->bcount = rte_cpu_to_be_32(len);
2901 dseg->lkey = mlx5_tx_mb2mr(txq, loc->mbuf);
2902 dseg->pbuf = rte_cpu_to_be_64((uintptr_t)buf);
2906 dseg->bcount = rte_cpu_to_be_32(len | MLX5_ETH_WQE_DATA_INLINE);
2907 /* Unrolled implementation of generic rte_memcpy. */
2908 dst = (uintptr_t)&dseg->inline_data[0];
2909 src = (uintptr_t)buf;
2911 #ifdef RTE_ARCH_STRICT_ALIGN
2912 MLX5_ASSERT(dst == RTE_PTR_ALIGN(dst, sizeof(uint32_t)));
2913 *(uint32_t *)dst = *(unaligned_uint32_t *)src;
2914 dst += sizeof(uint32_t);
2915 src += sizeof(uint32_t);
2916 *(uint32_t *)dst = *(unaligned_uint32_t *)src;
2917 dst += sizeof(uint32_t);
2918 src += sizeof(uint32_t);
2920 *(uint64_t *)dst = *(unaligned_uint64_t *)src;
2921 dst += sizeof(uint64_t);
2922 src += sizeof(uint64_t);
2926 *(uint32_t *)dst = *(unaligned_uint32_t *)src;
2927 dst += sizeof(uint32_t);
2928 src += sizeof(uint32_t);
2931 *(uint16_t *)dst = *(unaligned_uint16_t *)src;
2932 dst += sizeof(uint16_t);
2933 src += sizeof(uint16_t);
2936 *(uint8_t *)dst = *(uint8_t *)src;
2940 * Build the Data Segment of inlined data from single
2941 * segment packet, no VLAN insertion.
2944 * Pointer to TX queue structure.
2946 * Pointer to burst routine local context.
2948 * Pointer to WQE to fill with built Data Segment.
2950 * Data buffer to point.
2952 * Data buffer length.
2954 * Configured Tx offloads mask. It is fully defined at
2955 * compile time and may be used for optimization.
2958 * Pointer to the next Data Segment after inlined data.
2959 * Ring buffer wraparound check is needed. We do not
2960 * do it here because it may not be needed for the
2961 * last packet in the eMPW session.
2963 static __rte_always_inline struct mlx5_wqe_dseg *
2964 mlx5_tx_dseg_empw(struct mlx5_txq_data *restrict txq,
2965 struct mlx5_txq_local *restrict loc __rte_unused,
2966 struct mlx5_wqe_dseg *restrict dseg,
2969 unsigned int olx __rte_unused)
2974 if (!MLX5_TXOFF_CONFIG(MPW)) {
2975 /* Store the descriptor byte counter for eMPW sessions. */
2976 dseg->bcount = rte_cpu_to_be_32(len | MLX5_ETH_WQE_DATA_INLINE);
2977 pdst = &dseg->inline_data[0];
2979 /* The entire legacy MPW session counter is stored on close. */
2980 pdst = (uint8_t *)dseg;
2983 * The WQEBB space availability is checked by caller.
2984 * Here we should be aware of WQE ring buffer wraparound only.
2986 part = (uint8_t *)txq->wqes_end - pdst;
2987 part = RTE_MIN(part, len);
2989 rte_memcpy(pdst, buf, part);
2993 if (!MLX5_TXOFF_CONFIG(MPW))
2994 pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2995 /* Note: no final wraparound check here. */
2996 return (struct mlx5_wqe_dseg *)pdst;
2998 pdst = (uint8_t *)txq->wqes;
3005 * Build the Data Segment of inlined data from single
3006 * segment packet with VLAN insertion.
3009 * Pointer to TX queue structure.
3011 * Pointer to burst routine local context.
3013 * Pointer to the dseg fill with built Data Segment.
3015 * Data buffer to point.
3017 * Data buffer length.
3019 * Configured Tx offloads mask. It is fully defined at
3020 * compile time and may be used for optimization.
3023 * Pointer to the next Data Segment after inlined data.
3024 * Ring buffer wraparound check is needed.
3026 static __rte_always_inline struct mlx5_wqe_dseg *
3027 mlx5_tx_dseg_vlan(struct mlx5_txq_data *restrict txq,
3028 struct mlx5_txq_local *restrict loc __rte_unused,
3029 struct mlx5_wqe_dseg *restrict dseg,
3032 unsigned int olx __rte_unused)
3038 MLX5_ASSERT(len > MLX5_ESEG_MIN_INLINE_SIZE);
3039 static_assert(MLX5_DSEG_MIN_INLINE_SIZE ==
3040 (2 * RTE_ETHER_ADDR_LEN),
3041 "invalid Data Segment data size");
3042 if (!MLX5_TXOFF_CONFIG(MPW)) {
3043 /* Store the descriptor byte counter for eMPW sessions. */
3044 dseg->bcount = rte_cpu_to_be_32
3045 ((len + sizeof(struct rte_vlan_hdr)) |
3046 MLX5_ETH_WQE_DATA_INLINE);
3047 pdst = &dseg->inline_data[0];
3049 /* The entire legacy MPW session counter is stored on close. */
3050 pdst = (uint8_t *)dseg;
3052 memcpy(pdst, buf, MLX5_DSEG_MIN_INLINE_SIZE);
3053 buf += MLX5_DSEG_MIN_INLINE_SIZE;
3054 pdst += MLX5_DSEG_MIN_INLINE_SIZE;
3055 len -= MLX5_DSEG_MIN_INLINE_SIZE;
3056 /* Insert VLAN ethertype + VLAN tag. Pointer is aligned. */
3057 MLX5_ASSERT(pdst == RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE));
3058 if (unlikely(pdst >= (uint8_t *)txq->wqes_end))
3059 pdst = (uint8_t *)txq->wqes;
3060 *(uint32_t *)pdst = rte_cpu_to_be_32((RTE_ETHER_TYPE_VLAN << 16) |
3061 loc->mbuf->vlan_tci);
3062 pdst += sizeof(struct rte_vlan_hdr);
3064 * The WQEBB space availability is checked by caller.
3065 * Here we should be aware of WQE ring buffer wraparound only.
3067 part = (uint8_t *)txq->wqes_end - pdst;
3068 part = RTE_MIN(part, len);
3070 rte_memcpy(pdst, buf, part);
3074 if (!MLX5_TXOFF_CONFIG(MPW))
3075 pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
3076 /* Note: no final wraparound check here. */
3077 return (struct mlx5_wqe_dseg *)pdst;
3079 pdst = (uint8_t *)txq->wqes;
3086 * Build the Ethernet Segment with optionally inlined data with
3087 * VLAN insertion and following Data Segments (if any) from
3088 * multi-segment packet. Used by ordinary send and TSO.
3091 * Pointer to TX queue structure.
3093 * Pointer to burst routine local context.
3095 * Pointer to WQE to fill with built Ethernet/Data Segments.
3097 * Length of VLAN header to insert, 0 means no VLAN insertion.
3099 * Data length to inline. For TSO this parameter specifies
3100 * exact value, for ordinary send routine can be aligned by
3101 * caller to provide better WQE space saving and data buffer
3102 * start address alignment. This length includes VLAN header
3105 * Zero means ordinary send, inlined data can be extended,
3106 * otherwise this is TSO, inlined data length is fixed.
3108 * Configured Tx offloads mask. It is fully defined at
3109 * compile time and may be used for optimization.
3112 * Actual size of built WQE in segments.
3114 static __rte_always_inline unsigned int
3115 mlx5_tx_mseg_build(struct mlx5_txq_data *restrict txq,
3116 struct mlx5_txq_local *restrict loc,
3117 struct mlx5_wqe *restrict wqe,
3121 unsigned int olx __rte_unused)
3123 struct mlx5_wqe_dseg *restrict dseg;
3126 MLX5_ASSERT((rte_pktmbuf_pkt_len(loc->mbuf) + vlan) >= inlen);
3127 loc->mbuf_nseg = NB_SEGS(loc->mbuf);
3130 dseg = mlx5_tx_eseg_mdat(txq, loc, wqe, vlan, inlen, tso, olx);
3131 if (!loc->mbuf_nseg)
3134 * There are still some mbuf remaining, not inlined.
3135 * The first mbuf may be partially inlined and we
3136 * must process the possible non-zero data offset.
3138 if (loc->mbuf_off) {
3143 * Exhausted packets must be dropped before.
3144 * Non-zero offset means there are some data
3145 * remained in the packet.
3147 MLX5_ASSERT(loc->mbuf_off < rte_pktmbuf_data_len(loc->mbuf));
3148 MLX5_ASSERT(rte_pktmbuf_data_len(loc->mbuf));
3149 dptr = rte_pktmbuf_mtod_offset(loc->mbuf, uint8_t *,
3151 dlen = rte_pktmbuf_data_len(loc->mbuf) - loc->mbuf_off;
3153 * Build the pointer/minimal data Data Segment.
3154 * Do ring buffer wrapping check in advance.
3156 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
3157 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
3158 mlx5_tx_dseg_iptr(txq, loc, dseg, dptr, dlen, olx);
3159 /* Store the mbuf to be freed on completion. */
3160 MLX5_ASSERT(loc->elts_free);
3161 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3164 if (--loc->mbuf_nseg == 0)
3166 loc->mbuf = loc->mbuf->next;
3170 if (unlikely(!rte_pktmbuf_data_len(loc->mbuf))) {
3171 struct rte_mbuf *mbuf;
3173 /* Zero length segment found, just skip. */
3175 loc->mbuf = loc->mbuf->next;
3176 rte_pktmbuf_free_seg(mbuf);
3177 if (--loc->mbuf_nseg == 0)
3180 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
3181 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
3184 rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
3185 rte_pktmbuf_data_len(loc->mbuf), olx);
3186 MLX5_ASSERT(loc->elts_free);
3187 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3190 if (--loc->mbuf_nseg == 0)
3192 loc->mbuf = loc->mbuf->next;
3197 /* Calculate actual segments used from the dseg pointer. */
3198 if ((uintptr_t)wqe < (uintptr_t)dseg)
3199 ds = ((uintptr_t)dseg - (uintptr_t)wqe) / MLX5_WSEG_SIZE;
3201 ds = (((uintptr_t)dseg - (uintptr_t)wqe) +
3202 txq->wqe_s * MLX5_WQE_SIZE) / MLX5_WSEG_SIZE;
3207 * Tx one packet function for multi-segment TSO. Supports all
3208 * types of Tx offloads, uses MLX5_OPCODE_TSO to build WQEs,
3209 * sends one packet per WQE.
3211 * This routine is responsible for storing processed mbuf
3212 * into elts ring buffer and update elts_head.
3215 * Pointer to TX queue structure.
3217 * Pointer to burst routine local context.
3219 * Configured Tx offloads mask. It is fully defined at
3220 * compile time and may be used for optimization.
3223 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3224 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3225 * Local context variables partially updated.
3227 static __rte_always_inline enum mlx5_txcmp_code
3228 mlx5_tx_packet_multi_tso(struct mlx5_txq_data *restrict txq,
3229 struct mlx5_txq_local *restrict loc,
3232 struct mlx5_wqe *restrict wqe;
3233 unsigned int ds, dlen, inlen, ntcp, vlan = 0;
3236 * Calculate data length to be inlined to estimate
3237 * the required space in WQE ring buffer.
3239 dlen = rte_pktmbuf_pkt_len(loc->mbuf);
3240 if (MLX5_TXOFF_CONFIG(VLAN) && loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3241 vlan = sizeof(struct rte_vlan_hdr);
3242 inlen = loc->mbuf->l2_len + vlan +
3243 loc->mbuf->l3_len + loc->mbuf->l4_len;
3244 if (unlikely((!inlen || !loc->mbuf->tso_segsz)))
3245 return MLX5_TXCMP_CODE_ERROR;
3246 if (loc->mbuf->ol_flags & PKT_TX_TUNNEL_MASK)
3247 inlen += loc->mbuf->outer_l2_len + loc->mbuf->outer_l3_len;
3248 /* Packet must contain all TSO headers. */
3249 if (unlikely(inlen > MLX5_MAX_TSO_HEADER ||
3250 inlen <= MLX5_ESEG_MIN_INLINE_SIZE ||
3251 inlen > (dlen + vlan)))
3252 return MLX5_TXCMP_CODE_ERROR;
3253 MLX5_ASSERT(inlen >= txq->inlen_mode);
3255 * Check whether there are enough free WQEBBs:
3257 * - Ethernet Segment
3258 * - First Segment of inlined Ethernet data
3259 * - ... data continued ...
3260 * - Data Segments of pointer/min inline type
3262 ds = NB_SEGS(loc->mbuf) + 2 + (inlen -
3263 MLX5_ESEG_MIN_INLINE_SIZE +
3265 MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3266 if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3267 return MLX5_TXCMP_CODE_EXIT;
3268 /* Check for maximal WQE size. */
3269 if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3270 return MLX5_TXCMP_CODE_ERROR;
3271 #ifdef MLX5_PMD_SOFT_COUNTERS
3272 /* Update sent data bytes/packets counters. */
3273 ntcp = (dlen - (inlen - vlan) + loc->mbuf->tso_segsz - 1) /
3274 loc->mbuf->tso_segsz;
3276 * One will be added for mbuf itself
3277 * at the end of the mlx5_tx_burst from
3278 * loc->pkts_sent field.
3281 txq->stats.opackets += ntcp;
3282 txq->stats.obytes += dlen + vlan + ntcp * inlen;
3284 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3285 loc->wqe_last = wqe;
3286 mlx5_tx_cseg_init(txq, loc, wqe, 0, MLX5_OPCODE_TSO, olx);
3287 ds = mlx5_tx_mseg_build(txq, loc, wqe, vlan, inlen, 1, olx);
3288 wqe->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3289 txq->wqe_ci += (ds + 3) / 4;
3290 loc->wqe_free -= (ds + 3) / 4;
3291 return MLX5_TXCMP_CODE_MULTI;
3295 * Tx one packet function for multi-segment SEND. Supports all
3296 * types of Tx offloads, uses MLX5_OPCODE_SEND to build WQEs,
3297 * sends one packet per WQE, without any data inlining in
3300 * This routine is responsible for storing processed mbuf
3301 * into elts ring buffer and update elts_head.
3304 * Pointer to TX queue structure.
3306 * Pointer to burst routine local context.
3308 * Configured Tx offloads mask. It is fully defined at
3309 * compile time and may be used for optimization.
3312 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3313 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3314 * Local context variables partially updated.
3316 static __rte_always_inline enum mlx5_txcmp_code
3317 mlx5_tx_packet_multi_send(struct mlx5_txq_data *restrict txq,
3318 struct mlx5_txq_local *restrict loc,
3321 struct mlx5_wqe_dseg *restrict dseg;
3322 struct mlx5_wqe *restrict wqe;
3323 unsigned int ds, nseg;
3325 MLX5_ASSERT(NB_SEGS(loc->mbuf) > 1);
3327 * No inline at all, it means the CPU cycles saving
3328 * is prioritized at configuration, we should not
3329 * copy any packet data to WQE.
3331 nseg = NB_SEGS(loc->mbuf);
3333 if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3334 return MLX5_TXCMP_CODE_EXIT;
3335 /* Check for maximal WQE size. */
3336 if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3337 return MLX5_TXCMP_CODE_ERROR;
3339 * Some Tx offloads may cause an error if
3340 * packet is not long enough, check against
3341 * assumed minimal length.
3343 if (rte_pktmbuf_pkt_len(loc->mbuf) <= MLX5_ESEG_MIN_INLINE_SIZE)
3344 return MLX5_TXCMP_CODE_ERROR;
3345 #ifdef MLX5_PMD_SOFT_COUNTERS
3346 /* Update sent data bytes counter. */
3347 txq->stats.obytes += rte_pktmbuf_pkt_len(loc->mbuf);
3348 if (MLX5_TXOFF_CONFIG(VLAN) &&
3349 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3350 txq->stats.obytes += sizeof(struct rte_vlan_hdr);
3353 * SEND WQE, one WQEBB:
3354 * - Control Segment, SEND opcode
3355 * - Ethernet Segment, optional VLAN, no inline
3356 * - Data Segments, pointer only type
3358 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3359 loc->wqe_last = wqe;
3360 mlx5_tx_cseg_init(txq, loc, wqe, ds, MLX5_OPCODE_SEND, olx);
3361 mlx5_tx_eseg_none(txq, loc, wqe, olx);
3362 dseg = &wqe->dseg[0];
3364 if (unlikely(!rte_pktmbuf_data_len(loc->mbuf))) {
3365 struct rte_mbuf *mbuf;
3368 * Zero length segment found, have to
3369 * correct total size of WQE in segments.
3370 * It is supposed to be rare occasion, so
3371 * in normal case (no zero length segments)
3372 * we avoid extra writing to the Control
3376 wqe->cseg.sq_ds -= RTE_BE32(1);
3378 loc->mbuf = mbuf->next;
3379 rte_pktmbuf_free_seg(mbuf);
3385 rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
3386 rte_pktmbuf_data_len(loc->mbuf), olx);
3387 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3392 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
3393 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
3394 loc->mbuf = loc->mbuf->next;
3397 txq->wqe_ci += (ds + 3) / 4;
3398 loc->wqe_free -= (ds + 3) / 4;
3399 return MLX5_TXCMP_CODE_MULTI;
3403 * Tx one packet function for multi-segment SEND. Supports all
3404 * types of Tx offloads, uses MLX5_OPCODE_SEND to build WQEs,
3405 * sends one packet per WQE, with data inlining in
3406 * Ethernet Segment and minimal Data Segments.
3408 * This routine is responsible for storing processed mbuf
3409 * into elts ring buffer and update elts_head.
3412 * Pointer to TX queue structure.
3414 * Pointer to burst routine local context.
3416 * Configured Tx offloads mask. It is fully defined at
3417 * compile time and may be used for optimization.
3420 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3421 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3422 * Local context variables partially updated.
3424 static __rte_always_inline enum mlx5_txcmp_code
3425 mlx5_tx_packet_multi_inline(struct mlx5_txq_data *restrict txq,
3426 struct mlx5_txq_local *restrict loc,
3429 struct mlx5_wqe *restrict wqe;
3430 unsigned int ds, inlen, dlen, vlan = 0;
3432 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE));
3433 MLX5_ASSERT(NB_SEGS(loc->mbuf) > 1);
3435 * First calculate data length to be inlined
3436 * to estimate the required space for WQE.
3438 dlen = rte_pktmbuf_pkt_len(loc->mbuf);
3439 if (MLX5_TXOFF_CONFIG(VLAN) && loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3440 vlan = sizeof(struct rte_vlan_hdr);
3441 inlen = dlen + vlan;
3442 /* Check against minimal length. */
3443 if (inlen <= MLX5_ESEG_MIN_INLINE_SIZE)
3444 return MLX5_TXCMP_CODE_ERROR;
3445 MLX5_ASSERT(txq->inlen_send >= MLX5_ESEG_MIN_INLINE_SIZE);
3446 if (inlen > txq->inlen_send ||
3447 loc->mbuf->ol_flags & PKT_TX_DYNF_NOINLINE) {
3448 struct rte_mbuf *mbuf;
3453 * Packet length exceeds the allowed inline
3454 * data length, check whether the minimal
3455 * inlining is required.
3457 if (txq->inlen_mode) {
3458 MLX5_ASSERT(txq->inlen_mode >=
3459 MLX5_ESEG_MIN_INLINE_SIZE);
3460 MLX5_ASSERT(txq->inlen_mode <= txq->inlen_send);
3461 inlen = txq->inlen_mode;
3463 if (loc->mbuf->ol_flags & PKT_TX_DYNF_NOINLINE ||
3464 !vlan || txq->vlan_en) {
3466 * VLAN insertion will be done inside by HW.
3467 * It is not utmost effective - VLAN flag is
3468 * checked twice, but we should proceed the
3469 * inlining length correctly and take into
3470 * account the VLAN header being inserted.
3472 return mlx5_tx_packet_multi_send
3475 inlen = MLX5_ESEG_MIN_INLINE_SIZE;
3478 * Now we know the minimal amount of data is requested
3479 * to inline. Check whether we should inline the buffers
3480 * from the chain beginning to eliminate some mbufs.
3483 nxlen = rte_pktmbuf_data_len(mbuf);
3484 if (unlikely(nxlen <= txq->inlen_send)) {
3485 /* We can inline first mbuf at least. */
3486 if (nxlen < inlen) {
3489 /* Scan mbufs till inlen filled. */
3494 nxlen = rte_pktmbuf_data_len(mbuf);
3496 } while (unlikely(nxlen < inlen));
3497 if (unlikely(nxlen > txq->inlen_send)) {
3498 /* We cannot inline entire mbuf. */
3499 smlen = inlen - smlen;
3500 start = rte_pktmbuf_mtod_offset
3501 (mbuf, uintptr_t, smlen);
3508 /* There should be not end of packet. */
3510 nxlen = inlen + rte_pktmbuf_data_len(mbuf);
3511 } while (unlikely(nxlen < txq->inlen_send));
3513 start = rte_pktmbuf_mtod(mbuf, uintptr_t);
3515 * Check whether we can do inline to align start
3516 * address of data buffer to cacheline.
3519 start = (~start + 1) & (RTE_CACHE_LINE_SIZE - 1);
3520 if (unlikely(start)) {
3522 if (start <= txq->inlen_send)
3527 * Check whether there are enough free WQEBBs:
3529 * - Ethernet Segment
3530 * - First Segment of inlined Ethernet data
3531 * - ... data continued ...
3532 * - Data Segments of pointer/min inline type
3534 * Estimate the number of Data Segments conservatively,
3535 * supposing no any mbufs is being freed during inlining.
3537 MLX5_ASSERT(inlen <= txq->inlen_send);
3538 ds = NB_SEGS(loc->mbuf) + 2 + (inlen -
3539 MLX5_ESEG_MIN_INLINE_SIZE +
3541 MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3542 if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3543 return MLX5_TXCMP_CODE_EXIT;
3544 /* Check for maximal WQE size. */
3545 if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3546 return MLX5_TXCMP_CODE_ERROR;
3547 #ifdef MLX5_PMD_SOFT_COUNTERS
3548 /* Update sent data bytes/packets counters. */
3549 txq->stats.obytes += dlen + vlan;
3551 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3552 loc->wqe_last = wqe;
3553 mlx5_tx_cseg_init(txq, loc, wqe, 0, MLX5_OPCODE_SEND, olx);
3554 ds = mlx5_tx_mseg_build(txq, loc, wqe, vlan, inlen, 0, olx);
3555 wqe->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3556 txq->wqe_ci += (ds + 3) / 4;
3557 loc->wqe_free -= (ds + 3) / 4;
3558 return MLX5_TXCMP_CODE_MULTI;
3562 * Tx burst function for multi-segment packets. Supports all
3563 * types of Tx offloads, uses MLX5_OPCODE_SEND/TSO to build WQEs,
3564 * sends one packet per WQE. Function stops sending if it
3565 * encounters the single-segment packet.
3567 * This routine is responsible for storing processed mbuf
3568 * into elts ring buffer and update elts_head.
3571 * Pointer to TX queue structure.
3573 * Packets to transmit.
3575 * Number of packets in array.
3577 * Pointer to burst routine local context.
3579 * Configured Tx offloads mask. It is fully defined at
3580 * compile time and may be used for optimization.
3583 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3584 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3585 * MLX5_TXCMP_CODE_SINGLE - single-segment packet encountered.
3586 * MLX5_TXCMP_CODE_TSO - TSO single-segment packet encountered.
3587 * Local context variables updated.
3589 static __rte_always_inline enum mlx5_txcmp_code
3590 mlx5_tx_burst_mseg(struct mlx5_txq_data *restrict txq,
3591 struct rte_mbuf **restrict pkts,
3592 unsigned int pkts_n,
3593 struct mlx5_txq_local *restrict loc,
3596 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
3597 MLX5_ASSERT(pkts_n > loc->pkts_sent);
3598 pkts += loc->pkts_sent + 1;
3599 pkts_n -= loc->pkts_sent;
3601 enum mlx5_txcmp_code ret;
3603 MLX5_ASSERT(NB_SEGS(loc->mbuf) > 1);
3605 * Estimate the number of free elts quickly but
3606 * conservatively. Some segment may be fully inlined
3607 * and freed, ignore this here - precise estimation
3610 if (loc->elts_free < NB_SEGS(loc->mbuf))
3611 return MLX5_TXCMP_CODE_EXIT;
3612 if (MLX5_TXOFF_CONFIG(TSO) &&
3613 unlikely(loc->mbuf->ol_flags & PKT_TX_TCP_SEG)) {
3614 /* Proceed with multi-segment TSO. */
3615 ret = mlx5_tx_packet_multi_tso(txq, loc, olx);
3616 } else if (MLX5_TXOFF_CONFIG(INLINE)) {
3617 /* Proceed with multi-segment SEND with inlining. */
3618 ret = mlx5_tx_packet_multi_inline(txq, loc, olx);
3620 /* Proceed with multi-segment SEND w/o inlining. */
3621 ret = mlx5_tx_packet_multi_send(txq, loc, olx);
3623 if (ret == MLX5_TXCMP_CODE_EXIT)
3624 return MLX5_TXCMP_CODE_EXIT;
3625 if (ret == MLX5_TXCMP_CODE_ERROR)
3626 return MLX5_TXCMP_CODE_ERROR;
3627 /* WQE is built, go to the next packet. */
3630 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
3631 return MLX5_TXCMP_CODE_EXIT;
3632 loc->mbuf = *pkts++;
3634 rte_prefetch0(*pkts);
3635 if (likely(NB_SEGS(loc->mbuf) > 1))
3637 /* Here ends the series of multi-segment packets. */
3638 if (MLX5_TXOFF_CONFIG(TSO) &&
3639 unlikely(loc->mbuf->ol_flags & PKT_TX_TCP_SEG))
3640 return MLX5_TXCMP_CODE_TSO;
3641 return MLX5_TXCMP_CODE_SINGLE;
3647 * Tx burst function for single-segment packets with TSO.
3648 * Supports all types of Tx offloads, except multi-packets.
3649 * Uses MLX5_OPCODE_TSO to build WQEs, sends one packet per WQE.
3650 * Function stops sending if it encounters the multi-segment
3651 * packet or packet without TSO requested.
3653 * The routine is responsible for storing processed mbuf
3654 * into elts ring buffer and update elts_head if inline
3655 * offloads is requested due to possible early freeing
3656 * of the inlined mbufs (can not store pkts array in elts
3660 * Pointer to TX queue structure.
3662 * Packets to transmit.
3664 * Number of packets in array.
3666 * Pointer to burst routine local context.
3668 * Configured Tx offloads mask. It is fully defined at
3669 * compile time and may be used for optimization.
3672 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3673 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3674 * MLX5_TXCMP_CODE_SINGLE - single-segment packet encountered.
3675 * MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
3676 * Local context variables updated.
3678 static __rte_always_inline enum mlx5_txcmp_code
3679 mlx5_tx_burst_tso(struct mlx5_txq_data *restrict txq,
3680 struct rte_mbuf **restrict pkts,
3681 unsigned int pkts_n,
3682 struct mlx5_txq_local *restrict loc,
3685 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
3686 MLX5_ASSERT(pkts_n > loc->pkts_sent);
3687 pkts += loc->pkts_sent + 1;
3688 pkts_n -= loc->pkts_sent;
3690 struct mlx5_wqe_dseg *restrict dseg;
3691 struct mlx5_wqe *restrict wqe;
3692 unsigned int ds, dlen, hlen, ntcp, vlan = 0;
3695 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
3696 dlen = rte_pktmbuf_data_len(loc->mbuf);
3697 if (MLX5_TXOFF_CONFIG(VLAN) &&
3698 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
3699 vlan = sizeof(struct rte_vlan_hdr);
3702 * First calculate the WQE size to check
3703 * whether we have enough space in ring buffer.
3705 hlen = loc->mbuf->l2_len + vlan +
3706 loc->mbuf->l3_len + loc->mbuf->l4_len;
3707 if (unlikely((!hlen || !loc->mbuf->tso_segsz)))
3708 return MLX5_TXCMP_CODE_ERROR;
3709 if (loc->mbuf->ol_flags & PKT_TX_TUNNEL_MASK)
3710 hlen += loc->mbuf->outer_l2_len +
3711 loc->mbuf->outer_l3_len;
3712 /* Segment must contain all TSO headers. */
3713 if (unlikely(hlen > MLX5_MAX_TSO_HEADER ||
3714 hlen <= MLX5_ESEG_MIN_INLINE_SIZE ||
3715 hlen > (dlen + vlan)))
3716 return MLX5_TXCMP_CODE_ERROR;
3718 * Check whether there are enough free WQEBBs:
3720 * - Ethernet Segment
3721 * - First Segment of inlined Ethernet data
3722 * - ... data continued ...
3723 * - Finishing Data Segment of pointer type
3725 ds = 4 + (hlen - MLX5_ESEG_MIN_INLINE_SIZE +
3726 MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3727 if (loc->wqe_free < ((ds + 3) / 4))
3728 return MLX5_TXCMP_CODE_EXIT;
3729 #ifdef MLX5_PMD_SOFT_COUNTERS
3730 /* Update sent data bytes/packets counters. */
3731 ntcp = (dlen + vlan - hlen +
3732 loc->mbuf->tso_segsz - 1) /
3733 loc->mbuf->tso_segsz;
3735 * One will be added for mbuf itself at the end
3736 * of the mlx5_tx_burst from loc->pkts_sent field.
3739 txq->stats.opackets += ntcp;
3740 txq->stats.obytes += dlen + vlan + ntcp * hlen;
3743 * Build the TSO WQE:
3745 * - Ethernet Segment with hlen bytes inlined
3746 * - Data Segment of pointer type
3748 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3749 loc->wqe_last = wqe;
3750 mlx5_tx_cseg_init(txq, loc, wqe, ds,
3751 MLX5_OPCODE_TSO, olx);
3752 dseg = mlx5_tx_eseg_data(txq, loc, wqe, vlan, hlen, 1, olx);
3753 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) + hlen - vlan;
3754 dlen -= hlen - vlan;
3755 mlx5_tx_dseg_ptr(txq, loc, dseg, dptr, dlen, olx);
3757 * WQE is built, update the loop parameters
3758 * and go to the next packet.
3760 txq->wqe_ci += (ds + 3) / 4;
3761 loc->wqe_free -= (ds + 3) / 4;
3762 if (MLX5_TXOFF_CONFIG(INLINE))
3763 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3767 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
3768 return MLX5_TXCMP_CODE_EXIT;
3769 loc->mbuf = *pkts++;
3771 rte_prefetch0(*pkts);
3772 if (MLX5_TXOFF_CONFIG(MULTI) &&
3773 unlikely(NB_SEGS(loc->mbuf) > 1))
3774 return MLX5_TXCMP_CODE_MULTI;
3775 if (likely(!(loc->mbuf->ol_flags & PKT_TX_TCP_SEG)))
3776 return MLX5_TXCMP_CODE_SINGLE;
3777 /* Continue with the next TSO packet. */
3783 * Analyze the packet and select the best method to send.
3786 * Pointer to TX queue structure.
3788 * Pointer to burst routine local context.
3790 * Configured Tx offloads mask. It is fully defined at
3791 * compile time and may be used for optimization.
3793 * The predefined flag whether do complete check for
3794 * multi-segment packets and TSO.
3797 * MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
3798 * MLX5_TXCMP_CODE_TSO - TSO required, use TSO/LSO.
3799 * MLX5_TXCMP_CODE_SINGLE - single-segment packet, use SEND.
3800 * MLX5_TXCMP_CODE_EMPW - single-segment packet, use MPW.
3802 static __rte_always_inline enum mlx5_txcmp_code
3803 mlx5_tx_able_to_empw(struct mlx5_txq_data *restrict txq,
3804 struct mlx5_txq_local *restrict loc,
3808 /* Check for multi-segment packet. */
3810 MLX5_TXOFF_CONFIG(MULTI) &&
3811 unlikely(NB_SEGS(loc->mbuf) > 1))
3812 return MLX5_TXCMP_CODE_MULTI;
3813 /* Check for TSO packet. */
3815 MLX5_TXOFF_CONFIG(TSO) &&
3816 unlikely(loc->mbuf->ol_flags & PKT_TX_TCP_SEG))
3817 return MLX5_TXCMP_CODE_TSO;
3818 /* Check if eMPW is enabled at all. */
3819 if (!MLX5_TXOFF_CONFIG(EMPW))
3820 return MLX5_TXCMP_CODE_SINGLE;
3821 /* Check if eMPW can be engaged. */
3822 if (MLX5_TXOFF_CONFIG(VLAN) &&
3823 unlikely(loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) &&
3824 (!MLX5_TXOFF_CONFIG(INLINE) ||
3825 unlikely((rte_pktmbuf_data_len(loc->mbuf) +
3826 sizeof(struct rte_vlan_hdr)) > txq->inlen_empw))) {
3828 * eMPW does not support VLAN insertion offload,
3829 * we have to inline the entire packet but
3830 * packet is too long for inlining.
3832 return MLX5_TXCMP_CODE_SINGLE;
3834 return MLX5_TXCMP_CODE_EMPW;
3838 * Check the next packet attributes to match with the eMPW batch ones.
3839 * In addition, for legacy MPW the packet length is checked either.
3842 * Pointer to TX queue structure.
3844 * Pointer to Ethernet Segment of eMPW batch.
3846 * Pointer to burst routine local context.
3848 * Length of previous packet in MPW descriptor.
3850 * Configured Tx offloads mask. It is fully defined at
3851 * compile time and may be used for optimization.
3854 * true - packet match with eMPW batch attributes.
3855 * false - no match, eMPW should be restarted.
3857 static __rte_always_inline bool
3858 mlx5_tx_match_empw(struct mlx5_txq_data *restrict txq __rte_unused,
3859 struct mlx5_wqe_eseg *restrict es,
3860 struct mlx5_txq_local *restrict loc,
3864 uint8_t swp_flags = 0;
3866 /* Compare the checksum flags, if any. */
3867 if (MLX5_TXOFF_CONFIG(CSUM) &&
3868 txq_ol_cksum_to_cs(loc->mbuf) != es->cs_flags)
3870 /* Compare the Software Parser offsets and flags. */
3871 if (MLX5_TXOFF_CONFIG(SWP) &&
3872 (es->swp_offs != txq_mbuf_to_swp(loc, &swp_flags, olx) ||
3873 es->swp_flags != swp_flags))
3875 /* Fill metadata field if needed. */
3876 if (MLX5_TXOFF_CONFIG(METADATA) &&
3877 es->metadata != (loc->mbuf->ol_flags & PKT_TX_DYNF_METADATA ?
3878 *RTE_FLOW_DYNF_METADATA(loc->mbuf) : 0))
3880 /* Legacy MPW can send packets with the same lengt only. */
3881 if (MLX5_TXOFF_CONFIG(MPW) &&
3882 dlen != rte_pktmbuf_data_len(loc->mbuf))
3884 /* There must be no VLAN packets in eMPW loop. */
3885 if (MLX5_TXOFF_CONFIG(VLAN))
3886 MLX5_ASSERT(!(loc->mbuf->ol_flags & PKT_TX_VLAN_PKT));
3891 * Update send loop variables and WQE for eMPW loop
3892 * without data inlining. Number of Data Segments is
3893 * equal to the number of sent packets.
3896 * Pointer to TX queue structure.
3898 * Pointer to burst routine local context.
3900 * Number of packets/Data Segments/Packets.
3902 * Accumulated statistics, bytes sent
3904 * Configured Tx offloads mask. It is fully defined at
3905 * compile time and may be used for optimization.
3908 * true - packet match with eMPW batch attributes.
3909 * false - no match, eMPW should be restarted.
3911 static __rte_always_inline void
3912 mlx5_tx_sdone_empw(struct mlx5_txq_data *restrict txq,
3913 struct mlx5_txq_local *restrict loc,
3916 unsigned int olx __rte_unused)
3918 MLX5_ASSERT(!MLX5_TXOFF_CONFIG(INLINE));
3919 #ifdef MLX5_PMD_SOFT_COUNTERS
3920 /* Update sent data bytes counter. */
3921 txq->stats.obytes += slen;
3925 loc->elts_free -= ds;
3926 loc->pkts_sent += ds;
3928 loc->wqe_last->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3929 txq->wqe_ci += (ds + 3) / 4;
3930 loc->wqe_free -= (ds + 3) / 4;
3934 * Update send loop variables and WQE for eMPW loop
3935 * with data inlining. Gets the size of pushed descriptors
3936 * and data to the WQE.
3939 * Pointer to TX queue structure.
3941 * Pointer to burst routine local context.
3943 * Total size of descriptor/data in bytes.
3945 * Accumulated statistics, data bytes sent.
3947 * The base WQE for the eMPW/MPW descriptor.
3949 * Configured Tx offloads mask. It is fully defined at
3950 * compile time and may be used for optimization.
3953 * true - packet match with eMPW batch attributes.
3954 * false - no match, eMPW should be restarted.
3956 static __rte_always_inline void
3957 mlx5_tx_idone_empw(struct mlx5_txq_data *restrict txq,
3958 struct mlx5_txq_local *restrict loc,
3961 struct mlx5_wqe *restrict wqem,
3962 unsigned int olx __rte_unused)
3964 struct mlx5_wqe_dseg *dseg = &wqem->dseg[0];
3966 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE));
3967 #ifdef MLX5_PMD_SOFT_COUNTERS
3968 /* Update sent data bytes counter. */
3969 txq->stats.obytes += slen;
3973 if (MLX5_TXOFF_CONFIG(MPW) && dseg->bcount == RTE_BE32(0)) {
3975 * If the legacy MPW session contains the inline packets
3976 * we should set the only inline data segment length
3977 * and align the total length to the segment size.
3979 MLX5_ASSERT(len > sizeof(dseg->bcount));
3980 dseg->bcount = rte_cpu_to_be_32((len - sizeof(dseg->bcount)) |
3981 MLX5_ETH_WQE_DATA_INLINE);
3982 len = (len + MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE + 2;
3985 * The session is not legacy MPW or contains the
3986 * data buffer pointer segments.
3988 MLX5_ASSERT((len % MLX5_WSEG_SIZE) == 0);
3989 len = len / MLX5_WSEG_SIZE + 2;
3991 wqem->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | len);
3992 txq->wqe_ci += (len + 3) / 4;
3993 loc->wqe_free -= (len + 3) / 4;
3994 loc->wqe_last = wqem;
3998 * The set of Tx burst functions for single-segment packets
3999 * without TSO and with Multi-Packet Writing feature support.
4000 * Supports all types of Tx offloads, except multi-packets
4003 * Uses MLX5_OPCODE_EMPW to build WQEs if possible and sends
4004 * as many packet per WQE as it can. If eMPW is not configured
4005 * or packet can not be sent with eMPW (VLAN insertion) the
4006 * ordinary SEND opcode is used and only one packet placed
4009 * Functions stop sending if it encounters the multi-segment
4010 * packet or packet with TSO requested.
4012 * The routines are responsible for storing processed mbuf
4013 * into elts ring buffer and update elts_head if inlining
4014 * offload is requested. Otherwise the copying mbufs to elts
4015 * can be postponed and completed at the end of burst routine.
4018 * Pointer to TX queue structure.
4020 * Packets to transmit.
4022 * Number of packets in array.
4024 * Pointer to burst routine local context.
4026 * Configured Tx offloads mask. It is fully defined at
4027 * compile time and may be used for optimization.
4030 * MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
4031 * MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
4032 * MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
4033 * MLX5_TXCMP_CODE_TSO - TSO packet encountered.
4034 * MLX5_TXCMP_CODE_SINGLE - used inside functions set.
4035 * MLX5_TXCMP_CODE_EMPW - used inside functions set.
4037 * Local context variables updated.
4040 * The routine sends packets with MLX5_OPCODE_EMPW
4041 * without inlining, this is dedicated optimized branch.
4042 * No VLAN insertion is supported.
4044 static __rte_always_inline enum mlx5_txcmp_code
4045 mlx5_tx_burst_empw_simple(struct mlx5_txq_data *restrict txq,
4046 struct rte_mbuf **restrict pkts,
4047 unsigned int pkts_n,
4048 struct mlx5_txq_local *restrict loc,
4052 * Subroutine is the part of mlx5_tx_burst_single()
4053 * and sends single-segment packet with eMPW opcode
4054 * without data inlining.
4056 MLX5_ASSERT(!MLX5_TXOFF_CONFIG(INLINE));
4057 MLX5_ASSERT(MLX5_TXOFF_CONFIG(EMPW));
4058 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
4059 MLX5_ASSERT(pkts_n > loc->pkts_sent);
4060 static_assert(MLX5_EMPW_MIN_PACKETS >= 2, "invalid min size");
4061 pkts += loc->pkts_sent + 1;
4062 pkts_n -= loc->pkts_sent;
4064 struct mlx5_wqe_dseg *restrict dseg;
4065 struct mlx5_wqe_eseg *restrict eseg;
4066 enum mlx5_txcmp_code ret;
4067 unsigned int part, loop;
4068 unsigned int slen = 0;
4071 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
4072 part = RTE_MIN(pkts_n, MLX5_TXOFF_CONFIG(MPW) ?
4073 MLX5_MPW_MAX_PACKETS :
4074 MLX5_EMPW_MAX_PACKETS);
4075 if (unlikely(loc->elts_free < part)) {
4076 /* We have no enough elts to save all mbufs. */
4077 if (unlikely(loc->elts_free < MLX5_EMPW_MIN_PACKETS))
4078 return MLX5_TXCMP_CODE_EXIT;
4079 /* But we still able to send at least minimal eMPW. */
4080 part = loc->elts_free;
4082 /* Check whether we have enough WQEs */
4083 if (unlikely(loc->wqe_free < ((2 + part + 3) / 4))) {
4084 if (unlikely(loc->wqe_free <
4085 ((2 + MLX5_EMPW_MIN_PACKETS + 3) / 4)))
4086 return MLX5_TXCMP_CODE_EXIT;
4087 part = (loc->wqe_free * 4) - 2;
4089 if (likely(part > 1))
4090 rte_prefetch0(*pkts);
4091 loc->wqe_last = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4093 * Build eMPW title WQEBB:
4094 * - Control Segment, eMPW opcode
4095 * - Ethernet Segment, no inline
4097 mlx5_tx_cseg_init(txq, loc, loc->wqe_last, part + 2,
4098 MLX5_OPCODE_ENHANCED_MPSW, olx);
4099 mlx5_tx_eseg_none(txq, loc, loc->wqe_last,
4100 olx & ~MLX5_TXOFF_CONFIG_VLAN);
4101 eseg = &loc->wqe_last->eseg;
4102 dseg = &loc->wqe_last->dseg[0];
4104 /* Store the packet length for legacy MPW. */
4105 if (MLX5_TXOFF_CONFIG(MPW))
4106 eseg->mss = rte_cpu_to_be_16
4107 (rte_pktmbuf_data_len(loc->mbuf));
4109 uint32_t dlen = rte_pktmbuf_data_len(loc->mbuf);
4110 #ifdef MLX5_PMD_SOFT_COUNTERS
4111 /* Update sent data bytes counter. */
4116 rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
4118 if (unlikely(--loop == 0))
4120 loc->mbuf = *pkts++;
4121 if (likely(loop > 1))
4122 rte_prefetch0(*pkts);
4123 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4125 * Unroll the completion code to avoid
4126 * returning variable value - it results in
4127 * unoptimized sequent checking in caller.
4129 if (ret == MLX5_TXCMP_CODE_MULTI) {
4131 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
4132 if (unlikely(!loc->elts_free ||
4134 return MLX5_TXCMP_CODE_EXIT;
4135 return MLX5_TXCMP_CODE_MULTI;
4137 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
4138 if (ret == MLX5_TXCMP_CODE_TSO) {
4140 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
4141 if (unlikely(!loc->elts_free ||
4143 return MLX5_TXCMP_CODE_EXIT;
4144 return MLX5_TXCMP_CODE_TSO;
4146 if (ret == MLX5_TXCMP_CODE_SINGLE) {
4148 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
4149 if (unlikely(!loc->elts_free ||
4151 return MLX5_TXCMP_CODE_EXIT;
4152 return MLX5_TXCMP_CODE_SINGLE;
4154 if (ret != MLX5_TXCMP_CODE_EMPW) {
4157 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
4158 return MLX5_TXCMP_CODE_ERROR;
4161 * Check whether packet parameters coincide
4162 * within assumed eMPW batch:
4163 * - check sum settings
4165 * - software parser settings
4166 * - packets length (legacy MPW only)
4168 if (!mlx5_tx_match_empw(txq, eseg, loc, dlen, olx)) {
4171 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
4172 if (unlikely(!loc->elts_free ||
4174 return MLX5_TXCMP_CODE_EXIT;
4178 /* Packet attributes match, continue the same eMPW. */
4180 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
4181 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
4183 /* eMPW is built successfully, update loop parameters. */
4185 MLX5_ASSERT(pkts_n >= part);
4186 #ifdef MLX5_PMD_SOFT_COUNTERS
4187 /* Update sent data bytes counter. */
4188 txq->stats.obytes += slen;
4190 loc->elts_free -= part;
4191 loc->pkts_sent += part;
4192 txq->wqe_ci += (2 + part + 3) / 4;
4193 loc->wqe_free -= (2 + part + 3) / 4;
4195 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
4196 return MLX5_TXCMP_CODE_EXIT;
4197 loc->mbuf = *pkts++;
4198 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4199 if (unlikely(ret != MLX5_TXCMP_CODE_EMPW))
4201 /* Continue sending eMPW batches. */
4207 * The routine sends packets with MLX5_OPCODE_EMPW
4208 * with inlining, optionally supports VLAN insertion.
4210 static __rte_always_inline enum mlx5_txcmp_code
4211 mlx5_tx_burst_empw_inline(struct mlx5_txq_data *restrict txq,
4212 struct rte_mbuf **restrict pkts,
4213 unsigned int pkts_n,
4214 struct mlx5_txq_local *restrict loc,
4218 * Subroutine is the part of mlx5_tx_burst_single()
4219 * and sends single-segment packet with eMPW opcode
4220 * with data inlining.
4222 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE));
4223 MLX5_ASSERT(MLX5_TXOFF_CONFIG(EMPW));
4224 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
4225 MLX5_ASSERT(pkts_n > loc->pkts_sent);
4226 static_assert(MLX5_EMPW_MIN_PACKETS >= 2, "invalid min size");
4227 pkts += loc->pkts_sent + 1;
4228 pkts_n -= loc->pkts_sent;
4230 struct mlx5_wqe_dseg *restrict dseg;
4231 struct mlx5_wqe *restrict wqem;
4232 enum mlx5_txcmp_code ret;
4233 unsigned int room, part, nlim;
4234 unsigned int slen = 0;
4236 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
4238 * Limits the amount of packets in one WQE
4239 * to improve CQE latency generation.
4241 nlim = RTE_MIN(pkts_n, MLX5_TXOFF_CONFIG(MPW) ?
4242 MLX5_MPW_INLINE_MAX_PACKETS :
4243 MLX5_EMPW_MAX_PACKETS);
4244 /* Check whether we have minimal amount WQEs */
4245 if (unlikely(loc->wqe_free <
4246 ((2 + MLX5_EMPW_MIN_PACKETS + 3) / 4)))
4247 return MLX5_TXCMP_CODE_EXIT;
4248 if (likely(pkts_n > 1))
4249 rte_prefetch0(*pkts);
4250 wqem = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4252 * Build eMPW title WQEBB:
4253 * - Control Segment, eMPW opcode, zero DS
4254 * - Ethernet Segment, no inline
4256 mlx5_tx_cseg_init(txq, loc, wqem, 0,
4257 MLX5_OPCODE_ENHANCED_MPSW, olx);
4258 mlx5_tx_eseg_none(txq, loc, wqem,
4259 olx & ~MLX5_TXOFF_CONFIG_VLAN);
4260 dseg = &wqem->dseg[0];
4261 /* Store the packet length for legacy MPW. */
4262 if (MLX5_TXOFF_CONFIG(MPW))
4263 wqem->eseg.mss = rte_cpu_to_be_16
4264 (rte_pktmbuf_data_len(loc->mbuf));
4265 room = RTE_MIN(MLX5_WQE_SIZE_MAX / MLX5_WQE_SIZE,
4266 loc->wqe_free) * MLX5_WQE_SIZE -
4267 MLX5_WQE_CSEG_SIZE -
4269 /* Limit the room for legacy MPW sessions for performance. */
4270 if (MLX5_TXOFF_CONFIG(MPW))
4271 room = RTE_MIN(room,
4272 RTE_MAX(txq->inlen_empw +
4273 sizeof(dseg->bcount) +
4274 (MLX5_TXOFF_CONFIG(VLAN) ?
4275 sizeof(struct rte_vlan_hdr) : 0),
4276 MLX5_MPW_INLINE_MAX_PACKETS *
4277 MLX5_WQE_DSEG_SIZE));
4278 /* Build WQE till we have space, packets and resources. */
4281 uint32_t dlen = rte_pktmbuf_data_len(loc->mbuf);
4282 uint8_t *dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
4285 MLX5_ASSERT(room >= MLX5_WQE_DSEG_SIZE);
4286 MLX5_ASSERT((room % MLX5_WQE_DSEG_SIZE) == 0);
4287 MLX5_ASSERT((uintptr_t)dseg < (uintptr_t)txq->wqes_end);
4289 * Some Tx offloads may cause an error if
4290 * packet is not long enough, check against
4291 * assumed minimal length.
4293 if (unlikely(dlen <= MLX5_ESEG_MIN_INLINE_SIZE)) {
4295 if (unlikely(!part))
4296 return MLX5_TXCMP_CODE_ERROR;
4298 * We have some successfully built
4299 * packet Data Segments to send.
4301 mlx5_tx_idone_empw(txq, loc, part,
4303 return MLX5_TXCMP_CODE_ERROR;
4305 /* Inline or not inline - that's the Question. */
4306 if (dlen > txq->inlen_empw ||
4307 loc->mbuf->ol_flags & PKT_TX_DYNF_NOINLINE)
4309 if (MLX5_TXOFF_CONFIG(MPW)) {
4310 if (dlen > txq->inlen_send)
4314 /* Open new inline MPW session. */
4315 tlen += sizeof(dseg->bcount);
4316 dseg->bcount = RTE_BE32(0);
4318 (dseg, sizeof(dseg->bcount));
4321 * No pointer and inline descriptor
4322 * intermix for legacy MPW sessions.
4324 if (wqem->dseg[0].bcount)
4328 tlen = sizeof(dseg->bcount) + dlen;
4330 /* Inline entire packet, optional VLAN insertion. */
4331 if (MLX5_TXOFF_CONFIG(VLAN) &&
4332 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
4334 * The packet length must be checked in
4335 * mlx5_tx_able_to_empw() and packet
4336 * fits into inline length guaranteed.
4339 sizeof(struct rte_vlan_hdr)) <=
4341 tlen += sizeof(struct rte_vlan_hdr);
4344 dseg = mlx5_tx_dseg_vlan(txq, loc, dseg,
4346 #ifdef MLX5_PMD_SOFT_COUNTERS
4347 /* Update sent data bytes counter. */
4348 slen += sizeof(struct rte_vlan_hdr);
4353 dseg = mlx5_tx_dseg_empw(txq, loc, dseg,
4356 if (!MLX5_TXOFF_CONFIG(MPW))
4357 tlen = RTE_ALIGN(tlen, MLX5_WSEG_SIZE);
4358 MLX5_ASSERT(room >= tlen);
4361 * Packet data are completely inlined,
4362 * free the packet immediately.
4364 rte_pktmbuf_free_seg(loc->mbuf);
4368 * No pointer and inline descriptor
4369 * intermix for legacy MPW sessions.
4371 if (MLX5_TXOFF_CONFIG(MPW) &&
4373 wqem->dseg[0].bcount == RTE_BE32(0))
4376 * Not inlinable VLAN packets are
4377 * proceeded outside of this routine.
4379 MLX5_ASSERT(room >= MLX5_WQE_DSEG_SIZE);
4380 if (MLX5_TXOFF_CONFIG(VLAN))
4381 MLX5_ASSERT(!(loc->mbuf->ol_flags &
4383 mlx5_tx_dseg_ptr(txq, loc, dseg, dptr, dlen, olx);
4384 /* We have to store mbuf in elts.*/
4385 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
4386 room -= MLX5_WQE_DSEG_SIZE;
4387 /* Ring buffer wraparound is checked at the loop end.*/
4390 #ifdef MLX5_PMD_SOFT_COUNTERS
4391 /* Update sent data bytes counter. */
4397 if (unlikely(!pkts_n || !loc->elts_free)) {
4399 * We have no resources/packets to
4400 * continue build descriptors.
4403 mlx5_tx_idone_empw(txq, loc, part,
4405 return MLX5_TXCMP_CODE_EXIT;
4407 loc->mbuf = *pkts++;
4408 if (likely(pkts_n > 1))
4409 rte_prefetch0(*pkts);
4410 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4412 * Unroll the completion code to avoid
4413 * returning variable value - it results in
4414 * unoptimized sequent checking in caller.
4416 if (ret == MLX5_TXCMP_CODE_MULTI) {
4418 mlx5_tx_idone_empw(txq, loc, part,
4420 if (unlikely(!loc->elts_free ||
4422 return MLX5_TXCMP_CODE_EXIT;
4423 return MLX5_TXCMP_CODE_MULTI;
4425 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
4426 if (ret == MLX5_TXCMP_CODE_TSO) {
4428 mlx5_tx_idone_empw(txq, loc, part,
4430 if (unlikely(!loc->elts_free ||
4432 return MLX5_TXCMP_CODE_EXIT;
4433 return MLX5_TXCMP_CODE_TSO;
4435 if (ret == MLX5_TXCMP_CODE_SINGLE) {
4437 mlx5_tx_idone_empw(txq, loc, part,
4439 if (unlikely(!loc->elts_free ||
4441 return MLX5_TXCMP_CODE_EXIT;
4442 return MLX5_TXCMP_CODE_SINGLE;
4444 if (ret != MLX5_TXCMP_CODE_EMPW) {
4447 mlx5_tx_idone_empw(txq, loc, part,
4449 return MLX5_TXCMP_CODE_ERROR;
4451 /* Check if we have minimal room left. */
4453 if (unlikely(!nlim || room < MLX5_WQE_DSEG_SIZE))
4456 * Check whether packet parameters coincide
4457 * within assumed eMPW batch:
4458 * - check sum settings
4460 * - software parser settings
4461 * - packets length (legacy MPW only)
4463 if (!mlx5_tx_match_empw(txq, &wqem->eseg,
4466 /* Packet attributes match, continue the same eMPW. */
4467 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
4468 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
4471 * We get here to close an existing eMPW
4472 * session and start the new one.
4474 MLX5_ASSERT(pkts_n);
4476 if (unlikely(!part))
4477 return MLX5_TXCMP_CODE_EXIT;
4478 mlx5_tx_idone_empw(txq, loc, part, slen, wqem, olx);
4479 if (unlikely(!loc->elts_free ||
4481 return MLX5_TXCMP_CODE_EXIT;
4482 /* Continue the loop with new eMPW session. */
4488 * The routine sends packets with ordinary MLX5_OPCODE_SEND.
4489 * Data inlining and VLAN insertion are supported.
4491 static __rte_always_inline enum mlx5_txcmp_code
4492 mlx5_tx_burst_single_send(struct mlx5_txq_data *restrict txq,
4493 struct rte_mbuf **restrict pkts,
4494 unsigned int pkts_n,
4495 struct mlx5_txq_local *restrict loc,
4499 * Subroutine is the part of mlx5_tx_burst_single()
4500 * and sends single-segment packet with SEND opcode.
4502 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
4503 MLX5_ASSERT(pkts_n > loc->pkts_sent);
4504 pkts += loc->pkts_sent + 1;
4505 pkts_n -= loc->pkts_sent;
4507 struct mlx5_wqe *restrict wqe;
4508 enum mlx5_txcmp_code ret;
4510 MLX5_ASSERT(NB_SEGS(loc->mbuf) == 1);
4511 if (MLX5_TXOFF_CONFIG(INLINE)) {
4512 unsigned int inlen, vlan = 0;
4514 inlen = rte_pktmbuf_data_len(loc->mbuf);
4515 if (MLX5_TXOFF_CONFIG(VLAN) &&
4516 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
4517 vlan = sizeof(struct rte_vlan_hdr);
4519 static_assert((sizeof(struct rte_vlan_hdr) +
4520 sizeof(struct rte_ether_hdr)) ==
4521 MLX5_ESEG_MIN_INLINE_SIZE,
4522 "invalid min inline data size");
4525 * If inlining is enabled at configuration time
4526 * the limit must be not less than minimal size.
4527 * Otherwise we would do extra check for data
4528 * size to avoid crashes due to length overflow.
4530 MLX5_ASSERT(txq->inlen_send >=
4531 MLX5_ESEG_MIN_INLINE_SIZE);
4532 if (inlen <= txq->inlen_send) {
4533 unsigned int seg_n, wqe_n;
4535 rte_prefetch0(rte_pktmbuf_mtod
4536 (loc->mbuf, uint8_t *));
4537 /* Check against minimal length. */
4538 if (inlen <= MLX5_ESEG_MIN_INLINE_SIZE)
4539 return MLX5_TXCMP_CODE_ERROR;
4540 if (loc->mbuf->ol_flags &
4541 PKT_TX_DYNF_NOINLINE) {
4543 * The hint flag not to inline packet
4544 * data is set. Check whether we can
4547 if ((!MLX5_TXOFF_CONFIG(EMPW) &&
4549 (MLX5_TXOFF_CONFIG(MPW) &&
4552 * The hardware requires the
4553 * minimal inline data header.
4555 goto single_min_inline;
4557 if (MLX5_TXOFF_CONFIG(VLAN) &&
4558 vlan && !txq->vlan_en) {
4560 * We must insert VLAN tag
4561 * by software means.
4563 goto single_part_inline;
4565 goto single_no_inline;
4568 * Completely inlined packet data WQE:
4569 * - Control Segment, SEND opcode
4570 * - Ethernet Segment, no VLAN insertion
4571 * - Data inlined, VLAN optionally inserted
4572 * - Alignment to MLX5_WSEG_SIZE
4573 * Have to estimate amount of WQEBBs
4575 seg_n = (inlen + 3 * MLX5_WSEG_SIZE -
4576 MLX5_ESEG_MIN_INLINE_SIZE +
4577 MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
4578 /* Check if there are enough WQEBBs. */
4579 wqe_n = (seg_n + 3) / 4;
4580 if (wqe_n > loc->wqe_free)
4581 return MLX5_TXCMP_CODE_EXIT;
4582 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4583 loc->wqe_last = wqe;
4584 mlx5_tx_cseg_init(txq, loc, wqe, seg_n,
4585 MLX5_OPCODE_SEND, olx);
4586 mlx5_tx_eseg_data(txq, loc, wqe,
4587 vlan, inlen, 0, olx);
4588 txq->wqe_ci += wqe_n;
4589 loc->wqe_free -= wqe_n;
4591 * Packet data are completely inlined,
4592 * free the packet immediately.
4594 rte_pktmbuf_free_seg(loc->mbuf);
4595 } else if ((!MLX5_TXOFF_CONFIG(EMPW) ||
4596 MLX5_TXOFF_CONFIG(MPW)) &&
4599 * If minimal inlining is requested the eMPW
4600 * feature should be disabled due to data is
4601 * inlined into Ethernet Segment, which can
4602 * not contain inlined data for eMPW due to
4603 * segment shared for all packets.
4605 struct mlx5_wqe_dseg *restrict dseg;
4610 * The inline-mode settings require
4611 * to inline the specified amount of
4612 * data bytes to the Ethernet Segment.
4613 * We should check the free space in
4614 * WQE ring buffer to inline partially.
4617 MLX5_ASSERT(txq->inlen_send >= txq->inlen_mode);
4618 MLX5_ASSERT(inlen > txq->inlen_mode);
4619 MLX5_ASSERT(txq->inlen_mode >=
4620 MLX5_ESEG_MIN_INLINE_SIZE);
4622 * Check whether there are enough free WQEBBs:
4624 * - Ethernet Segment
4625 * - First Segment of inlined Ethernet data
4626 * - ... data continued ...
4627 * - Finishing Data Segment of pointer type
4629 ds = (MLX5_WQE_CSEG_SIZE +
4630 MLX5_WQE_ESEG_SIZE +
4631 MLX5_WQE_DSEG_SIZE +
4633 MLX5_ESEG_MIN_INLINE_SIZE +
4634 MLX5_WQE_DSEG_SIZE +
4635 MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
4636 if (loc->wqe_free < ((ds + 3) / 4))
4637 return MLX5_TXCMP_CODE_EXIT;
4639 * Build the ordinary SEND WQE:
4641 * - Ethernet Segment, inline inlen_mode bytes
4642 * - Data Segment of pointer type
4644 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4645 loc->wqe_last = wqe;
4646 mlx5_tx_cseg_init(txq, loc, wqe, ds,
4647 MLX5_OPCODE_SEND, olx);
4648 dseg = mlx5_tx_eseg_data(txq, loc, wqe, vlan,
4651 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) +
4652 txq->inlen_mode - vlan;
4653 inlen -= txq->inlen_mode;
4654 mlx5_tx_dseg_ptr(txq, loc, dseg,
4657 * WQE is built, update the loop parameters
4658 * and got to the next packet.
4660 txq->wqe_ci += (ds + 3) / 4;
4661 loc->wqe_free -= (ds + 3) / 4;
4662 /* We have to store mbuf in elts.*/
4663 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE));
4664 txq->elts[txq->elts_head++ & txq->elts_m] =
4672 * Partially inlined packet data WQE, we have
4673 * some space in title WQEBB, we can fill it
4674 * with some packet data. It takes one WQEBB,
4675 * it is available, no extra space check:
4676 * - Control Segment, SEND opcode
4677 * - Ethernet Segment, no VLAN insertion
4678 * - MLX5_ESEG_MIN_INLINE_SIZE bytes of Data
4679 * - Data Segment, pointer type
4681 * We also get here if VLAN insertion is not
4682 * supported by HW, the inline is enabled.
4685 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4686 loc->wqe_last = wqe;
4687 mlx5_tx_cseg_init(txq, loc, wqe, 4,
4688 MLX5_OPCODE_SEND, olx);
4689 mlx5_tx_eseg_dmin(txq, loc, wqe, vlan, olx);
4690 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) +
4691 MLX5_ESEG_MIN_INLINE_SIZE - vlan;
4693 * The length check is performed above, by
4694 * comparing with txq->inlen_send. We should
4695 * not get overflow here.
4697 MLX5_ASSERT(inlen > MLX5_ESEG_MIN_INLINE_SIZE);
4698 dlen = inlen - MLX5_ESEG_MIN_INLINE_SIZE;
4699 mlx5_tx_dseg_ptr(txq, loc, &wqe->dseg[1],
4703 /* We have to store mbuf in elts.*/
4704 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE));
4705 txq->elts[txq->elts_head++ & txq->elts_m] =
4709 #ifdef MLX5_PMD_SOFT_COUNTERS
4710 /* Update sent data bytes counter. */
4711 txq->stats.obytes += vlan +
4712 rte_pktmbuf_data_len(loc->mbuf);
4716 * No inline at all, it means the CPU cycles saving
4717 * is prioritized at configuration, we should not
4718 * copy any packet data to WQE.
4720 * SEND WQE, one WQEBB:
4721 * - Control Segment, SEND opcode
4722 * - Ethernet Segment, optional VLAN, no inline
4723 * - Data Segment, pointer type
4726 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4727 loc->wqe_last = wqe;
4728 mlx5_tx_cseg_init(txq, loc, wqe, 3,
4729 MLX5_OPCODE_SEND, olx);
4730 mlx5_tx_eseg_none(txq, loc, wqe, olx);
4732 (txq, loc, &wqe->dseg[0],
4733 rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
4734 rte_pktmbuf_data_len(loc->mbuf), olx);
4738 * We should not store mbuf pointer in elts
4739 * if no inlining is configured, this is done
4740 * by calling routine in a batch copy.
4742 MLX5_ASSERT(!MLX5_TXOFF_CONFIG(INLINE));
4744 #ifdef MLX5_PMD_SOFT_COUNTERS
4745 /* Update sent data bytes counter. */
4746 txq->stats.obytes += rte_pktmbuf_data_len(loc->mbuf);
4747 if (MLX5_TXOFF_CONFIG(VLAN) &&
4748 loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
4749 txq->stats.obytes +=
4750 sizeof(struct rte_vlan_hdr);
4755 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
4756 return MLX5_TXCMP_CODE_EXIT;
4757 loc->mbuf = *pkts++;
4759 rte_prefetch0(*pkts);
4760 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4761 if (unlikely(ret != MLX5_TXCMP_CODE_SINGLE))
4767 static __rte_always_inline enum mlx5_txcmp_code
4768 mlx5_tx_burst_single(struct mlx5_txq_data *restrict txq,
4769 struct rte_mbuf **restrict pkts,
4770 unsigned int pkts_n,
4771 struct mlx5_txq_local *restrict loc,
4774 enum mlx5_txcmp_code ret;
4776 ret = mlx5_tx_able_to_empw(txq, loc, olx, false);
4777 if (ret == MLX5_TXCMP_CODE_SINGLE)
4779 MLX5_ASSERT(ret == MLX5_TXCMP_CODE_EMPW);
4781 /* Optimize for inline/no inline eMPW send. */
4782 ret = (MLX5_TXOFF_CONFIG(INLINE)) ?
4783 mlx5_tx_burst_empw_inline
4784 (txq, pkts, pkts_n, loc, olx) :
4785 mlx5_tx_burst_empw_simple
4786 (txq, pkts, pkts_n, loc, olx);
4787 if (ret != MLX5_TXCMP_CODE_SINGLE)
4789 /* The resources to send one packet should remain. */
4790 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
4792 ret = mlx5_tx_burst_single_send(txq, pkts, pkts_n, loc, olx);
4793 MLX5_ASSERT(ret != MLX5_TXCMP_CODE_SINGLE);
4794 if (ret != MLX5_TXCMP_CODE_EMPW)
4796 /* The resources to send one packet should remain. */
4797 MLX5_ASSERT(loc->elts_free && loc->wqe_free);
4802 * DPDK Tx callback template. This is configured template
4803 * used to generate routines optimized for specified offload setup.
4804 * One of this generated functions is chosen at SQ configuration
4808 * Generic pointer to TX queue structure.
4810 * Packets to transmit.
4812 * Number of packets in array.
4814 * Configured offloads mask, presents the bits of MLX5_TXOFF_CONFIG_xxx
4815 * values. Should be static to take compile time static configuration
4819 * Number of packets successfully transmitted (<= pkts_n).
4821 static __rte_always_inline uint16_t
4822 mlx5_tx_burst_tmpl(struct mlx5_txq_data *restrict txq,
4823 struct rte_mbuf **restrict pkts,
4827 struct mlx5_txq_local loc;
4828 enum mlx5_txcmp_code ret;
4831 MLX5_ASSERT(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
4832 MLX5_ASSERT(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
4833 if (unlikely(!pkts_n))
4837 loc.wqe_last = NULL;
4840 loc.pkts_loop = loc.pkts_sent;
4842 * Check if there are some CQEs, if any:
4843 * - process an encountered errors
4844 * - process the completed WQEs
4845 * - free related mbufs
4846 * - doorbell the NIC about processed CQEs
4848 rte_prefetch0(*(pkts + loc.pkts_sent));
4849 mlx5_tx_handle_completion(txq, olx);
4851 * Calculate the number of available resources - elts and WQEs.
4852 * There are two possible different scenarios:
4853 * - no data inlining into WQEs, one WQEBB may contains up to
4854 * four packets, in this case elts become scarce resource
4855 * - data inlining into WQEs, one packet may require multiple
4856 * WQEBBs, the WQEs become the limiting factor.
4858 MLX5_ASSERT(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
4859 loc.elts_free = txq->elts_s -
4860 (uint16_t)(txq->elts_head - txq->elts_tail);
4861 MLX5_ASSERT(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
4862 loc.wqe_free = txq->wqe_s -
4863 (uint16_t)(txq->wqe_ci - txq->wqe_pi);
4864 if (unlikely(!loc.elts_free || !loc.wqe_free))
4868 * Fetch the packet from array. Usually this is
4869 * the first packet in series of multi/single
4872 loc.mbuf = *(pkts + loc.pkts_sent);
4873 /* Dedicated branch for multi-segment packets. */
4874 if (MLX5_TXOFF_CONFIG(MULTI) &&
4875 unlikely(NB_SEGS(loc.mbuf) > 1)) {
4877 * Multi-segment packet encountered.
4878 * Hardware is able to process it only
4879 * with SEND/TSO opcodes, one packet
4880 * per WQE, do it in dedicated routine.
4883 MLX5_ASSERT(loc.pkts_sent >= loc.pkts_copy);
4884 part = loc.pkts_sent - loc.pkts_copy;
4885 if (!MLX5_TXOFF_CONFIG(INLINE) && part) {
4887 * There are some single-segment mbufs not
4888 * stored in elts. The mbufs must be in the
4889 * same order as WQEs, so we must copy the
4890 * mbufs to elts here, before the coming
4891 * multi-segment packet mbufs is appended.
4893 mlx5_tx_copy_elts(txq, pkts + loc.pkts_copy,
4895 loc.pkts_copy = loc.pkts_sent;
4897 MLX5_ASSERT(pkts_n > loc.pkts_sent);
4898 ret = mlx5_tx_burst_mseg(txq, pkts, pkts_n, &loc, olx);
4899 if (!MLX5_TXOFF_CONFIG(INLINE))
4900 loc.pkts_copy = loc.pkts_sent;
4902 * These returned code checks are supposed
4903 * to be optimized out due to routine inlining.
4905 if (ret == MLX5_TXCMP_CODE_EXIT) {
4907 * The routine returns this code when
4908 * all packets are sent or there is no
4909 * enough resources to complete request.
4913 if (ret == MLX5_TXCMP_CODE_ERROR) {
4915 * The routine returns this code when
4916 * some error in the incoming packets
4919 txq->stats.oerrors++;
4922 if (ret == MLX5_TXCMP_CODE_SINGLE) {
4924 * The single-segment packet was encountered
4925 * in the array, try to send it with the
4926 * best optimized way, possible engaging eMPW.
4928 goto enter_send_single;
4930 if (MLX5_TXOFF_CONFIG(TSO) &&
4931 ret == MLX5_TXCMP_CODE_TSO) {
4933 * The single-segment TSO packet was
4934 * encountered in the array.
4936 goto enter_send_tso;
4938 /* We must not get here. Something is going wrong. */
4940 txq->stats.oerrors++;
4943 /* Dedicated branch for single-segment TSO packets. */
4944 if (MLX5_TXOFF_CONFIG(TSO) &&
4945 unlikely(loc.mbuf->ol_flags & PKT_TX_TCP_SEG)) {
4947 * TSO might require special way for inlining
4948 * (dedicated parameters) and is sent with
4949 * MLX5_OPCODE_TSO opcode only, provide this
4950 * in dedicated branch.
4953 MLX5_ASSERT(NB_SEGS(loc.mbuf) == 1);
4954 MLX5_ASSERT(pkts_n > loc.pkts_sent);
4955 ret = mlx5_tx_burst_tso(txq, pkts, pkts_n, &loc, olx);
4957 * These returned code checks are supposed
4958 * to be optimized out due to routine inlining.
4960 if (ret == MLX5_TXCMP_CODE_EXIT)
4962 if (ret == MLX5_TXCMP_CODE_ERROR) {
4963 txq->stats.oerrors++;
4966 if (ret == MLX5_TXCMP_CODE_SINGLE)
4967 goto enter_send_single;
4968 if (MLX5_TXOFF_CONFIG(MULTI) &&
4969 ret == MLX5_TXCMP_CODE_MULTI) {
4971 * The multi-segment packet was
4972 * encountered in the array.
4974 goto enter_send_multi;
4976 /* We must not get here. Something is going wrong. */
4978 txq->stats.oerrors++;
4982 * The dedicated branch for the single-segment packets
4983 * without TSO. Often these ones can be sent using
4984 * MLX5_OPCODE_EMPW with multiple packets in one WQE.
4985 * The routine builds the WQEs till it encounters
4986 * the TSO or multi-segment packet (in case if these
4987 * offloads are requested at SQ configuration time).
4990 MLX5_ASSERT(pkts_n > loc.pkts_sent);
4991 ret = mlx5_tx_burst_single(txq, pkts, pkts_n, &loc, olx);
4993 * These returned code checks are supposed
4994 * to be optimized out due to routine inlining.
4996 if (ret == MLX5_TXCMP_CODE_EXIT)
4998 if (ret == MLX5_TXCMP_CODE_ERROR) {
4999 txq->stats.oerrors++;
5002 if (MLX5_TXOFF_CONFIG(MULTI) &&
5003 ret == MLX5_TXCMP_CODE_MULTI) {
5005 * The multi-segment packet was
5006 * encountered in the array.
5008 goto enter_send_multi;
5010 if (MLX5_TXOFF_CONFIG(TSO) &&
5011 ret == MLX5_TXCMP_CODE_TSO) {
5013 * The single-segment TSO packet was
5014 * encountered in the array.
5016 goto enter_send_tso;
5018 /* We must not get here. Something is going wrong. */
5020 txq->stats.oerrors++;
5024 * Main Tx loop is completed, do the rest:
5025 * - set completion request if thresholds are reached
5026 * - doorbell the hardware
5027 * - copy the rest of mbufs to elts (if any)
5029 MLX5_ASSERT(MLX5_TXOFF_CONFIG(INLINE) ||
5030 loc.pkts_sent >= loc.pkts_copy);
5031 /* Take a shortcut if nothing is sent. */
5032 if (unlikely(loc.pkts_sent == loc.pkts_loop))
5034 /* Request CQE generation if limits are reached. */
5035 mlx5_tx_request_completion(txq, &loc, olx);
5037 * Ring QP doorbell immediately after WQE building completion
5038 * to improve latencies. The pure software related data treatment
5039 * can be completed after doorbell. Tx CQEs for this SQ are
5040 * processed in this thread only by the polling.
5042 * The rdma core library can map doorbell register in two ways,
5043 * depending on the environment variable "MLX5_SHUT_UP_BF":
5045 * - as regular cached memory, the variable is either missing or
5046 * set to zero. This type of mapping may cause the significant
5047 * doorbell register writing latency and requires explicit
5048 * memory write barrier to mitigate this issue and prevent
5051 * - as non-cached memory, the variable is present and set to
5052 * not "0" value. This type of mapping may cause performance
5053 * impact under heavy loading conditions but the explicit write
5054 * memory barrier is not required and it may improve core
5057 * - the legacy behaviour (prior 19.08 release) was to use some
5058 * heuristics to decide whether write memory barrier should
5059 * be performed. This behavior is supported with specifying
5060 * tx_db_nc=2, write barrier is skipped if application
5061 * provides the full recommended burst of packets, it
5062 * supposes the next packets are coming and the write barrier
5063 * will be issued on the next burst (after descriptor writing,
5066 mlx5_tx_dbrec_cond_wmb(txq, loc.wqe_last, !txq->db_nc &&
5067 (!txq->db_heu || pkts_n % MLX5_TX_DEFAULT_BURST));
5068 /* Not all of the mbufs may be stored into elts yet. */
5069 part = MLX5_TXOFF_CONFIG(INLINE) ? 0 : loc.pkts_sent - loc.pkts_copy;
5070 if (!MLX5_TXOFF_CONFIG(INLINE) && part) {
5072 * There are some single-segment mbufs not stored in elts.
5073 * It can be only if the last packet was single-segment.
5074 * The copying is gathered into one place due to it is
5075 * a good opportunity to optimize that with SIMD.
5076 * Unfortunately if inlining is enabled the gaps in
5077 * pointer array may happen due to early freeing of the
5080 mlx5_tx_copy_elts(txq, pkts + loc.pkts_copy, part, olx);
5081 loc.pkts_copy = loc.pkts_sent;
5083 MLX5_ASSERT(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
5084 MLX5_ASSERT(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
5085 if (pkts_n > loc.pkts_sent) {
5087 * If burst size is large there might be no enough CQE
5088 * fetched from completion queue and no enough resources
5089 * freed to send all the packets.
5094 #ifdef MLX5_PMD_SOFT_COUNTERS
5095 /* Increment sent packets counter. */
5096 txq->stats.opackets += loc.pkts_sent;
5098 return loc.pkts_sent;
5101 /* Generate routines with Enhanced Multi-Packet Write support. */
5102 MLX5_TXOFF_DECL(full_empw,
5103 MLX5_TXOFF_CONFIG_FULL | MLX5_TXOFF_CONFIG_EMPW)
5105 MLX5_TXOFF_DECL(none_empw,
5106 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW)
5108 MLX5_TXOFF_DECL(md_empw,
5109 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5111 MLX5_TXOFF_DECL(mt_empw,
5112 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5113 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5115 MLX5_TXOFF_DECL(mtsc_empw,
5116 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5117 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5118 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5120 MLX5_TXOFF_DECL(mti_empw,
5121 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5122 MLX5_TXOFF_CONFIG_INLINE |
5123 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5125 MLX5_TXOFF_DECL(mtv_empw,
5126 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5127 MLX5_TXOFF_CONFIG_VLAN |
5128 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5130 MLX5_TXOFF_DECL(mtiv_empw,
5131 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5132 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5133 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5135 MLX5_TXOFF_DECL(sc_empw,
5136 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5137 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5139 MLX5_TXOFF_DECL(sci_empw,
5140 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5141 MLX5_TXOFF_CONFIG_INLINE |
5142 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5144 MLX5_TXOFF_DECL(scv_empw,
5145 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5146 MLX5_TXOFF_CONFIG_VLAN |
5147 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5149 MLX5_TXOFF_DECL(sciv_empw,
5150 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5151 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5152 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5154 MLX5_TXOFF_DECL(i_empw,
5155 MLX5_TXOFF_CONFIG_INLINE |
5156 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5158 MLX5_TXOFF_DECL(v_empw,
5159 MLX5_TXOFF_CONFIG_VLAN |
5160 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5162 MLX5_TXOFF_DECL(iv_empw,
5163 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5164 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5166 /* Generate routines without Enhanced Multi-Packet Write support. */
5167 MLX5_TXOFF_DECL(full,
5168 MLX5_TXOFF_CONFIG_FULL)
5170 MLX5_TXOFF_DECL(none,
5171 MLX5_TXOFF_CONFIG_NONE)
5174 MLX5_TXOFF_CONFIG_METADATA)
5177 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5178 MLX5_TXOFF_CONFIG_METADATA)
5180 MLX5_TXOFF_DECL(mtsc,
5181 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5182 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5183 MLX5_TXOFF_CONFIG_METADATA)
5185 MLX5_TXOFF_DECL(mti,
5186 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5187 MLX5_TXOFF_CONFIG_INLINE |
5188 MLX5_TXOFF_CONFIG_METADATA)
5191 MLX5_TXOFF_DECL(mtv,
5192 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5193 MLX5_TXOFF_CONFIG_VLAN |
5194 MLX5_TXOFF_CONFIG_METADATA)
5197 MLX5_TXOFF_DECL(mtiv,
5198 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5199 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5200 MLX5_TXOFF_CONFIG_METADATA)
5203 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5204 MLX5_TXOFF_CONFIG_METADATA)
5206 MLX5_TXOFF_DECL(sci,
5207 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5208 MLX5_TXOFF_CONFIG_INLINE |
5209 MLX5_TXOFF_CONFIG_METADATA)
5212 MLX5_TXOFF_DECL(scv,
5213 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5214 MLX5_TXOFF_CONFIG_VLAN |
5215 MLX5_TXOFF_CONFIG_METADATA)
5218 MLX5_TXOFF_DECL(sciv,
5219 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5220 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5221 MLX5_TXOFF_CONFIG_METADATA)
5224 MLX5_TXOFF_CONFIG_INLINE |
5225 MLX5_TXOFF_CONFIG_METADATA)
5228 MLX5_TXOFF_CONFIG_VLAN |
5229 MLX5_TXOFF_CONFIG_METADATA)
5232 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5233 MLX5_TXOFF_CONFIG_METADATA)
5236 * Generate routines with Legacy Multi-Packet Write support.
5237 * This mode is supported by ConnectX-4 Lx only and imposes
5238 * offload limitations, not supported:
5239 * - ACL/Flows (metadata are becoming meaningless)
5240 * - WQE Inline headers
5241 * - SRIOV (E-Switch offloads)
5243 * - tunnel encapsulation/decapsulation
5246 MLX5_TXOFF_DECL(none_mpw,
5247 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW |
5248 MLX5_TXOFF_CONFIG_MPW)
5250 MLX5_TXOFF_DECL(mci_mpw,
5251 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_CSUM |
5252 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_EMPW |
5253 MLX5_TXOFF_CONFIG_MPW)
5255 MLX5_TXOFF_DECL(mc_mpw,
5256 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_CSUM |
5257 MLX5_TXOFF_CONFIG_EMPW | MLX5_TXOFF_CONFIG_MPW)
5259 MLX5_TXOFF_DECL(i_mpw,
5260 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_EMPW |
5261 MLX5_TXOFF_CONFIG_MPW)
5264 * Array of declared and compiled Tx burst function and corresponding
5265 * supported offloads set. The array is used to select the Tx burst
5266 * function for specified offloads set at Tx queue configuration time.
5269 eth_tx_burst_t func;
5272 MLX5_TXOFF_INFO(full_empw,
5273 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5274 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5275 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5276 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5278 MLX5_TXOFF_INFO(none_empw,
5279 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW)
5281 MLX5_TXOFF_INFO(md_empw,
5282 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5284 MLX5_TXOFF_INFO(mt_empw,
5285 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5286 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5288 MLX5_TXOFF_INFO(mtsc_empw,
5289 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5290 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5291 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5293 MLX5_TXOFF_INFO(mti_empw,
5294 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5295 MLX5_TXOFF_CONFIG_INLINE |
5296 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5298 MLX5_TXOFF_INFO(mtv_empw,
5299 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5300 MLX5_TXOFF_CONFIG_VLAN |
5301 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5303 MLX5_TXOFF_INFO(mtiv_empw,
5304 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5305 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5306 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5308 MLX5_TXOFF_INFO(sc_empw,
5309 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5310 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5312 MLX5_TXOFF_INFO(sci_empw,
5313 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5314 MLX5_TXOFF_CONFIG_INLINE |
5315 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5317 MLX5_TXOFF_INFO(scv_empw,
5318 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5319 MLX5_TXOFF_CONFIG_VLAN |
5320 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5322 MLX5_TXOFF_INFO(sciv_empw,
5323 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5324 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5325 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5327 MLX5_TXOFF_INFO(i_empw,
5328 MLX5_TXOFF_CONFIG_INLINE |
5329 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5331 MLX5_TXOFF_INFO(v_empw,
5332 MLX5_TXOFF_CONFIG_VLAN |
5333 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5335 MLX5_TXOFF_INFO(iv_empw,
5336 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5337 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
5339 MLX5_TXOFF_INFO(full,
5340 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5341 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5342 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5343 MLX5_TXOFF_CONFIG_METADATA)
5345 MLX5_TXOFF_INFO(none,
5346 MLX5_TXOFF_CONFIG_NONE)
5349 MLX5_TXOFF_CONFIG_METADATA)
5352 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5353 MLX5_TXOFF_CONFIG_METADATA)
5355 MLX5_TXOFF_INFO(mtsc,
5356 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5357 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5358 MLX5_TXOFF_CONFIG_METADATA)
5360 MLX5_TXOFF_INFO(mti,
5361 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5362 MLX5_TXOFF_CONFIG_INLINE |
5363 MLX5_TXOFF_CONFIG_METADATA)
5365 MLX5_TXOFF_INFO(mtv,
5366 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5367 MLX5_TXOFF_CONFIG_VLAN |
5368 MLX5_TXOFF_CONFIG_METADATA)
5370 MLX5_TXOFF_INFO(mtiv,
5371 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5372 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5373 MLX5_TXOFF_CONFIG_METADATA)
5376 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5377 MLX5_TXOFF_CONFIG_METADATA)
5379 MLX5_TXOFF_INFO(sci,
5380 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5381 MLX5_TXOFF_CONFIG_INLINE |
5382 MLX5_TXOFF_CONFIG_METADATA)
5384 MLX5_TXOFF_INFO(scv,
5385 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5386 MLX5_TXOFF_CONFIG_VLAN |
5387 MLX5_TXOFF_CONFIG_METADATA)
5389 MLX5_TXOFF_INFO(sciv,
5390 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5391 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5392 MLX5_TXOFF_CONFIG_METADATA)
5395 MLX5_TXOFF_CONFIG_INLINE |
5396 MLX5_TXOFF_CONFIG_METADATA)
5399 MLX5_TXOFF_CONFIG_VLAN |
5400 MLX5_TXOFF_CONFIG_METADATA)
5403 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5404 MLX5_TXOFF_CONFIG_METADATA)
5406 MLX5_TXOFF_INFO(none_mpw,
5407 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW |
5408 MLX5_TXOFF_CONFIG_MPW)
5410 MLX5_TXOFF_INFO(mci_mpw,
5411 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_CSUM |
5412 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_EMPW |
5413 MLX5_TXOFF_CONFIG_MPW)
5415 MLX5_TXOFF_INFO(mc_mpw,
5416 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_CSUM |
5417 MLX5_TXOFF_CONFIG_EMPW | MLX5_TXOFF_CONFIG_MPW)
5419 MLX5_TXOFF_INFO(i_mpw,
5420 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_EMPW |
5421 MLX5_TXOFF_CONFIG_MPW)
5425 * Configure the Tx function to use. The routine checks configured
5426 * Tx offloads for the device and selects appropriate Tx burst
5427 * routine. There are multiple Tx burst routines compiled from
5428 * the same template in the most optimal way for the dedicated
5432 * Pointer to private data structure.
5435 * Pointer to selected Tx burst function.
5438 mlx5_select_tx_function(struct rte_eth_dev *dev)
5440 struct mlx5_priv *priv = dev->data->dev_private;
5441 struct mlx5_dev_config *config = &priv->config;
5442 uint64_t tx_offloads = dev->data->dev_conf.txmode.offloads;
5443 unsigned int diff = 0, olx = 0, i, m;
5445 static_assert(MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE <=
5446 MLX5_DSEG_MAX, "invalid WQE max size");
5447 static_assert(MLX5_WQE_CSEG_SIZE == MLX5_WSEG_SIZE,
5448 "invalid WQE Control Segment size");
5449 static_assert(MLX5_WQE_ESEG_SIZE == MLX5_WSEG_SIZE,
5450 "invalid WQE Ethernet Segment size");
5451 static_assert(MLX5_WQE_DSEG_SIZE == MLX5_WSEG_SIZE,
5452 "invalid WQE Data Segment size");
5453 static_assert(MLX5_WQE_SIZE == 4 * MLX5_WSEG_SIZE,
5454 "invalid WQE size");
5456 if (tx_offloads & DEV_TX_OFFLOAD_MULTI_SEGS) {
5457 /* We should support Multi-Segment Packets. */
5458 olx |= MLX5_TXOFF_CONFIG_MULTI;
5460 if (tx_offloads & (DEV_TX_OFFLOAD_TCP_TSO |
5461 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
5462 DEV_TX_OFFLOAD_GRE_TNL_TSO |
5463 DEV_TX_OFFLOAD_IP_TNL_TSO |
5464 DEV_TX_OFFLOAD_UDP_TNL_TSO)) {
5465 /* We should support TCP Send Offload. */
5466 olx |= MLX5_TXOFF_CONFIG_TSO;
5468 if (tx_offloads & (DEV_TX_OFFLOAD_IP_TNL_TSO |
5469 DEV_TX_OFFLOAD_UDP_TNL_TSO |
5470 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
5471 /* We should support Software Parser for Tunnels. */
5472 olx |= MLX5_TXOFF_CONFIG_SWP;
5474 if (tx_offloads & (DEV_TX_OFFLOAD_IPV4_CKSUM |
5475 DEV_TX_OFFLOAD_UDP_CKSUM |
5476 DEV_TX_OFFLOAD_TCP_CKSUM |
5477 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
5478 /* We should support IP/TCP/UDP Checksums. */
5479 olx |= MLX5_TXOFF_CONFIG_CSUM;
5481 if (tx_offloads & DEV_TX_OFFLOAD_VLAN_INSERT) {
5482 /* We should support VLAN insertion. */
5483 olx |= MLX5_TXOFF_CONFIG_VLAN;
5485 if (priv->txqs_n && (*priv->txqs)[0]) {
5486 struct mlx5_txq_data *txd = (*priv->txqs)[0];
5488 if (txd->inlen_send) {
5490 * Check the data inline requirements. Data inline
5491 * is enabled on per device basis, we can check
5492 * the first Tx queue only.
5494 * If device does not support VLAN insertion in WQE
5495 * and some queues are requested to perform VLAN
5496 * insertion offload than inline must be enabled.
5498 olx |= MLX5_TXOFF_CONFIG_INLINE;
5501 if (config->mps == MLX5_MPW_ENHANCED &&
5502 config->txq_inline_min <= 0) {
5504 * The NIC supports Enhanced Multi-Packet Write
5505 * and does not require minimal inline data.
5507 olx |= MLX5_TXOFF_CONFIG_EMPW;
5509 if (rte_flow_dynf_metadata_avail()) {
5510 /* We should support Flow metadata. */
5511 olx |= MLX5_TXOFF_CONFIG_METADATA;
5513 if (config->mps == MLX5_MPW) {
5515 * The NIC supports Legacy Multi-Packet Write.
5516 * The MLX5_TXOFF_CONFIG_MPW controls the
5517 * descriptor building method in combination
5518 * with MLX5_TXOFF_CONFIG_EMPW.
5520 if (!(olx & (MLX5_TXOFF_CONFIG_TSO |
5521 MLX5_TXOFF_CONFIG_SWP |
5522 MLX5_TXOFF_CONFIG_VLAN |
5523 MLX5_TXOFF_CONFIG_METADATA)))
5524 olx |= MLX5_TXOFF_CONFIG_EMPW |
5525 MLX5_TXOFF_CONFIG_MPW;
5528 * Scan the routines table to find the minimal
5529 * satisfying routine with requested offloads.
5531 m = RTE_DIM(txoff_func);
5532 for (i = 0; i < RTE_DIM(txoff_func); i++) {
5535 tmp = txoff_func[i].olx;
5537 /* Meets requested offloads exactly.*/
5541 if ((tmp & olx) != olx) {
5542 /* Does not meet requested offloads at all. */
5545 if ((olx ^ tmp) & MLX5_TXOFF_CONFIG_EMPW)
5546 /* Do not enable eMPW if not configured. */
5548 if ((olx ^ tmp) & MLX5_TXOFF_CONFIG_INLINE)
5549 /* Do not enable inlining if not configured. */
5552 * Some routine meets the requirements.
5553 * Check whether it has minimal amount
5554 * of not requested offloads.
5556 tmp = __builtin_popcountl(tmp & ~olx);
5557 if (m >= RTE_DIM(txoff_func) || tmp < diff) {
5558 /* First or better match, save and continue. */
5564 tmp = txoff_func[i].olx ^ txoff_func[m].olx;
5565 if (__builtin_ffsl(txoff_func[i].olx & ~tmp) <
5566 __builtin_ffsl(txoff_func[m].olx & ~tmp)) {
5567 /* Lighter not requested offload. */
5572 if (m >= RTE_DIM(txoff_func)) {
5573 DRV_LOG(DEBUG, "port %u has no selected Tx function"
5574 " for requested offloads %04X",
5575 dev->data->port_id, olx);
5578 DRV_LOG(DEBUG, "port %u has selected Tx function"
5579 " supporting offloads %04X/%04X",
5580 dev->data->port_id, olx, txoff_func[m].olx);
5581 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_MULTI)
5582 DRV_LOG(DEBUG, "\tMULTI (multi segment)");
5583 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_TSO)
5584 DRV_LOG(DEBUG, "\tTSO (TCP send offload)");
5585 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_SWP)
5586 DRV_LOG(DEBUG, "\tSWP (software parser)");
5587 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_CSUM)
5588 DRV_LOG(DEBUG, "\tCSUM (checksum offload)");
5589 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_INLINE)
5590 DRV_LOG(DEBUG, "\tINLIN (inline data)");
5591 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_VLAN)
5592 DRV_LOG(DEBUG, "\tVLANI (VLAN insertion)");
5593 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_METADATA)
5594 DRV_LOG(DEBUG, "\tMETAD (tx Flow metadata)");
5595 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_EMPW) {
5596 if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_MPW)
5597 DRV_LOG(DEBUG, "\tMPW (Legacy MPW)");
5599 DRV_LOG(DEBUG, "\tEMPW (Enhanced MPW)");
5601 return txoff_func[m].func;
5605 * DPDK callback to get the TX queue information
5608 * Pointer to the device structure.
5610 * @param tx_queue_id
5611 * Tx queue identificator.
5614 * Pointer to the TX queue information structure.
5621 mlx5_txq_info_get(struct rte_eth_dev *dev, uint16_t tx_queue_id,
5622 struct rte_eth_txq_info *qinfo)
5624 struct mlx5_priv *priv = dev->data->dev_private;
5625 struct mlx5_txq_data *txq = (*priv->txqs)[tx_queue_id];
5626 struct mlx5_txq_ctrl *txq_ctrl =
5627 container_of(txq, struct mlx5_txq_ctrl, txq);
5631 qinfo->nb_desc = txq->elts_s;
5632 qinfo->conf.tx_thresh.pthresh = 0;
5633 qinfo->conf.tx_thresh.hthresh = 0;
5634 qinfo->conf.tx_thresh.wthresh = 0;
5635 qinfo->conf.tx_rs_thresh = 0;
5636 qinfo->conf.tx_free_thresh = 0;
5637 qinfo->conf.tx_deferred_start = txq_ctrl ? 0 : 1;
5638 qinfo->conf.offloads = dev->data->dev_conf.txmode.offloads;
5642 * DPDK callback to get the TX packet burst mode information
5645 * Pointer to the device structure.
5647 * @param tx_queue_id
5648 * Tx queue identificatior.
5651 * Pointer to the burts mode information.
5654 * 0 as success, -EINVAL as failure.
5658 mlx5_tx_burst_mode_get(struct rte_eth_dev *dev,
5659 uint16_t tx_queue_id __rte_unused,
5660 struct rte_eth_burst_mode *mode)
5662 eth_tx_burst_t pkt_burst = dev->tx_pkt_burst;
5663 unsigned int i, olx;
5665 for (i = 0; i < RTE_DIM(txoff_func); i++) {
5666 if (pkt_burst == txoff_func[i].func) {
5667 olx = txoff_func[i].olx;
5668 snprintf(mode->info, sizeof(mode->info),
5670 (olx & MLX5_TXOFF_CONFIG_EMPW) ?
5671 ((olx & MLX5_TXOFF_CONFIG_MPW) ?
5672 "Legacy MPW" : "Enhanced MPW") : "No MPW",
5673 (olx & MLX5_TXOFF_CONFIG_MULTI) ?
5675 (olx & MLX5_TXOFF_CONFIG_TSO) ?
5677 (olx & MLX5_TXOFF_CONFIG_SWP) ?
5679 (olx & MLX5_TXOFF_CONFIG_CSUM) ?
5681 (olx & MLX5_TXOFF_CONFIG_INLINE) ?
5683 (olx & MLX5_TXOFF_CONFIG_VLAN) ?
5685 (olx & MLX5_TXOFF_CONFIG_METADATA) ?
5686 " + METADATA" : "");