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