648b04154c5b6c92689187c934614d7cdac38cde
[dpdk.git] / drivers / net / e1000 / em_rxtx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <sys/queue.h>
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <errno.h>
11 #include <stdint.h>
12 #include <stdarg.h>
13 #include <inttypes.h>
14
15 #include <rte_interrupts.h>
16 #include <rte_byteorder.h>
17 #include <rte_common.h>
18 #include <rte_log.h>
19 #include <rte_debug.h>
20 #include <rte_pci.h>
21 #include <rte_bus_pci.h>
22 #include <rte_memory.h>
23 #include <rte_memcpy.h>
24 #include <rte_memzone.h>
25 #include <rte_launch.h>
26 #include <rte_eal.h>
27 #include <rte_per_lcore.h>
28 #include <rte_lcore.h>
29 #include <rte_atomic.h>
30 #include <rte_branch_prediction.h>
31 #include <rte_mempool.h>
32 #include <rte_malloc.h>
33 #include <rte_mbuf.h>
34 #include <rte_ether.h>
35 #include <ethdev_driver.h>
36 #include <rte_prefetch.h>
37 #include <rte_ip.h>
38 #include <rte_udp.h>
39 #include <rte_tcp.h>
40 #include <rte_sctp.h>
41 #include <rte_net.h>
42 #include <rte_string_fns.h>
43
44 #include "e1000_logs.h"
45 #include "base/e1000_api.h"
46 #include "e1000_ethdev.h"
47 #include "base/e1000_osdep.h"
48
49 #define E1000_TXD_VLAN_SHIFT    16
50
51 #define E1000_RXDCTL_GRAN       0x01000000 /* RXDCTL Granularity */
52
53 #define E1000_TX_OFFLOAD_MASK ( \
54                 PKT_TX_IPV6 |           \
55                 PKT_TX_IPV4 |           \
56                 PKT_TX_IP_CKSUM |       \
57                 PKT_TX_L4_MASK |        \
58                 PKT_TX_VLAN_PKT)
59
60 #define E1000_TX_OFFLOAD_NOTSUP_MASK \
61                 (PKT_TX_OFFLOAD_MASK ^ E1000_TX_OFFLOAD_MASK)
62
63 /* PCI offset for querying configuration status register */
64 #define PCI_CFG_STATUS_REG                 0x06
65 #define FLUSH_DESC_REQUIRED               0x100
66
67
68 /**
69  * Structure associated with each descriptor of the RX ring of a RX queue.
70  */
71 struct em_rx_entry {
72         struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
73 };
74
75 /**
76  * Structure associated with each descriptor of the TX ring of a TX queue.
77  */
78 struct em_tx_entry {
79         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
80         uint16_t next_id; /**< Index of next descriptor in ring. */
81         uint16_t last_id; /**< Index of last scattered descriptor. */
82 };
83
84 /**
85  * Structure associated with each RX queue.
86  */
87 struct em_rx_queue {
88         struct rte_mempool  *mb_pool;   /**< mbuf pool to populate RX ring. */
89         volatile struct e1000_rx_desc *rx_ring; /**< RX ring virtual address. */
90         uint64_t            rx_ring_phys_addr; /**< RX ring DMA address. */
91         volatile uint32_t   *rdt_reg_addr; /**< RDT register address. */
92         volatile uint32_t   *rdh_reg_addr; /**< RDH register address. */
93         struct em_rx_entry *sw_ring;   /**< address of RX software ring. */
94         struct rte_mbuf *pkt_first_seg; /**< First segment of current packet. */
95         struct rte_mbuf *pkt_last_seg;  /**< Last segment of current packet. */
96         uint64_t            offloads;   /**< Offloads of RTE_ETH_RX_OFFLOAD_* */
97         uint16_t            nb_rx_desc; /**< number of RX descriptors. */
98         uint16_t            rx_tail;    /**< current value of RDT register. */
99         uint16_t            nb_rx_hold; /**< number of held free RX desc. */
100         uint16_t            rx_free_thresh; /**< max free RX desc to hold. */
101         uint16_t            queue_id;   /**< RX queue index. */
102         uint16_t            port_id;    /**< Device port identifier. */
103         uint8_t             pthresh;    /**< Prefetch threshold register. */
104         uint8_t             hthresh;    /**< Host threshold register. */
105         uint8_t             wthresh;    /**< Write-back threshold register. */
106         uint8_t             crc_len;    /**< 0 if CRC stripped, 4 otherwise. */
107         const struct rte_memzone *mz;
108 };
109
110 /**
111  * Hardware context number
112  */
113 enum {
114         EM_CTX_0    = 0, /**< CTX0 */
115         EM_CTX_NUM  = 1, /**< CTX NUM */
116 };
117
118 /** Offload features */
119 union em_vlan_macip {
120         uint32_t data;
121         struct {
122                 uint16_t l3_len:9; /**< L3 (IP) Header Length. */
123                 uint16_t l2_len:7; /**< L2 (MAC) Header Length. */
124                 uint16_t vlan_tci;
125                 /**< VLAN Tag Control Identifier (CPU order). */
126         } f;
127 };
128
129 /*
130  * Compare mask for vlan_macip_len.data,
131  * should be in sync with em_vlan_macip.f layout.
132  * */
133 #define TX_VLAN_CMP_MASK        0xFFFF0000  /**< VLAN length - 16-bits. */
134 #define TX_MAC_LEN_CMP_MASK     0x0000FE00  /**< MAC length - 7-bits. */
135 #define TX_IP_LEN_CMP_MASK      0x000001FF  /**< IP  length - 9-bits. */
136 /** MAC+IP  length. */
137 #define TX_MACIP_LEN_CMP_MASK   (TX_MAC_LEN_CMP_MASK | TX_IP_LEN_CMP_MASK)
138
139 /**
140  * Structure to check if new context need be built
141  */
142 struct em_ctx_info {
143         uint64_t flags;              /**< ol_flags related to context build. */
144         uint32_t cmp_mask;           /**< compare mask */
145         union em_vlan_macip hdrlen;  /**< L2 and L3 header lenghts */
146 };
147
148 /**
149  * Structure associated with each TX queue.
150  */
151 struct em_tx_queue {
152         volatile struct e1000_data_desc *tx_ring; /**< TX ring address */
153         uint64_t               tx_ring_phys_addr; /**< TX ring DMA address. */
154         struct em_tx_entry    *sw_ring; /**< virtual address of SW ring. */
155         volatile uint32_t      *tdt_reg_addr; /**< Address of TDT register. */
156         uint16_t               nb_tx_desc;    /**< number of TX descriptors. */
157         uint16_t               tx_tail;  /**< Current value of TDT register. */
158         /**< Start freeing TX buffers if there are less free descriptors than
159              this value. */
160         uint16_t               tx_free_thresh;
161         /**< Number of TX descriptors to use before RS bit is set. */
162         uint16_t               tx_rs_thresh;
163         /** Number of TX descriptors used since RS bit was set. */
164         uint16_t               nb_tx_used;
165         /** Index to last TX descriptor to have been cleaned. */
166         uint16_t               last_desc_cleaned;
167         /** Total number of TX descriptors ready to be allocated. */
168         uint16_t               nb_tx_free;
169         uint16_t               queue_id; /**< TX queue index. */
170         uint16_t               port_id;  /**< Device port identifier. */
171         uint8_t                pthresh;  /**< Prefetch threshold register. */
172         uint8_t                hthresh;  /**< Host threshold register. */
173         uint8_t                wthresh;  /**< Write-back threshold register. */
174         struct em_ctx_info ctx_cache;
175         /**< Hardware context history.*/
176         uint64_t               offloads; /**< offloads of RTE_ETH_TX_OFFLOAD_* */
177         const struct rte_memzone *mz;
178 };
179
180 #if 1
181 #define RTE_PMD_USE_PREFETCH
182 #endif
183
184 #ifdef RTE_PMD_USE_PREFETCH
185 #define rte_em_prefetch(p)      rte_prefetch0(p)
186 #else
187 #define rte_em_prefetch(p)      do {} while(0)
188 #endif
189
190 #ifdef RTE_PMD_PACKET_PREFETCH
191 #define rte_packet_prefetch(p) rte_prefetch1(p)
192 #else
193 #define rte_packet_prefetch(p)  do {} while(0)
194 #endif
195
196 #ifndef DEFAULT_TX_FREE_THRESH
197 #define DEFAULT_TX_FREE_THRESH  32
198 #endif /* DEFAULT_TX_FREE_THRESH */
199
200 #ifndef DEFAULT_TX_RS_THRESH
201 #define DEFAULT_TX_RS_THRESH  32
202 #endif /* DEFAULT_TX_RS_THRESH */
203
204
205 /*********************************************************************
206  *
207  *  TX function
208  *
209  **********************************************************************/
210
211 /*
212  * Populates TX context descriptor.
213  */
214 static inline void
215 em_set_xmit_ctx(struct em_tx_queue* txq,
216                 volatile struct e1000_context_desc *ctx_txd,
217                 uint64_t flags,
218                 union em_vlan_macip hdrlen)
219 {
220         uint32_t cmp_mask, cmd_len;
221         uint16_t ipcse, l2len;
222         struct e1000_context_desc ctx;
223
224         cmp_mask = 0;
225         cmd_len = E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_C;
226
227         l2len = hdrlen.f.l2_len;
228         ipcse = (uint16_t)(l2len + hdrlen.f.l3_len);
229
230         /* setup IPCS* fields */
231         ctx.lower_setup.ip_fields.ipcss = (uint8_t)l2len;
232         ctx.lower_setup.ip_fields.ipcso = (uint8_t)(l2len +
233                         offsetof(struct rte_ipv4_hdr, hdr_checksum));
234
235         /*
236          * When doing checksum or TCP segmentation with IPv6 headers,
237          * IPCSE field should be set t0 0.
238          */
239         if (flags & PKT_TX_IP_CKSUM) {
240                 ctx.lower_setup.ip_fields.ipcse =
241                         (uint16_t)rte_cpu_to_le_16(ipcse - 1);
242                 cmd_len |= E1000_TXD_CMD_IP;
243                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
244         } else {
245                 ctx.lower_setup.ip_fields.ipcse = 0;
246         }
247
248         /* setup TUCS* fields */
249         ctx.upper_setup.tcp_fields.tucss = (uint8_t)ipcse;
250         ctx.upper_setup.tcp_fields.tucse = 0;
251
252         switch (flags & PKT_TX_L4_MASK) {
253         case PKT_TX_UDP_CKSUM:
254                 ctx.upper_setup.tcp_fields.tucso = (uint8_t)(ipcse +
255                                 offsetof(struct rte_udp_hdr, dgram_cksum));
256                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
257                 break;
258         case PKT_TX_TCP_CKSUM:
259                 ctx.upper_setup.tcp_fields.tucso = (uint8_t)(ipcse +
260                                 offsetof(struct rte_tcp_hdr, cksum));
261                 cmd_len |= E1000_TXD_CMD_TCP;
262                 cmp_mask |= TX_MACIP_LEN_CMP_MASK;
263                 break;
264         default:
265                 ctx.upper_setup.tcp_fields.tucso = 0;
266         }
267
268         ctx.cmd_and_length = rte_cpu_to_le_32(cmd_len);
269         ctx.tcp_seg_setup.data = 0;
270
271         *ctx_txd = ctx;
272
273         txq->ctx_cache.flags = flags;
274         txq->ctx_cache.cmp_mask = cmp_mask;
275         txq->ctx_cache.hdrlen = hdrlen;
276 }
277
278 /*
279  * Check which hardware context can be used. Use the existing match
280  * or create a new context descriptor.
281  */
282 static inline uint32_t
283 what_ctx_update(struct em_tx_queue *txq, uint64_t flags,
284                 union em_vlan_macip hdrlen)
285 {
286         /* If match with the current context */
287         if (likely (txq->ctx_cache.flags == flags &&
288                         ((txq->ctx_cache.hdrlen.data ^ hdrlen.data) &
289                         txq->ctx_cache.cmp_mask) == 0))
290                 return EM_CTX_0;
291
292         /* Mismatch */
293         return EM_CTX_NUM;
294 }
295
296 /* Reset transmit descriptors after they have been used */
297 static inline int
298 em_xmit_cleanup(struct em_tx_queue *txq)
299 {
300         struct em_tx_entry *sw_ring = txq->sw_ring;
301         volatile struct e1000_data_desc *txr = txq->tx_ring;
302         uint16_t last_desc_cleaned = txq->last_desc_cleaned;
303         uint16_t nb_tx_desc = txq->nb_tx_desc;
304         uint16_t desc_to_clean_to;
305         uint16_t nb_tx_to_clean;
306
307         /* Determine the last descriptor needing to be cleaned */
308         desc_to_clean_to = (uint16_t)(last_desc_cleaned + txq->tx_rs_thresh);
309         if (desc_to_clean_to >= nb_tx_desc)
310                 desc_to_clean_to = (uint16_t)(desc_to_clean_to - nb_tx_desc);
311
312         /* Check to make sure the last descriptor to clean is done */
313         desc_to_clean_to = sw_ring[desc_to_clean_to].last_id;
314         if (! (txr[desc_to_clean_to].upper.fields.status & E1000_TXD_STAT_DD))
315         {
316                 PMD_TX_LOG(DEBUG,
317                            "TX descriptor %4u is not done"
318                            "(port=%d queue=%d)", desc_to_clean_to,
319                            txq->port_id, txq->queue_id);
320                 /* Failed to clean any descriptors, better luck next time */
321                 return -(1);
322         }
323
324         /* Figure out how many descriptors will be cleaned */
325         if (last_desc_cleaned > desc_to_clean_to)
326                 nb_tx_to_clean = (uint16_t)((nb_tx_desc - last_desc_cleaned) +
327                                                         desc_to_clean_to);
328         else
329                 nb_tx_to_clean = (uint16_t)(desc_to_clean_to -
330                                                 last_desc_cleaned);
331
332         PMD_TX_LOG(DEBUG,
333                    "Cleaning %4u TX descriptors: %4u to %4u "
334                    "(port=%d queue=%d)", nb_tx_to_clean,
335                    last_desc_cleaned, desc_to_clean_to, txq->port_id,
336                    txq->queue_id);
337
338         /*
339          * The last descriptor to clean is done, so that means all the
340          * descriptors from the last descriptor that was cleaned
341          * up to the last descriptor with the RS bit set
342          * are done. Only reset the threshold descriptor.
343          */
344         txr[desc_to_clean_to].upper.fields.status = 0;
345
346         /* Update the txq to reflect the last descriptor that was cleaned */
347         txq->last_desc_cleaned = desc_to_clean_to;
348         txq->nb_tx_free = (uint16_t)(txq->nb_tx_free + nb_tx_to_clean);
349
350         /* No Error */
351         return 0;
352 }
353
354 static inline uint32_t
355 tx_desc_cksum_flags_to_upper(uint64_t ol_flags)
356 {
357         static const uint32_t l4_olinfo[2] = {0, E1000_TXD_POPTS_TXSM << 8};
358         static const uint32_t l3_olinfo[2] = {0, E1000_TXD_POPTS_IXSM << 8};
359         uint32_t tmp;
360
361         tmp = l4_olinfo[(ol_flags & PKT_TX_L4_MASK) != PKT_TX_L4_NO_CKSUM];
362         tmp |= l3_olinfo[(ol_flags & PKT_TX_IP_CKSUM) != 0];
363         return tmp;
364 }
365
366 uint16_t
367 eth_em_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
368                 uint16_t nb_pkts)
369 {
370         struct em_tx_queue *txq;
371         struct em_tx_entry *sw_ring;
372         struct em_tx_entry *txe, *txn;
373         volatile struct e1000_data_desc *txr;
374         volatile struct e1000_data_desc *txd;
375         struct rte_mbuf     *tx_pkt;
376         struct rte_mbuf     *m_seg;
377         uint64_t buf_dma_addr;
378         uint32_t popts_spec;
379         uint32_t cmd_type_len;
380         uint16_t slen;
381         uint64_t ol_flags;
382         uint16_t tx_id;
383         uint16_t tx_last;
384         uint16_t nb_tx;
385         uint16_t nb_used;
386         uint64_t tx_ol_req;
387         uint32_t ctx;
388         uint32_t new_ctx;
389         union em_vlan_macip hdrlen;
390
391         txq = tx_queue;
392         sw_ring = txq->sw_ring;
393         txr     = txq->tx_ring;
394         tx_id   = txq->tx_tail;
395         txe = &sw_ring[tx_id];
396
397         /* Determine if the descriptor ring needs to be cleaned. */
398          if (txq->nb_tx_free < txq->tx_free_thresh)
399                 em_xmit_cleanup(txq);
400
401         /* TX loop */
402         for (nb_tx = 0; nb_tx < nb_pkts; nb_tx++) {
403                 new_ctx = 0;
404                 tx_pkt = *tx_pkts++;
405
406                 RTE_MBUF_PREFETCH_TO_FREE(txe->mbuf);
407
408                 /*
409                  * Determine how many (if any) context descriptors
410                  * are needed for offload functionality.
411                  */
412                 ol_flags = tx_pkt->ol_flags;
413
414                 /* If hardware offload required */
415                 tx_ol_req = (ol_flags & (PKT_TX_IP_CKSUM | PKT_TX_L4_MASK));
416                 if (tx_ol_req) {
417                         hdrlen.f.vlan_tci = tx_pkt->vlan_tci;
418                         hdrlen.f.l2_len = tx_pkt->l2_len;
419                         hdrlen.f.l3_len = tx_pkt->l3_len;
420                         /* If new context to be built or reuse the exist ctx. */
421                         ctx = what_ctx_update(txq, tx_ol_req, hdrlen);
422
423                         /* Only allocate context descriptor if required*/
424                         new_ctx = (ctx == EM_CTX_NUM);
425                 }
426
427                 /*
428                  * Keep track of how many descriptors are used this loop
429                  * This will always be the number of segments + the number of
430                  * Context descriptors required to transmit the packet
431                  */
432                 nb_used = (uint16_t)(tx_pkt->nb_segs + new_ctx);
433
434                 /*
435                  * The number of descriptors that must be allocated for a
436                  * packet is the number of segments of that packet, plus 1
437                  * Context Descriptor for the hardware offload, if any.
438                  * Determine the last TX descriptor to allocate in the TX ring
439                  * for the packet, starting from the current position (tx_id)
440                  * in the ring.
441                  */
442                 tx_last = (uint16_t) (tx_id + nb_used - 1);
443
444                 /* Circular ring */
445                 if (tx_last >= txq->nb_tx_desc)
446                         tx_last = (uint16_t) (tx_last - txq->nb_tx_desc);
447
448                 PMD_TX_LOG(DEBUG, "port_id=%u queue_id=%u pktlen=%u"
449                            " tx_first=%u tx_last=%u",
450                            (unsigned) txq->port_id,
451                            (unsigned) txq->queue_id,
452                            (unsigned) tx_pkt->pkt_len,
453                            (unsigned) tx_id,
454                            (unsigned) tx_last);
455
456                 /*
457                  * Make sure there are enough TX descriptors available to
458                  * transmit the entire packet.
459                  * nb_used better be less than or equal to txq->tx_rs_thresh
460                  */
461                 while (unlikely (nb_used > txq->nb_tx_free)) {
462                         PMD_TX_LOG(DEBUG, "Not enough free TX descriptors "
463                                    "nb_used=%4u nb_free=%4u "
464                                    "(port=%d queue=%d)",
465                                    nb_used, txq->nb_tx_free,
466                                    txq->port_id, txq->queue_id);
467
468                         if (em_xmit_cleanup(txq) != 0) {
469                                 /* Could not clean any descriptors */
470                                 if (nb_tx == 0)
471                                         return 0;
472                                 goto end_of_tx;
473                         }
474                 }
475
476                 /*
477                  * By now there are enough free TX descriptors to transmit
478                  * the packet.
479                  */
480
481                 /*
482                  * Set common flags of all TX Data Descriptors.
483                  *
484                  * The following bits must be set in all Data Descriptors:
485                  *    - E1000_TXD_DTYP_DATA
486                  *    - E1000_TXD_DTYP_DEXT
487                  *
488                  * The following bits must be set in the first Data Descriptor
489                  * and are ignored in the other ones:
490                  *    - E1000_TXD_POPTS_IXSM
491                  *    - E1000_TXD_POPTS_TXSM
492                  *
493                  * The following bits must be set in the last Data Descriptor
494                  * and are ignored in the other ones:
495                  *    - E1000_TXD_CMD_VLE
496                  *    - E1000_TXD_CMD_IFCS
497                  *
498                  * The following bits must only be set in the last Data
499                  * Descriptor:
500                  *   - E1000_TXD_CMD_EOP
501                  *
502                  * The following bits can be set in any Data Descriptor, but
503                  * are only set in the last Data Descriptor:
504                  *   - E1000_TXD_CMD_RS
505                  */
506                 cmd_type_len = E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
507                         E1000_TXD_CMD_IFCS;
508                 popts_spec = 0;
509
510                 /* Set VLAN Tag offload fields. */
511                 if (ol_flags & PKT_TX_VLAN_PKT) {
512                         cmd_type_len |= E1000_TXD_CMD_VLE;
513                         popts_spec = tx_pkt->vlan_tci << E1000_TXD_VLAN_SHIFT;
514                 }
515
516                 if (tx_ol_req) {
517                         /*
518                          * Setup the TX Context Descriptor if required
519                          */
520                         if (new_ctx) {
521                                 volatile struct e1000_context_desc *ctx_txd;
522
523                                 ctx_txd = (volatile struct e1000_context_desc *)
524                                         &txr[tx_id];
525
526                                 txn = &sw_ring[txe->next_id];
527                                 RTE_MBUF_PREFETCH_TO_FREE(txn->mbuf);
528
529                                 if (txe->mbuf != NULL) {
530                                         rte_pktmbuf_free_seg(txe->mbuf);
531                                         txe->mbuf = NULL;
532                                 }
533
534                                 em_set_xmit_ctx(txq, ctx_txd, tx_ol_req,
535                                         hdrlen);
536
537                                 txe->last_id = tx_last;
538                                 tx_id = txe->next_id;
539                                 txe = txn;
540                         }
541
542                         /*
543                          * Setup the TX Data Descriptor,
544                          * This path will go through
545                          * whatever new/reuse the context descriptor
546                          */
547                         popts_spec |= tx_desc_cksum_flags_to_upper(ol_flags);
548                 }
549
550                 m_seg = tx_pkt;
551                 do {
552                         txd = &txr[tx_id];
553                         txn = &sw_ring[txe->next_id];
554
555                         if (txe->mbuf != NULL)
556                                 rte_pktmbuf_free_seg(txe->mbuf);
557                         txe->mbuf = m_seg;
558
559                         /*
560                          * Set up Transmit Data Descriptor.
561                          */
562                         slen = m_seg->data_len;
563                         buf_dma_addr = rte_mbuf_data_iova(m_seg);
564
565                         txd->buffer_addr = rte_cpu_to_le_64(buf_dma_addr);
566                         txd->lower.data = rte_cpu_to_le_32(cmd_type_len | slen);
567                         txd->upper.data = rte_cpu_to_le_32(popts_spec);
568
569                         txe->last_id = tx_last;
570                         tx_id = txe->next_id;
571                         txe = txn;
572                         m_seg = m_seg->next;
573                 } while (m_seg != NULL);
574
575                 /*
576                  * The last packet data descriptor needs End Of Packet (EOP)
577                  */
578                 cmd_type_len |= E1000_TXD_CMD_EOP;
579                 txq->nb_tx_used = (uint16_t)(txq->nb_tx_used + nb_used);
580                 txq->nb_tx_free = (uint16_t)(txq->nb_tx_free - nb_used);
581
582                 /* Set RS bit only on threshold packets' last descriptor */
583                 if (txq->nb_tx_used >= txq->tx_rs_thresh) {
584                         PMD_TX_LOG(DEBUG,
585                                    "Setting RS bit on TXD id=%4u "
586                                    "(port=%d queue=%d)",
587                                    tx_last, txq->port_id, txq->queue_id);
588
589                         cmd_type_len |= E1000_TXD_CMD_RS;
590
591                         /* Update txq RS bit counters */
592                         txq->nb_tx_used = 0;
593                 }
594                 txd->lower.data |= rte_cpu_to_le_32(cmd_type_len);
595         }
596 end_of_tx:
597         rte_wmb();
598
599         /*
600          * Set the Transmit Descriptor Tail (TDT)
601          */
602         PMD_TX_LOG(DEBUG, "port_id=%u queue_id=%u tx_tail=%u nb_tx=%u",
603                 (unsigned) txq->port_id, (unsigned) txq->queue_id,
604                 (unsigned) tx_id, (unsigned) nb_tx);
605         E1000_PCI_REG_WRITE_RELAXED(txq->tdt_reg_addr, tx_id);
606         txq->tx_tail = tx_id;
607
608         return nb_tx;
609 }
610
611 /*********************************************************************
612  *
613  *  TX prep functions
614  *
615  **********************************************************************/
616 uint16_t
617 eth_em_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
618                 uint16_t nb_pkts)
619 {
620         int i, ret;
621         struct rte_mbuf *m;
622
623         for (i = 0; i < nb_pkts; i++) {
624                 m = tx_pkts[i];
625
626                 if (m->ol_flags & E1000_TX_OFFLOAD_NOTSUP_MASK) {
627                         rte_errno = ENOTSUP;
628                         return i;
629                 }
630
631 #ifdef RTE_ETHDEV_DEBUG_TX
632                 ret = rte_validate_tx_offload(m);
633                 if (ret != 0) {
634                         rte_errno = -ret;
635                         return i;
636                 }
637 #endif
638                 ret = rte_net_intel_cksum_prepare(m);
639                 if (ret != 0) {
640                         rte_errno = -ret;
641                         return i;
642                 }
643         }
644
645         return i;
646 }
647
648 /*********************************************************************
649  *
650  *  RX functions
651  *
652  **********************************************************************/
653
654 static inline uint64_t
655 rx_desc_status_to_pkt_flags(uint32_t rx_status)
656 {
657         uint64_t pkt_flags;
658
659         /* Check if VLAN present */
660         pkt_flags = ((rx_status & E1000_RXD_STAT_VP) ?
661                 PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED : 0);
662
663         return pkt_flags;
664 }
665
666 static inline uint64_t
667 rx_desc_error_to_pkt_flags(uint32_t rx_error)
668 {
669         uint64_t pkt_flags = 0;
670
671         if (rx_error & E1000_RXD_ERR_IPE)
672                 pkt_flags |= PKT_RX_IP_CKSUM_BAD;
673         if (rx_error & E1000_RXD_ERR_TCPE)
674                 pkt_flags |= PKT_RX_L4_CKSUM_BAD;
675         return pkt_flags;
676 }
677
678 uint16_t
679 eth_em_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
680                 uint16_t nb_pkts)
681 {
682         volatile struct e1000_rx_desc *rx_ring;
683         volatile struct e1000_rx_desc *rxdp;
684         struct em_rx_queue *rxq;
685         struct em_rx_entry *sw_ring;
686         struct em_rx_entry *rxe;
687         struct rte_mbuf *rxm;
688         struct rte_mbuf *nmb;
689         struct e1000_rx_desc rxd;
690         uint64_t dma_addr;
691         uint16_t pkt_len;
692         uint16_t rx_id;
693         uint16_t nb_rx;
694         uint16_t nb_hold;
695         uint8_t status;
696
697         rxq = rx_queue;
698
699         nb_rx = 0;
700         nb_hold = 0;
701         rx_id = rxq->rx_tail;
702         rx_ring = rxq->rx_ring;
703         sw_ring = rxq->sw_ring;
704         while (nb_rx < nb_pkts) {
705                 /*
706                  * The order of operations here is important as the DD status
707                  * bit must not be read after any other descriptor fields.
708                  * rx_ring and rxdp are pointing to volatile data so the order
709                  * of accesses cannot be reordered by the compiler. If they were
710                  * not volatile, they could be reordered which could lead to
711                  * using invalid descriptor fields when read from rxd.
712                  */
713                 rxdp = &rx_ring[rx_id];
714                 status = rxdp->status;
715                 if (! (status & E1000_RXD_STAT_DD))
716                         break;
717                 rxd = *rxdp;
718
719                 /*
720                  * End of packet.
721                  *
722                  * If the E1000_RXD_STAT_EOP flag is not set, the RX packet is
723                  * likely to be invalid and to be dropped by the various
724                  * validation checks performed by the network stack.
725                  *
726                  * Allocate a new mbuf to replenish the RX ring descriptor.
727                  * If the allocation fails:
728                  *    - arrange for that RX descriptor to be the first one
729                  *      being parsed the next time the receive function is
730                  *      invoked [on the same queue].
731                  *
732                  *    - Stop parsing the RX ring and return immediately.
733                  *
734                  * This policy do not drop the packet received in the RX
735                  * descriptor for which the allocation of a new mbuf failed.
736                  * Thus, it allows that packet to be later retrieved if
737                  * mbuf have been freed in the mean time.
738                  * As a side effect, holding RX descriptors instead of
739                  * systematically giving them back to the NIC may lead to
740                  * RX ring exhaustion situations.
741                  * However, the NIC can gracefully prevent such situations
742                  * to happen by sending specific "back-pressure" flow control
743                  * frames to its peer(s).
744                  */
745                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_id=%u "
746                            "status=0x%x pkt_len=%u",
747                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
748                            (unsigned) rx_id, (unsigned) status,
749                            (unsigned) rte_le_to_cpu_16(rxd.length));
750
751                 nmb = rte_mbuf_raw_alloc(rxq->mb_pool);
752                 if (nmb == NULL) {
753                         PMD_RX_LOG(DEBUG, "RX mbuf alloc failed port_id=%u "
754                                    "queue_id=%u",
755                                    (unsigned) rxq->port_id,
756                                    (unsigned) rxq->queue_id);
757                         rte_eth_devices[rxq->port_id].data->rx_mbuf_alloc_failed++;
758                         break;
759                 }
760
761                 nb_hold++;
762                 rxe = &sw_ring[rx_id];
763                 rx_id++;
764                 if (rx_id == rxq->nb_rx_desc)
765                         rx_id = 0;
766
767                 /* Prefetch next mbuf while processing current one. */
768                 rte_em_prefetch(sw_ring[rx_id].mbuf);
769
770                 /*
771                  * When next RX descriptor is on a cache-line boundary,
772                  * prefetch the next 4 RX descriptors and the next 8 pointers
773                  * to mbufs.
774                  */
775                 if ((rx_id & 0x3) == 0) {
776                         rte_em_prefetch(&rx_ring[rx_id]);
777                         rte_em_prefetch(&sw_ring[rx_id]);
778                 }
779
780                 /* Rearm RXD: attach new mbuf and reset status to zero. */
781
782                 rxm = rxe->mbuf;
783                 rxe->mbuf = nmb;
784                 dma_addr =
785                         rte_cpu_to_le_64(rte_mbuf_data_iova_default(nmb));
786                 rxdp->buffer_addr = dma_addr;
787                 rxdp->status = 0;
788
789                 /*
790                  * Initialize the returned mbuf.
791                  * 1) setup generic mbuf fields:
792                  *    - number of segments,
793                  *    - next segment,
794                  *    - packet length,
795                  *    - RX port identifier.
796                  * 2) integrate hardware offload data, if any:
797                  *    - RSS flag & hash,
798                  *    - IP checksum flag,
799                  *    - VLAN TCI, if any,
800                  *    - error flags.
801                  */
802                 pkt_len = (uint16_t) (rte_le_to_cpu_16(rxd.length) -
803                                 rxq->crc_len);
804                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
805                 rte_packet_prefetch((char *)rxm->buf_addr + rxm->data_off);
806                 rxm->nb_segs = 1;
807                 rxm->next = NULL;
808                 rxm->pkt_len = pkt_len;
809                 rxm->data_len = pkt_len;
810                 rxm->port = rxq->port_id;
811
812                 rxm->ol_flags = rx_desc_status_to_pkt_flags(status);
813                 rxm->ol_flags = rxm->ol_flags |
814                                 rx_desc_error_to_pkt_flags(rxd.errors);
815
816                 /* Only valid if PKT_RX_VLAN set in pkt_flags */
817                 rxm->vlan_tci = rte_le_to_cpu_16(rxd.special);
818
819                 /*
820                  * Store the mbuf address into the next entry of the array
821                  * of returned packets.
822                  */
823                 rx_pkts[nb_rx++] = rxm;
824         }
825         rxq->rx_tail = rx_id;
826
827         /*
828          * If the number of free RX descriptors is greater than the RX free
829          * threshold of the queue, advance the Receive Descriptor Tail (RDT)
830          * register.
831          * Update the RDT with the value of the last processed RX descriptor
832          * minus 1, to guarantee that the RDT register is never equal to the
833          * RDH register, which creates a "full" ring situtation from the
834          * hardware point of view...
835          */
836         nb_hold = (uint16_t) (nb_hold + rxq->nb_rx_hold);
837         if (nb_hold > rxq->rx_free_thresh) {
838                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_tail=%u "
839                            "nb_hold=%u nb_rx=%u",
840                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
841                            (unsigned) rx_id, (unsigned) nb_hold,
842                            (unsigned) nb_rx);
843                 rx_id = (uint16_t) ((rx_id == 0) ?
844                         (rxq->nb_rx_desc - 1) : (rx_id - 1));
845                 E1000_PCI_REG_WRITE(rxq->rdt_reg_addr, rx_id);
846                 nb_hold = 0;
847         }
848         rxq->nb_rx_hold = nb_hold;
849         return nb_rx;
850 }
851
852 uint16_t
853 eth_em_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
854                          uint16_t nb_pkts)
855 {
856         struct em_rx_queue *rxq;
857         volatile struct e1000_rx_desc *rx_ring;
858         volatile struct e1000_rx_desc *rxdp;
859         struct em_rx_entry *sw_ring;
860         struct em_rx_entry *rxe;
861         struct rte_mbuf *first_seg;
862         struct rte_mbuf *last_seg;
863         struct rte_mbuf *rxm;
864         struct rte_mbuf *nmb;
865         struct e1000_rx_desc rxd;
866         uint64_t dma; /* Physical address of mbuf data buffer */
867         uint16_t rx_id;
868         uint16_t nb_rx;
869         uint16_t nb_hold;
870         uint16_t data_len;
871         uint8_t status;
872
873         rxq = rx_queue;
874
875         nb_rx = 0;
876         nb_hold = 0;
877         rx_id = rxq->rx_tail;
878         rx_ring = rxq->rx_ring;
879         sw_ring = rxq->sw_ring;
880
881         /*
882          * Retrieve RX context of current packet, if any.
883          */
884         first_seg = rxq->pkt_first_seg;
885         last_seg = rxq->pkt_last_seg;
886
887         while (nb_rx < nb_pkts) {
888         next_desc:
889                 /*
890                  * The order of operations here is important as the DD status
891                  * bit must not be read after any other descriptor fields.
892                  * rx_ring and rxdp are pointing to volatile data so the order
893                  * of accesses cannot be reordered by the compiler. If they were
894                  * not volatile, they could be reordered which could lead to
895                  * using invalid descriptor fields when read from rxd.
896                  */
897                 rxdp = &rx_ring[rx_id];
898                 status = rxdp->status;
899                 if (! (status & E1000_RXD_STAT_DD))
900                         break;
901                 rxd = *rxdp;
902
903                 /*
904                  * Descriptor done.
905                  *
906                  * Allocate a new mbuf to replenish the RX ring descriptor.
907                  * If the allocation fails:
908                  *    - arrange for that RX descriptor to be the first one
909                  *      being parsed the next time the receive function is
910                  *      invoked [on the same queue].
911                  *
912                  *    - Stop parsing the RX ring and return immediately.
913                  *
914                  * This policy does not drop the packet received in the RX
915                  * descriptor for which the allocation of a new mbuf failed.
916                  * Thus, it allows that packet to be later retrieved if
917                  * mbuf have been freed in the mean time.
918                  * As a side effect, holding RX descriptors instead of
919                  * systematically giving them back to the NIC may lead to
920                  * RX ring exhaustion situations.
921                  * However, the NIC can gracefully prevent such situations
922                  * to happen by sending specific "back-pressure" flow control
923                  * frames to its peer(s).
924                  */
925                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_id=%u "
926                            "status=0x%x data_len=%u",
927                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
928                            (unsigned) rx_id, (unsigned) status,
929                            (unsigned) rte_le_to_cpu_16(rxd.length));
930
931                 nmb = rte_mbuf_raw_alloc(rxq->mb_pool);
932                 if (nmb == NULL) {
933                         PMD_RX_LOG(DEBUG, "RX mbuf alloc failed port_id=%u "
934                                    "queue_id=%u", (unsigned) rxq->port_id,
935                                    (unsigned) rxq->queue_id);
936                         rte_eth_devices[rxq->port_id].data->rx_mbuf_alloc_failed++;
937                         break;
938                 }
939
940                 nb_hold++;
941                 rxe = &sw_ring[rx_id];
942                 rx_id++;
943                 if (rx_id == rxq->nb_rx_desc)
944                         rx_id = 0;
945
946                 /* Prefetch next mbuf while processing current one. */
947                 rte_em_prefetch(sw_ring[rx_id].mbuf);
948
949                 /*
950                  * When next RX descriptor is on a cache-line boundary,
951                  * prefetch the next 4 RX descriptors and the next 8 pointers
952                  * to mbufs.
953                  */
954                 if ((rx_id & 0x3) == 0) {
955                         rte_em_prefetch(&rx_ring[rx_id]);
956                         rte_em_prefetch(&sw_ring[rx_id]);
957                 }
958
959                 /*
960                  * Update RX descriptor with the physical address of the new
961                  * data buffer of the new allocated mbuf.
962                  */
963                 rxm = rxe->mbuf;
964                 rxe->mbuf = nmb;
965                 dma = rte_cpu_to_le_64(rte_mbuf_data_iova_default(nmb));
966                 rxdp->buffer_addr = dma;
967                 rxdp->status = 0;
968
969                 /*
970                  * Set data length & data buffer address of mbuf.
971                  */
972                 data_len = rte_le_to_cpu_16(rxd.length);
973                 rxm->data_len = data_len;
974                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
975
976                 /*
977                  * If this is the first buffer of the received packet,
978                  * set the pointer to the first mbuf of the packet and
979                  * initialize its context.
980                  * Otherwise, update the total length and the number of segments
981                  * of the current scattered packet, and update the pointer to
982                  * the last mbuf of the current packet.
983                  */
984                 if (first_seg == NULL) {
985                         first_seg = rxm;
986                         first_seg->pkt_len = data_len;
987                         first_seg->nb_segs = 1;
988                 } else {
989                         first_seg->pkt_len += data_len;
990                         first_seg->nb_segs++;
991                         last_seg->next = rxm;
992                 }
993
994                 /*
995                  * If this is not the last buffer of the received packet,
996                  * update the pointer to the last mbuf of the current scattered
997                  * packet and continue to parse the RX ring.
998                  */
999                 if (! (status & E1000_RXD_STAT_EOP)) {
1000                         last_seg = rxm;
1001                         goto next_desc;
1002                 }
1003
1004                 /*
1005                  * This is the last buffer of the received packet.
1006                  * If the CRC is not stripped by the hardware:
1007                  *   - Subtract the CRC length from the total packet length.
1008                  *   - If the last buffer only contains the whole CRC or a part
1009                  *     of it, free the mbuf associated to the last buffer.
1010                  *     If part of the CRC is also contained in the previous
1011                  *     mbuf, subtract the length of that CRC part from the
1012                  *     data length of the previous mbuf.
1013                  */
1014                 rxm->next = NULL;
1015                 if (unlikely(rxq->crc_len > 0)) {
1016                         first_seg->pkt_len -= RTE_ETHER_CRC_LEN;
1017                         if (data_len <= RTE_ETHER_CRC_LEN) {
1018                                 rte_pktmbuf_free_seg(rxm);
1019                                 first_seg->nb_segs--;
1020                                 last_seg->data_len = (uint16_t)
1021                                         (last_seg->data_len -
1022                                          (RTE_ETHER_CRC_LEN - data_len));
1023                                 last_seg->next = NULL;
1024                         } else
1025                                 rxm->data_len = (uint16_t)
1026                                         (data_len - RTE_ETHER_CRC_LEN);
1027                 }
1028
1029                 /*
1030                  * Initialize the first mbuf of the returned packet:
1031                  *    - RX port identifier,
1032                  *    - hardware offload data, if any:
1033                  *      - IP checksum flag,
1034                  *      - error flags.
1035                  */
1036                 first_seg->port = rxq->port_id;
1037
1038                 first_seg->ol_flags = rx_desc_status_to_pkt_flags(status);
1039                 first_seg->ol_flags = first_seg->ol_flags |
1040                                         rx_desc_error_to_pkt_flags(rxd.errors);
1041
1042                 /* Only valid if PKT_RX_VLAN set in pkt_flags */
1043                 rxm->vlan_tci = rte_le_to_cpu_16(rxd.special);
1044
1045                 /* Prefetch data of first segment, if configured to do so. */
1046                 rte_packet_prefetch((char *)first_seg->buf_addr +
1047                         first_seg->data_off);
1048
1049                 /*
1050                  * Store the mbuf address into the next entry of the array
1051                  * of returned packets.
1052                  */
1053                 rx_pkts[nb_rx++] = first_seg;
1054
1055                 /*
1056                  * Setup receipt context for a new packet.
1057                  */
1058                 first_seg = NULL;
1059         }
1060
1061         /*
1062          * Record index of the next RX descriptor to probe.
1063          */
1064         rxq->rx_tail = rx_id;
1065
1066         /*
1067          * Save receive context.
1068          */
1069         rxq->pkt_first_seg = first_seg;
1070         rxq->pkt_last_seg = last_seg;
1071
1072         /*
1073          * If the number of free RX descriptors is greater than the RX free
1074          * threshold of the queue, advance the Receive Descriptor Tail (RDT)
1075          * register.
1076          * Update the RDT with the value of the last processed RX descriptor
1077          * minus 1, to guarantee that the RDT register is never equal to the
1078          * RDH register, which creates a "full" ring situtation from the
1079          * hardware point of view...
1080          */
1081         nb_hold = (uint16_t) (nb_hold + rxq->nb_rx_hold);
1082         if (nb_hold > rxq->rx_free_thresh) {
1083                 PMD_RX_LOG(DEBUG, "port_id=%u queue_id=%u rx_tail=%u "
1084                            "nb_hold=%u nb_rx=%u",
1085                            (unsigned) rxq->port_id, (unsigned) rxq->queue_id,
1086                            (unsigned) rx_id, (unsigned) nb_hold,
1087                            (unsigned) nb_rx);
1088                 rx_id = (uint16_t) ((rx_id == 0) ?
1089                         (rxq->nb_rx_desc - 1) : (rx_id - 1));
1090                 E1000_PCI_REG_WRITE(rxq->rdt_reg_addr, rx_id);
1091                 nb_hold = 0;
1092         }
1093         rxq->nb_rx_hold = nb_hold;
1094         return nb_rx;
1095 }
1096
1097 #define EM_MAX_BUF_SIZE     16384
1098 #define EM_RCTL_FLXBUF_STEP 1024
1099
1100 static void
1101 em_tx_queue_release_mbufs(struct em_tx_queue *txq)
1102 {
1103         unsigned i;
1104
1105         if (txq->sw_ring != NULL) {
1106                 for (i = 0; i != txq->nb_tx_desc; i++) {
1107                         if (txq->sw_ring[i].mbuf != NULL) {
1108                                 rte_pktmbuf_free_seg(txq->sw_ring[i].mbuf);
1109                                 txq->sw_ring[i].mbuf = NULL;
1110                         }
1111                 }
1112         }
1113 }
1114
1115 static void
1116 em_tx_queue_release(struct em_tx_queue *txq)
1117 {
1118         if (txq != NULL) {
1119                 em_tx_queue_release_mbufs(txq);
1120                 rte_free(txq->sw_ring);
1121                 rte_memzone_free(txq->mz);
1122                 rte_free(txq);
1123         }
1124 }
1125
1126 void
1127 eth_em_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
1128 {
1129         em_tx_queue_release(dev->data->tx_queues[qid]);
1130 }
1131
1132 /* (Re)set dynamic em_tx_queue fields to defaults */
1133 static void
1134 em_reset_tx_queue(struct em_tx_queue *txq)
1135 {
1136         uint16_t i, nb_desc, prev;
1137         static const struct e1000_data_desc txd_init = {
1138                 .upper.fields = {.status = E1000_TXD_STAT_DD},
1139         };
1140
1141         nb_desc = txq->nb_tx_desc;
1142
1143         /* Initialize ring entries */
1144
1145         prev = (uint16_t) (nb_desc - 1);
1146
1147         for (i = 0; i < nb_desc; i++) {
1148                 txq->tx_ring[i] = txd_init;
1149                 txq->sw_ring[i].mbuf = NULL;
1150                 txq->sw_ring[i].last_id = i;
1151                 txq->sw_ring[prev].next_id = i;
1152                 prev = i;
1153         }
1154
1155         /*
1156          * Always allow 1 descriptor to be un-allocated to avoid
1157          * a H/W race condition
1158          */
1159         txq->nb_tx_free = (uint16_t)(nb_desc - 1);
1160         txq->last_desc_cleaned = (uint16_t)(nb_desc - 1);
1161         txq->nb_tx_used = 0;
1162         txq->tx_tail = 0;
1163
1164         memset((void*)&txq->ctx_cache, 0, sizeof (txq->ctx_cache));
1165 }
1166
1167 uint64_t
1168 em_get_tx_port_offloads_capa(struct rte_eth_dev *dev)
1169 {
1170         uint64_t tx_offload_capa;
1171
1172         RTE_SET_USED(dev);
1173         tx_offload_capa =
1174                 RTE_ETH_TX_OFFLOAD_MULTI_SEGS  |
1175                 RTE_ETH_TX_OFFLOAD_VLAN_INSERT |
1176                 RTE_ETH_TX_OFFLOAD_IPV4_CKSUM  |
1177                 RTE_ETH_TX_OFFLOAD_UDP_CKSUM   |
1178                 RTE_ETH_TX_OFFLOAD_TCP_CKSUM;
1179
1180         return tx_offload_capa;
1181 }
1182
1183 uint64_t
1184 em_get_tx_queue_offloads_capa(struct rte_eth_dev *dev)
1185 {
1186         uint64_t tx_queue_offload_capa;
1187
1188         /*
1189          * As only one Tx queue can be used, let per queue offloading
1190          * capability be same to per port queue offloading capability
1191          * for better convenience.
1192          */
1193         tx_queue_offload_capa = em_get_tx_port_offloads_capa(dev);
1194
1195         return tx_queue_offload_capa;
1196 }
1197
1198 int
1199 eth_em_tx_queue_setup(struct rte_eth_dev *dev,
1200                          uint16_t queue_idx,
1201                          uint16_t nb_desc,
1202                          unsigned int socket_id,
1203                          const struct rte_eth_txconf *tx_conf)
1204 {
1205         const struct rte_memzone *tz;
1206         struct em_tx_queue *txq;
1207         struct e1000_hw     *hw;
1208         uint32_t tsize;
1209         uint16_t tx_rs_thresh, tx_free_thresh;
1210         uint64_t offloads;
1211
1212         hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1213
1214         offloads = tx_conf->offloads | dev->data->dev_conf.txmode.offloads;
1215
1216         /*
1217          * Validate number of transmit descriptors.
1218          * It must not exceed hardware maximum, and must be multiple
1219          * of E1000_ALIGN.
1220          */
1221         if (nb_desc % EM_TXD_ALIGN != 0 ||
1222                         (nb_desc > E1000_MAX_RING_DESC) ||
1223                         (nb_desc < E1000_MIN_RING_DESC)) {
1224                 return -(EINVAL);
1225         }
1226
1227         tx_free_thresh = tx_conf->tx_free_thresh;
1228         if (tx_free_thresh == 0)
1229                 tx_free_thresh = (uint16_t)RTE_MIN(nb_desc / 4,
1230                                         DEFAULT_TX_FREE_THRESH);
1231
1232         tx_rs_thresh = tx_conf->tx_rs_thresh;
1233         if (tx_rs_thresh == 0)
1234                 tx_rs_thresh = (uint16_t)RTE_MIN(tx_free_thresh,
1235                                         DEFAULT_TX_RS_THRESH);
1236
1237         if (tx_free_thresh >= (nb_desc - 3)) {
1238                 PMD_INIT_LOG(ERR, "tx_free_thresh must be less than the "
1239                              "number of TX descriptors minus 3. "
1240                              "(tx_free_thresh=%u port=%d queue=%d)",
1241                              (unsigned int)tx_free_thresh,
1242                              (int)dev->data->port_id, (int)queue_idx);
1243                 return -(EINVAL);
1244         }
1245         if (tx_rs_thresh > tx_free_thresh) {
1246                 PMD_INIT_LOG(ERR, "tx_rs_thresh must be less than or equal to "
1247                              "tx_free_thresh. (tx_free_thresh=%u "
1248                              "tx_rs_thresh=%u port=%d queue=%d)",
1249                              (unsigned int)tx_free_thresh,
1250                              (unsigned int)tx_rs_thresh,
1251                              (int)dev->data->port_id,
1252                              (int)queue_idx);
1253                 return -(EINVAL);
1254         }
1255
1256         /*
1257          * If rs_bit_thresh is greater than 1, then TX WTHRESH should be
1258          * set to 0. If WTHRESH is greater than zero, the RS bit is ignored
1259          * by the NIC and all descriptors are written back after the NIC
1260          * accumulates WTHRESH descriptors.
1261          */
1262         if (tx_conf->tx_thresh.wthresh != 0 && tx_rs_thresh != 1) {
1263                 PMD_INIT_LOG(ERR, "TX WTHRESH must be set to 0 if "
1264                              "tx_rs_thresh is greater than 1. (tx_rs_thresh=%u "
1265                              "port=%d queue=%d)", (unsigned int)tx_rs_thresh,
1266                              (int)dev->data->port_id, (int)queue_idx);
1267                 return -(EINVAL);
1268         }
1269
1270         /* Free memory prior to re-allocation if needed... */
1271         if (dev->data->tx_queues[queue_idx] != NULL) {
1272                 em_tx_queue_release(dev->data->tx_queues[queue_idx]);
1273                 dev->data->tx_queues[queue_idx] = NULL;
1274         }
1275
1276         /*
1277          * Allocate TX ring hardware descriptors. A memzone large enough to
1278          * handle the maximum ring size is allocated in order to allow for
1279          * resizing in later calls to the queue setup function.
1280          */
1281         tsize = sizeof(txq->tx_ring[0]) * E1000_MAX_RING_DESC;
1282         tz = rte_eth_dma_zone_reserve(dev, "tx_ring", queue_idx, tsize,
1283                                       RTE_CACHE_LINE_SIZE, socket_id);
1284         if (tz == NULL)
1285                 return -ENOMEM;
1286
1287         /* Allocate the tx queue data structure. */
1288         if ((txq = rte_zmalloc("ethdev TX queue", sizeof(*txq),
1289                         RTE_CACHE_LINE_SIZE)) == NULL)
1290                 return -ENOMEM;
1291
1292         txq->mz = tz;
1293         /* Allocate software ring */
1294         if ((txq->sw_ring = rte_zmalloc("txq->sw_ring",
1295                         sizeof(txq->sw_ring[0]) * nb_desc,
1296                         RTE_CACHE_LINE_SIZE)) == NULL) {
1297                 em_tx_queue_release(txq);
1298                 return -ENOMEM;
1299         }
1300
1301         txq->nb_tx_desc = nb_desc;
1302         txq->tx_free_thresh = tx_free_thresh;
1303         txq->tx_rs_thresh = tx_rs_thresh;
1304         txq->pthresh = tx_conf->tx_thresh.pthresh;
1305         txq->hthresh = tx_conf->tx_thresh.hthresh;
1306         txq->wthresh = tx_conf->tx_thresh.wthresh;
1307         txq->queue_id = queue_idx;
1308         txq->port_id = dev->data->port_id;
1309
1310         txq->tdt_reg_addr = E1000_PCI_REG_ADDR(hw, E1000_TDT(queue_idx));
1311         txq->tx_ring_phys_addr = tz->iova;
1312         txq->tx_ring = (struct e1000_data_desc *) tz->addr;
1313
1314         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64,
1315                      txq->sw_ring, txq->tx_ring, txq->tx_ring_phys_addr);
1316
1317         em_reset_tx_queue(txq);
1318
1319         dev->data->tx_queues[queue_idx] = txq;
1320         txq->offloads = offloads;
1321         return 0;
1322 }
1323
1324 static void
1325 em_rx_queue_release_mbufs(struct em_rx_queue *rxq)
1326 {
1327         unsigned i;
1328
1329         if (rxq->sw_ring != NULL) {
1330                 for (i = 0; i != rxq->nb_rx_desc; i++) {
1331                         if (rxq->sw_ring[i].mbuf != NULL) {
1332                                 rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
1333                                 rxq->sw_ring[i].mbuf = NULL;
1334                         }
1335                 }
1336         }
1337 }
1338
1339 static void
1340 em_rx_queue_release(struct em_rx_queue *rxq)
1341 {
1342         if (rxq != NULL) {
1343                 em_rx_queue_release_mbufs(rxq);
1344                 rte_free(rxq->sw_ring);
1345                 rte_memzone_free(rxq->mz);
1346                 rte_free(rxq);
1347         }
1348 }
1349
1350 void
1351 eth_em_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
1352 {
1353         em_rx_queue_release(dev->data->rx_queues[qid]);
1354 }
1355
1356 /* Reset dynamic em_rx_queue fields back to defaults */
1357 static void
1358 em_reset_rx_queue(struct em_rx_queue *rxq)
1359 {
1360         rxq->rx_tail = 0;
1361         rxq->nb_rx_hold = 0;
1362         rxq->pkt_first_seg = NULL;
1363         rxq->pkt_last_seg = NULL;
1364 }
1365
1366 uint64_t
1367 em_get_rx_port_offloads_capa(void)
1368 {
1369         uint64_t rx_offload_capa;
1370
1371         rx_offload_capa =
1372                 RTE_ETH_RX_OFFLOAD_VLAN_STRIP  |
1373                 RTE_ETH_RX_OFFLOAD_VLAN_FILTER |
1374                 RTE_ETH_RX_OFFLOAD_IPV4_CKSUM  |
1375                 RTE_ETH_RX_OFFLOAD_UDP_CKSUM   |
1376                 RTE_ETH_RX_OFFLOAD_TCP_CKSUM   |
1377                 RTE_ETH_RX_OFFLOAD_KEEP_CRC    |
1378                 RTE_ETH_RX_OFFLOAD_SCATTER;
1379
1380         return rx_offload_capa;
1381 }
1382
1383 uint64_t
1384 em_get_rx_queue_offloads_capa(void)
1385 {
1386         uint64_t rx_queue_offload_capa;
1387
1388         /*
1389          * As only one Rx queue can be used, let per queue offloading
1390          * capability be same to per port queue offloading capability
1391          * for better convenience.
1392          */
1393         rx_queue_offload_capa = em_get_rx_port_offloads_capa();
1394
1395         return rx_queue_offload_capa;
1396 }
1397
1398 int
1399 eth_em_rx_queue_setup(struct rte_eth_dev *dev,
1400                 uint16_t queue_idx,
1401                 uint16_t nb_desc,
1402                 unsigned int socket_id,
1403                 const struct rte_eth_rxconf *rx_conf,
1404                 struct rte_mempool *mp)
1405 {
1406         const struct rte_memzone *rz;
1407         struct em_rx_queue *rxq;
1408         struct e1000_hw     *hw;
1409         uint32_t rsize;
1410         uint64_t offloads;
1411
1412         hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1413
1414         offloads = rx_conf->offloads | dev->data->dev_conf.rxmode.offloads;
1415
1416         /*
1417          * Validate number of receive descriptors.
1418          * It must not exceed hardware maximum, and must be multiple
1419          * of E1000_ALIGN.
1420          */
1421         if (nb_desc % EM_RXD_ALIGN != 0 ||
1422                         (nb_desc > E1000_MAX_RING_DESC) ||
1423                         (nb_desc < E1000_MIN_RING_DESC)) {
1424                 return -EINVAL;
1425         }
1426
1427         /*
1428          * EM devices don't support drop_en functionality.
1429          * It's an optimization that does nothing on single-queue devices,
1430          * so just log the issue and carry on.
1431          */
1432         if (rx_conf->rx_drop_en) {
1433                 PMD_INIT_LOG(NOTICE, "drop_en functionality not supported by "
1434                              "device");
1435         }
1436
1437         /* Free memory prior to re-allocation if needed. */
1438         if (dev->data->rx_queues[queue_idx] != NULL) {
1439                 em_rx_queue_release(dev->data->rx_queues[queue_idx]);
1440                 dev->data->rx_queues[queue_idx] = NULL;
1441         }
1442
1443         /* Allocate RX ring for max possible mumber of hardware descriptors. */
1444         rsize = sizeof(rxq->rx_ring[0]) * E1000_MAX_RING_DESC;
1445         rz = rte_eth_dma_zone_reserve(dev, "rx_ring", queue_idx, rsize,
1446                                       RTE_CACHE_LINE_SIZE, socket_id);
1447         if (rz == NULL)
1448                 return -ENOMEM;
1449
1450         /* Allocate the RX queue data structure. */
1451         if ((rxq = rte_zmalloc("ethdev RX queue", sizeof(*rxq),
1452                         RTE_CACHE_LINE_SIZE)) == NULL)
1453                 return -ENOMEM;
1454
1455         rxq->mz = rz;
1456         /* Allocate software ring. */
1457         if ((rxq->sw_ring = rte_zmalloc("rxq->sw_ring",
1458                         sizeof (rxq->sw_ring[0]) * nb_desc,
1459                         RTE_CACHE_LINE_SIZE)) == NULL) {
1460                 em_rx_queue_release(rxq);
1461                 return -ENOMEM;
1462         }
1463
1464         rxq->mb_pool = mp;
1465         rxq->nb_rx_desc = nb_desc;
1466         rxq->pthresh = rx_conf->rx_thresh.pthresh;
1467         rxq->hthresh = rx_conf->rx_thresh.hthresh;
1468         rxq->wthresh = rx_conf->rx_thresh.wthresh;
1469         rxq->rx_free_thresh = rx_conf->rx_free_thresh;
1470         rxq->queue_id = queue_idx;
1471         rxq->port_id = dev->data->port_id;
1472         if (dev->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_KEEP_CRC)
1473                 rxq->crc_len = RTE_ETHER_CRC_LEN;
1474         else
1475                 rxq->crc_len = 0;
1476
1477         rxq->rdt_reg_addr = E1000_PCI_REG_ADDR(hw, E1000_RDT(queue_idx));
1478         rxq->rdh_reg_addr = E1000_PCI_REG_ADDR(hw, E1000_RDH(queue_idx));
1479         rxq->rx_ring_phys_addr = rz->iova;
1480         rxq->rx_ring = (struct e1000_rx_desc *) rz->addr;
1481
1482         PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64,
1483                      rxq->sw_ring, rxq->rx_ring, rxq->rx_ring_phys_addr);
1484
1485         dev->data->rx_queues[queue_idx] = rxq;
1486         em_reset_rx_queue(rxq);
1487         rxq->offloads = offloads;
1488
1489         return 0;
1490 }
1491
1492 uint32_t
1493 eth_em_rx_queue_count(void *rx_queue)
1494 {
1495 #define EM_RXQ_SCAN_INTERVAL 4
1496         volatile struct e1000_rx_desc *rxdp;
1497         struct em_rx_queue *rxq;
1498         uint32_t desc = 0;
1499
1500         rxq = rx_queue;
1501         rxdp = &(rxq->rx_ring[rxq->rx_tail]);
1502
1503         while ((desc < rxq->nb_rx_desc) &&
1504                 (rxdp->status & E1000_RXD_STAT_DD)) {
1505                 desc += EM_RXQ_SCAN_INTERVAL;
1506                 rxdp += EM_RXQ_SCAN_INTERVAL;
1507                 if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
1508                         rxdp = &(rxq->rx_ring[rxq->rx_tail +
1509                                 desc - rxq->nb_rx_desc]);
1510         }
1511
1512         return desc;
1513 }
1514
1515 int
1516 eth_em_rx_descriptor_status(void *rx_queue, uint16_t offset)
1517 {
1518         struct em_rx_queue *rxq = rx_queue;
1519         volatile uint8_t *status;
1520         uint32_t desc;
1521
1522         if (unlikely(offset >= rxq->nb_rx_desc))
1523                 return -EINVAL;
1524
1525         if (offset >= rxq->nb_rx_desc - rxq->nb_rx_hold)
1526                 return RTE_ETH_RX_DESC_UNAVAIL;
1527
1528         desc = rxq->rx_tail + offset;
1529         if (desc >= rxq->nb_rx_desc)
1530                 desc -= rxq->nb_rx_desc;
1531
1532         status = &rxq->rx_ring[desc].status;
1533         if (*status & E1000_RXD_STAT_DD)
1534                 return RTE_ETH_RX_DESC_DONE;
1535
1536         return RTE_ETH_RX_DESC_AVAIL;
1537 }
1538
1539 int
1540 eth_em_tx_descriptor_status(void *tx_queue, uint16_t offset)
1541 {
1542         struct em_tx_queue *txq = tx_queue;
1543         volatile uint8_t *status;
1544         uint32_t desc;
1545
1546         if (unlikely(offset >= txq->nb_tx_desc))
1547                 return -EINVAL;
1548
1549         desc = txq->tx_tail + offset;
1550         /* go to next desc that has the RS bit */
1551         desc = ((desc + txq->tx_rs_thresh - 1) / txq->tx_rs_thresh) *
1552                 txq->tx_rs_thresh;
1553         if (desc >= txq->nb_tx_desc) {
1554                 desc -= txq->nb_tx_desc;
1555                 if (desc >= txq->nb_tx_desc)
1556                         desc -= txq->nb_tx_desc;
1557         }
1558
1559         status = &txq->tx_ring[desc].upper.fields.status;
1560         if (*status & E1000_TXD_STAT_DD)
1561                 return RTE_ETH_TX_DESC_DONE;
1562
1563         return RTE_ETH_TX_DESC_FULL;
1564 }
1565
1566 void
1567 em_dev_clear_queues(struct rte_eth_dev *dev)
1568 {
1569         uint16_t i;
1570         struct em_tx_queue *txq;
1571         struct em_rx_queue *rxq;
1572
1573         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1574                 txq = dev->data->tx_queues[i];
1575                 if (txq != NULL) {
1576                         em_tx_queue_release_mbufs(txq);
1577                         em_reset_tx_queue(txq);
1578                 }
1579         }
1580
1581         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1582                 rxq = dev->data->rx_queues[i];
1583                 if (rxq != NULL) {
1584                         em_rx_queue_release_mbufs(rxq);
1585                         em_reset_rx_queue(rxq);
1586                 }
1587         }
1588 }
1589
1590 void
1591 em_dev_free_queues(struct rte_eth_dev *dev)
1592 {
1593         uint16_t i;
1594
1595         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1596                 eth_em_rx_queue_release(dev, i);
1597                 dev->data->rx_queues[i] = NULL;
1598         }
1599         dev->data->nb_rx_queues = 0;
1600
1601         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1602                 eth_em_tx_queue_release(dev, i);
1603                 dev->data->tx_queues[i] = NULL;
1604         }
1605         dev->data->nb_tx_queues = 0;
1606 }
1607
1608 /*
1609  * Takes as input/output parameter RX buffer size.
1610  * Returns (BSIZE | BSEX | FLXBUF) fields of RCTL register.
1611  */
1612 static uint32_t
1613 em_rctl_bsize(__rte_unused enum e1000_mac_type hwtyp, uint32_t *bufsz)
1614 {
1615         /*
1616          * For BSIZE & BSEX all configurable sizes are:
1617          * 16384: rctl |= (E1000_RCTL_SZ_16384 | E1000_RCTL_BSEX);
1618          *  8192: rctl |= (E1000_RCTL_SZ_8192  | E1000_RCTL_BSEX);
1619          *  4096: rctl |= (E1000_RCTL_SZ_4096  | E1000_RCTL_BSEX);
1620          *  2048: rctl |= E1000_RCTL_SZ_2048;
1621          *  1024: rctl |= E1000_RCTL_SZ_1024;
1622          *   512: rctl |= E1000_RCTL_SZ_512;
1623          *   256: rctl |= E1000_RCTL_SZ_256;
1624          */
1625         static const struct {
1626                 uint32_t bufsz;
1627                 uint32_t rctl;
1628         } bufsz_to_rctl[] = {
1629                 {16384, (E1000_RCTL_SZ_16384 | E1000_RCTL_BSEX)},
1630                 {8192,  (E1000_RCTL_SZ_8192  | E1000_RCTL_BSEX)},
1631                 {4096,  (E1000_RCTL_SZ_4096  | E1000_RCTL_BSEX)},
1632                 {2048,  E1000_RCTL_SZ_2048},
1633                 {1024,  E1000_RCTL_SZ_1024},
1634                 {512,   E1000_RCTL_SZ_512},
1635                 {256,   E1000_RCTL_SZ_256},
1636         };
1637
1638         int i;
1639         uint32_t rctl_bsize;
1640
1641         rctl_bsize = *bufsz;
1642
1643         /*
1644          * Starting from 82571 it is possible to specify RX buffer size
1645          * by RCTL.FLXBUF. When this field is different from zero, the
1646          * RX buffer size = RCTL.FLXBUF * 1K
1647          * (e.g. t is possible to specify RX buffer size  1,2,...,15KB).
1648          * It is working ok on real HW, but by some reason doesn't work
1649          * on VMware emulated 82574L.
1650          * So for now, always use BSIZE/BSEX to setup RX buffer size.
1651          * If you don't plan to use it on VMware emulated 82574L and
1652          * would like to specify RX buffer size in 1K granularity,
1653          * uncomment the following lines:
1654          * ***************************************************************
1655          * if (hwtyp >= e1000_82571 && hwtyp <= e1000_82574 &&
1656          *              rctl_bsize >= EM_RCTL_FLXBUF_STEP) {
1657          *      rctl_bsize /= EM_RCTL_FLXBUF_STEP;
1658          *      *bufsz = rctl_bsize;
1659          *      return (rctl_bsize << E1000_RCTL_FLXBUF_SHIFT &
1660          *              E1000_RCTL_FLXBUF_MASK);
1661          * }
1662          * ***************************************************************
1663          */
1664
1665         for (i = 0; i != sizeof(bufsz_to_rctl) / sizeof(bufsz_to_rctl[0]);
1666                         i++) {
1667                 if (rctl_bsize >= bufsz_to_rctl[i].bufsz) {
1668                         *bufsz = bufsz_to_rctl[i].bufsz;
1669                         return bufsz_to_rctl[i].rctl;
1670                 }
1671         }
1672
1673         /* Should never happen. */
1674         return -EINVAL;
1675 }
1676
1677 static int
1678 em_alloc_rx_queue_mbufs(struct em_rx_queue *rxq)
1679 {
1680         struct em_rx_entry *rxe = rxq->sw_ring;
1681         uint64_t dma_addr;
1682         unsigned i;
1683         static const struct e1000_rx_desc rxd_init = {
1684                 .buffer_addr = 0,
1685         };
1686
1687         /* Initialize software ring entries */
1688         for (i = 0; i < rxq->nb_rx_desc; i++) {
1689                 volatile struct e1000_rx_desc *rxd;
1690                 struct rte_mbuf *mbuf = rte_mbuf_raw_alloc(rxq->mb_pool);
1691
1692                 if (mbuf == NULL) {
1693                         PMD_INIT_LOG(ERR, "RX mbuf alloc failed "
1694                                      "queue_id=%hu", rxq->queue_id);
1695                         return -ENOMEM;
1696                 }
1697
1698                 dma_addr =
1699                         rte_cpu_to_le_64(rte_mbuf_data_iova_default(mbuf));
1700
1701                 /* Clear HW ring memory */
1702                 rxq->rx_ring[i] = rxd_init;
1703
1704                 rxd = &rxq->rx_ring[i];
1705                 rxd->buffer_addr = dma_addr;
1706                 rxe[i].mbuf = mbuf;
1707         }
1708
1709         return 0;
1710 }
1711
1712 /*********************************************************************
1713  *
1714  *  Enable receive unit.
1715  *
1716  **********************************************************************/
1717 int
1718 eth_em_rx_init(struct rte_eth_dev *dev)
1719 {
1720         struct e1000_hw *hw;
1721         struct em_rx_queue *rxq;
1722         struct rte_eth_rxmode *rxmode;
1723         uint32_t rctl;
1724         uint32_t rfctl;
1725         uint32_t rxcsum;
1726         uint32_t rctl_bsize;
1727         uint16_t i;
1728         int ret;
1729
1730         hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1731         rxmode = &dev->data->dev_conf.rxmode;
1732
1733         /*
1734          * Make sure receives are disabled while setting
1735          * up the descriptor ring.
1736          */
1737         rctl = E1000_READ_REG(hw, E1000_RCTL);
1738         E1000_WRITE_REG(hw, E1000_RCTL, rctl & ~E1000_RCTL_EN);
1739
1740         rfctl = E1000_READ_REG(hw, E1000_RFCTL);
1741
1742         /* Disable extended descriptor type. */
1743         rfctl &= ~E1000_RFCTL_EXTEN;
1744         /* Disable accelerated acknowledge */
1745         if (hw->mac.type == e1000_82574)
1746                 rfctl |= E1000_RFCTL_ACK_DIS;
1747
1748         E1000_WRITE_REG(hw, E1000_RFCTL, rfctl);
1749
1750         /*
1751          * XXX TEMPORARY WORKAROUND: on some systems with 82573
1752          * long latencies are observed, like Lenovo X60. This
1753          * change eliminates the problem, but since having positive
1754          * values in RDTR is a known source of problems on other
1755          * platforms another solution is being sought.
1756          */
1757         if (hw->mac.type == e1000_82573)
1758                 E1000_WRITE_REG(hw, E1000_RDTR, 0x20);
1759
1760         dev->rx_pkt_burst = (eth_rx_burst_t)eth_em_recv_pkts;
1761
1762         /* Determine RX bufsize. */
1763         rctl_bsize = EM_MAX_BUF_SIZE;
1764         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1765                 uint32_t buf_size;
1766
1767                 rxq = dev->data->rx_queues[i];
1768                 buf_size = rte_pktmbuf_data_room_size(rxq->mb_pool) -
1769                         RTE_PKTMBUF_HEADROOM;
1770                 rctl_bsize = RTE_MIN(rctl_bsize, buf_size);
1771         }
1772
1773         rctl |= em_rctl_bsize(hw->mac.type, &rctl_bsize);
1774
1775         /* Configure and enable each RX queue. */
1776         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1777                 uint64_t bus_addr;
1778                 uint32_t rxdctl;
1779
1780                 rxq = dev->data->rx_queues[i];
1781
1782                 /* Allocate buffers for descriptor rings and setup queue */
1783                 ret = em_alloc_rx_queue_mbufs(rxq);
1784                 if (ret)
1785                         return ret;
1786
1787                 /*
1788                  * Reset crc_len in case it was changed after queue setup by a
1789                  *  call to configure
1790                  */
1791                 if (dev->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_KEEP_CRC)
1792                         rxq->crc_len = RTE_ETHER_CRC_LEN;
1793                 else
1794                         rxq->crc_len = 0;
1795
1796                 bus_addr = rxq->rx_ring_phys_addr;
1797                 E1000_WRITE_REG(hw, E1000_RDLEN(i),
1798                                 rxq->nb_rx_desc *
1799                                 sizeof(*rxq->rx_ring));
1800                 E1000_WRITE_REG(hw, E1000_RDBAH(i),
1801                                 (uint32_t)(bus_addr >> 32));
1802                 E1000_WRITE_REG(hw, E1000_RDBAL(i), (uint32_t)bus_addr);
1803
1804                 E1000_WRITE_REG(hw, E1000_RDH(i), 0);
1805                 E1000_WRITE_REG(hw, E1000_RDT(i), rxq->nb_rx_desc - 1);
1806
1807                 rxdctl = E1000_READ_REG(hw, E1000_RXDCTL(0));
1808                 rxdctl &= 0xFE000000;
1809                 rxdctl |= rxq->pthresh & 0x3F;
1810                 rxdctl |= (rxq->hthresh & 0x3F) << 8;
1811                 rxdctl |= (rxq->wthresh & 0x3F) << 16;
1812                 rxdctl |= E1000_RXDCTL_GRAN;
1813                 E1000_WRITE_REG(hw, E1000_RXDCTL(i), rxdctl);
1814
1815                 /*
1816                  * Due to EM devices not having any sort of hardware
1817                  * limit for packet length, jumbo frame of any size
1818                  * can be accepted, thus we have to enable scattered
1819                  * rx if jumbo frames are enabled (or if buffer size
1820                  * is too small to accommodate non-jumbo packets)
1821                  * to avoid splitting packets that don't fit into
1822                  * one buffer.
1823                  */
1824                 if (dev->data->mtu > RTE_ETHER_MTU ||
1825                                 rctl_bsize < RTE_ETHER_MAX_LEN) {
1826                         if (!dev->data->scattered_rx)
1827                                 PMD_INIT_LOG(DEBUG, "forcing scatter mode");
1828                         dev->rx_pkt_burst =
1829                                 (eth_rx_burst_t)eth_em_recv_scattered_pkts;
1830                         dev->data->scattered_rx = 1;
1831                 }
1832         }
1833
1834         if (dev->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_SCATTER) {
1835                 if (!dev->data->scattered_rx)
1836                         PMD_INIT_LOG(DEBUG, "forcing scatter mode");
1837                 dev->rx_pkt_burst = eth_em_recv_scattered_pkts;
1838                 dev->data->scattered_rx = 1;
1839         }
1840
1841         /*
1842          * Setup the Checksum Register.
1843          * Receive Full-Packet Checksum Offload is mutually exclusive with RSS.
1844          */
1845         rxcsum = E1000_READ_REG(hw, E1000_RXCSUM);
1846
1847         if (rxmode->offloads & RTE_ETH_RX_OFFLOAD_CHECKSUM)
1848                 rxcsum |= E1000_RXCSUM_IPOFL;
1849         else
1850                 rxcsum &= ~E1000_RXCSUM_IPOFL;
1851         E1000_WRITE_REG(hw, E1000_RXCSUM, rxcsum);
1852
1853         /* No MRQ or RSS support for now */
1854
1855         /* Set early receive threshold on appropriate hw */
1856         if ((hw->mac.type == e1000_ich9lan ||
1857                         hw->mac.type == e1000_pch2lan ||
1858                         hw->mac.type == e1000_ich10lan) &&
1859                         dev->data->mtu > RTE_ETHER_MTU) {
1860                 u32 rxdctl = E1000_READ_REG(hw, E1000_RXDCTL(0));
1861                 E1000_WRITE_REG(hw, E1000_RXDCTL(0), rxdctl | 3);
1862                 E1000_WRITE_REG(hw, E1000_ERT, 0x100 | (1 << 13));
1863         }
1864
1865         if (hw->mac.type == e1000_pch2lan) {
1866                 if (dev->data->mtu > RTE_ETHER_MTU)
1867                         e1000_lv_jumbo_workaround_ich8lan(hw, TRUE);
1868                 else
1869                         e1000_lv_jumbo_workaround_ich8lan(hw, FALSE);
1870         }
1871
1872         /* Setup the Receive Control Register. */
1873         if (dev->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_KEEP_CRC)
1874                 rctl &= ~E1000_RCTL_SECRC; /* Do not Strip Ethernet CRC. */
1875         else
1876                 rctl |= E1000_RCTL_SECRC; /* Strip Ethernet CRC. */
1877
1878         rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1879         rctl |= E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_LBM_NO |
1880                 E1000_RCTL_RDMTS_HALF |
1881                 (hw->mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
1882
1883         /* Make sure VLAN Filters are off. */
1884         rctl &= ~E1000_RCTL_VFE;
1885         /* Don't store bad packets. */
1886         rctl &= ~E1000_RCTL_SBP;
1887         /* Legacy descriptor type. */
1888         rctl &= ~E1000_RCTL_DTYP_MASK;
1889
1890         /*
1891          * Configure support of jumbo frames, if any.
1892          */
1893         if (dev->data->mtu > RTE_ETHER_MTU)
1894                 rctl |= E1000_RCTL_LPE;
1895         else
1896                 rctl &= ~E1000_RCTL_LPE;
1897
1898         /* Enable Receives. */
1899         E1000_WRITE_REG(hw, E1000_RCTL, rctl);
1900
1901         return 0;
1902 }
1903
1904 /*********************************************************************
1905  *
1906  *  Enable transmit unit.
1907  *
1908  **********************************************************************/
1909 void
1910 eth_em_tx_init(struct rte_eth_dev *dev)
1911 {
1912         struct e1000_hw     *hw;
1913         struct em_tx_queue *txq;
1914         uint32_t tctl;
1915         uint32_t txdctl;
1916         uint16_t i;
1917
1918         hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1919
1920         /* Setup the Base and Length of the Tx Descriptor Rings. */
1921         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1922                 uint64_t bus_addr;
1923
1924                 txq = dev->data->tx_queues[i];
1925                 bus_addr = txq->tx_ring_phys_addr;
1926                 E1000_WRITE_REG(hw, E1000_TDLEN(i),
1927                                 txq->nb_tx_desc *
1928                                 sizeof(*txq->tx_ring));
1929                 E1000_WRITE_REG(hw, E1000_TDBAH(i),
1930                                 (uint32_t)(bus_addr >> 32));
1931                 E1000_WRITE_REG(hw, E1000_TDBAL(i), (uint32_t)bus_addr);
1932
1933                 /* Setup the HW Tx Head and Tail descriptor pointers. */
1934                 E1000_WRITE_REG(hw, E1000_TDT(i), 0);
1935                 E1000_WRITE_REG(hw, E1000_TDH(i), 0);
1936
1937                 /* Setup Transmit threshold registers. */
1938                 txdctl = E1000_READ_REG(hw, E1000_TXDCTL(i));
1939                 /*
1940                  * bit 22 is reserved, on some models should always be 0,
1941                  * on others  - always 1.
1942                  */
1943                 txdctl &= E1000_TXDCTL_COUNT_DESC;
1944                 txdctl |= txq->pthresh & 0x3F;
1945                 txdctl |= (txq->hthresh & 0x3F) << 8;
1946                 txdctl |= (txq->wthresh & 0x3F) << 16;
1947                 txdctl |= E1000_TXDCTL_GRAN;
1948                 E1000_WRITE_REG(hw, E1000_TXDCTL(i), txdctl);
1949         }
1950
1951         /* Program the Transmit Control Register. */
1952         tctl = E1000_READ_REG(hw, E1000_TCTL);
1953         tctl &= ~E1000_TCTL_CT;
1954         tctl |= (E1000_TCTL_PSP | E1000_TCTL_RTLC | E1000_TCTL_EN |
1955                  (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT));
1956
1957         /* SPT and CNP Si errata workaround to avoid data corruption */
1958         if (hw->mac.type == e1000_pch_spt) {
1959                 uint32_t reg_val;
1960                 reg_val = E1000_READ_REG(hw, E1000_IOSFPC);
1961                 reg_val |= E1000_RCTL_RDMTS_HEX;
1962                 E1000_WRITE_REG(hw, E1000_IOSFPC, reg_val);
1963
1964                 /* Dropping the number of outstanding requests from
1965                  * 3 to 2 in order to avoid a buffer overrun.
1966                  */
1967                 reg_val = E1000_READ_REG(hw, E1000_TARC(0));
1968                 reg_val &= ~E1000_TARC0_CB_MULTIQ_3_REQ;
1969                 reg_val |= E1000_TARC0_CB_MULTIQ_2_REQ;
1970                 E1000_WRITE_REG(hw, E1000_TARC(0), reg_val);
1971         }
1972
1973         /* This write will effectively turn on the transmit unit. */
1974         E1000_WRITE_REG(hw, E1000_TCTL, tctl);
1975 }
1976
1977 void
1978 em_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
1979         struct rte_eth_rxq_info *qinfo)
1980 {
1981         struct em_rx_queue *rxq;
1982
1983         rxq = dev->data->rx_queues[queue_id];
1984
1985         qinfo->mp = rxq->mb_pool;
1986         qinfo->scattered_rx = dev->data->scattered_rx;
1987         qinfo->nb_desc = rxq->nb_rx_desc;
1988         qinfo->conf.rx_free_thresh = rxq->rx_free_thresh;
1989         qinfo->conf.offloads = rxq->offloads;
1990 }
1991
1992 void
1993 em_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
1994         struct rte_eth_txq_info *qinfo)
1995 {
1996         struct em_tx_queue *txq;
1997
1998         txq = dev->data->tx_queues[queue_id];
1999
2000         qinfo->nb_desc = txq->nb_tx_desc;
2001
2002         qinfo->conf.tx_thresh.pthresh = txq->pthresh;
2003         qinfo->conf.tx_thresh.hthresh = txq->hthresh;
2004         qinfo->conf.tx_thresh.wthresh = txq->wthresh;
2005         qinfo->conf.tx_free_thresh = txq->tx_free_thresh;
2006         qinfo->conf.tx_rs_thresh = txq->tx_rs_thresh;
2007         qinfo->conf.offloads = txq->offloads;
2008 }
2009
2010 static void
2011 e1000_flush_tx_ring(struct rte_eth_dev *dev)
2012 {
2013         struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2014         volatile struct e1000_data_desc *tx_desc;
2015         volatile uint32_t *tdt_reg_addr;
2016         uint32_t tdt, tctl, txd_lower = E1000_TXD_CMD_IFCS;
2017         uint16_t size = 512;
2018         struct em_tx_queue *txq;
2019         int i;
2020
2021         if (dev->data->tx_queues == NULL)
2022                 return;
2023         tctl = E1000_READ_REG(hw, E1000_TCTL);
2024         E1000_WRITE_REG(hw, E1000_TCTL, tctl | E1000_TCTL_EN);
2025         for (i = 0; i < dev->data->nb_tx_queues &&
2026                 i < E1000_I219_MAX_TX_QUEUE_NUM; i++) {
2027                 txq = dev->data->tx_queues[i];
2028                 tdt = E1000_READ_REG(hw, E1000_TDT(i));
2029                 if (tdt != txq->tx_tail)
2030                         return;
2031                 tx_desc = &txq->tx_ring[txq->tx_tail];
2032                 tx_desc->buffer_addr = rte_cpu_to_le_64(txq->tx_ring_phys_addr);
2033                 tx_desc->lower.data = rte_cpu_to_le_32(txd_lower | size);
2034                 tx_desc->upper.data = 0;
2035
2036                 rte_io_wmb();
2037                 txq->tx_tail++;
2038                 if (txq->tx_tail == txq->nb_tx_desc)
2039                         txq->tx_tail = 0;
2040                 tdt_reg_addr = E1000_PCI_REG_ADDR(hw, E1000_TDT(i));
2041                 E1000_PCI_REG_WRITE(tdt_reg_addr, txq->tx_tail);
2042                 usec_delay(250);
2043         }
2044 }
2045
2046 static void
2047 e1000_flush_rx_ring(struct rte_eth_dev *dev)
2048 {
2049         uint32_t rctl, rxdctl;
2050         struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2051         int i;
2052
2053         rctl = E1000_READ_REG(hw, E1000_RCTL);
2054         E1000_WRITE_REG(hw, E1000_RCTL, rctl & ~E1000_RCTL_EN);
2055         E1000_WRITE_FLUSH(hw);
2056         usec_delay(150);
2057
2058         for (i = 0; i < dev->data->nb_rx_queues &&
2059                 i < E1000_I219_MAX_RX_QUEUE_NUM; i++) {
2060                 rxdctl = E1000_READ_REG(hw, E1000_RXDCTL(i));
2061                 /* zero the lower 14 bits (prefetch and host thresholds) */
2062                 rxdctl &= 0xffffc000;
2063
2064                 /* update thresholds: prefetch threshold to 31,
2065                  * host threshold to 1 and make sure the granularity
2066                  * is "descriptors" and not "cache lines"
2067                  */
2068                 rxdctl |= (0x1F | (1UL << 8) | E1000_RXDCTL_THRESH_UNIT_DESC);
2069
2070                 E1000_WRITE_REG(hw, E1000_RXDCTL(i), rxdctl);
2071         }
2072         /* momentarily enable the RX ring for the changes to take effect */
2073         E1000_WRITE_REG(hw, E1000_RCTL, rctl | E1000_RCTL_EN);
2074         E1000_WRITE_FLUSH(hw);
2075         usec_delay(150);
2076         E1000_WRITE_REG(hw, E1000_RCTL, rctl & ~E1000_RCTL_EN);
2077 }
2078
2079 /**
2080  * em_flush_desc_rings - remove all descriptors from the descriptor rings
2081  *
2082  * In i219, the descriptor rings must be emptied before resetting/closing the
2083  * HW. Failure to do this will cause the HW to enter a unit hang state which
2084  * can only be released by PCI reset on the device
2085  *
2086  */
2087
2088 void
2089 em_flush_desc_rings(struct rte_eth_dev *dev)
2090 {
2091         uint32_t fextnvm11, tdlen;
2092         struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2093         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2094         uint16_t pci_cfg_status = 0;
2095         int ret;
2096
2097         fextnvm11 = E1000_READ_REG(hw, E1000_FEXTNVM11);
2098         E1000_WRITE_REG(hw, E1000_FEXTNVM11,
2099                         fextnvm11 | E1000_FEXTNVM11_DISABLE_MULR_FIX);
2100         tdlen = E1000_READ_REG(hw, E1000_TDLEN(0));
2101         ret = rte_pci_read_config(pci_dev, &pci_cfg_status,
2102                    sizeof(pci_cfg_status), PCI_CFG_STATUS_REG);
2103         if (ret < 0) {
2104                 PMD_DRV_LOG(ERR, "Failed to read PCI offset 0x%x",
2105                             PCI_CFG_STATUS_REG);
2106                 return;
2107         }
2108
2109         /* do nothing if we're not in faulty state, or if the queue is empty */
2110         if ((pci_cfg_status & FLUSH_DESC_REQUIRED) && tdlen) {
2111                 /* flush desc ring */
2112                 e1000_flush_tx_ring(dev);
2113                 ret = rte_pci_read_config(pci_dev, &pci_cfg_status,
2114                                 sizeof(pci_cfg_status), PCI_CFG_STATUS_REG);
2115                 if (ret < 0) {
2116                         PMD_DRV_LOG(ERR, "Failed to read PCI offset 0x%x",
2117                                         PCI_CFG_STATUS_REG);
2118                         return;
2119                 }
2120
2121                 if (pci_cfg_status & FLUSH_DESC_REQUIRED)
2122                         e1000_flush_rx_ring(dev);
2123         }
2124 }