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