4 * Copyright 2015 6WIND S.A.
5 * Copyright 2015 Mellanox.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of 6WIND S.A. nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
42 #pragma GCC diagnostic ignored "-Wpedantic"
44 #include <infiniband/verbs.h>
45 #include <infiniband/mlx5_hw.h>
46 #include <infiniband/arch.h>
48 #pragma GCC diagnostic error "-Wpedantic"
52 #include <rte_mempool.h>
53 #include <rte_prefetch.h>
54 #include <rte_common.h>
55 #include <rte_branch_prediction.h>
56 #include <rte_ether.h>
59 #include "mlx5_utils.h"
60 #include "mlx5_rxtx.h"
61 #include "mlx5_autoconf.h"
62 #include "mlx5_defs.h"
65 static __rte_always_inline uint32_t
66 rxq_cq_to_pkt_type(volatile struct mlx5_cqe *cqe);
68 static __rte_always_inline int
69 mlx5_rx_poll_len(struct rxq *rxq, volatile struct mlx5_cqe *cqe,
70 uint16_t cqe_cnt, uint32_t *rss_hash);
72 static __rte_always_inline uint32_t
73 rxq_cq_to_ol_flags(struct rxq *rxq, volatile struct mlx5_cqe *cqe);
75 uint32_t mlx5_ptype_table[] __rte_cache_aligned = {
76 [0xff] = RTE_PTYPE_ALL_MASK, /* Last entry for errored packet. */
80 * Build a table to translate Rx completion flags to packet type.
82 * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
85 mlx5_set_ptype_table(void)
88 uint32_t (*p)[RTE_DIM(mlx5_ptype_table)] = &mlx5_ptype_table;
90 /* Last entry must not be overwritten, reserved for errored packet. */
91 for (i = 0; i < RTE_DIM(mlx5_ptype_table) - 1; ++i)
92 (*p)[i] = RTE_PTYPE_UNKNOWN;
94 * The index to the array should have:
95 * bit[1:0] = l3_hdr_type
96 * bit[4:2] = l4_hdr_type
99 * bit[7] = outer_l3_type
102 (*p)[0x01] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
103 RTE_PTYPE_L4_NONFRAG;
104 (*p)[0x02] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
105 RTE_PTYPE_L4_NONFRAG;
107 (*p)[0x21] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
109 (*p)[0x22] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
112 (*p)[0x05] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
114 (*p)[0x06] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
117 (*p)[0x09] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
119 (*p)[0x0a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
121 /* Repeat with outer_l3_type being set. Just in case. */
122 (*p)[0x81] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
123 RTE_PTYPE_L4_NONFRAG;
124 (*p)[0x82] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
125 RTE_PTYPE_L4_NONFRAG;
126 (*p)[0xa1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
128 (*p)[0xa2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
130 (*p)[0x85] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
132 (*p)[0x86] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
134 (*p)[0x89] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
136 (*p)[0x8a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
139 (*p)[0x41] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
140 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
141 RTE_PTYPE_INNER_L4_NONFRAG;
142 (*p)[0x42] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
143 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
144 RTE_PTYPE_INNER_L4_NONFRAG;
145 (*p)[0xc1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
146 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
147 RTE_PTYPE_INNER_L4_NONFRAG;
148 (*p)[0xc2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
149 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
150 RTE_PTYPE_INNER_L4_NONFRAG;
151 /* Tunneled - Fragmented */
152 (*p)[0x61] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
153 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
154 RTE_PTYPE_INNER_L4_FRAG;
155 (*p)[0x62] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
156 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
157 RTE_PTYPE_INNER_L4_FRAG;
158 (*p)[0xe1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
159 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
160 RTE_PTYPE_INNER_L4_FRAG;
161 (*p)[0xe2] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
162 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
163 RTE_PTYPE_INNER_L4_FRAG;
165 (*p)[0x45] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
166 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
168 (*p)[0x46] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
169 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
171 (*p)[0xc5] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
172 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
174 (*p)[0xc6] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
175 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
178 (*p)[0x49] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
179 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
181 (*p)[0x4a] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
182 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
184 (*p)[0xc9] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
185 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
187 (*p)[0xca] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
188 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
193 * Return the size of tailroom of WQ.
196 * Pointer to TX queue structure.
198 * Pointer to tail of WQ.
204 tx_mlx5_wq_tailroom(struct txq *txq, void *addr)
207 tailroom = (uintptr_t)(txq->wqes) +
208 (1 << txq->wqe_n) * MLX5_WQE_SIZE -
214 * Copy data to tailroom of circular queue.
217 * Pointer to destination.
221 * Number of bytes to copy.
223 * Pointer to head of queue.
225 * Size of tailroom from dst.
228 * Pointer after copied data.
231 mlx5_copy_to_wq(void *dst, const void *src, size_t n,
232 void *base, size_t tailroom)
237 rte_memcpy(dst, src, tailroom);
238 rte_memcpy(base, (void *)((uintptr_t)src + tailroom),
240 ret = (uint8_t *)base + n - tailroom;
242 rte_memcpy(dst, src, n);
243 ret = (n == tailroom) ? base : (uint8_t *)dst + n;
249 * DPDK callback to check the status of a tx descriptor.
254 * The index of the descriptor in the ring.
257 * The status of the tx descriptor.
260 mlx5_tx_descriptor_status(void *tx_queue, uint16_t offset)
262 struct txq *txq = tx_queue;
265 mlx5_tx_complete(txq);
266 used = txq->elts_head - txq->elts_tail;
268 return RTE_ETH_TX_DESC_FULL;
269 return RTE_ETH_TX_DESC_DONE;
273 * DPDK callback to check the status of a rx descriptor.
278 * The index of the descriptor in the ring.
281 * The status of the tx descriptor.
284 mlx5_rx_descriptor_status(void *rx_queue, uint16_t offset)
286 struct rxq *rxq = rx_queue;
287 struct rxq_zip *zip = &rxq->zip;
288 volatile struct mlx5_cqe *cqe;
289 const unsigned int cqe_n = (1 << rxq->cqe_n);
290 const unsigned int cqe_cnt = cqe_n - 1;
294 /* if we are processing a compressed cqe */
296 used = zip->cqe_cnt - zip->ca;
302 cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
303 while (check_cqe(cqe, cqe_n, cq_ci) == 0) {
307 op_own = cqe->op_own;
308 if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED)
309 n = rte_be_to_cpu_32(cqe->byte_cnt);
314 cqe = &(*rxq->cqes)[cq_ci & cqe_cnt];
316 used = RTE_MIN(used, (1U << rxq->elts_n) - 1);
318 return RTE_ETH_RX_DESC_DONE;
319 return RTE_ETH_RX_DESC_AVAIL;
323 * DPDK callback for TX.
326 * Generic pointer to TX queue structure.
328 * Packets to transmit.
330 * Number of packets in array.
333 * Number of packets successfully transmitted (<= pkts_n).
336 mlx5_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
338 struct txq *txq = (struct txq *)dpdk_txq;
339 uint16_t elts_head = txq->elts_head;
340 const uint16_t elts_n = 1 << txq->elts_n;
341 const uint16_t elts_m = elts_n - 1;
346 unsigned int max_inline = txq->max_inline;
347 const unsigned int inline_en = !!max_inline && txq->inline_en;
350 volatile struct mlx5_wqe_v *wqe = NULL;
351 volatile struct mlx5_wqe_ctrl *last_wqe = NULL;
352 unsigned int segs_n = 0;
353 struct rte_mbuf *buf = NULL;
356 if (unlikely(!pkts_n))
358 /* Prefetch first packet cacheline. */
359 rte_prefetch0(*pkts);
360 /* Start processing. */
361 mlx5_tx_complete(txq);
362 max_elts = (elts_n - (elts_head - txq->elts_tail));
363 max_wqe = (1u << txq->wqe_n) - (txq->wqe_ci - txq->wqe_pi);
364 if (unlikely(!max_wqe))
367 volatile rte_v128u32_t *dseg = NULL;
370 unsigned int sg = 0; /* counter of additional segs attached. */
373 uint16_t pkt_inline_sz = MLX5_WQE_DWORD_SIZE + 2;
374 uint16_t tso_header_sz = 0;
376 uint8_t cs_flags = 0;
378 uint16_t tso_segsz = 0;
379 #ifdef MLX5_PMD_SOFT_COUNTERS
380 uint32_t total_length = 0;
385 segs_n = buf->nb_segs;
387 * Make sure there is enough room to store this packet and
388 * that one ring entry remains unused.
391 if (max_elts < segs_n)
395 if (unlikely(--max_wqe == 0))
397 wqe = (volatile struct mlx5_wqe_v *)
398 tx_mlx5_wqe(txq, txq->wqe_ci);
399 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci + 1));
401 rte_prefetch0(*(pkts + 1));
402 addr = rte_pktmbuf_mtod(buf, uintptr_t);
403 length = DATA_LEN(buf);
404 ehdr = (((uint8_t *)addr)[1] << 8) |
405 ((uint8_t *)addr)[0];
406 #ifdef MLX5_PMD_SOFT_COUNTERS
407 total_length = length;
409 if (length < (MLX5_WQE_DWORD_SIZE + 2)) {
410 txq->stats.oerrors++;
413 /* Update element. */
414 (*txq->elts)[elts_head & elts_m] = buf;
415 /* Prefetch next buffer data. */
418 rte_pktmbuf_mtod(*(pkts + 1), volatile void *));
419 /* Should we enable HW CKSUM offload */
421 (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM)) {
422 const uint64_t is_tunneled = buf->ol_flags &
424 PKT_TX_TUNNEL_VXLAN);
426 if (is_tunneled && txq->tunnel_en) {
427 cs_flags = MLX5_ETH_WQE_L3_INNER_CSUM |
428 MLX5_ETH_WQE_L4_INNER_CSUM;
429 if (buf->ol_flags & PKT_TX_OUTER_IP_CKSUM)
430 cs_flags |= MLX5_ETH_WQE_L3_CSUM;
432 cs_flags = MLX5_ETH_WQE_L3_CSUM |
433 MLX5_ETH_WQE_L4_CSUM;
436 raw = ((uint8_t *)(uintptr_t)wqe) + 2 * MLX5_WQE_DWORD_SIZE;
437 /* Replace the Ethernet type by the VLAN if necessary. */
438 if (buf->ol_flags & PKT_TX_VLAN_PKT) {
439 uint32_t vlan = rte_cpu_to_be_32(0x81000000 |
441 unsigned int len = 2 * ETHER_ADDR_LEN - 2;
445 /* Copy Destination and source mac address. */
446 memcpy((uint8_t *)raw, ((uint8_t *)addr), len);
448 memcpy((uint8_t *)raw + len, &vlan, sizeof(vlan));
449 /* Copy missing two bytes to end the DSeg. */
450 memcpy((uint8_t *)raw + len + sizeof(vlan),
451 ((uint8_t *)addr) + len, 2);
455 memcpy((uint8_t *)raw, ((uint8_t *)addr) + 2,
456 MLX5_WQE_DWORD_SIZE);
457 length -= pkt_inline_sz;
458 addr += pkt_inline_sz;
460 raw += MLX5_WQE_DWORD_SIZE;
462 tso = buf->ol_flags & PKT_TX_TCP_SEG;
464 uintptr_t end = (uintptr_t)
465 (((uintptr_t)txq->wqes) +
469 uint8_t vlan_sz = (buf->ol_flags &
470 PKT_TX_VLAN_PKT) ? 4 : 0;
471 const uint64_t is_tunneled =
474 PKT_TX_TUNNEL_VXLAN);
476 tso_header_sz = buf->l2_len + vlan_sz +
477 buf->l3_len + buf->l4_len;
478 tso_segsz = buf->tso_segsz;
479 if (unlikely(tso_segsz == 0)) {
480 txq->stats.oerrors++;
483 if (is_tunneled && txq->tunnel_en) {
484 tso_header_sz += buf->outer_l2_len +
486 cs_flags |= MLX5_ETH_WQE_L4_INNER_CSUM;
488 cs_flags |= MLX5_ETH_WQE_L4_CSUM;
490 if (unlikely(tso_header_sz >
491 MLX5_MAX_TSO_HEADER)) {
492 txq->stats.oerrors++;
495 copy_b = tso_header_sz - pkt_inline_sz;
496 /* First seg must contain all headers. */
497 assert(copy_b <= length);
499 ((end - (uintptr_t)raw) > copy_b)) {
500 uint16_t n = (MLX5_WQE_DS(copy_b) -
503 if (unlikely(max_wqe < n))
506 rte_memcpy((void *)raw,
507 (void *)addr, copy_b);
510 /* Include padding for TSO header. */
511 copy_b = MLX5_WQE_DS(copy_b) *
513 pkt_inline_sz += copy_b;
517 wqe->ctrl = (rte_v128u32_t){
532 /* Inline if enough room. */
533 if (inline_en || tso) {
535 uintptr_t end = (uintptr_t)
536 (((uintptr_t)txq->wqes) +
537 (1 << txq->wqe_n) * MLX5_WQE_SIZE);
538 unsigned int inline_room = max_inline *
539 RTE_CACHE_LINE_SIZE -
540 (pkt_inline_sz - 2) -
542 uintptr_t addr_end = (addr + inline_room) &
543 ~(RTE_CACHE_LINE_SIZE - 1);
544 unsigned int copy_b = (addr_end > addr) ?
545 RTE_MIN((addr_end - addr), length) :
548 if (copy_b && ((end - (uintptr_t)raw) > copy_b)) {
550 * One Dseg remains in the current WQE. To
551 * keep the computation positive, it is
552 * removed after the bytes to Dseg conversion.
554 uint16_t n = (MLX5_WQE_DS(copy_b) - 1 + 3) / 4;
556 if (unlikely(max_wqe < n))
561 rte_cpu_to_be_32(copy_b |
565 MLX5_WQE_DS(tso_header_sz) *
568 rte_memcpy((void *)raw,
569 (void *)&inl, sizeof(inl));
571 pkt_inline_sz += sizeof(inl);
573 rte_memcpy((void *)raw, (void *)addr, copy_b);
576 pkt_inline_sz += copy_b;
579 * 2 DWORDs consumed by the WQE header + ETH segment +
580 * the size of the inline part of the packet.
582 ds = 2 + MLX5_WQE_DS(pkt_inline_sz - 2);
584 if (ds % (MLX5_WQE_SIZE /
585 MLX5_WQE_DWORD_SIZE) == 0) {
586 if (unlikely(--max_wqe == 0))
588 dseg = (volatile rte_v128u32_t *)
589 tx_mlx5_wqe(txq, txq->wqe_ci +
592 dseg = (volatile rte_v128u32_t *)
594 (ds * MLX5_WQE_DWORD_SIZE));
597 } else if (!segs_n) {
600 /* dseg will be advance as part of next_seg */
601 dseg = (volatile rte_v128u32_t *)
603 ((ds - 1) * MLX5_WQE_DWORD_SIZE));
608 * No inline has been done in the packet, only the
609 * Ethernet Header as been stored.
611 dseg = (volatile rte_v128u32_t *)
612 ((uintptr_t)wqe + (3 * MLX5_WQE_DWORD_SIZE));
615 /* Add the remaining packet as a simple ds. */
616 naddr = rte_cpu_to_be_64(addr);
617 *dseg = (rte_v128u32_t){
618 rte_cpu_to_be_32(length),
619 mlx5_tx_mb2mr(txq, buf),
632 * Spill on next WQE when the current one does not have
633 * enough room left. Size of WQE must a be a multiple
634 * of data segment size.
636 assert(!(MLX5_WQE_SIZE % MLX5_WQE_DWORD_SIZE));
637 if (!(ds % (MLX5_WQE_SIZE / MLX5_WQE_DWORD_SIZE))) {
638 if (unlikely(--max_wqe == 0))
640 dseg = (volatile rte_v128u32_t *)
641 tx_mlx5_wqe(txq, txq->wqe_ci + ds / 4);
642 rte_prefetch0(tx_mlx5_wqe(txq,
643 txq->wqe_ci + ds / 4 + 1));
650 length = DATA_LEN(buf);
651 #ifdef MLX5_PMD_SOFT_COUNTERS
652 total_length += length;
654 /* Store segment information. */
655 naddr = rte_cpu_to_be_64(rte_pktmbuf_mtod(buf, uintptr_t));
656 *dseg = (rte_v128u32_t){
657 rte_cpu_to_be_32(length),
658 mlx5_tx_mb2mr(txq, buf),
662 (*txq->elts)[++elts_head & elts_m] = buf;
664 /* Advance counter only if all segs are successfully posted. */
670 if (ds > MLX5_DSEG_MAX) {
671 txq->stats.oerrors++;
677 /* Initialize known and common part of the WQE structure. */
679 wqe->ctrl = (rte_v128u32_t){
680 rte_cpu_to_be_32((txq->wqe_ci << 8) |
682 rte_cpu_to_be_32(txq->qp_num_8s | ds),
686 wqe->eseg = (rte_v128u32_t){
688 cs_flags | (rte_cpu_to_be_16(tso_segsz) << 16),
690 (ehdr << 16) | rte_cpu_to_be_16(tso_header_sz),
693 wqe->ctrl = (rte_v128u32_t){
694 rte_cpu_to_be_32((txq->wqe_ci << 8) |
696 rte_cpu_to_be_32(txq->qp_num_8s | ds),
700 wqe->eseg = (rte_v128u32_t){
704 (ehdr << 16) | rte_cpu_to_be_16(pkt_inline_sz),
708 txq->wqe_ci += (ds + 3) / 4;
709 /* Save the last successful WQE for completion request */
710 last_wqe = (volatile struct mlx5_wqe_ctrl *)wqe;
711 #ifdef MLX5_PMD_SOFT_COUNTERS
712 /* Increment sent bytes counter. */
713 txq->stats.obytes += total_length;
715 } while (i < pkts_n);
716 /* Take a shortcut if nothing must be sent. */
717 if (unlikely((i + k) == 0))
719 txq->elts_head += (i + j);
720 /* Check whether completion threshold has been reached. */
721 comp = txq->elts_comp + i + j + k;
722 if (comp >= MLX5_TX_COMP_THRESH) {
723 /* Request completion on last WQE. */
724 last_wqe->ctrl2 = rte_cpu_to_be_32(8);
725 /* Save elts_head in unused "immediate" field of WQE. */
726 last_wqe->ctrl3 = txq->elts_head;
729 txq->elts_comp = comp;
731 #ifdef MLX5_PMD_SOFT_COUNTERS
732 /* Increment sent packets counter. */
733 txq->stats.opackets += i;
735 /* Ring QP doorbell. */
736 mlx5_tx_dbrec(txq, (volatile struct mlx5_wqe *)last_wqe);
741 * Open a MPW session.
744 * Pointer to TX queue structure.
746 * Pointer to MPW session structure.
751 mlx5_mpw_new(struct txq *txq, struct mlx5_mpw *mpw, uint32_t length)
753 uint16_t idx = txq->wqe_ci & ((1 << txq->wqe_n) - 1);
754 volatile struct mlx5_wqe_data_seg (*dseg)[MLX5_MPW_DSEG_MAX] =
755 (volatile struct mlx5_wqe_data_seg (*)[])
756 tx_mlx5_wqe(txq, idx + 1);
758 mpw->state = MLX5_MPW_STATE_OPENED;
762 mpw->wqe = (volatile struct mlx5_wqe *)tx_mlx5_wqe(txq, idx);
763 mpw->wqe->eseg.mss = rte_cpu_to_be_16(length);
764 mpw->wqe->eseg.inline_hdr_sz = 0;
765 mpw->wqe->eseg.rsvd0 = 0;
766 mpw->wqe->eseg.rsvd1 = 0;
767 mpw->wqe->eseg.rsvd2 = 0;
768 mpw->wqe->ctrl[0] = rte_cpu_to_be_32((MLX5_OPC_MOD_MPW << 24) |
771 mpw->wqe->ctrl[2] = 0;
772 mpw->wqe->ctrl[3] = 0;
773 mpw->data.dseg[0] = (volatile struct mlx5_wqe_data_seg *)
774 (((uintptr_t)mpw->wqe) + (2 * MLX5_WQE_DWORD_SIZE));
775 mpw->data.dseg[1] = (volatile struct mlx5_wqe_data_seg *)
776 (((uintptr_t)mpw->wqe) + (3 * MLX5_WQE_DWORD_SIZE));
777 mpw->data.dseg[2] = &(*dseg)[0];
778 mpw->data.dseg[3] = &(*dseg)[1];
779 mpw->data.dseg[4] = &(*dseg)[2];
783 * Close a MPW session.
786 * Pointer to TX queue structure.
788 * Pointer to MPW session structure.
791 mlx5_mpw_close(struct txq *txq, struct mlx5_mpw *mpw)
793 unsigned int num = mpw->pkts_n;
796 * Store size in multiple of 16 bytes. Control and Ethernet segments
799 mpw->wqe->ctrl[1] = rte_cpu_to_be_32(txq->qp_num_8s | (2 + num));
800 mpw->state = MLX5_MPW_STATE_CLOSED;
805 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci));
806 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci + 1));
810 * DPDK callback for TX with MPW support.
813 * Generic pointer to TX queue structure.
815 * Packets to transmit.
817 * Number of packets in array.
820 * Number of packets successfully transmitted (<= pkts_n).
823 mlx5_tx_burst_mpw(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
825 struct txq *txq = (struct txq *)dpdk_txq;
826 uint16_t elts_head = txq->elts_head;
827 const uint16_t elts_n = 1 << txq->elts_n;
828 const uint16_t elts_m = elts_n - 1;
834 struct mlx5_mpw mpw = {
835 .state = MLX5_MPW_STATE_CLOSED,
838 if (unlikely(!pkts_n))
840 /* Prefetch first packet cacheline. */
841 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci));
842 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci + 1));
843 /* Start processing. */
844 mlx5_tx_complete(txq);
845 max_elts = (elts_n - (elts_head - txq->elts_tail));
846 max_wqe = (1u << txq->wqe_n) - (txq->wqe_ci - txq->wqe_pi);
847 if (unlikely(!max_wqe))
850 struct rte_mbuf *buf = *(pkts++);
852 unsigned int segs_n = buf->nb_segs;
853 uint32_t cs_flags = 0;
856 * Make sure there is enough room to store this packet and
857 * that one ring entry remains unused.
860 if (max_elts < segs_n)
862 /* Do not bother with large packets MPW cannot handle. */
863 if (segs_n > MLX5_MPW_DSEG_MAX) {
864 txq->stats.oerrors++;
869 /* Should we enable HW CKSUM offload */
871 (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM))
872 cs_flags = MLX5_ETH_WQE_L3_CSUM | MLX5_ETH_WQE_L4_CSUM;
873 /* Retrieve packet information. */
874 length = PKT_LEN(buf);
876 /* Start new session if packet differs. */
877 if ((mpw.state == MLX5_MPW_STATE_OPENED) &&
878 ((mpw.len != length) ||
880 (mpw.wqe->eseg.cs_flags != cs_flags)))
881 mlx5_mpw_close(txq, &mpw);
882 if (mpw.state == MLX5_MPW_STATE_CLOSED) {
884 * Multi-Packet WQE consumes at most two WQE.
885 * mlx5_mpw_new() expects to be able to use such
888 if (unlikely(max_wqe < 2))
891 mlx5_mpw_new(txq, &mpw, length);
892 mpw.wqe->eseg.cs_flags = cs_flags;
894 /* Multi-segment packets must be alone in their MPW. */
895 assert((segs_n == 1) || (mpw.pkts_n == 0));
896 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
900 volatile struct mlx5_wqe_data_seg *dseg;
904 (*txq->elts)[elts_head++ & elts_m] = buf;
905 dseg = mpw.data.dseg[mpw.pkts_n];
906 addr = rte_pktmbuf_mtod(buf, uintptr_t);
907 *dseg = (struct mlx5_wqe_data_seg){
908 .byte_count = rte_cpu_to_be_32(DATA_LEN(buf)),
909 .lkey = mlx5_tx_mb2mr(txq, buf),
910 .addr = rte_cpu_to_be_64(addr),
912 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
913 length += DATA_LEN(buf);
919 assert(length == mpw.len);
920 if (mpw.pkts_n == MLX5_MPW_DSEG_MAX)
921 mlx5_mpw_close(txq, &mpw);
922 #ifdef MLX5_PMD_SOFT_COUNTERS
923 /* Increment sent bytes counter. */
924 txq->stats.obytes += length;
928 /* Take a shortcut if nothing must be sent. */
929 if (unlikely(i == 0))
931 /* Check whether completion threshold has been reached. */
932 /* "j" includes both packets and segments. */
933 comp = txq->elts_comp + j;
934 if (comp >= MLX5_TX_COMP_THRESH) {
935 volatile struct mlx5_wqe *wqe = mpw.wqe;
937 /* Request completion on last WQE. */
938 wqe->ctrl[2] = rte_cpu_to_be_32(8);
939 /* Save elts_head in unused "immediate" field of WQE. */
940 wqe->ctrl[3] = elts_head;
943 txq->elts_comp = comp;
945 #ifdef MLX5_PMD_SOFT_COUNTERS
946 /* Increment sent packets counter. */
947 txq->stats.opackets += i;
949 /* Ring QP doorbell. */
950 if (mpw.state == MLX5_MPW_STATE_OPENED)
951 mlx5_mpw_close(txq, &mpw);
952 mlx5_tx_dbrec(txq, mpw.wqe);
953 txq->elts_head = elts_head;
958 * Open a MPW inline session.
961 * Pointer to TX queue structure.
963 * Pointer to MPW session structure.
968 mlx5_mpw_inline_new(struct txq *txq, struct mlx5_mpw *mpw, uint32_t length)
970 uint16_t idx = txq->wqe_ci & ((1 << txq->wqe_n) - 1);
971 struct mlx5_wqe_inl_small *inl;
973 mpw->state = MLX5_MPW_INL_STATE_OPENED;
977 mpw->wqe = (volatile struct mlx5_wqe *)tx_mlx5_wqe(txq, idx);
978 mpw->wqe->ctrl[0] = rte_cpu_to_be_32((MLX5_OPC_MOD_MPW << 24) |
981 mpw->wqe->ctrl[2] = 0;
982 mpw->wqe->ctrl[3] = 0;
983 mpw->wqe->eseg.mss = rte_cpu_to_be_16(length);
984 mpw->wqe->eseg.inline_hdr_sz = 0;
985 mpw->wqe->eseg.cs_flags = 0;
986 mpw->wqe->eseg.rsvd0 = 0;
987 mpw->wqe->eseg.rsvd1 = 0;
988 mpw->wqe->eseg.rsvd2 = 0;
989 inl = (struct mlx5_wqe_inl_small *)
990 (((uintptr_t)mpw->wqe) + 2 * MLX5_WQE_DWORD_SIZE);
991 mpw->data.raw = (uint8_t *)&inl->raw;
995 * Close a MPW inline session.
998 * Pointer to TX queue structure.
1000 * Pointer to MPW session structure.
1003 mlx5_mpw_inline_close(struct txq *txq, struct mlx5_mpw *mpw)
1006 struct mlx5_wqe_inl_small *inl = (struct mlx5_wqe_inl_small *)
1007 (((uintptr_t)mpw->wqe) + (2 * MLX5_WQE_DWORD_SIZE));
1009 size = MLX5_WQE_SIZE - MLX5_MWQE64_INL_DATA + mpw->total_len;
1011 * Store size in multiple of 16 bytes. Control and Ethernet segments
1014 mpw->wqe->ctrl[1] = rte_cpu_to_be_32(txq->qp_num_8s |
1016 mpw->state = MLX5_MPW_STATE_CLOSED;
1017 inl->byte_cnt = rte_cpu_to_be_32(mpw->total_len | MLX5_INLINE_SEG);
1018 txq->wqe_ci += (size + (MLX5_WQE_SIZE - 1)) / MLX5_WQE_SIZE;
1022 * DPDK callback for TX with MPW inline support.
1025 * Generic pointer to TX queue structure.
1027 * Packets to transmit.
1029 * Number of packets in array.
1032 * Number of packets successfully transmitted (<= pkts_n).
1035 mlx5_tx_burst_mpw_inline(void *dpdk_txq, struct rte_mbuf **pkts,
1038 struct txq *txq = (struct txq *)dpdk_txq;
1039 uint16_t elts_head = txq->elts_head;
1040 const uint16_t elts_n = 1 << txq->elts_n;
1041 const uint16_t elts_m = elts_n - 1;
1047 unsigned int inline_room = txq->max_inline * RTE_CACHE_LINE_SIZE;
1048 struct mlx5_mpw mpw = {
1049 .state = MLX5_MPW_STATE_CLOSED,
1052 * Compute the maximum number of WQE which can be consumed by inline
1055 * - 1 control segment,
1056 * - 1 Ethernet segment,
1057 * - N Dseg from the inline request.
1059 const unsigned int wqe_inl_n =
1060 ((2 * MLX5_WQE_DWORD_SIZE +
1061 txq->max_inline * RTE_CACHE_LINE_SIZE) +
1062 RTE_CACHE_LINE_SIZE - 1) / RTE_CACHE_LINE_SIZE;
1064 if (unlikely(!pkts_n))
1066 /* Prefetch first packet cacheline. */
1067 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci));
1068 rte_prefetch0(tx_mlx5_wqe(txq, txq->wqe_ci + 1));
1069 /* Start processing. */
1070 mlx5_tx_complete(txq);
1071 max_elts = (elts_n - (elts_head - txq->elts_tail));
1073 struct rte_mbuf *buf = *(pkts++);
1076 unsigned int segs_n = buf->nb_segs;
1077 uint32_t cs_flags = 0;
1080 * Make sure there is enough room to store this packet and
1081 * that one ring entry remains unused.
1084 if (max_elts < segs_n)
1086 /* Do not bother with large packets MPW cannot handle. */
1087 if (segs_n > MLX5_MPW_DSEG_MAX) {
1088 txq->stats.oerrors++;
1094 * Compute max_wqe in case less WQE were consumed in previous
1097 max_wqe = (1u << txq->wqe_n) - (txq->wqe_ci - txq->wqe_pi);
1098 /* Should we enable HW CKSUM offload */
1100 (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM))
1101 cs_flags = MLX5_ETH_WQE_L3_CSUM | MLX5_ETH_WQE_L4_CSUM;
1102 /* Retrieve packet information. */
1103 length = PKT_LEN(buf);
1104 /* Start new session if packet differs. */
1105 if (mpw.state == MLX5_MPW_STATE_OPENED) {
1106 if ((mpw.len != length) ||
1108 (mpw.wqe->eseg.cs_flags != cs_flags))
1109 mlx5_mpw_close(txq, &mpw);
1110 } else if (mpw.state == MLX5_MPW_INL_STATE_OPENED) {
1111 if ((mpw.len != length) ||
1113 (length > inline_room) ||
1114 (mpw.wqe->eseg.cs_flags != cs_flags)) {
1115 mlx5_mpw_inline_close(txq, &mpw);
1117 txq->max_inline * RTE_CACHE_LINE_SIZE;
1120 if (mpw.state == MLX5_MPW_STATE_CLOSED) {
1121 if ((segs_n != 1) ||
1122 (length > inline_room)) {
1124 * Multi-Packet WQE consumes at most two WQE.
1125 * mlx5_mpw_new() expects to be able to use
1128 if (unlikely(max_wqe < 2))
1131 mlx5_mpw_new(txq, &mpw, length);
1132 mpw.wqe->eseg.cs_flags = cs_flags;
1134 if (unlikely(max_wqe < wqe_inl_n))
1136 max_wqe -= wqe_inl_n;
1137 mlx5_mpw_inline_new(txq, &mpw, length);
1138 mpw.wqe->eseg.cs_flags = cs_flags;
1141 /* Multi-segment packets must be alone in their MPW. */
1142 assert((segs_n == 1) || (mpw.pkts_n == 0));
1143 if (mpw.state == MLX5_MPW_STATE_OPENED) {
1144 assert(inline_room ==
1145 txq->max_inline * RTE_CACHE_LINE_SIZE);
1146 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
1150 volatile struct mlx5_wqe_data_seg *dseg;
1153 (*txq->elts)[elts_head++ & elts_m] = buf;
1154 dseg = mpw.data.dseg[mpw.pkts_n];
1155 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1156 *dseg = (struct mlx5_wqe_data_seg){
1158 rte_cpu_to_be_32(DATA_LEN(buf)),
1159 .lkey = mlx5_tx_mb2mr(txq, buf),
1160 .addr = rte_cpu_to_be_64(addr),
1162 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
1163 length += DATA_LEN(buf);
1169 assert(length == mpw.len);
1170 if (mpw.pkts_n == MLX5_MPW_DSEG_MAX)
1171 mlx5_mpw_close(txq, &mpw);
1175 assert(mpw.state == MLX5_MPW_INL_STATE_OPENED);
1176 assert(length <= inline_room);
1177 assert(length == DATA_LEN(buf));
1178 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1179 (*txq->elts)[elts_head++ & elts_m] = buf;
1180 /* Maximum number of bytes before wrapping. */
1181 max = ((((uintptr_t)(txq->wqes)) +
1184 (uintptr_t)mpw.data.raw);
1186 rte_memcpy((void *)(uintptr_t)mpw.data.raw,
1189 mpw.data.raw = (volatile void *)txq->wqes;
1190 rte_memcpy((void *)(uintptr_t)mpw.data.raw,
1191 (void *)(addr + max),
1193 mpw.data.raw += length - max;
1195 rte_memcpy((void *)(uintptr_t)mpw.data.raw,
1201 (volatile void *)txq->wqes;
1203 mpw.data.raw += length;
1206 mpw.total_len += length;
1208 if (mpw.pkts_n == MLX5_MPW_DSEG_MAX) {
1209 mlx5_mpw_inline_close(txq, &mpw);
1211 txq->max_inline * RTE_CACHE_LINE_SIZE;
1213 inline_room -= length;
1216 #ifdef MLX5_PMD_SOFT_COUNTERS
1217 /* Increment sent bytes counter. */
1218 txq->stats.obytes += length;
1222 /* Take a shortcut if nothing must be sent. */
1223 if (unlikely(i == 0))
1225 /* Check whether completion threshold has been reached. */
1226 /* "j" includes both packets and segments. */
1227 comp = txq->elts_comp + j;
1228 if (comp >= MLX5_TX_COMP_THRESH) {
1229 volatile struct mlx5_wqe *wqe = mpw.wqe;
1231 /* Request completion on last WQE. */
1232 wqe->ctrl[2] = rte_cpu_to_be_32(8);
1233 /* Save elts_head in unused "immediate" field of WQE. */
1234 wqe->ctrl[3] = elts_head;
1237 txq->elts_comp = comp;
1239 #ifdef MLX5_PMD_SOFT_COUNTERS
1240 /* Increment sent packets counter. */
1241 txq->stats.opackets += i;
1243 /* Ring QP doorbell. */
1244 if (mpw.state == MLX5_MPW_INL_STATE_OPENED)
1245 mlx5_mpw_inline_close(txq, &mpw);
1246 else if (mpw.state == MLX5_MPW_STATE_OPENED)
1247 mlx5_mpw_close(txq, &mpw);
1248 mlx5_tx_dbrec(txq, mpw.wqe);
1249 txq->elts_head = elts_head;
1254 * Open an Enhanced MPW session.
1257 * Pointer to TX queue structure.
1259 * Pointer to MPW session structure.
1264 mlx5_empw_new(struct txq *txq, struct mlx5_mpw *mpw, int padding)
1266 uint16_t idx = txq->wqe_ci & ((1 << txq->wqe_n) - 1);
1268 mpw->state = MLX5_MPW_ENHANCED_STATE_OPENED;
1270 mpw->total_len = sizeof(struct mlx5_wqe);
1271 mpw->wqe = (volatile struct mlx5_wqe *)tx_mlx5_wqe(txq, idx);
1273 rte_cpu_to_be_32((MLX5_OPC_MOD_ENHANCED_MPSW << 24) |
1274 (txq->wqe_ci << 8) |
1275 MLX5_OPCODE_ENHANCED_MPSW);
1276 mpw->wqe->ctrl[2] = 0;
1277 mpw->wqe->ctrl[3] = 0;
1278 memset((void *)(uintptr_t)&mpw->wqe->eseg, 0, MLX5_WQE_DWORD_SIZE);
1279 if (unlikely(padding)) {
1280 uintptr_t addr = (uintptr_t)(mpw->wqe + 1);
1282 /* Pad the first 2 DWORDs with zero-length inline header. */
1283 *(volatile uint32_t *)addr = rte_cpu_to_be_32(MLX5_INLINE_SEG);
1284 *(volatile uint32_t *)(addr + MLX5_WQE_DWORD_SIZE) =
1285 rte_cpu_to_be_32(MLX5_INLINE_SEG);
1286 mpw->total_len += 2 * MLX5_WQE_DWORD_SIZE;
1287 /* Start from the next WQEBB. */
1288 mpw->data.raw = (volatile void *)(tx_mlx5_wqe(txq, idx + 1));
1290 mpw->data.raw = (volatile void *)(mpw->wqe + 1);
1295 * Close an Enhanced MPW session.
1298 * Pointer to TX queue structure.
1300 * Pointer to MPW session structure.
1303 * Number of consumed WQEs.
1305 static inline uint16_t
1306 mlx5_empw_close(struct txq *txq, struct mlx5_mpw *mpw)
1310 /* Store size in multiple of 16 bytes. Control and Ethernet segments
1313 mpw->wqe->ctrl[1] = rte_cpu_to_be_32(txq->qp_num_8s |
1314 MLX5_WQE_DS(mpw->total_len));
1315 mpw->state = MLX5_MPW_STATE_CLOSED;
1316 ret = (mpw->total_len + (MLX5_WQE_SIZE - 1)) / MLX5_WQE_SIZE;
1322 * DPDK callback for TX with Enhanced MPW support.
1325 * Generic pointer to TX queue structure.
1327 * Packets to transmit.
1329 * Number of packets in array.
1332 * Number of packets successfully transmitted (<= pkts_n).
1335 mlx5_tx_burst_empw(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
1337 struct txq *txq = (struct txq *)dpdk_txq;
1338 uint16_t elts_head = txq->elts_head;
1339 const uint16_t elts_n = 1 << txq->elts_n;
1340 const uint16_t elts_m = elts_n - 1;
1345 unsigned int max_inline = txq->max_inline * RTE_CACHE_LINE_SIZE;
1346 unsigned int mpw_room = 0;
1347 unsigned int inl_pad = 0;
1349 struct mlx5_mpw mpw = {
1350 .state = MLX5_MPW_STATE_CLOSED,
1353 if (unlikely(!pkts_n))
1355 /* Start processing. */
1356 mlx5_tx_complete(txq);
1357 max_elts = (elts_n - (elts_head - txq->elts_tail));
1358 /* A CQE slot must always be available. */
1359 assert((1u << txq->cqe_n) - (txq->cq_pi - txq->cq_ci));
1360 max_wqe = (1u << txq->wqe_n) - (txq->wqe_ci - txq->wqe_pi);
1361 if (unlikely(!max_wqe))
1364 struct rte_mbuf *buf = *(pkts++);
1368 unsigned int do_inline = 0; /* Whether inline is possible. */
1370 unsigned int segs_n = buf->nb_segs;
1371 uint32_t cs_flags = 0;
1374 * Make sure there is enough room to store this packet and
1375 * that one ring entry remains unused.
1378 if (max_elts - j < segs_n)
1380 /* Do not bother with large packets MPW cannot handle. */
1381 if (segs_n > MLX5_MPW_DSEG_MAX) {
1382 txq->stats.oerrors++;
1385 /* Should we enable HW CKSUM offload. */
1387 (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM))
1388 cs_flags = MLX5_ETH_WQE_L3_CSUM | MLX5_ETH_WQE_L4_CSUM;
1389 /* Retrieve packet information. */
1390 length = PKT_LEN(buf);
1391 /* Start new session if:
1392 * - multi-segment packet
1393 * - no space left even for a dseg
1394 * - next packet can be inlined with a new WQE
1396 * It can't be MLX5_MPW_STATE_OPENED as always have a single
1399 if (mpw.state == MLX5_MPW_ENHANCED_STATE_OPENED) {
1400 if ((segs_n != 1) ||
1401 (inl_pad + sizeof(struct mlx5_wqe_data_seg) >
1403 (length <= txq->inline_max_packet_sz &&
1404 inl_pad + sizeof(inl_hdr) + length >
1406 (mpw.wqe->eseg.cs_flags != cs_flags))
1407 max_wqe -= mlx5_empw_close(txq, &mpw);
1409 if (unlikely(mpw.state == MLX5_MPW_STATE_CLOSED)) {
1410 if (unlikely(segs_n != 1)) {
1411 /* Fall back to legacy MPW.
1412 * A MPW session consumes 2 WQEs at most to
1413 * include MLX5_MPW_DSEG_MAX pointers.
1415 if (unlikely(max_wqe < 2))
1417 mlx5_mpw_new(txq, &mpw, length);
1419 /* In Enhanced MPW, inline as much as the budget
1420 * is allowed. The remaining space is to be
1421 * filled with dsegs. If the title WQEBB isn't
1422 * padded, it will have 2 dsegs there.
1424 mpw_room = RTE_MIN(MLX5_WQE_SIZE_MAX,
1425 (max_inline ? max_inline :
1426 pkts_n * MLX5_WQE_DWORD_SIZE) +
1428 if (unlikely(max_wqe * MLX5_WQE_SIZE <
1431 /* Don't pad the title WQEBB to not waste WQ. */
1432 mlx5_empw_new(txq, &mpw, 0);
1433 mpw_room -= mpw.total_len;
1436 length <= txq->inline_max_packet_sz &&
1437 sizeof(inl_hdr) + length <= mpw_room &&
1440 mpw.wqe->eseg.cs_flags = cs_flags;
1442 /* Evaluate whether the next packet can be inlined.
1443 * Inlininig is possible when:
1444 * - length is less than configured value
1445 * - length fits for remaining space
1446 * - not required to fill the title WQEBB with dsegs
1449 length <= txq->inline_max_packet_sz &&
1450 inl_pad + sizeof(inl_hdr) + length <=
1452 (!txq->mpw_hdr_dseg ||
1453 mpw.total_len >= MLX5_WQE_SIZE);
1455 /* Multi-segment packets must be alone in their MPW. */
1456 assert((segs_n == 1) || (mpw.pkts_n == 0));
1457 if (unlikely(mpw.state == MLX5_MPW_STATE_OPENED)) {
1458 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
1462 volatile struct mlx5_wqe_data_seg *dseg;
1465 (*txq->elts)[elts_head++ & elts_m] = buf;
1466 dseg = mpw.data.dseg[mpw.pkts_n];
1467 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1468 *dseg = (struct mlx5_wqe_data_seg){
1469 .byte_count = rte_cpu_to_be_32(
1471 .lkey = mlx5_tx_mb2mr(txq, buf),
1472 .addr = rte_cpu_to_be_64(addr),
1474 #if defined(MLX5_PMD_SOFT_COUNTERS) || !defined(NDEBUG)
1475 length += DATA_LEN(buf);
1481 /* A multi-segmented packet takes one MPW session.
1482 * TODO: Pack more multi-segmented packets if possible.
1484 mlx5_mpw_close(txq, &mpw);
1489 } else if (do_inline) {
1490 /* Inline packet into WQE. */
1493 assert(mpw.state == MLX5_MPW_ENHANCED_STATE_OPENED);
1494 assert(length == DATA_LEN(buf));
1495 inl_hdr = rte_cpu_to_be_32(length | MLX5_INLINE_SEG);
1496 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1497 mpw.data.raw = (volatile void *)
1498 ((uintptr_t)mpw.data.raw + inl_pad);
1499 max = tx_mlx5_wq_tailroom(txq,
1500 (void *)(uintptr_t)mpw.data.raw);
1501 /* Copy inline header. */
1502 mpw.data.raw = (volatile void *)
1504 (void *)(uintptr_t)mpw.data.raw,
1507 (void *)(uintptr_t)txq->wqes,
1509 max = tx_mlx5_wq_tailroom(txq,
1510 (void *)(uintptr_t)mpw.data.raw);
1511 /* Copy packet data. */
1512 mpw.data.raw = (volatile void *)
1514 (void *)(uintptr_t)mpw.data.raw,
1517 (void *)(uintptr_t)txq->wqes,
1520 mpw.total_len += (inl_pad + sizeof(inl_hdr) + length);
1521 /* No need to get completion as the entire packet is
1522 * copied to WQ. Free the buf right away.
1524 rte_pktmbuf_free_seg(buf);
1525 mpw_room -= (inl_pad + sizeof(inl_hdr) + length);
1526 /* Add pad in the next packet if any. */
1527 inl_pad = (((uintptr_t)mpw.data.raw +
1528 (MLX5_WQE_DWORD_SIZE - 1)) &
1529 ~(MLX5_WQE_DWORD_SIZE - 1)) -
1530 (uintptr_t)mpw.data.raw;
1532 /* No inline. Load a dseg of packet pointer. */
1533 volatile rte_v128u32_t *dseg;
1535 assert(mpw.state == MLX5_MPW_ENHANCED_STATE_OPENED);
1536 assert((inl_pad + sizeof(*dseg)) <= mpw_room);
1537 assert(length == DATA_LEN(buf));
1538 if (!tx_mlx5_wq_tailroom(txq,
1539 (void *)((uintptr_t)mpw.data.raw
1541 dseg = (volatile void *)txq->wqes;
1543 dseg = (volatile void *)
1544 ((uintptr_t)mpw.data.raw +
1546 (*txq->elts)[elts_head++ & elts_m] = buf;
1547 addr = rte_pktmbuf_mtod(buf, uintptr_t);
1548 for (n = 0; n * RTE_CACHE_LINE_SIZE < length; n++)
1549 rte_prefetch2((void *)(addr +
1550 n * RTE_CACHE_LINE_SIZE));
1551 naddr = rte_cpu_to_be_64(addr);
1552 *dseg = (rte_v128u32_t) {
1553 rte_cpu_to_be_32(length),
1554 mlx5_tx_mb2mr(txq, buf),
1558 mpw.data.raw = (volatile void *)(dseg + 1);
1559 mpw.total_len += (inl_pad + sizeof(*dseg));
1562 mpw_room -= (inl_pad + sizeof(*dseg));
1565 #ifdef MLX5_PMD_SOFT_COUNTERS
1566 /* Increment sent bytes counter. */
1567 txq->stats.obytes += length;
1570 } while (i < pkts_n);
1571 /* Take a shortcut if nothing must be sent. */
1572 if (unlikely(i == 0))
1574 /* Check whether completion threshold has been reached. */
1575 if (txq->elts_comp + j >= MLX5_TX_COMP_THRESH ||
1576 (uint16_t)(txq->wqe_ci - txq->mpw_comp) >=
1577 (1 << txq->wqe_n) / MLX5_TX_COMP_THRESH_INLINE_DIV) {
1578 volatile struct mlx5_wqe *wqe = mpw.wqe;
1580 /* Request completion on last WQE. */
1581 wqe->ctrl[2] = rte_cpu_to_be_32(8);
1582 /* Save elts_head in unused "immediate" field of WQE. */
1583 wqe->ctrl[3] = elts_head;
1585 txq->mpw_comp = txq->wqe_ci;
1588 txq->elts_comp += j;
1590 #ifdef MLX5_PMD_SOFT_COUNTERS
1591 /* Increment sent packets counter. */
1592 txq->stats.opackets += i;
1594 if (mpw.state == MLX5_MPW_ENHANCED_STATE_OPENED)
1595 mlx5_empw_close(txq, &mpw);
1596 else if (mpw.state == MLX5_MPW_STATE_OPENED)
1597 mlx5_mpw_close(txq, &mpw);
1598 /* Ring QP doorbell. */
1599 mlx5_tx_dbrec(txq, mpw.wqe);
1600 txq->elts_head = elts_head;
1605 * Translate RX completion flags to packet type.
1610 * @note: fix mlx5_dev_supported_ptypes_get() if any change here.
1613 * Packet type for struct rte_mbuf.
1615 static inline uint32_t
1616 rxq_cq_to_pkt_type(volatile struct mlx5_cqe *cqe)
1619 uint8_t pinfo = cqe->pkt_info;
1620 uint16_t ptype = cqe->hdr_type_etc;
1623 * The index to the array should have:
1624 * bit[1:0] = l3_hdr_type
1625 * bit[4:2] = l4_hdr_type
1628 * bit[7] = outer_l3_type
1630 idx = ((pinfo & 0x3) << 6) | ((ptype & 0xfc00) >> 10);
1631 return mlx5_ptype_table[idx];
1635 * Get size of the next packet for a given CQE. For compressed CQEs, the
1636 * consumer index is updated only once all packets of the current one have
1640 * Pointer to RX queue.
1643 * @param[out] rss_hash
1644 * Packet RSS Hash result.
1647 * Packet size in bytes (0 if there is none), -1 in case of completion
1651 mlx5_rx_poll_len(struct rxq *rxq, volatile struct mlx5_cqe *cqe,
1652 uint16_t cqe_cnt, uint32_t *rss_hash)
1654 struct rxq_zip *zip = &rxq->zip;
1655 uint16_t cqe_n = cqe_cnt + 1;
1659 /* Process compressed data in the CQE and mini arrays. */
1661 volatile struct mlx5_mini_cqe8 (*mc)[8] =
1662 (volatile struct mlx5_mini_cqe8 (*)[8])
1663 (uintptr_t)(&(*rxq->cqes)[zip->ca & cqe_cnt].pkt_info);
1665 len = rte_be_to_cpu_32((*mc)[zip->ai & 7].byte_cnt);
1666 *rss_hash = rte_be_to_cpu_32((*mc)[zip->ai & 7].rx_hash_result);
1667 if ((++zip->ai & 7) == 0) {
1668 /* Invalidate consumed CQEs */
1671 while (idx != end) {
1672 (*rxq->cqes)[idx & cqe_cnt].op_own =
1673 MLX5_CQE_INVALIDATE;
1677 * Increment consumer index to skip the number of
1678 * CQEs consumed. Hardware leaves holes in the CQ
1679 * ring for software use.
1684 if (unlikely(rxq->zip.ai == rxq->zip.cqe_cnt)) {
1685 /* Invalidate the rest */
1689 while (idx != end) {
1690 (*rxq->cqes)[idx & cqe_cnt].op_own =
1691 MLX5_CQE_INVALIDATE;
1694 rxq->cq_ci = zip->cq_ci;
1697 /* No compressed data, get next CQE and verify if it is compressed. */
1702 ret = check_cqe(cqe, cqe_n, rxq->cq_ci);
1703 if (unlikely(ret == 1))
1706 op_own = cqe->op_own;
1707 if (MLX5_CQE_FORMAT(op_own) == MLX5_COMPRESSED) {
1708 volatile struct mlx5_mini_cqe8 (*mc)[8] =
1709 (volatile struct mlx5_mini_cqe8 (*)[8])
1710 (uintptr_t)(&(*rxq->cqes)[rxq->cq_ci &
1713 /* Fix endianness. */
1714 zip->cqe_cnt = rte_be_to_cpu_32(cqe->byte_cnt);
1716 * Current mini array position is the one returned by
1719 * If completion comprises several mini arrays, as a
1720 * special case the second one is located 7 CQEs after
1721 * the initial CQE instead of 8 for subsequent ones.
1723 zip->ca = rxq->cq_ci;
1724 zip->na = zip->ca + 7;
1725 /* Compute the next non compressed CQE. */
1727 zip->cq_ci = rxq->cq_ci + zip->cqe_cnt;
1728 /* Get packet size to return. */
1729 len = rte_be_to_cpu_32((*mc)[0].byte_cnt);
1730 *rss_hash = rte_be_to_cpu_32((*mc)[0].rx_hash_result);
1732 /* Prefetch all the entries to be invalidated */
1735 while (idx != end) {
1736 rte_prefetch0(&(*rxq->cqes)[(idx) & cqe_cnt]);
1740 len = rte_be_to_cpu_32(cqe->byte_cnt);
1741 *rss_hash = rte_be_to_cpu_32(cqe->rx_hash_res);
1743 /* Error while receiving packet. */
1744 if (unlikely(MLX5_CQE_OPCODE(op_own) == MLX5_CQE_RESP_ERR))
1751 * Translate RX completion flags to offload flags.
1754 * Pointer to RX queue structure.
1759 * Offload flags (ol_flags) for struct rte_mbuf.
1761 static inline uint32_t
1762 rxq_cq_to_ol_flags(struct rxq *rxq, volatile struct mlx5_cqe *cqe)
1764 uint32_t ol_flags = 0;
1765 uint16_t flags = rte_be_to_cpu_16(cqe->hdr_type_etc);
1769 MLX5_CQE_RX_L3_HDR_VALID,
1770 PKT_RX_IP_CKSUM_GOOD) |
1772 MLX5_CQE_RX_L4_HDR_VALID,
1773 PKT_RX_L4_CKSUM_GOOD);
1774 if ((cqe->pkt_info & MLX5_CQE_RX_TUNNEL_PACKET) && (rxq->csum_l2tun))
1777 MLX5_CQE_RX_L3_HDR_VALID,
1778 PKT_RX_IP_CKSUM_GOOD) |
1780 MLX5_CQE_RX_L4_HDR_VALID,
1781 PKT_RX_L4_CKSUM_GOOD);
1786 * DPDK callback for RX.
1789 * Generic pointer to RX queue structure.
1791 * Array to store received packets.
1793 * Maximum number of packets in array.
1796 * Number of packets successfully received (<= pkts_n).
1799 mlx5_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1801 struct rxq *rxq = dpdk_rxq;
1802 const unsigned int wqe_cnt = (1 << rxq->elts_n) - 1;
1803 const unsigned int cqe_cnt = (1 << rxq->cqe_n) - 1;
1804 const unsigned int sges_n = rxq->sges_n;
1805 struct rte_mbuf *pkt = NULL;
1806 struct rte_mbuf *seg = NULL;
1807 volatile struct mlx5_cqe *cqe =
1808 &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1810 unsigned int rq_ci = rxq->rq_ci << sges_n;
1811 int len = 0; /* keep its value across iterations. */
1814 unsigned int idx = rq_ci & wqe_cnt;
1815 volatile struct mlx5_wqe_data_seg *wqe = &(*rxq->wqes)[idx];
1816 struct rte_mbuf *rep = (*rxq->elts)[idx];
1817 uint32_t rss_hash_res = 0;
1825 rep = rte_mbuf_raw_alloc(rxq->mp);
1826 if (unlikely(rep == NULL)) {
1827 ++rxq->stats.rx_nombuf;
1830 * no buffers before we even started,
1831 * bail out silently.
1835 while (pkt != seg) {
1836 assert(pkt != (*rxq->elts)[idx]);
1840 rte_mbuf_raw_free(pkt);
1846 cqe = &(*rxq->cqes)[rxq->cq_ci & cqe_cnt];
1847 len = mlx5_rx_poll_len(rxq, cqe, cqe_cnt,
1850 rte_mbuf_raw_free(rep);
1853 if (unlikely(len == -1)) {
1854 /* RX error, packet is likely too large. */
1855 rte_mbuf_raw_free(rep);
1856 ++rxq->stats.idropped;
1860 assert(len >= (rxq->crc_present << 2));
1861 /* Update packet information. */
1862 pkt->packet_type = rxq_cq_to_pkt_type(cqe);
1864 if (rss_hash_res && rxq->rss_hash) {
1865 pkt->hash.rss = rss_hash_res;
1866 pkt->ol_flags = PKT_RX_RSS_HASH;
1869 MLX5_FLOW_MARK_IS_VALID(cqe->sop_drop_qpn)) {
1870 pkt->ol_flags |= PKT_RX_FDIR;
1871 if (cqe->sop_drop_qpn !=
1872 rte_cpu_to_be_32(MLX5_FLOW_MARK_DEFAULT)) {
1873 uint32_t mark = cqe->sop_drop_qpn;
1875 pkt->ol_flags |= PKT_RX_FDIR_ID;
1877 mlx5_flow_mark_get(mark);
1880 if (rxq->csum | rxq->csum_l2tun)
1881 pkt->ol_flags |= rxq_cq_to_ol_flags(rxq, cqe);
1882 if (rxq->vlan_strip &&
1883 (cqe->hdr_type_etc &
1884 rte_cpu_to_be_16(MLX5_CQE_VLAN_STRIPPED))) {
1885 pkt->ol_flags |= PKT_RX_VLAN_PKT |
1886 PKT_RX_VLAN_STRIPPED;
1888 rte_be_to_cpu_16(cqe->vlan_info);
1890 if (rxq->crc_present)
1891 len -= ETHER_CRC_LEN;
1894 DATA_LEN(rep) = DATA_LEN(seg);
1895 PKT_LEN(rep) = PKT_LEN(seg);
1896 SET_DATA_OFF(rep, DATA_OFF(seg));
1897 PORT(rep) = PORT(seg);
1898 (*rxq->elts)[idx] = rep;
1900 * Fill NIC descriptor with the new buffer. The lkey and size
1901 * of the buffers are already known, only the buffer address
1904 wqe->addr = rte_cpu_to_be_64(rte_pktmbuf_mtod(rep, uintptr_t));
1905 if (len > DATA_LEN(seg)) {
1906 len -= DATA_LEN(seg);
1911 DATA_LEN(seg) = len;
1912 #ifdef MLX5_PMD_SOFT_COUNTERS
1913 /* Increment bytes counter. */
1914 rxq->stats.ibytes += PKT_LEN(pkt);
1916 /* Return packet. */
1922 /* Align consumer index to the next stride. */
1927 if (unlikely((i == 0) && ((rq_ci >> sges_n) == rxq->rq_ci)))
1929 /* Update the consumer index. */
1930 rxq->rq_ci = rq_ci >> sges_n;
1932 *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
1934 *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
1935 #ifdef MLX5_PMD_SOFT_COUNTERS
1936 /* Increment packets counter. */
1937 rxq->stats.ipackets += i;
1943 * Dummy DPDK callback for TX.
1945 * This function is used to temporarily replace the real callback during
1946 * unsafe control operations on the queue, or in case of error.
1949 * Generic pointer to TX queue structure.
1951 * Packets to transmit.
1953 * Number of packets in array.
1956 * Number of packets successfully transmitted (<= pkts_n).
1959 removed_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
1968 * Dummy DPDK callback for RX.
1970 * This function is used to temporarily replace the real callback during
1971 * unsafe control operations on the queue, or in case of error.
1974 * Generic pointer to RX queue structure.
1976 * Array to store received packets.
1978 * Maximum number of packets in array.
1981 * Number of packets successfully received (<= pkts_n).
1984 removed_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
1993 * Vectorized Rx/Tx routines are not compiled in when required vector
1994 * instructions are not supported on a target architecture. The following null
1995 * stubs are needed for linkage when those are not included outside of this file
1996 * (e.g. mlx5_rxtx_vec_sse.c for x86).
1999 uint16_t __attribute__((weak))
2000 mlx5_tx_burst_raw_vec(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
2008 uint16_t __attribute__((weak))
2009 mlx5_tx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
2017 uint16_t __attribute__((weak))
2018 mlx5_rx_burst_vec(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
2026 int __attribute__((weak))
2027 priv_check_raw_vec_tx_support(struct priv *priv)
2033 int __attribute__((weak))
2034 priv_check_vec_tx_support(struct priv *priv)
2040 int __attribute__((weak))
2041 rxq_check_vec_support(struct rxq *rxq)
2047 int __attribute__((weak))
2048 priv_check_vec_rx_support(struct priv *priv)