ixgbe: add a message when forcing scatter mode
[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",
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", (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",
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", (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",
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, "port_id=%u queue_id=%u rx_id=%u "
1381                            "staterr=0x%x data_len=%u",
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", (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",
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                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than the number "
1763                              "of TX descriptors minus 2. (tx_rs_thresh=%u "
1764                              "port=%d queue=%d)", (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                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than the "
1770                              "tx_free_thresh must be less than the number of "
1771                              "TX descriptors minus 3. (tx_free_thresh=%u "
1772                              "port=%d queue=%d)",
1773                              (unsigned int)tx_free_thresh,
1774                              (int)dev->data->port_id, (int)queue_idx);
1775                 return -(EINVAL);
1776         }
1777         if (tx_rs_thresh > tx_free_thresh) {
1778                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than or equal to "
1779                              "tx_free_thresh. (tx_free_thresh=%u "
1780                              "tx_rs_thresh=%u port=%d queue=%d)",
1781                              (unsigned int)tx_free_thresh,
1782                              (unsigned int)tx_rs_thresh,
1783                              (int)dev->data->port_id,
1784                              (int)queue_idx);
1785                 return -(EINVAL);
1786         }
1787         if ((nb_desc % tx_rs_thresh) != 0) {
1788                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be a divisor of the "
1789                              "number of TX descriptors. (tx_rs_thresh=%u "
1790                              "port=%d queue=%d)", (unsigned int)tx_rs_thresh,
1791                              (int)dev->data->port_id, (int)queue_idx);
1792                 return -(EINVAL);
1793         }
1794
1795         /*
1796          * If rs_bit_thresh is greater than 1, then TX WTHRESH should be
1797          * set to 0. If WTHRESH is greater than zero, the RS bit is ignored
1798          * by the NIC and all descriptors are written back after the NIC
1799          * accumulates WTHRESH descriptors.
1800          */
1801         if ((tx_rs_thresh > 1) && (tx_conf->tx_thresh.wthresh != 0)) {
1802                 PMD_INIT_LOG(ERR, "TX WTHRESH must be set to 0 if "
1803                              "tx_rs_thresh is greater than 1. (tx_rs_thresh=%u "
1804                              "port=%d queue=%d)", (unsigned int)tx_rs_thresh,
1805                              (int)dev->data->port_id, (int)queue_idx);
1806                 return -(EINVAL);
1807         }
1808
1809         /* Free memory prior to re-allocation if needed... */
1810         if (dev->data->tx_queues[queue_idx] != NULL) {
1811                 ixgbe_tx_queue_release(dev->data->tx_queues[queue_idx]);
1812                 dev->data->tx_queues[queue_idx] = NULL;
1813         }
1814
1815         /* First allocate the tx queue data structure */
1816         txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct igb_tx_queue),
1817                                  CACHE_LINE_SIZE, socket_id);
1818         if (txq == NULL)
1819                 return (-ENOMEM);
1820
1821         /*
1822          * Allocate TX ring hardware descriptors. A memzone large enough to
1823          * handle the maximum ring size is allocated in order to allow for
1824          * resizing in later calls to the queue setup function.
1825          */
1826         tz = ring_dma_zone_reserve(dev, "tx_ring", queue_idx,
1827                         sizeof(union ixgbe_adv_tx_desc) * IXGBE_MAX_RING_DESC,
1828                         socket_id);
1829         if (tz == NULL) {
1830                 ixgbe_tx_queue_release(txq);
1831                 return (-ENOMEM);
1832         }
1833
1834         txq->nb_tx_desc = nb_desc;
1835         txq->tx_rs_thresh = tx_rs_thresh;
1836         txq->tx_free_thresh = tx_free_thresh;
1837         txq->pthresh = tx_conf->tx_thresh.pthresh;
1838         txq->hthresh = tx_conf->tx_thresh.hthresh;
1839         txq->wthresh = tx_conf->tx_thresh.wthresh;
1840         txq->queue_id = queue_idx;
1841         txq->reg_idx = (uint16_t)((RTE_ETH_DEV_SRIOV(dev).active == 0) ?
1842                 queue_idx : RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx + queue_idx);
1843         txq->port_id = dev->data->port_id;
1844         txq->txq_flags = tx_conf->txq_flags;
1845         txq->ops = &def_txq_ops;
1846         txq->start_tx_per_q = tx_conf->start_tx_per_q;
1847
1848         /*
1849          * Modification to set VFTDT for virtual function if vf is detected
1850          */
1851         if (hw->mac.type == ixgbe_mac_82599_vf)
1852                 txq->tdt_reg_addr = IXGBE_PCI_REG_ADDR(hw, IXGBE_VFTDT(queue_idx));
1853         else
1854                 txq->tdt_reg_addr = IXGBE_PCI_REG_ADDR(hw, IXGBE_TDT(txq->reg_idx));
1855 #ifndef RTE_LIBRTE_XEN_DOM0
1856         txq->tx_ring_phys_addr = (uint64_t) tz->phys_addr;
1857 #else
1858         txq->tx_ring_phys_addr = rte_mem_phy2mch(tz->memseg_id, tz->phys_addr);
1859 #endif
1860         txq->tx_ring = (union ixgbe_adv_tx_desc *) tz->addr;
1861
1862         /* Allocate software ring */
1863         txq->sw_ring = rte_zmalloc_socket("txq->sw_ring",
1864                                 sizeof(struct igb_tx_entry) * nb_desc,
1865                                 CACHE_LINE_SIZE, socket_id);
1866         if (txq->sw_ring == NULL) {
1867                 ixgbe_tx_queue_release(txq);
1868                 return (-ENOMEM);
1869         }
1870         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64,
1871                      txq->sw_ring, txq->tx_ring, txq->tx_ring_phys_addr);
1872
1873         /* Use a simple Tx queue (no offloads, no multi segs) if possible */
1874         if (((txq->txq_flags & IXGBE_SIMPLE_FLAGS) == IXGBE_SIMPLE_FLAGS) &&
1875             (txq->tx_rs_thresh >= RTE_PMD_IXGBE_TX_MAX_BURST)) {
1876                 PMD_INIT_LOG(INFO, "Using simple tx code path");
1877 #ifdef RTE_IXGBE_INC_VECTOR
1878                 if (txq->tx_rs_thresh <= RTE_IXGBE_TX_MAX_FREE_BUF_SZ &&
1879                     ixgbe_txq_vec_setup(txq) == 0) {
1880                         PMD_INIT_LOG(INFO, "Vector tx enabled.");
1881                         dev->tx_pkt_burst = ixgbe_xmit_pkts_vec;
1882                 }
1883                 else
1884 #endif
1885                         dev->tx_pkt_burst = ixgbe_xmit_pkts_simple;
1886         } else {
1887                 PMD_INIT_LOG(INFO, "Using full-featured tx code path");
1888                 PMD_INIT_LOG(INFO, " - txq_flags = %lx "
1889                              "[IXGBE_SIMPLE_FLAGS=%lx]",
1890                              (long unsigned)txq->txq_flags,
1891                              (long unsigned)IXGBE_SIMPLE_FLAGS);
1892                 PMD_INIT_LOG(INFO, " - tx_rs_thresh = %lu "
1893                              "[RTE_PMD_IXGBE_TX_MAX_BURST=%lu]",
1894                              (long unsigned)txq->tx_rs_thresh,
1895                              (long unsigned)RTE_PMD_IXGBE_TX_MAX_BURST);
1896                 dev->tx_pkt_burst = ixgbe_xmit_pkts;
1897         }
1898
1899         txq->ops->reset(txq);
1900
1901         dev->data->tx_queues[queue_idx] = txq;
1902
1903
1904         return (0);
1905 }
1906
1907 static void
1908 ixgbe_rx_queue_release_mbufs(struct igb_rx_queue *rxq)
1909 {
1910         unsigned i;
1911
1912         if (rxq->sw_ring != NULL) {
1913                 for (i = 0; i < rxq->nb_rx_desc; i++) {
1914                         if (rxq->sw_ring[i].mbuf != NULL) {
1915                                 rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
1916                                 rxq->sw_ring[i].mbuf = NULL;
1917                         }
1918                 }
1919 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1920                 if (rxq->rx_nb_avail) {
1921                         for (i = 0; i < rxq->rx_nb_avail; ++i) {
1922                                 struct rte_mbuf *mb;
1923                                 mb = rxq->rx_stage[rxq->rx_next_avail + i];
1924                                 rte_pktmbuf_free_seg(mb);
1925                         }
1926                         rxq->rx_nb_avail = 0;
1927                 }
1928 #endif
1929         }
1930 }
1931
1932 static void
1933 ixgbe_rx_queue_release(struct igb_rx_queue *rxq)
1934 {
1935         if (rxq != NULL) {
1936                 ixgbe_rx_queue_release_mbufs(rxq);
1937                 rte_free(rxq->sw_ring);
1938                 rte_free(rxq);
1939         }
1940 }
1941
1942 void
1943 ixgbe_dev_rx_queue_release(void *rxq)
1944 {
1945         ixgbe_rx_queue_release(rxq);
1946 }
1947
1948 /*
1949  * Check if Rx Burst Bulk Alloc function can be used.
1950  * Return
1951  *        0: the preconditions are satisfied and the bulk allocation function
1952  *           can be used.
1953  *  -EINVAL: the preconditions are NOT satisfied and the default Rx burst
1954  *           function must be used.
1955  */
1956 static inline int
1957 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1958 check_rx_burst_bulk_alloc_preconditions(struct igb_rx_queue *rxq)
1959 #else
1960 check_rx_burst_bulk_alloc_preconditions(__rte_unused struct igb_rx_queue *rxq)
1961 #endif
1962 {
1963         int ret = 0;
1964
1965         /*
1966          * Make sure the following pre-conditions are satisfied:
1967          *   rxq->rx_free_thresh >= RTE_PMD_IXGBE_RX_MAX_BURST
1968          *   rxq->rx_free_thresh < rxq->nb_rx_desc
1969          *   (rxq->nb_rx_desc % rxq->rx_free_thresh) == 0
1970          *   rxq->nb_rx_desc<(IXGBE_MAX_RING_DESC-RTE_PMD_IXGBE_RX_MAX_BURST)
1971          * Scattered packets are not supported.  This should be checked
1972          * outside of this function.
1973          */
1974 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
1975         if (! (rxq->rx_free_thresh >= RTE_PMD_IXGBE_RX_MAX_BURST))
1976                 ret = -EINVAL;
1977         else if (! (rxq->rx_free_thresh < rxq->nb_rx_desc))
1978                 ret = -EINVAL;
1979         else if (! ((rxq->nb_rx_desc % rxq->rx_free_thresh) == 0))
1980                 ret = -EINVAL;
1981         else if (! (rxq->nb_rx_desc <
1982                (IXGBE_MAX_RING_DESC - RTE_PMD_IXGBE_RX_MAX_BURST)))
1983                 ret = -EINVAL;
1984 #else
1985         ret = -EINVAL;
1986 #endif
1987
1988         return ret;
1989 }
1990
1991 /* Reset dynamic igb_rx_queue fields back to defaults */
1992 static void
1993 ixgbe_reset_rx_queue(struct igb_rx_queue *rxq)
1994 {
1995         static const union ixgbe_adv_rx_desc zeroed_desc = { .read = {
1996                         .pkt_addr = 0}};
1997         unsigned i;
1998         uint16_t len;
1999
2000         /*
2001          * By default, the Rx queue setup function allocates enough memory for
2002          * IXGBE_MAX_RING_DESC.  The Rx Burst bulk allocation function requires
2003          * extra memory at the end of the descriptor ring to be zero'd out. A
2004          * pre-condition for using the Rx burst bulk alloc function is that the
2005          * number of descriptors is less than or equal to
2006          * (IXGBE_MAX_RING_DESC - RTE_PMD_IXGBE_RX_MAX_BURST). Check all the
2007          * constraints here to see if we need to zero out memory after the end
2008          * of the H/W descriptor ring.
2009          */
2010 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2011         if (check_rx_burst_bulk_alloc_preconditions(rxq) == 0)
2012                 /* zero out extra memory */
2013                 len = (uint16_t)(rxq->nb_rx_desc + RTE_PMD_IXGBE_RX_MAX_BURST);
2014         else
2015 #endif
2016                 /* do not zero out extra memory */
2017                 len = rxq->nb_rx_desc;
2018
2019         /*
2020          * Zero out HW ring memory. Zero out extra memory at the end of
2021          * the H/W ring so look-ahead logic in Rx Burst bulk alloc function
2022          * reads extra memory as zeros.
2023          */
2024         for (i = 0; i < len; i++) {
2025                 rxq->rx_ring[i] = zeroed_desc;
2026         }
2027
2028 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2029         /*
2030          * initialize extra software ring entries. Space for these extra
2031          * entries is always allocated
2032          */
2033         memset(&rxq->fake_mbuf, 0x0, sizeof(rxq->fake_mbuf));
2034         for (i = 0; i < RTE_PMD_IXGBE_RX_MAX_BURST; ++i) {
2035                 rxq->sw_ring[rxq->nb_rx_desc + i].mbuf = &rxq->fake_mbuf;
2036         }
2037
2038         rxq->rx_nb_avail = 0;
2039         rxq->rx_next_avail = 0;
2040         rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1);
2041 #endif /* RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC */
2042         rxq->rx_tail = 0;
2043         rxq->nb_rx_hold = 0;
2044         rxq->pkt_first_seg = NULL;
2045         rxq->pkt_last_seg = NULL;
2046 }
2047
2048 int
2049 ixgbe_dev_rx_queue_setup(struct rte_eth_dev *dev,
2050                          uint16_t queue_idx,
2051                          uint16_t nb_desc,
2052                          unsigned int socket_id,
2053                          const struct rte_eth_rxconf *rx_conf,
2054                          struct rte_mempool *mp)
2055 {
2056         const struct rte_memzone *rz;
2057         struct igb_rx_queue *rxq;
2058         struct ixgbe_hw     *hw;
2059         int use_def_burst_func = 1;
2060         uint16_t len;
2061
2062         PMD_INIT_FUNC_TRACE();
2063         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2064
2065         /*
2066          * Validate number of receive descriptors.
2067          * It must not exceed hardware maximum, and must be multiple
2068          * of IXGBE_ALIGN.
2069          */
2070         if (((nb_desc * sizeof(union ixgbe_adv_rx_desc)) % IXGBE_ALIGN) != 0 ||
2071             (nb_desc > IXGBE_MAX_RING_DESC) ||
2072             (nb_desc < IXGBE_MIN_RING_DESC)) {
2073                 return (-EINVAL);
2074         }
2075
2076         /* Free memory prior to re-allocation if needed... */
2077         if (dev->data->rx_queues[queue_idx] != NULL) {
2078                 ixgbe_rx_queue_release(dev->data->rx_queues[queue_idx]);
2079                 dev->data->rx_queues[queue_idx] = NULL;
2080         }
2081
2082         /* First allocate the rx queue data structure */
2083         rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct igb_rx_queue),
2084                                  CACHE_LINE_SIZE, socket_id);
2085         if (rxq == NULL)
2086                 return (-ENOMEM);
2087         rxq->mb_pool = mp;
2088         rxq->nb_rx_desc = nb_desc;
2089         rxq->rx_free_thresh = rx_conf->rx_free_thresh;
2090         rxq->queue_id = queue_idx;
2091         rxq->reg_idx = (uint16_t)((RTE_ETH_DEV_SRIOV(dev).active == 0) ?
2092                 queue_idx : RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx + queue_idx);
2093         rxq->port_id = dev->data->port_id;
2094         rxq->crc_len = (uint8_t) ((dev->data->dev_conf.rxmode.hw_strip_crc) ?
2095                                                         0 : ETHER_CRC_LEN);
2096         rxq->drop_en = rx_conf->rx_drop_en;
2097         rxq->start_rx_per_q = rx_conf->start_rx_per_q;
2098
2099         /*
2100          * Allocate RX ring hardware descriptors. A memzone large enough to
2101          * handle the maximum ring size is allocated in order to allow for
2102          * resizing in later calls to the queue setup function.
2103          */
2104         rz = ring_dma_zone_reserve(dev, "rx_ring", queue_idx,
2105                                    RX_RING_SZ, socket_id);
2106         if (rz == NULL) {
2107                 ixgbe_rx_queue_release(rxq);
2108                 return (-ENOMEM);
2109         }
2110
2111         /*
2112          * Zero init all the descriptors in the ring.
2113          */
2114         memset (rz->addr, 0, RX_RING_SZ);
2115
2116         /*
2117          * Modified to setup VFRDT for Virtual Function
2118          */
2119         if (hw->mac.type == ixgbe_mac_82599_vf) {
2120                 rxq->rdt_reg_addr =
2121                         IXGBE_PCI_REG_ADDR(hw, IXGBE_VFRDT(queue_idx));
2122                 rxq->rdh_reg_addr =
2123                         IXGBE_PCI_REG_ADDR(hw, IXGBE_VFRDH(queue_idx));
2124         }
2125         else {
2126                 rxq->rdt_reg_addr =
2127                         IXGBE_PCI_REG_ADDR(hw, IXGBE_RDT(rxq->reg_idx));
2128                 rxq->rdh_reg_addr =
2129                         IXGBE_PCI_REG_ADDR(hw, IXGBE_RDH(rxq->reg_idx));
2130         }
2131 #ifndef RTE_LIBRTE_XEN_DOM0
2132         rxq->rx_ring_phys_addr = (uint64_t) rz->phys_addr;
2133 #else
2134         rxq->rx_ring_phys_addr = rte_mem_phy2mch(rz->memseg_id, rz->phys_addr);
2135 #endif
2136         rxq->rx_ring = (union ixgbe_adv_rx_desc *) rz->addr;
2137
2138         /*
2139          * Allocate software ring. Allow for space at the end of the
2140          * S/W ring to make sure look-ahead logic in bulk alloc Rx burst
2141          * function does not access an invalid memory region.
2142          */
2143 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2144         len = (uint16_t)(nb_desc + RTE_PMD_IXGBE_RX_MAX_BURST);
2145 #else
2146         len = nb_desc;
2147 #endif
2148         rxq->sw_ring = rte_zmalloc_socket("rxq->sw_ring",
2149                                           sizeof(struct igb_rx_entry) * len,
2150                                           CACHE_LINE_SIZE, socket_id);
2151         if (rxq->sw_ring == NULL) {
2152                 ixgbe_rx_queue_release(rxq);
2153                 return (-ENOMEM);
2154         }
2155         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64,
2156                      rxq->sw_ring, rxq->rx_ring, rxq->rx_ring_phys_addr);
2157
2158         /*
2159          * Certain constraints must be met in order to use the bulk buffer
2160          * allocation Rx burst function.
2161          */
2162         use_def_burst_func = check_rx_burst_bulk_alloc_preconditions(rxq);
2163
2164         /* Check if pre-conditions are satisfied, and no Scattered Rx */
2165         if (!use_def_burst_func && !dev->data->scattered_rx) {
2166 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
2167                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions are "
2168                              "satisfied. Rx Burst Bulk Alloc function will be "
2169                              "used on port=%d, queue=%d.",
2170                              rxq->port_id, rxq->queue_id);
2171                 dev->rx_pkt_burst = ixgbe_recv_pkts_bulk_alloc;
2172 #ifdef RTE_IXGBE_INC_VECTOR
2173                 if (!ixgbe_rx_vec_condition_check(dev)) {
2174                         PMD_INIT_LOG(INFO, "Vector rx enabled, please make "
2175                                      "sure RX burst size no less than 32.");
2176                         ixgbe_rxq_vec_setup(rxq);
2177                         dev->rx_pkt_burst = ixgbe_recv_pkts_vec;
2178                 }
2179 #endif
2180 #endif
2181         } else {
2182                 PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions "
2183                              "are not satisfied, Scattered Rx is requested, "
2184                              "or RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC is not "
2185                              "enabled (port=%d, queue=%d).",
2186                              rxq->port_id, rxq->queue_id);
2187         }
2188         dev->data->rx_queues[queue_idx] = rxq;
2189
2190         ixgbe_reset_rx_queue(rxq);
2191
2192         return 0;
2193 }
2194
2195 uint32_t
2196 ixgbe_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
2197 {
2198 #define IXGBE_RXQ_SCAN_INTERVAL 4
2199         volatile union ixgbe_adv_rx_desc *rxdp;
2200         struct igb_rx_queue *rxq;
2201         uint32_t desc = 0;
2202
2203         if (rx_queue_id >= dev->data->nb_rx_queues) {
2204                 PMD_RX_LOG(ERR, "Invalid RX queue id=%d", rx_queue_id);
2205                 return 0;
2206         }
2207
2208         rxq = dev->data->rx_queues[rx_queue_id];
2209         rxdp = &(rxq->rx_ring[rxq->rx_tail]);
2210
2211         while ((desc < rxq->nb_rx_desc) &&
2212                 (rxdp->wb.upper.status_error & IXGBE_RXDADV_STAT_DD)) {
2213                 desc += IXGBE_RXQ_SCAN_INTERVAL;
2214                 rxdp += IXGBE_RXQ_SCAN_INTERVAL;
2215                 if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
2216                         rxdp = &(rxq->rx_ring[rxq->rx_tail +
2217                                 desc - rxq->nb_rx_desc]);
2218         }
2219
2220         return desc;
2221 }
2222
2223 int
2224 ixgbe_dev_rx_descriptor_done(void *rx_queue, uint16_t offset)
2225 {
2226         volatile union ixgbe_adv_rx_desc *rxdp;
2227         struct igb_rx_queue *rxq = rx_queue;
2228         uint32_t desc;
2229
2230         if (unlikely(offset >= rxq->nb_rx_desc))
2231                 return 0;
2232         desc = rxq->rx_tail + offset;
2233         if (desc >= rxq->nb_rx_desc)
2234                 desc -= rxq->nb_rx_desc;
2235
2236         rxdp = &rxq->rx_ring[desc];
2237         return !!(rxdp->wb.upper.status_error & IXGBE_RXDADV_STAT_DD);
2238 }
2239
2240 void
2241 ixgbe_dev_clear_queues(struct rte_eth_dev *dev)
2242 {
2243         unsigned i;
2244
2245         PMD_INIT_FUNC_TRACE();
2246
2247         for (i = 0; i < dev->data->nb_tx_queues; i++) {
2248                 struct igb_tx_queue *txq = dev->data->tx_queues[i];
2249                 if (txq != NULL) {
2250                         txq->ops->release_mbufs(txq);
2251                         txq->ops->reset(txq);
2252                 }
2253         }
2254
2255         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2256                 struct igb_rx_queue *rxq = dev->data->rx_queues[i];
2257                 if (rxq != NULL) {
2258                         ixgbe_rx_queue_release_mbufs(rxq);
2259                         ixgbe_reset_rx_queue(rxq);
2260                 }
2261         }
2262 }
2263
2264 /*********************************************************************
2265  *
2266  *  Device RX/TX init functions
2267  *
2268  **********************************************************************/
2269
2270 /**
2271  * Receive Side Scaling (RSS)
2272  * See section 7.1.2.8 in the following document:
2273  *     "Intel 82599 10 GbE Controller Datasheet" - Revision 2.1 October 2009
2274  *
2275  * Principles:
2276  * The source and destination IP addresses of the IP header and the source
2277  * and destination ports of TCP/UDP headers, if any, of received packets are
2278  * hashed against a configurable random key to compute a 32-bit RSS hash result.
2279  * The seven (7) LSBs of the 32-bit hash result are used as an index into a
2280  * 128-entry redirection table (RETA).  Each entry of the RETA provides a 3-bit
2281  * RSS output index which is used as the RX queue index where to store the
2282  * received packets.
2283  * The following output is supplied in the RX write-back descriptor:
2284  *     - 32-bit result of the Microsoft RSS hash function,
2285  *     - 4-bit RSS type field.
2286  */
2287
2288 /*
2289  * RSS random key supplied in section 7.1.2.8.3 of the Intel 82599 datasheet.
2290  * Used as the default key.
2291  */
2292 static uint8_t rss_intel_key[40] = {
2293         0x6D, 0x5A, 0x56, 0xDA, 0x25, 0x5B, 0x0E, 0xC2,
2294         0x41, 0x67, 0x25, 0x3D, 0x43, 0xA3, 0x8F, 0xB0,
2295         0xD0, 0xCA, 0x2B, 0xCB, 0xAE, 0x7B, 0x30, 0xB4,
2296         0x77, 0xCB, 0x2D, 0xA3, 0x80, 0x30, 0xF2, 0x0C,
2297         0x6A, 0x42, 0xB7, 0x3B, 0xBE, 0xAC, 0x01, 0xFA,
2298 };
2299
2300 static void
2301 ixgbe_rss_disable(struct rte_eth_dev *dev)
2302 {
2303         struct ixgbe_hw *hw;
2304         uint32_t mrqc;
2305
2306         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2307         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2308         mrqc &= ~IXGBE_MRQC_RSSEN;
2309         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2310 }
2311
2312 static void
2313 ixgbe_hw_rss_hash_set(struct ixgbe_hw *hw, struct rte_eth_rss_conf *rss_conf)
2314 {
2315         uint8_t  *hash_key;
2316         uint32_t mrqc;
2317         uint32_t rss_key;
2318         uint64_t rss_hf;
2319         uint16_t i;
2320
2321         hash_key = rss_conf->rss_key;
2322         if (hash_key != NULL) {
2323                 /* Fill in RSS hash key */
2324                 for (i = 0; i < 10; i++) {
2325                         rss_key  = hash_key[(i * 4)];
2326                         rss_key |= hash_key[(i * 4) + 1] << 8;
2327                         rss_key |= hash_key[(i * 4) + 2] << 16;
2328                         rss_key |= hash_key[(i * 4) + 3] << 24;
2329                         IXGBE_WRITE_REG_ARRAY(hw, IXGBE_RSSRK(0), i, rss_key);
2330                 }
2331         }
2332
2333         /* Set configured hashing protocols in MRQC register */
2334         rss_hf = rss_conf->rss_hf;
2335         mrqc = IXGBE_MRQC_RSSEN; /* Enable RSS */
2336         if (rss_hf & ETH_RSS_IPV4)
2337                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4;
2338         if (rss_hf & ETH_RSS_IPV4_TCP)
2339                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_TCP;
2340         if (rss_hf & ETH_RSS_IPV6)
2341                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6;
2342         if (rss_hf & ETH_RSS_IPV6_EX)
2343                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX;
2344         if (rss_hf & ETH_RSS_IPV6_TCP)
2345                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2346         if (rss_hf & ETH_RSS_IPV6_TCP_EX)
2347                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP;
2348         if (rss_hf & ETH_RSS_IPV4_UDP)
2349                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2350         if (rss_hf & ETH_RSS_IPV6_UDP)
2351                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2352         if (rss_hf & ETH_RSS_IPV6_UDP_EX)
2353                 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP;
2354         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2355 }
2356
2357 int
2358 ixgbe_dev_rss_hash_update(struct rte_eth_dev *dev,
2359                           struct rte_eth_rss_conf *rss_conf)
2360 {
2361         struct ixgbe_hw *hw;
2362         uint32_t mrqc;
2363         uint64_t rss_hf;
2364
2365         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2366
2367         /*
2368          * Excerpt from section 7.1.2.8 Receive-Side Scaling (RSS):
2369          *     "RSS enabling cannot be done dynamically while it must be
2370          *      preceded by a software reset"
2371          * Before changing anything, first check that the update RSS operation
2372          * does not attempt to disable RSS, if RSS was enabled at
2373          * initialization time, or does not attempt to enable RSS, if RSS was
2374          * disabled at initialization time.
2375          */
2376         rss_hf = rss_conf->rss_hf & IXGBE_RSS_OFFLOAD_ALL;
2377         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2378         if (!(mrqc & IXGBE_MRQC_RSSEN)) { /* RSS disabled */
2379                 if (rss_hf != 0) /* Enable RSS */
2380                         return -(EINVAL);
2381                 return 0; /* Nothing to do */
2382         }
2383         /* RSS enabled */
2384         if (rss_hf == 0) /* Disable RSS */
2385                 return -(EINVAL);
2386         ixgbe_hw_rss_hash_set(hw, rss_conf);
2387         return 0;
2388 }
2389
2390 int
2391 ixgbe_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2392                             struct rte_eth_rss_conf *rss_conf)
2393 {
2394         struct ixgbe_hw *hw;
2395         uint8_t *hash_key;
2396         uint32_t mrqc;
2397         uint32_t rss_key;
2398         uint64_t rss_hf;
2399         uint16_t i;
2400
2401         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2402         hash_key = rss_conf->rss_key;
2403         if (hash_key != NULL) {
2404                 /* Return RSS hash key */
2405                 for (i = 0; i < 10; i++) {
2406                         rss_key = IXGBE_READ_REG_ARRAY(hw, IXGBE_RSSRK(0), i);
2407                         hash_key[(i * 4)] = rss_key & 0x000000FF;
2408                         hash_key[(i * 4) + 1] = (rss_key >> 8) & 0x000000FF;
2409                         hash_key[(i * 4) + 2] = (rss_key >> 16) & 0x000000FF;
2410                         hash_key[(i * 4) + 3] = (rss_key >> 24) & 0x000000FF;
2411                 }
2412         }
2413
2414         /* Get RSS functions configured in MRQC register */
2415         mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2416         if ((mrqc & IXGBE_MRQC_RSSEN) == 0) { /* RSS is disabled */
2417                 rss_conf->rss_hf = 0;
2418                 return 0;
2419         }
2420         rss_hf = 0;
2421         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4)
2422                 rss_hf |= ETH_RSS_IPV4;
2423         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4_TCP)
2424                 rss_hf |= ETH_RSS_IPV4_TCP;
2425         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6)
2426                 rss_hf |= ETH_RSS_IPV6;
2427         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX)
2428                 rss_hf |= ETH_RSS_IPV6_EX;
2429         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_TCP)
2430                 rss_hf |= ETH_RSS_IPV6_TCP;
2431         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP)
2432                 rss_hf |= ETH_RSS_IPV6_TCP_EX;
2433         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV4_UDP)
2434                 rss_hf |= ETH_RSS_IPV4_UDP;
2435         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_UDP)
2436                 rss_hf |= ETH_RSS_IPV6_UDP;
2437         if (mrqc & IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP)
2438                 rss_hf |= ETH_RSS_IPV6_UDP_EX;
2439         rss_conf->rss_hf = rss_hf;
2440         return 0;
2441 }
2442
2443 static void
2444 ixgbe_rss_configure(struct rte_eth_dev *dev)
2445 {
2446         struct rte_eth_rss_conf rss_conf;
2447         struct ixgbe_hw *hw;
2448         uint32_t reta;
2449         uint16_t i;
2450         uint16_t j;
2451
2452         PMD_INIT_FUNC_TRACE();
2453         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2454
2455         /*
2456          * Fill in redirection table
2457          * The byte-swap is needed because NIC registers are in
2458          * little-endian order.
2459          */
2460         reta = 0;
2461         for (i = 0, j = 0; i < 128; i++, j++) {
2462                 if (j == dev->data->nb_rx_queues)
2463                         j = 0;
2464                 reta = (reta << 8) | j;
2465                 if ((i & 3) == 3)
2466                         IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2),
2467                                         rte_bswap32(reta));
2468         }
2469
2470         /*
2471          * Configure the RSS key and the RSS protocols used to compute
2472          * the RSS hash of input packets.
2473          */
2474         rss_conf = dev->data->dev_conf.rx_adv_conf.rss_conf;
2475         if ((rss_conf.rss_hf & IXGBE_RSS_OFFLOAD_ALL) == 0) {
2476                 ixgbe_rss_disable(dev);
2477                 return;
2478         }
2479         if (rss_conf.rss_key == NULL)
2480                 rss_conf.rss_key = rss_intel_key; /* Default hash key */
2481         ixgbe_hw_rss_hash_set(hw, &rss_conf);
2482 }
2483
2484 #define NUM_VFTA_REGISTERS 128
2485 #define NIC_RX_BUFFER_SIZE 0x200
2486
2487 static void
2488 ixgbe_vmdq_dcb_configure(struct rte_eth_dev *dev)
2489 {
2490         struct rte_eth_vmdq_dcb_conf *cfg;
2491         struct ixgbe_hw *hw;
2492         enum rte_eth_nb_pools num_pools;
2493         uint32_t mrqc, vt_ctl, queue_mapping, vlanctrl;
2494         uint16_t pbsize;
2495         uint8_t nb_tcs; /* number of traffic classes */
2496         int i;
2497
2498         PMD_INIT_FUNC_TRACE();
2499         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2500         cfg = &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
2501         num_pools = cfg->nb_queue_pools;
2502         /* Check we have a valid number of pools */
2503         if (num_pools != ETH_16_POOLS && num_pools != ETH_32_POOLS) {
2504                 ixgbe_rss_disable(dev);
2505                 return;
2506         }
2507         /* 16 pools -> 8 traffic classes, 32 pools -> 4 traffic classes */
2508         nb_tcs = (uint8_t)(ETH_VMDQ_DCB_NUM_QUEUES / (int)num_pools);
2509
2510         /*
2511          * RXPBSIZE
2512          * split rx buffer up into sections, each for 1 traffic class
2513          */
2514         pbsize = (uint16_t)(NIC_RX_BUFFER_SIZE / nb_tcs);
2515         for (i = 0 ; i < nb_tcs; i++) {
2516                 uint32_t rxpbsize = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
2517                 rxpbsize &= (~(0x3FF << IXGBE_RXPBSIZE_SHIFT));
2518                 /* clear 10 bits. */
2519                 rxpbsize |= (pbsize << IXGBE_RXPBSIZE_SHIFT); /* set value */
2520                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2521         }
2522         /* zero alloc all unused TCs */
2523         for (i = nb_tcs; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2524                 uint32_t rxpbsize = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
2525                 rxpbsize &= (~( 0x3FF << IXGBE_RXPBSIZE_SHIFT ));
2526                 /* clear 10 bits. */
2527                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2528         }
2529
2530         /* MRQC: enable vmdq and dcb */
2531         mrqc = ((num_pools == ETH_16_POOLS) ? \
2532                 IXGBE_MRQC_VMDQRT8TCEN : IXGBE_MRQC_VMDQRT4TCEN );
2533         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2534
2535         /* PFVTCTL: turn on virtualisation and set the default pool */
2536         vt_ctl = IXGBE_VT_CTL_VT_ENABLE | IXGBE_VT_CTL_REPLEN;
2537         if (cfg->enable_default_pool) {
2538                 vt_ctl |= (cfg->default_pool << IXGBE_VT_CTL_POOL_SHIFT);
2539         } else {
2540                 vt_ctl |= IXGBE_VT_CTL_DIS_DEFPL;
2541         }
2542
2543         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vt_ctl);
2544
2545         /* RTRUP2TC: mapping user priorities to traffic classes (TCs) */
2546         queue_mapping = 0;
2547         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
2548                 /*
2549                  * mapping is done with 3 bits per priority,
2550                  * so shift by i*3 each time
2551                  */
2552                 queue_mapping |= ((cfg->dcb_queue[i] & 0x07) << (i * 3));
2553
2554         IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, queue_mapping);
2555
2556         /* RTRPCS: DCB related */
2557         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, IXGBE_RMCS_RRM);
2558
2559         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2560         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2561         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
2562         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2563
2564         /* VFTA - enable all vlan filters */
2565         for (i = 0; i < NUM_VFTA_REGISTERS; i++) {
2566                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
2567         }
2568
2569         /* VFRE: pool enabling for receive - 16 or 32 */
2570         IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), \
2571                         num_pools == ETH_16_POOLS ? 0xFFFF : 0xFFFFFFFF);
2572
2573         /*
2574          * MPSAR - allow pools to read specific mac addresses
2575          * In this case, all pools should be able to read from mac addr 0
2576          */
2577         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(0), 0xFFFFFFFF);
2578         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(0), 0xFFFFFFFF);
2579
2580         /* PFVLVF, PFVLVFB: set up filters for vlan tags as configured */
2581         for (i = 0; i < cfg->nb_pool_maps; i++) {
2582                 /* set vlan id in VF register and set the valid bit */
2583                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(i), (IXGBE_VLVF_VIEN | \
2584                                 (cfg->pool_map[i].vlan_id & 0xFFF)));
2585                 /*
2586                  * Put the allowed pools in VFB reg. As we only have 16 or 32
2587                  * pools, we only need to use the first half of the register
2588                  * i.e. bits 0-31
2589                  */
2590                 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(i*2), cfg->pool_map[i].pools);
2591         }
2592 }
2593
2594 /**
2595  * ixgbe_dcb_config_tx_hw_config - Configure general DCB TX parameters
2596  * @hw: pointer to hardware structure
2597  * @dcb_config: pointer to ixgbe_dcb_config structure
2598  */
2599 static void
2600 ixgbe_dcb_tx_hw_config(struct ixgbe_hw *hw,
2601                struct ixgbe_dcb_config *dcb_config)
2602 {
2603         uint32_t reg;
2604         uint32_t q;
2605
2606         PMD_INIT_FUNC_TRACE();
2607         if (hw->mac.type != ixgbe_mac_82598EB) {
2608                 /* Disable the Tx desc arbiter so that MTQC can be changed */
2609                 reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2610                 reg |= IXGBE_RTTDCS_ARBDIS;
2611                 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
2612
2613                 /* Enable DCB for Tx with 8 TCs */
2614                 if (dcb_config->num_tcs.pg_tcs == 8) {
2615                         reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2616                 }
2617                 else {
2618                         reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2619                 }
2620                 if (dcb_config->vt_mode)
2621                     reg |= IXGBE_MTQC_VT_ENA;
2622                 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2623
2624                 /* Disable drop for all queues */
2625                 for (q = 0; q < 128; q++)
2626                         IXGBE_WRITE_REG(hw, IXGBE_QDE,
2627                      (IXGBE_QDE_WRITE | (q << IXGBE_QDE_IDX_SHIFT)));
2628
2629                 /* Enable the Tx desc arbiter */
2630                 reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2631                 reg &= ~IXGBE_RTTDCS_ARBDIS;
2632                 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
2633
2634                 /* Enable Security TX Buffer IFG for DCB */
2635                 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2636                 reg |= IXGBE_SECTX_DCB;
2637                 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2638         }
2639         return;
2640 }
2641
2642 /**
2643  * ixgbe_vmdq_dcb_hw_tx_config - Configure general VMDQ+DCB TX parameters
2644  * @dev: pointer to rte_eth_dev structure
2645  * @dcb_config: pointer to ixgbe_dcb_config structure
2646  */
2647 static void
2648 ixgbe_vmdq_dcb_hw_tx_config(struct rte_eth_dev *dev,
2649                         struct ixgbe_dcb_config *dcb_config)
2650 {
2651         struct rte_eth_vmdq_dcb_tx_conf *vmdq_tx_conf =
2652                         &dev->data->dev_conf.tx_adv_conf.vmdq_dcb_tx_conf;
2653         struct ixgbe_hw *hw =
2654                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2655
2656         PMD_INIT_FUNC_TRACE();
2657         if (hw->mac.type != ixgbe_mac_82598EB)
2658                 /*PF VF Transmit Enable*/
2659                 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0),
2660                         vmdq_tx_conf->nb_queue_pools == ETH_16_POOLS ? 0xFFFF : 0xFFFFFFFF);
2661
2662         /*Configure general DCB TX parameters*/
2663         ixgbe_dcb_tx_hw_config(hw,dcb_config);
2664         return;
2665 }
2666
2667 static void
2668 ixgbe_vmdq_dcb_rx_config(struct rte_eth_dev *dev,
2669                         struct ixgbe_dcb_config *dcb_config)
2670 {
2671         struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
2672                         &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
2673         struct ixgbe_dcb_tc_config *tc;
2674         uint8_t i,j;
2675
2676         /* convert rte_eth_conf.rx_adv_conf to struct ixgbe_dcb_config */
2677         if (vmdq_rx_conf->nb_queue_pools == ETH_16_POOLS ) {
2678                 dcb_config->num_tcs.pg_tcs = ETH_8_TCS;
2679                 dcb_config->num_tcs.pfc_tcs = ETH_8_TCS;
2680         }
2681         else {
2682                 dcb_config->num_tcs.pg_tcs = ETH_4_TCS;
2683                 dcb_config->num_tcs.pfc_tcs = ETH_4_TCS;
2684         }
2685         /* User Priority to Traffic Class mapping */
2686         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2687                 j = vmdq_rx_conf->dcb_queue[i];
2688                 tc = &dcb_config->tc_config[j];
2689                 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap =
2690                                                 (uint8_t)(1 << j);
2691         }
2692 }
2693
2694 static void
2695 ixgbe_dcb_vt_tx_config(struct rte_eth_dev *dev,
2696                         struct ixgbe_dcb_config *dcb_config)
2697 {
2698         struct rte_eth_vmdq_dcb_tx_conf *vmdq_tx_conf =
2699                         &dev->data->dev_conf.tx_adv_conf.vmdq_dcb_tx_conf;
2700         struct ixgbe_dcb_tc_config *tc;
2701         uint8_t i,j;
2702
2703         /* convert rte_eth_conf.rx_adv_conf to struct ixgbe_dcb_config */
2704         if (vmdq_tx_conf->nb_queue_pools == ETH_16_POOLS ) {
2705                 dcb_config->num_tcs.pg_tcs = ETH_8_TCS;
2706                 dcb_config->num_tcs.pfc_tcs = ETH_8_TCS;
2707         }
2708         else {
2709                 dcb_config->num_tcs.pg_tcs = ETH_4_TCS;
2710                 dcb_config->num_tcs.pfc_tcs = ETH_4_TCS;
2711         }
2712
2713         /* User Priority to Traffic Class mapping */
2714         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2715                 j = vmdq_tx_conf->dcb_queue[i];
2716                 tc = &dcb_config->tc_config[j];
2717                 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap =
2718                                                 (uint8_t)(1 << j);
2719         }
2720         return;
2721 }
2722
2723 static void
2724 ixgbe_dcb_rx_config(struct rte_eth_dev *dev,
2725                 struct ixgbe_dcb_config *dcb_config)
2726 {
2727         struct rte_eth_dcb_rx_conf *rx_conf =
2728                         &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
2729         struct ixgbe_dcb_tc_config *tc;
2730         uint8_t i,j;
2731
2732         dcb_config->num_tcs.pg_tcs = (uint8_t)rx_conf->nb_tcs;
2733         dcb_config->num_tcs.pfc_tcs = (uint8_t)rx_conf->nb_tcs;
2734
2735         /* User Priority to Traffic Class mapping */
2736         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2737                 j = rx_conf->dcb_queue[i];
2738                 tc = &dcb_config->tc_config[j];
2739                 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap =
2740                                                 (uint8_t)(1 << j);
2741         }
2742 }
2743
2744 static void
2745 ixgbe_dcb_tx_config(struct rte_eth_dev *dev,
2746                 struct ixgbe_dcb_config *dcb_config)
2747 {
2748         struct rte_eth_dcb_tx_conf *tx_conf =
2749                         &dev->data->dev_conf.tx_adv_conf.dcb_tx_conf;
2750         struct ixgbe_dcb_tc_config *tc;
2751         uint8_t i,j;
2752
2753         dcb_config->num_tcs.pg_tcs = (uint8_t)tx_conf->nb_tcs;
2754         dcb_config->num_tcs.pfc_tcs = (uint8_t)tx_conf->nb_tcs;
2755
2756         /* User Priority to Traffic Class mapping */
2757         for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2758                 j = tx_conf->dcb_queue[i];
2759                 tc = &dcb_config->tc_config[j];
2760                 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap =
2761                                                 (uint8_t)(1 << j);
2762         }
2763 }
2764
2765 /**
2766  * ixgbe_dcb_rx_hw_config - Configure general DCB RX HW parameters
2767  * @hw: pointer to hardware structure
2768  * @dcb_config: pointer to ixgbe_dcb_config structure
2769  */
2770 static void
2771 ixgbe_dcb_rx_hw_config(struct ixgbe_hw *hw,
2772                struct ixgbe_dcb_config *dcb_config)
2773 {
2774         uint32_t reg;
2775         uint32_t vlanctrl;
2776         uint8_t i;
2777
2778         PMD_INIT_FUNC_TRACE();
2779         /*
2780          * Disable the arbiter before changing parameters
2781          * (always enable recycle mode; WSP)
2782          */
2783         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC | IXGBE_RTRPCS_ARBDIS;
2784         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
2785
2786         if (hw->mac.type != ixgbe_mac_82598EB) {
2787                 reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
2788                 if (dcb_config->num_tcs.pg_tcs == 4) {
2789                         if (dcb_config->vt_mode)
2790                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2791                                         IXGBE_MRQC_VMDQRT4TCEN;
2792                         else {
2793                                 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, 0);
2794                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2795                                         IXGBE_MRQC_RT4TCEN;
2796                         }
2797                 }
2798                 if (dcb_config->num_tcs.pg_tcs == 8) {
2799                         if (dcb_config->vt_mode)
2800                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2801                                         IXGBE_MRQC_VMDQRT8TCEN;
2802                         else {
2803                                 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, 0);
2804                                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) |
2805                                         IXGBE_MRQC_RT8TCEN;
2806                         }
2807                 }
2808
2809                 IXGBE_WRITE_REG(hw, IXGBE_MRQC, reg);
2810         }
2811
2812         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2813         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2814         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
2815         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2816
2817         /* VFTA - enable all vlan filters */
2818         for (i = 0; i < NUM_VFTA_REGISTERS; i++) {
2819                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
2820         }
2821
2822         /*
2823          * Configure Rx packet plane (recycle mode; WSP) and
2824          * enable arbiter
2825          */
2826         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC;
2827         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
2828
2829         return;
2830 }
2831
2832 static void
2833 ixgbe_dcb_hw_arbite_rx_config(struct ixgbe_hw *hw, uint16_t *refill,
2834                         uint16_t *max,uint8_t *bwg_id, uint8_t *tsa, uint8_t *map)
2835 {
2836         switch (hw->mac.type) {
2837         case ixgbe_mac_82598EB:
2838                 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
2839                 break;
2840         case ixgbe_mac_82599EB:
2841         case ixgbe_mac_X540:
2842                 ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id,
2843                                                   tsa, map);
2844                 break;
2845         default:
2846                 break;
2847         }
2848 }
2849
2850 static void
2851 ixgbe_dcb_hw_arbite_tx_config(struct ixgbe_hw *hw, uint16_t *refill, uint16_t *max,
2852                             uint8_t *bwg_id, uint8_t *tsa, uint8_t *map)
2853 {
2854         switch (hw->mac.type) {
2855         case ixgbe_mac_82598EB:
2856                 ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, bwg_id,tsa);
2857                 ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, bwg_id,tsa);
2858                 break;
2859         case ixgbe_mac_82599EB:
2860         case ixgbe_mac_X540:
2861                 ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max, bwg_id,tsa);
2862                 ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max, bwg_id,tsa, map);
2863                 break;
2864         default:
2865                 break;
2866         }
2867 }
2868
2869 #define DCB_RX_CONFIG  1
2870 #define DCB_TX_CONFIG  1
2871 #define DCB_TX_PB      1024
2872 /**
2873  * ixgbe_dcb_hw_configure - Enable DCB and configure
2874  * general DCB in VT mode and non-VT mode parameters
2875  * @dev: pointer to rte_eth_dev structure
2876  * @dcb_config: pointer to ixgbe_dcb_config structure
2877  */
2878 static int
2879 ixgbe_dcb_hw_configure(struct rte_eth_dev *dev,
2880                         struct ixgbe_dcb_config *dcb_config)
2881 {
2882         int     ret = 0;
2883         uint8_t i,pfc_en,nb_tcs;
2884         uint16_t pbsize;
2885         uint8_t config_dcb_rx = 0;
2886         uint8_t config_dcb_tx = 0;
2887         uint8_t tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2888         uint8_t bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2889         uint16_t refill[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2890         uint16_t max[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2891         uint8_t map[IXGBE_DCB_MAX_TRAFFIC_CLASS] = {0};
2892         struct ixgbe_dcb_tc_config *tc;
2893         uint32_t max_frame = dev->data->mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
2894         struct ixgbe_hw *hw =
2895                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2896
2897         switch(dev->data->dev_conf.rxmode.mq_mode){
2898         case ETH_MQ_RX_VMDQ_DCB:
2899                 dcb_config->vt_mode = true;
2900                 if (hw->mac.type != ixgbe_mac_82598EB) {
2901                         config_dcb_rx = DCB_RX_CONFIG;
2902                         /*
2903                          *get dcb and VT rx configuration parameters
2904                          *from rte_eth_conf
2905                          */
2906                         ixgbe_vmdq_dcb_rx_config(dev,dcb_config);
2907                         /*Configure general VMDQ and DCB RX parameters*/
2908                         ixgbe_vmdq_dcb_configure(dev);
2909                 }
2910                 break;
2911         case ETH_MQ_RX_DCB:
2912                 dcb_config->vt_mode = false;
2913                 config_dcb_rx = DCB_RX_CONFIG;
2914                 /* Get dcb TX configuration parameters from rte_eth_conf */
2915                 ixgbe_dcb_rx_config(dev,dcb_config);
2916                 /*Configure general DCB RX parameters*/
2917                 ixgbe_dcb_rx_hw_config(hw, dcb_config);
2918                 break;
2919         default:
2920                 PMD_INIT_LOG(ERR, "Incorrect DCB RX mode configuration");
2921                 break;
2922         }
2923         switch (dev->data->dev_conf.txmode.mq_mode) {
2924         case ETH_MQ_TX_VMDQ_DCB:
2925                 dcb_config->vt_mode = true;
2926                 config_dcb_tx = DCB_TX_CONFIG;
2927                 /* get DCB and VT TX configuration parameters from rte_eth_conf */
2928                 ixgbe_dcb_vt_tx_config(dev,dcb_config);
2929                 /*Configure general VMDQ and DCB TX parameters*/
2930                 ixgbe_vmdq_dcb_hw_tx_config(dev,dcb_config);
2931                 break;
2932
2933         case ETH_MQ_TX_DCB:
2934                 dcb_config->vt_mode = false;
2935                 config_dcb_tx = DCB_TX_CONFIG;
2936                 /*get DCB TX configuration parameters from rte_eth_conf*/
2937                 ixgbe_dcb_tx_config(dev,dcb_config);
2938                 /*Configure general DCB TX parameters*/
2939                 ixgbe_dcb_tx_hw_config(hw, dcb_config);
2940                 break;
2941         default:
2942                 PMD_INIT_LOG(ERR, "Incorrect DCB TX mode configuration");
2943                 break;
2944         }
2945
2946         nb_tcs = dcb_config->num_tcs.pfc_tcs;
2947         /* Unpack map */
2948         ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
2949         if(nb_tcs == ETH_4_TCS) {
2950                 /* Avoid un-configured priority mapping to TC0 */
2951                 uint8_t j = 4;
2952                 uint8_t mask = 0xFF;
2953                 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES - 4; i++)
2954                         mask = (uint8_t)(mask & (~ (1 << map[i])));
2955                 for (i = 0; mask && (i < IXGBE_DCB_MAX_TRAFFIC_CLASS); i++) {
2956                         if ((mask & 0x1) && (j < ETH_DCB_NUM_USER_PRIORITIES))
2957                                 map[j++] = i;
2958                         mask >>= 1;
2959                 }
2960                 /* Re-configure 4 TCs BW */
2961                 for (i = 0; i < nb_tcs; i++) {
2962                         tc = &dcb_config->tc_config[i];
2963                         tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
2964                                                 (uint8_t)(100 / nb_tcs);
2965                         tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
2966                                                 (uint8_t)(100 / nb_tcs);
2967                 }
2968                 for (; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
2969                         tc = &dcb_config->tc_config[i];
2970                         tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent = 0;
2971                         tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent = 0;
2972                 }
2973         }
2974
2975         if(config_dcb_rx) {
2976                 /* Set RX buffer size */
2977                 pbsize = (uint16_t)(NIC_RX_BUFFER_SIZE / nb_tcs);
2978                 uint32_t rxpbsize = pbsize << IXGBE_RXPBSIZE_SHIFT;
2979                 for (i = 0 ; i < nb_tcs; i++) {
2980                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpbsize);
2981                 }
2982                 /* zero alloc all unused TCs */
2983                 for (; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2984                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
2985                 }
2986         }
2987         if(config_dcb_tx) {
2988                 /* Only support an equally distributed Tx packet buffer strategy. */
2989                 uint32_t txpktsize = IXGBE_TXPBSIZE_MAX / nb_tcs;
2990                 uint32_t txpbthresh = (txpktsize / DCB_TX_PB) - IXGBE_TXPKT_SIZE_MAX;
2991                 for (i = 0; i < nb_tcs; i++) {
2992                         IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
2993                         IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
2994                 }
2995                 /* Clear unused TCs, if any, to zero buffer size*/
2996                 for (; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
2997                         IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
2998                         IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
2999                 }
3000         }
3001
3002         /*Calculates traffic class credits*/
3003         ixgbe_dcb_calculate_tc_credits_cee(hw, dcb_config,max_frame,
3004                                 IXGBE_DCB_TX_CONFIG);
3005         ixgbe_dcb_calculate_tc_credits_cee(hw, dcb_config,max_frame,
3006                                 IXGBE_DCB_RX_CONFIG);
3007
3008         if(config_dcb_rx) {
3009                 /* Unpack CEE standard containers */
3010                 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_RX_CONFIG, refill);
3011                 ixgbe_dcb_unpack_max_cee(dcb_config, max);
3012                 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_RX_CONFIG, bwgid);
3013                 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_RX_CONFIG, tsa);
3014                 /* Configure PG(ETS) RX */
3015                 ixgbe_dcb_hw_arbite_rx_config(hw,refill,max,bwgid,tsa,map);
3016         }
3017
3018         if(config_dcb_tx) {
3019                 /* Unpack CEE standard containers */
3020                 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
3021                 ixgbe_dcb_unpack_max_cee(dcb_config, max);
3022                 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
3023                 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
3024                 /* Configure PG(ETS) TX */
3025                 ixgbe_dcb_hw_arbite_tx_config(hw,refill,max,bwgid,tsa,map);
3026         }
3027
3028         /*Configure queue statistics registers*/
3029         ixgbe_dcb_config_tc_stats_82599(hw, dcb_config);
3030
3031         /* Check if the PFC is supported */
3032         if(dev->data->dev_conf.dcb_capability_en & ETH_DCB_PFC_SUPPORT) {
3033                 pbsize = (uint16_t) (NIC_RX_BUFFER_SIZE / nb_tcs);
3034                 for (i = 0; i < nb_tcs; i++) {
3035                         /*
3036                         * If the TC count is 8,and the default high_water is 48,
3037                         * the low_water is 16 as default.
3038                         */
3039                         hw->fc.high_water[i] = (pbsize * 3 ) / 4;
3040                         hw->fc.low_water[i] = pbsize / 4;
3041                         /* Enable pfc for this TC */
3042                         tc = &dcb_config->tc_config[i];
3043                         tc->pfc = ixgbe_dcb_pfc_enabled;
3044                 }
3045                 ixgbe_dcb_unpack_pfc_cee(dcb_config, map, &pfc_en);
3046                 if(dcb_config->num_tcs.pfc_tcs == ETH_4_TCS)
3047                         pfc_en &= 0x0F;
3048                 ret = ixgbe_dcb_config_pfc(hw, pfc_en, map);
3049         }
3050
3051         return ret;
3052 }
3053
3054 /**
3055  * ixgbe_configure_dcb - Configure DCB  Hardware
3056  * @dev: pointer to rte_eth_dev
3057  */
3058 void ixgbe_configure_dcb(struct rte_eth_dev *dev)
3059 {
3060         struct ixgbe_dcb_config *dcb_cfg =
3061                         IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
3062         struct rte_eth_conf *dev_conf = &(dev->data->dev_conf);
3063
3064         PMD_INIT_FUNC_TRACE();
3065
3066         /* check support mq_mode for DCB */
3067         if ((dev_conf->rxmode.mq_mode != ETH_MQ_RX_VMDQ_DCB) &&
3068             (dev_conf->rxmode.mq_mode != ETH_MQ_RX_DCB))
3069                 return;
3070
3071         if (dev->data->nb_rx_queues != ETH_DCB_NUM_QUEUES)
3072                 return;
3073
3074         /** Configure DCB hardware **/
3075         ixgbe_dcb_hw_configure(dev,dcb_cfg);
3076
3077         return;
3078 }
3079
3080 /*
3081  * VMDq only support for 10 GbE NIC.
3082  */
3083 static void
3084 ixgbe_vmdq_rx_hw_configure(struct rte_eth_dev *dev)
3085 {
3086         struct rte_eth_vmdq_rx_conf *cfg;
3087         struct ixgbe_hw *hw;
3088         enum rte_eth_nb_pools num_pools;
3089         uint32_t mrqc, vt_ctl, vlanctrl;
3090         int i;
3091
3092         PMD_INIT_FUNC_TRACE();
3093         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3094         cfg = &dev->data->dev_conf.rx_adv_conf.vmdq_rx_conf;
3095         num_pools = cfg->nb_queue_pools;
3096
3097         ixgbe_rss_disable(dev);
3098
3099         /* MRQC: enable vmdq */
3100         mrqc = IXGBE_MRQC_VMDQEN;
3101         IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3102
3103         /* PFVTCTL: turn on virtualisation and set the default pool */
3104         vt_ctl = IXGBE_VT_CTL_VT_ENABLE | IXGBE_VT_CTL_REPLEN;
3105         if (cfg->enable_default_pool)
3106                 vt_ctl |= (cfg->default_pool << IXGBE_VT_CTL_POOL_SHIFT);
3107         else
3108                 vt_ctl |= IXGBE_VT_CTL_DIS_DEFPL;
3109
3110         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vt_ctl);
3111
3112         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
3113         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3114         vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
3115         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
3116
3117         /* VFTA - enable all vlan filters */
3118         for (i = 0; i < NUM_VFTA_REGISTERS; i++)
3119                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), UINT32_MAX);
3120
3121         /* VFRE: pool enabling for receive - 64 */
3122         IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), UINT32_MAX);
3123         if (num_pools == ETH_64_POOLS)
3124                 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), UINT32_MAX);
3125
3126         /*
3127          * MPSAR - allow pools to read specific mac addresses
3128          * In this case, all pools should be able to read from mac addr 0
3129          */
3130         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(0), UINT32_MAX);
3131         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(0), UINT32_MAX);
3132
3133         /* PFVLVF, PFVLVFB: set up filters for vlan tags as configured */
3134         for (i = 0; i < cfg->nb_pool_maps; i++) {
3135                 /* set vlan id in VF register and set the valid bit */
3136                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(i), (IXGBE_VLVF_VIEN | \
3137                                 (cfg->pool_map[i].vlan_id & IXGBE_RXD_VLAN_ID_MASK)));
3138                 /*
3139                  * Put the allowed pools in VFB reg. As we only have 16 or 64
3140                  * pools, we only need to use the first half of the register
3141                  * i.e. bits 0-31
3142                  */
3143                 if (((cfg->pool_map[i].pools >> 32) & UINT32_MAX) == 0)
3144                         IXGBE_WRITE_REG(hw, IXGBE_VLVFB(i*2), \
3145                                         (cfg->pool_map[i].pools & UINT32_MAX));
3146                 else
3147                         IXGBE_WRITE_REG(hw, IXGBE_VLVFB((i*2+1)), \
3148                                         ((cfg->pool_map[i].pools >> 32) \
3149                                         & UINT32_MAX));
3150
3151         }
3152
3153         /* PFDMA Tx General Switch Control Enables VMDQ loopback */
3154         if (cfg->enable_loop_back) {
3155                 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3156                 for (i = 0; i < RTE_IXGBE_VMTXSW_REGISTER_COUNT; i++)
3157                         IXGBE_WRITE_REG(hw, IXGBE_VMTXSW(i), UINT32_MAX);
3158         }
3159
3160         IXGBE_WRITE_FLUSH(hw);
3161 }
3162
3163 /*
3164  * ixgbe_dcb_config_tx_hw_config - Configure general VMDq TX parameters
3165  * @hw: pointer to hardware structure
3166  */
3167 static void
3168 ixgbe_vmdq_tx_hw_configure(struct ixgbe_hw *hw)
3169 {
3170         uint32_t reg;
3171         uint32_t q;
3172
3173         PMD_INIT_FUNC_TRACE();
3174         /*PF VF Transmit Enable*/
3175         IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), UINT32_MAX);
3176         IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), UINT32_MAX);
3177
3178         /* Disable the Tx desc arbiter so that MTQC can be changed */
3179         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3180         reg |= IXGBE_RTTDCS_ARBDIS;
3181         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
3182
3183         reg = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF;
3184         IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
3185
3186         /* Disable drop for all queues */
3187         for (q = 0; q < IXGBE_MAX_RX_QUEUE_NUM; q++)
3188                 IXGBE_WRITE_REG(hw, IXGBE_QDE,
3189                   (IXGBE_QDE_WRITE | (q << IXGBE_QDE_IDX_SHIFT)));
3190
3191         /* Enable the Tx desc arbiter */
3192         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3193         reg &= ~IXGBE_RTTDCS_ARBDIS;
3194         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
3195
3196         IXGBE_WRITE_FLUSH(hw);
3197
3198         return;
3199 }
3200
3201 static int
3202 ixgbe_alloc_rx_queue_mbufs(struct igb_rx_queue *rxq)
3203 {
3204         struct igb_rx_entry *rxe = rxq->sw_ring;
3205         uint64_t dma_addr;
3206         unsigned i;
3207
3208         /* Initialize software ring entries */
3209         for (i = 0; i < rxq->nb_rx_desc; i++) {
3210                 volatile union ixgbe_adv_rx_desc *rxd;
3211                 struct rte_mbuf *mbuf = rte_rxmbuf_alloc(rxq->mb_pool);
3212                 if (mbuf == NULL) {
3213                         PMD_INIT_LOG(ERR, "RX mbuf alloc failed queue_id=%u",
3214                                      (unsigned) rxq->queue_id);
3215                         return (-ENOMEM);
3216                 }
3217
3218                 rte_mbuf_refcnt_set(mbuf, 1);
3219                 mbuf->next = NULL;
3220                 mbuf->data_off = RTE_PKTMBUF_HEADROOM;
3221                 mbuf->nb_segs = 1;
3222                 mbuf->port = rxq->port_id;
3223
3224                 dma_addr =
3225                         rte_cpu_to_le_64(RTE_MBUF_DATA_DMA_ADDR_DEFAULT(mbuf));
3226                 rxd = &rxq->rx_ring[i];
3227                 rxd->read.hdr_addr = dma_addr;
3228                 rxd->read.pkt_addr = dma_addr;
3229                 rxe[i].mbuf = mbuf;
3230         }
3231
3232         return 0;
3233 }
3234
3235 static int
3236 ixgbe_dev_mq_rx_configure(struct rte_eth_dev *dev)
3237 {
3238         struct ixgbe_hw *hw =
3239                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3240
3241         if (hw->mac.type == ixgbe_mac_82598EB)
3242                 return 0;
3243
3244         if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3245                 /*
3246                  * SRIOV inactive scheme
3247                  * any DCB/RSS w/o VMDq multi-queue setting
3248                  */
3249                 switch (dev->data->dev_conf.rxmode.mq_mode) {
3250                         case ETH_MQ_RX_RSS:
3251                                 ixgbe_rss_configure(dev);
3252                                 break;
3253
3254                         case ETH_MQ_RX_VMDQ_DCB:
3255                                 ixgbe_vmdq_dcb_configure(dev);
3256                                 break;
3257
3258                         case ETH_MQ_RX_VMDQ_ONLY:
3259                                 ixgbe_vmdq_rx_hw_configure(dev);
3260                                 break;
3261
3262                         case ETH_MQ_RX_NONE:
3263                                 /* if mq_mode is none, disable rss mode.*/
3264                         default: ixgbe_rss_disable(dev);
3265                 }
3266         } else {
3267                 switch (RTE_ETH_DEV_SRIOV(dev).active) {
3268                 /*
3269                  * SRIOV active scheme
3270                  * FIXME if support DCB/RSS together with VMDq & SRIOV
3271                  */
3272                 case ETH_64_POOLS:
3273                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQEN);
3274                         break;
3275
3276                 case ETH_32_POOLS:
3277                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQRT4TCEN);
3278                         break;
3279
3280                 case ETH_16_POOLS:
3281                         IXGBE_WRITE_REG(hw, IXGBE_MRQC, IXGBE_MRQC_VMDQRT8TCEN);
3282                         break;
3283                 default:
3284                         PMD_INIT_LOG(ERR, "invalid pool number in IOV mode");
3285                 }
3286         }
3287
3288         return 0;
3289 }
3290
3291 static int
3292 ixgbe_dev_mq_tx_configure(struct rte_eth_dev *dev)
3293 {
3294         struct ixgbe_hw *hw =
3295                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3296         uint32_t mtqc;
3297         uint32_t rttdcs;
3298
3299         if (hw->mac.type == ixgbe_mac_82598EB)
3300                 return 0;
3301
3302         /* disable arbiter before setting MTQC */
3303         rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3304         rttdcs |= IXGBE_RTTDCS_ARBDIS;
3305         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3306
3307         if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3308                 /*
3309                  * SRIOV inactive scheme
3310                  * any DCB w/o VMDq multi-queue setting
3311                  */
3312                 if (dev->data->dev_conf.txmode.mq_mode == ETH_MQ_TX_VMDQ_ONLY)
3313                         ixgbe_vmdq_tx_hw_configure(hw);
3314                 else {
3315                         mtqc = IXGBE_MTQC_64Q_1PB;
3316                         IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
3317                 }
3318         } else {
3319                 switch (RTE_ETH_DEV_SRIOV(dev).active) {
3320
3321                 /*
3322                  * SRIOV active scheme
3323                  * FIXME if support DCB together with VMDq & SRIOV
3324                  */
3325                 case ETH_64_POOLS:
3326                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF;
3327                         break;
3328                 case ETH_32_POOLS:
3329                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_32VF;
3330                         break;
3331                 case ETH_16_POOLS:
3332                         mtqc = IXGBE_MTQC_VT_ENA | IXGBE_MTQC_RT_ENA |
3333                                 IXGBE_MTQC_8TC_8TQ;
3334                         break;
3335                 default:
3336                         mtqc = IXGBE_MTQC_64Q_1PB;
3337                         PMD_INIT_LOG(ERR, "invalid pool number in IOV mode");
3338                 }
3339                 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
3340         }
3341
3342         /* re-enable arbiter */
3343         rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3344         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3345
3346         return 0;
3347 }
3348
3349 /*
3350  * Initializes Receive Unit.
3351  */
3352 int
3353 ixgbe_dev_rx_init(struct rte_eth_dev *dev)
3354 {
3355         struct ixgbe_hw     *hw;
3356         struct igb_rx_queue *rxq;
3357         struct rte_pktmbuf_pool_private *mbp_priv;
3358         uint64_t bus_addr;
3359         uint32_t rxctrl;
3360         uint32_t fctrl;
3361         uint32_t hlreg0;
3362         uint32_t maxfrs;
3363         uint32_t srrctl;
3364         uint32_t rdrxctl;
3365         uint32_t rxcsum;
3366         uint16_t buf_size;
3367         uint16_t i;
3368
3369         PMD_INIT_FUNC_TRACE();
3370         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3371
3372         /*
3373          * Make sure receives are disabled while setting
3374          * up the RX context (registers, descriptor rings, etc.).
3375          */
3376         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3377         IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3378
3379         /* Enable receipt of broadcasted frames */
3380         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3381         fctrl |= IXGBE_FCTRL_BAM;
3382         fctrl |= IXGBE_FCTRL_DPF;
3383         fctrl |= IXGBE_FCTRL_PMCF;
3384         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3385
3386         /*
3387          * Configure CRC stripping, if any.
3388          */
3389         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3390         if (dev->data->dev_conf.rxmode.hw_strip_crc)
3391                 hlreg0 |= IXGBE_HLREG0_RXCRCSTRP;
3392         else
3393                 hlreg0 &= ~IXGBE_HLREG0_RXCRCSTRP;
3394
3395         /*
3396          * Configure jumbo frame support, if any.
3397          */
3398         if (dev->data->dev_conf.rxmode.jumbo_frame == 1) {
3399                 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
3400                 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
3401                 maxfrs &= 0x0000FFFF;
3402                 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
3403                 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
3404         } else
3405                 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
3406
3407         /*
3408          * If loopback mode is configured for 82599, set LPBK bit.
3409          */
3410         if (hw->mac.type == ixgbe_mac_82599EB &&
3411                         dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
3412                 hlreg0 |= IXGBE_HLREG0_LPBK;
3413         else
3414                 hlreg0 &= ~IXGBE_HLREG0_LPBK;
3415
3416         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3417
3418         /* Setup RX queues */
3419         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3420                 rxq = dev->data->rx_queues[i];
3421
3422                 /*
3423                  * Reset crc_len in case it was changed after queue setup by a
3424                  * call to configure.
3425                  */
3426                 rxq->crc_len = (uint8_t)
3427                                 ((dev->data->dev_conf.rxmode.hw_strip_crc) ? 0 :
3428                                 ETHER_CRC_LEN);
3429
3430                 /* Setup the Base and Length of the Rx Descriptor Rings */
3431                 bus_addr = rxq->rx_ring_phys_addr;
3432                 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(rxq->reg_idx),
3433                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3434                 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(rxq->reg_idx),
3435                                 (uint32_t)(bus_addr >> 32));
3436                 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(rxq->reg_idx),
3437                                 rxq->nb_rx_desc * sizeof(union ixgbe_adv_rx_desc));
3438                 IXGBE_WRITE_REG(hw, IXGBE_RDH(rxq->reg_idx), 0);
3439                 IXGBE_WRITE_REG(hw, IXGBE_RDT(rxq->reg_idx), 0);
3440
3441                 /* Configure the SRRCTL register */
3442 #ifdef RTE_HEADER_SPLIT_ENABLE
3443                 /*
3444                  * Configure Header Split
3445                  */
3446                 if (dev->data->dev_conf.rxmode.header_split) {
3447                         if (hw->mac.type == ixgbe_mac_82599EB) {
3448                                 /* Must setup the PSRTYPE register */
3449                                 uint32_t psrtype;
3450                                 psrtype = IXGBE_PSRTYPE_TCPHDR |
3451                                         IXGBE_PSRTYPE_UDPHDR   |
3452                                         IXGBE_PSRTYPE_IPV4HDR  |
3453                                         IXGBE_PSRTYPE_IPV6HDR;
3454                                 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(rxq->reg_idx), psrtype);
3455                         }
3456                         srrctl = ((dev->data->dev_conf.rxmode.split_hdr_size <<
3457                                    IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
3458                                   IXGBE_SRRCTL_BSIZEHDR_MASK);
3459                         srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
3460                 } else
3461 #endif
3462                         srrctl = IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
3463
3464                 /* Set if packets are dropped when no descriptors available */
3465                 if (rxq->drop_en)
3466                         srrctl |= IXGBE_SRRCTL_DROP_EN;
3467
3468                 /*
3469                  * Configure the RX buffer size in the BSIZEPACKET field of
3470                  * the SRRCTL register of the queue.
3471                  * The value is in 1 KB resolution. Valid values can be from
3472                  * 1 KB to 16 KB.
3473                  */
3474                 mbp_priv = rte_mempool_get_priv(rxq->mb_pool);
3475                 buf_size = (uint16_t) (mbp_priv->mbuf_data_room_size -
3476                                        RTE_PKTMBUF_HEADROOM);
3477                 srrctl |= ((buf_size >> IXGBE_SRRCTL_BSIZEPKT_SHIFT) &
3478                            IXGBE_SRRCTL_BSIZEPKT_MASK);
3479                 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxq->reg_idx), srrctl);
3480
3481                 buf_size = (uint16_t) ((srrctl & IXGBE_SRRCTL_BSIZEPKT_MASK) <<
3482                                        IXGBE_SRRCTL_BSIZEPKT_SHIFT);
3483
3484                 /* It adds dual VLAN length for supporting dual VLAN */
3485                 if ((dev->data->dev_conf.rxmode.max_rx_pkt_len +
3486                                 2 * IXGBE_VLAN_TAG_SIZE) > buf_size){
3487                         if (!dev->data->scattered_rx)
3488                                 PMD_INIT_LOG(DEBUG, "forcing scatter mode");
3489                         dev->data->scattered_rx = 1;
3490 #ifdef RTE_IXGBE_INC_VECTOR
3491                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3492 #else
3493                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3494 #endif
3495                 }
3496         }
3497
3498         if (dev->data->dev_conf.rxmode.enable_scatter) {
3499                 if (!dev->data->scattered_rx)
3500                         PMD_INIT_LOG(DEBUG, "forcing scatter mode");
3501 #ifdef RTE_IXGBE_INC_VECTOR
3502                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3503 #else
3504                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3505 #endif
3506                 dev->data->scattered_rx = 1;
3507         }
3508
3509         /*
3510          * Device configured with multiple RX queues.
3511          */
3512         ixgbe_dev_mq_rx_configure(dev);
3513
3514         /*
3515          * Setup the Checksum Register.
3516          * Disable Full-Packet Checksum which is mutually exclusive with RSS.
3517          * Enable IP/L4 checkum computation by hardware if requested to do so.
3518          */
3519         rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3520         rxcsum |= IXGBE_RXCSUM_PCSD;
3521         if (dev->data->dev_conf.rxmode.hw_ip_checksum)
3522                 rxcsum |= IXGBE_RXCSUM_IPPCSE;
3523         else
3524                 rxcsum &= ~IXGBE_RXCSUM_IPPCSE;
3525
3526         IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3527
3528         if (hw->mac.type == ixgbe_mac_82599EB) {
3529                 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3530                 if (dev->data->dev_conf.rxmode.hw_strip_crc)
3531                         rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3532                 else
3533                         rdrxctl &= ~IXGBE_RDRXCTL_CRCSTRIP;
3534                 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3535                 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3536         }
3537
3538         return 0;
3539 }
3540
3541 /*
3542  * Initializes Transmit Unit.
3543  */
3544 void
3545 ixgbe_dev_tx_init(struct rte_eth_dev *dev)
3546 {
3547         struct ixgbe_hw     *hw;
3548         struct igb_tx_queue *txq;
3549         uint64_t bus_addr;
3550         uint32_t hlreg0;
3551         uint32_t txctrl;
3552         uint16_t i;
3553
3554         PMD_INIT_FUNC_TRACE();
3555         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3556
3557         /* Enable TX CRC (checksum offload requirement) */
3558         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3559         hlreg0 |= IXGBE_HLREG0_TXCRCEN;
3560         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3561
3562         /* Setup the Base and Length of the Tx Descriptor Rings */
3563         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3564                 txq = dev->data->tx_queues[i];
3565
3566                 bus_addr = txq->tx_ring_phys_addr;
3567                 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(txq->reg_idx),
3568                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3569                 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(txq->reg_idx),
3570                                 (uint32_t)(bus_addr >> 32));
3571                 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(txq->reg_idx),
3572                                 txq->nb_tx_desc * sizeof(union ixgbe_adv_tx_desc));
3573                 /* Setup the HW Tx Head and TX Tail descriptor pointers */
3574                 IXGBE_WRITE_REG(hw, IXGBE_TDH(txq->reg_idx), 0);
3575                 IXGBE_WRITE_REG(hw, IXGBE_TDT(txq->reg_idx), 0);
3576
3577                 /*
3578                  * Disable Tx Head Writeback RO bit, since this hoses
3579                  * bookkeeping if things aren't delivered in order.
3580                  */
3581                 switch (hw->mac.type) {
3582                         case ixgbe_mac_82598EB:
3583                                 txctrl = IXGBE_READ_REG(hw,
3584                                                         IXGBE_DCA_TXCTRL(txq->reg_idx));
3585                                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
3586                                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(txq->reg_idx),
3587                                                 txctrl);
3588                                 break;
3589
3590                         case ixgbe_mac_82599EB:
3591                         case ixgbe_mac_X540:
3592                         default:
3593                                 txctrl = IXGBE_READ_REG(hw,
3594                                                 IXGBE_DCA_TXCTRL_82599(txq->reg_idx));
3595                                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
3596                                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(txq->reg_idx),
3597                                                 txctrl);
3598                                 break;
3599                 }
3600         }
3601
3602         /* Device configured with multiple TX queues. */
3603         ixgbe_dev_mq_tx_configure(dev);
3604 }
3605
3606 /*
3607  * Set up link for 82599 loopback mode Tx->Rx.
3608  */
3609 static inline void
3610 ixgbe_setup_loopback_link_82599(struct ixgbe_hw *hw)
3611 {
3612         PMD_INIT_FUNC_TRACE();
3613
3614         if (ixgbe_verify_lesm_fw_enabled_82599(hw)) {
3615                 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM) !=
3616                                 IXGBE_SUCCESS) {
3617                         PMD_INIT_LOG(ERR, "Could not enable loopback mode");
3618                         /* ignore error */
3619                         return;
3620                 }
3621         }
3622
3623         /* Restart link */
3624         IXGBE_WRITE_REG(hw,
3625                         IXGBE_AUTOC,
3626                         IXGBE_AUTOC_LMS_10G_LINK_NO_AN | IXGBE_AUTOC_FLU);
3627         ixgbe_reset_pipeline_82599(hw);
3628
3629         hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM);
3630         msec_delay(50);
3631 }
3632
3633
3634 /*
3635  * Start Transmit and Receive Units.
3636  */
3637 void
3638 ixgbe_dev_rxtx_start(struct rte_eth_dev *dev)
3639 {
3640         struct ixgbe_hw     *hw;
3641         struct igb_tx_queue *txq;
3642         struct igb_rx_queue *rxq;
3643         uint32_t txdctl;
3644         uint32_t dmatxctl;
3645         uint32_t rxctrl;
3646         uint16_t i;
3647
3648         PMD_INIT_FUNC_TRACE();
3649         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3650
3651         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3652                 txq = dev->data->tx_queues[i];
3653                 /* Setup Transmit Threshold Registers */
3654                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3655                 txdctl |= txq->pthresh & 0x7F;
3656                 txdctl |= ((txq->hthresh & 0x7F) << 8);
3657                 txdctl |= ((txq->wthresh & 0x7F) << 16);
3658                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3659         }
3660
3661         if (hw->mac.type != ixgbe_mac_82598EB) {
3662                 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3663                 dmatxctl |= IXGBE_DMATXCTL_TE;
3664                 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3665         }
3666
3667         for (i = 0; i < dev->data->nb_tx_queues; i++) {
3668                 txq = dev->data->tx_queues[i];
3669                 if (!txq->start_tx_per_q)
3670                         ixgbe_dev_tx_queue_start(dev, i);
3671         }
3672
3673         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3674                 rxq = dev->data->rx_queues[i];
3675                 if (!rxq->start_rx_per_q)
3676                         ixgbe_dev_rx_queue_start(dev, i);
3677         }
3678
3679         /* Enable Receive engine */
3680         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3681         if (hw->mac.type == ixgbe_mac_82598EB)
3682                 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3683         rxctrl |= IXGBE_RXCTRL_RXEN;
3684         hw->mac.ops.enable_rx_dma(hw, rxctrl);
3685
3686         /* If loopback mode is enabled for 82599, set up the link accordingly */
3687         if (hw->mac.type == ixgbe_mac_82599EB &&
3688                         dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
3689                 ixgbe_setup_loopback_link_82599(hw);
3690
3691 }
3692
3693 /*
3694  * Start Receive Units for specified queue.
3695  */
3696 int
3697 ixgbe_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
3698 {
3699         struct ixgbe_hw     *hw;
3700         struct igb_rx_queue *rxq;
3701         uint32_t rxdctl;
3702         int poll_ms;
3703
3704         PMD_INIT_FUNC_TRACE();
3705         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3706
3707         if (rx_queue_id < dev->data->nb_rx_queues) {
3708                 rxq = dev->data->rx_queues[rx_queue_id];
3709
3710                 /* Allocate buffers for descriptor rings */
3711                 if (ixgbe_alloc_rx_queue_mbufs(rxq) != 0) {
3712                         PMD_INIT_LOG(ERR, "Could not alloc mbuf for queue:%d",
3713                                      rx_queue_id);
3714                         return -1;
3715                 }
3716                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3717                 rxdctl |= IXGBE_RXDCTL_ENABLE;
3718                 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl);
3719
3720                 /* Wait until RX Enable ready */
3721                 poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3722                 do {
3723                         rte_delay_ms(1);
3724                         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3725                 } while (--poll_ms && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3726                 if (!poll_ms)
3727                         PMD_INIT_LOG(ERR, "Could not enable Rx Queue %d",
3728                                      rx_queue_id);
3729                 rte_wmb();
3730                 IXGBE_WRITE_REG(hw, IXGBE_RDH(rxq->reg_idx), 0);
3731                 IXGBE_WRITE_REG(hw, IXGBE_RDT(rxq->reg_idx), rxq->nb_rx_desc - 1);
3732         } else
3733                 return -1;
3734
3735         return 0;
3736 }
3737
3738 /*
3739  * Stop Receive Units for specified queue.
3740  */
3741 int
3742 ixgbe_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
3743 {
3744         struct ixgbe_hw     *hw;
3745         struct igb_rx_queue *rxq;
3746         uint32_t rxdctl;
3747         int poll_ms;
3748
3749         PMD_INIT_FUNC_TRACE();
3750         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3751
3752         if (rx_queue_id < dev->data->nb_rx_queues) {
3753                 rxq = dev->data->rx_queues[rx_queue_id];
3754
3755                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3756                 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3757                 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl);
3758
3759                 /* Wait until RX Enable ready */
3760                 poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3761                 do {
3762                         rte_delay_ms(1);
3763                         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
3764                 } while (--poll_ms && (rxdctl | IXGBE_RXDCTL_ENABLE));
3765                 if (!poll_ms)
3766                         PMD_INIT_LOG(ERR, "Could not disable Rx Queue %d",
3767                                      rx_queue_id);
3768
3769                 rte_delay_us(RTE_IXGBE_WAIT_100_US);
3770
3771                 ixgbe_rx_queue_release_mbufs(rxq);
3772                 ixgbe_reset_rx_queue(rxq);
3773         } else
3774                 return -1;
3775
3776         return 0;
3777 }
3778
3779
3780 /*
3781  * Start Transmit Units for specified queue.
3782  */
3783 int
3784 ixgbe_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
3785 {
3786         struct ixgbe_hw     *hw;
3787         struct igb_tx_queue *txq;
3788         uint32_t txdctl;
3789         int poll_ms;
3790
3791         PMD_INIT_FUNC_TRACE();
3792         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3793
3794         if (tx_queue_id < dev->data->nb_tx_queues) {
3795                 txq = dev->data->tx_queues[tx_queue_id];
3796                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3797                 txdctl |= IXGBE_TXDCTL_ENABLE;
3798                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3799
3800                 /* Wait until TX Enable ready */
3801                 if (hw->mac.type == ixgbe_mac_82599EB) {
3802                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3803                         do {
3804                                 rte_delay_ms(1);
3805                                 txdctl = IXGBE_READ_REG(hw,
3806                                         IXGBE_TXDCTL(txq->reg_idx));
3807                         } while (--poll_ms && !(txdctl & IXGBE_TXDCTL_ENABLE));
3808                         if (!poll_ms)
3809                                 PMD_INIT_LOG(ERR, "Could not enable "
3810                                              "Tx Queue %d", tx_queue_id);
3811                 }
3812                 rte_wmb();
3813                 IXGBE_WRITE_REG(hw, IXGBE_TDH(txq->reg_idx), 0);
3814                 IXGBE_WRITE_REG(hw, IXGBE_TDT(txq->reg_idx), 0);
3815         } else
3816                 return -1;
3817
3818         return 0;
3819 }
3820
3821 /*
3822  * Stop Transmit Units for specified queue.
3823  */
3824 int
3825 ixgbe_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
3826 {
3827         struct ixgbe_hw     *hw;
3828         struct igb_tx_queue *txq;
3829         uint32_t txdctl;
3830         uint32_t txtdh, txtdt;
3831         int poll_ms;
3832
3833         PMD_INIT_FUNC_TRACE();
3834         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3835
3836         if (tx_queue_id < dev->data->nb_tx_queues) {
3837                 txq = dev->data->tx_queues[tx_queue_id];
3838
3839                 /* Wait until TX queue is empty */
3840                 if (hw->mac.type == ixgbe_mac_82599EB) {
3841                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3842                         do {
3843                                 rte_delay_us(RTE_IXGBE_WAIT_100_US);
3844                                 txtdh = IXGBE_READ_REG(hw,
3845                                                 IXGBE_TDH(txq->reg_idx));
3846                                 txtdt = IXGBE_READ_REG(hw,
3847                                                 IXGBE_TDT(txq->reg_idx));
3848                         } while (--poll_ms && (txtdh != txtdt));
3849                         if (!poll_ms)
3850                                 PMD_INIT_LOG(ERR, "Tx Queue %d is not empty "
3851                                              "when stopping.", tx_queue_id);
3852                 }
3853
3854                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txq->reg_idx));
3855                 txdctl &= ~IXGBE_TXDCTL_ENABLE;
3856                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txq->reg_idx), txdctl);
3857
3858                 /* Wait until TX Enable ready */
3859                 if (hw->mac.type == ixgbe_mac_82599EB) {
3860                         poll_ms = RTE_IXGBE_REGISTER_POLL_WAIT_10_MS;
3861                         do {
3862                                 rte_delay_ms(1);
3863                                 txdctl = IXGBE_READ_REG(hw,
3864                                                 IXGBE_TXDCTL(txq->reg_idx));
3865                         } while (--poll_ms && (txdctl | IXGBE_TXDCTL_ENABLE));
3866                         if (!poll_ms)
3867                                 PMD_INIT_LOG(ERR, "Could not disable "
3868                                              "Tx Queue %d", tx_queue_id);
3869                 }
3870
3871                 if (txq->ops != NULL) {
3872                         txq->ops->release_mbufs(txq);
3873                         txq->ops->reset(txq);
3874                 }
3875         } else
3876                 return -1;
3877
3878         return 0;
3879 }
3880
3881 /*
3882  * [VF] Initializes Receive Unit.
3883  */
3884 int
3885 ixgbevf_dev_rx_init(struct rte_eth_dev *dev)
3886 {
3887         struct ixgbe_hw     *hw;
3888         struct igb_rx_queue *rxq;
3889         struct rte_pktmbuf_pool_private *mbp_priv;
3890         uint64_t bus_addr;
3891         uint32_t srrctl;
3892         uint16_t buf_size;
3893         uint16_t i;
3894         int ret;
3895
3896         PMD_INIT_FUNC_TRACE();
3897         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3898
3899         /*
3900          * When the VF driver issues a IXGBE_VF_RESET request, the PF driver
3901          * disables the VF receipt of packets if the PF MTU is > 1500.
3902          * This is done to deal with 82599 limitations that imposes
3903          * the PF and all VFs to share the same MTU.
3904          * Then, the PF driver enables again the VF receipt of packet when
3905          * the VF driver issues a IXGBE_VF_SET_LPE request.
3906          * In the meantime, the VF device cannot be used, even if the VF driver
3907          * and the Guest VM network stack are ready to accept packets with a
3908          * size up to the PF MTU.
3909          * As a work-around to this PF behaviour, force the call to
3910          * ixgbevf_rlpml_set_vf even if jumbo frames are not used. This way,
3911          * VF packets received can work in all cases.
3912          */
3913         ixgbevf_rlpml_set_vf(hw,
3914                 (uint16_t)dev->data->dev_conf.rxmode.max_rx_pkt_len);
3915
3916         /* Setup RX queues */
3917         dev->rx_pkt_burst = ixgbe_recv_pkts;
3918         for (i = 0; i < dev->data->nb_rx_queues; i++) {
3919                 rxq = dev->data->rx_queues[i];
3920
3921                 /* Allocate buffers for descriptor rings */
3922                 ret = ixgbe_alloc_rx_queue_mbufs(rxq);
3923                 if (ret)
3924                         return ret;
3925
3926                 /* Setup the Base and Length of the Rx Descriptor Rings */
3927                 bus_addr = rxq->rx_ring_phys_addr;
3928
3929                 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAL(i),
3930                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
3931                 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAH(i),
3932                                 (uint32_t)(bus_addr >> 32));
3933                 IXGBE_WRITE_REG(hw, IXGBE_VFRDLEN(i),
3934                                 rxq->nb_rx_desc * sizeof(union ixgbe_adv_rx_desc));
3935                 IXGBE_WRITE_REG(hw, IXGBE_VFRDH(i), 0);
3936                 IXGBE_WRITE_REG(hw, IXGBE_VFRDT(i), 0);
3937
3938
3939                 /* Configure the SRRCTL register */
3940 #ifdef RTE_HEADER_SPLIT_ENABLE
3941                 /*
3942                  * Configure Header Split
3943                  */
3944                 if (dev->data->dev_conf.rxmode.header_split) {
3945
3946                         /* Must setup the PSRTYPE register */
3947                         uint32_t psrtype;
3948                         psrtype = IXGBE_PSRTYPE_TCPHDR |
3949                                 IXGBE_PSRTYPE_UDPHDR   |
3950                                 IXGBE_PSRTYPE_IPV4HDR  |
3951                                 IXGBE_PSRTYPE_IPV6HDR;
3952
3953                         IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE(i), psrtype);
3954
3955                         srrctl = ((dev->data->dev_conf.rxmode.split_hdr_size <<
3956                                    IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
3957                                   IXGBE_SRRCTL_BSIZEHDR_MASK);
3958                         srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
3959                 } else
3960 #endif
3961                         srrctl = IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
3962
3963                 /* Set if packets are dropped when no descriptors available */
3964                 if (rxq->drop_en)
3965                         srrctl |= IXGBE_SRRCTL_DROP_EN;
3966
3967                 /*
3968                  * Configure the RX buffer size in the BSIZEPACKET field of
3969                  * the SRRCTL register of the queue.
3970                  * The value is in 1 KB resolution. Valid values can be from
3971                  * 1 KB to 16 KB.
3972                  */
3973                 mbp_priv = rte_mempool_get_priv(rxq->mb_pool);
3974                 buf_size = (uint16_t) (mbp_priv->mbuf_data_room_size -
3975                                        RTE_PKTMBUF_HEADROOM);
3976                 srrctl |= ((buf_size >> IXGBE_SRRCTL_BSIZEPKT_SHIFT) &
3977                            IXGBE_SRRCTL_BSIZEPKT_MASK);
3978
3979                 /*
3980                  * VF modification to write virtual function SRRCTL register
3981                  */
3982                 IXGBE_WRITE_REG(hw, IXGBE_VFSRRCTL(i), srrctl);
3983
3984                 buf_size = (uint16_t) ((srrctl & IXGBE_SRRCTL_BSIZEPKT_MASK) <<
3985                                        IXGBE_SRRCTL_BSIZEPKT_SHIFT);
3986
3987                 /* It adds dual VLAN length for supporting dual VLAN */
3988                 if ((dev->data->dev_conf.rxmode.max_rx_pkt_len +
3989                                 2 * IXGBE_VLAN_TAG_SIZE) > buf_size) {
3990                         if (!dev->data->scattered_rx)
3991                                 PMD_INIT_LOG(DEBUG, "forcing scatter mode");
3992                         dev->data->scattered_rx = 1;
3993 #ifdef RTE_IXGBE_INC_VECTOR
3994                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
3995 #else
3996                         dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
3997 #endif
3998                 }
3999         }
4000
4001         if (dev->data->dev_conf.rxmode.enable_scatter) {
4002                 if (!dev->data->scattered_rx)
4003                         PMD_INIT_LOG(DEBUG, "forcing scatter mode");
4004 #ifdef RTE_IXGBE_INC_VECTOR
4005                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts_vec;
4006 #else
4007                 dev->rx_pkt_burst = ixgbe_recv_scattered_pkts;
4008 #endif
4009                 dev->data->scattered_rx = 1;
4010         }
4011
4012         return 0;
4013 }
4014
4015 /*
4016  * [VF] Initializes Transmit Unit.
4017  */
4018 void
4019 ixgbevf_dev_tx_init(struct rte_eth_dev *dev)
4020 {
4021         struct ixgbe_hw     *hw;
4022         struct igb_tx_queue *txq;
4023         uint64_t bus_addr;
4024         uint32_t txctrl;
4025         uint16_t i;
4026
4027         PMD_INIT_FUNC_TRACE();
4028         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4029
4030         /* Setup the Base and Length of the Tx Descriptor Rings */
4031         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4032                 txq = dev->data->tx_queues[i];
4033                 bus_addr = txq->tx_ring_phys_addr;
4034                 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAL(i),
4035                                 (uint32_t)(bus_addr & 0x00000000ffffffffULL));
4036                 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAH(i),
4037                                 (uint32_t)(bus_addr >> 32));
4038                 IXGBE_WRITE_REG(hw, IXGBE_VFTDLEN(i),
4039                                 txq->nb_tx_desc * sizeof(union ixgbe_adv_tx_desc));
4040                 /* Setup the HW Tx Head and TX Tail descriptor pointers */
4041                 IXGBE_WRITE_REG(hw, IXGBE_VFTDH(i), 0);
4042                 IXGBE_WRITE_REG(hw, IXGBE_VFTDT(i), 0);
4043
4044                 /*
4045                  * Disable Tx Head Writeback RO bit, since this hoses
4046                  * bookkeeping if things aren't delivered in order.
4047                  */
4048                 txctrl = IXGBE_READ_REG(hw,
4049                                 IXGBE_VFDCA_TXCTRL(i));
4050                 txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
4051                 IXGBE_WRITE_REG(hw, IXGBE_VFDCA_TXCTRL(i),
4052                                 txctrl);
4053         }
4054 }
4055
4056 /*
4057  * [VF] Start Transmit and Receive Units.
4058  */
4059 void
4060 ixgbevf_dev_rxtx_start(struct rte_eth_dev *dev)
4061 {
4062         struct ixgbe_hw     *hw;
4063         struct igb_tx_queue *txq;
4064         struct igb_rx_queue *rxq;
4065         uint32_t txdctl;
4066         uint32_t rxdctl;
4067         uint16_t i;
4068         int poll_ms;
4069
4070         PMD_INIT_FUNC_TRACE();
4071         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4072
4073         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4074                 txq = dev->data->tx_queues[i];
4075                 /* Setup Transmit Threshold Registers */
4076                 txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4077                 txdctl |= txq->pthresh & 0x7F;
4078                 txdctl |= ((txq->hthresh & 0x7F) << 8);
4079                 txdctl |= ((txq->wthresh & 0x7F) << 16);
4080                 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(i), txdctl);
4081         }
4082
4083         for (i = 0; i < dev->data->nb_tx_queues; i++) {
4084
4085                 txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4086                 txdctl |= IXGBE_TXDCTL_ENABLE;
4087                 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(i), txdctl);
4088
4089                 poll_ms = 10;
4090                 /* Wait until TX Enable ready */
4091                 do {
4092                         rte_delay_ms(1);
4093                         txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
4094                 } while (--poll_ms && !(txdctl & IXGBE_TXDCTL_ENABLE));
4095                 if (!poll_ms)
4096                         PMD_INIT_LOG(ERR, "Could not enable Tx Queue %d", i);
4097         }
4098         for (i = 0; i < dev->data->nb_rx_queues; i++) {
4099
4100                 rxq = dev->data->rx_queues[i];
4101
4102                 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(i));
4103                 rxdctl |= IXGBE_RXDCTL_ENABLE;
4104                 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(i), rxdctl);
4105
4106                 /* Wait until RX Enable ready */
4107                 poll_ms = 10;
4108                 do {
4109                         rte_delay_ms(1);
4110                         rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(i));
4111                 } while (--poll_ms && !(rxdctl & IXGBE_RXDCTL_ENABLE));
4112                 if (!poll_ms)
4113                         PMD_INIT_LOG(ERR, "Could not enable Rx Queue %d", i);
4114                 rte_wmb();
4115                 IXGBE_WRITE_REG(hw, IXGBE_VFRDT(i), rxq->nb_rx_desc - 1);
4116
4117         }
4118 }