ixgbe: support TCP segmentation offload
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe_rxtx.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _IXGBE_RXTX_H_
35 #define _IXGBE_RXTX_H_
36
37
38 #define RTE_PMD_IXGBE_TX_MAX_BURST 32
39
40 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
41 #define RTE_PMD_IXGBE_RX_MAX_BURST 32
42 #define RTE_IXGBE_DESCS_PER_LOOP           4
43 #elif defined(RTE_IXGBE_INC_VECTOR)
44 #define RTE_IXGBE_DESCS_PER_LOOP           4
45 #else
46 #define RTE_IXGBE_DESCS_PER_LOOP           1
47 #endif
48
49 #define RTE_MBUF_DATA_DMA_ADDR(mb) \
50         (uint64_t) ((mb)->buf_physaddr + (mb)->data_off)
51
52 #define RTE_MBUF_DATA_DMA_ADDR_DEFAULT(mb) \
53         (uint64_t) ((mb)->buf_physaddr + RTE_PKTMBUF_HEADROOM)
54
55 #ifdef RTE_IXGBE_INC_VECTOR
56 #define RTE_IXGBE_VPMD_RX_BURST         32
57 #define RTE_IXGBE_VPMD_TX_BURST         32
58 #define RTE_IXGBE_RXQ_REARM_THRESH      RTE_IXGBE_VPMD_RX_BURST
59 #define RTE_IXGBE_TX_MAX_FREE_BUF_SZ    64
60 #endif
61
62 #define RX_RING_SZ ((IXGBE_MAX_RING_DESC + RTE_IXGBE_DESCS_PER_LOOP - 1) * \
63                     sizeof(union ixgbe_adv_rx_desc))
64
65 #ifdef RTE_PMD_PACKET_PREFETCH
66 #define rte_packet_prefetch(p)  rte_prefetch1(p)
67 #else
68 #define rte_packet_prefetch(p)  do {} while(0)
69 #endif
70
71 #define RTE_IXGBE_REGISTER_POLL_WAIT_10_MS  10
72 #define RTE_IXGBE_WAIT_100_US               100
73 #define RTE_IXGBE_VMTXSW_REGISTER_COUNT     2
74
75 /**
76  * Structure associated with each descriptor of the RX ring of a RX queue.
77  */
78 struct igb_rx_entry {
79         struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
80 };
81
82 /**
83  * Structure associated with each descriptor of the TX ring of a TX queue.
84  */
85 struct igb_tx_entry {
86         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
87         uint16_t next_id; /**< Index of next descriptor in ring. */
88         uint16_t last_id; /**< Index of last scattered descriptor. */
89 };
90
91 /**
92  * Structure associated with each descriptor of the TX ring of a TX queue.
93  */
94 struct igb_tx_entry_v {
95         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
96 };
97
98 /**
99  * Structure associated with each RX queue.
100  */
101 struct igb_rx_queue {
102         struct rte_mempool  *mb_pool; /**< mbuf pool to populate RX ring. */
103         volatile union ixgbe_adv_rx_desc *rx_ring; /**< RX ring virtual address. */
104         uint64_t            rx_ring_phys_addr; /**< RX ring DMA address. */
105         volatile uint32_t   *rdt_reg_addr; /**< RDT register address. */
106         volatile uint32_t   *rdh_reg_addr; /**< RDH register address. */
107         struct igb_rx_entry *sw_ring; /**< address of RX software ring. */
108         struct rte_mbuf *pkt_first_seg; /**< First segment of current packet. */
109         struct rte_mbuf *pkt_last_seg; /**< Last segment of current packet. */
110         uint64_t            mbuf_initializer; /**< value to init mbufs */
111         uint16_t            nb_rx_desc; /**< number of RX descriptors. */
112         uint16_t            rx_tail;  /**< current value of RDT register. */
113         uint16_t            nb_rx_hold; /**< number of held free RX desc. */
114 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
115         uint16_t rx_nb_avail; /**< nr of staged pkts ready to ret to app */
116         uint16_t rx_next_avail; /**< idx of next staged pkt to ret to app */
117         uint16_t rx_free_trigger; /**< triggers rx buffer allocation */
118 #endif
119 #ifdef RTE_IXGBE_INC_VECTOR
120         uint16_t            rxrearm_nb; /**< the idx we start the re-arming from */
121         uint16_t            rxrearm_start;  /**< number of remaining to be re-armed */
122 #endif
123         uint16_t            rx_free_thresh; /**< max free RX desc to hold. */
124         uint16_t            queue_id; /**< RX queue index. */
125         uint16_t            reg_idx;  /**< RX queue register index. */
126         uint8_t             port_id;  /**< Device port identifier. */
127         uint8_t             crc_len;  /**< 0 if CRC stripped, 4 otherwise. */
128         uint8_t             drop_en;  /**< If not 0, set SRRCTL.Drop_En. */
129         uint8_t             rx_deferred_start; /**< not in global dev start. */
130 #ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
131         /** need to alloc dummy mbuf, for wraparound when scanning hw ring */
132         struct rte_mbuf fake_mbuf;
133         /** hold packets to return to application */
134         struct rte_mbuf *rx_stage[RTE_PMD_IXGBE_RX_MAX_BURST*2];
135 #endif
136 };
137
138 /**
139  * IXGBE CTX Constants
140  */
141 enum ixgbe_advctx_num {
142         IXGBE_CTX_0    = 0, /**< CTX0 */
143         IXGBE_CTX_1    = 1, /**< CTX1  */
144         IXGBE_CTX_NUM  = 2, /**< CTX NUMBER  */
145 };
146
147 /** Offload features */
148 union ixgbe_tx_offload {
149         uint64_t data;
150         struct {
151                 uint64_t l2_len:7; /**< L2 (MAC) Header Length. */
152                 uint64_t l3_len:9; /**< L3 (IP) Header Length. */
153                 uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
154                 uint64_t tso_segsz:16; /**< TCP TSO segment size */
155                 uint64_t vlan_tci:16;
156                 /**< VLAN Tag Control Identifier (CPU order). */
157         };
158 };
159
160 /*
161  * Compare mask for vlan_macip_len.data,
162  * should be in sync with ixgbe_vlan_macip.f layout.
163  * */
164 #define TX_VLAN_CMP_MASK        0xFFFF0000  /**< VLAN length - 16-bits. */
165 #define TX_MAC_LEN_CMP_MASK     0x0000FE00  /**< MAC length - 7-bits. */
166 #define TX_IP_LEN_CMP_MASK      0x000001FF  /**< IP  length - 9-bits. */
167 /** MAC+IP  length. */
168 #define TX_MACIP_LEN_CMP_MASK   (TX_MAC_LEN_CMP_MASK | TX_IP_LEN_CMP_MASK)
169
170 /**
171  * Structure to check if new context need be built
172  */
173
174 struct ixgbe_advctx_info {
175         uint64_t flags;           /**< ol_flags for context build. */
176         /**< tx offload: vlan, tso, l2-l3-l4 lengths. */
177         union ixgbe_tx_offload tx_offload;
178         /** compare mask for tx offload. */
179         union ixgbe_tx_offload tx_offload_mask;
180 };
181
182 /**
183  * Structure associated with each TX queue.
184  */
185 struct igb_tx_queue {
186         /** TX ring virtual address. */
187         volatile union ixgbe_adv_tx_desc *tx_ring;
188         uint64_t            tx_ring_phys_addr; /**< TX ring DMA address. */
189         struct igb_tx_entry *sw_ring;      /**< virtual address of SW ring. */
190         volatile uint32_t   *tdt_reg_addr; /**< Address of TDT register. */
191         uint16_t            nb_tx_desc;    /**< number of TX descriptors. */
192         uint16_t            tx_tail;       /**< current value of TDT reg. */
193         uint16_t            tx_free_thresh;/**< minimum TX before freeing. */
194         /** Number of TX descriptors to use before RS bit is set. */
195         uint16_t            tx_rs_thresh;
196         /** Number of TX descriptors used since RS bit was set. */
197         uint16_t            nb_tx_used;
198         /** Index to last TX descriptor to have been cleaned. */
199         uint16_t            last_desc_cleaned;
200         /** Total number of TX descriptors ready to be allocated. */
201         uint16_t            nb_tx_free;
202         uint16_t tx_next_dd; /**< next desc to scan for DD bit */
203         uint16_t tx_next_rs; /**< next desc to set RS bit */
204         uint16_t            queue_id;      /**< TX queue index. */
205         uint16_t            reg_idx;       /**< TX queue register index. */
206         uint8_t             port_id;       /**< Device port identifier. */
207         uint8_t             pthresh;       /**< Prefetch threshold register. */
208         uint8_t             hthresh;       /**< Host threshold register. */
209         uint8_t             wthresh;       /**< Write-back threshold reg. */
210         uint32_t txq_flags; /**< Holds flags for this TXq */
211         uint32_t            ctx_curr;      /**< Hardware context states. */
212         /** Hardware context0 history. */
213         struct ixgbe_advctx_info ctx_cache[IXGBE_CTX_NUM];
214         struct ixgbe_txq_ops *ops;          /**< txq ops */
215         uint8_t             tx_deferred_start; /**< not in global dev start. */
216 };
217
218 struct ixgbe_txq_ops {
219         void (*release_mbufs)(struct igb_tx_queue *txq);
220         void (*free_swring)(struct igb_tx_queue *txq);
221         void (*reset)(struct igb_tx_queue *txq);
222 };
223
224 /*
225  * The "simple" TX queue functions require that the following
226  * flags are set when the TX queue is configured:
227  *  - ETH_TXQ_FLAGS_NOMULTSEGS
228  *  - ETH_TXQ_FLAGS_NOVLANOFFL
229  *  - ETH_TXQ_FLAGS_NOXSUMSCTP
230  *  - ETH_TXQ_FLAGS_NOXSUMUDP
231  *  - ETH_TXQ_FLAGS_NOXSUMTCP
232  * and that the RS bit threshold (tx_rs_thresh) is at least equal to
233  * RTE_PMD_IXGBE_TX_MAX_BURST.
234  */
235 #define IXGBE_SIMPLE_FLAGS ((uint32_t)ETH_TXQ_FLAGS_NOMULTSEGS | \
236                             ETH_TXQ_FLAGS_NOOFFLOADS)
237
238 /*
239  * Populate descriptors with the following info:
240  * 1.) buffer_addr = phys_addr + headroom
241  * 2.) cmd_type_len = DCMD_DTYP_FLAGS | pkt_len
242  * 3.) olinfo_status = pkt_len << PAYLEN_SHIFT
243  */
244
245 /* Defines for Tx descriptor */
246 #define DCMD_DTYP_FLAGS (IXGBE_ADVTXD_DTYP_DATA |\
247                          IXGBE_ADVTXD_DCMD_IFCS |\
248                          IXGBE_ADVTXD_DCMD_DEXT |\
249                          IXGBE_ADVTXD_DCMD_EOP)
250
251 #ifdef RTE_IXGBE_INC_VECTOR
252 uint16_t ixgbe_recv_pkts_vec(void *rx_queue, struct rte_mbuf **rx_pkts,
253                 uint16_t nb_pkts);
254 uint16_t ixgbe_recv_scattered_pkts_vec(void *rx_queue,
255                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
256 uint16_t ixgbe_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
257                 uint16_t nb_pkts);
258 int ixgbe_txq_vec_setup(struct igb_tx_queue *txq);
259 int ixgbe_rxq_vec_setup(struct igb_rx_queue *rxq);
260 int ixgbe_rx_vec_condition_check(struct rte_eth_dev *dev);
261 #endif
262
263 #endif