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