d29930fd847e1e569b97e65578a85748d1743a6f
[dpdk.git] / lib / librte_ethdev / rte_ethdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #ifndef _RTE_ETHDEV_H_
6 #define _RTE_ETHDEV_H_
7
8 /**
9  * @file
10  *
11  * RTE Ethernet Device API
12  *
13  * The Ethernet Device API is composed of two parts:
14  *
15  * - The application-oriented Ethernet API that includes functions to setup
16  *   an Ethernet device (configure it, setup its RX and TX queues and start it),
17  *   to get its MAC address, the speed and the status of its physical link,
18  *   to receive and to transmit packets, and so on.
19  *
20  * - The driver-oriented Ethernet API that exports functions allowing
21  *   an Ethernet Poll Mode Driver (PMD) to allocate an Ethernet device instance,
22  *   create memzone for HW rings and process registered callbacks, and so on.
23  *   PMDs should include rte_ethdev_driver.h instead of this header.
24  *
25  * By default, all the functions of the Ethernet Device API exported by a PMD
26  * are lock-free functions which assume to not be invoked in parallel on
27  * different logical cores to work on the same target object.  For instance,
28  * the receive function of a PMD cannot be invoked in parallel on two logical
29  * cores to poll the same RX queue [of the same port]. Of course, this function
30  * can be invoked in parallel by different logical cores on different RX queues.
31  * It is the responsibility of the upper level application to enforce this rule.
32  *
33  * If needed, parallel accesses by multiple logical cores to shared queues
34  * shall be explicitly protected by dedicated inline lock-aware functions
35  * built on top of their corresponding lock-free functions of the PMD API.
36  *
37  * In all functions of the Ethernet API, the Ethernet device is
38  * designated by an integer >= 0 named the device port identifier.
39  *
40  * At the Ethernet driver level, Ethernet devices are represented by a generic
41  * data structure of type *rte_eth_dev*.
42  *
43  * Ethernet devices are dynamically registered during the PCI probing phase
44  * performed at EAL initialization time.
45  * When an Ethernet device is being probed, an *rte_eth_dev* structure and
46  * a new port identifier are allocated for that device. Then, the eth_dev_init()
47  * function supplied by the Ethernet driver matching the probed PCI
48  * device is invoked to properly initialize the device.
49  *
50  * The role of the device init function consists of resetting the hardware,
51  * checking access to Non-volatile Memory (NVM), reading the MAC address
52  * from NVM etc.
53  *
54  * If the device init operation is successful, the correspondence between
55  * the port identifier assigned to the new device and its associated
56  * *rte_eth_dev* structure is effectively registered.
57  * Otherwise, both the *rte_eth_dev* structure and the port identifier are
58  * freed.
59  *
60  * The functions exported by the application Ethernet API to setup a device
61  * designated by its port identifier must be invoked in the following order:
62  *     - rte_eth_dev_configure()
63  *     - rte_eth_tx_queue_setup()
64  *     - rte_eth_rx_queue_setup()
65  *     - rte_eth_dev_start()
66  *
67  * Then, the network application can invoke, in any order, the functions
68  * exported by the Ethernet API to get the MAC address of a given device, to
69  * get the speed and the status of a device physical link, to receive/transmit
70  * [burst of] packets, and so on.
71  *
72  * If the application wants to change the configuration (i.e. call
73  * rte_eth_dev_configure(), rte_eth_tx_queue_setup(), or
74  * rte_eth_rx_queue_setup()), it must call rte_eth_dev_stop() first to stop the
75  * device and then do the reconfiguration before calling rte_eth_dev_start()
76  * again. The transmit and receive functions should not be invoked when the
77  * device is stopped.
78  *
79  * Please note that some configuration is not stored between calls to
80  * rte_eth_dev_stop()/rte_eth_dev_start(). The following configuration will
81  * be retained:
82  *
83  *     - MTU
84  *     - flow control settings
85  *     - receive mode configuration (promiscuous mode, all-multicast mode,
86  *       hardware checksum mode, RSS/VMDQ settings etc.)
87  *     - VLAN filtering configuration
88  *     - default MAC address
89  *     - MAC addresses supplied to MAC address array
90  *     - flow director filtering mode (but not filtering rules)
91  *     - NIC queue statistics mappings
92  *
93  * Any other configuration will not be stored and will need to be re-entered
94  * before a call to rte_eth_dev_start().
95  *
96  * Finally, a network application can close an Ethernet device by invoking the
97  * rte_eth_dev_close() function.
98  *
99  * Each function of the application Ethernet API invokes a specific function
100  * of the PMD that controls the target device designated by its port
101  * identifier.
102  * For this purpose, all device-specific functions of an Ethernet driver are
103  * supplied through a set of pointers contained in a generic structure of type
104  * *eth_dev_ops*.
105  * The address of the *eth_dev_ops* structure is stored in the *rte_eth_dev*
106  * structure by the device init function of the Ethernet driver, which is
107  * invoked during the PCI probing phase, as explained earlier.
108  *
109  * In other words, each function of the Ethernet API simply retrieves the
110  * *rte_eth_dev* structure associated with the device port identifier and
111  * performs an indirect invocation of the corresponding driver function
112  * supplied in the *eth_dev_ops* structure of the *rte_eth_dev* structure.
113  *
114  * For performance reasons, the address of the burst-oriented RX and TX
115  * functions of the Ethernet driver are not contained in the *eth_dev_ops*
116  * structure. Instead, they are directly stored at the beginning of the
117  * *rte_eth_dev* structure to avoid an extra indirect memory access during
118  * their invocation.
119  *
120  * RTE ethernet device drivers do not use interrupts for transmitting or
121  * receiving. Instead, Ethernet drivers export Poll-Mode receive and transmit
122  * functions to applications.
123  * Both receive and transmit functions are packet-burst oriented to minimize
124  * their cost per packet through the following optimizations:
125  *
126  * - Sharing among multiple packets the incompressible cost of the
127  *   invocation of receive/transmit functions.
128  *
129  * - Enabling receive/transmit functions to take advantage of burst-oriented
130  *   hardware features (L1 cache, prefetch instructions, NIC head/tail
131  *   registers) to minimize the number of CPU cycles per packet, for instance,
132  *   by avoiding useless read memory accesses to ring descriptors, or by
133  *   systematically using arrays of pointers that exactly fit L1 cache line
134  *   boundaries and sizes.
135  *
136  * The burst-oriented receive function does not provide any error notification,
137  * to avoid the corresponding overhead. As a hint, the upper-level application
138  * might check the status of the device link once being systematically returned
139  * a 0 value by the receive function of the driver for a given number of tries.
140  */
141
142 #ifdef __cplusplus
143 extern "C" {
144 #endif
145
146 #include <stdint.h>
147
148 /* Use this macro to check if LRO API is supported */
149 #define RTE_ETHDEV_HAS_LRO_SUPPORT
150
151 #include <rte_compat.h>
152 #include <rte_log.h>
153 #include <rte_interrupts.h>
154 #include <rte_dev.h>
155 #include <rte_devargs.h>
156 #include <rte_errno.h>
157 #include <rte_common.h>
158 #include <rte_config.h>
159 #include <rte_ether.h>
160
161 #include "rte_ethdev_trace_fp.h"
162 #include "rte_dev_info.h"
163
164 extern int rte_eth_dev_logtype;
165
166 #define RTE_ETHDEV_LOG(level, ...) \
167         rte_log(RTE_LOG_ ## level, rte_eth_dev_logtype, "" __VA_ARGS__)
168
169 struct rte_mbuf;
170
171 /**
172  * Initializes a device iterator.
173  *
174  * This iterator allows accessing a list of devices matching some devargs.
175  *
176  * @param iter
177  *   Device iterator handle initialized by the function.
178  *   The fields bus_str and cls_str might be dynamically allocated,
179  *   and could be freed by calling rte_eth_iterator_cleanup().
180  *
181  * @param devargs
182  *   Device description string.
183  *
184  * @return
185  *   0 on successful initialization, negative otherwise.
186  */
187 int rte_eth_iterator_init(struct rte_dev_iterator *iter, const char *devargs);
188
189 /**
190  * Iterates on devices with devargs filter.
191  * The ownership is not checked.
192  *
193  * The next port id is returned, and the iterator is updated.
194  *
195  * @param iter
196  *   Device iterator handle initialized by rte_eth_iterator_init().
197  *   Some fields bus_str and cls_str might be freed when no more port is found,
198  *   by calling rte_eth_iterator_cleanup().
199  *
200  * @return
201  *   A port id if found, RTE_MAX_ETHPORTS otherwise.
202  */
203 uint16_t rte_eth_iterator_next(struct rte_dev_iterator *iter);
204
205 /**
206  * Free some allocated fields of the iterator.
207  *
208  * This function is automatically called by rte_eth_iterator_next()
209  * on the last iteration (i.e. when no more matching port is found).
210  *
211  * It is safe to call this function twice; it will do nothing more.
212  *
213  * @param iter
214  *   Device iterator handle initialized by rte_eth_iterator_init().
215  *   The fields bus_str and cls_str are freed if needed.
216  */
217 void rte_eth_iterator_cleanup(struct rte_dev_iterator *iter);
218
219 /**
220  * Macro to iterate over all ethdev ports matching some devargs.
221  *
222  * If a break is done before the end of the loop,
223  * the function rte_eth_iterator_cleanup() must be called.
224  *
225  * @param id
226  *   Iterated port id of type uint16_t.
227  * @param devargs
228  *   Device parameters input as string of type char*.
229  * @param iter
230  *   Iterator handle of type struct rte_dev_iterator, used internally.
231  */
232 #define RTE_ETH_FOREACH_MATCHING_DEV(id, devargs, iter) \
233         for (rte_eth_iterator_init(iter, devargs), \
234              id = rte_eth_iterator_next(iter); \
235              id != RTE_MAX_ETHPORTS; \
236              id = rte_eth_iterator_next(iter))
237
238 /**
239  * A structure used to retrieve statistics for an Ethernet port.
240  * Not all statistics fields in struct rte_eth_stats are supported
241  * by any type of network interface card (NIC). If any statistics
242  * field is not supported, its value is 0.
243  */
244 struct rte_eth_stats {
245         uint64_t ipackets;  /**< Total number of successfully received packets. */
246         uint64_t opackets;  /**< Total number of successfully transmitted packets.*/
247         uint64_t ibytes;    /**< Total number of successfully received bytes. */
248         uint64_t obytes;    /**< Total number of successfully transmitted bytes. */
249         uint64_t imissed;
250         /**< Total of RX packets dropped by the HW,
251          * because there are no available buffer (i.e. RX queues are full).
252          */
253         uint64_t ierrors;   /**< Total number of erroneous received packets. */
254         uint64_t oerrors;   /**< Total number of failed transmitted packets. */
255         uint64_t rx_nombuf; /**< Total number of RX mbuf allocation failures. */
256         uint64_t q_ipackets[RTE_ETHDEV_QUEUE_STAT_CNTRS];
257         /**< Total number of queue RX packets. */
258         uint64_t q_opackets[RTE_ETHDEV_QUEUE_STAT_CNTRS];
259         /**< Total number of queue TX packets. */
260         uint64_t q_ibytes[RTE_ETHDEV_QUEUE_STAT_CNTRS];
261         /**< Total number of successfully received queue bytes. */
262         uint64_t q_obytes[RTE_ETHDEV_QUEUE_STAT_CNTRS];
263         /**< Total number of successfully transmitted queue bytes. */
264         uint64_t q_errors[RTE_ETHDEV_QUEUE_STAT_CNTRS];
265         /**< Total number of queue packets received that are dropped. */
266 };
267
268 /**
269  * Device supported speeds bitmap flags
270  */
271 #define ETH_LINK_SPEED_AUTONEG  (0 <<  0)  /**< Autonegotiate (all speeds) */
272 #define ETH_LINK_SPEED_FIXED    (1 <<  0)  /**< Disable autoneg (fixed speed) */
273 #define ETH_LINK_SPEED_10M_HD   (1 <<  1)  /**<  10 Mbps half-duplex */
274 #define ETH_LINK_SPEED_10M      (1 <<  2)  /**<  10 Mbps full-duplex */
275 #define ETH_LINK_SPEED_100M_HD  (1 <<  3)  /**< 100 Mbps half-duplex */
276 #define ETH_LINK_SPEED_100M     (1 <<  4)  /**< 100 Mbps full-duplex */
277 #define ETH_LINK_SPEED_1G       (1 <<  5)  /**<   1 Gbps */
278 #define ETH_LINK_SPEED_2_5G     (1 <<  6)  /**< 2.5 Gbps */
279 #define ETH_LINK_SPEED_5G       (1 <<  7)  /**<   5 Gbps */
280 #define ETH_LINK_SPEED_10G      (1 <<  8)  /**<  10 Gbps */
281 #define ETH_LINK_SPEED_20G      (1 <<  9)  /**<  20 Gbps */
282 #define ETH_LINK_SPEED_25G      (1 << 10)  /**<  25 Gbps */
283 #define ETH_LINK_SPEED_40G      (1 << 11)  /**<  40 Gbps */
284 #define ETH_LINK_SPEED_50G      (1 << 12)  /**<  50 Gbps */
285 #define ETH_LINK_SPEED_56G      (1 << 13)  /**<  56 Gbps */
286 #define ETH_LINK_SPEED_100G     (1 << 14)  /**< 100 Gbps */
287 #define ETH_LINK_SPEED_200G     (1 << 15)  /**< 200 Gbps */
288
289 /**
290  * Ethernet numeric link speeds in Mbps
291  */
292 #define ETH_SPEED_NUM_NONE         0 /**< Not defined */
293 #define ETH_SPEED_NUM_10M         10 /**<  10 Mbps */
294 #define ETH_SPEED_NUM_100M       100 /**< 100 Mbps */
295 #define ETH_SPEED_NUM_1G        1000 /**<   1 Gbps */
296 #define ETH_SPEED_NUM_2_5G      2500 /**< 2.5 Gbps */
297 #define ETH_SPEED_NUM_5G        5000 /**<   5 Gbps */
298 #define ETH_SPEED_NUM_10G      10000 /**<  10 Gbps */
299 #define ETH_SPEED_NUM_20G      20000 /**<  20 Gbps */
300 #define ETH_SPEED_NUM_25G      25000 /**<  25 Gbps */
301 #define ETH_SPEED_NUM_40G      40000 /**<  40 Gbps */
302 #define ETH_SPEED_NUM_50G      50000 /**<  50 Gbps */
303 #define ETH_SPEED_NUM_56G      56000 /**<  56 Gbps */
304 #define ETH_SPEED_NUM_100G    100000 /**< 100 Gbps */
305 #define ETH_SPEED_NUM_200G    200000 /**< 200 Gbps */
306
307 /**
308  * A structure used to retrieve link-level information of an Ethernet port.
309  */
310 __extension__
311 struct rte_eth_link {
312         uint32_t link_speed;        /**< ETH_SPEED_NUM_ */
313         uint16_t link_duplex  : 1;  /**< ETH_LINK_[HALF/FULL]_DUPLEX */
314         uint16_t link_autoneg : 1;  /**< ETH_LINK_[AUTONEG/FIXED] */
315         uint16_t link_status  : 1;  /**< ETH_LINK_[DOWN/UP] */
316 } __rte_aligned(8);      /**< aligned for atomic64 read/write */
317
318 /* Utility constants */
319 #define ETH_LINK_HALF_DUPLEX 0 /**< Half-duplex connection (see link_duplex). */
320 #define ETH_LINK_FULL_DUPLEX 1 /**< Full-duplex connection (see link_duplex). */
321 #define ETH_LINK_DOWN        0 /**< Link is down (see link_status). */
322 #define ETH_LINK_UP          1 /**< Link is up (see link_status). */
323 #define ETH_LINK_FIXED       0 /**< No autonegotiation (see link_autoneg). */
324 #define ETH_LINK_AUTONEG     1 /**< Autonegotiated (see link_autoneg). */
325
326 /**
327  * A structure used to configure the ring threshold registers of an RX/TX
328  * queue for an Ethernet port.
329  */
330 struct rte_eth_thresh {
331         uint8_t pthresh; /**< Ring prefetch threshold. */
332         uint8_t hthresh; /**< Ring host threshold. */
333         uint8_t wthresh; /**< Ring writeback threshold. */
334 };
335
336 /**
337  *  Simple flags are used for rte_eth_conf.rxmode.mq_mode.
338  */
339 #define ETH_MQ_RX_RSS_FLAG  0x1
340 #define ETH_MQ_RX_DCB_FLAG  0x2
341 #define ETH_MQ_RX_VMDQ_FLAG 0x4
342
343 /**
344  *  A set of values to identify what method is to be used to route
345  *  packets to multiple queues.
346  */
347 enum rte_eth_rx_mq_mode {
348         /** None of DCB,RSS or VMDQ mode */
349         ETH_MQ_RX_NONE = 0,
350
351         /** For RX side, only RSS is on */
352         ETH_MQ_RX_RSS = ETH_MQ_RX_RSS_FLAG,
353         /** For RX side,only DCB is on. */
354         ETH_MQ_RX_DCB = ETH_MQ_RX_DCB_FLAG,
355         /** Both DCB and RSS enable */
356         ETH_MQ_RX_DCB_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_DCB_FLAG,
357
358         /** Only VMDQ, no RSS nor DCB */
359         ETH_MQ_RX_VMDQ_ONLY = ETH_MQ_RX_VMDQ_FLAG,
360         /** RSS mode with VMDQ */
361         ETH_MQ_RX_VMDQ_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_VMDQ_FLAG,
362         /** Use VMDQ+DCB to route traffic to queues */
363         ETH_MQ_RX_VMDQ_DCB = ETH_MQ_RX_VMDQ_FLAG | ETH_MQ_RX_DCB_FLAG,
364         /** Enable both VMDQ and DCB in VMDq */
365         ETH_MQ_RX_VMDQ_DCB_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_DCB_FLAG |
366                                  ETH_MQ_RX_VMDQ_FLAG,
367 };
368
369 /**
370  * for rx mq mode backward compatible
371  */
372 #define ETH_RSS                       ETH_MQ_RX_RSS
373 #define VMDQ_DCB                      ETH_MQ_RX_VMDQ_DCB
374 #define ETH_DCB_RX                    ETH_MQ_RX_DCB
375
376 /**
377  * A set of values to identify what method is to be used to transmit
378  * packets using multi-TCs.
379  */
380 enum rte_eth_tx_mq_mode {
381         ETH_MQ_TX_NONE    = 0,  /**< It is in neither DCB nor VT mode. */
382         ETH_MQ_TX_DCB,          /**< For TX side,only DCB is on. */
383         ETH_MQ_TX_VMDQ_DCB,     /**< For TX side,both DCB and VT is on. */
384         ETH_MQ_TX_VMDQ_ONLY,    /**< Only VT on, no DCB */
385 };
386
387 /**
388  * for tx mq mode backward compatible
389  */
390 #define ETH_DCB_NONE                ETH_MQ_TX_NONE
391 #define ETH_VMDQ_DCB_TX             ETH_MQ_TX_VMDQ_DCB
392 #define ETH_DCB_TX                  ETH_MQ_TX_DCB
393
394 /**
395  * A structure used to configure the RX features of an Ethernet port.
396  */
397 struct rte_eth_rxmode {
398         /** The multi-queue packet distribution mode to be used, e.g. RSS. */
399         enum rte_eth_rx_mq_mode mq_mode;
400         uint32_t max_rx_pkt_len;  /**< Only used if JUMBO_FRAME enabled. */
401         /** Maximum allowed size of LRO aggregated packet. */
402         uint32_t max_lro_pkt_size;
403         uint16_t split_hdr_size;  /**< hdr buf size (header_split enabled).*/
404         /**
405          * Per-port Rx offloads to be set using DEV_RX_OFFLOAD_* flags.
406          * Only offloads set on rx_offload_capa field on rte_eth_dev_info
407          * structure are allowed to be set.
408          */
409         uint64_t offloads;
410
411         uint64_t reserved_64s[2]; /**< Reserved for future fields */
412         void *reserved_ptrs[2];   /**< Reserved for future fields */
413 };
414
415 /**
416  * VLAN types to indicate if it is for single VLAN, inner VLAN or outer VLAN.
417  * Note that single VLAN is treated the same as inner VLAN.
418  */
419 enum rte_vlan_type {
420         ETH_VLAN_TYPE_UNKNOWN = 0,
421         ETH_VLAN_TYPE_INNER, /**< Inner VLAN. */
422         ETH_VLAN_TYPE_OUTER, /**< Single VLAN, or outer VLAN. */
423         ETH_VLAN_TYPE_MAX,
424 };
425
426 /**
427  * A structure used to describe a vlan filter.
428  * If the bit corresponding to a VID is set, such VID is on.
429  */
430 struct rte_vlan_filter_conf {
431         uint64_t ids[64];
432 };
433
434 /**
435  * A structure used to configure the Receive Side Scaling (RSS) feature
436  * of an Ethernet port.
437  * If not NULL, the *rss_key* pointer of the *rss_conf* structure points
438  * to an array holding the RSS key to use for hashing specific header
439  * fields of received packets. The length of this array should be indicated
440  * by *rss_key_len* below. Otherwise, a default random hash key is used by
441  * the device driver.
442  *
443  * The *rss_key_len* field of the *rss_conf* structure indicates the length
444  * in bytes of the array pointed by *rss_key*. To be compatible, this length
445  * will be checked in i40e only. Others assume 40 bytes to be used as before.
446  *
447  * The *rss_hf* field of the *rss_conf* structure indicates the different
448  * types of IPv4/IPv6 packets to which the RSS hashing must be applied.
449  * Supplying an *rss_hf* equal to zero disables the RSS feature.
450  */
451 struct rte_eth_rss_conf {
452         uint8_t *rss_key;    /**< If not NULL, 40-byte hash key. */
453         uint8_t rss_key_len; /**< hash key length in bytes. */
454         uint64_t rss_hf;     /**< Hash functions to apply - see below. */
455 };
456
457 /*
458  * A packet can be identified by hardware as different flow types. Different
459  * NIC hardware may support different flow types.
460  * Basically, the NIC hardware identifies the flow type as deep protocol as
461  * possible, and exclusively. For example, if a packet is identified as
462  * 'RTE_ETH_FLOW_NONFRAG_IPV4_TCP', it will not be any of other flow types,
463  * though it is an actual IPV4 packet.
464  */
465 #define RTE_ETH_FLOW_UNKNOWN             0
466 #define RTE_ETH_FLOW_RAW                 1
467 #define RTE_ETH_FLOW_IPV4                2
468 #define RTE_ETH_FLOW_FRAG_IPV4           3
469 #define RTE_ETH_FLOW_NONFRAG_IPV4_TCP    4
470 #define RTE_ETH_FLOW_NONFRAG_IPV4_UDP    5
471 #define RTE_ETH_FLOW_NONFRAG_IPV4_SCTP   6
472 #define RTE_ETH_FLOW_NONFRAG_IPV4_OTHER  7
473 #define RTE_ETH_FLOW_IPV6                8
474 #define RTE_ETH_FLOW_FRAG_IPV6           9
475 #define RTE_ETH_FLOW_NONFRAG_IPV6_TCP   10
476 #define RTE_ETH_FLOW_NONFRAG_IPV6_UDP   11
477 #define RTE_ETH_FLOW_NONFRAG_IPV6_SCTP  12
478 #define RTE_ETH_FLOW_NONFRAG_IPV6_OTHER 13
479 #define RTE_ETH_FLOW_L2_PAYLOAD         14
480 #define RTE_ETH_FLOW_IPV6_EX            15
481 #define RTE_ETH_FLOW_IPV6_TCP_EX        16
482 #define RTE_ETH_FLOW_IPV6_UDP_EX        17
483 #define RTE_ETH_FLOW_PORT               18
484         /**< Consider device port number as a flow differentiator */
485 #define RTE_ETH_FLOW_VXLAN              19 /**< VXLAN protocol based flow */
486 #define RTE_ETH_FLOW_GENEVE             20 /**< GENEVE protocol based flow */
487 #define RTE_ETH_FLOW_NVGRE              21 /**< NVGRE protocol based flow */
488 #define RTE_ETH_FLOW_VXLAN_GPE          22 /**< VXLAN-GPE protocol based flow */
489 #define RTE_ETH_FLOW_GTPU               23 /**< GTPU protocol based flow */
490 #define RTE_ETH_FLOW_MAX                24
491
492 /*
493  * Below macros are defined for RSS offload types, they can be used to
494  * fill rte_eth_rss_conf.rss_hf or rte_flow_action_rss.types.
495  */
496 #define ETH_RSS_IPV4               (1ULL << 2)
497 #define ETH_RSS_FRAG_IPV4          (1ULL << 3)
498 #define ETH_RSS_NONFRAG_IPV4_TCP   (1ULL << 4)
499 #define ETH_RSS_NONFRAG_IPV4_UDP   (1ULL << 5)
500 #define ETH_RSS_NONFRAG_IPV4_SCTP  (1ULL << 6)
501 #define ETH_RSS_NONFRAG_IPV4_OTHER (1ULL << 7)
502 #define ETH_RSS_IPV6               (1ULL << 8)
503 #define ETH_RSS_FRAG_IPV6          (1ULL << 9)
504 #define ETH_RSS_NONFRAG_IPV6_TCP   (1ULL << 10)
505 #define ETH_RSS_NONFRAG_IPV6_UDP   (1ULL << 11)
506 #define ETH_RSS_NONFRAG_IPV6_SCTP  (1ULL << 12)
507 #define ETH_RSS_NONFRAG_IPV6_OTHER (1ULL << 13)
508 #define ETH_RSS_L2_PAYLOAD         (1ULL << 14)
509 #define ETH_RSS_IPV6_EX            (1ULL << 15)
510 #define ETH_RSS_IPV6_TCP_EX        (1ULL << 16)
511 #define ETH_RSS_IPV6_UDP_EX        (1ULL << 17)
512 #define ETH_RSS_PORT               (1ULL << 18)
513 #define ETH_RSS_VXLAN              (1ULL << 19)
514 #define ETH_RSS_GENEVE             (1ULL << 20)
515 #define ETH_RSS_NVGRE              (1ULL << 21)
516 #define ETH_RSS_GTPU               (1ULL << 23)
517 #define ETH_RSS_ETH                (1ULL << 24)
518 #define ETH_RSS_S_VLAN             (1ULL << 25)
519 #define ETH_RSS_C_VLAN             (1ULL << 26)
520 #define ETH_RSS_ESP                (1ULL << 27)
521 #define ETH_RSS_AH                 (1ULL << 28)
522 #define ETH_RSS_L2TPV3             (1ULL << 29)
523 #define ETH_RSS_PFCP               (1ULL << 30)
524 #define ETH_RSS_PPPOE              (1ULL << 31)
525
526 /*
527  * We use the following macros to combine with above ETH_RSS_* for
528  * more specific input set selection. These bits are defined starting
529  * from the high end of the 64 bits.
530  * Note: If we use above ETH_RSS_* without SRC/DST_ONLY, it represents
531  * both SRC and DST are taken into account. If SRC_ONLY and DST_ONLY of
532  * the same level are used simultaneously, it is the same case as none of
533  * them are added.
534  */
535 #define ETH_RSS_L3_SRC_ONLY        (1ULL << 63)
536 #define ETH_RSS_L3_DST_ONLY        (1ULL << 62)
537 #define ETH_RSS_L4_SRC_ONLY        (1ULL << 61)
538 #define ETH_RSS_L4_DST_ONLY        (1ULL << 60)
539 #define ETH_RSS_L2_SRC_ONLY        (1ULL << 59)
540 #define ETH_RSS_L2_DST_ONLY        (1ULL << 58)
541
542 /*
543  * Only select IPV6 address prefix as RSS input set according to
544  * https://tools.ietf.org/html/rfc6052
545  * Must be combined with ETH_RSS_IPV6, ETH_RSS_NONFRAG_IPV6_UDP,
546  * ETH_RSS_NONFRAG_IPV6_TCP, ETH_RSS_NONFRAG_IPV6_SCTP.
547  */
548 #define RTE_ETH_RSS_L3_PRE32       (1ULL << 57)
549 #define RTE_ETH_RSS_L3_PRE40       (1ULL << 56)
550 #define RTE_ETH_RSS_L3_PRE48       (1ULL << 55)
551 #define RTE_ETH_RSS_L3_PRE56       (1ULL << 54)
552 #define RTE_ETH_RSS_L3_PRE64       (1ULL << 53)
553 #define RTE_ETH_RSS_L3_PRE96       (1ULL << 52)
554
555 /**
556  * For input set change of hash filter, if SRC_ONLY and DST_ONLY of
557  * the same level are used simultaneously, it is the same case as
558  * none of them are added.
559  *
560  * @param rss_hf
561  *   RSS types with SRC/DST_ONLY.
562  * @return
563  *   RSS types.
564  */
565 static inline uint64_t
566 rte_eth_rss_hf_refine(uint64_t rss_hf)
567 {
568         if ((rss_hf & ETH_RSS_L3_SRC_ONLY) && (rss_hf & ETH_RSS_L3_DST_ONLY))
569                 rss_hf &= ~(ETH_RSS_L3_SRC_ONLY | ETH_RSS_L3_DST_ONLY);
570
571         if ((rss_hf & ETH_RSS_L4_SRC_ONLY) && (rss_hf & ETH_RSS_L4_DST_ONLY))
572                 rss_hf &= ~(ETH_RSS_L4_SRC_ONLY | ETH_RSS_L4_DST_ONLY);
573
574         return rss_hf;
575 }
576
577 #define ETH_RSS_IPV6_PRE32 ( \
578                 ETH_RSS_IPV6 | \
579                 RTE_ETH_RSS_L3_PRE32)
580
581 #define ETH_RSS_IPV6_PRE40 ( \
582                 ETH_RSS_IPV6 | \
583                 RTE_ETH_RSS_L3_PRE40)
584
585 #define ETH_RSS_IPV6_PRE48 ( \
586                 ETH_RSS_IPV6 | \
587                 RTE_ETH_RSS_L3_PRE48)
588
589 #define ETH_RSS_IPV6_PRE56 ( \
590                 ETH_RSS_IPV6 | \
591                 RTE_ETH_RSS_L3_PRE56)
592
593 #define ETH_RSS_IPV6_PRE64 ( \
594                 ETH_RSS_IPV6 | \
595                 RTE_ETH_RSS_L3_PRE64)
596
597 #define ETH_RSS_IPV6_PRE96 ( \
598                 ETH_RSS_IPV6 | \
599                 RTE_ETH_RSS_L3_PRE96)
600
601 #define ETH_RSS_IPV6_PRE32_UDP ( \
602                 ETH_RSS_NONFRAG_IPV6_UDP | \
603                 RTE_ETH_RSS_L3_PRE32)
604
605 #define ETH_RSS_IPV6_PRE40_UDP ( \
606                 ETH_RSS_NONFRAG_IPV6_UDP | \
607                 RTE_ETH_RSS_L3_PRE40)
608
609 #define ETH_RSS_IPV6_PRE48_UDP ( \
610                 ETH_RSS_NONFRAG_IPV6_UDP | \
611                 RTE_ETH_RSS_L3_PRE48)
612
613 #define ETH_RSS_IPV6_PRE56_UDP ( \
614                 ETH_RSS_NONFRAG_IPV6_UDP | \
615                 RTE_ETH_RSS_L3_PRE56)
616
617 #define ETH_RSS_IPV6_PRE64_UDP ( \
618                 ETH_RSS_NONFRAG_IPV6_UDP | \
619                 RTE_ETH_RSS_L3_PRE64)
620
621 #define ETH_RSS_IPV6_PRE96_UDP ( \
622                 ETH_RSS_NONFRAG_IPV6_UDP | \
623                 RTE_ETH_RSS_L3_PRE96)
624
625 #define ETH_RSS_IPV6_PRE32_TCP ( \
626                 ETH_RSS_NONFRAG_IPV6_TCP | \
627                 RTE_ETH_RSS_L3_PRE32)
628
629 #define ETH_RSS_IPV6_PRE40_TCP ( \
630                 ETH_RSS_NONFRAG_IPV6_TCP | \
631                 RTE_ETH_RSS_L3_PRE40)
632
633 #define ETH_RSS_IPV6_PRE48_TCP ( \
634                 ETH_RSS_NONFRAG_IPV6_TCP | \
635                 RTE_ETH_RSS_L3_PRE48)
636
637 #define ETH_RSS_IPV6_PRE56_TCP ( \
638                 ETH_RSS_NONFRAG_IPV6_TCP | \
639                 RTE_ETH_RSS_L3_PRE56)
640
641 #define ETH_RSS_IPV6_PRE64_TCP ( \
642                 ETH_RSS_NONFRAG_IPV6_TCP | \
643                 RTE_ETH_RSS_L3_PRE64)
644
645 #define ETH_RSS_IPV6_PRE96_TCP ( \
646                 ETH_RSS_NONFRAG_IPV6_TCP | \
647                 RTE_ETH_RSS_L3_PRE96)
648
649 #define ETH_RSS_IPV6_PRE32_SCTP ( \
650                 ETH_RSS_NONFRAG_IPV6_SCTP | \
651                 RTE_ETH_RSS_L3_PRE32)
652
653 #define ETH_RSS_IPV6_PRE40_SCTP ( \
654                 ETH_RSS_NONFRAG_IPV6_SCTP | \
655                 RTE_ETH_RSS_L3_PRE40)
656
657 #define ETH_RSS_IPV6_PRE48_SCTP ( \
658                 ETH_RSS_NONFRAG_IPV6_SCTP | \
659                 RTE_ETH_RSS_L3_PRE48)
660
661 #define ETH_RSS_IPV6_PRE56_SCTP ( \
662                 ETH_RSS_NONFRAG_IPV6_SCTP | \
663                 RTE_ETH_RSS_L3_PRE56)
664
665 #define ETH_RSS_IPV6_PRE64_SCTP ( \
666                 ETH_RSS_NONFRAG_IPV6_SCTP | \
667                 RTE_ETH_RSS_L3_PRE64)
668
669 #define ETH_RSS_IPV6_PRE96_SCTP ( \
670                 ETH_RSS_NONFRAG_IPV6_SCTP | \
671                 RTE_ETH_RSS_L3_PRE96)
672
673 #define ETH_RSS_IP ( \
674         ETH_RSS_IPV4 | \
675         ETH_RSS_FRAG_IPV4 | \
676         ETH_RSS_NONFRAG_IPV4_OTHER | \
677         ETH_RSS_IPV6 | \
678         ETH_RSS_FRAG_IPV6 | \
679         ETH_RSS_NONFRAG_IPV6_OTHER | \
680         ETH_RSS_IPV6_EX)
681
682 #define ETH_RSS_UDP ( \
683         ETH_RSS_NONFRAG_IPV4_UDP | \
684         ETH_RSS_NONFRAG_IPV6_UDP | \
685         ETH_RSS_IPV6_UDP_EX)
686
687 #define ETH_RSS_TCP ( \
688         ETH_RSS_NONFRAG_IPV4_TCP | \
689         ETH_RSS_NONFRAG_IPV6_TCP | \
690         ETH_RSS_IPV6_TCP_EX)
691
692 #define ETH_RSS_SCTP ( \
693         ETH_RSS_NONFRAG_IPV4_SCTP | \
694         ETH_RSS_NONFRAG_IPV6_SCTP)
695
696 #define ETH_RSS_TUNNEL ( \
697         ETH_RSS_VXLAN  | \
698         ETH_RSS_GENEVE | \
699         ETH_RSS_NVGRE)
700
701 #define ETH_RSS_VLAN ( \
702         ETH_RSS_S_VLAN  | \
703         ETH_RSS_C_VLAN)
704
705 /**< Mask of valid RSS hash protocols */
706 #define ETH_RSS_PROTO_MASK ( \
707         ETH_RSS_IPV4 | \
708         ETH_RSS_FRAG_IPV4 | \
709         ETH_RSS_NONFRAG_IPV4_TCP | \
710         ETH_RSS_NONFRAG_IPV4_UDP | \
711         ETH_RSS_NONFRAG_IPV4_SCTP | \
712         ETH_RSS_NONFRAG_IPV4_OTHER | \
713         ETH_RSS_IPV6 | \
714         ETH_RSS_FRAG_IPV6 | \
715         ETH_RSS_NONFRAG_IPV6_TCP | \
716         ETH_RSS_NONFRAG_IPV6_UDP | \
717         ETH_RSS_NONFRAG_IPV6_SCTP | \
718         ETH_RSS_NONFRAG_IPV6_OTHER | \
719         ETH_RSS_L2_PAYLOAD | \
720         ETH_RSS_IPV6_EX | \
721         ETH_RSS_IPV6_TCP_EX | \
722         ETH_RSS_IPV6_UDP_EX | \
723         ETH_RSS_PORT  | \
724         ETH_RSS_VXLAN | \
725         ETH_RSS_GENEVE | \
726         ETH_RSS_NVGRE)
727
728 /*
729  * Definitions used for redirection table entry size.
730  * Some RSS RETA sizes may not be supported by some drivers, check the
731  * documentation or the description of relevant functions for more details.
732  */
733 #define ETH_RSS_RETA_SIZE_64  64
734 #define ETH_RSS_RETA_SIZE_128 128
735 #define ETH_RSS_RETA_SIZE_256 256
736 #define ETH_RSS_RETA_SIZE_512 512
737 #define RTE_RETA_GROUP_SIZE   64
738
739 /* Definitions used for VMDQ and DCB functionality */
740 #define ETH_VMDQ_MAX_VLAN_FILTERS   64 /**< Maximum nb. of VMDQ vlan filters. */
741 #define ETH_DCB_NUM_USER_PRIORITIES 8  /**< Maximum nb. of DCB priorities. */
742 #define ETH_VMDQ_DCB_NUM_QUEUES     128 /**< Maximum nb. of VMDQ DCB queues. */
743 #define ETH_DCB_NUM_QUEUES          128 /**< Maximum nb. of DCB queues. */
744
745 /* DCB capability defines */
746 #define ETH_DCB_PG_SUPPORT      0x00000001 /**< Priority Group(ETS) support. */
747 #define ETH_DCB_PFC_SUPPORT     0x00000002 /**< Priority Flow Control support. */
748
749 /* Definitions used for VLAN Offload functionality */
750 #define ETH_VLAN_STRIP_OFFLOAD   0x0001 /**< VLAN Strip  On/Off */
751 #define ETH_VLAN_FILTER_OFFLOAD  0x0002 /**< VLAN Filter On/Off */
752 #define ETH_VLAN_EXTEND_OFFLOAD  0x0004 /**< VLAN Extend On/Off */
753 #define ETH_QINQ_STRIP_OFFLOAD   0x0008 /**< QINQ Strip On/Off */
754
755 /* Definitions used for mask VLAN setting */
756 #define ETH_VLAN_STRIP_MASK   0x0001 /**< VLAN Strip  setting mask */
757 #define ETH_VLAN_FILTER_MASK  0x0002 /**< VLAN Filter  setting mask*/
758 #define ETH_VLAN_EXTEND_MASK  0x0004 /**< VLAN Extend  setting mask*/
759 #define ETH_QINQ_STRIP_MASK   0x0008 /**< QINQ Strip  setting mask */
760 #define ETH_VLAN_ID_MAX       0x0FFF /**< VLAN ID is in lower 12 bits*/
761
762 /* Definitions used for receive MAC address   */
763 #define ETH_NUM_RECEIVE_MAC_ADDR  128 /**< Maximum nb. of receive mac addr. */
764
765 /* Definitions used for unicast hash  */
766 #define ETH_VMDQ_NUM_UC_HASH_ARRAY  128 /**< Maximum nb. of UC hash array. */
767
768 /* Definitions used for VMDQ pool rx mode setting */
769 #define ETH_VMDQ_ACCEPT_UNTAG   0x0001 /**< accept untagged packets. */
770 #define ETH_VMDQ_ACCEPT_HASH_MC 0x0002 /**< accept packets in multicast table . */
771 #define ETH_VMDQ_ACCEPT_HASH_UC 0x0004 /**< accept packets in unicast table. */
772 #define ETH_VMDQ_ACCEPT_BROADCAST   0x0008 /**< accept broadcast packets. */
773 #define ETH_VMDQ_ACCEPT_MULTICAST   0x0010 /**< multicast promiscuous. */
774
775 /** Maximum nb. of vlan per mirror rule */
776 #define ETH_MIRROR_MAX_VLANS       64
777
778 #define ETH_MIRROR_VIRTUAL_POOL_UP     0x01  /**< Virtual Pool uplink Mirroring. */
779 #define ETH_MIRROR_UPLINK_PORT         0x02  /**< Uplink Port Mirroring. */
780 #define ETH_MIRROR_DOWNLINK_PORT       0x04  /**< Downlink Port Mirroring. */
781 #define ETH_MIRROR_VLAN                0x08  /**< VLAN Mirroring. */
782 #define ETH_MIRROR_VIRTUAL_POOL_DOWN   0x10  /**< Virtual Pool downlink Mirroring. */
783
784 /**
785  * A structure used to configure VLAN traffic mirror of an Ethernet port.
786  */
787 struct rte_eth_vlan_mirror {
788         uint64_t vlan_mask; /**< mask for valid VLAN ID. */
789         /** VLAN ID list for vlan mirroring. */
790         uint16_t vlan_id[ETH_MIRROR_MAX_VLANS];
791 };
792
793 /**
794  * A structure used to configure traffic mirror of an Ethernet port.
795  */
796 struct rte_eth_mirror_conf {
797         uint8_t rule_type; /**< Mirroring rule type */
798         uint8_t dst_pool;  /**< Destination pool for this mirror rule. */
799         uint64_t pool_mask; /**< Bitmap of pool for pool mirroring */
800         /** VLAN ID setting for VLAN mirroring. */
801         struct rte_eth_vlan_mirror vlan;
802 };
803
804 /**
805  * A structure used to configure 64 entries of Redirection Table of the
806  * Receive Side Scaling (RSS) feature of an Ethernet port. To configure
807  * more than 64 entries supported by hardware, an array of this structure
808  * is needed.
809  */
810 struct rte_eth_rss_reta_entry64 {
811         uint64_t mask;
812         /**< Mask bits indicate which entries need to be updated/queried. */
813         uint16_t reta[RTE_RETA_GROUP_SIZE];
814         /**< Group of 64 redirection table entries. */
815 };
816
817 /**
818  * This enum indicates the possible number of traffic classes
819  * in DCB configurations
820  */
821 enum rte_eth_nb_tcs {
822         ETH_4_TCS = 4, /**< 4 TCs with DCB. */
823         ETH_8_TCS = 8  /**< 8 TCs with DCB. */
824 };
825
826 /**
827  * This enum indicates the possible number of queue pools
828  * in VMDQ configurations.
829  */
830 enum rte_eth_nb_pools {
831         ETH_8_POOLS = 8,    /**< 8 VMDq pools. */
832         ETH_16_POOLS = 16,  /**< 16 VMDq pools. */
833         ETH_32_POOLS = 32,  /**< 32 VMDq pools. */
834         ETH_64_POOLS = 64   /**< 64 VMDq pools. */
835 };
836
837 /* This structure may be extended in future. */
838 struct rte_eth_dcb_rx_conf {
839         enum rte_eth_nb_tcs nb_tcs; /**< Possible DCB TCs, 4 or 8 TCs */
840         /** Traffic class each UP mapped to. */
841         uint8_t dcb_tc[ETH_DCB_NUM_USER_PRIORITIES];
842 };
843
844 struct rte_eth_vmdq_dcb_tx_conf {
845         enum rte_eth_nb_pools nb_queue_pools; /**< With DCB, 16 or 32 pools. */
846         /** Traffic class each UP mapped to. */
847         uint8_t dcb_tc[ETH_DCB_NUM_USER_PRIORITIES];
848 };
849
850 struct rte_eth_dcb_tx_conf {
851         enum rte_eth_nb_tcs nb_tcs; /**< Possible DCB TCs, 4 or 8 TCs. */
852         /** Traffic class each UP mapped to. */
853         uint8_t dcb_tc[ETH_DCB_NUM_USER_PRIORITIES];
854 };
855
856 struct rte_eth_vmdq_tx_conf {
857         enum rte_eth_nb_pools nb_queue_pools; /**< VMDq mode, 64 pools. */
858 };
859
860 /**
861  * A structure used to configure the VMDQ+DCB feature
862  * of an Ethernet port.
863  *
864  * Using this feature, packets are routed to a pool of queues, based
865  * on the vlan id in the vlan tag, and then to a specific queue within
866  * that pool, using the user priority vlan tag field.
867  *
868  * A default pool may be used, if desired, to route all traffic which
869  * does not match the vlan filter rules.
870  */
871 struct rte_eth_vmdq_dcb_conf {
872         enum rte_eth_nb_pools nb_queue_pools; /**< With DCB, 16 or 32 pools */
873         uint8_t enable_default_pool; /**< If non-zero, use a default pool */
874         uint8_t default_pool; /**< The default pool, if applicable */
875         uint8_t nb_pool_maps; /**< We can have up to 64 filters/mappings */
876         struct {
877                 uint16_t vlan_id; /**< The vlan id of the received frame */
878                 uint64_t pools;   /**< Bitmask of pools for packet rx */
879         } pool_map[ETH_VMDQ_MAX_VLAN_FILTERS]; /**< VMDq vlan pool maps. */
880         uint8_t dcb_tc[ETH_DCB_NUM_USER_PRIORITIES];
881         /**< Selects a queue in a pool */
882 };
883
884 /**
885  * A structure used to configure the VMDQ feature of an Ethernet port when
886  * not combined with the DCB feature.
887  *
888  * Using this feature, packets are routed to a pool of queues. By default,
889  * the pool selection is based on the MAC address, the vlan id in the
890  * vlan tag as specified in the pool_map array.
891  * Passing the ETH_VMDQ_ACCEPT_UNTAG in the rx_mode field allows pool
892  * selection using only the MAC address. MAC address to pool mapping is done
893  * using the rte_eth_dev_mac_addr_add function, with the pool parameter
894  * corresponding to the pool id.
895  *
896  * Queue selection within the selected pool will be done using RSS when
897  * it is enabled or revert to the first queue of the pool if not.
898  *
899  * A default pool may be used, if desired, to route all traffic which
900  * does not match the vlan filter rules or any pool MAC address.
901  */
902 struct rte_eth_vmdq_rx_conf {
903         enum rte_eth_nb_pools nb_queue_pools; /**< VMDq only mode, 8 or 64 pools */
904         uint8_t enable_default_pool; /**< If non-zero, use a default pool */
905         uint8_t default_pool; /**< The default pool, if applicable */
906         uint8_t enable_loop_back; /**< Enable VT loop back */
907         uint8_t nb_pool_maps; /**< We can have up to 64 filters/mappings */
908         uint32_t rx_mode; /**< Flags from ETH_VMDQ_ACCEPT_* */
909         struct {
910                 uint16_t vlan_id; /**< The vlan id of the received frame */
911                 uint64_t pools;   /**< Bitmask of pools for packet rx */
912         } pool_map[ETH_VMDQ_MAX_VLAN_FILTERS]; /**< VMDq vlan pool maps. */
913 };
914
915 /**
916  * A structure used to configure the TX features of an Ethernet port.
917  */
918 struct rte_eth_txmode {
919         enum rte_eth_tx_mq_mode mq_mode; /**< TX multi-queues mode. */
920         /**
921          * Per-port Tx offloads to be set using DEV_TX_OFFLOAD_* flags.
922          * Only offloads set on tx_offload_capa field on rte_eth_dev_info
923          * structure are allowed to be set.
924          */
925         uint64_t offloads;
926
927         uint16_t pvid;
928         __extension__
929         uint8_t hw_vlan_reject_tagged : 1,
930                 /**< If set, reject sending out tagged pkts */
931                 hw_vlan_reject_untagged : 1,
932                 /**< If set, reject sending out untagged pkts */
933                 hw_vlan_insert_pvid : 1;
934                 /**< If set, enable port based VLAN insertion */
935
936         uint64_t reserved_64s[2]; /**< Reserved for future fields */
937         void *reserved_ptrs[2];   /**< Reserved for future fields */
938 };
939
940 /**
941  * A structure used to configure an RX ring of an Ethernet port.
942  */
943 struct rte_eth_rxconf {
944         struct rte_eth_thresh rx_thresh; /**< RX ring threshold registers. */
945         uint16_t rx_free_thresh; /**< Drives the freeing of RX descriptors. */
946         uint8_t rx_drop_en; /**< Drop packets if no descriptors are available. */
947         uint8_t rx_deferred_start; /**< Do not start queue with rte_eth_dev_start(). */
948         /**
949          * Per-queue Rx offloads to be set using DEV_RX_OFFLOAD_* flags.
950          * Only offloads set on rx_queue_offload_capa or rx_offload_capa
951          * fields on rte_eth_dev_info structure are allowed to be set.
952          */
953         uint64_t offloads;
954
955         uint64_t reserved_64s[2]; /**< Reserved for future fields */
956         void *reserved_ptrs[2];   /**< Reserved for future fields */
957 };
958
959 /**
960  * A structure used to configure a TX ring of an Ethernet port.
961  */
962 struct rte_eth_txconf {
963         struct rte_eth_thresh tx_thresh; /**< TX ring threshold registers. */
964         uint16_t tx_rs_thresh; /**< Drives the setting of RS bit on TXDs. */
965         uint16_t tx_free_thresh; /**< Start freeing TX buffers if there are
966                                       less free descriptors than this value. */
967
968         uint8_t tx_deferred_start; /**< Do not start queue with rte_eth_dev_start(). */
969         /**
970          * Per-queue Tx offloads to be set  using DEV_TX_OFFLOAD_* flags.
971          * Only offloads set on tx_queue_offload_capa or tx_offload_capa
972          * fields on rte_eth_dev_info structure are allowed to be set.
973          */
974         uint64_t offloads;
975
976         uint64_t reserved_64s[2]; /**< Reserved for future fields */
977         void *reserved_ptrs[2];   /**< Reserved for future fields */
978 };
979
980 /**
981  * @warning
982  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
983  *
984  * A structure used to return the hairpin capabilities that are supported.
985  */
986 struct rte_eth_hairpin_cap {
987         /** The max number of hairpin queues (different bindings). */
988         uint16_t max_nb_queues;
989         /** Max number of Rx queues to be connected to one Tx queue. */
990         uint16_t max_rx_2_tx;
991         /** Max number of Tx queues to be connected to one Rx queue. */
992         uint16_t max_tx_2_rx;
993         uint16_t max_nb_desc; /**< The max num of descriptors. */
994 };
995
996 #define RTE_ETH_MAX_HAIRPIN_PEERS 32
997
998 /**
999  * @warning
1000  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
1001  *
1002  * A structure used to hold hairpin peer data.
1003  */
1004 struct rte_eth_hairpin_peer {
1005         uint16_t port; /**< Peer port. */
1006         uint16_t queue; /**< Peer queue. */
1007 };
1008
1009 /**
1010  * @warning
1011  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
1012  *
1013  * A structure used to configure hairpin binding.
1014  */
1015 struct rte_eth_hairpin_conf {
1016         uint16_t peer_count; /**< The number of peers. */
1017         struct rte_eth_hairpin_peer peers[RTE_ETH_MAX_HAIRPIN_PEERS];
1018 };
1019
1020 /**
1021  * A structure contains information about HW descriptor ring limitations.
1022  */
1023 struct rte_eth_desc_lim {
1024         uint16_t nb_max;   /**< Max allowed number of descriptors. */
1025         uint16_t nb_min;   /**< Min allowed number of descriptors. */
1026         uint16_t nb_align; /**< Number of descriptors should be aligned to. */
1027
1028         /**
1029          * Max allowed number of segments per whole packet.
1030          *
1031          * - For TSO packet this is the total number of data descriptors allowed
1032          *   by device.
1033          *
1034          * @see nb_mtu_seg_max
1035          */
1036         uint16_t nb_seg_max;
1037
1038         /**
1039          * Max number of segments per one MTU.
1040          *
1041          * - For non-TSO packet, this is the maximum allowed number of segments
1042          *   in a single transmit packet.
1043          *
1044          * - For TSO packet each segment within the TSO may span up to this
1045          *   value.
1046          *
1047          * @see nb_seg_max
1048          */
1049         uint16_t nb_mtu_seg_max;
1050 };
1051
1052 /**
1053  * This enum indicates the flow control mode
1054  */
1055 enum rte_eth_fc_mode {
1056         RTE_FC_NONE = 0, /**< Disable flow control. */
1057         RTE_FC_RX_PAUSE, /**< RX pause frame, enable flowctrl on TX side. */
1058         RTE_FC_TX_PAUSE, /**< TX pause frame, enable flowctrl on RX side. */
1059         RTE_FC_FULL      /**< Enable flow control on both side. */
1060 };
1061
1062 /**
1063  * A structure used to configure Ethernet flow control parameter.
1064  * These parameters will be configured into the register of the NIC.
1065  * Please refer to the corresponding data sheet for proper value.
1066  */
1067 struct rte_eth_fc_conf {
1068         uint32_t high_water;  /**< High threshold value to trigger XOFF */
1069         uint32_t low_water;   /**< Low threshold value to trigger XON */
1070         uint16_t pause_time;  /**< Pause quota in the Pause frame */
1071         uint16_t send_xon;    /**< Is XON frame need be sent */
1072         enum rte_eth_fc_mode mode;  /**< Link flow control mode */
1073         uint8_t mac_ctrl_frame_fwd; /**< Forward MAC control frames */
1074         uint8_t autoneg;      /**< Use Pause autoneg */
1075 };
1076
1077 /**
1078  * A structure used to configure Ethernet priority flow control parameter.
1079  * These parameters will be configured into the register of the NIC.
1080  * Please refer to the corresponding data sheet for proper value.
1081  */
1082 struct rte_eth_pfc_conf {
1083         struct rte_eth_fc_conf fc; /**< General flow control parameter. */
1084         uint8_t priority;          /**< VLAN User Priority. */
1085 };
1086
1087 /**
1088  * Tunneled type.
1089  */
1090 enum rte_eth_tunnel_type {
1091         RTE_TUNNEL_TYPE_NONE = 0,
1092         RTE_TUNNEL_TYPE_VXLAN,
1093         RTE_TUNNEL_TYPE_GENEVE,
1094         RTE_TUNNEL_TYPE_TEREDO,
1095         RTE_TUNNEL_TYPE_NVGRE,
1096         RTE_TUNNEL_TYPE_IP_IN_GRE,
1097         RTE_L2_TUNNEL_TYPE_E_TAG,
1098         RTE_TUNNEL_TYPE_VXLAN_GPE,
1099         RTE_TUNNEL_TYPE_MAX,
1100 };
1101
1102 /* Deprecated API file for rte_eth_dev_filter_* functions */
1103 #include "rte_eth_ctrl.h"
1104
1105 /**
1106  *  Memory space that can be configured to store Flow Director filters
1107  *  in the board memory.
1108  */
1109 enum rte_fdir_pballoc_type {
1110         RTE_FDIR_PBALLOC_64K = 0,  /**< 64k. */
1111         RTE_FDIR_PBALLOC_128K,     /**< 128k. */
1112         RTE_FDIR_PBALLOC_256K,     /**< 256k. */
1113 };
1114
1115 /**
1116  *  Select report mode of FDIR hash information in RX descriptors.
1117  */
1118 enum rte_fdir_status_mode {
1119         RTE_FDIR_NO_REPORT_STATUS = 0, /**< Never report FDIR hash. */
1120         RTE_FDIR_REPORT_STATUS, /**< Only report FDIR hash for matching pkts. */
1121         RTE_FDIR_REPORT_STATUS_ALWAYS, /**< Always report FDIR hash. */
1122 };
1123
1124 /**
1125  * A structure used to configure the Flow Director (FDIR) feature
1126  * of an Ethernet port.
1127  *
1128  * If mode is RTE_FDIR_MODE_NONE, the pballoc value is ignored.
1129  */
1130 struct rte_fdir_conf {
1131         enum rte_fdir_mode mode; /**< Flow Director mode. */
1132         enum rte_fdir_pballoc_type pballoc; /**< Space for FDIR filters. */
1133         enum rte_fdir_status_mode status;  /**< How to report FDIR hash. */
1134         /** RX queue of packets matching a "drop" filter in perfect mode. */
1135         uint8_t drop_queue;
1136         struct rte_eth_fdir_masks mask;
1137         struct rte_eth_fdir_flex_conf flex_conf;
1138         /**< Flex payload configuration. */
1139 };
1140
1141 /**
1142  * UDP tunneling configuration.
1143  * Used to config the UDP port for a type of tunnel.
1144  * NICs need the UDP port to identify the tunnel type.
1145  * Normally a type of tunnel has a default UDP port, this structure can be used
1146  * in case if the users want to change or support more UDP port.
1147  */
1148 struct rte_eth_udp_tunnel {
1149         uint16_t udp_port; /**< UDP port used for the tunnel. */
1150         uint8_t prot_type; /**< Tunnel type. Defined in rte_eth_tunnel_type. */
1151 };
1152
1153 /**
1154  * A structure used to enable/disable specific device interrupts.
1155  */
1156 struct rte_intr_conf {
1157         /** enable/disable lsc interrupt. 0 (default) - disable, 1 enable */
1158         uint32_t lsc:1;
1159         /** enable/disable rxq interrupt. 0 (default) - disable, 1 enable */
1160         uint32_t rxq:1;
1161         /** enable/disable rmv interrupt. 0 (default) - disable, 1 enable */
1162         uint32_t rmv:1;
1163 };
1164
1165 /**
1166  * A structure used to configure an Ethernet port.
1167  * Depending upon the RX multi-queue mode, extra advanced
1168  * configuration settings may be needed.
1169  */
1170 struct rte_eth_conf {
1171         uint32_t link_speeds; /**< bitmap of ETH_LINK_SPEED_XXX of speeds to be
1172                                 used. ETH_LINK_SPEED_FIXED disables link
1173                                 autonegotiation, and a unique speed shall be
1174                                 set. Otherwise, the bitmap defines the set of
1175                                 speeds to be advertised. If the special value
1176                                 ETH_LINK_SPEED_AUTONEG (0) is used, all speeds
1177                                 supported are advertised. */
1178         struct rte_eth_rxmode rxmode; /**< Port RX configuration. */
1179         struct rte_eth_txmode txmode; /**< Port TX configuration. */
1180         uint32_t lpbk_mode; /**< Loopback operation mode. By default the value
1181                                  is 0, meaning the loopback mode is disabled.
1182                                  Read the datasheet of given ethernet controller
1183                                  for details. The possible values of this field
1184                                  are defined in implementation of each driver. */
1185         struct {
1186                 struct rte_eth_rss_conf rss_conf; /**< Port RSS configuration */
1187                 struct rte_eth_vmdq_dcb_conf vmdq_dcb_conf;
1188                 /**< Port vmdq+dcb configuration. */
1189                 struct rte_eth_dcb_rx_conf dcb_rx_conf;
1190                 /**< Port dcb RX configuration. */
1191                 struct rte_eth_vmdq_rx_conf vmdq_rx_conf;
1192                 /**< Port vmdq RX configuration. */
1193         } rx_adv_conf; /**< Port RX filtering configuration. */
1194         union {
1195                 struct rte_eth_vmdq_dcb_tx_conf vmdq_dcb_tx_conf;
1196                 /**< Port vmdq+dcb TX configuration. */
1197                 struct rte_eth_dcb_tx_conf dcb_tx_conf;
1198                 /**< Port dcb TX configuration. */
1199                 struct rte_eth_vmdq_tx_conf vmdq_tx_conf;
1200                 /**< Port vmdq TX configuration. */
1201         } tx_adv_conf; /**< Port TX DCB configuration (union). */
1202         /** Currently,Priority Flow Control(PFC) are supported,if DCB with PFC
1203             is needed,and the variable must be set ETH_DCB_PFC_SUPPORT. */
1204         uint32_t dcb_capability_en;
1205         struct rte_fdir_conf fdir_conf; /**< FDIR configuration. DEPRECATED */
1206         struct rte_intr_conf intr_conf; /**< Interrupt mode configuration. */
1207 };
1208
1209 /**
1210  * RX offload capabilities of a device.
1211  */
1212 #define DEV_RX_OFFLOAD_VLAN_STRIP  0x00000001
1213 #define DEV_RX_OFFLOAD_IPV4_CKSUM  0x00000002
1214 #define DEV_RX_OFFLOAD_UDP_CKSUM   0x00000004
1215 #define DEV_RX_OFFLOAD_TCP_CKSUM   0x00000008
1216 #define DEV_RX_OFFLOAD_TCP_LRO     0x00000010
1217 #define DEV_RX_OFFLOAD_QINQ_STRIP  0x00000020
1218 #define DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM 0x00000040
1219 #define DEV_RX_OFFLOAD_MACSEC_STRIP     0x00000080
1220 #define DEV_RX_OFFLOAD_HEADER_SPLIT     0x00000100
1221 #define DEV_RX_OFFLOAD_VLAN_FILTER      0x00000200
1222 #define DEV_RX_OFFLOAD_VLAN_EXTEND      0x00000400
1223 #define DEV_RX_OFFLOAD_JUMBO_FRAME      0x00000800
1224 #define DEV_RX_OFFLOAD_SCATTER          0x00002000
1225 #define DEV_RX_OFFLOAD_TIMESTAMP        0x00004000
1226 #define DEV_RX_OFFLOAD_SECURITY         0x00008000
1227 #define DEV_RX_OFFLOAD_KEEP_CRC         0x00010000
1228 #define DEV_RX_OFFLOAD_SCTP_CKSUM       0x00020000
1229 #define DEV_RX_OFFLOAD_OUTER_UDP_CKSUM  0x00040000
1230 #define DEV_RX_OFFLOAD_RSS_HASH         0x00080000
1231
1232 #define DEV_RX_OFFLOAD_CHECKSUM (DEV_RX_OFFLOAD_IPV4_CKSUM | \
1233                                  DEV_RX_OFFLOAD_UDP_CKSUM | \
1234                                  DEV_RX_OFFLOAD_TCP_CKSUM)
1235 #define DEV_RX_OFFLOAD_VLAN (DEV_RX_OFFLOAD_VLAN_STRIP | \
1236                              DEV_RX_OFFLOAD_VLAN_FILTER | \
1237                              DEV_RX_OFFLOAD_VLAN_EXTEND | \
1238                              DEV_RX_OFFLOAD_QINQ_STRIP)
1239
1240 /*
1241  * If new Rx offload capabilities are defined, they also must be
1242  * mentioned in rte_rx_offload_names in rte_ethdev.c file.
1243  */
1244
1245 /**
1246  * TX offload capabilities of a device.
1247  */
1248 #define DEV_TX_OFFLOAD_VLAN_INSERT 0x00000001
1249 #define DEV_TX_OFFLOAD_IPV4_CKSUM  0x00000002
1250 #define DEV_TX_OFFLOAD_UDP_CKSUM   0x00000004
1251 #define DEV_TX_OFFLOAD_TCP_CKSUM   0x00000008
1252 #define DEV_TX_OFFLOAD_SCTP_CKSUM  0x00000010
1253 #define DEV_TX_OFFLOAD_TCP_TSO     0x00000020
1254 #define DEV_TX_OFFLOAD_UDP_TSO     0x00000040
1255 #define DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM 0x00000080 /**< Used for tunneling packet. */
1256 #define DEV_TX_OFFLOAD_QINQ_INSERT 0x00000100
1257 #define DEV_TX_OFFLOAD_VXLAN_TNL_TSO    0x00000200    /**< Used for tunneling packet. */
1258 #define DEV_TX_OFFLOAD_GRE_TNL_TSO      0x00000400    /**< Used for tunneling packet. */
1259 #define DEV_TX_OFFLOAD_IPIP_TNL_TSO     0x00000800    /**< Used for tunneling packet. */
1260 #define DEV_TX_OFFLOAD_GENEVE_TNL_TSO   0x00001000    /**< Used for tunneling packet. */
1261 #define DEV_TX_OFFLOAD_MACSEC_INSERT    0x00002000
1262 #define DEV_TX_OFFLOAD_MT_LOCKFREE      0x00004000
1263 /**< Multiple threads can invoke rte_eth_tx_burst() concurrently on the same
1264  * tx queue without SW lock.
1265  */
1266 #define DEV_TX_OFFLOAD_MULTI_SEGS       0x00008000
1267 /**< Device supports multi segment send. */
1268 #define DEV_TX_OFFLOAD_MBUF_FAST_FREE   0x00010000
1269 /**< Device supports optimization for fast release of mbufs.
1270  *   When set application must guarantee that per-queue all mbufs comes from
1271  *   the same mempool and has refcnt = 1.
1272  */
1273 #define DEV_TX_OFFLOAD_SECURITY         0x00020000
1274 /**
1275  * Device supports generic UDP tunneled packet TSO.
1276  * Application must set PKT_TX_TUNNEL_UDP and other mbuf fields required
1277  * for tunnel TSO.
1278  */
1279 #define DEV_TX_OFFLOAD_UDP_TNL_TSO      0x00040000
1280 /**
1281  * Device supports generic IP tunneled packet TSO.
1282  * Application must set PKT_TX_TUNNEL_IP and other mbuf fields required
1283  * for tunnel TSO.
1284  */
1285 #define DEV_TX_OFFLOAD_IP_TNL_TSO       0x00080000
1286 /** Device supports outer UDP checksum */
1287 #define DEV_TX_OFFLOAD_OUTER_UDP_CKSUM  0x00100000
1288
1289 /** Device supports send on timestamp */
1290 #define DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP 0x00200000
1291
1292
1293 #define RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP 0x00000001
1294 /**< Device supports Rx queue setup after device started*/
1295 #define RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP 0x00000002
1296 /**< Device supports Tx queue setup after device started*/
1297
1298 /*
1299  * If new Tx offload capabilities are defined, they also must be
1300  * mentioned in rte_tx_offload_names in rte_ethdev.c file.
1301  */
1302
1303 /*
1304  * Fallback default preferred Rx/Tx port parameters.
1305  * These are used if an application requests default parameters
1306  * but the PMD does not provide preferred values.
1307  */
1308 #define RTE_ETH_DEV_FALLBACK_RX_RINGSIZE 512
1309 #define RTE_ETH_DEV_FALLBACK_TX_RINGSIZE 512
1310 #define RTE_ETH_DEV_FALLBACK_RX_NBQUEUES 1
1311 #define RTE_ETH_DEV_FALLBACK_TX_NBQUEUES 1
1312
1313 /**
1314  * Preferred Rx/Tx port parameters.
1315  * There are separate instances of this structure for transmission
1316  * and reception respectively.
1317  */
1318 struct rte_eth_dev_portconf {
1319         uint16_t burst_size; /**< Device-preferred burst size */
1320         uint16_t ring_size; /**< Device-preferred size of queue rings */
1321         uint16_t nb_queues; /**< Device-preferred number of queues */
1322 };
1323
1324 /**
1325  * Default values for switch domain id when ethdev does not support switch
1326  * domain definitions.
1327  */
1328 #define RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID    (UINT16_MAX)
1329
1330 /**
1331  * Ethernet device associated switch information
1332  */
1333 struct rte_eth_switch_info {
1334         const char *name;       /**< switch name */
1335         uint16_t domain_id;     /**< switch domain id */
1336         uint16_t port_id;
1337         /**<
1338          * mapping to the devices physical switch port as enumerated from the
1339          * perspective of the embedded interconnect/switch. For SR-IOV enabled
1340          * device this may correspond to the VF_ID of each virtual function,
1341          * but each driver should explicitly define the mapping of switch
1342          * port identifier to that physical interconnect/switch
1343          */
1344 };
1345
1346 /**
1347  * Ethernet device information
1348  */
1349
1350 /**
1351  * A structure used to retrieve the contextual information of
1352  * an Ethernet device, such as the controlling driver of the
1353  * device, etc...
1354  */
1355 struct rte_eth_dev_info {
1356         struct rte_device *device; /** Generic device information */
1357         const char *driver_name; /**< Device Driver name. */
1358         unsigned int if_index; /**< Index to bound host interface, or 0 if none.
1359                 Use if_indextoname() to translate into an interface name. */
1360         uint16_t min_mtu;       /**< Minimum MTU allowed */
1361         uint16_t max_mtu;       /**< Maximum MTU allowed */
1362         const uint32_t *dev_flags; /**< Device flags */
1363         uint32_t min_rx_bufsize; /**< Minimum size of RX buffer. */
1364         uint32_t max_rx_pktlen; /**< Maximum configurable length of RX pkt. */
1365         /** Maximum configurable size of LRO aggregated packet. */
1366         uint32_t max_lro_pkt_size;
1367         uint16_t max_rx_queues; /**< Maximum number of RX queues. */
1368         uint16_t max_tx_queues; /**< Maximum number of TX queues. */
1369         uint32_t max_mac_addrs; /**< Maximum number of MAC addresses. */
1370         uint32_t max_hash_mac_addrs;
1371         /** Maximum number of hash MAC addresses for MTA and UTA. */
1372         uint16_t max_vfs; /**< Maximum number of VFs. */
1373         uint16_t max_vmdq_pools; /**< Maximum number of VMDq pools. */
1374         uint64_t rx_offload_capa;
1375         /**< All RX offload capabilities including all per-queue ones */
1376         uint64_t tx_offload_capa;
1377         /**< All TX offload capabilities including all per-queue ones */
1378         uint64_t rx_queue_offload_capa;
1379         /**< Device per-queue RX offload capabilities. */
1380         uint64_t tx_queue_offload_capa;
1381         /**< Device per-queue TX offload capabilities. */
1382         uint16_t reta_size;
1383         /**< Device redirection table size, the total number of entries. */
1384         uint8_t hash_key_size; /**< Hash key size in bytes */
1385         /** Bit mask of RSS offloads, the bit offset also means flow type */
1386         uint64_t flow_type_rss_offloads;
1387         struct rte_eth_rxconf default_rxconf; /**< Default RX configuration */
1388         struct rte_eth_txconf default_txconf; /**< Default TX configuration */
1389         uint16_t vmdq_queue_base; /**< First queue ID for VMDQ pools. */
1390         uint16_t vmdq_queue_num;  /**< Queue number for VMDQ pools. */
1391         uint16_t vmdq_pool_base;  /**< First ID of VMDQ pools. */
1392         struct rte_eth_desc_lim rx_desc_lim;  /**< RX descriptors limits */
1393         struct rte_eth_desc_lim tx_desc_lim;  /**< TX descriptors limits */
1394         uint32_t speed_capa;  /**< Supported speeds bitmap (ETH_LINK_SPEED_). */
1395         /** Configured number of rx/tx queues */
1396         uint16_t nb_rx_queues; /**< Number of RX queues. */
1397         uint16_t nb_tx_queues; /**< Number of TX queues. */
1398         /** Rx parameter recommendations */
1399         struct rte_eth_dev_portconf default_rxportconf;
1400         /** Tx parameter recommendations */
1401         struct rte_eth_dev_portconf default_txportconf;
1402         /** Generic device capabilities (RTE_ETH_DEV_CAPA_). */
1403         uint64_t dev_capa;
1404         /**
1405          * Switching information for ports on a device with a
1406          * embedded managed interconnect/switch.
1407          */
1408         struct rte_eth_switch_info switch_info;
1409
1410         uint64_t reserved_64s[2]; /**< Reserved for future fields */
1411         void *reserved_ptrs[2];   /**< Reserved for future fields */
1412 };
1413
1414 /**
1415  * Ethernet device RX queue information structure.
1416  * Used to retrieve information about configured queue.
1417  */
1418 struct rte_eth_rxq_info {
1419         struct rte_mempool *mp;     /**< mempool used by that queue. */
1420         struct rte_eth_rxconf conf; /**< queue config parameters. */
1421         uint8_t scattered_rx;       /**< scattered packets RX supported. */
1422         uint16_t nb_desc;           /**< configured number of RXDs. */
1423 } __rte_cache_min_aligned;
1424
1425 /**
1426  * Ethernet device TX queue information structure.
1427  * Used to retrieve information about configured queue.
1428  */
1429 struct rte_eth_txq_info {
1430         struct rte_eth_txconf conf; /**< queue config parameters. */
1431         uint16_t nb_desc;           /**< configured number of TXDs. */
1432 } __rte_cache_min_aligned;
1433
1434 /* Generic Burst mode flag definition, values can be ORed. */
1435
1436 /**
1437  * If the queues have different burst mode description, this bit will be set
1438  * by PMD, then the application can iterate to retrieve burst description for
1439  * all other queues.
1440  */
1441 #define RTE_ETH_BURST_FLAG_PER_QUEUE     (1ULL << 0)
1442
1443 /**
1444  * Ethernet device RX/TX queue packet burst mode information structure.
1445  * Used to retrieve information about packet burst mode setting.
1446  */
1447 struct rte_eth_burst_mode {
1448         uint64_t flags; /**< The ORed values of RTE_ETH_BURST_FLAG_xxx */
1449
1450 #define RTE_ETH_BURST_MODE_INFO_SIZE 1024 /**< Maximum size for information */
1451         char info[RTE_ETH_BURST_MODE_INFO_SIZE]; /**< burst mode information */
1452 };
1453
1454 /** Maximum name length for extended statistics counters */
1455 #define RTE_ETH_XSTATS_NAME_SIZE 64
1456
1457 /**
1458  * An Ethernet device extended statistic structure
1459  *
1460  * This structure is used by rte_eth_xstats_get() to provide
1461  * statistics that are not provided in the generic *rte_eth_stats*
1462  * structure.
1463  * It maps a name id, corresponding to an index in the array returned
1464  * by rte_eth_xstats_get_names(), to a statistic value.
1465  */
1466 struct rte_eth_xstat {
1467         uint64_t id;        /**< The index in xstats name array. */
1468         uint64_t value;     /**< The statistic counter value. */
1469 };
1470
1471 /**
1472  * A name element for extended statistics.
1473  *
1474  * An array of this structure is returned by rte_eth_xstats_get_names().
1475  * It lists the names of extended statistics for a PMD. The *rte_eth_xstat*
1476  * structure references these names by their array index.
1477  */
1478 struct rte_eth_xstat_name {
1479         char name[RTE_ETH_XSTATS_NAME_SIZE]; /**< The statistic name. */
1480 };
1481
1482 #define ETH_DCB_NUM_TCS    8
1483 #define ETH_MAX_VMDQ_POOL  64
1484
1485 /**
1486  * A structure used to get the information of queue and
1487  * TC mapping on both TX and RX paths.
1488  */
1489 struct rte_eth_dcb_tc_queue_mapping {
1490         /** rx queues assigned to tc per Pool */
1491         struct {
1492                 uint8_t base;
1493                 uint8_t nb_queue;
1494         } tc_rxq[ETH_MAX_VMDQ_POOL][ETH_DCB_NUM_TCS];
1495         /** rx queues assigned to tc per Pool */
1496         struct {
1497                 uint8_t base;
1498                 uint8_t nb_queue;
1499         } tc_txq[ETH_MAX_VMDQ_POOL][ETH_DCB_NUM_TCS];
1500 };
1501
1502 /**
1503  * A structure used to get the information of DCB.
1504  * It includes TC UP mapping and queue TC mapping.
1505  */
1506 struct rte_eth_dcb_info {
1507         uint8_t nb_tcs;        /**< number of TCs */
1508         uint8_t prio_tc[ETH_DCB_NUM_USER_PRIORITIES]; /**< Priority to tc */
1509         uint8_t tc_bws[ETH_DCB_NUM_TCS]; /**< TX BW percentage for each TC */
1510         /** rx queues assigned to tc */
1511         struct rte_eth_dcb_tc_queue_mapping tc_queue;
1512 };
1513
1514 #define RTE_ETH_ALL RTE_MAX_ETHPORTS
1515
1516 /* Macros to check for valid port */
1517 #define RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, retval) do { \
1518         if (!rte_eth_dev_is_valid_port(port_id)) { \
1519                 RTE_ETHDEV_LOG(ERR, "Invalid port_id=%u\n", port_id); \
1520                 return retval; \
1521         } \
1522 } while (0)
1523
1524 #define RTE_ETH_VALID_PORTID_OR_RET(port_id) do { \
1525         if (!rte_eth_dev_is_valid_port(port_id)) { \
1526                 RTE_ETHDEV_LOG(ERR, "Invalid port_id=%u\n", port_id); \
1527                 return; \
1528         } \
1529 } while (0)
1530
1531 /**
1532  * l2 tunnel configuration.
1533  */
1534
1535 /**< l2 tunnel enable mask */
1536 #define ETH_L2_TUNNEL_ENABLE_MASK       0x00000001
1537 /**< l2 tunnel insertion mask */
1538 #define ETH_L2_TUNNEL_INSERTION_MASK    0x00000002
1539 /**< l2 tunnel stripping mask */
1540 #define ETH_L2_TUNNEL_STRIPPING_MASK    0x00000004
1541 /**< l2 tunnel forwarding mask */
1542 #define ETH_L2_TUNNEL_FORWARDING_MASK   0x00000008
1543
1544 /**
1545  * Function type used for RX packet processing packet callbacks.
1546  *
1547  * The callback function is called on RX with a burst of packets that have
1548  * been received on the given port and queue.
1549  *
1550  * @param port_id
1551  *   The Ethernet port on which RX is being performed.
1552  * @param queue
1553  *   The queue on the Ethernet port which is being used to receive the packets.
1554  * @param pkts
1555  *   The burst of packets that have just been received.
1556  * @param nb_pkts
1557  *   The number of packets in the burst pointed to by "pkts".
1558  * @param max_pkts
1559  *   The max number of packets that can be stored in the "pkts" array.
1560  * @param user_param
1561  *   The arbitrary user parameter passed in by the application when the callback
1562  *   was originally configured.
1563  * @return
1564  *   The number of packets returned to the user.
1565  */
1566 typedef uint16_t (*rte_rx_callback_fn)(uint16_t port_id, uint16_t queue,
1567         struct rte_mbuf *pkts[], uint16_t nb_pkts, uint16_t max_pkts,
1568         void *user_param);
1569
1570 /**
1571  * Function type used for TX packet processing packet callbacks.
1572  *
1573  * The callback function is called on TX with a burst of packets immediately
1574  * before the packets are put onto the hardware queue for transmission.
1575  *
1576  * @param port_id
1577  *   The Ethernet port on which TX is being performed.
1578  * @param queue
1579  *   The queue on the Ethernet port which is being used to transmit the packets.
1580  * @param pkts
1581  *   The burst of packets that are about to be transmitted.
1582  * @param nb_pkts
1583  *   The number of packets in the burst pointed to by "pkts".
1584  * @param user_param
1585  *   The arbitrary user parameter passed in by the application when the callback
1586  *   was originally configured.
1587  * @return
1588  *   The number of packets to be written to the NIC.
1589  */
1590 typedef uint16_t (*rte_tx_callback_fn)(uint16_t port_id, uint16_t queue,
1591         struct rte_mbuf *pkts[], uint16_t nb_pkts, void *user_param);
1592
1593 /**
1594  * Possible states of an ethdev port.
1595  */
1596 enum rte_eth_dev_state {
1597         /** Device is unused before being probed. */
1598         RTE_ETH_DEV_UNUSED = 0,
1599         /** Device is attached when allocated in probing. */
1600         RTE_ETH_DEV_ATTACHED,
1601         /** Device is in removed state when plug-out is detected. */
1602         RTE_ETH_DEV_REMOVED,
1603 };
1604
1605 struct rte_eth_dev_sriov {
1606         uint8_t active;               /**< SRIOV is active with 16, 32 or 64 pools */
1607         uint8_t nb_q_per_pool;        /**< rx queue number per pool */
1608         uint16_t def_vmdq_idx;        /**< Default pool num used for PF */
1609         uint16_t def_pool_q_idx;      /**< Default pool queue start reg index */
1610 };
1611 #define RTE_ETH_DEV_SRIOV(dev)         ((dev)->data->sriov)
1612
1613 #define RTE_ETH_NAME_MAX_LEN RTE_DEV_NAME_MAX_LEN
1614
1615 #define RTE_ETH_DEV_NO_OWNER 0
1616
1617 #define RTE_ETH_MAX_OWNER_NAME_LEN 64
1618
1619 struct rte_eth_dev_owner {
1620         uint64_t id; /**< The owner unique identifier. */
1621         char name[RTE_ETH_MAX_OWNER_NAME_LEN]; /**< The owner name. */
1622 };
1623
1624 /**
1625  * Port is released (i.e. totally freed and data erased) on close.
1626  * Temporary flag for PMD migration to new rte_eth_dev_close() behaviour.
1627  */
1628 #define RTE_ETH_DEV_CLOSE_REMOVE 0x0001
1629 /** Device supports link state interrupt */
1630 #define RTE_ETH_DEV_INTR_LSC     0x0002
1631 /** Device is a bonded slave */
1632 #define RTE_ETH_DEV_BONDED_SLAVE 0x0004
1633 /** Device supports device removal interrupt */
1634 #define RTE_ETH_DEV_INTR_RMV     0x0008
1635 /** Device is port representor */
1636 #define RTE_ETH_DEV_REPRESENTOR  0x0010
1637 /** Device does not support MAC change after started */
1638 #define RTE_ETH_DEV_NOLIVE_MAC_ADDR  0x0020
1639
1640 /**
1641  * Iterates over valid ethdev ports owned by a specific owner.
1642  *
1643  * @param port_id
1644  *   The id of the next possible valid owned port.
1645  * @param       owner_id
1646  *  The owner identifier.
1647  *  RTE_ETH_DEV_NO_OWNER means iterate over all valid ownerless ports.
1648  * @return
1649  *   Next valid port id owned by owner_id, RTE_MAX_ETHPORTS if there is none.
1650  */
1651 uint64_t rte_eth_find_next_owned_by(uint16_t port_id,
1652                 const uint64_t owner_id);
1653
1654 /**
1655  * Macro to iterate over all enabled ethdev ports owned by a specific owner.
1656  */
1657 #define RTE_ETH_FOREACH_DEV_OWNED_BY(p, o) \
1658         for (p = rte_eth_find_next_owned_by(0, o); \
1659              (unsigned int)p < (unsigned int)RTE_MAX_ETHPORTS; \
1660              p = rte_eth_find_next_owned_by(p + 1, o))
1661
1662 /**
1663  * Iterates over valid ethdev ports.
1664  *
1665  * @param port_id
1666  *   The id of the next possible valid port.
1667  * @return
1668  *   Next valid port id, RTE_MAX_ETHPORTS if there is none.
1669  */
1670 uint16_t rte_eth_find_next(uint16_t port_id);
1671
1672 /**
1673  * Macro to iterate over all enabled and ownerless ethdev ports.
1674  */
1675 #define RTE_ETH_FOREACH_DEV(p) \
1676         RTE_ETH_FOREACH_DEV_OWNED_BY(p, RTE_ETH_DEV_NO_OWNER)
1677
1678 /**
1679  * @warning
1680  * @b EXPERIMENTAL: this API may change without prior notice.
1681  *
1682  * Iterates over ethdev ports of a specified device.
1683  *
1684  * @param port_id_start
1685  *   The id of the next possible valid port.
1686  * @param parent
1687  *   The generic device behind the ports to iterate.
1688  * @return
1689  *   Next port id of the device, possibly port_id_start,
1690  *   RTE_MAX_ETHPORTS if there is none.
1691  */
1692 __rte_experimental
1693 uint16_t
1694 rte_eth_find_next_of(uint16_t port_id_start,
1695                 const struct rte_device *parent);
1696
1697 /**
1698  * Macro to iterate over all ethdev ports of a specified device.
1699  *
1700  * @param port_id
1701  *   The id of the matching port being iterated.
1702  * @param parent
1703  *   The rte_device pointer matching the iterated ports.
1704  */
1705 #define RTE_ETH_FOREACH_DEV_OF(port_id, parent) \
1706         for (port_id = rte_eth_find_next_of(0, parent); \
1707                 port_id < RTE_MAX_ETHPORTS; \
1708                 port_id = rte_eth_find_next_of(port_id + 1, parent))
1709
1710 /**
1711  * @warning
1712  * @b EXPERIMENTAL: this API may change without prior notice.
1713  *
1714  * Iterates over sibling ethdev ports (i.e. sharing the same rte_device).
1715  *
1716  * @param port_id_start
1717  *   The id of the next possible valid sibling port.
1718  * @param ref_port_id
1719  *   The id of a reference port to compare rte_device with.
1720  * @return
1721  *   Next sibling port id, possibly port_id_start or ref_port_id itself,
1722  *   RTE_MAX_ETHPORTS if there is none.
1723  */
1724 __rte_experimental
1725 uint16_t
1726 rte_eth_find_next_sibling(uint16_t port_id_start,
1727                 uint16_t ref_port_id);
1728
1729 /**
1730  * Macro to iterate over all ethdev ports sharing the same rte_device
1731  * as the specified port.
1732  * Note: the specified reference port is part of the loop iterations.
1733  *
1734  * @param port_id
1735  *   The id of the matching port being iterated.
1736  * @param ref_port_id
1737  *   The id of the port being compared.
1738  */
1739 #define RTE_ETH_FOREACH_DEV_SIBLING(port_id, ref_port_id) \
1740         for (port_id = rte_eth_find_next_sibling(0, ref_port_id); \
1741                 port_id < RTE_MAX_ETHPORTS; \
1742                 port_id = rte_eth_find_next_sibling(port_id + 1, ref_port_id))
1743
1744 /**
1745  * @warning
1746  * @b EXPERIMENTAL: this API may change without prior notice.
1747  *
1748  * Get a new unique owner identifier.
1749  * An owner identifier is used to owns Ethernet devices by only one DPDK entity
1750  * to avoid multiple management of device by different entities.
1751  *
1752  * @param       owner_id
1753  *   Owner identifier pointer.
1754  * @return
1755  *   Negative errno value on error, 0 on success.
1756  */
1757 __rte_experimental
1758 int rte_eth_dev_owner_new(uint64_t *owner_id);
1759
1760 /**
1761  * @warning
1762  * @b EXPERIMENTAL: this API may change without prior notice.
1763  *
1764  * Set an Ethernet device owner.
1765  *
1766  * @param       port_id
1767  *  The identifier of the port to own.
1768  * @param       owner
1769  *  The owner pointer.
1770  * @return
1771  *  Negative errno value on error, 0 on success.
1772  */
1773 __rte_experimental
1774 int rte_eth_dev_owner_set(const uint16_t port_id,
1775                 const struct rte_eth_dev_owner *owner);
1776
1777 /**
1778  * @warning
1779  * @b EXPERIMENTAL: this API may change without prior notice.
1780  *
1781  * Unset Ethernet device owner to make the device ownerless.
1782  *
1783  * @param       port_id
1784  *  The identifier of port to make ownerless.
1785  * @param       owner_id
1786  *  The owner identifier.
1787  * @return
1788  *  0 on success, negative errno value on error.
1789  */
1790 __rte_experimental
1791 int rte_eth_dev_owner_unset(const uint16_t port_id,
1792                 const uint64_t owner_id);
1793
1794 /**
1795  * @warning
1796  * @b EXPERIMENTAL: this API may change without prior notice.
1797  *
1798  * Remove owner from all Ethernet devices owned by a specific owner.
1799  *
1800  * @param       owner_id
1801  *  The owner identifier.
1802  * @return
1803  *  0 on success, negative errno value on error.
1804  */
1805 __rte_experimental
1806 int rte_eth_dev_owner_delete(const uint64_t owner_id);
1807
1808 /**
1809  * @warning
1810  * @b EXPERIMENTAL: this API may change without prior notice.
1811  *
1812  * Get the owner of an Ethernet device.
1813  *
1814  * @param       port_id
1815  *  The port identifier.
1816  * @param       owner
1817  *  The owner structure pointer to fill.
1818  * @return
1819  *  0 on success, negative errno value on error..
1820  */
1821 __rte_experimental
1822 int rte_eth_dev_owner_get(const uint16_t port_id,
1823                 struct rte_eth_dev_owner *owner);
1824
1825 /**
1826  * Get the number of ports which are usable for the application.
1827  *
1828  * These devices must be iterated by using the macro
1829  * ``RTE_ETH_FOREACH_DEV`` or ``RTE_ETH_FOREACH_DEV_OWNED_BY``
1830  * to deal with non-contiguous ranges of devices.
1831  *
1832  * @return
1833  *   The count of available Ethernet devices.
1834  */
1835 uint16_t rte_eth_dev_count_avail(void);
1836
1837 /**
1838  * Get the total number of ports which are allocated.
1839  *
1840  * Some devices may not be available for the application.
1841  *
1842  * @return
1843  *   The total count of Ethernet devices.
1844  */
1845 uint16_t rte_eth_dev_count_total(void);
1846
1847 /**
1848  * Convert a numerical speed in Mbps to a bitmap flag that can be used in
1849  * the bitmap link_speeds of the struct rte_eth_conf
1850  *
1851  * @param speed
1852  *   Numerical speed value in Mbps
1853  * @param duplex
1854  *   ETH_LINK_[HALF/FULL]_DUPLEX (only for 10/100M speeds)
1855  * @return
1856  *   0 if the speed cannot be mapped
1857  */
1858 uint32_t rte_eth_speed_bitflag(uint32_t speed, int duplex);
1859
1860 /**
1861  * Get DEV_RX_OFFLOAD_* flag name.
1862  *
1863  * @param offload
1864  *   Offload flag.
1865  * @return
1866  *   Offload name or 'UNKNOWN' if the flag cannot be recognised.
1867  */
1868 const char *rte_eth_dev_rx_offload_name(uint64_t offload);
1869
1870 /**
1871  * Get DEV_TX_OFFLOAD_* flag name.
1872  *
1873  * @param offload
1874  *   Offload flag.
1875  * @return
1876  *   Offload name or 'UNKNOWN' if the flag cannot be recognised.
1877  */
1878 const char *rte_eth_dev_tx_offload_name(uint64_t offload);
1879
1880 /**
1881  * Configure an Ethernet device.
1882  * This function must be invoked first before any other function in the
1883  * Ethernet API. This function can also be re-invoked when a device is in the
1884  * stopped state.
1885  *
1886  * @param port_id
1887  *   The port identifier of the Ethernet device to configure.
1888  * @param nb_rx_queue
1889  *   The number of receive queues to set up for the Ethernet device.
1890  * @param nb_tx_queue
1891  *   The number of transmit queues to set up for the Ethernet device.
1892  * @param eth_conf
1893  *   The pointer to the configuration data to be used for the Ethernet device.
1894  *   The *rte_eth_conf* structure includes:
1895  *     -  the hardware offload features to activate, with dedicated fields for
1896  *        each statically configurable offload hardware feature provided by
1897  *        Ethernet devices, such as IP checksum or VLAN tag stripping for
1898  *        example.
1899  *        The Rx offload bitfield API is obsolete and will be deprecated.
1900  *        Applications should set the ignore_bitfield_offloads bit on *rxmode*
1901  *        structure and use offloads field to set per-port offloads instead.
1902  *     -  Any offloading set in eth_conf->[rt]xmode.offloads must be within
1903  *        the [rt]x_offload_capa returned from rte_eth_dev_info_get().
1904  *        Any type of device supported offloading set in the input argument
1905  *        eth_conf->[rt]xmode.offloads to rte_eth_dev_configure() is enabled
1906  *        on all queues and it can't be disabled in rte_eth_[rt]x_queue_setup()
1907  *     -  the Receive Side Scaling (RSS) configuration when using multiple RX
1908  *        queues per port. Any RSS hash function set in eth_conf->rss_conf.rss_hf
1909  *        must be within the flow_type_rss_offloads provided by drivers via
1910  *        rte_eth_dev_info_get() API.
1911  *
1912  *   Embedding all configuration information in a single data structure
1913  *   is the more flexible method that allows the addition of new features
1914  *   without changing the syntax of the API.
1915  * @return
1916  *   - 0: Success, device configured.
1917  *   - <0: Error code returned by the driver configuration function.
1918  */
1919 int rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_queue,
1920                 uint16_t nb_tx_queue, const struct rte_eth_conf *eth_conf);
1921
1922 /**
1923  * @warning
1924  * @b EXPERIMENTAL: this API may change without prior notice.
1925  *
1926  * Check if an Ethernet device was physically removed.
1927  *
1928  * @param port_id
1929  *   The port identifier of the Ethernet device.
1930  * @return
1931  *   1 when the Ethernet device is removed, otherwise 0.
1932  */
1933 __rte_experimental
1934 int
1935 rte_eth_dev_is_removed(uint16_t port_id);
1936
1937 /**
1938  * Allocate and set up a receive queue for an Ethernet device.
1939  *
1940  * The function allocates a contiguous block of memory for *nb_rx_desc*
1941  * receive descriptors from a memory zone associated with *socket_id*
1942  * and initializes each receive descriptor with a network buffer allocated
1943  * from the memory pool *mb_pool*.
1944  *
1945  * @param port_id
1946  *   The port identifier of the Ethernet device.
1947  * @param rx_queue_id
1948  *   The index of the receive queue to set up.
1949  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1950  *   to rte_eth_dev_configure().
1951  * @param nb_rx_desc
1952  *   The number of receive descriptors to allocate for the receive ring.
1953  * @param socket_id
1954  *   The *socket_id* argument is the socket identifier in case of NUMA.
1955  *   The value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
1956  *   the DMA memory allocated for the receive descriptors of the ring.
1957  * @param rx_conf
1958  *   The pointer to the configuration data to be used for the receive queue.
1959  *   NULL value is allowed, in which case default RX configuration
1960  *   will be used.
1961  *   The *rx_conf* structure contains an *rx_thresh* structure with the values
1962  *   of the Prefetch, Host, and Write-Back threshold registers of the receive
1963  *   ring.
1964  *   In addition it contains the hardware offloads features to activate using
1965  *   the DEV_RX_OFFLOAD_* flags.
1966  *   If an offloading set in rx_conf->offloads
1967  *   hasn't been set in the input argument eth_conf->rxmode.offloads
1968  *   to rte_eth_dev_configure(), it is a new added offloading, it must be
1969  *   per-queue type and it is enabled for the queue.
1970  *   No need to repeat any bit in rx_conf->offloads which has already been
1971  *   enabled in rte_eth_dev_configure() at port level. An offloading enabled
1972  *   at port level can't be disabled at queue level.
1973  * @param mb_pool
1974  *   The pointer to the memory pool from which to allocate *rte_mbuf* network
1975  *   memory buffers to populate each descriptor of the receive ring.
1976  * @return
1977  *   - 0: Success, receive queue correctly set up.
1978  *   - -EIO: if device is removed.
1979  *   - -EINVAL: The memory pool pointer is null or the size of network buffers
1980  *      which can be allocated from this memory pool does not fit the various
1981  *      buffer sizes allowed by the device controller.
1982  *   - -ENOMEM: Unable to allocate the receive ring descriptors or to
1983  *      allocate network memory buffers from the memory pool when
1984  *      initializing receive descriptors.
1985  */
1986 int rte_eth_rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
1987                 uint16_t nb_rx_desc, unsigned int socket_id,
1988                 const struct rte_eth_rxconf *rx_conf,
1989                 struct rte_mempool *mb_pool);
1990
1991 /**
1992  * @warning
1993  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
1994  *
1995  * Allocate and set up a hairpin receive queue for an Ethernet device.
1996  *
1997  * The function set up the selected queue to be used in hairpin.
1998  *
1999  * @param port_id
2000  *   The port identifier of the Ethernet device.
2001  * @param rx_queue_id
2002  *   The index of the receive queue to set up.
2003  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2004  *   to rte_eth_dev_configure().
2005  * @param nb_rx_desc
2006  *   The number of receive descriptors to allocate for the receive ring.
2007  *   0 means the PMD will use default value.
2008  * @param conf
2009  *   The pointer to the hairpin configuration.
2010  *
2011  * @return
2012  *   - (0) if successful.
2013  *   - (-ENOTSUP) if hardware doesn't support.
2014  *   - (-EINVAL) if bad parameter.
2015  *   - (-ENOMEM) if unable to allocate the resources.
2016  */
2017 __rte_experimental
2018 int rte_eth_rx_hairpin_queue_setup
2019         (uint16_t port_id, uint16_t rx_queue_id, uint16_t nb_rx_desc,
2020          const struct rte_eth_hairpin_conf *conf);
2021
2022 /**
2023  * Allocate and set up a transmit queue for an Ethernet device.
2024  *
2025  * @param port_id
2026  *   The port identifier of the Ethernet device.
2027  * @param tx_queue_id
2028  *   The index of the transmit queue to set up.
2029  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2030  *   to rte_eth_dev_configure().
2031  * @param nb_tx_desc
2032  *   The number of transmit descriptors to allocate for the transmit ring.
2033  * @param socket_id
2034  *   The *socket_id* argument is the socket identifier in case of NUMA.
2035  *   Its value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
2036  *   the DMA memory allocated for the transmit descriptors of the ring.
2037  * @param tx_conf
2038  *   The pointer to the configuration data to be used for the transmit queue.
2039  *   NULL value is allowed, in which case default TX configuration
2040  *   will be used.
2041  *   The *tx_conf* structure contains the following data:
2042  *   - The *tx_thresh* structure with the values of the Prefetch, Host, and
2043  *     Write-Back threshold registers of the transmit ring.
2044  *     When setting Write-Back threshold to the value greater then zero,
2045  *     *tx_rs_thresh* value should be explicitly set to one.
2046  *   - The *tx_free_thresh* value indicates the [minimum] number of network
2047  *     buffers that must be pending in the transmit ring to trigger their
2048  *     [implicit] freeing by the driver transmit function.
2049  *   - The *tx_rs_thresh* value indicates the [minimum] number of transmit
2050  *     descriptors that must be pending in the transmit ring before setting the
2051  *     RS bit on a descriptor by the driver transmit function.
2052  *     The *tx_rs_thresh* value should be less or equal then
2053  *     *tx_free_thresh* value, and both of them should be less then
2054  *     *nb_tx_desc* - 3.
2055  *   - The *offloads* member contains Tx offloads to be enabled.
2056  *     If an offloading set in tx_conf->offloads
2057  *     hasn't been set in the input argument eth_conf->txmode.offloads
2058  *     to rte_eth_dev_configure(), it is a new added offloading, it must be
2059  *     per-queue type and it is enabled for the queue.
2060  *     No need to repeat any bit in tx_conf->offloads which has already been
2061  *     enabled in rte_eth_dev_configure() at port level. An offloading enabled
2062  *     at port level can't be disabled at queue level.
2063  *
2064  *     Note that setting *tx_free_thresh* or *tx_rs_thresh* value to 0 forces
2065  *     the transmit function to use default values.
2066  * @return
2067  *   - 0: Success, the transmit queue is correctly set up.
2068  *   - -ENOMEM: Unable to allocate the transmit ring descriptors.
2069  */
2070 int rte_eth_tx_queue_setup(uint16_t port_id, uint16_t tx_queue_id,
2071                 uint16_t nb_tx_desc, unsigned int socket_id,
2072                 const struct rte_eth_txconf *tx_conf);
2073
2074 /**
2075  * @warning
2076  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
2077  *
2078  * Allocate and set up a transmit hairpin queue for an Ethernet device.
2079  *
2080  * @param port_id
2081  *   The port identifier of the Ethernet device.
2082  * @param tx_queue_id
2083  *   The index of the transmit queue to set up.
2084  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2085  *   to rte_eth_dev_configure().
2086  * @param nb_tx_desc
2087  *   The number of transmit descriptors to allocate for the transmit ring.
2088  *   0 to set default PMD value.
2089  * @param conf
2090  *   The hairpin configuration.
2091  *
2092  * @return
2093  *   - (0) if successful.
2094  *   - (-ENOTSUP) if hardware doesn't support.
2095  *   - (-EINVAL) if bad parameter.
2096  *   - (-ENOMEM) if unable to allocate the resources.
2097  */
2098 __rte_experimental
2099 int rte_eth_tx_hairpin_queue_setup
2100         (uint16_t port_id, uint16_t tx_queue_id, uint16_t nb_tx_desc,
2101          const struct rte_eth_hairpin_conf *conf);
2102
2103 /**
2104  * Return the NUMA socket to which an Ethernet device is connected
2105  *
2106  * @param port_id
2107  *   The port identifier of the Ethernet device
2108  * @return
2109  *   The NUMA socket id to which the Ethernet device is connected or
2110  *   a default of zero if the socket could not be determined.
2111  *   -1 is returned is the port_id value is out of range.
2112  */
2113 int rte_eth_dev_socket_id(uint16_t port_id);
2114
2115 /**
2116  * Check if port_id of device is attached
2117  *
2118  * @param port_id
2119  *   The port identifier of the Ethernet device
2120  * @return
2121  *   - 0 if port is out of range or not attached
2122  *   - 1 if device is attached
2123  */
2124 int rte_eth_dev_is_valid_port(uint16_t port_id);
2125
2126 /**
2127  * Start specified RX queue of a port. It is used when rx_deferred_start
2128  * flag of the specified queue is true.
2129  *
2130  * @param port_id
2131  *   The port identifier of the Ethernet device
2132  * @param rx_queue_id
2133  *   The index of the rx queue to update the ring.
2134  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2135  *   to rte_eth_dev_configure().
2136  * @return
2137  *   - 0: Success, the receive queue is started.
2138  *   - -EINVAL: The port_id or the queue_id out of range or belong to hairpin.
2139  *   - -EIO: if device is removed.
2140  *   - -ENOTSUP: The function not supported in PMD driver.
2141  */
2142 int rte_eth_dev_rx_queue_start(uint16_t port_id, uint16_t rx_queue_id);
2143
2144 /**
2145  * Stop specified RX queue of a port
2146  *
2147  * @param port_id
2148  *   The port identifier of the Ethernet device
2149  * @param rx_queue_id
2150  *   The index of the rx queue to update the ring.
2151  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2152  *   to rte_eth_dev_configure().
2153  * @return
2154  *   - 0: Success, the receive queue is stopped.
2155  *   - -EINVAL: The port_id or the queue_id out of range or belong to hairpin.
2156  *   - -EIO: if device is removed.
2157  *   - -ENOTSUP: The function not supported in PMD driver.
2158  */
2159 int rte_eth_dev_rx_queue_stop(uint16_t port_id, uint16_t rx_queue_id);
2160
2161 /**
2162  * Start TX for specified queue of a port. It is used when tx_deferred_start
2163  * flag of the specified queue is true.
2164  *
2165  * @param port_id
2166  *   The port identifier of the Ethernet device
2167  * @param tx_queue_id
2168  *   The index of the tx queue to update the ring.
2169  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2170  *   to rte_eth_dev_configure().
2171  * @return
2172  *   - 0: Success, the transmit queue is started.
2173  *   - -EINVAL: The port_id or the queue_id out of range or belong to hairpin.
2174  *   - -EIO: if device is removed.
2175  *   - -ENOTSUP: The function not supported in PMD driver.
2176  */
2177 int rte_eth_dev_tx_queue_start(uint16_t port_id, uint16_t tx_queue_id);
2178
2179 /**
2180  * Stop specified TX queue of a port
2181  *
2182  * @param port_id
2183  *   The port identifier of the Ethernet device
2184  * @param tx_queue_id
2185  *   The index of the tx queue to update the ring.
2186  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2187  *   to rte_eth_dev_configure().
2188  * @return
2189  *   - 0: Success, the transmit queue is stopped.
2190  *   - -EINVAL: The port_id or the queue_id out of range or belong to hairpin.
2191  *   - -EIO: if device is removed.
2192  *   - -ENOTSUP: The function not supported in PMD driver.
2193  */
2194 int rte_eth_dev_tx_queue_stop(uint16_t port_id, uint16_t tx_queue_id);
2195
2196 /**
2197  * Start an Ethernet device.
2198  *
2199  * The device start step is the last one and consists of setting the configured
2200  * offload features and in starting the transmit and the receive units of the
2201  * device.
2202  *
2203  * Device RTE_ETH_DEV_NOLIVE_MAC_ADDR flag causes MAC address to be set before
2204  * PMD port start callback function is invoked.
2205  *
2206  * On success, all basic functions exported by the Ethernet API (link status,
2207  * receive/transmit, and so on) can be invoked.
2208  *
2209  * @param port_id
2210  *   The port identifier of the Ethernet device.
2211  * @return
2212  *   - 0: Success, Ethernet device started.
2213  *   - <0: Error code of the driver device start function.
2214  */
2215 int rte_eth_dev_start(uint16_t port_id);
2216
2217 /**
2218  * Stop an Ethernet device. The device can be restarted with a call to
2219  * rte_eth_dev_start()
2220  *
2221  * @param port_id
2222  *   The port identifier of the Ethernet device.
2223  */
2224 void rte_eth_dev_stop(uint16_t port_id);
2225
2226 /**
2227  * Link up an Ethernet device.
2228  *
2229  * Set device link up will re-enable the device rx/tx
2230  * functionality after it is previously set device linked down.
2231  *
2232  * @param port_id
2233  *   The port identifier of the Ethernet device.
2234  * @return
2235  *   - 0: Success, Ethernet device linked up.
2236  *   - <0: Error code of the driver device link up function.
2237  */
2238 int rte_eth_dev_set_link_up(uint16_t port_id);
2239
2240 /**
2241  * Link down an Ethernet device.
2242  * The device rx/tx functionality will be disabled if success,
2243  * and it can be re-enabled with a call to
2244  * rte_eth_dev_set_link_up()
2245  *
2246  * @param port_id
2247  *   The port identifier of the Ethernet device.
2248  */
2249 int rte_eth_dev_set_link_down(uint16_t port_id);
2250
2251 /**
2252  * Close a stopped Ethernet device. The device cannot be restarted!
2253  * The function frees all port resources if the driver supports
2254  * the flag RTE_ETH_DEV_CLOSE_REMOVE.
2255  *
2256  * @param port_id
2257  *   The port identifier of the Ethernet device.
2258  */
2259 void rte_eth_dev_close(uint16_t port_id);
2260
2261 /**
2262  * Reset a Ethernet device and keep its port id.
2263  *
2264  * When a port has to be reset passively, the DPDK application can invoke
2265  * this function. For example when a PF is reset, all its VFs should also
2266  * be reset. Normally a DPDK application can invoke this function when
2267  * RTE_ETH_EVENT_INTR_RESET event is detected, but can also use it to start
2268  * a port reset in other circumstances.
2269  *
2270  * When this function is called, it first stops the port and then calls the
2271  * PMD specific dev_uninit( ) and dev_init( ) to return the port to initial
2272  * state, in which no Tx and Rx queues are setup, as if the port has been
2273  * reset and not started. The port keeps the port id it had before the
2274  * function call.
2275  *
2276  * After calling rte_eth_dev_reset( ), the application should use
2277  * rte_eth_dev_configure( ), rte_eth_rx_queue_setup( ),
2278  * rte_eth_tx_queue_setup( ), and rte_eth_dev_start( )
2279  * to reconfigure the device as appropriate.
2280  *
2281  * Note: To avoid unexpected behavior, the application should stop calling
2282  * Tx and Rx functions before calling rte_eth_dev_reset( ). For thread
2283  * safety, all these controlling functions should be called from the same
2284  * thread.
2285  *
2286  * @param port_id
2287  *   The port identifier of the Ethernet device.
2288  *
2289  * @return
2290  *   - (0) if successful.
2291  *   - (-EINVAL) if port identifier is invalid.
2292  *   - (-ENOTSUP) if hardware doesn't support this function.
2293  *   - (-EPERM) if not ran from the primary process.
2294  *   - (-EIO) if re-initialisation failed or device is removed.
2295  *   - (-ENOMEM) if the reset failed due to OOM.
2296  *   - (-EAGAIN) if the reset temporarily failed and should be retried later.
2297  */
2298 int rte_eth_dev_reset(uint16_t port_id);
2299
2300 /**
2301  * Enable receipt in promiscuous mode for an Ethernet device.
2302  *
2303  * @param port_id
2304  *   The port identifier of the Ethernet device.
2305  * @return
2306  *   - (0) if successful.
2307  *   - (-ENOTSUP) if support for promiscuous_enable() does not exist
2308  *     for the device.
2309  *   - (-ENODEV) if *port_id* invalid.
2310  */
2311 int rte_eth_promiscuous_enable(uint16_t port_id);
2312
2313 /**
2314  * Disable receipt in promiscuous mode for an Ethernet device.
2315  *
2316  * @param port_id
2317  *   The port identifier of the Ethernet device.
2318  * @return
2319  *   - (0) if successful.
2320  *   - (-ENOTSUP) if support for promiscuous_disable() does not exist
2321  *     for the device.
2322  *   - (-ENODEV) if *port_id* invalid.
2323  */
2324 int rte_eth_promiscuous_disable(uint16_t port_id);
2325
2326 /**
2327  * Return the value of promiscuous mode for an Ethernet device.
2328  *
2329  * @param port_id
2330  *   The port identifier of the Ethernet device.
2331  * @return
2332  *   - (1) if promiscuous is enabled
2333  *   - (0) if promiscuous is disabled.
2334  *   - (-1) on error
2335  */
2336 int rte_eth_promiscuous_get(uint16_t port_id);
2337
2338 /**
2339  * Enable the receipt of any multicast frame by an Ethernet device.
2340  *
2341  * @param port_id
2342  *   The port identifier of the Ethernet device.
2343  * @return
2344  *   - (0) if successful.
2345  *   - (-ENOTSUP) if support for allmulticast_enable() does not exist
2346  *     for the device.
2347  *   - (-ENODEV) if *port_id* invalid.
2348  */
2349 int rte_eth_allmulticast_enable(uint16_t port_id);
2350
2351 /**
2352  * Disable the receipt of all multicast frames by an Ethernet device.
2353  *
2354  * @param port_id
2355  *   The port identifier of the Ethernet device.
2356  * @return
2357  *   - (0) if successful.
2358  *   - (-ENOTSUP) if support for allmulticast_disable() does not exist
2359  *     for the device.
2360  *   - (-ENODEV) if *port_id* invalid.
2361  */
2362 int rte_eth_allmulticast_disable(uint16_t port_id);
2363
2364 /**
2365  * Return the value of allmulticast mode for an Ethernet device.
2366  *
2367  * @param port_id
2368  *   The port identifier of the Ethernet device.
2369  * @return
2370  *   - (1) if allmulticast is enabled
2371  *   - (0) if allmulticast is disabled.
2372  *   - (-1) on error
2373  */
2374 int rte_eth_allmulticast_get(uint16_t port_id);
2375
2376 /**
2377  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2378  * or FULL-DUPLEX) of the physical link of an Ethernet device. It might need
2379  * to wait up to 9 seconds in it.
2380  *
2381  * @param port_id
2382  *   The port identifier of the Ethernet device.
2383  * @param link
2384  *   A pointer to an *rte_eth_link* structure to be filled with
2385  *   the status, the speed and the mode of the Ethernet device link.
2386  * @return
2387  *   - (0) if successful.
2388  *   - (-ENOTSUP) if the function is not supported in PMD driver.
2389  *   - (-ENODEV) if *port_id* invalid.
2390  */
2391 int rte_eth_link_get(uint16_t port_id, struct rte_eth_link *link);
2392
2393 /**
2394  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2395  * or FULL-DUPLEX) of the physical link of an Ethernet device. It is a no-wait
2396  * version of rte_eth_link_get().
2397  *
2398  * @param port_id
2399  *   The port identifier of the Ethernet device.
2400  * @param link
2401  *   A pointer to an *rte_eth_link* structure to be filled with
2402  *   the status, the speed and the mode of the Ethernet device link.
2403  * @return
2404  *   - (0) if successful.
2405  *   - (-ENOTSUP) if the function is not supported in PMD driver.
2406  *   - (-ENODEV) if *port_id* invalid.
2407  */
2408 int rte_eth_link_get_nowait(uint16_t port_id, struct rte_eth_link *link);
2409
2410 /**
2411  * Retrieve the general I/O statistics of an Ethernet device.
2412  *
2413  * @param port_id
2414  *   The port identifier of the Ethernet device.
2415  * @param stats
2416  *   A pointer to a structure of type *rte_eth_stats* to be filled with
2417  *   the values of device counters for the following set of statistics:
2418  *   - *ipackets* with the total of successfully received packets.
2419  *   - *opackets* with the total of successfully transmitted packets.
2420  *   - *ibytes*   with the total of successfully received bytes.
2421  *   - *obytes*   with the total of successfully transmitted bytes.
2422  *   - *ierrors*  with the total of erroneous received packets.
2423  *   - *oerrors*  with the total of failed transmitted packets.
2424  * @return
2425  *   Zero if successful. Non-zero otherwise.
2426  */
2427 int rte_eth_stats_get(uint16_t port_id, struct rte_eth_stats *stats);
2428
2429 /**
2430  * Reset the general I/O statistics of an Ethernet device.
2431  *
2432  * @param port_id
2433  *   The port identifier of the Ethernet device.
2434  * @return
2435  *   - (0) if device notified to reset stats.
2436  *   - (-ENOTSUP) if hardware doesn't support.
2437  *   - (-ENODEV) if *port_id* invalid.
2438  *   - (<0): Error code of the driver stats reset function.
2439  */
2440 int rte_eth_stats_reset(uint16_t port_id);
2441
2442 /**
2443  * Retrieve names of extended statistics of an Ethernet device.
2444  *
2445  * There is an assumption that 'xstat_names' and 'xstats' arrays are matched
2446  * by array index:
2447  *  xstats_names[i].name => xstats[i].value
2448  *
2449  * And the array index is same with id field of 'struct rte_eth_xstat':
2450  *  xstats[i].id == i
2451  *
2452  * This assumption makes key-value pair matching less flexible but simpler.
2453  *
2454  * @param port_id
2455  *   The port identifier of the Ethernet device.
2456  * @param xstats_names
2457  *   An rte_eth_xstat_name array of at least *size* elements to
2458  *   be filled. If set to NULL, the function returns the required number
2459  *   of elements.
2460  * @param size
2461  *   The size of the xstats_names array (number of elements).
2462  * @return
2463  *   - A positive value lower or equal to size: success. The return value
2464  *     is the number of entries filled in the stats table.
2465  *   - A positive value higher than size: error, the given statistics table
2466  *     is too small. The return value corresponds to the size that should
2467  *     be given to succeed. The entries in the table are not valid and
2468  *     shall not be used by the caller.
2469  *   - A negative value on error (invalid port id).
2470  */
2471 int rte_eth_xstats_get_names(uint16_t port_id,
2472                 struct rte_eth_xstat_name *xstats_names,
2473                 unsigned int size);
2474
2475 /**
2476  * Retrieve extended statistics of an Ethernet device.
2477  *
2478  * There is an assumption that 'xstat_names' and 'xstats' arrays are matched
2479  * by array index:
2480  *  xstats_names[i].name => xstats[i].value
2481  *
2482  * And the array index is same with id field of 'struct rte_eth_xstat':
2483  *  xstats[i].id == i
2484  *
2485  * This assumption makes key-value pair matching less flexible but simpler.
2486  *
2487  * @param port_id
2488  *   The port identifier of the Ethernet device.
2489  * @param xstats
2490  *   A pointer to a table of structure of type *rte_eth_xstat*
2491  *   to be filled with device statistics ids and values.
2492  *   This parameter can be set to NULL if n is 0.
2493  * @param n
2494  *   The size of the xstats array (number of elements).
2495  * @return
2496  *   - A positive value lower or equal to n: success. The return value
2497  *     is the number of entries filled in the stats table.
2498  *   - A positive value higher than n: error, the given statistics table
2499  *     is too small. The return value corresponds to the size that should
2500  *     be given to succeed. The entries in the table are not valid and
2501  *     shall not be used by the caller.
2502  *   - A negative value on error (invalid port id).
2503  */
2504 int rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats,
2505                 unsigned int n);
2506
2507 /**
2508  * Retrieve names of extended statistics of an Ethernet device.
2509  *
2510  * @param port_id
2511  *   The port identifier of the Ethernet device.
2512  * @param xstats_names
2513  *   An rte_eth_xstat_name array of at least *size* elements to
2514  *   be filled. If set to NULL, the function returns the required number
2515  *   of elements.
2516  * @param ids
2517  *   IDs array given by app to retrieve specific statistics
2518  * @param size
2519  *   The size of the xstats_names array (number of elements).
2520  * @return
2521  *   - A positive value lower or equal to size: success. The return value
2522  *     is the number of entries filled in the stats table.
2523  *   - A positive value higher than size: error, the given statistics table
2524  *     is too small. The return value corresponds to the size that should
2525  *     be given to succeed. The entries in the table are not valid and
2526  *     shall not be used by the caller.
2527  *   - A negative value on error (invalid port id).
2528  */
2529 int
2530 rte_eth_xstats_get_names_by_id(uint16_t port_id,
2531         struct rte_eth_xstat_name *xstats_names, unsigned int size,
2532         uint64_t *ids);
2533
2534 /**
2535  * Retrieve extended statistics of an Ethernet device.
2536  *
2537  * @param port_id
2538  *   The port identifier of the Ethernet device.
2539  * @param ids
2540  *   A pointer to an ids array passed by application. This tells which
2541  *   statistics values function should retrieve. This parameter
2542  *   can be set to NULL if size is 0. In this case function will retrieve
2543  *   all available statistics.
2544  * @param values
2545  *   A pointer to a table to be filled with device statistics values.
2546  * @param size
2547  *   The size of the ids array (number of elements).
2548  * @return
2549  *   - A positive value lower or equal to size: success. The return value
2550  *     is the number of entries filled in the stats table.
2551  *   - A positive value higher than size: error, the given statistics table
2552  *     is too small. The return value corresponds to the size that should
2553  *     be given to succeed. The entries in the table are not valid and
2554  *     shall not be used by the caller.
2555  *   - A negative value on error (invalid port id).
2556  */
2557 int rte_eth_xstats_get_by_id(uint16_t port_id, const uint64_t *ids,
2558                              uint64_t *values, unsigned int size);
2559
2560 /**
2561  * Gets the ID of a statistic from its name.
2562  *
2563  * This function searches for the statistics using string compares, and
2564  * as such should not be used on the fast-path. For fast-path retrieval of
2565  * specific statistics, store the ID as provided in *id* from this function,
2566  * and pass the ID to rte_eth_xstats_get()
2567  *
2568  * @param port_id The port to look up statistics from
2569  * @param xstat_name The name of the statistic to return
2570  * @param[out] id A pointer to an app-supplied uint64_t which should be
2571  *                set to the ID of the stat if the stat exists.
2572  * @return
2573  *    0 on success
2574  *    -ENODEV for invalid port_id,
2575  *    -EIO if device is removed,
2576  *    -EINVAL if the xstat_name doesn't exist in port_id
2577  */
2578 int rte_eth_xstats_get_id_by_name(uint16_t port_id, const char *xstat_name,
2579                 uint64_t *id);
2580
2581 /**
2582  * Reset extended statistics of an Ethernet device.
2583  *
2584  * @param port_id
2585  *   The port identifier of the Ethernet device.
2586  * @return
2587  *   - (0) if device notified to reset extended stats.
2588  *   - (-ENOTSUP) if pmd doesn't support both
2589  *     extended stats and basic stats reset.
2590  *   - (-ENODEV) if *port_id* invalid.
2591  *   - (<0): Error code of the driver xstats reset function.
2592  */
2593 int rte_eth_xstats_reset(uint16_t port_id);
2594
2595 /**
2596  *  Set a mapping for the specified transmit queue to the specified per-queue
2597  *  statistics counter.
2598  *
2599  * @param port_id
2600  *   The port identifier of the Ethernet device.
2601  * @param tx_queue_id
2602  *   The index of the transmit queue for which a queue stats mapping is required.
2603  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2604  *   to rte_eth_dev_configure().
2605  * @param stat_idx
2606  *   The per-queue packet statistics functionality number that the transmit
2607  *   queue is to be assigned.
2608  *   The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1].
2609  * @return
2610  *   Zero if successful. Non-zero otherwise.
2611  */
2612 int rte_eth_dev_set_tx_queue_stats_mapping(uint16_t port_id,
2613                 uint16_t tx_queue_id, uint8_t stat_idx);
2614
2615 /**
2616  *  Set a mapping for the specified receive queue to the specified per-queue
2617  *  statistics counter.
2618  *
2619  * @param port_id
2620  *   The port identifier of the Ethernet device.
2621  * @param rx_queue_id
2622  *   The index of the receive queue for which a queue stats mapping is required.
2623  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2624  *   to rte_eth_dev_configure().
2625  * @param stat_idx
2626  *   The per-queue packet statistics functionality number that the receive
2627  *   queue is to be assigned.
2628  *   The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1].
2629  * @return
2630  *   Zero if successful. Non-zero otherwise.
2631  */
2632 int rte_eth_dev_set_rx_queue_stats_mapping(uint16_t port_id,
2633                                            uint16_t rx_queue_id,
2634                                            uint8_t stat_idx);
2635
2636 /**
2637  * Retrieve the Ethernet address of an Ethernet device.
2638  *
2639  * @param port_id
2640  *   The port identifier of the Ethernet device.
2641  * @param mac_addr
2642  *   A pointer to a structure of type *ether_addr* to be filled with
2643  *   the Ethernet address of the Ethernet device.
2644  * @return
2645  *   - (0) if successful
2646  *   - (-ENODEV) if *port_id* invalid.
2647  */
2648 int rte_eth_macaddr_get(uint16_t port_id, struct rte_ether_addr *mac_addr);
2649
2650 /**
2651  * Retrieve the contextual information of an Ethernet device.
2652  *
2653  * As part of this function, a number of of fields in dev_info will be
2654  * initialized as follows:
2655  *
2656  * rx_desc_lim = lim
2657  * tx_desc_lim = lim
2658  *
2659  * Where lim is defined within the rte_eth_dev_info_get as
2660  *
2661  *  const struct rte_eth_desc_lim lim = {
2662  *      .nb_max = UINT16_MAX,
2663  *      .nb_min = 0,
2664  *      .nb_align = 1,
2665  *      .nb_seg_max = UINT16_MAX,
2666  *      .nb_mtu_seg_max = UINT16_MAX,
2667  *  };
2668  *
2669  * device = dev->device
2670  * min_mtu = RTE_ETHER_MIN_MTU
2671  * max_mtu = UINT16_MAX
2672  *
2673  * The following fields will be populated if support for dev_infos_get()
2674  * exists for the device and the rte_eth_dev 'dev' has been populated
2675  * successfully with a call to it:
2676  *
2677  * driver_name = dev->device->driver->name
2678  * nb_rx_queues = dev->data->nb_rx_queues
2679  * nb_tx_queues = dev->data->nb_tx_queues
2680  * dev_flags = &dev->data->dev_flags
2681  *
2682  * @param port_id
2683  *   The port identifier of the Ethernet device.
2684  * @param dev_info
2685  *   A pointer to a structure of type *rte_eth_dev_info* to be filled with
2686  *   the contextual information of the Ethernet device.
2687  * @return
2688  *   - (0) if successful.
2689  *   - (-ENOTSUP) if support for dev_infos_get() does not exist for the device.
2690  *   - (-ENODEV) if *port_id* invalid.
2691  */
2692 int rte_eth_dev_info_get(uint16_t port_id, struct rte_eth_dev_info *dev_info);
2693
2694 /**
2695  * Retrieve the firmware version of a device.
2696  *
2697  * @param port_id
2698  *   The port identifier of the device.
2699  * @param fw_version
2700  *   A pointer to a string array storing the firmware version of a device,
2701  *   the string includes terminating null. This pointer is allocated by caller.
2702  * @param fw_size
2703  *   The size of the string array pointed by fw_version, which should be
2704  *   large enough to store firmware version of the device.
2705  * @return
2706  *   - (0) if successful.
2707  *   - (-ENOTSUP) if operation is not supported.
2708  *   - (-ENODEV) if *port_id* invalid.
2709  *   - (-EIO) if device is removed.
2710  *   - (>0) if *fw_size* is not enough to store firmware version, return
2711  *          the size of the non truncated string.
2712  */
2713 int rte_eth_dev_fw_version_get(uint16_t port_id,
2714                                char *fw_version, size_t fw_size);
2715
2716 /**
2717  * Retrieve the supported packet types of an Ethernet device.
2718  *
2719  * When a packet type is announced as supported, it *must* be recognized by
2720  * the PMD. For instance, if RTE_PTYPE_L2_ETHER, RTE_PTYPE_L2_ETHER_VLAN
2721  * and RTE_PTYPE_L3_IPV4 are announced, the PMD must return the following
2722  * packet types for these packets:
2723  * - Ether/IPv4              -> RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4
2724  * - Ether/Vlan/IPv4         -> RTE_PTYPE_L2_ETHER_VLAN | RTE_PTYPE_L3_IPV4
2725  * - Ether/[anything else]   -> RTE_PTYPE_L2_ETHER
2726  * - Ether/Vlan/[anything else] -> RTE_PTYPE_L2_ETHER_VLAN
2727  *
2728  * When a packet is received by a PMD, the most precise type must be
2729  * returned among the ones supported. However a PMD is allowed to set
2730  * packet type that is not in the supported list, at the condition that it
2731  * is more precise. Therefore, a PMD announcing no supported packet types
2732  * can still set a matching packet type in a received packet.
2733  *
2734  * @note
2735  *   Better to invoke this API after the device is already started or rx burst
2736  *   function is decided, to obtain correct supported ptypes.
2737  * @note
2738  *   if a given PMD does not report what ptypes it supports, then the supported
2739  *   ptype count is reported as 0.
2740  * @param port_id
2741  *   The port identifier of the Ethernet device.
2742  * @param ptype_mask
2743  *   A hint of what kind of packet type which the caller is interested in.
2744  * @param ptypes
2745  *   An array pointer to store adequate packet types, allocated by caller.
2746  * @param num
2747  *  Size of the array pointed by param ptypes.
2748  * @return
2749  *   - (>=0) Number of supported ptypes. If the number of types exceeds num,
2750  *           only num entries will be filled into the ptypes array, but the full
2751  *           count of supported ptypes will be returned.
2752  *   - (-ENODEV) if *port_id* invalid.
2753  */
2754 int rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask,
2755                                      uint32_t *ptypes, int num);
2756 /**
2757  * @warning
2758  * @b EXPERIMENTAL: this API may change without prior notice.
2759  *
2760  * Inform Ethernet device about reduced range of packet types to handle.
2761  *
2762  * Application can use this function to set only specific ptypes that it's
2763  * interested. This information can be used by the PMD to optimize Rx path.
2764  *
2765  * The function accepts an array `set_ptypes` allocated by the caller to
2766  * store the packet types set by the driver, the last element of the array
2767  * is set to RTE_PTYPE_UNKNOWN. The size of the `set_ptype` array should be
2768  * `rte_eth_dev_get_supported_ptypes() + 1` else it might only be filled
2769  * partially.
2770  *
2771  * @param port_id
2772  *   The port identifier of the Ethernet device.
2773  * @param ptype_mask
2774  *   The ptype family that application is interested in should be bitwise OR of
2775  *   RTE_PTYPE_*_MASK or 0.
2776  * @param set_ptypes
2777  *   An array pointer to store set packet types, allocated by caller. The
2778  *   function marks the end of array with RTE_PTYPE_UNKNOWN.
2779  * @param num
2780  *   Size of the array pointed by param ptypes.
2781  *   Should be rte_eth_dev_get_supported_ptypes() + 1 to accommodate the
2782  *   set ptypes.
2783  * @return
2784  *   - (0) if Success.
2785  *   - (-ENODEV) if *port_id* invalid.
2786  *   - (-EINVAL) if *ptype_mask* is invalid (or) set_ptypes is NULL and
2787  *     num > 0.
2788  */
2789 __rte_experimental
2790 int rte_eth_dev_set_ptypes(uint16_t port_id, uint32_t ptype_mask,
2791                            uint32_t *set_ptypes, unsigned int num);
2792
2793 /**
2794  * Retrieve the MTU of an Ethernet device.
2795  *
2796  * @param port_id
2797  *   The port identifier of the Ethernet device.
2798  * @param mtu
2799  *   A pointer to a uint16_t where the retrieved MTU is to be stored.
2800  * @return
2801  *   - (0) if successful.
2802  *   - (-ENODEV) if *port_id* invalid.
2803  */
2804 int rte_eth_dev_get_mtu(uint16_t port_id, uint16_t *mtu);
2805
2806 /**
2807  * Change the MTU of an Ethernet device.
2808  *
2809  * @param port_id
2810  *   The port identifier of the Ethernet device.
2811  * @param mtu
2812  *   A uint16_t for the MTU to be applied.
2813  * @return
2814  *   - (0) if successful.
2815  *   - (-ENOTSUP) if operation is not supported.
2816  *   - (-ENODEV) if *port_id* invalid.
2817  *   - (-EIO) if device is removed.
2818  *   - (-EINVAL) if *mtu* invalid, validation of mtu can occur within
2819  *     rte_eth_dev_set_mtu if dev_infos_get is supported by the device or
2820  *     when the mtu is set using dev->dev_ops->mtu_set.
2821  *   - (-EBUSY) if operation is not allowed when the port is running
2822  */
2823 int rte_eth_dev_set_mtu(uint16_t port_id, uint16_t mtu);
2824
2825 /**
2826  * Enable/Disable hardware filtering by an Ethernet device of received
2827  * VLAN packets tagged with a given VLAN Tag Identifier.
2828  *
2829  * @param port_id
2830  *   The port identifier of the Ethernet device.
2831  * @param vlan_id
2832  *   The VLAN Tag Identifier whose filtering must be enabled or disabled.
2833  * @param on
2834  *   If > 0, enable VLAN filtering of VLAN packets tagged with *vlan_id*.
2835  *   Otherwise, disable VLAN filtering of VLAN packets tagged with *vlan_id*.
2836  * @return
2837  *   - (0) if successful.
2838  *   - (-ENOTSUP) if hardware-assisted VLAN filtering not configured.
2839  *   - (-ENODEV) if *port_id* invalid.
2840  *   - (-EIO) if device is removed.
2841  *   - (-ENOSYS) if VLAN filtering on *port_id* disabled.
2842  *   - (-EINVAL) if *vlan_id* > 4095.
2843  */
2844 int rte_eth_dev_vlan_filter(uint16_t port_id, uint16_t vlan_id, int on);
2845
2846 /**
2847  * Enable/Disable hardware VLAN Strip by a rx queue of an Ethernet device.
2848  *
2849  * @param port_id
2850  *   The port identifier of the Ethernet device.
2851  * @param rx_queue_id
2852  *   The index of the receive queue for which a queue stats mapping is required.
2853  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2854  *   to rte_eth_dev_configure().
2855  * @param on
2856  *   If 1, Enable VLAN Stripping of the receive queue of the Ethernet port.
2857  *   If 0, Disable VLAN Stripping of the receive queue of the Ethernet port.
2858  * @return
2859  *   - (0) if successful.
2860  *   - (-ENOTSUP) if hardware-assisted VLAN stripping not configured.
2861  *   - (-ENODEV) if *port_id* invalid.
2862  *   - (-EINVAL) if *rx_queue_id* invalid.
2863  */
2864 int rte_eth_dev_set_vlan_strip_on_queue(uint16_t port_id, uint16_t rx_queue_id,
2865                 int on);
2866
2867 /**
2868  * Set the Outer VLAN Ether Type by an Ethernet device, it can be inserted to
2869  * the VLAN header.
2870  *
2871  * @param port_id
2872  *   The port identifier of the Ethernet device.
2873  * @param vlan_type
2874  *   The vlan type.
2875  * @param tag_type
2876  *   The Tag Protocol ID
2877  * @return
2878  *   - (0) if successful.
2879  *   - (-ENOTSUP) if hardware-assisted VLAN TPID setup is not supported.
2880  *   - (-ENODEV) if *port_id* invalid.
2881  *   - (-EIO) if device is removed.
2882  */
2883 int rte_eth_dev_set_vlan_ether_type(uint16_t port_id,
2884                                     enum rte_vlan_type vlan_type,
2885                                     uint16_t tag_type);
2886
2887 /**
2888  * Set VLAN offload configuration on an Ethernet device.
2889  *
2890  * @param port_id
2891  *   The port identifier of the Ethernet device.
2892  * @param offload_mask
2893  *   The VLAN Offload bit mask can be mixed use with "OR"
2894  *       ETH_VLAN_STRIP_OFFLOAD
2895  *       ETH_VLAN_FILTER_OFFLOAD
2896  *       ETH_VLAN_EXTEND_OFFLOAD
2897  *       ETH_QINQ_STRIP_OFFLOAD
2898  * @return
2899  *   - (0) if successful.
2900  *   - (-ENOTSUP) if hardware-assisted VLAN filtering not configured.
2901  *   - (-ENODEV) if *port_id* invalid.
2902  *   - (-EIO) if device is removed.
2903  */
2904 int rte_eth_dev_set_vlan_offload(uint16_t port_id, int offload_mask);
2905
2906 /**
2907  * Read VLAN Offload configuration from an Ethernet device
2908  *
2909  * @param port_id
2910  *   The port identifier of the Ethernet device.
2911  * @return
2912  *   - (>0) if successful. Bit mask to indicate
2913  *       ETH_VLAN_STRIP_OFFLOAD
2914  *       ETH_VLAN_FILTER_OFFLOAD
2915  *       ETH_VLAN_EXTEND_OFFLOAD
2916  *       ETH_QINQ_STRIP_OFFLOAD
2917  *   - (-ENODEV) if *port_id* invalid.
2918  */
2919 int rte_eth_dev_get_vlan_offload(uint16_t port_id);
2920
2921 /**
2922  * Set port based TX VLAN insertion on or off.
2923  *
2924  * @param port_id
2925  *  The port identifier of the Ethernet device.
2926  * @param pvid
2927  *  Port based TX VLAN identifier together with user priority.
2928  * @param on
2929  *  Turn on or off the port based TX VLAN insertion.
2930  *
2931  * @return
2932  *   - (0) if successful.
2933  *   - negative if failed.
2934  */
2935 int rte_eth_dev_set_vlan_pvid(uint16_t port_id, uint16_t pvid, int on);
2936
2937 typedef void (*buffer_tx_error_fn)(struct rte_mbuf **unsent, uint16_t count,
2938                 void *userdata);
2939
2940 /**
2941  * Structure used to buffer packets for future TX
2942  * Used by APIs rte_eth_tx_buffer and rte_eth_tx_buffer_flush
2943  */
2944 struct rte_eth_dev_tx_buffer {
2945         buffer_tx_error_fn error_callback;
2946         void *error_userdata;
2947         uint16_t size;           /**< Size of buffer for buffered tx */
2948         uint16_t length;         /**< Number of packets in the array */
2949         struct rte_mbuf *pkts[];
2950         /**< Pending packets to be sent on explicit flush or when full */
2951 };
2952
2953 /**
2954  * Calculate the size of the tx buffer.
2955  *
2956  * @param sz
2957  *   Number of stored packets.
2958  */
2959 #define RTE_ETH_TX_BUFFER_SIZE(sz) \
2960         (sizeof(struct rte_eth_dev_tx_buffer) + (sz) * sizeof(struct rte_mbuf *))
2961
2962 /**
2963  * Initialize default values for buffered transmitting
2964  *
2965  * @param buffer
2966  *   Tx buffer to be initialized.
2967  * @param size
2968  *   Buffer size
2969  * @return
2970  *   0 if no error
2971  */
2972 int
2973 rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size);
2974
2975 /**
2976  * Configure a callback for buffered packets which cannot be sent
2977  *
2978  * Register a specific callback to be called when an attempt is made to send
2979  * all packets buffered on an ethernet port, but not all packets can
2980  * successfully be sent. The callback registered here will be called only
2981  * from calls to rte_eth_tx_buffer() and rte_eth_tx_buffer_flush() APIs.
2982  * The default callback configured for each queue by default just frees the
2983  * packets back to the calling mempool. If additional behaviour is required,
2984  * for example, to count dropped packets, or to retry transmission of packets
2985  * which cannot be sent, this function should be used to register a suitable
2986  * callback function to implement the desired behaviour.
2987  * The example callback "rte_eth_count_unsent_packet_callback()" is also
2988  * provided as reference.
2989  *
2990  * @param buffer
2991  *   The port identifier of the Ethernet device.
2992  * @param callback
2993  *   The function to be used as the callback.
2994  * @param userdata
2995  *   Arbitrary parameter to be passed to the callback function
2996  * @return
2997  *   0 on success, or -1 on error with rte_errno set appropriately
2998  */
2999 int
3000 rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer,
3001                 buffer_tx_error_fn callback, void *userdata);
3002
3003 /**
3004  * Callback function for silently dropping unsent buffered packets.
3005  *
3006  * This function can be passed to rte_eth_tx_buffer_set_err_callback() to
3007  * adjust the default behavior when buffered packets cannot be sent. This
3008  * function drops any unsent packets silently and is used by tx buffered
3009  * operations as default behavior.
3010  *
3011  * NOTE: this function should not be called directly, instead it should be used
3012  *       as a callback for packet buffering.
3013  *
3014  * NOTE: when configuring this function as a callback with
3015  *       rte_eth_tx_buffer_set_err_callback(), the final, userdata parameter
3016  *       should point to an uint64_t value.
3017  *
3018  * @param pkts
3019  *   The previously buffered packets which could not be sent
3020  * @param unsent
3021  *   The number of unsent packets in the pkts array
3022  * @param userdata
3023  *   Not used
3024  */
3025 void
3026 rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent,
3027                 void *userdata);
3028
3029 /**
3030  * Callback function for tracking unsent buffered packets.
3031  *
3032  * This function can be passed to rte_eth_tx_buffer_set_err_callback() to
3033  * adjust the default behavior when buffered packets cannot be sent. This
3034  * function drops any unsent packets, but also updates a user-supplied counter
3035  * to track the overall number of packets dropped. The counter should be an
3036  * uint64_t variable.
3037  *
3038  * NOTE: this function should not be called directly, instead it should be used
3039  *       as a callback for packet buffering.
3040  *
3041  * NOTE: when configuring this function as a callback with
3042  *       rte_eth_tx_buffer_set_err_callback(), the final, userdata parameter
3043  *       should point to an uint64_t value.
3044  *
3045  * @param pkts
3046  *   The previously buffered packets which could not be sent
3047  * @param unsent
3048  *   The number of unsent packets in the pkts array
3049  * @param userdata
3050  *   Pointer to an uint64_t value, which will be incremented by unsent
3051  */
3052 void
3053 rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent,
3054                 void *userdata);
3055
3056 /**
3057  * Request the driver to free mbufs currently cached by the driver. The
3058  * driver will only free the mbuf if it is no longer in use. It is the
3059  * application's responsibility to ensure rte_eth_tx_buffer_flush(..) is
3060  * called if needed.
3061  *
3062  * @param port_id
3063  *   The port identifier of the Ethernet device.
3064  * @param queue_id
3065  *   The index of the transmit queue through which output packets must be
3066  *   sent.
3067  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
3068  *   to rte_eth_dev_configure().
3069  * @param free_cnt
3070  *   Maximum number of packets to free. Use 0 to indicate all possible packets
3071  *   should be freed. Note that a packet may be using multiple mbufs.
3072  * @return
3073  *   Failure: < 0
3074  *     -ENODEV: Invalid interface
3075  *     -EIO: device is removed
3076  *     -ENOTSUP: Driver does not support function
3077  *   Success: >= 0
3078  *     0-n: Number of packets freed. More packets may still remain in ring that
3079  *     are in use.
3080  */
3081 int
3082 rte_eth_tx_done_cleanup(uint16_t port_id, uint16_t queue_id, uint32_t free_cnt);
3083
3084 /**
3085  * Subtypes for IPsec offload event(@ref RTE_ETH_EVENT_IPSEC) raised by
3086  * eth device.
3087  */
3088 enum rte_eth_event_ipsec_subtype {
3089         RTE_ETH_EVENT_IPSEC_UNKNOWN = 0,
3090                         /**< Unknown event type */
3091         RTE_ETH_EVENT_IPSEC_ESN_OVERFLOW,
3092                         /**< Sequence number overflow */
3093         RTE_ETH_EVENT_IPSEC_SA_TIME_EXPIRY,
3094                         /**< Soft time expiry of SA */
3095         RTE_ETH_EVENT_IPSEC_SA_BYTE_EXPIRY,
3096                         /**< Soft byte expiry of SA */
3097         RTE_ETH_EVENT_IPSEC_MAX
3098                         /**< Max value of this enum */
3099 };
3100
3101 /**
3102  * Descriptor for @ref RTE_ETH_EVENT_IPSEC event. Used by eth dev to send extra
3103  * information of the IPsec offload event.
3104  */
3105 struct rte_eth_event_ipsec_desc {
3106         enum rte_eth_event_ipsec_subtype subtype;
3107                         /**< Type of RTE_ETH_EVENT_IPSEC_* event */
3108         uint64_t metadata;
3109                         /**< Event specific metadata
3110                          *
3111                          * For the following events, *userdata* registered
3112                          * with the *rte_security_session* would be returned
3113                          * as metadata,
3114                          *
3115                          * - @ref RTE_ETH_EVENT_IPSEC_ESN_OVERFLOW
3116                          * - @ref RTE_ETH_EVENT_IPSEC_SA_TIME_EXPIRY
3117                          * - @ref RTE_ETH_EVENT_IPSEC_SA_BYTE_EXPIRY
3118                          *
3119                          * @see struct rte_security_session_conf
3120                          *
3121                          */
3122 };
3123
3124 /**
3125  * The eth device event type for interrupt, and maybe others in the future.
3126  */
3127 enum rte_eth_event_type {
3128         RTE_ETH_EVENT_UNKNOWN,  /**< unknown event type */
3129         RTE_ETH_EVENT_INTR_LSC, /**< lsc interrupt event */
3130         RTE_ETH_EVENT_QUEUE_STATE,
3131                                 /**< queue state event (enabled/disabled) */
3132         RTE_ETH_EVENT_INTR_RESET,
3133                         /**< reset interrupt event, sent to VF on PF reset */
3134         RTE_ETH_EVENT_VF_MBOX,  /**< message from the VF received by PF */
3135         RTE_ETH_EVENT_MACSEC,   /**< MACsec offload related event */
3136         RTE_ETH_EVENT_INTR_RMV, /**< device removal event */
3137         RTE_ETH_EVENT_NEW,      /**< port is probed */
3138         RTE_ETH_EVENT_DESTROY,  /**< port is released */
3139         RTE_ETH_EVENT_IPSEC,    /**< IPsec offload related event */
3140         RTE_ETH_EVENT_FLOW_AGED,/**< New aged-out flows is detected */
3141         RTE_ETH_EVENT_MAX       /**< max value of this enum */
3142 };
3143
3144 typedef int (*rte_eth_dev_cb_fn)(uint16_t port_id,
3145                 enum rte_eth_event_type event, void *cb_arg, void *ret_param);
3146 /**< user application callback to be registered for interrupts */
3147
3148 /**
3149  * Register a callback function for port event.
3150  *
3151  * @param port_id
3152  *  Port id.
3153  *  RTE_ETH_ALL means register the event for all port ids.
3154  * @param event
3155  *  Event interested.
3156  * @param cb_fn
3157  *  User supplied callback function to be called.
3158  * @param cb_arg
3159  *  Pointer to the parameters for the registered callback.
3160  *
3161  * @return
3162  *  - On success, zero.
3163  *  - On failure, a negative value.
3164  */
3165 int rte_eth_dev_callback_register(uint16_t port_id,
3166                         enum rte_eth_event_type event,
3167                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
3168
3169 /**
3170  * Unregister a callback function for port event.
3171  *
3172  * @param port_id
3173  *  Port id.
3174  *  RTE_ETH_ALL means unregister the event for all port ids.
3175  * @param event
3176  *  Event interested.
3177  * @param cb_fn
3178  *  User supplied callback function to be called.
3179  * @param cb_arg
3180  *  Pointer to the parameters for the registered callback. -1 means to
3181  *  remove all for the same callback address and same event.
3182  *
3183  * @return
3184  *  - On success, zero.
3185  *  - On failure, a negative value.
3186  */
3187 int rte_eth_dev_callback_unregister(uint16_t port_id,
3188                         enum rte_eth_event_type event,
3189                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
3190
3191 /**
3192  * When there is no rx packet coming in Rx Queue for a long time, we can
3193  * sleep lcore related to RX Queue for power saving, and enable rx interrupt
3194  * to be triggered when Rx packet arrives.
3195  *
3196  * The rte_eth_dev_rx_intr_enable() function enables rx queue
3197  * interrupt on specific rx queue of a port.
3198  *
3199  * @param port_id
3200  *   The port identifier of the Ethernet device.
3201  * @param queue_id
3202  *   The index of the receive queue from which to retrieve input packets.
3203  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3204  *   to rte_eth_dev_configure().
3205  * @return
3206  *   - (0) if successful.
3207  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3208  *     that operation.
3209  *   - (-ENODEV) if *port_id* invalid.
3210  *   - (-EIO) if device is removed.
3211  */
3212 int rte_eth_dev_rx_intr_enable(uint16_t port_id, uint16_t queue_id);
3213
3214 /**
3215  * When lcore wakes up from rx interrupt indicating packet coming, disable rx
3216  * interrupt and returns to polling mode.
3217  *
3218  * The rte_eth_dev_rx_intr_disable() function disables rx queue
3219  * interrupt on specific rx queue of a port.
3220  *
3221  * @param port_id
3222  *   The port identifier of the Ethernet device.
3223  * @param queue_id
3224  *   The index of the receive queue from which to retrieve input packets.
3225  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3226  *   to rte_eth_dev_configure().
3227  * @return
3228  *   - (0) if successful.
3229  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3230  *     that operation.
3231  *   - (-ENODEV) if *port_id* invalid.
3232  *   - (-EIO) if device is removed.
3233  */
3234 int rte_eth_dev_rx_intr_disable(uint16_t port_id, uint16_t queue_id);
3235
3236 /**
3237  * RX Interrupt control per port.
3238  *
3239  * @param port_id
3240  *   The port identifier of the Ethernet device.
3241  * @param epfd
3242  *   Epoll instance fd which the intr vector associated to.
3243  *   Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance.
3244  * @param op
3245  *   The operation be performed for the vector.
3246  *   Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}.
3247  * @param data
3248  *   User raw data.
3249  * @return
3250  *   - On success, zero.
3251  *   - On failure, a negative value.
3252  */
3253 int rte_eth_dev_rx_intr_ctl(uint16_t port_id, int epfd, int op, void *data);
3254
3255 /**
3256  * RX Interrupt control per queue.
3257  *
3258  * @param port_id
3259  *   The port identifier of the Ethernet device.
3260  * @param queue_id
3261  *   The index of the receive queue from which to retrieve input packets.
3262  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3263  *   to rte_eth_dev_configure().
3264  * @param epfd
3265  *   Epoll instance fd which the intr vector associated to.
3266  *   Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance.
3267  * @param op
3268  *   The operation be performed for the vector.
3269  *   Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}.
3270  * @param data
3271  *   User raw data.
3272  * @return
3273  *   - On success, zero.
3274  *   - On failure, a negative value.
3275  */
3276 int rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id,
3277                               int epfd, int op, void *data);
3278
3279 /**
3280  * @warning
3281  * @b EXPERIMENTAL: this API may change without prior notice.
3282  *
3283  * Get interrupt fd per Rx queue.
3284  *
3285  * @param port_id
3286  *   The port identifier of the Ethernet device.
3287  * @param queue_id
3288  *   The index of the receive queue from which to retrieve input packets.
3289  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3290  *   to rte_eth_dev_configure().
3291  * @return
3292  *   - (>=0) the interrupt fd associated to the requested Rx queue if
3293  *           successful.
3294  *   - (-1) on error.
3295  */
3296 __rte_experimental
3297 int
3298 rte_eth_dev_rx_intr_ctl_q_get_fd(uint16_t port_id, uint16_t queue_id);
3299
3300 /**
3301  * Turn on the LED on the Ethernet device.
3302  * This function turns on the LED on the Ethernet device.
3303  *
3304  * @param port_id
3305  *   The port identifier of the Ethernet device.
3306  * @return
3307  *   - (0) if successful.
3308  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3309  *     that operation.
3310  *   - (-ENODEV) if *port_id* invalid.
3311  *   - (-EIO) if device is removed.
3312  */
3313 int  rte_eth_led_on(uint16_t port_id);
3314
3315 /**
3316  * Turn off the LED on the Ethernet device.
3317  * This function turns off the LED on the Ethernet device.
3318  *
3319  * @param port_id
3320  *   The port identifier of the Ethernet device.
3321  * @return
3322  *   - (0) if successful.
3323  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3324  *     that operation.
3325  *   - (-ENODEV) if *port_id* invalid.
3326  *   - (-EIO) if device is removed.
3327  */
3328 int  rte_eth_led_off(uint16_t port_id);
3329
3330 /**
3331  * Get current status of the Ethernet link flow control for Ethernet device
3332  *
3333  * @param port_id
3334  *   The port identifier of the Ethernet device.
3335  * @param fc_conf
3336  *   The pointer to the structure where to store the flow control parameters.
3337  * @return
3338  *   - (0) if successful.
3339  *   - (-ENOTSUP) if hardware doesn't support flow control.
3340  *   - (-ENODEV)  if *port_id* invalid.
3341  *   - (-EIO)  if device is removed.
3342  */
3343 int rte_eth_dev_flow_ctrl_get(uint16_t port_id,
3344                               struct rte_eth_fc_conf *fc_conf);
3345
3346 /**
3347  * Configure the Ethernet link flow control for Ethernet device
3348  *
3349  * @param port_id
3350  *   The port identifier of the Ethernet device.
3351  * @param fc_conf
3352  *   The pointer to the structure of the flow control parameters.
3353  * @return
3354  *   - (0) if successful.
3355  *   - (-ENOTSUP) if hardware doesn't support flow control mode.
3356  *   - (-ENODEV)  if *port_id* invalid.
3357  *   - (-EINVAL)  if bad parameter
3358  *   - (-EIO)     if flow control setup failure or device is removed.
3359  */
3360 int rte_eth_dev_flow_ctrl_set(uint16_t port_id,
3361                               struct rte_eth_fc_conf *fc_conf);
3362
3363 /**
3364  * Configure the Ethernet priority flow control under DCB environment
3365  * for Ethernet device.
3366  *
3367  * @param port_id
3368  * The port identifier of the Ethernet device.
3369  * @param pfc_conf
3370  * The pointer to the structure of the priority flow control parameters.
3371  * @return
3372  *   - (0) if successful.
3373  *   - (-ENOTSUP) if hardware doesn't support priority flow control mode.
3374  *   - (-ENODEV)  if *port_id* invalid.
3375  *   - (-EINVAL)  if bad parameter
3376  *   - (-EIO)     if flow control setup failure or device is removed.
3377  */
3378 int rte_eth_dev_priority_flow_ctrl_set(uint16_t port_id,
3379                                 struct rte_eth_pfc_conf *pfc_conf);
3380
3381 /**
3382  * Add a MAC address to an internal array of addresses used to enable whitelist
3383  * filtering to accept packets only if the destination MAC address matches.
3384  *
3385  * @param port_id
3386  *   The port identifier of the Ethernet device.
3387  * @param mac_addr
3388  *   The MAC address to add.
3389  * @param pool
3390  *   VMDq pool index to associate address with (if VMDq is enabled). If VMDq is
3391  *   not enabled, this should be set to 0.
3392  * @return
3393  *   - (0) if successfully added or *mac_addr* was already added.
3394  *   - (-ENOTSUP) if hardware doesn't support this feature.
3395  *   - (-ENODEV) if *port* is invalid.
3396  *   - (-EIO) if device is removed.
3397  *   - (-ENOSPC) if no more MAC addresses can be added.
3398  *   - (-EINVAL) if MAC address is invalid.
3399  */
3400 int rte_eth_dev_mac_addr_add(uint16_t port_id, struct rte_ether_addr *mac_addr,
3401                                 uint32_t pool);
3402
3403 /**
3404  * Remove a MAC address from the internal array of addresses.
3405  *
3406  * @param port_id
3407  *   The port identifier of the Ethernet device.
3408  * @param mac_addr
3409  *   MAC address to remove.
3410  * @return
3411  *   - (0) if successful, or *mac_addr* didn't exist.
3412  *   - (-ENOTSUP) if hardware doesn't support.
3413  *   - (-ENODEV) if *port* invalid.
3414  *   - (-EADDRINUSE) if attempting to remove the default MAC address
3415  */
3416 int rte_eth_dev_mac_addr_remove(uint16_t port_id,
3417                                 struct rte_ether_addr *mac_addr);
3418
3419 /**
3420  * Set the default MAC address.
3421  *
3422  * @param port_id
3423  *   The port identifier of the Ethernet device.
3424  * @param mac_addr
3425  *   New default MAC address.
3426  * @return
3427  *   - (0) if successful, or *mac_addr* didn't exist.
3428  *   - (-ENOTSUP) if hardware doesn't support.
3429  *   - (-ENODEV) if *port* invalid.
3430  *   - (-EINVAL) if MAC address is invalid.
3431  */
3432 int rte_eth_dev_default_mac_addr_set(uint16_t port_id,
3433                 struct rte_ether_addr *mac_addr);
3434
3435 /**
3436  * Update Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3437  *
3438  * @param port_id
3439  *   The port identifier of the Ethernet device.
3440  * @param reta_conf
3441  *   RETA to update.
3442  * @param reta_size
3443  *   Redirection table size. The table size can be queried by
3444  *   rte_eth_dev_info_get().
3445  * @return
3446  *   - (0) if successful.
3447  *   - (-ENOTSUP) if hardware doesn't support.
3448  *   - (-EINVAL) if bad parameter.
3449  *   - (-EIO) if device is removed.
3450  */
3451 int rte_eth_dev_rss_reta_update(uint16_t port_id,
3452                                 struct rte_eth_rss_reta_entry64 *reta_conf,
3453                                 uint16_t reta_size);
3454
3455  /**
3456  * Query Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3457  *
3458  * @param port_id
3459  *   The port identifier of the Ethernet device.
3460  * @param reta_conf
3461  *   RETA to query. For each requested reta entry, corresponding bit
3462  *   in mask must be set.
3463  * @param reta_size
3464  *   Redirection table size. The table size can be queried by
3465  *   rte_eth_dev_info_get().
3466  * @return
3467  *   - (0) if successful.
3468  *   - (-ENOTSUP) if hardware doesn't support.
3469  *   - (-EINVAL) if bad parameter.
3470  *   - (-EIO) if device is removed.
3471  */
3472 int rte_eth_dev_rss_reta_query(uint16_t port_id,
3473                                struct rte_eth_rss_reta_entry64 *reta_conf,
3474                                uint16_t reta_size);
3475
3476  /**
3477  * Updates unicast hash table for receiving packet with the given destination
3478  * MAC address, and the packet is routed to all VFs for which the RX mode is
3479  * accept packets that match the unicast hash table.
3480  *
3481  * @param port_id
3482  *   The port identifier of the Ethernet device.
3483  * @param addr
3484  *   Unicast MAC address.
3485  * @param on
3486  *    1 - Set an unicast hash bit for receiving packets with the MAC address.
3487  *    0 - Clear an unicast hash bit.
3488  * @return
3489  *   - (0) if successful.
3490  *   - (-ENOTSUP) if hardware doesn't support.
3491   *  - (-ENODEV) if *port_id* invalid.
3492  *   - (-EIO) if device is removed.
3493  *   - (-EINVAL) if bad parameter.
3494  */
3495 int rte_eth_dev_uc_hash_table_set(uint16_t port_id, struct rte_ether_addr *addr,
3496                                   uint8_t on);
3497
3498  /**
3499  * Updates all unicast hash bitmaps for receiving packet with any Unicast
3500  * Ethernet MAC addresses,the packet is routed to all VFs for which the RX
3501  * mode is accept packets that match the unicast hash table.
3502  *
3503  * @param port_id
3504  *   The port identifier of the Ethernet device.
3505  * @param on
3506  *    1 - Set all unicast hash bitmaps for receiving all the Ethernet
3507  *         MAC addresses
3508  *    0 - Clear all unicast hash bitmaps
3509  * @return
3510  *   - (0) if successful.
3511  *   - (-ENOTSUP) if hardware doesn't support.
3512   *  - (-ENODEV) if *port_id* invalid.
3513  *   - (-EIO) if device is removed.
3514  *   - (-EINVAL) if bad parameter.
3515  */
3516 int rte_eth_dev_uc_all_hash_table_set(uint16_t port_id, uint8_t on);
3517
3518 /**
3519  * Set a traffic mirroring rule on an Ethernet device
3520  *
3521  * @param port_id
3522  *   The port identifier of the Ethernet device.
3523  * @param mirror_conf
3524  *   The pointer to the traffic mirroring structure describing the mirroring rule.
3525  *   The *rte_eth_vm_mirror_conf* structure includes the type of mirroring rule,
3526  *   destination pool and the value of rule if enable vlan or pool mirroring.
3527  *
3528  * @param rule_id
3529  *   The index of traffic mirroring rule, we support four separated rules.
3530  * @param on
3531  *   1 - Enable a mirroring rule.
3532  *   0 - Disable a mirroring rule.
3533  * @return
3534  *   - (0) if successful.
3535  *   - (-ENOTSUP) if hardware doesn't support this feature.
3536  *   - (-ENODEV) if *port_id* invalid.
3537  *   - (-EIO) if device is removed.
3538  *   - (-EINVAL) if the mr_conf information is not correct.
3539  */
3540 int rte_eth_mirror_rule_set(uint16_t port_id,
3541                         struct rte_eth_mirror_conf *mirror_conf,
3542                         uint8_t rule_id,
3543                         uint8_t on);
3544
3545 /**
3546  * Reset a traffic mirroring rule on an Ethernet device.
3547  *
3548  * @param port_id
3549  *   The port identifier of the Ethernet device.
3550  * @param rule_id
3551  *   The index of traffic mirroring rule, we support four separated rules.
3552  * @return
3553  *   - (0) if successful.
3554  *   - (-ENOTSUP) if hardware doesn't support this feature.
3555  *   - (-ENODEV) if *port_id* invalid.
3556  *   - (-EIO) if device is removed.
3557  *   - (-EINVAL) if bad parameter.
3558  */
3559 int rte_eth_mirror_rule_reset(uint16_t port_id,
3560                                          uint8_t rule_id);
3561
3562 /**
3563  * Set the rate limitation for a queue on an Ethernet device.
3564  *
3565  * @param port_id
3566  *   The port identifier of the Ethernet device.
3567  * @param queue_idx
3568  *   The queue id.
3569  * @param tx_rate
3570  *   The tx rate in Mbps. Allocated from the total port link speed.
3571  * @return
3572  *   - (0) if successful.
3573  *   - (-ENOTSUP) if hardware doesn't support this feature.
3574  *   - (-ENODEV) if *port_id* invalid.
3575  *   - (-EIO) if device is removed.
3576  *   - (-EINVAL) if bad parameter.
3577  */
3578 int rte_eth_set_queue_rate_limit(uint16_t port_id, uint16_t queue_idx,
3579                         uint16_t tx_rate);
3580
3581  /**
3582  * Configuration of Receive Side Scaling hash computation of Ethernet device.
3583  *
3584  * @param port_id
3585  *   The port identifier of the Ethernet device.
3586  * @param rss_conf
3587  *   The new configuration to use for RSS hash computation on the port.
3588  * @return
3589  *   - (0) if successful.
3590  *   - (-ENODEV) if port identifier is invalid.
3591  *   - (-EIO) if device is removed.
3592  *   - (-ENOTSUP) if hardware doesn't support.
3593  *   - (-EINVAL) if bad parameter.
3594  */
3595 int rte_eth_dev_rss_hash_update(uint16_t port_id,
3596                                 struct rte_eth_rss_conf *rss_conf);
3597
3598  /**
3599  * Retrieve current configuration of Receive Side Scaling hash computation
3600  * of Ethernet device.
3601  *
3602  * @param port_id
3603  *   The port identifier of the Ethernet device.
3604  * @param rss_conf
3605  *   Where to store the current RSS hash configuration of the Ethernet device.
3606  * @return
3607  *   - (0) if successful.
3608  *   - (-ENODEV) if port identifier is invalid.
3609  *   - (-EIO) if device is removed.
3610  *   - (-ENOTSUP) if hardware doesn't support RSS.
3611  */
3612 int
3613 rte_eth_dev_rss_hash_conf_get(uint16_t port_id,
3614                               struct rte_eth_rss_conf *rss_conf);
3615
3616  /**
3617  * Add UDP tunneling port for a specific type of tunnel.
3618  * The packets with this UDP port will be identified as this type of tunnel.
3619  * Before enabling any offloading function for a tunnel, users can call this API
3620  * to change or add more UDP port for the tunnel. So the offloading function
3621  * can take effect on the packets with the specific UDP port.
3622  *
3623  * @param port_id
3624  *   The port identifier of the Ethernet device.
3625  * @param tunnel_udp
3626  *   UDP tunneling configuration.
3627  *
3628  * @return
3629  *   - (0) if successful.
3630  *   - (-ENODEV) if port identifier is invalid.
3631  *   - (-EIO) if device is removed.
3632  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3633  */
3634 int
3635 rte_eth_dev_udp_tunnel_port_add(uint16_t port_id,
3636                                 struct rte_eth_udp_tunnel *tunnel_udp);
3637
3638  /**
3639  * Delete UDP tunneling port a specific type of tunnel.
3640  * The packets with this UDP port will not be identified as this type of tunnel
3641  * any more.
3642  * Before enabling any offloading function for a tunnel, users can call this API
3643  * to delete a UDP port for the tunnel. So the offloading function will not take
3644  * effect on the packets with the specific UDP port.
3645  *
3646  * @param port_id
3647  *   The port identifier of the Ethernet device.
3648  * @param tunnel_udp
3649  *   UDP tunneling configuration.
3650  *
3651  * @return
3652  *   - (0) if successful.
3653  *   - (-ENODEV) if port identifier is invalid.
3654  *   - (-EIO) if device is removed.
3655  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3656  */
3657 int
3658 rte_eth_dev_udp_tunnel_port_delete(uint16_t port_id,
3659                                    struct rte_eth_udp_tunnel *tunnel_udp);
3660
3661 /**
3662  * Check whether the filter type is supported on an Ethernet device.
3663  * All the supported filter types are defined in 'rte_eth_ctrl.h'.
3664  *
3665  * @param port_id
3666  *   The port identifier of the Ethernet device.
3667  * @param filter_type
3668  *   Filter type.
3669  * @return
3670  *   - (0) if successful.
3671  *   - (-ENOTSUP) if hardware doesn't support this filter type.
3672  *   - (-ENODEV) if *port_id* invalid.
3673  *   - (-EIO) if device is removed.
3674  */
3675 __rte_deprecated
3676 int rte_eth_dev_filter_supported(uint16_t port_id,
3677                 enum rte_filter_type filter_type);
3678
3679 /**
3680  * Take operations to assigned filter type on an Ethernet device.
3681  * All the supported operations and filter types are defined in 'rte_eth_ctrl.h'.
3682  *
3683  * @param port_id
3684  *   The port identifier of the Ethernet device.
3685  * @param filter_type
3686  *   Filter type.
3687  * @param filter_op
3688  *   Type of operation.
3689  * @param arg
3690  *   A pointer to arguments defined specifically for the operation.
3691  * @return
3692  *   - (0) if successful.
3693  *   - (-ENOTSUP) if hardware doesn't support.
3694  *   - (-ENODEV) if *port_id* invalid.
3695  *   - (-EIO) if device is removed.
3696  *   - others depends on the specific operations implementation.
3697  */
3698 __rte_deprecated
3699 int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
3700                         enum rte_filter_op filter_op, void *arg);
3701
3702 /**
3703  * Get DCB information on an Ethernet device.
3704  *
3705  * @param port_id
3706  *   The port identifier of the Ethernet device.
3707  * @param dcb_info
3708  *   dcb information.
3709  * @return
3710  *   - (0) if successful.
3711  *   - (-ENODEV) if port identifier is invalid.
3712  *   - (-EIO) if device is removed.
3713  *   - (-ENOTSUP) if hardware doesn't support.
3714  */
3715 int rte_eth_dev_get_dcb_info(uint16_t port_id,
3716                              struct rte_eth_dcb_info *dcb_info);
3717
3718 struct rte_eth_rxtx_callback;
3719
3720 /**
3721  * Add a callback to be called on packet RX on a given port and queue.
3722  *
3723  * This API configures a function to be called for each burst of
3724  * packets received on a given NIC port queue. The return value is a pointer
3725  * that can be used to later remove the callback using
3726  * rte_eth_remove_rx_callback().
3727  *
3728  * Multiple functions are called in the order that they are added.
3729  *
3730  * @param port_id
3731  *   The port identifier of the Ethernet device.
3732  * @param queue_id
3733  *   The queue on the Ethernet device on which the callback is to be added.
3734  * @param fn
3735  *   The callback function
3736  * @param user_param
3737  *   A generic pointer parameter which will be passed to each invocation of the
3738  *   callback function on this port and queue.
3739  *
3740  * @return
3741  *   NULL on error.
3742  *   On success, a pointer value which can later be used to remove the callback.
3743  */
3744 const struct rte_eth_rxtx_callback *
3745 rte_eth_add_rx_callback(uint16_t port_id, uint16_t queue_id,
3746                 rte_rx_callback_fn fn, void *user_param);
3747
3748 /**
3749  * Add a callback that must be called first on packet RX on a given port
3750  * and queue.
3751  *
3752  * This API configures a first function to be called for each burst of
3753  * packets received on a given NIC port queue. The return value is a pointer
3754  * that can be used to later remove the callback using
3755  * rte_eth_remove_rx_callback().
3756  *
3757  * Multiple functions are called in the order that they are added.
3758  *
3759  * @param port_id
3760  *   The port identifier of the Ethernet device.
3761  * @param queue_id
3762  *   The queue on the Ethernet device on which the callback is to be added.
3763  * @param fn
3764  *   The callback function
3765  * @param user_param
3766  *   A generic pointer parameter which will be passed to each invocation of the
3767  *   callback function on this port and queue.
3768  *
3769  * @return
3770  *   NULL on error.
3771  *   On success, a pointer value which can later be used to remove the callback.
3772  */
3773 const struct rte_eth_rxtx_callback *
3774 rte_eth_add_first_rx_callback(uint16_t port_id, uint16_t queue_id,
3775                 rte_rx_callback_fn fn, void *user_param);
3776
3777 /**
3778  * Add a callback to be called on packet TX on a given port and queue.
3779  *
3780  * This API configures a function to be called for each burst of
3781  * packets sent on a given NIC port queue. The return value is a pointer
3782  * that can be used to later remove the callback using
3783  * rte_eth_remove_tx_callback().
3784  *
3785  * Multiple functions are called in the order that they are added.
3786  *
3787  * @param port_id
3788  *   The port identifier of the Ethernet device.
3789  * @param queue_id
3790  *   The queue on the Ethernet device on which the callback is to be added.
3791  * @param fn
3792  *   The callback function
3793  * @param user_param
3794  *   A generic pointer parameter which will be passed to each invocation of the
3795  *   callback function on this port and queue.
3796  *
3797  * @return
3798  *   NULL on error.
3799  *   On success, a pointer value which can later be used to remove the callback.
3800  */
3801 const struct rte_eth_rxtx_callback *
3802 rte_eth_add_tx_callback(uint16_t port_id, uint16_t queue_id,
3803                 rte_tx_callback_fn fn, void *user_param);
3804
3805 /**
3806  * Remove an RX packet callback from a given port and queue.
3807  *
3808  * This function is used to removed callbacks that were added to a NIC port
3809  * queue using rte_eth_add_rx_callback().
3810  *
3811  * Note: the callback is removed from the callback list but it isn't freed
3812  * since the it may still be in use. The memory for the callback can be
3813  * subsequently freed back by the application by calling rte_free():
3814  *
3815  * - Immediately - if the port is stopped, or the user knows that no
3816  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3817  *   on that queue.
3818  *
3819  * - After a short delay - where the delay is sufficient to allow any
3820  *   in-flight callbacks to complete.
3821  *
3822  * @param port_id
3823  *   The port identifier of the Ethernet device.
3824  * @param queue_id
3825  *   The queue on the Ethernet device from which the callback is to be removed.
3826  * @param user_cb
3827  *   User supplied callback created via rte_eth_add_rx_callback().
3828  *
3829  * @return
3830  *   - 0: Success. Callback was removed.
3831  *   - -ENOTSUP: Callback support is not available.
3832  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3833  *               is NULL or not found for the port/queue.
3834  */
3835 int rte_eth_remove_rx_callback(uint16_t port_id, uint16_t queue_id,
3836                 const struct rte_eth_rxtx_callback *user_cb);
3837
3838 /**
3839  * Remove a TX packet callback from a given port and queue.
3840  *
3841  * This function is used to removed callbacks that were added to a NIC port
3842  * queue using rte_eth_add_tx_callback().
3843  *
3844  * Note: the callback is removed from the callback list but it isn't freed
3845  * since the it may still be in use. The memory for the callback can be
3846  * subsequently freed back by the application by calling rte_free():
3847  *
3848  * - Immediately - if the port is stopped, or the user knows that no
3849  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3850  *   on that queue.
3851  *
3852  * - After a short delay - where the delay is sufficient to allow any
3853  *   in-flight callbacks to complete.
3854  *
3855  * @param port_id
3856  *   The port identifier of the Ethernet device.
3857  * @param queue_id
3858  *   The queue on the Ethernet device from which the callback is to be removed.
3859  * @param user_cb
3860  *   User supplied callback created via rte_eth_add_tx_callback().
3861  *
3862  * @return
3863  *   - 0: Success. Callback was removed.
3864  *   - -ENOTSUP: Callback support is not available.
3865  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3866  *               is NULL or not found for the port/queue.
3867  */
3868 int rte_eth_remove_tx_callback(uint16_t port_id, uint16_t queue_id,
3869                 const struct rte_eth_rxtx_callback *user_cb);
3870
3871 /**
3872  * Retrieve information about given port's RX queue.
3873  *
3874  * @param port_id
3875  *   The port identifier of the Ethernet device.
3876  * @param queue_id
3877  *   The RX queue on the Ethernet device for which information
3878  *   will be retrieved.
3879  * @param qinfo
3880  *   A pointer to a structure of type *rte_eth_rxq_info_info* to be filled with
3881  *   the information of the Ethernet device.
3882  *
3883  * @return
3884  *   - 0: Success
3885  *   - -ENOTSUP: routine is not supported by the device PMD.
3886  *   - -EINVAL:  The port_id or the queue_id is out of range, or the queue
3887  *               is hairpin queue.
3888  */
3889 int rte_eth_rx_queue_info_get(uint16_t port_id, uint16_t queue_id,
3890         struct rte_eth_rxq_info *qinfo);
3891
3892 /**
3893  * Retrieve information about given port's TX queue.
3894  *
3895  * @param port_id
3896  *   The port identifier of the Ethernet device.
3897  * @param queue_id
3898  *   The TX queue on the Ethernet device for which information
3899  *   will be retrieved.
3900  * @param qinfo
3901  *   A pointer to a structure of type *rte_eth_txq_info_info* to be filled with
3902  *   the information of the Ethernet device.
3903  *
3904  * @return
3905  *   - 0: Success
3906  *   - -ENOTSUP: routine is not supported by the device PMD.
3907  *   - -EINVAL:  The port_id or the queue_id is out of range, or the queue
3908  *               is hairpin queue.
3909  */
3910 int rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id,
3911         struct rte_eth_txq_info *qinfo);
3912
3913 /**
3914  * Retrieve information about the Rx packet burst mode.
3915  *
3916  * @param port_id
3917  *   The port identifier of the Ethernet device.
3918  * @param queue_id
3919  *   The Rx queue on the Ethernet device for which information
3920  *   will be retrieved.
3921  * @param mode
3922  *   A pointer to a structure of type *rte_eth_burst_mode* to be filled
3923  *   with the information of the packet burst mode.
3924  *
3925  * @return
3926  *   - 0: Success
3927  *   - -ENOTSUP: routine is not supported by the device PMD.
3928  *   - -EINVAL:  The port_id or the queue_id is out of range.
3929  */
3930 __rte_experimental
3931 int rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id,
3932         struct rte_eth_burst_mode *mode);
3933
3934 /**
3935  * Retrieve information about the Tx packet burst mode.
3936  *
3937  * @param port_id
3938  *   The port identifier of the Ethernet device.
3939  * @param queue_id
3940  *   The Tx queue on the Ethernet device for which information
3941  *   will be retrieved.
3942  * @param mode
3943  *   A pointer to a structure of type *rte_eth_burst_mode* to be filled
3944  *   with the information of the packet burst mode.
3945  *
3946  * @return
3947  *   - 0: Success
3948  *   - -ENOTSUP: routine is not supported by the device PMD.
3949  *   - -EINVAL:  The port_id or the queue_id is out of range.
3950  */
3951 __rte_experimental
3952 int rte_eth_tx_burst_mode_get(uint16_t port_id, uint16_t queue_id,
3953         struct rte_eth_burst_mode *mode);
3954
3955 /**
3956  * Retrieve device registers and register attributes (number of registers and
3957  * register size)
3958  *
3959  * @param port_id
3960  *   The port identifier of the Ethernet device.
3961  * @param info
3962  *   Pointer to rte_dev_reg_info structure to fill in. If info->data is
3963  *   NULL the function fills in the width and length fields. If non-NULL
3964  *   the registers are put into the buffer pointed at by the data field.
3965  * @return
3966  *   - (0) if successful.
3967  *   - (-ENOTSUP) if hardware doesn't support.
3968  *   - (-ENODEV) if *port_id* invalid.
3969  *   - (-EIO) if device is removed.
3970  *   - others depends on the specific operations implementation.
3971  */
3972 int rte_eth_dev_get_reg_info(uint16_t port_id, struct rte_dev_reg_info *info);
3973
3974 /**
3975  * Retrieve size of device EEPROM
3976  *
3977  * @param port_id
3978  *   The port identifier of the Ethernet device.
3979  * @return
3980  *   - (>=0) EEPROM size if successful.
3981  *   - (-ENOTSUP) if hardware doesn't support.
3982  *   - (-ENODEV) if *port_id* invalid.
3983  *   - (-EIO) if device is removed.
3984  *   - others depends on the specific operations implementation.
3985  */
3986 int rte_eth_dev_get_eeprom_length(uint16_t port_id);
3987
3988 /**
3989  * Retrieve EEPROM and EEPROM attribute
3990  *
3991  * @param port_id
3992  *   The port identifier of the Ethernet device.
3993  * @param info
3994  *   The template includes buffer for return EEPROM data and
3995  *   EEPROM attributes to be filled.
3996  * @return
3997  *   - (0) if successful.
3998  *   - (-ENOTSUP) if hardware doesn't support.
3999  *   - (-ENODEV) if *port_id* invalid.
4000  *   - (-EIO) if device is removed.
4001  *   - others depends on the specific operations implementation.
4002  */
4003 int rte_eth_dev_get_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info);
4004
4005 /**
4006  * Program EEPROM with provided data
4007  *
4008  * @param port_id
4009  *   The port identifier of the Ethernet device.
4010  * @param info
4011  *   The template includes EEPROM data for programming and
4012  *   EEPROM attributes to be filled
4013  * @return
4014  *   - (0) if successful.
4015  *   - (-ENOTSUP) if hardware doesn't support.
4016  *   - (-ENODEV) if *port_id* invalid.
4017  *   - (-EIO) if device is removed.
4018  *   - others depends on the specific operations implementation.
4019  */
4020 int rte_eth_dev_set_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info);
4021
4022 /**
4023  * @warning
4024  * @b EXPERIMENTAL: this API may change without prior notice.
4025  *
4026  * Retrieve the type and size of plugin module EEPROM
4027  *
4028  * @param port_id
4029  *   The port identifier of the Ethernet device.
4030  * @param modinfo
4031  *   The type and size of plugin module EEPROM.
4032  * @return
4033  *   - (0) if successful.
4034  *   - (-ENOTSUP) if hardware doesn't support.
4035  *   - (-ENODEV) if *port_id* invalid.
4036  *   - (-EIO) if device is removed.
4037  *   - others depends on the specific operations implementation.
4038  */
4039 __rte_experimental
4040 int
4041 rte_eth_dev_get_module_info(uint16_t port_id,
4042                             struct rte_eth_dev_module_info *modinfo);
4043
4044 /**
4045  * @warning
4046  * @b EXPERIMENTAL: this API may change without prior notice.
4047  *
4048  * Retrieve the data of plugin module EEPROM
4049  *
4050  * @param port_id
4051  *   The port identifier of the Ethernet device.
4052  * @param info
4053  *   The template includes the plugin module EEPROM attributes, and the
4054  *   buffer for return plugin module EEPROM data.
4055  * @return
4056  *   - (0) if successful.
4057  *   - (-ENOTSUP) if hardware doesn't support.
4058  *   - (-ENODEV) if *port_id* invalid.
4059  *   - (-EIO) if device is removed.
4060  *   - others depends on the specific operations implementation.
4061  */
4062 __rte_experimental
4063 int
4064 rte_eth_dev_get_module_eeprom(uint16_t port_id,
4065                               struct rte_dev_eeprom_info *info);
4066
4067 /**
4068  * Set the list of multicast addresses to filter on an Ethernet device.
4069  *
4070  * @param port_id
4071  *   The port identifier of the Ethernet device.
4072  * @param mc_addr_set
4073  *   The array of multicast addresses to set. Equal to NULL when the function
4074  *   is invoked to flush the set of filtered addresses.
4075  * @param nb_mc_addr
4076  *   The number of multicast addresses in the *mc_addr_set* array. Equal to 0
4077  *   when the function is invoked to flush the set of filtered addresses.
4078  * @return
4079  *   - (0) if successful.
4080  *   - (-ENODEV) if *port_id* invalid.
4081  *   - (-EIO) if device is removed.
4082  *   - (-ENOTSUP) if PMD of *port_id* doesn't support multicast filtering.
4083  *   - (-ENOSPC) if *port_id* has not enough multicast filtering resources.
4084  */
4085 int rte_eth_dev_set_mc_addr_list(uint16_t port_id,
4086                                  struct rte_ether_addr *mc_addr_set,
4087                                  uint32_t nb_mc_addr);
4088
4089 /**
4090  * Enable IEEE1588/802.1AS timestamping for an Ethernet device.
4091  *
4092  * @param port_id
4093  *   The port identifier of the Ethernet device.
4094  *
4095  * @return
4096  *   - 0: Success.
4097  *   - -ENODEV: The port ID is invalid.
4098  *   - -EIO: if device is removed.
4099  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4100  */
4101 int rte_eth_timesync_enable(uint16_t port_id);
4102
4103 /**
4104  * Disable IEEE1588/802.1AS timestamping for an Ethernet device.
4105  *
4106  * @param port_id
4107  *   The port identifier of the Ethernet device.
4108  *
4109  * @return
4110  *   - 0: Success.
4111  *   - -ENODEV: The port ID is invalid.
4112  *   - -EIO: if device is removed.
4113  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4114  */
4115 int rte_eth_timesync_disable(uint16_t port_id);
4116
4117 /**
4118  * Read an IEEE1588/802.1AS RX timestamp from an Ethernet device.
4119  *
4120  * @param port_id
4121  *   The port identifier of the Ethernet device.
4122  * @param timestamp
4123  *   Pointer to the timestamp struct.
4124  * @param flags
4125  *   Device specific flags. Used to pass the RX timesync register index to
4126  *   i40e. Unused in igb/ixgbe, pass 0 instead.
4127  *
4128  * @return
4129  *   - 0: Success.
4130  *   - -EINVAL: No timestamp is available.
4131  *   - -ENODEV: The port ID is invalid.
4132  *   - -EIO: if device is removed.
4133  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4134  */
4135 int rte_eth_timesync_read_rx_timestamp(uint16_t port_id,
4136                 struct timespec *timestamp, uint32_t flags);
4137
4138 /**
4139  * Read an IEEE1588/802.1AS TX timestamp from an Ethernet device.
4140  *
4141  * @param port_id
4142  *   The port identifier of the Ethernet device.
4143  * @param timestamp
4144  *   Pointer to the timestamp struct.
4145  *
4146  * @return
4147  *   - 0: Success.
4148  *   - -EINVAL: No timestamp is available.
4149  *   - -ENODEV: The port ID is invalid.
4150  *   - -EIO: if device is removed.
4151  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4152  */
4153 int rte_eth_timesync_read_tx_timestamp(uint16_t port_id,
4154                 struct timespec *timestamp);
4155
4156 /**
4157  * Adjust the timesync clock on an Ethernet device.
4158  *
4159  * This is usually used in conjunction with other Ethdev timesync functions to
4160  * synchronize the device time using the IEEE1588/802.1AS protocol.
4161  *
4162  * @param port_id
4163  *   The port identifier of the Ethernet device.
4164  * @param delta
4165  *   The adjustment in nanoseconds.
4166  *
4167  * @return
4168  *   - 0: Success.
4169  *   - -ENODEV: The port ID is invalid.
4170  *   - -EIO: if device is removed.
4171  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4172  */
4173 int rte_eth_timesync_adjust_time(uint16_t port_id, int64_t delta);
4174
4175 /**
4176  * Read the time from the timesync clock on an Ethernet device.
4177  *
4178  * This is usually used in conjunction with other Ethdev timesync functions to
4179  * synchronize the device time using the IEEE1588/802.1AS protocol.
4180  *
4181  * @param port_id
4182  *   The port identifier of the Ethernet device.
4183  * @param time
4184  *   Pointer to the timespec struct that holds the time.
4185  *
4186  * @return
4187  *   - 0: Success.
4188  */
4189 int rte_eth_timesync_read_time(uint16_t port_id, struct timespec *time);
4190
4191 /**
4192  * Set the time of the timesync clock on an Ethernet device.
4193  *
4194  * This is usually used in conjunction with other Ethdev timesync functions to
4195  * synchronize the device time using the IEEE1588/802.1AS protocol.
4196  *
4197  * @param port_id
4198  *   The port identifier of the Ethernet device.
4199  * @param time
4200  *   Pointer to the timespec struct that holds the time.
4201  *
4202  * @return
4203  *   - 0: Success.
4204  *   - -EINVAL: No timestamp is available.
4205  *   - -ENODEV: The port ID is invalid.
4206  *   - -EIO: if device is removed.
4207  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4208  */
4209 int rte_eth_timesync_write_time(uint16_t port_id, const struct timespec *time);
4210
4211 /**
4212  * @warning
4213  * @b EXPERIMENTAL: this API may change without prior notice.
4214  *
4215  * Read the current clock counter of an Ethernet device
4216  *
4217  * This returns the current raw clock value of an Ethernet device. It is
4218  * a raw amount of ticks, with no given time reference.
4219  * The value returned here is from the same clock than the one
4220  * filling timestamp field of Rx packets when using hardware timestamp
4221  * offload. Therefore it can be used to compute a precise conversion of
4222  * the device clock to the real time.
4223  *
4224  * E.g, a simple heuristic to derivate the frequency would be:
4225  * uint64_t start, end;
4226  * rte_eth_read_clock(port, start);
4227  * rte_delay_ms(100);
4228  * rte_eth_read_clock(port, end);
4229  * double freq = (end - start) * 10;
4230  *
4231  * Compute a common reference with:
4232  * uint64_t base_time_sec = current_time();
4233  * uint64_t base_clock;
4234  * rte_eth_read_clock(port, base_clock);
4235  *
4236  * Then, convert the raw mbuf timestamp with:
4237  * base_time_sec + (double)(mbuf->timestamp - base_clock) / freq;
4238  *
4239  * This simple example will not provide a very good accuracy. One must
4240  * at least measure multiple times the frequency and do a regression.
4241  * To avoid deviation from the system time, the common reference can
4242  * be repeated from time to time. The integer division can also be
4243  * converted by a multiplication and a shift for better performance.
4244  *
4245  * @param port_id
4246  *   The port identifier of the Ethernet device.
4247  * @param clock
4248  *   Pointer to the uint64_t that holds the raw clock value.
4249  *
4250  * @return
4251  *   - 0: Success.
4252  *   - -ENODEV: The port ID is invalid.
4253  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
4254  */
4255 __rte_experimental
4256 int
4257 rte_eth_read_clock(uint16_t port_id, uint64_t *clock);
4258
4259 /**
4260  * Config l2 tunnel ether type of an Ethernet device for filtering specific
4261  * tunnel packets by ether type.
4262  *
4263  * @param port_id
4264  *   The port identifier of the Ethernet device.
4265  * @param l2_tunnel
4266  *   l2 tunnel configuration.
4267  *
4268  * @return
4269  *   - (0) if successful.
4270  *   - (-ENODEV) if port identifier is invalid.
4271  *   - (-EIO) if device is removed.
4272  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
4273  */
4274 int
4275 rte_eth_dev_l2_tunnel_eth_type_conf(uint16_t port_id,
4276                                     struct rte_eth_l2_tunnel_conf *l2_tunnel);
4277
4278 /**
4279  * Enable/disable l2 tunnel offload functions. Include,
4280  * 1, The ability of parsing a type of l2 tunnel of an Ethernet device.
4281  *    Filtering, forwarding and offloading this type of tunnel packets depend on
4282  *    this ability.
4283  * 2, Stripping the l2 tunnel tag.
4284  * 3, Insertion of the l2 tunnel tag.
4285  * 4, Forwarding the packets based on the l2 tunnel tag.
4286  *
4287  * @param port_id
4288  *   The port identifier of the Ethernet device.
4289  * @param l2_tunnel
4290  *   l2 tunnel parameters.
4291  * @param mask
4292  *   Indicate the offload function.
4293  * @param en
4294  *   Enable or disable this function.
4295  *
4296  * @return
4297  *   - (0) if successful.
4298  *   - (-ENODEV) if port identifier is invalid.
4299  *   - (-EIO) if device is removed.
4300  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
4301  */
4302 int
4303 rte_eth_dev_l2_tunnel_offload_set(uint16_t port_id,
4304                                   struct rte_eth_l2_tunnel_conf *l2_tunnel,
4305                                   uint32_t mask,
4306                                   uint8_t en);
4307
4308 /**
4309 * Get the port id from device name. The device name should be specified
4310 * as below:
4311 * - PCIe address (Domain:Bus:Device.Function), for example- 0000:2:00.0
4312 * - SoC device name, for example- fsl-gmac0
4313 * - vdev dpdk name, for example- net_[pcap0|null0|tap0]
4314 *
4315 * @param name
4316 *  pci address or name of the device
4317 * @param port_id
4318 *   pointer to port identifier of the device
4319 * @return
4320 *   - (0) if successful and port_id is filled.
4321 *   - (-ENODEV or -EINVAL) on failure.
4322 */
4323 int
4324 rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id);
4325
4326 /**
4327 * Get the device name from port id. The device name is specified as below:
4328 * - PCIe address (Domain:Bus:Device.Function), for example- 0000:02:00.0
4329 * - SoC device name, for example- fsl-gmac0
4330 * - vdev dpdk name, for example- net_[pcap0|null0|tun0|tap0]
4331 *
4332 * @param port_id
4333 *   Port identifier of the device.
4334 * @param name
4335 *   Buffer of size RTE_ETH_NAME_MAX_LEN to store the name.
4336 * @return
4337 *   - (0) if successful.
4338 *   - (-EINVAL) on failure.
4339 */
4340 int
4341 rte_eth_dev_get_name_by_port(uint16_t port_id, char *name);
4342
4343 /**
4344  * Check that numbers of Rx and Tx descriptors satisfy descriptors limits from
4345  * the ethernet device information, otherwise adjust them to boundaries.
4346  *
4347  * @param port_id
4348  *   The port identifier of the Ethernet device.
4349  * @param nb_rx_desc
4350  *   A pointer to a uint16_t where the number of receive
4351  *   descriptors stored.
4352  * @param nb_tx_desc
4353  *   A pointer to a uint16_t where the number of transmit
4354  *   descriptors stored.
4355  * @return
4356  *   - (0) if successful.
4357  *   - (-ENOTSUP, -ENODEV or -EINVAL) on failure.
4358  */
4359 int rte_eth_dev_adjust_nb_rx_tx_desc(uint16_t port_id,
4360                                      uint16_t *nb_rx_desc,
4361                                      uint16_t *nb_tx_desc);
4362
4363 /**
4364  * Test if a port supports specific mempool ops.
4365  *
4366  * @param port_id
4367  *   Port identifier of the Ethernet device.
4368  * @param [in] pool
4369  *   The name of the pool operations to test.
4370  * @return
4371  *   - 0: best mempool ops choice for this port.
4372  *   - 1: mempool ops are supported for this port.
4373  *   - -ENOTSUP: mempool ops not supported for this port.
4374  *   - -ENODEV: Invalid port Identifier.
4375  *   - -EINVAL: Pool param is null.
4376  */
4377 int
4378 rte_eth_dev_pool_ops_supported(uint16_t port_id, const char *pool);
4379
4380 /**
4381  * Get the security context for the Ethernet device.
4382  *
4383  * @param port_id
4384  *   Port identifier of the Ethernet device
4385  * @return
4386  *   - NULL on error.
4387  *   - pointer to security context on success.
4388  */
4389 void *
4390 rte_eth_dev_get_sec_ctx(uint16_t port_id);
4391
4392 /**
4393  * @warning
4394  * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
4395  *
4396  * Query the device hairpin capabilities.
4397  *
4398  * @param port_id
4399  *   The port identifier of the Ethernet device.
4400  * @param cap
4401  *   Pointer to a structure that will hold the hairpin capabilities.
4402  * @return
4403  *   - (0) if successful.
4404  *   - (-ENOTSUP) if hardware doesn't support.
4405  */
4406 __rte_experimental
4407 int rte_eth_dev_hairpin_capability_get(uint16_t port_id,
4408                                        struct rte_eth_hairpin_cap *cap);
4409
4410 #include <rte_ethdev_core.h>
4411
4412 /**
4413  *
4414  * Retrieve a burst of input packets from a receive queue of an Ethernet
4415  * device. The retrieved packets are stored in *rte_mbuf* structures whose
4416  * pointers are supplied in the *rx_pkts* array.
4417  *
4418  * The rte_eth_rx_burst() function loops, parsing the RX ring of the
4419  * receive queue, up to *nb_pkts* packets, and for each completed RX
4420  * descriptor in the ring, it performs the following operations:
4421  *
4422  * - Initialize the *rte_mbuf* data structure associated with the
4423  *   RX descriptor according to the information provided by the NIC into
4424  *   that RX descriptor.
4425  *
4426  * - Store the *rte_mbuf* data structure into the next entry of the
4427  *   *rx_pkts* array.
4428  *
4429  * - Replenish the RX descriptor with a new *rte_mbuf* buffer
4430  *   allocated from the memory pool associated with the receive queue at
4431  *   initialization time.
4432  *
4433  * When retrieving an input packet that was scattered by the controller
4434  * into multiple receive descriptors, the rte_eth_rx_burst() function
4435  * appends the associated *rte_mbuf* buffers to the first buffer of the
4436  * packet.
4437  *
4438  * The rte_eth_rx_burst() function returns the number of packets
4439  * actually retrieved, which is the number of *rte_mbuf* data structures
4440  * effectively supplied into the *rx_pkts* array.
4441  * A return value equal to *nb_pkts* indicates that the RX queue contained
4442  * at least *rx_pkts* packets, and this is likely to signify that other
4443  * received packets remain in the input queue. Applications implementing
4444  * a "retrieve as much received packets as possible" policy can check this
4445  * specific case and keep invoking the rte_eth_rx_burst() function until
4446  * a value less than *nb_pkts* is returned.
4447  *
4448  * This receive method has the following advantages:
4449  *
4450  * - It allows a run-to-completion network stack engine to retrieve and
4451  *   to immediately process received packets in a fast burst-oriented
4452  *   approach, avoiding the overhead of unnecessary intermediate packet
4453  *   queue/dequeue operations.
4454  *
4455  * - Conversely, it also allows an asynchronous-oriented processing
4456  *   method to retrieve bursts of received packets and to immediately
4457  *   queue them for further parallel processing by another logical core,
4458  *   for instance. However, instead of having received packets being
4459  *   individually queued by the driver, this approach allows the caller
4460  *   of the rte_eth_rx_burst() function to queue a burst of retrieved
4461  *   packets at a time and therefore dramatically reduce the cost of
4462  *   enqueue/dequeue operations per packet.
4463  *
4464  * - It allows the rte_eth_rx_burst() function of the driver to take
4465  *   advantage of burst-oriented hardware features (CPU cache,
4466  *   prefetch instructions, and so on) to minimize the number of CPU
4467  *   cycles per packet.
4468  *
4469  * To summarize, the proposed receive API enables many
4470  * burst-oriented optimizations in both synchronous and asynchronous
4471  * packet processing environments with no overhead in both cases.
4472  *
4473  * The rte_eth_rx_burst() function does not provide any error
4474  * notification to avoid the corresponding overhead. As a hint, the
4475  * upper-level application might check the status of the device link once
4476  * being systematically returned a 0 value for a given number of tries.
4477  *
4478  * @param port_id
4479  *   The port identifier of the Ethernet device.
4480  * @param queue_id
4481  *   The index of the receive queue from which to retrieve input packets.
4482  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
4483  *   to rte_eth_dev_configure().
4484  * @param rx_pkts
4485  *   The address of an array of pointers to *rte_mbuf* structures that
4486  *   must be large enough to store *nb_pkts* pointers in it.
4487  * @param nb_pkts
4488  *   The maximum number of packets to retrieve.
4489  * @return
4490  *   The number of packets actually retrieved, which is the number
4491  *   of pointers to *rte_mbuf* structures effectively supplied to the
4492  *   *rx_pkts* array.
4493  */
4494 static inline uint16_t
4495 rte_eth_rx_burst(uint16_t port_id, uint16_t queue_id,
4496                  struct rte_mbuf **rx_pkts, const uint16_t nb_pkts)
4497 {
4498         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
4499         uint16_t nb_rx;
4500
4501 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4502         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, 0);
4503         RTE_FUNC_PTR_OR_ERR_RET(*dev->rx_pkt_burst, 0);
4504
4505         if (queue_id >= dev->data->nb_rx_queues) {
4506                 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id);
4507                 return 0;
4508         }
4509 #endif
4510         nb_rx = (*dev->rx_pkt_burst)(dev->data->rx_queues[queue_id],
4511                                      rx_pkts, nb_pkts);
4512
4513 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
4514         if (unlikely(dev->post_rx_burst_cbs[queue_id] != NULL)) {
4515                 struct rte_eth_rxtx_callback *cb =
4516                                 dev->post_rx_burst_cbs[queue_id];
4517
4518                 do {
4519                         nb_rx = cb->fn.rx(port_id, queue_id, rx_pkts, nb_rx,
4520                                                 nb_pkts, cb->param);
4521                         cb = cb->next;
4522                 } while (cb != NULL);
4523         }
4524 #endif
4525
4526         rte_ethdev_trace_rx_burst(port_id, queue_id, (void **)rx_pkts, nb_rx);
4527         return nb_rx;
4528 }
4529
4530 /**
4531  * Get the number of used descriptors of a rx queue
4532  *
4533  * @param port_id
4534  *  The port identifier of the Ethernet device.
4535  * @param queue_id
4536  *  The queue id on the specific port.
4537  * @return
4538  *  The number of used descriptors in the specific queue, or:
4539  *     (-EINVAL) if *port_id* or *queue_id* is invalid
4540  *     (-ENOTSUP) if the device does not support this function
4541  */
4542 static inline int
4543 rte_eth_rx_queue_count(uint16_t port_id, uint16_t queue_id)
4544 {
4545         struct rte_eth_dev *dev;
4546
4547         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
4548         dev = &rte_eth_devices[port_id];
4549         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_count, -ENOTSUP);
4550         if (queue_id >= dev->data->nb_rx_queues)
4551                 return -EINVAL;
4552
4553         return (int)(*dev->dev_ops->rx_queue_count)(dev, queue_id);
4554 }
4555
4556 /**
4557  * Check if the DD bit of the specific RX descriptor in the queue has been set
4558  *
4559  * @param port_id
4560  *  The port identifier of the Ethernet device.
4561  * @param queue_id
4562  *  The queue id on the specific port.
4563  * @param offset
4564  *  The offset of the descriptor ID from tail.
4565  * @return
4566  *  - (1) if the specific DD bit is set.
4567  *  - (0) if the specific DD bit is not set.
4568  *  - (-ENODEV) if *port_id* invalid.
4569  *  - (-ENOTSUP) if the device does not support this function
4570  */
4571 static inline int
4572 rte_eth_rx_descriptor_done(uint16_t port_id, uint16_t queue_id, uint16_t offset)
4573 {
4574         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
4575         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4576         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_descriptor_done, -ENOTSUP);
4577         return (*dev->dev_ops->rx_descriptor_done)( \
4578                 dev->data->rx_queues[queue_id], offset);
4579 }
4580
4581 #define RTE_ETH_RX_DESC_AVAIL    0 /**< Desc available for hw. */
4582 #define RTE_ETH_RX_DESC_DONE     1 /**< Desc done, filled by hw. */
4583 #define RTE_ETH_RX_DESC_UNAVAIL  2 /**< Desc used by driver or hw. */
4584
4585 /**
4586  * Check the status of a Rx descriptor in the queue
4587  *
4588  * It should be called in a similar context than the Rx function:
4589  * - on a dataplane core
4590  * - not concurrently on the same queue
4591  *
4592  * Since it's a dataplane function, no check is performed on port_id and
4593  * queue_id. The caller must therefore ensure that the port is enabled
4594  * and the queue is configured and running.
4595  *
4596  * Note: accessing to a random descriptor in the ring may trigger cache
4597  * misses and have a performance impact.
4598  *
4599  * @param port_id
4600  *  A valid port identifier of the Ethernet device which.
4601  * @param queue_id
4602  *  A valid Rx queue identifier on this port.
4603  * @param offset
4604  *  The offset of the descriptor starting from tail (0 is the next
4605  *  packet to be received by the driver).
4606  *
4607  * @return
4608  *  - (RTE_ETH_RX_DESC_AVAIL): Descriptor is available for the hardware to
4609  *    receive a packet.
4610  *  - (RTE_ETH_RX_DESC_DONE): Descriptor is done, it is filled by hw, but
4611  *    not yet processed by the driver (i.e. in the receive queue).
4612  *  - (RTE_ETH_RX_DESC_UNAVAIL): Descriptor is unavailable, either hold by
4613  *    the driver and not yet returned to hw, or reserved by the hw.
4614  *  - (-EINVAL) bad descriptor offset.
4615  *  - (-ENOTSUP) if the device does not support this function.
4616  *  - (-ENODEV) bad port or queue (only if compiled with debug).
4617  */
4618 static inline int
4619 rte_eth_rx_descriptor_status(uint16_t port_id, uint16_t queue_id,
4620         uint16_t offset)
4621 {
4622         struct rte_eth_dev *dev;
4623         void *rxq;
4624
4625 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4626         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4627 #endif
4628         dev = &rte_eth_devices[port_id];
4629 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4630         if (queue_id >= dev->data->nb_rx_queues)
4631                 return -ENODEV;
4632 #endif
4633         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_descriptor_status, -ENOTSUP);
4634         rxq = dev->data->rx_queues[queue_id];
4635
4636         return (*dev->dev_ops->rx_descriptor_status)(rxq, offset);
4637 }
4638
4639 #define RTE_ETH_TX_DESC_FULL    0 /**< Desc filled for hw, waiting xmit. */
4640 #define RTE_ETH_TX_DESC_DONE    1 /**< Desc done, packet is transmitted. */
4641 #define RTE_ETH_TX_DESC_UNAVAIL 2 /**< Desc used by driver or hw. */
4642
4643 /**
4644  * Check the status of a Tx descriptor in the queue.
4645  *
4646  * It should be called in a similar context than the Tx function:
4647  * - on a dataplane core
4648  * - not concurrently on the same queue
4649  *
4650  * Since it's a dataplane function, no check is performed on port_id and
4651  * queue_id. The caller must therefore ensure that the port is enabled
4652  * and the queue is configured and running.
4653  *
4654  * Note: accessing to a random descriptor in the ring may trigger cache
4655  * misses and have a performance impact.
4656  *
4657  * @param port_id
4658  *  A valid port identifier of the Ethernet device which.
4659  * @param queue_id
4660  *  A valid Tx queue identifier on this port.
4661  * @param offset
4662  *  The offset of the descriptor starting from tail (0 is the place where
4663  *  the next packet will be send).
4664  *
4665  * @return
4666  *  - (RTE_ETH_TX_DESC_FULL) Descriptor is being processed by the hw, i.e.
4667  *    in the transmit queue.
4668  *  - (RTE_ETH_TX_DESC_DONE) Hardware is done with this descriptor, it can
4669  *    be reused by the driver.
4670  *  - (RTE_ETH_TX_DESC_UNAVAIL): Descriptor is unavailable, reserved by the
4671  *    driver or the hardware.
4672  *  - (-EINVAL) bad descriptor offset.
4673  *  - (-ENOTSUP) if the device does not support this function.
4674  *  - (-ENODEV) bad port or queue (only if compiled with debug).
4675  */
4676 static inline int rte_eth_tx_descriptor_status(uint16_t port_id,
4677         uint16_t queue_id, uint16_t offset)
4678 {
4679         struct rte_eth_dev *dev;
4680         void *txq;
4681
4682 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4683         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4684 #endif
4685         dev = &rte_eth_devices[port_id];
4686 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4687         if (queue_id >= dev->data->nb_tx_queues)
4688                 return -ENODEV;
4689 #endif
4690         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_descriptor_status, -ENOTSUP);
4691         txq = dev->data->tx_queues[queue_id];
4692
4693         return (*dev->dev_ops->tx_descriptor_status)(txq, offset);
4694 }
4695
4696 /**
4697  * Send a burst of output packets on a transmit queue of an Ethernet device.
4698  *
4699  * The rte_eth_tx_burst() function is invoked to transmit output packets
4700  * on the output queue *queue_id* of the Ethernet device designated by its
4701  * *port_id*.
4702  * The *nb_pkts* parameter is the number of packets to send which are
4703  * supplied in the *tx_pkts* array of *rte_mbuf* structures, each of them
4704  * allocated from a pool created with rte_pktmbuf_pool_create().
4705  * The rte_eth_tx_burst() function loops, sending *nb_pkts* packets,
4706  * up to the number of transmit descriptors available in the TX ring of the
4707  * transmit queue.
4708  * For each packet to send, the rte_eth_tx_burst() function performs
4709  * the following operations:
4710  *
4711  * - Pick up the next available descriptor in the transmit ring.
4712  *
4713  * - Free the network buffer previously sent with that descriptor, if any.
4714  *
4715  * - Initialize the transmit descriptor with the information provided
4716  *   in the *rte_mbuf data structure.
4717  *
4718  * In the case of a segmented packet composed of a list of *rte_mbuf* buffers,
4719  * the rte_eth_tx_burst() function uses several transmit descriptors
4720  * of the ring.
4721  *
4722  * The rte_eth_tx_burst() function returns the number of packets it
4723  * actually sent. A return value equal to *nb_pkts* means that all packets
4724  * have been sent, and this is likely to signify that other output packets
4725  * could be immediately transmitted again. Applications that implement a
4726  * "send as many packets to transmit as possible" policy can check this
4727  * specific case and keep invoking the rte_eth_tx_burst() function until
4728  * a value less than *nb_pkts* is returned.
4729  *
4730  * It is the responsibility of the rte_eth_tx_burst() function to
4731  * transparently free the memory buffers of packets previously sent.
4732  * This feature is driven by the *tx_free_thresh* value supplied to the
4733  * rte_eth_dev_configure() function at device configuration time.
4734  * When the number of free TX descriptors drops below this threshold, the
4735  * rte_eth_tx_burst() function must [attempt to] free the *rte_mbuf*  buffers
4736  * of those packets whose transmission was effectively completed.
4737  *
4738  * If the PMD is DEV_TX_OFFLOAD_MT_LOCKFREE capable, multiple threads can
4739  * invoke this function concurrently on the same tx queue without SW lock.
4740  * @see rte_eth_dev_info_get, struct rte_eth_txconf::offloads
4741  *
4742  * @see rte_eth_tx_prepare to perform some prior checks or adjustments
4743  * for offloads.
4744  *
4745  * @param port_id
4746  *   The port identifier of the Ethernet device.
4747  * @param queue_id
4748  *   The index of the transmit queue through which output packets must be
4749  *   sent.
4750  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
4751  *   to rte_eth_dev_configure().
4752  * @param tx_pkts
4753  *   The address of an array of *nb_pkts* pointers to *rte_mbuf* structures
4754  *   which contain the output packets.
4755  * @param nb_pkts
4756  *   The maximum number of packets to transmit.
4757  * @return
4758  *   The number of output packets actually stored in transmit descriptors of
4759  *   the transmit ring. The return value can be less than the value of the
4760  *   *tx_pkts* parameter when the transmit ring is full or has been filled up.
4761  */
4762 static inline uint16_t
4763 rte_eth_tx_burst(uint16_t port_id, uint16_t queue_id,
4764                  struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
4765 {
4766         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
4767
4768 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4769         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, 0);
4770         RTE_FUNC_PTR_OR_ERR_RET(*dev->tx_pkt_burst, 0);
4771
4772         if (queue_id >= dev->data->nb_tx_queues) {
4773                 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id);
4774                 return 0;
4775         }
4776 #endif
4777
4778 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
4779         struct rte_eth_rxtx_callback *cb = dev->pre_tx_burst_cbs[queue_id];
4780
4781         if (unlikely(cb != NULL)) {
4782                 do {
4783                         nb_pkts = cb->fn.tx(port_id, queue_id, tx_pkts, nb_pkts,
4784                                         cb->param);
4785                         cb = cb->next;
4786                 } while (cb != NULL);
4787         }
4788 #endif
4789
4790         rte_ethdev_trace_tx_burst(port_id, queue_id, (void **)tx_pkts,
4791                 nb_pkts);
4792         return (*dev->tx_pkt_burst)(dev->data->tx_queues[queue_id], tx_pkts, nb_pkts);
4793 }
4794
4795 /**
4796  * Process a burst of output packets on a transmit queue of an Ethernet device.
4797  *
4798  * The rte_eth_tx_prepare() function is invoked to prepare output packets to be
4799  * transmitted on the output queue *queue_id* of the Ethernet device designated
4800  * by its *port_id*.
4801  * The *nb_pkts* parameter is the number of packets to be prepared which are
4802  * supplied in the *tx_pkts* array of *rte_mbuf* structures, each of them
4803  * allocated from a pool created with rte_pktmbuf_pool_create().
4804  * For each packet to send, the rte_eth_tx_prepare() function performs
4805  * the following operations:
4806  *
4807  * - Check if packet meets devices requirements for tx offloads.
4808  *
4809  * - Check limitations about number of segments.
4810  *
4811  * - Check additional requirements when debug is enabled.
4812  *
4813  * - Update and/or reset required checksums when tx offload is set for packet.
4814  *
4815  * Since this function can modify packet data, provided mbufs must be safely
4816  * writable (e.g. modified data cannot be in shared segment).
4817  *
4818  * The rte_eth_tx_prepare() function returns the number of packets ready to be
4819  * sent. A return value equal to *nb_pkts* means that all packets are valid and
4820  * ready to be sent, otherwise stops processing on the first invalid packet and
4821  * leaves the rest packets untouched.
4822  *
4823  * When this functionality is not implemented in the driver, all packets are
4824  * are returned untouched.
4825  *
4826  * @param port_id
4827  *   The port identifier of the Ethernet device.
4828  *   The value must be a valid port id.
4829  * @param queue_id
4830  *   The index of the transmit queue through which output packets must be
4831  *   sent.
4832  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
4833  *   to rte_eth_dev_configure().
4834  * @param tx_pkts
4835  *   The address of an array of *nb_pkts* pointers to *rte_mbuf* structures
4836  *   which contain the output packets.
4837  * @param nb_pkts
4838  *   The maximum number of packets to process.
4839  * @return
4840  *   The number of packets correct and ready to be sent. The return value can be
4841  *   less than the value of the *tx_pkts* parameter when some packet doesn't
4842  *   meet devices requirements with rte_errno set appropriately:
4843  *   - EINVAL: offload flags are not correctly set
4844  *   - ENOTSUP: the offload feature is not supported by the hardware
4845  *
4846  */
4847
4848 #ifndef RTE_ETHDEV_TX_PREPARE_NOOP
4849
4850 static inline uint16_t
4851 rte_eth_tx_prepare(uint16_t port_id, uint16_t queue_id,
4852                 struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
4853 {
4854         struct rte_eth_dev *dev;
4855
4856 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4857         if (!rte_eth_dev_is_valid_port(port_id)) {
4858                 RTE_ETHDEV_LOG(ERR, "Invalid TX port_id=%u\n", port_id);
4859                 rte_errno = EINVAL;
4860                 return 0;
4861         }
4862 #endif
4863
4864         dev = &rte_eth_devices[port_id];
4865
4866 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
4867         if (queue_id >= dev->data->nb_tx_queues) {
4868                 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id);
4869                 rte_errno = EINVAL;
4870                 return 0;
4871         }
4872 #endif
4873
4874         if (!dev->tx_pkt_prepare)
4875                 return nb_pkts;
4876
4877         return (*dev->tx_pkt_prepare)(dev->data->tx_queues[queue_id],
4878                         tx_pkts, nb_pkts);
4879 }
4880
4881 #else
4882
4883 /*
4884  * Native NOOP operation for compilation targets which doesn't require any
4885  * preparations steps, and functional NOOP may introduce unnecessary performance
4886  * drop.
4887  *
4888  * Generally this is not a good idea to turn it on globally and didn't should
4889  * be used if behavior of tx_preparation can change.
4890  */
4891
4892 static inline uint16_t
4893 rte_eth_tx_prepare(__rte_unused uint16_t port_id,
4894                 __rte_unused uint16_t queue_id,
4895                 __rte_unused struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
4896 {
4897         return nb_pkts;
4898 }
4899
4900 #endif
4901
4902 /**
4903  * Send any packets queued up for transmission on a port and HW queue
4904  *
4905  * This causes an explicit flush of packets previously buffered via the
4906  * rte_eth_tx_buffer() function. It returns the number of packets successfully
4907  * sent to the NIC, and calls the error callback for any unsent packets. Unless
4908  * explicitly set up otherwise, the default callback simply frees the unsent
4909  * packets back to the owning mempool.
4910  *
4911  * @param port_id
4912  *   The port identifier of the Ethernet device.
4913  * @param queue_id
4914  *   The index of the transmit queue through which output packets must be
4915  *   sent.
4916  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
4917  *   to rte_eth_dev_configure().
4918  * @param buffer
4919  *   Buffer of packets to be transmit.
4920  * @return
4921  *   The number of packets successfully sent to the Ethernet device. The error
4922  *   callback is called for any packets which could not be sent.
4923  */
4924 static inline uint16_t
4925 rte_eth_tx_buffer_flush(uint16_t port_id, uint16_t queue_id,
4926                 struct rte_eth_dev_tx_buffer *buffer)
4927 {
4928         uint16_t sent;
4929         uint16_t to_send = buffer->length;
4930
4931         if (to_send == 0)
4932                 return 0;
4933
4934         sent = rte_eth_tx_burst(port_id, queue_id, buffer->pkts, to_send);
4935
4936         buffer->length = 0;
4937
4938         /* All packets sent, or to be dealt with by callback below */
4939         if (unlikely(sent != to_send))
4940                 buffer->error_callback(&buffer->pkts[sent],
4941                                        (uint16_t)(to_send - sent),
4942                                        buffer->error_userdata);
4943
4944         return sent;
4945 }
4946
4947 /**
4948  * Buffer a single packet for future transmission on a port and queue
4949  *
4950  * This function takes a single mbuf/packet and buffers it for later
4951  * transmission on the particular port and queue specified. Once the buffer is
4952  * full of packets, an attempt will be made to transmit all the buffered
4953  * packets. In case of error, where not all packets can be transmitted, a
4954  * callback is called with the unsent packets as a parameter. If no callback
4955  * is explicitly set up, the unsent packets are just freed back to the owning
4956  * mempool. The function returns the number of packets actually sent i.e.
4957  * 0 if no buffer flush occurred, otherwise the number of packets successfully
4958  * flushed
4959  *
4960  * @param port_id
4961  *   The port identifier of the Ethernet device.
4962  * @param queue_id
4963  *   The index of the transmit queue through which output packets must be
4964  *   sent.
4965  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
4966  *   to rte_eth_dev_configure().
4967  * @param buffer
4968  *   Buffer used to collect packets to be sent.
4969  * @param tx_pkt
4970  *   Pointer to the packet mbuf to be sent.
4971  * @return
4972  *   0 = packet has been buffered for later transmission
4973  *   N > 0 = packet has been buffered, and the buffer was subsequently flushed,
4974  *     causing N packets to be sent, and the error callback to be called for
4975  *     the rest.
4976  */
4977 static __rte_always_inline uint16_t
4978 rte_eth_tx_buffer(uint16_t port_id, uint16_t queue_id,
4979                 struct rte_eth_dev_tx_buffer *buffer, struct rte_mbuf *tx_pkt)
4980 {
4981         buffer->pkts[buffer->length++] = tx_pkt;
4982         if (buffer->length < buffer->size)
4983                 return 0;
4984
4985         return rte_eth_tx_buffer_flush(port_id, queue_id, buffer);
4986 }
4987
4988 #ifdef __cplusplus
4989 }
4990 #endif
4991
4992 #endif /* _RTE_ETHDEV_H_ */