ixgbe: get queue info and descriptor limits
[dpdk.git] / drivers / net / 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  * Rings setup and release.
39  *
40  * TDBA/RDBA should be aligned on 16 byte boundary. But TDLEN/RDLEN should be
41  * multiple of 128 bytes. So we align TDBA/RDBA on 128 byte boundary. This will
42  * also optimize cache line size effect. H/W supports up to cache line size 128.
43  */
44 #define IXGBE_ALIGN     128
45
46 #define IXGBE_RXD_ALIGN (IXGBE_ALIGN / sizeof(union ixgbe_adv_rx_desc))
47 #define IXGBE_TXD_ALIGN (IXGBE_ALIGN / sizeof(union ixgbe_adv_tx_desc))
48
49 /*
50  * Maximum number of Ring Descriptors.
51  *
52  * Since RDLEN/TDLEN should be multiple of 128 bytes, the number of ring
53  * descriptors should meet the following condition:
54  *      (num_ring_desc * sizeof(rx/tx descriptor)) % 128 == 0
55  */
56 #define IXGBE_MIN_RING_DESC     32
57 #define IXGBE_MAX_RING_DESC     4096
58
59 #define RTE_PMD_IXGBE_TX_MAX_BURST 32
60 #define RTE_PMD_IXGBE_RX_MAX_BURST 32
61
62 #define RTE_IXGBE_DESCS_PER_LOOP    4
63
64 #define RTE_MBUF_DATA_DMA_ADDR(mb) \
65         (uint64_t) ((mb)->buf_physaddr + (mb)->data_off)
66
67 #define RTE_MBUF_DATA_DMA_ADDR_DEFAULT(mb) \
68         (uint64_t) ((mb)->buf_physaddr + RTE_PKTMBUF_HEADROOM)
69
70 #ifdef RTE_IXGBE_INC_VECTOR
71 #define RTE_IXGBE_RXQ_REARM_THRESH      32
72 #define RTE_IXGBE_MAX_RX_BURST          RTE_IXGBE_RXQ_REARM_THRESH
73 #define RTE_IXGBE_TX_MAX_FREE_BUF_SZ    64
74 #endif
75
76 #define RX_RING_SZ ((IXGBE_MAX_RING_DESC + RTE_IXGBE_DESCS_PER_LOOP - 1) * \
77                     sizeof(union ixgbe_adv_rx_desc))
78
79 #ifdef RTE_PMD_PACKET_PREFETCH
80 #define rte_packet_prefetch(p)  rte_prefetch1(p)
81 #else
82 #define rte_packet_prefetch(p)  do {} while(0)
83 #endif
84
85 #define RTE_IXGBE_REGISTER_POLL_WAIT_10_MS  10
86 #define RTE_IXGBE_WAIT_100_US               100
87 #define RTE_IXGBE_VMTXSW_REGISTER_COUNT     2
88
89 /**
90  * Structure associated with each descriptor of the RX ring of a RX queue.
91  */
92 struct ixgbe_rx_entry {
93         struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
94 };
95
96 struct ixgbe_scattered_rx_entry {
97         struct rte_mbuf *fbuf; /**< First segment of the fragmented packet. */
98 };
99
100 /**
101  * Structure associated with each descriptor of the TX ring of a TX queue.
102  */
103 struct ixgbe_tx_entry {
104         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
105         uint16_t next_id; /**< Index of next descriptor in ring. */
106         uint16_t last_id; /**< Index of last scattered descriptor. */
107 };
108
109 /**
110  * Structure associated with each descriptor of the TX ring of a TX queue.
111  */
112 struct ixgbe_tx_entry_v {
113         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
114 };
115
116 /**
117  * Structure associated with each RX queue.
118  */
119 struct ixgbe_rx_queue {
120         struct rte_mempool  *mb_pool; /**< mbuf pool to populate RX ring. */
121         volatile union ixgbe_adv_rx_desc *rx_ring; /**< RX ring virtual address. */
122         uint64_t            rx_ring_phys_addr; /**< RX ring DMA address. */
123         volatile uint32_t   *rdt_reg_addr; /**< RDT register address. */
124         volatile uint32_t   *rdh_reg_addr; /**< RDH register address. */
125         struct ixgbe_rx_entry *sw_ring; /**< address of RX software ring. */
126         struct ixgbe_scattered_rx_entry *sw_sc_ring; /**< address of scattered Rx software ring. */
127         struct rte_mbuf *pkt_first_seg; /**< First segment of current packet. */
128         struct rte_mbuf *pkt_last_seg; /**< Last segment of current packet. */
129         uint64_t            mbuf_initializer; /**< value to init mbufs */
130         uint16_t            nb_rx_desc; /**< number of RX descriptors. */
131         uint16_t            rx_tail;  /**< current value of RDT register. */
132         uint16_t            nb_rx_hold; /**< number of held free RX desc. */
133         uint16_t rx_nb_avail; /**< nr of staged pkts ready to ret to app */
134         uint16_t rx_next_avail; /**< idx of next staged pkt to ret to app */
135         uint16_t rx_free_trigger; /**< triggers rx buffer allocation */
136         uint16_t            rx_using_sse;
137         /**< indicates that vector RX is in use */
138 #ifdef RTE_IXGBE_INC_VECTOR
139         uint16_t            rxrearm_nb;     /**< number of remaining to be re-armed */
140         uint16_t            rxrearm_start;  /**< the idx we start the re-arming from */
141 #endif
142         uint16_t            rx_free_thresh; /**< max free RX desc to hold. */
143         uint16_t            queue_id; /**< RX queue index. */
144         uint16_t            reg_idx;  /**< RX queue register index. */
145         uint8_t             port_id;  /**< Device port identifier. */
146         uint8_t             crc_len;  /**< 0 if CRC stripped, 4 otherwise. */
147         uint8_t             drop_en;  /**< If not 0, set SRRCTL.Drop_En. */
148         uint8_t             rx_deferred_start; /**< not in global dev start. */
149         /** need to alloc dummy mbuf, for wraparound when scanning hw ring */
150         struct rte_mbuf fake_mbuf;
151         /** hold packets to return to application */
152         struct rte_mbuf *rx_stage[RTE_PMD_IXGBE_RX_MAX_BURST*2];
153 };
154
155 /**
156  * IXGBE CTX Constants
157  */
158 enum ixgbe_advctx_num {
159         IXGBE_CTX_0    = 0, /**< CTX0 */
160         IXGBE_CTX_1    = 1, /**< CTX1  */
161         IXGBE_CTX_NUM  = 2, /**< CTX NUMBER  */
162 };
163
164 /** Offload features */
165 union ixgbe_tx_offload {
166         uint64_t data;
167         struct {
168                 uint64_t l2_len:7; /**< L2 (MAC) Header Length. */
169                 uint64_t l3_len:9; /**< L3 (IP) Header Length. */
170                 uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
171                 uint64_t tso_segsz:16; /**< TCP TSO segment size */
172                 uint64_t vlan_tci:16;
173                 /**< VLAN Tag Control Identifier (CPU order). */
174         };
175 };
176
177 /*
178  * Compare mask for vlan_macip_len.data,
179  * should be in sync with ixgbe_vlan_macip.f layout.
180  * */
181 #define TX_VLAN_CMP_MASK        0xFFFF0000  /**< VLAN length - 16-bits. */
182 #define TX_MAC_LEN_CMP_MASK     0x0000FE00  /**< MAC length - 7-bits. */
183 #define TX_IP_LEN_CMP_MASK      0x000001FF  /**< IP  length - 9-bits. */
184 /** MAC+IP  length. */
185 #define TX_MACIP_LEN_CMP_MASK   (TX_MAC_LEN_CMP_MASK | TX_IP_LEN_CMP_MASK)
186
187 /**
188  * Structure to check if new context need be built
189  */
190
191 struct ixgbe_advctx_info {
192         uint64_t flags;           /**< ol_flags for context build. */
193         /**< tx offload: vlan, tso, l2-l3-l4 lengths. */
194         union ixgbe_tx_offload tx_offload;
195         /** compare mask for tx offload. */
196         union ixgbe_tx_offload tx_offload_mask;
197 };
198
199 /**
200  * Structure associated with each TX queue.
201  */
202 struct ixgbe_tx_queue {
203         /** TX ring virtual address. */
204         volatile union ixgbe_adv_tx_desc *tx_ring;
205         uint64_t            tx_ring_phys_addr; /**< TX ring DMA address. */
206         union {
207                 struct ixgbe_tx_entry *sw_ring; /**< address of SW ring for scalar PMD. */
208                 struct ixgbe_tx_entry_v *sw_ring_v; /**< address of SW ring for vector PMD */
209         };
210         volatile uint32_t   *tdt_reg_addr; /**< Address of TDT register. */
211         uint16_t            nb_tx_desc;    /**< number of TX descriptors. */
212         uint16_t            tx_tail;       /**< current value of TDT reg. */
213         /**< Start freeing TX buffers if there are less free descriptors than
214              this value. */
215         uint16_t            tx_free_thresh;
216         /** Number of TX descriptors to use before RS bit is set. */
217         uint16_t            tx_rs_thresh;
218         /** Number of TX descriptors used since RS bit was set. */
219         uint16_t            nb_tx_used;
220         /** Index to last TX descriptor to have been cleaned. */
221         uint16_t            last_desc_cleaned;
222         /** Total number of TX descriptors ready to be allocated. */
223         uint16_t            nb_tx_free;
224         uint16_t tx_next_dd; /**< next desc to scan for DD bit */
225         uint16_t tx_next_rs; /**< next desc to set RS bit */
226         uint16_t            queue_id;      /**< TX queue index. */
227         uint16_t            reg_idx;       /**< TX queue register index. */
228         uint8_t             port_id;       /**< Device port identifier. */
229         uint8_t             pthresh;       /**< Prefetch threshold register. */
230         uint8_t             hthresh;       /**< Host threshold register. */
231         uint8_t             wthresh;       /**< Write-back threshold reg. */
232         uint32_t txq_flags; /**< Holds flags for this TXq */
233         uint32_t            ctx_curr;      /**< Hardware context states. */
234         /** Hardware context0 history. */
235         struct ixgbe_advctx_info ctx_cache[IXGBE_CTX_NUM];
236         const struct ixgbe_txq_ops *ops;       /**< txq ops */
237         uint8_t             tx_deferred_start; /**< not in global dev start. */
238 };
239
240 struct ixgbe_txq_ops {
241         void (*release_mbufs)(struct ixgbe_tx_queue *txq);
242         void (*free_swring)(struct ixgbe_tx_queue *txq);
243         void (*reset)(struct ixgbe_tx_queue *txq);
244 };
245
246 /*
247  * The "simple" TX queue functions require that the following
248  * flags are set when the TX queue is configured:
249  *  - ETH_TXQ_FLAGS_NOMULTSEGS
250  *  - ETH_TXQ_FLAGS_NOVLANOFFL
251  *  - ETH_TXQ_FLAGS_NOXSUMSCTP
252  *  - ETH_TXQ_FLAGS_NOXSUMUDP
253  *  - ETH_TXQ_FLAGS_NOXSUMTCP
254  * and that the RS bit threshold (tx_rs_thresh) is at least equal to
255  * RTE_PMD_IXGBE_TX_MAX_BURST.
256  */
257 #define IXGBE_SIMPLE_FLAGS ((uint32_t)ETH_TXQ_FLAGS_NOMULTSEGS | \
258                             ETH_TXQ_FLAGS_NOOFFLOADS)
259
260 /*
261  * Populate descriptors with the following info:
262  * 1.) buffer_addr = phys_addr + headroom
263  * 2.) cmd_type_len = DCMD_DTYP_FLAGS | pkt_len
264  * 3.) olinfo_status = pkt_len << PAYLEN_SHIFT
265  */
266
267 /* Defines for Tx descriptor */
268 #define DCMD_DTYP_FLAGS (IXGBE_ADVTXD_DTYP_DATA |\
269                          IXGBE_ADVTXD_DCMD_IFCS |\
270                          IXGBE_ADVTXD_DCMD_DEXT |\
271                          IXGBE_ADVTXD_DCMD_EOP)
272
273
274 /* Takes an ethdev and a queue and sets up the tx function to be used based on
275  * the queue parameters. Used in tx_queue_setup by primary process and then
276  * in dev_init by secondary process when attaching to an existing ethdev.
277  */
278 void ixgbe_set_tx_function(struct rte_eth_dev *dev, struct ixgbe_tx_queue *txq);
279
280 /**
281  * Sets the rx_pkt_burst callback in the ixgbe rte_eth_dev instance.
282  *
283  * Sets the callback based on the device parameters:
284  *  - ixgbe_hw.rx_bulk_alloc_allowed
285  *  - rte_eth_dev_data.scattered_rx
286  *  - rte_eth_dev_data.lro
287  *  - conditions checked in ixgbe_rx_vec_condition_check()
288  *
289  *  This means that the parameters above have to be configured prior to calling
290  *  to this function.
291  *
292  * @dev rte_eth_dev handle
293  */
294 void ixgbe_set_rx_function(struct rte_eth_dev *dev);
295
296 uint16_t ixgbe_recv_pkts_vec(void *rx_queue, struct rte_mbuf **rx_pkts,
297                 uint16_t nb_pkts);
298 uint16_t ixgbe_recv_scattered_pkts_vec(void *rx_queue,
299                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
300 int ixgbe_rx_vec_dev_conf_condition_check(struct rte_eth_dev *dev);
301 int ixgbe_rxq_vec_setup(struct ixgbe_rx_queue *rxq);
302 void ixgbe_rx_queue_release_mbufs_vec(struct ixgbe_rx_queue *rxq);
303
304 #ifdef RTE_IXGBE_INC_VECTOR
305
306 uint16_t ixgbe_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
307                 uint16_t nb_pkts);
308 int ixgbe_txq_vec_setup(struct ixgbe_tx_queue *txq);
309
310 #endif /* RTE_IXGBE_INC_VECTOR */
311 #endif /* _IXGBE_RXTX_H_ */