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