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