net/mlx5: fix completion request for multi-segment
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015-2019 Mellanox Technologies, Ltd
4  */
5
6 #include <assert.h>
7 #include <stdint.h>
8 #include <string.h>
9 #include <stdlib.h>
10
11 /* Verbs header. */
12 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
13 #ifdef PEDANTIC
14 #pragma GCC diagnostic ignored "-Wpedantic"
15 #endif
16 #include <infiniband/verbs.h>
17 #include <infiniband/mlx5dv.h>
18 #ifdef PEDANTIC
19 #pragma GCC diagnostic error "-Wpedantic"
20 #endif
21
22 #include <rte_mbuf.h>
23 #include <rte_mempool.h>
24 #include <rte_prefetch.h>
25 #include <rte_common.h>
26 #include <rte_branch_prediction.h>
27 #include <rte_ether.h>
28 #include <rte_cycles.h>
29
30 #include "mlx5.h"
31 #include "mlx5_utils.h"
32 #include "mlx5_rxtx.h"
33 #include "mlx5_autoconf.h"
34 #include "mlx5_defs.h"
35 #include "mlx5_prm.h"
36
37 /* TX burst subroutines return codes. */
38 enum mlx5_txcmp_code {
39         MLX5_TXCMP_CODE_EXIT = 0,
40         MLX5_TXCMP_CODE_ERROR,
41         MLX5_TXCMP_CODE_SINGLE,
42         MLX5_TXCMP_CODE_MULTI,
43         MLX5_TXCMP_CODE_TSO,
44         MLX5_TXCMP_CODE_EMPW,
45 };
46
47 /*
48  * These defines are used to configure Tx burst routine option set
49  * supported at compile time. The not specified options are optimized out
50  * out due to if conditions can be explicitly calculated at compile time.
51  * The offloads with bigger runtime check (require more CPU cycles to
52  * skip) overhead should have the bigger index - this is needed to
53  * select the better matching routine function if no exact match and
54  * some offloads are not actually requested.
55  */
56 #define MLX5_TXOFF_CONFIG_MULTI (1u << 0) /* Multi-segment packets.*/
57 #define MLX5_TXOFF_CONFIG_TSO (1u << 1) /* TCP send offload supported.*/
58 #define MLX5_TXOFF_CONFIG_SWP (1u << 2) /* Tunnels/SW Parser offloads.*/
59 #define MLX5_TXOFF_CONFIG_CSUM (1u << 3) /* Check Sums offloaded. */
60 #define MLX5_TXOFF_CONFIG_INLINE (1u << 4) /* Data inlining supported. */
61 #define MLX5_TXOFF_CONFIG_VLAN (1u << 5) /* VLAN insertion supported.*/
62 #define MLX5_TXOFF_CONFIG_METADATA (1u << 6) /* Flow metadata. */
63 #define MLX5_TXOFF_CONFIG_EMPW (1u << 8) /* Enhanced MPW supported.*/
64
65 /* The most common offloads groups. */
66 #define MLX5_TXOFF_CONFIG_NONE 0
67 #define MLX5_TXOFF_CONFIG_FULL (MLX5_TXOFF_CONFIG_MULTI | \
68                                 MLX5_TXOFF_CONFIG_TSO | \
69                                 MLX5_TXOFF_CONFIG_SWP | \
70                                 MLX5_TXOFF_CONFIG_CSUM | \
71                                 MLX5_TXOFF_CONFIG_INLINE | \
72                                 MLX5_TXOFF_CONFIG_VLAN | \
73                                 MLX5_TXOFF_CONFIG_METADATA)
74
75 #define MLX5_TXOFF_CONFIG(mask) (olx & MLX5_TXOFF_CONFIG_##mask)
76
77 #define MLX5_TXOFF_DECL(func, olx) \
78 static uint16_t mlx5_tx_burst_##func(void *txq, \
79                                      struct rte_mbuf **pkts, \
80                                     uint16_t pkts_n) \
81 { \
82         return mlx5_tx_burst_tmpl((struct mlx5_txq_data *)txq, \
83                     pkts, pkts_n, (olx)); \
84 }
85
86 #define MLX5_TXOFF_INFO(func, olx) {mlx5_tx_burst_##func, olx},
87
88 static __rte_always_inline uint32_t
89 rxq_cq_to_pkt_type(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe);
90
91 static __rte_always_inline int
92 mlx5_rx_poll_len(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe,
93                  uint16_t cqe_cnt, volatile struct mlx5_mini_cqe8 **mcqe);
94
95 static __rte_always_inline uint32_t
96 rxq_cq_to_ol_flags(volatile struct mlx5_cqe *cqe);
97
98 static __rte_always_inline void
99 rxq_cq_to_mbuf(struct mlx5_rxq_data *rxq, struct rte_mbuf *pkt,
100                volatile struct mlx5_cqe *cqe, uint32_t rss_hash_res);
101
102 static __rte_always_inline void
103 mprq_buf_replace(struct mlx5_rxq_data *rxq, uint16_t rq_idx,
104                  const unsigned int strd_n);
105
106 static int
107 mlx5_queue_state_modify(struct rte_eth_dev *dev,
108                         struct mlx5_mp_arg_queue_state_modify *sm);
109
110 static inline void
111 mlx5_lro_update_tcp_hdr(struct rte_tcp_hdr *restrict tcp,
112                         volatile struct mlx5_cqe *restrict cqe,
113                         uint32_t phcsum);
114
115 static inline void
116 mlx5_lro_update_hdr(uint8_t *restrict padd,
117                     volatile struct mlx5_cqe *restrict cqe,
118                     uint32_t len);
119
120 uint32_t mlx5_ptype_table[] __rte_cache_aligned = {
121         [0xff] = RTE_PTYPE_ALL_MASK, /* Last entry for errored packet. */
122 };
123
124 uint8_t mlx5_cksum_table[1 << 10] __rte_cache_aligned;
125 uint8_t mlx5_swp_types_table[1 << 10] __rte_cache_aligned;
126
127 /**
128  * Build a table to translate Rx completion flags to packet type.
129  *
130  * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
131  */
132 void
133 mlx5_set_ptype_table(void)
134 {
135         unsigned int i;
136         uint32_t (*p)[RTE_DIM(mlx5_ptype_table)] = &mlx5_ptype_table;
137
138         /* Last entry must not be overwritten, reserved for errored packet. */
139         for (i = 0; i < RTE_DIM(mlx5_ptype_table) - 1; ++i)
140                 (*p)[i] = RTE_PTYPE_UNKNOWN;
141         /*
142          * The index to the array should have:
143          * bit[1:0] = l3_hdr_type
144          * bit[4:2] = l4_hdr_type
145          * bit[5] = ip_frag
146          * bit[6] = tunneled
147          * bit[7] = outer_l3_type
148          */
149         /* L2 */
150         (*p)[0x00] = RTE_PTYPE_L2_ETHER;
151         /* L3 */
152         (*p)[0x01] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
153                      RTE_PTYPE_L4_NONFRAG;
154         (*p)[0x02] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
155                      RTE_PTYPE_L4_NONFRAG;
156         /* Fragmented */
157         (*p)[0x21] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
158                      RTE_PTYPE_L4_FRAG;
159         (*p)[0x22] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
160                      RTE_PTYPE_L4_FRAG;
161         /* TCP */
162         (*p)[0x05] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
163                      RTE_PTYPE_L4_TCP;
164         (*p)[0x06] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
165                      RTE_PTYPE_L4_TCP;
166         (*p)[0x0d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
167                      RTE_PTYPE_L4_TCP;
168         (*p)[0x0e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
169                      RTE_PTYPE_L4_TCP;
170         (*p)[0x11] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
171                      RTE_PTYPE_L4_TCP;
172         (*p)[0x12] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
173                      RTE_PTYPE_L4_TCP;
174         /* UDP */
175         (*p)[0x09] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
176                      RTE_PTYPE_L4_UDP;
177         (*p)[0x0a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
178                      RTE_PTYPE_L4_UDP;
179         /* Repeat with outer_l3_type being set. Just in case. */
180         (*p)[0x81] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
181                      RTE_PTYPE_L4_NONFRAG;
182         (*p)[0x82] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
183                      RTE_PTYPE_L4_NONFRAG;
184         (*p)[0xa1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
185                      RTE_PTYPE_L4_FRAG;
186         (*p)[0xa2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
187                      RTE_PTYPE_L4_FRAG;
188         (*p)[0x85] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
189                      RTE_PTYPE_L4_TCP;
190         (*p)[0x86] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
191                      RTE_PTYPE_L4_TCP;
192         (*p)[0x8d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
193                      RTE_PTYPE_L4_TCP;
194         (*p)[0x8e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
195                      RTE_PTYPE_L4_TCP;
196         (*p)[0x91] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
197                      RTE_PTYPE_L4_TCP;
198         (*p)[0x92] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
199                      RTE_PTYPE_L4_TCP;
200         (*p)[0x89] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
201                      RTE_PTYPE_L4_UDP;
202         (*p)[0x8a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
203                      RTE_PTYPE_L4_UDP;
204         /* Tunneled - L3 */
205         (*p)[0x40] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN;
206         (*p)[0x41] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
207                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
208                      RTE_PTYPE_INNER_L4_NONFRAG;
209         (*p)[0x42] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
210                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
211                      RTE_PTYPE_INNER_L4_NONFRAG;
212         (*p)[0xc0] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN;
213         (*p)[0xc1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
214                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
215                      RTE_PTYPE_INNER_L4_NONFRAG;
216         (*p)[0xc2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
217                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
218                      RTE_PTYPE_INNER_L4_NONFRAG;
219         /* Tunneled - Fragmented */
220         (*p)[0x61] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
221                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
222                      RTE_PTYPE_INNER_L4_FRAG;
223         (*p)[0x62] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
224                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
225                      RTE_PTYPE_INNER_L4_FRAG;
226         (*p)[0xe1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
227                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
228                      RTE_PTYPE_INNER_L4_FRAG;
229         (*p)[0xe2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
230                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
231                      RTE_PTYPE_INNER_L4_FRAG;
232         /* Tunneled - TCP */
233         (*p)[0x45] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
234                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
235                      RTE_PTYPE_INNER_L4_TCP;
236         (*p)[0x46] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
237                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
238                      RTE_PTYPE_INNER_L4_TCP;
239         (*p)[0x4d] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
240                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
241                      RTE_PTYPE_INNER_L4_TCP;
242         (*p)[0x4e] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
243                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
244                      RTE_PTYPE_INNER_L4_TCP;
245         (*p)[0x51] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
246                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
247                      RTE_PTYPE_INNER_L4_TCP;
248         (*p)[0x52] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
249                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
250                      RTE_PTYPE_INNER_L4_TCP;
251         (*p)[0xc5] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
252                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
253                      RTE_PTYPE_INNER_L4_TCP;
254         (*p)[0xc6] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
255                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
256                      RTE_PTYPE_INNER_L4_TCP;
257         (*p)[0xcd] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
258                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
259                      RTE_PTYPE_INNER_L4_TCP;
260         (*p)[0xce] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
261                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
262                      RTE_PTYPE_INNER_L4_TCP;
263         (*p)[0xd1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
264                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
265                      RTE_PTYPE_INNER_L4_TCP;
266         (*p)[0xd2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
267                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
268                      RTE_PTYPE_INNER_L4_TCP;
269         /* Tunneled - UDP */
270         (*p)[0x49] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
271                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
272                      RTE_PTYPE_INNER_L4_UDP;
273         (*p)[0x4a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
274                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
275                      RTE_PTYPE_INNER_L4_UDP;
276         (*p)[0xc9] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
277                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
278                      RTE_PTYPE_INNER_L4_UDP;
279         (*p)[0xca] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
280                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
281                      RTE_PTYPE_INNER_L4_UDP;
282 }
283
284 /**
285  * Build a table to translate packet to checksum type of Verbs.
286  */
287 void
288 mlx5_set_cksum_table(void)
289 {
290         unsigned int i;
291         uint8_t v;
292
293         /*
294          * The index should have:
295          * bit[0] = PKT_TX_TCP_SEG
296          * bit[2:3] = PKT_TX_UDP_CKSUM, PKT_TX_TCP_CKSUM
297          * bit[4] = PKT_TX_IP_CKSUM
298          * bit[8] = PKT_TX_OUTER_IP_CKSUM
299          * bit[9] = tunnel
300          */
301         for (i = 0; i < RTE_DIM(mlx5_cksum_table); ++i) {
302                 v = 0;
303                 if (i & (1 << 9)) {
304                         /* Tunneled packet. */
305                         if (i & (1 << 8)) /* Outer IP. */
306                                 v |= MLX5_ETH_WQE_L3_CSUM;
307                         if (i & (1 << 4)) /* Inner IP. */
308                                 v |= MLX5_ETH_WQE_L3_INNER_CSUM;
309                         if (i & (3 << 2 | 1 << 0)) /* L4 or TSO. */
310                                 v |= MLX5_ETH_WQE_L4_INNER_CSUM;
311                 } else {
312                         /* No tunnel. */
313                         if (i & (1 << 4)) /* IP. */
314                                 v |= MLX5_ETH_WQE_L3_CSUM;
315                         if (i & (3 << 2 | 1 << 0)) /* L4 or TSO. */
316                                 v |= MLX5_ETH_WQE_L4_CSUM;
317                 }
318                 mlx5_cksum_table[i] = v;
319         }
320 }
321
322 /**
323  * Build a table to translate packet type of mbuf to SWP type of Verbs.
324  */
325 void
326 mlx5_set_swp_types_table(void)
327 {
328         unsigned int i;
329         uint8_t v;
330
331         /*
332          * The index should have:
333          * bit[0:1] = PKT_TX_L4_MASK
334          * bit[4] = PKT_TX_IPV6
335          * bit[8] = PKT_TX_OUTER_IPV6
336          * bit[9] = PKT_TX_OUTER_UDP
337          */
338         for (i = 0; i < RTE_DIM(mlx5_swp_types_table); ++i) {
339                 v = 0;
340                 if (i & (1 << 8))
341                         v |= MLX5_ETH_WQE_L3_OUTER_IPV6;
342                 if (i & (1 << 9))
343                         v |= MLX5_ETH_WQE_L4_OUTER_UDP;
344                 if (i & (1 << 4))
345                         v |= MLX5_ETH_WQE_L3_INNER_IPV6;
346                 if ((i & 3) == (PKT_TX_UDP_CKSUM >> 52))
347                         v |= MLX5_ETH_WQE_L4_INNER_UDP;
348                 mlx5_swp_types_table[i] = v;
349         }
350 }
351
352 /**
353  * Set Software Parser flags and offsets in Ethernet Segment of WQE.
354  * Flags must be preliminary initialized to zero.
355  *
356  * @param loc
357  *   Pointer to burst routine local context.
358  * @param swp_flags
359  *   Pointer to store Software Parser flags
360  * @param olx
361  *   Configured Tx offloads mask. It is fully defined at
362  *   compile time and may be used for optimization.
363  *
364  * @return
365  *   Software Parser offsets packed in dword.
366  *   Software Parser flags are set by pointer.
367  */
368 static __rte_always_inline uint32_t
369 txq_mbuf_to_swp(struct mlx5_txq_local *restrict loc,
370                 uint8_t *swp_flags,
371                 unsigned int olx)
372 {
373         uint64_t ol, tunnel;
374         unsigned int idx, off;
375         uint32_t set;
376
377         if (!MLX5_TXOFF_CONFIG(SWP))
378                 return 0;
379         ol = loc->mbuf->ol_flags;
380         tunnel = ol & PKT_TX_TUNNEL_MASK;
381         /*
382          * Check whether Software Parser is required.
383          * Only customized tunnels may ask for.
384          */
385         if (likely(tunnel != PKT_TX_TUNNEL_UDP && tunnel != PKT_TX_TUNNEL_IP))
386                 return 0;
387         /*
388          * The index should have:
389          * bit[0:1] = PKT_TX_L4_MASK
390          * bit[4] = PKT_TX_IPV6
391          * bit[8] = PKT_TX_OUTER_IPV6
392          * bit[9] = PKT_TX_OUTER_UDP
393          */
394         idx = (ol & (PKT_TX_L4_MASK | PKT_TX_IPV6 | PKT_TX_OUTER_IPV6)) >> 52;
395         idx |= (tunnel == PKT_TX_TUNNEL_UDP) ? (1 << 9) : 0;
396         *swp_flags = mlx5_swp_types_table[idx];
397         /*
398          * Set offsets for SW parser. Since ConnectX-5, SW parser just
399          * complements HW parser. SW parser starts to engage only if HW parser
400          * can't reach a header. For the older devices, HW parser will not kick
401          * in if any of SWP offsets is set. Therefore, all of the L3 offsets
402          * should be set regardless of HW offload.
403          */
404         off = loc->mbuf->outer_l2_len;
405         if (MLX5_TXOFF_CONFIG(VLAN) && ol & PKT_TX_VLAN_PKT)
406                 off += sizeof(struct rte_vlan_hdr);
407         set = (off >> 1) << 8; /* Outer L3 offset. */
408         off += loc->mbuf->outer_l3_len;
409         if (tunnel == PKT_TX_TUNNEL_UDP)
410                 set |= off >> 1; /* Outer L4 offset. */
411         if (ol & (PKT_TX_IPV4 | PKT_TX_IPV6)) { /* Inner IP. */
412                 const uint64_t csum = ol & PKT_TX_L4_MASK;
413                         off += loc->mbuf->l2_len;
414                 set |= (off >> 1) << 24; /* Inner L3 offset. */
415                 if (csum == PKT_TX_TCP_CKSUM ||
416                     csum == PKT_TX_UDP_CKSUM ||
417                     (MLX5_TXOFF_CONFIG(TSO) && ol & PKT_TX_TCP_SEG)) {
418                         off += loc->mbuf->l3_len;
419                         set |= (off >> 1) << 16; /* Inner L4 offset. */
420                 }
421         }
422         set = rte_cpu_to_le_32(set);
423         return set;
424 }
425
426 /**
427  * Convert the Checksum offloads to Verbs.
428  *
429  * @param buf
430  *   Pointer to the mbuf.
431  *
432  * @return
433  *   Converted checksum flags.
434  */
435 static __rte_always_inline uint8_t
436 txq_ol_cksum_to_cs(struct rte_mbuf *buf)
437 {
438         uint32_t idx;
439         uint8_t is_tunnel = !!(buf->ol_flags & PKT_TX_TUNNEL_MASK);
440         const uint64_t ol_flags_mask = PKT_TX_TCP_SEG | PKT_TX_L4_MASK |
441                                        PKT_TX_IP_CKSUM | PKT_TX_OUTER_IP_CKSUM;
442
443         /*
444          * The index should have:
445          * bit[0] = PKT_TX_TCP_SEG
446          * bit[2:3] = PKT_TX_UDP_CKSUM, PKT_TX_TCP_CKSUM
447          * bit[4] = PKT_TX_IP_CKSUM
448          * bit[8] = PKT_TX_OUTER_IP_CKSUM
449          * bit[9] = tunnel
450          */
451         idx = ((buf->ol_flags & ol_flags_mask) >> 50) | (!!is_tunnel << 9);
452         return mlx5_cksum_table[idx];
453 }
454
455 /**
456  * Internal function to compute the number of used descriptors in an RX queue
457  *
458  * @param rxq
459  *   The Rx queue.
460  *
461  * @return
462  *   The number of used rx descriptor.
463  */
464 static uint32_t
465 rx_queue_count(struct mlx5_rxq_data *rxq)
466 {
467         struct rxq_zip *zip = &rxq->zip;
468         volatile struct mlx5_cqe *cqe;
469         const unsigned int cqe_n = (1 << rxq->cqe_n);
470         const unsigned int cqe_cnt = cqe_n - 1;
471         unsigned int cq_ci;
472         unsigned int used;
473
474         /* if we are processing a compressed cqe */
475         if (zip->ai) {
476                 used = zip->cqe_cnt - zip->ca;
477                 cq_ci = zip->cq_ci;
478         } else {
479                 used = 0;
480                 cq_ci = rxq->cq_ci;
481         }
482         cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
483         while (check_cqe(cqe, cqe_n, cq_ci) != MLX5_CQE_STATUS_HW_OWN) {
484                 int8_t op_own;
485                 unsigned int n;
486
487                 op_own = cqe->op_own;
488                 if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED)
489                         n = rte_be_to_cpu_32(cqe->byte_cnt);
490                 else
491                         n = 1;
492                 cq_ci += n;
493                 used += n;
494                 cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
495         }
496         used = RTE_MIN(used, (1U << rxq->elts_n) - 1);
497         return used;
498 }
499
500 /**
501  * DPDK callback to check the status of a rx descriptor.
502  *
503  * @param rx_queue
504  *   The Rx queue.
505  * @param[in] offset
506  *   The index of the descriptor in the ring.
507  *
508  * @return
509  *   The status of the tx descriptor.
510  */
511 int
512 mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset)
513 {
514         struct mlx5_rxq_data *rxq = rx_queue;
515         struct mlx5_rxq_ctrl *rxq_ctrl =
516                         container_of(rxq, struct mlx5_rxq_ctrl, rxq);
517         struct rte_eth_dev *dev = ETH_DEV(rxq_ctrl->priv);
518
519         if (dev->rx_pkt_burst != mlx5_rx_burst) {
520                 rte_errno = ENOTSUP;
521                 return -rte_errno;
522         }
523         if (offset >= (1 << rxq->elts_n)) {
524                 rte_errno = EINVAL;
525                 return -rte_errno;
526         }
527         if (offset < rx_queue_count(rxq))
528                 return RTE_ETH_RX_DESC_DONE;
529         return RTE_ETH_RX_DESC_AVAIL;
530 }
531
532 /**
533  * DPDK callback to get the number of used descriptors in a RX queue
534  *
535  * @param dev
536  *   Pointer to the device structure.
537  *
538  * @param rx_queue_id
539  *   The Rx queue.
540  *
541  * @return
542  *   The number of used rx descriptor.
543  *   -EINVAL if the queue is invalid
544  */
545 uint32_t
546 mlx5_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
547 {
548         struct mlx5_priv *priv = dev->data->dev_private;
549         struct mlx5_rxq_data *rxq;
550
551         if (dev->rx_pkt_burst != mlx5_rx_burst) {
552                 rte_errno = ENOTSUP;
553                 return -rte_errno;
554         }
555         rxq = (*priv->rxqs)[rx_queue_id];
556         if (!rxq) {
557                 rte_errno = EINVAL;
558                 return -rte_errno;
559         }
560         return rx_queue_count(rxq);
561 }
562
563 #define MLX5_SYSTEM_LOG_DIR "/var/log"
564 /**
565  * Dump debug information to log file.
566  *
567  * @param fname
568  *   The file name.
569  * @param hex_title
570  *   If not NULL this string is printed as a header to the output
571  *   and the output will be in hexadecimal view.
572  * @param buf
573  *   This is the buffer address to print out.
574  * @param len
575  *   The number of bytes to dump out.
576  */
577 void
578 mlx5_dump_debug_information(const char *fname, const char *hex_title,
579                             const void *buf, unsigned int hex_len)
580 {
581         FILE *fd;
582
583         MKSTR(path, "%s/%s", MLX5_SYSTEM_LOG_DIR, fname);
584         fd = fopen(path, "a+");
585         if (!fd) {
586                 DRV_LOG(WARNING, "cannot open %s for debug dump\n",
587                         path);
588                 MKSTR(path2, "./%s", fname);
589                 fd = fopen(path2, "a+");
590                 if (!fd) {
591                         DRV_LOG(ERR, "cannot open %s for debug dump\n",
592                                 path2);
593                         return;
594                 }
595                 DRV_LOG(INFO, "New debug dump in file %s\n", path2);
596         } else {
597                 DRV_LOG(INFO, "New debug dump in file %s\n", path);
598         }
599         if (hex_title)
600                 rte_hexdump(fd, hex_title, buf, hex_len);
601         else
602                 fprintf(fd, "%s", (const char *)buf);
603         fprintf(fd, "\n\n\n");
604         fclose(fd);
605 }
606
607 /**
608  * Move QP from error state to running state and initialize indexes.
609  *
610  * @param txq_ctrl
611  *   Pointer to TX queue control structure.
612  *
613  * @return
614  *   0 on success, else -1.
615  */
616 static int
617 tx_recover_qp(struct mlx5_txq_ctrl *txq_ctrl)
618 {
619         struct mlx5_mp_arg_queue_state_modify sm = {
620                         .is_wq = 0,
621                         .queue_id = txq_ctrl->txq.idx,
622         };
623
624         if (mlx5_queue_state_modify(ETH_DEV(txq_ctrl->priv), &sm))
625                 return -1;
626         txq_ctrl->txq.wqe_ci = 0;
627         txq_ctrl->txq.wqe_pi = 0;
628         txq_ctrl->txq.elts_comp = 0;
629         return 0;
630 }
631
632 /* Return 1 if the error CQE is signed otherwise, sign it and return 0. */
633 static int
634 check_err_cqe_seen(volatile struct mlx5_err_cqe *err_cqe)
635 {
636         static const uint8_t magic[] = "seen";
637         int ret = 1;
638         unsigned int i;
639
640         for (i = 0; i < sizeof(magic); ++i)
641                 if (!ret || err_cqe->rsvd1[i] != magic[i]) {
642                         ret = 0;
643                         err_cqe->rsvd1[i] = magic[i];
644                 }
645         return ret;
646 }
647
648 /**
649  * Handle error CQE.
650  *
651  * @param txq
652  *   Pointer to TX queue structure.
653  * @param error_cqe
654  *   Pointer to the error CQE.
655  *
656  * @return
657  *   Negative value if queue recovery failed,
658  *   the last Tx buffer element to free otherwise.
659  */
660 int
661 mlx5_tx_error_cqe_handle(struct mlx5_txq_data *restrict txq,
662                          volatile struct mlx5_err_cqe *err_cqe)
663 {
664         if (err_cqe->syndrome != MLX5_CQE_SYNDROME_WR_FLUSH_ERR) {
665                 const uint16_t wqe_m = ((1 << txq->wqe_n) - 1);
666                 struct mlx5_txq_ctrl *txq_ctrl =
667                                 container_of(txq, struct mlx5_txq_ctrl, txq);
668                 uint16_t new_wqe_pi = rte_be_to_cpu_16(err_cqe->wqe_counter);
669                 int seen = check_err_cqe_seen(err_cqe);
670
671                 if (!seen && txq_ctrl->dump_file_n <
672                     txq_ctrl->priv->config.max_dump_files_num) {
673                         MKSTR(err_str, "Unexpected CQE error syndrome "
674                               "0x%02x CQN = %u SQN = %u wqe_counter = %u "
675                               "wq_ci = %u cq_ci = %u", err_cqe->syndrome,
676                               txq->cqe_s, txq->qp_num_8s >> 8,
677                               rte_be_to_cpu_16(err_cqe->wqe_counter),
678                               txq->wqe_ci, txq->cq_ci);
679                         MKSTR(name, "dpdk_mlx5_port_%u_txq_%u_index_%u_%u",
680                               PORT_ID(txq_ctrl->priv), txq->idx,
681                               txq_ctrl->dump_file_n, (uint32_t)rte_rdtsc());
682                         mlx5_dump_debug_information(name, NULL, err_str, 0);
683                         mlx5_dump_debug_information(name, "MLX5 Error CQ:",
684                                                     (const void *)((uintptr_t)
685                                                     txq->cqes),
686                                                     sizeof(*err_cqe) *
687                                                     (1 << txq->cqe_n));
688                         mlx5_dump_debug_information(name, "MLX5 Error SQ:",
689                                                     (const void *)((uintptr_t)
690                                                     txq->wqes),
691                                                     MLX5_WQE_SIZE *
692                                                     (1 << txq->wqe_n));
693                         txq_ctrl->dump_file_n++;
694                 }
695                 if (!seen)
696                         /*
697                          * Count errors in WQEs units.
698                          * Later it can be improved to count error packets,
699                          * for example, by SQ parsing to find how much packets
700                          * should be counted for each WQE.
701                          */
702                         txq->stats.oerrors += ((txq->wqe_ci & wqe_m) -
703                                                 new_wqe_pi) & wqe_m;
704                 if (tx_recover_qp(txq_ctrl) == 0) {
705                         txq->cq_ci++;
706                         /* Release all the remaining buffers. */
707                         return txq->elts_head;
708                 }
709                 /* Recovering failed - try again later on the same WQE. */
710                 return -1;
711         } else {
712                 txq->cq_ci++;
713         }
714         /* Do not release buffers. */
715         return txq->elts_tail;
716 }
717
718 /**
719  * Translate RX completion flags to packet type.
720  *
721  * @param[in] rxq
722  *   Pointer to RX queue structure.
723  * @param[in] cqe
724  *   Pointer to CQE.
725  *
726  * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
727  *
728  * @return
729  *   Packet type for struct rte_mbuf.
730  */
731 static inline uint32_t
732 rxq_cq_to_pkt_type(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe)
733 {
734         uint8_t idx;
735         uint8_t pinfo = cqe->pkt_info;
736         uint16_t ptype = cqe->hdr_type_etc;
737
738         /*
739          * The index to the array should have:
740          * bit[1:0] = l3_hdr_type
741          * bit[4:2] = l4_hdr_type
742          * bit[5] = ip_frag
743          * bit[6] = tunneled
744          * bit[7] = outer_l3_type
745          */
746         idx = ((pinfo & 0x3) << 6) | ((ptype & 0xfc00) >> 10);
747         return mlx5_ptype_table[idx] | rxq->tunnel * !!(idx & (1 << 6));
748 }
749
750 /**
751  * Initialize Rx WQ and indexes.
752  *
753  * @param[in] rxq
754  *   Pointer to RX queue structure.
755  */
756 void
757 mlx5_rxq_initialize(struct mlx5_rxq_data *rxq)
758 {
759         const unsigned int wqe_n = 1 << rxq->elts_n;
760         unsigned int i;
761
762         for (i = 0; (i != wqe_n); ++i) {
763                 volatile struct mlx5_wqe_data_seg *scat;
764                 uintptr_t addr;
765                 uint32_t byte_count;
766
767                 if (mlx5_rxq_mprq_enabled(rxq)) {
768                         struct mlx5_mprq_buf *buf = (*rxq->mprq_bufs)[i];
769
770                         scat = &((volatile struct mlx5_wqe_mprq *)
771                                 rxq->wqes)[i].dseg;
772                         addr = (uintptr_t)mlx5_mprq_buf_addr(buf,
773                                                          1 << rxq->strd_num_n);
774                         byte_count = (1 << rxq->strd_sz_n) *
775                                         (1 << rxq->strd_num_n);
776                 } else {
777                         struct rte_mbuf *buf = (*rxq->elts)[i];
778
779                         scat = &((volatile struct mlx5_wqe_data_seg *)
780                                         rxq->wqes)[i];
781                         addr = rte_pktmbuf_mtod(buf, uintptr_t);
782                         byte_count = DATA_LEN(buf);
783                 }
784                 /* scat->addr must be able to store a pointer. */
785                 assert(sizeof(scat->addr) >= sizeof(uintptr_t));
786                 *scat = (struct mlx5_wqe_data_seg){
787                         .addr = rte_cpu_to_be_64(addr),
788                         .byte_count = rte_cpu_to_be_32(byte_count),
789                         .lkey = mlx5_rx_addr2mr(rxq, addr),
790                 };
791         }
792         rxq->consumed_strd = 0;
793         rxq->decompressed = 0;
794         rxq->rq_pi = 0;
795         rxq->zip = (struct rxq_zip){
796                 .ai = 0,
797         };
798         /* Update doorbell counter. */
799         rxq->rq_ci = wqe_n >> rxq->sges_n;
800         rte_cio_wmb();
801         *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
802 }
803
804 /**
805  * Modify a Verbs/DevX queue state.
806  * This must be called from the primary process.
807  *
808  * @param dev
809  *   Pointer to Ethernet device.
810  * @param sm
811  *   State modify request parameters.
812  *
813  * @return
814  *   0 in case of success else non-zero value and rte_errno is set.
815  */
816 int
817 mlx5_queue_state_modify_primary(struct rte_eth_dev *dev,
818                         const struct mlx5_mp_arg_queue_state_modify *sm)
819 {
820         int ret;
821         struct mlx5_priv *priv = dev->data->dev_private;
822
823         if (sm->is_wq) {
824                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[sm->queue_id];
825                 struct mlx5_rxq_ctrl *rxq_ctrl =
826                         container_of(rxq, struct mlx5_rxq_ctrl, rxq);
827
828                 if (rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_IBV) {
829                         struct ibv_wq_attr mod = {
830                                 .attr_mask = IBV_WQ_ATTR_STATE,
831                                 .wq_state = sm->state,
832                         };
833
834                         ret = mlx5_glue->modify_wq(rxq_ctrl->obj->wq, &mod);
835                 } else { /* rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ. */
836                         struct mlx5_devx_modify_rq_attr rq_attr;
837
838                         memset(&rq_attr, 0, sizeof(rq_attr));
839                         if (sm->state == IBV_WQS_RESET) {
840                                 rq_attr.rq_state = MLX5_RQC_STATE_ERR;
841                                 rq_attr.state = MLX5_RQC_STATE_RST;
842                         } else if (sm->state == IBV_WQS_RDY) {
843                                 rq_attr.rq_state = MLX5_RQC_STATE_RST;
844                                 rq_attr.state = MLX5_RQC_STATE_RDY;
845                         } else if (sm->state == IBV_WQS_ERR) {
846                                 rq_attr.rq_state = MLX5_RQC_STATE_RDY;
847                                 rq_attr.state = MLX5_RQC_STATE_ERR;
848                         }
849                         ret = mlx5_devx_cmd_modify_rq(rxq_ctrl->obj->rq,
850                                                       &rq_attr);
851                 }
852                 if (ret) {
853                         DRV_LOG(ERR, "Cannot change Rx WQ state to %u  - %s\n",
854                                         sm->state, strerror(errno));
855                         rte_errno = errno;
856                         return ret;
857                 }
858         } else {
859                 struct mlx5_txq_data *txq = (*priv->txqs)[sm->queue_id];
860                 struct mlx5_txq_ctrl *txq_ctrl =
861                         container_of(txq, struct mlx5_txq_ctrl, txq);
862                 struct ibv_qp_attr mod = {
863                         .qp_state = IBV_QPS_RESET,
864                         .port_num = (uint8_t)priv->ibv_port,
865                 };
866                 struct ibv_qp *qp = txq_ctrl->ibv->qp;
867
868                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
869                 if (ret) {
870                         DRV_LOG(ERR, "Cannot change the Tx QP state to RESET "
871                                 "%s\n", strerror(errno));
872                         rte_errno = errno;
873                         return ret;
874                 }
875                 mod.qp_state = IBV_QPS_INIT;
876                 ret = mlx5_glue->modify_qp(qp, &mod,
877                                            (IBV_QP_STATE | IBV_QP_PORT));
878                 if (ret) {
879                         DRV_LOG(ERR, "Cannot change Tx QP state to INIT %s\n",
880                                 strerror(errno));
881                         rte_errno = errno;
882                         return ret;
883                 }
884                 mod.qp_state = IBV_QPS_RTR;
885                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
886                 if (ret) {
887                         DRV_LOG(ERR, "Cannot change Tx QP state to RTR %s\n",
888                                 strerror(errno));
889                         rte_errno = errno;
890                         return ret;
891                 }
892                 mod.qp_state = IBV_QPS_RTS;
893                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
894                 if (ret) {
895                         DRV_LOG(ERR, "Cannot change Tx QP state to RTS %s\n",
896                                 strerror(errno));
897                         rte_errno = errno;
898                         return ret;
899                 }
900         }
901         return 0;
902 }
903
904 /**
905  * Modify a Verbs queue state.
906  *
907  * @param dev
908  *   Pointer to Ethernet device.
909  * @param sm
910  *   State modify request parameters.
911  *
912  * @return
913  *   0 in case of success else non-zero value.
914  */
915 static int
916 mlx5_queue_state_modify(struct rte_eth_dev *dev,
917                         struct mlx5_mp_arg_queue_state_modify *sm)
918 {
919         int ret = 0;
920
921         switch (rte_eal_process_type()) {
922         case RTE_PROC_PRIMARY:
923                 ret = mlx5_queue_state_modify_primary(dev, sm);
924                 break;
925         case RTE_PROC_SECONDARY:
926                 ret = mlx5_mp_req_queue_state_modify(dev, sm);
927                 break;
928         default:
929                 break;
930         }
931         return ret;
932 }
933
934 /**
935  * Handle a Rx error.
936  * The function inserts the RQ state to reset when the first error CQE is
937  * shown, then drains the CQ by the caller function loop. When the CQ is empty,
938  * it moves the RQ state to ready and initializes the RQ.
939  * Next CQE identification and error counting are in the caller responsibility.
940  *
941  * @param[in] rxq
942  *   Pointer to RX queue structure.
943  * @param[in] mbuf_prepare
944  *   Whether to prepare mbufs for the RQ.
945  *
946  * @return
947  *   -1 in case of recovery error, otherwise the CQE status.
948  */
949 int
950 mlx5_rx_err_handle(struct mlx5_rxq_data *rxq, uint8_t mbuf_prepare)
951 {
952         const uint16_t cqe_n = 1 << rxq->cqe_n;
953         const uint16_t cqe_mask = cqe_n - 1;
954         const unsigned int wqe_n = 1 << rxq->elts_n;
955         struct mlx5_rxq_ctrl *rxq_ctrl =
956                         container_of(rxq, struct mlx5_rxq_ctrl, rxq);
957         union {
958                 volatile struct mlx5_cqe *cqe;
959                 volatile struct mlx5_err_cqe *err_cqe;
960         } u = {
961                 .cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_mask],
962         };
963         struct mlx5_mp_arg_queue_state_modify sm;
964         int ret;
965
966         switch (rxq->err_state) {
967         case MLX5_RXQ_ERR_STATE_NO_ERROR:
968                 rxq->err_state = MLX5_RXQ_ERR_STATE_NEED_RESET;
969                 /* Fall-through */
970         case MLX5_RXQ_ERR_STATE_NEED_RESET:
971                 sm.is_wq = 1;
972                 sm.queue_id = rxq->idx;
973                 sm.state = IBV_WQS_RESET;
974                 if (mlx5_queue_state_modify(ETH_DEV(rxq_ctrl->priv), &sm))
975                         return -1;
976                 if (rxq_ctrl->dump_file_n <
977                     rxq_ctrl->priv->config.max_dump_files_num) {
978                         MKSTR(err_str, "Unexpected CQE error syndrome "
979                               "0x%02x CQN = %u RQN = %u wqe_counter = %u"
980                               " rq_ci = %u cq_ci = %u", u.err_cqe->syndrome,
981                               rxq->cqn, rxq_ctrl->wqn,
982                               rte_be_to_cpu_16(u.err_cqe->wqe_counter),
983                               rxq->rq_ci << rxq->sges_n, rxq->cq_ci);
984                         MKSTR(name, "dpdk_mlx5_port_%u_rxq_%u_%u",
985                               rxq->port_id, rxq->idx, (uint32_t)rte_rdtsc());
986                         mlx5_dump_debug_information(name, NULL, err_str, 0);
987                         mlx5_dump_debug_information(name, "MLX5 Error CQ:",
988                                                     (const void *)((uintptr_t)
989                                                                     rxq->cqes),
990                                                     sizeof(*u.cqe) * cqe_n);
991                         mlx5_dump_debug_information(name, "MLX5 Error RQ:",
992                                                     (const void *)((uintptr_t)
993                                                                     rxq->wqes),
994                                                     16 * wqe_n);
995                         rxq_ctrl->dump_file_n++;
996                 }
997                 rxq->err_state = MLX5_RXQ_ERR_STATE_NEED_READY;
998                 /* Fall-through */
999         case MLX5_RXQ_ERR_STATE_NEED_READY:
1000                 ret = check_cqe(u.cqe, cqe_n, rxq->cq_ci);
1001                 if (ret == MLX5_CQE_STATUS_HW_OWN) {
1002                         rte_cio_wmb();
1003                         *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1004                         rte_cio_wmb();
1005                         /*
1006                          * The RQ consumer index must be zeroed while moving
1007                          * from RESET state to RDY state.
1008                          */
1009                         *rxq->rq_db = rte_cpu_to_be_32(0);
1010                         rte_cio_wmb();
1011                         sm.is_wq = 1;
1012                         sm.queue_id = rxq->idx;
1013                         sm.state = IBV_WQS_RDY;
1014                         if (mlx5_queue_state_modify(ETH_DEV(rxq_ctrl->priv),
1015                                                     &sm))
1016                                 return -1;
1017                         if (mbuf_prepare) {
1018                                 const uint16_t q_mask = wqe_n - 1;
1019                                 uint16_t elt_idx;
1020                                 struct rte_mbuf **elt;
1021                                 int i;
1022                                 unsigned int n = wqe_n - (rxq->rq_ci -
1023                                                           rxq->rq_pi);
1024
1025                                 for (i = 0; i < (int)n; ++i) {
1026                                         elt_idx = (rxq->rq_ci + i) & q_mask;
1027                                         elt = &(*rxq->elts)[elt_idx];
1028                                         *elt = rte_mbuf_raw_alloc(rxq->mp);
1029                                         if (!*elt) {
1030                                                 for (i--; i >= 0; --i) {
1031                                                         elt_idx = (rxq->rq_ci +
1032                                                                    i) & q_mask;
1033                                                         elt = &(*rxq->elts)
1034                                                                 [elt_idx];
1035                                                         rte_pktmbuf_free_seg
1036                                                                 (*elt);
1037                                                 }
1038                                                 return -1;
1039                                         }
1040                                 }
1041                         }
1042                         mlx5_rxq_initialize(rxq);
1043                         rxq->err_state = MLX5_RXQ_ERR_STATE_NO_ERROR;
1044                 }
1045                 return ret;
1046         default:
1047                 return -1;
1048         }
1049 }
1050
1051 /**
1052  * Get size of the next packet for a given CQE. For compressed CQEs, the
1053  * consumer index is updated only once all packets of the current one have
1054  * been processed.
1055  *
1056  * @param rxq
1057  *   Pointer to RX queue.
1058  * @param cqe
1059  *   CQE to process.
1060  * @param[out] mcqe
1061  *   Store pointer to mini-CQE if compressed. Otherwise, the pointer is not
1062  *   written.
1063  *
1064  * @return
1065  *   0 in case of empty CQE, otherwise the packet size in bytes.
1066  */
1067 static inline int
1068 mlx5_rx_poll_len(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cqe,
1069                  uint16_t cqe_cnt, volatile struct mlx5_mini_cqe8 **mcqe)
1070 {
1071         struct rxq_zip *zip = &rxq->zip;
1072         uint16_t cqe_n = cqe_cnt + 1;
1073         int len;
1074         uint16_t idx, end;
1075
1076         do {
1077                 len = 0;
1078                 /* Process compressed data in the CQE and mini arrays. */
1079                 if (zip->ai) {
1080                         volatile struct mlx5_mini_cqe8 (*mc)[8] =
1081                                 (volatile struct mlx5_mini_cqe8 (*)[8])
1082                                 (uintptr_t)(&(*rxq->cqes)[zip->ca &
1083                                                           cqe_cnt].pkt_info);
1084
1085                         len = rte_be_to_cpu_32((*mc)[zip->ai & 7].byte_cnt);
1086                         *mcqe = &(*mc)[zip->ai & 7];
1087                         if ((++zip->ai & 7) == 0) {
1088                                 /* Invalidate consumed CQEs */
1089                                 idx = zip->ca;
1090                                 end = zip->na;
1091                                 while (idx != end) {
1092                                         (*rxq->cqes)[idx & cqe_cnt].op_own =
1093                                                 MLX5_CQE_INVALIDATE;
1094                                         ++idx;
1095                                 }
1096                                 /*
1097                                  * Increment consumer index to skip the number
1098                                  * of CQEs consumed. Hardware leaves holes in
1099                                  * the CQ ring for software use.
1100                                  */
1101                                 zip->ca = zip->na;
1102                                 zip->na += 8;
1103                         }
1104                         if (unlikely(rxq->zip.ai == rxq->zip.cqe_cnt)) {
1105                                 /* Invalidate the rest */
1106                                 idx = zip->ca;
1107                                 end = zip->cq_ci;
1108
1109                                 while (idx != end) {
1110                                         (*rxq->cqes)[idx & cqe_cnt].op_own =
1111                                                 MLX5_CQE_INVALIDATE;
1112                                         ++idx;
1113                                 }
1114                                 rxq->cq_ci = zip->cq_ci;
1115                                 zip->ai = 0;
1116                         }
1117                 /*
1118                  * No compressed data, get next CQE and verify if it is
1119                  * compressed.
1120                  */
1121                 } else {
1122                         int ret;
1123                         int8_t op_own;
1124
1125                         ret = check_cqe(cqe, cqe_n, rxq->cq_ci);
1126                         if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) {
1127                                 if (unlikely(ret == MLX5_CQE_STATUS_ERR ||
1128                                              rxq->err_state)) {
1129                                         ret = mlx5_rx_err_handle(rxq, 0);
1130                                         if (ret == MLX5_CQE_STATUS_HW_OWN ||
1131                                             ret == -1)
1132                                                 return 0;
1133                                 } else {
1134                                         return 0;
1135                                 }
1136                         }
1137                         ++rxq->cq_ci;
1138                         op_own = cqe->op_own;
1139                         if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED) {
1140                                 volatile struct mlx5_mini_cqe8 (*mc)[8] =
1141                                         (volatile struct mlx5_mini_cqe8 (*)[8])
1142                                         (uintptr_t)(&(*rxq->cqes)
1143                                                 [rxq->cq_ci &
1144                                                  cqe_cnt].pkt_info);
1145
1146                                 /* Fix endianness. */
1147                                 zip->cqe_cnt = rte_be_to_cpu_32(cqe->byte_cnt);
1148                                 /*
1149                                  * Current mini array position is the one
1150                                  * returned by check_cqe64().
1151                                  *
1152                                  * If completion comprises several mini arrays,
1153                                  * as a special case the second one is located
1154                                  * 7 CQEs after the initial CQE instead of 8
1155                                  * for subsequent ones.
1156                                  */
1157                                 zip->ca = rxq->cq_ci;
1158                                 zip->na = zip->ca + 7;
1159                                 /* Compute the next non compressed CQE. */
1160                                 --rxq->cq_ci;
1161                                 zip->cq_ci = rxq->cq_ci + zip->cqe_cnt;
1162                                 /* Get packet size to return. */
1163                                 len = rte_be_to_cpu_32((*mc)[0].byte_cnt);
1164                                 *mcqe = &(*mc)[0];
1165                                 zip->ai = 1;
1166                                 /* Prefetch all to be invalidated */
1167                                 idx = zip->ca;
1168                                 end = zip->cq_ci;
1169                                 while (idx != end) {
1170                                         rte_prefetch0(&(*rxq->cqes)[(idx) &
1171                                                                     cqe_cnt]);
1172                                         ++idx;
1173                                 }
1174                         } else {
1175                                 len = rte_be_to_cpu_32(cqe->byte_cnt);
1176                         }
1177                 }
1178                 if (unlikely(rxq->err_state)) {
1179                         cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1180                         ++rxq->stats.idropped;
1181                 } else {
1182                         return len;
1183                 }
1184         } while (1);
1185 }
1186
1187 /**
1188  * Translate RX completion flags to offload flags.
1189  *
1190  * @param[in] cqe
1191  *   Pointer to CQE.
1192  *
1193  * @return
1194  *   Offload flags (ol_flags) for struct rte_mbuf.
1195  */
1196 static inline uint32_t
1197 rxq_cq_to_ol_flags(volatile struct mlx5_cqe *cqe)
1198 {
1199         uint32_t ol_flags = 0;
1200         uint16_t flags = rte_be_to_cpu_16(cqe->hdr_type_etc);
1201
1202         ol_flags =
1203                 TRANSPOSE(flags,
1204                           MLX5_CQE_RX_L3_HDR_VALID,
1205                           PKT_RX_IP_CKSUM_GOOD) |
1206                 TRANSPOSE(flags,
1207                           MLX5_CQE_RX_L4_HDR_VALID,
1208                           PKT_RX_L4_CKSUM_GOOD);
1209         return ol_flags;
1210 }
1211
1212 /**
1213  * Fill in mbuf fields from RX completion flags.
1214  * Note that pkt->ol_flags should be initialized outside of this function.
1215  *
1216  * @param rxq
1217  *   Pointer to RX queue.
1218  * @param pkt
1219  *   mbuf to fill.
1220  * @param cqe
1221  *   CQE to process.
1222  * @param rss_hash_res
1223  *   Packet RSS Hash result.
1224  */
1225 static inline void
1226 rxq_cq_to_mbuf(struct mlx5_rxq_data *rxq, struct rte_mbuf *pkt,
1227                volatile struct mlx5_cqe *cqe, uint32_t rss_hash_res)
1228 {
1229         /* Update packet information. */
1230         pkt->packet_type = rxq_cq_to_pkt_type(rxq, cqe);
1231         if (rss_hash_res && rxq->rss_hash) {
1232                 pkt->hash.rss = rss_hash_res;
1233                 pkt->ol_flags |= PKT_RX_RSS_HASH;
1234         }
1235         if (rxq->mark && MLX5_FLOW_MARK_IS_VALID(cqe->sop_drop_qpn)) {
1236                 pkt->ol_flags |= PKT_RX_FDIR;
1237                 if (cqe->sop_drop_qpn !=
1238                     rte_cpu_to_be_32(MLX5_FLOW_MARK_DEFAULT)) {
1239                         uint32_t mark = cqe->sop_drop_qpn;
1240
1241                         pkt->ol_flags |= PKT_RX_FDIR_ID;
1242                         pkt->hash.fdir.hi = mlx5_flow_mark_get(mark);
1243                 }
1244         }
1245         if (rxq->csum)
1246                 pkt->ol_flags |= rxq_cq_to_ol_flags(cqe);
1247         if (rxq->vlan_strip &&
1248             (cqe->hdr_type_etc & rte_cpu_to_be_16(MLX5_CQE_VLAN_STRIPPED))) {
1249                 pkt->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
1250                 pkt->vlan_tci = rte_be_to_cpu_16(cqe->vlan_info);
1251         }
1252         if (rxq->hw_timestamp) {
1253                 pkt->timestamp = rte_be_to_cpu_64(cqe->timestamp);
1254                 pkt->ol_flags |= PKT_RX_TIMESTAMP;
1255         }
1256 }
1257
1258 /**
1259  * DPDK callback for RX.
1260  *
1261  * @param dpdk_rxq
1262  *   Generic pointer to RX queue structure.
1263  * @param[out] pkts
1264  *   Array to store received packets.
1265  * @param pkts_n
1266  *   Maximum number of packets in array.
1267  *
1268  * @return
1269  *   Number of packets successfully received (<= pkts_n).
1270  */
1271 uint16_t
1272 mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1273 {
1274         struct mlx5_rxq_data *rxq = dpdk_rxq;
1275         const unsigned int wqe_cnt = (1 << rxq->elts_n) - 1;
1276         const unsigned int cqe_cnt = (1 << rxq->cqe_n) - 1;
1277         const unsigned int sges_n = rxq->sges_n;
1278         struct rte_mbuf *pkt = NULL;
1279         struct rte_mbuf *seg = NULL;
1280         volatile struct mlx5_cqe *cqe =
1281                 &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1282         unsigned int i = 0;
1283         unsigned int rq_ci = rxq->rq_ci << sges_n;
1284         int len = 0; /* keep its value across iterations. */
1285
1286         while (pkts_n) {
1287                 unsigned int idx = rq_ci & wqe_cnt;
1288                 volatile struct mlx5_wqe_data_seg *wqe =
1289                         &((volatile struct mlx5_wqe_data_seg *)rxq->wqes)[idx];
1290                 struct rte_mbuf *rep = (*rxq->elts)[idx];
1291                 volatile struct mlx5_mini_cqe8 *mcqe = NULL;
1292                 uint32_t rss_hash_res;
1293
1294                 if (pkt)
1295                         NEXT(seg) = rep;
1296                 seg = rep;
1297                 rte_prefetch0(seg);
1298                 rte_prefetch0(cqe);
1299                 rte_prefetch0(wqe);
1300                 rep = rte_mbuf_raw_alloc(rxq->mp);
1301                 if (unlikely(rep == NULL)) {
1302                         ++rxq->stats.rx_nombuf;
1303                         if (!pkt) {
1304                                 /*
1305                                  * no buffers before we even started,
1306                                  * bail out silently.
1307                                  */
1308                                 break;
1309                         }
1310                         while (pkt != seg) {
1311                                 assert(pkt != (*rxq->elts)[idx]);
1312                                 rep = NEXT(pkt);
1313                                 NEXT(pkt) = NULL;
1314                                 NB_SEGS(pkt) = 1;
1315                                 rte_mbuf_raw_free(pkt);
1316                                 pkt = rep;
1317                         }
1318                         break;
1319                 }
1320                 if (!pkt) {
1321                         cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1322                         len = mlx5_rx_poll_len(rxq, cqe, cqe_cnt, &mcqe);
1323                         if (!len) {
1324                                 rte_mbuf_raw_free(rep);
1325                                 break;
1326                         }
1327                         pkt = seg;
1328                         assert(len >= (rxq->crc_present << 2));
1329                         pkt->ol_flags = 0;
1330                         /* If compressed, take hash result from mini-CQE. */
1331                         rss_hash_res = rte_be_to_cpu_32(mcqe == NULL ?
1332                                                         cqe->rx_hash_res :
1333                                                         mcqe->rx_hash_result);
1334                         rxq_cq_to_mbuf(rxq, pkt, cqe, rss_hash_res);
1335                         if (rxq->crc_present)
1336                                 len -= RTE_ETHER_CRC_LEN;
1337                         PKT_LEN(pkt) = len;
1338                         if (cqe->lro_num_seg > 1) {
1339                                 mlx5_lro_update_hdr
1340                                         (rte_pktmbuf_mtod(pkt, uint8_t *), cqe,
1341                                          len);
1342                                 pkt->ol_flags |= PKT_RX_LRO;
1343                                 pkt->tso_segsz = len / cqe->lro_num_seg;
1344                         }
1345                 }
1346                 DATA_LEN(rep) = DATA_LEN(seg);
1347                 PKT_LEN(rep) = PKT_LEN(seg);
1348                 SET_DATA_OFF(rep, DATA_OFF(seg));
1349                 PORT(rep) = PORT(seg);
1350                 (*rxq->elts)[idx] = rep;
1351                 /*
1352                  * Fill NIC descriptor with the new buffer.  The lkey and size
1353                  * of the buffers are already known, only the buffer address
1354                  * changes.
1355                  */
1356                 wqe->addr = rte_cpu_to_be_64(rte_pktmbuf_mtod(rep, uintptr_t));
1357                 /* If there's only one MR, no need to replace LKey in WQE. */
1358                 if (unlikely(mlx5_mr_btree_len(&rxq->mr_ctrl.cache_bh) > 1))
1359                         wqe->lkey = mlx5_rx_mb2mr(rxq, rep);
1360                 if (len > DATA_LEN(seg)) {
1361                         len -= DATA_LEN(seg);
1362                         ++NB_SEGS(pkt);
1363                         ++rq_ci;
1364                         continue;
1365                 }
1366                 DATA_LEN(seg) = len;
1367 #ifdef MLX5_PMD_SOFT_COUNTERS
1368                 /* Increment bytes counter. */
1369                 rxq->stats.ibytes += PKT_LEN(pkt);
1370 #endif
1371                 /* Return packet. */
1372                 *(pkts++) = pkt;
1373                 pkt = NULL;
1374                 --pkts_n;
1375                 ++i;
1376                 /* Align consumer index to the next stride. */
1377                 rq_ci >>= sges_n;
1378                 ++rq_ci;
1379                 rq_ci <<= sges_n;
1380         }
1381         if (unlikely((i == 0) && ((rq_ci >> sges_n) == rxq->rq_ci)))
1382                 return 0;
1383         /* Update the consumer index. */
1384         rxq->rq_ci = rq_ci >> sges_n;
1385         rte_cio_wmb();
1386         *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1387         rte_cio_wmb();
1388         *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
1389 #ifdef MLX5_PMD_SOFT_COUNTERS
1390         /* Increment packets counter. */
1391         rxq->stats.ipackets += i;
1392 #endif
1393         return i;
1394 }
1395
1396 /**
1397  * Update LRO packet TCP header.
1398  * The HW LRO feature doesn't update the TCP header after coalescing the
1399  * TCP segments but supplies information in CQE to fill it by SW.
1400  *
1401  * @param tcp
1402  *   Pointer to the TCP header.
1403  * @param cqe
1404  *   Pointer to the completion entry..
1405  * @param phcsum
1406  *   The L3 pseudo-header checksum.
1407  */
1408 static inline void
1409 mlx5_lro_update_tcp_hdr(struct rte_tcp_hdr *restrict tcp,
1410                         volatile struct mlx5_cqe *restrict cqe,
1411                         uint32_t phcsum)
1412 {
1413         uint8_t l4_type = (rte_be_to_cpu_16(cqe->hdr_type_etc) &
1414                            MLX5_CQE_L4_TYPE_MASK) >> MLX5_CQE_L4_TYPE_SHIFT;
1415         /*
1416          * The HW calculates only the TCP payload checksum, need to complete
1417          * the TCP header checksum and the L3 pseudo-header checksum.
1418          */
1419         uint32_t csum = phcsum + cqe->csum;
1420
1421         if (l4_type == MLX5_L4_HDR_TYPE_TCP_EMPTY_ACK ||
1422             l4_type == MLX5_L4_HDR_TYPE_TCP_WITH_ACL) {
1423                 tcp->tcp_flags |= RTE_TCP_ACK_FLAG;
1424                 tcp->recv_ack = cqe->lro_ack_seq_num;
1425                 tcp->rx_win = cqe->lro_tcp_win;
1426         }
1427         if (cqe->lro_tcppsh_abort_dupack & MLX5_CQE_LRO_PUSH_MASK)
1428                 tcp->tcp_flags |= RTE_TCP_PSH_FLAG;
1429         tcp->cksum = 0;
1430         csum += rte_raw_cksum(tcp, (tcp->data_off & 0xF) * 4);
1431         csum = ((csum & 0xffff0000) >> 16) + (csum & 0xffff);
1432         csum = (~csum) & 0xffff;
1433         if (csum == 0)
1434                 csum = 0xffff;
1435         tcp->cksum = csum;
1436 }
1437
1438 /**
1439  * Update LRO packet headers.
1440  * The HW LRO feature doesn't update the L3/TCP headers after coalescing the
1441  * TCP segments but supply information in CQE to fill it by SW.
1442  *
1443  * @param padd
1444  *   The packet address.
1445  * @param cqe
1446  *   Pointer to the completion entry..
1447  * @param len
1448  *   The packet length.
1449  */
1450 static inline void
1451 mlx5_lro_update_hdr(uint8_t *restrict padd,
1452                     volatile struct mlx5_cqe *restrict cqe,
1453                     uint32_t len)
1454 {
1455         union {
1456                 struct rte_ether_hdr *eth;
1457                 struct rte_vlan_hdr *vlan;
1458                 struct rte_ipv4_hdr *ipv4;
1459                 struct rte_ipv6_hdr *ipv6;
1460                 struct rte_tcp_hdr *tcp;
1461                 uint8_t *hdr;
1462         } h = {
1463                         .hdr = padd,
1464         };
1465         uint16_t proto = h.eth->ether_type;
1466         uint32_t phcsum;
1467
1468         h.eth++;
1469         while (proto == RTE_BE16(RTE_ETHER_TYPE_VLAN) ||
1470                proto == RTE_BE16(RTE_ETHER_TYPE_QINQ)) {
1471                 proto = h.vlan->eth_proto;
1472                 h.vlan++;
1473         }
1474         if (proto == RTE_BE16(RTE_ETHER_TYPE_IPV4)) {
1475                 h.ipv4->time_to_live = cqe->lro_min_ttl;
1476                 h.ipv4->total_length = rte_cpu_to_be_16(len - (h.hdr - padd));
1477                 h.ipv4->hdr_checksum = 0;
1478                 h.ipv4->hdr_checksum = rte_ipv4_cksum(h.ipv4);
1479                 phcsum = rte_ipv4_phdr_cksum(h.ipv4, 0);
1480                 h.ipv4++;
1481         } else {
1482                 h.ipv6->hop_limits = cqe->lro_min_ttl;
1483                 h.ipv6->payload_len = rte_cpu_to_be_16(len - (h.hdr - padd) -
1484                                                        sizeof(*h.ipv6));
1485                 phcsum = rte_ipv6_phdr_cksum(h.ipv6, 0);
1486                 h.ipv6++;
1487         }
1488         mlx5_lro_update_tcp_hdr(h.tcp, cqe, phcsum);
1489 }
1490
1491 void
1492 mlx5_mprq_buf_free_cb(void *addr __rte_unused, void *opaque)
1493 {
1494         struct mlx5_mprq_buf *buf = opaque;
1495
1496         if (rte_atomic16_read(&buf->refcnt) == 1) {
1497                 rte_mempool_put(buf->mp, buf);
1498         } else if (rte_atomic16_add_return(&buf->refcnt, -1) == 0) {
1499                 rte_atomic16_set(&buf->refcnt, 1);
1500                 rte_mempool_put(buf->mp, buf);
1501         }
1502 }
1503
1504 void
1505 mlx5_mprq_buf_free(struct mlx5_mprq_buf *buf)
1506 {
1507         mlx5_mprq_buf_free_cb(NULL, buf);
1508 }
1509
1510 static inline void
1511 mprq_buf_replace(struct mlx5_rxq_data *rxq, uint16_t rq_idx,
1512                  const unsigned int strd_n)
1513 {
1514         struct mlx5_mprq_buf *rep = rxq->mprq_repl;
1515         volatile struct mlx5_wqe_data_seg *wqe =
1516                 &((volatile struct mlx5_wqe_mprq *)rxq->wqes)[rq_idx].dseg;
1517         void *addr;
1518
1519         assert(rep != NULL);
1520         /* Replace MPRQ buf. */
1521         (*rxq->mprq_bufs)[rq_idx] = rep;
1522         /* Replace WQE. */
1523         addr = mlx5_mprq_buf_addr(rep, strd_n);
1524         wqe->addr = rte_cpu_to_be_64((uintptr_t)addr);
1525         /* If there's only one MR, no need to replace LKey in WQE. */
1526         if (unlikely(mlx5_mr_btree_len(&rxq->mr_ctrl.cache_bh) > 1))
1527                 wqe->lkey = mlx5_rx_addr2mr(rxq, (uintptr_t)addr);
1528         /* Stash a mbuf for next replacement. */
1529         if (likely(!rte_mempool_get(rxq->mprq_mp, (void **)&rep)))
1530                 rxq->mprq_repl = rep;
1531         else
1532                 rxq->mprq_repl = NULL;
1533 }
1534
1535 /**
1536  * DPDK callback for RX with Multi-Packet RQ support.
1537  *
1538  * @param dpdk_rxq
1539  *   Generic pointer to RX queue structure.
1540  * @param[out] pkts
1541  *   Array to store received packets.
1542  * @param pkts_n
1543  *   Maximum number of packets in array.
1544  *
1545  * @return
1546  *   Number of packets successfully received (<= pkts_n).
1547  */
1548 uint16_t
1549 mlx5_rx_burst_mprq(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1550 {
1551         struct mlx5_rxq_data *rxq = dpdk_rxq;
1552         const unsigned int strd_n = 1 << rxq->strd_num_n;
1553         const unsigned int strd_sz = 1 << rxq->strd_sz_n;
1554         const unsigned int strd_shift =
1555                 MLX5_MPRQ_STRIDE_SHIFT_BYTE * rxq->strd_shift_en;
1556         const unsigned int cq_mask = (1 << rxq->cqe_n) - 1;
1557         const unsigned int wq_mask = (1 << rxq->elts_n) - 1;
1558         volatile struct mlx5_cqe *cqe = &(*rxq->cqes)[rxq->cq_ci & cq_mask];
1559         unsigned int i = 0;
1560         uint32_t rq_ci = rxq->rq_ci;
1561         uint16_t consumed_strd = rxq->consumed_strd;
1562         uint16_t headroom_sz = rxq->strd_headroom_en * RTE_PKTMBUF_HEADROOM;
1563         struct mlx5_mprq_buf *buf = (*rxq->mprq_bufs)[rq_ci & wq_mask];
1564
1565         while (i < pkts_n) {
1566                 struct rte_mbuf *pkt;
1567                 void *addr;
1568                 int ret;
1569                 unsigned int len;
1570                 uint16_t strd_cnt;
1571                 uint16_t strd_idx;
1572                 uint32_t offset;
1573                 uint32_t byte_cnt;
1574                 volatile struct mlx5_mini_cqe8 *mcqe = NULL;
1575                 uint32_t rss_hash_res = 0;
1576                 uint8_t lro_num_seg;
1577
1578                 if (consumed_strd == strd_n) {
1579                         /* Replace WQE only if the buffer is still in use. */
1580                         if (rte_atomic16_read(&buf->refcnt) > 1) {
1581                                 mprq_buf_replace(rxq, rq_ci & wq_mask, strd_n);
1582                                 /* Release the old buffer. */
1583                                 mlx5_mprq_buf_free(buf);
1584                         } else if (unlikely(rxq->mprq_repl == NULL)) {
1585                                 struct mlx5_mprq_buf *rep;
1586
1587                                 /*
1588                                  * Currently, the MPRQ mempool is out of buffer
1589                                  * and doing memcpy regardless of the size of Rx
1590                                  * packet. Retry allocation to get back to
1591                                  * normal.
1592                                  */
1593                                 if (!rte_mempool_get(rxq->mprq_mp,
1594                                                      (void **)&rep))
1595                                         rxq->mprq_repl = rep;
1596                         }
1597                         /* Advance to the next WQE. */
1598                         consumed_strd = 0;
1599                         ++rq_ci;
1600                         buf = (*rxq->mprq_bufs)[rq_ci & wq_mask];
1601                 }
1602                 cqe = &(*rxq->cqes)[rxq->cq_ci & cq_mask];
1603                 ret = mlx5_rx_poll_len(rxq, cqe, cq_mask, &mcqe);
1604                 if (!ret)
1605                         break;
1606                 byte_cnt = ret;
1607                 strd_cnt = (byte_cnt & MLX5_MPRQ_STRIDE_NUM_MASK) >>
1608                            MLX5_MPRQ_STRIDE_NUM_SHIFT;
1609                 assert(strd_cnt);
1610                 consumed_strd += strd_cnt;
1611                 if (byte_cnt & MLX5_MPRQ_FILLER_MASK)
1612                         continue;
1613                 if (mcqe == NULL) {
1614                         rss_hash_res = rte_be_to_cpu_32(cqe->rx_hash_res);
1615                         strd_idx = rte_be_to_cpu_16(cqe->wqe_counter);
1616                 } else {
1617                         /* mini-CQE for MPRQ doesn't have hash result. */
1618                         strd_idx = rte_be_to_cpu_16(mcqe->stride_idx);
1619                 }
1620                 assert(strd_idx < strd_n);
1621                 assert(!((rte_be_to_cpu_16(cqe->wqe_id) ^ rq_ci) & wq_mask));
1622                 lro_num_seg = cqe->lro_num_seg;
1623                 /*
1624                  * Currently configured to receive a packet per a stride. But if
1625                  * MTU is adjusted through kernel interface, device could
1626                  * consume multiple strides without raising an error. In this
1627                  * case, the packet should be dropped because it is bigger than
1628                  * the max_rx_pkt_len.
1629                  */
1630                 if (unlikely(!lro_num_seg && strd_cnt > 1)) {
1631                         ++rxq->stats.idropped;
1632                         continue;
1633                 }
1634                 pkt = rte_pktmbuf_alloc(rxq->mp);
1635                 if (unlikely(pkt == NULL)) {
1636                         ++rxq->stats.rx_nombuf;
1637                         break;
1638                 }
1639                 len = (byte_cnt & MLX5_MPRQ_LEN_MASK) >> MLX5_MPRQ_LEN_SHIFT;
1640                 assert((int)len >= (rxq->crc_present << 2));
1641                 if (rxq->crc_present)
1642                         len -= RTE_ETHER_CRC_LEN;
1643                 offset = strd_idx * strd_sz + strd_shift;
1644                 addr = RTE_PTR_ADD(mlx5_mprq_buf_addr(buf, strd_n), offset);
1645                 /*
1646                  * Memcpy packets to the target mbuf if:
1647                  * - The size of packet is smaller than mprq_max_memcpy_len.
1648                  * - Out of buffer in the Mempool for Multi-Packet RQ.
1649                  */
1650                 if (len <= rxq->mprq_max_memcpy_len || rxq->mprq_repl == NULL) {
1651                         /*
1652                          * When memcpy'ing packet due to out-of-buffer, the
1653                          * packet must be smaller than the target mbuf.
1654                          */
1655                         if (unlikely(rte_pktmbuf_tailroom(pkt) < len)) {
1656                                 rte_pktmbuf_free_seg(pkt);
1657                                 ++rxq->stats.idropped;
1658                                 continue;
1659                         }
1660                         rte_memcpy(rte_pktmbuf_mtod(pkt, void *), addr, len);
1661                         DATA_LEN(pkt) = len;
1662                 } else {
1663                         rte_iova_t buf_iova;
1664                         struct rte_mbuf_ext_shared_info *shinfo;
1665                         uint16_t buf_len = strd_cnt * strd_sz;
1666                         void *buf_addr;
1667
1668                         /* Increment the refcnt of the whole chunk. */
1669                         rte_atomic16_add_return(&buf->refcnt, 1);
1670                         assert((uint16_t)rte_atomic16_read(&buf->refcnt) <=
1671                                strd_n + 1);
1672                         buf_addr = RTE_PTR_SUB(addr, headroom_sz);
1673                         /*
1674                          * MLX5 device doesn't use iova but it is necessary in a
1675                          * case where the Rx packet is transmitted via a
1676                          * different PMD.
1677                          */
1678                         buf_iova = rte_mempool_virt2iova(buf) +
1679                                    RTE_PTR_DIFF(buf_addr, buf);
1680                         shinfo = &buf->shinfos[strd_idx];
1681                         rte_mbuf_ext_refcnt_set(shinfo, 1);
1682                         /*
1683                          * EXT_ATTACHED_MBUF will be set to pkt->ol_flags when
1684                          * attaching the stride to mbuf and more offload flags
1685                          * will be added below by calling rxq_cq_to_mbuf().
1686                          * Other fields will be overwritten.
1687                          */
1688                         rte_pktmbuf_attach_extbuf(pkt, buf_addr, buf_iova,
1689                                                   buf_len, shinfo);
1690                         /* Set mbuf head-room. */
1691                         pkt->data_off = headroom_sz;
1692                         assert(pkt->ol_flags == EXT_ATTACHED_MBUF);
1693                         /*
1694                          * Prevent potential overflow due to MTU change through
1695                          * kernel interface.
1696                          */
1697                         if (unlikely(rte_pktmbuf_tailroom(pkt) < len)) {
1698                                 rte_pktmbuf_free_seg(pkt);
1699                                 ++rxq->stats.idropped;
1700                                 continue;
1701                         }
1702                         DATA_LEN(pkt) = len;
1703                         /*
1704                          * LRO packet may consume all the stride memory, in this
1705                          * case packet head-room space is not guaranteed so must
1706                          * to add an empty mbuf for the head-room.
1707                          */
1708                         if (!rxq->strd_headroom_en) {
1709                                 struct rte_mbuf *headroom_mbuf =
1710                                                 rte_pktmbuf_alloc(rxq->mp);
1711
1712                                 if (unlikely(headroom_mbuf == NULL)) {
1713                                         rte_pktmbuf_free_seg(pkt);
1714                                         ++rxq->stats.rx_nombuf;
1715                                         break;
1716                                 }
1717                                 PORT(pkt) = rxq->port_id;
1718                                 NEXT(headroom_mbuf) = pkt;
1719                                 pkt = headroom_mbuf;
1720                                 NB_SEGS(pkt) = 2;
1721                         }
1722                 }
1723                 rxq_cq_to_mbuf(rxq, pkt, cqe, rss_hash_res);
1724                 if (lro_num_seg > 1) {
1725                         mlx5_lro_update_hdr(addr, cqe, len);
1726                         pkt->ol_flags |= PKT_RX_LRO;
1727                         pkt->tso_segsz = strd_sz;
1728                 }
1729                 PKT_LEN(pkt) = len;
1730                 PORT(pkt) = rxq->port_id;
1731 #ifdef MLX5_PMD_SOFT_COUNTERS
1732                 /* Increment bytes counter. */
1733                 rxq->stats.ibytes += PKT_LEN(pkt);
1734 #endif
1735                 /* Return packet. */
1736                 *(pkts++) = pkt;
1737                 ++i;
1738         }
1739         /* Update the consumer indexes. */
1740         rxq->consumed_strd = consumed_strd;
1741         rte_cio_wmb();
1742         *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1743         if (rq_ci != rxq->rq_ci) {
1744                 rxq->rq_ci = rq_ci;
1745                 rte_cio_wmb();
1746                 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
1747         }
1748 #ifdef MLX5_PMD_SOFT_COUNTERS
1749         /* Increment packets counter. */
1750         rxq->stats.ipackets += i;
1751 #endif
1752         return i;
1753 }
1754
1755 /**
1756  * Dummy DPDK callback for TX.
1757  *
1758  * This function is used to temporarily replace the real callback during
1759  * unsafe control operations on the queue, or in case of error.
1760  *
1761  * @param dpdk_txq
1762  *   Generic pointer to TX queue structure.
1763  * @param[in] pkts
1764  *   Packets to transmit.
1765  * @param pkts_n
1766  *   Number of packets in array.
1767  *
1768  * @return
1769  *   Number of packets successfully transmitted (<= pkts_n).
1770  */
1771 uint16_t
1772 removed_tx_burst(void *dpdk_txq __rte_unused,
1773                  struct rte_mbuf **pkts __rte_unused,
1774                  uint16_t pkts_n __rte_unused)
1775 {
1776         rte_mb();
1777         return 0;
1778 }
1779
1780 /**
1781  * Dummy DPDK callback for RX.
1782  *
1783  * This function is used to temporarily replace the real callback during
1784  * unsafe control operations on the queue, or in case of error.
1785  *
1786  * @param dpdk_rxq
1787  *   Generic pointer to RX queue structure.
1788  * @param[out] pkts
1789  *   Array to store received packets.
1790  * @param pkts_n
1791  *   Maximum number of packets in array.
1792  *
1793  * @return
1794  *   Number of packets successfully received (<= pkts_n).
1795  */
1796 uint16_t
1797 removed_rx_burst(void *dpdk_txq __rte_unused,
1798                  struct rte_mbuf **pkts __rte_unused,
1799                  uint16_t pkts_n __rte_unused)
1800 {
1801         rte_mb();
1802         return 0;
1803 }
1804
1805 /*
1806  * Vectorized Rx/Tx routines are not compiled in when required vector
1807  * instructions are not supported on a target architecture. The following null
1808  * stubs are needed for linkage when those are not included outside of this file
1809  * (e.g.  mlx5_rxtx_vec_sse.c for x86).
1810  */
1811
1812 __rte_weak uint16_t
1813 mlx5_rx_burst_vec(void *dpdk_txq __rte_unused,
1814                   struct rte_mbuf **pkts __rte_unused,
1815                   uint16_t pkts_n __rte_unused)
1816 {
1817         return 0;
1818 }
1819
1820 __rte_weak int
1821 mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq __rte_unused)
1822 {
1823         return -ENOTSUP;
1824 }
1825
1826 __rte_weak int
1827 mlx5_check_vec_rx_support(struct rte_eth_dev *dev __rte_unused)
1828 {
1829         return -ENOTSUP;
1830 }
1831
1832 /**
1833  * Free the mbufs from the linear array of pointers.
1834  *
1835  * @param pkts
1836  *   Pointer to array of packets to be free.
1837  * @param pkts_n
1838  *   Number of packets to be freed.
1839  * @param olx
1840  *   Configured Tx offloads mask. It is fully defined at
1841  *   compile time and may be used for optimization.
1842  */
1843 static __rte_always_inline void
1844 mlx5_tx_free_mbuf(struct rte_mbuf **restrict pkts,
1845                   unsigned int pkts_n,
1846                   unsigned int olx __rte_unused)
1847 {
1848         struct rte_mempool *pool = NULL;
1849         struct rte_mbuf **p_free = NULL;
1850         struct rte_mbuf *mbuf;
1851         unsigned int n_free = 0;
1852
1853         /*
1854          * The implemented algorithm eliminates
1855          * copying pointers to temporary array
1856          * for rte_mempool_put_bulk() calls.
1857          */
1858         assert(pkts);
1859         assert(pkts_n);
1860         for (;;) {
1861                 for (;;) {
1862                         /*
1863                          * Decrement mbuf reference counter, detach
1864                          * indirect and external buffers if needed.
1865                          */
1866                         mbuf = rte_pktmbuf_prefree_seg(*pkts);
1867                         if (likely(mbuf != NULL)) {
1868                                 assert(mbuf == *pkts);
1869                                 if (likely(n_free != 0)) {
1870                                         if (unlikely(pool != mbuf->pool))
1871                                                 /* From different pool. */
1872                                                 break;
1873                                 } else {
1874                                         /* Start new scan array. */
1875                                         pool = mbuf->pool;
1876                                         p_free = pkts;
1877                                 }
1878                                 ++n_free;
1879                                 ++pkts;
1880                                 --pkts_n;
1881                                 if (unlikely(pkts_n == 0)) {
1882                                         mbuf = NULL;
1883                                         break;
1884                                 }
1885                         } else {
1886                                 /*
1887                                  * This happens if mbuf is still referenced.
1888                                  * We can't put it back to the pool, skip.
1889                                  */
1890                                 ++pkts;
1891                                 --pkts_n;
1892                                 if (unlikely(n_free != 0))
1893                                         /* There is some array to free.*/
1894                                         break;
1895                                 if (unlikely(pkts_n == 0))
1896                                         /* Last mbuf, nothing to free. */
1897                                         return;
1898                         }
1899                 }
1900                 for (;;) {
1901                         /*
1902                          * This loop is implemented to avoid multiple
1903                          * inlining of rte_mempool_put_bulk().
1904                          */
1905                         assert(pool);
1906                         assert(p_free);
1907                         assert(n_free);
1908                         /*
1909                          * Free the array of pre-freed mbufs
1910                          * belonging to the same memory pool.
1911                          */
1912                         rte_mempool_put_bulk(pool, (void *)p_free, n_free);
1913                         if (unlikely(mbuf != NULL)) {
1914                                 /* There is the request to start new scan. */
1915                                 pool = mbuf->pool;
1916                                 p_free = pkts++;
1917                                 n_free = 1;
1918                                 --pkts_n;
1919                                 if (likely(pkts_n != 0))
1920                                         break;
1921                                 /*
1922                                  * This is the last mbuf to be freed.
1923                                  * Do one more loop iteration to complete.
1924                                  * This is rare case of the last unique mbuf.
1925                                  */
1926                                 mbuf = NULL;
1927                                 continue;
1928                         }
1929                         if (likely(pkts_n == 0))
1930                                 return;
1931                         n_free = 0;
1932                         break;
1933                 }
1934         }
1935 }
1936
1937 /**
1938  * Free the mbuf from the elts ring buffer till new tail.
1939  *
1940  * @param txq
1941  *   Pointer to Tx queue structure.
1942  * @param tail
1943  *   Index in elts to free up to, becomes new elts tail.
1944  * @param olx
1945  *   Configured Tx offloads mask. It is fully defined at
1946  *   compile time and may be used for optimization.
1947  */
1948 static __rte_always_inline void
1949 mlx5_tx_free_elts(struct mlx5_txq_data *restrict txq,
1950                   uint16_t tail,
1951                   unsigned int olx __rte_unused)
1952 {
1953         uint16_t n_elts = tail - txq->elts_tail;
1954
1955         assert(n_elts);
1956         assert(n_elts <= txq->elts_s);
1957         /*
1958          * Implement a loop to support ring buffer wraparound
1959          * with single inlining of mlx5_tx_free_mbuf().
1960          */
1961         do {
1962                 unsigned int part;
1963
1964                 part = txq->elts_s - (txq->elts_tail & txq->elts_m);
1965                 part = RTE_MIN(part, n_elts);
1966                 assert(part);
1967                 assert(part <= txq->elts_s);
1968                 mlx5_tx_free_mbuf(&txq->elts[txq->elts_tail & txq->elts_m],
1969                                   part, olx);
1970                 txq->elts_tail += part;
1971                 n_elts -= part;
1972         } while (n_elts);
1973 }
1974
1975 /**
1976  * Store the mbuf being sent into elts ring buffer.
1977  * On Tx completion these mbufs will be freed.
1978  *
1979  * @param txq
1980  *   Pointer to Tx queue structure.
1981  * @param pkts
1982  *   Pointer to array of packets to be stored.
1983  * @param pkts_n
1984  *   Number of packets to be stored.
1985  * @param olx
1986  *   Configured Tx offloads mask. It is fully defined at
1987  *   compile time and may be used for optimization.
1988  */
1989 static __rte_always_inline void
1990 mlx5_tx_copy_elts(struct mlx5_txq_data *restrict txq,
1991                   struct rte_mbuf **restrict pkts,
1992                   unsigned int pkts_n,
1993                   unsigned int olx __rte_unused)
1994 {
1995         unsigned int part;
1996         struct rte_mbuf **elts = (struct rte_mbuf **)txq->elts;
1997
1998         assert(pkts);
1999         assert(pkts_n);
2000         part = txq->elts_s - (txq->elts_head & txq->elts_m);
2001         assert(part);
2002         assert(part <= txq->elts_s);
2003         /* This code is a good candidate for vectorizing with SIMD. */
2004         rte_memcpy((void *)(elts + (txq->elts_head & txq->elts_m)),
2005                    (void *)pkts,
2006                    RTE_MIN(part, pkts_n) * sizeof(struct rte_mbuf *));
2007         txq->elts_head += pkts_n;
2008         if (unlikely(part < pkts_n))
2009                 /* The copy is wrapping around the elts array. */
2010                 rte_memcpy((void *)elts, (void *)(pkts + part),
2011                            (pkts_n - part) * sizeof(struct rte_mbuf *));
2012 }
2013
2014 /**
2015  * Update completion queue consuming index via doorbell
2016  * and flush the completed data buffers.
2017  *
2018  * @param txq
2019  *   Pointer to TX queue structure.
2020  * @param valid CQE pointer
2021  *   if not NULL update txq->wqe_pi and flush the buffers
2022  * @param itail
2023  *   if not negative - flush the buffers till this index.
2024  * @param olx
2025  *   Configured Tx offloads mask. It is fully defined at
2026  *   compile time and may be used for optimization.
2027  */
2028 static __rte_always_inline void
2029 mlx5_tx_comp_flush(struct mlx5_txq_data *restrict txq,
2030                    volatile struct mlx5_cqe *last_cqe,
2031                    int itail,
2032                    unsigned int olx __rte_unused)
2033 {
2034         uint16_t tail;
2035
2036         if (likely(last_cqe != NULL)) {
2037                 txq->wqe_pi = rte_be_to_cpu_16(last_cqe->wqe_counter);
2038                 tail = ((volatile struct mlx5_wqe_cseg *)
2039                         (txq->wqes + (txq->wqe_pi & txq->wqe_m)))->misc;
2040         } else if (itail >= 0) {
2041                 tail = (uint16_t)itail;
2042         } else {
2043                 return;
2044         }
2045         rte_compiler_barrier();
2046         *txq->cq_db = rte_cpu_to_be_32(txq->cq_ci);
2047         if (likely(tail != txq->elts_tail)) {
2048                 mlx5_tx_free_elts(txq, tail, olx);
2049                 assert(tail == txq->elts_tail);
2050         }
2051 }
2052
2053 /**
2054  * Manage TX completions. This routine checks the CQ for
2055  * arrived CQEs, deduces the last accomplished WQE in SQ,
2056  * updates SQ producing index and frees all completed mbufs.
2057  *
2058  * @param txq
2059  *   Pointer to TX queue structure.
2060  * @param olx
2061  *   Configured Tx offloads mask. It is fully defined at
2062  *   compile time and may be used for optimization.
2063  *
2064  * NOTE: not inlined intentionally, it makes tx_burst
2065  * routine smaller, simple and faster - from experiments.
2066  */
2067 static void
2068 mlx5_tx_handle_completion(struct mlx5_txq_data *restrict txq,
2069                           unsigned int olx __rte_unused)
2070 {
2071         unsigned int count = MLX5_TX_COMP_MAX_CQE;
2072         volatile struct mlx5_cqe *last_cqe = NULL;
2073         int ret;
2074
2075         static_assert(MLX5_CQE_STATUS_HW_OWN < 0, "Must be negative value");
2076         static_assert(MLX5_CQE_STATUS_SW_OWN < 0, "Must be negative value");
2077         do {
2078                 volatile struct mlx5_cqe *cqe;
2079
2080                 cqe = &txq->cqes[txq->cq_ci & txq->cqe_m];
2081                 ret = check_cqe(cqe, txq->cqe_s, txq->cq_ci);
2082                 if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) {
2083                         if (likely(ret != MLX5_CQE_STATUS_ERR)) {
2084                                 /* No new CQEs in completion queue. */
2085                                 assert(ret == MLX5_CQE_STATUS_HW_OWN);
2086                                 break;
2087                         }
2088                         /*
2089                          * Some error occurred, try to restart.
2090                          * We have no barrier after WQE related Doorbell
2091                          * written, make sure all writes are completed
2092                          * here, before we might perform SQ reset.
2093                          */
2094                         rte_wmb();
2095                         ret = mlx5_tx_error_cqe_handle
2096                                 (txq, (volatile struct mlx5_err_cqe *)cqe);
2097                         /*
2098                          * Flush buffers, update consuming index
2099                          * if recovery succeeded. Otherwise
2100                          * just try to recover later.
2101                          */
2102                         last_cqe = NULL;
2103                         break;
2104                 }
2105                 /* Normal transmit completion. */
2106                 ++txq->cq_ci;
2107                 last_cqe = cqe;
2108 #ifndef NDEBUG
2109                 if (txq->cq_pi)
2110                         --txq->cq_pi;
2111 #endif
2112         /*
2113          * We have to restrict the amount of processed CQEs
2114          * in one tx_burst routine call. The CQ may be large
2115          * and many CQEs may be updated by the NIC in one
2116          * transaction. Buffers freeing is time consuming,
2117          * multiple iterations may introduce significant
2118          * latency.
2119          */
2120         } while (--count);
2121         mlx5_tx_comp_flush(txq, last_cqe, ret, olx);
2122 }
2123
2124 /**
2125  * Check if the completion request flag should be set in the last WQE.
2126  * Both pushed mbufs and WQEs are monitored and the completion request
2127  * flag is set if any of thresholds is reached.
2128  *
2129  * @param txq
2130  *   Pointer to TX queue structure.
2131  * @param loc
2132  *   Pointer to burst routine local context.
2133  * @param multi,
2134  *   Routine is called from multi-segment sending loop,
2135  *   do not correct the elts_head according to the pkts_copy.
2136  * @param olx
2137  *   Configured Tx offloads mask. It is fully defined at
2138  *   compile time and may be used for optimization.
2139  */
2140 static __rte_always_inline void
2141 mlx5_tx_request_completion(struct mlx5_txq_data *restrict txq,
2142                            struct mlx5_txq_local *restrict loc,
2143                            bool multi,
2144                            unsigned int olx)
2145 {
2146         uint16_t head = txq->elts_head;
2147         unsigned int part;
2148
2149         part = (MLX5_TXOFF_CONFIG(INLINE) || multi) ?
2150                0 : loc->pkts_sent - loc->pkts_copy;
2151         head += part;
2152         if ((uint16_t)(head - txq->elts_comp) >= MLX5_TX_COMP_THRESH ||
2153              (MLX5_TXOFF_CONFIG(INLINE) &&
2154              (uint16_t)(txq->wqe_ci - txq->wqe_comp) >= txq->wqe_thres)) {
2155                 volatile struct mlx5_wqe *last = loc->wqe_last;
2156
2157                 txq->elts_comp = head;
2158                 if (MLX5_TXOFF_CONFIG(INLINE))
2159                         txq->wqe_comp = txq->wqe_ci;
2160                 /* Request unconditional completion on last WQE. */
2161                 last->cseg.flags = RTE_BE32(MLX5_COMP_ALWAYS <<
2162                                             MLX5_COMP_MODE_OFFSET);
2163                 /* Save elts_head in unused "immediate" field of WQE. */
2164                 last->cseg.misc = head;
2165                 /*
2166                  * A CQE slot must always be available. Count the
2167                  * issued CEQ "always" request instead of production
2168                  * index due to here can be CQE with errors and
2169                  * difference with ci may become inconsistent.
2170                  */
2171                 assert(txq->cqe_s > ++txq->cq_pi);
2172         }
2173 }
2174
2175 /**
2176  * DPDK callback to check the status of a tx descriptor.
2177  *
2178  * @param tx_queue
2179  *   The tx queue.
2180  * @param[in] offset
2181  *   The index of the descriptor in the ring.
2182  *
2183  * @return
2184  *   The status of the tx descriptor.
2185  */
2186 int
2187 mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset)
2188 {
2189         struct mlx5_txq_data *restrict txq = tx_queue;
2190         uint16_t used;
2191
2192         mlx5_tx_handle_completion(txq, 0);
2193         used = txq->elts_head - txq->elts_tail;
2194         if (offset < used)
2195                 return RTE_ETH_TX_DESC_FULL;
2196         return RTE_ETH_TX_DESC_DONE;
2197 }
2198
2199 /**
2200  * Build the Control Segment with specified opcode:
2201  * - MLX5_OPCODE_SEND
2202  * - MLX5_OPCODE_ENHANCED_MPSW
2203  * - MLX5_OPCODE_TSO
2204  *
2205  * @param txq
2206  *   Pointer to TX queue structure.
2207  * @param loc
2208  *   Pointer to burst routine local context.
2209  * @param wqe
2210  *   Pointer to WQE to fill with built Control Segment.
2211  * @param ds
2212  *   Supposed length of WQE in segments.
2213  * @param opcode
2214  *   SQ WQE opcode to put into Control Segment.
2215  * @param olx
2216  *   Configured Tx offloads mask. It is fully defined at
2217  *   compile time and may be used for optimization.
2218  */
2219 static __rte_always_inline void
2220 mlx5_tx_cseg_init(struct mlx5_txq_data *restrict txq,
2221                   struct mlx5_txq_local *restrict loc __rte_unused,
2222                   struct mlx5_wqe *restrict wqe,
2223                   unsigned int ds,
2224                   unsigned int opcode,
2225                   unsigned int olx __rte_unused)
2226 {
2227         struct mlx5_wqe_cseg *restrict cs = &wqe->cseg;
2228
2229         cs->opcode = rte_cpu_to_be_32((txq->wqe_ci << 8) | opcode);
2230         cs->sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
2231         cs->flags = RTE_BE32(MLX5_COMP_ONLY_FIRST_ERR <<
2232                              MLX5_COMP_MODE_OFFSET);
2233         cs->misc = RTE_BE32(0);
2234 }
2235
2236 /**
2237  * Build the Ethernet Segment without inlined data.
2238  * Supports Software Parser, Checksums and VLAN
2239  * insertion Tx offload features.
2240  *
2241  * @param txq
2242  *   Pointer to TX queue structure.
2243  * @param loc
2244  *   Pointer to burst routine local context.
2245  * @param wqe
2246  *   Pointer to WQE to fill with built Ethernet Segment.
2247  * @param olx
2248  *   Configured Tx offloads mask. It is fully defined at
2249  *   compile time and may be used for optimization.
2250  */
2251 static __rte_always_inline void
2252 mlx5_tx_eseg_none(struct mlx5_txq_data *restrict txq __rte_unused,
2253                   struct mlx5_txq_local *restrict loc,
2254                   struct mlx5_wqe *restrict wqe,
2255                   unsigned int olx)
2256 {
2257         struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2258         uint32_t csum;
2259
2260         /*
2261          * Calculate and set check sum flags first, dword field
2262          * in segment may be shared with Software Parser flags.
2263          */
2264         csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2265         es->flags = rte_cpu_to_le_32(csum);
2266         /*
2267          * Calculate and set Software Parser offsets and flags.
2268          * These flags a set for custom UDP and IP tunnel packets.
2269          */
2270         es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2271         /* Fill metadata field if needed. */
2272         es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2273                        loc->mbuf->ol_flags & PKT_TX_METADATA ?
2274                        loc->mbuf->tx_metadata : 0 : 0;
2275         /* Engage VLAN tag insertion feature if requested. */
2276         if (MLX5_TXOFF_CONFIG(VLAN) &&
2277             loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
2278                 /*
2279                  * We should get here only if device support
2280                  * this feature correctly.
2281                  */
2282                 assert(txq->vlan_en);
2283                 es->inline_hdr = rte_cpu_to_be_32(MLX5_ETH_WQE_VLAN_INSERT |
2284                                                   loc->mbuf->vlan_tci);
2285         } else {
2286                 es->inline_hdr = RTE_BE32(0);
2287         }
2288 }
2289
2290 /**
2291  * Build the Ethernet Segment with minimal inlined data
2292  * of MLX5_ESEG_MIN_INLINE_SIZE bytes length. This is
2293  * used to fill the gap in single WQEBB WQEs.
2294  * Supports Software Parser, Checksums and VLAN
2295  * insertion Tx offload features.
2296  *
2297  * @param txq
2298  *   Pointer to TX queue structure.
2299  * @param loc
2300  *   Pointer to burst routine local context.
2301  * @param wqe
2302  *   Pointer to WQE to fill with built Ethernet Segment.
2303  * @param vlan
2304  *   Length of VLAN tag insertion if any.
2305  * @param olx
2306  *   Configured Tx offloads mask. It is fully defined at
2307  *   compile time and may be used for optimization.
2308  */
2309 static __rte_always_inline void
2310 mlx5_tx_eseg_dmin(struct mlx5_txq_data *restrict txq __rte_unused,
2311                   struct mlx5_txq_local *restrict loc,
2312                   struct mlx5_wqe *restrict wqe,
2313                   unsigned int vlan,
2314                   unsigned int olx)
2315 {
2316         struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2317         uint32_t csum;
2318         uint8_t *psrc, *pdst;
2319
2320         /*
2321          * Calculate and set check sum flags first, dword field
2322          * in segment may be shared with Software Parser flags.
2323          */
2324         csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2325         es->flags = rte_cpu_to_le_32(csum);
2326         /*
2327          * Calculate and set Software Parser offsets and flags.
2328          * These flags a set for custom UDP and IP tunnel packets.
2329          */
2330         es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2331         /* Fill metadata field if needed. */
2332         es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2333                        loc->mbuf->ol_flags & PKT_TX_METADATA ?
2334                        loc->mbuf->tx_metadata : 0 : 0;
2335         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2336                                 (sizeof(uint16_t) +
2337                                  sizeof(rte_v128u32_t)),
2338                       "invalid Ethernet Segment data size");
2339         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2340                                 (sizeof(uint16_t) +
2341                                  sizeof(struct rte_vlan_hdr) +
2342                                  2 * RTE_ETHER_ADDR_LEN),
2343                       "invalid Ethernet Segment data size");
2344         psrc = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
2345         es->inline_hdr_sz = RTE_BE16(MLX5_ESEG_MIN_INLINE_SIZE);
2346         es->inline_data = *(unaligned_uint16_t *)psrc;
2347         psrc += sizeof(uint16_t);
2348         pdst = (uint8_t *)(es + 1);
2349         if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2350                 /* Implement VLAN tag insertion as part inline data. */
2351                 memcpy(pdst, psrc, 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t));
2352                 pdst += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2353                 psrc += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2354                 /* Insert VLAN ethertype + VLAN tag. */
2355                 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2356                                                 ((RTE_ETHER_TYPE_VLAN << 16) |
2357                                                  loc->mbuf->vlan_tci);
2358                 pdst += sizeof(struct rte_vlan_hdr);
2359                 /* Copy the rest two bytes from packet data. */
2360                 assert(pdst == RTE_PTR_ALIGN(pdst, sizeof(uint16_t)));
2361                 *(uint16_t *)pdst = *(unaligned_uint16_t *)psrc;
2362         } else {
2363                 /* Fill the gap in the title WQEBB with inline data. */
2364                 rte_mov16(pdst, psrc);
2365         }
2366 }
2367
2368 /**
2369  * Build the Ethernet Segment with entire packet
2370  * data inlining. Checks the boundary of WQEBB and
2371  * ring buffer wrapping, supports Software Parser,
2372  * Checksums and VLAN insertion Tx offload features.
2373  *
2374  * @param txq
2375  *   Pointer to TX queue structure.
2376  * @param loc
2377  *   Pointer to burst routine local context.
2378  * @param wqe
2379  *   Pointer to WQE to fill with built Ethernet Segment.
2380  * @param vlan
2381  *   Length of VLAN tag insertion if any.
2382  * @param inlen
2383  *   Length of data to inline (VLAN included, if any).
2384  * @param tso
2385  *   TSO flag, set mss field from the packet.
2386  * @param olx
2387  *   Configured Tx offloads mask. It is fully defined at
2388  *   compile time and may be used for optimization.
2389  *
2390  * @return
2391  *   Pointer to the next Data Segment (aligned and wrapped around).
2392  */
2393 static __rte_always_inline struct mlx5_wqe_dseg *
2394 mlx5_tx_eseg_data(struct mlx5_txq_data *restrict txq,
2395                   struct mlx5_txq_local *restrict loc,
2396                   struct mlx5_wqe *restrict wqe,
2397                   unsigned int vlan,
2398                   unsigned int inlen,
2399                   unsigned int tso,
2400                   unsigned int olx)
2401 {
2402         struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2403         uint32_t csum;
2404         uint8_t *psrc, *pdst;
2405         unsigned int part;
2406
2407         /*
2408          * Calculate and set check sum flags first, dword field
2409          * in segment may be shared with Software Parser flags.
2410          */
2411         csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2412         if (tso) {
2413                 csum <<= 24;
2414                 csum |= loc->mbuf->tso_segsz;
2415                 es->flags = rte_cpu_to_be_32(csum);
2416         } else {
2417                 es->flags = rte_cpu_to_le_32(csum);
2418         }
2419         /*
2420          * Calculate and set Software Parser offsets and flags.
2421          * These flags a set for custom UDP and IP tunnel packets.
2422          */
2423         es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2424         /* Fill metadata field if needed. */
2425         es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2426                        loc->mbuf->ol_flags & PKT_TX_METADATA ?
2427                        loc->mbuf->tx_metadata : 0 : 0;
2428         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2429                                 (sizeof(uint16_t) +
2430                                  sizeof(rte_v128u32_t)),
2431                       "invalid Ethernet Segment data size");
2432         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2433                                 (sizeof(uint16_t) +
2434                                  sizeof(struct rte_vlan_hdr) +
2435                                  2 * RTE_ETHER_ADDR_LEN),
2436                       "invalid Ethernet Segment data size");
2437         psrc = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
2438         es->inline_hdr_sz = rte_cpu_to_be_16(inlen);
2439         es->inline_data = *(unaligned_uint16_t *)psrc;
2440         psrc += sizeof(uint16_t);
2441         pdst = (uint8_t *)(es + 1);
2442         if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2443                 /* Implement VLAN tag insertion as part inline data. */
2444                 memcpy(pdst, psrc, 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t));
2445                 pdst += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2446                 psrc += 2 * RTE_ETHER_ADDR_LEN - sizeof(uint16_t);
2447                 /* Insert VLAN ethertype + VLAN tag. */
2448                 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2449                                                 ((RTE_ETHER_TYPE_VLAN << 16) |
2450                                                  loc->mbuf->vlan_tci);
2451                 pdst += sizeof(struct rte_vlan_hdr);
2452                 /* Copy the rest two bytes from packet data. */
2453                 assert(pdst == RTE_PTR_ALIGN(pdst, sizeof(uint16_t)));
2454                 *(uint16_t *)pdst = *(unaligned_uint16_t *)psrc;
2455                 psrc += sizeof(uint16_t);
2456         } else {
2457                 /* Fill the gap in the title WQEBB with inline data. */
2458                 rte_mov16(pdst, psrc);
2459                 psrc += sizeof(rte_v128u32_t);
2460         }
2461         pdst = (uint8_t *)(es + 2);
2462         assert(inlen >= MLX5_ESEG_MIN_INLINE_SIZE);
2463         assert(pdst < (uint8_t *)txq->wqes_end);
2464         inlen -= MLX5_ESEG_MIN_INLINE_SIZE;
2465         if (!inlen) {
2466                 assert(pdst == RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE));
2467                 return (struct mlx5_wqe_dseg *)pdst;
2468         }
2469         /*
2470          * The WQEBB space availability is checked by caller.
2471          * Here we should be aware of WQE ring buffer wraparound only.
2472          */
2473         part = (uint8_t *)txq->wqes_end - pdst;
2474         part = RTE_MIN(part, inlen);
2475         do {
2476                 rte_memcpy(pdst, psrc, part);
2477                 inlen -= part;
2478                 if (likely(!inlen)) {
2479                         /*
2480                          * If return value is not used by the caller
2481                          * the code below will be optimized out.
2482                          */
2483                         pdst += part;
2484                         pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2485                         if (unlikely(pdst >= (uint8_t *)txq->wqes_end))
2486                                 pdst = (uint8_t *)txq->wqes;
2487                         return (struct mlx5_wqe_dseg *)pdst;
2488                 }
2489                 pdst = (uint8_t *)txq->wqes;
2490                 psrc += part;
2491                 part = inlen;
2492         } while (true);
2493 }
2494
2495 /**
2496  * Copy data from chain of mbuf to the specified linear buffer.
2497  * Checksums and VLAN insertion Tx offload features. If data
2498  * from some mbuf copied completely this mbuf is freed. Local
2499  * structure is used to keep the byte stream state.
2500  *
2501  * @param pdst
2502  *   Pointer to the destination linear buffer.
2503  * @param loc
2504  *   Pointer to burst routine local context.
2505  * @param len
2506  *   Length of data to be copied.
2507  * @param olx
2508  *   Configured Tx offloads mask. It is fully defined at
2509  *   compile time and may be used for optimization.
2510  */
2511 static __rte_always_inline void
2512 mlx5_tx_mseg_memcpy(uint8_t *pdst,
2513                     struct mlx5_txq_local *restrict loc,
2514                     unsigned int len,
2515                     unsigned int olx __rte_unused)
2516 {
2517         struct rte_mbuf *mbuf;
2518         unsigned int part, dlen;
2519         uint8_t *psrc;
2520
2521         assert(len);
2522         do {
2523                 /* Allow zero length packets, must check first. */
2524                 dlen = rte_pktmbuf_data_len(loc->mbuf);
2525                 if (dlen <= loc->mbuf_off) {
2526                         /* Exhausted packet, just free. */
2527                         mbuf = loc->mbuf;
2528                         loc->mbuf = mbuf->next;
2529                         rte_pktmbuf_free_seg(mbuf);
2530                         loc->mbuf_off = 0;
2531                         assert(loc->mbuf_nseg > 1);
2532                         assert(loc->mbuf);
2533                         --loc->mbuf_nseg;
2534                         continue;
2535                 }
2536                 dlen -= loc->mbuf_off;
2537                 psrc = rte_pktmbuf_mtod_offset(loc->mbuf, uint8_t *,
2538                                                loc->mbuf_off);
2539                 part = RTE_MIN(len, dlen);
2540                 rte_memcpy(pdst, psrc, part);
2541                 loc->mbuf_off += part;
2542                 len -= part;
2543                 if (!len) {
2544                         if (loc->mbuf_off >= rte_pktmbuf_data_len(loc->mbuf)) {
2545                                 loc->mbuf_off = 0;
2546                                 /* Exhausted packet, just free. */
2547                                 mbuf = loc->mbuf;
2548                                 loc->mbuf = mbuf->next;
2549                                 rte_pktmbuf_free_seg(mbuf);
2550                                 loc->mbuf_off = 0;
2551                                 assert(loc->mbuf_nseg >= 1);
2552                                 --loc->mbuf_nseg;
2553                         }
2554                         return;
2555                 }
2556                 pdst += part;
2557         } while (true);
2558 }
2559
2560 /**
2561  * Build the Ethernet Segment with inlined data from
2562  * multi-segment packet. Checks the boundary of WQEBB
2563  * and ring buffer wrapping, supports Software Parser,
2564  * Checksums and VLAN insertion Tx offload features.
2565  *
2566  * @param txq
2567  *   Pointer to TX queue structure.
2568  * @param loc
2569  *   Pointer to burst routine local context.
2570  * @param wqe
2571  *   Pointer to WQE to fill with built Ethernet Segment.
2572  * @param vlan
2573  *   Length of VLAN tag insertion if any.
2574  * @param inlen
2575  *   Length of data to inline (VLAN included, if any).
2576  * @param tso
2577  *   TSO flag, set mss field from the packet.
2578  * @param olx
2579  *   Configured Tx offloads mask. It is fully defined at
2580  *   compile time and may be used for optimization.
2581  *
2582  * @return
2583  *   Pointer to the next Data Segment (aligned and
2584  *   possible NOT wrapped around - caller should do
2585  *   wrapping check on its own).
2586  */
2587 static __rte_always_inline struct mlx5_wqe_dseg *
2588 mlx5_tx_eseg_mdat(struct mlx5_txq_data *restrict txq,
2589                   struct mlx5_txq_local *restrict loc,
2590                   struct mlx5_wqe *restrict wqe,
2591                   unsigned int vlan,
2592                   unsigned int inlen,
2593                   unsigned int tso,
2594                   unsigned int olx)
2595 {
2596         struct mlx5_wqe_eseg *restrict es = &wqe->eseg;
2597         uint32_t csum;
2598         uint8_t *pdst;
2599         unsigned int part;
2600
2601         /*
2602          * Calculate and set check sum flags first, uint32_t field
2603          * in segment may be shared with Software Parser flags.
2604          */
2605         csum = MLX5_TXOFF_CONFIG(CSUM) ? txq_ol_cksum_to_cs(loc->mbuf) : 0;
2606         if (tso) {
2607                 csum <<= 24;
2608                 csum |= loc->mbuf->tso_segsz;
2609                 es->flags = rte_cpu_to_be_32(csum);
2610         } else {
2611                 es->flags = rte_cpu_to_le_32(csum);
2612         }
2613         /*
2614          * Calculate and set Software Parser offsets and flags.
2615          * These flags a set for custom UDP and IP tunnel packets.
2616          */
2617         es->swp_offs = txq_mbuf_to_swp(loc, &es->swp_flags, olx);
2618         /* Fill metadata field if needed. */
2619         es->metadata = MLX5_TXOFF_CONFIG(METADATA) ?
2620                        loc->mbuf->ol_flags & PKT_TX_METADATA ?
2621                        loc->mbuf->tx_metadata : 0 : 0;
2622         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2623                                 (sizeof(uint16_t) +
2624                                  sizeof(rte_v128u32_t)),
2625                       "invalid Ethernet Segment data size");
2626         static_assert(MLX5_ESEG_MIN_INLINE_SIZE ==
2627                                 (sizeof(uint16_t) +
2628                                  sizeof(struct rte_vlan_hdr) +
2629                                  2 * RTE_ETHER_ADDR_LEN),
2630                       "invalid Ethernet Segment data size");
2631         assert(inlen >= MLX5_ESEG_MIN_INLINE_SIZE);
2632         es->inline_hdr_sz = rte_cpu_to_be_16(inlen);
2633         pdst = (uint8_t *)&es->inline_data;
2634         if (MLX5_TXOFF_CONFIG(VLAN) && vlan) {
2635                 /* Implement VLAN tag insertion as part inline data. */
2636                 mlx5_tx_mseg_memcpy(pdst, loc, 2 * RTE_ETHER_ADDR_LEN, olx);
2637                 pdst += 2 * RTE_ETHER_ADDR_LEN;
2638                 *(unaligned_uint32_t *)pdst = rte_cpu_to_be_32
2639                                                 ((RTE_ETHER_TYPE_VLAN << 16) |
2640                                                  loc->mbuf->vlan_tci);
2641                 pdst += sizeof(struct rte_vlan_hdr);
2642                 inlen -= 2 * RTE_ETHER_ADDR_LEN + sizeof(struct rte_vlan_hdr);
2643         }
2644         assert(pdst < (uint8_t *)txq->wqes_end);
2645         /*
2646          * The WQEBB space availability is checked by caller.
2647          * Here we should be aware of WQE ring buffer wraparound only.
2648          */
2649         part = (uint8_t *)txq->wqes_end - pdst;
2650         part = RTE_MIN(part, inlen);
2651         assert(part);
2652         do {
2653                 mlx5_tx_mseg_memcpy(pdst, loc, part, olx);
2654                 inlen -= part;
2655                 if (likely(!inlen)) {
2656                         pdst += part;
2657                         pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2658                         return (struct mlx5_wqe_dseg *)pdst;
2659                 }
2660                 pdst = (uint8_t *)txq->wqes;
2661                 part = inlen;
2662         } while (true);
2663 }
2664
2665 /**
2666  * Build the Data Segment of pointer type.
2667  *
2668  * @param txq
2669  *   Pointer to TX queue structure.
2670  * @param loc
2671  *   Pointer to burst routine local context.
2672  * @param dseg
2673  *   Pointer to WQE to fill with built Data Segment.
2674  * @param buf
2675  *   Data buffer to point.
2676  * @param len
2677  *   Data buffer length.
2678  * @param olx
2679  *   Configured Tx offloads mask. It is fully defined at
2680  *   compile time and may be used for optimization.
2681  */
2682 static __rte_always_inline void
2683 mlx5_tx_dseg_ptr(struct mlx5_txq_data *restrict txq,
2684                  struct mlx5_txq_local *restrict loc,
2685                  struct mlx5_wqe_dseg *restrict dseg,
2686                  uint8_t *buf,
2687                  unsigned int len,
2688                  unsigned int olx __rte_unused)
2689
2690 {
2691         assert(len);
2692         dseg->bcount = rte_cpu_to_be_32(len);
2693         dseg->lkey = mlx5_tx_mb2mr(txq, loc->mbuf);
2694         dseg->pbuf = rte_cpu_to_be_64((uintptr_t)buf);
2695 }
2696
2697 /**
2698  * Build the Data Segment of pointer type or inline
2699  * if data length is less than buffer in minimal
2700  * Data Segment size.
2701  *
2702  * @param txq
2703  *   Pointer to TX queue structure.
2704  * @param loc
2705  *   Pointer to burst routine local context.
2706  * @param dseg
2707  *   Pointer to WQE to fill with built Data Segment.
2708  * @param buf
2709  *   Data buffer to point.
2710  * @param len
2711  *   Data buffer length.
2712  * @param olx
2713  *   Configured Tx offloads mask. It is fully defined at
2714  *   compile time and may be used for optimization.
2715  */
2716 static __rte_always_inline void
2717 mlx5_tx_dseg_iptr(struct mlx5_txq_data *restrict txq,
2718                   struct mlx5_txq_local *restrict loc,
2719                   struct mlx5_wqe_dseg *restrict dseg,
2720                   uint8_t *buf,
2721                   unsigned int len,
2722                   unsigned int olx __rte_unused)
2723
2724 {
2725         uintptr_t dst, src;
2726
2727         assert(len);
2728         if (len > MLX5_DSEG_MIN_INLINE_SIZE) {
2729                 dseg->bcount = rte_cpu_to_be_32(len);
2730                 dseg->lkey = mlx5_tx_mb2mr(txq, loc->mbuf);
2731                 dseg->pbuf = rte_cpu_to_be_64((uintptr_t)buf);
2732
2733                 return;
2734         }
2735         dseg->bcount = rte_cpu_to_be_32(len | MLX5_ETH_WQE_DATA_INLINE);
2736         /* Unrolled implementation of generic rte_memcpy. */
2737         dst = (uintptr_t)&dseg->inline_data[0];
2738         src = (uintptr_t)buf;
2739 #ifdef RTE_ARCH_STRICT_ALIGN
2740         memcpy(dst, src, len);
2741 #else
2742         if (len & 0x08) {
2743                 *(uint64_t *)dst = *(uint64_t *)src;
2744                 dst += sizeof(uint64_t);
2745                 src += sizeof(uint64_t);
2746         }
2747         if (len & 0x04) {
2748                 *(uint32_t *)dst = *(uint32_t *)src;
2749                 dst += sizeof(uint32_t);
2750                 src += sizeof(uint32_t);
2751         }
2752         if (len & 0x02) {
2753                 *(uint16_t *)dst = *(uint16_t *)src;
2754                 dst += sizeof(uint16_t);
2755                 src += sizeof(uint16_t);
2756         }
2757         if (len & 0x01)
2758                 *(uint8_t *)dst = *(uint8_t *)src;
2759 #endif
2760 }
2761
2762 /**
2763  * Build the Data Segment of inlined data from single
2764  * segment packet, no VLAN insertion.
2765  *
2766  * @param txq
2767  *   Pointer to TX queue structure.
2768  * @param loc
2769  *   Pointer to burst routine local context.
2770  * @param dseg
2771  *   Pointer to WQE to fill with built Data Segment.
2772  * @param buf
2773  *   Data buffer to point.
2774  * @param len
2775  *   Data buffer length.
2776  * @param olx
2777  *   Configured Tx offloads mask. It is fully defined at
2778  *   compile time and may be used for optimization.
2779  *
2780  * @return
2781  *   Pointer to the next Data Segment after inlined data.
2782  *   Ring buffer wraparound check is needed. We do not
2783  *   do it here because it may not be needed for the
2784  *   last packet in the eMPW session.
2785  */
2786 static __rte_always_inline struct mlx5_wqe_dseg *
2787 mlx5_tx_dseg_empw(struct mlx5_txq_data *restrict txq,
2788                   struct mlx5_txq_local *restrict loc __rte_unused,
2789                   struct mlx5_wqe_dseg *restrict dseg,
2790                   uint8_t *buf,
2791                   unsigned int len,
2792                   unsigned int olx __rte_unused)
2793 {
2794         unsigned int part;
2795         uint8_t *pdst;
2796
2797         dseg->bcount = rte_cpu_to_be_32(len | MLX5_ETH_WQE_DATA_INLINE);
2798         pdst = &dseg->inline_data[0];
2799         /*
2800          * The WQEBB space availability is checked by caller.
2801          * Here we should be aware of WQE ring buffer wraparound only.
2802          */
2803         part = (uint8_t *)txq->wqes_end - pdst;
2804         part = RTE_MIN(part, len);
2805         do {
2806                 rte_memcpy(pdst, buf, part);
2807                 len -= part;
2808                 if (likely(!len)) {
2809                         pdst += part;
2810                         pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2811                         /* Note: no final wraparound check here. */
2812                         return (struct mlx5_wqe_dseg *)pdst;
2813                 }
2814                 pdst = (uint8_t *)txq->wqes;
2815                 buf += part;
2816                 part = len;
2817         } while (true);
2818 }
2819
2820 /**
2821  * Build the Data Segment of inlined data from single
2822  * segment packet with VLAN insertion.
2823  *
2824  * @param txq
2825  *   Pointer to TX queue structure.
2826  * @param loc
2827  *   Pointer to burst routine local context.
2828  * @param dseg
2829  *   Pointer to the dseg fill with built Data Segment.
2830  * @param buf
2831  *   Data buffer to point.
2832  * @param len
2833  *   Data buffer length.
2834  * @param olx
2835  *   Configured Tx offloads mask. It is fully defined at
2836  *   compile time and may be used for optimization.
2837  *
2838  * @return
2839  *   Pointer to the next Data Segment after inlined data.
2840  *   Ring buffer wraparound check is needed.
2841  */
2842 static __rte_always_inline struct mlx5_wqe_dseg *
2843 mlx5_tx_dseg_vlan(struct mlx5_txq_data *restrict txq,
2844                   struct mlx5_txq_local *restrict loc __rte_unused,
2845                   struct mlx5_wqe_dseg *restrict dseg,
2846                   uint8_t *buf,
2847                   unsigned int len,
2848                   unsigned int olx __rte_unused)
2849
2850 {
2851         unsigned int part;
2852         uint8_t *pdst;
2853
2854         assert(len > MLX5_ESEG_MIN_INLINE_SIZE);
2855         static_assert(MLX5_DSEG_MIN_INLINE_SIZE ==
2856                                  (2 * RTE_ETHER_ADDR_LEN),
2857                       "invalid Data Segment data size");
2858         dseg->bcount = rte_cpu_to_be_32((len + sizeof(struct rte_vlan_hdr)) |
2859                                         MLX5_ETH_WQE_DATA_INLINE);
2860         pdst = &dseg->inline_data[0];
2861         memcpy(pdst, buf, MLX5_DSEG_MIN_INLINE_SIZE);
2862         buf += MLX5_DSEG_MIN_INLINE_SIZE;
2863         pdst += MLX5_DSEG_MIN_INLINE_SIZE;
2864         /* Insert VLAN ethertype + VLAN tag. Pointer is aligned. */
2865         assert(pdst == RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE));
2866         *(uint32_t *)pdst = rte_cpu_to_be_32((RTE_ETHER_TYPE_VLAN << 16) |
2867                                               loc->mbuf->vlan_tci);
2868         pdst += sizeof(struct rte_vlan_hdr);
2869         if (unlikely(pdst >= (uint8_t *)txq->wqes_end))
2870                 pdst = (uint8_t *)txq->wqes;
2871         /*
2872          * The WQEBB space availability is checked by caller.
2873          * Here we should be aware of WQE ring buffer wraparound only.
2874          */
2875         part = (uint8_t *)txq->wqes_end - pdst;
2876         part = RTE_MIN(part, len);
2877         do {
2878                 rte_memcpy(pdst, buf, part);
2879                 len -= part;
2880                 if (likely(!len)) {
2881                         pdst += part;
2882                         pdst = RTE_PTR_ALIGN(pdst, MLX5_WSEG_SIZE);
2883                         /* Note: no final wraparound check here. */
2884                         return (struct mlx5_wqe_dseg *)pdst;
2885                 }
2886                 pdst = (uint8_t *)txq->wqes;
2887                 buf += part;
2888                 part = len;
2889         } while (true);
2890 }
2891
2892 /**
2893  * Build the Ethernet Segment with optionally inlined data with
2894  * VLAN insertion and following Data Segments (if any) from
2895  * multi-segment packet. Used by ordinary send and TSO.
2896  *
2897  * @param txq
2898  *   Pointer to TX queue structure.
2899  * @param loc
2900  *   Pointer to burst routine local context.
2901  * @param wqe
2902  *   Pointer to WQE to fill with built Ethernet/Data Segments.
2903  * @param vlan
2904  *   Length of VLAN header to insert, 0 means no VLAN insertion.
2905  * @param inlen
2906  *   Data length to inline. For TSO this parameter specifies
2907  *   exact value, for ordinary send routine can be aligned by
2908  *   caller to provide better WQE space saving and data buffer
2909  *   start address alignment. This length includes VLAN header
2910  *   being inserted.
2911  * @param tso
2912  *   Zero means ordinary send, inlined data can be extended,
2913  *   otherwise this is TSO, inlined data length is fixed.
2914  * @param olx
2915  *   Configured Tx offloads mask. It is fully defined at
2916  *   compile time and may be used for optimization.
2917  *
2918  * @return
2919  *   Actual size of built WQE in segments.
2920  */
2921 static __rte_always_inline unsigned int
2922 mlx5_tx_mseg_build(struct mlx5_txq_data *restrict txq,
2923                    struct mlx5_txq_local *restrict loc,
2924                    struct mlx5_wqe *restrict wqe,
2925                    unsigned int vlan,
2926                    unsigned int inlen,
2927                    unsigned int tso,
2928                    unsigned int olx __rte_unused)
2929 {
2930         struct mlx5_wqe_dseg *restrict dseg;
2931         unsigned int ds;
2932
2933         assert((rte_pktmbuf_pkt_len(loc->mbuf) + vlan) >= inlen);
2934         loc->mbuf_nseg = NB_SEGS(loc->mbuf);
2935         loc->mbuf_off = 0;
2936
2937         dseg = mlx5_tx_eseg_mdat(txq, loc, wqe, vlan, inlen, tso, olx);
2938         if (!loc->mbuf_nseg)
2939                 goto dseg_done;
2940         /*
2941          * There are still some mbuf remaining, not inlined.
2942          * The first mbuf may be partially inlined and we
2943          * must process the possible non-zero data offset.
2944          */
2945         if (loc->mbuf_off) {
2946                 unsigned int dlen;
2947                 uint8_t *dptr;
2948
2949                 /*
2950                  * Exhausted packets must be dropped before.
2951                  * Non-zero offset means there are some data
2952                  * remained in the packet.
2953                  */
2954                 assert(loc->mbuf_off < rte_pktmbuf_data_len(loc->mbuf));
2955                 assert(rte_pktmbuf_data_len(loc->mbuf));
2956                 dptr = rte_pktmbuf_mtod_offset(loc->mbuf, uint8_t *,
2957                                                loc->mbuf_off);
2958                 dlen = rte_pktmbuf_data_len(loc->mbuf) - loc->mbuf_off;
2959                 /*
2960                  * Build the pointer/minimal data Data Segment.
2961                  * Do ring buffer wrapping check in advance.
2962                  */
2963                 if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
2964                         dseg = (struct mlx5_wqe_dseg *)txq->wqes;
2965                 mlx5_tx_dseg_iptr(txq, loc, dseg, dptr, dlen, olx);
2966                 /* Store the mbuf to be freed on completion. */
2967                 assert(loc->elts_free);
2968                 txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
2969                 --loc->elts_free;
2970                 ++dseg;
2971                 if (--loc->mbuf_nseg == 0)
2972                         goto dseg_done;
2973                 loc->mbuf = loc->mbuf->next;
2974                 loc->mbuf_off = 0;
2975         }
2976         do {
2977                 if (unlikely(!rte_pktmbuf_data_len(loc->mbuf))) {
2978                         struct rte_mbuf *mbuf;
2979
2980                         /* Zero length segment found, just skip. */
2981                         mbuf = loc->mbuf;
2982                         loc->mbuf = loc->mbuf->next;
2983                         rte_pktmbuf_free_seg(mbuf);
2984                         if (--loc->mbuf_nseg == 0)
2985                                 break;
2986                 } else {
2987                         if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
2988                                 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
2989                         mlx5_tx_dseg_iptr
2990                                 (txq, loc, dseg,
2991                                  rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
2992                                  rte_pktmbuf_data_len(loc->mbuf), olx);
2993                         assert(loc->elts_free);
2994                         txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
2995                         --loc->elts_free;
2996                         ++dseg;
2997                         if (--loc->mbuf_nseg == 0)
2998                                 break;
2999                         loc->mbuf = loc->mbuf->next;
3000                 }
3001         } while (true);
3002
3003 dseg_done:
3004         /* Calculate actual segments used from the dseg pointer. */
3005         if ((uintptr_t)wqe < (uintptr_t)dseg)
3006                 ds = ((uintptr_t)dseg - (uintptr_t)wqe) / MLX5_WSEG_SIZE;
3007         else
3008                 ds = (((uintptr_t)dseg - (uintptr_t)wqe) +
3009                       txq->wqe_s * MLX5_WQE_SIZE) / MLX5_WSEG_SIZE;
3010         return ds;
3011 }
3012
3013 /**
3014  * Tx one packet function for multi-segment TSO. Supports all
3015  * types of Tx offloads, uses MLX5_OPCODE_TSO to build WQEs,
3016  * sends one packet per WQE.
3017  *
3018  * This routine is responsible for storing processed mbuf
3019  * into elts ring buffer and update elts_head.
3020  *
3021  * @param txq
3022  *   Pointer to TX queue structure.
3023  * @param loc
3024  *   Pointer to burst routine local context.
3025  * @param olx
3026  *   Configured Tx offloads mask. It is fully defined at
3027  *   compile time and may be used for optimization.
3028  *
3029  * @return
3030  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3031  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3032  * Local context variables partially updated.
3033  */
3034 static __rte_always_inline enum mlx5_txcmp_code
3035 mlx5_tx_packet_multi_tso(struct mlx5_txq_data *restrict txq,
3036                         struct mlx5_txq_local *restrict loc,
3037                         unsigned int olx)
3038 {
3039         struct mlx5_wqe *restrict wqe;
3040         unsigned int ds, dlen, inlen, ntcp, vlan = 0;
3041
3042         /*
3043          * Calculate data length to be inlined to estimate
3044          * the required space in WQE ring buffer.
3045          */
3046         dlen = rte_pktmbuf_pkt_len(loc->mbuf);
3047         if (MLX5_TXOFF_CONFIG(VLAN) && loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3048                 vlan = sizeof(struct rte_vlan_hdr);
3049         inlen = loc->mbuf->l2_len + vlan +
3050                 loc->mbuf->l3_len + loc->mbuf->l4_len;
3051         if (unlikely((!inlen || !loc->mbuf->tso_segsz)))
3052                 return MLX5_TXCMP_CODE_ERROR;
3053         if (loc->mbuf->ol_flags & PKT_TX_TUNNEL_MASK)
3054                 inlen += loc->mbuf->outer_l2_len + loc->mbuf->outer_l3_len;
3055         /* Packet must contain all TSO headers. */
3056         if (unlikely(inlen > MLX5_MAX_TSO_HEADER ||
3057                      inlen <= MLX5_ESEG_MIN_INLINE_SIZE ||
3058                      inlen > (dlen + vlan)))
3059                 return MLX5_TXCMP_CODE_ERROR;
3060         assert(inlen >= txq->inlen_mode);
3061         /*
3062          * Check whether there are enough free WQEBBs:
3063          * - Control Segment
3064          * - Ethernet Segment
3065          * - First Segment of inlined Ethernet data
3066          * - ... data continued ...
3067          * - Data Segments of pointer/min inline type
3068          */
3069         ds = NB_SEGS(loc->mbuf) + 2 + (inlen -
3070                                        MLX5_ESEG_MIN_INLINE_SIZE +
3071                                        MLX5_WSEG_SIZE +
3072                                        MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3073         if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3074                 return MLX5_TXCMP_CODE_EXIT;
3075         /* Check for maximal WQE size. */
3076         if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3077                 return MLX5_TXCMP_CODE_ERROR;
3078 #ifdef MLX5_PMD_SOFT_COUNTERS
3079         /* Update sent data bytes/packets counters. */
3080         ntcp = (dlen - (inlen - vlan) + loc->mbuf->tso_segsz - 1) /
3081                 loc->mbuf->tso_segsz;
3082         /*
3083          * One will be added for mbuf itself
3084          * at the end of the mlx5_tx_burst from
3085          * loc->pkts_sent field.
3086          */
3087         --ntcp;
3088         txq->stats.opackets += ntcp;
3089         txq->stats.obytes += dlen + vlan + ntcp * inlen;
3090 #endif
3091         wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3092         loc->wqe_last = wqe;
3093         mlx5_tx_cseg_init(txq, loc, wqe, 0, MLX5_OPCODE_TSO, olx);
3094         ds = mlx5_tx_mseg_build(txq, loc, wqe, vlan, inlen, 1, olx);
3095         wqe->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3096         txq->wqe_ci += (ds + 3) / 4;
3097         loc->wqe_free -= (ds + 3) / 4;
3098         /* Request CQE generation if limits are reached. */
3099         mlx5_tx_request_completion(txq, loc, true, olx);
3100         return MLX5_TXCMP_CODE_MULTI;
3101 }
3102
3103 /**
3104  * Tx one packet function for multi-segment SEND. Supports all
3105  * types of Tx offloads, uses MLX5_OPCODE_SEND to build WQEs,
3106  * sends one packet per WQE, without any data inlining in
3107  * Ethernet Segment.
3108  *
3109  * This routine is responsible for storing processed mbuf
3110  * into elts ring buffer and update elts_head.
3111  *
3112  * @param txq
3113  *   Pointer to TX queue structure.
3114  * @param loc
3115  *   Pointer to burst routine local context.
3116  * @param olx
3117  *   Configured Tx offloads mask. It is fully defined at
3118  *   compile time and may be used for optimization.
3119  *
3120  * @return
3121  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3122  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3123  * Local context variables partially updated.
3124  */
3125 static __rte_always_inline enum mlx5_txcmp_code
3126 mlx5_tx_packet_multi_send(struct mlx5_txq_data *restrict txq,
3127                           struct mlx5_txq_local *restrict loc,
3128                           unsigned int olx)
3129 {
3130         struct mlx5_wqe_dseg *restrict dseg;
3131         struct mlx5_wqe *restrict wqe;
3132         unsigned int ds, nseg;
3133
3134         assert(NB_SEGS(loc->mbuf) > 1);
3135         /*
3136          * No inline at all, it means the CPU cycles saving
3137          * is prioritized at configuration, we should not
3138          * copy any packet data to WQE.
3139          */
3140         nseg = NB_SEGS(loc->mbuf);
3141         ds = 2 + nseg;
3142         if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3143                 return MLX5_TXCMP_CODE_EXIT;
3144         /* Check for maximal WQE size. */
3145         if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3146                 return MLX5_TXCMP_CODE_ERROR;
3147         /*
3148          * Some Tx offloads may cause an error if
3149          * packet is not long enough, check against
3150          * assumed minimal length.
3151          */
3152         if (rte_pktmbuf_pkt_len(loc->mbuf) <= MLX5_ESEG_MIN_INLINE_SIZE)
3153                 return MLX5_TXCMP_CODE_ERROR;
3154 #ifdef MLX5_PMD_SOFT_COUNTERS
3155         /* Update sent data bytes counter. */
3156         txq->stats.obytes += rte_pktmbuf_pkt_len(loc->mbuf);
3157         if (MLX5_TXOFF_CONFIG(VLAN) &&
3158             loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3159                 txq->stats.obytes += sizeof(struct rte_vlan_hdr);
3160 #endif
3161         /*
3162          * SEND WQE, one WQEBB:
3163          * - Control Segment, SEND opcode
3164          * - Ethernet Segment, optional VLAN, no inline
3165          * - Data Segments, pointer only type
3166          */
3167         wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3168         loc->wqe_last = wqe;
3169         mlx5_tx_cseg_init(txq, loc, wqe, ds, MLX5_OPCODE_SEND, olx);
3170         mlx5_tx_eseg_none(txq, loc, wqe, olx);
3171         dseg = &wqe->dseg[0];
3172         do {
3173                 if (unlikely(!rte_pktmbuf_data_len(loc->mbuf))) {
3174                         struct rte_mbuf *mbuf;
3175
3176                         /*
3177                          * Zero length segment found, have to
3178                          * correct total size of WQE in segments.
3179                          * It is supposed to be rare occasion, so
3180                          * in normal case (no zero length segments)
3181                          * we avoid extra writing to the Control
3182                          * Segment.
3183                          */
3184                         --ds;
3185                         wqe->cseg.sq_ds -= RTE_BE32(1);
3186                         mbuf = loc->mbuf;
3187                         loc->mbuf = mbuf->next;
3188                         rte_pktmbuf_free_seg(mbuf);
3189                         if (--nseg == 0)
3190                                 break;
3191                 } else {
3192                         mlx5_tx_dseg_ptr
3193                                 (txq, loc, dseg,
3194                                  rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
3195                                  rte_pktmbuf_data_len(loc->mbuf), olx);
3196                         txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3197                         --loc->elts_free;
3198                         if (--nseg == 0)
3199                                 break;
3200                         ++dseg;
3201                         if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
3202                                 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
3203                         loc->mbuf = loc->mbuf->next;
3204                 }
3205         } while (true);
3206         txq->wqe_ci += (ds + 3) / 4;
3207         loc->wqe_free -= (ds + 3) / 4;
3208         /* Request CQE generation if limits are reached. */
3209         mlx5_tx_request_completion(txq, loc, true, olx);
3210         return MLX5_TXCMP_CODE_MULTI;
3211 }
3212
3213 /**
3214  * Tx one packet function for multi-segment SEND. Supports all
3215  * types of Tx offloads, uses MLX5_OPCODE_SEND to build WQEs,
3216  * sends one packet per WQE, with data inlining in
3217  * Ethernet Segment and minimal Data Segments.
3218  *
3219  * This routine is responsible for storing processed mbuf
3220  * into elts ring buffer and update elts_head.
3221  *
3222  * @param txq
3223  *   Pointer to TX queue structure.
3224  * @param loc
3225  *   Pointer to burst routine local context.
3226  * @param olx
3227  *   Configured Tx offloads mask. It is fully defined at
3228  *   compile time and may be used for optimization.
3229  *
3230  * @return
3231  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3232  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3233  * Local context variables partially updated.
3234  */
3235 static __rte_always_inline enum mlx5_txcmp_code
3236 mlx5_tx_packet_multi_inline(struct mlx5_txq_data *restrict txq,
3237                             struct mlx5_txq_local *restrict loc,
3238                             unsigned int olx)
3239 {
3240         struct mlx5_wqe *restrict wqe;
3241         unsigned int ds, inlen, dlen, vlan = 0;
3242
3243         assert(MLX5_TXOFF_CONFIG(INLINE));
3244         assert(NB_SEGS(loc->mbuf) > 1);
3245         /*
3246          * First calculate data length to be inlined
3247          * to estimate the required space for WQE.
3248          */
3249         dlen = rte_pktmbuf_pkt_len(loc->mbuf);
3250         if (MLX5_TXOFF_CONFIG(VLAN) && loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
3251                 vlan = sizeof(struct rte_vlan_hdr);
3252         inlen = dlen + vlan;
3253         /* Check against minimal length. */
3254         if (inlen <= MLX5_ESEG_MIN_INLINE_SIZE)
3255                 return MLX5_TXCMP_CODE_ERROR;
3256         assert(txq->inlen_send >= MLX5_ESEG_MIN_INLINE_SIZE);
3257         if (inlen > txq->inlen_send) {
3258                 struct rte_mbuf *mbuf;
3259                 unsigned int nxlen;
3260                 uintptr_t start;
3261
3262                 /*
3263                  * Packet length exceeds the allowed inline
3264                  * data length, check whether the minimal
3265                  * inlining is required.
3266                  */
3267                 if (txq->inlen_mode) {
3268                         assert(txq->inlen_mode >= MLX5_ESEG_MIN_INLINE_SIZE);
3269                         assert(txq->inlen_mode <= txq->inlen_send);
3270                         inlen = txq->inlen_mode;
3271                 } else {
3272                         if (!vlan || txq->vlan_en) {
3273                                 /*
3274                                  * VLAN insertion will be done inside by HW.
3275                                  * It is not utmost effective - VLAN flag is
3276                                  * checked twice, but we should proceed the
3277                                  * inlining length correctly and take into
3278                                  * account the VLAN header being inserted.
3279                                  */
3280                                 return mlx5_tx_packet_multi_send
3281                                                         (txq, loc, olx);
3282                         }
3283                         inlen = MLX5_ESEG_MIN_INLINE_SIZE;
3284                 }
3285                 /*
3286                  * Now we know the minimal amount of data is requested
3287                  * to inline. Check whether we should inline the buffers
3288                  * from the chain beginning to eliminate some mbufs.
3289                  */
3290                 mbuf = loc->mbuf;
3291                 nxlen = rte_pktmbuf_data_len(mbuf);
3292                 if (unlikely(nxlen <= txq->inlen_send)) {
3293                         /* We can inline first mbuf at least. */
3294                         if (nxlen < inlen) {
3295                                 unsigned int smlen;
3296
3297                                 /* Scan mbufs till inlen filled. */
3298                                 do {
3299                                         smlen = nxlen;
3300                                         mbuf = NEXT(mbuf);
3301                                         assert(mbuf);
3302                                         nxlen = rte_pktmbuf_data_len(mbuf);
3303                                         nxlen += smlen;
3304                                 } while (unlikely(nxlen < inlen));
3305                                 if (unlikely(nxlen > txq->inlen_send)) {
3306                                         /* We cannot inline entire mbuf. */
3307                                         smlen = inlen - smlen;
3308                                         start = rte_pktmbuf_mtod_offset
3309                                                     (mbuf, uintptr_t, smlen);
3310                                         goto do_align;
3311                                 }
3312                         }
3313                         do {
3314                                 inlen = nxlen;
3315                                 mbuf = NEXT(mbuf);
3316                                 /* There should be not end of packet. */
3317                                 assert(mbuf);
3318                                 nxlen = inlen + rte_pktmbuf_data_len(mbuf);
3319                         } while (unlikely(nxlen < txq->inlen_send));
3320                 }
3321                 start = rte_pktmbuf_mtod(mbuf, uintptr_t);
3322                 /*
3323                  * Check whether we can do inline to align start
3324                  * address of data buffer to cacheline.
3325                  */
3326 do_align:
3327                 start = (~start + 1) & (RTE_CACHE_LINE_SIZE - 1);
3328                 if (unlikely(start)) {
3329                         start += inlen;
3330                         if (start <= txq->inlen_send)
3331                                 inlen = start;
3332                 }
3333         }
3334         /*
3335          * Check whether there are enough free WQEBBs:
3336          * - Control Segment
3337          * - Ethernet Segment
3338          * - First Segment of inlined Ethernet data
3339          * - ... data continued ...
3340          * - Data Segments of pointer/min inline type
3341          *
3342          * Estimate the number of Data Segments conservatively,
3343          * supposing no any mbufs is being freed during inlining.
3344          */
3345         assert(inlen <= txq->inlen_send);
3346         ds = NB_SEGS(loc->mbuf) + 2 + (inlen -
3347                                        MLX5_ESEG_MIN_INLINE_SIZE +
3348                                        MLX5_WSEG_SIZE +
3349                                        MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3350         if (unlikely(loc->wqe_free < ((ds + 3) / 4)))
3351                 return MLX5_TXCMP_CODE_EXIT;
3352         /* Check for maximal WQE size. */
3353         if (unlikely((MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE) < ((ds + 3) / 4)))
3354                 return MLX5_TXCMP_CODE_ERROR;
3355 #ifdef MLX5_PMD_SOFT_COUNTERS
3356         /* Update sent data bytes/packets counters. */
3357         txq->stats.obytes += dlen + vlan;
3358 #endif
3359         wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3360         loc->wqe_last = wqe;
3361         mlx5_tx_cseg_init(txq, loc, wqe, 0, MLX5_OPCODE_SEND, olx);
3362         ds = mlx5_tx_mseg_build(txq, loc, wqe, vlan, inlen, 0, olx);
3363         wqe->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3364         txq->wqe_ci += (ds + 3) / 4;
3365         loc->wqe_free -= (ds + 3) / 4;
3366         /* Request CQE generation if limits are reached. */
3367         mlx5_tx_request_completion(txq, loc, true, olx);
3368         return MLX5_TXCMP_CODE_MULTI;
3369 }
3370
3371 /**
3372  * Tx burst function for multi-segment packets. Supports all
3373  * types of Tx offloads, uses MLX5_OPCODE_SEND/TSO to build WQEs,
3374  * sends one packet per WQE. Function stops sending if it
3375  * encounters the single-segment packet.
3376  *
3377  * This routine is responsible for storing processed mbuf
3378  * into elts ring buffer and update elts_head.
3379  *
3380  * @param txq
3381  *   Pointer to TX queue structure.
3382  * @param[in] pkts
3383  *   Packets to transmit.
3384  * @param pkts_n
3385  *   Number of packets in array.
3386  * @param loc
3387  *   Pointer to burst routine local context.
3388  * @param olx
3389  *   Configured Tx offloads mask. It is fully defined at
3390  *   compile time and may be used for optimization.
3391  *
3392  * @return
3393  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3394  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3395  *   MLX5_TXCMP_CODE_SINGLE - single-segment packet encountered.
3396  *   MLX5_TXCMP_CODE_TSO - TSO single-segment packet encountered.
3397  * Local context variables updated.
3398  */
3399 static __rte_always_inline enum mlx5_txcmp_code
3400 mlx5_tx_burst_mseg(struct mlx5_txq_data *restrict txq,
3401                    struct rte_mbuf **restrict pkts,
3402                    unsigned int pkts_n,
3403                    struct mlx5_txq_local *restrict loc,
3404                    unsigned int olx)
3405 {
3406         assert(loc->elts_free && loc->wqe_free);
3407         assert(pkts_n > loc->pkts_sent);
3408         pkts += loc->pkts_sent + 1;
3409         pkts_n -= loc->pkts_sent;
3410         for (;;) {
3411                 enum mlx5_txcmp_code ret;
3412
3413                 assert(NB_SEGS(loc->mbuf) > 1);
3414                 /*
3415                  * Estimate the number of free elts quickly but
3416                  * conservatively. Some segment may be fully inlined
3417                  * and freed, ignore this here - precise estimation
3418                  * is costly.
3419                  */
3420                 if (loc->elts_free < NB_SEGS(loc->mbuf))
3421                         return MLX5_TXCMP_CODE_EXIT;
3422                 if (MLX5_TXOFF_CONFIG(TSO) &&
3423                     unlikely(loc->mbuf->ol_flags & PKT_TX_TCP_SEG)) {
3424                         /* Proceed with multi-segment TSO. */
3425                         ret = mlx5_tx_packet_multi_tso(txq, loc, olx);
3426                 } else if (MLX5_TXOFF_CONFIG(INLINE)) {
3427                         /* Proceed with multi-segment SEND with inlining. */
3428                         ret = mlx5_tx_packet_multi_inline(txq, loc, olx);
3429                 } else {
3430                         /* Proceed with multi-segment SEND w/o inlining. */
3431                         ret = mlx5_tx_packet_multi_send(txq, loc, olx);
3432                 }
3433                 if (ret == MLX5_TXCMP_CODE_EXIT)
3434                         return MLX5_TXCMP_CODE_EXIT;
3435                 if (ret == MLX5_TXCMP_CODE_ERROR)
3436                         return MLX5_TXCMP_CODE_ERROR;
3437                 /* WQE is built, go to the next packet. */
3438                 ++loc->pkts_sent;
3439                 --pkts_n;
3440                 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
3441                         return MLX5_TXCMP_CODE_EXIT;
3442                 loc->mbuf = *pkts++;
3443                 if (pkts_n > 1)
3444                         rte_prefetch0(*pkts);
3445                 if (likely(NB_SEGS(loc->mbuf) > 1))
3446                         continue;
3447                 /* Here ends the series of multi-segment packets. */
3448                 if (MLX5_TXOFF_CONFIG(TSO) &&
3449                     unlikely(!(loc->mbuf->ol_flags & PKT_TX_TCP_SEG)))
3450                         return MLX5_TXCMP_CODE_TSO;
3451                 return MLX5_TXCMP_CODE_SINGLE;
3452         }
3453         assert(false);
3454 }
3455
3456 /**
3457  * Tx burst function for single-segment packets with TSO.
3458  * Supports all types of Tx offloads, except multi-packets.
3459  * Uses MLX5_OPCODE_TSO to build WQEs, sends one packet per WQE.
3460  * Function stops sending if it encounters the multi-segment
3461  * packet or packet without TSO requested.
3462  *
3463  * The routine is responsible for storing processed mbuf
3464  * into elts ring buffer and update elts_head if inline
3465  * offloads is requested due to possible early freeing
3466  * of the inlined mbufs (can not store pkts array in elts
3467  * as a batch).
3468  *
3469  * @param txq
3470  *   Pointer to TX queue structure.
3471  * @param[in] pkts
3472  *   Packets to transmit.
3473  * @param pkts_n
3474  *   Number of packets in array.
3475  * @param loc
3476  *   Pointer to burst routine local context.
3477  * @param olx
3478  *   Configured Tx offloads mask. It is fully defined at
3479  *   compile time and may be used for optimization.
3480  *
3481  * @return
3482  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3483  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3484  *   MLX5_TXCMP_CODE_SINGLE - single-segment packet encountered.
3485  *   MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
3486  * Local context variables updated.
3487  */
3488 static __rte_always_inline enum mlx5_txcmp_code
3489 mlx5_tx_burst_tso(struct mlx5_txq_data *restrict txq,
3490                   struct rte_mbuf **restrict pkts,
3491                   unsigned int pkts_n,
3492                   struct mlx5_txq_local *restrict loc,
3493                   unsigned int olx)
3494 {
3495         assert(loc->elts_free && loc->wqe_free);
3496         assert(pkts_n > loc->pkts_sent);
3497         pkts += loc->pkts_sent + 1;
3498         pkts_n -= loc->pkts_sent;
3499         for (;;) {
3500                 struct mlx5_wqe_dseg *restrict dseg;
3501                 struct mlx5_wqe *restrict wqe;
3502                 unsigned int ds, dlen, hlen, ntcp, vlan = 0;
3503                 uint8_t *dptr;
3504
3505                 assert(NB_SEGS(loc->mbuf) == 1);
3506                 dlen = rte_pktmbuf_data_len(loc->mbuf);
3507                 if (MLX5_TXOFF_CONFIG(VLAN) &&
3508                     loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
3509                         vlan = sizeof(struct rte_vlan_hdr);
3510                 }
3511                 /*
3512                  * First calculate the WQE size to check
3513                  * whether we have enough space in ring buffer.
3514                  */
3515                 hlen = loc->mbuf->l2_len + vlan +
3516                        loc->mbuf->l3_len + loc->mbuf->l4_len;
3517                 if (unlikely((!hlen || !loc->mbuf->tso_segsz)))
3518                         return MLX5_TXCMP_CODE_ERROR;
3519                 if (loc->mbuf->ol_flags & PKT_TX_TUNNEL_MASK)
3520                         hlen += loc->mbuf->outer_l2_len +
3521                                 loc->mbuf->outer_l3_len;
3522                 /* Segment must contain all TSO headers. */
3523                 if (unlikely(hlen > MLX5_MAX_TSO_HEADER ||
3524                              hlen <= MLX5_ESEG_MIN_INLINE_SIZE ||
3525                              hlen > (dlen + vlan)))
3526                         return MLX5_TXCMP_CODE_ERROR;
3527                 /*
3528                  * Check whether there are enough free WQEBBs:
3529                  * - Control Segment
3530                  * - Ethernet Segment
3531                  * - First Segment of inlined Ethernet data
3532                  * - ... data continued ...
3533                  * - Finishing Data Segment of pointer type
3534                  */
3535                 ds = 4 + (hlen - MLX5_ESEG_MIN_INLINE_SIZE +
3536                           MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
3537                 if (loc->wqe_free < ((ds + 3) / 4))
3538                         return MLX5_TXCMP_CODE_EXIT;
3539 #ifdef MLX5_PMD_SOFT_COUNTERS
3540                 /* Update sent data bytes/packets counters. */
3541                 ntcp = (dlen + vlan - hlen +
3542                         loc->mbuf->tso_segsz - 1) /
3543                         loc->mbuf->tso_segsz;
3544                 /*
3545                  * One will be added for mbuf itself at the end
3546                  * of the mlx5_tx_burst from loc->pkts_sent field.
3547                  */
3548                 --ntcp;
3549                 txq->stats.opackets += ntcp;
3550                 txq->stats.obytes += dlen + vlan + ntcp * hlen;
3551 #endif
3552                 /*
3553                  * Build the TSO WQE:
3554                  * - Control Segment
3555                  * - Ethernet Segment with hlen bytes inlined
3556                  * - Data Segment of pointer type
3557                  */
3558                 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3559                 loc->wqe_last = wqe;
3560                 mlx5_tx_cseg_init(txq, loc, wqe, ds,
3561                                   MLX5_OPCODE_TSO, olx);
3562                 dseg = mlx5_tx_eseg_data(txq, loc, wqe, vlan, hlen, 1, olx);
3563                 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) + hlen - vlan;
3564                 dlen -= hlen - vlan;
3565                 mlx5_tx_dseg_ptr(txq, loc, dseg, dptr, dlen, olx);
3566                 /*
3567                  * WQE is built, update the loop parameters
3568                  * and go to the next packet.
3569                  */
3570                 txq->wqe_ci += (ds + 3) / 4;
3571                 loc->wqe_free -= (ds + 3) / 4;
3572                 if (MLX5_TXOFF_CONFIG(INLINE))
3573                         txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
3574                 --loc->elts_free;
3575                 ++loc->pkts_sent;
3576                 --pkts_n;
3577                 /* Request CQE generation if limits are reached. */
3578                 mlx5_tx_request_completion(txq, loc, false, olx);
3579                 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
3580                         return MLX5_TXCMP_CODE_EXIT;
3581                 loc->mbuf = *pkts++;
3582                 if (pkts_n > 1)
3583                         rte_prefetch0(*pkts);
3584                 if (MLX5_TXOFF_CONFIG(MULTI) &&
3585                     unlikely(NB_SEGS(loc->mbuf) > 1))
3586                         return MLX5_TXCMP_CODE_MULTI;
3587                 if (unlikely(!(loc->mbuf->ol_flags & PKT_TX_TCP_SEG)))
3588                         return MLX5_TXCMP_CODE_SINGLE;
3589                 /* Continue with the next TSO packet. */
3590         }
3591         assert(false);
3592 }
3593
3594 /**
3595  * Analyze the packet and select the best method to send.
3596  *
3597  * @param txq
3598  *   Pointer to TX queue structure.
3599  * @param loc
3600  *   Pointer to burst routine local context.
3601  * @param olx
3602  *   Configured Tx offloads mask. It is fully defined at
3603  *   compile time and may be used for optimization.
3604  * @param newp
3605  *   The predefined flag whether do complete check for
3606  *   multi-segment packets and TSO.
3607  *
3608  * @return
3609  *  MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
3610  *  MLX5_TXCMP_CODE_TSO - TSO required, use TSO/LSO.
3611  *  MLX5_TXCMP_CODE_SINGLE - single-segment packet, use SEND.
3612  *  MLX5_TXCMP_CODE_EMPW - single-segment packet, use MPW.
3613  */
3614 static __rte_always_inline enum mlx5_txcmp_code
3615 mlx5_tx_able_to_empw(struct mlx5_txq_data *restrict txq,
3616                      struct mlx5_txq_local *restrict loc,
3617                      unsigned int olx,
3618                      bool newp)
3619 {
3620         /* Check for multi-segment packet. */
3621         if (newp &&
3622             MLX5_TXOFF_CONFIG(MULTI) &&
3623             unlikely(NB_SEGS(loc->mbuf) > 1))
3624                 return MLX5_TXCMP_CODE_MULTI;
3625         /* Check for TSO packet. */
3626         if (newp &&
3627             MLX5_TXOFF_CONFIG(TSO) &&
3628             unlikely(loc->mbuf->ol_flags & PKT_TX_TCP_SEG))
3629                 return MLX5_TXCMP_CODE_TSO;
3630         /* Check if eMPW is enabled at all. */
3631         if (!MLX5_TXOFF_CONFIG(EMPW))
3632                 return MLX5_TXCMP_CODE_SINGLE;
3633         /* Check if eMPW can be engaged. */
3634         if (MLX5_TXOFF_CONFIG(VLAN) &&
3635             unlikely(loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) &&
3636                 (!MLX5_TXOFF_CONFIG(INLINE) ||
3637                  unlikely((rte_pktmbuf_data_len(loc->mbuf) +
3638                            sizeof(struct rte_vlan_hdr)) > txq->inlen_empw))) {
3639                 /*
3640                  * eMPW does not support VLAN insertion offload,
3641                  * we have to inline the entire packet but
3642                  * packet is too long for inlining.
3643                  */
3644                 return MLX5_TXCMP_CODE_SINGLE;
3645         }
3646         return MLX5_TXCMP_CODE_EMPW;
3647 }
3648
3649 /**
3650  * Check the next packet attributes to match with the eMPW batch ones.
3651  *
3652  * @param txq
3653  *   Pointer to TX queue structure.
3654  * @param es
3655  *   Pointer to Ethernet Segment of eMPW batch.
3656  * @param loc
3657  *   Pointer to burst routine local context.
3658  * @param olx
3659  *   Configured Tx offloads mask. It is fully defined at
3660  *   compile time and may be used for optimization.
3661  *
3662  * @return
3663  *  true - packet match with eMPW batch attributes.
3664  *  false - no match, eMPW should be restarted.
3665  */
3666 static __rte_always_inline bool
3667 mlx5_tx_match_empw(struct mlx5_txq_data *restrict txq __rte_unused,
3668                    struct mlx5_wqe_eseg *restrict es,
3669                    struct mlx5_txq_local *restrict loc,
3670                    unsigned int olx)
3671 {
3672         uint8_t swp_flags = 0;
3673
3674         /* Compare the checksum flags, if any. */
3675         if (MLX5_TXOFF_CONFIG(CSUM) &&
3676             txq_ol_cksum_to_cs(loc->mbuf) != es->cs_flags)
3677                 return false;
3678         /* Compare the Software Parser offsets and flags. */
3679         if (MLX5_TXOFF_CONFIG(SWP) &&
3680             (es->swp_offs != txq_mbuf_to_swp(loc, &swp_flags, olx) ||
3681              es->swp_flags != swp_flags))
3682                 return false;
3683         /* Fill metadata field if needed. */
3684         if (MLX5_TXOFF_CONFIG(METADATA) &&
3685                 es->metadata != (loc->mbuf->ol_flags & PKT_TX_METADATA ?
3686                                  loc->mbuf->tx_metadata : 0))
3687                 return false;
3688         /* There must be no VLAN packets in eMPW loop. */
3689         if (MLX5_TXOFF_CONFIG(VLAN))
3690                 assert(!(loc->mbuf->ol_flags & PKT_TX_VLAN_PKT));
3691         return true;
3692 }
3693
3694 /*
3695  * Update send loop variables and WQE for eMPW loop
3696  * without data inlining. Number of Data Segments is
3697  * equal to the number of sent packets.
3698  *
3699  * @param txq
3700  *   Pointer to TX queue structure.
3701  * @param loc
3702  *   Pointer to burst routine local context.
3703  * @param ds
3704  *   Number of packets/Data Segments/Packets.
3705  * @param slen
3706  *   Accumulated statistics, bytes sent
3707  * @param olx
3708  *   Configured Tx offloads mask. It is fully defined at
3709  *   compile time and may be used for optimization.
3710  *
3711  * @return
3712  *  true - packet match with eMPW batch attributes.
3713  *  false - no match, eMPW should be restarted.
3714  */
3715 static __rte_always_inline void
3716 mlx5_tx_sdone_empw(struct mlx5_txq_data *restrict txq,
3717                    struct mlx5_txq_local *restrict loc,
3718                    unsigned int ds,
3719                    unsigned int slen,
3720                    unsigned int olx)
3721 {
3722         assert(!MLX5_TXOFF_CONFIG(INLINE));
3723 #ifdef MLX5_PMD_SOFT_COUNTERS
3724         /* Update sent data bytes counter. */
3725          txq->stats.obytes += slen;
3726 #else
3727         (void)slen;
3728 #endif
3729         loc->elts_free -= ds;
3730         loc->pkts_sent += ds;
3731         ds += 2;
3732         loc->wqe_last->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | ds);
3733         txq->wqe_ci += (ds + 3) / 4;
3734         loc->wqe_free -= (ds + 3) / 4;
3735         /* Request CQE generation if limits are reached. */
3736         mlx5_tx_request_completion(txq, loc, false, olx);
3737 }
3738
3739 /*
3740  * Update send loop variables and WQE for eMPW loop
3741  * with data inlining. Gets the size of pushed descriptors
3742  * and data to the WQE.
3743  *
3744  * @param txq
3745  *   Pointer to TX queue structure.
3746  * @param loc
3747  *   Pointer to burst routine local context.
3748  * @param len
3749  *   Total size of descriptor/data in bytes.
3750  * @param slen
3751  *   Accumulated statistics, data bytes sent.
3752  * @param olx
3753  *   Configured Tx offloads mask. It is fully defined at
3754  *   compile time and may be used for optimization.
3755  *
3756  * @return
3757  *  true - packet match with eMPW batch attributes.
3758  *  false - no match, eMPW should be restarted.
3759  */
3760 static __rte_always_inline void
3761 mlx5_tx_idone_empw(struct mlx5_txq_data *restrict txq,
3762                    struct mlx5_txq_local *restrict loc,
3763                    unsigned int len,
3764                    unsigned int slen,
3765                    unsigned int olx __rte_unused)
3766 {
3767         assert(MLX5_TXOFF_CONFIG(INLINE));
3768         assert((len % MLX5_WSEG_SIZE) == 0);
3769 #ifdef MLX5_PMD_SOFT_COUNTERS
3770         /* Update sent data bytes counter. */
3771          txq->stats.obytes += slen;
3772 #else
3773         (void)slen;
3774 #endif
3775         len = len / MLX5_WSEG_SIZE + 2;
3776         loc->wqe_last->cseg.sq_ds = rte_cpu_to_be_32(txq->qp_num_8s | len);
3777         txq->wqe_ci += (len + 3) / 4;
3778         loc->wqe_free -= (len + 3) / 4;
3779         /* Request CQE generation if limits are reached. */
3780         mlx5_tx_request_completion(txq, loc, false, olx);
3781 }
3782
3783 /**
3784  * The set of Tx burst functions for single-segment packets
3785  * without TSO and with Multi-Packet Writing feature support.
3786  * Supports all types of Tx offloads, except multi-packets
3787  * and TSO.
3788  *
3789  * Uses MLX5_OPCODE_EMPW to build WQEs if possible and sends
3790  * as many packet per WQE as it can. If eMPW is not configured
3791  * or packet can not be sent with eMPW (VLAN insertion) the
3792  * ordinary SEND opcode is used and only one packet placed
3793  * in WQE.
3794  *
3795  * Functions stop sending if it encounters the multi-segment
3796  * packet or packet with TSO requested.
3797  *
3798  * The routines are responsible for storing processed mbuf
3799  * into elts ring buffer and update elts_head if inlining
3800  * offload is requested. Otherwise the copying mbufs to elts
3801  * can be postponed and completed at the end of burst routine.
3802  *
3803  * @param txq
3804  *   Pointer to TX queue structure.
3805  * @param[in] pkts
3806  *   Packets to transmit.
3807  * @param pkts_n
3808  *   Number of packets in array.
3809  * @param loc
3810  *   Pointer to burst routine local context.
3811  * @param olx
3812  *   Configured Tx offloads mask. It is fully defined at
3813  *   compile time and may be used for optimization.
3814  *
3815  * @return
3816  *   MLX5_TXCMP_CODE_EXIT - sending is done or impossible.
3817  *   MLX5_TXCMP_CODE_ERROR - some unrecoverable error occurred.
3818  *   MLX5_TXCMP_CODE_MULTI - multi-segment packet encountered.
3819  *   MLX5_TXCMP_CODE_TSO - TSO packet encountered.
3820  *   MLX5_TXCMP_CODE_SINGLE - used inside functions set.
3821  *   MLX5_TXCMP_CODE_EMPW - used inside functions set.
3822  *
3823  * Local context variables updated.
3824  *
3825  *
3826  * The routine sends packets with MLX5_OPCODE_EMPW
3827  * without inlining, this is dedicated optimized branch.
3828  * No VLAN insertion is supported.
3829  */
3830 static __rte_always_inline enum mlx5_txcmp_code
3831 mlx5_tx_burst_empw_simple(struct mlx5_txq_data *restrict txq,
3832                           struct rte_mbuf **restrict pkts,
3833                           unsigned int pkts_n,
3834                           struct mlx5_txq_local *restrict loc,
3835                           unsigned int olx)
3836 {
3837         /*
3838          * Subroutine is the part of mlx5_tx_burst_single()
3839          * and sends single-segment packet with eMPW opcode
3840          * without data inlining.
3841          */
3842         assert(!MLX5_TXOFF_CONFIG(INLINE));
3843         assert(MLX5_TXOFF_CONFIG(EMPW));
3844         assert(loc->elts_free && loc->wqe_free);
3845         assert(pkts_n > loc->pkts_sent);
3846         static_assert(MLX5_EMPW_MIN_PACKETS >= 2, "invalid min size");
3847         pkts += loc->pkts_sent + 1;
3848         pkts_n -= loc->pkts_sent;
3849         for (;;) {
3850                 struct mlx5_wqe_dseg *restrict dseg;
3851                 struct mlx5_wqe_eseg *restrict eseg;
3852                 enum mlx5_txcmp_code ret;
3853                 unsigned int part, loop;
3854                 unsigned int slen = 0;
3855
3856 next_empw:
3857                 part = RTE_MIN(pkts_n, MLX5_EMPW_MAX_PACKETS);
3858                 if (unlikely(loc->elts_free < part)) {
3859                         /* We have no enough elts to save all mbufs. */
3860                         if (unlikely(loc->elts_free < MLX5_EMPW_MIN_PACKETS))
3861                                 return MLX5_TXCMP_CODE_EXIT;
3862                         /* But we still able to send at least minimal eMPW. */
3863                         part = loc->elts_free;
3864                 }
3865                 /* Check whether we have enough WQEs */
3866                 if (unlikely(loc->wqe_free < ((2 + part + 3) / 4))) {
3867                         if (unlikely(loc->wqe_free <
3868                                 ((2 + MLX5_EMPW_MIN_PACKETS + 3) / 4)))
3869                                 return MLX5_TXCMP_CODE_EXIT;
3870                         part = (loc->wqe_free * 4) - 2;
3871                 }
3872                 if (likely(part > 1))
3873                         rte_prefetch0(*pkts);
3874                 loc->wqe_last = txq->wqes + (txq->wqe_ci & txq->wqe_m);
3875                 /*
3876                  * Build eMPW title WQEBB:
3877                  * - Control Segment, eMPW opcode
3878                  * - Ethernet Segment, no inline
3879                  */
3880                 mlx5_tx_cseg_init(txq, loc, loc->wqe_last, part + 2,
3881                                   MLX5_OPCODE_ENHANCED_MPSW, olx);
3882                 mlx5_tx_eseg_none(txq, loc, loc->wqe_last,
3883                                   olx & ~MLX5_TXOFF_CONFIG_VLAN);
3884                 eseg = &loc->wqe_last->eseg;
3885                 dseg = &loc->wqe_last->dseg[0];
3886                 loop = part;
3887                 for (;;) {
3888                         uint32_t dlen = rte_pktmbuf_data_len(loc->mbuf);
3889 #ifdef MLX5_PMD_SOFT_COUNTERS
3890                         /* Update sent data bytes counter. */
3891                         slen += dlen;
3892 #endif
3893                         mlx5_tx_dseg_ptr
3894                                 (txq, loc, dseg,
3895                                  rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
3896                                  dlen, olx);
3897                         if (unlikely(--loop == 0))
3898                                 break;
3899                         loc->mbuf = *pkts++;
3900                         if (likely(loop > 1))
3901                                 rte_prefetch0(*pkts);
3902                         ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
3903                         /*
3904                          * Unroll the completion code to avoid
3905                          * returning variable value - it results in
3906                          * unoptimized sequent checking in caller.
3907                          */
3908                         if (ret == MLX5_TXCMP_CODE_MULTI) {
3909                                 part -= loop;
3910                                 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
3911                                 if (unlikely(!loc->elts_free ||
3912                                              !loc->wqe_free))
3913                                         return MLX5_TXCMP_CODE_EXIT;
3914                                 return MLX5_TXCMP_CODE_MULTI;
3915                         }
3916                         if (ret == MLX5_TXCMP_CODE_TSO) {
3917                                 part -= loop;
3918                                 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
3919                                 if (unlikely(!loc->elts_free ||
3920                                              !loc->wqe_free))
3921                                         return MLX5_TXCMP_CODE_EXIT;
3922                                 return MLX5_TXCMP_CODE_TSO;
3923                         }
3924                         if (ret == MLX5_TXCMP_CODE_SINGLE) {
3925                                 part -= loop;
3926                                 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
3927                                 if (unlikely(!loc->elts_free ||
3928                                              !loc->wqe_free))
3929                                         return MLX5_TXCMP_CODE_EXIT;
3930                                 return MLX5_TXCMP_CODE_SINGLE;
3931                         }
3932                         if (ret != MLX5_TXCMP_CODE_EMPW) {
3933                                 assert(false);
3934                                 part -= loop;
3935                                 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
3936                                 return MLX5_TXCMP_CODE_ERROR;
3937                         }
3938                         /*
3939                          * Check whether packet parameters coincide
3940                          * within assumed eMPW batch:
3941                          * - check sum settings
3942                          * - metadata value
3943                          * - software parser settings
3944                          */
3945                         if (!mlx5_tx_match_empw(txq, eseg, loc, olx)) {
3946                                 assert(loop);
3947                                 part -= loop;
3948                                 mlx5_tx_sdone_empw(txq, loc, part, slen, olx);
3949                                 if (unlikely(!loc->elts_free ||
3950                                              !loc->wqe_free))
3951                                         return MLX5_TXCMP_CODE_EXIT;
3952                                 pkts_n -= part;
3953                                 goto next_empw;
3954                         }
3955                         /* Packet attributes match, continue the same eMPW. */
3956                         ++dseg;
3957                         if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
3958                                 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
3959                 }
3960                 /* eMPW is built successfully, update loop parameters. */
3961                 assert(!loop);
3962                 assert(pkts_n >= part);
3963 #ifdef MLX5_PMD_SOFT_COUNTERS
3964                 /* Update sent data bytes counter. */
3965                 txq->stats.obytes += slen;
3966 #endif
3967                 loc->elts_free -= part;
3968                 loc->pkts_sent += part;
3969                 txq->wqe_ci += (2 + part + 3) / 4;
3970                 loc->wqe_free -= (2 + part + 3) / 4;
3971                 pkts_n -= part;
3972                 /* Request CQE generation if limits are reached. */
3973                 mlx5_tx_request_completion(txq, loc, false, olx);
3974                 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
3975                         return MLX5_TXCMP_CODE_EXIT;
3976                 loc->mbuf = *pkts++;
3977                 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
3978                 if (unlikely(ret != MLX5_TXCMP_CODE_EMPW))
3979                         return ret;
3980                 /* Continue sending eMPW batches. */
3981         }
3982         assert(false);
3983 }
3984
3985 /**
3986  * The routine sends packets with MLX5_OPCODE_EMPW
3987  * with inlining, optionally supports VLAN insertion.
3988  */
3989 static __rte_always_inline enum mlx5_txcmp_code
3990 mlx5_tx_burst_empw_inline(struct mlx5_txq_data *restrict txq,
3991                           struct rte_mbuf **restrict pkts,
3992                           unsigned int pkts_n,
3993                           struct mlx5_txq_local *restrict loc,
3994                           unsigned int olx)
3995 {
3996         /*
3997          * Subroutine is the part of mlx5_tx_burst_single()
3998          * and sends single-segment packet with eMPW opcode
3999          * with data inlining.
4000          */
4001         assert(MLX5_TXOFF_CONFIG(INLINE));
4002         assert(MLX5_TXOFF_CONFIG(EMPW));
4003         assert(loc->elts_free && loc->wqe_free);
4004         assert(pkts_n > loc->pkts_sent);
4005         static_assert(MLX5_EMPW_MIN_PACKETS >= 2, "invalid min size");
4006         pkts += loc->pkts_sent + 1;
4007         pkts_n -= loc->pkts_sent;
4008         for (;;) {
4009                 struct mlx5_wqe_dseg *restrict dseg;
4010                 struct mlx5_wqe_eseg *restrict eseg;
4011                 enum mlx5_txcmp_code ret;
4012                 unsigned int room, part, nlim;
4013                 unsigned int slen = 0;
4014
4015                 /*
4016                  * Limits the amount of packets in one WQE
4017                  * to improve CQE latency generation.
4018                  */
4019                 nlim = RTE_MIN(pkts_n, MLX5_EMPW_MAX_PACKETS);
4020                 /* Check whether we have minimal amount WQEs */
4021                 if (unlikely(loc->wqe_free <
4022                             ((2 + MLX5_EMPW_MIN_PACKETS + 3) / 4)))
4023                         return MLX5_TXCMP_CODE_EXIT;
4024                 if (likely(pkts_n > 1))
4025                         rte_prefetch0(*pkts);
4026                 loc->wqe_last = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4027                 /*
4028                  * Build eMPW title WQEBB:
4029                  * - Control Segment, eMPW opcode, zero DS
4030                  * - Ethernet Segment, no inline
4031                  */
4032                 mlx5_tx_cseg_init(txq, loc, loc->wqe_last, 0,
4033                                   MLX5_OPCODE_ENHANCED_MPSW, olx);
4034                 mlx5_tx_eseg_none(txq, loc, loc->wqe_last,
4035                                   olx & ~MLX5_TXOFF_CONFIG_VLAN);
4036                 eseg = &loc->wqe_last->eseg;
4037                 dseg = &loc->wqe_last->dseg[0];
4038                 room = RTE_MIN(MLX5_WQE_SIZE_MAX / MLX5_WQE_SIZE,
4039                                loc->wqe_free) * MLX5_WQE_SIZE -
4040                                         MLX5_WQE_CSEG_SIZE -
4041                                         MLX5_WQE_ESEG_SIZE;
4042                 /* Build WQE till we have space, packets and resources. */
4043                 part = room;
4044                 for (;;) {
4045                         uint32_t dlen = rte_pktmbuf_data_len(loc->mbuf);
4046                         uint8_t *dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *);
4047                         unsigned int tlen;
4048
4049                         assert(room >= MLX5_WQE_DSEG_SIZE);
4050                         assert((room % MLX5_WQE_DSEG_SIZE) == 0);
4051                         assert((uintptr_t)dseg < (uintptr_t)txq->wqes_end);
4052                         /*
4053                          * Some Tx offloads may cause an error if
4054                          * packet is not long enough, check against
4055                          * assumed minimal length.
4056                          */
4057                         if (unlikely(dlen <= MLX5_ESEG_MIN_INLINE_SIZE)) {
4058                                 part -= room;
4059                                 if (unlikely(!part))
4060                                         return MLX5_TXCMP_CODE_ERROR;
4061                                 /*
4062                                  * We have some successfully built
4063                                  * packet Data Segments to send.
4064                                  */
4065                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4066                                 return MLX5_TXCMP_CODE_ERROR;
4067                         }
4068                         /* Inline or not inline - that's the Question. */
4069                         if (dlen > txq->inlen_empw)
4070                                 goto pointer_empw;
4071                         /* Inline entire packet, optional VLAN insertion. */
4072                         tlen = sizeof(dseg->bcount) + dlen;
4073                         if (MLX5_TXOFF_CONFIG(VLAN) &&
4074                             loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
4075                                 /*
4076                                  * The packet length must be checked in
4077                                  * mlx5_tx_able_to_empw() and packet
4078                                  * fits into inline length guaranteed.
4079                                  */
4080                                 assert((dlen + sizeof(struct rte_vlan_hdr)) <=
4081                                         txq->inlen_empw);
4082                                 tlen += sizeof(struct rte_vlan_hdr);
4083                                 if (room < tlen)
4084                                         break;
4085                                 dseg = mlx5_tx_dseg_vlan(txq, loc, dseg,
4086                                                          dptr, dlen, olx);
4087 #ifdef MLX5_PMD_SOFT_COUNTERS
4088                                 /* Update sent data bytes counter. */
4089                                 slen += sizeof(struct rte_vlan_hdr);
4090 #endif
4091                         } else {
4092                                 if (room < tlen)
4093                                         break;
4094                                 dseg = mlx5_tx_dseg_empw(txq, loc, dseg,
4095                                                          dptr, dlen, olx);
4096                         }
4097                         tlen = RTE_ALIGN(tlen, MLX5_WSEG_SIZE);
4098                         assert(room >= tlen);
4099                         room -= tlen;
4100                         /*
4101                          * Packet data are completely inlined,
4102                          * free the packet immediately.
4103                          */
4104                         rte_pktmbuf_free_seg(loc->mbuf);
4105                         goto next_mbuf;
4106 pointer_empw:
4107                         /*
4108                          * Not inlinable VLAN packets are
4109                          * proceeded outside of this routine.
4110                          */
4111                         assert(room >= MLX5_WQE_DSEG_SIZE);
4112                         if (MLX5_TXOFF_CONFIG(VLAN))
4113                                 assert(!(loc->mbuf->ol_flags &
4114                                          PKT_TX_VLAN_PKT));
4115                         mlx5_tx_dseg_ptr(txq, loc, dseg, dptr, dlen, olx);
4116                         /* We have to store mbuf in elts.*/
4117                         txq->elts[txq->elts_head++ & txq->elts_m] = loc->mbuf;
4118                         room -= MLX5_WQE_DSEG_SIZE;
4119                         /* Ring buffer wraparound is checked at the loop end.*/
4120                         ++dseg;
4121 next_mbuf:
4122 #ifdef MLX5_PMD_SOFT_COUNTERS
4123                         /* Update sent data bytes counter. */
4124                         slen += dlen;
4125 #endif
4126                         loc->pkts_sent++;
4127                         loc->elts_free--;
4128                         pkts_n--;
4129                         if (unlikely(!pkts_n || !loc->elts_free)) {
4130                                 /*
4131                                  * We have no resources/packets to
4132                                  * continue build descriptors.
4133                                  */
4134                                 part -= room;
4135                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4136                                 return MLX5_TXCMP_CODE_EXIT;
4137                         }
4138                         loc->mbuf = *pkts++;
4139                         if (likely(pkts_n > 1))
4140                                 rte_prefetch0(*pkts);
4141                         ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4142                         /*
4143                          * Unroll the completion code to avoid
4144                          * returning variable value - it results in
4145                          * unoptimized sequent checking in caller.
4146                          */
4147                         if (ret == MLX5_TXCMP_CODE_MULTI) {
4148                                 part -= room;
4149                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4150                                 if (unlikely(!loc->elts_free ||
4151                                              !loc->wqe_free))
4152                                         return MLX5_TXCMP_CODE_EXIT;
4153                                 return MLX5_TXCMP_CODE_MULTI;
4154                         }
4155                         if (ret == MLX5_TXCMP_CODE_TSO) {
4156                                 part -= room;
4157                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4158                                 if (unlikely(!loc->elts_free ||
4159                                              !loc->wqe_free))
4160                                         return MLX5_TXCMP_CODE_EXIT;
4161                                 return MLX5_TXCMP_CODE_TSO;
4162                         }
4163                         if (ret == MLX5_TXCMP_CODE_SINGLE) {
4164                                 part -= room;
4165                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4166                                 if (unlikely(!loc->elts_free ||
4167                                              !loc->wqe_free))
4168                                         return MLX5_TXCMP_CODE_EXIT;
4169                                 return MLX5_TXCMP_CODE_SINGLE;
4170                         }
4171                         if (ret != MLX5_TXCMP_CODE_EMPW) {
4172                                 assert(false);
4173                                 part -= room;
4174                                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4175                                 return MLX5_TXCMP_CODE_ERROR;
4176                         }
4177                         /* Check if we have minimal room left. */
4178                         nlim--;
4179                         if (unlikely(!nlim || room < MLX5_WQE_DSEG_SIZE))
4180                                 break;
4181                         /*
4182                          * Check whether packet parameters coincide
4183                          * within assumed eMPW batch:
4184                          * - check sum settings
4185                          * - metadata value
4186                          * - software parser settings
4187                          */
4188                         if (!mlx5_tx_match_empw(txq, eseg, loc, olx))
4189                                 break;
4190                         /* Packet attributes match, continue the same eMPW. */
4191                         if ((uintptr_t)dseg >= (uintptr_t)txq->wqes_end)
4192                                 dseg = (struct mlx5_wqe_dseg *)txq->wqes;
4193                 }
4194                 /*
4195                  * We get here to close an existing eMPW
4196                  * session and start the new one.
4197                  */
4198                 assert(pkts_n);
4199                 part -= room;
4200                 if (unlikely(!part))
4201                         return MLX5_TXCMP_CODE_EXIT;
4202                 mlx5_tx_idone_empw(txq, loc, part, slen, olx);
4203                 if (unlikely(!loc->elts_free ||
4204                              !loc->wqe_free))
4205                         return MLX5_TXCMP_CODE_EXIT;
4206                 /* Continue the loop with new eMPW session. */
4207         }
4208         assert(false);
4209 }
4210
4211 /**
4212  * The routine sends packets with ordinary MLX5_OPCODE_SEND.
4213  * Data inlining and VLAN insertion are supported.
4214  */
4215 static __rte_always_inline enum mlx5_txcmp_code
4216 mlx5_tx_burst_single_send(struct mlx5_txq_data *restrict txq,
4217                           struct rte_mbuf **restrict pkts,
4218                           unsigned int pkts_n,
4219                           struct mlx5_txq_local *restrict loc,
4220                           unsigned int olx)
4221 {
4222         /*
4223          * Subroutine is the part of mlx5_tx_burst_single()
4224          * and sends single-segment packet with SEND opcode.
4225          */
4226         assert(loc->elts_free && loc->wqe_free);
4227         assert(pkts_n > loc->pkts_sent);
4228         pkts += loc->pkts_sent + 1;
4229         pkts_n -= loc->pkts_sent;
4230         for (;;) {
4231                 struct mlx5_wqe *restrict wqe;
4232                 enum mlx5_txcmp_code ret;
4233
4234                 assert(NB_SEGS(loc->mbuf) == 1);
4235                 if (MLX5_TXOFF_CONFIG(INLINE)) {
4236                         unsigned int inlen, vlan = 0;
4237
4238                         inlen = rte_pktmbuf_data_len(loc->mbuf);
4239                         if (MLX5_TXOFF_CONFIG(VLAN) &&
4240                             loc->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
4241                                 vlan = sizeof(struct rte_vlan_hdr);
4242                                 inlen += vlan;
4243                                 static_assert((sizeof(struct rte_vlan_hdr) +
4244                                                sizeof(struct rte_ether_hdr)) ==
4245                                                MLX5_ESEG_MIN_INLINE_SIZE,
4246                                                "invalid min inline data size");
4247                         }
4248                         /*
4249                          * If inlining is enabled at configuration time
4250                          * the limit must be not less than minimal size.
4251                          * Otherwise we would do extra check for data
4252                          * size to avoid crashes due to length overflow.
4253                          */
4254                         assert(txq->inlen_send >= MLX5_ESEG_MIN_INLINE_SIZE);
4255                         if (inlen <= txq->inlen_send) {
4256                                 unsigned int seg_n, wqe_n;
4257
4258                                 rte_prefetch0(rte_pktmbuf_mtod
4259                                                 (loc->mbuf, uint8_t *));
4260                                 /* Check against minimal length. */
4261                                 if (inlen <= MLX5_ESEG_MIN_INLINE_SIZE)
4262                                         return MLX5_TXCMP_CODE_ERROR;
4263                                 /*
4264                                  * Completely inlined packet data WQE:
4265                                  * - Control Segment, SEND opcode
4266                                  * - Ethernet Segment, no VLAN insertion
4267                                  * - Data inlined, VLAN optionally inserted
4268                                  * - Alignment to MLX5_WSEG_SIZE
4269                                  * Have to estimate amount of WQEBBs
4270                                  */
4271                                 seg_n = (inlen + 3 * MLX5_WSEG_SIZE -
4272                                          MLX5_ESEG_MIN_INLINE_SIZE +
4273                                          MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
4274                                 /* Check if there are enough WQEBBs. */
4275                                 wqe_n = (seg_n + 3) / 4;
4276                                 if (wqe_n > loc->wqe_free)
4277                                         return MLX5_TXCMP_CODE_EXIT;
4278                                 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4279                                 loc->wqe_last = wqe;
4280                                 mlx5_tx_cseg_init(txq, loc, wqe, seg_n,
4281                                                   MLX5_OPCODE_SEND, olx);
4282                                 mlx5_tx_eseg_data(txq, loc, wqe,
4283                                                   vlan, inlen, 0, olx);
4284                                 txq->wqe_ci += wqe_n;
4285                                 loc->wqe_free -= wqe_n;
4286                                 /*
4287                                  * Packet data are completely inlined,
4288                                  * free the packet immediately.
4289                                  */
4290                                 rte_pktmbuf_free_seg(loc->mbuf);
4291                         } else if (!MLX5_TXOFF_CONFIG(EMPW) &&
4292                                    txq->inlen_mode) {
4293                                 /*
4294                                  * If minimal inlining is requested the eMPW
4295                                  * feature should be disabled due to data is
4296                                  * inlined into Ethernet Segment, which can
4297                                  * not contain inlined data for eMPW due to
4298                                  * segment shared for all packets.
4299                                  */
4300                                 struct mlx5_wqe_dseg *restrict dseg;
4301                                 unsigned int ds;
4302                                 uint8_t *dptr;
4303
4304                                 /*
4305                                  * The inline-mode settings require
4306                                  * to inline the specified amount of
4307                                  * data bytes to the Ethernet Segment.
4308                                  * We should check the free space in
4309                                  * WQE ring buffer to inline partially.
4310                                  */
4311                                 assert(txq->inlen_send >= txq->inlen_mode);
4312                                 assert(inlen > txq->inlen_mode);
4313                                 assert(txq->inlen_mode >=
4314                                                 MLX5_ESEG_MIN_INLINE_SIZE);
4315                                 /*
4316                                  * Check whether there are enough free WQEBBs:
4317                                  * - Control Segment
4318                                  * - Ethernet Segment
4319                                  * - First Segment of inlined Ethernet data
4320                                  * - ... data continued ...
4321                                  * - Finishing Data Segment of pointer type
4322                                  */
4323                                 ds = (MLX5_WQE_CSEG_SIZE +
4324                                       MLX5_WQE_ESEG_SIZE +
4325                                       MLX5_WQE_DSEG_SIZE +
4326                                       txq->inlen_mode -
4327                                       MLX5_ESEG_MIN_INLINE_SIZE +
4328                                       MLX5_WQE_DSEG_SIZE +
4329                                       MLX5_WSEG_SIZE - 1) / MLX5_WSEG_SIZE;
4330                                 if (loc->wqe_free < ((ds + 3) / 4))
4331                                         return MLX5_TXCMP_CODE_EXIT;
4332                                 /*
4333                                  * Build the ordinary SEND WQE:
4334                                  * - Control Segment
4335                                  * - Ethernet Segment, inline inlen_mode bytes
4336                                  * - Data Segment of pointer type
4337                                  */
4338                                 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4339                                 loc->wqe_last = wqe;
4340                                 mlx5_tx_cseg_init(txq, loc, wqe, ds,
4341                                                   MLX5_OPCODE_SEND, olx);
4342                                 dseg = mlx5_tx_eseg_data(txq, loc, wqe, vlan,
4343                                                          txq->inlen_mode,
4344                                                          0, olx);
4345                                 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) +
4346                                        txq->inlen_mode - vlan;
4347                                 inlen -= txq->inlen_mode;
4348                                 mlx5_tx_dseg_ptr(txq, loc, dseg,
4349                                                  dptr, inlen, olx);
4350                                 /*
4351                                  * WQE is built, update the loop parameters
4352                                  * and got to the next packet.
4353                                  */
4354                                 txq->wqe_ci += (ds + 3) / 4;
4355                                 loc->wqe_free -= (ds + 3) / 4;
4356                                 /* We have to store mbuf in elts.*/
4357                                 assert(MLX5_TXOFF_CONFIG(INLINE));
4358                                 txq->elts[txq->elts_head++ & txq->elts_m] =
4359                                                 loc->mbuf;
4360                                 --loc->elts_free;
4361                         } else {
4362                                 uint8_t *dptr;
4363                                 unsigned int dlen;
4364
4365                                 /*
4366                                  * Partially inlined packet data WQE, we have
4367                                  * some space in title WQEBB, we can fill it
4368                                  * with some packet data. It takes one WQEBB,
4369                                  * it is available, no extra space check:
4370                                  * - Control Segment, SEND opcode
4371                                  * - Ethernet Segment, no VLAN insertion
4372                                  * - MLX5_ESEG_MIN_INLINE_SIZE bytes of Data
4373                                  * - Data Segment, pointer type
4374                                  *
4375                                  * We also get here if VLAN insertion is not
4376                                  * supported by HW, the inline is enabled.
4377                                  */
4378                                 wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4379                                 loc->wqe_last = wqe;
4380                                 mlx5_tx_cseg_init(txq, loc, wqe, 4,
4381                                                   MLX5_OPCODE_SEND, olx);
4382                                 mlx5_tx_eseg_dmin(txq, loc, wqe, vlan, olx);
4383                                 dptr = rte_pktmbuf_mtod(loc->mbuf, uint8_t *) +
4384                                        MLX5_ESEG_MIN_INLINE_SIZE - vlan;
4385                                 /*
4386                                  * The length check is performed above, by
4387                                  * comparing with txq->inlen_send. We should
4388                                  * not get overflow here.
4389                                  */
4390                                 assert(inlen > MLX5_ESEG_MIN_INLINE_SIZE);
4391                                 dlen = inlen - MLX5_ESEG_MIN_INLINE_SIZE;
4392                                 mlx5_tx_dseg_ptr(txq, loc, &wqe->dseg[1],
4393                                                  dptr, dlen, olx);
4394                                 ++txq->wqe_ci;
4395                                 --loc->wqe_free;
4396                                 /* We have to store mbuf in elts.*/
4397                                 assert(MLX5_TXOFF_CONFIG(INLINE));
4398                                 txq->elts[txq->elts_head++ & txq->elts_m] =
4399                                                 loc->mbuf;
4400                                 --loc->elts_free;
4401                         }
4402 #ifdef MLX5_PMD_SOFT_COUNTERS
4403                         /* Update sent data bytes counter. */
4404                         txq->stats.obytes += vlan +
4405                                         rte_pktmbuf_data_len(loc->mbuf);
4406 #endif
4407                 } else {
4408                         /*
4409                          * No inline at all, it means the CPU cycles saving
4410                          * is prioritized at configuration, we should not
4411                          * copy any packet data to WQE.
4412                          *
4413                          * SEND WQE, one WQEBB:
4414                          * - Control Segment, SEND opcode
4415                          * - Ethernet Segment, optional VLAN, no inline
4416                          * - Data Segment, pointer type
4417                          */
4418                         wqe = txq->wqes + (txq->wqe_ci & txq->wqe_m);
4419                         loc->wqe_last = wqe;
4420                         mlx5_tx_cseg_init(txq, loc, wqe, 3,
4421                                           MLX5_OPCODE_SEND, olx);
4422                         mlx5_tx_eseg_none(txq, loc, wqe, olx);
4423                         mlx5_tx_dseg_ptr
4424                                 (txq, loc, &wqe->dseg[0],
4425                                  rte_pktmbuf_mtod(loc->mbuf, uint8_t *),
4426                                  rte_pktmbuf_data_len(loc->mbuf), olx);
4427                         ++txq->wqe_ci;
4428                         --loc->wqe_free;
4429                         /*
4430                          * We should not store mbuf pointer in elts
4431                          * if no inlining is configured, this is done
4432                          * by calling routine in a batch copy.
4433                          */
4434                         assert(!MLX5_TXOFF_CONFIG(INLINE));
4435                         --loc->elts_free;
4436 #ifdef MLX5_PMD_SOFT_COUNTERS
4437                         /* Update sent data bytes counter. */
4438                         txq->stats.obytes += rte_pktmbuf_data_len(loc->mbuf);
4439                         if (MLX5_TXOFF_CONFIG(VLAN) &&
4440                             loc->mbuf->ol_flags & PKT_TX_VLAN_PKT)
4441                                 txq->stats.obytes +=
4442                                         sizeof(struct rte_vlan_hdr);
4443 #endif
4444                 }
4445                 ++loc->pkts_sent;
4446                 --pkts_n;
4447                 /* Request CQE generation if limits are reached. */
4448                 mlx5_tx_request_completion(txq, loc, false, olx);
4449                 if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free))
4450                         return MLX5_TXCMP_CODE_EXIT;
4451                 loc->mbuf = *pkts++;
4452                 if (pkts_n > 1)
4453                         rte_prefetch0(*pkts);
4454                 ret = mlx5_tx_able_to_empw(txq, loc, olx, true);
4455                 if (unlikely(ret != MLX5_TXCMP_CODE_SINGLE))
4456                         return ret;
4457         }
4458         assert(false);
4459 }
4460
4461 static __rte_always_inline enum mlx5_txcmp_code
4462 mlx5_tx_burst_single(struct mlx5_txq_data *restrict txq,
4463                      struct rte_mbuf **restrict pkts,
4464                      unsigned int pkts_n,
4465                      struct mlx5_txq_local *restrict loc,
4466                      unsigned int olx)
4467 {
4468         enum mlx5_txcmp_code ret;
4469
4470         ret = mlx5_tx_able_to_empw(txq, loc, olx, false);
4471         if (ret == MLX5_TXCMP_CODE_SINGLE)
4472                 goto ordinary_send;
4473         assert(ret == MLX5_TXCMP_CODE_EMPW);
4474         for (;;) {
4475                 /* Optimize for inline/no inline eMPW send. */
4476                 ret = (MLX5_TXOFF_CONFIG(INLINE)) ?
4477                         mlx5_tx_burst_empw_inline
4478                                 (txq, pkts, pkts_n, loc, olx) :
4479                         mlx5_tx_burst_empw_simple
4480                                 (txq, pkts, pkts_n, loc, olx);
4481                 if (ret != MLX5_TXCMP_CODE_SINGLE)
4482                         return ret;
4483                 /* The resources to send one packet should remain. */
4484                 assert(loc->elts_free && loc->wqe_free);
4485 ordinary_send:
4486                 ret = mlx5_tx_burst_single_send(txq, pkts, pkts_n, loc, olx);
4487                 assert(ret != MLX5_TXCMP_CODE_SINGLE);
4488                 if (ret != MLX5_TXCMP_CODE_EMPW)
4489                         return ret;
4490                 /* The resources to send one packet should remain. */
4491                 assert(loc->elts_free && loc->wqe_free);
4492         }
4493 }
4494
4495 /**
4496  * DPDK Tx callback template. This is configured template
4497  * used to generate routines optimized for specified offload setup.
4498  * One of this generated functions is chosen at SQ configuration
4499  * time.
4500  *
4501  * @param txq
4502  *   Generic pointer to TX queue structure.
4503  * @param[in] pkts
4504  *   Packets to transmit.
4505  * @param pkts_n
4506  *   Number of packets in array.
4507  * @param olx
4508  *   Configured offloads mask, presents the bits of MLX5_TXOFF_CONFIG_xxx
4509  *   values. Should be static to take compile time static configuration
4510  *   advantages.
4511  *
4512  * @return
4513  *   Number of packets successfully transmitted (<= pkts_n).
4514  */
4515 static __rte_always_inline uint16_t
4516 mlx5_tx_burst_tmpl(struct mlx5_txq_data *restrict txq,
4517                    struct rte_mbuf **restrict pkts,
4518                    uint16_t pkts_n,
4519                    unsigned int olx)
4520 {
4521         struct mlx5_txq_local loc;
4522         enum mlx5_txcmp_code ret;
4523         unsigned int part;
4524
4525         assert(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
4526         assert(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
4527         if (unlikely(!pkts_n))
4528                 return 0;
4529         loc.pkts_sent = 0;
4530         loc.pkts_copy = 0;
4531         loc.wqe_last = NULL;
4532
4533 send_loop:
4534         loc.pkts_loop = loc.pkts_sent;
4535         /*
4536          * Check if there are some CQEs, if any:
4537          * - process an encountered errors
4538          * - process the completed WQEs
4539          * - free related mbufs
4540          * - doorbell the NIC about processed CQEs
4541          */
4542         rte_prefetch0(*(pkts + loc.pkts_sent));
4543         mlx5_tx_handle_completion(txq, olx);
4544         /*
4545          * Calculate the number of available resources - elts and WQEs.
4546          * There are two possible different scenarios:
4547          * - no data inlining into WQEs, one WQEBB may contains upto
4548          *   four packets, in this case elts become scarce resource
4549          * - data inlining into WQEs, one packet may require multiple
4550          *   WQEBBs, the WQEs become the limiting factor.
4551          */
4552         assert(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
4553         loc.elts_free = txq->elts_s -
4554                                 (uint16_t)(txq->elts_head - txq->elts_tail);
4555         assert(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
4556         loc.wqe_free = txq->wqe_s -
4557                                 (uint16_t)(txq->wqe_ci - txq->wqe_pi);
4558         if (unlikely(!loc.elts_free || !loc.wqe_free))
4559                 return loc.pkts_sent;
4560         for (;;) {
4561                 /*
4562                  * Fetch the packet from array. Usually this is
4563                  * the first packet in series of multi/single
4564                  * segment packets.
4565                  */
4566                 loc.mbuf = *(pkts + loc.pkts_sent);
4567                 /* Dedicated branch for multi-segment packets. */
4568                 if (MLX5_TXOFF_CONFIG(MULTI) &&
4569                     unlikely(NB_SEGS(loc.mbuf) > 1)) {
4570                         /*
4571                          * Multi-segment packet encountered.
4572                          * Hardware is able to process it only
4573                          * with SEND/TSO opcodes, one packet
4574                          * per WQE, do it in dedicated routine.
4575                          */
4576 enter_send_multi:
4577                         assert(loc.pkts_sent >= loc.pkts_copy);
4578                         part = loc.pkts_sent - loc.pkts_copy;
4579                         if (!MLX5_TXOFF_CONFIG(INLINE) && part) {
4580                                 /*
4581                                  * There are some single-segment mbufs not
4582                                  * stored in elts. The mbufs must be in the
4583                                  * same order as WQEs, so we must copy the
4584                                  * mbufs to elts here, before the coming
4585                                  * multi-segment packet mbufs is appended.
4586                                  */
4587                                 mlx5_tx_copy_elts(txq, pkts + loc.pkts_copy,
4588                                                   part, olx);
4589                                 loc.pkts_copy = loc.pkts_sent;
4590                         }
4591                         assert(pkts_n > loc.pkts_sent);
4592                         ret = mlx5_tx_burst_mseg(txq, pkts, pkts_n, &loc, olx);
4593                         if (!MLX5_TXOFF_CONFIG(INLINE))
4594                                 loc.pkts_copy = loc.pkts_sent;
4595                         /*
4596                          * These returned code checks are supposed
4597                          * to be optimized out due to routine inlining.
4598                          */
4599                         if (ret == MLX5_TXCMP_CODE_EXIT) {
4600                                 /*
4601                                  * The routine returns this code when
4602                                  * all packets are sent or there is no
4603                                  * enough resources to complete request.
4604                                  */
4605                                 break;
4606                         }
4607                         if (ret == MLX5_TXCMP_CODE_ERROR) {
4608                                 /*
4609                                  * The routine returns this code when
4610                                  * some error in the incoming packets
4611                                  * format occurred.
4612                                  */
4613                                 txq->stats.oerrors++;
4614                                 break;
4615                         }
4616                         if (ret == MLX5_TXCMP_CODE_SINGLE) {
4617                                 /*
4618                                  * The single-segment packet was encountered
4619                                  * in the array, try to send it with the
4620                                  * best optimized way, possible engaging eMPW.
4621                                  */
4622                                 goto enter_send_single;
4623                         }
4624                         if (MLX5_TXOFF_CONFIG(TSO) &&
4625                             ret == MLX5_TXCMP_CODE_TSO) {
4626                                 /*
4627                                  * The single-segment TSO packet was
4628                                  * encountered in the array.
4629                                  */
4630                                 goto enter_send_tso;
4631                         }
4632                         /* We must not get here. Something is going wrong. */
4633                         assert(false);
4634                         txq->stats.oerrors++;
4635                         break;
4636                 }
4637                 /* Dedicated branch for single-segment TSO packets. */
4638                 if (MLX5_TXOFF_CONFIG(TSO) &&
4639                     unlikely(loc.mbuf->ol_flags & PKT_TX_TCP_SEG)) {
4640                         /*
4641                          * TSO might require special way for inlining
4642                          * (dedicated parameters) and is sent with
4643                          * MLX5_OPCODE_TSO opcode only, provide this
4644                          * in dedicated branch.
4645                          */
4646 enter_send_tso:
4647                         assert(NB_SEGS(loc.mbuf) == 1);
4648                         assert(pkts_n > loc.pkts_sent);
4649                         ret = mlx5_tx_burst_tso(txq, pkts, pkts_n, &loc, olx);
4650                         /*
4651                          * These returned code checks are supposed
4652                          * to be optimized out due to routine inlining.
4653                          */
4654                         if (ret == MLX5_TXCMP_CODE_EXIT)
4655                                 break;
4656                         if (ret == MLX5_TXCMP_CODE_ERROR) {
4657                                 txq->stats.oerrors++;
4658                                 break;
4659                         }
4660                         if (ret == MLX5_TXCMP_CODE_SINGLE)
4661                                 goto enter_send_single;
4662                         if (MLX5_TXOFF_CONFIG(MULTI) &&
4663                             ret == MLX5_TXCMP_CODE_MULTI) {
4664                                 /*
4665                                  * The multi-segment packet was
4666                                  * encountered in the array.
4667                                  */
4668                                 goto enter_send_multi;
4669                         }
4670                         /* We must not get here. Something is going wrong. */
4671                         assert(false);
4672                         txq->stats.oerrors++;
4673                         break;
4674                 }
4675                 /*
4676                  * The dedicated branch for the single-segment packets
4677                  * without TSO. Often these ones can be sent using
4678                  * MLX5_OPCODE_EMPW with multiple packets in one WQE.
4679                  * The routine builds the WQEs till it encounters
4680                  * the TSO or multi-segment packet (in case if these
4681                  * offloads are requested at SQ configuration time).
4682                  */
4683 enter_send_single:
4684                 assert(pkts_n > loc.pkts_sent);
4685                 ret = mlx5_tx_burst_single(txq, pkts, pkts_n, &loc, olx);
4686                 /*
4687                  * These returned code checks are supposed
4688                  * to be optimized out due to routine inlining.
4689                  */
4690                 if (ret == MLX5_TXCMP_CODE_EXIT)
4691                         break;
4692                 if (ret == MLX5_TXCMP_CODE_ERROR) {
4693                         txq->stats.oerrors++;
4694                         break;
4695                 }
4696                 if (MLX5_TXOFF_CONFIG(MULTI) &&
4697                     ret == MLX5_TXCMP_CODE_MULTI) {
4698                         /*
4699                          * The multi-segment packet was
4700                          * encountered in the array.
4701                          */
4702                         goto enter_send_multi;
4703                 }
4704                 if (MLX5_TXOFF_CONFIG(TSO) &&
4705                     ret == MLX5_TXCMP_CODE_TSO) {
4706                         /*
4707                          * The single-segment TSO packet was
4708                          * encountered in the array.
4709                          */
4710                         goto enter_send_tso;
4711                 }
4712                 /* We must not get here. Something is going wrong. */
4713                 assert(false);
4714                 txq->stats.oerrors++;
4715                 break;
4716         }
4717         /*
4718          * Main Tx loop is completed, do the rest:
4719          * - set completion request if thresholds are reached
4720          * - doorbell the hardware
4721          * - copy the rest of mbufs to elts (if any)
4722          */
4723         assert(MLX5_TXOFF_CONFIG(INLINE) || loc.pkts_sent >= loc.pkts_copy);
4724         /* Take a shortcut if nothing is sent. */
4725         if (unlikely(loc.pkts_sent == loc.pkts_loop))
4726                 return loc.pkts_sent;
4727         /*
4728          * Ring QP doorbell immediately after WQE building completion
4729          * to improve latencies. The pure software related data treatment
4730          * can be completed after doorbell. Tx CQEs for this SQ are
4731          * processed in this thread only by the polling.
4732          */
4733         mlx5_tx_dbrec_cond_wmb(txq, loc.wqe_last, 0);
4734         /* Not all of the mbufs may be stored into elts yet. */
4735         part = MLX5_TXOFF_CONFIG(INLINE) ? 0 : loc.pkts_sent - loc.pkts_copy;
4736         if (!MLX5_TXOFF_CONFIG(INLINE) && part) {
4737                 /*
4738                  * There are some single-segment mbufs not stored in elts.
4739                  * It can be only if the last packet was single-segment.
4740                  * The copying is gathered into one place due to it is
4741                  * a good opportunity to optimize that with SIMD.
4742                  * Unfortunately if inlining is enabled the gaps in
4743                  * pointer array may happen due to early freeing of the
4744                  * inlined mbufs.
4745                  */
4746                 mlx5_tx_copy_elts(txq, pkts + loc.pkts_copy, part, olx);
4747                 loc.pkts_copy = loc.pkts_sent;
4748         }
4749 #ifdef MLX5_PMD_SOFT_COUNTERS
4750         /* Increment sent packets counter. */
4751         txq->stats.opackets += loc.pkts_sent;
4752 #endif
4753         assert(txq->elts_s >= (uint16_t)(txq->elts_head - txq->elts_tail));
4754         assert(txq->wqe_s >= (uint16_t)(txq->wqe_ci - txq->wqe_pi));
4755         if (pkts_n > loc.pkts_sent) {
4756                 /*
4757                  * If burst size is large there might be no enough CQE
4758                  * fetched from completion queue and no enough resources
4759                  * freed to send all the packets.
4760                  */
4761                 goto send_loop;
4762         }
4763         return loc.pkts_sent;
4764 }
4765
4766 /* Generate routines with Enhanced Multi-Packet Write support. */
4767 MLX5_TXOFF_DECL(full_empw,
4768                 MLX5_TXOFF_CONFIG_FULL | MLX5_TXOFF_CONFIG_EMPW)
4769
4770 MLX5_TXOFF_DECL(none_empw,
4771                 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW)
4772
4773 MLX5_TXOFF_DECL(md_empw,
4774                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4775
4776 MLX5_TXOFF_DECL(mt_empw,
4777                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4778                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4779
4780 MLX5_TXOFF_DECL(mtsc_empw,
4781                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4782                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4783                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4784
4785 MLX5_TXOFF_DECL(mti_empw,
4786                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4787                 MLX5_TXOFF_CONFIG_INLINE |
4788                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4789
4790 MLX5_TXOFF_DECL(mtv_empw,
4791                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4792                 MLX5_TXOFF_CONFIG_VLAN |
4793                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4794
4795 MLX5_TXOFF_DECL(mtiv_empw,
4796                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4797                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4798                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4799
4800 MLX5_TXOFF_DECL(sc_empw,
4801                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4802                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4803
4804 MLX5_TXOFF_DECL(sci_empw,
4805                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4806                 MLX5_TXOFF_CONFIG_INLINE |
4807                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4808
4809 MLX5_TXOFF_DECL(scv_empw,
4810                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4811                 MLX5_TXOFF_CONFIG_VLAN |
4812                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4813
4814 MLX5_TXOFF_DECL(sciv_empw,
4815                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4816                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4817                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4818
4819 MLX5_TXOFF_DECL(i_empw,
4820                 MLX5_TXOFF_CONFIG_INLINE |
4821                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4822
4823 MLX5_TXOFF_DECL(v_empw,
4824                 MLX5_TXOFF_CONFIG_VLAN |
4825                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4826
4827 MLX5_TXOFF_DECL(iv_empw,
4828                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4829                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4830
4831 /* Generate routines without Enhanced Multi-Packet Write support. */
4832 MLX5_TXOFF_DECL(full,
4833                 MLX5_TXOFF_CONFIG_FULL)
4834
4835 MLX5_TXOFF_DECL(none,
4836                 MLX5_TXOFF_CONFIG_NONE)
4837
4838 MLX5_TXOFF_DECL(md,
4839                 MLX5_TXOFF_CONFIG_METADATA)
4840
4841 MLX5_TXOFF_DECL(mt,
4842                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4843                 MLX5_TXOFF_CONFIG_METADATA)
4844
4845 MLX5_TXOFF_DECL(mtsc,
4846                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4847                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4848                 MLX5_TXOFF_CONFIG_METADATA)
4849
4850 MLX5_TXOFF_DECL(mti,
4851                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4852                 MLX5_TXOFF_CONFIG_INLINE |
4853                 MLX5_TXOFF_CONFIG_METADATA)
4854
4855
4856 MLX5_TXOFF_DECL(mtv,
4857                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4858                 MLX5_TXOFF_CONFIG_VLAN |
4859                 MLX5_TXOFF_CONFIG_METADATA)
4860
4861
4862 MLX5_TXOFF_DECL(mtiv,
4863                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4864                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4865                 MLX5_TXOFF_CONFIG_METADATA)
4866
4867 MLX5_TXOFF_DECL(sc,
4868                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4869                 MLX5_TXOFF_CONFIG_METADATA)
4870
4871 MLX5_TXOFF_DECL(sci,
4872                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4873                 MLX5_TXOFF_CONFIG_INLINE |
4874                 MLX5_TXOFF_CONFIG_METADATA)
4875
4876
4877 MLX5_TXOFF_DECL(scv,
4878                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4879                 MLX5_TXOFF_CONFIG_VLAN |
4880                 MLX5_TXOFF_CONFIG_METADATA)
4881
4882
4883 MLX5_TXOFF_DECL(sciv,
4884                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4885                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4886                 MLX5_TXOFF_CONFIG_METADATA)
4887
4888 MLX5_TXOFF_DECL(i,
4889                 MLX5_TXOFF_CONFIG_INLINE |
4890                 MLX5_TXOFF_CONFIG_METADATA)
4891
4892 MLX5_TXOFF_DECL(v,
4893                 MLX5_TXOFF_CONFIG_VLAN |
4894                 MLX5_TXOFF_CONFIG_METADATA)
4895
4896 MLX5_TXOFF_DECL(iv,
4897                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4898                 MLX5_TXOFF_CONFIG_METADATA)
4899
4900 /*
4901  * Array of declared and compiled Tx burst function and corresponding
4902  * supported offloads set. The array is used to select the Tx burst
4903  * function for specified offloads set at Tx queue configuration time.
4904  */
4905 const struct {
4906         eth_tx_burst_t func;
4907         unsigned int olx;
4908 } txoff_func[] = {
4909 MLX5_TXOFF_INFO(full_empw,
4910                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4911                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4912                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4913                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4914
4915 MLX5_TXOFF_INFO(none_empw,
4916                 MLX5_TXOFF_CONFIG_NONE | MLX5_TXOFF_CONFIG_EMPW)
4917
4918 MLX5_TXOFF_INFO(md_empw,
4919                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4920
4921 MLX5_TXOFF_INFO(mt_empw,
4922                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4923                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4924
4925 MLX5_TXOFF_INFO(mtsc_empw,
4926                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4927                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4928                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4929
4930 MLX5_TXOFF_INFO(mti_empw,
4931                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4932                 MLX5_TXOFF_CONFIG_INLINE |
4933                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4934
4935 MLX5_TXOFF_INFO(mtv_empw,
4936                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4937                 MLX5_TXOFF_CONFIG_VLAN |
4938                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4939
4940 MLX5_TXOFF_INFO(mtiv_empw,
4941                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4942                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4943                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4944
4945 MLX5_TXOFF_INFO(sc_empw,
4946                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4947                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4948
4949 MLX5_TXOFF_INFO(sci_empw,
4950                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4951                 MLX5_TXOFF_CONFIG_INLINE |
4952                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4953
4954 MLX5_TXOFF_INFO(scv_empw,
4955                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4956                 MLX5_TXOFF_CONFIG_VLAN |
4957                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4958
4959 MLX5_TXOFF_INFO(sciv_empw,
4960                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4961                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4962                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4963
4964 MLX5_TXOFF_INFO(i_empw,
4965                 MLX5_TXOFF_CONFIG_INLINE |
4966                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4967
4968 MLX5_TXOFF_INFO(v_empw,
4969                 MLX5_TXOFF_CONFIG_VLAN |
4970                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4971
4972 MLX5_TXOFF_INFO(iv_empw,
4973                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4974                 MLX5_TXOFF_CONFIG_METADATA | MLX5_TXOFF_CONFIG_EMPW)
4975
4976 MLX5_TXOFF_INFO(full,
4977                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4978                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4979                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
4980                 MLX5_TXOFF_CONFIG_METADATA)
4981
4982 MLX5_TXOFF_INFO(none,
4983                 MLX5_TXOFF_CONFIG_NONE)
4984
4985 MLX5_TXOFF_INFO(md,
4986                 MLX5_TXOFF_CONFIG_METADATA)
4987
4988 MLX5_TXOFF_INFO(mt,
4989                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4990                 MLX5_TXOFF_CONFIG_METADATA)
4991
4992 MLX5_TXOFF_INFO(mtsc,
4993                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4994                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
4995                 MLX5_TXOFF_CONFIG_METADATA)
4996
4997 MLX5_TXOFF_INFO(mti,
4998                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
4999                 MLX5_TXOFF_CONFIG_INLINE |
5000                 MLX5_TXOFF_CONFIG_METADATA)
5001
5002
5003 MLX5_TXOFF_INFO(mtv,
5004                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5005                 MLX5_TXOFF_CONFIG_VLAN |
5006                 MLX5_TXOFF_CONFIG_METADATA)
5007
5008 MLX5_TXOFF_INFO(mtiv,
5009                 MLX5_TXOFF_CONFIG_MULTI | MLX5_TXOFF_CONFIG_TSO |
5010                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5011                 MLX5_TXOFF_CONFIG_METADATA)
5012
5013 MLX5_TXOFF_INFO(sc,
5014                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5015                 MLX5_TXOFF_CONFIG_METADATA)
5016
5017 MLX5_TXOFF_INFO(sci,
5018                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5019                 MLX5_TXOFF_CONFIG_INLINE |
5020                 MLX5_TXOFF_CONFIG_METADATA)
5021
5022 MLX5_TXOFF_INFO(scv,
5023                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5024                 MLX5_TXOFF_CONFIG_VLAN |
5025                 MLX5_TXOFF_CONFIG_METADATA)
5026
5027 MLX5_TXOFF_INFO(sciv,
5028                 MLX5_TXOFF_CONFIG_SWP | MLX5_TXOFF_CONFIG_CSUM |
5029                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5030                 MLX5_TXOFF_CONFIG_METADATA)
5031
5032 MLX5_TXOFF_INFO(i,
5033                 MLX5_TXOFF_CONFIG_INLINE |
5034                 MLX5_TXOFF_CONFIG_METADATA)
5035
5036 MLX5_TXOFF_INFO(v,
5037                 MLX5_TXOFF_CONFIG_VLAN |
5038                 MLX5_TXOFF_CONFIG_METADATA)
5039
5040 MLX5_TXOFF_INFO(iv,
5041                 MLX5_TXOFF_CONFIG_INLINE | MLX5_TXOFF_CONFIG_VLAN |
5042                 MLX5_TXOFF_CONFIG_METADATA)
5043 };
5044
5045 /**
5046  * Configure the Tx function to use. The routine checks configured
5047  * Tx offloads for the device and selects appropriate Tx burst
5048  * routine. There are multiple Tx burst routines compiled from
5049  * the same template in the most optimal way for the dedicated
5050  * Tx offloads set.
5051  *
5052  * @param dev
5053  *   Pointer to private data structure.
5054  *
5055  * @return
5056  *   Pointer to selected Tx burst function.
5057  */
5058 eth_tx_burst_t
5059 mlx5_select_tx_function(struct rte_eth_dev *dev)
5060 {
5061         struct mlx5_priv *priv = dev->data->dev_private;
5062         struct mlx5_dev_config *config = &priv->config;
5063         uint64_t tx_offloads = dev->data->dev_conf.txmode.offloads;
5064         unsigned int diff = 0, olx = 0, i, m;
5065
5066         static_assert(MLX5_WQE_SIZE_MAX / MLX5_WSEG_SIZE <=
5067                       MLX5_DSEG_MAX, "invalid WQE max size");
5068         static_assert(MLX5_WQE_CSEG_SIZE == MLX5_WSEG_SIZE,
5069                       "invalid WQE Control Segment size");
5070         static_assert(MLX5_WQE_ESEG_SIZE == MLX5_WSEG_SIZE,
5071                       "invalid WQE Ethernet Segment size");
5072         static_assert(MLX5_WQE_DSEG_SIZE == MLX5_WSEG_SIZE,
5073                       "invalid WQE Data Segment size");
5074         static_assert(MLX5_WQE_SIZE == 4 * MLX5_WSEG_SIZE,
5075                       "invalid WQE size");
5076         assert(priv);
5077         if (tx_offloads & DEV_TX_OFFLOAD_MULTI_SEGS) {
5078                 /* We should support Multi-Segment Packets. */
5079                 olx |= MLX5_TXOFF_CONFIG_MULTI;
5080         }
5081         if (tx_offloads & (DEV_TX_OFFLOAD_TCP_TSO |
5082                            DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
5083                            DEV_TX_OFFLOAD_GRE_TNL_TSO |
5084                            DEV_TX_OFFLOAD_IP_TNL_TSO |
5085                            DEV_TX_OFFLOAD_UDP_TNL_TSO)) {
5086                 /* We should support TCP Send Offload. */
5087                 olx |= MLX5_TXOFF_CONFIG_TSO;
5088         }
5089         if (tx_offloads & (DEV_TX_OFFLOAD_IP_TNL_TSO |
5090                            DEV_TX_OFFLOAD_UDP_TNL_TSO |
5091                            DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
5092                 /* We should support Software Parser for Tunnels. */
5093                 olx |= MLX5_TXOFF_CONFIG_SWP;
5094         }
5095         if (tx_offloads & (DEV_TX_OFFLOAD_IPV4_CKSUM |
5096                            DEV_TX_OFFLOAD_UDP_CKSUM |
5097                            DEV_TX_OFFLOAD_TCP_CKSUM |
5098                            DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
5099                 /* We should support IP/TCP/UDP Checksums. */
5100                 olx |= MLX5_TXOFF_CONFIG_CSUM;
5101         }
5102         if (tx_offloads & DEV_TX_OFFLOAD_VLAN_INSERT) {
5103                 /* We should support VLAN insertion. */
5104                 olx |= MLX5_TXOFF_CONFIG_VLAN;
5105         }
5106         if (priv->txqs_n && (*priv->txqs)[0]) {
5107                 struct mlx5_txq_data *txd = (*priv->txqs)[0];
5108
5109                 if (txd->inlen_send) {
5110                         /*
5111                          * Check the data inline requirements. Data inline
5112                          * is enabled on per device basis, we can check
5113                          * the first Tx queue only.
5114                          *
5115                          * If device does not support VLAN insertion in WQE
5116                          * and some queues are requested to perform VLAN
5117                          * insertion offload than inline must be enabled.
5118                          */
5119                         olx |= MLX5_TXOFF_CONFIG_INLINE;
5120                 }
5121         }
5122         if (config->mps == MLX5_MPW_ENHANCED &&
5123             config->txq_inline_min <= 0) {
5124                 /*
5125                  * The NIC supports Enhanced Multi-Packet Write.
5126                  * We do not support legacy MPW due to its
5127                  * hardware related problems, so we just ignore
5128                  * legacy MLX5_MPW settings. There should be no
5129                  * minimal required inline data.
5130                  */
5131                 olx |= MLX5_TXOFF_CONFIG_EMPW;
5132         }
5133         if (tx_offloads & DEV_TX_OFFLOAD_MATCH_METADATA) {
5134                 /* We should support Flow metadata. */
5135                 olx |= MLX5_TXOFF_CONFIG_METADATA;
5136         }
5137         /*
5138          * Scan the routines table to find the minimal
5139          * satisfying routine with requested offloads.
5140          */
5141         m = RTE_DIM(txoff_func);
5142         for (i = 0; i < RTE_DIM(txoff_func); i++) {
5143                 unsigned int tmp;
5144
5145                 tmp = txoff_func[i].olx;
5146                 if (tmp == olx) {
5147                         /* Meets requested offloads exactly.*/
5148                         m = i;
5149                         break;
5150                 }
5151                 if ((tmp & olx) != olx) {
5152                         /* Does not meet requested offloads at all. */
5153                         continue;
5154                 }
5155                 if ((olx ^ tmp) & MLX5_TXOFF_CONFIG_EMPW)
5156                         /* Do not enable eMPW if not configured. */
5157                         continue;
5158                 if ((olx ^ tmp) & MLX5_TXOFF_CONFIG_INLINE)
5159                         /* Do not enable inlining if not configured. */
5160                         continue;
5161                 /*
5162                  * Some routine meets the requirements.
5163                  * Check whether it has minimal amount
5164                  * of not requested offloads.
5165                  */
5166                 tmp = __builtin_popcountl(tmp & ~olx);
5167                 if (m >= RTE_DIM(txoff_func) || tmp < diff) {
5168                         /* First or better match, save and continue. */
5169                         m = i;
5170                         diff = tmp;
5171                         continue;
5172                 }
5173                 if (tmp == diff) {
5174                         tmp = txoff_func[i].olx ^ txoff_func[m].olx;
5175                         if (__builtin_ffsl(txoff_func[i].olx & ~tmp) <
5176                             __builtin_ffsl(txoff_func[m].olx & ~tmp)) {
5177                                 /* Lighter not requested offload. */
5178                                 m = i;
5179                         }
5180                 }
5181         }
5182         if (m >= RTE_DIM(txoff_func)) {
5183                 DRV_LOG(DEBUG, "port %u has no selected Tx function"
5184                                " for requested offloads %04X",
5185                                 dev->data->port_id, olx);
5186                 return NULL;
5187         }
5188         DRV_LOG(DEBUG, "port %u has selected Tx function"
5189                        " supporting offloads %04X/%04X",
5190                         dev->data->port_id, olx, txoff_func[m].olx);
5191         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_MULTI)
5192                 DRV_LOG(DEBUG, "\tMULTI (multi segment)");
5193         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_TSO)
5194                 DRV_LOG(DEBUG, "\tTSO   (TCP send offload)");
5195         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_SWP)
5196                 DRV_LOG(DEBUG, "\tSWP   (software parser)");
5197         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_CSUM)
5198                 DRV_LOG(DEBUG, "\tCSUM  (checksum offload)");
5199         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_INLINE)
5200                 DRV_LOG(DEBUG, "\tINLIN (inline data)");
5201         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_VLAN)
5202                 DRV_LOG(DEBUG, "\tVLANI (VLAN insertion)");
5203         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_METADATA)
5204                 DRV_LOG(DEBUG, "\tMETAD (tx Flow metadata)");
5205         if (txoff_func[m].olx & MLX5_TXOFF_CONFIG_EMPW)
5206                 DRV_LOG(DEBUG, "\tEMPW  (Enhanced MPW)");
5207         return txoff_func[m].func;
5208 }