net: add rte prefix to SCTP structure
[dpdk.git] / drivers / net / ice / ice_rxtx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #include <rte_ethdev_driver.h>
6 #include <rte_net.h>
7
8 #include "ice_rxtx.h"
9
10 #define ICE_TX_CKSUM_OFFLOAD_MASK (              \
11                 PKT_TX_IP_CKSUM |                \
12                 PKT_TX_L4_MASK |                 \
13                 PKT_TX_TCP_SEG |                 \
14                 PKT_TX_OUTER_IP_CKSUM)
15
16 #define ICE_RX_ERR_BITS 0x3f
17
18 static enum ice_status
19 ice_program_hw_rx_queue(struct ice_rx_queue *rxq)
20 {
21         struct ice_vsi *vsi = rxq->vsi;
22         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
23         struct rte_eth_dev *dev = ICE_VSI_TO_ETH_DEV(rxq->vsi);
24         struct ice_rlan_ctx rx_ctx;
25         enum ice_status err;
26         uint16_t buf_size, len;
27         struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
28         uint32_t regval;
29
30         /**
31          * The kernel driver uses flex descriptor. It sets the register
32          * to flex descriptor mode.
33          * DPDK uses legacy descriptor. It should set the register back
34          * to the default value, then uses legacy descriptor mode.
35          */
36         regval = (0x01 << QRXFLXP_CNTXT_RXDID_PRIO_S) &
37                  QRXFLXP_CNTXT_RXDID_PRIO_M;
38         ICE_WRITE_REG(hw, QRXFLXP_CNTXT(rxq->reg_idx), regval);
39
40         /* Set buffer size as the head split is disabled. */
41         buf_size = (uint16_t)(rte_pktmbuf_data_room_size(rxq->mp) -
42                               RTE_PKTMBUF_HEADROOM);
43         rxq->rx_hdr_len = 0;
44         rxq->rx_buf_len = RTE_ALIGN(buf_size, (1 << ICE_RLAN_CTX_DBUF_S));
45         len = ICE_SUPPORT_CHAIN_NUM * rxq->rx_buf_len;
46         rxq->max_pkt_len = RTE_MIN(len,
47                                    dev->data->dev_conf.rxmode.max_rx_pkt_len);
48
49         if (rxmode->offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
50                 if (rxq->max_pkt_len <= RTE_ETHER_MAX_LEN ||
51                     rxq->max_pkt_len > ICE_FRAME_SIZE_MAX) {
52                         PMD_DRV_LOG(ERR, "maximum packet length must "
53                                     "be larger than %u and smaller than %u,"
54                                     "as jumbo frame is enabled",
55                                     (uint32_t)RTE_ETHER_MAX_LEN,
56                                     (uint32_t)ICE_FRAME_SIZE_MAX);
57                         return -EINVAL;
58                 }
59         } else {
60                 if (rxq->max_pkt_len < RTE_ETHER_MIN_LEN ||
61                     rxq->max_pkt_len > RTE_ETHER_MAX_LEN) {
62                         PMD_DRV_LOG(ERR, "maximum packet length must be "
63                                     "larger than %u and smaller than %u, "
64                                     "as jumbo frame is disabled",
65                                     (uint32_t)RTE_ETHER_MIN_LEN,
66                                     (uint32_t)RTE_ETHER_MAX_LEN);
67                         return -EINVAL;
68                 }
69         }
70
71         memset(&rx_ctx, 0, sizeof(rx_ctx));
72
73         rx_ctx.base = rxq->rx_ring_phys_addr / ICE_QUEUE_BASE_ADDR_UNIT;
74         rx_ctx.qlen = rxq->nb_rx_desc;
75         rx_ctx.dbuf = rxq->rx_buf_len >> ICE_RLAN_CTX_DBUF_S;
76         rx_ctx.hbuf = rxq->rx_hdr_len >> ICE_RLAN_CTX_HBUF_S;
77         rx_ctx.dtype = 0; /* No Header Split mode */
78 #ifndef RTE_LIBRTE_ICE_16BYTE_RX_DESC
79         rx_ctx.dsize = 1; /* 32B descriptors */
80 #endif
81         rx_ctx.rxmax = rxq->max_pkt_len;
82         /* TPH: Transaction Layer Packet (TLP) processing hints */
83         rx_ctx.tphrdesc_ena = 1;
84         rx_ctx.tphwdesc_ena = 1;
85         rx_ctx.tphdata_ena = 1;
86         rx_ctx.tphhead_ena = 1;
87         /* Low Receive Queue Threshold defined in 64 descriptors units.
88          * When the number of free descriptors goes below the lrxqthresh,
89          * an immediate interrupt is triggered.
90          */
91         rx_ctx.lrxqthresh = 2;
92         /*default use 32 byte descriptor, vlan tag extract to L2TAG2(1st)*/
93         rx_ctx.l2tsel = 1;
94         rx_ctx.showiv = 0;
95         rx_ctx.crcstrip = (rxq->crc_len == 0) ? 1 : 0;
96
97         err = ice_clear_rxq_ctx(hw, rxq->reg_idx);
98         if (err) {
99                 PMD_DRV_LOG(ERR, "Failed to clear Lan Rx queue (%u) context",
100                             rxq->queue_id);
101                 return -EINVAL;
102         }
103         err = ice_write_rxq_ctx(hw, &rx_ctx, rxq->reg_idx);
104         if (err) {
105                 PMD_DRV_LOG(ERR, "Failed to write Lan Rx queue (%u) context",
106                             rxq->queue_id);
107                 return -EINVAL;
108         }
109
110         buf_size = (uint16_t)(rte_pktmbuf_data_room_size(rxq->mp) -
111                               RTE_PKTMBUF_HEADROOM);
112
113         /* Check if scattered RX needs to be used. */
114         if (rxq->max_pkt_len > buf_size)
115                 dev->data->scattered_rx = 1;
116
117         rxq->qrx_tail = hw->hw_addr + QRX_TAIL(rxq->reg_idx);
118
119         /* Init the Rx tail register*/
120         ICE_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
121
122         return 0;
123 }
124
125 /* Allocate mbufs for all descriptors in rx queue */
126 static int
127 ice_alloc_rx_queue_mbufs(struct ice_rx_queue *rxq)
128 {
129         struct ice_rx_entry *rxe = rxq->sw_ring;
130         uint64_t dma_addr;
131         uint16_t i;
132
133         for (i = 0; i < rxq->nb_rx_desc; i++) {
134                 volatile union ice_rx_desc *rxd;
135                 struct rte_mbuf *mbuf = rte_mbuf_raw_alloc(rxq->mp);
136
137                 if (unlikely(!mbuf)) {
138                         PMD_DRV_LOG(ERR, "Failed to allocate mbuf for RX");
139                         return -ENOMEM;
140                 }
141
142                 rte_mbuf_refcnt_set(mbuf, 1);
143                 mbuf->next = NULL;
144                 mbuf->data_off = RTE_PKTMBUF_HEADROOM;
145                 mbuf->nb_segs = 1;
146                 mbuf->port = rxq->port_id;
147
148                 dma_addr =
149                         rte_cpu_to_le_64(rte_mbuf_data_iova_default(mbuf));
150
151                 rxd = &rxq->rx_ring[i];
152                 rxd->read.pkt_addr = dma_addr;
153                 rxd->read.hdr_addr = 0;
154 #ifndef RTE_LIBRTE_ICE_16BYTE_RX_DESC
155                 rxd->read.rsvd1 = 0;
156                 rxd->read.rsvd2 = 0;
157 #endif
158                 rxe[i].mbuf = mbuf;
159         }
160
161         return 0;
162 }
163
164 /* Free all mbufs for descriptors in rx queue */
165 static void
166 _ice_rx_queue_release_mbufs(struct ice_rx_queue *rxq)
167 {
168         uint16_t i;
169
170         if (!rxq || !rxq->sw_ring) {
171                 PMD_DRV_LOG(DEBUG, "Pointer to sw_ring is NULL");
172                 return;
173         }
174
175         for (i = 0; i < rxq->nb_rx_desc; i++) {
176                 if (rxq->sw_ring[i].mbuf) {
177                         rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
178                         rxq->sw_ring[i].mbuf = NULL;
179                 }
180         }
181 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
182                 if (rxq->rx_nb_avail == 0)
183                         return;
184                 for (i = 0; i < rxq->rx_nb_avail; i++) {
185                         struct rte_mbuf *mbuf;
186
187                         mbuf = rxq->rx_stage[rxq->rx_next_avail + i];
188                         rte_pktmbuf_free_seg(mbuf);
189                 }
190                 rxq->rx_nb_avail = 0;
191 #endif /* RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC */
192 }
193
194 static void
195 ice_rx_queue_release_mbufs(struct ice_rx_queue *rxq)
196 {
197         rxq->rx_rel_mbufs(rxq);
198 }
199
200 /* turn on or off rx queue
201  * @q_idx: queue index in pf scope
202  * @on: turn on or off the queue
203  */
204 static int
205 ice_switch_rx_queue(struct ice_hw *hw, uint16_t q_idx, bool on)
206 {
207         uint32_t reg;
208         uint16_t j;
209
210         /* QRX_CTRL = QRX_ENA */
211         reg = ICE_READ_REG(hw, QRX_CTRL(q_idx));
212
213         if (on) {
214                 if (reg & QRX_CTRL_QENA_STAT_M)
215                         return 0; /* Already on, skip */
216                 reg |= QRX_CTRL_QENA_REQ_M;
217         } else {
218                 if (!(reg & QRX_CTRL_QENA_STAT_M))
219                         return 0; /* Already off, skip */
220                 reg &= ~QRX_CTRL_QENA_REQ_M;
221         }
222
223         /* Write the register */
224         ICE_WRITE_REG(hw, QRX_CTRL(q_idx), reg);
225         /* Check the result. It is said that QENA_STAT
226          * follows the QENA_REQ not more than 10 use.
227          * TODO: need to change the wait counter later
228          */
229         for (j = 0; j < ICE_CHK_Q_ENA_COUNT; j++) {
230                 rte_delay_us(ICE_CHK_Q_ENA_INTERVAL_US);
231                 reg = ICE_READ_REG(hw, QRX_CTRL(q_idx));
232                 if (on) {
233                         if ((reg & QRX_CTRL_QENA_REQ_M) &&
234                             (reg & QRX_CTRL_QENA_STAT_M))
235                                 break;
236                 } else {
237                         if (!(reg & QRX_CTRL_QENA_REQ_M) &&
238                             !(reg & QRX_CTRL_QENA_STAT_M))
239                                 break;
240                 }
241         }
242
243         /* Check if it is timeout */
244         if (j >= ICE_CHK_Q_ENA_COUNT) {
245                 PMD_DRV_LOG(ERR, "Failed to %s rx queue[%u]",
246                             (on ? "enable" : "disable"), q_idx);
247                 return -ETIMEDOUT;
248         }
249
250         return 0;
251 }
252
253 static inline int
254 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
255 ice_check_rx_burst_bulk_alloc_preconditions(struct ice_rx_queue *rxq)
256 #else
257 ice_check_rx_burst_bulk_alloc_preconditions
258         (__rte_unused struct ice_rx_queue *rxq)
259 #endif
260 {
261         int ret = 0;
262
263 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
264         if (!(rxq->rx_free_thresh >= ICE_RX_MAX_BURST)) {
265                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions: "
266                              "rxq->rx_free_thresh=%d, "
267                              "ICE_RX_MAX_BURST=%d",
268                              rxq->rx_free_thresh, ICE_RX_MAX_BURST);
269                 ret = -EINVAL;
270         } else if (!(rxq->rx_free_thresh < rxq->nb_rx_desc)) {
271                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions: "
272                              "rxq->rx_free_thresh=%d, "
273                              "rxq->nb_rx_desc=%d",
274                              rxq->rx_free_thresh, rxq->nb_rx_desc);
275                 ret = -EINVAL;
276         } else if (rxq->nb_rx_desc % rxq->rx_free_thresh != 0) {
277                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions: "
278                              "rxq->nb_rx_desc=%d, "
279                              "rxq->rx_free_thresh=%d",
280                              rxq->nb_rx_desc, rxq->rx_free_thresh);
281                 ret = -EINVAL;
282         }
283 #else
284         ret = -EINVAL;
285 #endif
286
287         return ret;
288 }
289
290 /* reset fields in ice_rx_queue back to default */
291 static void
292 ice_reset_rx_queue(struct ice_rx_queue *rxq)
293 {
294         unsigned int i;
295         uint16_t len;
296
297         if (!rxq) {
298                 PMD_DRV_LOG(DEBUG, "Pointer to rxq is NULL");
299                 return;
300         }
301
302 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
303         if (ice_check_rx_burst_bulk_alloc_preconditions(rxq) == 0)
304                 len = (uint16_t)(rxq->nb_rx_desc + ICE_RX_MAX_BURST);
305         else
306 #endif /* RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC */
307                 len = rxq->nb_rx_desc;
308
309         for (i = 0; i < len * sizeof(union ice_rx_desc); i++)
310                 ((volatile char *)rxq->rx_ring)[i] = 0;
311
312 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
313         memset(&rxq->fake_mbuf, 0x0, sizeof(rxq->fake_mbuf));
314         for (i = 0; i < ICE_RX_MAX_BURST; ++i)
315                 rxq->sw_ring[rxq->nb_rx_desc + i].mbuf = &rxq->fake_mbuf;
316
317         rxq->rx_nb_avail = 0;
318         rxq->rx_next_avail = 0;
319         rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1);
320 #endif /* RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC */
321
322         rxq->rx_tail = 0;
323         rxq->nb_rx_hold = 0;
324         rxq->pkt_first_seg = NULL;
325         rxq->pkt_last_seg = NULL;
326
327         rxq->rxrearm_start = 0;
328         rxq->rxrearm_nb = 0;
329 }
330
331 int
332 ice_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
333 {
334         struct ice_rx_queue *rxq;
335         int err;
336         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
337
338         PMD_INIT_FUNC_TRACE();
339
340         if (rx_queue_id >= dev->data->nb_rx_queues) {
341                 PMD_DRV_LOG(ERR, "RX queue %u is out of range %u",
342                             rx_queue_id, dev->data->nb_rx_queues);
343                 return -EINVAL;
344         }
345
346         rxq = dev->data->rx_queues[rx_queue_id];
347         if (!rxq || !rxq->q_set) {
348                 PMD_DRV_LOG(ERR, "RX queue %u not available or setup",
349                             rx_queue_id);
350                 return -EINVAL;
351         }
352
353         err = ice_program_hw_rx_queue(rxq);
354         if (err) {
355                 PMD_DRV_LOG(ERR, "fail to program RX queue %u",
356                             rx_queue_id);
357                 return -EIO;
358         }
359
360         err = ice_alloc_rx_queue_mbufs(rxq);
361         if (err) {
362                 PMD_DRV_LOG(ERR, "Failed to allocate RX queue mbuf");
363                 return -ENOMEM;
364         }
365
366         rte_wmb();
367
368         /* Init the RX tail register. */
369         ICE_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
370
371         err = ice_switch_rx_queue(hw, rxq->reg_idx, TRUE);
372         if (err) {
373                 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
374                             rx_queue_id);
375
376                 ice_rx_queue_release_mbufs(rxq);
377                 ice_reset_rx_queue(rxq);
378                 return -EINVAL;
379         }
380
381         dev->data->rx_queue_state[rx_queue_id] =
382                 RTE_ETH_QUEUE_STATE_STARTED;
383
384         return 0;
385 }
386
387 int
388 ice_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
389 {
390         struct ice_rx_queue *rxq;
391         int err;
392         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
393
394         if (rx_queue_id < dev->data->nb_rx_queues) {
395                 rxq = dev->data->rx_queues[rx_queue_id];
396
397                 err = ice_switch_rx_queue(hw, rxq->reg_idx, FALSE);
398                 if (err) {
399                         PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
400                                     rx_queue_id);
401                         return -EINVAL;
402                 }
403                 ice_rx_queue_release_mbufs(rxq);
404                 ice_reset_rx_queue(rxq);
405                 dev->data->rx_queue_state[rx_queue_id] =
406                         RTE_ETH_QUEUE_STATE_STOPPED;
407         }
408
409         return 0;
410 }
411
412 int
413 ice_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
414 {
415         struct ice_tx_queue *txq;
416         int err;
417         struct ice_vsi *vsi;
418         struct ice_hw *hw;
419         struct ice_aqc_add_tx_qgrp txq_elem;
420         struct ice_tlan_ctx tx_ctx;
421
422         PMD_INIT_FUNC_TRACE();
423
424         if (tx_queue_id >= dev->data->nb_tx_queues) {
425                 PMD_DRV_LOG(ERR, "TX queue %u is out of range %u",
426                             tx_queue_id, dev->data->nb_tx_queues);
427                 return -EINVAL;
428         }
429
430         txq = dev->data->tx_queues[tx_queue_id];
431         if (!txq || !txq->q_set) {
432                 PMD_DRV_LOG(ERR, "TX queue %u is not available or setup",
433                             tx_queue_id);
434                 return -EINVAL;
435         }
436
437         vsi = txq->vsi;
438         hw = ICE_VSI_TO_HW(vsi);
439
440         memset(&txq_elem, 0, sizeof(txq_elem));
441         memset(&tx_ctx, 0, sizeof(tx_ctx));
442         txq_elem.num_txqs = 1;
443         txq_elem.txqs[0].txq_id = rte_cpu_to_le_16(txq->reg_idx);
444
445         tx_ctx.base = txq->tx_ring_phys_addr / ICE_QUEUE_BASE_ADDR_UNIT;
446         tx_ctx.qlen = txq->nb_tx_desc;
447         tx_ctx.pf_num = hw->pf_id;
448         tx_ctx.vmvf_type = ICE_TLAN_CTX_VMVF_TYPE_PF;
449         tx_ctx.src_vsi = vsi->vsi_id;
450         tx_ctx.port_num = hw->port_info->lport;
451         tx_ctx.tso_ena = 1; /* tso enable */
452         tx_ctx.tso_qnum = txq->reg_idx; /* index for tso state structure */
453         tx_ctx.legacy_int = 1; /* Legacy or Advanced Host Interface */
454
455         ice_set_ctx((uint8_t *)&tx_ctx, txq_elem.txqs[0].txq_ctx,
456                     ice_tlan_ctx_info);
457
458         txq->qtx_tail = hw->hw_addr + QTX_COMM_DBELL(txq->reg_idx);
459
460         /* Init the Tx tail register*/
461         ICE_PCI_REG_WRITE(txq->qtx_tail, 0);
462
463         /* Fix me, we assume TC always 0 here */
464         err = ice_ena_vsi_txq(hw->port_info, vsi->idx, 0, tx_queue_id, 1,
465                         &txq_elem, sizeof(txq_elem), NULL);
466         if (err) {
467                 PMD_DRV_LOG(ERR, "Failed to add lan txq");
468                 return -EIO;
469         }
470         /* store the schedule node id */
471         txq->q_teid = txq_elem.txqs[0].q_teid;
472
473         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
474         return 0;
475 }
476
477 /* Free all mbufs for descriptors in tx queue */
478 static void
479 _ice_tx_queue_release_mbufs(struct ice_tx_queue *txq)
480 {
481         uint16_t i;
482
483         if (!txq || !txq->sw_ring) {
484                 PMD_DRV_LOG(DEBUG, "Pointer to txq or sw_ring is NULL");
485                 return;
486         }
487
488         for (i = 0; i < txq->nb_tx_desc; i++) {
489                 if (txq->sw_ring[i].mbuf) {
490                         rte_pktmbuf_free_seg(txq->sw_ring[i].mbuf);
491                         txq->sw_ring[i].mbuf = NULL;
492                 }
493         }
494 }
495 static void
496 ice_tx_queue_release_mbufs(struct ice_tx_queue *txq)
497 {
498         txq->tx_rel_mbufs(txq);
499 }
500
501 static void
502 ice_reset_tx_queue(struct ice_tx_queue *txq)
503 {
504         struct ice_tx_entry *txe;
505         uint16_t i, prev, size;
506
507         if (!txq) {
508                 PMD_DRV_LOG(DEBUG, "Pointer to txq is NULL");
509                 return;
510         }
511
512         txe = txq->sw_ring;
513         size = sizeof(struct ice_tx_desc) * txq->nb_tx_desc;
514         for (i = 0; i < size; i++)
515                 ((volatile char *)txq->tx_ring)[i] = 0;
516
517         prev = (uint16_t)(txq->nb_tx_desc - 1);
518         for (i = 0; i < txq->nb_tx_desc; i++) {
519                 volatile struct ice_tx_desc *txd = &txq->tx_ring[i];
520
521                 txd->cmd_type_offset_bsz =
522                         rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DESC_DONE);
523                 txe[i].mbuf =  NULL;
524                 txe[i].last_id = i;
525                 txe[prev].next_id = i;
526                 prev = i;
527         }
528
529         txq->tx_next_dd = (uint16_t)(txq->tx_rs_thresh - 1);
530         txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
531
532         txq->tx_tail = 0;
533         txq->nb_tx_used = 0;
534
535         txq->last_desc_cleaned = (uint16_t)(txq->nb_tx_desc - 1);
536         txq->nb_tx_free = (uint16_t)(txq->nb_tx_desc - 1);
537 }
538
539 int
540 ice_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
541 {
542         struct ice_tx_queue *txq;
543         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
544         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
545         struct ice_vsi *vsi = pf->main_vsi;
546         enum ice_status status;
547         uint16_t q_ids[1];
548         uint32_t q_teids[1];
549         uint16_t q_handle = tx_queue_id;
550
551         if (tx_queue_id >= dev->data->nb_tx_queues) {
552                 PMD_DRV_LOG(ERR, "TX queue %u is out of range %u",
553                             tx_queue_id, dev->data->nb_tx_queues);
554                 return -EINVAL;
555         }
556
557         txq = dev->data->tx_queues[tx_queue_id];
558         if (!txq) {
559                 PMD_DRV_LOG(ERR, "TX queue %u is not available",
560                             tx_queue_id);
561                 return -EINVAL;
562         }
563
564         q_ids[0] = txq->reg_idx;
565         q_teids[0] = txq->q_teid;
566
567         /* Fix me, we assume TC always 0 here */
568         status = ice_dis_vsi_txq(hw->port_info, vsi->idx, 0, 1, &q_handle,
569                                 q_ids, q_teids, ICE_NO_RESET, 0, NULL);
570         if (status != ICE_SUCCESS) {
571                 PMD_DRV_LOG(DEBUG, "Failed to disable Lan Tx queue");
572                 return -EINVAL;
573         }
574
575         ice_tx_queue_release_mbufs(txq);
576         ice_reset_tx_queue(txq);
577         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
578
579         return 0;
580 }
581
582 int
583 ice_rx_queue_setup(struct rte_eth_dev *dev,
584                    uint16_t queue_idx,
585                    uint16_t nb_desc,
586                    unsigned int socket_id,
587                    const struct rte_eth_rxconf *rx_conf,
588                    struct rte_mempool *mp)
589 {
590         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
591         struct ice_adapter *ad =
592                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
593         struct ice_vsi *vsi = pf->main_vsi;
594         struct ice_rx_queue *rxq;
595         const struct rte_memzone *rz;
596         uint32_t ring_size;
597         uint16_t len;
598         int use_def_burst_func = 1;
599
600         if (nb_desc % ICE_ALIGN_RING_DESC != 0 ||
601             nb_desc > ICE_MAX_RING_DESC ||
602             nb_desc < ICE_MIN_RING_DESC) {
603                 PMD_INIT_LOG(ERR, "Number (%u) of receive descriptors is "
604                              "invalid", nb_desc);
605                 return -EINVAL;
606         }
607
608         /* Free memory if needed */
609         if (dev->data->rx_queues[queue_idx]) {
610                 ice_rx_queue_release(dev->data->rx_queues[queue_idx]);
611                 dev->data->rx_queues[queue_idx] = NULL;
612         }
613
614         /* Allocate the rx queue data structure */
615         rxq = rte_zmalloc_socket(NULL,
616                                  sizeof(struct ice_rx_queue),
617                                  RTE_CACHE_LINE_SIZE,
618                                  socket_id);
619         if (!rxq) {
620                 PMD_INIT_LOG(ERR, "Failed to allocate memory for "
621                              "rx queue data structure");
622                 return -ENOMEM;
623         }
624         rxq->mp = mp;
625         rxq->nb_rx_desc = nb_desc;
626         rxq->rx_free_thresh = rx_conf->rx_free_thresh;
627         rxq->queue_id = queue_idx;
628
629         rxq->reg_idx = vsi->base_queue + queue_idx;
630         rxq->port_id = dev->data->port_id;
631         if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)
632                 rxq->crc_len = RTE_ETHER_CRC_LEN;
633         else
634                 rxq->crc_len = 0;
635
636         rxq->drop_en = rx_conf->rx_drop_en;
637         rxq->vsi = vsi;
638         rxq->rx_deferred_start = rx_conf->rx_deferred_start;
639
640         /* Allocate the maximun number of RX ring hardware descriptor. */
641         len = ICE_MAX_RING_DESC;
642
643 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
644         /**
645          * Allocating a little more memory because vectorized/bulk_alloc Rx
646          * functions doesn't check boundaries each time.
647          */
648         len += ICE_RX_MAX_BURST;
649 #endif
650
651         /* Allocate the maximum number of RX ring hardware descriptor. */
652         ring_size = sizeof(union ice_rx_desc) * len;
653         ring_size = RTE_ALIGN(ring_size, ICE_DMA_MEM_ALIGN);
654         rz = rte_eth_dma_zone_reserve(dev, "rx_ring", queue_idx,
655                                       ring_size, ICE_RING_BASE_ALIGN,
656                                       socket_id);
657         if (!rz) {
658                 ice_rx_queue_release(rxq);
659                 PMD_INIT_LOG(ERR, "Failed to reserve DMA memory for RX");
660                 return -ENOMEM;
661         }
662
663         /* Zero all the descriptors in the ring. */
664         memset(rz->addr, 0, ring_size);
665
666         rxq->rx_ring_phys_addr = rz->phys_addr;
667         rxq->rx_ring = (union ice_rx_desc *)rz->addr;
668
669 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
670         len = (uint16_t)(nb_desc + ICE_RX_MAX_BURST);
671 #else
672         len = nb_desc;
673 #endif
674
675         /* Allocate the software ring. */
676         rxq->sw_ring = rte_zmalloc_socket(NULL,
677                                           sizeof(struct ice_rx_entry) * len,
678                                           RTE_CACHE_LINE_SIZE,
679                                           socket_id);
680         if (!rxq->sw_ring) {
681                 ice_rx_queue_release(rxq);
682                 PMD_INIT_LOG(ERR, "Failed to allocate memory for SW ring");
683                 return -ENOMEM;
684         }
685
686         ice_reset_rx_queue(rxq);
687         rxq->q_set = TRUE;
688         dev->data->rx_queues[queue_idx] = rxq;
689         rxq->rx_rel_mbufs = _ice_rx_queue_release_mbufs;
690
691         use_def_burst_func = ice_check_rx_burst_bulk_alloc_preconditions(rxq);
692
693         if (!use_def_burst_func) {
694 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
695                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions are "
696                              "satisfied. Rx Burst Bulk Alloc function will be "
697                              "used on port=%d, queue=%d.",
698                              rxq->port_id, rxq->queue_id);
699 #endif /* RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC */
700         } else {
701                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions are "
702                              "not satisfied, Scattered Rx is requested, "
703                              "or RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC is "
704                              "not enabled on port=%d, queue=%d.",
705                              rxq->port_id, rxq->queue_id);
706                 ad->rx_bulk_alloc_allowed = false;
707         }
708
709         return 0;
710 }
711
712 void
713 ice_rx_queue_release(void *rxq)
714 {
715         struct ice_rx_queue *q = (struct ice_rx_queue *)rxq;
716
717         if (!q) {
718                 PMD_DRV_LOG(DEBUG, "Pointer to rxq is NULL");
719                 return;
720         }
721
722         ice_rx_queue_release_mbufs(q);
723         rte_free(q->sw_ring);
724         rte_free(q);
725 }
726
727 int
728 ice_tx_queue_setup(struct rte_eth_dev *dev,
729                    uint16_t queue_idx,
730                    uint16_t nb_desc,
731                    unsigned int socket_id,
732                    const struct rte_eth_txconf *tx_conf)
733 {
734         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
735         struct ice_vsi *vsi = pf->main_vsi;
736         struct ice_tx_queue *txq;
737         const struct rte_memzone *tz;
738         uint32_t ring_size;
739         uint16_t tx_rs_thresh, tx_free_thresh;
740         uint64_t offloads;
741
742         offloads = tx_conf->offloads | dev->data->dev_conf.txmode.offloads;
743
744         if (nb_desc % ICE_ALIGN_RING_DESC != 0 ||
745             nb_desc > ICE_MAX_RING_DESC ||
746             nb_desc < ICE_MIN_RING_DESC) {
747                 PMD_INIT_LOG(ERR, "Number (%u) of transmit descriptors is "
748                              "invalid", nb_desc);
749                 return -EINVAL;
750         }
751
752         /**
753          * The following two parameters control the setting of the RS bit on
754          * transmit descriptors. TX descriptors will have their RS bit set
755          * after txq->tx_rs_thresh descriptors have been used. The TX
756          * descriptor ring will be cleaned after txq->tx_free_thresh
757          * descriptors are used or if the number of descriptors required to
758          * transmit a packet is greater than the number of free TX descriptors.
759          *
760          * The following constraints must be satisfied:
761          *  - tx_rs_thresh must be greater than 0.
762          *  - tx_rs_thresh must be less than the size of the ring minus 2.
763          *  - tx_rs_thresh must be less than or equal to tx_free_thresh.
764          *  - tx_rs_thresh must be a divisor of the ring size.
765          *  - tx_free_thresh must be greater than 0.
766          *  - tx_free_thresh must be less than the size of the ring minus 3.
767          *  - tx_free_thresh + tx_rs_thresh must not exceed nb_desc.
768          *
769          * One descriptor in the TX ring is used as a sentinel to avoid a H/W
770          * race condition, hence the maximum threshold constraints. When set
771          * to zero use default values.
772          */
773         tx_free_thresh = (uint16_t)(tx_conf->tx_free_thresh ?
774                                     tx_conf->tx_free_thresh :
775                                     ICE_DEFAULT_TX_FREE_THRESH);
776         /* force tx_rs_thresh to adapt an aggresive tx_free_thresh */
777         tx_rs_thresh =
778                 (ICE_DEFAULT_TX_RSBIT_THRESH + tx_free_thresh > nb_desc) ?
779                         nb_desc - tx_free_thresh : ICE_DEFAULT_TX_RSBIT_THRESH;
780         if (tx_conf->tx_rs_thresh)
781                 tx_rs_thresh = tx_conf->tx_rs_thresh;
782         if (tx_rs_thresh + tx_free_thresh > nb_desc) {
783                 PMD_INIT_LOG(ERR, "tx_rs_thresh + tx_free_thresh must not "
784                                 "exceed nb_desc. (tx_rs_thresh=%u "
785                                 "tx_free_thresh=%u nb_desc=%u port = %d queue=%d)",
786                                 (unsigned int)tx_rs_thresh,
787                                 (unsigned int)tx_free_thresh,
788                                 (unsigned int)nb_desc,
789                                 (int)dev->data->port_id,
790                                 (int)queue_idx);
791                 return -EINVAL;
792         }
793         if (tx_rs_thresh >= (nb_desc - 2)) {
794                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than the "
795                              "number of TX descriptors minus 2. "
796                              "(tx_rs_thresh=%u port=%d queue=%d)",
797                              (unsigned int)tx_rs_thresh,
798                              (int)dev->data->port_id,
799                              (int)queue_idx);
800                 return -EINVAL;
801         }
802         if (tx_free_thresh >= (nb_desc - 3)) {
803                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than the "
804                              "tx_free_thresh must be less than the "
805                              "number of TX descriptors minus 3. "
806                              "(tx_free_thresh=%u port=%d queue=%d)",
807                              (unsigned int)tx_free_thresh,
808                              (int)dev->data->port_id,
809                              (int)queue_idx);
810                 return -EINVAL;
811         }
812         if (tx_rs_thresh > tx_free_thresh) {
813                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than or "
814                              "equal to tx_free_thresh. (tx_free_thresh=%u"
815                              " tx_rs_thresh=%u port=%d queue=%d)",
816                              (unsigned int)tx_free_thresh,
817                              (unsigned int)tx_rs_thresh,
818                              (int)dev->data->port_id,
819                              (int)queue_idx);
820                 return -EINVAL;
821         }
822         if ((nb_desc % tx_rs_thresh) != 0) {
823                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be a divisor of the "
824                              "number of TX descriptors. (tx_rs_thresh=%u"
825                              " port=%d queue=%d)",
826                              (unsigned int)tx_rs_thresh,
827                              (int)dev->data->port_id,
828                              (int)queue_idx);
829                 return -EINVAL;
830         }
831         if (tx_rs_thresh > 1 && tx_conf->tx_thresh.wthresh != 0) {
832                 PMD_INIT_LOG(ERR, "TX WTHRESH must be set to 0 if "
833                              "tx_rs_thresh is greater than 1. "
834                              "(tx_rs_thresh=%u port=%d queue=%d)",
835                              (unsigned int)tx_rs_thresh,
836                              (int)dev->data->port_id,
837                              (int)queue_idx);
838                 return -EINVAL;
839         }
840
841         /* Free memory if needed. */
842         if (dev->data->tx_queues[queue_idx]) {
843                 ice_tx_queue_release(dev->data->tx_queues[queue_idx]);
844                 dev->data->tx_queues[queue_idx] = NULL;
845         }
846
847         /* Allocate the TX queue data structure. */
848         txq = rte_zmalloc_socket(NULL,
849                                  sizeof(struct ice_tx_queue),
850                                  RTE_CACHE_LINE_SIZE,
851                                  socket_id);
852         if (!txq) {
853                 PMD_INIT_LOG(ERR, "Failed to allocate memory for "
854                              "tx queue structure");
855                 return -ENOMEM;
856         }
857
858         /* Allocate TX hardware ring descriptors. */
859         ring_size = sizeof(struct ice_tx_desc) * ICE_MAX_RING_DESC;
860         ring_size = RTE_ALIGN(ring_size, ICE_DMA_MEM_ALIGN);
861         tz = rte_eth_dma_zone_reserve(dev, "tx_ring", queue_idx,
862                                       ring_size, ICE_RING_BASE_ALIGN,
863                                       socket_id);
864         if (!tz) {
865                 ice_tx_queue_release(txq);
866                 PMD_INIT_LOG(ERR, "Failed to reserve DMA memory for TX");
867                 return -ENOMEM;
868         }
869
870         txq->nb_tx_desc = nb_desc;
871         txq->tx_rs_thresh = tx_rs_thresh;
872         txq->tx_free_thresh = tx_free_thresh;
873         txq->pthresh = tx_conf->tx_thresh.pthresh;
874         txq->hthresh = tx_conf->tx_thresh.hthresh;
875         txq->wthresh = tx_conf->tx_thresh.wthresh;
876         txq->queue_id = queue_idx;
877
878         txq->reg_idx = vsi->base_queue + queue_idx;
879         txq->port_id = dev->data->port_id;
880         txq->offloads = offloads;
881         txq->vsi = vsi;
882         txq->tx_deferred_start = tx_conf->tx_deferred_start;
883
884         txq->tx_ring_phys_addr = tz->phys_addr;
885         txq->tx_ring = (struct ice_tx_desc *)tz->addr;
886
887         /* Allocate software ring */
888         txq->sw_ring =
889                 rte_zmalloc_socket(NULL,
890                                    sizeof(struct ice_tx_entry) * nb_desc,
891                                    RTE_CACHE_LINE_SIZE,
892                                    socket_id);
893         if (!txq->sw_ring) {
894                 ice_tx_queue_release(txq);
895                 PMD_INIT_LOG(ERR, "Failed to allocate memory for SW TX ring");
896                 return -ENOMEM;
897         }
898
899         ice_reset_tx_queue(txq);
900         txq->q_set = TRUE;
901         dev->data->tx_queues[queue_idx] = txq;
902         txq->tx_rel_mbufs = _ice_tx_queue_release_mbufs;
903         ice_set_tx_function_flag(dev, txq);
904
905         return 0;
906 }
907
908 void
909 ice_tx_queue_release(void *txq)
910 {
911         struct ice_tx_queue *q = (struct ice_tx_queue *)txq;
912
913         if (!q) {
914                 PMD_DRV_LOG(DEBUG, "Pointer to TX queue is NULL");
915                 return;
916         }
917
918         ice_tx_queue_release_mbufs(q);
919         rte_free(q->sw_ring);
920         rte_free(q);
921 }
922
923 void
924 ice_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
925                  struct rte_eth_rxq_info *qinfo)
926 {
927         struct ice_rx_queue *rxq;
928
929         rxq = dev->data->rx_queues[queue_id];
930
931         qinfo->mp = rxq->mp;
932         qinfo->scattered_rx = dev->data->scattered_rx;
933         qinfo->nb_desc = rxq->nb_rx_desc;
934
935         qinfo->conf.rx_free_thresh = rxq->rx_free_thresh;
936         qinfo->conf.rx_drop_en = rxq->drop_en;
937         qinfo->conf.rx_deferred_start = rxq->rx_deferred_start;
938 }
939
940 void
941 ice_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
942                  struct rte_eth_txq_info *qinfo)
943 {
944         struct ice_tx_queue *txq;
945
946         txq = dev->data->tx_queues[queue_id];
947
948         qinfo->nb_desc = txq->nb_tx_desc;
949
950         qinfo->conf.tx_thresh.pthresh = txq->pthresh;
951         qinfo->conf.tx_thresh.hthresh = txq->hthresh;
952         qinfo->conf.tx_thresh.wthresh = txq->wthresh;
953
954         qinfo->conf.tx_free_thresh = txq->tx_free_thresh;
955         qinfo->conf.tx_rs_thresh = txq->tx_rs_thresh;
956         qinfo->conf.offloads = txq->offloads;
957         qinfo->conf.tx_deferred_start = txq->tx_deferred_start;
958 }
959
960 uint32_t
961 ice_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
962 {
963 #define ICE_RXQ_SCAN_INTERVAL 4
964         volatile union ice_rx_desc *rxdp;
965         struct ice_rx_queue *rxq;
966         uint16_t desc = 0;
967
968         rxq = dev->data->rx_queues[rx_queue_id];
969         rxdp = &rxq->rx_ring[rxq->rx_tail];
970         while ((desc < rxq->nb_rx_desc) &&
971                ((rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len) &
972                  ICE_RXD_QW1_STATUS_M) >> ICE_RXD_QW1_STATUS_S) &
973                (1 << ICE_RX_DESC_STATUS_DD_S)) {
974                 /**
975                  * Check the DD bit of a rx descriptor of each 4 in a group,
976                  * to avoid checking too frequently and downgrading performance
977                  * too much.
978                  */
979                 desc += ICE_RXQ_SCAN_INTERVAL;
980                 rxdp += ICE_RXQ_SCAN_INTERVAL;
981                 if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
982                         rxdp = &(rxq->rx_ring[rxq->rx_tail +
983                                  desc - rxq->nb_rx_desc]);
984         }
985
986         return desc;
987 }
988
989 /* Translate the rx descriptor status to pkt flags */
990 static inline uint64_t
991 ice_rxd_status_to_pkt_flags(uint64_t qword)
992 {
993         uint64_t flags;
994
995         /* Check if RSS_HASH */
996         flags = (((qword >> ICE_RX_DESC_STATUS_FLTSTAT_S) &
997                   ICE_RX_DESC_FLTSTAT_RSS_HASH) ==
998                  ICE_RX_DESC_FLTSTAT_RSS_HASH) ? PKT_RX_RSS_HASH : 0;
999
1000         return flags;
1001 }
1002
1003 /* Rx L3/L4 checksum */
1004 static inline uint64_t
1005 ice_rxd_error_to_pkt_flags(uint64_t qword)
1006 {
1007         uint64_t flags = 0;
1008         uint64_t error_bits = (qword >> ICE_RXD_QW1_ERROR_S);
1009
1010         if (likely((error_bits & ICE_RX_ERR_BITS) == 0)) {
1011                 flags |= (PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD);
1012                 return flags;
1013         }
1014
1015         if (unlikely(error_bits & (1 << ICE_RX_DESC_ERROR_IPE_S)))
1016                 flags |= PKT_RX_IP_CKSUM_BAD;
1017         else
1018                 flags |= PKT_RX_IP_CKSUM_GOOD;
1019
1020         if (unlikely(error_bits & (1 << ICE_RX_DESC_ERROR_L4E_S)))
1021                 flags |= PKT_RX_L4_CKSUM_BAD;
1022         else
1023                 flags |= PKT_RX_L4_CKSUM_GOOD;
1024
1025         if (unlikely(error_bits & (1 << ICE_RX_DESC_ERROR_EIPE_S)))
1026                 flags |= PKT_RX_EIP_CKSUM_BAD;
1027
1028         return flags;
1029 }
1030
1031 static inline void
1032 ice_rxd_to_vlan_tci(struct rte_mbuf *mb, volatile union ice_rx_desc *rxdp)
1033 {
1034         if (rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len) &
1035             (1 << ICE_RX_DESC_STATUS_L2TAG1P_S)) {
1036                 mb->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
1037                 mb->vlan_tci =
1038                         rte_le_to_cpu_16(rxdp->wb.qword0.lo_dword.l2tag1);
1039                 PMD_RX_LOG(DEBUG, "Descriptor l2tag1: %u",
1040                            rte_le_to_cpu_16(rxdp->wb.qword0.lo_dword.l2tag1));
1041         } else {
1042                 mb->vlan_tci = 0;
1043         }
1044
1045 #ifndef RTE_LIBRTE_ICE_16BYTE_RX_DESC
1046         if (rte_le_to_cpu_16(rxdp->wb.qword2.ext_status) &
1047             (1 << ICE_RX_DESC_EXT_STATUS_L2TAG2P_S)) {
1048                 mb->ol_flags |= PKT_RX_QINQ_STRIPPED | PKT_RX_QINQ |
1049                                 PKT_RX_VLAN_STRIPPED | PKT_RX_VLAN;
1050                 mb->vlan_tci_outer = mb->vlan_tci;
1051                 mb->vlan_tci = rte_le_to_cpu_16(rxdp->wb.qword2.l2tag2_2);
1052                 PMD_RX_LOG(DEBUG, "Descriptor l2tag2_1: %u, l2tag2_2: %u",
1053                            rte_le_to_cpu_16(rxdp->wb.qword2.l2tag2_1),
1054                            rte_le_to_cpu_16(rxdp->wb.qword2.l2tag2_2));
1055         } else {
1056                 mb->vlan_tci_outer = 0;
1057         }
1058 #endif
1059         PMD_RX_LOG(DEBUG, "Mbuf vlan_tci: %u, vlan_tci_outer: %u",
1060                    mb->vlan_tci, mb->vlan_tci_outer);
1061 }
1062
1063 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
1064 #define ICE_LOOK_AHEAD 8
1065 #if (ICE_LOOK_AHEAD != 8)
1066 #error "PMD ICE: ICE_LOOK_AHEAD must be 8\n"
1067 #endif
1068 static inline int
1069 ice_rx_scan_hw_ring(struct ice_rx_queue *rxq)
1070 {
1071         volatile union ice_rx_desc *rxdp;
1072         struct ice_rx_entry *rxep;
1073         struct rte_mbuf *mb;
1074         uint16_t pkt_len;
1075         uint64_t qword1;
1076         uint32_t rx_status;
1077         int32_t s[ICE_LOOK_AHEAD], nb_dd;
1078         int32_t i, j, nb_rx = 0;
1079         uint64_t pkt_flags = 0;
1080         uint32_t *ptype_tbl = rxq->vsi->adapter->ptype_tbl;
1081
1082         rxdp = &rxq->rx_ring[rxq->rx_tail];
1083         rxep = &rxq->sw_ring[rxq->rx_tail];
1084
1085         qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
1086         rx_status = (qword1 & ICE_RXD_QW1_STATUS_M) >> ICE_RXD_QW1_STATUS_S;
1087
1088         /* Make sure there is at least 1 packet to receive */
1089         if (!(rx_status & (1 << ICE_RX_DESC_STATUS_DD_S)))
1090                 return 0;
1091
1092         /**
1093          * Scan LOOK_AHEAD descriptors at a time to determine which
1094          * descriptors reference packets that are ready to be received.
1095          */
1096         for (i = 0; i < ICE_RX_MAX_BURST; i += ICE_LOOK_AHEAD,
1097              rxdp += ICE_LOOK_AHEAD, rxep += ICE_LOOK_AHEAD) {
1098                 /* Read desc statuses backwards to avoid race condition */
1099                 for (j = ICE_LOOK_AHEAD - 1; j >= 0; j--) {
1100                         qword1 = rte_le_to_cpu_64(
1101                                         rxdp[j].wb.qword1.status_error_len);
1102                         s[j] = (qword1 & ICE_RXD_QW1_STATUS_M) >>
1103                                ICE_RXD_QW1_STATUS_S;
1104                 }
1105
1106                 rte_smp_rmb();
1107
1108                 /* Compute how many status bits were set */
1109                 for (j = 0, nb_dd = 0; j < ICE_LOOK_AHEAD; j++)
1110                         nb_dd += s[j] & (1 << ICE_RX_DESC_STATUS_DD_S);
1111
1112                 nb_rx += nb_dd;
1113
1114                 /* Translate descriptor info to mbuf parameters */
1115                 for (j = 0; j < nb_dd; j++) {
1116                         mb = rxep[j].mbuf;
1117                         qword1 = rte_le_to_cpu_64(
1118                                         rxdp[j].wb.qword1.status_error_len);
1119                         pkt_len = ((qword1 & ICE_RXD_QW1_LEN_PBUF_M) >>
1120                                    ICE_RXD_QW1_LEN_PBUF_S) - rxq->crc_len;
1121                         mb->data_len = pkt_len;
1122                         mb->pkt_len = pkt_len;
1123                         mb->ol_flags = 0;
1124                         pkt_flags = ice_rxd_status_to_pkt_flags(qword1);
1125                         pkt_flags |= ice_rxd_error_to_pkt_flags(qword1);
1126                         if (pkt_flags & PKT_RX_RSS_HASH)
1127                                 mb->hash.rss =
1128                                         rte_le_to_cpu_32(
1129                                                 rxdp[j].wb.qword0.hi_dword.rss);
1130                         mb->packet_type = ptype_tbl[(uint8_t)(
1131                                                 (qword1 &
1132                                                  ICE_RXD_QW1_PTYPE_M) >>
1133                                                 ICE_RXD_QW1_PTYPE_S)];
1134                         ice_rxd_to_vlan_tci(mb, &rxdp[j]);
1135
1136                         mb->ol_flags |= pkt_flags;
1137                 }
1138
1139                 for (j = 0; j < ICE_LOOK_AHEAD; j++)
1140                         rxq->rx_stage[i + j] = rxep[j].mbuf;
1141
1142                 if (nb_dd != ICE_LOOK_AHEAD)
1143                         break;
1144         }
1145
1146         /* Clear software ring entries */
1147         for (i = 0; i < nb_rx; i++)
1148                 rxq->sw_ring[rxq->rx_tail + i].mbuf = NULL;
1149
1150         PMD_RX_LOG(DEBUG, "ice_rx_scan_hw_ring: "
1151                    "port_id=%u, queue_id=%u, nb_rx=%d",
1152                    rxq->port_id, rxq->queue_id, nb_rx);
1153
1154         return nb_rx;
1155 }
1156
1157 static inline uint16_t
1158 ice_rx_fill_from_stage(struct ice_rx_queue *rxq,
1159                        struct rte_mbuf **rx_pkts,
1160                        uint16_t nb_pkts)
1161 {
1162         uint16_t i;
1163         struct rte_mbuf **stage = &rxq->rx_stage[rxq->rx_next_avail];
1164
1165         nb_pkts = (uint16_t)RTE_MIN(nb_pkts, rxq->rx_nb_avail);
1166
1167         for (i = 0; i < nb_pkts; i++)
1168                 rx_pkts[i] = stage[i];
1169
1170         rxq->rx_nb_avail = (uint16_t)(rxq->rx_nb_avail - nb_pkts);
1171         rxq->rx_next_avail = (uint16_t)(rxq->rx_next_avail + nb_pkts);
1172
1173         return nb_pkts;
1174 }
1175
1176 static inline int
1177 ice_rx_alloc_bufs(struct ice_rx_queue *rxq)
1178 {
1179         volatile union ice_rx_desc *rxdp;
1180         struct ice_rx_entry *rxep;
1181         struct rte_mbuf *mb;
1182         uint16_t alloc_idx, i;
1183         uint64_t dma_addr;
1184         int diag;
1185
1186         /* Allocate buffers in bulk */
1187         alloc_idx = (uint16_t)(rxq->rx_free_trigger -
1188                                (rxq->rx_free_thresh - 1));
1189         rxep = &rxq->sw_ring[alloc_idx];
1190         diag = rte_mempool_get_bulk(rxq->mp, (void *)rxep,
1191                                     rxq->rx_free_thresh);
1192         if (unlikely(diag != 0)) {
1193                 PMD_RX_LOG(ERR, "Failed to get mbufs in bulk");
1194                 return -ENOMEM;
1195         }
1196
1197         rxdp = &rxq->rx_ring[alloc_idx];
1198         for (i = 0; i < rxq->rx_free_thresh; i++) {
1199                 if (likely(i < (rxq->rx_free_thresh - 1)))
1200                         /* Prefetch next mbuf */
1201                         rte_prefetch0(rxep[i + 1].mbuf);
1202
1203                 mb = rxep[i].mbuf;
1204                 rte_mbuf_refcnt_set(mb, 1);
1205                 mb->next = NULL;
1206                 mb->data_off = RTE_PKTMBUF_HEADROOM;
1207                 mb->nb_segs = 1;
1208                 mb->port = rxq->port_id;
1209                 dma_addr = rte_cpu_to_le_64(rte_mbuf_data_iova_default(mb));
1210                 rxdp[i].read.hdr_addr = 0;
1211                 rxdp[i].read.pkt_addr = dma_addr;
1212         }
1213
1214         /* Update rx tail regsiter */
1215         rte_wmb();
1216         ICE_PCI_REG_WRITE(rxq->qrx_tail, rxq->rx_free_trigger);
1217
1218         rxq->rx_free_trigger =
1219                 (uint16_t)(rxq->rx_free_trigger + rxq->rx_free_thresh);
1220         if (rxq->rx_free_trigger >= rxq->nb_rx_desc)
1221                 rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1);
1222
1223         return 0;
1224 }
1225
1226 static inline uint16_t
1227 rx_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
1228 {
1229         struct ice_rx_queue *rxq = (struct ice_rx_queue *)rx_queue;
1230         uint16_t nb_rx = 0;
1231         struct rte_eth_dev *dev;
1232
1233         if (!nb_pkts)
1234                 return 0;
1235
1236         if (rxq->rx_nb_avail)
1237                 return ice_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
1238
1239         nb_rx = (uint16_t)ice_rx_scan_hw_ring(rxq);
1240         rxq->rx_next_avail = 0;
1241         rxq->rx_nb_avail = nb_rx;
1242         rxq->rx_tail = (uint16_t)(rxq->rx_tail + nb_rx);
1243
1244         if (rxq->rx_tail > rxq->rx_free_trigger) {
1245                 if (ice_rx_alloc_bufs(rxq) != 0) {
1246                         uint16_t i, j;
1247
1248                         dev = ICE_VSI_TO_ETH_DEV(rxq->vsi);
1249                         dev->data->rx_mbuf_alloc_failed +=
1250                                 rxq->rx_free_thresh;
1251                         PMD_RX_LOG(DEBUG, "Rx mbuf alloc failed for "
1252                                    "port_id=%u, queue_id=%u",
1253                                    rxq->port_id, rxq->queue_id);
1254                         rxq->rx_nb_avail = 0;
1255                         rxq->rx_tail = (uint16_t)(rxq->rx_tail - nb_rx);
1256                         for (i = 0, j = rxq->rx_tail; i < nb_rx; i++, j++)
1257                                 rxq->sw_ring[j].mbuf = rxq->rx_stage[i];
1258
1259                         return 0;
1260                 }
1261         }
1262
1263         if (rxq->rx_tail >= rxq->nb_rx_desc)
1264                 rxq->rx_tail = 0;
1265
1266         if (rxq->rx_nb_avail)
1267                 return ice_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
1268
1269         return 0;
1270 }
1271
1272 static uint16_t
1273 ice_recv_pkts_bulk_alloc(void *rx_queue,
1274                          struct rte_mbuf **rx_pkts,
1275                          uint16_t nb_pkts)
1276 {
1277         uint16_t nb_rx = 0;
1278         uint16_t n;
1279         uint16_t count;
1280
1281         if (unlikely(nb_pkts == 0))
1282                 return nb_rx;
1283
1284         if (likely(nb_pkts <= ICE_RX_MAX_BURST))
1285                 return rx_recv_pkts(rx_queue, rx_pkts, nb_pkts);
1286
1287         while (nb_pkts) {
1288                 n = RTE_MIN(nb_pkts, ICE_RX_MAX_BURST);
1289                 count = rx_recv_pkts(rx_queue, &rx_pkts[nb_rx], n);
1290                 nb_rx = (uint16_t)(nb_rx + count);
1291                 nb_pkts = (uint16_t)(nb_pkts - count);
1292                 if (count < n)
1293                         break;
1294         }
1295
1296         return nb_rx;
1297 }
1298 #else
1299 static uint16_t
1300 ice_recv_pkts_bulk_alloc(void __rte_unused *rx_queue,
1301                          struct rte_mbuf __rte_unused **rx_pkts,
1302                          uint16_t __rte_unused nb_pkts)
1303 {
1304         return 0;
1305 }
1306 #endif /* RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC */
1307
1308 static uint16_t
1309 ice_recv_scattered_pkts(void *rx_queue,
1310                         struct rte_mbuf **rx_pkts,
1311                         uint16_t nb_pkts)
1312 {
1313         struct ice_rx_queue *rxq = rx_queue;
1314         volatile union ice_rx_desc *rx_ring = rxq->rx_ring;
1315         volatile union ice_rx_desc *rxdp;
1316         union ice_rx_desc rxd;
1317         struct ice_rx_entry *sw_ring = rxq->sw_ring;
1318         struct ice_rx_entry *rxe;
1319         struct rte_mbuf *first_seg = rxq->pkt_first_seg;
1320         struct rte_mbuf *last_seg = rxq->pkt_last_seg;
1321         struct rte_mbuf *nmb; /* new allocated mbuf */
1322         struct rte_mbuf *rxm; /* pointer to store old mbuf in SW ring */
1323         uint16_t rx_id = rxq->rx_tail;
1324         uint16_t nb_rx = 0;
1325         uint16_t nb_hold = 0;
1326         uint16_t rx_packet_len;
1327         uint32_t rx_status;
1328         uint64_t qword1;
1329         uint64_t dma_addr;
1330         uint64_t pkt_flags = 0;
1331         uint32_t *ptype_tbl = rxq->vsi->adapter->ptype_tbl;
1332         struct rte_eth_dev *dev;
1333
1334         while (nb_rx < nb_pkts) {
1335                 rxdp = &rx_ring[rx_id];
1336                 qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
1337                 rx_status = (qword1 & ICE_RXD_QW1_STATUS_M) >>
1338                             ICE_RXD_QW1_STATUS_S;
1339
1340                 /* Check the DD bit first */
1341                 if (!(rx_status & (1 << ICE_RX_DESC_STATUS_DD_S)))
1342                         break;
1343
1344                 /* allocate mbuf */
1345                 nmb = rte_mbuf_raw_alloc(rxq->mp);
1346                 if (unlikely(!nmb)) {
1347                         dev = ICE_VSI_TO_ETH_DEV(rxq->vsi);
1348                         dev->data->rx_mbuf_alloc_failed++;
1349                         break;
1350                 }
1351                 rxd = *rxdp; /* copy descriptor in ring to temp variable*/
1352
1353                 nb_hold++;
1354                 rxe = &sw_ring[rx_id]; /* get corresponding mbuf in SW ring */
1355                 rx_id++;
1356                 if (unlikely(rx_id == rxq->nb_rx_desc))
1357                         rx_id = 0;
1358
1359                 /* Prefetch next mbuf */
1360                 rte_prefetch0(sw_ring[rx_id].mbuf);
1361
1362                 /**
1363                  * When next RX descriptor is on a cache line boundary,
1364                  * prefetch the next 4 RX descriptors and next 8 pointers
1365                  * to mbufs.
1366                  */
1367                 if ((rx_id & 0x3) == 0) {
1368                         rte_prefetch0(&rx_ring[rx_id]);
1369                         rte_prefetch0(&sw_ring[rx_id]);
1370                 }
1371
1372                 rxm = rxe->mbuf;
1373                 rxe->mbuf = nmb;
1374                 dma_addr =
1375                         rte_cpu_to_le_64(rte_mbuf_data_iova_default(nmb));
1376
1377                 /* Set data buffer address and data length of the mbuf */
1378                 rxdp->read.hdr_addr = 0;
1379                 rxdp->read.pkt_addr = dma_addr;
1380                 rx_packet_len = (qword1 & ICE_RXD_QW1_LEN_PBUF_M) >>
1381                                 ICE_RXD_QW1_LEN_PBUF_S;
1382                 rxm->data_len = rx_packet_len;
1383                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
1384                 ice_rxd_to_vlan_tci(rxm, rxdp);
1385                 rxm->packet_type = ptype_tbl[(uint8_t)((qword1 &
1386                                                         ICE_RXD_QW1_PTYPE_M) >>
1387                                                        ICE_RXD_QW1_PTYPE_S)];
1388
1389                 /**
1390                  * If this is the first buffer of the received packet, set the
1391                  * pointer to the first mbuf of the packet and initialize its
1392                  * context. Otherwise, update the total length and the number
1393                  * of segments of the current scattered packet, and update the
1394                  * pointer to the last mbuf of the current packet.
1395                  */
1396                 if (!first_seg) {
1397                         first_seg = rxm;
1398                         first_seg->nb_segs = 1;
1399                         first_seg->pkt_len = rx_packet_len;
1400                 } else {
1401                         first_seg->pkt_len =
1402                                 (uint16_t)(first_seg->pkt_len +
1403                                            rx_packet_len);
1404                         first_seg->nb_segs++;
1405                         last_seg->next = rxm;
1406                 }
1407
1408                 /**
1409                  * If this is not the last buffer of the received packet,
1410                  * update the pointer to the last mbuf of the current scattered
1411                  * packet and continue to parse the RX ring.
1412                  */
1413                 if (!(rx_status & (1 << ICE_RX_DESC_STATUS_EOF_S))) {
1414                         last_seg = rxm;
1415                         continue;
1416                 }
1417
1418                 /**
1419                  * This is the last buffer of the received packet. If the CRC
1420                  * is not stripped by the hardware:
1421                  *  - Subtract the CRC length from the total packet length.
1422                  *  - If the last buffer only contains the whole CRC or a part
1423                  *  of it, free the mbuf associated to the last buffer. If part
1424                  *  of the CRC is also contained in the previous mbuf, subtract
1425                  *  the length of that CRC part from the data length of the
1426                  *  previous mbuf.
1427                  */
1428                 rxm->next = NULL;
1429                 if (unlikely(rxq->crc_len > 0)) {
1430                         first_seg->pkt_len -= RTE_ETHER_CRC_LEN;
1431                         if (rx_packet_len <= RTE_ETHER_CRC_LEN) {
1432                                 rte_pktmbuf_free_seg(rxm);
1433                                 first_seg->nb_segs--;
1434                                 last_seg->data_len =
1435                                         (uint16_t)(last_seg->data_len -
1436                                         (RTE_ETHER_CRC_LEN - rx_packet_len));
1437                                 last_seg->next = NULL;
1438                         } else
1439                                 rxm->data_len = (uint16_t)(rx_packet_len -
1440                                                            RTE_ETHER_CRC_LEN);
1441                 }
1442
1443                 first_seg->port = rxq->port_id;
1444                 first_seg->ol_flags = 0;
1445
1446                 pkt_flags = ice_rxd_status_to_pkt_flags(qword1);
1447                 pkt_flags |= ice_rxd_error_to_pkt_flags(qword1);
1448                 if (pkt_flags & PKT_RX_RSS_HASH)
1449                         first_seg->hash.rss =
1450                                 rte_le_to_cpu_32(rxd.wb.qword0.hi_dword.rss);
1451
1452                 first_seg->ol_flags |= pkt_flags;
1453                 /* Prefetch data of first segment, if configured to do so. */
1454                 rte_prefetch0(RTE_PTR_ADD(first_seg->buf_addr,
1455                                           first_seg->data_off));
1456                 rx_pkts[nb_rx++] = first_seg;
1457                 first_seg = NULL;
1458         }
1459
1460         /* Record index of the next RX descriptor to probe. */
1461         rxq->rx_tail = rx_id;
1462         rxq->pkt_first_seg = first_seg;
1463         rxq->pkt_last_seg = last_seg;
1464
1465         /**
1466          * If the number of free RX descriptors is greater than the RX free
1467          * threshold of the queue, advance the Receive Descriptor Tail (RDT)
1468          * register. Update the RDT with the value of the last processed RX
1469          * descriptor minus 1, to guarantee that the RDT register is never
1470          * equal to the RDH register, which creates a "full" ring situtation
1471          * from the hardware point of view.
1472          */
1473         nb_hold = (uint16_t)(nb_hold + rxq->nb_rx_hold);
1474         if (nb_hold > rxq->rx_free_thresh) {
1475                 rx_id = (uint16_t)(rx_id == 0 ?
1476                                    (rxq->nb_rx_desc - 1) : (rx_id - 1));
1477                 /* write TAIL register */
1478                 ICE_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
1479                 nb_hold = 0;
1480         }
1481         rxq->nb_rx_hold = nb_hold;
1482
1483         /* return received packet in the burst */
1484         return nb_rx;
1485 }
1486
1487 const uint32_t *
1488 ice_dev_supported_ptypes_get(struct rte_eth_dev *dev)
1489 {
1490         static const uint32_t ptypes[] = {
1491                 /* refers to ice_get_default_pkt_type() */
1492                 RTE_PTYPE_L2_ETHER,
1493                 RTE_PTYPE_L2_ETHER_LLDP,
1494                 RTE_PTYPE_L2_ETHER_ARP,
1495                 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
1496                 RTE_PTYPE_L3_IPV6_EXT_UNKNOWN,
1497                 RTE_PTYPE_L4_FRAG,
1498                 RTE_PTYPE_L4_ICMP,
1499                 RTE_PTYPE_L4_NONFRAG,
1500                 RTE_PTYPE_L4_SCTP,
1501                 RTE_PTYPE_L4_TCP,
1502                 RTE_PTYPE_L4_UDP,
1503                 RTE_PTYPE_TUNNEL_GRENAT,
1504                 RTE_PTYPE_TUNNEL_IP,
1505                 RTE_PTYPE_INNER_L2_ETHER,
1506                 RTE_PTYPE_INNER_L2_ETHER_VLAN,
1507                 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN,
1508                 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN,
1509                 RTE_PTYPE_INNER_L4_FRAG,
1510                 RTE_PTYPE_INNER_L4_ICMP,
1511                 RTE_PTYPE_INNER_L4_NONFRAG,
1512                 RTE_PTYPE_INNER_L4_SCTP,
1513                 RTE_PTYPE_INNER_L4_TCP,
1514                 RTE_PTYPE_INNER_L4_UDP,
1515                 RTE_PTYPE_TUNNEL_GTPC,
1516                 RTE_PTYPE_TUNNEL_GTPU,
1517                 RTE_PTYPE_UNKNOWN
1518         };
1519
1520         if (dev->rx_pkt_burst == ice_recv_pkts ||
1521 #ifdef RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC
1522             dev->rx_pkt_burst == ice_recv_pkts_bulk_alloc ||
1523 #endif
1524             dev->rx_pkt_burst == ice_recv_scattered_pkts)
1525                 return ptypes;
1526
1527 #ifdef RTE_ARCH_X86
1528         if (dev->rx_pkt_burst == ice_recv_pkts_vec ||
1529             dev->rx_pkt_burst == ice_recv_scattered_pkts_vec ||
1530             dev->rx_pkt_burst == ice_recv_pkts_vec_avx2 ||
1531             dev->rx_pkt_burst == ice_recv_scattered_pkts_vec_avx2)
1532                 return ptypes;
1533 #endif
1534
1535         return NULL;
1536 }
1537
1538 int
1539 ice_rx_descriptor_status(void *rx_queue, uint16_t offset)
1540 {
1541         struct ice_rx_queue *rxq = rx_queue;
1542         volatile uint64_t *status;
1543         uint64_t mask;
1544         uint32_t desc;
1545
1546         if (unlikely(offset >= rxq->nb_rx_desc))
1547                 return -EINVAL;
1548
1549         if (offset >= rxq->nb_rx_desc - rxq->nb_rx_hold)
1550                 return RTE_ETH_RX_DESC_UNAVAIL;
1551
1552         desc = rxq->rx_tail + offset;
1553         if (desc >= rxq->nb_rx_desc)
1554                 desc -= rxq->nb_rx_desc;
1555
1556         status = &rxq->rx_ring[desc].wb.qword1.status_error_len;
1557         mask = rte_cpu_to_le_64((1ULL << ICE_RX_DESC_STATUS_DD_S) <<
1558                                 ICE_RXD_QW1_STATUS_S);
1559         if (*status & mask)
1560                 return RTE_ETH_RX_DESC_DONE;
1561
1562         return RTE_ETH_RX_DESC_AVAIL;
1563 }
1564
1565 int
1566 ice_tx_descriptor_status(void *tx_queue, uint16_t offset)
1567 {
1568         struct ice_tx_queue *txq = tx_queue;
1569         volatile uint64_t *status;
1570         uint64_t mask, expect;
1571         uint32_t desc;
1572
1573         if (unlikely(offset >= txq->nb_tx_desc))
1574                 return -EINVAL;
1575
1576         desc = txq->tx_tail + offset;
1577         /* go to next desc that has the RS bit */
1578         desc = ((desc + txq->tx_rs_thresh - 1) / txq->tx_rs_thresh) *
1579                 txq->tx_rs_thresh;
1580         if (desc >= txq->nb_tx_desc) {
1581                 desc -= txq->nb_tx_desc;
1582                 if (desc >= txq->nb_tx_desc)
1583                         desc -= txq->nb_tx_desc;
1584         }
1585
1586         status = &txq->tx_ring[desc].cmd_type_offset_bsz;
1587         mask = rte_cpu_to_le_64(ICE_TXD_QW1_DTYPE_M);
1588         expect = rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DESC_DONE <<
1589                                   ICE_TXD_QW1_DTYPE_S);
1590         if ((*status & mask) == expect)
1591                 return RTE_ETH_TX_DESC_DONE;
1592
1593         return RTE_ETH_TX_DESC_FULL;
1594 }
1595
1596 void
1597 ice_clear_queues(struct rte_eth_dev *dev)
1598 {
1599         uint16_t i;
1600
1601         PMD_INIT_FUNC_TRACE();
1602
1603         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1604                 ice_tx_queue_release_mbufs(dev->data->tx_queues[i]);
1605                 ice_reset_tx_queue(dev->data->tx_queues[i]);
1606         }
1607
1608         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1609                 ice_rx_queue_release_mbufs(dev->data->rx_queues[i]);
1610                 ice_reset_rx_queue(dev->data->rx_queues[i]);
1611         }
1612 }
1613
1614 void
1615 ice_free_queues(struct rte_eth_dev *dev)
1616 {
1617         uint16_t i;
1618
1619         PMD_INIT_FUNC_TRACE();
1620
1621         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1622                 if (!dev->data->rx_queues[i])
1623                         continue;
1624                 ice_rx_queue_release(dev->data->rx_queues[i]);
1625                 dev->data->rx_queues[i] = NULL;
1626         }
1627         dev->data->nb_rx_queues = 0;
1628
1629         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1630                 if (!dev->data->tx_queues[i])
1631                         continue;
1632                 ice_tx_queue_release(dev->data->tx_queues[i]);
1633                 dev->data->tx_queues[i] = NULL;
1634         }
1635         dev->data->nb_tx_queues = 0;
1636 }
1637
1638 uint16_t
1639 ice_recv_pkts(void *rx_queue,
1640               struct rte_mbuf **rx_pkts,
1641               uint16_t nb_pkts)
1642 {
1643         struct ice_rx_queue *rxq = rx_queue;
1644         volatile union ice_rx_desc *rx_ring = rxq->rx_ring;
1645         volatile union ice_rx_desc *rxdp;
1646         union ice_rx_desc rxd;
1647         struct ice_rx_entry *sw_ring = rxq->sw_ring;
1648         struct ice_rx_entry *rxe;
1649         struct rte_mbuf *nmb; /* new allocated mbuf */
1650         struct rte_mbuf *rxm; /* pointer to store old mbuf in SW ring */
1651         uint16_t rx_id = rxq->rx_tail;
1652         uint16_t nb_rx = 0;
1653         uint16_t nb_hold = 0;
1654         uint16_t rx_packet_len;
1655         uint32_t rx_status;
1656         uint64_t qword1;
1657         uint64_t dma_addr;
1658         uint64_t pkt_flags = 0;
1659         uint32_t *ptype_tbl = rxq->vsi->adapter->ptype_tbl;
1660         struct rte_eth_dev *dev;
1661
1662         while (nb_rx < nb_pkts) {
1663                 rxdp = &rx_ring[rx_id];
1664                 qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
1665                 rx_status = (qword1 & ICE_RXD_QW1_STATUS_M) >>
1666                             ICE_RXD_QW1_STATUS_S;
1667
1668                 /* Check the DD bit first */
1669                 if (!(rx_status & (1 << ICE_RX_DESC_STATUS_DD_S)))
1670                         break;
1671
1672                 /* allocate mbuf */
1673                 nmb = rte_mbuf_raw_alloc(rxq->mp);
1674                 if (unlikely(!nmb)) {
1675                         dev = ICE_VSI_TO_ETH_DEV(rxq->vsi);
1676                         dev->data->rx_mbuf_alloc_failed++;
1677                         break;
1678                 }
1679                 rxd = *rxdp; /* copy descriptor in ring to temp variable*/
1680
1681                 nb_hold++;
1682                 rxe = &sw_ring[rx_id]; /* get corresponding mbuf in SW ring */
1683                 rx_id++;
1684                 if (unlikely(rx_id == rxq->nb_rx_desc))
1685                         rx_id = 0;
1686                 rxm = rxe->mbuf;
1687                 rxe->mbuf = nmb;
1688                 dma_addr =
1689                         rte_cpu_to_le_64(rte_mbuf_data_iova_default(nmb));
1690
1691                 /**
1692                  * fill the read format of descriptor with physic address in
1693                  * new allocated mbuf: nmb
1694                  */
1695                 rxdp->read.hdr_addr = 0;
1696                 rxdp->read.pkt_addr = dma_addr;
1697
1698                 /* calculate rx_packet_len of the received pkt */
1699                 rx_packet_len = ((qword1 & ICE_RXD_QW1_LEN_PBUF_M) >>
1700                                 ICE_RXD_QW1_LEN_PBUF_S) - rxq->crc_len;
1701
1702                 /* fill old mbuf with received descriptor: rxd */
1703                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
1704                 rte_prefetch0(RTE_PTR_ADD(rxm->buf_addr, RTE_PKTMBUF_HEADROOM));
1705                 rxm->nb_segs = 1;
1706                 rxm->next = NULL;
1707                 rxm->pkt_len = rx_packet_len;
1708                 rxm->data_len = rx_packet_len;
1709                 rxm->port = rxq->port_id;
1710                 ice_rxd_to_vlan_tci(rxm, rxdp);
1711                 rxm->packet_type = ptype_tbl[(uint8_t)((qword1 &
1712                                                         ICE_RXD_QW1_PTYPE_M) >>
1713                                                        ICE_RXD_QW1_PTYPE_S)];
1714                 pkt_flags = ice_rxd_status_to_pkt_flags(qword1);
1715                 pkt_flags |= ice_rxd_error_to_pkt_flags(qword1);
1716                 if (pkt_flags & PKT_RX_RSS_HASH)
1717                         rxm->hash.rss =
1718                                 rte_le_to_cpu_32(rxd.wb.qword0.hi_dword.rss);
1719                 rxm->ol_flags |= pkt_flags;
1720                 /* copy old mbuf to rx_pkts */
1721                 rx_pkts[nb_rx++] = rxm;
1722         }
1723         rxq->rx_tail = rx_id;
1724         /**
1725          * If the number of free RX descriptors is greater than the RX free
1726          * threshold of the queue, advance the receive tail register of queue.
1727          * Update that register with the value of the last processed RX
1728          * descriptor minus 1.
1729          */
1730         nb_hold = (uint16_t)(nb_hold + rxq->nb_rx_hold);
1731         if (nb_hold > rxq->rx_free_thresh) {
1732                 rx_id = (uint16_t)(rx_id == 0 ?
1733                                    (rxq->nb_rx_desc - 1) : (rx_id - 1));
1734                 /* write TAIL register */
1735                 ICE_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
1736                 nb_hold = 0;
1737         }
1738         rxq->nb_rx_hold = nb_hold;
1739
1740         /* return received packet in the burst */
1741         return nb_rx;
1742 }
1743
1744 static inline void
1745 ice_txd_enable_checksum(uint64_t ol_flags,
1746                         uint32_t *td_cmd,
1747                         uint32_t *td_offset,
1748                         union ice_tx_offload tx_offload)
1749 {
1750         /* L2 length must be set. */
1751         *td_offset |= (tx_offload.l2_len >> 1) <<
1752                       ICE_TX_DESC_LEN_MACLEN_S;
1753
1754         /* Enable L3 checksum offloads */
1755         if (ol_flags & PKT_TX_IP_CKSUM) {
1756                 *td_cmd |= ICE_TX_DESC_CMD_IIPT_IPV4_CSUM;
1757                 *td_offset |= (tx_offload.l3_len >> 2) <<
1758                               ICE_TX_DESC_LEN_IPLEN_S;
1759         } else if (ol_flags & PKT_TX_IPV4) {
1760                 *td_cmd |= ICE_TX_DESC_CMD_IIPT_IPV4;
1761                 *td_offset |= (tx_offload.l3_len >> 2) <<
1762                               ICE_TX_DESC_LEN_IPLEN_S;
1763         } else if (ol_flags & PKT_TX_IPV6) {
1764                 *td_cmd |= ICE_TX_DESC_CMD_IIPT_IPV6;
1765                 *td_offset |= (tx_offload.l3_len >> 2) <<
1766                               ICE_TX_DESC_LEN_IPLEN_S;
1767         }
1768
1769         if (ol_flags & PKT_TX_TCP_SEG) {
1770                 *td_cmd |= ICE_TX_DESC_CMD_L4T_EOFT_TCP;
1771                 *td_offset |= (tx_offload.l4_len >> 2) <<
1772                               ICE_TX_DESC_LEN_L4_LEN_S;
1773                 return;
1774         }
1775
1776         /* Enable L4 checksum offloads */
1777         switch (ol_flags & PKT_TX_L4_MASK) {
1778         case PKT_TX_TCP_CKSUM:
1779                 *td_cmd |= ICE_TX_DESC_CMD_L4T_EOFT_TCP;
1780                 *td_offset |= (sizeof(struct tcp_hdr) >> 2) <<
1781                               ICE_TX_DESC_LEN_L4_LEN_S;
1782                 break;
1783         case PKT_TX_SCTP_CKSUM:
1784                 *td_cmd |= ICE_TX_DESC_CMD_L4T_EOFT_SCTP;
1785                 *td_offset |= (sizeof(struct rte_sctp_hdr) >> 2) <<
1786                               ICE_TX_DESC_LEN_L4_LEN_S;
1787                 break;
1788         case PKT_TX_UDP_CKSUM:
1789                 *td_cmd |= ICE_TX_DESC_CMD_L4T_EOFT_UDP;
1790                 *td_offset |= (sizeof(struct udp_hdr) >> 2) <<
1791                               ICE_TX_DESC_LEN_L4_LEN_S;
1792                 break;
1793         default:
1794                 break;
1795         }
1796 }
1797
1798 static inline int
1799 ice_xmit_cleanup(struct ice_tx_queue *txq)
1800 {
1801         struct ice_tx_entry *sw_ring = txq->sw_ring;
1802         volatile struct ice_tx_desc *txd = txq->tx_ring;
1803         uint16_t last_desc_cleaned = txq->last_desc_cleaned;
1804         uint16_t nb_tx_desc = txq->nb_tx_desc;
1805         uint16_t desc_to_clean_to;
1806         uint16_t nb_tx_to_clean;
1807
1808         /* Determine the last descriptor needing to be cleaned */
1809         desc_to_clean_to = (uint16_t)(last_desc_cleaned + txq->tx_rs_thresh);
1810         if (desc_to_clean_to >= nb_tx_desc)
1811                 desc_to_clean_to = (uint16_t)(desc_to_clean_to - nb_tx_desc);
1812
1813         /* Check to make sure the last descriptor to clean is done */
1814         desc_to_clean_to = sw_ring[desc_to_clean_to].last_id;
1815         if (!(txd[desc_to_clean_to].cmd_type_offset_bsz &
1816             rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DESC_DONE))) {
1817                 PMD_TX_FREE_LOG(DEBUG, "TX descriptor %4u is not done "
1818                                 "(port=%d queue=%d) value=0x%"PRIx64"\n",
1819                                 desc_to_clean_to,
1820                                 txq->port_id, txq->queue_id,
1821                                 txd[desc_to_clean_to].cmd_type_offset_bsz);
1822                 /* Failed to clean any descriptors */
1823                 return -1;
1824         }
1825
1826         /* Figure out how many descriptors will be cleaned */
1827         if (last_desc_cleaned > desc_to_clean_to)
1828                 nb_tx_to_clean = (uint16_t)((nb_tx_desc - last_desc_cleaned) +
1829                                             desc_to_clean_to);
1830         else
1831                 nb_tx_to_clean = (uint16_t)(desc_to_clean_to -
1832                                             last_desc_cleaned);
1833
1834         /* The last descriptor to clean is done, so that means all the
1835          * descriptors from the last descriptor that was cleaned
1836          * up to the last descriptor with the RS bit set
1837          * are done. Only reset the threshold descriptor.
1838          */
1839         txd[desc_to_clean_to].cmd_type_offset_bsz = 0;
1840
1841         /* Update the txq to reflect the last descriptor that was cleaned */
1842         txq->last_desc_cleaned = desc_to_clean_to;
1843         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free + nb_tx_to_clean);
1844
1845         return 0;
1846 }
1847
1848 /* Construct the tx flags */
1849 static inline uint64_t
1850 ice_build_ctob(uint32_t td_cmd,
1851                uint32_t td_offset,
1852                uint16_t size,
1853                uint32_t td_tag)
1854 {
1855         return rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DATA |
1856                                 ((uint64_t)td_cmd << ICE_TXD_QW1_CMD_S) |
1857                                 ((uint64_t)td_offset << ICE_TXD_QW1_OFFSET_S) |
1858                                 ((uint64_t)size << ICE_TXD_QW1_TX_BUF_SZ_S) |
1859                                 ((uint64_t)td_tag << ICE_TXD_QW1_L2TAG1_S));
1860 }
1861
1862 /* Check if the context descriptor is needed for TX offloading */
1863 static inline uint16_t
1864 ice_calc_context_desc(uint64_t flags)
1865 {
1866         static uint64_t mask = PKT_TX_TCP_SEG | PKT_TX_QINQ;
1867
1868         return (flags & mask) ? 1 : 0;
1869 }
1870
1871 /* set ice TSO context descriptor */
1872 static inline uint64_t
1873 ice_set_tso_ctx(struct rte_mbuf *mbuf, union ice_tx_offload tx_offload)
1874 {
1875         uint64_t ctx_desc = 0;
1876         uint32_t cd_cmd, hdr_len, cd_tso_len;
1877
1878         if (!tx_offload.l4_len) {
1879                 PMD_TX_LOG(DEBUG, "L4 length set to 0");
1880                 return ctx_desc;
1881         }
1882
1883         /**
1884          * in case of non tunneling packet, the outer_l2_len and
1885          * outer_l3_len must be 0.
1886          */
1887         hdr_len = tx_offload.outer_l2_len +
1888                   tx_offload.outer_l3_len +
1889                   tx_offload.l2_len +
1890                   tx_offload.l3_len +
1891                   tx_offload.l4_len;
1892
1893         cd_cmd = ICE_TX_CTX_DESC_TSO;
1894         cd_tso_len = mbuf->pkt_len - hdr_len;
1895         ctx_desc |= ((uint64_t)cd_cmd << ICE_TXD_CTX_QW1_CMD_S) |
1896                     ((uint64_t)cd_tso_len << ICE_TXD_CTX_QW1_TSO_LEN_S) |
1897                     ((uint64_t)mbuf->tso_segsz << ICE_TXD_CTX_QW1_MSS_S);
1898
1899         return ctx_desc;
1900 }
1901
1902 uint16_t
1903 ice_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
1904 {
1905         struct ice_tx_queue *txq;
1906         volatile struct ice_tx_desc *tx_ring;
1907         volatile struct ice_tx_desc *txd;
1908         struct ice_tx_entry *sw_ring;
1909         struct ice_tx_entry *txe, *txn;
1910         struct rte_mbuf *tx_pkt;
1911         struct rte_mbuf *m_seg;
1912         uint16_t tx_id;
1913         uint16_t nb_tx;
1914         uint16_t nb_used;
1915         uint16_t nb_ctx;
1916         uint32_t td_cmd = 0;
1917         uint32_t td_offset = 0;
1918         uint32_t td_tag = 0;
1919         uint16_t tx_last;
1920         uint64_t buf_dma_addr;
1921         uint64_t ol_flags;
1922         union ice_tx_offload tx_offload = {0};
1923
1924         txq = tx_queue;
1925         sw_ring = txq->sw_ring;
1926         tx_ring = txq->tx_ring;
1927         tx_id = txq->tx_tail;
1928         txe = &sw_ring[tx_id];
1929
1930         /* Check if the descriptor ring needs to be cleaned. */
1931         if (txq->nb_tx_free < txq->tx_free_thresh)
1932                 ice_xmit_cleanup(txq);
1933
1934         for (nb_tx = 0; nb_tx < nb_pkts; nb_tx++) {
1935                 tx_pkt = *tx_pkts++;
1936
1937                 td_cmd = 0;
1938                 ol_flags = tx_pkt->ol_flags;
1939                 tx_offload.l2_len = tx_pkt->l2_len;
1940                 tx_offload.l3_len = tx_pkt->l3_len;
1941                 tx_offload.outer_l2_len = tx_pkt->outer_l2_len;
1942                 tx_offload.outer_l3_len = tx_pkt->outer_l3_len;
1943                 tx_offload.l4_len = tx_pkt->l4_len;
1944                 tx_offload.tso_segsz = tx_pkt->tso_segsz;
1945                 /* Calculate the number of context descriptors needed. */
1946                 nb_ctx = ice_calc_context_desc(ol_flags);
1947
1948                 /* The number of descriptors that must be allocated for
1949                  * a packet equals to the number of the segments of that
1950                  * packet plus the number of context descriptor if needed.
1951                  */
1952                 nb_used = (uint16_t)(tx_pkt->nb_segs + nb_ctx);
1953                 tx_last = (uint16_t)(tx_id + nb_used - 1);
1954
1955                 /* Circular ring */
1956                 if (tx_last >= txq->nb_tx_desc)
1957                         tx_last = (uint16_t)(tx_last - txq->nb_tx_desc);
1958
1959                 if (nb_used > txq->nb_tx_free) {
1960                         if (ice_xmit_cleanup(txq) != 0) {
1961                                 if (nb_tx == 0)
1962                                         return 0;
1963                                 goto end_of_tx;
1964                         }
1965                         if (unlikely(nb_used > txq->tx_rs_thresh)) {
1966                                 while (nb_used > txq->nb_tx_free) {
1967                                         if (ice_xmit_cleanup(txq) != 0) {
1968                                                 if (nb_tx == 0)
1969                                                         return 0;
1970                                                 goto end_of_tx;
1971                                         }
1972                                 }
1973                         }
1974                 }
1975
1976                 /* Descriptor based VLAN insertion */
1977                 if (ol_flags & (PKT_TX_VLAN | PKT_TX_QINQ)) {
1978                         td_cmd |= ICE_TX_DESC_CMD_IL2TAG1;
1979                         td_tag = tx_pkt->vlan_tci;
1980                 }
1981
1982                 /* Enable checksum offloading */
1983                 if (ol_flags & ICE_TX_CKSUM_OFFLOAD_MASK) {
1984                         ice_txd_enable_checksum(ol_flags, &td_cmd,
1985                                                 &td_offset, tx_offload);
1986                 }
1987
1988                 if (nb_ctx) {
1989                         /* Setup TX context descriptor if required */
1990                         volatile struct ice_tx_ctx_desc *ctx_txd =
1991                                 (volatile struct ice_tx_ctx_desc *)
1992                                         &tx_ring[tx_id];
1993                         uint16_t cd_l2tag2 = 0;
1994                         uint64_t cd_type_cmd_tso_mss = ICE_TX_DESC_DTYPE_CTX;
1995
1996                         txn = &sw_ring[txe->next_id];
1997                         RTE_MBUF_PREFETCH_TO_FREE(txn->mbuf);
1998                         if (txe->mbuf) {
1999                                 rte_pktmbuf_free_seg(txe->mbuf);
2000                                 txe->mbuf = NULL;
2001                         }
2002
2003                         if (ol_flags & PKT_TX_TCP_SEG)
2004                                 cd_type_cmd_tso_mss |=
2005                                         ice_set_tso_ctx(tx_pkt, tx_offload);
2006
2007                         /* TX context descriptor based double VLAN insert */
2008                         if (ol_flags & PKT_TX_QINQ) {
2009                                 cd_l2tag2 = tx_pkt->vlan_tci_outer;
2010                                 cd_type_cmd_tso_mss |=
2011                                         ((uint64_t)ICE_TX_CTX_DESC_IL2TAG2 <<
2012                                          ICE_TXD_CTX_QW1_CMD_S);
2013                         }
2014                         ctx_txd->l2tag2 = rte_cpu_to_le_16(cd_l2tag2);
2015                         ctx_txd->qw1 =
2016                                 rte_cpu_to_le_64(cd_type_cmd_tso_mss);
2017
2018                         txe->last_id = tx_last;
2019                         tx_id = txe->next_id;
2020                         txe = txn;
2021                 }
2022                 m_seg = tx_pkt;
2023
2024                 do {
2025                         txd = &tx_ring[tx_id];
2026                         txn = &sw_ring[txe->next_id];
2027
2028                         if (txe->mbuf)
2029                                 rte_pktmbuf_free_seg(txe->mbuf);
2030                         txe->mbuf = m_seg;
2031
2032                         /* Setup TX Descriptor */
2033                         buf_dma_addr = rte_mbuf_data_iova(m_seg);
2034                         txd->buf_addr = rte_cpu_to_le_64(buf_dma_addr);
2035                         txd->cmd_type_offset_bsz =
2036                                 rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DATA |
2037                                 ((uint64_t)td_cmd  << ICE_TXD_QW1_CMD_S) |
2038                                 ((uint64_t)td_offset << ICE_TXD_QW1_OFFSET_S) |
2039                                 ((uint64_t)m_seg->data_len  <<
2040                                  ICE_TXD_QW1_TX_BUF_SZ_S) |
2041                                 ((uint64_t)td_tag  << ICE_TXD_QW1_L2TAG1_S));
2042
2043                         txe->last_id = tx_last;
2044                         tx_id = txe->next_id;
2045                         txe = txn;
2046                         m_seg = m_seg->next;
2047                 } while (m_seg);
2048
2049                 /* fill the last descriptor with End of Packet (EOP) bit */
2050                 td_cmd |= ICE_TX_DESC_CMD_EOP;
2051                 txq->nb_tx_used = (uint16_t)(txq->nb_tx_used + nb_used);
2052                 txq->nb_tx_free = (uint16_t)(txq->nb_tx_free - nb_used);
2053
2054                 /* set RS bit on the last descriptor of one packet */
2055                 if (txq->nb_tx_used >= txq->tx_rs_thresh) {
2056                         PMD_TX_FREE_LOG(DEBUG,
2057                                         "Setting RS bit on TXD id="
2058                                         "%4u (port=%d queue=%d)",
2059                                         tx_last, txq->port_id, txq->queue_id);
2060
2061                         td_cmd |= ICE_TX_DESC_CMD_RS;
2062
2063                         /* Update txq RS bit counters */
2064                         txq->nb_tx_used = 0;
2065                 }
2066                 txd->cmd_type_offset_bsz |=
2067                         rte_cpu_to_le_64(((uint64_t)td_cmd) <<
2068                                          ICE_TXD_QW1_CMD_S);
2069         }
2070 end_of_tx:
2071         rte_wmb();
2072
2073         /* update Tail register */
2074         ICE_PCI_REG_WRITE(txq->qtx_tail, tx_id);
2075         txq->tx_tail = tx_id;
2076
2077         return nb_tx;
2078 }
2079
2080 static inline int __attribute__((always_inline))
2081 ice_tx_free_bufs(struct ice_tx_queue *txq)
2082 {
2083         struct ice_tx_entry *txep;
2084         uint16_t i;
2085
2086         if ((txq->tx_ring[txq->tx_next_dd].cmd_type_offset_bsz &
2087              rte_cpu_to_le_64(ICE_TXD_QW1_DTYPE_M)) !=
2088             rte_cpu_to_le_64(ICE_TX_DESC_DTYPE_DESC_DONE))
2089                 return 0;
2090
2091         txep = &txq->sw_ring[txq->tx_next_dd - (txq->tx_rs_thresh - 1)];
2092
2093         for (i = 0; i < txq->tx_rs_thresh; i++)
2094                 rte_prefetch0((txep + i)->mbuf);
2095
2096         if (txq->offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE) {
2097                 for (i = 0; i < txq->tx_rs_thresh; ++i, ++txep) {
2098                         rte_mempool_put(txep->mbuf->pool, txep->mbuf);
2099                         txep->mbuf = NULL;
2100                 }
2101         } else {
2102                 for (i = 0; i < txq->tx_rs_thresh; ++i, ++txep) {
2103                         rte_pktmbuf_free_seg(txep->mbuf);
2104                         txep->mbuf = NULL;
2105                 }
2106         }
2107
2108         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free + txq->tx_rs_thresh);
2109         txq->tx_next_dd = (uint16_t)(txq->tx_next_dd + txq->tx_rs_thresh);
2110         if (txq->tx_next_dd >= txq->nb_tx_desc)
2111                 txq->tx_next_dd = (uint16_t)(txq->tx_rs_thresh - 1);
2112
2113         return txq->tx_rs_thresh;
2114 }
2115
2116 /* Populate 4 descriptors with data from 4 mbufs */
2117 static inline void
2118 tx4(volatile struct ice_tx_desc *txdp, struct rte_mbuf **pkts)
2119 {
2120         uint64_t dma_addr;
2121         uint32_t i;
2122
2123         for (i = 0; i < 4; i++, txdp++, pkts++) {
2124                 dma_addr = rte_mbuf_data_iova(*pkts);
2125                 txdp->buf_addr = rte_cpu_to_le_64(dma_addr);
2126                 txdp->cmd_type_offset_bsz =
2127                         ice_build_ctob((uint32_t)ICE_TD_CMD, 0,
2128                                        (*pkts)->data_len, 0);
2129         }
2130 }
2131
2132 /* Populate 1 descriptor with data from 1 mbuf */
2133 static inline void
2134 tx1(volatile struct ice_tx_desc *txdp, struct rte_mbuf **pkts)
2135 {
2136         uint64_t dma_addr;
2137
2138         dma_addr = rte_mbuf_data_iova(*pkts);
2139         txdp->buf_addr = rte_cpu_to_le_64(dma_addr);
2140         txdp->cmd_type_offset_bsz =
2141                 ice_build_ctob((uint32_t)ICE_TD_CMD, 0,
2142                                (*pkts)->data_len, 0);
2143 }
2144
2145 static inline void
2146 ice_tx_fill_hw_ring(struct ice_tx_queue *txq, struct rte_mbuf **pkts,
2147                     uint16_t nb_pkts)
2148 {
2149         volatile struct ice_tx_desc *txdp = &txq->tx_ring[txq->tx_tail];
2150         struct ice_tx_entry *txep = &txq->sw_ring[txq->tx_tail];
2151         const int N_PER_LOOP = 4;
2152         const int N_PER_LOOP_MASK = N_PER_LOOP - 1;
2153         int mainpart, leftover;
2154         int i, j;
2155
2156         /**
2157          * Process most of the packets in chunks of N pkts.  Any
2158          * leftover packets will get processed one at a time.
2159          */
2160         mainpart = nb_pkts & ((uint32_t)~N_PER_LOOP_MASK);
2161         leftover = nb_pkts & ((uint32_t)N_PER_LOOP_MASK);
2162         for (i = 0; i < mainpart; i += N_PER_LOOP) {
2163                 /* Copy N mbuf pointers to the S/W ring */
2164                 for (j = 0; j < N_PER_LOOP; ++j)
2165                         (txep + i + j)->mbuf = *(pkts + i + j);
2166                 tx4(txdp + i, pkts + i);
2167         }
2168
2169         if (unlikely(leftover > 0)) {
2170                 for (i = 0; i < leftover; ++i) {
2171                         (txep + mainpart + i)->mbuf = *(pkts + mainpart + i);
2172                         tx1(txdp + mainpart + i, pkts + mainpart + i);
2173                 }
2174         }
2175 }
2176
2177 static inline uint16_t
2178 tx_xmit_pkts(struct ice_tx_queue *txq,
2179              struct rte_mbuf **tx_pkts,
2180              uint16_t nb_pkts)
2181 {
2182         volatile struct ice_tx_desc *txr = txq->tx_ring;
2183         uint16_t n = 0;
2184
2185         /**
2186          * Begin scanning the H/W ring for done descriptors when the number
2187          * of available descriptors drops below tx_free_thresh. For each done
2188          * descriptor, free the associated buffer.
2189          */
2190         if (txq->nb_tx_free < txq->tx_free_thresh)
2191                 ice_tx_free_bufs(txq);
2192
2193         /* Use available descriptor only */
2194         nb_pkts = (uint16_t)RTE_MIN(txq->nb_tx_free, nb_pkts);
2195         if (unlikely(!nb_pkts))
2196                 return 0;
2197
2198         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free - nb_pkts);
2199         if ((txq->tx_tail + nb_pkts) > txq->nb_tx_desc) {
2200                 n = (uint16_t)(txq->nb_tx_desc - txq->tx_tail);
2201                 ice_tx_fill_hw_ring(txq, tx_pkts, n);
2202                 txr[txq->tx_next_rs].cmd_type_offset_bsz |=
2203                         rte_cpu_to_le_64(((uint64_t)ICE_TX_DESC_CMD_RS) <<
2204                                          ICE_TXD_QW1_CMD_S);
2205                 txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
2206                 txq->tx_tail = 0;
2207         }
2208
2209         /* Fill hardware descriptor ring with mbuf data */
2210         ice_tx_fill_hw_ring(txq, tx_pkts + n, (uint16_t)(nb_pkts - n));
2211         txq->tx_tail = (uint16_t)(txq->tx_tail + (nb_pkts - n));
2212
2213         /* Determin if RS bit needs to be set */
2214         if (txq->tx_tail > txq->tx_next_rs) {
2215                 txr[txq->tx_next_rs].cmd_type_offset_bsz |=
2216                         rte_cpu_to_le_64(((uint64_t)ICE_TX_DESC_CMD_RS) <<
2217                                          ICE_TXD_QW1_CMD_S);
2218                 txq->tx_next_rs =
2219                         (uint16_t)(txq->tx_next_rs + txq->tx_rs_thresh);
2220                 if (txq->tx_next_rs >= txq->nb_tx_desc)
2221                         txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
2222         }
2223
2224         if (txq->tx_tail >= txq->nb_tx_desc)
2225                 txq->tx_tail = 0;
2226
2227         /* Update the tx tail register */
2228         rte_wmb();
2229         ICE_PCI_REG_WRITE(txq->qtx_tail, txq->tx_tail);
2230
2231         return nb_pkts;
2232 }
2233
2234 static uint16_t
2235 ice_xmit_pkts_simple(void *tx_queue,
2236                      struct rte_mbuf **tx_pkts,
2237                      uint16_t nb_pkts)
2238 {
2239         uint16_t nb_tx = 0;
2240
2241         if (likely(nb_pkts <= ICE_TX_MAX_BURST))
2242                 return tx_xmit_pkts((struct ice_tx_queue *)tx_queue,
2243                                     tx_pkts, nb_pkts);
2244
2245         while (nb_pkts) {
2246                 uint16_t ret, num = (uint16_t)RTE_MIN(nb_pkts,
2247                                                       ICE_TX_MAX_BURST);
2248
2249                 ret = tx_xmit_pkts((struct ice_tx_queue *)tx_queue,
2250                                    &tx_pkts[nb_tx], num);
2251                 nb_tx = (uint16_t)(nb_tx + ret);
2252                 nb_pkts = (uint16_t)(nb_pkts - ret);
2253                 if (ret < num)
2254                         break;
2255         }
2256
2257         return nb_tx;
2258 }
2259
2260 void __attribute__((cold))
2261 ice_set_rx_function(struct rte_eth_dev *dev)
2262 {
2263         PMD_INIT_FUNC_TRACE();
2264         struct ice_adapter *ad =
2265                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2266 #ifdef RTE_ARCH_X86
2267         struct ice_rx_queue *rxq;
2268         int i;
2269         bool use_avx2 = false;
2270
2271         if (!ice_rx_vec_dev_check(dev)) {
2272                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2273                         rxq = dev->data->rx_queues[i];
2274                         (void)ice_rxq_vec_setup(rxq);
2275                 }
2276
2277                 if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_AVX2) == 1 ||
2278                     rte_cpu_get_flag_enabled(RTE_CPUFLAG_AVX512F) == 1)
2279                         use_avx2 = true;
2280
2281                 if (dev->data->scattered_rx) {
2282                         PMD_DRV_LOG(DEBUG,
2283                                     "Using %sVector Scattered Rx (port %d).",
2284                                     use_avx2 ? "avx2 " : "",
2285                                     dev->data->port_id);
2286                         dev->rx_pkt_burst = use_avx2 ?
2287                                             ice_recv_scattered_pkts_vec_avx2 :
2288                                             ice_recv_scattered_pkts_vec;
2289                 } else {
2290                         PMD_DRV_LOG(DEBUG, "Using %sVector Rx (port %d).",
2291                                     use_avx2 ? "avx2 " : "",
2292                                     dev->data->port_id);
2293                         dev->rx_pkt_burst = use_avx2 ?
2294                                             ice_recv_pkts_vec_avx2 :
2295                                             ice_recv_pkts_vec;
2296                 }
2297
2298                 return;
2299         }
2300 #endif
2301
2302         if (dev->data->scattered_rx) {
2303                 /* Set the non-LRO scattered function */
2304                 PMD_INIT_LOG(DEBUG,
2305                              "Using a Scattered function on port %d.",
2306                              dev->data->port_id);
2307                 dev->rx_pkt_burst = ice_recv_scattered_pkts;
2308         } else if (ad->rx_bulk_alloc_allowed) {
2309                 PMD_INIT_LOG(DEBUG,
2310                              "Rx Burst Bulk Alloc Preconditions are "
2311                              "satisfied. Rx Burst Bulk Alloc function "
2312                              "will be used on port %d.",
2313                              dev->data->port_id);
2314                 dev->rx_pkt_burst = ice_recv_pkts_bulk_alloc;
2315         } else {
2316                 PMD_INIT_LOG(DEBUG,
2317                              "Rx Burst Bulk Alloc Preconditions are not "
2318                              "satisfied, Normal Rx will be used on port %d.",
2319                              dev->data->port_id);
2320                 dev->rx_pkt_burst = ice_recv_pkts;
2321         }
2322 }
2323
2324 void __attribute__((cold))
2325 ice_set_tx_function_flag(struct rte_eth_dev *dev, struct ice_tx_queue *txq)
2326 {
2327         struct ice_adapter *ad =
2328                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2329
2330         /* Use a simple Tx queue if possible (only fast free is allowed) */
2331         ad->tx_simple_allowed =
2332                 (txq->offloads ==
2333                 (txq->offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE) &&
2334                 txq->tx_rs_thresh >= ICE_TX_MAX_BURST);
2335
2336         if (ad->tx_simple_allowed)
2337                 PMD_INIT_LOG(DEBUG, "Simple Tx can be enabled on Tx queue %u.",
2338                              txq->queue_id);
2339         else
2340                 PMD_INIT_LOG(DEBUG,
2341                              "Simple Tx can NOT be enabled on Tx queue %u.",
2342                              txq->queue_id);
2343 }
2344
2345 /*********************************************************************
2346  *
2347  *  TX prep functions
2348  *
2349  **********************************************************************/
2350 /* The default values of TSO MSS */
2351 #define ICE_MIN_TSO_MSS            64
2352 #define ICE_MAX_TSO_MSS            9728
2353 #define ICE_MAX_TSO_FRAME_SIZE     262144
2354 uint16_t
2355 ice_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
2356               uint16_t nb_pkts)
2357 {
2358         int i, ret;
2359         uint64_t ol_flags;
2360         struct rte_mbuf *m;
2361
2362         for (i = 0; i < nb_pkts; i++) {
2363                 m = tx_pkts[i];
2364                 ol_flags = m->ol_flags;
2365
2366                 if (ol_flags & PKT_TX_TCP_SEG &&
2367                     (m->tso_segsz < ICE_MIN_TSO_MSS ||
2368                      m->tso_segsz > ICE_MAX_TSO_MSS ||
2369                      m->pkt_len > ICE_MAX_TSO_FRAME_SIZE)) {
2370                         /**
2371                          * MSS outside the range are considered malicious
2372                          */
2373                         rte_errno = -EINVAL;
2374                         return i;
2375                 }
2376
2377 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2378                 ret = rte_validate_tx_offload(m);
2379                 if (ret != 0) {
2380                         rte_errno = ret;
2381                         return i;
2382                 }
2383 #endif
2384                 ret = rte_net_intel_cksum_prepare(m);
2385                 if (ret != 0) {
2386                         rte_errno = ret;
2387                         return i;
2388                 }
2389         }
2390         return i;
2391 }
2392
2393 void __attribute__((cold))
2394 ice_set_tx_function(struct rte_eth_dev *dev)
2395 {
2396         struct ice_adapter *ad =
2397                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2398 #ifdef RTE_ARCH_X86
2399         struct ice_tx_queue *txq;
2400         int i;
2401         bool use_avx2 = false;
2402
2403         if (!ice_tx_vec_dev_check(dev)) {
2404                 for (i = 0; i < dev->data->nb_tx_queues; i++) {
2405                         txq = dev->data->tx_queues[i];
2406                         (void)ice_txq_vec_setup(txq);
2407                 }
2408
2409                 if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_AVX2) == 1 ||
2410                     rte_cpu_get_flag_enabled(RTE_CPUFLAG_AVX512F) == 1)
2411                         use_avx2 = true;
2412
2413                 PMD_DRV_LOG(DEBUG, "Using %sVector Tx (port %d).",
2414                             use_avx2 ? "avx2 " : "",
2415                             dev->data->port_id);
2416                 dev->tx_pkt_burst = use_avx2 ?
2417                                     ice_xmit_pkts_vec_avx2 :
2418                                     ice_xmit_pkts_vec;
2419                 dev->tx_pkt_prepare = NULL;
2420
2421                 return;
2422         }
2423 #endif
2424
2425         if (ad->tx_simple_allowed) {
2426                 PMD_INIT_LOG(DEBUG, "Simple tx finally be used.");
2427                 dev->tx_pkt_burst = ice_xmit_pkts_simple;
2428                 dev->tx_pkt_prepare = NULL;
2429         } else {
2430                 PMD_INIT_LOG(DEBUG, "Normal tx finally be used.");
2431                 dev->tx_pkt_burst = ice_xmit_pkts;
2432                 dev->tx_pkt_prepare = ice_prep_pkts;
2433         }
2434 }
2435
2436 /* For each value it means, datasheet of hardware can tell more details
2437  *
2438  * @note: fix ice_dev_supported_ptypes_get() if any change here.
2439  */
2440 static inline uint32_t
2441 ice_get_default_pkt_type(uint16_t ptype)
2442 {
2443         static const uint32_t type_table[ICE_MAX_PKT_TYPE]
2444                 __rte_cache_aligned = {
2445                 /* L2 types */
2446                 /* [0] reserved */
2447                 [1] = RTE_PTYPE_L2_ETHER,
2448                 /* [2] - [5] reserved */
2449                 [6] = RTE_PTYPE_L2_ETHER_LLDP,
2450                 /* [7] - [10] reserved */
2451                 [11] = RTE_PTYPE_L2_ETHER_ARP,
2452                 /* [12] - [21] reserved */
2453
2454                 /* Non tunneled IPv4 */
2455                 [22] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2456                        RTE_PTYPE_L4_FRAG,
2457                 [23] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2458                        RTE_PTYPE_L4_NONFRAG,
2459                 [24] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2460                        RTE_PTYPE_L4_UDP,
2461                 /* [25] reserved */
2462                 [26] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2463                        RTE_PTYPE_L4_TCP,
2464                 [27] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2465                        RTE_PTYPE_L4_SCTP,
2466                 [28] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2467                        RTE_PTYPE_L4_ICMP,
2468
2469                 /* IPv4 --> IPv4 */
2470                 [29] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2471                        RTE_PTYPE_TUNNEL_IP |
2472                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2473                        RTE_PTYPE_INNER_L4_FRAG,
2474                 [30] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2475                        RTE_PTYPE_TUNNEL_IP |
2476                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2477                        RTE_PTYPE_INNER_L4_NONFRAG,
2478                 [31] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2479                        RTE_PTYPE_TUNNEL_IP |
2480                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2481                        RTE_PTYPE_INNER_L4_UDP,
2482                 /* [32] reserved */
2483                 [33] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2484                        RTE_PTYPE_TUNNEL_IP |
2485                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2486                        RTE_PTYPE_INNER_L4_TCP,
2487                 [34] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2488                        RTE_PTYPE_TUNNEL_IP |
2489                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2490                        RTE_PTYPE_INNER_L4_SCTP,
2491                 [35] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2492                        RTE_PTYPE_TUNNEL_IP |
2493                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2494                        RTE_PTYPE_INNER_L4_ICMP,
2495
2496                 /* IPv4 --> IPv6 */
2497                 [36] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2498                        RTE_PTYPE_TUNNEL_IP |
2499                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2500                        RTE_PTYPE_INNER_L4_FRAG,
2501                 [37] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2502                        RTE_PTYPE_TUNNEL_IP |
2503                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2504                        RTE_PTYPE_INNER_L4_NONFRAG,
2505                 [38] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2506                        RTE_PTYPE_TUNNEL_IP |
2507                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2508                        RTE_PTYPE_INNER_L4_UDP,
2509                 /* [39] reserved */
2510                 [40] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2511                        RTE_PTYPE_TUNNEL_IP |
2512                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2513                        RTE_PTYPE_INNER_L4_TCP,
2514                 [41] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2515                        RTE_PTYPE_TUNNEL_IP |
2516                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2517                        RTE_PTYPE_INNER_L4_SCTP,
2518                 [42] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2519                        RTE_PTYPE_TUNNEL_IP |
2520                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2521                        RTE_PTYPE_INNER_L4_ICMP,
2522
2523                 /* IPv4 --> GRE/Teredo/VXLAN */
2524                 [43] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2525                        RTE_PTYPE_TUNNEL_GRENAT,
2526
2527                 /* IPv4 --> GRE/Teredo/VXLAN --> IPv4 */
2528                 [44] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2529                        RTE_PTYPE_TUNNEL_GRENAT |
2530                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2531                        RTE_PTYPE_INNER_L4_FRAG,
2532                 [45] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2533                        RTE_PTYPE_TUNNEL_GRENAT |
2534                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2535                        RTE_PTYPE_INNER_L4_NONFRAG,
2536                 [46] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2537                        RTE_PTYPE_TUNNEL_GRENAT |
2538                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2539                        RTE_PTYPE_INNER_L4_UDP,
2540                 /* [47] reserved */
2541                 [48] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2542                        RTE_PTYPE_TUNNEL_GRENAT |
2543                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2544                        RTE_PTYPE_INNER_L4_TCP,
2545                 [49] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2546                        RTE_PTYPE_TUNNEL_GRENAT |
2547                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2548                        RTE_PTYPE_INNER_L4_SCTP,
2549                 [50] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2550                        RTE_PTYPE_TUNNEL_GRENAT |
2551                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2552                        RTE_PTYPE_INNER_L4_ICMP,
2553
2554                 /* IPv4 --> GRE/Teredo/VXLAN --> IPv6 */
2555                 [51] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2556                        RTE_PTYPE_TUNNEL_GRENAT |
2557                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2558                        RTE_PTYPE_INNER_L4_FRAG,
2559                 [52] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2560                        RTE_PTYPE_TUNNEL_GRENAT |
2561                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2562                        RTE_PTYPE_INNER_L4_NONFRAG,
2563                 [53] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2564                        RTE_PTYPE_TUNNEL_GRENAT |
2565                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2566                        RTE_PTYPE_INNER_L4_UDP,
2567                 /* [54] reserved */
2568                 [55] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2569                        RTE_PTYPE_TUNNEL_GRENAT |
2570                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2571                        RTE_PTYPE_INNER_L4_TCP,
2572                 [56] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2573                        RTE_PTYPE_TUNNEL_GRENAT |
2574                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2575                        RTE_PTYPE_INNER_L4_SCTP,
2576                 [57] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2577                        RTE_PTYPE_TUNNEL_GRENAT |
2578                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2579                        RTE_PTYPE_INNER_L4_ICMP,
2580
2581                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC */
2582                 [58] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2583                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER,
2584
2585                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC --> IPv4 */
2586                 [59] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2587                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2588                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2589                        RTE_PTYPE_INNER_L4_FRAG,
2590                 [60] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2591                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2592                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2593                        RTE_PTYPE_INNER_L4_NONFRAG,
2594                 [61] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2595                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2596                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2597                        RTE_PTYPE_INNER_L4_UDP,
2598                 /* [62] reserved */
2599                 [63] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2600                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2601                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2602                        RTE_PTYPE_INNER_L4_TCP,
2603                 [64] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2604                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2605                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2606                        RTE_PTYPE_INNER_L4_SCTP,
2607                 [65] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2608                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2609                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2610                        RTE_PTYPE_INNER_L4_ICMP,
2611
2612                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC --> IPv6 */
2613                 [66] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2614                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2615                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2616                        RTE_PTYPE_INNER_L4_FRAG,
2617                 [67] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2618                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2619                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2620                        RTE_PTYPE_INNER_L4_NONFRAG,
2621                 [68] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2622                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2623                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2624                        RTE_PTYPE_INNER_L4_UDP,
2625                 /* [69] reserved */
2626                 [70] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2627                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2628                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2629                        RTE_PTYPE_INNER_L4_TCP,
2630                 [71] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2631                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2632                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2633                        RTE_PTYPE_INNER_L4_SCTP,
2634                 [72] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2635                        RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2636                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2637                        RTE_PTYPE_INNER_L4_ICMP,
2638
2639                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC/VLAN */
2640                 [73] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2641                        RTE_PTYPE_TUNNEL_GRENAT |
2642                        RTE_PTYPE_INNER_L2_ETHER_VLAN,
2643
2644                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC/VLAN --> IPv4 */
2645                 [74] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2646                        RTE_PTYPE_TUNNEL_GRENAT |
2647                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2648                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2649                        RTE_PTYPE_INNER_L4_FRAG,
2650                 [75] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2651                        RTE_PTYPE_TUNNEL_GRENAT |
2652                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2653                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2654                        RTE_PTYPE_INNER_L4_NONFRAG,
2655                 [76] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2656                        RTE_PTYPE_TUNNEL_GRENAT |
2657                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2658                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2659                        RTE_PTYPE_INNER_L4_UDP,
2660                 /* [77] reserved */
2661                 [78] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2662                        RTE_PTYPE_TUNNEL_GRENAT |
2663                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2664                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2665                        RTE_PTYPE_INNER_L4_TCP,
2666                 [79] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2667                        RTE_PTYPE_TUNNEL_GRENAT |
2668                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2669                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2670                        RTE_PTYPE_INNER_L4_SCTP,
2671                 [80] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2672                        RTE_PTYPE_TUNNEL_GRENAT |
2673                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2674                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2675                        RTE_PTYPE_INNER_L4_ICMP,
2676
2677                 /* IPv4 --> GRE/Teredo/VXLAN --> MAC/VLAN --> IPv6 */
2678                 [81] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2679                        RTE_PTYPE_TUNNEL_GRENAT |
2680                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2681                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2682                        RTE_PTYPE_INNER_L4_FRAG,
2683                 [82] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2684                        RTE_PTYPE_TUNNEL_GRENAT |
2685                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2686                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2687                        RTE_PTYPE_INNER_L4_NONFRAG,
2688                 [83] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2689                        RTE_PTYPE_TUNNEL_GRENAT |
2690                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2691                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2692                        RTE_PTYPE_INNER_L4_UDP,
2693                 /* [84] reserved */
2694                 [85] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2695                        RTE_PTYPE_TUNNEL_GRENAT |
2696                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2697                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2698                        RTE_PTYPE_INNER_L4_TCP,
2699                 [86] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2700                        RTE_PTYPE_TUNNEL_GRENAT |
2701                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2702                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2703                        RTE_PTYPE_INNER_L4_SCTP,
2704                 [87] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2705                        RTE_PTYPE_TUNNEL_GRENAT |
2706                        RTE_PTYPE_INNER_L2_ETHER_VLAN |
2707                        RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2708                        RTE_PTYPE_INNER_L4_ICMP,
2709
2710                 /* Non tunneled IPv6 */
2711                 [88] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2712                        RTE_PTYPE_L4_FRAG,
2713                 [89] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2714                        RTE_PTYPE_L4_NONFRAG,
2715                 [90] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2716                        RTE_PTYPE_L4_UDP,
2717                 /* [91] reserved */
2718                 [92] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2719                        RTE_PTYPE_L4_TCP,
2720                 [93] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2721                        RTE_PTYPE_L4_SCTP,
2722                 [94] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2723                        RTE_PTYPE_L4_ICMP,
2724
2725                 /* IPv6 --> IPv4 */
2726                 [95] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2727                        RTE_PTYPE_TUNNEL_IP |
2728                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2729                        RTE_PTYPE_INNER_L4_FRAG,
2730                 [96] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2731                        RTE_PTYPE_TUNNEL_IP |
2732                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2733                        RTE_PTYPE_INNER_L4_NONFRAG,
2734                 [97] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2735                        RTE_PTYPE_TUNNEL_IP |
2736                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2737                        RTE_PTYPE_INNER_L4_UDP,
2738                 /* [98] reserved */
2739                 [99] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2740                        RTE_PTYPE_TUNNEL_IP |
2741                        RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2742                        RTE_PTYPE_INNER_L4_TCP,
2743                 [100] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2744                         RTE_PTYPE_TUNNEL_IP |
2745                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2746                         RTE_PTYPE_INNER_L4_SCTP,
2747                 [101] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2748                         RTE_PTYPE_TUNNEL_IP |
2749                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2750                         RTE_PTYPE_INNER_L4_ICMP,
2751
2752                 /* IPv6 --> IPv6 */
2753                 [102] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2754                         RTE_PTYPE_TUNNEL_IP |
2755                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2756                         RTE_PTYPE_INNER_L4_FRAG,
2757                 [103] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2758                         RTE_PTYPE_TUNNEL_IP |
2759                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2760                         RTE_PTYPE_INNER_L4_NONFRAG,
2761                 [104] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2762                         RTE_PTYPE_TUNNEL_IP |
2763                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2764                         RTE_PTYPE_INNER_L4_UDP,
2765                 /* [105] reserved */
2766                 [106] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2767                         RTE_PTYPE_TUNNEL_IP |
2768                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2769                         RTE_PTYPE_INNER_L4_TCP,
2770                 [107] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2771                         RTE_PTYPE_TUNNEL_IP |
2772                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2773                         RTE_PTYPE_INNER_L4_SCTP,
2774                 [108] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2775                         RTE_PTYPE_TUNNEL_IP |
2776                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2777                         RTE_PTYPE_INNER_L4_ICMP,
2778
2779                 /* IPv6 --> GRE/Teredo/VXLAN */
2780                 [109] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2781                         RTE_PTYPE_TUNNEL_GRENAT,
2782
2783                 /* IPv6 --> GRE/Teredo/VXLAN --> IPv4 */
2784                 [110] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2785                         RTE_PTYPE_TUNNEL_GRENAT |
2786                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2787                         RTE_PTYPE_INNER_L4_FRAG,
2788                 [111] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2789                         RTE_PTYPE_TUNNEL_GRENAT |
2790                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2791                         RTE_PTYPE_INNER_L4_NONFRAG,
2792                 [112] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2793                         RTE_PTYPE_TUNNEL_GRENAT |
2794                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2795                         RTE_PTYPE_INNER_L4_UDP,
2796                 /* [113] reserved */
2797                 [114] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2798                         RTE_PTYPE_TUNNEL_GRENAT |
2799                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2800                         RTE_PTYPE_INNER_L4_TCP,
2801                 [115] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2802                         RTE_PTYPE_TUNNEL_GRENAT |
2803                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2804                         RTE_PTYPE_INNER_L4_SCTP,
2805                 [116] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2806                         RTE_PTYPE_TUNNEL_GRENAT |
2807                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2808                         RTE_PTYPE_INNER_L4_ICMP,
2809
2810                 /* IPv6 --> GRE/Teredo/VXLAN --> IPv6 */
2811                 [117] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2812                         RTE_PTYPE_TUNNEL_GRENAT |
2813                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2814                         RTE_PTYPE_INNER_L4_FRAG,
2815                 [118] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2816                         RTE_PTYPE_TUNNEL_GRENAT |
2817                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2818                         RTE_PTYPE_INNER_L4_NONFRAG,
2819                 [119] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2820                         RTE_PTYPE_TUNNEL_GRENAT |
2821                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2822                         RTE_PTYPE_INNER_L4_UDP,
2823                 /* [120] reserved */
2824                 [121] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2825                         RTE_PTYPE_TUNNEL_GRENAT |
2826                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2827                         RTE_PTYPE_INNER_L4_TCP,
2828                 [122] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2829                         RTE_PTYPE_TUNNEL_GRENAT |
2830                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2831                         RTE_PTYPE_INNER_L4_SCTP,
2832                 [123] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2833                         RTE_PTYPE_TUNNEL_GRENAT |
2834                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2835                         RTE_PTYPE_INNER_L4_ICMP,
2836
2837                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC */
2838                 [124] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2839                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER,
2840
2841                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC --> IPv4 */
2842                 [125] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2843                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2844                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2845                         RTE_PTYPE_INNER_L4_FRAG,
2846                 [126] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2847                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2848                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2849                         RTE_PTYPE_INNER_L4_NONFRAG,
2850                 [127] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2851                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2852                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2853                         RTE_PTYPE_INNER_L4_UDP,
2854                 /* [128] reserved */
2855                 [129] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2856                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2857                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2858                         RTE_PTYPE_INNER_L4_TCP,
2859                 [130] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2860                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2861                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2862                         RTE_PTYPE_INNER_L4_SCTP,
2863                 [131] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2864                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2865                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2866                         RTE_PTYPE_INNER_L4_ICMP,
2867
2868                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC --> IPv6 */
2869                 [132] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2870                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2871                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2872                         RTE_PTYPE_INNER_L4_FRAG,
2873                 [133] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2874                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2875                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2876                         RTE_PTYPE_INNER_L4_NONFRAG,
2877                 [134] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2878                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2879                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2880                         RTE_PTYPE_INNER_L4_UDP,
2881                 /* [135] reserved */
2882                 [136] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2883                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2884                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2885                         RTE_PTYPE_INNER_L4_TCP,
2886                 [137] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2887                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2888                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2889                         RTE_PTYPE_INNER_L4_SCTP,
2890                 [138] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2891                         RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2892                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2893                         RTE_PTYPE_INNER_L4_ICMP,
2894
2895                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC/VLAN */
2896                 [139] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2897                         RTE_PTYPE_TUNNEL_GRENAT |
2898                         RTE_PTYPE_INNER_L2_ETHER_VLAN,
2899
2900                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC/VLAN --> IPv4 */
2901                 [140] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2902                         RTE_PTYPE_TUNNEL_GRENAT |
2903                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2904                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2905                         RTE_PTYPE_INNER_L4_FRAG,
2906                 [141] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2907                         RTE_PTYPE_TUNNEL_GRENAT |
2908                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2909                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2910                         RTE_PTYPE_INNER_L4_NONFRAG,
2911                 [142] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2912                         RTE_PTYPE_TUNNEL_GRENAT |
2913                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2914                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2915                         RTE_PTYPE_INNER_L4_UDP,
2916                 /* [143] reserved */
2917                 [144] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2918                         RTE_PTYPE_TUNNEL_GRENAT |
2919                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2920                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2921                         RTE_PTYPE_INNER_L4_TCP,
2922                 [145] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2923                         RTE_PTYPE_TUNNEL_GRENAT |
2924                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2925                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2926                         RTE_PTYPE_INNER_L4_SCTP,
2927                 [146] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2928                         RTE_PTYPE_TUNNEL_GRENAT |
2929                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2930                         RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2931                         RTE_PTYPE_INNER_L4_ICMP,
2932
2933                 /* IPv6 --> GRE/Teredo/VXLAN --> MAC/VLAN --> IPv6 */
2934                 [147] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2935                         RTE_PTYPE_TUNNEL_GRENAT |
2936                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2937                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2938                         RTE_PTYPE_INNER_L4_FRAG,
2939                 [148] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2940                         RTE_PTYPE_TUNNEL_GRENAT |
2941                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2942                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2943                         RTE_PTYPE_INNER_L4_NONFRAG,
2944                 [149] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2945                         RTE_PTYPE_TUNNEL_GRENAT |
2946                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2947                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2948                         RTE_PTYPE_INNER_L4_UDP,
2949                 /* [150] reserved */
2950                 [151] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2951                         RTE_PTYPE_TUNNEL_GRENAT |
2952                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2953                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2954                         RTE_PTYPE_INNER_L4_TCP,
2955                 [152] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2956                         RTE_PTYPE_TUNNEL_GRENAT |
2957                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2958                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2959                         RTE_PTYPE_INNER_L4_SCTP,
2960                 [153] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2961                         RTE_PTYPE_TUNNEL_GRENAT |
2962                         RTE_PTYPE_INNER_L2_ETHER_VLAN |
2963                         RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2964                         RTE_PTYPE_INNER_L4_ICMP,
2965                 /* [154] - [255] reserved */
2966                 [256] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2967                         RTE_PTYPE_TUNNEL_GTPC,
2968                 [257] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2969                         RTE_PTYPE_TUNNEL_GTPC,
2970                 [258] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2971                                 RTE_PTYPE_TUNNEL_GTPU,
2972                 [259] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2973                                 RTE_PTYPE_TUNNEL_GTPU,
2974                 /* [260] - [263] reserved */
2975                 [264] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2976                         RTE_PTYPE_TUNNEL_GTPC,
2977                 [265] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2978                         RTE_PTYPE_TUNNEL_GTPC,
2979                 [266] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2980                                 RTE_PTYPE_TUNNEL_GTPU,
2981                 [267] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2982                                 RTE_PTYPE_TUNNEL_GTPU,
2983
2984                 /* All others reserved */
2985         };
2986
2987         return type_table[ptype];
2988 }
2989
2990 void __attribute__((cold))
2991 ice_set_default_ptype_table(struct rte_eth_dev *dev)
2992 {
2993         struct ice_adapter *ad =
2994                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2995         int i;
2996
2997         for (i = 0; i < ICE_MAX_PKT_TYPE; i++)
2998                 ad->ptype_tbl[i] = ice_get_default_pkt_type(i);
2999 }