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