New upstream version 18.11-rc2
[deb_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 Technologies, Ltd
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 #include <rte_spinlock.h>
30 #include <rte_io.h>
31
32 #include "mlx5_utils.h"
33 #include "mlx5.h"
34 #include "mlx5_mr.h"
35 #include "mlx5_autoconf.h"
36 #include "mlx5_defs.h"
37 #include "mlx5_prm.h"
38
39 /* Support tunnel matching. */
40 #define MLX5_FLOW_TUNNEL 5
41
42 struct mlx5_rxq_stats {
43         unsigned int idx; /**< Mapping index. */
44 #ifdef MLX5_PMD_SOFT_COUNTERS
45         uint64_t ipackets; /**< Total of successfully received packets. */
46         uint64_t ibytes; /**< Total of successfully received bytes. */
47 #endif
48         uint64_t idropped; /**< Total of packets dropped when RX ring full. */
49         uint64_t rx_nombuf; /**< Total of RX mbuf allocation failures. */
50 };
51
52 struct mlx5_txq_stats {
53         unsigned int idx; /**< Mapping index. */
54 #ifdef MLX5_PMD_SOFT_COUNTERS
55         uint64_t opackets; /**< Total of successfully sent packets. */
56         uint64_t obytes; /**< Total of successfully sent bytes. */
57 #endif
58         uint64_t oerrors; /**< Total number of failed transmitted packets. */
59 };
60
61 struct priv;
62
63 /* Compressed CQE context. */
64 struct rxq_zip {
65         uint16_t ai; /* Array index. */
66         uint16_t ca; /* Current array index. */
67         uint16_t na; /* Next array index. */
68         uint16_t cq_ci; /* The next CQE. */
69         uint32_t cqe_cnt; /* Number of CQEs. */
70 };
71
72 /* Multi-Packet RQ buffer header. */
73 struct mlx5_mprq_buf {
74         struct rte_mempool *mp;
75         rte_atomic16_t refcnt; /* Atomically accessed refcnt. */
76         uint8_t pad[RTE_PKTMBUF_HEADROOM]; /* Headroom for the first packet. */
77 } __rte_cache_aligned;
78
79 /* Get pointer to the first stride. */
80 #define mlx5_mprq_buf_addr(ptr) ((ptr) + 1)
81
82 /* RX queue descriptor. */
83 struct mlx5_rxq_data {
84         unsigned int csum:1; /* Enable checksum offloading. */
85         unsigned int hw_timestamp:1; /* Enable HW timestamp. */
86         unsigned int vlan_strip:1; /* Enable VLAN stripping. */
87         unsigned int crc_present:1; /* CRC must be subtracted. */
88         unsigned int sges_n:2; /* Log 2 of SGEs (max buffers per packet). */
89         unsigned int cqe_n:4; /* Log 2 of CQ elements. */
90         unsigned int elts_n:4; /* Log 2 of Mbufs. */
91         unsigned int rss_hash:1; /* RSS hash result is enabled. */
92         unsigned int mark:1; /* Marked flow available on the queue. */
93         unsigned int strd_num_n:5; /* Log 2 of the number of stride. */
94         unsigned int strd_sz_n:4; /* Log 2 of stride size. */
95         unsigned int strd_shift_en:1; /* Enable 2bytes shift on a stride. */
96         unsigned int :6; /* Remaining bits. */
97         volatile uint32_t *rq_db;
98         volatile uint32_t *cq_db;
99         uint16_t port_id;
100         uint32_t rq_ci;
101         uint16_t consumed_strd; /* Number of consumed strides in WQE. */
102         uint32_t rq_pi;
103         uint32_t cq_ci;
104         struct mlx5_mr_ctrl mr_ctrl; /* MR control descriptor. */
105         uint16_t mprq_max_memcpy_len; /* Maximum size of packet to memcpy. */
106         volatile void *wqes;
107         volatile struct mlx5_cqe(*cqes)[];
108         struct rxq_zip zip; /* Compressed context. */
109         RTE_STD_C11
110         union  {
111                 struct rte_mbuf *(*elts)[];
112                 struct mlx5_mprq_buf *(*mprq_bufs)[];
113         };
114         struct rte_mempool *mp;
115         struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
116         struct mlx5_mprq_buf *mprq_repl; /* Stashed mbuf for replenish. */
117         struct mlx5_rxq_stats stats;
118         uint64_t mbuf_initializer; /* Default rearm_data for vectorized Rx. */
119         struct rte_mbuf fake_mbuf; /* elts padding for vectorized Rx. */
120         void *cq_uar; /* CQ user access region. */
121         uint32_t cqn; /* CQ number. */
122         uint8_t cq_arm_sn; /* CQ arm seq number. */
123 #ifndef RTE_ARCH_64
124         rte_spinlock_t *uar_lock_cq;
125         /* CQ (UAR) access lock required for 32bit implementations */
126 #endif
127         uint32_t tunnel; /* Tunnel information. */
128 } __rte_cache_aligned;
129
130 /* Verbs Rx queue elements. */
131 struct mlx5_rxq_ibv {
132         LIST_ENTRY(mlx5_rxq_ibv) next; /* Pointer to the next element. */
133         rte_atomic32_t refcnt; /* Reference counter. */
134         struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
135         struct ibv_cq *cq; /* Completion Queue. */
136         struct ibv_wq *wq; /* Work Queue. */
137         struct ibv_comp_channel *channel;
138 };
139
140 /* RX queue control descriptor. */
141 struct mlx5_rxq_ctrl {
142         LIST_ENTRY(mlx5_rxq_ctrl) next; /* Pointer to the next element. */
143         rte_atomic32_t refcnt; /* Reference counter. */
144         struct mlx5_rxq_ibv *ibv; /* Verbs elements. */
145         struct priv *priv; /* Back pointer to private data. */
146         struct mlx5_rxq_data rxq; /* Data path structure. */
147         unsigned int socket; /* CPU socket ID for allocations. */
148         unsigned int irq:1; /* Whether IRQ is enabled. */
149         uint16_t idx; /* Queue index. */
150         uint32_t flow_mark_n; /* Number of Mark/Flag flows using this Queue. */
151         uint32_t flow_tunnels_n[MLX5_FLOW_TUNNEL]; /* Tunnels counters. */
152 };
153
154 /* Indirection table. */
155 struct mlx5_ind_table_ibv {
156         LIST_ENTRY(mlx5_ind_table_ibv) next; /* Pointer to the next element. */
157         rte_atomic32_t refcnt; /* Reference counter. */
158         struct ibv_rwq_ind_table *ind_table; /**< Indirection table. */
159         uint32_t queues_n; /**< Number of queues in the list. */
160         uint16_t queues[]; /**< Queue list. */
161 };
162
163 /* Hash Rx queue. */
164 struct mlx5_hrxq {
165         LIST_ENTRY(mlx5_hrxq) next; /* Pointer to the next element. */
166         rte_atomic32_t refcnt; /* Reference counter. */
167         struct mlx5_ind_table_ibv *ind_table; /* Indirection table. */
168         struct ibv_qp *qp; /* Verbs queue pair. */
169         uint64_t hash_fields; /* Verbs Hash fields. */
170         uint32_t rss_key_len; /* Hash key length in bytes. */
171         uint8_t rss_key[]; /* Hash key. */
172 };
173
174 /* TX queue descriptor. */
175 __extension__
176 struct mlx5_txq_data {
177         uint16_t elts_head; /* Current counter in (*elts)[]. */
178         uint16_t elts_tail; /* Counter of first element awaiting completion. */
179         uint16_t elts_comp; /* Counter since last completion request. */
180         uint16_t mpw_comp; /* WQ index since last completion request. */
181         uint16_t cq_ci; /* Consumer index for completion queue. */
182 #ifndef NDEBUG
183         uint16_t cq_pi; /* Producer index for completion queue. */
184 #endif
185         uint16_t wqe_ci; /* Consumer index for work queue. */
186         uint16_t wqe_pi; /* Producer index for work queue. */
187         uint16_t elts_n:4; /* (*elts)[] length (in log2). */
188         uint16_t cqe_n:4; /* Number of CQ elements (in log2). */
189         uint16_t wqe_n:4; /* Number of of WQ elements (in log2). */
190         uint16_t tso_en:1; /* When set hardware TSO is enabled. */
191         uint16_t tunnel_en:1;
192         /* When set TX offload for tunneled packets are supported. */
193         uint16_t swp_en:1; /* Whether SW parser is enabled. */
194         uint16_t mpw_hdr_dseg:1; /* Enable DSEGs in the title WQEBB. */
195         uint16_t max_inline; /* Multiple of RTE_CACHE_LINE_SIZE to inline. */
196         uint16_t inline_max_packet_sz; /* Max packet size for inlining. */
197         uint32_t qp_num_8s; /* QP number shifted by 8. */
198         uint64_t offloads; /* Offloads for Tx Queue. */
199         struct mlx5_mr_ctrl mr_ctrl; /* MR control descriptor. */
200         volatile struct mlx5_cqe (*cqes)[]; /* Completion queue. */
201         volatile void *wqes; /* Work queue (use volatile to write into). */
202         volatile uint32_t *qp_db; /* Work queue doorbell. */
203         volatile uint32_t *cq_db; /* Completion queue doorbell. */
204         volatile void *bf_reg; /* Blueflame register remapped. */
205         struct rte_mbuf *(*elts)[]; /* TX elements. */
206         struct mlx5_txq_stats stats; /* TX queue counters. */
207 #ifndef RTE_ARCH_64
208         rte_spinlock_t *uar_lock;
209         /* UAR access lock required for 32bit implementations */
210 #endif
211 } __rte_cache_aligned;
212
213 /* Verbs Rx queue elements. */
214 struct mlx5_txq_ibv {
215         LIST_ENTRY(mlx5_txq_ibv) next; /* Pointer to the next element. */
216         rte_atomic32_t refcnt; /* Reference counter. */
217         struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */
218         struct ibv_cq *cq; /* Completion Queue. */
219         struct ibv_qp *qp; /* Queue Pair. */
220 };
221
222 /* TX queue control descriptor. */
223 struct mlx5_txq_ctrl {
224         LIST_ENTRY(mlx5_txq_ctrl) next; /* Pointer to the next element. */
225         rte_atomic32_t refcnt; /* Reference counter. */
226         unsigned int socket; /* CPU socket ID for allocations. */
227         unsigned int max_inline_data; /* Max inline data. */
228         unsigned int max_tso_header; /* Max TSO header size. */
229         struct mlx5_txq_ibv *ibv; /* Verbs queue object. */
230         struct priv *priv; /* Back pointer to private data. */
231         struct mlx5_txq_data txq; /* Data path structure. */
232         off_t uar_mmap_offset; /* UAR mmap offset for non-primary process. */
233         volatile void *bf_reg_orig; /* Blueflame register from verbs. */
234         uint16_t idx; /* Queue index. */
235 };
236
237 /* mlx5_rxq.c */
238
239 extern uint8_t rss_hash_default_key[];
240
241 int mlx5_check_mprq_support(struct rte_eth_dev *dev);
242 int mlx5_rxq_mprq_enabled(struct mlx5_rxq_data *rxq);
243 int mlx5_mprq_enabled(struct rte_eth_dev *dev);
244 int mlx5_mprq_free_mp(struct rte_eth_dev *dev);
245 int mlx5_mprq_alloc_mp(struct rte_eth_dev *dev);
246 void mlx5_rxq_cleanup(struct mlx5_rxq_ctrl *rxq_ctrl);
247 int mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
248                         unsigned int socket, const struct rte_eth_rxconf *conf,
249                         struct rte_mempool *mp);
250 void mlx5_rx_queue_release(void *dpdk_rxq);
251 int mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev);
252 void mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev);
253 int mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
254 int mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id);
255 struct mlx5_rxq_ibv *mlx5_rxq_ibv_new(struct rte_eth_dev *dev, uint16_t idx);
256 struct mlx5_rxq_ibv *mlx5_rxq_ibv_get(struct rte_eth_dev *dev, uint16_t idx);
257 int mlx5_rxq_ibv_release(struct mlx5_rxq_ibv *rxq_ibv);
258 int mlx5_rxq_ibv_releasable(struct mlx5_rxq_ibv *rxq_ibv);
259 struct mlx5_rxq_ibv *mlx5_rxq_ibv_drop_new(struct rte_eth_dev *dev);
260 void mlx5_rxq_ibv_drop_release(struct rte_eth_dev *dev);
261 int mlx5_rxq_ibv_verify(struct rte_eth_dev *dev);
262 struct mlx5_rxq_ctrl *mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx,
263                                    uint16_t desc, unsigned int socket,
264                                    const struct rte_eth_rxconf *conf,
265                                    struct rte_mempool *mp);
266 struct mlx5_rxq_ctrl *mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx);
267 int mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx);
268 int mlx5_rxq_releasable(struct rte_eth_dev *dev, uint16_t idx);
269 int mlx5_rxq_verify(struct rte_eth_dev *dev);
270 int rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl);
271 int rxq_alloc_mprq_buf(struct mlx5_rxq_ctrl *rxq_ctrl);
272 struct mlx5_ind_table_ibv *mlx5_ind_table_ibv_new(struct rte_eth_dev *dev,
273                                                   const uint16_t *queues,
274                                                   uint32_t queues_n);
275 struct mlx5_ind_table_ibv *mlx5_ind_table_ibv_get(struct rte_eth_dev *dev,
276                                                   const uint16_t *queues,
277                                                   uint32_t queues_n);
278 int mlx5_ind_table_ibv_release(struct rte_eth_dev *dev,
279                                struct mlx5_ind_table_ibv *ind_tbl);
280 int mlx5_ind_table_ibv_verify(struct rte_eth_dev *dev);
281 struct mlx5_ind_table_ibv *mlx5_ind_table_ibv_drop_new(struct rte_eth_dev *dev);
282 void mlx5_ind_table_ibv_drop_release(struct rte_eth_dev *dev);
283 struct mlx5_hrxq *mlx5_hrxq_new(struct rte_eth_dev *dev,
284                                 const uint8_t *rss_key, uint32_t rss_key_len,
285                                 uint64_t hash_fields,
286                                 const uint16_t *queues, uint32_t queues_n,
287                                 int tunnel __rte_unused);
288 struct mlx5_hrxq *mlx5_hrxq_get(struct rte_eth_dev *dev,
289                                 const uint8_t *rss_key, uint32_t rss_key_len,
290                                 uint64_t hash_fields,
291                                 const uint16_t *queues, uint32_t queues_n);
292 int mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hxrq);
293 int mlx5_hrxq_ibv_verify(struct rte_eth_dev *dev);
294 struct mlx5_hrxq *mlx5_hrxq_drop_new(struct rte_eth_dev *dev);
295 void mlx5_hrxq_drop_release(struct rte_eth_dev *dev);
296 uint64_t mlx5_get_rx_port_offloads(void);
297 uint64_t mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev);
298
299 /* mlx5_txq.c */
300
301 int mlx5_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
302                         unsigned int socket, const struct rte_eth_txconf *conf);
303 void mlx5_tx_queue_release(void *dpdk_txq);
304 int mlx5_tx_uar_remap(struct rte_eth_dev *dev, int fd);
305 struct mlx5_txq_ibv *mlx5_txq_ibv_new(struct rte_eth_dev *dev, uint16_t idx);
306 struct mlx5_txq_ibv *mlx5_txq_ibv_get(struct rte_eth_dev *dev, uint16_t idx);
307 int mlx5_txq_ibv_release(struct mlx5_txq_ibv *txq_ibv);
308 int mlx5_txq_ibv_releasable(struct mlx5_txq_ibv *txq_ibv);
309 int mlx5_txq_ibv_verify(struct rte_eth_dev *dev);
310 struct mlx5_txq_ctrl *mlx5_txq_new(struct rte_eth_dev *dev, uint16_t idx,
311                                    uint16_t desc, unsigned int socket,
312                                    const struct rte_eth_txconf *conf);
313 struct mlx5_txq_ctrl *mlx5_txq_get(struct rte_eth_dev *dev, uint16_t idx);
314 int mlx5_txq_release(struct rte_eth_dev *dev, uint16_t idx);
315 int mlx5_txq_releasable(struct rte_eth_dev *dev, uint16_t idx);
316 int mlx5_txq_verify(struct rte_eth_dev *dev);
317 void txq_alloc_elts(struct mlx5_txq_ctrl *txq_ctrl);
318 uint64_t mlx5_get_tx_port_offloads(struct rte_eth_dev *dev);
319
320 /* mlx5_rxtx.c */
321
322 extern uint32_t mlx5_ptype_table[];
323 extern uint8_t mlx5_cksum_table[];
324 extern uint8_t mlx5_swp_types_table[];
325
326 void mlx5_set_ptype_table(void);
327 void mlx5_set_cksum_table(void);
328 void mlx5_set_swp_types_table(void);
329 uint16_t mlx5_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts,
330                        uint16_t pkts_n);
331 uint16_t mlx5_tx_burst_mpw(void *dpdk_txq, struct rte_mbuf **pkts,
332                            uint16_t pkts_n);
333 uint16_t mlx5_tx_burst_mpw_inline(void *dpdk_txq, struct rte_mbuf **pkts,
334                                   uint16_t pkts_n);
335 uint16_t mlx5_tx_burst_empw(void *dpdk_txq, struct rte_mbuf **pkts,
336                             uint16_t pkts_n);
337 uint16_t mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n);
338 void mlx5_mprq_buf_free_cb(void *addr, void *opaque);
339 void mlx5_mprq_buf_free(struct mlx5_mprq_buf *buf);
340 uint16_t mlx5_rx_burst_mprq(void *dpdk_rxq, struct rte_mbuf **pkts,
341                             uint16_t pkts_n);
342 uint16_t removed_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts,
343                           uint16_t pkts_n);
344 uint16_t removed_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts,
345                           uint16_t pkts_n);
346 int mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset);
347 int mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset);
348 uint32_t mlx5_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id);
349
350 /* Vectorized version of mlx5_rxtx.c */
351 int mlx5_check_raw_vec_tx_support(struct rte_eth_dev *dev);
352 int mlx5_check_vec_tx_support(struct rte_eth_dev *dev);
353 int mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq_data);
354 int mlx5_check_vec_rx_support(struct rte_eth_dev *dev);
355 uint16_t mlx5_tx_burst_raw_vec(void *dpdk_txq, struct rte_mbuf **pkts,
356                                uint16_t pkts_n);
357 uint16_t mlx5_tx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts,
358                            uint16_t pkts_n);
359 uint16_t mlx5_rx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts,
360                            uint16_t pkts_n);
361
362 /* mlx5_mr.c */
363
364 void mlx5_mr_flush_local_cache(struct mlx5_mr_ctrl *mr_ctrl);
365 uint32_t mlx5_rx_addr2mr_bh(struct mlx5_rxq_data *rxq, uintptr_t addr);
366 uint32_t mlx5_tx_addr2mr_bh(struct mlx5_txq_data *txq, uintptr_t addr);
367 uint32_t mlx5_tx_update_ext_mp(struct mlx5_txq_data *txq, uintptr_t addr,
368                                struct rte_mempool *mp);
369
370 /**
371  * Provide safe 64bit store operation to mlx5 UAR region for both 32bit and
372  * 64bit architectures.
373  *
374  * @param val
375  *   value to write in CPU endian format.
376  * @param addr
377  *   Address to write to.
378  * @param lock
379  *   Address of the lock to use for that UAR access.
380  */
381 static __rte_always_inline void
382 __mlx5_uar_write64_relaxed(uint64_t val, volatile void *addr,
383                            rte_spinlock_t *lock __rte_unused)
384 {
385 #ifdef RTE_ARCH_64
386         rte_write64_relaxed(val, addr);
387 #else /* !RTE_ARCH_64 */
388         rte_spinlock_lock(lock);
389         rte_write32_relaxed(val, addr);
390         rte_io_wmb();
391         rte_write32_relaxed(val >> 32,
392                             (volatile void *)((volatile char *)addr + 4));
393         rte_spinlock_unlock(lock);
394 #endif
395 }
396
397 /**
398  * Provide safe 64bit store operation to mlx5 UAR region for both 32bit and
399  * 64bit architectures while guaranteeing the order of execution with the
400  * code being executed.
401  *
402  * @param val
403  *   value to write in CPU endian format.
404  * @param addr
405  *   Address to write to.
406  * @param lock
407  *   Address of the lock to use for that UAR access.
408  */
409 static __rte_always_inline void
410 __mlx5_uar_write64(uint64_t val, volatile void *addr, rte_spinlock_t *lock)
411 {
412         rte_io_wmb();
413         __mlx5_uar_write64_relaxed(val, addr, lock);
414 }
415
416 /* Assist macros, used instead of directly calling the functions they wrap. */
417 #ifdef RTE_ARCH_64
418 #define mlx5_uar_write64_relaxed(val, dst, lock) \
419                 __mlx5_uar_write64_relaxed(val, dst, NULL)
420 #define mlx5_uar_write64(val, dst, lock) __mlx5_uar_write64(val, dst, NULL)
421 #else
422 #define mlx5_uar_write64_relaxed(val, dst, lock) \
423                 __mlx5_uar_write64_relaxed(val, dst, lock)
424 #define mlx5_uar_write64(val, dst, lock) __mlx5_uar_write64(val, dst, lock)
425 #endif
426
427 #ifndef NDEBUG
428 /**
429  * Verify or set magic value in CQE.
430  *
431  * @param cqe
432  *   Pointer to CQE.
433  *
434  * @return
435  *   0 the first time.
436  */
437 static inline int
438 check_cqe_seen(volatile struct mlx5_cqe *cqe)
439 {
440         static const uint8_t magic[] = "seen";
441         volatile uint8_t (*buf)[sizeof(cqe->rsvd1)] = &cqe->rsvd1;
442         int ret = 1;
443         unsigned int i;
444
445         for (i = 0; i < sizeof(magic) && i < sizeof(*buf); ++i)
446                 if (!ret || (*buf)[i] != magic[i]) {
447                         ret = 0;
448                         (*buf)[i] = magic[i];
449                 }
450         return ret;
451 }
452 #endif /* NDEBUG */
453
454 /**
455  * Check whether CQE is valid.
456  *
457  * @param cqe
458  *   Pointer to CQE.
459  * @param cqes_n
460  *   Size of completion queue.
461  * @param ci
462  *   Consumer index.
463  *
464  * @return
465  *   0 on success, 1 on failure.
466  */
467 static __rte_always_inline int
468 check_cqe(volatile struct mlx5_cqe *cqe,
469           unsigned int cqes_n, const uint16_t ci)
470 {
471         uint16_t idx = ci & cqes_n;
472         uint8_t op_own = cqe->op_own;
473         uint8_t op_owner = MLX5_CQE_OWNER(op_own);
474         uint8_t op_code = MLX5_CQE_OPCODE(op_own);
475
476         if (unlikely((op_owner != (!!(idx))) || (op_code == MLX5_CQE_INVALID)))
477                 return 1; /* No CQE. */
478 #ifndef NDEBUG
479         if ((op_code == MLX5_CQE_RESP_ERR) ||
480             (op_code == MLX5_CQE_REQ_ERR)) {
481                 volatile struct mlx5_err_cqe *err_cqe = (volatile void *)cqe;
482                 uint8_t syndrome = err_cqe->syndrome;
483
484                 if ((syndrome == MLX5_CQE_SYNDROME_LOCAL_LENGTH_ERR) ||
485                     (syndrome == MLX5_CQE_SYNDROME_REMOTE_ABORTED_ERR))
486                         return 0;
487                 if (!check_cqe_seen(cqe)) {
488                         DRV_LOG(ERR,
489                                 "unexpected CQE error %u (0x%02x) syndrome"
490                                 " 0x%02x",
491                                 op_code, op_code, syndrome);
492                         rte_hexdump(stderr, "MLX5 Error CQE:",
493                                     (const void *)((uintptr_t)err_cqe),
494                                     sizeof(*err_cqe));
495                 }
496                 return 1;
497         } else if ((op_code != MLX5_CQE_RESP_SEND) &&
498                    (op_code != MLX5_CQE_REQ)) {
499                 if (!check_cqe_seen(cqe)) {
500                         DRV_LOG(ERR, "unexpected CQE opcode %u (0x%02x)",
501                                 op_code, op_code);
502                         rte_hexdump(stderr, "MLX5 CQE:",
503                                     (const void *)((uintptr_t)cqe),
504                                     sizeof(*cqe));
505                 }
506                 return 1;
507         }
508 #endif /* NDEBUG */
509         return 0;
510 }
511
512 /**
513  * Return the address of the WQE.
514  *
515  * @param txq
516  *   Pointer to TX queue structure.
517  * @param  wqe_ci
518  *   WQE consumer index.
519  *
520  * @return
521  *   WQE address.
522  */
523 static inline uintptr_t *
524 tx_mlx5_wqe(struct mlx5_txq_data *txq, uint16_t ci)
525 {
526         ci &= ((1 << txq->wqe_n) - 1);
527         return (uintptr_t *)((uintptr_t)txq->wqes + ci * MLX5_WQE_SIZE);
528 }
529
530 /**
531  * Manage TX completions.
532  *
533  * When sending a burst, mlx5_tx_burst() posts several WRs.
534  *
535  * @param txq
536  *   Pointer to TX queue structure.
537  */
538 static __rte_always_inline void
539 mlx5_tx_complete(struct mlx5_txq_data *txq)
540 {
541         const uint16_t elts_n = 1 << txq->elts_n;
542         const uint16_t elts_m = elts_n - 1;
543         const unsigned int cqe_n = 1 << txq->cqe_n;
544         const unsigned int cqe_cnt = cqe_n - 1;
545         uint16_t elts_free = txq->elts_tail;
546         uint16_t elts_tail;
547         uint16_t cq_ci = txq->cq_ci;
548         volatile struct mlx5_cqe *cqe = NULL;
549         volatile struct mlx5_wqe_ctrl *ctrl;
550         struct rte_mbuf *m, *free[elts_n];
551         struct rte_mempool *pool = NULL;
552         unsigned int blk_n = 0;
553
554         cqe = &(*txq->cqes)[cq_ci & cqe_cnt];
555         if (unlikely(check_cqe(cqe, cqe_n, cq_ci)))
556                 return;
557 #ifndef NDEBUG
558         if ((MLX5_CQE_OPCODE(cqe->op_own) == MLX5_CQE_RESP_ERR) ||
559             (MLX5_CQE_OPCODE(cqe->op_own) == MLX5_CQE_REQ_ERR)) {
560                 if (!check_cqe_seen(cqe)) {
561                         DRV_LOG(ERR, "unexpected error CQE, Tx stopped");
562                         rte_hexdump(stderr, "MLX5 TXQ:",
563                                     (const void *)((uintptr_t)txq->wqes),
564                                     ((1 << txq->wqe_n) *
565                                      MLX5_WQE_SIZE));
566                 }
567                 return;
568         }
569 #endif /* NDEBUG */
570         ++cq_ci;
571         txq->wqe_pi = rte_be_to_cpu_16(cqe->wqe_counter);
572         ctrl = (volatile struct mlx5_wqe_ctrl *)
573                 tx_mlx5_wqe(txq, txq->wqe_pi);
574         elts_tail = ctrl->ctrl3;
575         assert((elts_tail & elts_m) < (1 << txq->wqe_n));
576         /* Free buffers. */
577         while (elts_free != elts_tail) {
578                 m = rte_pktmbuf_prefree_seg((*txq->elts)[elts_free++ & elts_m]);
579                 if (likely(m != NULL)) {
580                         if (likely(m->pool == pool)) {
581                                 free[blk_n++] = m;
582                         } else {
583                                 if (likely(pool != NULL))
584                                         rte_mempool_put_bulk(pool,
585                                                              (void *)free,
586                                                              blk_n);
587                                 free[0] = m;
588                                 pool = m->pool;
589                                 blk_n = 1;
590                         }
591                 }
592         }
593         if (blk_n)
594                 rte_mempool_put_bulk(pool, (void *)free, blk_n);
595 #ifndef NDEBUG
596         elts_free = txq->elts_tail;
597         /* Poisoning. */
598         while (elts_free != elts_tail) {
599                 memset(&(*txq->elts)[elts_free & elts_m],
600                        0x66,
601                        sizeof((*txq->elts)[elts_free & elts_m]));
602                 ++elts_free;
603         }
604 #endif
605         txq->cq_ci = cq_ci;
606         txq->elts_tail = elts_tail;
607         /* Update the consumer index. */
608         rte_compiler_barrier();
609         *txq->cq_db = rte_cpu_to_be_32(cq_ci);
610 }
611
612 /**
613  * Get Memory Pool (MP) from mbuf. If mbuf is indirect, the pool from which the
614  * cloned mbuf is allocated is returned instead.
615  *
616  * @param buf
617  *   Pointer to mbuf.
618  *
619  * @return
620  *   Memory pool where data is located for given mbuf.
621  */
622 static struct rte_mempool *
623 mlx5_mb2mp(struct rte_mbuf *buf)
624 {
625         if (unlikely(RTE_MBUF_INDIRECT(buf)))
626                 return rte_mbuf_from_indirect(buf)->pool;
627         return buf->pool;
628 }
629
630 /**
631  * Query LKey from a packet buffer for Rx. No need to flush local caches for Rx
632  * as mempool is pre-configured and static.
633  *
634  * @param rxq
635  *   Pointer to Rx queue structure.
636  * @param addr
637  *   Address to search.
638  *
639  * @return
640  *   Searched LKey on success, UINT32_MAX on no match.
641  */
642 static __rte_always_inline uint32_t
643 mlx5_rx_addr2mr(struct mlx5_rxq_data *rxq, uintptr_t addr)
644 {
645         struct mlx5_mr_ctrl *mr_ctrl = &rxq->mr_ctrl;
646         uint32_t lkey;
647
648         /* Linear search on MR cache array. */
649         lkey = mlx5_mr_lookup_cache(mr_ctrl->cache, &mr_ctrl->mru,
650                                     MLX5_MR_CACHE_N, addr);
651         if (likely(lkey != UINT32_MAX))
652                 return lkey;
653         /* Take slower bottom-half (Binary Search) on miss. */
654         return mlx5_rx_addr2mr_bh(rxq, addr);
655 }
656
657 #define mlx5_rx_mb2mr(rxq, mb) mlx5_rx_addr2mr(rxq, (uintptr_t)((mb)->buf_addr))
658
659 /**
660  * Query LKey from a packet buffer for Tx. If not found, add the mempool.
661  *
662  * @param txq
663  *   Pointer to Tx queue structure.
664  * @param addr
665  *   Address to search.
666  *
667  * @return
668  *   Searched LKey on success, UINT32_MAX on no match.
669  */
670 static __rte_always_inline uint32_t
671 mlx5_tx_addr2mr(struct mlx5_txq_data *txq, uintptr_t addr)
672 {
673         struct mlx5_mr_ctrl *mr_ctrl = &txq->mr_ctrl;
674         uint32_t lkey;
675
676         /* Check generation bit to see if there's any change on existing MRs. */
677         if (unlikely(*mr_ctrl->dev_gen_ptr != mr_ctrl->cur_gen))
678                 mlx5_mr_flush_local_cache(mr_ctrl);
679         /* Linear search on MR cache array. */
680         lkey = mlx5_mr_lookup_cache(mr_ctrl->cache, &mr_ctrl->mru,
681                                     MLX5_MR_CACHE_N, addr);
682         if (likely(lkey != UINT32_MAX))
683                 return lkey;
684         /* Take slower bottom-half (binary search) on miss. */
685         return mlx5_tx_addr2mr_bh(txq, addr);
686 }
687
688 static __rte_always_inline uint32_t
689 mlx5_tx_mb2mr(struct mlx5_txq_data *txq, struct rte_mbuf *mb)
690 {
691         uintptr_t addr = (uintptr_t)mb->buf_addr;
692         uint32_t lkey = mlx5_tx_addr2mr(txq, addr);
693
694         if (likely(lkey != UINT32_MAX))
695                 return lkey;
696         if (rte_errno == ENXIO) {
697                 /* Mempool may have externally allocated memory. */
698                 lkey = mlx5_tx_update_ext_mp(txq, addr, mlx5_mb2mp(mb));
699         }
700         return lkey;
701 }
702
703 /**
704  * Ring TX queue doorbell and flush the update if requested.
705  *
706  * @param txq
707  *   Pointer to TX queue structure.
708  * @param wqe
709  *   Pointer to the last WQE posted in the NIC.
710  * @param cond
711  *   Request for write memory barrier after BlueFlame update.
712  */
713 static __rte_always_inline void
714 mlx5_tx_dbrec_cond_wmb(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe,
715                        int cond)
716 {
717         uint64_t *dst = (uint64_t *)((uintptr_t)txq->bf_reg);
718         volatile uint64_t *src = ((volatile uint64_t *)wqe);
719
720         rte_cio_wmb();
721         *txq->qp_db = rte_cpu_to_be_32(txq->wqe_ci);
722         /* Ensure ordering between DB record and BF copy. */
723         rte_wmb();
724         mlx5_uar_write64_relaxed(*src, dst, txq->uar_lock);
725         if (cond)
726                 rte_wmb();
727 }
728
729 /**
730  * Ring TX queue doorbell and flush the update by write memory barrier.
731  *
732  * @param txq
733  *   Pointer to TX queue structure.
734  * @param wqe
735  *   Pointer to the last WQE posted in the NIC.
736  */
737 static __rte_always_inline void
738 mlx5_tx_dbrec(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe)
739 {
740         mlx5_tx_dbrec_cond_wmb(txq, wqe, 1);
741 }
742
743 /**
744  * Convert mbuf to Verb SWP.
745  *
746  * @param txq_data
747  *   Pointer to the Tx queue.
748  * @param buf
749  *   Pointer to the mbuf.
750  * @param tso
751  *   TSO offloads enabled.
752  * @param vlan
753  *   VLAN offloads enabled
754  * @param offsets
755  *   Pointer to the SWP header offsets.
756  * @param swp_types
757  *   Pointer to the SWP header types.
758  */
759 static __rte_always_inline void
760 txq_mbuf_to_swp(struct mlx5_txq_data *txq, struct rte_mbuf *buf,
761                 uint8_t *offsets, uint8_t *swp_types)
762 {
763         const uint64_t vlan = buf->ol_flags & PKT_TX_VLAN_PKT;
764         const uint64_t tunnel = buf->ol_flags & PKT_TX_TUNNEL_MASK;
765         const uint64_t tso = buf->ol_flags & PKT_TX_TCP_SEG;
766         const uint64_t csum_flags = buf->ol_flags & PKT_TX_L4_MASK;
767         const uint64_t inner_ip =
768                 buf->ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6);
769         const uint64_t ol_flags_mask = PKT_TX_L4_MASK | PKT_TX_IPV6 |
770                                        PKT_TX_OUTER_IPV6;
771         uint16_t idx;
772         uint16_t off;
773
774         if (likely(!txq->swp_en || (tunnel != PKT_TX_TUNNEL_UDP &&
775                                     tunnel != PKT_TX_TUNNEL_IP)))
776                 return;
777         /*
778          * The index should have:
779          * bit[0:1] = PKT_TX_L4_MASK
780          * bit[4] = PKT_TX_IPV6
781          * bit[8] = PKT_TX_OUTER_IPV6
782          * bit[9] = PKT_TX_OUTER_UDP
783          */
784         idx = (buf->ol_flags & ol_flags_mask) >> 52;
785         if (tunnel == PKT_TX_TUNNEL_UDP)
786                 idx |= 1 << 9;
787         *swp_types = mlx5_swp_types_table[idx];
788         /*
789          * Set offsets for SW parser. Since ConnectX-5, SW parser just
790          * complements HW parser. SW parser starts to engage only if HW parser
791          * can't reach a header. For the older devices, HW parser will not kick
792          * in if any of SWP offsets is set. Therefore, all of the L3 offsets
793          * should be set regardless of HW offload.
794          */
795         off = buf->outer_l2_len + (vlan ? sizeof(struct vlan_hdr) : 0);
796         offsets[1] = off >> 1; /* Outer L3 offset. */
797         off += buf->outer_l3_len;
798         if (tunnel == PKT_TX_TUNNEL_UDP)
799                 offsets[0] = off >> 1; /* Outer L4 offset. */
800         if (inner_ip) {
801                 off += buf->l2_len;
802                 offsets[3] = off >> 1; /* Inner L3 offset. */
803                 if (csum_flags == PKT_TX_TCP_CKSUM || tso ||
804                     csum_flags == PKT_TX_UDP_CKSUM) {
805                         off += buf->l3_len;
806                         offsets[2] = off >> 1; /* Inner L4 offset. */
807                 }
808         }
809 }
810
811 /**
812  * Convert the Checksum offloads to Verbs.
813  *
814  * @param buf
815  *   Pointer to the mbuf.
816  *
817  * @return
818  *   Converted checksum flags.
819  */
820 static __rte_always_inline uint8_t
821 txq_ol_cksum_to_cs(struct rte_mbuf *buf)
822 {
823         uint32_t idx;
824         uint8_t is_tunnel = !!(buf->ol_flags & PKT_TX_TUNNEL_MASK);
825         const uint64_t ol_flags_mask = PKT_TX_TCP_SEG | PKT_TX_L4_MASK |
826                                        PKT_TX_IP_CKSUM | PKT_TX_OUTER_IP_CKSUM;
827
828         /*
829          * The index should have:
830          * bit[0] = PKT_TX_TCP_SEG
831          * bit[2:3] = PKT_TX_UDP_CKSUM, PKT_TX_TCP_CKSUM
832          * bit[4] = PKT_TX_IP_CKSUM
833          * bit[8] = PKT_TX_OUTER_IP_CKSUM
834          * bit[9] = tunnel
835          */
836         idx = ((buf->ol_flags & ol_flags_mask) >> 50) | (!!is_tunnel << 9);
837         return mlx5_cksum_table[idx];
838 }
839
840 /**
841  * Count the number of contiguous single segment packets.
842  *
843  * @param pkts
844  *   Pointer to array of packets.
845  * @param pkts_n
846  *   Number of packets.
847  *
848  * @return
849  *   Number of contiguous single segment packets.
850  */
851 static __rte_always_inline unsigned int
852 txq_count_contig_single_seg(struct rte_mbuf **pkts, uint16_t pkts_n)
853 {
854         unsigned int pos;
855
856         if (!pkts_n)
857                 return 0;
858         /* Count the number of contiguous single segment packets. */
859         for (pos = 0; pos < pkts_n; ++pos)
860                 if (NB_SEGS(pkts[pos]) > 1)
861                         break;
862         return pos;
863 }
864
865 /**
866  * Count the number of contiguous multi-segment packets.
867  *
868  * @param pkts
869  *   Pointer to array of packets.
870  * @param pkts_n
871  *   Number of packets.
872  *
873  * @return
874  *   Number of contiguous multi-segment packets.
875  */
876 static __rte_always_inline unsigned int
877 txq_count_contig_multi_seg(struct rte_mbuf **pkts, uint16_t pkts_n)
878 {
879         unsigned int pos;
880
881         if (!pkts_n)
882                 return 0;
883         /* Count the number of contiguous multi-segment packets. */
884         for (pos = 0; pos < pkts_n; ++pos)
885                 if (NB_SEGS(pkts[pos]) == 1)
886                         break;
887         return pos;
888 }
889
890 #endif /* RTE_PMD_MLX5_RXTX_H_ */