net/mlx5: prefix all functions with mlx5
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox.
4  */
5
6 #ifndef RTE_PMD_MLX5_RXTX_H_
7 #define RTE_PMD_MLX5_RXTX_H_
8
9 #include <stddef.h>
10 #include <stdint.h>
11 #include <sys/queue.h>
12
13 /* Verbs header. */
14 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
15 #ifdef PEDANTIC
16 #pragma GCC diagnostic ignored "-Wpedantic"
17 #endif
18 #include <infiniband/verbs.h>
19 #include <infiniband/mlx5dv.h>
20 #ifdef PEDANTIC
21 #pragma GCC diagnostic error "-Wpedantic"
22 #endif
23
24 #include <rte_mbuf.h>
25 #include <rte_mempool.h>
26 #include <rte_common.h>
27 #include <rte_hexdump.h>
28 #include <rte_atomic.h>
29
30 #include "mlx5_utils.h"
31 #include "mlx5.h"
32 #include "mlx5_autoconf.h"
33 #include "mlx5_defs.h"
34 #include "mlx5_prm.h"
35
36 struct mlx5_rxq_stats {
37         unsigned int idx; /**< Mapping index. */
38 #ifdef MLX5_PMD_SOFT_COUNTERS
39         uint64_t ipackets; /**< Total of successfully received packets. */
40         uint64_t ibytes; /**< Total of successfully received bytes. */
41 #endif
42         uint64_t idropped; /**< Total of packets dropped when RX ring full. */
43         uint64_t rx_nombuf; /**< Total of RX mbuf allocation failures. */
44 };
45
46 struct mlx5_txq_stats {
47         unsigned int idx; /**< Mapping index. */
48 #ifdef MLX5_PMD_SOFT_COUNTERS
49         uint64_t opackets; /**< Total of successfully sent packets. */
50         uint64_t obytes; /**< Total of successfully sent bytes. */
51 #endif
52         uint64_t oerrors; /**< Total number of failed transmitted packets. */
53 };
54
55 struct priv;
56
57 /* Memory region queue object. */
58 struct mlx5_mr {
59         LIST_ENTRY(mlx5_mr) next; /**< Pointer to the next element. */
60         rte_atomic32_t refcnt; /*<< Reference counter. */
61         uint32_t lkey; /*<< rte_cpu_to_be_32(mr->lkey) */
62         uintptr_t start; /* Start address of MR */
63         uintptr_t end; /* End address of MR */
64         struct ibv_mr *mr; /*<< Memory Region. */
65         struct rte_mempool *mp; /*<< Memory Pool. */
66 };
67
68 /* Compressed CQE context. */
69 struct rxq_zip {
70         uint16_t ai; /* Array index. */
71         uint16_t ca; /* Current array index. */
72         uint16_t na; /* Next array index. */
73         uint16_t cq_ci; /* The next CQE. */
74         uint32_t cqe_cnt; /* Number of CQEs. */
75 };
76
77 /* RX queue descriptor. */
78 struct mlx5_rxq_data {
79         unsigned int csum:1; /* Enable checksum offloading. */
80         unsigned int csum_l2tun:1; /* Same for L2 tunnels. */
81         unsigned int hw_timestamp:1; /* Enable HW timestamp. */
82         unsigned int vlan_strip:1; /* Enable VLAN stripping. */
83         unsigned int crc_present:1; /* CRC must be subtracted. */
84         unsigned int sges_n:2; /* Log 2 of SGEs (max buffers per packet). */
85         unsigned int cqe_n:4; /* Log 2 of CQ elements. */
86         unsigned int elts_n:4; /* Log 2 of Mbufs. */
87         unsigned int rss_hash:1; /* RSS hash result is enabled. */
88         unsigned int mark:1; /* Marked flow available on the queue. */
89         unsigned int :15; /* Remaining bits. */
90         volatile uint32_t *rq_db;
91         volatile uint32_t *cq_db;
92         uint16_t port_id;
93         uint16_t rq_ci;
94         uint16_t rq_pi;
95         uint16_t cq_ci;
96         volatile struct mlx5_wqe_data_seg(*wqes)[];
97         volatile struct mlx5_cqe(*cqes)[];
98         struct rxq_zip zip; /* Compressed context. */
99         struct rte_mbuf *(*elts)[];
100         struct rte_mempool *mp;
101         struct mlx5_rxq_stats stats;
102         uint64_t mbuf_initializer; /* Default rearm_data for vectorized Rx. */
103         struct rte_mbuf fake_mbuf; /* elts padding for vectorized Rx. */
104         void *cq_uar; /* CQ user access region. */
105         uint32_t cqn; /* CQ number. */
106         uint8_t cq_arm_sn; /* CQ arm seq number. */
107 } __rte_cache_aligned;
108
109 /* Verbs Rx queue elements. */
110 struct mlx5_rxq_ibv {
111         LIST_ENTRY(mlx5_rxq_ibv) next; /* Pointer to the next element. */
112         rte_atomic32_t refcnt; /* Reference counter. */
113         struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
114         struct ibv_cq *cq; /* Completion Queue. */
115         struct ibv_wq *wq; /* Work Queue. */
116         struct ibv_comp_channel *channel;
117         struct mlx5_mr *mr; /* Memory Region (for mp). */
118 };
119
120 /* RX queue control descriptor. */
121 struct mlx5_rxq_ctrl {
122         LIST_ENTRY(mlx5_rxq_ctrl) next; /* Pointer to the next element. */
123         rte_atomic32_t refcnt; /* Reference counter. */
124         struct priv *priv; /* Back pointer to private data. */
125         struct mlx5_rxq_ibv *ibv; /* Verbs elements. */
126         struct mlx5_rxq_data rxq; /* Data path structure. */
127         unsigned int socket; /* CPU socket ID for allocations. */
128         unsigned int irq:1; /* Whether IRQ is enabled. */
129 };
130
131 /* Indirection table. */
132 struct mlx5_ind_table_ibv {
133         LIST_ENTRY(mlx5_ind_table_ibv) next; /* Pointer to the next element. */
134         rte_atomic32_t refcnt; /* Reference counter. */
135         struct ibv_rwq_ind_table *ind_table; /**< Indirection table. */
136         uint16_t queues_n; /**< Number of queues in the list. */
137         uint16_t queues[]; /**< Queue list. */
138 };
139
140 /* Hash Rx queue. */
141 struct mlx5_hrxq {
142         LIST_ENTRY(mlx5_hrxq) next; /* Pointer to the next element. */
143         rte_atomic32_t refcnt; /* Reference counter. */
144         struct mlx5_ind_table_ibv *ind_table; /* Indirection table. */
145         struct ibv_qp *qp; /* Verbs queue pair. */
146         uint64_t hash_fields; /* Verbs Hash fields. */
147         uint8_t rss_key_len; /* Hash key length in bytes. */
148         uint8_t rss_key[]; /* Hash key. */
149 };
150
151 /* TX queue descriptor. */
152 __extension__
153 struct mlx5_txq_data {
154         uint16_t elts_head; /* Current counter in (*elts)[]. */
155         uint16_t elts_tail; /* Counter of first element awaiting completion. */
156         uint16_t elts_comp; /* Counter since last completion request. */
157         uint16_t mpw_comp; /* WQ index since last completion request. */
158         uint16_t cq_ci; /* Consumer index for completion queue. */
159 #ifndef NDEBUG
160         uint16_t cq_pi; /* Producer index for completion queue. */
161 #endif
162         uint16_t wqe_ci; /* Consumer index for work queue. */
163         uint16_t wqe_pi; /* Producer index for work queue. */
164         uint16_t elts_n:4; /* (*elts)[] length (in log2). */
165         uint16_t cqe_n:4; /* Number of CQ elements (in log2). */
166         uint16_t wqe_n:4; /* Number of of WQ elements (in log2). */
167         uint16_t tso_en:1; /* When set hardware TSO is enabled. */
168         uint16_t tunnel_en:1;
169         /* When set TX offload for tunneled packets are supported. */
170         uint16_t mpw_hdr_dseg:1; /* Enable DSEGs in the title WQEBB. */
171         uint16_t max_inline; /* Multiple of RTE_CACHE_LINE_SIZE to inline. */
172         uint16_t inline_max_packet_sz; /* Max packet size for inlining. */
173         uint16_t mr_cache_idx; /* Index of last hit entry. */
174         uint32_t qp_num_8s; /* QP number shifted by 8. */
175         uint64_t offloads; /* Offloads for Tx Queue. */
176         volatile struct mlx5_cqe (*cqes)[]; /* Completion queue. */
177         volatile void *wqes; /* Work queue (use volatile to write into). */
178         volatile uint32_t *qp_db; /* Work queue doorbell. */
179         volatile uint32_t *cq_db; /* Completion queue doorbell. */
180         volatile void *bf_reg; /* Blueflame register remapped. */
181         struct mlx5_mr *mp2mr[MLX5_PMD_TX_MP_CACHE]; /* MR translation table. */
182         struct rte_mbuf *(*elts)[]; /* TX elements. */
183         struct mlx5_txq_stats stats; /* TX queue counters. */
184 } __rte_cache_aligned;
185
186 /* Verbs Rx queue elements. */
187 struct mlx5_txq_ibv {
188         LIST_ENTRY(mlx5_txq_ibv) next; /* Pointer to the next element. */
189         rte_atomic32_t refcnt; /* Reference counter. */
190         struct ibv_cq *cq; /* Completion Queue. */
191         struct ibv_qp *qp; /* Queue Pair. */
192 };
193
194 /* TX queue control descriptor. */
195 struct mlx5_txq_ctrl {
196         LIST_ENTRY(mlx5_txq_ctrl) next; /* Pointer to the next element. */
197         rte_atomic32_t refcnt; /* Reference counter. */
198         struct priv *priv; /* Back pointer to private data. */
199         unsigned int socket; /* CPU socket ID for allocations. */
200         unsigned int max_inline_data; /* Max inline data. */
201         unsigned int max_tso_header; /* Max TSO header size. */
202         struct mlx5_txq_ibv *ibv; /* Verbs queue object. */
203         struct mlx5_txq_data txq; /* Data path structure. */
204         off_t uar_mmap_offset; /* UAR mmap offset for non-primary process. */
205         volatile void *bf_reg_orig; /* Blueflame register from verbs. */
206 };
207
208 /* mlx5_rxq.c */
209
210 extern uint8_t rss_hash_default_key[];
211 extern const size_t rss_hash_default_key_len;
212
213 void mlx5_rxq_cleanup(struct mlx5_rxq_ctrl *rxq_ctrl);
214 int mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
215                         unsigned int socket, const struct rte_eth_rxconf *conf,
216                         struct rte_mempool *mp);
217 void mlx5_rx_queue_release(void *dpdk_rxq);
218 int mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev);
219 void mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev);
220 int mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
221 int mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
222 struct mlx5_rxq_ibv *mlx5_rxq_ibv_new(struct rte_eth_dev *dev, uint16_t idx);
223 struct mlx5_rxq_ibv *mlx5_rxq_ibv_get(struct rte_eth_dev *dev, uint16_t idx);
224 int mlx5_rxq_ibv_release(struct mlx5_rxq_ibv *rxq_ibv);
225 int mlx5_rxq_ibv_releasable(struct mlx5_rxq_ibv *rxq_ibv);
226 int mlx5_rxq_ibv_verify(struct rte_eth_dev *dev);
227 struct mlx5_rxq_ctrl *mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx,
228                                    uint16_t desc, unsigned int socket,
229                                    const struct rte_eth_rxconf *conf,
230                                    struct rte_mempool *mp);
231 struct mlx5_rxq_ctrl *mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx);
232 int mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx);
233 int mlx5_rxq_releasable(struct rte_eth_dev *dev, uint16_t idx);
234 int mlx5_rxq_verify(struct rte_eth_dev *dev);
235 int rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl);
236 struct mlx5_ind_table_ibv *mlx5_ind_table_ibv_new(struct rte_eth_dev *dev,
237                                                   uint16_t queues[],
238                                                   uint16_t queues_n);
239 struct mlx5_ind_table_ibv *mlx5_ind_table_ibv_get(struct rte_eth_dev *dev,
240                                                   uint16_t queues[],
241                                                   uint16_t queues_n);
242 int mlx5_ind_table_ibv_release(struct rte_eth_dev *dev,
243                                struct mlx5_ind_table_ibv *ind_tbl);
244 int mlx5_ind_table_ibv_verify(struct rte_eth_dev *dev);
245 struct mlx5_hrxq *mlx5_hrxq_new(struct rte_eth_dev *dev, uint8_t *rss_key,
246                                 uint8_t rss_key_len, uint64_t hash_fields,
247                                 uint16_t queues[], uint16_t queues_n);
248 struct mlx5_hrxq *mlx5_hrxq_get(struct rte_eth_dev *dev, uint8_t *rss_key,
249                                 uint8_t rss_key_len, uint64_t hash_fields,
250                                 uint16_t queues[], uint16_t queues_n);
251 int mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hxrq);
252 int mlx5_hrxq_ibv_verify(struct rte_eth_dev *dev);
253 uint64_t mlx5_get_rx_port_offloads(void);
254 uint64_t mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev);
255
256 /* mlx5_txq.c */
257
258 int mlx5_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
259                         unsigned int socket, const struct rte_eth_txconf *conf);
260 void mlx5_tx_queue_release(void *dpdk_txq);
261 int mlx5_tx_uar_remap(struct rte_eth_dev *dev, int fd);
262 struct mlx5_txq_ibv *mlx5_txq_ibv_new(struct rte_eth_dev *dev, uint16_t idx);
263 struct mlx5_txq_ibv *mlx5_txq_ibv_get(struct rte_eth_dev *dev, uint16_t idx);
264 int mlx5_txq_ibv_release(struct mlx5_txq_ibv *txq_ibv);
265 int mlx5_txq_ibv_releasable(struct mlx5_txq_ibv *txq_ibv);
266 int mlx5_txq_ibv_verify(struct rte_eth_dev *dev);
267 struct mlx5_txq_ctrl *mlx5_txq_new(struct rte_eth_dev *dev, uint16_t idx,
268                                    uint16_t desc, unsigned int socket,
269                                    const struct rte_eth_txconf *conf);
270 struct mlx5_txq_ctrl *mlx5_txq_get(struct rte_eth_dev *dev, uint16_t idx);
271 int mlx5_txq_release(struct rte_eth_dev *dev, uint16_t idx);
272 int mlx5_txq_releasable(struct rte_eth_dev *dev, uint16_t idx);
273 int mlx5_txq_verify(struct rte_eth_dev *dev);
274 void txq_alloc_elts(struct mlx5_txq_ctrl *txq_ctrl);
275 uint64_t mlx5_get_tx_port_offloads(struct rte_eth_dev *dev);
276
277 /* mlx5_rxtx.c */
278
279 extern uint32_t mlx5_ptype_table[];
280
281 void mlx5_set_ptype_table(void);
282 uint16_t mlx5_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts,
283                        uint16_t pkts_n);
284 uint16_t mlx5_tx_burst_mpw(void *dpdk_txq, struct rte_mbuf **pkts,
285                            uint16_t pkts_n);
286 uint16_t mlx5_tx_burst_mpw_inline(void *dpdk_txq, struct rte_mbuf **pkts,
287                                   uint16_t pkts_n);
288 uint16_t mlx5_tx_burst_empw(void *dpdk_txq, struct rte_mbuf **pkts,
289                             uint16_t pkts_n);
290 uint16_t mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n);
291 uint16_t removed_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts,
292                           uint16_t pkts_n);
293 uint16_t removed_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts,
294                           uint16_t pkts_n);
295 int mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset);
296 int mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset);
297
298 /* Vectorized version of mlx5_rxtx.c */
299 int mlx5_check_raw_vec_tx_support(struct rte_eth_dev *dev);
300 int mlx5_check_vec_tx_support(struct rte_eth_dev *dev);
301 int mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq_data);
302 int mlx5_check_vec_rx_support(struct rte_eth_dev *dev);
303 uint16_t mlx5_tx_burst_raw_vec(void *dpdk_txq, struct rte_mbuf **pkts,
304                                uint16_t pkts_n);
305 uint16_t mlx5_tx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts,
306                            uint16_t pkts_n);
307 uint16_t mlx5_rx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts,
308                            uint16_t pkts_n);
309
310 /* mlx5_mr.c */
311
312 void mlx5_mp2mr_iter(struct rte_mempool *mp, void *arg);
313 struct mlx5_mr *mlx5_txq_mp2mr_reg(struct mlx5_txq_data *txq,
314                                    struct rte_mempool *mp, unsigned int idx);
315
316 #ifndef NDEBUG
317 /**
318  * Verify or set magic value in CQE.
319  *
320  * @param cqe
321  *   Pointer to CQE.
322  *
323  * @return
324  *   0 the first time.
325  */
326 static inline int
327 check_cqe_seen(volatile struct mlx5_cqe *cqe)
328 {
329         static const uint8_t magic[] = "seen";
330         volatile uint8_t (*buf)[sizeof(cqe->rsvd0)] = &cqe->rsvd0;
331         int ret = 1;
332         unsigned int i;
333
334         for (i = 0; i < sizeof(magic) && i < sizeof(*buf); ++i)
335                 if (!ret || (*buf)[i] != magic[i]) {
336                         ret = 0;
337                         (*buf)[i] = magic[i];
338                 }
339         return ret;
340 }
341 #endif /* NDEBUG */
342
343 /**
344  * Check whether CQE is valid.
345  *
346  * @param cqe
347  *   Pointer to CQE.
348  * @param cqes_n
349  *   Size of completion queue.
350  * @param ci
351  *   Consumer index.
352  *
353  * @return
354  *   0 on success, 1 on failure.
355  */
356 static __rte_always_inline int
357 check_cqe(volatile struct mlx5_cqe *cqe,
358           unsigned int cqes_n, const uint16_t ci)
359 {
360         uint16_t idx = ci & cqes_n;
361         uint8_t op_own = cqe->op_own;
362         uint8_t op_owner = MLX5_CQE_OWNER(op_own);
363         uint8_t op_code = MLX5_CQE_OPCODE(op_own);
364
365         if (unlikely((op_owner != (!!(idx))) || (op_code == MLX5_CQE_INVALID)))
366                 return 1; /* No CQE. */
367 #ifndef NDEBUG
368         if ((op_code == MLX5_CQE_RESP_ERR) ||
369             (op_code == MLX5_CQE_REQ_ERR)) {
370                 volatile struct mlx5_err_cqe *err_cqe = (volatile void *)cqe;
371                 uint8_t syndrome = err_cqe->syndrome;
372
373                 if ((syndrome == MLX5_CQE_SYNDROME_LOCAL_LENGTH_ERR) ||
374                     (syndrome == MLX5_CQE_SYNDROME_REMOTE_ABORTED_ERR))
375                         return 0;
376                 if (!check_cqe_seen(cqe)) {
377                         ERROR("unexpected CQE error %u (0x%02x)"
378                               " syndrome 0x%02x",
379                               op_code, op_code, syndrome);
380                         rte_hexdump(stderr, "MLX5 Error CQE:",
381                                     (const void *)((uintptr_t)err_cqe),
382                                     sizeof(*err_cqe));
383                 }
384                 return 1;
385         } else if ((op_code != MLX5_CQE_RESP_SEND) &&
386                    (op_code != MLX5_CQE_REQ)) {
387                 if (!check_cqe_seen(cqe)) {
388                         ERROR("unexpected CQE opcode %u (0x%02x)",
389                               op_code, op_code);
390                         rte_hexdump(stderr, "MLX5 CQE:",
391                                     (const void *)((uintptr_t)cqe),
392                                     sizeof(*cqe));
393                 }
394                 return 1;
395         }
396 #endif /* NDEBUG */
397         return 0;
398 }
399
400 /**
401  * Return the address of the WQE.
402  *
403  * @param txq
404  *   Pointer to TX queue structure.
405  * @param  wqe_ci
406  *   WQE consumer index.
407  *
408  * @return
409  *   WQE address.
410  */
411 static inline uintptr_t *
412 tx_mlx5_wqe(struct mlx5_txq_data *txq, uint16_t ci)
413 {
414         ci &= ((1 << txq->wqe_n) - 1);
415         return (uintptr_t *)((uintptr_t)txq->wqes + ci * MLX5_WQE_SIZE);
416 }
417
418 /**
419  * Manage TX completions.
420  *
421  * When sending a burst, mlx5_tx_burst() posts several WRs.
422  *
423  * @param txq
424  *   Pointer to TX queue structure.
425  */
426 static __rte_always_inline void
427 mlx5_tx_complete(struct mlx5_txq_data *txq)
428 {
429         const uint16_t elts_n = 1 << txq->elts_n;
430         const uint16_t elts_m = elts_n - 1;
431         const unsigned int cqe_n = 1 << txq->cqe_n;
432         const unsigned int cqe_cnt = cqe_n - 1;
433         uint16_t elts_free = txq->elts_tail;
434         uint16_t elts_tail;
435         uint16_t cq_ci = txq->cq_ci;
436         volatile struct mlx5_cqe *cqe = NULL;
437         volatile struct mlx5_wqe_ctrl *ctrl;
438         struct rte_mbuf *m, *free[elts_n];
439         struct rte_mempool *pool = NULL;
440         unsigned int blk_n = 0;
441
442         cqe = &(*txq->cqes)[cq_ci & cqe_cnt];
443         if (unlikely(check_cqe(cqe, cqe_n, cq_ci)))
444                 return;
445 #ifndef NDEBUG
446         if ((MLX5_CQE_OPCODE(cqe->op_own) == MLX5_CQE_RESP_ERR) ||
447             (MLX5_CQE_OPCODE(cqe->op_own) == MLX5_CQE_REQ_ERR)) {
448                 if (!check_cqe_seen(cqe)) {
449                         ERROR("unexpected error CQE, TX stopped");
450                         rte_hexdump(stderr, "MLX5 TXQ:",
451                                     (const void *)((uintptr_t)txq->wqes),
452                                     ((1 << txq->wqe_n) *
453                                      MLX5_WQE_SIZE));
454                 }
455                 return;
456         }
457 #endif /* NDEBUG */
458         ++cq_ci;
459         txq->wqe_pi = rte_be_to_cpu_16(cqe->wqe_counter);
460         ctrl = (volatile struct mlx5_wqe_ctrl *)
461                 tx_mlx5_wqe(txq, txq->wqe_pi);
462         elts_tail = ctrl->ctrl3;
463         assert((elts_tail & elts_m) < (1 << txq->wqe_n));
464         /* Free buffers. */
465         while (elts_free != elts_tail) {
466                 m = rte_pktmbuf_prefree_seg((*txq->elts)[elts_free++ & elts_m]);
467                 if (likely(m != NULL)) {
468                         if (likely(m->pool == pool)) {
469                                 free[blk_n++] = m;
470                         } else {
471                                 if (likely(pool != NULL))
472                                         rte_mempool_put_bulk(pool,
473                                                              (void *)free,
474                                                              blk_n);
475                                 free[0] = m;
476                                 pool = m->pool;
477                                 blk_n = 1;
478                         }
479                 }
480         }
481         if (blk_n)
482                 rte_mempool_put_bulk(pool, (void *)free, blk_n);
483 #ifndef NDEBUG
484         elts_free = txq->elts_tail;
485         /* Poisoning. */
486         while (elts_free != elts_tail) {
487                 memset(&(*txq->elts)[elts_free & elts_m],
488                        0x66,
489                        sizeof((*txq->elts)[elts_free & elts_m]));
490                 ++elts_free;
491         }
492 #endif
493         txq->cq_ci = cq_ci;
494         txq->elts_tail = elts_tail;
495         /* Update the consumer index. */
496         rte_compiler_barrier();
497         *txq->cq_db = rte_cpu_to_be_32(cq_ci);
498 }
499
500 /**
501  * Get Memory Pool (MP) from mbuf. If mbuf is indirect, the pool from which
502  * the cloned mbuf is allocated is returned instead.
503  *
504  * @param buf
505  *   Pointer to mbuf.
506  *
507  * @return
508  *   Memory pool where data is located for given mbuf.
509  */
510 static struct rte_mempool *
511 mlx5_tx_mb2mp(struct rte_mbuf *buf)
512 {
513         if (unlikely(RTE_MBUF_INDIRECT(buf)))
514                 return rte_mbuf_from_indirect(buf)->pool;
515         return buf->pool;
516 }
517
518 /**
519  * Get Memory Region (MR) <-> rte_mbuf association from txq->mp2mr[].
520  * Add MP to txq->mp2mr[] if it's not registered yet. If mp2mr[] is full,
521  * remove an entry first.
522  *
523  * @param txq
524  *   Pointer to TX queue structure.
525  * @param[in] mp
526  *   Memory Pool for which a Memory Region lkey must be returned.
527  *
528  * @return
529  *   mr->lkey on success, (uint32_t)-1 on failure.
530  */
531 static __rte_always_inline uint32_t
532 mlx5_tx_mb2mr(struct mlx5_txq_data *txq, struct rte_mbuf *mb)
533 {
534         uint16_t i = txq->mr_cache_idx;
535         uintptr_t addr = rte_pktmbuf_mtod(mb, uintptr_t);
536         struct mlx5_mr *mr;
537
538         assert(i < RTE_DIM(txq->mp2mr));
539         if (likely(txq->mp2mr[i]->start <= addr && txq->mp2mr[i]->end > addr))
540                 return txq->mp2mr[i]->lkey;
541         for (i = 0; (i != RTE_DIM(txq->mp2mr)); ++i) {
542                 if (unlikely(txq->mp2mr[i] == NULL ||
543                     txq->mp2mr[i]->mr == NULL)) {
544                         /* Unknown MP, add a new MR for it. */
545                         break;
546                 }
547                 if (txq->mp2mr[i]->start <= addr &&
548                     txq->mp2mr[i]->end > addr) {
549                         assert(txq->mp2mr[i]->lkey != (uint32_t)-1);
550                         txq->mr_cache_idx = i;
551                         return txq->mp2mr[i]->lkey;
552                 }
553         }
554         mr = mlx5_txq_mp2mr_reg(txq, mlx5_tx_mb2mp(mb), i);
555         /*
556          * Request the reference to use in this queue, the original one is
557          * kept by the control plane.
558          */
559         if (mr) {
560                 rte_atomic32_inc(&mr->refcnt);
561                 txq->mr_cache_idx = i >= RTE_DIM(txq->mp2mr) ? i - 1 : i;
562                 return mr->lkey;
563         } else {
564                 struct rte_mempool *mp = mlx5_tx_mb2mp(mb);
565
566                 WARN("Failed to register mempool 0x%p(%s)",
567                       (void *)mp, mp->name);
568         }
569         return (uint32_t)-1;
570 }
571
572 /**
573  * Ring TX queue doorbell and flush the update if requested.
574  *
575  * @param txq
576  *   Pointer to TX queue structure.
577  * @param wqe
578  *   Pointer to the last WQE posted in the NIC.
579  * @param cond
580  *   Request for write memory barrier after BlueFlame update.
581  */
582 static __rte_always_inline void
583 mlx5_tx_dbrec_cond_wmb(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe,
584                        int cond)
585 {
586         uint64_t *dst = (uint64_t *)((uintptr_t)txq->bf_reg);
587         volatile uint64_t *src = ((volatile uint64_t *)wqe);
588
589         rte_cio_wmb();
590         *txq->qp_db = rte_cpu_to_be_32(txq->wqe_ci);
591         /* Ensure ordering between DB record and BF copy. */
592         rte_wmb();
593         *dst = *src;
594         if (cond)
595                 rte_wmb();
596 }
597
598 /**
599  * Ring TX queue doorbell and flush the update by write memory barrier.
600  *
601  * @param txq
602  *   Pointer to TX queue structure.
603  * @param wqe
604  *   Pointer to the last WQE posted in the NIC.
605  */
606 static __rte_always_inline void
607 mlx5_tx_dbrec(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe)
608 {
609         mlx5_tx_dbrec_cond_wmb(txq, wqe, 1);
610 }
611
612 /**
613  * Convert the Checksum offloads to Verbs.
614  *
615  * @param txq_data
616  *   Pointer to the Tx queue.
617  * @param buf
618  *   Pointer to the mbuf.
619  *
620  * @return
621  *   the converted cs_flags.
622  */
623 static __rte_always_inline uint8_t
624 txq_ol_cksum_to_cs(struct mlx5_txq_data *txq_data, struct rte_mbuf *buf)
625 {
626         uint8_t cs_flags = 0;
627
628         /* Should we enable HW CKSUM offload */
629         if (buf->ol_flags &
630             (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM |
631              PKT_TX_OUTER_IP_CKSUM)) {
632                 if (txq_data->tunnel_en &&
633                     (buf->ol_flags &
634                      (PKT_TX_TUNNEL_GRE | PKT_TX_TUNNEL_VXLAN))) {
635                         cs_flags = MLX5_ETH_WQE_L3_INNER_CSUM |
636                                    MLX5_ETH_WQE_L4_INNER_CSUM;
637                         if (buf->ol_flags & PKT_TX_OUTER_IP_CKSUM)
638                                 cs_flags |= MLX5_ETH_WQE_L3_CSUM;
639                 } else {
640                         cs_flags = MLX5_ETH_WQE_L3_CSUM |
641                                    MLX5_ETH_WQE_L4_CSUM;
642                 }
643         }
644         return cs_flags;
645 }
646
647 /**
648  * Count the number of contiguous single segment packets.
649  *
650  * @param pkts
651  *   Pointer to array of packets.
652  * @param pkts_n
653  *   Number of packets.
654  *
655  * @return
656  *   Number of contiguous single segment packets.
657  */
658 static __rte_always_inline unsigned int
659 txq_count_contig_single_seg(struct rte_mbuf **pkts, uint16_t pkts_n)
660 {
661         unsigned int pos;
662
663         if (!pkts_n)
664                 return 0;
665         /* Count the number of contiguous single segment packets. */
666         for (pos = 0; pos < pkts_n; ++pos)
667                 if (NB_SEGS(pkts[pos]) > 1)
668                         break;
669         return pos;
670 }
671
672 /**
673  * Count the number of contiguous multi-segment packets.
674  *
675  * @param pkts
676  *   Pointer to array of packets.
677  * @param pkts_n
678  *   Number of packets.
679  *
680  * @return
681  *   Number of contiguous multi-segment packets.
682  */
683 static __rte_always_inline unsigned int
684 txq_count_contig_multi_seg(struct rte_mbuf **pkts, uint16_t pkts_n)
685 {
686         unsigned int pos;
687
688         if (!pkts_n)
689                 return 0;
690         /* Count the number of contiguous multi-segment packets. */
691         for (pos = 0; pos < pkts_n; ++pos)
692                 if (NB_SEGS(pkts[pos]) == 1)
693                         break;
694         return pos;
695 }
696
697 #endif /* RTE_PMD_MLX5_RXTX_H_ */