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