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