ixgbe: improve slow-path perf with vector scattered Rx
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe_rxtx.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <sys/queue.h>
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <stdint.h>
41 #include <stdarg.h>
42 #include <unistd.h>
43 #include <inttypes.h>
44
45 #include <rte_byteorder.h>
46 #include <rte_common.h>
47 #include <rte_cycles.h>
48 #include <rte_log.h>
49 #include <rte_debug.h>
50 #include <rte_interrupts.h>
51 #include <rte_pci.h>
52 #include <rte_memory.h>
53 #include <rte_memzone.h>
54 #include <rte_launch.h>
55 #include <rte_tailq.h>
56 #include <rte_eal.h>
57 #include <rte_per_lcore.h>
58 #include <rte_lcore.h>
59 #include <rte_atomic.h>
60 #include <rte_branch_prediction.h>
61 #include <rte_ring.h>
62 #include <rte_mempool.h>
63 #include <rte_malloc.h>
64 #include <rte_mbuf.h>
65 #include <rte_ether.h>
66 #include <rte_ethdev.h>
67 #include <rte_prefetch.h>
68 #include <rte_udp.h>
69 #include <rte_tcp.h>
70 #include <rte_sctp.h>
71 #include <rte_string_fns.h>
72 #include <rte_errno.h>
73
74 #include "ixgbe_logs.h"
75 #include "ixgbe/ixgbe_api.h"
76 #include "ixgbe/ixgbe_vf.h"
77 #include "ixgbe_ethdev.h"
78 #include "ixgbe/ixgbe_dcb.h"
79 #include "ixgbe/ixgbe_common.h"
80 #include "ixgbe_rxtx.h"
81
82 #define IXGBE_RSS_OFFLOAD_ALL ( \
83                 ETH_RSS_IPV4 | \
84                 ETH_RSS_IPV4_TCP | \
85                 ETH_RSS_IPV6 | \
86                 ETH_RSS_IPV6_EX | \
87                 ETH_RSS_IPV6_TCP | \
88                 ETH_RSS_IPV6_TCP_EX | \
89                 ETH_RSS_IPV4_UDP | \
90                 ETH_RSS_IPV6_UDP | \
91                 ETH_RSS_IPV6_UDP_EX)
92
93 static inline struct rte_mbuf *
94 rte_rxmbuf_alloc(struct rte_mempool *mp)
95 {
96         struct rte_mbuf *m;
97
98         m = __rte_mbuf_raw_alloc(mp);
99         __rte_mbuf_sanity_check_raw(m, 0);
100         return (m);
101 }
102
103
104 #if 1
105 #define RTE_PMD_USE_PREFETCH
106 #endif
107
108 #ifdef RTE_PMD_USE_PREFETCH
109 /*
110  * Prefetch a cache line into all cache levels.
111  */
112 #define rte_ixgbe_prefetch(p)   rte_prefetch0(p)
113 #else
114 #define rte_ixgbe_prefetch(p)   do {} while(0)
115 #endif
116
117 /*********************************************************************
118  *
119  *  TX functions
120  *
121  **********************************************************************/
122
123 /*
124  * Check for descriptors with their DD bit set and free mbufs.
125  * Return the total number of buffers freed.
126  */
127 static inline int __attribute__((always_inline))
128 ixgbe_tx_free_bufs(struct igb_tx_queue *txq)
129 {
130         struct igb_tx_entry *txep;
131         uint32_t status;
132         int i;
133
134         /* check DD bit on threshold descriptor */
135         status = txq->tx_ring[txq->tx_next_dd].wb.status;
136         if (! (status & IXGBE_ADVTXD_STAT_DD))
137                 return 0;
138
139         /*
140          * first buffer to free from S/W ring is at index
141          * tx_next_dd - (tx_rs_thresh-1)
142          */
143         txep = &(txq->sw_ring[txq->tx_next_dd - (txq->tx_rs_thresh - 1)]);
144
145         /* free buffers one at a time */
146         if ((txq->txq_flags & (uint32_t)ETH_TXQ_FLAGS_NOREFCOUNT) != 0) {
147                 for (i = 0; i < txq->tx_rs_thresh; ++i, ++txep) {
148                         rte_mempool_put(txep->mbuf->pool, txep->mbuf);
149                         txep->mbuf = NULL;
150                 }
151         } else {
152                 for (i = 0; i < txq->tx_rs_thresh; ++i, ++txep) {
153                         rte_pktmbuf_free_seg(txep->mbuf);
154                         txep->mbuf = NULL;
155                 }
156         }
157
158         /* buffers were freed, update counters */
159         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free + txq->tx_rs_thresh);
160         txq->tx_next_dd = (uint16_t)(txq->tx_next_dd + txq->tx_rs_thresh);
161         if (txq->tx_next_dd >= txq->nb_tx_desc)
162                 txq->tx_next_dd = (uint16_t)(txq->tx_rs_thresh - 1);
163
164         return txq->tx_rs_thresh;
165 }
166
167 /* Populate 4 descriptors with data from 4 mbufs */
168 static inline void
169 tx4(volatile union ixgbe_adv_tx_desc *txdp, struct rte_mbuf **pkts)
170 {
171         uint64_t buf_dma_addr;
172         uint32_t pkt_len;
173         int i;
174
175         for (i = 0; i < 4; ++i, ++txdp, ++pkts) {
176                 buf_dma_addr = RTE_MBUF_DATA_DMA_ADDR(*pkts);
177                 pkt_len = (*pkts)->data_len;
178
179                 /* write data to descriptor */
180                 txdp->read.buffer_addr = buf_dma_addr;
181                 txdp->read.cmd_type_len =
182                                 ((uint32_t)DCMD_DTYP_FLAGS | pkt_len);
183                 txdp->read.olinfo_status =
184                                 (pkt_len << IXGBE_ADVTXD_PAYLEN_SHIFT);
185                 rte_prefetch0(&(*pkts)->pool);
186         }
187 }
188
189 /* Populate 1 descriptor with data from 1 mbuf */
190 static inline void
191 tx1(volatile union ixgbe_adv_tx_desc *txdp, struct rte_mbuf **pkts)
192 {
193         uint64_t buf_dma_addr;
194         uint32_t pkt_len;
195
196         buf_dma_addr = RTE_MBUF_DATA_DMA_ADDR(*pkts);
197         pkt_len = (*pkts)->data_len;
198
199         /* write data to descriptor */
200         txdp->read.buffer_addr = buf_dma_addr;
201         txdp->read.cmd_type_len =
202                         ((uint32_t)DCMD_DTYP_FLAGS | pkt_len);
203         txdp->read.olinfo_status =
204                         (pkt_len << IXGBE_ADVTXD_PAYLEN_SHIFT);
205         rte_prefetch0(&(*pkts)->pool);
206 }
207
208 /*
209  * Fill H/W descriptor ring with mbuf data.
210  * Copy mbuf pointers to the S/W ring.
211  */
212 static inline void
213 ixgbe_tx_fill_hw_ring(struct igb_tx_queue *txq, struct rte_mbuf **pkts,
214                       uint16_t nb_pkts)
215 {
216         volatile union ixgbe_adv_tx_desc *txdp = &(txq->tx_ring[txq->tx_tail]);
217         struct igb_tx_entry *txep = &(txq->sw_ring[txq->tx_tail]);
218         const int N_PER_LOOP = 4;
219         const int N_PER_LOOP_MASK = N_PER_LOOP-1;
220         int mainpart, leftover;
221         int i, j;
222
223         /*
224          * Process most of the packets in chunks of N pkts.  Any
225          * leftover packets will get processed one at a time.
226          */
227         mainpart = (nb_pkts & ((uint32_t) ~N_PER_LOOP_MASK));
228         leftover = (nb_pkts & ((uint32_t)  N_PER_LOOP_MASK));
229         for (i = 0; i < mainpart; i += N_PER_LOOP) {
230                 /* Copy N mbuf pointers to the S/W ring */
231                 for (j = 0; j < N_PER_LOOP; ++j) {
232                         (txep + i + j)->mbuf = *(pkts + i + j);
233                 }
234                 tx4(txdp + i, pkts + i);
235         }
236
237         if (unlikely(leftover > 0)) {
238                 for (i = 0; i < leftover; ++i) {
239                         (txep + mainpart + i)->mbuf = *(pkts + mainpart + i);
240                         tx1(txdp + mainpart + i, pkts + mainpart + i);
241                 }
242         }
243 }
244
245 static inline uint16_t
246 tx_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
247              uint16_t nb_pkts)
248 {
249         struct igb_tx_queue *txq = (struct igb_tx_queue *)tx_queue;
250         volatile union ixgbe_adv_tx_desc *tx_r = txq->tx_ring;
251         uint16_t n = 0;
252
253         /*
254          * Begin scanning the H/W ring for done descriptors when the
255          * number of available descriptors drops below tx_free_thresh.  For
256          * each done descriptor, free the associated buffer.
257          */
258         if (txq->nb_tx_free < txq->tx_free_thresh)
259                 ixgbe_tx_free_bufs(txq);
260
261         /* Only use descriptors that are available */
262         nb_pkts = (uint16_t)RTE_MIN(txq->nb_tx_free, nb_pkts);
263         if (unlikely(nb_pkts == 0))
264                 return 0;
265
266         /* Use exactly nb_pkts descriptors */
267         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free - nb_pkts);
268
269         /*
270          * At this point, we know there are enough descriptors in the
271          * ring to transmit all the packets.  This assumes that each
272          * mbuf contains a single segment, and that no new offloads
273          * are expected, which would require a new context descriptor.
274          */
275
276         /*
277          * See if we're going to wrap-around. If so, handle the top
278          * of the descriptor ring first, then do the bottom.  If not,
279          * the processing looks just like the "bottom" part anyway...
280          */
281         if ((txq->tx_tail + nb_pkts) > txq->nb_tx_desc) {
282                 n = (uint16_t)(txq->nb_tx_desc - txq->tx_tail);
283                 ixgbe_tx_fill_hw_ring(txq, tx_pkts, n);
284
285                 /*
286                  * We know that the last descriptor in the ring will need to
287                  * have its RS bit set because tx_rs_thresh has to be
288                  * a divisor of the ring size
289                  */
290                 tx_r[txq->tx_next_rs].read.cmd_type_len |=
291                         rte_cpu_to_le_32(IXGBE_ADVTXD_DCMD_RS);
292                 txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
293
294                 txq->tx_tail = 0;
295         }
296
297         /* Fill H/W descriptor ring with mbuf data */
298         ixgbe_tx_fill_hw_ring(txq, tx_pkts + n, (uint16_t)(nb_pkts - n));
299         txq->tx_tail = (uint16_t)(txq->tx_tail + (nb_pkts - n));
300
301         /*
302          * Determine if RS bit should be set
303          * This is what we actually want:
304          *   if ((txq->tx_tail - 1) >= txq->tx_next_rs)
305          * but instead of subtracting 1 and doing >=, we can just do
306          * greater than without subtracting.
307          */
308         if (txq->tx_tail > txq->tx_next_rs) {
309                 tx_r[txq->tx_next_rs].read.cmd_type_len |=
310                         rte_cpu_to_le_32(IXGBE_ADVTXD_DCMD_RS);
311                 txq->tx_next_rs = (uint16_t)(txq->tx_next_rs +
312                                                 txq->tx_rs_thresh);
313                 if (txq->tx_next_rs >= txq->nb_tx_desc)
314                         txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
315         }
316
317         /*
318          * Check for wrap-around. This would only happen if we used
319          * up to the last descriptor in the ring, no more, no less.
320          */
321         if (txq->tx_tail >= txq->nb_tx_desc)
322                 txq->tx_tail = 0;
323
324         /* update tail pointer */
325         rte_wmb();
326         IXGBE_PCI_REG_WRITE(txq->tdt_reg_addr, txq->tx_tail);
327
328         return nb_pkts;
329 }
330
331 uint16_t
332 ixgbe_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
333                        uint16_t nb_pkts)
334 {
335         uint16_t nb_tx;
336
337         /* Try to transmit at least chunks of TX_MAX_BURST pkts */
338         if (likely(nb_pkts <= RTE_PMD_IXGBE_TX_MAX_BURST))
339                 return tx_xmit_pkts(tx_queue, tx_pkts, nb_pkts);
340
341         /* transmit more than the max burst, in chunks of TX_MAX_BURST */
342         nb_tx = 0;
343         while (nb_pkts) {
344                 uint16_t ret, n;
345                 n = (uint16_t)RTE_MIN(nb_pkts, RTE_PMD_IXGBE_TX_MAX_BURST);
346                 ret = tx_xmit_pkts(tx_queue, &(tx_pkts[nb_tx]), n);
347                 nb_tx = (uint16_t)(nb_tx + ret);
348                 nb_pkts = (uint16_t)(nb_pkts - ret);
349                 if (ret < n)
350                         break;
351         }
352
353         return nb_tx;
354 }
355
356 static inline void
357 ixgbe_set_xmit_ctx(struct igb_tx_queue* txq,
358                 volatile struct ixgbe_adv_tx_context_desc *ctx_txd,
359                 uint64_t ol_flags, uint32_t vlan_macip_lens)
360 {
361         uint32_t type_tucmd_mlhl;
362         uint32_t mss_l4len_idx;
363         uint32_t ctx_idx;
364         uint32_t cmp_mask;
365
366         ctx_idx = txq->ctx_curr;
367         cmp_mask = 0;
368         type_tucmd_mlhl = 0;
369
370         if (ol_flags & PKT_TX_VLAN_PKT) {
371                 cmp_mask |= TX_VLAN_CMP_MASK;
372         }
373
374         if (ol_flags & PKT_TX_IP_CKSUM) {
375                 type_tucmd_mlhl = IXGBE_ADVTXD_TUCMD_IPV4;
376                 cmp_mask |= TX_MAC_LEN_CMP_MASK;
377         }
378
379         /* Specify which HW CTX to upload. */
380         mss_l4len_idx = (ctx_idx << IXGBE_ADVTXD_IDX_SHIFT);
381         switch (ol_flags & PKT_TX_L4_MASK) {
382         case PKT_TX_UDP_CKSUM:
383                 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_UDP |
384                                 IXGBE_ADVTXD_DTYP_CTXT | IXGBE_ADVTXD_DCMD_DEXT;
385                 mss_l4len_idx |= sizeof(struct udp_hdr) << IXGBE_ADVTXD_L4LEN_SHIFT;
386                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
387                 break;
388         case PKT_TX_TCP_CKSUM:
389                 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_TCP |
390                                 IXGBE_ADVTXD_DTYP_CTXT | IXGBE_ADVTXD_DCMD_DEXT;
391                 mss_l4len_idx |= sizeof(struct tcp_hdr) << IXGBE_ADVTXD_L4LEN_SHIFT;
392                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
393                 break;
394         case PKT_TX_SCTP_CKSUM:
395                 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_SCTP |
396                                 IXGBE_ADVTXD_DTYP_CTXT | IXGBE_ADVTXD_DCMD_DEXT;
397                 mss_l4len_idx |= sizeof(struct sctp_hdr) << IXGBE_ADVTXD_L4LEN_SHIFT;
398                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
399                 break;
400         default:
401                 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_RSV |
402                                 IXGBE_ADVTXD_DTYP_CTXT | IXGBE_ADVTXD_DCMD_DEXT;
403                 break;
404         }
405
406         txq->ctx_cache[ctx_idx].flags = ol_flags;
407         txq->ctx_cache[ctx_idx].cmp_mask = cmp_mask;
408         txq->ctx_cache[ctx_idx].vlan_macip_lens.data =
409                 vlan_macip_lens & cmp_mask;
410
411         ctx_txd->type_tucmd_mlhl = rte_cpu_to_le_32(type_tucmd_mlhl);
412         ctx_txd->vlan_macip_lens = rte_cpu_to_le_32(vlan_macip_lens);
413         ctx_txd->mss_l4len_idx   = rte_cpu_to_le_32(mss_l4len_idx);
414         ctx_txd->seqnum_seed     = 0;
415 }
416
417 /*
418  * Check which hardware context can be used. Use the existing match
419  * or create a new context descriptor.
420  */
421 static inline uint32_t
422 what_advctx_update(struct igb_tx_queue *txq, uint64_t flags,
423                 uint32_t vlan_macip_lens)
424 {
425         /* If match with the current used context */
426         if (likely((txq->ctx_cache[txq->ctx_curr].flags == flags) &&
427                 (txq->ctx_cache[txq->ctx_curr].vlan_macip_lens.data ==
428                 (txq->ctx_cache[txq->ctx_curr].cmp_mask & vlan_macip_lens)))) {
429                         return txq->ctx_curr;
430         }
431
432         /* What if match with the next context  */
433         txq->ctx_curr ^= 1;
434         if (likely((txq->ctx_cache[txq->ctx_curr].flags == flags) &&
435                 (txq->ctx_cache[txq->ctx_curr].vlan_macip_lens.data ==
436                 (txq->ctx_cache[txq->ctx_curr].cmp_mask & vlan_macip_lens)))) {
437                         return txq->ctx_curr;
438         }
439
440         /* Mismatch, use the previous context */
441         return (IXGBE_CTX_NUM);
442 }
443
444 static inline uint32_t
445 tx_desc_cksum_flags_to_olinfo(uint64_t ol_flags)
446 {
447         static const uint32_t l4_olinfo[2] = {0, IXGBE_ADVTXD_POPTS_TXSM};
448         static const uint32_t l3_olinfo[2] = {0, IXGBE_ADVTXD_POPTS_IXSM};
449         uint32_t tmp;
450
451         tmp  = l4_olinfo[(ol_flags & PKT_TX_L4_MASK)  != PKT_TX_L4_NO_CKSUM];
452         tmp |= l3_olinfo[(ol_flags & PKT_TX_IP_CKSUM) != 0];
453         return tmp;
454 }
455
456 static inline uint32_t
457 tx_desc_vlan_flags_to_cmdtype(uint64_t ol_flags)
458 {
459         static const uint32_t vlan_cmd[2] = {0, IXGBE_ADVTXD_DCMD_VLE};
460         return vlan_cmd[(ol_flags & PKT_TX_VLAN_PKT) != 0];
461 }
462
463 /* Default RS bit threshold values */
464 #ifndef DEFAULT_TX_RS_THRESH
465 #define DEFAULT_TX_RS_THRESH   32
466 #endif
467 #ifndef DEFAULT_TX_FREE_THRESH
468 #define DEFAULT_TX_FREE_THRESH 32
469 #endif
470
471 /* Reset transmit descriptors after they have been used */
472 static inline int
473 ixgbe_xmit_cleanup(struct igb_tx_queue *txq)
474 {
475         struct igb_tx_entry *sw_ring = txq->sw_ring;
476         volatile union ixgbe_adv_tx_desc *txr = txq->tx_ring;
477         uint16_t last_desc_cleaned = txq->last_desc_cleaned;
478         uint16_t nb_tx_desc = txq->nb_tx_desc;
479         uint16_t desc_to_clean_to;
480         uint16_t nb_tx_to_clean;
481
482         /* Determine the last descriptor needing to be cleaned */
483         desc_to_clean_to = (uint16_t)(last_desc_cleaned + txq->tx_rs_thresh);
484         if (desc_to_clean_to >= nb_tx_desc)
485                 desc_to_clean_to = (uint16_t)(desc_to_clean_to - nb_tx_desc);
486
487         /* Check to make sure the last descriptor to clean is done */
488         desc_to_clean_to = sw_ring[desc_to_clean_to].last_id;
489         if (! (txr[desc_to_clean_to].wb.status & IXGBE_TXD_STAT_DD))
490         {
491                 PMD_TX_FREE_LOG(DEBUG,
492                                 "TX descriptor %4u is not done"
493                                 "(port=%d queue=%d)",
494                                 desc_to_clean_to,
495                                 txq->port_id, txq->queue_id);
496                 /* Failed to clean any descriptors, better luck next time */
497                 return -(1);
498         }
499
500         /* Figure out how many descriptors will be cleaned */
501         if (last_desc_cleaned > desc_to_clean_to)
502                 nb_tx_to_clean = (uint16_t)((nb_tx_desc - last_desc_cleaned) +
503                                                         desc_to_clean_to);
504         else
505                 nb_tx_to_clean = (uint16_t)(desc_to_clean_to -
506                                                 last_desc_cleaned);
507
508         PMD_TX_FREE_LOG(DEBUG,
509                         "Cleaning %4u TX descriptors: %4u to %4u "
510                         "(port=%d queue=%d)",
511                         nb_tx_to_clean, last_desc_cleaned, desc_to_clean_to,
512                         txq->port_id, txq->queue_id);
513
514         /*
515          * The last descriptor to clean is done, so that means all the
516          * descriptors from the last descriptor that was cleaned
517          * up to the last descriptor with the RS bit set
518          * are done. Only reset the threshold descriptor.
519          */
520         txr[desc_to_clean_to].wb.status = 0;
521
522         /* Update the txq to reflect the last descriptor that was cleaned */
523         txq->last_desc_cleaned = desc_to_clean_to;
524         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free + nb_tx_to_clean);
525
526         /* No Error */
527         return (0);
528 }
529
530 uint16_t
531 ixgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
532                 uint16_t nb_pkts)
533 {
534         struct igb_tx_queue *txq;
535         struct igb_tx_entry *sw_ring;
536         struct igb_tx_entry *txe, *txn;
537         volatile union ixgbe_adv_tx_desc *txr;
538         volatile union ixgbe_adv_tx_desc *txd;
539         struct rte_mbuf     *tx_pkt;
540         struct rte_mbuf     *m_seg;
541         union ixgbe_vlan_macip vlan_macip_lens;
542         uint64_t buf_dma_addr;
543         uint32_t olinfo_status;
544         uint32_t cmd_type_len;
545         uint32_t pkt_len;
546         uint16_t slen;
547         uint64_t ol_flags;
548         uint16_t tx_id;
549         uint16_t tx_last;
550         uint16_t nb_tx;
551         uint16_t nb_used;
552         uint64_t tx_ol_req;
553         uint32_t ctx = 0;
554         uint32_t new_ctx;
555
556         txq = tx_queue;
557         sw_ring = txq->sw_ring;
558         txr     = txq->tx_ring;
559         tx_id   = txq->tx_tail;
560         txe = &sw_ring[tx_id];
561
562         /* Determine if the descriptor ring needs to be cleaned. */
563         if ((txq->nb_tx_desc - txq->nb_tx_free) > txq->tx_free_thresh) {
564                 ixgbe_xmit_cleanup(txq);
565         }
566
567         /* TX loop */
568         for (nb_tx = 0; nb_tx < nb_pkts; nb_tx++) {
569                 new_ctx = 0;
570                 tx_pkt = *tx_pkts++;
571                 pkt_len = tx_pkt->pkt_len;
572
573                 RTE_MBUF_PREFETCH_TO_FREE(txe->mbuf);
574
575                 /*
576                  * Determine how many (if any) context descriptors
577                  * are needed for offload functionality.
578                  */
579                 ol_flags = tx_pkt->ol_flags;
580                 vlan_macip_lens.f.vlan_tci = tx_pkt->vlan_tci;
581                 vlan_macip_lens.f.l2_l3_len = tx_pkt->l2_l3_len;
582
583                 /* If hardware offload required */
584                 tx_ol_req = ol_flags & PKT_TX_OFFLOAD_MASK;
585                 if (tx_ol_req) {
586                         /* If new context need be built or reuse the exist ctx. */
587                         ctx = what_advctx_update(txq, tx_ol_req,
588                                 vlan_macip_lens.data);
589                         /* Only allocate context descriptor if required*/
590                         new_ctx = (ctx == IXGBE_CTX_NUM);
591                         ctx = txq->ctx_curr;
592                 }
593
594                 /*
595                  * Keep track of how many descriptors are used this loop
596                  * This will always be the number of segments + the number of
597                  * Context descriptors required to transmit the packet
598                  */
599                 nb_used = (uint16_t)(tx_pkt->nb_segs + new_ctx);
600
601                 /*
602                  * The number of descriptors that must be allocated for a
603                  * packet is the number of segments of that packet, plus 1
604                  * Context Descriptor for the hardware offload, if any.
605                  * Determine the last TX descriptor to allocate in the TX ring
606                  * for the packet, starting from the current position (tx_id)
607                  * in the ring.
608                  */
609                 tx_last = (uint16_t) (tx_id + nb_used - 1);
610
611                 /* Circular ring */
612                 if (tx_last >= txq->nb_tx_desc)
613                         tx_last = (uint16_t) (tx_last - txq->nb_tx_desc);
614
615                 PMD_TX_LOG(DEBUG, "port_id=%u queue_id=%u pktlen=%u"
616                            " tx_first=%u tx_last=%u\n",
617                            (unsigned) txq->port_id,
618                            (unsigned) txq->queue_id,
619                            (unsigned) pkt_len,
620                            (unsigned) tx_id,
621                            (unsigned) tx_last);
622
623                 /*
624                  * Make sure there are enough TX descriptors available to
625                  * transmit the entire packet.
626                  * nb_used better be less than or equal to txq->tx_rs_thresh
627                  */
628                 if (nb_used > txq->nb_tx_free) {
629                         PMD_TX_FREE_LOG(DEBUG,
630                                         "Not enough free TX descriptors "
631                                         "nb_used=%4u nb_free=%4u "
632                                         "(port=%d queue=%d)",
633                                         nb_used, txq->nb_tx_free,
634                                         txq->port_id, txq->queue_id);
635
636                         if (ixgbe_xmit_cleanup(txq) != 0) {
637                                 /* Could not clean any descriptors */
638                                 if (nb_tx == 0)
639                                         return (0);
640                                 goto end_of_tx;
641                         }
642
643                         /* nb_used better be <= txq->tx_rs_thresh */
644                         if (unlikely(nb_used > txq->tx_rs_thresh)) {
645                                 PMD_TX_FREE_LOG(DEBUG,
646                                         "The number of descriptors needed to "
647                                         "transmit the packet exceeds the "
648                                         "RS bit threshold. This will impact "
649                                         "performance."
650                                         "nb_used=%4u nb_free=%4u "
651                                         "tx_rs_thresh=%4u. "
652                                         "(port=%d queue=%d)",
653                                         nb_used, txq->nb_tx_free,
654                                         txq->tx_rs_thresh,
655                                         txq->port_id, txq->queue_id);
656                                 /*
657                                  * Loop here until there are enough TX
658                                  * descriptors or until the ring cannot be
659                                  * cleaned.
660                                  */
661                                 while (nb_used > txq->nb_tx_free) {
662                                         if (ixgbe_xmit_cleanup(txq) != 0) {
663                                                 /*
664                                                  * Could not clean any
665                                                  * descriptors
666                                                  */
667                                                 if (nb_tx == 0)
668                                                         return (0);
669                                                 goto end_of_tx;
670                                         }
671                                 }
672                         }
673                 }
674
675                 /*
676                  * By now there are enough free TX descriptors to transmit
677                  * the packet.
678                  */
679
680                 /*
681                  * Set common flags of all TX Data Descriptors.
682                  *
683                  * The following bits must be set in all Data Descriptors:
684                  *   - IXGBE_ADVTXD_DTYP_DATA
685                  *   - IXGBE_ADVTXD_DCMD_DEXT
686                  *
687                  * The following bits must be set in the first Data Descriptor
688                  * and are ignored in the other ones:
689                  *   - IXGBE_ADVTXD_DCMD_IFCS
690                  *   - IXGBE_ADVTXD_MAC_1588
691                  *   - IXGBE_ADVTXD_DCMD_VLE
692                  *
693                  * The following bits must only be set in the last Data
694                  * Descriptor:
695                  *   - IXGBE_TXD_CMD_EOP
696                  *
697                  * The following bits can be set in any Data Descriptor, but
698                  * are only set in the last Data Descriptor:
699                  *   - IXGBE_TXD_CMD_RS
700                  */
701                 cmd_type_len = IXGBE_ADVTXD_DTYP_DATA |
702                         IXGBE_ADVTXD_DCMD_IFCS | IXGBE_ADVTXD_DCMD_DEXT;
703                 olinfo_status = (pkt_len << IXGBE_ADVTXD_PAYLEN_SHIFT);
704 #ifdef RTE_LIBRTE_IEEE1588
705                 if (ol_flags & PKT_TX_IEEE1588_TMST)
706                         cmd_type_len |= IXGBE_ADVTXD_MAC_1588;
707 #endif
708
709                 if (tx_ol_req) {
710                         /*
711                          * Setup the TX Advanced Context Descriptor if required
712                          */
713                         if (new_ctx) {
714                                 volatile struct ixgbe_adv_tx_context_desc *
715                                     ctx_txd;
716
717                                 ctx_txd = (volatile struct
718                                     ixgbe_adv_tx_context_desc *)
719                                     &txr[tx_id];
720
721                                 txn = &sw_ring[txe->next_id];
722                                 RTE_MBUF_PREFETCH_TO_FREE(txn->mbuf);
723
724                                 if (txe->mbuf != NULL) {
725                                         rte_pktmbuf_free_seg(txe->mbuf);
726                                         txe->mbuf = NULL;
727                                 }
728
729                                 ixgbe_set_xmit_ctx(txq, ctx_txd, tx_ol_req,
730                                     vlan_macip_lens.data);
731
732                                 txe->last_id = tx_last;
733                                 tx_id = txe->next_id;
734                                 txe = txn;
735                         }
736
737                         /*
738                          * Setup the TX Advanced Data Descriptor,
739                          * This path will go through
740                          * whatever new/reuse the context descriptor
741                          */
742                         cmd_type_len  |= tx_desc_vlan_flags_to_cmdtype(ol_flags);
743                         olinfo_status |= tx_desc_cksum_flags_to_olinfo(ol_flags);
744                         olinfo_status |= ctx << IXGBE_ADVTXD_IDX_SHIFT;
745                 }
746
747                 m_seg = tx_pkt;
748                 do {
749                         txd = &txr[tx_id];
750                         txn = &sw_ring[txe->next_id];
751
752                         if (txe->mbuf != NULL)
753                                 rte_pktmbuf_free_seg(txe->mbuf);
754                         txe->mbuf = m_seg;
755
756                         /*
757                          * Set up Transmit Data Descriptor.
758                          */
759                         slen = m_seg->data_len;
760                         buf_dma_addr = RTE_MBUF_DATA_DMA_ADDR(m_seg);
761                         txd->read.buffer_addr =
762                                 rte_cpu_to_le_64(buf_dma_addr);
763                         txd->read.cmd_type_len =
764                                 rte_cpu_to_le_32(cmd_type_len | slen);
765                         txd->read.olinfo_status =
766                                 rte_cpu_to_le_32(olinfo_status);
767                         txe->last_id = tx_last;
768                         tx_id = txe->next_id;
769                         txe = txn;
770                         m_seg = m_seg->next;
771                 } while (m_seg != NULL);
772
773                 /*
774                  * The last packet data descriptor needs End Of Packet (EOP)
775                  */
776                 cmd_type_len |= IXGBE_TXD_CMD_EOP;
777                 txq->nb_tx_used = (uint16_t)(txq->nb_tx_used + nb_used);
778                 txq->nb_tx_free = (uint16_t)(txq->nb_tx_free - nb_used);
779
780                 /* Set RS bit only on threshold packets' last descriptor */
781                 if (txq->nb_tx_used >= txq->tx_rs_thresh) {
782                         PMD_TX_FREE_LOG(DEBUG,
783                                         "Setting RS bit on TXD id="
784                                         "%4u (port=%d queue=%d)",
785                                         tx_last, txq->port_id, txq->queue_id);
786
787                         cmd_type_len |= IXGBE_TXD_CMD_RS;
788
789                         /* Update txq RS bit counters */
790                         txq->nb_tx_used = 0;
791                 }
792                 txd->read.cmd_type_len |= rte_cpu_to_le_32(cmd_type_len);
793         }
794 end_of_tx:
795         rte_wmb();
796
797         /*
798          * Set the Transmit Descriptor Tail (TDT)
799          */
800         PMD_TX_LOG(DEBUG, "port_id=%u queue_id=%u tx_tail=%u nb_tx=%u",
801                    (unsigned) txq->port_id, (unsigned) txq->queue_id,
802                    (unsigned) tx_id, (unsigned) nb_tx);
803         IXGBE_PCI_REG_WRITE(txq->tdt_reg_addr, tx_id);
804         txq->tx_tail = tx_id;
805
806         return (nb_tx);
807 }
808
809 /*********************************************************************
810  *
811  *  RX functions
812  *
813  **********************************************************************/
814 static inline uint64_t
815 rx_desc_hlen_type_rss_to_pkt_flags(uint32_t hl_tp_rs)
816 {
817         uint16_t pkt_flags;
818
819         static uint64_t ip_pkt_types_map[16] = {
820                 0, PKT_RX_IPV4_HDR, PKT_RX_IPV4_HDR_EXT, PKT_RX_IPV4_HDR_EXT,
821                 PKT_RX_IPV6_HDR, 0, 0, 0,
822                 PKT_RX_IPV6_HDR_EXT, 0, 0, 0,
823                 PKT_RX_IPV6_HDR_EXT, 0, 0, 0,
824         };
825
826         static uint64_t ip_rss_types_map[16] = {
827                 0, PKT_RX_RSS_HASH, PKT_RX_RSS_HASH, PKT_RX_RSS_HASH,
828                 0, PKT_RX_RSS_HASH, 0, PKT_RX_RSS_HASH,
829                 PKT_RX_RSS_HASH, 0, 0, 0,
830                 0, 0, 0,  PKT_RX_FDIR,
831         };
832
833 #ifdef RTE_LIBRTE_IEEE1588
834         static uint32_t ip_pkt_etqf_map[8] = {
835                 0, 0, 0, PKT_RX_IEEE1588_PTP,
836                 0, 0, 0, 0,
837         };
838
839         pkt_flags = (hl_tp_rs & IXGBE_RXDADV_PKTTYPE_ETQF) ?
840                         ip_pkt_etqf_map[(hl_tp_rs >> 4) & 0x07] :
841                         ip_pkt_types_map[(hl_tp_rs >> 4) & 0x0F];
842 #else
843         pkt_flags = (hl_tp_rs & IXGBE_RXDADV_PKTTYPE_ETQF) ? 0 :
844                         ip_pkt_types_map[(hl_tp_rs >> 4) & 0x0F];
845
846 #endif
847         return pkt_flags | ip_rss_types_map[hl_tp_rs & 0xF];
848 }
849
850 static inline uint64_t
851 rx_desc_status_to_pkt_flags(uint32_t rx_status)
852 {
853         uint64_t pkt_flags;
854
855         /*
856          * Check if VLAN present only.
857          * Do not check whether L3/L4 rx checksum done by NIC or not,
858          * That can be found from rte_eth_rxmode.hw_ip_checksum flag
859          */
860         pkt_flags = (rx_status & IXGBE_RXD_STAT_VP) ?  PKT_RX_VLAN_PKT : 0;
861
862 #ifdef RTE_LIBRTE_IEEE1588
863         if (rx_status & IXGBE_RXD_STAT_TMST)
864                 pkt_flags = pkt_flags | PKT_RX_IEEE1588_TMST;
865 #endif
866         return pkt_flags;
867 }
868
869 static inline uint64_t
870 rx_desc_error_to_pkt_flags(uint32_t rx_status)
871 {
872         /*
873          * Bit 31: IPE, IPv4 checksum error
874          * Bit 30: L4I, L4I integrity error
875          */
876         static uint64_t error_to_pkt_flags_map[4] = {
877                 0,  PKT_RX_L4_CKSUM_BAD, PKT_RX_IP_CKSUM_BAD,
878                 PKT_RX_IP_CKSUM_BAD | PKT_RX_L4_CKSUM_BAD
879         };
880         return error_to_pkt_flags_map[(rx_status >>
881                 IXGBE_RXDADV_ERR_CKSUM_BIT) & IXGBE_RXDADV_ERR_CKSUM_MSK];
882 }
883
884 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
885 /*
886  * LOOK_AHEAD defines how many desc statuses to check beyond the
887  * current descriptor.
888  * It must be a pound define for optimal performance.
889  * Do not change the value of LOOK_AHEAD, as the ixgbe_rx_scan_hw_ring
890  * function only works with LOOK_AHEAD=8.
891  */
892 #define LOOK_AHEAD 8
893 #if (LOOK_AHEAD != 8)
894 #error "PMD IXGBE: LOOK_AHEAD must be 8\n"
895 #endif
896 static inline int
897 ixgbe_rx_scan_hw_ring(struct igb_rx_queue *rxq)
898 {
899         volatile union ixgbe_adv_rx_desc *rxdp;
900         struct igb_rx_entry *rxep;
901         struct rte_mbuf *mb;
902         uint16_t pkt_len;
903         int s[LOOK_AHEAD], nb_dd;
904         int i, j, nb_rx = 0;
905
906
907         /* get references to current descriptor and S/W ring entry */
908         rxdp = &rxq->rx_ring[rxq->rx_tail];
909         rxep = &rxq->sw_ring[rxq->rx_tail];
910
911         /* check to make sure there is at least 1 packet to receive */
912         if (! (rxdp->wb.upper.status_error & IXGBE_RXDADV_STAT_DD))
913                 return 0;
914
915         /*
916          * Scan LOOK_AHEAD descriptors at a time to determine which descriptors
917          * reference packets that are ready to be received.
918          */
919         for (i = 0; i < RTE_PMD_IXGBE_RX_MAX_BURST;
920              i += LOOK_AHEAD, rxdp += LOOK_AHEAD, rxep += LOOK_AHEAD)
921         {
922                 /* Read desc statuses backwards to avoid race condition */
923                 for (j = LOOK_AHEAD-1; j >= 0; --j)
924                         s[j] = rxdp[j].wb.upper.status_error;
925
926                 /* Compute how many status bits were set */
927                 nb_dd = 0;
928                 for (j = 0; j < LOOK_AHEAD; ++j)
929                         nb_dd += s[j] & IXGBE_RXDADV_STAT_DD;
930
931                 nb_rx += nb_dd;
932
933                 /* Translate descriptor info to mbuf format */
934                 for (j = 0; j < nb_dd; ++j) {
935                         mb = rxep[j].mbuf;
936                         pkt_len = (uint16_t)(rxdp[j].wb.upper.length -
937                                                         rxq->crc_len);
938                         mb->data_len = pkt_len;
939                         mb->pkt_len = pkt_len;
940                         mb->vlan_tci = rxdp[j].wb.upper.vlan;
941                         mb->hash.rss = rxdp[j].wb.lower.hi_dword.rss;
942
943                         /* convert descriptor fields to rte mbuf flags */
944                         mb->ol_flags  = rx_desc_hlen_type_rss_to_pkt_flags(
945                                         rxdp[j].wb.lower.lo_dword.data);
946                         /* reuse status field from scan list */
947                         mb->ol_flags = mb->ol_flags |
948                                         rx_desc_status_to_pkt_flags(s[j]);
949                         mb->ol_flags = mb->ol_flags |
950                                         rx_desc_error_to_pkt_flags(s[j]);
951                 }
952
953                 /* Move mbuf pointers from the S/W ring to the stage */
954                 for (j = 0; j < LOOK_AHEAD; ++j) {
955                         rxq->rx_stage[i + j] = rxep[j].mbuf;
956                 }
957
958                 /* stop if all requested packets could not be received */
959                 if (nb_dd != LOOK_AHEAD)
960                         break;
961         }
962
963         /* clear software ring entries so we can cleanup correctly */
964         for (i = 0; i < nb_rx; ++i) {
965                 rxq->sw_ring[rxq->rx_tail + i].mbuf = NULL;
966         }
967
968
969         return nb_rx;
970 }
971
972 static inline int
973 ixgbe_rx_alloc_bufs(struct igb_rx_queue *rxq)
974 {
975         volatile union ixgbe_adv_rx_desc *rxdp;
976         struct igb_rx_entry *rxep;
977         struct rte_mbuf *mb;
978         uint16_t alloc_idx;
979         uint64_t dma_addr;
980         int diag, i;
981
982         /* allocate buffers in bulk directly into the S/W ring */
983         alloc_idx = (uint16_t)(rxq->rx_free_trigger -
984                                 (rxq->rx_free_thresh - 1));
985         rxep = &rxq->sw_ring[alloc_idx];
986         diag = rte_mempool_get_bulk(rxq->mb_pool, (void *)rxep,
987                                     rxq->rx_free_thresh);
988         if (unlikely(diag != 0))
989                 return (-ENOMEM);
990
991         rxdp = &rxq->rx_ring[alloc_idx];
992         for (i = 0; i < rxq->rx_free_thresh; ++i) {
993                 /* populate the static rte mbuf fields */
994                 mb = rxep[i].mbuf;
995                 rte_mbuf_refcnt_set(mb, 1);
996                 mb->next = NULL;
997                 mb->data_off = RTE_PKTMBUF_HEADROOM;
998                 mb->nb_segs = 1;
999                 mb->port = rxq->port_id;
1000
1001                 /* populate the descriptors */
1002                 dma_addr = (uint64_t)mb->buf_physaddr + RTE_PKTMBUF_HEADROOM;
1003                 rxdp[i].read.hdr_addr = dma_addr;
1004                 rxdp[i].read.pkt_addr = dma_addr;
1005         }
1006
1007         /* update tail pointer */
1008         rte_wmb();
1009         IXGBE_PCI_REG_WRITE(rxq->rdt_reg_addr, rxq->rx_free_trigger);
1010
1011         /* update state of internal queue structure */
1012         rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_trigger +
1013                                                 rxq->rx_free_thresh);
1014         if (rxq->rx_free_trigger >= rxq->nb_rx_desc)
1015                 rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1);
1016
1017         /* no errors */
1018         return 0;
1019 }
1020
1021 static inline uint16_t
1022 ixgbe_rx_fill_from_stage(struct igb_rx_queue *rxq, struct rte_mbuf **rx_pkts,
1023                          uint16_t nb_pkts)
1024 {
1025         struct rte_mbuf **stage = &rxq->rx_stage[rxq->rx_next_avail];
1026         int i;
1027
1028         /* how many packets are ready to return? */
1029         nb_pkts = (uint16_t)RTE_MIN(nb_pkts, rxq->rx_nb_avail);
1030
1031         /* copy mbuf pointers to the application's packet list */
1032         for (i = 0; i < nb_pkts; ++i)
1033                 rx_pkts[i] = stage[i];
1034
1035         /* update internal queue state */
1036         rxq->rx_nb_avail = (uint16_t)(rxq->rx_nb_avail - nb_pkts);
1037         rxq->rx_next_avail = (uint16_t)(rxq->rx_next_avail + nb_pkts);
1038
1039         return nb_pkts;
1040 }
1041
1042 static inline uint16_t
1043 rx_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
1044              uint16_t nb_pkts)
1045 {
1046         struct igb_rx_queue *rxq = (struct igb_rx_queue *)rx_queue;
1047         uint16_t nb_rx = 0;
1048
1049         /* Any previously recv'd pkts will be returned from the Rx stage */
1050         if (rxq->rx_nb_avail)
1051                 return ixgbe_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
1052
1053         /* Scan the H/W ring for packets to receive */
1054         nb_rx = (uint16_t)ixgbe_rx_scan_hw_ring(rxq);
1055
1056         /* update internal queue state */
1057         rxq->rx_next_avail = 0;
1058         rxq->rx_nb_avail = nb_rx;
1059         rxq->rx_tail = (uint16_t)(rxq->rx_tail + nb_rx);
1060
1061         /* if required, allocate new buffers to replenish descriptors */
1062         if (rxq->rx_tail > rxq->rx_free_trigger) {
1063                 if (ixgbe_rx_alloc_bufs(rxq) != 0) {
1064                         int i, j;
1065                         PMD_RX_LOG(DEBUG, "RX mbuf alloc failed port_id=%u "
1066                                    "queue_id=%u\n", (unsigned) rxq->port_id,
1067                                    (unsigned) rxq->queue_id);
1068
1069                         rte_eth_devices[rxq->port_id].data->rx_mbuf_alloc_failed +=
1070                                 rxq->rx_free_thresh;
1071
1072                         /*
1073                          * Need to rewind any previous receives if we cannot
1074                          * allocate new buffers to replenish the old ones.
1075                          */
1076                         rxq->rx_nb_avail = 0;
1077                         rxq->rx_tail = (uint16_t)(rxq->rx_tail - nb_rx);
1078                         for (i = 0, j = rxq->rx_tail; i < nb_rx; ++i, ++j)
1079                                 rxq->sw_ring[j].mbuf = rxq->rx_stage[i];
1080
1081                         return 0;
1082                 }
1083         }
1084
1085         if (rxq->rx_tail >= rxq->nb_rx_desc)
1086                 rxq->rx_tail = 0;
1087
1088         /* received any packets this loop? */
1089         if (rxq->rx_nb_avail)
1090                 return ixgbe_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
1091
1092         return 0;
1093 }
1094
1095 /* split requests into chunks of size RTE_PMD_IXGBE_RX_MAX_BURST */
1096 uint16_t
1097 ixgbe_recv_pkts_bulk_alloc(void *rx_queue, struct rte_mbuf **rx_pkts,
1098                            uint16_t nb_pkts)
1099 {
1100         uint16_t nb_rx;
1101
1102         if (unlikely(nb_pkts == 0))
1103                 return 0;
1104
1105         if (likely(nb_pkts <= RTE_PMD_IXGBE_RX_MAX_BURST))
1106                 return rx_recv_pkts(rx_queue, rx_pkts, nb_pkts);
1107
1108         /* request is relatively large, chunk it up */
1109         nb_rx = 0;
1110         while (nb_pkts) {
1111                 uint16_t ret, n;
1112                 n = (uint16_t)RTE_MIN(nb_pkts, RTE_PMD_IXGBE_RX_MAX_BURST);
1113                 ret = rx_recv_pkts(rx_queue, &rx_pkts[nb_rx], n);
1114                 nb_rx = (uint16_t)(nb_rx + ret);
1115                 nb_pkts = (uint16_t)(nb_pkts - ret);
1116                 if (ret < n)
1117                         break;
1118         }
1119
1120         return nb_rx;
1121 }
1122 #endif /* RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC */
1123
1124 uint16_t
1125 ixgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
1126                 uint16_t nb_pkts)
1127 {
1128         struct igb_rx_queue *rxq;
1129         volatile union ixgbe_adv_rx_desc *rx_ring;
1130         volatile union ixgbe_adv_rx_desc *rxdp;
1131         struct igb_rx_entry *sw_ring;
1132         struct igb_rx_entry *rxe;
1133         struct rte_mbuf *rxm;
1134         struct rte_mbuf *nmb;
1135         union ixgbe_adv_rx_desc rxd;
1136         uint64_t dma_addr;
1137         uint32_t staterr;
1138         uint32_t hlen_type_rss;
1139         uint16_t pkt_len;
1140         uint16_t rx_id;
1141         uint16_t nb_rx;
1142         uint16_t nb_hold;
1143         uint64_t pkt_flags;
1144
1145         nb_rx = 0;
1146         nb_hold = 0;
1147         rxq = rx_queue;
1148         rx_id = rxq->rx_tail;
1149         rx_ring = rxq->rx_ring;
1150         sw_ring = rxq->sw_ring;
1151         while (nb_rx < nb_pkts) {
1152                 /*
1153                  * The order of operations here is important as the DD status
1154                  * bit must not be read after any other descriptor fields.
1155                  * rx_ring and rxdp are pointing to volatile data so the order
1156                  * of accesses cannot be reordered by the compiler. If they were
1157                  * not volatile, they could be reordered which could lead to
1158                  * using invalid descriptor fields when read from rxd.
1159                  */
1160                 rxdp = &rx_ring[rx_id];
1161                 staterr = rxdp->wb.upper.status_error;
1162                 if (! (staterr & rte_cpu_to_le_32(IXGBE_RXDADV_STAT_DD)))
1163                         break;
1164                 rxd = *rxdp;
1165
1166                 /*
1167                  * End of packet.
1168                  *
1169                  * If the IXGBE_RXDADV_STAT_EOP flag is not set, the RX packet
1170                  * is likely to be invalid and to be dropped by the various
1171                  * validation checks performed by the network stack.
1172                  *
1173                  * Allocate a new mbuf to replenish the RX ring descriptor.
1174                  * If the allocation fails:
1175                  *    - arrange for that RX descriptor to be the first one
1176                  *      being parsed the next time the receive function is
1177                  *      invoked [on the same queue].
1178                  *
1179                  *    - Stop parsing the RX ring and return immediately.
1180                  *
1181                  * This policy do not drop the packet received in the RX
1182                  * descriptor for which the allocation of a new mbuf failed.
1183                  * Thus, it allows that packet to be later retrieved if
1184                  * mbuf have been freed in the mean time.
1185                  * As a side effect, holding RX descriptors instead of
1186                  * systematically giving them back to the NIC may lead to
1187                  * RX ring exhaustion situations.
1188                  * However, the NIC can gracefully prevent such situations
1189                  * to happen by sending specific "back-pressure" flow control
1190                  * frames to its peer(s).
1191                  */
1192                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_id=%u "
1193                            "ext_err_stat=0x%08x pkt_len=%u\n",
1194                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
1195                            (unsigned) rx_id, (unsigned) staterr,
1196                            (unsigned) rte_le_to_cpu_16(rxd.wb.upper.length));
1197
1198                 nmb = rte_rxmbuf_alloc(rxq->mb_pool);
1199                 if (nmb == NULL) {
1200                         PMD_RX_LOG(DEBUG, "RX mbuf alloc failed port_id=%u "
1201                                    "queue_id=%u\n", (unsigned) rxq->port_id,
1202                                    (unsigned) rxq->queue_id);
1203                         rte_eth_devices[rxq->port_id].data->rx_mbuf_alloc_failed++;
1204                         break;
1205                 }
1206
1207                 nb_hold++;
1208                 rxe = &sw_ring[rx_id];
1209                 rx_id++;
1210                 if (rx_id == rxq->nb_rx_desc)
1211                         rx_id = 0;
1212
1213                 /* Prefetch next mbuf while processing current one. */
1214                 rte_ixgbe_prefetch(sw_ring[rx_id].mbuf);
1215
1216                 /*
1217                  * When next RX descriptor is on a cache-line boundary,
1218                  * prefetch the next 4 RX descriptors and the next 8 pointers
1219                  * to mbufs.
1220                  */
1221                 if ((rx_id & 0x3) == 0) {
1222                         rte_ixgbe_prefetch(&rx_ring[rx_id]);
1223                         rte_ixgbe_prefetch(&sw_ring[rx_id]);
1224                 }
1225
1226                 rxm = rxe->mbuf;
1227                 rxe->mbuf = nmb;
1228                 dma_addr =
1229                         rte_cpu_to_le_64(RTE_MBUF_DATA_DMA_ADDR_DEFAULT(nmb));
1230                 rxdp->read.hdr_addr = dma_addr;
1231                 rxdp->read.pkt_addr = dma_addr;
1232
1233                 /*
1234                  * Initialize the returned mbuf.
1235                  * 1) setup generic mbuf fields:
1236                  *    - number of segments,
1237                  *    - next segment,
1238                  *    - packet length,
1239                  *    - RX port identifier.
1240                  * 2) integrate hardware offload data, if any:
1241                  *    - RSS flag & hash,
1242                  *    - IP checksum flag,
1243                  *    - VLAN TCI, if any,
1244                  *    - error flags.
1245                  */
1246                 pkt_len = (uint16_t) (rte_le_to_cpu_16(rxd.wb.upper.length) -
1247                                       rxq->crc_len);
1248                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
1249                 rte_packet_prefetch((char *)rxm->buf_addr + rxm->data_off);
1250                 rxm->nb_segs = 1;
1251                 rxm->next = NULL;
1252                 rxm->pkt_len = pkt_len;
1253                 rxm->data_len = pkt_len;
1254                 rxm->port = rxq->port_id;
1255
1256                 hlen_type_rss = rte_le_to_cpu_32(rxd.wb.lower.lo_dword.data);
1257                 /* Only valid if PKT_RX_VLAN_PKT set in pkt_flags */
1258                 rxm->vlan_tci = rte_le_to_cpu_16(rxd.wb.upper.vlan);
1259
1260                 pkt_flags = rx_desc_hlen_type_rss_to_pkt_flags(hlen_type_rss);
1261                 pkt_flags = pkt_flags | rx_desc_status_to_pkt_flags(staterr);
1262                 pkt_flags = pkt_flags | rx_desc_error_to_pkt_flags(staterr);
1263                 rxm->ol_flags = pkt_flags;
1264
1265                 if (likely(pkt_flags & PKT_RX_RSS_HASH))
1266                         rxm->hash.rss = rxd.wb.lower.hi_dword.rss;
1267                 else if (pkt_flags & PKT_RX_FDIR) {
1268                         rxm->hash.fdir.hash =
1269                                 (uint16_t)((rxd.wb.lower.hi_dword.csum_ip.csum)
1270                                            & IXGBE_ATR_HASH_MASK);
1271                         rxm->hash.fdir.id = rxd.wb.lower.hi_dword.csum_ip.ip_id;
1272                 }
1273                 /*
1274                  * Store the mbuf address into the next entry of the array
1275                  * of returned packets.
1276                  */
1277                 rx_pkts[nb_rx++] = rxm;
1278         }
1279         rxq->rx_tail = rx_id;
1280
1281         /*
1282          * If the number of free RX descriptors is greater than the RX free
1283          * threshold of the queue, advance the Receive Descriptor Tail (RDT)
1284          * register.
1285          * Update the RDT with the value of the last processed RX descriptor
1286          * minus 1, to guarantee that the RDT register is never equal to the
1287          * RDH register, which creates a "full" ring situtation from the
1288          * hardware point of view...
1289          */
1290         nb_hold = (uint16_t) (nb_hold + rxq->nb_rx_hold);
1291         if (nb_hold > rxq->rx_free_thresh) {
1292                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_tail=%u "
1293                            "nb_hold=%u nb_rx=%u\n",
1294                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
1295                            (unsigned) rx_id, (unsigned) nb_hold,
1296                            (unsigned) nb_rx);
1297                 rx_id = (uint16_t) ((rx_id == 0) ?
1298                                      (rxq->nb_rx_desc - 1) : (rx_id - 1));
1299                 IXGBE_PCI_REG_WRITE(rxq->rdt_reg_addr, rx_id);
1300                 nb_hold = 0;
1301         }
1302         rxq->nb_rx_hold = nb_hold;
1303         return (nb_rx);
1304 }
1305
1306 uint16_t
1307 ixgbe_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
1308                           uint16_t nb_pkts)
1309 {
1310         struct igb_rx_queue *rxq;
1311         volatile union ixgbe_adv_rx_desc *rx_ring;
1312         volatile union ixgbe_adv_rx_desc *rxdp;
1313         struct igb_rx_entry *sw_ring;
1314         struct igb_rx_entry *rxe;
1315         struct rte_mbuf *first_seg;
1316         struct rte_mbuf *last_seg;
1317         struct rte_mbuf *rxm;
1318         struct rte_mbuf *nmb;
1319         union ixgbe_adv_rx_desc rxd;
1320         uint64_t dma; /* Physical address of mbuf data buffer */
1321         uint32_t staterr;
1322         uint32_t hlen_type_rss;
1323         uint16_t rx_id;
1324         uint16_t nb_rx;
1325         uint16_t nb_hold;
1326         uint16_t data_len;
1327         uint16_t pkt_flags;
1328
1329         nb_rx = 0;
1330         nb_hold = 0;
1331         rxq = rx_queue;
1332         rx_id = rxq->rx_tail;
1333         rx_ring = rxq->rx_ring;
1334         sw_ring = rxq->sw_ring;
1335
1336         /*
1337          * Retrieve RX context of current packet, if any.
1338          */
1339         first_seg = rxq->pkt_first_seg;
1340         last_seg = rxq->pkt_last_seg;
1341
1342         while (nb_rx < nb_pkts) {
1343         next_desc:
1344                 /*
1345                  * The order of operations here is important as the DD status
1346                  * bit must not be read after any other descriptor fields.
1347                  * rx_ring and rxdp are pointing to volatile data so the order
1348                  * of accesses cannot be reordered by the compiler. If they were
1349                  * not volatile, they could be reordered which could lead to
1350                  * using invalid descriptor fields when read from rxd.
1351                  */
1352                 rxdp = &rx_ring[rx_id];
1353                 staterr = rxdp->wb.upper.status_error;
1354                 if (! (staterr & rte_cpu_to_le_32(IXGBE_RXDADV_STAT_DD)))
1355                         break;
1356                 rxd = *rxdp;
1357
1358                 /*
1359                  * Descriptor done.
1360                  *
1361                  * Allocate a new mbuf to replenish the RX ring descriptor.
1362                  * If the allocation fails:
1363                  *    - arrange for that RX descriptor to be the first one
1364                  *      being parsed the next time the receive function is
1365                  *      invoked [on the same queue].
1366                  *
1367                  *    - Stop parsing the RX ring and return immediately.
1368                  *
1369                  * This policy does not drop the packet received in the RX
1370                  * descriptor for which the allocation of a new mbuf failed.
1371                  * Thus, it allows that packet to be later retrieved if
1372                  * mbuf have been freed in the mean time.
1373                  * As a side effect, holding RX descriptors instead of
1374                  * systematically giving them back to the NIC may lead to
1375                  * RX ring exhaustion situations.
1376                  * However, the NIC can gracefully prevent such situations
1377                  * to happen by sending specific "back-pressure" flow control
1378                  * frames to its peer(s).
1379                  */
1380                 PMD_RX_LOG(DEBUG, "\nport_id=%u queue_id=%u rx_id=%u "
1381                            "staterr=0x%x data_len=%u\n",
1382                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
1383                            (unsigned) rx_id, (unsigned) staterr,
1384                            (unsigned) rte_le_to_cpu_16(rxd.wb.upper.length));
1385
1386                 nmb = rte_rxmbuf_alloc(rxq->mb_pool);
1387                 if (nmb == NULL) {
1388                         PMD_RX_LOG(DEBUG, "RX mbuf alloc failed port_id=%u "
1389                                    "queue_id=%u\n", (unsigned) rxq->port_id,
1390                                    (unsigned) rxq->queue_id);
1391                         rte_eth_devices[rxq->port_id].data->rx_mbuf_alloc_failed++;
1392                         break;
1393                 }
1394
1395                 nb_hold++;
1396                 rxe = &sw_ring[rx_id];
1397                 rx_id++;
1398                 if (rx_id == rxq->nb_rx_desc)
1399                         rx_id = 0;
1400
1401                 /* Prefetch next mbuf while processing current one. */
1402                 rte_ixgbe_prefetch(sw_ring[rx_id].mbuf);
1403
1404                 /*
1405                  * When next RX descriptor is on a cache-line boundary,
1406                  * prefetch the next 4 RX descriptors and the next 8 pointers
1407                  * to mbufs.
1408                  */
1409                 if ((rx_id & 0x3) == 0) {
1410                         rte_ixgbe_prefetch(&rx_ring[rx_id]);
1411                         rte_ixgbe_prefetch(&sw_ring[rx_id]);
1412                 }
1413
1414                 /*
1415                  * Update RX descriptor with the physical address of the new
1416                  * data buffer of the new allocated mbuf.
1417                  */
1418                 rxm = rxe->mbuf;
1419                 rxe->mbuf = nmb;
1420                 dma = rte_cpu_to_le_64(RTE_MBUF_DATA_DMA_ADDR_DEFAULT(nmb));
1421                 rxdp->read.hdr_addr = dma;
1422                 rxdp->read.pkt_addr = dma;
1423
1424                 /*
1425                  * Set data length & data buffer address of mbuf.
1426                  */
1427                 data_len = rte_le_to_cpu_16(rxd.wb.upper.length);
1428                 rxm->data_len = data_len;
1429                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
1430
1431                 /*
1432                  * If this is the first buffer of the received packet,
1433                  * set the pointer to the first mbuf of the packet and
1434                  * initialize its context.
1435                  * Otherwise, update the total length and the number of segments
1436                  * of the current scattered packet, and update the pointer to
1437                  * the last mbuf of the current packet.
1438                  */
1439                 if (first_seg == NULL) {
1440                         first_seg = rxm;
1441                         first_seg->pkt_len = data_len;
1442                         first_seg->nb_segs = 1;
1443                 } else {
1444                         first_seg->pkt_len = (uint16_t)(first_seg->pkt_len
1445                                         + data_len);
1446                         first_seg->nb_segs++;
1447                         last_seg->next = rxm;
1448                 }
1449
1450                 /*
1451                  * If this is not the last buffer of the received packet,
1452                  * update the pointer to the last mbuf of the current scattered
1453                  * packet and continue to parse the RX ring.
1454                  */
1455                 if (! (staterr & IXGBE_RXDADV_STAT_EOP)) {
1456                         last_seg = rxm;
1457                         goto next_desc;
1458                 }
1459
1460                 /*
1461                  * This is the last buffer of the received packet.
1462                  * If the CRC is not stripped by the hardware:
1463                  *   - Subtract the CRC length from the total packet length.
1464                  *   - If the last buffer only contains the whole CRC or a part
1465                  *     of it, free the mbuf associated to the last buffer.
1466                  *     If part of the CRC is also contained in the previous
1467                  *     mbuf, subtract the length of that CRC part from the
1468                  *     data length of the previous mbuf.
1469                  */
1470                 rxm->next = NULL;
1471                 if (unlikely(rxq->crc_len > 0)) {
1472                         first_seg->pkt_len -= ETHER_CRC_LEN;
1473                         if (data_len <= ETHER_CRC_LEN) {
1474                                 rte_pktmbuf_free_seg(rxm);
1475                                 first_seg->nb_segs--;
1476                                 last_seg->data_len = (uint16_t)
1477                                         (last_seg->data_len -
1478                                          (ETHER_CRC_LEN - data_len));
1479                                 last_seg->next = NULL;
1480                         } else
1481                                 rxm->data_len =
1482                                         (uint16_t) (data_len - ETHER_CRC_LEN);
1483                 }
1484
1485                 /*
1486                  * Initialize the first mbuf of the returned packet:
1487                  *    - RX port identifier,
1488                  *    - hardware offload data, if any:
1489                  *      - RSS flag & hash,
1490                  *      - IP checksum flag,
1491                  *      - VLAN TCI, if any,
1492                  *      - error flags.
1493                  */
1494                 first_seg->port = rxq->port_id;
1495
1496                 /*
1497                  * The vlan_tci field is only valid when PKT_RX_VLAN_PKT is
1498                  * set in the pkt_flags field.
1499                  */
1500                 first_seg->vlan_tci = rte_le_to_cpu_16(rxd.wb.upper.vlan);
1501                 hlen_type_rss = rte_le_to_cpu_32(rxd.wb.lower.lo_dword.data);
1502                 pkt_flags = rx_desc_hlen_type_rss_to_pkt_flags(hlen_type_rss);
1503                 pkt_flags = (uint16_t)(pkt_flags |
1504                                 rx_desc_status_to_pkt_flags(staterr));
1505                 pkt_flags = (uint16_t)(pkt_flags |
1506                                 rx_desc_error_to_pkt_flags(staterr));
1507                 first_seg->ol_flags = pkt_flags;
1508
1509                 if (likely(pkt_flags & PKT_RX_RSS_HASH))
1510                         first_seg->hash.rss = rxd.wb.lower.hi_dword.rss;
1511                 else if (pkt_flags & PKT_RX_FDIR) {
1512                         first_seg->hash.fdir.hash =
1513                                 (uint16_t)((rxd.wb.lower.hi_dword.csum_ip.csum)
1514                                            & IXGBE_ATR_HASH_MASK);
1515                         first_seg->hash.fdir.id =
1516                                 rxd.wb.lower.hi_dword.csum_ip.ip_id;
1517                 }
1518
1519                 /* Prefetch data of first segment, if configured to do so. */
1520                 rte_packet_prefetch((char *)first_seg->buf_addr +
1521                         first_seg->data_off);
1522
1523                 /*
1524                  * Store the mbuf address into the next entry of the array
1525                  * of returned packets.
1526                  */
1527                 rx_pkts[nb_rx++] = first_seg;
1528
1529                 /*
1530                  * Setup receipt context for a new packet.
1531                  */
1532                 first_seg = NULL;
1533         }
1534
1535         /*
1536          * Record index of the next RX descriptor to probe.
1537          */
1538         rxq->rx_tail = rx_id;
1539
1540         /*
1541          * Save receive context.
1542          */
1543         rxq->pkt_first_seg = first_seg;
1544         rxq->pkt_last_seg = last_seg;
1545
1546         /*
1547          * If the number of free RX descriptors is greater than the RX free
1548          * threshold of the queue, advance the Receive Descriptor Tail (RDT)
1549          * register.
1550          * Update the RDT with the value of the last processed RX descriptor
1551          * minus 1, to guarantee that the RDT register is never equal to the
1552          * RDH register, which creates a "full" ring situtation from the
1553          * hardware point of view...
1554          */
1555         nb_hold = (uint16_t) (nb_hold + rxq->nb_rx_hold);
1556         if (nb_hold > rxq->rx_free_thresh) {
1557                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_tail=%u "
1558                            "nb_hold=%u nb_rx=%u\n",
1559                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
1560                            (unsigned) rx_id, (unsigned) nb_hold,
1561                            (unsigned) nb_rx);
1562                 rx_id = (uint16_t) ((rx_id == 0) ?
1563                                      (rxq->nb_rx_desc - 1) : (rx_id - 1));
1564                 IXGBE_PCI_REG_WRITE(rxq->rdt_reg_addr, rx_id);
1565                 nb_hold = 0;
1566         }
1567         rxq->nb_rx_hold = nb_hold;
1568         return (nb_rx);
1569 }
1570
1571 /*********************************************************************
1572  *
1573  *  Queue management functions
1574  *
1575  **********************************************************************/
1576
1577 /*
1578  * Rings setup and release.
1579  *
1580  * TDBA/RDBA should be aligned on 16 byte boundary. But TDLEN/RDLEN should be
1581  * multiple of 128 bytes. So we align TDBA/RDBA on 128 byte boundary. This will
1582  * also optimize cache line size effect. H/W supports up to cache line size 128.
1583  */
1584 #define IXGBE_ALIGN 128
1585
1586 /*
1587  * Maximum number of Ring Descriptors.
1588  *
1589  * Since RDLEN/TDLEN should be multiple of 128 bytes, the number of ring
1590  * descriptors should meet the following condition:
1591  *      (num_ring_desc * sizeof(rx/tx descriptor)) % 128 == 0
1592  */
1593 #define IXGBE_MIN_RING_DESC 32
1594 #define IXGBE_MAX_RING_DESC 4096
1595
1596 /*
1597  * Create memzone for HW rings. malloc can't be used as the physical address is
1598  * needed. If the memzone is already created, then this function returns a ptr
1599  * to the old one.
1600  */
1601 static const struct rte_memzone *
1602 ring_dma_zone_reserve(struct rte_eth_dev *dev, const char *ring_name,
1603                       uint16_t queue_id, uint32_t ring_size, int socket_id)
1604 {
1605         char z_name[RTE_MEMZONE_NAMESIZE];
1606         const struct rte_memzone *mz;
1607
1608         snprintf(z_name, sizeof(z_name), "%s_%s_%d_%d",
1609                         dev->driver->pci_drv.name, ring_name,
1610                         dev->data->port_id, queue_id);
1611
1612         mz = rte_memzone_lookup(z_name);
1613         if (mz)
1614                 return mz;
1615
1616 #ifdef RTE_LIBRTE_XEN_DOM0
1617         return rte_memzone_reserve_bounded(z_name, ring_size,
1618                 socket_id, 0, IXGBE_ALIGN, RTE_PGSIZE_2M);
1619 #else
1620         return rte_memzone_reserve_aligned(z_name, ring_size,
1621                 socket_id, 0, IXGBE_ALIGN);
1622 #endif
1623 }
1624
1625 static void
1626 ixgbe_tx_queue_release_mbufs(struct igb_tx_queue *txq)
1627 {
1628         unsigned i;
1629
1630         if (txq->sw_ring != NULL) {
1631                 for (i = 0; i < txq->nb_tx_desc; i++) {
1632                         if (txq->sw_ring[i].mbuf != NULL) {
1633                                 rte_pktmbuf_free_seg(txq->sw_ring[i].mbuf);
1634                                 txq->sw_ring[i].mbuf = NULL;
1635                         }
1636                 }
1637         }
1638 }
1639
1640 static void
1641 ixgbe_tx_free_swring(struct igb_tx_queue *txq)
1642 {
1643         if (txq != NULL &&
1644             txq->sw_ring != NULL)
1645                 rte_free(txq->sw_ring);
1646 }
1647
1648 static void
1649 ixgbe_tx_queue_release(struct igb_tx_queue *txq)
1650 {
1651         if (txq != NULL && txq->ops != NULL) {
1652                 txq->ops->release_mbufs(txq);
1653                 txq->ops->free_swring(txq);
1654                 rte_free(txq);
1655         }
1656 }
1657
1658 void
1659 ixgbe_dev_tx_queue_release(void *txq)
1660 {
1661         ixgbe_tx_queue_release(txq);
1662 }
1663
1664 /* (Re)set dynamic igb_tx_queue fields to defaults */
1665 static void
1666 ixgbe_reset_tx_queue(struct igb_tx_queue *txq)
1667 {
1668         static const union ixgbe_adv_tx_desc zeroed_desc = { .read = {
1669                         .buffer_addr = 0}};
1670         struct igb_tx_entry *txe = txq->sw_ring;
1671         uint16_t prev, i;
1672
1673         /* Zero out HW ring memory */
1674         for (i = 0; i < txq->nb_tx_desc; i++) {
1675                 txq->tx_ring[i] = zeroed_desc;
1676         }
1677
1678         /* Initialize SW ring entries */
1679         prev = (uint16_t) (txq->nb_tx_desc - 1);
1680         for (i = 0; i < txq->nb_tx_desc; i++) {
1681                 volatile union ixgbe_adv_tx_desc *txd = &txq->tx_ring[i];
1682                 txd->wb.status = IXGBE_TXD_STAT_DD;
1683                 txe[i].mbuf = NULL;
1684                 txe[i].last_id = i;
1685                 txe[prev].next_id = i;
1686                 prev = i;
1687         }
1688
1689         txq->tx_next_dd = (uint16_t)(txq->tx_rs_thresh - 1);
1690         txq->tx_next_rs = (uint16_t)(txq->tx_rs_thresh - 1);
1691
1692         txq->tx_tail = 0;
1693         txq->nb_tx_used = 0;
1694         /*
1695          * Always allow 1 descriptor to be un-allocated to avoid
1696          * a H/W race condition
1697          */
1698         txq->last_desc_cleaned = (uint16_t)(txq->nb_tx_desc - 1);
1699         txq->nb_tx_free = (uint16_t)(txq->nb_tx_desc - 1);
1700         txq->ctx_curr = 0;
1701         memset((void*)&txq->ctx_cache, 0,
1702                 IXGBE_CTX_NUM * sizeof(struct ixgbe_advctx_info));
1703 }
1704
1705 static struct ixgbe_txq_ops def_txq_ops = {
1706         .release_mbufs = ixgbe_tx_queue_release_mbufs,
1707         .free_swring = ixgbe_tx_free_swring,
1708         .reset = ixgbe_reset_tx_queue,
1709 };
1710
1711 int
1712 ixgbe_dev_tx_queue_setup(struct rte_eth_dev *dev,
1713                          uint16_t queue_idx,
1714                          uint16_t nb_desc,
1715                          unsigned int socket_id,
1716                          const struct rte_eth_txconf *tx_conf)
1717 {
1718         const struct rte_memzone *tz;
1719         struct igb_tx_queue *txq;
1720         struct ixgbe_hw     *hw;
1721         uint16_t tx_rs_thresh, tx_free_thresh;
1722
1723         PMD_INIT_FUNC_TRACE();
1724         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1725
1726         /*
1727          * Validate number of transmit descriptors.
1728          * It must not exceed hardware maximum, and must be multiple
1729          * of IXGBE_ALIGN.
1730          */
1731         if (((nb_desc * sizeof(union ixgbe_adv_tx_desc)) % IXGBE_ALIGN) != 0 ||
1732             (nb_desc > IXGBE_MAX_RING_DESC) ||
1733             (nb_desc < IXGBE_MIN_RING_DESC)) {
1734                 return -EINVAL;
1735         }
1736
1737         /*
1738          * The following two parameters control the setting of the RS bit on
1739          * transmit descriptors.
1740          * TX descriptors will have their RS bit set after txq->tx_rs_thresh
1741          * descriptors have been used.
1742          * The TX descriptor ring will be cleaned after txq->tx_free_thresh
1743          * descriptors are used or if the number of descriptors required
1744          * to transmit a packet is greater than the number of free TX
1745          * descriptors.
1746          * The following constraints must be satisfied:
1747          *  tx_rs_thresh must be greater than 0.
1748          *  tx_rs_thresh must be less than the size of the ring minus 2.
1749          *  tx_rs_thresh must be less than or equal to tx_free_thresh.
1750          *  tx_rs_thresh must be a divisor of the ring size.
1751          *  tx_free_thresh must be greater than 0.
1752          *  tx_free_thresh must be less than the size of the ring minus 3.
1753          * One descriptor in the TX ring is used as a sentinel to avoid a
1754          * H/W race condition, hence the maximum threshold constraints.
1755          * When set to zero use default values.
1756          */
1757         tx_rs_thresh = (uint16_t)((tx_conf->tx_rs_thresh) ?
1758                         tx_conf->tx_rs_thresh : DEFAULT_TX_RS_THRESH);
1759         tx_free_thresh = (uint16_t)((tx_conf->tx_free_thresh) ?
1760                         tx_conf->tx_free_thresh : DEFAULT_TX_FREE_THRESH);
1761         if (tx_rs_thresh >= (nb_desc - 2)) {
1762                 RTE_LOG(ERR, PMD, "tx_rs_thresh must be less than the number "
1763                         "of TX descriptors minus 2. (tx_rs_thresh=%u port=%d "
1764                                 "queue=%d)\n", (unsigned int)tx_rs_thresh,
1765                                 (int)dev->data->port_id, (int)queue_idx);
1766                 return -(EINVAL);
1767         }
1768         if (tx_free_thresh >= (nb_desc - 3)) {
1769                 RTE_LOG(ERR, PMD, "tx_rs_thresh must be less than the "
1770                         "tx_free_thresh must be less than the number of TX "
1771                         "descriptors minus 3. (tx_free_thresh=%u port=%d "
1772                                 "queue=%d)\n", (unsigned int)tx_free_thresh,
1773                                 (int)dev->data->port_id, (int)queue_idx);
1774                 return -(EINVAL);
1775         }
1776         if (tx_rs_thresh > tx_free_thresh) {
1777                 RTE_LOG(ERR, PMD, "tx_rs_thresh must be less than or equal to "
1778                         "tx_free_thresh. (tx_free_thresh=%u tx_rs_thresh=%u "
1779                         "port=%d queue=%d)\n", (unsigned int)tx_free_thresh,
1780                         (unsigned int)tx_rs_thresh, (int)dev->data->port_id,
1781                                                         (int)queue_idx);
1782                 return -(EINVAL);
1783         }
1784         if ((nb_desc % tx_rs_thresh) != 0) {
1785                 RTE_LOG(ERR, PMD, "tx_rs_thresh must be a divisor of the "
1786                         "number of TX descriptors. (tx_rs_thresh=%u port=%d "
1787                                 "queue=%d)\n", (unsigned int)tx_rs_thresh,
1788                                 (int)dev->data->port_id, (int)queue_idx);
1789                 return -(EINVAL);
1790         }
1791
1792         /*
1793          * If rs_bit_thresh is greater than 1, then TX WTHRESH should be
1794          * set to 0. If WTHRESH is greater than zero, the RS bit is ignored
1795          * by the NIC and all descriptors are written back after the NIC
1796          * accumulates WTHRESH descriptors.
1797          */
1798         if ((tx_rs_thresh > 1) && (tx_conf->tx_thresh.wthresh != 0)) {
1799                 RTE_LOG(ERR, PMD, "TX WTHRESH must be set to 0 if "
1800                         "tx_rs_thresh is greater than 1. (tx_rs_thresh=%u "
1801                         "port=%d queue=%d)\n", (unsigned int)tx_rs_thresh,
1802                                 (int)dev->data->port_id, (int)queue_idx);
1803                 return -(EINVAL);
1804         }
1805
1806         /* Free memory prior to re-allocation if needed... */
1807         if (dev->data->tx_queues[queue_idx] != NULL) {
1808                 ixgbe_tx_queue_release(dev->data->tx_queues[queue_idx]);
1809                 dev->data->tx_queues[queue_idx] = NULL;
1810         }
1811
1812         /* First allocate the tx queue data structure */
1813         txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct igb_tx_queue),
1814                                  CACHE_LINE_SIZE, socket_id);
1815         if (txq == NULL)
1816                 return (-ENOMEM);
1817
1818         /*
1819          * Allocate TX ring hardware descriptors. A memzone large enough to
1820          * handle the maximum ring size is allocated in order to allow for
1821          * resizing in later calls to the queue setup function.
1822          */
1823         tz = ring_dma_zone_reserve(dev, "tx_ring", queue_idx,
1824                         sizeof(union ixgbe_adv_tx_desc) * IXGBE_MAX_RING_DESC,
1825                         socket_id);
1826         if (tz == NULL) {
1827                 ixgbe_tx_queue_release(txq);
1828                 return (-ENOMEM);
1829         }
1830
1831         txq->nb_tx_desc = nb_desc;
1832         txq->tx_rs_thresh = tx_rs_thresh;
1833         txq->tx_free_thresh = tx_free_thresh;
1834         txq->pthresh = tx_conf->tx_thresh.pthresh;
1835         txq->hthresh = tx_conf->tx_thresh.hthresh;
1836         txq->wthresh = tx_conf->tx_thresh.wthresh;
1837         txq->queue_id = queue_idx;
1838         txq->reg_idx = (uint16_t)((RTE_ETH_DEV_SRIOV(dev).active == 0) ?
1839                 queue_idx : RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx + queue_idx);
1840         txq->port_id = dev->data->port_id;
1841         txq->txq_flags = tx_conf->txq_flags;
1842         txq->ops = &def_txq_ops;
1843         txq->start_tx_per_q = tx_conf->start_tx_per_q;
1844
1845         /*
1846          * Modification to set VFTDT for virtual function if vf is detected
1847          */
1848         if (hw->mac.type == ixgbe_mac_82599_vf)
1849                 txq->tdt_reg_addr = IXGBE_PCI_REG_ADDR(hw, IXGBE_VFTDT(queue_idx));
1850         else
1851                 txq->tdt_reg_addr = IXGBE_PCI_REG_ADDR(hw, IXGBE_TDT(txq->reg_idx));
1852 #ifndef RTE_LIBRTE_XEN_DOM0
1853         txq->tx_ring_phys_addr = (uint64_t) tz->phys_addr;
1854 #else
1855         txq->tx_ring_phys_addr = rte_mem_phy2mch(tz->memseg_id, tz->phys_addr);
1856 #endif
1857         txq->tx_ring = (union ixgbe_adv_tx_desc *) tz->addr;
1858
1859         /* Allocate software ring */
1860         txq->sw_ring = rte_zmalloc_socket("txq->sw_ring",
1861                                 sizeof(struct igb_tx_entry) * nb_desc,
1862                                 CACHE_LINE_SIZE, socket_id);
1863         if (txq->sw_ring == NULL) {
1864                 ixgbe_tx_queue_release(txq);
1865                 return (-ENOMEM);
1866         }
1867         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64"\n",
1868                      txq->sw_ring, txq->tx_ring, txq->tx_ring_phys_addr);
1869
1870         /* Use a simple Tx queue (no offloads, no multi segs) if possible */
1871         if (((txq->txq_flags & IXGBE_SIMPLE_FLAGS) == IXGBE_SIMPLE_FLAGS) &&
1872             (txq->tx_rs_thresh >= RTE_PMD_IXGBE_TX_MAX_BURST)) {
1873                 PMD_INIT_LOG(INFO, "Using simple tx code path\n");
1874 #ifdef RTE_IXGBE_INC_VECTOR
1875                 if (txq->tx_rs_thresh <= RTE_IXGBE_TX_MAX_FREE_BUF_SZ &&
1876                     ixgbe_txq_vec_setup(txq) == 0) {
1877                         PMD_INIT_LOG(INFO, "Vector tx enabled.\n");
1878                         dev->tx_pkt_burst = ixgbe_xmit_pkts_vec;
1879                 }
1880                 else
1881 #endif
1882                         dev->tx_pkt_burst = ixgbe_xmit_pkts_simple;
1883         } else {
1884                 PMD_INIT_LOG(INFO, "Using full-featured tx code path\n");
1885                 PMD_INIT_LOG(INFO, " - txq_flags = %lx [IXGBE_SIMPLE_FLAGS=%lx]\n", (long unsigned)txq->txq_flags, (long unsigned)IXGBE_SIMPLE_FLAGS);
1886                 PMD_INIT_LOG(INFO, " - tx_rs_thresh = %lu [RTE_PMD_IXGBE_TX_MAX_BURST=%lu]\n", (long unsigned)txq->tx_rs_thresh, (long unsigned)RTE_PMD_IXGBE_TX_MAX_BURST);
1887                 dev->tx_pkt_burst = ixgbe_xmit_pkts;
1888         }
1889
1890         txq->ops->reset(txq);
1891
1892         dev->data->tx_queues[queue_idx] = txq;
1893
1894
1895         return (0);
1896 }
1897
1898 static void
1899 ixgbe_rx_queue_release_mbufs(struct igb_rx_queue *rxq)
1900 {
1901         unsigned i;
1902
1903         if (rxq->sw_ring != NULL) {
1904                 for (i = 0; i < rxq->nb_rx_desc; i++) {
1905                         if (rxq->sw_ring[i].mbuf != NULL) {
1906                                 rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
1907                                 rxq->sw_ring[i].mbuf = NULL;
1908                         }
1909                 }
1910 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1911                 if (rxq->rx_nb_avail) {
1912                         for (i = 0; i < rxq->rx_nb_avail; ++i) {
1913                                 struct rte_mbuf *mb;
1914                                 mb = rxq->rx_stage[rxq->rx_next_avail + i];
1915                                 rte_pktmbuf_free_seg(mb);
1916                         }
1917                         rxq->rx_nb_avail = 0;
1918                 }
1919 #endif
1920         }
1921 }
1922
1923 static void
1924 ixgbe_rx_queue_release(struct igb_rx_queue *rxq)
1925 {
1926         if (rxq != NULL) {
1927                 ixgbe_rx_queue_release_mbufs(rxq);
1928                 rte_free(rxq->sw_ring);
1929                 rte_free(rxq);
1930         }
1931 }
1932
1933 void
1934 ixgbe_dev_rx_queue_release(void *rxq)
1935 {
1936         ixgbe_rx_queue_release(rxq);
1937 }
1938
1939 /*
1940  * Check if Rx Burst Bulk Alloc function can be used.
1941  * Return
1942  *        0: the preconditions are satisfied and the bulk allocation function
1943  *           can be used.
1944  *  -EINVAL: the preconditions are NOT satisfied and the default Rx burst
1945  *           function must be used.
1946  */
1947 static inline int
1948 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1949 check_rx_burst_bulk_alloc_preconditions(struct igb_rx_queue *rxq)
1950 #else
1951 check_rx_burst_bulk_alloc_preconditions(__rte_unused struct igb_rx_queue *rxq)
1952 #endif
1953 {
1954         int ret = 0;
1955
1956         /*
1957          * Make sure the following pre-conditions are satisfied:
1958          *   rxq->rx_free_thresh >= RTE_PMD_IXGBE_RX_MAX_BURST
1959          *   rxq->rx_free_thresh < rxq->nb_rx_desc
1960          *   (rxq->nb_rx_desc % rxq->rx_free_thresh) == 0
1961          *   rxq->nb_rx_desc<(IXGBE_MAX_RING_DESC-RTE_PMD_IXGBE_RX_MAX_BURST)
1962          * Scattered packets are not supported.  This should be checked
1963          * outside of this function.
1964          */
1965 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1966         if (! (rxq->rx_free_thresh >= RTE_PMD_IXGBE_RX_MAX_BURST))
1967                 ret = -EINVAL;
1968         else if (! (rxq->rx_free_thresh < rxq->nb_rx_desc))
1969                 ret = -EINVAL;
1970         else if (! ((rxq->nb_rx_desc % rxq->rx_free_thresh) == 0))
1971                 ret = -EINVAL;
1972         else if (! (rxq->nb_rx_desc <
1973                (IXGBE_MAX_RING_DESC - RTE_PMD_IXGBE_RX_MAX_BURST)))
1974                 ret = -EINVAL;
1975 #else
1976         ret = -EINVAL;
1977 #endif
1978
1979         return ret;
1980 }
1981
1982 /* Reset dynamic igb_rx_queue fields back to defaults */
1983 static void
1984 ixgbe_reset_rx_queue(struct igb_rx_queue *rxq)
1985 {
1986         static const union ixgbe_adv_rx_desc zeroed_desc = { .read = {
1987                         .pkt_addr = 0}};
1988         unsigned i;
1989         uint16_t len;
1990
1991         /*
1992          * By default, the Rx queue setup function allocates enough memory for
1993          * IXGBE_MAX_RING_DESC.  The Rx Burst bulk allocation function requires
1994          * extra memory at the end of the descriptor ring to be zero'd out. A
1995          * pre-condition for using the Rx burst bulk alloc function is that the
1996          * number of descriptors is less than or equal to
1997          * (IXGBE_MAX_RING_DESC - RTE_PMD_IXGBE_RX_MAX_BURST). Check all the
1998          * constraints here to see if we need to zero out memory after the end
1999          * of the H/W descriptor ring.
2000          */
2001 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2002         if (check_rx_burst_bulk_alloc_preconditions(rxq) == 0)
2003                 /* zero out extra memory */
2004                 len = (uint16_t)(rxq->nb_rx_desc + RTE_PMD_IXGBE_RX_MAX_BURST);
2005         else
2006 #endif
2007                 /* do not zero out extra memory */
2008                 len = rxq->nb_rx_desc;
2009
2010         /*
2011          * Zero out HW ring memory. Zero out extra memory at the end of
2012          * the H/W ring so look-ahead logic in Rx Burst bulk alloc function
2013          * reads extra memory as zeros.
2014          */
2015         for (i = 0; i < len; i++) {
2016                 rxq->rx_ring[i] = zeroed_desc;
2017         }
2018
2019 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2020         /*
2021          * initialize extra software ring entries. Space for these extra
2022          * entries is always allocated
2023          */
2024         memset(&rxq->fake_mbuf, 0x0, sizeof(rxq->fake_mbuf));
2025         for (i = 0; i < RTE_PMD_IXGBE_RX_MAX_BURST; ++i) {
2026                 rxq->sw_ring[rxq->nb_rx_desc + i].mbuf = &rxq->fake_mbuf;
2027         }
2028
2029         rxq->rx_nb_avail = 0;
2030         rxq->rx_next_avail = 0;
2031         rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1);
2032 #endif /* RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC */
2033         rxq->rx_tail = 0;
2034         rxq->nb_rx_hold = 0;
2035         rxq->pkt_first_seg = NULL;
2036         rxq->pkt_last_seg = NULL;
2037 }
2038
2039 int
2040 ixgbe_dev_rx_queue_setup(struct rte_eth_dev *dev,
2041                          uint16_t queue_idx,
2042                          uint16_t nb_desc,
2043                          unsigned int socket_id,
2044                          const struct rte_eth_rxconf *rx_conf,
2045                          struct rte_mempool *mp)
2046 {
2047         const struct rte_memzone *rz;
2048         struct igb_rx_queue *rxq;
2049         struct ixgbe_hw     *hw;
2050         int use_def_burst_func = 1;
2051         uint16_t len;
2052
2053         PMD_INIT_FUNC_TRACE();
2054         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2055
2056         /*
2057          * Validate number of receive descriptors.
2058          * It must not exceed hardware maximum, and must be multiple
2059          * of IXGBE_ALIGN.
2060          */
2061         if (((nb_desc * sizeof(union ixgbe_adv_rx_desc)) % IXGBE_ALIGN) != 0 ||
2062             (nb_desc > IXGBE_MAX_RING_DESC) ||
2063             (nb_desc < IXGBE_MIN_RING_DESC)) {
2064                 return (-EINVAL);
2065         }
2066
2067         /* Free memory prior to re-allocation if needed... */
2068         if (dev->data->rx_queues[queue_idx] != NULL) {
2069                 ixgbe_rx_queue_release(dev->data->rx_queues[queue_idx]);
2070                 dev->data->rx_queues[queue_idx] = NULL;
2071         }
2072
2073         /* First allocate the rx queue data structure */
2074         rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct igb_rx_queue),
2075                                  CACHE_LINE_SIZE, socket_id);
2076         if (rxq == NULL)
2077                 return (-ENOMEM);
2078         rxq->mb_pool = mp;
2079         rxq->nb_rx_desc = nb_desc;
2080         rxq->rx_free_thresh = rx_conf->rx_free_thresh;
2081         rxq->queue_id = queue_idx;
2082         rxq->reg_idx = (uint16_t)((RTE_ETH_DEV_SRIOV(dev).active == 0) ?
2083                 queue_idx : RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx + queue_idx);
2084         rxq->port_id = dev->data->port_id;
2085         rxq->crc_len = (uint8_t) ((dev->data->dev_conf.rxmode.hw_strip_crc) ?
2086                                                         0 : ETHER_CRC_LEN);
2087         rxq->drop_en = rx_conf->rx_drop_en;
2088         rxq->start_rx_per_q = rx_conf->start_rx_per_q;
2089
2090         /*
2091          * Allocate RX ring hardware descriptors. A memzone large enough to
2092          * handle the maximum ring size is allocated in order to allow for
2093          * resizing in later calls to the queue setup function.
2094          */
2095         rz = ring_dma_zone_reserve(dev, "rx_ring", queue_idx,
2096                                    RX_RING_SZ, socket_id);
2097         if (rz == NULL) {
2098                 ixgbe_rx_queue_release(rxq);
2099                 return (-ENOMEM);
2100         }
2101
2102         /*
2103          * Zero init all the descriptors in the ring.
2104          */
2105         memset (rz->addr, 0, RX_RING_SZ);
2106
2107         /*
2108          * Modified to setup VFRDT for Virtual Function
2109          */
2110         if (hw->mac.type == ixgbe_mac_82599_vf) {
2111                 rxq->rdt_reg_addr =
2112                         IXGBE_PCI_REG_ADDR(hw, IXGBE_VFRDT(queue_idx));
2113                 rxq->rdh_reg_addr =
2114                         IXGBE_PCI_REG_ADDR(hw, IXGBE_VFRDH(queue_idx));
2115         }
2116         else {
2117                 rxq->rdt_reg_addr =
2118                         IXGBE_PCI_REG_ADDR(hw, IXGBE_RDT(rxq->reg_idx));
2119                 rxq->rdh_reg_addr =
2120                         IXGBE_PCI_REG_ADDR(hw, IXGBE_RDH(rxq->reg_idx));
2121         }
2122 #ifndef RTE_LIBRTE_XEN_DOM0
2123         rxq->rx_ring_phys_addr = (uint64_t) rz->phys_addr;
2124 #else
2125         rxq->rx_ring_phys_addr = rte_mem_phy2mch(rz->memseg_id, rz->phys_addr);
2126 #endif
2127         rxq->rx_ring = (union ixgbe_adv_rx_desc *) rz->addr;
2128
2129         /*
2130          * Allocate software ring. Allow for space at the end of the
2131          * S/W ring to make sure look-ahead logic in bulk alloc Rx burst
2132          * function does not access an invalid memory region.
2133          */
2134 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2135         len = (uint16_t)(nb_desc + RTE_PMD_IXGBE_RX_MAX_BURST);
2136 #else
2137         len = nb_desc;
2138 #endif
2139         rxq->sw_ring = rte_zmalloc_socket("rxq->sw_ring",
2140                                           sizeof(struct igb_rx_entry) * len,
2141                                           CACHE_LINE_SIZE, socket_id);
2142         if (rxq->sw_ring == NULL) {
2143                 ixgbe_rx_queue_release(rxq);
2144                 return (-ENOMEM);
2145         }
2146         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64"\n",
2147                      rxq->sw_ring, rxq->rx_ring, rxq->rx_ring_phys_addr);
2148
2149         /*
2150          * Certain constraints must be met in order to use the bulk buffer
2151          * allocation Rx burst function.
2152          */
2153         use_def_burst_func = check_rx_burst_bulk_alloc_preconditions(rxq);
2154
2155         /* Check if pre-conditions are satisfied, and no Scattered Rx */
2156         if (!use_def_burst_func && !dev->data->scattered_rx) {
2157 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2158                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions are "
2159                              "satisfied. Rx Burst Bulk Alloc function will be "
2160                              "used on port=%d, queue=%d.\n",
2161                              rxq->port_id, rxq->queue_id);
2162                 dev->rx_pkt_burst = ixgbe_recv_pkts_bulk_alloc;
2163 #ifdef RTE_IXGBE_INC_VECTOR
2164                 if (!ixgbe_rx_vec_condition_check(dev)) {
2165                         PMD_INIT_LOG(INFO, "Vector rx enabled, please make "
2166                                      "sure RX burst size no less than 32.\n");
2167                         ixgbe_rxq_vec_setup(rxq);
2168                         dev->rx_pkt_burst = ixgbe_recv_pkts_vec;
2169                 }
2170 #endif
2171 #endif
2172         } else {
2173                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions "
2174                              "are not satisfied, Scattered Rx is requested, "
2175                              "or RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC is not "
2176                              "enabled (port=%d, queue=%d).\n",
2177                              rxq->port_id, rxq->queue_id);
2178         }
2179         dev->data->rx_queues[queue_idx] = rxq;
2180
2181         ixgbe_reset_rx_queue(rxq);
2182
2183         return 0;
2184 }
2185
2186 uint32_t
2187 ixgbe_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
2188 {
2189 #define IXGBE_RXQ_SCAN_INTERVAL 4
2190         volatile union ixgbe_adv_rx_desc *rxdp;
2191         struct igb_rx_queue *rxq;
2192         uint32_t desc = 0;
2193
2194         if (rx_queue_id >= dev->data->nb_rx_queues) {
2195                 PMD_RX_LOG(ERR, "Invalid RX queue id=%d\n", rx_queue_id);
2196                 return 0;
2197         }
2198
2199         rxq = dev->data->rx_queues[rx_queue_id];
2200         rxdp = &(rxq->rx_ring[rxq->rx_tail]);
2201
2202         while ((desc < rxq->nb_rx_desc) &&
2203                 (rxdp->wb.upper.status_error & IXGBE_RXDADV_STAT_DD)) {
2204                 desc += IXGBE_RXQ_SCAN_INTERVAL;
2205                 rxdp += IXGBE_RXQ_SCAN_INTERVAL;
2206                 if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
2207                         rxdp = &(rxq->rx_ring[rxq->rx_tail +
2208                                 desc - rxq->nb_rx_desc]);
2209         }
2210
2211         return desc;
2212 }
2213
2214 int
2215 ixgbe_dev_rx_descriptor_done(void *rx_queue, uint16_t offset)
2216 {
2217         volatile union ixgbe_adv_rx_desc *rxdp;
2218         struct igb_rx_queue *rxq = rx_queue;
2219         uint32_t desc;
2220
2221         if (unlikely(offset >= rxq->nb_rx_desc))
2222                 return 0;
2223         desc = rxq->rx_tail + offset;
2224         if (desc >= rxq->nb_rx_desc)
2225                 desc -= rxq->nb_rx_desc;
2226
2227         rxdp = &rxq->rx_ring[desc];
2228         return !!(rxdp->wb.upper.status_error & IXGBE_RXDADV_STAT_DD);
2229 }
2230
2231 void
2232 ixgbe_dev_clear_queues(struct rte_eth_dev *dev)
2233 {
2234         unsigned i;
2235
2236         PMD_INIT_FUNC_TRACE();
2237
2238         for (i = 0; i < dev->data->nb_tx_queues; i++) {
2239                 struct igb_tx_queue *txq = dev->data->tx_queues[i];
2240                 if (txq != NULL) {
2241                         txq->ops->release_mbufs(txq);
2242                         txq->ops->reset(txq);
2243                 }
2244         }
2245
2246         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2247                 struct igb_rx_queue *rxq = dev->data->rx_queues[i];
2248                 if (rxq != NULL) {
2249                         ixgbe_rx_queue_release_mbufs(rxq);
2250                         ixgbe_reset_rx_queue(rxq);
2251                 }
2252         }
2253 }
2254
2255 /*********************************************************************
2256  *
2257  *  Device RX/TX init functions
2258  *
2259  **********************************************************************/
2260
2261 /**
2262  * Receive Side Scaling (RSS)
2263  * See section 7.1.2.8 in the following document:
2264  *     "Intel 82599 10 GbE Controller Datasheet" - Revision 2.1 October 2009
2265  *
2266  * Principles:
2267  * The source and destination IP addresses of the IP header and the source
2268  * and destination ports of TCP/UDP headers, if any, of received packets are
2269  * hashed against a configurable random key to compute a 32-bit RSS hash result.
2270  * The seven (7) LSBs of the 32-bit hash result are used as an index into a
2271  * 128-entry redirection table (RETA).  Each entry of the RETA provides a 3-bit
2272  * RSS output index which is used as the RX queue index where to store the
2273  * received packets.
2274  * The following output is supplied in the RX write-back descriptor:
2275  *     - 32-bit result of the Microsoft RSS hash function,
2276  *     - 4-bit RSS type field.
2277  */
2278
2279 /*
2280  * RSS random key supplied in section 7.1.2.8.3 of the Intel 82599 datasheet.
2281  * Used as the default key.
2282  */
2283 static uint8_t rss_intel_key[40] = {
2284         0x6D, 0x5A, 0x56, 0xDA, 0x25, 0x5B, 0x0E, 0xC2,
2285         0x41, 0x67, 0x25, 0x3D, 0x43, 0xA3, 0x8F, 0xB0,
2286         0xD0, 0xCA, 0x2B, 0xCB, 0xAE, 0x7B, 0x30, 0xB4,
2287         0x77, 0xCB, 0x2D, 0xA3, 0x80, 0x30, 0xF2, 0x0C,
2288         0x6A, 0x42, 0xB7, 0x3B, 0xBE, 0xAC, 0x01, 0xFA,
2289 };
2290
2291 static void
2292 ixgbe_rss_disable(struct rte_eth_dev *dev)
2293 {
2294         struct ixgbe_hw *hw;
2295         uint32_t mrqc;
2296
2297         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2298         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2299         mrqc &= ~IXGBE_MRQC_RSSEN;
2300         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2301 }
2302
2303 static void
2304 ixgbe_hw_rss_hash_set(struct ixgbe_hw *hw, struct rte_eth_rss_conf *rss_conf)
2305 {
2306         uint8_t  *hash_key;
2307         uint32_t mrqc;
2308         uint32_t rss_key;
2309         uint64_t rss_hf;
2310         uint16_t i;
2311
2312         hash_key = rss_conf->rss_key;
2313         if (hash_key != NULL) {
2314                 /* Fill in RSS hash key */
2315                 for (i = 0; i < 10; i++) {
2316                         rss_key  = hash_key[(i * 4)];
2317                         rss_key |= hash_key[(i * 4) + 1] << 8;
2318                         rss_key |= hash_key[(i * 4) + 2] << 16;
2319                         rss_key |= hash_key[(i * 4) + 3] << 24;
2320                         IXGBE_WRITE_REG_ARRAY(hw, IXGBE_RSSRK(0), i, rss_key);
2321                 }
2322         }
2323
2324         /* Set configured hashing protocols in MRQC register */
2325         rss_hf = rss_conf->rss_hf;
2326         mrqc = IXGBE_MRQC_RSSEN; /* Enable RSS */
2327         if (rss_hf & ETH_RSS_IPV4)
2328                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4;
2329         if (rss_hf & ETH_RSS_IPV4_TCP)
2330                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_TCP;
2331         if (rss_hf & ETH_RSS_IPV6)
2332                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6;
2333         if (rss_hf & ETH_RSS_IPV6_EX)
2334                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX;
2335         if (rss_hf & ETH_RSS_IPV6_TCP)
2336                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2337         if (rss_hf & ETH_RSS_IPV6_TCP_EX)
2338                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP;
2339         if (rss_hf & ETH_RSS_IPV4_UDP)
2340                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2341         if (rss_hf & ETH_RSS_IPV6_UDP)
2342                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2343         if (rss_hf & ETH_RSS_IPV6_UDP_EX)
2344                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP;
2345         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2346 }
2347
2348 int
2349 ixgbe_dev_rss_hash_update(struct rte_eth_dev *dev,
2350                           struct rte_eth_rss_conf *rss_conf)
2351 {
2352         struct ixgbe_hw *hw;
2353         uint32_t mrqc;
2354         uint64_t rss_hf;
2355
2356         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2357
2358         /*
2359          * Excerpt from section 7.1.2.8 Receive-Side Scaling (RSS):
2360          *     "RSS enabling cannot be done dynamically while it must be
2361          *      preceded by a software reset"
2362          * Before changing anything, first check that the update RSS operation
2363          * does not attempt to disable RSS, if RSS was enabled at
2364          * initialization time, or does not attempt to enable RSS, if RSS was
2365          * disabled at initialization time.
2366          */
2367         rss_hf = rss_conf->rss_hf & IXGBE_RSS_OFFLOAD_ALL;
2368         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2369         if (!(mrqc & IXGBE_MRQC_RSSEN)) { /* RSS disabled */
2370                 if (rss_hf != 0) /* Enable RSS */
2371                         return -(EINVAL);
2372                 return 0; /* Nothing to do */
2373         }
2374         /* RSS enabled */
2375         if (rss_hf == 0) /* Disable RSS */
2376                 return -(EINVAL);
2377         ixgbe_hw_rss_hash_set(hw, rss_conf);
2378         return 0;
2379 }
2380
2381 int
2382 ixgbe_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2383                             struct rte_eth_rss_conf *rss_conf)
2384 {
2385         struct ixgbe_hw *hw;
2386         uint8_t *hash_key;
2387         uint32_t mrqc;
2388         uint32_t rss_key;
2389         uint64_t rss_hf;
2390         uint16_t i;
2391
2392         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2393         hash_key = rss_conf->rss_key;
2394         if (hash_key != NULL) {
2395                 /* Return RSS hash key */
2396                 for (i = 0; i < 10; i++) {
2397                         rss_key = IXGBE_READ_REG_ARRAY(hw, IXGBE_RSSRK(0), i);
2398                         hash_key[(i * 4)] = rss_key & 0x000000FF;
2399                         hash_key[(i * 4) + 1] = (rss_key >> 8) & 0x000000FF;
2400                         hash_key[(i * 4) + 2] = (rss_key >> 16) & 0x000000FF;
2401                         hash_key[(i * 4) + 3] = (rss_key >> 24) & 0x000000FF;
2402                 }
2403         }
2404
2405         /* Get RSS functions configured in MRQC register */
2406         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2407         if ((mrqc & IXGBE_MRQC_RSSEN) == 0) { /* RSS is disabled */
2408                 rss_conf->rss_hf = 0;
2409                 return 0;
2410         }
2411         rss_hf = 0;
2412         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4)
2413                 rss_hf |= ETH_RSS_IPV4;
2414         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4_TCP)
2415                 rss_hf |= ETH_RSS_IPV4_TCP;
2416         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6)
2417                 rss_hf |= ETH_RSS_IPV6;
2418         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX)
2419                 rss_hf |= ETH_RSS_IPV6_EX;
2420         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_TCP)
2421                 rss_hf |= ETH_RSS_IPV6_TCP;
2422         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP)
2423                 rss_hf |= ETH_RSS_IPV6_TCP_EX;
2424         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4_UDP)
2425                 rss_hf |= ETH_RSS_IPV4_UDP;
2426         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_UDP)
2427                 rss_hf |= ETH_RSS_IPV6_UDP;
2428         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP)
2429                 rss_hf |= ETH_RSS_IPV6_UDP_EX;
2430         rss_conf->rss_hf = rss_hf;
2431         return 0;
2432 }
2433
2434 static void
2435 ixgbe_rss_configure(struct rte_eth_dev *dev)
2436 {
2437         struct rte_eth_rss_conf rss_conf;
2438         struct ixgbe_hw *hw;
2439         uint32_t reta;
2440         uint16_t i;
2441         uint16_t j;
2442
2443         PMD_INIT_FUNC_TRACE();
2444         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2445
2446         /*
2447          * Fill in redirection table
2448          * The byte-swap is needed because NIC registers are in
2449          * little-endian order.
2450          */
2451         reta = 0;
2452         for (i = 0, j = 0; i < 128; i++, j++) {
2453                 if (j == dev->data->nb_rx_queues)
2454                         j = 0;
2455                 reta = (reta << 8) | j;
2456                 if ((i & 3) == 3)
2457                         IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2),
2458                                         rte_bswap32(reta));
2459         }
2460
2461         /*
2462          * Configure the RSS key and the RSS protocols used to compute
2463          * the RSS hash of input packets.
2464          */
2465         rss_conf = dev->data->dev_conf.rx_adv_conf.rss_conf;
2466         if ((rss_conf.rss_hf & IXGBE_RSS_OFFLOAD_ALL) == 0) {
2467                 ixgbe_rss_disable(dev);
2468                 return;
2469         }
2470         if (rss_conf.rss_key == NULL)
2471                 rss_conf.rss_key = rss_intel_key; /* Default hash key */
2472         ixgbe_hw_rss_hash_set(hw, &rss_conf);
2473 }
2474
2475 #define NUM_VFTA_REGISTERS 128
2476 #define NIC_RX_BUFFER_SIZE 0x200
2477
2478 static void
2479 ixgbe_vmdq_dcb_configure(struct rte_eth_dev *dev)
2480 {
2481         struct rte_eth_vmdq_dcb_conf *cfg;
2482         struct ixgbe_hw *hw;
2483         enum rte_eth_nb_pools num_pools;
2484         uint32_t mrqc, vt_ctl, queue_mapping, vlanctrl;
2485         uint16_t pbsize;
2486         uint8_t nb_tcs; /* number of traffic classes */
2487         int i;
2488
2489         PMD_INIT_FUNC_TRACE();
2490         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2491         cfg = &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
2492         num_pools = cfg->nb_queue_pools;
2493         /* Check we have a valid number of pools */
2494         if (num_pools != ETH_16_POOLS && num_pools != ETH_32_POOLS) {
2495                 ixgbe_rss_disable(dev);
2496                 return;
2497         }
2498         /* 16 pools -> 8 traffic classes, 32 pools -> 4 traffic classes */
2499         nb_tcs = (uint8_t)(ETH_VMDQ_DCB_NUM_QUEUES / (int)num_pools);
2500
2501         /*
2502          * RXPBSIZE
2503          * split rx buffer up into sections, each for 1 traffic class
2504          */
2505         pbsize = (uint16_t)(NIC_RX_BUFFER_SIZE / nb_tcs);
2506         for (i = 0 ; i < nb_tcs; i++) {
2507                 uint32_t rxpbsize = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
2508                 rxpbsize &= (~(0x3FF << IXGBE_RXPBSIZE_SHIFT));
2509                 /* clear 10 bits. */
2510                 rxpbsize |= (pbsize << IXGBE_RXPBSIZE_SHIFT); /* set value */
2511                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2512         }
2513         /* zero alloc all unused TCs */
2514         for (i = nb_tcs; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2515                 uint32_t rxpbsize = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
2516                 rxpbsize &= (~( 0x3FF << IXGBE_RXPBSIZE_SHIFT ));
2517                 /* clear 10 bits. */
2518                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2519         }
2520
2521         /* MRQC: enable vmdq and dcb */
2522         mrqc = ((num_pools == ETH_16_POOLS) ? \
2523                 IXGBE_MRQC_VMDQRT8TCEN : IXGBE_MRQC_VMDQRT4TCEN );
2524         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2525
2526         /* PFVTCTL: turn on virtualisation and set the default pool */
2527         vt_ctl = IXGBE_VT_CTL_VT_ENABLE | IXGBE_VT_CTL_REPLEN;
2528         if (cfg->enable_default_pool) {
2529                 vt_ctl |= (cfg->default_pool << IXGBE_VT_CTL_POOL_SHIFT);
2530         } else {
2531                 vt_ctl |= IXGBE_VT_CTL_DIS_DEFPL;
2532         }
2533
2534         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vt_ctl);
2535
2536         /* RTRUP2TC: mapping user priorities to traffic classes (TCs) */
2537         queue_mapping = 0;
2538         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
2539                 /*
2540                  * mapping is done with 3 bits per priority,
2541                  * so shift by i*3 each time
2542                  */
2543                 queue_mapping |= ((cfg->dcb_queue[i] & 0x07) << (i * 3));
2544
2545         IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, queue_mapping);
2546
2547         /* RTRPCS: DCB related */
2548         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, IXGBE_RMCS_RRM);
2549
2550         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2551         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2552         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
2553         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2554
2555         /* VFTA - enable all vlan filters */
2556         for (i = 0; i < NUM_VFTA_REGISTERS; i++) {
2557                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
2558         }
2559
2560         /* VFRE: pool enabling for receive - 16 or 32 */
2561         IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), \
2562                         num_pools == ETH_16_POOLS ? 0xFFFF : 0xFFFFFFFF);
2563
2564         /*
2565          * MPSAR - allow pools to read specific mac addresses
2566          * In this case, all pools should be able to read from mac addr 0
2567          */
2568         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(0), 0xFFFFFFFF);
2569         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(0), 0xFFFFFFFF);
2570
2571         /* PFVLVF, PFVLVFB: set up filters for vlan tags as configured */
2572         for (i = 0; i < cfg->nb_pool_maps; i++) {
2573                 /* set vlan id in VF register and set the valid bit */
2574                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(i), (IXGBE_VLVF_VIEN | \
2575                                 (cfg->pool_map[i].vlan_id & 0xFFF)));
2576                 /*
2577                  * Put the allowed pools in VFB reg. As we only have 16 or 32
2578                  * pools, we only need to use the first half of the register
2579                  * i.e. bits 0-31
2580                  */
2581                 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(i*2), cfg->pool_map[i].pools);
2582         }
2583 }
2584
2585 /**
2586  * ixgbe_dcb_config_tx_hw_config - Configure general DCB TX parameters
2587  * @hw: pointer to hardware structure
2588  * @dcb_config: pointer to ixgbe_dcb_config structure
2589  */
2590 static void
2591 ixgbe_dcb_tx_hw_config(struct ixgbe_hw *hw,
2592                struct ixgbe_dcb_config *dcb_config)
2593 {
2594         uint32_t reg;
2595         uint32_t q;
2596
2597         PMD_INIT_FUNC_TRACE();
2598         if (hw->mac.type != ixgbe_mac_82598EB) {
2599                 /* Disable the Tx desc arbiter so that MTQC can be changed */
2600                 reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2601                 reg |= IXGBE_RTTDCS_ARBDIS;
2602                 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
2603
2604                 /* Enable DCB for Tx with 8 TCs */
2605                 if (dcb_config->num_tcs.pg_tcs == 8) {
2606                         reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2607                 }
2608                 else {
2609                         reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2610                 }
2611                 if (dcb_config->vt_mode)
2612                     reg |= IXGBE_MTQC_VT_ENA;
2613                 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2614
2615                 /* Disable drop for all queues */
2616                 for (q = 0; q < 128; q++)
2617                         IXGBE_WRITE_REG(hw, IXGBE_QDE,
2618                      (IXGBE_QDE_WRITE | (q << IXGBE_QDE_IDX_SHIFT)));
2619
2620                 /* Enable the Tx desc arbiter */
2621                 reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2622                 reg &= ~IXGBE_RTTDCS_ARBDIS;
2623                 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
2624
2625                 /* Enable Security TX Buffer IFG for DCB */
2626                 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2627                 reg |= IXGBE_SECTX_DCB;
2628                 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2629         }
2630         return;
2631 }
2632
2633 /**
2634  * ixgbe_vmdq_dcb_hw_tx_config - Configure general VMDQ+DCB TX parameters
2635  * @dev: pointer to rte_eth_dev structure
2636  * @dcb_config: pointer to ixgbe_dcb_config structure
2637  */
2638 static void
2639 ixgbe_vmdq_dcb_hw_tx_config(struct rte_eth_dev *dev,
2640                         struct ixgbe_dcb_config *dcb_config)
2641 {
2642         struct rte_eth_vmdq_dcb_tx_conf *vmdq_tx_conf =
2643                         &dev->data->dev_conf.tx_adv_conf.vmdq_dcb_tx_conf;
2644         struct ixgbe_hw *hw =
2645                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2646
2647         PMD_INIT_FUNC_TRACE();
2648         if (hw->mac.type != ixgbe_mac_82598EB)
2649                 /*PF VF Transmit Enable*/
2650                 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0),
2651                         vmdq_tx_conf->nb_queue_pools == ETH_16_POOLS ? 0xFFFF : 0xFFFFFFFF);
2652
2653         /*Configure general DCB TX parameters*/
2654         ixgbe_dcb_tx_hw_config(hw,dcb_config);
2655         return;
2656 }
2657
2658 static void
2659 ixgbe_vmdq_dcb_rx_config(struct rte_eth_dev *dev,
2660                         struct ixgbe_dcb_config *dcb_config)
2661 {
2662         struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
2663                         &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
2664         struct ixgbe_dcb_tc_config *tc;
2665         uint8_t i,j;
2666
2667         /* convert rte_eth_conf.rx_adv_conf to struct ixgbe_dcb_config */
2668         if (vmdq_rx_conf->nb_queue_pools == ETH_16_POOLS ) {
2669                 dcb_config->num_tcs.pg_tcs = ETH_8_TCS;
2670                 dcb_config->num_tcs.pfc_tcs = ETH_8_TCS;
2671         }
2672         else {
2673                 dcb_config->num_tcs.pg_tcs = ETH_4_TCS;
2674                 dcb_config->num_tcs.pfc_tcs = ETH_4_TCS;
2675         }
2676         /* User Priority to Traffic Class mapping */
2677         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2678                 j = vmdq_rx_conf->dcb_queue[i];
2679                 tc = &dcb_config->tc_config[j];
2680                 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap =
2681                                                 (uint8_t)(1 << j);
2682         }
2683 }
2684
2685 static void
2686 ixgbe_dcb_vt_tx_config(struct rte_eth_dev *dev,
2687                         struct ixgbe_dcb_config *dcb_config)
2688 {
2689         struct rte_eth_vmdq_dcb_tx_conf *vmdq_tx_conf =
2690                         &dev->data->dev_conf.tx_adv_conf.vmdq_dcb_tx_conf;
2691         struct ixgbe_dcb_tc_config *tc;
2692         uint8_t i,j;
2693
2694         /* convert rte_eth_conf.rx_adv_conf to struct ixgbe_dcb_config */
2695         if (vmdq_tx_conf->nb_queue_pools == ETH_16_POOLS ) {
2696                 dcb_config->num_tcs.pg_tcs = ETH_8_TCS;
2697                 dcb_config->num_tcs.pfc_tcs = ETH_8_TCS;
2698         }
2699         else {
2700                 dcb_config->num_tcs.pg_tcs = ETH_4_TCS;
2701                 dcb_config->num_tcs.pfc_tcs = ETH_4_TCS;
2702         }
2703
2704         /* User Priority to Traffic Class mapping */
2705         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2706                 j = vmdq_tx_conf->dcb_queue[i];
2707                 tc = &dcb_config->tc_config[j];
2708                 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap =
2709                                                 (uint8_t)(1 << j);
2710         }
2711         return;
2712 }
2713
2714 static void
2715 ixgbe_dcb_rx_config(struct rte_eth_dev *dev,
2716                 struct ixgbe_dcb_config *dcb_config)
2717 {
2718         struct rte_eth_dcb_rx_conf *rx_conf =
2719                         &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
2720         struct ixgbe_dcb_tc_config *tc;
2721         uint8_t i,j;
2722
2723         dcb_config->num_tcs.pg_tcs = (uint8_t)rx_conf->nb_tcs;
2724         dcb_config->num_tcs.pfc_tcs = (uint8_t)rx_conf->nb_tcs;
2725
2726         /* User Priority to Traffic Class mapping */
2727         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2728                 j = rx_conf->dcb_queue[i];
2729                 tc = &dcb_config->tc_config[j];
2730                 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap =
2731                                                 (uint8_t)(1 << j);
2732         }
2733 }
2734
2735 static void
2736 ixgbe_dcb_tx_config(struct rte_eth_dev *dev,
2737                 struct ixgbe_dcb_config *dcb_config)
2738 {
2739         struct rte_eth_dcb_tx_conf *tx_conf =
2740                         &dev->data->dev_conf.tx_adv_conf.dcb_tx_conf;
2741         struct ixgbe_dcb_tc_config *tc;
2742         uint8_t i,j;
2743
2744         dcb_config->num_tcs.pg_tcs = (uint8_t)tx_conf->nb_tcs;
2745         dcb_config->num_tcs.pfc_tcs = (uint8_t)tx_conf->nb_tcs;
2746
2747         /* User Priority to Traffic Class mapping */
2748         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2749                 j = tx_conf->dcb_queue[i];
2750                 tc = &dcb_config->tc_config[j];
2751                 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap =
2752                                                 (uint8_t)(1 << j);
2753         }
2754 }
2755
2756 /**
2757  * ixgbe_dcb_rx_hw_config - Configure general DCB RX HW parameters
2758  * @hw: pointer to hardware structure
2759  * @dcb_config: pointer to ixgbe_dcb_config structure
2760  */
2761 static void
2762 ixgbe_dcb_rx_hw_config(struct ixgbe_hw *hw,
2763                struct ixgbe_dcb_config *dcb_config)
2764 {
2765         uint32_t reg;
2766         uint32_t vlanctrl;
2767         uint8_t i;
2768
2769         PMD_INIT_FUNC_TRACE();
2770         /*
2771          * Disable the arbiter before changing parameters
2772          * (always enable recycle mode; WSP)
2773          */
2774         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC | IXGBE_RTRPCS_ARBDIS;
2775         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
2776
2777         if (hw->mac.type != ixgbe_mac_82598EB) {
2778                 reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
2779                 if (dcb_config->num_tcs.pg_tcs == 4) {
2780                         if (dcb_config->vt_mode)
2781                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2782                                         IXGBE_MRQC_VMDQRT4TCEN;
2783                         else {
2784                                 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, 0);
2785                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2786                                         IXGBE_MRQC_RT4TCEN;
2787                         }
2788                 }
2789                 if (dcb_config->num_tcs.pg_tcs == 8) {
2790                         if (dcb_config->vt_mode)
2791                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2792                                         IXGBE_MRQC_VMDQRT8TCEN;
2793                         else {
2794                                 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, 0);
2795                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2796                                         IXGBE_MRQC_RT8TCEN;
2797                         }
2798                 }
2799
2800                 IXGBE_WRITE_REG(hw, IXGBE_MRQC, reg);
2801         }
2802
2803         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2804         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2805         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
2806         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2807
2808         /* VFTA - enable all vlan filters */
2809         for (i = 0; i < NUM_VFTA_REGISTERS; i++) {
2810                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
2811         }
2812
2813         /*
2814          * Configure Rx packet plane (recycle mode; WSP) and
2815          * enable arbiter
2816          */
2817         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC;
2818         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
2819
2820         return;
2821 }
2822
2823 static void
2824 ixgbe_dcb_hw_arbite_rx_config(struct ixgbe_hw *hw, uint16_t *refill,
2825                         uint16_t *max,uint8_t *bwg_id, uint8_t *tsa, uint8_t *map)
2826 {
2827         switch (hw->mac.type) {
2828         case ixgbe_mac_82598EB:
2829                 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
2830                 break;
2831         case ixgbe_mac_82599EB:
2832         case ixgbe_mac_X540:
2833                 ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id,
2834                                                   tsa, map);
2835                 break;
2836         default:
2837                 break;
2838         }
2839 }
2840
2841 static void
2842 ixgbe_dcb_hw_arbite_tx_config(struct ixgbe_hw *hw, uint16_t *refill, uint16_t *max,
2843                             uint8_t *bwg_id, uint8_t *tsa, uint8_t *map)
2844 {
2845         switch (hw->mac.type) {
2846         case ixgbe_mac_82598EB:
2847                 ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, bwg_id,tsa);
2848                 ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, bwg_id,tsa);
2849                 break;
2850         case ixgbe_mac_82599EB:
2851         case ixgbe_mac_X540:
2852                 ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max, bwg_id,tsa);
2853                 ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max, bwg_id,tsa, map);
2854                 break;
2855         default:
2856                 break;
2857         }
2858 }
2859
2860 #define DCB_RX_CONFIG  1
2861 #define DCB_TX_CONFIG  1
2862 #define DCB_TX_PB      1024
2863 /**
2864  * ixgbe_dcb_hw_configure - Enable DCB and configure
2865  * general DCB in VT mode and non-VT mode parameters
2866  * @dev: pointer to rte_eth_dev structure
2867  * @dcb_config: pointer to ixgbe_dcb_config structure
2868  */
2869 static int
2870 ixgbe_dcb_hw_configure(struct rte_eth_dev *dev,
2871                         struct ixgbe_dcb_config *dcb_config)
2872 {
2873         int     ret = 0;
2874         uint8_t i,pfc_en,nb_tcs;
2875         uint16_t pbsize;
2876         uint8_t config_dcb_rx = 0;
2877         uint8_t config_dcb_tx = 0;
2878         uint8_t tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2879         uint8_t bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2880         uint16_t refill[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2881         uint16_t max[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2882         uint8_t map[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2883         struct ixgbe_dcb_tc_config *tc;
2884         uint32_t max_frame = dev->data->mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
2885         struct ixgbe_hw *hw =
2886                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2887
2888         switch(dev->data->dev_conf.rxmode.mq_mode){
2889         case ETH_MQ_RX_VMDQ_DCB:
2890                 dcb_config->vt_mode = true;
2891                 if (hw->mac.type != ixgbe_mac_82598EB) {
2892                         config_dcb_rx = DCB_RX_CONFIG;
2893                         /*
2894                          *get dcb and VT rx configuration parameters
2895                          *from rte_eth_conf
2896                          */
2897                         ixgbe_vmdq_dcb_rx_config(dev,dcb_config);
2898                         /*Configure general VMDQ and DCB RX parameters*/
2899                         ixgbe_vmdq_dcb_configure(dev);
2900                 }
2901                 break;
2902         case ETH_MQ_RX_DCB:
2903                 dcb_config->vt_mode = false;
2904                 config_dcb_rx = DCB_RX_CONFIG;
2905                 /* Get dcb TX configuration parameters from rte_eth_conf */
2906                 ixgbe_dcb_rx_config(dev,dcb_config);
2907                 /*Configure general DCB RX parameters*/
2908                 ixgbe_dcb_rx_hw_config(hw, dcb_config);
2909                 break;
2910         default:
2911                 PMD_INIT_LOG(ERR, "Incorrect DCB RX mode configuration\n");
2912                 break;
2913         }
2914         switch (dev->data->dev_conf.txmode.mq_mode) {
2915         case ETH_MQ_TX_VMDQ_DCB:
2916                 dcb_config->vt_mode = true;
2917                 config_dcb_tx = DCB_TX_CONFIG;
2918                 /* get DCB and VT TX configuration parameters from rte_eth_conf */
2919                 ixgbe_dcb_vt_tx_config(dev,dcb_config);
2920                 /*Configure general VMDQ and DCB TX parameters*/
2921                 ixgbe_vmdq_dcb_hw_tx_config(dev,dcb_config);
2922                 break;
2923
2924         case ETH_MQ_TX_DCB:
2925                 dcb_config->vt_mode = false;
2926                 config_dcb_tx = DCB_TX_CONFIG;
2927                 /*get DCB TX configuration parameters from rte_eth_conf*/
2928                 ixgbe_dcb_tx_config(dev,dcb_config);
2929                 /*Configure general DCB TX parameters*/
2930                 ixgbe_dcb_tx_hw_config(hw, dcb_config);
2931                 break;
2932         default:
2933                 PMD_INIT_LOG(ERR, "Incorrect DCB TX mode configuration\n");
2934                 break;
2935         }
2936
2937         nb_tcs = dcb_config->num_tcs.pfc_tcs;
2938         /* Unpack map */
2939         ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
2940         if(nb_tcs == ETH_4_TCS) {
2941                 /* Avoid un-configured priority mapping to TC0 */
2942                 uint8_t j = 4;
2943                 uint8_t mask = 0xFF;
2944                 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES - 4; i++)
2945                         mask = (uint8_t)(mask & (~ (1 << map[i])));
2946                 for (i = 0; mask && (i < IXGBE_DCB_MAX_TRAFFIC_CLASS); i++) {
2947                         if ((mask & 0x1) && (j < ETH_DCB_NUM_USER_PRIORITIES))
2948                                 map[j++] = i;
2949                         mask >>= 1;
2950                 }
2951                 /* Re-configure 4 TCs BW */
2952                 for (i = 0; i < nb_tcs; i++) {
2953                         tc = &dcb_config->tc_config[i];
2954                         tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
2955                                                 (uint8_t)(100 / nb_tcs);
2956                         tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
2957                                                 (uint8_t)(100 / nb_tcs);
2958                 }
2959                 for (; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
2960                         tc = &dcb_config->tc_config[i];
2961                         tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent = 0;
2962                         tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent = 0;
2963                 }
2964         }
2965
2966         if(config_dcb_rx) {
2967                 /* Set RX buffer size */
2968                 pbsize = (uint16_t)(NIC_RX_BUFFER_SIZE / nb_tcs);
2969                 uint32_t rxpbsize = pbsize << IXGBE_RXPBSIZE_SHIFT;
2970                 for (i = 0 ; i < nb_tcs; i++) {
2971                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2972                 }
2973                 /* zero alloc all unused TCs */
2974                 for (; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2975                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
2976                 }
2977         }
2978         if(config_dcb_tx) {
2979                 /* Only support an equally distributed Tx packet buffer strategy. */
2980                 uint32_t txpktsize = IXGBE_TXPBSIZE_MAX / nb_tcs;
2981                 uint32_t txpbthresh = (txpktsize / DCB_TX_PB) - IXGBE_TXPKT_SIZE_MAX;
2982                 for (i = 0; i < nb_tcs; i++) {
2983                         IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
2984                         IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
2985                 }
2986                 /* Clear unused TCs, if any, to zero buffer size*/
2987                 for (; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2988                         IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
2989                         IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
2990                 }
2991         }
2992
2993         /*Calculates traffic class credits*/
2994         ixgbe_dcb_calculate_tc_credits_cee(hw, dcb_config,max_frame,
2995                                 IXGBE_DCB_TX_CONFIG);
2996         ixgbe_dcb_calculate_tc_credits_cee(hw, dcb_config,max_frame,
2997                                 IXGBE_DCB_RX_CONFIG);
2998
2999         if(config_dcb_rx) {
3000                 /* Unpack CEE standard containers */
3001                 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_RX_CONFIG, refill);
3002                 ixgbe_dcb_unpack_max_cee(dcb_config, max);
3003                 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_RX_CONFIG, bwgid);
3004                 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_RX_CONFIG, tsa);
3005                 /* Configure PG(ETS) RX */
3006                 ixgbe_dcb_hw_arbite_rx_config(hw,refill,max,bwgid,tsa,map);
3007         }
3008
3009         if(config_dcb_tx) {
3010                 /* Unpack CEE standard containers */
3011                 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
3012                 ixgbe_dcb_unpack_max_cee(dcb_config, max);
3013                 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
3014                 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
3015                 /* Configure PG(ETS) TX */
3016                 ixgbe_dcb_hw_arbite_tx_config(hw,refill,max,bwgid,tsa,map);
3017         }
3018
3019         /*Configure queue statistics registers*/
3020         ixgbe_dcb_config_tc_stats_82599(hw, dcb_config);
3021
3022         /* Check if the PFC is supported */
3023         if(dev->data->dev_conf.dcb_capability_en & ETH_DCB_PFC_SUPPORT) {
3024                 pbsize = (uint16_t) (NIC_RX_BUFFER_SIZE / nb_tcs);
3025                 for (i = 0; i < nb_tcs; i++) {
3026                         /*
3027                         * If the TC count is 8,and the default high_water is 48,
3028                         * the low_water is 16 as default.
3029                         */
3030                         hw->fc.high_water[i] = (pbsize * 3 ) / 4;
3031                         hw->fc.low_water[i] = pbsize / 4;
3032                         /* Enable pfc for this TC */
3033                         tc = &dcb_config->tc_config[i];
3034                         tc->pfc = ixgbe_dcb_pfc_enabled;
3035                 }
3036                 ixgbe_dcb_unpack_pfc_cee(dcb_config, map, &pfc_en);
3037                 if(dcb_config->num_tcs.pfc_tcs == ETH_4_TCS)
3038                         pfc_en &= 0x0F;
3039                 ret = ixgbe_dcb_config_pfc(hw, pfc_en, map);
3040         }
3041
3042         return ret;
3043 }
3044
3045 /**
3046  * ixgbe_configure_dcb - Configure DCB  Hardware
3047  * @dev: pointer to rte_eth_dev
3048  */
3049 void ixgbe_configure_dcb(struct rte_eth_dev *dev)
3050 {
3051         struct ixgbe_dcb_config *dcb_cfg =
3052                         IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
3053         struct rte_eth_conf *dev_conf = &(dev->data->dev_conf);
3054
3055         PMD_INIT_FUNC_TRACE();
3056
3057         /* check support mq_mode for DCB */
3058         if ((dev_conf->rxmode.mq_mode != ETH_MQ_RX_VMDQ_DCB) &&
3059             (dev_conf->rxmode.mq_mode != ETH_MQ_RX_DCB))
3060                 return;
3061
3062         if (dev->data->nb_rx_queues != ETH_DCB_NUM_QUEUES)
3063                 return;
3064
3065         /** Configure DCB hardware **/
3066         ixgbe_dcb_hw_configure(dev,dcb_cfg);
3067
3068         return;
3069 }
3070
3071 /*
3072  * VMDq only support for 10 GbE NIC.
3073  */
3074 static void
3075 ixgbe_vmdq_rx_hw_configure(struct rte_eth_dev *dev)
3076 {
3077         struct rte_eth_vmdq_rx_conf *cfg;
3078         struct ixgbe_hw *hw;
3079         enum rte_eth_nb_pools num_pools;
3080         uint32_t mrqc, vt_ctl, vlanctrl;
3081         int i;
3082
3083         PMD_INIT_FUNC_TRACE();
3084         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3085         cfg = &dev->data->dev_conf.rx_adv_conf.vmdq_rx_conf;
3086         num_pools = cfg->nb_queue_pools;
3087
3088         ixgbe_rss_disable(dev);
3089
3090         /* MRQC: enable vmdq */
3091         mrqc = IXGBE_MRQC_VMDQEN;
3092         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3093
3094         /* PFVTCTL: turn on virtualisation and set the default pool */
3095         vt_ctl = IXGBE_VT_CTL_VT_ENABLE | IXGBE_VT_CTL_REPLEN;
3096         if (cfg->enable_default_pool)
3097                 vt_ctl |= (cfg->default_pool << IXGBE_VT_CTL_POOL_SHIFT);
3098         else
3099                 vt_ctl |= IXGBE_VT_CTL_DIS_DEFPL;
3100
3101         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vt_ctl);
3102
3103         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
3104         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3105         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
3106         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
3107
3108         /* VFTA - enable all vlan filters */
3109         for (i = 0; i < NUM_VFTA_REGISTERS; i++)
3110                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), UINT32_MAX);
3111
3112         /* VFRE: pool enabling for receive - 64 */
3113         IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), UINT32_MAX);
3114         if (num_pools == ETH_64_POOLS)
3115                 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), UINT32_MAX);
3116
3117         /*
3118          * MPSAR - allow pools to read specific mac addresses
3119          * In this case, all pools should be able to read from mac addr 0
3120          */
3121         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(0), UINT32_MAX);
3122         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(0), UINT32_MAX);
3123
3124         /* PFVLVF, PFVLVFB: set up filters for vlan tags as configured */
3125         for (i = 0; i < cfg->nb_pool_maps; i++) {
3126                 /* set vlan id in VF register and set the valid bit */
3127                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(i), (IXGBE_VLVF_VIEN | \
3128                                 (cfg->pool_map[i].vlan_id & IXGBE_RXD_VLAN_ID_MASK)));
3129                 /*
3130                  * Put the allowed pools in VFB reg. As we only have 16 or 64
3131                  * pools, we only need to use the first half of the register
3132                  * i.e. bits 0-31
3133                  */
3134                 if (((cfg->pool_map[i].pools >> 32) & UINT32_MAX) == 0)
3135                         IXGBE_WRITE_REG(hw, IXGBE_VLVFB(i*2), \
3136                                         (cfg->pool_map[i].pools & UINT32_MAX));
3137                 else
3138                         IXGBE_WRITE_REG(hw, IXGBE_VLVFB((i*2+1)), \
3139                                         ((cfg->pool_map[i].pools >> 32) \
3140                                         & UINT32_MAX));
3141
3142         }
3143
3144         /* PFDMA Tx General Switch Control Enables VMDQ loopback */
3145         if (cfg->enable_loop_back) {
3146                 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3147                 for (i = 0; i < RTE_IXGBE_VMTXSW_REGISTER_COUNT; i++)
3148                         IXGBE_WRITE_REG(hw, IXGBE_VMTXSW(i), UINT32_MAX);
3149         }
3150
3151         IXGBE_WRITE_FLUSH(hw);
3152 }
3153
3154 /*
3155  * ixgbe_dcb_config_tx_hw_config - Configure general VMDq TX parameters
3156  * @hw: pointer to hardware structure
3157  */
3158 static void
3159 ixgbe_vmdq_tx_hw_configure(struct ixgbe_hw *hw)
3160 {
3161         uint32_t reg;
3162         uint32_t q;
3163
3164         PMD_INIT_FUNC_TRACE();
3165         /*PF VF Transmit Enable*/
3166         IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), UINT32_MAX);
3167         IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), UINT32_MAX);
3168
3169         /* Disable the Tx desc arbiter so that MTQC can be changed */
3170         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3171         reg |= IXGBE_RTTDCS_ARBDIS;
3172         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
3173
3174         reg = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF;
3175         IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
3176
3177         /* Disable drop for all queues */
3178         for (q = 0; q < IXGBE_MAX_RX_QUEUE_NUM; q++)
3179                 IXGBE_WRITE_REG(hw, IXGBE_QDE,
3180                   (IXGBE_QDE_WRITE | (q << IXGBE_QDE_IDX_SHIFT)));
3181
3182         /* Enable the Tx desc arbiter */
3183         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3184         reg &= ~IXGBE_RTTDCS_ARBDIS;
3185         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
3186
3187         IXGBE_WRITE_FLUSH(hw);
3188
3189         return;
3190 }
3191
3192 static int
3193 ixgbe_alloc_rx_queue_mbufs(struct igb_rx_queue *rxq)
3194 {
3195         struct igb_rx_entry *rxe = rxq->sw_ring;
3196         uint64_t dma_addr;
3197         unsigned i;
3198
3199         /* Initialize software ring entries */
3200         for (i = 0; i < rxq->nb_rx_desc; i++) {
3201                 volatile union ixgbe_adv_rx_desc *rxd;
3202                 struct rte_mbuf *mbuf = rte_rxmbuf_alloc(rxq->mb_pool);
3203                 if (mbuf == NULL) {
3204                         PMD_INIT_LOG(ERR, "RX mbuf alloc failed queue_id=%u\n",
3205                                      (unsigned) rxq->queue_id);
3206                         return (-ENOMEM);
3207                 }
3208
3209                 rte_mbuf_refcnt_set(mbuf, 1);
3210                 mbuf->next = NULL;
3211                 mbuf->data_off = RTE_PKTMBUF_HEADROOM;
3212                 mbuf->nb_segs = 1;
3213                 mbuf->port = rxq->port_id;
3214
3215                 dma_addr =
3216                         rte_cpu_to_le_64(RTE_MBUF_DATA_DMA_ADDR_DEFAULT(mbuf));
3217                 rxd = &rxq->rx_ring[i];
3218                 rxd->read.hdr_addr = dma_addr;
3219                 rxd->read.pkt_addr = dma_addr;
3220                 rxe[i].mbuf = mbuf;
3221         }
3222
3223         return 0;
3224 }
3225
3226 static int
3227 ixgbe_dev_mq_rx_configure(struct rte_eth_dev *dev)
3228 {
3229         struct ixgbe_hw *hw =
3230                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3231
3232         if (hw->mac.type == ixgbe_mac_82598EB)
3233                 return 0;
3234
3235         if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3236                 /*
3237                  * SRIOV inactive scheme
3238                  * any DCB/RSS w/o VMDq multi-queue setting
3239                  */
3240                 switch (dev->data->dev_conf.rxmode.mq_mode) {
3241                         case ETH_MQ_RX_RSS:
3242                                 ixgbe_rss_configure(dev);
3243                                 break;
3244
3245                         case ETH_MQ_RX_VMDQ_DCB:
3246                                 ixgbe_vmdq_dcb_configure(dev);
3247                                 break;
3248
3249                         case ETH_MQ_RX_VMDQ_ONLY:
3250                                 ixgbe_vmdq_rx_hw_configure(dev);
3251                                 break;
3252
3253                         case ETH_MQ_RX_NONE:
3254                                 /* if mq_mode is none, disable rss mode.*/
3255                         default: ixgbe_rss_disable(dev);
3256                 }
3257         } else {
3258                 switch (RTE_ETH_DEV_SRIOV(dev).active) {
3259                 /*
3260                  * SRIOV active scheme
3261                  * FIXME if support DCB/RSS together with VMDq & SRIOV
3262                  */
3263                 case ETH_64_POOLS:
3264                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQEN);
3265                         break;
3266
3267                 case ETH_32_POOLS:
3268                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQRT4TCEN);
3269                         break;
3270
3271                 case ETH_16_POOLS:
3272                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQRT8TCEN);
3273                         break;
3274                 default:
3275                         RTE_LOG(ERR, PMD, "invalid pool number in IOV mode\n");
3276                 }
3277         }
3278
3279         return 0;
3280 }
3281
3282 static int
3283 ixgbe_dev_mq_tx_configure(struct rte_eth_dev *dev)
3284 {
3285         struct ixgbe_hw *hw =
3286                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3287         uint32_t mtqc;
3288         uint32_t rttdcs;
3289
3290         if (hw->mac.type == ixgbe_mac_82598EB)
3291                 return 0;
3292
3293         /* disable arbiter before setting MTQC */
3294         rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3295         rttdcs |= IXGBE_RTTDCS_ARBDIS;
3296         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3297
3298         if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3299                 /*
3300                  * SRIOV inactive scheme
3301                  * any DCB w/o VMDq multi-queue setting
3302                  */
3303                 if (dev->data->dev_conf.txmode.mq_mode == ETH_MQ_TX_VMDQ_ONLY)
3304                         ixgbe_vmdq_tx_hw_configure(hw);
3305                 else {
3306                         mtqc = IXGBE_MTQC_64Q_1PB;
3307                         IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
3308                 }
3309         } else {
3310                 switch (RTE_ETH_DEV_SRIOV(dev).active) {
3311
3312                 /*
3313                  * SRIOV active scheme
3314                  * FIXME if support DCB together with VMDq & SRIOV
3315                  */
3316                 case ETH_64_POOLS:
3317                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF;
3318                         break;
3319                 case ETH_32_POOLS:
3320                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_32VF;
3321                         break;
3322                 case ETH_16_POOLS:
3323                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_RT_ENA |
3324                                 IXGBE_MTQC_8TC_8TQ;
3325                         break;
3326                 default:
3327                         mtqc = IXGBE_MTQC_64Q_1PB;
3328                         RTE_LOG(ERR, PMD, "invalid pool number in IOV mode\n");
3329                 }
3330                 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
3331         }
3332
3333         /* re-enable arbiter */
3334         rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3335         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3336
3337         return 0;
3338 }
3339
3340 /*
3341  * Initializes Receive Unit.
3342  */
3343 int
3344 ixgbe_dev_rx_init(struct rte_eth_dev *dev)
3345 {
3346         struct ixgbe_hw     *hw;
3347         struct igb_rx_queue *rxq;
3348         struct rte_pktmbuf_pool_private *mbp_priv;
3349         uint64_t bus_addr;
3350         uint32_t rxctrl;
3351         uint32_t fctrl;
3352         uint32_t hlreg0;
3353         uint32_t maxfrs;
3354         uint32_t srrctl;
3355         uint32_t rdrxctl;
3356         uint32_t rxcsum;
3357         uint16_t buf_size;
3358         uint16_t i;
3359
3360         PMD_INIT_FUNC_TRACE();
3361         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3362
3363         /*
3364          * Make sure receives are disabled while setting
3365          * up the RX context (registers, descriptor rings, etc.).
3366          */
3367         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3368         IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3369
3370         /* Enable receipt of broadcasted frames */
3371         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3372         fctrl |= IXGBE_FCTRL_BAM;
3373         fctrl |= IXGBE_FCTRL_DPF;
3374         fctrl |= IXGBE_FCTRL_PMCF;
3375         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3376
3377         /*
3378          * Configure CRC stripping, if any.
3379          */
3380         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3381         if (dev->data->dev_conf.rxmode.hw_strip_crc)
3382                 hlreg0 |= IXGBE_HLREG0_RXCRCSTRP;
3383         else
3384                 hlreg0 &= ~IXGBE_HLREG0_RXCRCSTRP;
3385
3386         /*
3387          * Configure jumbo frame support, if any.
3388          */
3389         if (dev->data->dev_conf.rxmode.jumbo_frame == 1) {
3390                 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
3391                 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
3392                 maxfrs &= 0x0000FFFF;
3393                 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
3394                 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
3395         } else
3396                 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
3397
3398         /*
3399          * If loopback mode is configured for 82599, set LPBK bit.
3400          */
3401         if (hw->mac.type == ixgbe_mac_82599EB &&
3402                         dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
3403                 hlreg0 |= IXGBE_HLREG0_LPBK;
3404         else
3405                 hlreg0 &= ~IXGBE_HLREG0_LPBK;
3406
3407         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3408
3409         /* Setup RX queues */
3410         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3411                 rxq = dev->data->rx_queues[i];
3412
3413                 /*
3414                  * Reset crc_len in case it was changed after queue setup by a
3415                  * call to configure.
3416                  */
3417                 rxq->crc_len = (uint8_t)
3418                                 ((dev->data->dev_conf.rxmode.hw_strip_crc) ? 0 :
3419                                 ETHER_CRC_LEN);
3420
3421                 /* Setup the Base and Length of the Rx Descriptor Rings */
3422                 bus_addr = rxq->rx_ring_phys_addr;
3423                 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(rxq->reg_idx),
3424                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3425                 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(rxq->reg_idx),
3426                                 (uint32_t)(bus_addr >> 32));
3427                 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(rxq->reg_idx),
3428                                 rxq->nb_rx_desc * sizeof(union ixgbe_adv_rx_desc));
3429                 IXGBE_WRITE_REG(hw, IXGBE_RDH(rxq->reg_idx), 0);
3430                 IXGBE_WRITE_REG(hw, IXGBE_RDT(rxq->reg_idx), 0);
3431
3432                 /* Configure the SRRCTL register */
3433 #ifdef RTE_HEADER_SPLIT_ENABLE
3434                 /*
3435                  * Configure Header Split
3436                  */
3437                 if (dev->data->dev_conf.rxmode.header_split) {
3438                         if (hw->mac.type == ixgbe_mac_82599EB) {
3439                                 /* Must setup the PSRTYPE register */
3440                                 uint32_t psrtype;
3441                                 psrtype = IXGBE_PSRTYPE_TCPHDR |
3442                                         IXGBE_PSRTYPE_UDPHDR   |
3443                                         IXGBE_PSRTYPE_IPV4HDR  |
3444                                         IXGBE_PSRTYPE_IPV6HDR;
3445                                 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(rxq->reg_idx), psrtype);
3446                         }
3447                         srrctl = ((dev->data->dev_conf.rxmode.split_hdr_size <<
3448                                    IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
3449                                   IXGBE_SRRCTL_BSIZEHDR_MASK);
3450                         srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
3451                 } else
3452 #endif
3453                         srrctl = IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
3454
3455                 /* Set if packets are dropped when no descriptors available */
3456                 if (rxq->drop_en)
3457                         srrctl |= IXGBE_SRRCTL_DROP_EN;
3458
3459                 /*
3460                  * Configure the RX buffer size in the BSIZEPACKET field of
3461                  * the SRRCTL register of the queue.
3462                  * The value is in 1 KB resolution. Valid values can be from
3463                  * 1 KB to 16 KB.
3464                  */
3465                 mbp_priv = rte_mempool_get_priv(rxq->mb_pool);
3466                 buf_size = (uint16_t) (mbp_priv->mbuf_data_room_size -
3467                                        RTE_PKTMBUF_HEADROOM);
3468                 srrctl |= ((buf_size >> IXGBE_SRRCTL_BSIZEPKT_SHIFT) &
3469                            IXGBE_SRRCTL_BSIZEPKT_MASK);
3470                 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxq->reg_idx), srrctl);
3471
3472                 buf_size = (uint16_t) ((srrctl & IXGBE_SRRCTL_BSIZEPKT_MASK) <<
3473                                        IXGBE_SRRCTL_BSIZEPKT_SHIFT);
3474
3475                 /* It adds dual VLAN length for supporting dual VLAN */
3476                 if ((dev->data->dev_conf.rxmode.max_rx_pkt_len +
3477                                 2 * IXGBE_VLAN_TAG_SIZE) > buf_size){
3478                         dev->data->scattered_rx = 1;
3479 #ifdef RTE_IXGBE_INC_VECTOR
3480                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3481 #else
3482                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3483 #endif
3484                 }
3485         }
3486
3487         if (dev->data->dev_conf.rxmode.enable_scatter) {
3488 #ifdef RTE_IXGBE_INC_VECTOR
3489                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3490 #else
3491                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3492 #endif
3493                 dev->data->scattered_rx = 1;
3494         }
3495
3496         /*
3497          * Device configured with multiple RX queues.
3498          */
3499         ixgbe_dev_mq_rx_configure(dev);
3500
3501         /*
3502          * Setup the Checksum Register.
3503          * Disable Full-Packet Checksum which is mutually exclusive with RSS.
3504          * Enable IP/L4 checkum computation by hardware if requested to do so.
3505          */
3506         rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3507         rxcsum |= IXGBE_RXCSUM_PCSD;
3508         if (dev->data->dev_conf.rxmode.hw_ip_checksum)
3509                 rxcsum |= IXGBE_RXCSUM_IPPCSE;
3510         else
3511                 rxcsum &= ~IXGBE_RXCSUM_IPPCSE;
3512
3513         IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3514
3515         if (hw->mac.type == ixgbe_mac_82599EB) {
3516                 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3517                 if (dev->data->dev_conf.rxmode.hw_strip_crc)
3518                         rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3519                 else
3520                         rdrxctl &= ~IXGBE_RDRXCTL_CRCSTRIP;
3521                 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3522                 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3523         }
3524
3525         return 0;
3526 }
3527
3528 /*
3529  * Initializes Transmit Unit.
3530  */
3531 void
3532 ixgbe_dev_tx_init(struct rte_eth_dev *dev)
3533 {
3534         struct ixgbe_hw     *hw;
3535         struct igb_tx_queue *txq;
3536         uint64_t bus_addr;
3537         uint32_t hlreg0;
3538         uint32_t txctrl;
3539         uint16_t i;
3540
3541         PMD_INIT_FUNC_TRACE();
3542         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3543
3544         /* Enable TX CRC (checksum offload requirement) */
3545         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3546         hlreg0 |= IXGBE_HLREG0_TXCRCEN;
3547         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3548
3549         /* Setup the Base and Length of the Tx Descriptor Rings */
3550         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3551                 txq = dev->data->tx_queues[i];
3552
3553                 bus_addr = txq->tx_ring_phys_addr;
3554                 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(txq->reg_idx),
3555                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3556                 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(txq->reg_idx),
3557                                 (uint32_t)(bus_addr >> 32));
3558                 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(txq->reg_idx),
3559                                 txq->nb_tx_desc * sizeof(union ixgbe_adv_tx_desc));
3560                 /* Setup the HW Tx Head and TX Tail descriptor pointers */
3561                 IXGBE_WRITE_REG(hw, IXGBE_TDH(txq->reg_idx), 0);
3562                 IXGBE_WRITE_REG(hw, IXGBE_TDT(txq->reg_idx), 0);
3563
3564                 /*
3565                  * Disable Tx Head Writeback RO bit, since this hoses
3566                  * bookkeeping if things aren't delivered in order.
3567                  */
3568                 switch (hw->mac.type) {
3569                         case ixgbe_mac_82598EB:
3570                                 txctrl = IXGBE_READ_REG(hw,
3571                                                         IXGBE_DCA_TXCTRL(txq->reg_idx));
3572                                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
3573                                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(txq->reg_idx),
3574                                                 txctrl);
3575                                 break;
3576
3577                         case ixgbe_mac_82599EB:
3578                         case ixgbe_mac_X540:
3579                         default:
3580                                 txctrl = IXGBE_READ_REG(hw,
3581                                                 IXGBE_DCA_TXCTRL_82599(txq->reg_idx));
3582                                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
3583                                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(txq->reg_idx),
3584                                                 txctrl);
3585                                 break;
3586                 }
3587         }
3588
3589         /* Device configured with multiple TX queues. */
3590         ixgbe_dev_mq_tx_configure(dev);
3591 }
3592
3593 /*
3594  * Set up link for 82599 loopback mode Tx->Rx.
3595  */
3596 static inline void
3597 ixgbe_setup_loopback_link_82599(struct ixgbe_hw *hw)
3598 {
3599         DEBUGFUNC("ixgbe_setup_loopback_link_82599");
3600
3601         if (ixgbe_verify_lesm_fw_enabled_82599(hw)) {
3602                 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM) !=
3603                                 IXGBE_SUCCESS) {
3604                         PMD_INIT_LOG(ERR, "Could not enable loopback mode\n");
3605                         /* ignore error */
3606                         return;
3607                 }
3608         }
3609
3610         /* Restart link */
3611         IXGBE_WRITE_REG(hw,
3612                         IXGBE_AUTOC,
3613                         IXGBE_AUTOC_LMS_10G_LINK_NO_AN | IXGBE_AUTOC_FLU);
3614         ixgbe_reset_pipeline_82599(hw);
3615
3616         hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM);
3617         msec_delay(50);
3618 }
3619
3620
3621 /*
3622  * Start Transmit and Receive Units.
3623  */
3624 void
3625 ixgbe_dev_rxtx_start(struct rte_eth_dev *dev)
3626 {
3627         struct ixgbe_hw     *hw;
3628         struct igb_tx_queue *txq;
3629         struct igb_rx_queue *rxq;
3630         uint32_t txdctl;
3631         uint32_t dmatxctl;
3632         uint32_t rxctrl;
3633         uint16_t i;
3634
3635         PMD_INIT_FUNC_TRACE();
3636         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3637
3638         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3639                 txq = dev->data->tx_queues[i];
3640                 /* Setup Transmit Threshold Registers */
3641                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3642                 txdctl |= txq->pthresh & 0x7F;
3643                 txdctl |= ((txq->hthresh & 0x7F) << 8);
3644                 txdctl |= ((txq->wthresh & 0x7F) << 16);
3645                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3646         }
3647
3648         if (hw->mac.type != ixgbe_mac_82598EB) {
3649                 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3650                 dmatxctl |= IXGBE_DMATXCTL_TE;
3651                 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3652         }
3653
3654         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3655                 txq = dev->data->tx_queues[i];
3656                 if (!txq->start_tx_per_q)
3657                         ixgbe_dev_tx_queue_start(dev, i);
3658         }
3659
3660         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3661                 rxq = dev->data->rx_queues[i];
3662                 if (!rxq->start_rx_per_q)
3663                         ixgbe_dev_rx_queue_start(dev, i);
3664         }
3665
3666         /* Enable Receive engine */
3667         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3668         if (hw->mac.type == ixgbe_mac_82598EB)
3669                 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3670         rxctrl |= IXGBE_RXCTRL_RXEN;
3671         hw->mac.ops.enable_rx_dma(hw, rxctrl);
3672
3673         /* If loopback mode is enabled for 82599, set up the link accordingly */
3674         if (hw->mac.type == ixgbe_mac_82599EB &&
3675                         dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
3676                 ixgbe_setup_loopback_link_82599(hw);
3677
3678 }
3679
3680 /*
3681  * Start Receive Units for specified queue.
3682  */
3683 int
3684 ixgbe_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
3685 {
3686         struct ixgbe_hw     *hw;
3687         struct igb_rx_queue *rxq;
3688         uint32_t rxdctl;
3689         int poll_ms;
3690
3691         PMD_INIT_FUNC_TRACE();
3692         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3693
3694         if (rx_queue_id < dev->data->nb_rx_queues) {
3695                 rxq = dev->data->rx_queues[rx_queue_id];
3696
3697                 /* Allocate buffers for descriptor rings */
3698                 if (ixgbe_alloc_rx_queue_mbufs(rxq) != 0) {
3699                         PMD_INIT_LOG(ERR,
3700                                 "Could not alloc mbuf for queue:%d\n",
3701                                 rx_queue_id);
3702                         return -1;
3703                 }
3704                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3705                 rxdctl |= IXGBE_RXDCTL_ENABLE;
3706                 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl);
3707
3708                 /* Wait until RX Enable ready */
3709                 poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3710                 do {
3711                         rte_delay_ms(1);
3712                         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3713                 } while (--poll_ms && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3714                 if (!poll_ms)
3715                         PMD_INIT_LOG(ERR, "Could not enable "
3716                                      "Rx Queue %d\n", rx_queue_id);
3717                 rte_wmb();
3718                 IXGBE_WRITE_REG(hw, IXGBE_RDH(rxq->reg_idx), 0);
3719                 IXGBE_WRITE_REG(hw, IXGBE_RDT(rxq->reg_idx), rxq->nb_rx_desc - 1);
3720         } else
3721                 return -1;
3722
3723         return 0;
3724 }
3725
3726 /*
3727  * Stop Receive Units for specified queue.
3728  */
3729 int
3730 ixgbe_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
3731 {
3732         struct ixgbe_hw     *hw;
3733         struct igb_rx_queue *rxq;
3734         uint32_t rxdctl;
3735         int poll_ms;
3736
3737         PMD_INIT_FUNC_TRACE();
3738         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3739
3740         if (rx_queue_id < dev->data->nb_rx_queues) {
3741                 rxq = dev->data->rx_queues[rx_queue_id];
3742
3743                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3744                 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3745                 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl);
3746
3747                 /* Wait until RX Enable ready */
3748                 poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3749                 do {
3750                         rte_delay_ms(1);
3751                         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3752                 } while (--poll_ms && (rxdctl | IXGBE_RXDCTL_ENABLE));
3753                 if (!poll_ms)
3754                         PMD_INIT_LOG(ERR, "Could not disable "
3755                                      "Rx Queue %d\n", rx_queue_id);
3756
3757                 rte_delay_us(RTE_IXGBE_WAIT_100_US);
3758
3759                 ixgbe_rx_queue_release_mbufs(rxq);
3760                 ixgbe_reset_rx_queue(rxq);
3761         } else
3762                 return -1;
3763
3764         return 0;
3765 }
3766
3767
3768 /*
3769  * Start Transmit Units for specified queue.
3770  */
3771 int
3772 ixgbe_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
3773 {
3774         struct ixgbe_hw     *hw;
3775         struct igb_tx_queue *txq;
3776         uint32_t txdctl;
3777         int poll_ms;
3778
3779         PMD_INIT_FUNC_TRACE();
3780         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3781
3782         if (tx_queue_id < dev->data->nb_tx_queues) {
3783                 txq = dev->data->tx_queues[tx_queue_id];
3784                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3785                 txdctl |= IXGBE_TXDCTL_ENABLE;
3786                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3787
3788                 /* Wait until TX Enable ready */
3789                 if (hw->mac.type == ixgbe_mac_82599EB) {
3790                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3791                         do {
3792                                 rte_delay_ms(1);
3793                                 txdctl = IXGBE_READ_REG(hw,
3794                                         IXGBE_TXDCTL(txq->reg_idx));
3795                         } while (--poll_ms && !(txdctl & IXGBE_TXDCTL_ENABLE));
3796                         if (!poll_ms)
3797                                 PMD_INIT_LOG(ERR, "Could not enable "
3798                                              "Tx Queue %d\n", tx_queue_id);
3799                 }
3800                 rte_wmb();
3801                 IXGBE_WRITE_REG(hw, IXGBE_TDH(txq->reg_idx), 0);
3802                 IXGBE_WRITE_REG(hw, IXGBE_TDT(txq->reg_idx), 0);
3803         } else
3804                 return -1;
3805
3806         return 0;
3807 }
3808
3809 /*
3810  * Stop Transmit Units for specified queue.
3811  */
3812 int
3813 ixgbe_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
3814 {
3815         struct ixgbe_hw     *hw;
3816         struct igb_tx_queue *txq;
3817         uint32_t txdctl;
3818         uint32_t txtdh, txtdt;
3819         int poll_ms;
3820
3821         PMD_INIT_FUNC_TRACE();
3822         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3823
3824         if (tx_queue_id < dev->data->nb_tx_queues) {
3825                 txq = dev->data->tx_queues[tx_queue_id];
3826
3827                 /* Wait until TX queue is empty */
3828                 if (hw->mac.type == ixgbe_mac_82599EB) {
3829                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3830                         do {
3831                                 rte_delay_us(RTE_IXGBE_WAIT_100_US);
3832                                 txtdh = IXGBE_READ_REG(hw,
3833                                                 IXGBE_TDH(txq->reg_idx));
3834                                 txtdt = IXGBE_READ_REG(hw,
3835                                                 IXGBE_TDT(txq->reg_idx));
3836                         } while (--poll_ms && (txtdh != txtdt));
3837                         if (!poll_ms)
3838                                 PMD_INIT_LOG(ERR,
3839                                 "Tx Queue %d is not empty when stopping.\n",
3840                                 tx_queue_id);
3841                 }
3842
3843                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3844                 txdctl &= ~IXGBE_TXDCTL_ENABLE;
3845                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3846
3847                 /* Wait until TX Enable ready */
3848                 if (hw->mac.type == ixgbe_mac_82599EB) {
3849                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3850                         do {
3851                                 rte_delay_ms(1);
3852                                 txdctl = IXGBE_READ_REG(hw,
3853                                                 IXGBE_TXDCTL(txq->reg_idx));
3854                         } while (--poll_ms && (txdctl | IXGBE_TXDCTL_ENABLE));
3855                         if (!poll_ms)
3856                                 PMD_INIT_LOG(ERR, "Could not disable "
3857                                              "Tx Queue %d\n", tx_queue_id);
3858                 }
3859
3860                 if (txq->ops != NULL) {
3861                         txq->ops->release_mbufs(txq);
3862                         txq->ops->reset(txq);
3863                 }
3864         } else
3865                 return -1;
3866
3867         return 0;
3868 }
3869
3870 /*
3871  * [VF] Initializes Receive Unit.
3872  */
3873 int
3874 ixgbevf_dev_rx_init(struct rte_eth_dev *dev)
3875 {
3876         struct ixgbe_hw     *hw;
3877         struct igb_rx_queue *rxq;
3878         struct rte_pktmbuf_pool_private *mbp_priv;
3879         uint64_t bus_addr;
3880         uint32_t srrctl;
3881         uint16_t buf_size;
3882         uint16_t i;
3883         int ret;
3884
3885         PMD_INIT_FUNC_TRACE();
3886         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3887
3888         /*
3889          * When the VF driver issues a IXGBE_VF_RESET request, the PF driver
3890          * disables the VF receipt of packets if the PF MTU is > 1500.
3891          * This is done to deal with 82599 limitations that imposes
3892          * the PF and all VFs to share the same MTU.
3893          * Then, the PF driver enables again the VF receipt of packet when
3894          * the VF driver issues a IXGBE_VF_SET_LPE request.
3895          * In the meantime, the VF device cannot be used, even if the VF driver
3896          * and the Guest VM network stack are ready to accept packets with a
3897          * size up to the PF MTU.
3898          * As a work-around to this PF behaviour, force the call to
3899          * ixgbevf_rlpml_set_vf even if jumbo frames are not used. This way,
3900          * VF packets received can work in all cases.
3901          */
3902         ixgbevf_rlpml_set_vf(hw,
3903                 (uint16_t)dev->data->dev_conf.rxmode.max_rx_pkt_len);
3904
3905         /* Setup RX queues */
3906         dev->rx_pkt_burst = ixgbe_recv_pkts;
3907         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3908                 rxq = dev->data->rx_queues[i];
3909
3910                 /* Allocate buffers for descriptor rings */
3911                 ret = ixgbe_alloc_rx_queue_mbufs(rxq);
3912                 if (ret)
3913                         return ret;
3914
3915                 /* Setup the Base and Length of the Rx Descriptor Rings */
3916                 bus_addr = rxq->rx_ring_phys_addr;
3917
3918                 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAL(i),
3919                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3920                 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAH(i),
3921                                 (uint32_t)(bus_addr >> 32));
3922                 IXGBE_WRITE_REG(hw, IXGBE_VFRDLEN(i),
3923                                 rxq->nb_rx_desc * sizeof(union ixgbe_adv_rx_desc));
3924                 IXGBE_WRITE_REG(hw, IXGBE_VFRDH(i), 0);
3925                 IXGBE_WRITE_REG(hw, IXGBE_VFRDT(i), 0);
3926
3927
3928                 /* Configure the SRRCTL register */
3929 #ifdef RTE_HEADER_SPLIT_ENABLE
3930                 /*
3931                  * Configure Header Split
3932                  */
3933                 if (dev->data->dev_conf.rxmode.header_split) {
3934
3935                         /* Must setup the PSRTYPE register */
3936                         uint32_t psrtype;
3937                         psrtype = IXGBE_PSRTYPE_TCPHDR |
3938                                 IXGBE_PSRTYPE_UDPHDR   |
3939                                 IXGBE_PSRTYPE_IPV4HDR  |
3940                                 IXGBE_PSRTYPE_IPV6HDR;
3941
3942                         IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE(i), psrtype);
3943
3944                         srrctl = ((dev->data->dev_conf.rxmode.split_hdr_size <<
3945                                    IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
3946                                   IXGBE_SRRCTL_BSIZEHDR_MASK);
3947                         srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
3948                 } else
3949 #endif
3950                         srrctl = IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
3951
3952                 /* Set if packets are dropped when no descriptors available */
3953                 if (rxq->drop_en)
3954                         srrctl |= IXGBE_SRRCTL_DROP_EN;
3955
3956                 /*
3957                  * Configure the RX buffer size in the BSIZEPACKET field of
3958                  * the SRRCTL register of the queue.
3959                  * The value is in 1 KB resolution. Valid values can be from
3960                  * 1 KB to 16 KB.
3961                  */
3962                 mbp_priv = rte_mempool_get_priv(rxq->mb_pool);
3963                 buf_size = (uint16_t) (mbp_priv->mbuf_data_room_size -
3964                                        RTE_PKTMBUF_HEADROOM);
3965                 srrctl |= ((buf_size >> IXGBE_SRRCTL_BSIZEPKT_SHIFT) &
3966                            IXGBE_SRRCTL_BSIZEPKT_MASK);
3967
3968                 /*
3969                  * VF modification to write virtual function SRRCTL register
3970                  */
3971                 IXGBE_WRITE_REG(hw, IXGBE_VFSRRCTL(i), srrctl);
3972
3973                 buf_size = (uint16_t) ((srrctl & IXGBE_SRRCTL_BSIZEPKT_MASK) <<
3974                                        IXGBE_SRRCTL_BSIZEPKT_SHIFT);
3975
3976                 /* It adds dual VLAN length for supporting dual VLAN */
3977                 if ((dev->data->dev_conf.rxmode.max_rx_pkt_len +
3978                                 2 * IXGBE_VLAN_TAG_SIZE) > buf_size) {
3979                         dev->data->scattered_rx = 1;
3980 #ifdef RTE_IXGBE_INC_VECTOR
3981                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3982 #else
3983                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3984 #endif
3985                 }
3986         }
3987
3988         if (dev->data->dev_conf.rxmode.enable_scatter) {
3989 #ifdef RTE_IXGBE_INC_VECTOR
3990                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3991 #else
3992                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3993 #endif
3994                 dev->data->scattered_rx = 1;
3995         }
3996
3997         return 0;
3998 }
3999
4000 /*
4001  * [VF] Initializes Transmit Unit.
4002  */
4003 void
4004 ixgbevf_dev_tx_init(struct rte_eth_dev *dev)
4005 {
4006         struct ixgbe_hw     *hw;
4007         struct igb_tx_queue *txq;
4008         uint64_t bus_addr;
4009         uint32_t txctrl;
4010         uint16_t i;
4011
4012         PMD_INIT_FUNC_TRACE();
4013         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4014
4015         /* Setup the Base and Length of the Tx Descriptor Rings */
4016         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4017                 txq = dev->data->tx_queues[i];
4018                 bus_addr = txq->tx_ring_phys_addr;
4019                 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAL(i),
4020                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
4021                 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAH(i),
4022                                 (uint32_t)(bus_addr >> 32));
4023                 IXGBE_WRITE_REG(hw, IXGBE_VFTDLEN(i),
4024                                 txq->nb_tx_desc * sizeof(union ixgbe_adv_tx_desc));
4025                 /* Setup the HW Tx Head and TX Tail descriptor pointers */
4026                 IXGBE_WRITE_REG(hw, IXGBE_VFTDH(i), 0);
4027                 IXGBE_WRITE_REG(hw, IXGBE_VFTDT(i), 0);
4028
4029                 /*
4030                  * Disable Tx Head Writeback RO bit, since this hoses
4031                  * bookkeeping if things aren't delivered in order.
4032                  */
4033                 txctrl = IXGBE_READ_REG(hw,
4034                                 IXGBE_VFDCA_TXCTRL(i));
4035                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
4036                 IXGBE_WRITE_REG(hw, IXGBE_VFDCA_TXCTRL(i),
4037                                 txctrl);
4038         }
4039 }
4040
4041 /*
4042  * [VF] Start Transmit and Receive Units.
4043  */
4044 void
4045 ixgbevf_dev_rxtx_start(struct rte_eth_dev *dev)
4046 {
4047         struct ixgbe_hw     *hw;
4048         struct igb_tx_queue *txq;
4049         struct igb_rx_queue *rxq;
4050         uint32_t txdctl;
4051         uint32_t rxdctl;
4052         uint16_t i;
4053         int poll_ms;
4054
4055         PMD_INIT_FUNC_TRACE();
4056         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4057
4058         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4059                 txq = dev->data->tx_queues[i];
4060                 /* Setup Transmit Threshold Registers */
4061                 txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4062                 txdctl |= txq->pthresh & 0x7F;
4063                 txdctl |= ((txq->hthresh & 0x7F) << 8);
4064                 txdctl |= ((txq->wthresh & 0x7F) << 16);
4065                 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(i), txdctl);
4066         }
4067
4068         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4069
4070                 txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4071                 txdctl |= IXGBE_TXDCTL_ENABLE;
4072                 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(i), txdctl);
4073
4074                 poll_ms = 10;
4075                 /* Wait until TX Enable ready */
4076                 do {
4077                         rte_delay_ms(1);
4078                         txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4079                 } while (--poll_ms && !(txdctl & IXGBE_TXDCTL_ENABLE));
4080                 if (!poll_ms)
4081                         PMD_INIT_LOG(ERR, "Could not enable "
4082                                          "Tx Queue %d\n", i);
4083         }
4084         for (i = 0; i < dev->data->nb_rx_queues; i++) {
4085
4086                 rxq = dev->data->rx_queues[i];
4087
4088                 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(i));
4089                 rxdctl |= IXGBE_RXDCTL_ENABLE;
4090                 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(i), rxdctl);
4091
4092                 /* Wait until RX Enable ready */
4093                 poll_ms = 10;
4094                 do {
4095                         rte_delay_ms(1);
4096                         rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(i));
4097                 } while (--poll_ms && !(rxdctl & IXGBE_RXDCTL_ENABLE));
4098                 if (!poll_ms)
4099                         PMD_INIT_LOG(ERR, "Could not enable "
4100                                          "Rx Queue %d\n", i);
4101                 rte_wmb();
4102                 IXGBE_WRITE_REG(hw, IXGBE_VFRDT(i), rxq->nb_rx_desc - 1);
4103
4104         }
4105 }