544afe09e41da67af5a63feef9566ab181f5f441
[dpdk.git] / lib / librte_ether / rte_ethdev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 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 tramsit 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  * after 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_pci.h>
181 #include <rte_dev.h>
182 #include <rte_devargs.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  */
192 struct rte_eth_stats {
193         uint64_t ipackets;  /**< Total number of successfully received packets. */
194         uint64_t opackets;  /**< Total number of successfully transmitted packets.*/
195         uint64_t ibytes;    /**< Total number of successfully received bytes. */
196         uint64_t obytes;    /**< Total number of successfully transmitted bytes. */
197         uint64_t imissed;
198         /**< Deprecated; Total of RX missed packets (e.g full FIFO). */
199         uint64_t ibadcrc;
200         /**< Deprecated; Total of RX packets with CRC error. */
201         uint64_t ibadlen;
202         /**< Deprecated; Total of RX packets with bad length. */
203         uint64_t ierrors;   /**< Total number of erroneous received packets. */
204         uint64_t oerrors;   /**< Total number of failed transmitted packets. */
205         uint64_t imcasts;
206         /**< Deprecated; Total number of multicast received packets. */
207         uint64_t rx_nombuf; /**< Total number of RX mbuf allocation failures. */
208         uint64_t fdirmatch;
209         /**< Deprecated; Total number of RX packets matching a filter. */
210         uint64_t fdirmiss;
211         /**< Deprecated; Total number of RX packets not matching any filter. */
212         uint64_t tx_pause_xon;
213          /**< Deprecated; Total nb. of XON pause frame sent. */
214         uint64_t rx_pause_xon;
215         /**< Deprecated; Total nb. of XON pause frame received. */
216         uint64_t tx_pause_xoff;
217         /**< Deprecated; Total nb. of XOFF pause frame sent. */
218         uint64_t rx_pause_xoff;
219         /**< Deprecated; Total nb. of XOFF pause frame received. */
220         uint64_t q_ipackets[RTE_ETHDEV_QUEUE_STAT_CNTRS];
221         /**< Total number of queue RX packets. */
222         uint64_t q_opackets[RTE_ETHDEV_QUEUE_STAT_CNTRS];
223         /**< Total number of queue TX packets. */
224         uint64_t q_ibytes[RTE_ETHDEV_QUEUE_STAT_CNTRS];
225         /**< Total number of successfully received queue bytes. */
226         uint64_t q_obytes[RTE_ETHDEV_QUEUE_STAT_CNTRS];
227         /**< Total number of successfully transmitted queue bytes. */
228         uint64_t q_errors[RTE_ETHDEV_QUEUE_STAT_CNTRS];
229         /**< Total number of queue packets received that are dropped. */
230         uint64_t ilbpackets;
231         /**< Total number of good packets received from loopback,VF Only */
232         uint64_t olbpackets;
233         /**< Total number of good packets transmitted to loopback,VF Only */
234         uint64_t ilbbytes;
235         /**< Total number of good bytes received from loopback,VF Only */
236         uint64_t olbbytes;
237         /**< Total number of good bytes transmitted to loopback,VF Only */
238 };
239
240 /**
241  * A structure used to retrieve link-level information of an Ethernet port.
242  */
243 struct rte_eth_link {
244         uint16_t link_speed;      /**< ETH_LINK_SPEED_[10, 100, 1000, 10000] */
245         uint16_t link_duplex;     /**< ETH_LINK_[HALF_DUPLEX, FULL_DUPLEX] */
246         uint8_t  link_status : 1; /**< 1 -> link up, 0 -> link down */
247 }__attribute__((aligned(8)));     /**< aligned for atomic64 read/write */
248
249 #define ETH_LINK_SPEED_AUTONEG  0       /**< Auto-negotiate link speed. */
250 #define ETH_LINK_SPEED_10       10      /**< 10 megabits/second. */
251 #define ETH_LINK_SPEED_100      100     /**< 100 megabits/second. */
252 #define ETH_LINK_SPEED_1000     1000    /**< 1 gigabits/second. */
253 #define ETH_LINK_SPEED_10000    10000   /**< 10 gigabits/second. */
254 #define ETH_LINK_SPEED_10G      10000   /**< alias of 10 gigabits/second. */
255 #define ETH_LINK_SPEED_20G      20000   /**< 20 gigabits/second. */
256 #define ETH_LINK_SPEED_40G      40000   /**< 40 gigabits/second. */
257
258 #define ETH_LINK_AUTONEG_DUPLEX 0       /**< Auto-negotiate duplex. */
259 #define ETH_LINK_HALF_DUPLEX    1       /**< Half-duplex connection. */
260 #define ETH_LINK_FULL_DUPLEX    2       /**< Full-duplex connection. */
261
262 /**
263  * A structure used to configure the ring threshold registers of an RX/TX
264  * queue for an Ethernet port.
265  */
266 struct rte_eth_thresh {
267         uint8_t pthresh; /**< Ring prefetch threshold. */
268         uint8_t hthresh; /**< Ring host threshold. */
269         uint8_t wthresh; /**< Ring writeback threshold. */
270 };
271
272 /**
273  *  Simple flags are used for rte_eth_conf.rxmode.mq_mode.
274  */
275 #define ETH_MQ_RX_RSS_FLAG  0x1
276 #define ETH_MQ_RX_DCB_FLAG  0x2
277 #define ETH_MQ_RX_VMDQ_FLAG 0x4
278
279 /**
280  *  A set of values to identify what method is to be used to route
281  *  packets to multiple queues.
282  */
283 enum rte_eth_rx_mq_mode {
284         /** None of DCB,RSS or VMDQ mode */
285         ETH_MQ_RX_NONE = 0,
286
287         /** For RX side, only RSS is on */
288         ETH_MQ_RX_RSS = ETH_MQ_RX_RSS_FLAG,
289         /** For RX side,only DCB is on. */
290         ETH_MQ_RX_DCB = ETH_MQ_RX_DCB_FLAG,
291         /** Both DCB and RSS enable */
292         ETH_MQ_RX_DCB_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_DCB_FLAG,
293
294         /** Only VMDQ, no RSS nor DCB */
295         ETH_MQ_RX_VMDQ_ONLY = ETH_MQ_RX_VMDQ_FLAG,
296         /** RSS mode with VMDQ */
297         ETH_MQ_RX_VMDQ_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_VMDQ_FLAG,
298         /** Use VMDQ+DCB to route traffic to queues */
299         ETH_MQ_RX_VMDQ_DCB = ETH_MQ_RX_VMDQ_FLAG | ETH_MQ_RX_DCB_FLAG,
300         /** Enable both VMDQ and DCB in VMDq */
301         ETH_MQ_RX_VMDQ_DCB_RSS = ETH_MQ_RX_RSS_FLAG | ETH_MQ_RX_DCB_FLAG |
302                                  ETH_MQ_RX_VMDQ_FLAG,
303 };
304
305 /**
306  * for rx mq mode backward compatible
307  */
308 #define ETH_RSS                       ETH_MQ_RX_RSS
309 #define VMDQ_DCB                      ETH_MQ_RX_VMDQ_DCB
310 #define ETH_DCB_RX                    ETH_MQ_RX_DCB
311
312 /**
313  * A set of values to identify what method is to be used to transmit
314  * packets using multi-TCs.
315  */
316 enum rte_eth_tx_mq_mode {
317         ETH_MQ_TX_NONE    = 0,  /**< It is in neither DCB nor VT mode. */
318         ETH_MQ_TX_DCB,          /**< For TX side,only DCB is on. */
319         ETH_MQ_TX_VMDQ_DCB,     /**< For TX side,both DCB and VT is on. */
320         ETH_MQ_TX_VMDQ_ONLY,    /**< Only VT on, no DCB */
321 };
322
323 /**
324  * for tx mq mode backward compatible
325  */
326 #define ETH_DCB_NONE                ETH_MQ_TX_NONE
327 #define ETH_VMDQ_DCB_TX             ETH_MQ_TX_VMDQ_DCB
328 #define ETH_DCB_TX                  ETH_MQ_TX_DCB
329
330 /**
331  * A structure used to configure the RX features of an Ethernet port.
332  */
333 struct rte_eth_rxmode {
334         /** The multi-queue packet distribution mode to be used, e.g. RSS. */
335         enum rte_eth_rx_mq_mode mq_mode;
336         uint32_t max_rx_pkt_len;  /**< Only used if jumbo_frame enabled. */
337         uint16_t split_hdr_size;  /**< hdr buf size (header_split enabled).*/
338         uint16_t header_split : 1, /**< Header Split enable. */
339                 hw_ip_checksum   : 1, /**< IP/UDP/TCP checksum offload enable. */
340                 hw_vlan_filter   : 1, /**< VLAN filter enable. */
341                 hw_vlan_strip    : 1, /**< VLAN strip enable. */
342                 hw_vlan_extend   : 1, /**< Extended VLAN enable. */
343                 jumbo_frame      : 1, /**< Jumbo Frame Receipt enable. */
344                 hw_strip_crc     : 1, /**< Enable CRC stripping by hardware. */
345                 enable_scatter   : 1, /**< Enable scatter packets rx handler */
346                 enable_lro       : 1; /**< Enable LRO */
347 };
348
349 /**
350  * A structure used to configure the Receive Side Scaling (RSS) feature
351  * of an Ethernet port.
352  * If not NULL, the *rss_key* pointer of the *rss_conf* structure points
353  * to an array holding the RSS key to use for hashing specific header
354  * fields of received packets. The length of this array should be indicated
355  * by *rss_key_len* below. Otherwise, a default random hash key is used by
356  * the device driver.
357  *
358  * The *rss_key_len* field of the *rss_conf* structure indicates the length
359  * in bytes of the array pointed by *rss_key*. To be compatible, this length
360  * will be checked in i40e only. Others assume 40 bytes to be used as before.
361  *
362  * The *rss_hf* field of the *rss_conf* structure indicates the different
363  * types of IPv4/IPv6 packets to which the RSS hashing must be applied.
364  * Supplying an *rss_hf* equal to zero disables the RSS feature.
365  */
366 struct rte_eth_rss_conf {
367         uint8_t *rss_key;    /**< If not NULL, 40-byte hash key. */
368         uint8_t rss_key_len; /**< hash key length in bytes. */
369         uint64_t rss_hf;     /**< Hash functions to apply - see below. */
370 };
371
372 /*
373  * The RSS offload types are defined based on flow types which are defined
374  * in rte_eth_ctrl.h. Different NIC hardwares may support different RSS offload
375  * types. The supported flow types or RSS offload types can be queried by
376  * rte_eth_dev_info_get().
377  */
378 #define ETH_RSS_IPV4               (1ULL << RTE_ETH_FLOW_IPV4)
379 #define ETH_RSS_FRAG_IPV4          (1ULL << RTE_ETH_FLOW_FRAG_IPV4)
380 #define ETH_RSS_NONFRAG_IPV4_TCP   (1ULL << RTE_ETH_FLOW_NONFRAG_IPV4_TCP)
381 #define ETH_RSS_NONFRAG_IPV4_UDP   (1ULL << RTE_ETH_FLOW_NONFRAG_IPV4_UDP)
382 #define ETH_RSS_NONFRAG_IPV4_SCTP  (1ULL << RTE_ETH_FLOW_NONFRAG_IPV4_SCTP)
383 #define ETH_RSS_NONFRAG_IPV4_OTHER (1ULL << RTE_ETH_FLOW_NONFRAG_IPV4_OTHER)
384 #define ETH_RSS_IPV6               (1ULL << RTE_ETH_FLOW_IPV6)
385 #define ETH_RSS_FRAG_IPV6          (1ULL << RTE_ETH_FLOW_FRAG_IPV6)
386 #define ETH_RSS_NONFRAG_IPV6_TCP   (1ULL << RTE_ETH_FLOW_NONFRAG_IPV6_TCP)
387 #define ETH_RSS_NONFRAG_IPV6_UDP   (1ULL << RTE_ETH_FLOW_NONFRAG_IPV6_UDP)
388 #define ETH_RSS_NONFRAG_IPV6_SCTP  (1ULL << RTE_ETH_FLOW_NONFRAG_IPV6_SCTP)
389 #define ETH_RSS_NONFRAG_IPV6_OTHER (1ULL << RTE_ETH_FLOW_NONFRAG_IPV6_OTHER)
390 #define ETH_RSS_L2_PAYLOAD         (1ULL << RTE_ETH_FLOW_L2_PAYLOAD)
391 #define ETH_RSS_IPV6_EX            (1ULL << RTE_ETH_FLOW_IPV6_EX)
392 #define ETH_RSS_IPV6_TCP_EX        (1ULL << RTE_ETH_FLOW_IPV6_TCP_EX)
393 #define ETH_RSS_IPV6_UDP_EX        (1ULL << RTE_ETH_FLOW_IPV6_UDP_EX)
394
395 #define ETH_RSS_IP ( \
396         ETH_RSS_IPV4 | \
397         ETH_RSS_FRAG_IPV4 | \
398         ETH_RSS_NONFRAG_IPV4_OTHER | \
399         ETH_RSS_IPV6 | \
400         ETH_RSS_FRAG_IPV6 | \
401         ETH_RSS_NONFRAG_IPV6_OTHER | \
402         ETH_RSS_IPV6_EX)
403
404 #define ETH_RSS_UDP ( \
405         ETH_RSS_NONFRAG_IPV4_UDP | \
406         ETH_RSS_NONFRAG_IPV6_UDP | \
407         ETH_RSS_IPV6_UDP_EX)
408
409 #define ETH_RSS_TCP ( \
410         ETH_RSS_NONFRAG_IPV4_TCP | \
411         ETH_RSS_NONFRAG_IPV6_TCP | \
412         ETH_RSS_IPV6_TCP_EX)
413
414 #define ETH_RSS_SCTP ( \
415         ETH_RSS_NONFRAG_IPV4_SCTP | \
416         ETH_RSS_NONFRAG_IPV6_SCTP)
417
418 /**< Mask of valid RSS hash protocols */
419 #define ETH_RSS_PROTO_MASK ( \
420         ETH_RSS_IPV4 | \
421         ETH_RSS_FRAG_IPV4 | \
422         ETH_RSS_NONFRAG_IPV4_TCP | \
423         ETH_RSS_NONFRAG_IPV4_UDP | \
424         ETH_RSS_NONFRAG_IPV4_SCTP | \
425         ETH_RSS_NONFRAG_IPV4_OTHER | \
426         ETH_RSS_IPV6 | \
427         ETH_RSS_FRAG_IPV6 | \
428         ETH_RSS_NONFRAG_IPV6_TCP | \
429         ETH_RSS_NONFRAG_IPV6_UDP | \
430         ETH_RSS_NONFRAG_IPV6_SCTP | \
431         ETH_RSS_NONFRAG_IPV6_OTHER | \
432         ETH_RSS_L2_PAYLOAD | \
433         ETH_RSS_IPV6_EX | \
434         ETH_RSS_IPV6_TCP_EX | \
435         ETH_RSS_IPV6_UDP_EX)
436
437 /*
438  * Definitions used for redirection table entry size.
439  * Some RSS RETA sizes may not be supported by some drivers, check the
440  * documentation or the description of relevant functions for more details.
441  */
442 #define ETH_RSS_RETA_SIZE_64  64
443 #define ETH_RSS_RETA_SIZE_128 128
444 #define ETH_RSS_RETA_SIZE_512 512
445 #define RTE_RETA_GROUP_SIZE   64
446
447 /* Definitions used for VMDQ and DCB functionality */
448 #define ETH_VMDQ_MAX_VLAN_FILTERS   64 /**< Maximum nb. of VMDQ vlan filters. */
449 #define ETH_DCB_NUM_USER_PRIORITIES 8  /**< Maximum nb. of DCB priorities. */
450 #define ETH_VMDQ_DCB_NUM_QUEUES     128 /**< Maximum nb. of VMDQ DCB queues. */
451 #define ETH_DCB_NUM_QUEUES          128 /**< Maximum nb. of DCB queues. */
452
453 /* DCB capability defines */
454 #define ETH_DCB_PG_SUPPORT      0x00000001 /**< Priority Group(ETS) support. */
455 #define ETH_DCB_PFC_SUPPORT     0x00000002 /**< Priority Flow Control support. */
456
457 /* Definitions used for VLAN Offload functionality */
458 #define ETH_VLAN_STRIP_OFFLOAD   0x0001 /**< VLAN Strip  On/Off */
459 #define ETH_VLAN_FILTER_OFFLOAD  0x0002 /**< VLAN Filter On/Off */
460 #define ETH_VLAN_EXTEND_OFFLOAD  0x0004 /**< VLAN Extend On/Off */
461
462 /* Definitions used for mask VLAN setting */
463 #define ETH_VLAN_STRIP_MASK   0x0001 /**< VLAN Strip  setting mask */
464 #define ETH_VLAN_FILTER_MASK  0x0002 /**< VLAN Filter  setting mask*/
465 #define ETH_VLAN_EXTEND_MASK  0x0004 /**< VLAN Extend  setting mask*/
466 #define ETH_VLAN_ID_MAX       0x0FFF /**< VLAN ID is in lower 12 bits*/
467
468 /* Definitions used for receive MAC address   */
469 #define ETH_NUM_RECEIVE_MAC_ADDR  128 /**< Maximum nb. of receive mac addr. */
470
471 /* Definitions used for unicast hash  */
472 #define ETH_VMDQ_NUM_UC_HASH_ARRAY  128 /**< Maximum nb. of UC hash array. */
473
474 /* Definitions used for VMDQ pool rx mode setting */
475 #define ETH_VMDQ_ACCEPT_UNTAG   0x0001 /**< accept untagged packets. */
476 #define ETH_VMDQ_ACCEPT_HASH_MC 0x0002 /**< accept packets in multicast table . */
477 #define ETH_VMDQ_ACCEPT_HASH_UC 0x0004 /**< accept packets in unicast table. */
478 #define ETH_VMDQ_ACCEPT_BROADCAST   0x0008 /**< accept broadcast packets. */
479 #define ETH_VMDQ_ACCEPT_MULTICAST   0x0010 /**< multicast promiscuous. */
480
481 /** Maximum nb. of vlan per mirror rule */
482 #define ETH_MIRROR_MAX_VLANS       64
483
484 #define ETH_MIRROR_VIRTUAL_POOL_UP     0x01  /**< Virtual Pool uplink Mirroring. */
485 #define ETH_MIRROR_UPLINK_PORT         0x02  /**< Uplink Port Mirroring. */
486 #define ETH_MIRROR_DOWNLINK_PORT       0x04  /**< Downlink Port Mirroring. */
487 #define ETH_MIRROR_VLAN                0x08  /**< VLAN Mirroring. */
488 #define ETH_MIRROR_VIRTUAL_POOL_DOWN   0x10  /**< Virtual Pool downlink Mirroring. */
489
490 /**
491  * A structure used to configure VLAN traffic mirror of an Ethernet port.
492  */
493 struct rte_eth_vlan_mirror {
494         uint64_t vlan_mask; /**< mask for valid VLAN ID. */
495         /** VLAN ID list for vlan mirroring. */
496         uint16_t vlan_id[ETH_MIRROR_MAX_VLANS];
497 };
498
499 /**
500  * A structure used to configure traffic mirror of an Ethernet port.
501  */
502 struct rte_eth_mirror_conf {
503         uint8_t rule_type; /**< Mirroring rule type */
504         uint8_t dst_pool;  /**< Destination pool for this mirror rule. */
505         uint64_t pool_mask; /**< Bitmap of pool for pool mirroring */
506         /** VLAN ID setting for VLAN mirroring. */
507         struct rte_eth_vlan_mirror vlan;
508 };
509
510 /**
511  * A structure used to configure 64 entries of Redirection Table of the
512  * Receive Side Scaling (RSS) feature of an Ethernet port. To configure
513  * more than 64 entries supported by hardware, an array of this structure
514  * is needed.
515  */
516 struct rte_eth_rss_reta_entry64 {
517         uint64_t mask;
518         /**< Mask bits indicate which entries need to be updated/queried. */
519         uint8_t reta[RTE_RETA_GROUP_SIZE];
520         /**< Group of 64 redirection table entries. */
521 };
522
523 /**
524  * This enum indicates the possible number of traffic classes
525  * in DCB configratioins
526  */
527 enum rte_eth_nb_tcs {
528         ETH_4_TCS = 4, /**< 4 TCs with DCB. */
529         ETH_8_TCS = 8  /**< 8 TCs with DCB. */
530 };
531
532 /**
533  * This enum indicates the possible number of queue pools
534  * in VMDQ configurations.
535  */
536 enum rte_eth_nb_pools {
537         ETH_8_POOLS = 8,    /**< 8 VMDq pools. */
538         ETH_16_POOLS = 16,  /**< 16 VMDq pools. */
539         ETH_32_POOLS = 32,  /**< 32 VMDq pools. */
540         ETH_64_POOLS = 64   /**< 64 VMDq pools. */
541 };
542
543 /* This structure may be extended in future. */
544 struct rte_eth_dcb_rx_conf {
545         enum rte_eth_nb_tcs nb_tcs; /**< Possible DCB TCs, 4 or 8 TCs */
546         uint8_t dcb_queue[ETH_DCB_NUM_USER_PRIORITIES];
547         /**< Possible DCB queue,4 or 8. */
548 };
549
550 struct rte_eth_vmdq_dcb_tx_conf {
551         enum rte_eth_nb_pools nb_queue_pools; /**< With DCB, 16 or 32 pools. */
552         uint8_t dcb_queue[ETH_DCB_NUM_USER_PRIORITIES];
553         /**< Possible DCB queue,4 or 8. */
554 };
555
556 struct rte_eth_dcb_tx_conf {
557         enum rte_eth_nb_tcs nb_tcs; /**< Possible DCB TCs, 4 or 8 TCs. */
558         uint8_t dcb_queue[ETH_DCB_NUM_USER_PRIORITIES];
559         /**< Possible DCB queue,4 or 8. */
560 };
561
562 struct rte_eth_vmdq_tx_conf {
563         enum rte_eth_nb_pools nb_queue_pools; /**< VMDq mode, 64 pools. */
564 };
565
566 /**
567  * A structure used to configure the VMDQ+DCB feature
568  * of an Ethernet port.
569  *
570  * Using this feature, packets are routed to a pool of queues, based
571  * on the vlan id in the vlan tag, and then to a specific queue within
572  * that pool, using the user priority vlan tag field.
573  *
574  * A default pool may be used, if desired, to route all traffic which
575  * does not match the vlan filter rules.
576  */
577 struct rte_eth_vmdq_dcb_conf {
578         enum rte_eth_nb_pools nb_queue_pools; /**< With DCB, 16 or 32 pools */
579         uint8_t enable_default_pool; /**< If non-zero, use a default pool */
580         uint8_t default_pool; /**< The default pool, if applicable */
581         uint8_t nb_pool_maps; /**< We can have up to 64 filters/mappings */
582         struct {
583                 uint16_t vlan_id; /**< The vlan id of the received frame */
584                 uint64_t pools;   /**< Bitmask of pools for packet rx */
585         } pool_map[ETH_VMDQ_MAX_VLAN_FILTERS]; /**< VMDq vlan pool maps. */
586         uint8_t dcb_queue[ETH_DCB_NUM_USER_PRIORITIES];
587         /**< Selects a queue in a pool */
588 };
589
590 struct rte_eth_vmdq_rx_conf {
591         enum rte_eth_nb_pools nb_queue_pools; /**< VMDq only mode, 8 or 64 pools */
592         uint8_t enable_default_pool; /**< If non-zero, use a default pool */
593         uint8_t default_pool; /**< The default pool, if applicable */
594         uint8_t enable_loop_back; /**< Enable VT loop back */
595         uint8_t nb_pool_maps; /**< We can have up to 64 filters/mappings */
596         uint32_t rx_mode; /**< Flags from ETH_VMDQ_ACCEPT_* */
597         struct {
598                 uint16_t vlan_id; /**< The vlan id of the received frame */
599                 uint64_t pools;   /**< Bitmask of pools for packet rx */
600         } pool_map[ETH_VMDQ_MAX_VLAN_FILTERS]; /**< VMDq vlan pool maps. */
601 };
602
603 /**
604  * A structure used to configure the TX features of an Ethernet port.
605  */
606 struct rte_eth_txmode {
607         enum rte_eth_tx_mq_mode mq_mode; /**< TX multi-queues mode. */
608
609         /* For i40e specifically */
610         uint16_t pvid;
611         uint8_t hw_vlan_reject_tagged : 1,
612                 /**< If set, reject sending out tagged pkts */
613                 hw_vlan_reject_untagged : 1,
614                 /**< If set, reject sending out untagged pkts */
615                 hw_vlan_insert_pvid : 1;
616                 /**< If set, enable port based VLAN insertion */
617 };
618
619 /**
620  * A structure used to configure an RX ring of an Ethernet port.
621  */
622 struct rte_eth_rxconf {
623         struct rte_eth_thresh rx_thresh; /**< RX ring threshold registers. */
624         uint16_t rx_free_thresh; /**< Drives the freeing of RX descriptors. */
625         uint8_t rx_drop_en; /**< Drop packets if no descriptors are available. */
626         uint8_t rx_deferred_start; /**< Do not start queue with rte_eth_dev_start(). */
627 };
628
629 #define ETH_TXQ_FLAGS_NOMULTSEGS 0x0001 /**< nb_segs=1 for all mbufs */
630 #define ETH_TXQ_FLAGS_NOREFCOUNT 0x0002 /**< refcnt can be ignored */
631 #define ETH_TXQ_FLAGS_NOMULTMEMP 0x0004 /**< all bufs come from same mempool */
632 #define ETH_TXQ_FLAGS_NOVLANOFFL 0x0100 /**< disable VLAN offload */
633 #define ETH_TXQ_FLAGS_NOXSUMSCTP 0x0200 /**< disable SCTP checksum offload */
634 #define ETH_TXQ_FLAGS_NOXSUMUDP  0x0400 /**< disable UDP checksum offload */
635 #define ETH_TXQ_FLAGS_NOXSUMTCP  0x0800 /**< disable TCP checksum offload */
636 #define ETH_TXQ_FLAGS_NOOFFLOADS \
637                 (ETH_TXQ_FLAGS_NOVLANOFFL | ETH_TXQ_FLAGS_NOXSUMSCTP | \
638                  ETH_TXQ_FLAGS_NOXSUMUDP  | ETH_TXQ_FLAGS_NOXSUMTCP)
639 #define ETH_TXQ_FLAGS_NOXSUMS \
640                 (ETH_TXQ_FLAGS_NOXSUMSCTP | ETH_TXQ_FLAGS_NOXSUMUDP | \
641                  ETH_TXQ_FLAGS_NOXSUMTCP)
642 /**
643  * A structure used to configure a TX ring of an Ethernet port.
644  */
645 struct rte_eth_txconf {
646         struct rte_eth_thresh tx_thresh; /**< TX ring threshold registers. */
647         uint16_t tx_rs_thresh; /**< Drives the setting of RS bit on TXDs. */
648         uint16_t tx_free_thresh; /**< Start freeing TX buffers if there are
649                                       less free descriptors than this value. */
650
651         uint32_t txq_flags; /**< Set flags for the Tx queue */
652         uint8_t tx_deferred_start; /**< Do not start queue with rte_eth_dev_start(). */
653 };
654
655 /**
656  * This enum indicates the flow control mode
657  */
658 enum rte_eth_fc_mode {
659         RTE_FC_NONE = 0, /**< Disable flow control. */
660         RTE_FC_RX_PAUSE, /**< RX pause frame, enable flowctrl on TX side. */
661         RTE_FC_TX_PAUSE, /**< TX pause frame, enable flowctrl on RX side. */
662         RTE_FC_FULL      /**< Enable flow control on both side. */
663 };
664
665 /**
666  * A structure used to configure Ethernet flow control parameter.
667  * These parameters will be configured into the register of the NIC.
668  * Please refer to the corresponding data sheet for proper value.
669  */
670 struct rte_eth_fc_conf {
671         uint32_t high_water;  /**< High threshold value to trigger XOFF */
672         uint32_t low_water;   /**< Low threshold value to trigger XON */
673         uint16_t pause_time;  /**< Pause quota in the Pause frame */
674         uint16_t send_xon;    /**< Is XON frame need be sent */
675         enum rte_eth_fc_mode mode;  /**< Link flow control mode */
676         uint8_t mac_ctrl_frame_fwd; /**< Forward MAC control frames */
677         uint8_t autoneg;      /**< Use Pause autoneg */
678 };
679
680 /**
681  * A structure used to configure Ethernet priority flow control parameter.
682  * These parameters will be configured into the register of the NIC.
683  * Please refer to the corresponding data sheet for proper value.
684  */
685 struct rte_eth_pfc_conf {
686         struct rte_eth_fc_conf fc; /**< General flow control parameter. */
687         uint8_t priority;          /**< VLAN User Priority. */
688 };
689
690 /**
691  *  Memory space that can be configured to store Flow Director filters
692  *  in the board memory.
693  */
694 enum rte_fdir_pballoc_type {
695         RTE_FDIR_PBALLOC_64K = 0,  /**< 64k. */
696         RTE_FDIR_PBALLOC_128K,     /**< 128k. */
697         RTE_FDIR_PBALLOC_256K,     /**< 256k. */
698 };
699
700 /**
701  *  Select report mode of FDIR hash information in RX descriptors.
702  */
703 enum rte_fdir_status_mode {
704         RTE_FDIR_NO_REPORT_STATUS = 0, /**< Never report FDIR hash. */
705         RTE_FDIR_REPORT_STATUS, /**< Only report FDIR hash for matching pkts. */
706         RTE_FDIR_REPORT_STATUS_ALWAYS, /**< Always report FDIR hash. */
707 };
708
709 /**
710  * A structure used to configure the Flow Director (FDIR) feature
711  * of an Ethernet port.
712  *
713  * If mode is RTE_FDIR_DISABLE, the pballoc value is ignored.
714  */
715 struct rte_fdir_conf {
716         enum rte_fdir_mode mode; /**< Flow Director mode. */
717         enum rte_fdir_pballoc_type pballoc; /**< Space for FDIR filters. */
718         enum rte_fdir_status_mode status;  /**< How to report FDIR hash. */
719         /** RX queue of packets matching a "drop" filter in perfect mode. */
720         uint8_t drop_queue;
721         struct rte_eth_fdir_masks mask;
722         struct rte_eth_fdir_flex_conf flex_conf;
723         /**< Flex payload configuration. */
724 };
725
726 /**
727  * UDP tunneling configuration.
728  */
729 struct rte_eth_udp_tunnel {
730         uint16_t udp_port;
731         uint8_t prot_type;
732 };
733
734 /**
735  *  Possible l4type of FDIR filters.
736  */
737 enum rte_l4type {
738         RTE_FDIR_L4TYPE_NONE = 0,       /**< None. */
739         RTE_FDIR_L4TYPE_UDP,            /**< UDP. */
740         RTE_FDIR_L4TYPE_TCP,            /**< TCP. */
741         RTE_FDIR_L4TYPE_SCTP,           /**< SCTP. */
742 };
743
744 /**
745  *  Select IPv4 or IPv6 FDIR filters.
746  */
747 enum rte_iptype {
748         RTE_FDIR_IPTYPE_IPV4 = 0,     /**< IPv4. */
749         RTE_FDIR_IPTYPE_IPV6 ,        /**< IPv6. */
750 };
751
752 /**
753  *  A structure used to define a FDIR packet filter.
754  */
755 struct rte_fdir_filter {
756         uint16_t flex_bytes; /**< Flex bytes value to match. */
757         uint16_t vlan_id; /**< VLAN ID value to match, 0 otherwise. */
758         uint16_t port_src; /**< Source port to match, 0 otherwise. */
759         uint16_t port_dst; /**< Destination port to match, 0 otherwise. */
760         union {
761                 uint32_t ipv4_addr; /**< IPv4 source address to match. */
762                 uint32_t ipv6_addr[4]; /**< IPv6 source address to match. */
763         } ip_src; /**< IPv4/IPv6 source address to match (union of above). */
764         union {
765                 uint32_t ipv4_addr; /**< IPv4 destination address to match. */
766                 uint32_t ipv6_addr[4]; /**< IPv6 destination address to match */
767         } ip_dst; /**< IPv4/IPv6 destination address to match (union of above). */
768         enum rte_l4type l4type; /**< l4type to match: NONE/UDP/TCP/SCTP. */
769         enum rte_iptype iptype; /**< IP packet type to match: IPv4 or IPv6. */
770 };
771
772 /**
773  *  A structure used to configure FDIR masks that are used by the device
774  *  to match the various fields of RX packet headers.
775  *  @note The only_ip_flow field has the opposite meaning compared to other
776  *  masks!
777  */
778 struct rte_fdir_masks {
779         /** When set to 1, packet l4type is \b NOT relevant in filters, and
780            source and destination port masks must be set to zero. */
781         uint8_t only_ip_flow;
782         /** If set to 1, vlan_id is relevant in filters. */
783         uint8_t vlan_id;
784         /** If set to 1, vlan_prio is relevant in filters. */
785         uint8_t vlan_prio;
786         /** If set to 1, flexbytes is relevant in filters. */
787         uint8_t flexbytes;
788         /** If set to 1, set the IPv6 masks. Otherwise set the IPv4 masks. */
789         uint8_t set_ipv6_mask;
790         /** When set to 1, comparison of destination IPv6 address with IP6AT
791             registers is meaningful. */
792         uint8_t comp_ipv6_dst;
793         /** Mask of Destination IPv4 Address. All bits set to 1 define the
794             relevant bits to use in the destination address of an IPv4 packet
795             when matching it against FDIR filters. */
796         uint32_t dst_ipv4_mask;
797         /** Mask of Source IPv4 Address. All bits set to 1 define
798             the relevant bits to use in the source address of an IPv4 packet
799             when matching it against FDIR filters. */
800         uint32_t src_ipv4_mask;
801         /** Mask of Source IPv6 Address. All bits set to 1 define the
802             relevant BYTES to use in the source address of an IPv6 packet
803             when matching it against FDIR filters. */
804         uint16_t dst_ipv6_mask;
805         /** Mask of Destination IPv6 Address. All bits set to 1 define the
806             relevant BYTES to use in the destination address of an IPv6 packet
807             when matching it against FDIR filters. */
808         uint16_t src_ipv6_mask;
809         /** Mask of Source Port. All bits set to 1 define the relevant
810             bits to use in the source port of an IP packets when matching it
811             against FDIR filters. */
812         uint16_t src_port_mask;
813         /** Mask of Destination Port. All bits set to 1 define the relevant
814             bits to use in the destination port of an IP packet when matching it
815             against FDIR filters. */
816         uint16_t dst_port_mask;
817 };
818
819 /**
820  *  A structure used to report the status of the flow director filters in use.
821  */
822 struct rte_eth_fdir {
823         /** Number of filters with collision indication. */
824         uint16_t collision;
825         /** Number of free (non programmed) filters. */
826         uint16_t free;
827         /** The Lookup hash value of the added filter that updated the value
828            of the MAXLEN field */
829         uint16_t maxhash;
830         /** Longest linked list of filters in the table. */
831         uint8_t maxlen;
832         /** Number of added filters. */
833         uint64_t add;
834         /** Number of removed filters. */
835         uint64_t remove;
836         /** Number of failed added filters (no more space in device). */
837         uint64_t f_add;
838         /** Number of failed removed filters. */
839         uint64_t f_remove;
840 };
841
842 /**
843  * A structure used to enable/disable specific device interrupts.
844  */
845 struct rte_intr_conf {
846         /** enable/disable lsc interrupt. 0 (default) - disable, 1 enable */
847         uint16_t lsc;
848 #ifdef RTE_NEXT_ABI
849         /** enable/disable rxq interrupt. 0 (default) - disable, 1 enable */
850         uint16_t rxq;
851 #endif
852 };
853
854 /**
855  * A structure used to configure an Ethernet port.
856  * Depending upon the RX multi-queue mode, extra advanced
857  * configuration settings may be needed.
858  */
859 struct rte_eth_conf {
860         uint16_t link_speed;
861         /**< ETH_LINK_SPEED_10[0|00|000], or 0 for autonegotation */
862         uint16_t link_duplex;
863         /**< ETH_LINK_[HALF_DUPLEX|FULL_DUPLEX], or 0 for autonegotation */
864         struct rte_eth_rxmode rxmode; /**< Port RX configuration. */
865         struct rte_eth_txmode txmode; /**< Port TX configuration. */
866         uint32_t lpbk_mode; /**< Loopback operation mode. By default the value
867                                  is 0, meaning the loopback mode is disabled.
868                                  Read the datasheet of given ethernet controller
869                                  for details. The possible values of this field
870                                  are defined in implementation of each driver. */
871         struct {
872                 struct rte_eth_rss_conf rss_conf; /**< Port RSS configuration */
873                 struct rte_eth_vmdq_dcb_conf vmdq_dcb_conf;
874                 /**< Port vmdq+dcb configuration. */
875                 struct rte_eth_dcb_rx_conf dcb_rx_conf;
876                 /**< Port dcb RX configuration. */
877                 struct rte_eth_vmdq_rx_conf vmdq_rx_conf;
878                 /**< Port vmdq RX configuration. */
879         } rx_adv_conf; /**< Port RX filtering configuration (union). */
880         union {
881                 struct rte_eth_vmdq_dcb_tx_conf vmdq_dcb_tx_conf;
882                 /**< Port vmdq+dcb TX configuration. */
883                 struct rte_eth_dcb_tx_conf dcb_tx_conf;
884                 /**< Port dcb TX configuration. */
885                 struct rte_eth_vmdq_tx_conf vmdq_tx_conf;
886                 /**< Port vmdq TX configuration. */
887         } tx_adv_conf; /**< Port TX DCB configuration (union). */
888         /** Currently,Priority Flow Control(PFC) are supported,if DCB with PFC
889             is needed,and the variable must be set ETH_DCB_PFC_SUPPORT. */
890         uint32_t dcb_capability_en;
891         struct rte_fdir_conf fdir_conf; /**< FDIR configuration. */
892         struct rte_intr_conf intr_conf; /**< Interrupt mode configuration. */
893 };
894
895 /**
896  * A structure used to retrieve the contextual information of
897  * an Ethernet device, such as the controlling driver of the device,
898  * its PCI context, etc...
899  */
900
901 /**
902  * RX offload capabilities of a device.
903  */
904 #define DEV_RX_OFFLOAD_VLAN_STRIP  0x00000001
905 #define DEV_RX_OFFLOAD_IPV4_CKSUM  0x00000002
906 #define DEV_RX_OFFLOAD_UDP_CKSUM   0x00000004
907 #define DEV_RX_OFFLOAD_TCP_CKSUM   0x00000008
908 #define DEV_RX_OFFLOAD_TCP_LRO     0x00000010
909 #define DEV_RX_OFFLOAD_QINQ_STRIP  0x00000020
910
911 /**
912  * TX offload capabilities of a device.
913  */
914 #define DEV_TX_OFFLOAD_VLAN_INSERT 0x00000001
915 #define DEV_TX_OFFLOAD_IPV4_CKSUM  0x00000002
916 #define DEV_TX_OFFLOAD_UDP_CKSUM   0x00000004
917 #define DEV_TX_OFFLOAD_TCP_CKSUM   0x00000008
918 #define DEV_TX_OFFLOAD_SCTP_CKSUM  0x00000010
919 #define DEV_TX_OFFLOAD_TCP_TSO     0x00000020
920 #define DEV_TX_OFFLOAD_UDP_TSO     0x00000040
921 #define DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM 0x00000080 /**< Used for tunneling packet. */
922 #define DEV_TX_OFFLOAD_QINQ_INSERT 0x00000100
923
924 struct rte_eth_dev_info {
925         struct rte_pci_device *pci_dev; /**< Device PCI information. */
926         const char *driver_name; /**< Device Driver name. */
927         unsigned int if_index; /**< Index to bound host interface, or 0 if none.
928                 Use if_indextoname() to translate into an interface name. */
929         uint32_t min_rx_bufsize; /**< Minimum size of RX buffer. */
930         uint32_t max_rx_pktlen; /**< Maximum configurable length of RX pkt. */
931         uint16_t max_rx_queues; /**< Maximum number of RX queues. */
932         uint16_t max_tx_queues; /**< Maximum number of TX queues. */
933         uint32_t max_mac_addrs; /**< Maximum number of MAC addresses. */
934         uint32_t max_hash_mac_addrs;
935         /** Maximum number of hash MAC addresses for MTA and UTA. */
936         uint16_t max_vfs; /**< Maximum number of VFs. */
937         uint16_t max_vmdq_pools; /**< Maximum number of VMDq pools. */
938         uint32_t rx_offload_capa; /**< Device RX offload capabilities. */
939         uint32_t tx_offload_capa; /**< Device TX offload capabilities. */
940         uint16_t reta_size;
941         /**< Device redirection table size, the total number of entries. */
942         uint8_t hash_key_size; /**< Hash key size in bytes */
943         /** Bit mask of RSS offloads, the bit offset also means flow type */
944         uint64_t flow_type_rss_offloads;
945         struct rte_eth_rxconf default_rxconf; /**< Default RX configuration */
946         struct rte_eth_txconf default_txconf; /**< Default TX configuration */
947         uint16_t vmdq_queue_base; /**< First queue ID for VMDQ pools. */
948         uint16_t vmdq_queue_num;  /**< Queue number for VMDQ pools. */
949         uint16_t vmdq_pool_base;  /**< First ID of VMDQ pools. */
950 };
951
952 /** Maximum name length for extended statistics counters */
953 #define RTE_ETH_XSTATS_NAME_SIZE 64
954
955 /**
956  * An Ethernet device extended statistic structure
957  *
958  * This structure is used by ethdev->eth_xstats_get() to provide
959  * statistics that are not provided in the generic rte_eth_stats
960  * structure.
961  */
962 struct rte_eth_xstats {
963         char name[RTE_ETH_XSTATS_NAME_SIZE];
964         uint64_t value;
965 };
966
967 struct rte_eth_dev;
968
969 struct rte_eth_dev_callback;
970 /** @internal Structure to keep track of registered callbacks */
971 TAILQ_HEAD(rte_eth_dev_cb_list, rte_eth_dev_callback);
972
973 /*
974  * Definitions of all functions exported by an Ethernet driver through the
975  * the generic structure of type *eth_dev_ops* supplied in the *rte_eth_dev*
976  * structure associated with an Ethernet device.
977  */
978
979 typedef int  (*eth_dev_configure_t)(struct rte_eth_dev *dev);
980 /**< @internal Ethernet device configuration. */
981
982 typedef int  (*eth_dev_start_t)(struct rte_eth_dev *dev);
983 /**< @internal Function used to start a configured Ethernet device. */
984
985 typedef void (*eth_dev_stop_t)(struct rte_eth_dev *dev);
986 /**< @internal Function used to stop a configured Ethernet device. */
987
988 typedef int  (*eth_dev_set_link_up_t)(struct rte_eth_dev *dev);
989 /**< @internal Function used to link up a configured Ethernet device. */
990
991 typedef int  (*eth_dev_set_link_down_t)(struct rte_eth_dev *dev);
992 /**< @internal Function used to link down a configured Ethernet device. */
993
994 typedef void (*eth_dev_close_t)(struct rte_eth_dev *dev);
995 /**< @internal Function used to close a configured Ethernet device. */
996
997 typedef void (*eth_promiscuous_enable_t)(struct rte_eth_dev *dev);
998 /**< @internal Function used to enable the RX promiscuous mode of an Ethernet device. */
999
1000 typedef void (*eth_promiscuous_disable_t)(struct rte_eth_dev *dev);
1001 /**< @internal Function used to disable the RX promiscuous mode of an Ethernet device. */
1002
1003 typedef void (*eth_allmulticast_enable_t)(struct rte_eth_dev *dev);
1004 /**< @internal Enable the receipt of all multicast packets by an Ethernet device. */
1005
1006 typedef void (*eth_allmulticast_disable_t)(struct rte_eth_dev *dev);
1007 /**< @internal Disable the receipt of all multicast packets by an Ethernet device. */
1008
1009 typedef int (*eth_link_update_t)(struct rte_eth_dev *dev,
1010                                 int wait_to_complete);
1011 /**< @internal Get link speed, duplex mode and state (up/down) of an Ethernet device. */
1012
1013 typedef void (*eth_stats_get_t)(struct rte_eth_dev *dev,
1014                                 struct rte_eth_stats *igb_stats);
1015 /**< @internal Get global I/O statistics of an Ethernet device. */
1016
1017 typedef void (*eth_stats_reset_t)(struct rte_eth_dev *dev);
1018 /**< @internal Reset global I/O statistics of an Ethernet device to 0. */
1019
1020 typedef int (*eth_xstats_get_t)(struct rte_eth_dev *dev,
1021         struct rte_eth_xstats *stats, unsigned n);
1022 /**< @internal Get extended stats of an Ethernet device. */
1023
1024 typedef void (*eth_xstats_reset_t)(struct rte_eth_dev *dev);
1025 /**< @internal Reset extended stats of an Ethernet device. */
1026
1027 typedef int (*eth_queue_stats_mapping_set_t)(struct rte_eth_dev *dev,
1028                                              uint16_t queue_id,
1029                                              uint8_t stat_idx,
1030                                              uint8_t is_rx);
1031 /**< @internal Set a queue statistics mapping for a tx/rx queue of an Ethernet device. */
1032
1033 typedef void (*eth_dev_infos_get_t)(struct rte_eth_dev *dev,
1034                                     struct rte_eth_dev_info *dev_info);
1035 /**< @internal Get specific informations of an Ethernet device. */
1036
1037 typedef int (*eth_queue_start_t)(struct rte_eth_dev *dev,
1038                                     uint16_t queue_id);
1039 /**< @internal Start rx and tx of a queue of an Ethernet device. */
1040
1041 typedef int (*eth_queue_stop_t)(struct rte_eth_dev *dev,
1042                                     uint16_t queue_id);
1043 /**< @internal Stop rx and tx of a queue of an Ethernet device. */
1044
1045 typedef int (*eth_rx_queue_setup_t)(struct rte_eth_dev *dev,
1046                                     uint16_t rx_queue_id,
1047                                     uint16_t nb_rx_desc,
1048                                     unsigned int socket_id,
1049                                     const struct rte_eth_rxconf *rx_conf,
1050                                     struct rte_mempool *mb_pool);
1051 /**< @internal Set up a receive queue of an Ethernet device. */
1052
1053 typedef int (*eth_tx_queue_setup_t)(struct rte_eth_dev *dev,
1054                                     uint16_t tx_queue_id,
1055                                     uint16_t nb_tx_desc,
1056                                     unsigned int socket_id,
1057                                     const struct rte_eth_txconf *tx_conf);
1058 /**< @internal Setup a transmit queue of an Ethernet device. */
1059
1060 typedef int (*eth_rx_enable_intr_t)(struct rte_eth_dev *dev,
1061                                     uint16_t rx_queue_id);
1062 /**< @internal Enable interrupt of a receive queue of an Ethernet device. */
1063
1064 typedef int (*eth_rx_disable_intr_t)(struct rte_eth_dev *dev,
1065                                     uint16_t rx_queue_id);
1066 /**< @internal Disable interrupt of a receive queue of an Ethernet device. */
1067
1068 typedef void (*eth_queue_release_t)(void *queue);
1069 /**< @internal Release memory resources allocated by given RX/TX queue. */
1070
1071 typedef uint32_t (*eth_rx_queue_count_t)(struct rte_eth_dev *dev,
1072                                          uint16_t rx_queue_id);
1073 /**< @internal Get number of available descriptors on a receive queue of an Ethernet device. */
1074
1075 typedef int (*eth_rx_descriptor_done_t)(void *rxq, uint16_t offset);
1076 /**< @internal Check DD bit of specific RX descriptor */
1077
1078 typedef int (*mtu_set_t)(struct rte_eth_dev *dev, uint16_t mtu);
1079 /**< @internal Set MTU. */
1080
1081 typedef int (*vlan_filter_set_t)(struct rte_eth_dev *dev,
1082                                   uint16_t vlan_id,
1083                                   int on);
1084 /**< @internal filtering of a VLAN Tag Identifier by an Ethernet device. */
1085
1086 typedef void (*vlan_tpid_set_t)(struct rte_eth_dev *dev,
1087                                   uint16_t tpid);
1088 /**< @internal set the outer VLAN-TPID by an Ethernet device. */
1089
1090 typedef void (*vlan_offload_set_t)(struct rte_eth_dev *dev, int mask);
1091 /**< @internal set VLAN offload function by an Ethernet device. */
1092
1093 typedef int (*vlan_pvid_set_t)(struct rte_eth_dev *dev,
1094                                uint16_t vlan_id,
1095                                int on);
1096 /**< @internal set port based TX VLAN insertion by an Ethernet device. */
1097
1098 typedef void (*vlan_strip_queue_set_t)(struct rte_eth_dev *dev,
1099                                   uint16_t rx_queue_id,
1100                                   int on);
1101 /**< @internal VLAN stripping enable/disable by an queue of Ethernet device. */
1102
1103 typedef uint16_t (*eth_rx_burst_t)(void *rxq,
1104                                    struct rte_mbuf **rx_pkts,
1105                                    uint16_t nb_pkts);
1106 /**< @internal Retrieve input packets from a receive queue of an Ethernet device. */
1107
1108 typedef uint16_t (*eth_tx_burst_t)(void *txq,
1109                                    struct rte_mbuf **tx_pkts,
1110                                    uint16_t nb_pkts);
1111 /**< @internal Send output packets on a transmit queue of an Ethernet device. */
1112
1113 typedef int (*fdir_add_signature_filter_t)(struct rte_eth_dev *dev,
1114                                            struct rte_fdir_filter *fdir_ftr,
1115                                            uint8_t rx_queue);
1116 /**< @internal Setup a new signature filter rule on an Ethernet device */
1117
1118 typedef int (*fdir_update_signature_filter_t)(struct rte_eth_dev *dev,
1119                                               struct rte_fdir_filter *fdir_ftr,
1120                                               uint8_t rx_queue);
1121 /**< @internal Update a signature filter rule on an Ethernet device */
1122
1123 typedef int (*fdir_remove_signature_filter_t)(struct rte_eth_dev *dev,
1124                                               struct rte_fdir_filter *fdir_ftr);
1125 /**< @internal Remove a  signature filter rule on an Ethernet device */
1126
1127 typedef void (*fdir_infos_get_t)(struct rte_eth_dev *dev,
1128                                  struct rte_eth_fdir *fdir);
1129 /**< @internal Get information about fdir status */
1130
1131 typedef int (*fdir_add_perfect_filter_t)(struct rte_eth_dev *dev,
1132                                          struct rte_fdir_filter *fdir_ftr,
1133                                          uint16_t soft_id, uint8_t rx_queue,
1134                                          uint8_t drop);
1135 /**< @internal Setup a new perfect filter rule on an Ethernet device */
1136
1137 typedef int (*fdir_update_perfect_filter_t)(struct rte_eth_dev *dev,
1138                                             struct rte_fdir_filter *fdir_ftr,
1139                                             uint16_t soft_id, uint8_t rx_queue,
1140                                             uint8_t drop);
1141 /**< @internal Update a perfect filter rule on an Ethernet device */
1142
1143 typedef int (*fdir_remove_perfect_filter_t)(struct rte_eth_dev *dev,
1144                                             struct rte_fdir_filter *fdir_ftr,
1145                                             uint16_t soft_id);
1146 /**< @internal Remove a perfect filter rule on an Ethernet device */
1147
1148 typedef int (*fdir_set_masks_t)(struct rte_eth_dev *dev,
1149                                 struct rte_fdir_masks *fdir_masks);
1150 /**< @internal Setup flow director masks on an Ethernet device */
1151
1152 typedef int (*flow_ctrl_get_t)(struct rte_eth_dev *dev,
1153                                struct rte_eth_fc_conf *fc_conf);
1154 /**< @internal Get current flow control parameter on an Ethernet device */
1155
1156 typedef int (*flow_ctrl_set_t)(struct rte_eth_dev *dev,
1157                                struct rte_eth_fc_conf *fc_conf);
1158 /**< @internal Setup flow control parameter on an Ethernet device */
1159
1160 typedef int (*priority_flow_ctrl_set_t)(struct rte_eth_dev *dev,
1161                                 struct rte_eth_pfc_conf *pfc_conf);
1162 /**< @internal Setup priority flow control parameter on an Ethernet device */
1163
1164 typedef int (*reta_update_t)(struct rte_eth_dev *dev,
1165                              struct rte_eth_rss_reta_entry64 *reta_conf,
1166                              uint16_t reta_size);
1167 /**< @internal Update RSS redirection table on an Ethernet device */
1168
1169 typedef int (*reta_query_t)(struct rte_eth_dev *dev,
1170                             struct rte_eth_rss_reta_entry64 *reta_conf,
1171                             uint16_t reta_size);
1172 /**< @internal Query RSS redirection table on an Ethernet device */
1173
1174 typedef int (*rss_hash_update_t)(struct rte_eth_dev *dev,
1175                                  struct rte_eth_rss_conf *rss_conf);
1176 /**< @internal Update RSS hash configuration of an Ethernet device */
1177
1178 typedef int (*rss_hash_conf_get_t)(struct rte_eth_dev *dev,
1179                                    struct rte_eth_rss_conf *rss_conf);
1180 /**< @internal Get current RSS hash configuration of an Ethernet device */
1181
1182 typedef int (*eth_dev_led_on_t)(struct rte_eth_dev *dev);
1183 /**< @internal Turn on SW controllable LED on an Ethernet device */
1184
1185 typedef int (*eth_dev_led_off_t)(struct rte_eth_dev *dev);
1186 /**< @internal Turn off SW controllable LED on an Ethernet device */
1187
1188 typedef void (*eth_mac_addr_remove_t)(struct rte_eth_dev *dev, uint32_t index);
1189 /**< @internal Remove MAC address from receive address register */
1190
1191 typedef void (*eth_mac_addr_add_t)(struct rte_eth_dev *dev,
1192                                   struct ether_addr *mac_addr,
1193                                   uint32_t index,
1194                                   uint32_t vmdq);
1195 /**< @internal Set a MAC address into Receive Address Address Register */
1196
1197 typedef void (*eth_mac_addr_set_t)(struct rte_eth_dev *dev,
1198                                   struct ether_addr *mac_addr);
1199 /**< @internal Set a MAC address into Receive Address Address Register */
1200
1201 typedef int (*eth_uc_hash_table_set_t)(struct rte_eth_dev *dev,
1202                                   struct ether_addr *mac_addr,
1203                                   uint8_t on);
1204 /**< @internal Set a Unicast Hash bitmap */
1205
1206 typedef int (*eth_uc_all_hash_table_set_t)(struct rte_eth_dev *dev,
1207                                   uint8_t on);
1208 /**< @internal Set all Unicast Hash bitmap */
1209
1210 typedef int (*eth_set_vf_rx_mode_t)(struct rte_eth_dev *dev,
1211                                   uint16_t vf,
1212                                   uint16_t rx_mode,
1213                                   uint8_t on);
1214 /**< @internal Set a VF receive mode */
1215
1216 typedef int (*eth_set_vf_rx_t)(struct rte_eth_dev *dev,
1217                                 uint16_t vf,
1218                                 uint8_t on);
1219 /**< @internal Set a VF receive  mode */
1220
1221 typedef int (*eth_set_vf_tx_t)(struct rte_eth_dev *dev,
1222                                 uint16_t vf,
1223                                 uint8_t on);
1224 /**< @internal Enable or disable a VF transmit   */
1225
1226 typedef int (*eth_set_vf_vlan_filter_t)(struct rte_eth_dev *dev,
1227                                   uint16_t vlan,
1228                                   uint64_t vf_mask,
1229                                   uint8_t vlan_on);
1230 /**< @internal Set VF VLAN pool filter */
1231
1232 typedef int (*eth_set_queue_rate_limit_t)(struct rte_eth_dev *dev,
1233                                 uint16_t queue_idx,
1234                                 uint16_t tx_rate);
1235 /**< @internal Set queue TX rate */
1236
1237 typedef int (*eth_set_vf_rate_limit_t)(struct rte_eth_dev *dev,
1238                                 uint16_t vf,
1239                                 uint16_t tx_rate,
1240                                 uint64_t q_msk);
1241 /**< @internal Set VF TX rate */
1242
1243 typedef int (*eth_mirror_rule_set_t)(struct rte_eth_dev *dev,
1244                                   struct rte_eth_mirror_conf *mirror_conf,
1245                                   uint8_t rule_id,
1246                                   uint8_t on);
1247 /**< @internal Add a traffic mirroring rule on an Ethernet device */
1248
1249 typedef int (*eth_mirror_rule_reset_t)(struct rte_eth_dev *dev,
1250                                   uint8_t rule_id);
1251 /**< @internal Remove a traffic mirroring rule on an Ethernet device */
1252
1253 typedef int (*eth_udp_tunnel_add_t)(struct rte_eth_dev *dev,
1254                                     struct rte_eth_udp_tunnel *tunnel_udp);
1255 /**< @internal Add tunneling UDP info */
1256
1257 typedef int (*eth_udp_tunnel_del_t)(struct rte_eth_dev *dev,
1258                                     struct rte_eth_udp_tunnel *tunnel_udp);
1259 /**< @internal Delete tunneling UDP info */
1260
1261 typedef int (*eth_set_mc_addr_list_t)(struct rte_eth_dev *dev,
1262                                       struct ether_addr *mc_addr_set,
1263                                       uint32_t nb_mc_addr);
1264 /**< @internal set the list of multicast addresses on an Ethernet device */
1265
1266 typedef int (*eth_timesync_enable_t)(struct rte_eth_dev *dev);
1267 /**< @internal Function used to enable IEEE1588/802.1AS timestamping. */
1268
1269 typedef int (*eth_timesync_disable_t)(struct rte_eth_dev *dev);
1270 /**< @internal Function used to disable IEEE1588/802.1AS timestamping. */
1271
1272 typedef int (*eth_timesync_read_rx_timestamp_t)(struct rte_eth_dev *dev,
1273                                                 struct timespec *timestamp,
1274                                                 uint32_t flags);
1275 /**< @internal Function used to read an RX IEEE1588/802.1AS timestamp. */
1276
1277 typedef int (*eth_timesync_read_tx_timestamp_t)(struct rte_eth_dev *dev,
1278                                                 struct timespec *timestamp);
1279 /**< @internal Function used to read a TX IEEE1588/802.1AS timestamp. */
1280
1281 typedef int (*eth_get_reg_length_t)(struct rte_eth_dev *dev);
1282 /**< @internal Retrieve device register count  */
1283
1284 typedef int (*eth_get_reg_t)(struct rte_eth_dev *dev,
1285                                 struct rte_dev_reg_info *info);
1286 /**< @internal Retrieve registers  */
1287
1288 typedef int (*eth_get_eeprom_length_t)(struct rte_eth_dev *dev);
1289 /**< @internal Retrieve eeprom size  */
1290
1291 typedef int (*eth_get_eeprom_t)(struct rte_eth_dev *dev,
1292                                 struct rte_dev_eeprom_info *info);
1293 /**< @internal Retrieve eeprom data  */
1294
1295 typedef int (*eth_set_eeprom_t)(struct rte_eth_dev *dev,
1296                                 struct rte_dev_eeprom_info *info);
1297 /**< @internal Program eeprom data  */
1298
1299 #ifdef RTE_NIC_BYPASS
1300
1301 enum {
1302         RTE_BYPASS_MODE_NONE,
1303         RTE_BYPASS_MODE_NORMAL,
1304         RTE_BYPASS_MODE_BYPASS,
1305         RTE_BYPASS_MODE_ISOLATE,
1306         RTE_BYPASS_MODE_NUM,
1307 };
1308
1309 #define RTE_BYPASS_MODE_VALID(x)        \
1310         ((x) > RTE_BYPASS_MODE_NONE && (x) < RTE_BYPASS_MODE_NUM)
1311
1312 enum {
1313         RTE_BYPASS_EVENT_NONE,
1314         RTE_BYPASS_EVENT_START,
1315         RTE_BYPASS_EVENT_OS_ON = RTE_BYPASS_EVENT_START,
1316         RTE_BYPASS_EVENT_POWER_ON,
1317         RTE_BYPASS_EVENT_OS_OFF,
1318         RTE_BYPASS_EVENT_POWER_OFF,
1319         RTE_BYPASS_EVENT_TIMEOUT,
1320         RTE_BYPASS_EVENT_NUM
1321 };
1322
1323 #define RTE_BYPASS_EVENT_VALID(x)       \
1324         ((x) > RTE_BYPASS_EVENT_NONE && (x) < RTE_BYPASS_MODE_NUM)
1325
1326 enum {
1327         RTE_BYPASS_TMT_OFF,     /* timeout disabled. */
1328         RTE_BYPASS_TMT_1_5_SEC, /* timeout for 1.5 seconds */
1329         RTE_BYPASS_TMT_2_SEC,   /* timeout for 2 seconds */
1330         RTE_BYPASS_TMT_3_SEC,   /* timeout for 3 seconds */
1331         RTE_BYPASS_TMT_4_SEC,   /* timeout for 4 seconds */
1332         RTE_BYPASS_TMT_8_SEC,   /* timeout for 8 seconds */
1333         RTE_BYPASS_TMT_16_SEC,  /* timeout for 16 seconds */
1334         RTE_BYPASS_TMT_32_SEC,  /* timeout for 32 seconds */
1335         RTE_BYPASS_TMT_NUM
1336 };
1337
1338 #define RTE_BYPASS_TMT_VALID(x) \
1339         ((x) == RTE_BYPASS_TMT_OFF || \
1340         ((x) > RTE_BYPASS_TMT_OFF && (x) < RTE_BYPASS_TMT_NUM))
1341
1342 typedef void (*bypass_init_t)(struct rte_eth_dev *dev);
1343 typedef int32_t (*bypass_state_set_t)(struct rte_eth_dev *dev, uint32_t *new_state);
1344 typedef int32_t (*bypass_state_show_t)(struct rte_eth_dev *dev, uint32_t *state);
1345 typedef int32_t (*bypass_event_set_t)(struct rte_eth_dev *dev, uint32_t state, uint32_t event);
1346 typedef int32_t (*bypass_event_show_t)(struct rte_eth_dev *dev, uint32_t event_shift, uint32_t *event);
1347 typedef int32_t (*bypass_wd_timeout_set_t)(struct rte_eth_dev *dev, uint32_t timeout);
1348 typedef int32_t (*bypass_wd_timeout_show_t)(struct rte_eth_dev *dev, uint32_t *wd_timeout);
1349 typedef int32_t (*bypass_ver_show_t)(struct rte_eth_dev *dev, uint32_t *ver);
1350 typedef int32_t (*bypass_wd_reset_t)(struct rte_eth_dev *dev);
1351 #endif
1352
1353 typedef int (*eth_filter_ctrl_t)(struct rte_eth_dev *dev,
1354                                  enum rte_filter_type filter_type,
1355                                  enum rte_filter_op filter_op,
1356                                  void *arg);
1357 /**< @internal Take operations to assigned filter type on an Ethernet device */
1358
1359 /**
1360  * @internal A structure containing the functions exported by an Ethernet driver.
1361  */
1362 struct eth_dev_ops {
1363         eth_dev_configure_t        dev_configure; /**< Configure device. */
1364         eth_dev_start_t            dev_start;     /**< Start device. */
1365         eth_dev_stop_t             dev_stop;      /**< Stop device. */
1366         eth_dev_set_link_up_t      dev_set_link_up;   /**< Device link up. */
1367         eth_dev_set_link_down_t    dev_set_link_down; /**< Device link down. */
1368         eth_dev_close_t            dev_close;     /**< Close device. */
1369         eth_promiscuous_enable_t   promiscuous_enable; /**< Promiscuous ON. */
1370         eth_promiscuous_disable_t  promiscuous_disable;/**< Promiscuous OFF. */
1371         eth_allmulticast_enable_t  allmulticast_enable;/**< RX multicast ON. */
1372         eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OF. */
1373         eth_link_update_t          link_update;   /**< Get device link state. */
1374         eth_stats_get_t            stats_get;     /**< Get generic device statistics. */
1375         eth_stats_reset_t          stats_reset;   /**< Reset generic device statistics. */
1376         eth_xstats_get_t           xstats_get;    /**< Get extended device statistics. */
1377         eth_xstats_reset_t         xstats_reset;  /**< Reset extended device statistics. */
1378         eth_queue_stats_mapping_set_t queue_stats_mapping_set;
1379         /**< Configure per queue stat counter mapping. */
1380         eth_dev_infos_get_t        dev_infos_get; /**< Get device info. */
1381         mtu_set_t                  mtu_set; /**< Set MTU. */
1382         vlan_filter_set_t          vlan_filter_set;  /**< Filter VLAN Setup. */
1383         vlan_tpid_set_t            vlan_tpid_set;      /**< Outer VLAN TPID Setup. */
1384         vlan_strip_queue_set_t     vlan_strip_queue_set; /**< VLAN Stripping on queue. */
1385         vlan_offload_set_t         vlan_offload_set; /**< Set VLAN Offload. */
1386         vlan_pvid_set_t            vlan_pvid_set; /**< Set port based TX VLAN insertion */
1387         eth_queue_start_t          rx_queue_start;/**< Start RX for a queue.*/
1388         eth_queue_stop_t           rx_queue_stop;/**< Stop RX for a queue.*/
1389         eth_queue_start_t          tx_queue_start;/**< Start TX for a queue.*/
1390         eth_queue_stop_t           tx_queue_stop;/**< Stop TX for a queue.*/
1391         eth_rx_queue_setup_t       rx_queue_setup;/**< Set up device RX queue.*/
1392         eth_queue_release_t        rx_queue_release;/**< Release RX queue.*/
1393         eth_rx_queue_count_t       rx_queue_count; /**< Get Rx queue count. */
1394         eth_rx_descriptor_done_t   rx_descriptor_done;  /**< Check rxd DD bit */
1395 #ifdef RTE_NEXT_ABI
1396         /**< Enable Rx queue interrupt. */
1397         eth_rx_enable_intr_t       rx_queue_intr_enable;
1398         /**< Disable Rx queue interrupt.*/
1399         eth_rx_disable_intr_t      rx_queue_intr_disable;
1400 #endif
1401         eth_tx_queue_setup_t       tx_queue_setup;/**< Set up device TX queue.*/
1402         eth_queue_release_t        tx_queue_release;/**< Release TX queue.*/
1403         eth_dev_led_on_t           dev_led_on;    /**< Turn on LED. */
1404         eth_dev_led_off_t          dev_led_off;   /**< Turn off LED. */
1405         flow_ctrl_get_t            flow_ctrl_get; /**< Get flow control. */
1406         flow_ctrl_set_t            flow_ctrl_set; /**< Setup flow control. */
1407         priority_flow_ctrl_set_t   priority_flow_ctrl_set; /**< Setup priority flow control.*/
1408         eth_mac_addr_remove_t      mac_addr_remove; /**< Remove MAC address */
1409         eth_mac_addr_add_t         mac_addr_add;  /**< Add a MAC address */
1410         eth_mac_addr_set_t         mac_addr_set;  /**< Set a MAC address */
1411         eth_uc_hash_table_set_t    uc_hash_table_set;  /**< Set Unicast Table Array */
1412         eth_uc_all_hash_table_set_t uc_all_hash_table_set;  /**< Set Unicast hash bitmap */
1413         eth_mirror_rule_set_t      mirror_rule_set;  /**< Add a traffic mirror rule.*/
1414         eth_mirror_rule_reset_t    mirror_rule_reset;  /**< reset a traffic mirror rule.*/
1415         eth_set_vf_rx_mode_t       set_vf_rx_mode;   /**< Set VF RX mode */
1416         eth_set_vf_rx_t            set_vf_rx;  /**< enable/disable a VF receive */
1417         eth_set_vf_tx_t            set_vf_tx;  /**< enable/disable a VF transmit */
1418         eth_set_vf_vlan_filter_t   set_vf_vlan_filter;  /**< Set VF VLAN filter */
1419         eth_udp_tunnel_add_t       udp_tunnel_add;
1420         eth_udp_tunnel_del_t       udp_tunnel_del;
1421         eth_set_queue_rate_limit_t set_queue_rate_limit;   /**< Set queue rate limit */
1422         eth_set_vf_rate_limit_t    set_vf_rate_limit;   /**< Set VF rate limit */
1423
1424         /** Add a signature filter. */
1425         fdir_add_signature_filter_t fdir_add_signature_filter;
1426         /** Update a signature filter. */
1427         fdir_update_signature_filter_t fdir_update_signature_filter;
1428         /** Remove a signature filter. */
1429         fdir_remove_signature_filter_t fdir_remove_signature_filter;
1430         /** Get information about FDIR status. */
1431         fdir_infos_get_t fdir_infos_get;
1432         /** Add a perfect filter. */
1433         fdir_add_perfect_filter_t fdir_add_perfect_filter;
1434         /** Update a perfect filter. */
1435         fdir_update_perfect_filter_t fdir_update_perfect_filter;
1436         /** Remove a perfect filter. */
1437         fdir_remove_perfect_filter_t fdir_remove_perfect_filter;
1438         /** Setup masks for FDIR filtering. */
1439         fdir_set_masks_t fdir_set_masks;
1440         /** Update redirection table. */
1441         reta_update_t reta_update;
1442         /** Query redirection table. */
1443         reta_query_t reta_query;
1444
1445         eth_get_reg_length_t get_reg_length;
1446         /**< Get # of registers */
1447         eth_get_reg_t get_reg;
1448         /**< Get registers */
1449         eth_get_eeprom_length_t get_eeprom_length;
1450         /**< Get eeprom length */
1451         eth_get_eeprom_t get_eeprom;
1452         /**< Get eeprom data */
1453         eth_set_eeprom_t set_eeprom;
1454         /**< Set eeprom */
1455   /* bypass control */
1456 #ifdef RTE_NIC_BYPASS
1457   bypass_init_t bypass_init;
1458   bypass_state_set_t bypass_state_set;
1459   bypass_state_show_t bypass_state_show;
1460   bypass_event_set_t bypass_event_set;
1461   bypass_event_show_t bypass_event_show;
1462   bypass_wd_timeout_set_t bypass_wd_timeout_set;
1463   bypass_wd_timeout_show_t bypass_wd_timeout_show;
1464   bypass_ver_show_t bypass_ver_show;
1465   bypass_wd_reset_t bypass_wd_reset;
1466 #endif
1467
1468         /** Configure RSS hash protocols. */
1469         rss_hash_update_t rss_hash_update;
1470         /** Get current RSS hash configuration. */
1471         rss_hash_conf_get_t rss_hash_conf_get;
1472         eth_filter_ctrl_t              filter_ctrl;          /**< common filter control*/
1473         eth_set_mc_addr_list_t set_mc_addr_list; /**< set list of mcast addrs */
1474
1475         /** Turn IEEE1588/802.1AS timestamping on. */
1476         eth_timesync_enable_t timesync_enable;
1477         /** Turn IEEE1588/802.1AS timestamping off. */
1478         eth_timesync_disable_t timesync_disable;
1479         /** Read the IEEE1588/802.1AS RX timestamp. */
1480         eth_timesync_read_rx_timestamp_t timesync_read_rx_timestamp;
1481         /** Read the IEEE1588/802.1AS TX timestamp. */
1482         eth_timesync_read_tx_timestamp_t timesync_read_tx_timestamp;
1483 };
1484
1485 /**
1486  * Function type used for RX packet processing packet callbacks.
1487  *
1488  * The callback function is called on RX with a burst of packets that have
1489  * been received on the given port and queue.
1490  *
1491  * @param port
1492  *   The Ethernet port on which RX is being performed.
1493  * @param queue
1494  *   The queue on the Ethernet port which is being used to receive the packets.
1495  * @param pkts
1496  *   The burst of packets that have just been received.
1497  * @param nb_pkts
1498  *   The number of packets in the burst pointed to by "pkts".
1499  * @param max_pkts
1500  *   The max number of packets that can be stored in the "pkts" array.
1501  * @param user_param
1502  *   The arbitrary user parameter passed in by the application when the callback
1503  *   was originally configured.
1504  * @return
1505  *   The number of packets returned to the user.
1506  */
1507 typedef uint16_t (*rte_rx_callback_fn)(uint8_t port, uint16_t queue,
1508         struct rte_mbuf *pkts[], uint16_t nb_pkts, uint16_t max_pkts,
1509         void *user_param);
1510
1511 /**
1512  * Function type used for TX packet processing packet callbacks.
1513  *
1514  * The callback function is called on TX with a burst of packets immediately
1515  * before the packets are put onto the hardware queue for transmission.
1516  *
1517  * @param port
1518  *   The Ethernet port on which TX is being performed.
1519  * @param queue
1520  *   The queue on the Ethernet port which is being used to transmit the packets.
1521  * @param pkts
1522  *   The burst of packets that are about to be transmitted.
1523  * @param nb_pkts
1524  *   The number of packets in the burst pointed to by "pkts".
1525  * @param user_param
1526  *   The arbitrary user parameter passed in by the application when the callback
1527  *   was originally configured.
1528  * @return
1529  *   The number of packets to be written to the NIC.
1530  */
1531 typedef uint16_t (*rte_tx_callback_fn)(uint8_t port, uint16_t queue,
1532         struct rte_mbuf *pkts[], uint16_t nb_pkts, void *user_param);
1533
1534 /**
1535  * @internal
1536  * Structure used to hold information about the callbacks to be called for a
1537  * queue on RX and TX.
1538  */
1539 struct rte_eth_rxtx_callback {
1540         struct rte_eth_rxtx_callback *next;
1541         union{
1542                 rte_rx_callback_fn rx;
1543                 rte_tx_callback_fn tx;
1544         } fn;
1545         void *param;
1546 };
1547
1548 /**
1549  * The eth device type.
1550  */
1551 enum rte_eth_dev_type {
1552         RTE_ETH_DEV_UNKNOWN,    /**< unknown device type */
1553         RTE_ETH_DEV_PCI,
1554                 /**< Physical function and Virtual function of PCI devices */
1555         RTE_ETH_DEV_VIRTUAL,    /**< non hardware device */
1556         RTE_ETH_DEV_MAX         /**< max value of this enum */
1557 };
1558
1559 /**
1560  * @internal
1561  * The generic data structure associated with each ethernet device.
1562  *
1563  * Pointers to burst-oriented packet receive and transmit functions are
1564  * located at the beginning of the structure, along with the pointer to
1565  * where all the data elements for the particular device are stored in shared
1566  * memory. This split allows the function pointer and driver data to be per-
1567  * process, while the actual configuration data for the device is shared.
1568  */
1569 struct rte_eth_dev {
1570         eth_rx_burst_t rx_pkt_burst; /**< Pointer to PMD receive function. */
1571         eth_tx_burst_t tx_pkt_burst; /**< Pointer to PMD transmit function. */
1572         struct rte_eth_dev_data *data;  /**< Pointer to device data */
1573         const struct eth_driver *driver;/**< Driver for this device */
1574         const struct eth_dev_ops *dev_ops; /**< Functions exported by PMD */
1575         struct rte_pci_device *pci_dev; /**< PCI info. supplied by probing */
1576         /** User application callbacks for NIC interrupts */
1577         struct rte_eth_dev_cb_list link_intr_cbs;
1578         /**
1579          * User-supplied functions called from rx_burst to post-process
1580          * received packets before passing them to the user
1581          */
1582         struct rte_eth_rxtx_callback *post_rx_burst_cbs[RTE_MAX_QUEUES_PER_PORT];
1583         /**
1584          * User-supplied functions called from tx_burst to pre-process
1585          * received packets before passing them to the driver for transmission.
1586          */
1587         struct rte_eth_rxtx_callback *pre_tx_burst_cbs[RTE_MAX_QUEUES_PER_PORT];
1588         uint8_t attached; /**< Flag indicating the port is attached */
1589         enum rte_eth_dev_type dev_type; /**< Flag indicating the device type */
1590 };
1591
1592 struct rte_eth_dev_sriov {
1593         uint8_t active;               /**< SRIOV is active with 16, 32 or 64 pools */
1594         uint8_t nb_q_per_pool;        /**< rx queue number per pool */
1595         uint16_t def_vmdq_idx;        /**< Default pool num used for PF */
1596         uint16_t def_pool_q_idx;      /**< Default pool queue start reg index */
1597 };
1598 #define RTE_ETH_DEV_SRIOV(dev)         ((dev)->data->sriov)
1599
1600 #define RTE_ETH_NAME_MAX_LEN (32)
1601
1602 /**
1603  * @internal
1604  * The data part, with no function pointers, associated with each ethernet device.
1605  *
1606  * This structure is safe to place in shared memory to be common among different
1607  * processes in a multi-process configuration.
1608  */
1609 struct rte_eth_dev_data {
1610         char name[RTE_ETH_NAME_MAX_LEN]; /**< Unique identifier name */
1611
1612         void **rx_queues; /**< Array of pointers to RX queues. */
1613         void **tx_queues; /**< Array of pointers to TX queues. */
1614         uint16_t nb_rx_queues; /**< Number of RX queues. */
1615         uint16_t nb_tx_queues; /**< Number of TX queues. */
1616
1617         struct rte_eth_dev_sriov sriov;    /**< SRIOV data */
1618
1619         void *dev_private;              /**< PMD-specific private data */
1620
1621         struct rte_eth_link dev_link;
1622         /**< Link-level information & status */
1623
1624         struct rte_eth_conf dev_conf;   /**< Configuration applied to device. */
1625         uint16_t mtu;                   /**< Maximum Transmission Unit. */
1626
1627         uint32_t min_rx_buf_size;
1628         /**< Common rx buffer size handled by all queues */
1629
1630         uint64_t rx_mbuf_alloc_failed; /**< RX ring mbuf allocation failures. */
1631         struct ether_addr* mac_addrs;/**< Device Ethernet Link address. */
1632         uint64_t mac_pool_sel[ETH_NUM_RECEIVE_MAC_ADDR];
1633         /** bitmap array of associating Ethernet MAC addresses to pools */
1634         struct ether_addr* hash_mac_addrs;
1635         /** Device Ethernet MAC addresses of hash filtering. */
1636         uint8_t port_id;           /**< Device [external] port identifier. */
1637         uint8_t promiscuous   : 1, /**< RX promiscuous mode ON(1) / OFF(0). */
1638                 scattered_rx : 1,  /**< RX of scattered packets is ON(1) / OFF(0) */
1639                 all_multicast : 1, /**< RX all multicast mode ON(1) / OFF(0). */
1640                 dev_started : 1,   /**< Device state: STARTED(1) / STOPPED(0). */
1641                 lro         : 1;   /**< RX LRO is ON(1) / OFF(0) */
1642 };
1643
1644 /**
1645  * @internal
1646  * The pool of *rte_eth_dev* structures. The size of the pool
1647  * is configured at compile-time in the <rte_ethdev.c> file.
1648  */
1649 extern struct rte_eth_dev rte_eth_devices[];
1650
1651 /**
1652  * Get the total number of Ethernet devices that have been successfully
1653  * initialized by the [matching] Ethernet driver during the PCI probing phase.
1654  * All devices whose port identifier is in the range
1655  * [0,  rte_eth_dev_count() - 1] can be operated on by network applications
1656  * immediately after invoking rte_eal_init().
1657  * If the application unplugs a port using hotplug function, The enabled port
1658  * numbers may be noncontiguous. In the case, the applications need to manage
1659  * enabled port by themselves.
1660  *
1661  * @return
1662  *   - The total number of usable Ethernet devices.
1663  */
1664 extern uint8_t rte_eth_dev_count(void);
1665
1666 /**
1667  * @internal
1668  * Returns a ethdev slot specified by the unique identifier name.
1669  *
1670  * @param       name
1671  *  The pointer to the Unique identifier name for each Ethernet device
1672  * @return
1673  *   - The pointer to the ethdev slot, on success. NULL on error
1674  */
1675 extern struct rte_eth_dev *rte_eth_dev_allocated(const char *name);
1676
1677 /**
1678  * @internal
1679  * Allocates a new ethdev slot for an ethernet device and returns the pointer
1680  * to that slot for the driver to use.
1681  *
1682  * @param       name    Unique identifier name for each Ethernet device
1683  * @param       type    Device type of this Ethernet device
1684  * @return
1685  *   - Slot in the rte_dev_devices array for a new device;
1686  */
1687 struct rte_eth_dev *rte_eth_dev_allocate(const char *name,
1688                 enum rte_eth_dev_type type);
1689
1690 /**
1691  * @internal
1692  * Release the specified ethdev port.
1693  *
1694  * @param eth_dev
1695  * The *eth_dev* pointer is the address of the *rte_eth_dev* structure.
1696  * @return
1697  *   - 0 on success, negative on error
1698  */
1699 int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev);
1700
1701 /**
1702  * Attach a new Ethernet device specified by aruguments.
1703  *
1704  * @param devargs
1705  *  A pointer to a strings array describing the new device
1706  *  to be attached. The strings should be a pci address like
1707  *  '0000:01:00.0' or virtual device name like 'eth_pcap0'.
1708  * @param port_id
1709  *  A pointer to a port identifier actually attached.
1710  * @return
1711  *  0 on success and port_id is filled, negative on error
1712  */
1713 int rte_eth_dev_attach(const char *devargs, uint8_t *port_id);
1714
1715 /**
1716  * Detach a Ethernet device specified by port identifier.
1717  * This function must be called when the device is in the
1718  * closed state.
1719  *
1720  * @param port_id
1721  *   The port identifier of the device to detach.
1722  * @param devname
1723  *  A pointer to a device name actually detached.
1724  * @return
1725  *  0 on success and devname is filled, negative on error
1726  */
1727 int rte_eth_dev_detach(uint8_t port_id, char *devname);
1728
1729 struct eth_driver;
1730 /**
1731  * @internal
1732  * Initialization function of an Ethernet driver invoked for each matching
1733  * Ethernet PCI device detected during the PCI probing phase.
1734  *
1735  * @param eth_dev
1736  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
1737  *   associated with the matching device and which have been [automatically]
1738  *   allocated in the *rte_eth_devices* array.
1739  *   The *eth_dev* structure is supplied to the driver initialization function
1740  *   with the following fields already initialized:
1741  *
1742  *   - *pci_dev*: Holds the pointers to the *rte_pci_device* structure which
1743  *     contains the generic PCI information of the matching device.
1744  *
1745  *   - *driver*: Holds the pointer to the *eth_driver* structure.
1746  *
1747  *   - *dev_private*: Holds a pointer to the device private data structure.
1748  *
1749  *   - *mtu*: Contains the default Ethernet maximum frame length (1500).
1750  *
1751  *   - *port_id*: Contains the port index of the device (actually the index
1752  *     of the *eth_dev* structure in the *rte_eth_devices* array).
1753  *
1754  * @return
1755  *   - 0: Success, the device is properly initialized by the driver.
1756  *        In particular, the driver MUST have set up the *dev_ops* pointer
1757  *        of the *eth_dev* structure.
1758  *   - <0: Error code of the device initialization failure.
1759  */
1760 typedef int (*eth_dev_init_t)(struct rte_eth_dev *eth_dev);
1761
1762 /**
1763  * @internal
1764  * Finalization function of an Ethernet driver invoked for each matching
1765  * Ethernet PCI device detected during the PCI closing phase.
1766  *
1767  * @param eth_dev
1768  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
1769  *   associated with the matching device and which have been [automatically]
1770  *   allocated in the *rte_eth_devices* array.
1771  * @return
1772  *   - 0: Success, the device is properly finalized by the driver.
1773  *        In particular, the driver MUST free the *dev_ops* pointer
1774  *        of the *eth_dev* structure.
1775  *   - <0: Error code of the device initialization failure.
1776  */
1777 typedef int (*eth_dev_uninit_t)(struct rte_eth_dev *eth_dev);
1778
1779 /**
1780  * @internal
1781  * The structure associated with a PMD Ethernet driver.
1782  *
1783  * Each Ethernet driver acts as a PCI driver and is represented by a generic
1784  * *eth_driver* structure that holds:
1785  *
1786  * - An *rte_pci_driver* structure (which must be the first field).
1787  *
1788  * - The *eth_dev_init* function invoked for each matching PCI device.
1789  *
1790  * - The *eth_dev_uninit* function invoked for each matching PCI device.
1791  *
1792  * - The size of the private data to allocate for each matching device.
1793  */
1794 struct eth_driver {
1795         struct rte_pci_driver pci_drv;    /**< The PMD is also a PCI driver. */
1796         eth_dev_init_t eth_dev_init;      /**< Device init function. */
1797         eth_dev_uninit_t eth_dev_uninit;  /**< Device uninit function. */
1798         unsigned int dev_private_size;    /**< Size of device private data. */
1799 };
1800
1801 /**
1802  * @internal
1803  * A function invoked by the initialization function of an Ethernet driver
1804  * to simultaneously register itself as a PCI driver and as an Ethernet
1805  * Poll Mode Driver (PMD).
1806  *
1807  * @param eth_drv
1808  *   The pointer to the *eth_driver* structure associated with
1809  *   the Ethernet driver.
1810  */
1811 extern void rte_eth_driver_register(struct eth_driver *eth_drv);
1812
1813 /**
1814  * Configure an Ethernet device.
1815  * This function must be invoked first before any other function in the
1816  * Ethernet API. This function can also be re-invoked when a device is in the
1817  * stopped state.
1818  *
1819  * @param port_id
1820  *   The port identifier of the Ethernet device to configure.
1821  * @param nb_rx_queue
1822  *   The number of receive queues to set up for the Ethernet device.
1823  * @param nb_tx_queue
1824  *   The number of transmit queues to set up for the Ethernet device.
1825  * @param eth_conf
1826  *   The pointer to the configuration data to be used for the Ethernet device.
1827  *   The *rte_eth_conf* structure includes:
1828  *     -  the hardware offload features to activate, with dedicated fields for
1829  *        each statically configurable offload hardware feature provided by
1830  *        Ethernet devices, such as IP checksum or VLAN tag stripping for
1831  *        example.
1832  *     - the Receive Side Scaling (RSS) configuration when using multiple RX
1833  *         queues per port.
1834  *
1835  *   Embedding all configuration information in a single data structure
1836  *   is the more flexible method that allows the addition of new features
1837  *   without changing the syntax of the API.
1838  * @return
1839  *   - 0: Success, device configured.
1840  *   - <0: Error code returned by the driver configuration function.
1841  */
1842 extern int rte_eth_dev_configure(uint8_t port_id,
1843                                  uint16_t nb_rx_queue,
1844                                  uint16_t nb_tx_queue,
1845                                  const struct rte_eth_conf *eth_conf);
1846
1847 /**
1848  * Allocate and set up a receive queue for an Ethernet device.
1849  *
1850  * The function allocates a contiguous block of memory for *nb_rx_desc*
1851  * receive descriptors from a memory zone associated with *socket_id*
1852  * and initializes each receive descriptor with a network buffer allocated
1853  * from the memory pool *mb_pool*.
1854  *
1855  * @param port_id
1856  *   The port identifier of the Ethernet device.
1857  * @param rx_queue_id
1858  *   The index of the receive queue to set up.
1859  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1860  *   to rte_eth_dev_configure().
1861  * @param nb_rx_desc
1862  *   The number of receive descriptors to allocate for the receive ring.
1863  * @param socket_id
1864  *   The *socket_id* argument is the socket identifier in case of NUMA.
1865  *   The value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
1866  *   the DMA memory allocated for the receive descriptors of the ring.
1867  * @param rx_conf
1868  *   The pointer to the configuration data to be used for the receive queue.
1869  *   NULL value is allowed, in which case default RX configuration
1870  *   will be used.
1871  *   The *rx_conf* structure contains an *rx_thresh* structure with the values
1872  *   of the Prefetch, Host, and Write-Back threshold registers of the receive
1873  *   ring.
1874  * @param mb_pool
1875  *   The pointer to the memory pool from which to allocate *rte_mbuf* network
1876  *   memory buffers to populate each descriptor of the receive ring.
1877  * @return
1878  *   - 0: Success, receive queue correctly set up.
1879  *   - -EINVAL: The size of network buffers which can be allocated from the
1880  *      memory pool does not fit the various buffer sizes allowed by the
1881  *      device controller.
1882  *   - -ENOMEM: Unable to allocate the receive ring descriptors or to
1883  *      allocate network memory buffers from the memory pool when
1884  *      initializing receive descriptors.
1885  */
1886 extern int rte_eth_rx_queue_setup(uint8_t port_id, uint16_t rx_queue_id,
1887                                   uint16_t nb_rx_desc, unsigned int socket_id,
1888                                   const struct rte_eth_rxconf *rx_conf,
1889                                   struct rte_mempool *mb_pool);
1890
1891 /**
1892  * Allocate and set up a transmit queue for an Ethernet device.
1893  *
1894  * @param port_id
1895  *   The port identifier of the Ethernet device.
1896  * @param tx_queue_id
1897  *   The index of the transmit queue to set up.
1898  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
1899  *   to rte_eth_dev_configure().
1900  * @param nb_tx_desc
1901  *   The number of transmit descriptors to allocate for the transmit ring.
1902  * @param socket_id
1903  *   The *socket_id* argument is the socket identifier in case of NUMA.
1904  *   Its value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
1905  *   the DMA memory allocated for the transmit descriptors of the ring.
1906  * @param tx_conf
1907  *   The pointer to the configuration data to be used for the transmit queue.
1908  *   NULL value is allowed, in which case default RX configuration
1909  *   will be used.
1910  *   The *tx_conf* structure contains the following data:
1911  *   - The *tx_thresh* structure with the values of the Prefetch, Host, and
1912  *     Write-Back threshold registers of the transmit ring.
1913  *     When setting Write-Back threshold to the value greater then zero,
1914  *     *tx_rs_thresh* value should be explicitly set to one.
1915  *   - The *tx_free_thresh* value indicates the [minimum] number of network
1916  *     buffers that must be pending in the transmit ring to trigger their
1917  *     [implicit] freeing by the driver transmit function.
1918  *   - The *tx_rs_thresh* value indicates the [minimum] number of transmit
1919  *     descriptors that must be pending in the transmit ring before setting the
1920  *     RS bit on a descriptor by the driver transmit function.
1921  *     The *tx_rs_thresh* value should be less or equal then
1922  *     *tx_free_thresh* value, and both of them should be less then
1923  *     *nb_tx_desc* - 3.
1924  *   - The *txq_flags* member contains flags to pass to the TX queue setup
1925  *     function to configure the behavior of the TX queue. This should be set
1926  *     to 0 if no special configuration is required.
1927  *
1928  *     Note that setting *tx_free_thresh* or *tx_rs_thresh* value to 0 forces
1929  *     the transmit function to use default values.
1930  * @return
1931  *   - 0: Success, the transmit queue is correctly set up.
1932  *   - -ENOMEM: Unable to allocate the transmit ring descriptors.
1933  */
1934 extern int rte_eth_tx_queue_setup(uint8_t port_id, uint16_t tx_queue_id,
1935                                   uint16_t nb_tx_desc, unsigned int socket_id,
1936                                   const struct rte_eth_txconf *tx_conf);
1937
1938 /*
1939  * Return the NUMA socket to which an Ethernet device is connected
1940  *
1941  * @param port_id
1942  *   The port identifier of the Ethernet device
1943  * @return
1944  *   The NUMA socket id to which the Ethernet device is connected or
1945  *   a default of zero if the socket could not be determined.
1946  *   -1 is returned is the port_id value is out of range.
1947  */
1948 extern int rte_eth_dev_socket_id(uint8_t port_id);
1949
1950 /*
1951  * Check if port_id of device is attached
1952  *
1953  * @param port_id
1954  *   The port identifier of the Ethernet device
1955  * @return
1956  *   - 0 if port is out of range or not attached
1957  *   - 1 if device is attached
1958  */
1959 extern int rte_eth_dev_is_valid_port(uint8_t port_id);
1960
1961 /*
1962  * Allocate mbuf from mempool, setup the DMA physical address
1963  * and then start RX for specified queue of a port. It is used
1964  * when rx_deferred_start flag of the specified queue is true.
1965  *
1966  * @param port_id
1967  *   The port identifier of the Ethernet device
1968  * @param rx_queue_id
1969  *   The index of the rx queue to update the ring.
1970  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1971  *   to rte_eth_dev_configure().
1972  * @return
1973  *   - 0: Success, the transmit queue is correctly set up.
1974  *   - -EINVAL: The port_id or the queue_id out of range.
1975  *   - -ENOTSUP: The function not supported in PMD driver.
1976  */
1977 extern int rte_eth_dev_rx_queue_start(uint8_t port_id, uint16_t rx_queue_id);
1978
1979 /*
1980  * Stop specified RX queue of a port
1981  *
1982  * @param port_id
1983  *   The port identifier of the Ethernet device
1984  * @param rx_queue_id
1985  *   The index of the rx queue to update the ring.
1986  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1987  *   to rte_eth_dev_configure().
1988  * @return
1989  *   - 0: Success, the transmit queue is correctly set up.
1990  *   - -EINVAL: The port_id or the queue_id out of range.
1991  *   - -ENOTSUP: The function not supported in PMD driver.
1992  */
1993 extern int rte_eth_dev_rx_queue_stop(uint8_t port_id, uint16_t rx_queue_id);
1994
1995 /*
1996  * Start TX for specified queue of a port. It is used when tx_deferred_start
1997  * flag of the specified queue is true.
1998  *
1999  * @param port_id
2000  *   The port identifier of the Ethernet device
2001  * @param tx_queue_id
2002  *   The index of the tx queue to update the ring.
2003  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2004  *   to rte_eth_dev_configure().
2005  * @return
2006  *   - 0: Success, the transmit queue is correctly set up.
2007  *   - -EINVAL: The port_id or the queue_id out of range.
2008  *   - -ENOTSUP: The function not supported in PMD driver.
2009  */
2010 extern int rte_eth_dev_tx_queue_start(uint8_t port_id, uint16_t tx_queue_id);
2011
2012 /*
2013  * Stop specified TX queue of a port
2014  *
2015  * @param port_id
2016  *   The port identifier of the Ethernet device
2017  * @param tx_queue_id
2018  *   The index of the tx queue to update the ring.
2019  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2020  *   to rte_eth_dev_configure().
2021  * @return
2022  *   - 0: Success, the transmit queue is correctly set up.
2023  *   - -EINVAL: The port_id or the queue_id out of range.
2024  *   - -ENOTSUP: The function not supported in PMD driver.
2025  */
2026 extern int rte_eth_dev_tx_queue_stop(uint8_t port_id, uint16_t tx_queue_id);
2027
2028
2029
2030 /**
2031  * Start an Ethernet device.
2032  *
2033  * The device start step is the last one and consists of setting the configured
2034  * offload features and in starting the transmit and the receive units of the
2035  * device.
2036  * On success, all basic functions exported by the Ethernet API (link status,
2037  * receive/transmit, and so on) can be invoked.
2038  *
2039  * @param port_id
2040  *   The port identifier of the Ethernet device.
2041  * @return
2042  *   - 0: Success, Ethernet device started.
2043  *   - <0: Error code of the driver device start function.
2044  */
2045 extern int rte_eth_dev_start(uint8_t port_id);
2046
2047 /**
2048  * Stop an Ethernet device. The device can be restarted with a call to
2049  * rte_eth_dev_start()
2050  *
2051  * @param port_id
2052  *   The port identifier of the Ethernet device.
2053  */
2054 extern void rte_eth_dev_stop(uint8_t port_id);
2055
2056
2057 /**
2058  * Link up an Ethernet device.
2059  *
2060  * Set device link up will re-enable the device rx/tx
2061  * functionality after it is previously set device linked down.
2062  *
2063  * @param port_id
2064  *   The port identifier of the Ethernet device.
2065  * @return
2066  *   - 0: Success, Ethernet device linked up.
2067  *   - <0: Error code of the driver device link up function.
2068  */
2069 extern int rte_eth_dev_set_link_up(uint8_t port_id);
2070
2071 /**
2072  * Link down an Ethernet device.
2073  * The device rx/tx functionality will be disabled if success,
2074  * and it can be re-enabled with a call to
2075  * rte_eth_dev_set_link_up()
2076  *
2077  * @param port_id
2078  *   The port identifier of the Ethernet device.
2079  */
2080 extern int rte_eth_dev_set_link_down(uint8_t port_id);
2081
2082 /**
2083  * Close a stopped Ethernet device. The device cannot be restarted!
2084  * The function frees all resources except for needed by the
2085  * closed state. To free these resources, call rte_eth_dev_detach().
2086  *
2087  * @param port_id
2088  *   The port identifier of the Ethernet device.
2089  */
2090 extern void rte_eth_dev_close(uint8_t port_id);
2091
2092 /**
2093  * Enable receipt in promiscuous mode for an Ethernet device.
2094  *
2095  * @param port_id
2096  *   The port identifier of the Ethernet device.
2097  */
2098 extern void rte_eth_promiscuous_enable(uint8_t port_id);
2099
2100 /**
2101  * Disable receipt in promiscuous mode for an Ethernet device.
2102  *
2103  * @param port_id
2104  *   The port identifier of the Ethernet device.
2105  */
2106 extern void rte_eth_promiscuous_disable(uint8_t port_id);
2107
2108 /**
2109  * Return the value of promiscuous mode for an Ethernet device.
2110  *
2111  * @param port_id
2112  *   The port identifier of the Ethernet device.
2113  * @return
2114  *   - (1) if promiscuous is enabled
2115  *   - (0) if promiscuous is disabled.
2116  *   - (-1) on error
2117  */
2118 extern int rte_eth_promiscuous_get(uint8_t port_id);
2119
2120 /**
2121  * Enable the receipt of any multicast frame by an Ethernet device.
2122  *
2123  * @param port_id
2124  *   The port identifier of the Ethernet device.
2125  */
2126 extern void rte_eth_allmulticast_enable(uint8_t port_id);
2127
2128 /**
2129  * Disable the receipt of all multicast frames by an Ethernet device.
2130  *
2131  * @param port_id
2132  *   The port identifier of the Ethernet device.
2133  */
2134 extern void rte_eth_allmulticast_disable(uint8_t port_id);
2135
2136 /**
2137  * Return the value of allmulticast mode for an Ethernet device.
2138  *
2139  * @param port_id
2140  *   The port identifier of the Ethernet device.
2141  * @return
2142  *   - (1) if allmulticast is enabled
2143  *   - (0) if allmulticast is disabled.
2144  *   - (-1) on error
2145  */
2146 extern int rte_eth_allmulticast_get(uint8_t port_id);
2147
2148 /**
2149  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2150  * or FULL-DUPLEX) of the physical link of an Ethernet device. It might need
2151  * to wait up to 9 seconds in it.
2152  *
2153  * @param port_id
2154  *   The port identifier of the Ethernet device.
2155  * @param link
2156  *   A pointer to an *rte_eth_link* structure to be filled with
2157  *   the status, the speed and the mode of the Ethernet device link.
2158  */
2159 extern void rte_eth_link_get(uint8_t port_id, struct rte_eth_link *link);
2160
2161 /**
2162  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2163  * or FULL-DUPLEX) of the physical link of an Ethernet device. It is a no-wait
2164  * version of rte_eth_link_get().
2165  *
2166  * @param port_id
2167  *   The port identifier of the Ethernet device.
2168  * @param link
2169  *   A pointer to an *rte_eth_link* structure to be filled with
2170  *   the status, the speed and the mode of the Ethernet device link.
2171  */
2172 extern void rte_eth_link_get_nowait(uint8_t port_id,
2173                                 struct rte_eth_link *link);
2174
2175 /**
2176  * Retrieve the general I/O statistics of an Ethernet device.
2177  *
2178  * @param port_id
2179  *   The port identifier of the Ethernet device.
2180  * @param stats
2181  *   A pointer to a structure of type *rte_eth_stats* to be filled with
2182  *   the values of device counters for the following set of statistics:
2183  *   - *ipackets* with the total of successfully received packets.
2184  *   - *opackets* with the total of successfully transmitted packets.
2185  *   - *ibytes*   with the total of successfully received bytes.
2186  *   - *obytes*   with the total of successfully transmitted bytes.
2187  *   - *ierrors*  with the total of erroneous received packets.
2188  *   - *oerrors*  with the total of failed transmitted packets.
2189  * @return
2190  *   Zero if successful. Non-zero otherwise.
2191  */
2192 extern int rte_eth_stats_get(uint8_t port_id, struct rte_eth_stats *stats);
2193
2194 /**
2195  * Reset the general I/O statistics of an Ethernet device.
2196  *
2197  * @param port_id
2198  *   The port identifier of the Ethernet device.
2199  */
2200 extern void rte_eth_stats_reset(uint8_t port_id);
2201
2202 /**
2203  * Retrieve extended statistics of an Ethernet device.
2204  *
2205  * @param port_id
2206  *   The port identifier of the Ethernet device.
2207  * @param xstats
2208  *   A pointer to a table of structure of type *rte_eth_xstats*
2209  *   to be filled with device statistics names and values.
2210  *   This parameter can be set to NULL if n is 0.
2211  * @param n
2212  *   The size of the stats table, which should be large enough to store
2213  *   all the statistics of the device.
2214  * @return
2215  *   - positive value lower or equal to n: success. The return value
2216  *     is the number of entries filled in the stats table.
2217  *   - positive value higher than n: error, the given statistics table
2218  *     is too small. The return value corresponds to the size that should
2219  *     be given to succeed. The entries in the table are not valid and
2220  *     shall not be used by the caller.
2221  *   - negative value on error (invalid port id)
2222  */
2223 extern int rte_eth_xstats_get(uint8_t port_id,
2224         struct rte_eth_xstats *xstats, unsigned n);
2225
2226 /**
2227  * Reset extended statistics of an Ethernet device.
2228  *
2229  * @param port_id
2230  *   The port identifier of the Ethernet device.
2231  */
2232 extern void rte_eth_xstats_reset(uint8_t port_id);
2233
2234 /**
2235  *  Set a mapping for the specified transmit queue to the specified per-queue
2236  *  statistics counter.
2237  *
2238  * @param port_id
2239  *   The port identifier of the Ethernet device.
2240  * @param tx_queue_id
2241  *   The index of the transmit queue for which a queue stats mapping is required.
2242  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2243  *   to rte_eth_dev_configure().
2244  * @param stat_idx
2245  *   The per-queue packet statistics functionality number that the transmit
2246  *   queue is to be assigned.
2247  *   The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1].
2248  * @return
2249  *   Zero if successful. Non-zero otherwise.
2250  */
2251 extern int rte_eth_dev_set_tx_queue_stats_mapping(uint8_t port_id,
2252                                                   uint16_t tx_queue_id,
2253                                                   uint8_t stat_idx);
2254
2255 /**
2256  *  Set a mapping for the specified receive queue to the specified per-queue
2257  *  statistics counter.
2258  *
2259  * @param port_id
2260  *   The port identifier of the Ethernet device.
2261  * @param rx_queue_id
2262  *   The index of the receive queue for which a queue stats mapping is required.
2263  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2264  *   to rte_eth_dev_configure().
2265  * @param stat_idx
2266  *   The per-queue packet statistics functionality number that the receive
2267  *   queue is to be assigned.
2268  *   The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1].
2269  * @return
2270  *   Zero if successful. Non-zero otherwise.
2271  */
2272 extern int rte_eth_dev_set_rx_queue_stats_mapping(uint8_t port_id,
2273                                                   uint16_t rx_queue_id,
2274                                                   uint8_t stat_idx);
2275
2276 /**
2277  * Retrieve the Ethernet address of an Ethernet device.
2278  *
2279  * @param port_id
2280  *   The port identifier of the Ethernet device.
2281  * @param mac_addr
2282  *   A pointer to a structure of type *ether_addr* to be filled with
2283  *   the Ethernet address of the Ethernet device.
2284  */
2285 extern void rte_eth_macaddr_get(uint8_t port_id, struct ether_addr *mac_addr);
2286
2287 /**
2288  * Retrieve the contextual information of an Ethernet device.
2289  *
2290  * @param port_id
2291  *   The port identifier of the Ethernet device.
2292  * @param dev_info
2293  *   A pointer to a structure of type *rte_eth_dev_info* to be filled with
2294  *   the contextual information of the Ethernet device.
2295  */
2296 extern void rte_eth_dev_info_get(uint8_t port_id,
2297                                  struct rte_eth_dev_info *dev_info);
2298
2299 /**
2300  * Retrieve the MTU of an Ethernet device.
2301  *
2302  * @param port_id
2303  *   The port identifier of the Ethernet device.
2304  * @param mtu
2305  *   A pointer to a uint16_t where the retrieved MTU is to be stored.
2306  * @return
2307  *   - (0) if successful.
2308  *   - (-ENODEV) if *port_id* invalid.
2309  */
2310 extern int rte_eth_dev_get_mtu(uint8_t port_id, uint16_t *mtu);
2311
2312 /**
2313  * Change the MTU of an Ethernet device.
2314  *
2315  * @param port_id
2316  *   The port identifier of the Ethernet device.
2317  * @param mtu
2318  *   A uint16_t for the MTU to be applied.
2319  * @return
2320  *   - (0) if successful.
2321  *   - (-ENOTSUP) if operation is not supported.
2322  *   - (-ENODEV) if *port_id* invalid.
2323  *   - (-EINVAL) if *mtu* invalid.
2324  */
2325 extern int rte_eth_dev_set_mtu(uint8_t port_id, uint16_t mtu);
2326
2327 /**
2328  * Enable/Disable hardware filtering by an Ethernet device of received
2329  * VLAN packets tagged with a given VLAN Tag Identifier.
2330  *
2331  * @param port_id
2332  *   The port identifier of the Ethernet device.
2333  * @param vlan_id
2334  *   The VLAN Tag Identifier whose filtering must be enabled or disabled.
2335  * @param on
2336  *   If > 0, enable VLAN filtering of VLAN packets tagged with *vlan_id*.
2337  *   Otherwise, disable VLAN filtering of VLAN packets tagged with *vlan_id*.
2338  * @return
2339  *   - (0) if successful.
2340  *   - (-ENOSUP) if hardware-assisted VLAN filtering not configured.
2341  *   - (-ENODEV) if *port_id* invalid.
2342  *   - (-ENOSYS) if VLAN filtering on *port_id* disabled.
2343  *   - (-EINVAL) if *vlan_id* > 4095.
2344  */
2345 extern int rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id , int on);
2346
2347 /**
2348  * Enable/Disable hardware VLAN Strip by a rx queue of an Ethernet device.
2349  * 82599/X540/X550 can support VLAN stripping at the rx queue level
2350  *
2351  * @param port_id
2352  *   The port identifier of the Ethernet device.
2353  * @param rx_queue_id
2354  *   The index of the receive queue for which a queue stats mapping is required.
2355  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2356  *   to rte_eth_dev_configure().
2357  * @param on
2358  *   If 1, Enable VLAN Stripping of the receive queue of the Ethernet port.
2359  *   If 0, Disable VLAN Stripping of the receive queue of the Ethernet port.
2360  * @return
2361  *   - (0) if successful.
2362  *   - (-ENOSUP) if hardware-assisted VLAN stripping not configured.
2363  *   - (-ENODEV) if *port_id* invalid.
2364  *   - (-EINVAL) if *rx_queue_id* invalid.
2365  */
2366 extern int rte_eth_dev_set_vlan_strip_on_queue(uint8_t port_id,
2367                 uint16_t rx_queue_id, int on);
2368
2369 /**
2370  * Set the Outer VLAN Ether Type by an Ethernet device, it can be inserted to
2371  * the VLAN Header. This is a register setup available on some Intel NIC, not
2372  * but all, please check the data sheet for availability.
2373  *
2374  * @param port_id
2375  *   The port identifier of the Ethernet device.
2376  * @param tag_type
2377  *   The Tag Protocol ID
2378  * @return
2379  *   - (0) if successful.
2380  *   - (-ENOSUP) if hardware-assisted VLAN TPID setup is not supported.
2381  *   - (-ENODEV) if *port_id* invalid.
2382  */
2383 extern int rte_eth_dev_set_vlan_ether_type(uint8_t port_id, uint16_t tag_type);
2384
2385 /**
2386  * Set VLAN offload configuration on an Ethernet device
2387  * Enable/Disable Extended VLAN by an Ethernet device, This is a register setup
2388  * available on some Intel NIC, not but all, please check the data sheet for
2389  * availability.
2390  * Enable/Disable VLAN Strip can be done on rx queue for certain NIC, but here
2391  * the configuration is applied on the port level.
2392  *
2393  * @param port_id
2394  *   The port identifier of the Ethernet device.
2395  * @param offload_mask
2396  *   The VLAN Offload bit mask can be mixed use with "OR"
2397  *       ETH_VLAN_STRIP_OFFLOAD
2398  *       ETH_VLAN_FILTER_OFFLOAD
2399  *       ETH_VLAN_EXTEND_OFFLOAD
2400  * @return
2401  *   - (0) if successful.
2402  *   - (-ENOSUP) if hardware-assisted VLAN filtering not configured.
2403  *   - (-ENODEV) if *port_id* invalid.
2404  */
2405 extern int rte_eth_dev_set_vlan_offload(uint8_t port_id, int offload_mask);
2406
2407 /**
2408  * Read VLAN Offload configuration from an Ethernet device
2409  *
2410  * @param port_id
2411  *   The port identifier of the Ethernet device.
2412  * @return
2413  *   - (>0) if successful. Bit mask to indicate
2414  *       ETH_VLAN_STRIP_OFFLOAD
2415  *       ETH_VLAN_FILTER_OFFLOAD
2416  *       ETH_VLAN_EXTEND_OFFLOAD
2417  *   - (-ENODEV) if *port_id* invalid.
2418  */
2419 extern int rte_eth_dev_get_vlan_offload(uint8_t port_id);
2420
2421 /**
2422  * Set port based TX VLAN insersion on or off.
2423  *
2424  * @param port_id
2425  *  The port identifier of the Ethernet device.
2426  * @param pvid
2427  *  Port based TX VLAN identifier togeth with user priority.
2428  * @param on
2429  *  Turn on or off the port based TX VLAN insertion.
2430  *
2431  * @return
2432  *   - (0) if successful.
2433  *   - negative if failed.
2434  */
2435 extern int rte_eth_dev_set_vlan_pvid(uint8_t port_id, uint16_t pvid, int on);
2436
2437 /**
2438  *
2439  * Retrieve a burst of input packets from a receive queue of an Ethernet
2440  * device. The retrieved packets are stored in *rte_mbuf* structures whose
2441  * pointers are supplied in the *rx_pkts* array.
2442  *
2443  * The rte_eth_rx_burst() function loops, parsing the RX ring of the
2444  * receive queue, up to *nb_pkts* packets, and for each completed RX
2445  * descriptor in the ring, it performs the following operations:
2446  *
2447  * - Initialize the *rte_mbuf* data structure associated with the
2448  *   RX descriptor according to the information provided by the NIC into
2449  *   that RX descriptor.
2450  *
2451  * - Store the *rte_mbuf* data structure into the next entry of the
2452  *   *rx_pkts* array.
2453  *
2454  * - Replenish the RX descriptor with a new *rte_mbuf* buffer
2455  *   allocated from the memory pool associated with the receive queue at
2456  *   initialization time.
2457  *
2458  * When retrieving an input packet that was scattered by the controller
2459  * into multiple receive descriptors, the rte_eth_rx_burst() function
2460  * appends the associated *rte_mbuf* buffers to the first buffer of the
2461  * packet.
2462  *
2463  * The rte_eth_rx_burst() function returns the number of packets
2464  * actually retrieved, which is the number of *rte_mbuf* data structures
2465  * effectively supplied into the *rx_pkts* array.
2466  * A return value equal to *nb_pkts* indicates that the RX queue contained
2467  * at least *rx_pkts* packets, and this is likely to signify that other
2468  * received packets remain in the input queue. Applications implementing
2469  * a "retrieve as much received packets as possible" policy can check this
2470  * specific case and keep invoking the rte_eth_rx_burst() function until
2471  * a value less than *nb_pkts* is returned.
2472  *
2473  * This receive method has the following advantages:
2474  *
2475  * - It allows a run-to-completion network stack engine to retrieve and
2476  *   to immediately process received packets in a fast burst-oriented
2477  *   approach, avoiding the overhead of unnecessary intermediate packet
2478  *   queue/dequeue operations.
2479  *
2480  * - Conversely, it also allows an asynchronous-oriented processing
2481  *   method to retrieve bursts of received packets and to immediately
2482  *   queue them for further parallel processing by another logical core,
2483  *   for instance. However, instead of having received packets being
2484  *   individually queued by the driver, this approach allows the invoker
2485  *   of the rte_eth_rx_burst() function to queue a burst of retrieved
2486  *   packets at a time and therefore dramatically reduce the cost of
2487  *   enqueue/dequeue operations per packet.
2488  *
2489  * - It allows the rte_eth_rx_burst() function of the driver to take
2490  *   advantage of burst-oriented hardware features (CPU cache,
2491  *   prefetch instructions, and so on) to minimize the number of CPU
2492  *   cycles per packet.
2493  *
2494  * To summarize, the proposed receive API enables many
2495  * burst-oriented optimizations in both synchronous and asynchronous
2496  * packet processing environments with no overhead in both cases.
2497  *
2498  * The rte_eth_rx_burst() function does not provide any error
2499  * notification to avoid the corresponding overhead. As a hint, the
2500  * upper-level application might check the status of the device link once
2501  * being systematically returned a 0 value for a given number of tries.
2502  *
2503  * @param port_id
2504  *   The port identifier of the Ethernet device.
2505  * @param queue_id
2506  *   The index of the receive queue from which to retrieve input packets.
2507  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2508  *   to rte_eth_dev_configure().
2509  * @param rx_pkts
2510  *   The address of an array of pointers to *rte_mbuf* structures that
2511  *   must be large enough to store *nb_pkts* pointers in it.
2512  * @param nb_pkts
2513  *   The maximum number of packets to retrieve.
2514  * @return
2515  *   The number of packets actually retrieved, which is the number
2516  *   of pointers to *rte_mbuf* structures effectively supplied to the
2517  *   *rx_pkts* array.
2518  */
2519 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2520 extern uint16_t rte_eth_rx_burst(uint8_t port_id, uint16_t queue_id,
2521                                  struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
2522 #else
2523 static inline uint16_t
2524 rte_eth_rx_burst(uint8_t port_id, uint16_t queue_id,
2525                  struct rte_mbuf **rx_pkts, const uint16_t nb_pkts)
2526 {
2527         struct rte_eth_dev *dev;
2528
2529         dev = &rte_eth_devices[port_id];
2530
2531         int16_t nb_rx = (*dev->rx_pkt_burst)(dev->data->rx_queues[queue_id],
2532                         rx_pkts, nb_pkts);
2533
2534 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
2535         struct rte_eth_rxtx_callback *cb = dev->post_rx_burst_cbs[queue_id];
2536
2537         if (unlikely(cb != NULL)) {
2538                 do {
2539                         nb_rx = cb->fn.rx(port_id, queue_id, rx_pkts, nb_rx,
2540                                                 nb_pkts, cb->param);
2541                         cb = cb->next;
2542                 } while (cb != NULL);
2543         }
2544 #endif
2545
2546         return nb_rx;
2547 }
2548 #endif
2549
2550 /**
2551  * Get the number of used descriptors in a specific queue
2552  *
2553  * @param port_id
2554  *  The port identifier of the Ethernet device.
2555  * @param queue_id
2556  *  The queue id on the specific port.
2557  * @return
2558  *  The number of used descriptors in the specific queue.
2559  */
2560 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2561 extern uint32_t rte_eth_rx_queue_count(uint8_t port_id, uint16_t queue_id);
2562 #else
2563 static inline uint32_t
2564 rte_eth_rx_queue_count(uint8_t port_id, uint16_t queue_id)
2565 {
2566         struct rte_eth_dev *dev;
2567
2568         dev = &rte_eth_devices[port_id];
2569         return (*dev->dev_ops->rx_queue_count)(dev, queue_id);
2570 }
2571 #endif
2572
2573 /**
2574  * Check if the DD bit of the specific RX descriptor in the queue has been set
2575  *
2576  * @param port_id
2577  *  The port identifier of the Ethernet device.
2578  * @param queue_id
2579  *  The queue id on the specific port.
2580  * @param offset
2581  *  The offset of the descriptor ID from tail.
2582  * @return
2583  *  - (1) if the specific DD bit is set.
2584  *  - (0) if the specific DD bit is not set.
2585  *  - (-ENODEV) if *port_id* invalid.
2586  */
2587 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2588 extern int rte_eth_rx_descriptor_done(uint8_t port_id,
2589                                       uint16_t queue_id,
2590                                       uint16_t offset);
2591 #else
2592 static inline int
2593 rte_eth_rx_descriptor_done(uint8_t port_id, uint16_t queue_id, uint16_t offset)
2594 {
2595         struct rte_eth_dev *dev;
2596
2597         dev = &rte_eth_devices[port_id];
2598         return (*dev->dev_ops->rx_descriptor_done)( \
2599                 dev->data->rx_queues[queue_id], offset);
2600 }
2601 #endif
2602
2603 /**
2604  * Send a burst of output packets on a transmit queue of an Ethernet device.
2605  *
2606  * The rte_eth_tx_burst() function is invoked to transmit output packets
2607  * on the output queue *queue_id* of the Ethernet device designated by its
2608  * *port_id*.
2609  * The *nb_pkts* parameter is the number of packets to send which are
2610  * supplied in the *tx_pkts* array of *rte_mbuf* structures.
2611  * The rte_eth_tx_burst() function loops, sending *nb_pkts* packets,
2612  * up to the number of transmit descriptors available in the TX ring of the
2613  * transmit queue.
2614  * For each packet to send, the rte_eth_tx_burst() function performs
2615  * the following operations:
2616  *
2617  * - Pick up the next available descriptor in the transmit ring.
2618  *
2619  * - Free the network buffer previously sent with that descriptor, if any.
2620  *
2621  * - Initialize the transmit descriptor with the information provided
2622  *   in the *rte_mbuf data structure.
2623  *
2624  * In the case of a segmented packet composed of a list of *rte_mbuf* buffers,
2625  * the rte_eth_tx_burst() function uses several transmit descriptors
2626  * of the ring.
2627  *
2628  * The rte_eth_tx_burst() function returns the number of packets it
2629  * actually sent. A return value equal to *nb_pkts* means that all packets
2630  * have been sent, and this is likely to signify that other output packets
2631  * could be immediately transmitted again. Applications that implement a
2632  * "send as many packets to transmit as possible" policy can check this
2633  * specific case and keep invoking the rte_eth_tx_burst() function until
2634  * a value less than *nb_pkts* is returned.
2635  *
2636  * It is the responsibility of the rte_eth_tx_burst() function to
2637  * transparently free the memory buffers of packets previously sent.
2638  * This feature is driven by the *tx_free_thresh* value supplied to the
2639  * rte_eth_dev_configure() function at device configuration time.
2640  * When the number of free TX descriptors drops below this threshold, the
2641  * rte_eth_tx_burst() function must [attempt to] free the *rte_mbuf*  buffers
2642  * of those packets whose transmission was effectively completed.
2643  *
2644  * @param port_id
2645  *   The port identifier of the Ethernet device.
2646  * @param queue_id
2647  *   The index of the transmit queue through which output packets must be
2648  *   sent.
2649  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2650  *   to rte_eth_dev_configure().
2651  * @param tx_pkts
2652  *   The address of an array of *nb_pkts* pointers to *rte_mbuf* structures
2653  *   which contain the output packets.
2654  * @param nb_pkts
2655  *   The maximum number of packets to transmit.
2656  * @return
2657  *   The number of output packets actually stored in transmit descriptors of
2658  *   the transmit ring. The return value can be less than the value of the
2659  *   *tx_pkts* parameter when the transmit ring is full or has been filled up.
2660  */
2661 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2662 extern uint16_t rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id,
2663                                  struct rte_mbuf **tx_pkts, uint16_t nb_pkts);
2664 #else
2665 static inline uint16_t
2666 rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id,
2667                  struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
2668 {
2669         struct rte_eth_dev *dev;
2670
2671         dev = &rte_eth_devices[port_id];
2672
2673 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
2674         struct rte_eth_rxtx_callback *cb = dev->pre_tx_burst_cbs[queue_id];
2675
2676         if (unlikely(cb != NULL)) {
2677                 do {
2678                         nb_pkts = cb->fn.tx(port_id, queue_id, tx_pkts, nb_pkts,
2679                                         cb->param);
2680                         cb = cb->next;
2681                 } while (cb != NULL);
2682         }
2683 #endif
2684
2685         return (*dev->tx_pkt_burst)(dev->data->tx_queues[queue_id], tx_pkts, nb_pkts);
2686 }
2687 #endif
2688
2689 /**
2690  * Setup a new signature filter rule on an Ethernet device
2691  *
2692  * @param port_id
2693  *   The port identifier of the Ethernet device.
2694  * @param fdir_filter
2695  *   The pointer to the fdir filter structure describing the signature filter
2696  *   rule.
2697  *   The *rte_fdir_filter* structure includes the values of the different fields
2698  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2699  *   and destination ports, and so on.
2700  * @param rx_queue
2701  *   The index of the RX queue where to store RX packets matching the added
2702  *   signature filter defined in fdir_filter.
2703  * @return
2704  *   - (0) if successful.
2705  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2706  *   - (-ENODEV) if *port_id* invalid.
2707  *   - (-ENOSYS) if the FDIR mode is not configured in signature mode
2708  *               on *port_id*.
2709  *   - (-EINVAL) if the fdir_filter information is not correct.
2710  */
2711 int rte_eth_dev_fdir_add_signature_filter(uint8_t port_id,
2712                                           struct rte_fdir_filter *fdir_filter,
2713                                           uint8_t rx_queue);
2714
2715 /**
2716  * Update a signature filter rule on an Ethernet device.
2717  * If the rule doesn't exits, it is created.
2718  *
2719  * @param port_id
2720  *   The port identifier of the Ethernet device.
2721  * @param fdir_ftr
2722  *   The pointer to the structure describing the signature filter rule.
2723  *   The *rte_fdir_filter* structure includes the values of the different fields
2724  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2725  *   and destination ports, and so on.
2726  * @param rx_queue
2727  *   The index of the RX queue where to store RX packets matching the added
2728  *   signature filter defined in fdir_ftr.
2729  * @return
2730  *   - (0) if successful.
2731  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2732  *   - (-ENODEV) if *port_id* invalid.
2733  *   - (-ENOSYS) if the flow director mode is not configured in signature mode
2734  *     on *port_id*.
2735  *   - (-EINVAL) if the fdir_filter information is not correct.
2736  */
2737 int rte_eth_dev_fdir_update_signature_filter(uint8_t port_id,
2738                                              struct rte_fdir_filter *fdir_ftr,
2739                                              uint8_t rx_queue);
2740
2741 /**
2742  * Remove a signature filter rule on an Ethernet device.
2743  *
2744  * @param port_id
2745  *   The port identifier of the Ethernet device.
2746  * @param fdir_ftr
2747  *   The pointer to the structure describing the signature filter rule.
2748  *   The *rte_fdir_filter* structure includes the values of the different fields
2749  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2750  *   and destination ports, and so on.
2751  * @return
2752  *   - (0) if successful.
2753  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2754  *   - (-ENODEV) if *port_id* invalid.
2755  *   - (-ENOSYS) if the flow director mode is not configured in signature mode
2756  *     on *port_id*.
2757  *   - (-EINVAL) if the fdir_filter information is not correct.
2758  */
2759 int rte_eth_dev_fdir_remove_signature_filter(uint8_t port_id,
2760                                              struct rte_fdir_filter *fdir_ftr);
2761
2762 /**
2763  * Retrieve the flow director information of an Ethernet device.
2764  *
2765  * @param port_id
2766  *   The port identifier of the Ethernet device.
2767  * @param fdir
2768  *   A pointer to a structure of type *rte_eth_dev_fdir* to be filled with
2769  *   the flow director information of the Ethernet device.
2770  * @return
2771  *   - (0) if successful.
2772  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2773  *   - (-ENODEV) if *port_id* invalid.
2774  *   - (-ENOSYS) if the flow director mode is not configured on *port_id*.
2775  */
2776 int rte_eth_dev_fdir_get_infos(uint8_t port_id, struct rte_eth_fdir *fdir);
2777
2778 /**
2779  * Add a new perfect filter rule on an Ethernet device.
2780  *
2781  * @param port_id
2782  *   The port identifier of the Ethernet device.
2783  * @param fdir_filter
2784  *   The pointer to the structure describing the perfect filter rule.
2785  *   The *rte_fdir_filter* structure includes the values of the different fields
2786  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2787  *   and destination ports, and so on.
2788  *   IPv6 are not supported.
2789  * @param soft_id
2790  *    The 16-bit value supplied in the field hash.fdir.id of mbuf for RX
2791  *    packets matching the perfect filter.
2792  * @param rx_queue
2793  *   The index of the RX queue where to store RX packets matching the added
2794  *   perfect filter defined in fdir_filter.
2795  * @param drop
2796  *    If drop is set to 1, matching RX packets are stored into the RX drop
2797  *    queue defined in the rte_fdir_conf.
2798  * @return
2799  *   - (0) if successful.
2800  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2801  *   - (-ENODEV) if *port_id* invalid.
2802  *   - (-ENOSYS) if the flow director mode is not configured in perfect mode
2803  *               on *port_id*.
2804  *   - (-EINVAL) if the fdir_filter information is not correct.
2805  */
2806 int rte_eth_dev_fdir_add_perfect_filter(uint8_t port_id,
2807                                         struct rte_fdir_filter *fdir_filter,
2808                                         uint16_t soft_id, uint8_t rx_queue,
2809                                         uint8_t drop);
2810
2811 /**
2812  * Update a perfect filter rule on an Ethernet device.
2813  * If the rule doesn't exits, it is created.
2814  *
2815  * @param port_id
2816  *   The port identifier of the Ethernet device.
2817  * @param fdir_filter
2818  *   The pointer to the structure describing the perfect filter rule.
2819  *   The *rte_fdir_filter* structure includes the values of the different fields
2820  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2821  *   and destination ports, and so on.
2822  *   IPv6 are not supported.
2823  * @param soft_id
2824  *    The 16-bit value supplied in the field hash.fdir.id of mbuf for RX
2825  *    packets matching the perfect filter.
2826  * @param rx_queue
2827  *   The index of the RX queue where to store RX packets matching the added
2828  *   perfect filter defined in fdir_filter.
2829  * @param drop
2830  *    If drop is set to 1, matching RX packets are stored into the RX drop
2831  *    queue defined in the rte_fdir_conf.
2832  * @return
2833  *   - (0) if successful.
2834  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2835  *   - (-ENODEV) if *port_id* invalid.
2836  *   - (-ENOSYS) if the flow director mode is not configured in perfect mode
2837  *      on *port_id*.
2838  *   - (-EINVAL) if the fdir_filter information is not correct.
2839  */
2840 int rte_eth_dev_fdir_update_perfect_filter(uint8_t port_id,
2841                                            struct rte_fdir_filter *fdir_filter,
2842                                            uint16_t soft_id, uint8_t rx_queue,
2843                                            uint8_t drop);
2844
2845 /**
2846  * Remove a perfect filter rule on an Ethernet device.
2847  *
2848  * @param port_id
2849  *   The port identifier of the Ethernet device.
2850  * @param fdir_filter
2851  *   The pointer to the structure describing the perfect filter rule.
2852  *   The *rte_fdir_filter* structure includes the values of the different fields
2853  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2854  *   and destination ports, and so on.
2855  *   IPv6 are not supported.
2856  * @param soft_id
2857  *    The soft_id value provided when adding/updating the removed filter.
2858  * @return
2859  *   - (0) if successful.
2860  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2861  *   - (-ENODEV) if *port_id* invalid.
2862  *   - (-ENOSYS) if the flow director mode is not configured in perfect mode
2863  *      on *port_id*.
2864  *   - (-EINVAL) if the fdir_filter information is not correct.
2865  */
2866 int rte_eth_dev_fdir_remove_perfect_filter(uint8_t port_id,
2867                                            struct rte_fdir_filter *fdir_filter,
2868                                            uint16_t soft_id);
2869 /**
2870  * Configure globally the masks for flow director mode for an Ethernet device.
2871  * For example, the device can match packets with only the first 24 bits of
2872  * the IPv4 source address.
2873  *
2874  * The following fields can be masked: IPv4 addresses and L4 port numbers.
2875  * The following fields can be either enabled or disabled completely for the
2876  * matching functionality: VLAN ID tag; VLAN Priority + CFI bit; Flexible 2-byte
2877  * tuple.
2878  * IPv6 masks are not supported.
2879  *
2880  * All filters must comply with the masks previously configured.
2881  * For example, with a mask equal to 255.255.255.0 for the source IPv4 address,
2882  * all IPv4 filters must be created with a source IPv4 address that fits the
2883  * "X.X.X.0" format.
2884  *
2885  * This function flushes all filters that have been previously added in
2886  * the device.
2887  *
2888  * @param port_id
2889  *   The port identifier of the Ethernet device.
2890  * @param fdir_mask
2891  *   The pointer to the fdir mask structure describing relevant headers fields
2892  *   and relevant bits to use when matching packets addresses and ports.
2893  *   IPv6 masks are not supported.
2894  * @return
2895  *   - (0) if successful.
2896  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2897  *   - (-ENODEV) if *port_id* invalid.
2898  *   - (-ENOSYS) if the flow director mode is not configured in perfect
2899  *      mode on *port_id*.
2900  *   - (-EINVAL) if the fdir_filter information is not correct
2901  */
2902 int rte_eth_dev_fdir_set_masks(uint8_t port_id,
2903                                struct rte_fdir_masks *fdir_mask);
2904
2905 /**
2906  * The eth device event type for interrupt, and maybe others in the future.
2907  */
2908 enum rte_eth_event_type {
2909         RTE_ETH_EVENT_UNKNOWN,  /**< unknown event type */
2910         RTE_ETH_EVENT_INTR_LSC, /**< lsc interrupt event */
2911         RTE_ETH_EVENT_MAX       /**< max value of this enum */
2912 };
2913
2914 typedef void (*rte_eth_dev_cb_fn)(uint8_t port_id, \
2915                 enum rte_eth_event_type event, void *cb_arg);
2916 /**< user application callback to be registered for interrupts */
2917
2918
2919
2920 /**
2921  * Register a callback function for specific port id.
2922  *
2923  * @param port_id
2924  *  Port id.
2925  * @param event
2926  *  Event interested.
2927  * @param cb_fn
2928  *  User supplied callback function to be called.
2929  * @param cb_arg
2930  *  Pointer to the parameters for the registered callback.
2931  *
2932  * @return
2933  *  - On success, zero.
2934  *  - On failure, a negative value.
2935  */
2936 int rte_eth_dev_callback_register(uint8_t port_id,
2937                         enum rte_eth_event_type event,
2938                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
2939
2940 /**
2941  * Unregister a callback function for specific port id.
2942  *
2943  * @param port_id
2944  *  Port id.
2945  * @param event
2946  *  Event interested.
2947  * @param cb_fn
2948  *  User supplied callback function to be called.
2949  * @param cb_arg
2950  *  Pointer to the parameters for the registered callback. -1 means to
2951  *  remove all for the same callback address and same event.
2952  *
2953  * @return
2954  *  - On success, zero.
2955  *  - On failure, a negative value.
2956  */
2957 int rte_eth_dev_callback_unregister(uint8_t port_id,
2958                         enum rte_eth_event_type event,
2959                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
2960
2961 /**
2962  * @internal Executes all the user application registered callbacks for
2963  * the specific device. It is for DPDK internal user only. User
2964  * application should not call it directly.
2965  *
2966  * @param dev
2967  *  Pointer to struct rte_eth_dev.
2968  * @param event
2969  *  Eth device interrupt event type.
2970  *
2971  * @return
2972  *  void
2973  */
2974 void _rte_eth_dev_callback_process(struct rte_eth_dev *dev,
2975                                 enum rte_eth_event_type event);
2976
2977 /**
2978  * When there is no rx packet coming in Rx Queue for a long time, we can
2979  * sleep lcore related to RX Queue for power saving, and enable rx interrupt
2980  * to be triggered when rx packect arrives.
2981  *
2982  * The rte_eth_dev_rx_intr_enable() function enables rx queue
2983  * interrupt on specific rx queue of a port.
2984  *
2985  * @param port_id
2986  *   The port identifier of the Ethernet device.
2987  * @param queue_id
2988  *   The index of the receive queue from which to retrieve input packets.
2989  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2990  *   to rte_eth_dev_configure().
2991  * @return
2992  *   - (0) if successful.
2993  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
2994  *     that operation.
2995  *   - (-ENODEV) if *port_id* invalid.
2996  */
2997 int rte_eth_dev_rx_intr_enable(uint8_t port_id, uint16_t queue_id);
2998
2999 /**
3000  * When lcore wakes up from rx interrupt indicating packet coming, disable rx
3001  * interrupt and returns to polling mode.
3002  *
3003  * The rte_eth_dev_rx_intr_disable() function disables rx queue
3004  * interrupt on specific rx queue of a port.
3005  *
3006  * @param port_id
3007  *   The port identifier of the Ethernet device.
3008  * @param queue_id
3009  *   The index of the receive queue from which to retrieve input packets.
3010  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3011  *   to rte_eth_dev_configure().
3012  * @return
3013  *   - (0) if successful.
3014  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3015  *     that operation.
3016  *   - (-ENODEV) if *port_id* invalid.
3017  */
3018 int rte_eth_dev_rx_intr_disable(uint8_t port_id, uint16_t queue_id);
3019
3020 /**
3021  * RX Interrupt control per port.
3022  *
3023  * @param port_id
3024  *   The port identifier of the Ethernet device.
3025  * @param epfd
3026  *   Epoll instance fd which the intr vector associated to.
3027  *   Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance.
3028  * @param op
3029  *   The operation be performed for the vector.
3030  *   Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}.
3031  * @param data
3032  *   User raw data.
3033  * @return
3034  *   - On success, zero.
3035  *   - On failure, a negative value.
3036  */
3037 int rte_eth_dev_rx_intr_ctl(uint8_t port_id, int epfd, int op, void *data);
3038
3039 /**
3040  * RX Interrupt control per queue.
3041  *
3042  * @param port_id
3043  *   The port identifier of the Ethernet device.
3044  * @param queue_id
3045  *   The index of the receive queue from which to retrieve input packets.
3046  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
3047  *   to rte_eth_dev_configure().
3048  * @param epfd
3049  *   Epoll instance fd which the intr vector associated to.
3050  *   Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance.
3051  * @param op
3052  *   The operation be performed for the vector.
3053  *   Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}.
3054  * @param data
3055  *   User raw data.
3056  * @return
3057  *   - On success, zero.
3058  *   - On failure, a negative value.
3059  */
3060 int rte_eth_dev_rx_intr_ctl_q(uint8_t port_id, uint16_t queue_id,
3061                               int epfd, int op, void *data);
3062
3063 /**
3064  * Turn on the LED on the Ethernet device.
3065  * This function turns on the LED on the Ethernet device.
3066  *
3067  * @param port_id
3068  *   The port identifier of the Ethernet device.
3069  * @return
3070  *   - (0) if successful.
3071  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3072  *     that operation.
3073  *   - (-ENODEV) if *port_id* invalid.
3074  */
3075 int  rte_eth_led_on(uint8_t port_id);
3076
3077 /**
3078  * Turn off the LED on the Ethernet device.
3079  * This function turns off the LED on the Ethernet device.
3080  *
3081  * @param port_id
3082  *   The port identifier of the Ethernet device.
3083  * @return
3084  *   - (0) if successful.
3085  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
3086  *     that operation.
3087  *   - (-ENODEV) if *port_id* invalid.
3088  */
3089 int  rte_eth_led_off(uint8_t port_id);
3090
3091 /**
3092  * Get current status of the Ethernet link flow control for Ethernet device
3093  *
3094  * @param port_id
3095  *   The port identifier of the Ethernet device.
3096  * @param fc_conf
3097  *   The pointer to the structure where to store the flow control parameters.
3098  * @return
3099  *   - (0) if successful.
3100  *   - (-ENOTSUP) if hardware doesn't support flow control.
3101  *   - (-ENODEV)  if *port_id* invalid.
3102  */
3103 int rte_eth_dev_flow_ctrl_get(uint8_t port_id,
3104                               struct rte_eth_fc_conf *fc_conf);
3105
3106 /**
3107  * Configure the Ethernet link flow control for Ethernet device
3108  *
3109  * @param port_id
3110  *   The port identifier of the Ethernet device.
3111  * @param fc_conf
3112  *   The pointer to the structure of the flow control parameters.
3113  * @return
3114  *   - (0) if successful.
3115  *   - (-ENOTSUP) if hardware doesn't support flow control mode.
3116  *   - (-ENODEV)  if *port_id* invalid.
3117  *   - (-EINVAL)  if bad parameter
3118  *   - (-EIO)     if flow control setup failure
3119  */
3120 int rte_eth_dev_flow_ctrl_set(uint8_t port_id,
3121                               struct rte_eth_fc_conf *fc_conf);
3122
3123 /**
3124  * Configure the Ethernet priority flow control under DCB environment
3125  * for Ethernet device.
3126  *
3127  * @param port_id
3128  * The port identifier of the Ethernet device.
3129  * @param pfc_conf
3130  * The pointer to the structure of the priority flow control parameters.
3131  * @return
3132  *   - (0) if successful.
3133  *   - (-ENOTSUP) if hardware doesn't support priority flow control mode.
3134  *   - (-ENODEV)  if *port_id* invalid.
3135  *   - (-EINVAL)  if bad parameter
3136  *   - (-EIO)     if flow control setup failure
3137  */
3138 int rte_eth_dev_priority_flow_ctrl_set(uint8_t port_id,
3139                                 struct rte_eth_pfc_conf *pfc_conf);
3140
3141 /**
3142  * Add a MAC address to an internal array of addresses used to enable whitelist
3143  * filtering to accept packets only if the destination MAC address matches.
3144  *
3145  * @param port
3146  *   The port identifier of the Ethernet device.
3147  * @param mac_addr
3148  *   The MAC address to add.
3149  * @param pool
3150  *   VMDq pool index to associate address with (if VMDq is enabled). If VMDq is
3151  *   not enabled, this should be set to 0.
3152  * @return
3153  *   - (0) if successfully added or *mac_addr" was already added.
3154  *   - (-ENOTSUP) if hardware doesn't support this feature.
3155  *   - (-ENODEV) if *port* is invalid.
3156  *   - (-ENOSPC) if no more MAC addresses can be added.
3157  *   - (-EINVAL) if MAC address is invalid.
3158  */
3159 int rte_eth_dev_mac_addr_add(uint8_t port, struct ether_addr *mac_addr,
3160                                 uint32_t pool);
3161
3162 /**
3163  * Remove a MAC address from the internal array of addresses.
3164  *
3165  * @param port
3166  *   The port identifier of the Ethernet device.
3167  * @param mac_addr
3168  *   MAC address to remove.
3169  * @return
3170  *   - (0) if successful, or *mac_addr* didn't exist.
3171  *   - (-ENOTSUP) if hardware doesn't support.
3172  *   - (-ENODEV) if *port* invalid.
3173  *   - (-EADDRINUSE) if attempting to remove the default MAC address
3174  */
3175 int rte_eth_dev_mac_addr_remove(uint8_t port, struct ether_addr *mac_addr);
3176
3177 /**
3178  * Set the default MAC address.
3179  *
3180  * @param port
3181  *   The port identifier of the Ethernet device.
3182  * @param mac_addr
3183  *   New default MAC address.
3184  * @return
3185  *   - (0) if successful, or *mac_addr* didn't exist.
3186  *   - (-ENOTSUP) if hardware doesn't support.
3187  *   - (-ENODEV) if *port* invalid.
3188  *   - (-EINVAL) if MAC address is invalid.
3189  */
3190 int rte_eth_dev_default_mac_addr_set(uint8_t port, struct ether_addr *mac_addr);
3191
3192
3193 /**
3194  * Update Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3195  *
3196  * @param port
3197  *   The port identifier of the Ethernet device.
3198  * @param reta_conf
3199  *   RETA to update.
3200  * @param reta_size
3201  *   Redirection table size. The table size can be queried by
3202  *   rte_eth_dev_info_get().
3203  * @return
3204  *   - (0) if successful.
3205  *   - (-ENOTSUP) if hardware doesn't support.
3206  *   - (-EINVAL) if bad parameter.
3207  */
3208 int rte_eth_dev_rss_reta_update(uint8_t port,
3209                                 struct rte_eth_rss_reta_entry64 *reta_conf,
3210                                 uint16_t reta_size);
3211
3212  /**
3213  * Query Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3214  *
3215  * @param port
3216  *   The port identifier of the Ethernet device.
3217  * @param reta_conf
3218  *   RETA to query.
3219  * @param reta_size
3220  *   Redirection table size. The table size can be queried by
3221  *   rte_eth_dev_info_get().
3222  * @return
3223  *   - (0) if successful.
3224  *   - (-ENOTSUP) if hardware doesn't support.
3225  *   - (-EINVAL) if bad parameter.
3226  */
3227 int rte_eth_dev_rss_reta_query(uint8_t port,
3228                                struct rte_eth_rss_reta_entry64 *reta_conf,
3229                                uint16_t reta_size);
3230
3231  /**
3232  * Updates unicast hash table for receiving packet with the given destination
3233  * MAC address, and the packet is routed to all VFs for which the RX mode is
3234  * accept packets that match the unicast hash table.
3235  *
3236  * @param port
3237  *   The port identifier of the Ethernet device.
3238  * @param addr
3239  *   Unicast MAC address.
3240  * @param on
3241  *    1 - Set an unicast hash bit for receiving packets with the MAC address.
3242  *    0 - Clear an unicast hash bit.
3243  * @return
3244  *   - (0) if successful.
3245  *   - (-ENOTSUP) if hardware doesn't support.
3246   *  - (-ENODEV) if *port_id* invalid.
3247  *   - (-EINVAL) if bad parameter.
3248  */
3249 int rte_eth_dev_uc_hash_table_set(uint8_t port,struct ether_addr *addr,
3250                                         uint8_t on);
3251
3252  /**
3253  * Updates all unicast hash bitmaps for receiving packet with any Unicast
3254  * Ethernet MAC addresses,the packet is routed to all VFs for which the RX
3255  * mode is accept packets that match the unicast hash table.
3256  *
3257  * @param port
3258  *   The port identifier of the Ethernet device.
3259  * @param on
3260  *    1 - Set all unicast hash bitmaps for receiving all the Ethernet
3261  *         MAC addresses
3262  *    0 - Clear all unicast hash bitmaps
3263  * @return
3264  *   - (0) if successful.
3265  *   - (-ENOTSUP) if hardware doesn't support.
3266   *  - (-ENODEV) if *port_id* invalid.
3267  *   - (-EINVAL) if bad parameter.
3268  */
3269 int rte_eth_dev_uc_all_hash_table_set(uint8_t port,uint8_t on);
3270
3271  /**
3272  * Set RX L2 Filtering mode of a VF of an Ethernet device.
3273  *
3274  * @param port
3275  *   The port identifier of the Ethernet device.
3276  * @param vf
3277  *   VF id.
3278  * @param rx_mode
3279  *    The RX mode mask, which  is one or more of  accepting Untagged Packets,
3280  *    packets that match the PFUTA table, Broadcast and Multicast Promiscuous.
3281  *    ETH_VMDQ_ACCEPT_UNTAG,ETH_VMDQ_ACCEPT_HASH_UC,
3282  *    ETH_VMDQ_ACCEPT_BROADCAST and ETH_VMDQ_ACCEPT_MULTICAST will be used
3283  *    in rx_mode.
3284  * @param on
3285  *    1 - Enable a VF RX mode.
3286  *    0 - Disable a VF RX mode.
3287  * @return
3288  *   - (0) if successful.
3289  *   - (-ENOTSUP) if hardware doesn't support.
3290  *   - (-ENOTSUP) if hardware doesn't support.
3291  *   - (-EINVAL) if bad parameter.
3292  */
3293 int rte_eth_dev_set_vf_rxmode(uint8_t port, uint16_t vf, uint16_t rx_mode,
3294                                 uint8_t on);
3295
3296 /**
3297 * Enable or disable a VF traffic transmit of the Ethernet device.
3298 *
3299 * @param port
3300 *   The port identifier of the Ethernet device.
3301 * @param vf
3302 *   VF id.
3303 * @param on
3304 *    1 - Enable a VF traffic transmit.
3305 *    0 - Disable a VF traffic transmit.
3306 * @return
3307 *   - (0) if successful.
3308 *   - (-ENODEV) if *port_id* invalid.
3309 *   - (-ENOTSUP) if hardware doesn't support.
3310 *   - (-EINVAL) if bad parameter.
3311 */
3312 int
3313 rte_eth_dev_set_vf_tx(uint8_t port,uint16_t vf, uint8_t on);
3314
3315 /**
3316 * Enable or disable a VF traffic receive of an Ethernet device.
3317 *
3318 * @param port
3319 *   The port identifier of the Ethernet device.
3320 * @param vf
3321 *   VF id.
3322 * @param on
3323 *    1 - Enable a VF traffic receive.
3324 *    0 - Disable a VF traffic receive.
3325 * @return
3326 *   - (0) if successful.
3327 *   - (-ENOTSUP) if hardware doesn't support.
3328 *   - (-ENODEV) if *port_id* invalid.
3329 *   - (-EINVAL) if bad parameter.
3330 */
3331 int
3332 rte_eth_dev_set_vf_rx(uint8_t port,uint16_t vf, uint8_t on);
3333
3334 /**
3335 * Enable/Disable hardware VF VLAN filtering by an Ethernet device of
3336 * received VLAN packets tagged with a given VLAN Tag Identifier.
3337 *
3338 * @param port id
3339 *   The port identifier of the Ethernet device.
3340 * @param vlan_id
3341 *   The VLAN Tag Identifier whose filtering must be enabled or disabled.
3342 * @param vf_mask
3343 *    Bitmap listing which VFs participate in the VLAN filtering.
3344 * @param vlan_on
3345 *    1 - Enable VFs VLAN filtering.
3346 *    0 - Disable VFs VLAN filtering.
3347 * @return
3348 *   - (0) if successful.
3349 *   - (-ENOTSUP) if hardware doesn't support.
3350 *   - (-ENODEV) if *port_id* invalid.
3351 *   - (-EINVAL) if bad parameter.
3352 */
3353 int
3354 rte_eth_dev_set_vf_vlan_filter(uint8_t port, uint16_t vlan_id,
3355                                 uint64_t vf_mask,
3356                                 uint8_t vlan_on);
3357
3358 /**
3359  * Set a traffic mirroring rule on an Ethernet device
3360  *
3361  * @param port_id
3362  *   The port identifier of the Ethernet device.
3363  * @param mirror_conf
3364  *   The pointer to the traffic mirroring structure describing the mirroring rule.
3365  *   The *rte_eth_vm_mirror_conf* structure includes the type of mirroring rule,
3366  *   destination pool and the value of rule if enable vlan or pool mirroring.
3367  *
3368  * @param rule_id
3369  *   The index of traffic mirroring rule, we support four separated rules.
3370  * @param on
3371  *   1 - Enable a mirroring rule.
3372  *   0 - Disable a mirroring rule.
3373  * @return
3374  *   - (0) if successful.
3375  *   - (-ENOTSUP) if hardware doesn't support this feature.
3376  *   - (-ENODEV) if *port_id* invalid.
3377  *   - (-EINVAL) if the mr_conf information is not correct.
3378  */
3379 int rte_eth_mirror_rule_set(uint8_t port_id,
3380                         struct rte_eth_mirror_conf *mirror_conf,
3381                         uint8_t rule_id,
3382                         uint8_t on);
3383
3384 /**
3385  * Reset a traffic mirroring rule on an Ethernet device.
3386  *
3387  * @param port_id
3388  *   The port identifier of the Ethernet device.
3389  * @param rule_id
3390  *   The index of traffic mirroring rule, we support four separated rules.
3391  * @return
3392  *   - (0) if successful.
3393  *   - (-ENOTSUP) if hardware doesn't support this feature.
3394  *   - (-ENODEV) if *port_id* invalid.
3395  *   - (-EINVAL) if bad parameter.
3396  */
3397 int rte_eth_mirror_rule_reset(uint8_t port_id,
3398                                          uint8_t rule_id);
3399
3400 /**
3401  * Set the rate limitation for a queue on an Ethernet device.
3402  *
3403  * @param port_id
3404  *   The port identifier of the Ethernet device.
3405  * @param queue_idx
3406  *   The queue id.
3407  * @param tx_rate
3408  *   The tx rate allocated from the total link speed for this queue.
3409  * @return
3410  *   - (0) if successful.
3411  *   - (-ENOTSUP) if hardware doesn't support this feature.
3412  *   - (-ENODEV) if *port_id* invalid.
3413  *   - (-EINVAL) if bad parameter.
3414  */
3415 int rte_eth_set_queue_rate_limit(uint8_t port_id, uint16_t queue_idx,
3416                         uint16_t tx_rate);
3417
3418 /**
3419  * Set the rate limitation for a vf on an Ethernet device.
3420  *
3421  * @param port_id
3422  *   The port identifier of the Ethernet device.
3423  * @param vf
3424  *   VF id.
3425  * @param tx_rate
3426  *   The tx rate allocated from the total link speed for this VF id.
3427  * @param q_msk
3428  *   The queue mask which need to set the rate.
3429  * @return
3430  *   - (0) if successful.
3431  *   - (-ENOTSUP) if hardware doesn't support this feature.
3432  *   - (-ENODEV) if *port_id* invalid.
3433  *   - (-EINVAL) if bad parameter.
3434  */
3435 int rte_eth_set_vf_rate_limit(uint8_t port_id, uint16_t vf,
3436                         uint16_t tx_rate, uint64_t q_msk);
3437
3438 /**
3439  * Initialize bypass logic. This function needs to be called before
3440  * executing any other bypass API.
3441  *
3442  * @param port
3443  *   The port identifier of the Ethernet device.
3444  * @return
3445  *   - (0) if successful.
3446  *   - (-ENOTSUP) if hardware doesn't support.
3447  *   - (-EINVAL) if bad parameter.
3448  */
3449 int rte_eth_dev_bypass_init(uint8_t port);
3450
3451 /**
3452  * Return bypass state.
3453  *
3454  * @param port
3455  *   The port identifier of the Ethernet device.
3456  * @param state
3457  *   The return bypass state.
3458  *   - (1) Normal mode
3459  *   - (2) Bypass mode
3460  *   - (3) Isolate mode
3461  * @return
3462  *   - (0) if successful.
3463  *   - (-ENOTSUP) if hardware doesn't support.
3464  *   - (-EINVAL) if bad parameter.
3465  */
3466 int rte_eth_dev_bypass_state_show(uint8_t port, uint32_t *state);
3467
3468 /**
3469  * Set bypass state
3470  *
3471  * @param port
3472  *   The port identifier of the Ethernet device.
3473  * @param new_state
3474  *   The current bypass state.
3475  *   - (1) Normal mode
3476  *   - (2) Bypass mode
3477  *   - (3) Isolate mode
3478  * @return
3479  *   - (0) if successful.
3480  *   - (-ENOTSUP) if hardware doesn't support.
3481  *   - (-EINVAL) if bad parameter.
3482  */
3483 int rte_eth_dev_bypass_state_set(uint8_t port, uint32_t *new_state);
3484
3485 /**
3486  * Return bypass state when given event occurs.
3487  *
3488  * @param port
3489  *   The port identifier of the Ethernet device.
3490  * @param event
3491  *   The bypass event
3492  *   - (1) Main power on (power button is pushed)
3493  *   - (2) Auxiliary power on (power supply is being plugged)
3494  *   - (3) Main power off (system shutdown and power supply is left plugged in)
3495  *   - (4) Auxiliary power off (power supply is being unplugged)
3496  *   - (5) Display or set the watchdog timer
3497  * @param state
3498  *   The bypass state when given event occurred.
3499  *   - (1) Normal mode
3500  *   - (2) Bypass mode
3501  *   - (3) Isolate mode
3502  * @return
3503  *   - (0) if successful.
3504  *   - (-ENOTSUP) if hardware doesn't support.
3505  *   - (-EINVAL) if bad parameter.
3506  */
3507 int rte_eth_dev_bypass_event_show(uint8_t port, uint32_t event, uint32_t *state);
3508
3509 /**
3510  * Set bypass state when given event occurs.
3511  *
3512  * @param port
3513  *   The port identifier of the Ethernet device.
3514  * @param event
3515  *   The bypass event
3516  *   - (1) Main power on (power button is pushed)
3517  *   - (2) Auxiliary power on (power supply is being plugged)
3518  *   - (3) Main power off (system shutdown and power supply is left plugged in)
3519  *   - (4) Auxiliary power off (power supply is being unplugged)
3520  *   - (5) Display or set the watchdog timer
3521  * @param state
3522  *   The assigned state when given event occurs.
3523  *   - (1) Normal mode
3524  *   - (2) Bypass mode
3525  *   - (3) Isolate mode
3526  * @return
3527  *   - (0) if successful.
3528  *   - (-ENOTSUP) if hardware doesn't support.
3529  *   - (-EINVAL) if bad parameter.
3530  */
3531 int rte_eth_dev_bypass_event_store(uint8_t port, uint32_t event, uint32_t state);
3532
3533 /**
3534  * Set bypass watchdog timeout count.
3535  *
3536  * @param port
3537  *   The port identifier of the Ethernet device.
3538  * @param timeout
3539  *   The timeout to be set.
3540  *   - (0) 0 seconds (timer is off)
3541  *   - (1) 1.5 seconds
3542  *   - (2) 2 seconds
3543  *   - (3) 3 seconds
3544  *   - (4) 4 seconds
3545  *   - (5) 8 seconds
3546  *   - (6) 16 seconds
3547  *   - (7) 32 seconds
3548  * @return
3549  *   - (0) if successful.
3550  *   - (-ENOTSUP) if hardware doesn't support.
3551  *   - (-EINVAL) if bad parameter.
3552  */
3553 int rte_eth_dev_wd_timeout_store(uint8_t port, uint32_t timeout);
3554
3555 /**
3556  * Get bypass firmware version.
3557  *
3558  * @param port
3559  *   The port identifier of the Ethernet device.
3560  * @param ver
3561  *   The firmware version
3562  * @return
3563  *   - (0) if successful.
3564  *   - (-ENOTSUP) if hardware doesn't support.
3565  *   - (-EINVAL) if bad parameter.
3566  */
3567 int rte_eth_dev_bypass_ver_show(uint8_t port, uint32_t *ver);
3568
3569 /**
3570  * Return bypass watchdog timeout in seconds
3571  *
3572  * @param port
3573  *   The port identifier of the Ethernet device.
3574  * @param wd_timeout
3575  *   The return watchdog timeout. "0" represents timer expired
3576  *   - (0) 0 seconds (timer is off)
3577  *   - (1) 1.5 seconds
3578  *   - (2) 2 seconds
3579  *   - (3) 3 seconds
3580  *   - (4) 4 seconds
3581  *   - (5) 8 seconds
3582  *   - (6) 16 seconds
3583  *   - (7) 32 seconds
3584  * @return
3585  *   - (0) if successful.
3586  *   - (-ENOTSUP) if hardware doesn't support.
3587  *   - (-EINVAL) if bad parameter.
3588  */
3589 int rte_eth_dev_bypass_wd_timeout_show(uint8_t port, uint32_t *wd_timeout);
3590
3591 /**
3592  * Reset bypass watchdog timer
3593  *
3594  * @param port
3595  *   The port identifier of the Ethernet device.
3596  * @return
3597  *   - (0) if successful.
3598  *   - (-ENOTSUP) if hardware doesn't support.
3599  *   - (-EINVAL) if bad parameter.
3600  */
3601 int rte_eth_dev_bypass_wd_reset(uint8_t port);
3602
3603  /**
3604  * Configuration of Receive Side Scaling hash computation of Ethernet device.
3605  *
3606  * @param port_id
3607  *   The port identifier of the Ethernet device.
3608  * @param rss_conf
3609  *   The new configuration to use for RSS hash computation on the port.
3610  * @return
3611  *   - (0) if successful.
3612  *   - (-ENODEV) if port identifier is invalid.
3613  *   - (-ENOTSUP) if hardware doesn't support.
3614  *   - (-EINVAL) if bad parameter.
3615  */
3616 int rte_eth_dev_rss_hash_update(uint8_t port_id,
3617                                 struct rte_eth_rss_conf *rss_conf);
3618
3619  /**
3620  * Retrieve current configuration of Receive Side Scaling hash computation
3621  * of Ethernet device.
3622  *
3623  * @param port_id
3624  *   The port identifier of the Ethernet device.
3625  * @param rss_conf
3626  *   Where to store the current RSS hash configuration of the Ethernet device.
3627  * @return
3628  *   - (0) if successful.
3629  *   - (-ENODEV) if port identifier is invalid.
3630  *   - (-ENOTSUP) if hardware doesn't support RSS.
3631  */
3632 int
3633 rte_eth_dev_rss_hash_conf_get(uint8_t port_id,
3634                               struct rte_eth_rss_conf *rss_conf);
3635
3636  /**
3637  * Add UDP tunneling port of an Ethernet device for filtering a specific
3638  * tunneling packet by UDP port number.
3639  *
3640  * @param port_id
3641  *   The port identifier of the Ethernet device.
3642  * @param tunnel_udp
3643  *   UDP tunneling configuration.
3644  *
3645  * @return
3646  *   - (0) if successful.
3647  *   - (-ENODEV) if port identifier is invalid.
3648  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3649  */
3650 int
3651 rte_eth_dev_udp_tunnel_add(uint8_t port_id,
3652                            struct rte_eth_udp_tunnel *tunnel_udp);
3653
3654  /**
3655  * Detete UDP tunneling port configuration of Ethernet device
3656  *
3657  * @param port_id
3658  *   The port identifier of the Ethernet device.
3659  * @param tunnel_udp
3660  *   UDP tunneling configuration.
3661  *
3662  * @return
3663  *   - (0) if successful.
3664  *   - (-ENODEV) if port identifier is invalid.
3665  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3666  */
3667 int
3668 rte_eth_dev_udp_tunnel_delete(uint8_t port_id,
3669                               struct rte_eth_udp_tunnel *tunnel_udp);
3670
3671 /**
3672  * Check whether the filter type is supported on an Ethernet device.
3673  * All the supported filter types are defined in 'rte_eth_ctrl.h'.
3674  *
3675  * @param port_id
3676  *   The port identifier of the Ethernet device.
3677  * @param filter_type
3678  *   Filter type.
3679  * @return
3680  *   - (0) if successful.
3681  *   - (-ENOTSUP) if hardware doesn't support this filter type.
3682  *   - (-ENODEV) if *port_id* invalid.
3683  */
3684 int rte_eth_dev_filter_supported(uint8_t port_id, enum rte_filter_type filter_type);
3685
3686 /**
3687  * Take operations to assigned filter type on an Ethernet device.
3688  * All the supported operations and filter types are defined in 'rte_eth_ctrl.h'.
3689  *
3690  * @param port_id
3691  *   The port identifier of the Ethernet device.
3692  * @param filter_type
3693  *   Filter type.
3694  * @param filter_op
3695  *   Type of operation.
3696  * @param arg
3697  *   A pointer to arguments defined specifically for the operation.
3698  * @return
3699  *   - (0) if successful.
3700  *   - (-ENOTSUP) if hardware doesn't support.
3701  *   - (-ENODEV) if *port_id* invalid.
3702  *   - others depends on the specific operations implementation.
3703  */
3704 int rte_eth_dev_filter_ctrl(uint8_t port_id, enum rte_filter_type filter_type,
3705                         enum rte_filter_op filter_op, void *arg);
3706
3707 /**
3708  * Add a callback to be called on packet RX on a given port and queue.
3709  *
3710  * This API configures a function to be called for each burst of
3711  * packets received on a given NIC port queue. The return value is a pointer
3712  * that can be used to later remove the callback using
3713  * rte_eth_remove_rx_callback().
3714  *
3715  * Multiple functions are called in the order that they are added.
3716  *
3717  * @param port_id
3718  *   The port identifier of the Ethernet device.
3719  * @param queue_id
3720  *   The queue on the Ethernet device on which the callback is to be added.
3721  * @param fn
3722  *   The callback function
3723  * @param user_param
3724  *   A generic pointer parameter which will be passed to each invocation of the
3725  *   callback function on this port and queue.
3726  *
3727  * @return
3728  *   NULL on error.
3729  *   On success, a pointer value which can later be used to remove the callback.
3730  */
3731 void *rte_eth_add_rx_callback(uint8_t port_id, uint16_t queue_id,
3732                 rte_rx_callback_fn fn, void *user_param);
3733
3734 /**
3735  * Add a callback to be called on packet TX on a given port and queue.
3736  *
3737  * This API configures a function to be called for each burst of
3738  * packets sent on a given NIC port queue. The return value is a pointer
3739  * that can be used to later remove the callback using
3740  * rte_eth_remove_tx_callback().
3741  *
3742  * Multiple functions are called in the order that they are added.
3743  *
3744  * @param port_id
3745  *   The port identifier of the Ethernet device.
3746  * @param queue_id
3747  *   The queue on the Ethernet device on which the callback is to be added.
3748  * @param fn
3749  *   The callback function
3750  * @param user_param
3751  *   A generic pointer parameter which will be passed to each invocation of the
3752  *   callback function on this port and queue.
3753  *
3754  * @return
3755  *   NULL on error.
3756  *   On success, a pointer value which can later be used to remove the callback.
3757  */
3758 void *rte_eth_add_tx_callback(uint8_t port_id, uint16_t queue_id,
3759                 rte_tx_callback_fn fn, void *user_param);
3760
3761 /**
3762  * Remove an RX packet callback from a given port and queue.
3763  *
3764  * This function is used to removed callbacks that were added to a NIC port
3765  * queue using rte_eth_add_rx_callback().
3766  *
3767  * Note: the callback is removed from the callback list but it isn't freed
3768  * since the it may still be in use. The memory for the callback can be
3769  * subsequently freed back by the application by calling rte_free():
3770  *
3771  * - Immediately - if the port is stopped, or the user knows that no
3772  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3773  *   on that queue.
3774  *
3775  * - After a short delay - where the delay is sufficient to allow any
3776  *   in-flight callbacks to complete.
3777  *
3778  * @param port_id
3779  *   The port identifier of the Ethernet device.
3780  * @param queue_id
3781  *   The queue on the Ethernet device from which the callback is to be removed.
3782  * @param user_cb
3783  *   User supplied callback created via rte_eth_add_rx_callback().
3784  *
3785  * @return
3786  *   - 0: Success. Callback was removed.
3787  *   - -ENOTSUP: Callback support is not available.
3788  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3789  *               is NULL or not found for the port/queue.
3790  */
3791 int rte_eth_remove_rx_callback(uint8_t port_id, uint16_t queue_id,
3792                 struct rte_eth_rxtx_callback *user_cb);
3793
3794 /**
3795  * Remove a TX packet callback from a given port and queue.
3796  *
3797  * This function is used to removed callbacks that were added to a NIC port
3798  * queue using rte_eth_add_tx_callback().
3799  *
3800  * Note: the callback is removed from the callback list but it isn't freed
3801  * since the it may still be in use. The memory for the callback can be
3802  * subsequently freed back by the application by calling rte_free():
3803  *
3804  * - Immediately - if the port is stopped, or the user knows that no
3805  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3806  *   on that queue.
3807  *
3808  * - After a short delay - where the delay is sufficient to allow any
3809  *   in-flight callbacks to complete.
3810  *
3811  * @param port_id
3812  *   The port identifier of the Ethernet device.
3813  * @param queue_id
3814  *   The queue on the Ethernet device from which the callback is to be removed.
3815  * @param user_cb
3816  *   User supplied callback created via rte_eth_add_tx_callback().
3817  *
3818  * @return
3819  *   - 0: Success. Callback was removed.
3820  *   - -ENOTSUP: Callback support is not available.
3821  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3822  *               is NULL or not found for the port/queue.
3823  */
3824 int rte_eth_remove_tx_callback(uint8_t port_id, uint16_t queue_id,
3825                 struct rte_eth_rxtx_callback *user_cb);
3826
3827 /**
3828  * Retrieve number of available registers for access
3829  *
3830  * @param port_id
3831  *   The port identifier of the Ethernet device.
3832  * @return
3833  *   - (>=0) number of registers if successful.
3834  *   - (-ENOTSUP) if hardware doesn't support.
3835  *   - (-ENODEV) if *port_id* invalid.
3836  *   - others depends on the specific operations implementation.
3837  */
3838 int rte_eth_dev_get_reg_length(uint8_t port_id);
3839
3840 /**
3841  * Retrieve device registers and register attributes
3842  *
3843  * @param port_id
3844  *   The port identifier of the Ethernet device.
3845  * @param info
3846  *   The template includes buffer for register data and attribute to be filled.
3847  * @return
3848  *   - (0) if successful.
3849  *   - (-ENOTSUP) if hardware doesn't support.
3850  *   - (-ENODEV) if *port_id* invalid.
3851  *   - others depends on the specific operations implementation.
3852  */
3853 int rte_eth_dev_get_reg_info(uint8_t port_id, struct rte_dev_reg_info *info);
3854
3855 /**
3856  * Retrieve size of device EEPROM
3857  *
3858  * @param port_id
3859  *   The port identifier of the Ethernet device.
3860  * @return
3861  *   - (>=0) EEPROM size if successful.
3862  *   - (-ENOTSUP) if hardware doesn't support.
3863  *   - (-ENODEV) if *port_id* invalid.
3864  *   - others depends on the specific operations implementation.
3865  */
3866 int rte_eth_dev_get_eeprom_length(uint8_t port_id);
3867
3868 /**
3869  * Retrieve EEPROM and EEPROM attribute
3870  *
3871  * @param port_id
3872  *   The port identifier of the Ethernet device.
3873  * @param info
3874  *   The template includes buffer for return EEPROM data and
3875  *   EEPROM attributes to be filled.
3876  * @return
3877  *   - (0) if successful.
3878  *   - (-ENOTSUP) if hardware doesn't support.
3879  *   - (-ENODEV) if *port_id* invalid.
3880  *   - others depends on the specific operations implementation.
3881  */
3882 int rte_eth_dev_get_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
3883
3884 /**
3885  * Program EEPROM with provided data
3886  *
3887  * @param port_id
3888  *   The port identifier of the Ethernet device.
3889  * @param info
3890  *   The template includes EEPROM data for programming and
3891  *   EEPROM attributes to be filled
3892  * @return
3893  *   - (0) if successful.
3894  *   - (-ENOTSUP) if hardware doesn't support.
3895  *   - (-ENODEV) if *port_id* invalid.
3896  *   - others depends on the specific operations implementation.
3897  */
3898 int rte_eth_dev_set_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
3899
3900 /**
3901  * Set the list of multicast addresses to filter on an Ethernet device.
3902  *
3903  * @param port_id
3904  *   The port identifier of the Ethernet device.
3905  * @param mc_addr_set
3906  *   The array of multicast addresses to set. Equal to NULL when the function
3907  *   is invoked to flush the set of filtered addresses.
3908  * @param nb_mc_addr
3909  *   The number of multicast addresses in the *mc_addr_set* array. Equal to 0
3910  *   when the function is invoked to flush the set of filtered addresses.
3911  * @return
3912  *   - (0) if successful.
3913  *   - (-ENODEV) if *port_id* invalid.
3914  *   - (-ENOTSUP) if PMD of *port_id* doesn't support multicast filtering.
3915  *   - (-ENOSPC) if *port_id* has not enough multicast filtering resources.
3916  */
3917 int rte_eth_dev_set_mc_addr_list(uint8_t port_id,
3918                                  struct ether_addr *mc_addr_set,
3919                                  uint32_t nb_mc_addr);
3920
3921 /**
3922  * Enable IEEE1588/802.1AS timestamping for an Ethernet device.
3923  *
3924  * @param port_id
3925  *   The port identifier of the Ethernet device.
3926  *
3927  * @return
3928  *   - 0: Success.
3929  *   - -ENODEV: The port ID is invalid.
3930  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3931  */
3932 extern int rte_eth_timesync_enable(uint8_t port_id);
3933
3934 /**
3935  * Disable IEEE1588/802.1AS timestamping for an Ethernet device.
3936  *
3937  * @param port_id
3938  *   The port identifier of the Ethernet device.
3939  *
3940  * @return
3941  *   - 0: Success.
3942  *   - -ENODEV: The port ID is invalid.
3943  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3944  */
3945 extern int rte_eth_timesync_disable(uint8_t port_id);
3946
3947 /**
3948  * Read an IEEE1588/802.1AS RX timestamp from an Ethernet device.
3949  *
3950  * @param port_id
3951  *   The port identifier of the Ethernet device.
3952  * @param timestamp
3953  *   Pointer to the timestamp struct.
3954  * @param flags
3955  *   Device specific flags. Used to pass the RX timesync register index to
3956  *   i40e. Unused in igb/ixgbe, pass 0 instead.
3957  *
3958  * @return
3959  *   - 0: Success.
3960  *   - -EINVAL: No timestamp is available.
3961  *   - -ENODEV: The port ID is invalid.
3962  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3963  */
3964 extern int rte_eth_timesync_read_rx_timestamp(uint8_t port_id,
3965                                               struct timespec *timestamp,
3966                                               uint32_t flags);
3967
3968 /**
3969  * Read an IEEE1588/802.1AS TX timestamp from an Ethernet device.
3970  *
3971  * @param port_id
3972  *   The port identifier of the Ethernet device.
3973  * @param timestamp
3974  *   Pointer to the timestamp struct.
3975  *
3976  * @return
3977  *   - 0: Success.
3978  *   - -EINVAL: No timestamp is available.
3979  *   - -ENODEV: The port ID is invalid.
3980  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3981  */
3982 extern int rte_eth_timesync_read_tx_timestamp(uint8_t port_id,
3983                                               struct timespec *timestamp);
3984
3985 #ifdef __cplusplus
3986 }
3987 #endif
3988
3989 #endif /* _RTE_ETHDEV_H_ */