c49c52c261367c98a2394e65d63334726daf57fa
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx_vec_sse.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2017 6WIND S.A.
3  * Copyright 2017 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_PMD_MLX5_RXTX_VEC_SSE_H_
7 #define RTE_PMD_MLX5_RXTX_VEC_SSE_H_
8
9 #include <assert.h>
10 #include <stdint.h>
11 #include <string.h>
12 #include <stdlib.h>
13 #include <smmintrin.h>
14
15 #include <rte_mbuf.h>
16 #include <rte_mempool.h>
17 #include <rte_prefetch.h>
18
19 #include "mlx5.h"
20 #include "mlx5_utils.h"
21 #include "mlx5_rxtx.h"
22 #include "mlx5_rxtx_vec.h"
23 #include "mlx5_autoconf.h"
24 #include "mlx5_defs.h"
25 #include "mlx5_prm.h"
26
27 #ifndef __INTEL_COMPILER
28 #pragma GCC diagnostic ignored "-Wcast-qual"
29 #endif
30
31 /**
32  * Fill in buffer descriptors in a multi-packet send descriptor.
33  *
34  * @param txq
35  *   Pointer to TX queue structure.
36  * @param dseg
37  *   Pointer to buffer descriptor to be written.
38  * @param pkts
39  *   Pointer to array of packets to be sent.
40  * @param n
41  *   Number of packets to be filled.
42  */
43 static inline void
44 txq_wr_dseg_v(struct mlx5_txq_data *txq, __m128i *dseg,
45               struct rte_mbuf **pkts, unsigned int n)
46 {
47         unsigned int pos;
48         uintptr_t addr;
49         const __m128i shuf_mask_dseg =
50                 _mm_set_epi8(8,  9, 10, 11, /* addr, bswap64 */
51                             12, 13, 14, 15,
52                              7,  6,  5,  4, /* lkey */
53                              0,  1,  2,  3  /* length, bswap32 */);
54 #ifdef MLX5_PMD_SOFT_COUNTERS
55         uint32_t tx_byte = 0;
56 #endif
57
58         for (pos = 0; pos < n; ++pos, ++dseg) {
59                 __m128i desc;
60                 struct rte_mbuf *pkt = pkts[pos];
61
62                 addr = rte_pktmbuf_mtod(pkt, uintptr_t);
63                 desc = _mm_set_epi32(addr >> 32,
64                                      addr,
65                                      mlx5_tx_mb2mr(txq, pkt),
66                                      DATA_LEN(pkt));
67                 desc = _mm_shuffle_epi8(desc, shuf_mask_dseg);
68                 _mm_store_si128(dseg, desc);
69 #ifdef MLX5_PMD_SOFT_COUNTERS
70                 tx_byte += DATA_LEN(pkt);
71 #endif
72         }
73 #ifdef MLX5_PMD_SOFT_COUNTERS
74         txq->stats.obytes += tx_byte;
75 #endif
76 }
77
78 /**
79  * Send multi-segmented packets until it encounters a single segment packet in
80  * the pkts list.
81  *
82  * @param txq
83  *   Pointer to TX queue structure.
84  * @param pkts
85  *   Pointer to array of packets to be sent.
86  * @param pkts_n
87  *   Number of packets to be sent.
88  *
89  * @return
90  *   Number of packets successfully transmitted (<= pkts_n).
91  */
92 static uint16_t
93 txq_scatter_v(struct mlx5_txq_data *txq, struct rte_mbuf **pkts,
94               uint16_t pkts_n)
95 {
96         uint16_t elts_head = txq->elts_head;
97         const uint16_t elts_n = 1 << txq->elts_n;
98         const uint16_t elts_m = elts_n - 1;
99         const uint16_t wq_n = 1 << txq->wqe_n;
100         const uint16_t wq_mask = wq_n - 1;
101         const unsigned int nb_dword_per_wqebb =
102                 MLX5_WQE_SIZE / MLX5_WQE_DWORD_SIZE;
103         const unsigned int nb_dword_in_hdr =
104                 sizeof(struct mlx5_wqe) / MLX5_WQE_DWORD_SIZE;
105         unsigned int n;
106         volatile struct mlx5_wqe *wqe = NULL;
107         bool metadata_ol =
108                 txq->offloads & DEV_TX_OFFLOAD_MATCH_METADATA ? true : false;
109
110         assert(elts_n > pkts_n);
111         mlx5_tx_complete(txq);
112         if (unlikely(!pkts_n))
113                 return 0;
114         for (n = 0; n < pkts_n; ++n) {
115                 struct rte_mbuf *buf = pkts[n];
116                 unsigned int segs_n = buf->nb_segs;
117                 unsigned int ds = nb_dword_in_hdr;
118                 unsigned int len = PKT_LEN(buf);
119                 uint16_t wqe_ci = txq->wqe_ci;
120                 const __m128i shuf_mask_ctrl =
121                         _mm_set_epi8(15, 14, 13, 12,
122                                       8,  9, 10, 11, /* bswap32 */
123                                       4,  5,  6,  7, /* bswap32 */
124                                       0,  1,  2,  3  /* bswap32 */);
125                 uint8_t cs_flags;
126                 uint16_t max_elts;
127                 uint16_t max_wqe;
128                 __m128i *t_wqe, *dseg;
129                 __m128i ctrl;
130                 rte_be32_t metadata =
131                         metadata_ol && (buf->ol_flags & PKT_TX_METADATA) ?
132                         buf->tx_metadata : 0;
133
134                 assert(segs_n);
135                 max_elts = elts_n - (elts_head - txq->elts_tail);
136                 max_wqe = wq_n - (txq->wqe_ci - txq->wqe_pi);
137                 /*
138                  * A MPW session consumes 2 WQEs at most to
139                  * include MLX5_MPW_DSEG_MAX pointers.
140                  */
141                 if (segs_n == 1 ||
142                     max_elts < segs_n || max_wqe < 2)
143                         break;
144                 if (segs_n > MLX5_MPW_DSEG_MAX) {
145                         txq->stats.oerrors++;
146                         break;
147                 }
148                 wqe = &((volatile struct mlx5_wqe64 *)
149                          txq->wqes)[wqe_ci & wq_mask].hdr;
150                 cs_flags = txq_ol_cksum_to_cs(buf);
151                 /* Title WQEBB pointer. */
152                 t_wqe = (__m128i *)wqe;
153                 dseg = (__m128i *)(wqe + 1);
154                 do {
155                         if (!(ds++ % nb_dword_per_wqebb)) {
156                                 dseg = (__m128i *)
157                                         &((volatile struct mlx5_wqe64 *)
158                                            txq->wqes)[++wqe_ci & wq_mask];
159                         }
160                         txq_wr_dseg_v(txq, dseg++, &buf, 1);
161                         (*txq->elts)[elts_head++ & elts_m] = buf;
162                         buf = buf->next;
163                 } while (--segs_n);
164                 ++wqe_ci;
165                 /* Fill CTRL in the header. */
166                 ctrl = _mm_set_epi32(0, 0, txq->qp_num_8s | ds,
167                                      MLX5_OPC_MOD_MPW << 24 |
168                                      txq->wqe_ci << 8 | MLX5_OPCODE_TSO);
169                 ctrl = _mm_shuffle_epi8(ctrl, shuf_mask_ctrl);
170                 _mm_store_si128(t_wqe, ctrl);
171                 /* Fill ESEG in the header. */
172                 _mm_store_si128(t_wqe + 1,
173                                 _mm_set_epi32(0, metadata,
174                                               (rte_cpu_to_be_16(len) << 16) |
175                                               cs_flags, 0));
176                 txq->wqe_ci = wqe_ci;
177         }
178         if (!n)
179                 return 0;
180         txq->elts_comp += (uint16_t)(elts_head - txq->elts_head);
181         txq->elts_head = elts_head;
182         if (txq->elts_comp >= MLX5_TX_COMP_THRESH) {
183                 /* A CQE slot must always be available. */
184                 assert((1u << txq->cqe_n) - (txq->cq_pi++ - txq->cq_ci));
185                 wqe->ctrl[2] = rte_cpu_to_be_32(8);
186                 wqe->ctrl[3] = txq->elts_head;
187                 txq->elts_comp = 0;
188         }
189 #ifdef MLX5_PMD_SOFT_COUNTERS
190         txq->stats.opackets += n;
191 #endif
192         mlx5_tx_dbrec(txq, wqe);
193         return n;
194 }
195
196 /**
197  * Send burst of packets with Enhanced MPW. If it encounters a multi-seg packet,
198  * it returns to make it processed by txq_scatter_v(). All the packets in
199  * the pkts list should be single segment packets having same offload flags.
200  * This must be checked by txq_count_contig_single_seg() and txq_calc_offload().
201  *
202  * @param txq
203  *   Pointer to TX queue structure.
204  * @param pkts
205  *   Pointer to array of packets to be sent.
206  * @param pkts_n
207  *   Number of packets to be sent (<= MLX5_VPMD_TX_MAX_BURST).
208  * @param cs_flags
209  *   Checksum offload flags to be written in the descriptor.
210  * @param metadata
211  *   Metadata value to be written in the descriptor.
212  *
213  * @return
214  *   Number of packets successfully transmitted (<= pkts_n).
215  */
216 static inline uint16_t
217 txq_burst_v(struct mlx5_txq_data *txq, struct rte_mbuf **pkts, uint16_t pkts_n,
218             uint8_t cs_flags, rte_be32_t metadata)
219 {
220         struct rte_mbuf **elts;
221         uint16_t elts_head = txq->elts_head;
222         const uint16_t elts_n = 1 << txq->elts_n;
223         const uint16_t elts_m = elts_n - 1;
224         const unsigned int nb_dword_per_wqebb =
225                 MLX5_WQE_SIZE / MLX5_WQE_DWORD_SIZE;
226         const unsigned int nb_dword_in_hdr =
227                 sizeof(struct mlx5_wqe) / MLX5_WQE_DWORD_SIZE;
228         unsigned int n = 0;
229         unsigned int pos;
230         uint16_t max_elts;
231         uint16_t max_wqe;
232         uint32_t comp_req = 0;
233         const uint16_t wq_n = 1 << txq->wqe_n;
234         const uint16_t wq_mask = wq_n - 1;
235         uint16_t wq_idx = txq->wqe_ci & wq_mask;
236         volatile struct mlx5_wqe64 *wq =
237                 &((volatile struct mlx5_wqe64 *)txq->wqes)[wq_idx];
238         volatile struct mlx5_wqe *wqe = (volatile struct mlx5_wqe *)wq;
239         const __m128i shuf_mask_ctrl =
240                 _mm_set_epi8(15, 14, 13, 12,
241                               8,  9, 10, 11, /* bswap32 */
242                               4,  5,  6,  7, /* bswap32 */
243                               0,  1,  2,  3  /* bswap32 */);
244         __m128i *t_wqe, *dseg;
245         __m128i ctrl;
246
247         /* Make sure all packets can fit into a single WQE. */
248         assert(elts_n > pkts_n);
249         mlx5_tx_complete(txq);
250         max_elts = (elts_n - (elts_head - txq->elts_tail));
251         max_wqe = (1u << txq->wqe_n) - (txq->wqe_ci - txq->wqe_pi);
252         pkts_n = RTE_MIN((unsigned int)RTE_MIN(pkts_n, max_wqe), max_elts);
253         assert(pkts_n <= MLX5_DSEG_MAX - nb_dword_in_hdr);
254         if (unlikely(!pkts_n))
255                 return 0;
256         elts = &(*txq->elts)[elts_head & elts_m];
257         /* Loop for available tailroom first. */
258         n = RTE_MIN(elts_n - (elts_head & elts_m), pkts_n);
259         for (pos = 0; pos < (n & -2); pos += 2)
260                 _mm_storeu_si128((__m128i *)&elts[pos],
261                                  _mm_loadu_si128((__m128i *)&pkts[pos]));
262         if (n & 1)
263                 elts[pos] = pkts[pos];
264         /* Check if it crosses the end of the queue. */
265         if (unlikely(n < pkts_n)) {
266                 elts = &(*txq->elts)[0];
267                 for (pos = 0; pos < pkts_n - n; ++pos)
268                         elts[pos] = pkts[n + pos];
269         }
270         txq->elts_head += pkts_n;
271         /* Save title WQEBB pointer. */
272         t_wqe = (__m128i *)wqe;
273         dseg = (__m128i *)(wqe + 1);
274         /* Calculate the number of entries to the end. */
275         n = RTE_MIN(
276                 (wq_n - wq_idx) * nb_dword_per_wqebb - nb_dword_in_hdr,
277                 pkts_n);
278         /* Fill DSEGs. */
279         txq_wr_dseg_v(txq, dseg, pkts, n);
280         /* Check if it crosses the end of the queue. */
281         if (n < pkts_n) {
282                 dseg = (__m128i *)txq->wqes;
283                 txq_wr_dseg_v(txq, dseg, &pkts[n], pkts_n - n);
284         }
285         if (txq->elts_comp + pkts_n < MLX5_TX_COMP_THRESH) {
286                 txq->elts_comp += pkts_n;
287         } else {
288                 /* A CQE slot must always be available. */
289                 assert((1u << txq->cqe_n) - (txq->cq_pi++ - txq->cq_ci));
290                 /* Request a completion. */
291                 txq->elts_comp = 0;
292                 comp_req = 8;
293         }
294         /* Fill CTRL in the header. */
295         ctrl = _mm_set_epi32(txq->elts_head, comp_req,
296                              txq->qp_num_8s | (pkts_n + 2),
297                              MLX5_OPC_MOD_ENHANCED_MPSW << 24 |
298                                 txq->wqe_ci << 8 | MLX5_OPCODE_ENHANCED_MPSW);
299         ctrl = _mm_shuffle_epi8(ctrl, shuf_mask_ctrl);
300         _mm_store_si128(t_wqe, ctrl);
301         /* Fill ESEG in the header. */
302         _mm_store_si128(t_wqe + 1, _mm_set_epi32(0, metadata, cs_flags, 0));
303 #ifdef MLX5_PMD_SOFT_COUNTERS
304         txq->stats.opackets += pkts_n;
305 #endif
306         txq->wqe_ci += (nb_dword_in_hdr + pkts_n + (nb_dword_per_wqebb - 1)) /
307                        nb_dword_per_wqebb;
308         /* Ring QP doorbell. */
309         mlx5_tx_dbrec_cond_wmb(txq, wqe, pkts_n < MLX5_VPMD_TX_MAX_BURST);
310         return pkts_n;
311 }
312
313 /**
314  * Store free buffers to RX SW ring.
315  *
316  * @param rxq
317  *   Pointer to RX queue structure.
318  * @param pkts
319  *   Pointer to array of packets to be stored.
320  * @param pkts_n
321  *   Number of packets to be stored.
322  */
323 static inline void
324 rxq_copy_mbuf_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t n)
325 {
326         const uint16_t q_mask = (1 << rxq->elts_n) - 1;
327         struct rte_mbuf **elts = &(*rxq->elts)[rxq->rq_pi & q_mask];
328         unsigned int pos;
329         uint16_t p = n & -2;
330
331         for (pos = 0; pos < p; pos += 2) {
332                 __m128i mbp;
333
334                 mbp = _mm_loadu_si128((__m128i *)&elts[pos]);
335                 _mm_storeu_si128((__m128i *)&pkts[pos], mbp);
336         }
337         if (n & 1)
338                 pkts[pos] = elts[pos];
339 }
340
341 /**
342  * Decompress a compressed completion and fill in mbufs in RX SW ring with data
343  * extracted from the title completion descriptor.
344  *
345  * @param rxq
346  *   Pointer to RX queue structure.
347  * @param cq
348  *   Pointer to completion array having a compressed completion at first.
349  * @param elts
350  *   Pointer to SW ring to be filled. The first mbuf has to be pre-built from
351  *   the title completion descriptor to be copied to the rest of mbufs.
352  *
353  * @return
354  *   Number of mini-CQEs successfully decompressed.
355  */
356 static inline uint16_t
357 rxq_cq_decompress_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
358                     struct rte_mbuf **elts)
359 {
360         volatile struct mlx5_mini_cqe8 *mcq = (void *)(cq + 1);
361         struct rte_mbuf *t_pkt = elts[0]; /* Title packet is pre-built. */
362         unsigned int pos;
363         unsigned int i;
364         unsigned int inv = 0;
365         /* Mask to shuffle from extracted mini CQE to mbuf. */
366         const __m128i shuf_mask1 =
367                 _mm_set_epi8(0,  1,  2,  3, /* rss, bswap32 */
368                             -1, -1,         /* skip vlan_tci */
369                              6,  7,         /* data_len, bswap16 */
370                             -1, -1,  6,  7, /* pkt_len, bswap16 */
371                             -1, -1, -1, -1  /* skip packet_type */);
372         const __m128i shuf_mask2 =
373                 _mm_set_epi8(8,  9, 10, 11, /* rss, bswap32 */
374                             -1, -1,         /* skip vlan_tci */
375                             14, 15,         /* data_len, bswap16 */
376                             -1, -1, 14, 15, /* pkt_len, bswap16 */
377                             -1, -1, -1, -1  /* skip packet_type */);
378         /* Restore the compressed count. Must be 16 bits. */
379         const uint16_t mcqe_n = t_pkt->data_len +
380                                 (rxq->crc_present * RTE_ETHER_CRC_LEN);
381         const __m128i rearm =
382                 _mm_loadu_si128((__m128i *)&t_pkt->rearm_data);
383         const __m128i rxdf =
384                 _mm_loadu_si128((__m128i *)&t_pkt->rx_descriptor_fields1);
385         const __m128i crc_adj =
386                 _mm_set_epi16(0, 0, 0,
387                               rxq->crc_present * RTE_ETHER_CRC_LEN,
388                               0,
389                               rxq->crc_present * RTE_ETHER_CRC_LEN,
390                               0, 0);
391         const uint32_t flow_tag = t_pkt->hash.fdir.hi;
392 #ifdef MLX5_PMD_SOFT_COUNTERS
393         const __m128i zero = _mm_setzero_si128();
394         const __m128i ones = _mm_cmpeq_epi32(zero, zero);
395         uint32_t rcvd_byte = 0;
396         /* Mask to shuffle byte_cnt to add up stats. Do bswap16 for all. */
397         const __m128i len_shuf_mask =
398                 _mm_set_epi8(-1, -1, -1, -1,
399                              -1, -1, -1, -1,
400                              14, 15,  6,  7,
401                              10, 11,  2,  3);
402 #endif
403
404         /*
405          * A. load mCQEs into a 128bit register.
406          * B. store rearm data to mbuf.
407          * C. combine data from mCQEs with rx_descriptor_fields1.
408          * D. store rx_descriptor_fields1.
409          * E. store flow tag (rte_flow mark).
410          */
411         for (pos = 0; pos < mcqe_n; ) {
412                 __m128i mcqe1, mcqe2;
413                 __m128i rxdf1, rxdf2;
414 #ifdef MLX5_PMD_SOFT_COUNTERS
415                 __m128i byte_cnt, invalid_mask;
416 #endif
417
418                 if (!(pos & 0x7) && pos + 8 < mcqe_n)
419                         rte_prefetch0((void *)(cq + pos + 8));
420                 /* A.1 load mCQEs into a 128bit register. */
421                 mcqe1 = _mm_loadu_si128((__m128i *)&mcq[pos % 8]);
422                 mcqe2 = _mm_loadu_si128((__m128i *)&mcq[pos % 8 + 2]);
423                 /* B.1 store rearm data to mbuf. */
424                 _mm_storeu_si128((__m128i *)&elts[pos]->rearm_data, rearm);
425                 _mm_storeu_si128((__m128i *)&elts[pos + 1]->rearm_data, rearm);
426                 /* C.1 combine data from mCQEs with rx_descriptor_fields1. */
427                 rxdf1 = _mm_shuffle_epi8(mcqe1, shuf_mask1);
428                 rxdf2 = _mm_shuffle_epi8(mcqe1, shuf_mask2);
429                 rxdf1 = _mm_sub_epi16(rxdf1, crc_adj);
430                 rxdf2 = _mm_sub_epi16(rxdf2, crc_adj);
431                 rxdf1 = _mm_blend_epi16(rxdf1, rxdf, 0x23);
432                 rxdf2 = _mm_blend_epi16(rxdf2, rxdf, 0x23);
433                 /* D.1 store rx_descriptor_fields1. */
434                 _mm_storeu_si128((__m128i *)
435                                   &elts[pos]->rx_descriptor_fields1,
436                                  rxdf1);
437                 _mm_storeu_si128((__m128i *)
438                                   &elts[pos + 1]->rx_descriptor_fields1,
439                                  rxdf2);
440                 /* B.1 store rearm data to mbuf. */
441                 _mm_storeu_si128((__m128i *)&elts[pos + 2]->rearm_data, rearm);
442                 _mm_storeu_si128((__m128i *)&elts[pos + 3]->rearm_data, rearm);
443                 /* C.1 combine data from mCQEs with rx_descriptor_fields1. */
444                 rxdf1 = _mm_shuffle_epi8(mcqe2, shuf_mask1);
445                 rxdf2 = _mm_shuffle_epi8(mcqe2, shuf_mask2);
446                 rxdf1 = _mm_sub_epi16(rxdf1, crc_adj);
447                 rxdf2 = _mm_sub_epi16(rxdf2, crc_adj);
448                 rxdf1 = _mm_blend_epi16(rxdf1, rxdf, 0x23);
449                 rxdf2 = _mm_blend_epi16(rxdf2, rxdf, 0x23);
450                 /* D.1 store rx_descriptor_fields1. */
451                 _mm_storeu_si128((__m128i *)
452                                   &elts[pos + 2]->rx_descriptor_fields1,
453                                  rxdf1);
454                 _mm_storeu_si128((__m128i *)
455                                   &elts[pos + 3]->rx_descriptor_fields1,
456                                  rxdf2);
457 #ifdef MLX5_PMD_SOFT_COUNTERS
458                 invalid_mask = _mm_set_epi64x(0,
459                                               (mcqe_n - pos) *
460                                               sizeof(uint16_t) * 8);
461                 invalid_mask = _mm_sll_epi64(ones, invalid_mask);
462                 mcqe1 = _mm_srli_si128(mcqe1, 4);
463                 byte_cnt = _mm_blend_epi16(mcqe1, mcqe2, 0xcc);
464                 byte_cnt = _mm_shuffle_epi8(byte_cnt, len_shuf_mask);
465                 byte_cnt = _mm_andnot_si128(invalid_mask, byte_cnt);
466                 byte_cnt = _mm_hadd_epi16(byte_cnt, zero);
467                 rcvd_byte += _mm_cvtsi128_si64(_mm_hadd_epi16(byte_cnt, zero));
468 #endif
469                 if (rxq->mark) {
470                         /* E.1 store flow tag (rte_flow mark). */
471                         elts[pos]->hash.fdir.hi = flow_tag;
472                         elts[pos + 1]->hash.fdir.hi = flow_tag;
473                         elts[pos + 2]->hash.fdir.hi = flow_tag;
474                         elts[pos + 3]->hash.fdir.hi = flow_tag;
475                 }
476                 pos += MLX5_VPMD_DESCS_PER_LOOP;
477                 /* Move to next CQE and invalidate consumed CQEs. */
478                 if (!(pos & 0x7) && pos < mcqe_n) {
479                         mcq = (void *)(cq + pos);
480                         for (i = 0; i < 8; ++i)
481                                 cq[inv++].op_own = MLX5_CQE_INVALIDATE;
482                 }
483         }
484         /* Invalidate the rest of CQEs. */
485         for (; inv < mcqe_n; ++inv)
486                 cq[inv].op_own = MLX5_CQE_INVALIDATE;
487 #ifdef MLX5_PMD_SOFT_COUNTERS
488         rxq->stats.ipackets += mcqe_n;
489         rxq->stats.ibytes += rcvd_byte;
490 #endif
491         rxq->cq_ci += mcqe_n;
492         return mcqe_n;
493 }
494
495 /**
496  * Calculate packet type and offload flag for mbuf and store it.
497  *
498  * @param rxq
499  *   Pointer to RX queue structure.
500  * @param cqes[4]
501  *   Array of four 16bytes completions extracted from the original completion
502  *   descriptor.
503  * @param op_err
504  *   Opcode vector having responder error status. Each field is 4B.
505  * @param pkts
506  *   Pointer to array of packets to be filled.
507  */
508 static inline void
509 rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq, __m128i cqes[4],
510                          __m128i op_err, struct rte_mbuf **pkts)
511 {
512         __m128i pinfo0, pinfo1;
513         __m128i pinfo, ptype;
514         __m128i ol_flags = _mm_set1_epi32(rxq->rss_hash * PKT_RX_RSS_HASH |
515                                           rxq->hw_timestamp * PKT_RX_TIMESTAMP);
516         __m128i cv_flags;
517         const __m128i zero = _mm_setzero_si128();
518         const __m128i ptype_mask =
519                 _mm_set_epi32(0xfd06, 0xfd06, 0xfd06, 0xfd06);
520         const __m128i ptype_ol_mask =
521                 _mm_set_epi32(0x106, 0x106, 0x106, 0x106);
522         const __m128i pinfo_mask =
523                 _mm_set_epi32(0x3, 0x3, 0x3, 0x3);
524         const __m128i cv_flag_sel =
525                 _mm_set_epi8(0, 0, 0, 0, 0, 0, 0, 0, 0,
526                              (uint8_t)((PKT_RX_IP_CKSUM_GOOD |
527                                         PKT_RX_L4_CKSUM_GOOD) >> 1),
528                              0,
529                              (uint8_t)(PKT_RX_L4_CKSUM_GOOD >> 1),
530                              0,
531                              (uint8_t)(PKT_RX_IP_CKSUM_GOOD >> 1),
532                              (uint8_t)(PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED),
533                              0);
534         const __m128i cv_mask =
535                 _mm_set_epi32(PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
536                               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
537                               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
538                               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
539                               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
540                               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
541                               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
542                               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED);
543         const __m128i mbuf_init =
544                 _mm_loadl_epi64((__m128i *)&rxq->mbuf_initializer);
545         __m128i rearm0, rearm1, rearm2, rearm3;
546         uint8_t pt_idx0, pt_idx1, pt_idx2, pt_idx3;
547
548         /* Extract pkt_info field. */
549         pinfo0 = _mm_unpacklo_epi32(cqes[0], cqes[1]);
550         pinfo1 = _mm_unpacklo_epi32(cqes[2], cqes[3]);
551         pinfo = _mm_unpacklo_epi64(pinfo0, pinfo1);
552         /* Extract hdr_type_etc field. */
553         pinfo0 = _mm_unpackhi_epi32(cqes[0], cqes[1]);
554         pinfo1 = _mm_unpackhi_epi32(cqes[2], cqes[3]);
555         ptype = _mm_unpacklo_epi64(pinfo0, pinfo1);
556         if (rxq->mark) {
557                 const __m128i pinfo_ft_mask =
558                         _mm_set_epi32(0xffffff00, 0xffffff00,
559                                       0xffffff00, 0xffffff00);
560                 const __m128i fdir_flags = _mm_set1_epi32(PKT_RX_FDIR);
561                 __m128i fdir_id_flags = _mm_set1_epi32(PKT_RX_FDIR_ID);
562                 __m128i flow_tag, invalid_mask;
563
564                 flow_tag = _mm_and_si128(pinfo, pinfo_ft_mask);
565                 /* Check if flow tag is non-zero then set PKT_RX_FDIR. */
566                 invalid_mask = _mm_cmpeq_epi32(flow_tag, zero);
567                 ol_flags = _mm_or_si128(ol_flags,
568                                         _mm_andnot_si128(invalid_mask,
569                                                          fdir_flags));
570                 /* Mask out invalid entries. */
571                 fdir_id_flags = _mm_andnot_si128(invalid_mask, fdir_id_flags);
572                 /* Check if flow tag MLX5_FLOW_MARK_DEFAULT. */
573                 ol_flags = _mm_or_si128(ol_flags,
574                                         _mm_andnot_si128(
575                                                 _mm_cmpeq_epi32(flow_tag,
576                                                                 pinfo_ft_mask),
577                                                 fdir_id_flags));
578         }
579         /*
580          * Merge the two fields to generate the following:
581          * bit[1]     = l3_ok
582          * bit[2]     = l4_ok
583          * bit[8]     = cv
584          * bit[11:10] = l3_hdr_type
585          * bit[14:12] = l4_hdr_type
586          * bit[15]    = ip_frag
587          * bit[16]    = tunneled
588          * bit[17]    = outer_l3_type
589          */
590         ptype = _mm_and_si128(ptype, ptype_mask);
591         pinfo = _mm_and_si128(pinfo, pinfo_mask);
592         pinfo = _mm_slli_epi32(pinfo, 16);
593         /* Make pinfo has merged fields for ol_flags calculation. */
594         pinfo = _mm_or_si128(ptype, pinfo);
595         ptype = _mm_srli_epi32(pinfo, 10);
596         ptype = _mm_packs_epi32(ptype, zero);
597         /* Errored packets will have RTE_PTYPE_ALL_MASK. */
598         op_err = _mm_srli_epi16(op_err, 8);
599         ptype = _mm_or_si128(ptype, op_err);
600         pt_idx0 = _mm_extract_epi8(ptype, 0);
601         pt_idx1 = _mm_extract_epi8(ptype, 2);
602         pt_idx2 = _mm_extract_epi8(ptype, 4);
603         pt_idx3 = _mm_extract_epi8(ptype, 6);
604         pkts[0]->packet_type = mlx5_ptype_table[pt_idx0] |
605                                !!(pt_idx0 & (1 << 6)) * rxq->tunnel;
606         pkts[1]->packet_type = mlx5_ptype_table[pt_idx1] |
607                                !!(pt_idx1 & (1 << 6)) * rxq->tunnel;
608         pkts[2]->packet_type = mlx5_ptype_table[pt_idx2] |
609                                !!(pt_idx2 & (1 << 6)) * rxq->tunnel;
610         pkts[3]->packet_type = mlx5_ptype_table[pt_idx3] |
611                                !!(pt_idx3 & (1 << 6)) * rxq->tunnel;
612         /* Fill flags for checksum and VLAN. */
613         pinfo = _mm_and_si128(pinfo, ptype_ol_mask);
614         pinfo = _mm_shuffle_epi8(cv_flag_sel, pinfo);
615         /* Locate checksum flags at byte[2:1] and merge with VLAN flags. */
616         cv_flags = _mm_slli_epi32(pinfo, 9);
617         cv_flags = _mm_or_si128(pinfo, cv_flags);
618         /* Move back flags to start from byte[0]. */
619         cv_flags = _mm_srli_epi32(cv_flags, 8);
620         /* Mask out garbage bits. */
621         cv_flags = _mm_and_si128(cv_flags, cv_mask);
622         /* Merge to ol_flags. */
623         ol_flags = _mm_or_si128(ol_flags, cv_flags);
624         /* Merge mbuf_init and ol_flags. */
625         rearm0 = _mm_blend_epi16(mbuf_init, _mm_slli_si128(ol_flags, 8), 0x30);
626         rearm1 = _mm_blend_epi16(mbuf_init, _mm_slli_si128(ol_flags, 4), 0x30);
627         rearm2 = _mm_blend_epi16(mbuf_init, ol_flags, 0x30);
628         rearm3 = _mm_blend_epi16(mbuf_init, _mm_srli_si128(ol_flags, 4), 0x30);
629         /* Write 8B rearm_data and 8B ol_flags. */
630         _mm_store_si128((__m128i *)&pkts[0]->rearm_data, rearm0);
631         _mm_store_si128((__m128i *)&pkts[1]->rearm_data, rearm1);
632         _mm_store_si128((__m128i *)&pkts[2]->rearm_data, rearm2);
633         _mm_store_si128((__m128i *)&pkts[3]->rearm_data, rearm3);
634 }
635
636 /**
637  * Receive burst of packets. An errored completion also consumes a mbuf, but the
638  * packet_type is set to be RTE_PTYPE_ALL_MASK. Marked mbufs should be freed
639  * before returning to application.
640  *
641  * @param rxq
642  *   Pointer to RX queue structure.
643  * @param[out] pkts
644  *   Array to store received packets.
645  * @param pkts_n
646  *   Maximum number of packets in array.
647  * @param[out] err
648  *   Pointer to a flag. Set non-zero value if pkts array has at least one error
649  *   packet to handle.
650  *
651  * @return
652  *   Number of packets received including errors (<= pkts_n).
653  */
654 static inline uint16_t
655 rxq_burst_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t pkts_n,
656             uint64_t *err)
657 {
658         const uint16_t q_n = 1 << rxq->cqe_n;
659         const uint16_t q_mask = q_n - 1;
660         volatile struct mlx5_cqe *cq;
661         struct rte_mbuf **elts;
662         unsigned int pos;
663         uint64_t n;
664         uint16_t repl_n;
665         uint64_t comp_idx = MLX5_VPMD_DESCS_PER_LOOP;
666         uint16_t nocmp_n = 0;
667         uint16_t rcvd_pkt = 0;
668         unsigned int cq_idx = rxq->cq_ci & q_mask;
669         unsigned int elts_idx;
670         unsigned int ownership = !!(rxq->cq_ci & (q_mask + 1));
671         const __m128i owner_check =
672                 _mm_set_epi64x(0x0100000001000000LL, 0x0100000001000000LL);
673         const __m128i opcode_check =
674                 _mm_set_epi64x(0xf0000000f0000000LL, 0xf0000000f0000000LL);
675         const __m128i format_check =
676                 _mm_set_epi64x(0x0c0000000c000000LL, 0x0c0000000c000000LL);
677         const __m128i resp_err_check =
678                 _mm_set_epi64x(0xe0000000e0000000LL, 0xe0000000e0000000LL);
679 #ifdef MLX5_PMD_SOFT_COUNTERS
680         uint32_t rcvd_byte = 0;
681         /* Mask to shuffle byte_cnt to add up stats. Do bswap16 for all. */
682         const __m128i len_shuf_mask =
683                 _mm_set_epi8(-1, -1, -1, -1,
684                              -1, -1, -1, -1,
685                              12, 13,  8,  9,
686                               4,  5,  0,  1);
687 #endif
688         /* Mask to shuffle from extracted CQE to mbuf. */
689         const __m128i shuf_mask =
690                 _mm_set_epi8(-1,  3,  2,  1, /* fdir.hi */
691                              12, 13, 14, 15, /* rss, bswap32 */
692                              10, 11,         /* vlan_tci, bswap16 */
693                               4,  5,         /* data_len, bswap16 */
694                              -1, -1,         /* zero out 2nd half of pkt_len */
695                               4,  5          /* pkt_len, bswap16 */);
696         /* Mask to blend from the last Qword to the first DQword. */
697         const __m128i blend_mask =
698                 _mm_set_epi8(-1, -1, -1, -1,
699                              -1, -1, -1, -1,
700                               0,  0,  0,  0,
701                               0,  0,  0, -1);
702         const __m128i zero = _mm_setzero_si128();
703         const __m128i ones = _mm_cmpeq_epi32(zero, zero);
704         const __m128i crc_adj =
705                 _mm_set_epi16(0, 0, 0, 0, 0,
706                               rxq->crc_present * RTE_ETHER_CRC_LEN,
707                               0,
708                               rxq->crc_present * RTE_ETHER_CRC_LEN);
709         const __m128i flow_mark_adj = _mm_set_epi32(rxq->mark * (-1), 0, 0, 0);
710
711         assert(rxq->sges_n == 0);
712         assert(rxq->cqe_n == rxq->elts_n);
713         cq = &(*rxq->cqes)[cq_idx];
714         rte_prefetch0(cq);
715         rte_prefetch0(cq + 1);
716         rte_prefetch0(cq + 2);
717         rte_prefetch0(cq + 3);
718         pkts_n = RTE_MIN(pkts_n, MLX5_VPMD_RX_MAX_BURST);
719         repl_n = q_n - (rxq->rq_ci - rxq->rq_pi);
720         if (repl_n >= rxq->rq_repl_thresh)
721                 mlx5_rx_replenish_bulk_mbuf(rxq, repl_n);
722         /* See if there're unreturned mbufs from compressed CQE. */
723         rcvd_pkt = rxq->decompressed;
724         if (rcvd_pkt > 0) {
725                 rcvd_pkt = RTE_MIN(rcvd_pkt, pkts_n);
726                 rxq_copy_mbuf_v(rxq, pkts, rcvd_pkt);
727                 rxq->rq_pi += rcvd_pkt;
728                 rxq->decompressed -= rcvd_pkt;
729                 pkts += rcvd_pkt;
730         }
731         elts_idx = rxq->rq_pi & q_mask;
732         elts = &(*rxq->elts)[elts_idx];
733         /* Not to overflow pkts array. */
734         pkts_n = RTE_ALIGN_FLOOR(pkts_n - rcvd_pkt, MLX5_VPMD_DESCS_PER_LOOP);
735         /* Not to cross queue end. */
736         pkts_n = RTE_MIN(pkts_n, q_n - elts_idx);
737         pkts_n = RTE_MIN(pkts_n, q_n - cq_idx);
738         if (!pkts_n)
739                 return rcvd_pkt;
740         /* At this point, there shouldn't be any remained packets. */
741         assert(rxq->decompressed == 0);
742         /*
743          * A. load first Qword (8bytes) in one loop.
744          * B. copy 4 mbuf pointers from elts ring to returing pkts.
745          * C. load remained CQE data and extract necessary fields.
746          *    Final 16bytes cqes[] extracted from original 64bytes CQE has the
747          *    following structure:
748          *        struct {
749          *          uint8_t  pkt_info;
750          *          uint8_t  flow_tag[3];
751          *          uint16_t byte_cnt;
752          *          uint8_t  rsvd4;
753          *          uint8_t  op_own;
754          *          uint16_t hdr_type_etc;
755          *          uint16_t vlan_info;
756          *          uint32_t rx_has_res;
757          *        } c;
758          * D. fill in mbuf.
759          * E. get valid CQEs.
760          * F. find compressed CQE.
761          */
762         for (pos = 0;
763              pos < pkts_n;
764              pos += MLX5_VPMD_DESCS_PER_LOOP) {
765                 __m128i cqes[MLX5_VPMD_DESCS_PER_LOOP];
766                 __m128i cqe_tmp1, cqe_tmp2;
767                 __m128i pkt_mb0, pkt_mb1, pkt_mb2, pkt_mb3;
768                 __m128i op_own, op_own_tmp1, op_own_tmp2;
769                 __m128i opcode, owner_mask, invalid_mask;
770                 __m128i comp_mask;
771                 __m128i mask;
772 #ifdef MLX5_PMD_SOFT_COUNTERS
773                 __m128i byte_cnt;
774 #endif
775                 __m128i mbp1, mbp2;
776                 __m128i p = _mm_set_epi16(0, 0, 0, 0, 3, 2, 1, 0);
777                 unsigned int p1, p2, p3;
778
779                 /* Prefetch next 4 CQEs. */
780                 if (pkts_n - pos >= 2 * MLX5_VPMD_DESCS_PER_LOOP) {
781                         rte_prefetch0(&cq[pos + MLX5_VPMD_DESCS_PER_LOOP]);
782                         rte_prefetch0(&cq[pos + MLX5_VPMD_DESCS_PER_LOOP + 1]);
783                         rte_prefetch0(&cq[pos + MLX5_VPMD_DESCS_PER_LOOP + 2]);
784                         rte_prefetch0(&cq[pos + MLX5_VPMD_DESCS_PER_LOOP + 3]);
785                 }
786                 /* A.0 do not cross the end of CQ. */
787                 mask = _mm_set_epi64x(0, (pkts_n - pos) * sizeof(uint16_t) * 8);
788                 mask = _mm_sll_epi64(ones, mask);
789                 p = _mm_andnot_si128(mask, p);
790                 /* A.1 load cqes. */
791                 p3 = _mm_extract_epi16(p, 3);
792                 cqes[3] = _mm_loadl_epi64((__m128i *)
793                                            &cq[pos + p3].sop_drop_qpn);
794                 rte_compiler_barrier();
795                 p2 = _mm_extract_epi16(p, 2);
796                 cqes[2] = _mm_loadl_epi64((__m128i *)
797                                            &cq[pos + p2].sop_drop_qpn);
798                 rte_compiler_barrier();
799                 /* B.1 load mbuf pointers. */
800                 mbp1 = _mm_loadu_si128((__m128i *)&elts[pos]);
801                 mbp2 = _mm_loadu_si128((__m128i *)&elts[pos + 2]);
802                 /* A.1 load a block having op_own. */
803                 p1 = _mm_extract_epi16(p, 1);
804                 cqes[1] = _mm_loadl_epi64((__m128i *)
805                                            &cq[pos + p1].sop_drop_qpn);
806                 rte_compiler_barrier();
807                 cqes[0] = _mm_loadl_epi64((__m128i *)
808                                            &cq[pos].sop_drop_qpn);
809                 /* B.2 copy mbuf pointers. */
810                 _mm_storeu_si128((__m128i *)&pkts[pos], mbp1);
811                 _mm_storeu_si128((__m128i *)&pkts[pos + 2], mbp2);
812                 rte_cio_rmb();
813                 /* C.1 load remained CQE data and extract necessary fields. */
814                 cqe_tmp2 = _mm_load_si128((__m128i *)&cq[pos + p3]);
815                 cqe_tmp1 = _mm_load_si128((__m128i *)&cq[pos + p2]);
816                 cqes[3] = _mm_blendv_epi8(cqes[3], cqe_tmp2, blend_mask);
817                 cqes[2] = _mm_blendv_epi8(cqes[2], cqe_tmp1, blend_mask);
818                 cqe_tmp2 = _mm_loadu_si128((__m128i *)&cq[pos + p3].rsvd1[3]);
819                 cqe_tmp1 = _mm_loadu_si128((__m128i *)&cq[pos + p2].rsvd1[3]);
820                 cqes[3] = _mm_blend_epi16(cqes[3], cqe_tmp2, 0x30);
821                 cqes[2] = _mm_blend_epi16(cqes[2], cqe_tmp1, 0x30);
822                 cqe_tmp2 = _mm_loadl_epi64((__m128i *)&cq[pos + p3].rsvd2[10]);
823                 cqe_tmp1 = _mm_loadl_epi64((__m128i *)&cq[pos + p2].rsvd2[10]);
824                 cqes[3] = _mm_blend_epi16(cqes[3], cqe_tmp2, 0x04);
825                 cqes[2] = _mm_blend_epi16(cqes[2], cqe_tmp1, 0x04);
826                 /* C.2 generate final structure for mbuf with swapping bytes. */
827                 pkt_mb3 = _mm_shuffle_epi8(cqes[3], shuf_mask);
828                 pkt_mb2 = _mm_shuffle_epi8(cqes[2], shuf_mask);
829                 /* C.3 adjust CRC length. */
830                 pkt_mb3 = _mm_sub_epi16(pkt_mb3, crc_adj);
831                 pkt_mb2 = _mm_sub_epi16(pkt_mb2, crc_adj);
832                 /* C.4 adjust flow mark. */
833                 pkt_mb3 = _mm_add_epi32(pkt_mb3, flow_mark_adj);
834                 pkt_mb2 = _mm_add_epi32(pkt_mb2, flow_mark_adj);
835                 /* D.1 fill in mbuf - rx_descriptor_fields1. */
836                 _mm_storeu_si128((void *)&pkts[pos + 3]->pkt_len, pkt_mb3);
837                 _mm_storeu_si128((void *)&pkts[pos + 2]->pkt_len, pkt_mb2);
838                 /* E.1 extract op_own field. */
839                 op_own_tmp2 = _mm_unpacklo_epi32(cqes[2], cqes[3]);
840                 /* C.1 load remained CQE data and extract necessary fields. */
841                 cqe_tmp2 = _mm_load_si128((__m128i *)&cq[pos + p1]);
842                 cqe_tmp1 = _mm_load_si128((__m128i *)&cq[pos]);
843                 cqes[1] = _mm_blendv_epi8(cqes[1], cqe_tmp2, blend_mask);
844                 cqes[0] = _mm_blendv_epi8(cqes[0], cqe_tmp1, blend_mask);
845                 cqe_tmp2 = _mm_loadu_si128((__m128i *)&cq[pos + p1].rsvd1[3]);
846                 cqe_tmp1 = _mm_loadu_si128((__m128i *)&cq[pos].rsvd1[3]);
847                 cqes[1] = _mm_blend_epi16(cqes[1], cqe_tmp2, 0x30);
848                 cqes[0] = _mm_blend_epi16(cqes[0], cqe_tmp1, 0x30);
849                 cqe_tmp2 = _mm_loadl_epi64((__m128i *)&cq[pos + p1].rsvd2[10]);
850                 cqe_tmp1 = _mm_loadl_epi64((__m128i *)&cq[pos].rsvd2[10]);
851                 cqes[1] = _mm_blend_epi16(cqes[1], cqe_tmp2, 0x04);
852                 cqes[0] = _mm_blend_epi16(cqes[0], cqe_tmp1, 0x04);
853                 /* C.2 generate final structure for mbuf with swapping bytes. */
854                 pkt_mb1 = _mm_shuffle_epi8(cqes[1], shuf_mask);
855                 pkt_mb0 = _mm_shuffle_epi8(cqes[0], shuf_mask);
856                 /* C.3 adjust CRC length. */
857                 pkt_mb1 = _mm_sub_epi16(pkt_mb1, crc_adj);
858                 pkt_mb0 = _mm_sub_epi16(pkt_mb0, crc_adj);
859                 /* C.4 adjust flow mark. */
860                 pkt_mb1 = _mm_add_epi32(pkt_mb1, flow_mark_adj);
861                 pkt_mb0 = _mm_add_epi32(pkt_mb0, flow_mark_adj);
862                 /* E.1 extract op_own byte. */
863                 op_own_tmp1 = _mm_unpacklo_epi32(cqes[0], cqes[1]);
864                 op_own = _mm_unpackhi_epi64(op_own_tmp1, op_own_tmp2);
865                 /* D.1 fill in mbuf - rx_descriptor_fields1. */
866                 _mm_storeu_si128((void *)&pkts[pos + 1]->pkt_len, pkt_mb1);
867                 _mm_storeu_si128((void *)&pkts[pos]->pkt_len, pkt_mb0);
868                 /* E.2 flip owner bit to mark CQEs from last round. */
869                 owner_mask = _mm_and_si128(op_own, owner_check);
870                 if (ownership)
871                         owner_mask = _mm_xor_si128(owner_mask, owner_check);
872                 owner_mask = _mm_cmpeq_epi32(owner_mask, owner_check);
873                 owner_mask = _mm_packs_epi32(owner_mask, zero);
874                 /* E.3 get mask for invalidated CQEs. */
875                 opcode = _mm_and_si128(op_own, opcode_check);
876                 invalid_mask = _mm_cmpeq_epi32(opcode_check, opcode);
877                 invalid_mask = _mm_packs_epi32(invalid_mask, zero);
878                 /* E.4 mask out beyond boundary. */
879                 invalid_mask = _mm_or_si128(invalid_mask, mask);
880                 /* E.5 merge invalid_mask with invalid owner. */
881                 invalid_mask = _mm_or_si128(invalid_mask, owner_mask);
882                 /* F.1 find compressed CQE format. */
883                 comp_mask = _mm_and_si128(op_own, format_check);
884                 comp_mask = _mm_cmpeq_epi32(comp_mask, format_check);
885                 comp_mask = _mm_packs_epi32(comp_mask, zero);
886                 /* F.2 mask out invalid entries. */
887                 comp_mask = _mm_andnot_si128(invalid_mask, comp_mask);
888                 comp_idx = _mm_cvtsi128_si64(comp_mask);
889                 /* F.3 get the first compressed CQE. */
890                 comp_idx = comp_idx ?
891                                 __builtin_ctzll(comp_idx) /
892                                         (sizeof(uint16_t) * 8) :
893                                 MLX5_VPMD_DESCS_PER_LOOP;
894                 /* E.6 mask out entries after the compressed CQE. */
895                 mask = _mm_set_epi64x(0, comp_idx * sizeof(uint16_t) * 8);
896                 mask = _mm_sll_epi64(ones, mask);
897                 invalid_mask = _mm_or_si128(invalid_mask, mask);
898                 /* E.7 count non-compressed valid CQEs. */
899                 n = _mm_cvtsi128_si64(invalid_mask);
900                 n = n ? __builtin_ctzll(n) / (sizeof(uint16_t) * 8) :
901                         MLX5_VPMD_DESCS_PER_LOOP;
902                 nocmp_n += n;
903                 /* D.2 get the final invalid mask. */
904                 mask = _mm_set_epi64x(0, n * sizeof(uint16_t) * 8);
905                 mask = _mm_sll_epi64(ones, mask);
906                 invalid_mask = _mm_or_si128(invalid_mask, mask);
907                 /* D.3 check error in opcode. */
908                 opcode = _mm_cmpeq_epi32(resp_err_check, opcode);
909                 opcode = _mm_packs_epi32(opcode, zero);
910                 opcode = _mm_andnot_si128(invalid_mask, opcode);
911                 /* D.4 mark if any error is set */
912                 *err |= _mm_cvtsi128_si64(opcode);
913                 /* D.5 fill in mbuf - rearm_data and packet_type. */
914                 rxq_cq_to_ptype_oflags_v(rxq, cqes, opcode, &pkts[pos]);
915                 if (rxq->hw_timestamp) {
916                         pkts[pos]->timestamp =
917                                 rte_be_to_cpu_64(cq[pos].timestamp);
918                         pkts[pos + 1]->timestamp =
919                                 rte_be_to_cpu_64(cq[pos + p1].timestamp);
920                         pkts[pos + 2]->timestamp =
921                                 rte_be_to_cpu_64(cq[pos + p2].timestamp);
922                         pkts[pos + 3]->timestamp =
923                                 rte_be_to_cpu_64(cq[pos + p3].timestamp);
924                 }
925 #ifdef MLX5_PMD_SOFT_COUNTERS
926                 /* Add up received bytes count. */
927                 byte_cnt = _mm_shuffle_epi8(op_own, len_shuf_mask);
928                 byte_cnt = _mm_andnot_si128(invalid_mask, byte_cnt);
929                 byte_cnt = _mm_hadd_epi16(byte_cnt, zero);
930                 rcvd_byte += _mm_cvtsi128_si64(_mm_hadd_epi16(byte_cnt, zero));
931 #endif
932                 /*
933                  * Break the loop unless more valid CQE is expected, or if
934                  * there's a compressed CQE.
935                  */
936                 if (n != MLX5_VPMD_DESCS_PER_LOOP)
937                         break;
938         }
939         /* If no new CQE seen, return without updating cq_db. */
940         if (unlikely(!nocmp_n && comp_idx == MLX5_VPMD_DESCS_PER_LOOP))
941                 return rcvd_pkt;
942         /* Update the consumer indexes for non-compressed CQEs. */
943         assert(nocmp_n <= pkts_n);
944         rxq->cq_ci += nocmp_n;
945         rxq->rq_pi += nocmp_n;
946         rcvd_pkt += nocmp_n;
947 #ifdef MLX5_PMD_SOFT_COUNTERS
948         rxq->stats.ipackets += nocmp_n;
949         rxq->stats.ibytes += rcvd_byte;
950 #endif
951         /* Decompress the last CQE if compressed. */
952         if (comp_idx < MLX5_VPMD_DESCS_PER_LOOP && comp_idx == n) {
953                 assert(comp_idx == (nocmp_n % MLX5_VPMD_DESCS_PER_LOOP));
954                 rxq->decompressed = rxq_cq_decompress_v(rxq, &cq[nocmp_n],
955                                                         &elts[nocmp_n]);
956                 /* Return more packets if needed. */
957                 if (nocmp_n < pkts_n) {
958                         uint16_t n = rxq->decompressed;
959
960                         n = RTE_MIN(n, pkts_n - nocmp_n);
961                         rxq_copy_mbuf_v(rxq, &pkts[nocmp_n], n);
962                         rxq->rq_pi += n;
963                         rcvd_pkt += n;
964                         rxq->decompressed -= n;
965                 }
966         }
967         rte_compiler_barrier();
968         *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
969         return rcvd_pkt;
970 }
971
972 #endif /* RTE_PMD_MLX5_RXTX_VEC_SSE_H_ */