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