8f1cf8d84ae41517ed4a21361800c6b7b1427b5f
[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 };
849
850 /**
851  * A structure used to configure an Ethernet port.
852  * Depending upon the RX multi-queue mode, extra advanced
853  * configuration settings may be needed.
854  */
855 struct rte_eth_conf {
856         uint16_t link_speed;
857         /**< ETH_LINK_SPEED_10[0|00|000], or 0 for autonegotation */
858         uint16_t link_duplex;
859         /**< ETH_LINK_[HALF_DUPLEX|FULL_DUPLEX], or 0 for autonegotation */
860         struct rte_eth_rxmode rxmode; /**< Port RX configuration. */
861         struct rte_eth_txmode txmode; /**< Port TX configuration. */
862         uint32_t lpbk_mode; /**< Loopback operation mode. By default the value
863                                  is 0, meaning the loopback mode is disabled.
864                                  Read the datasheet of given ethernet controller
865                                  for details. The possible values of this field
866                                  are defined in implementation of each driver. */
867         struct {
868                 struct rte_eth_rss_conf rss_conf; /**< Port RSS configuration */
869                 struct rte_eth_vmdq_dcb_conf vmdq_dcb_conf;
870                 /**< Port vmdq+dcb configuration. */
871                 struct rte_eth_dcb_rx_conf dcb_rx_conf;
872                 /**< Port dcb RX configuration. */
873                 struct rte_eth_vmdq_rx_conf vmdq_rx_conf;
874                 /**< Port vmdq RX configuration. */
875         } rx_adv_conf; /**< Port RX filtering configuration (union). */
876         union {
877                 struct rte_eth_vmdq_dcb_tx_conf vmdq_dcb_tx_conf;
878                 /**< Port vmdq+dcb TX configuration. */
879                 struct rte_eth_dcb_tx_conf dcb_tx_conf;
880                 /**< Port dcb TX configuration. */
881                 struct rte_eth_vmdq_tx_conf vmdq_tx_conf;
882                 /**< Port vmdq TX configuration. */
883         } tx_adv_conf; /**< Port TX DCB configuration (union). */
884         /** Currently,Priority Flow Control(PFC) are supported,if DCB with PFC
885             is needed,and the variable must be set ETH_DCB_PFC_SUPPORT. */
886         uint32_t dcb_capability_en;
887         struct rte_fdir_conf fdir_conf; /**< FDIR configuration. */
888         struct rte_intr_conf intr_conf; /**< Interrupt mode configuration. */
889 };
890
891 /**
892  * A structure used to retrieve the contextual information of
893  * an Ethernet device, such as the controlling driver of the device,
894  * its PCI context, etc...
895  */
896
897 /**
898  * RX offload capabilities of a device.
899  */
900 #define DEV_RX_OFFLOAD_VLAN_STRIP  0x00000001
901 #define DEV_RX_OFFLOAD_IPV4_CKSUM  0x00000002
902 #define DEV_RX_OFFLOAD_UDP_CKSUM   0x00000004
903 #define DEV_RX_OFFLOAD_TCP_CKSUM   0x00000008
904 #define DEV_RX_OFFLOAD_TCP_LRO     0x00000010
905 #define DEV_RX_OFFLOAD_QINQ_STRIP  0x00000020
906
907 /**
908  * TX offload capabilities of a device.
909  */
910 #define DEV_TX_OFFLOAD_VLAN_INSERT 0x00000001
911 #define DEV_TX_OFFLOAD_IPV4_CKSUM  0x00000002
912 #define DEV_TX_OFFLOAD_UDP_CKSUM   0x00000004
913 #define DEV_TX_OFFLOAD_TCP_CKSUM   0x00000008
914 #define DEV_TX_OFFLOAD_SCTP_CKSUM  0x00000010
915 #define DEV_TX_OFFLOAD_TCP_TSO     0x00000020
916 #define DEV_TX_OFFLOAD_UDP_TSO     0x00000040
917 #define DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM 0x00000080 /**< Used for tunneling packet. */
918 #define DEV_TX_OFFLOAD_QINQ_INSERT 0x00000100
919
920 struct rte_eth_dev_info {
921         struct rte_pci_device *pci_dev; /**< Device PCI information. */
922         const char *driver_name; /**< Device Driver name. */
923         unsigned int if_index; /**< Index to bound host interface, or 0 if none.
924                 Use if_indextoname() to translate into an interface name. */
925         uint32_t min_rx_bufsize; /**< Minimum size of RX buffer. */
926         uint32_t max_rx_pktlen; /**< Maximum configurable length of RX pkt. */
927         uint16_t max_rx_queues; /**< Maximum number of RX queues. */
928         uint16_t max_tx_queues; /**< Maximum number of TX queues. */
929         uint32_t max_mac_addrs; /**< Maximum number of MAC addresses. */
930         uint32_t max_hash_mac_addrs;
931         /** Maximum number of hash MAC addresses for MTA and UTA. */
932         uint16_t max_vfs; /**< Maximum number of VFs. */
933         uint16_t max_vmdq_pools; /**< Maximum number of VMDq pools. */
934         uint32_t rx_offload_capa; /**< Device RX offload capabilities. */
935         uint32_t tx_offload_capa; /**< Device TX offload capabilities. */
936         uint16_t reta_size;
937         /**< Device redirection table size, the total number of entries. */
938         uint8_t hash_key_size; /**< Hash key size in bytes */
939         /** Bit mask of RSS offloads, the bit offset also means flow type */
940         uint64_t flow_type_rss_offloads;
941         struct rte_eth_rxconf default_rxconf; /**< Default RX configuration */
942         struct rte_eth_txconf default_txconf; /**< Default TX configuration */
943         uint16_t vmdq_queue_base; /**< First queue ID for VMDQ pools. */
944         uint16_t vmdq_queue_num;  /**< Queue number for VMDQ pools. */
945         uint16_t vmdq_pool_base;  /**< First ID of VMDQ pools. */
946 };
947
948 /** Maximum name length for extended statistics counters */
949 #define RTE_ETH_XSTATS_NAME_SIZE 64
950
951 /**
952  * An Ethernet device extended statistic structure
953  *
954  * This structure is used by ethdev->eth_xstats_get() to provide
955  * statistics that are not provided in the generic rte_eth_stats
956  * structure.
957  */
958 struct rte_eth_xstats {
959         char name[RTE_ETH_XSTATS_NAME_SIZE];
960         uint64_t value;
961 };
962
963 struct rte_eth_dev;
964
965 struct rte_eth_dev_callback;
966 /** @internal Structure to keep track of registered callbacks */
967 TAILQ_HEAD(rte_eth_dev_cb_list, rte_eth_dev_callback);
968
969 /*
970  * Definitions of all functions exported by an Ethernet driver through the
971  * the generic structure of type *eth_dev_ops* supplied in the *rte_eth_dev*
972  * structure associated with an Ethernet device.
973  */
974
975 typedef int  (*eth_dev_configure_t)(struct rte_eth_dev *dev);
976 /**< @internal Ethernet device configuration. */
977
978 typedef int  (*eth_dev_start_t)(struct rte_eth_dev *dev);
979 /**< @internal Function used to start a configured Ethernet device. */
980
981 typedef void (*eth_dev_stop_t)(struct rte_eth_dev *dev);
982 /**< @internal Function used to stop a configured Ethernet device. */
983
984 typedef int  (*eth_dev_set_link_up_t)(struct rte_eth_dev *dev);
985 /**< @internal Function used to link up a configured Ethernet device. */
986
987 typedef int  (*eth_dev_set_link_down_t)(struct rte_eth_dev *dev);
988 /**< @internal Function used to link down a configured Ethernet device. */
989
990 typedef void (*eth_dev_close_t)(struct rte_eth_dev *dev);
991 /**< @internal Function used to close a configured Ethernet device. */
992
993 typedef void (*eth_promiscuous_enable_t)(struct rte_eth_dev *dev);
994 /**< @internal Function used to enable the RX promiscuous mode of an Ethernet device. */
995
996 typedef void (*eth_promiscuous_disable_t)(struct rte_eth_dev *dev);
997 /**< @internal Function used to disable the RX promiscuous mode of an Ethernet device. */
998
999 typedef void (*eth_allmulticast_enable_t)(struct rte_eth_dev *dev);
1000 /**< @internal Enable the receipt of all multicast packets by an Ethernet device. */
1001
1002 typedef void (*eth_allmulticast_disable_t)(struct rte_eth_dev *dev);
1003 /**< @internal Disable the receipt of all multicast packets by an Ethernet device. */
1004
1005 typedef int (*eth_link_update_t)(struct rte_eth_dev *dev,
1006                                 int wait_to_complete);
1007 /**< @internal Get link speed, duplex mode and state (up/down) of an Ethernet device. */
1008
1009 typedef void (*eth_stats_get_t)(struct rte_eth_dev *dev,
1010                                 struct rte_eth_stats *igb_stats);
1011 /**< @internal Get global I/O statistics of an Ethernet device. */
1012
1013 typedef void (*eth_stats_reset_t)(struct rte_eth_dev *dev);
1014 /**< @internal Reset global I/O statistics of an Ethernet device to 0. */
1015
1016 typedef int (*eth_xstats_get_t)(struct rte_eth_dev *dev,
1017         struct rte_eth_xstats *stats, unsigned n);
1018 /**< @internal Get extended stats of an Ethernet device. */
1019
1020 typedef void (*eth_xstats_reset_t)(struct rte_eth_dev *dev);
1021 /**< @internal Reset extended stats of an Ethernet device. */
1022
1023 typedef int (*eth_queue_stats_mapping_set_t)(struct rte_eth_dev *dev,
1024                                              uint16_t queue_id,
1025                                              uint8_t stat_idx,
1026                                              uint8_t is_rx);
1027 /**< @internal Set a queue statistics mapping for a tx/rx queue of an Ethernet device. */
1028
1029 typedef void (*eth_dev_infos_get_t)(struct rte_eth_dev *dev,
1030                                     struct rte_eth_dev_info *dev_info);
1031 /**< @internal Get specific informations of an Ethernet device. */
1032
1033 typedef int (*eth_queue_start_t)(struct rte_eth_dev *dev,
1034                                     uint16_t queue_id);
1035 /**< @internal Start rx and tx of a queue of an Ethernet device. */
1036
1037 typedef int (*eth_queue_stop_t)(struct rte_eth_dev *dev,
1038                                     uint16_t queue_id);
1039 /**< @internal Stop rx and tx of a queue of an Ethernet device. */
1040
1041 typedef int (*eth_rx_queue_setup_t)(struct rte_eth_dev *dev,
1042                                     uint16_t rx_queue_id,
1043                                     uint16_t nb_rx_desc,
1044                                     unsigned int socket_id,
1045                                     const struct rte_eth_rxconf *rx_conf,
1046                                     struct rte_mempool *mb_pool);
1047 /**< @internal Set up a receive queue of an Ethernet device. */
1048
1049 typedef int (*eth_tx_queue_setup_t)(struct rte_eth_dev *dev,
1050                                     uint16_t tx_queue_id,
1051                                     uint16_t nb_tx_desc,
1052                                     unsigned int socket_id,
1053                                     const struct rte_eth_txconf *tx_conf);
1054 /**< @internal Setup a transmit queue of an Ethernet device. */
1055
1056 typedef void (*eth_queue_release_t)(void *queue);
1057 /**< @internal Release memory resources allocated by given RX/TX queue. */
1058
1059 typedef uint32_t (*eth_rx_queue_count_t)(struct rte_eth_dev *dev,
1060                                          uint16_t rx_queue_id);
1061 /**< @internal Get number of available descriptors on a receive queue of an Ethernet device. */
1062
1063 typedef int (*eth_rx_descriptor_done_t)(void *rxq, uint16_t offset);
1064 /**< @internal Check DD bit of specific RX descriptor */
1065
1066 typedef int (*mtu_set_t)(struct rte_eth_dev *dev, uint16_t mtu);
1067 /**< @internal Set MTU. */
1068
1069 typedef int (*vlan_filter_set_t)(struct rte_eth_dev *dev,
1070                                   uint16_t vlan_id,
1071                                   int on);
1072 /**< @internal filtering of a VLAN Tag Identifier by an Ethernet device. */
1073
1074 typedef void (*vlan_tpid_set_t)(struct rte_eth_dev *dev,
1075                                   uint16_t tpid);
1076 /**< @internal set the outer VLAN-TPID by an Ethernet device. */
1077
1078 typedef void (*vlan_offload_set_t)(struct rte_eth_dev *dev, int mask);
1079 /**< @internal set VLAN offload function by an Ethernet device. */
1080
1081 typedef int (*vlan_pvid_set_t)(struct rte_eth_dev *dev,
1082                                uint16_t vlan_id,
1083                                int on);
1084 /**< @internal set port based TX VLAN insertion by an Ethernet device. */
1085
1086 typedef void (*vlan_strip_queue_set_t)(struct rte_eth_dev *dev,
1087                                   uint16_t rx_queue_id,
1088                                   int on);
1089 /**< @internal VLAN stripping enable/disable by an queue of Ethernet device. */
1090
1091 typedef uint16_t (*eth_rx_burst_t)(void *rxq,
1092                                    struct rte_mbuf **rx_pkts,
1093                                    uint16_t nb_pkts);
1094 /**< @internal Retrieve input packets from a receive queue of an Ethernet device. */
1095
1096 typedef uint16_t (*eth_tx_burst_t)(void *txq,
1097                                    struct rte_mbuf **tx_pkts,
1098                                    uint16_t nb_pkts);
1099 /**< @internal Send output packets on a transmit queue of an Ethernet device. */
1100
1101 typedef int (*fdir_add_signature_filter_t)(struct rte_eth_dev *dev,
1102                                            struct rte_fdir_filter *fdir_ftr,
1103                                            uint8_t rx_queue);
1104 /**< @internal Setup a new signature filter rule on an Ethernet device */
1105
1106 typedef int (*fdir_update_signature_filter_t)(struct rte_eth_dev *dev,
1107                                               struct rte_fdir_filter *fdir_ftr,
1108                                               uint8_t rx_queue);
1109 /**< @internal Update a signature filter rule on an Ethernet device */
1110
1111 typedef int (*fdir_remove_signature_filter_t)(struct rte_eth_dev *dev,
1112                                               struct rte_fdir_filter *fdir_ftr);
1113 /**< @internal Remove a  signature filter rule on an Ethernet device */
1114
1115 typedef void (*fdir_infos_get_t)(struct rte_eth_dev *dev,
1116                                  struct rte_eth_fdir *fdir);
1117 /**< @internal Get information about fdir status */
1118
1119 typedef int (*fdir_add_perfect_filter_t)(struct rte_eth_dev *dev,
1120                                          struct rte_fdir_filter *fdir_ftr,
1121                                          uint16_t soft_id, uint8_t rx_queue,
1122                                          uint8_t drop);
1123 /**< @internal Setup a new perfect filter rule on an Ethernet device */
1124
1125 typedef int (*fdir_update_perfect_filter_t)(struct rte_eth_dev *dev,
1126                                             struct rte_fdir_filter *fdir_ftr,
1127                                             uint16_t soft_id, uint8_t rx_queue,
1128                                             uint8_t drop);
1129 /**< @internal Update a perfect filter rule on an Ethernet device */
1130
1131 typedef int (*fdir_remove_perfect_filter_t)(struct rte_eth_dev *dev,
1132                                             struct rte_fdir_filter *fdir_ftr,
1133                                             uint16_t soft_id);
1134 /**< @internal Remove a perfect filter rule on an Ethernet device */
1135
1136 typedef int (*fdir_set_masks_t)(struct rte_eth_dev *dev,
1137                                 struct rte_fdir_masks *fdir_masks);
1138 /**< @internal Setup flow director masks on an Ethernet device */
1139
1140 typedef int (*flow_ctrl_get_t)(struct rte_eth_dev *dev,
1141                                struct rte_eth_fc_conf *fc_conf);
1142 /**< @internal Get current flow control parameter on an Ethernet device */
1143
1144 typedef int (*flow_ctrl_set_t)(struct rte_eth_dev *dev,
1145                                struct rte_eth_fc_conf *fc_conf);
1146 /**< @internal Setup flow control parameter on an Ethernet device */
1147
1148 typedef int (*priority_flow_ctrl_set_t)(struct rte_eth_dev *dev,
1149                                 struct rte_eth_pfc_conf *pfc_conf);
1150 /**< @internal Setup priority flow control parameter on an Ethernet device */
1151
1152 typedef int (*reta_update_t)(struct rte_eth_dev *dev,
1153                              struct rte_eth_rss_reta_entry64 *reta_conf,
1154                              uint16_t reta_size);
1155 /**< @internal Update RSS redirection table on an Ethernet device */
1156
1157 typedef int (*reta_query_t)(struct rte_eth_dev *dev,
1158                             struct rte_eth_rss_reta_entry64 *reta_conf,
1159                             uint16_t reta_size);
1160 /**< @internal Query RSS redirection table on an Ethernet device */
1161
1162 typedef int (*rss_hash_update_t)(struct rte_eth_dev *dev,
1163                                  struct rte_eth_rss_conf *rss_conf);
1164 /**< @internal Update RSS hash configuration of an Ethernet device */
1165
1166 typedef int (*rss_hash_conf_get_t)(struct rte_eth_dev *dev,
1167                                    struct rte_eth_rss_conf *rss_conf);
1168 /**< @internal Get current RSS hash configuration of an Ethernet device */
1169
1170 typedef int (*eth_dev_led_on_t)(struct rte_eth_dev *dev);
1171 /**< @internal Turn on SW controllable LED on an Ethernet device */
1172
1173 typedef int (*eth_dev_led_off_t)(struct rte_eth_dev *dev);
1174 /**< @internal Turn off SW controllable LED on an Ethernet device */
1175
1176 typedef void (*eth_mac_addr_remove_t)(struct rte_eth_dev *dev, uint32_t index);
1177 /**< @internal Remove MAC address from receive address register */
1178
1179 typedef void (*eth_mac_addr_add_t)(struct rte_eth_dev *dev,
1180                                   struct ether_addr *mac_addr,
1181                                   uint32_t index,
1182                                   uint32_t vmdq);
1183 /**< @internal Set a MAC address into Receive Address Address Register */
1184
1185 typedef void (*eth_mac_addr_set_t)(struct rte_eth_dev *dev,
1186                                   struct ether_addr *mac_addr);
1187 /**< @internal Set a MAC address into Receive Address Address Register */
1188
1189 typedef int (*eth_uc_hash_table_set_t)(struct rte_eth_dev *dev,
1190                                   struct ether_addr *mac_addr,
1191                                   uint8_t on);
1192 /**< @internal Set a Unicast Hash bitmap */
1193
1194 typedef int (*eth_uc_all_hash_table_set_t)(struct rte_eth_dev *dev,
1195                                   uint8_t on);
1196 /**< @internal Set all Unicast Hash bitmap */
1197
1198 typedef int (*eth_set_vf_rx_mode_t)(struct rte_eth_dev *dev,
1199                                   uint16_t vf,
1200                                   uint16_t rx_mode,
1201                                   uint8_t on);
1202 /**< @internal Set a VF receive mode */
1203
1204 typedef int (*eth_set_vf_rx_t)(struct rte_eth_dev *dev,
1205                                 uint16_t vf,
1206                                 uint8_t on);
1207 /**< @internal Set a VF receive  mode */
1208
1209 typedef int (*eth_set_vf_tx_t)(struct rte_eth_dev *dev,
1210                                 uint16_t vf,
1211                                 uint8_t on);
1212 /**< @internal Enable or disable a VF transmit   */
1213
1214 typedef int (*eth_set_vf_vlan_filter_t)(struct rte_eth_dev *dev,
1215                                   uint16_t vlan,
1216                                   uint64_t vf_mask,
1217                                   uint8_t vlan_on);
1218 /**< @internal Set VF VLAN pool filter */
1219
1220 typedef int (*eth_set_queue_rate_limit_t)(struct rte_eth_dev *dev,
1221                                 uint16_t queue_idx,
1222                                 uint16_t tx_rate);
1223 /**< @internal Set queue TX rate */
1224
1225 typedef int (*eth_set_vf_rate_limit_t)(struct rte_eth_dev *dev,
1226                                 uint16_t vf,
1227                                 uint16_t tx_rate,
1228                                 uint64_t q_msk);
1229 /**< @internal Set VF TX rate */
1230
1231 typedef int (*eth_mirror_rule_set_t)(struct rte_eth_dev *dev,
1232                                   struct rte_eth_mirror_conf *mirror_conf,
1233                                   uint8_t rule_id,
1234                                   uint8_t on);
1235 /**< @internal Add a traffic mirroring rule on an Ethernet device */
1236
1237 typedef int (*eth_mirror_rule_reset_t)(struct rte_eth_dev *dev,
1238                                   uint8_t rule_id);
1239 /**< @internal Remove a traffic mirroring rule on an Ethernet device */
1240
1241 typedef int (*eth_udp_tunnel_add_t)(struct rte_eth_dev *dev,
1242                                     struct rte_eth_udp_tunnel *tunnel_udp);
1243 /**< @internal Add tunneling UDP info */
1244
1245 typedef int (*eth_udp_tunnel_del_t)(struct rte_eth_dev *dev,
1246                                     struct rte_eth_udp_tunnel *tunnel_udp);
1247 /**< @internal Delete tunneling UDP info */
1248
1249 typedef int (*eth_set_mc_addr_list_t)(struct rte_eth_dev *dev,
1250                                       struct ether_addr *mc_addr_set,
1251                                       uint32_t nb_mc_addr);
1252 /**< @internal set the list of multicast addresses on an Ethernet device */
1253
1254 typedef int (*eth_timesync_enable_t)(struct rte_eth_dev *dev);
1255 /**< @internal Function used to enable IEEE1588/802.1AS timestamping. */
1256
1257 typedef int (*eth_timesync_disable_t)(struct rte_eth_dev *dev);
1258 /**< @internal Function used to disable IEEE1588/802.1AS timestamping. */
1259
1260 typedef int (*eth_timesync_read_rx_timestamp_t)(struct rte_eth_dev *dev,
1261                                                 struct timespec *timestamp,
1262                                                 uint32_t flags);
1263 /**< @internal Function used to read an RX IEEE1588/802.1AS timestamp. */
1264
1265 typedef int (*eth_timesync_read_tx_timestamp_t)(struct rte_eth_dev *dev,
1266                                                 struct timespec *timestamp);
1267 /**< @internal Function used to read a TX IEEE1588/802.1AS timestamp. */
1268
1269 typedef int (*eth_get_reg_length_t)(struct rte_eth_dev *dev);
1270 /**< @internal Retrieve device register count  */
1271
1272 typedef int (*eth_get_reg_t)(struct rte_eth_dev *dev,
1273                                 struct rte_dev_reg_info *info);
1274 /**< @internal Retrieve registers  */
1275
1276 typedef int (*eth_get_eeprom_length_t)(struct rte_eth_dev *dev);
1277 /**< @internal Retrieve eeprom size  */
1278
1279 typedef int (*eth_get_eeprom_t)(struct rte_eth_dev *dev,
1280                                 struct rte_dev_eeprom_info *info);
1281 /**< @internal Retrieve eeprom data  */
1282
1283 typedef int (*eth_set_eeprom_t)(struct rte_eth_dev *dev,
1284                                 struct rte_dev_eeprom_info *info);
1285 /**< @internal Program eeprom data  */
1286
1287 #ifdef RTE_NIC_BYPASS
1288
1289 enum {
1290         RTE_BYPASS_MODE_NONE,
1291         RTE_BYPASS_MODE_NORMAL,
1292         RTE_BYPASS_MODE_BYPASS,
1293         RTE_BYPASS_MODE_ISOLATE,
1294         RTE_BYPASS_MODE_NUM,
1295 };
1296
1297 #define RTE_BYPASS_MODE_VALID(x)        \
1298         ((x) > RTE_BYPASS_MODE_NONE && (x) < RTE_BYPASS_MODE_NUM)
1299
1300 enum {
1301         RTE_BYPASS_EVENT_NONE,
1302         RTE_BYPASS_EVENT_START,
1303         RTE_BYPASS_EVENT_OS_ON = RTE_BYPASS_EVENT_START,
1304         RTE_BYPASS_EVENT_POWER_ON,
1305         RTE_BYPASS_EVENT_OS_OFF,
1306         RTE_BYPASS_EVENT_POWER_OFF,
1307         RTE_BYPASS_EVENT_TIMEOUT,
1308         RTE_BYPASS_EVENT_NUM
1309 };
1310
1311 #define RTE_BYPASS_EVENT_VALID(x)       \
1312         ((x) > RTE_BYPASS_EVENT_NONE && (x) < RTE_BYPASS_MODE_NUM)
1313
1314 enum {
1315         RTE_BYPASS_TMT_OFF,     /* timeout disabled. */
1316         RTE_BYPASS_TMT_1_5_SEC, /* timeout for 1.5 seconds */
1317         RTE_BYPASS_TMT_2_SEC,   /* timeout for 2 seconds */
1318         RTE_BYPASS_TMT_3_SEC,   /* timeout for 3 seconds */
1319         RTE_BYPASS_TMT_4_SEC,   /* timeout for 4 seconds */
1320         RTE_BYPASS_TMT_8_SEC,   /* timeout for 8 seconds */
1321         RTE_BYPASS_TMT_16_SEC,  /* timeout for 16 seconds */
1322         RTE_BYPASS_TMT_32_SEC,  /* timeout for 32 seconds */
1323         RTE_BYPASS_TMT_NUM
1324 };
1325
1326 #define RTE_BYPASS_TMT_VALID(x) \
1327         ((x) == RTE_BYPASS_TMT_OFF || \
1328         ((x) > RTE_BYPASS_TMT_OFF && (x) < RTE_BYPASS_TMT_NUM))
1329
1330 typedef void (*bypass_init_t)(struct rte_eth_dev *dev);
1331 typedef int32_t (*bypass_state_set_t)(struct rte_eth_dev *dev, uint32_t *new_state);
1332 typedef int32_t (*bypass_state_show_t)(struct rte_eth_dev *dev, uint32_t *state);
1333 typedef int32_t (*bypass_event_set_t)(struct rte_eth_dev *dev, uint32_t state, uint32_t event);
1334 typedef int32_t (*bypass_event_show_t)(struct rte_eth_dev *dev, uint32_t event_shift, uint32_t *event);
1335 typedef int32_t (*bypass_wd_timeout_set_t)(struct rte_eth_dev *dev, uint32_t timeout);
1336 typedef int32_t (*bypass_wd_timeout_show_t)(struct rte_eth_dev *dev, uint32_t *wd_timeout);
1337 typedef int32_t (*bypass_ver_show_t)(struct rte_eth_dev *dev, uint32_t *ver);
1338 typedef int32_t (*bypass_wd_reset_t)(struct rte_eth_dev *dev);
1339 #endif
1340
1341 typedef int (*eth_filter_ctrl_t)(struct rte_eth_dev *dev,
1342                                  enum rte_filter_type filter_type,
1343                                  enum rte_filter_op filter_op,
1344                                  void *arg);
1345 /**< @internal Take operations to assigned filter type on an Ethernet device */
1346
1347 /**
1348  * @internal A structure containing the functions exported by an Ethernet driver.
1349  */
1350 struct eth_dev_ops {
1351         eth_dev_configure_t        dev_configure; /**< Configure device. */
1352         eth_dev_start_t            dev_start;     /**< Start device. */
1353         eth_dev_stop_t             dev_stop;      /**< Stop device. */
1354         eth_dev_set_link_up_t      dev_set_link_up;   /**< Device link up. */
1355         eth_dev_set_link_down_t    dev_set_link_down; /**< Device link down. */
1356         eth_dev_close_t            dev_close;     /**< Close device. */
1357         eth_promiscuous_enable_t   promiscuous_enable; /**< Promiscuous ON. */
1358         eth_promiscuous_disable_t  promiscuous_disable;/**< Promiscuous OFF. */
1359         eth_allmulticast_enable_t  allmulticast_enable;/**< RX multicast ON. */
1360         eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OF. */
1361         eth_link_update_t          link_update;   /**< Get device link state. */
1362         eth_stats_get_t            stats_get;     /**< Get generic device statistics. */
1363         eth_stats_reset_t          stats_reset;   /**< Reset generic device statistics. */
1364         eth_xstats_get_t           xstats_get;    /**< Get extended device statistics. */
1365         eth_xstats_reset_t         xstats_reset;  /**< Reset extended device statistics. */
1366         eth_queue_stats_mapping_set_t queue_stats_mapping_set;
1367         /**< Configure per queue stat counter mapping. */
1368         eth_dev_infos_get_t        dev_infos_get; /**< Get device info. */
1369         mtu_set_t                  mtu_set; /**< Set MTU. */
1370         vlan_filter_set_t          vlan_filter_set;  /**< Filter VLAN Setup. */
1371         vlan_tpid_set_t            vlan_tpid_set;      /**< Outer VLAN TPID Setup. */
1372         vlan_strip_queue_set_t     vlan_strip_queue_set; /**< VLAN Stripping on queue. */
1373         vlan_offload_set_t         vlan_offload_set; /**< Set VLAN Offload. */
1374         vlan_pvid_set_t            vlan_pvid_set; /**< Set port based TX VLAN insertion */
1375         eth_queue_start_t          rx_queue_start;/**< Start RX for a queue.*/
1376         eth_queue_stop_t           rx_queue_stop;/**< Stop RX for a queue.*/
1377         eth_queue_start_t          tx_queue_start;/**< Start TX for a queue.*/
1378         eth_queue_stop_t           tx_queue_stop;/**< Stop TX for a queue.*/
1379         eth_rx_queue_setup_t       rx_queue_setup;/**< Set up device RX queue.*/
1380         eth_queue_release_t        rx_queue_release;/**< Release RX queue.*/
1381         eth_rx_queue_count_t       rx_queue_count; /**< Get Rx queue count. */
1382         eth_rx_descriptor_done_t   rx_descriptor_done;  /**< Check rxd DD bit */
1383         eth_tx_queue_setup_t       tx_queue_setup;/**< Set up device TX queue.*/
1384         eth_queue_release_t        tx_queue_release;/**< Release TX queue.*/
1385         eth_dev_led_on_t           dev_led_on;    /**< Turn on LED. */
1386         eth_dev_led_off_t          dev_led_off;   /**< Turn off LED. */
1387         flow_ctrl_get_t            flow_ctrl_get; /**< Get flow control. */
1388         flow_ctrl_set_t            flow_ctrl_set; /**< Setup flow control. */
1389         priority_flow_ctrl_set_t   priority_flow_ctrl_set; /**< Setup priority flow control.*/
1390         eth_mac_addr_remove_t      mac_addr_remove; /**< Remove MAC address */
1391         eth_mac_addr_add_t         mac_addr_add;  /**< Add a MAC address */
1392         eth_mac_addr_set_t         mac_addr_set;  /**< Set a MAC address */
1393         eth_uc_hash_table_set_t    uc_hash_table_set;  /**< Set Unicast Table Array */
1394         eth_uc_all_hash_table_set_t uc_all_hash_table_set;  /**< Set Unicast hash bitmap */
1395         eth_mirror_rule_set_t      mirror_rule_set;  /**< Add a traffic mirror rule.*/
1396         eth_mirror_rule_reset_t    mirror_rule_reset;  /**< reset a traffic mirror rule.*/
1397         eth_set_vf_rx_mode_t       set_vf_rx_mode;   /**< Set VF RX mode */
1398         eth_set_vf_rx_t            set_vf_rx;  /**< enable/disable a VF receive */
1399         eth_set_vf_tx_t            set_vf_tx;  /**< enable/disable a VF transmit */
1400         eth_set_vf_vlan_filter_t   set_vf_vlan_filter;  /**< Set VF VLAN filter */
1401         eth_udp_tunnel_add_t       udp_tunnel_add;
1402         eth_udp_tunnel_del_t       udp_tunnel_del;
1403         eth_set_queue_rate_limit_t set_queue_rate_limit;   /**< Set queue rate limit */
1404         eth_set_vf_rate_limit_t    set_vf_rate_limit;   /**< Set VF rate limit */
1405
1406         /** Add a signature filter. */
1407         fdir_add_signature_filter_t fdir_add_signature_filter;
1408         /** Update a signature filter. */
1409         fdir_update_signature_filter_t fdir_update_signature_filter;
1410         /** Remove a signature filter. */
1411         fdir_remove_signature_filter_t fdir_remove_signature_filter;
1412         /** Get information about FDIR status. */
1413         fdir_infos_get_t fdir_infos_get;
1414         /** Add a perfect filter. */
1415         fdir_add_perfect_filter_t fdir_add_perfect_filter;
1416         /** Update a perfect filter. */
1417         fdir_update_perfect_filter_t fdir_update_perfect_filter;
1418         /** Remove a perfect filter. */
1419         fdir_remove_perfect_filter_t fdir_remove_perfect_filter;
1420         /** Setup masks for FDIR filtering. */
1421         fdir_set_masks_t fdir_set_masks;
1422         /** Update redirection table. */
1423         reta_update_t reta_update;
1424         /** Query redirection table. */
1425         reta_query_t reta_query;
1426
1427         eth_get_reg_length_t get_reg_length;
1428         /**< Get # of registers */
1429         eth_get_reg_t get_reg;
1430         /**< Get registers */
1431         eth_get_eeprom_length_t get_eeprom_length;
1432         /**< Get eeprom length */
1433         eth_get_eeprom_t get_eeprom;
1434         /**< Get eeprom data */
1435         eth_set_eeprom_t set_eeprom;
1436         /**< Set eeprom */
1437   /* bypass control */
1438 #ifdef RTE_NIC_BYPASS
1439   bypass_init_t bypass_init;
1440   bypass_state_set_t bypass_state_set;
1441   bypass_state_show_t bypass_state_show;
1442   bypass_event_set_t bypass_event_set;
1443   bypass_event_show_t bypass_event_show;
1444   bypass_wd_timeout_set_t bypass_wd_timeout_set;
1445   bypass_wd_timeout_show_t bypass_wd_timeout_show;
1446   bypass_ver_show_t bypass_ver_show;
1447   bypass_wd_reset_t bypass_wd_reset;
1448 #endif
1449
1450         /** Configure RSS hash protocols. */
1451         rss_hash_update_t rss_hash_update;
1452         /** Get current RSS hash configuration. */
1453         rss_hash_conf_get_t rss_hash_conf_get;
1454         eth_filter_ctrl_t              filter_ctrl;          /**< common filter control*/
1455         eth_set_mc_addr_list_t set_mc_addr_list; /**< set list of mcast addrs */
1456
1457         /** Turn IEEE1588/802.1AS timestamping on. */
1458         eth_timesync_enable_t timesync_enable;
1459         /** Turn IEEE1588/802.1AS timestamping off. */
1460         eth_timesync_disable_t timesync_disable;
1461         /** Read the IEEE1588/802.1AS RX timestamp. */
1462         eth_timesync_read_rx_timestamp_t timesync_read_rx_timestamp;
1463         /** Read the IEEE1588/802.1AS TX timestamp. */
1464         eth_timesync_read_tx_timestamp_t timesync_read_tx_timestamp;
1465 };
1466
1467 /**
1468  * Function type used for RX packet processing packet callbacks.
1469  *
1470  * The callback function is called on RX with a burst of packets that have
1471  * been received on the given port and queue.
1472  *
1473  * @param port
1474  *   The Ethernet port on which RX is being performed.
1475  * @param queue
1476  *   The queue on the Ethernet port which is being used to receive the packets.
1477  * @param pkts
1478  *   The burst of packets that have just been received.
1479  * @param nb_pkts
1480  *   The number of packets in the burst pointed to by "pkts".
1481  * @param max_pkts
1482  *   The max number of packets that can be stored in the "pkts" array.
1483  * @param user_param
1484  *   The arbitrary user parameter passed in by the application when the callback
1485  *   was originally configured.
1486  * @return
1487  *   The number of packets returned to the user.
1488  */
1489 typedef uint16_t (*rte_rx_callback_fn)(uint8_t port, uint16_t queue,
1490         struct rte_mbuf *pkts[], uint16_t nb_pkts, uint16_t max_pkts,
1491         void *user_param);
1492
1493 /**
1494  * Function type used for TX packet processing packet callbacks.
1495  *
1496  * The callback function is called on TX with a burst of packets immediately
1497  * before the packets are put onto the hardware queue for transmission.
1498  *
1499  * @param port
1500  *   The Ethernet port on which TX is being performed.
1501  * @param queue
1502  *   The queue on the Ethernet port which is being used to transmit the packets.
1503  * @param pkts
1504  *   The burst of packets that are about to be transmitted.
1505  * @param nb_pkts
1506  *   The number of packets in the burst pointed to by "pkts".
1507  * @param user_param
1508  *   The arbitrary user parameter passed in by the application when the callback
1509  *   was originally configured.
1510  * @return
1511  *   The number of packets to be written to the NIC.
1512  */
1513 typedef uint16_t (*rte_tx_callback_fn)(uint8_t port, uint16_t queue,
1514         struct rte_mbuf *pkts[], uint16_t nb_pkts, void *user_param);
1515
1516 /**
1517  * @internal
1518  * Structure used to hold information about the callbacks to be called for a
1519  * queue on RX and TX.
1520  */
1521 struct rte_eth_rxtx_callback {
1522         struct rte_eth_rxtx_callback *next;
1523         union{
1524                 rte_rx_callback_fn rx;
1525                 rte_tx_callback_fn tx;
1526         } fn;
1527         void *param;
1528 };
1529
1530 /**
1531  * The eth device type.
1532  */
1533 enum rte_eth_dev_type {
1534         RTE_ETH_DEV_UNKNOWN,    /**< unknown device type */
1535         RTE_ETH_DEV_PCI,
1536                 /**< Physical function and Virtual function of PCI devices */
1537         RTE_ETH_DEV_VIRTUAL,    /**< non hardware device */
1538         RTE_ETH_DEV_MAX         /**< max value of this enum */
1539 };
1540
1541 /**
1542  * @internal
1543  * The generic data structure associated with each ethernet device.
1544  *
1545  * Pointers to burst-oriented packet receive and transmit functions are
1546  * located at the beginning of the structure, along with the pointer to
1547  * where all the data elements for the particular device are stored in shared
1548  * memory. This split allows the function pointer and driver data to be per-
1549  * process, while the actual configuration data for the device is shared.
1550  */
1551 struct rte_eth_dev {
1552         eth_rx_burst_t rx_pkt_burst; /**< Pointer to PMD receive function. */
1553         eth_tx_burst_t tx_pkt_burst; /**< Pointer to PMD transmit function. */
1554         struct rte_eth_dev_data *data;  /**< Pointer to device data */
1555         const struct eth_driver *driver;/**< Driver for this device */
1556         const struct eth_dev_ops *dev_ops; /**< Functions exported by PMD */
1557         struct rte_pci_device *pci_dev; /**< PCI info. supplied by probing */
1558         /** User application callbacks for NIC interrupts */
1559         struct rte_eth_dev_cb_list link_intr_cbs;
1560         /**
1561          * User-supplied functions called from rx_burst to post-process
1562          * received packets before passing them to the user
1563          */
1564         struct rte_eth_rxtx_callback *post_rx_burst_cbs[RTE_MAX_QUEUES_PER_PORT];
1565         /**
1566          * User-supplied functions called from tx_burst to pre-process
1567          * received packets before passing them to the driver for transmission.
1568          */
1569         struct rte_eth_rxtx_callback *pre_tx_burst_cbs[RTE_MAX_QUEUES_PER_PORT];
1570         uint8_t attached; /**< Flag indicating the port is attached */
1571         enum rte_eth_dev_type dev_type; /**< Flag indicating the device type */
1572 };
1573
1574 struct rte_eth_dev_sriov {
1575         uint8_t active;               /**< SRIOV is active with 16, 32 or 64 pools */
1576         uint8_t nb_q_per_pool;        /**< rx queue number per pool */
1577         uint16_t def_vmdq_idx;        /**< Default pool num used for PF */
1578         uint16_t def_pool_q_idx;      /**< Default pool queue start reg index */
1579 };
1580 #define RTE_ETH_DEV_SRIOV(dev)         ((dev)->data->sriov)
1581
1582 #define RTE_ETH_NAME_MAX_LEN (32)
1583
1584 /**
1585  * @internal
1586  * The data part, with no function pointers, associated with each ethernet device.
1587  *
1588  * This structure is safe to place in shared memory to be common among different
1589  * processes in a multi-process configuration.
1590  */
1591 struct rte_eth_dev_data {
1592         char name[RTE_ETH_NAME_MAX_LEN]; /**< Unique identifier name */
1593
1594         void **rx_queues; /**< Array of pointers to RX queues. */
1595         void **tx_queues; /**< Array of pointers to TX queues. */
1596         uint16_t nb_rx_queues; /**< Number of RX queues. */
1597         uint16_t nb_tx_queues; /**< Number of TX queues. */
1598
1599         struct rte_eth_dev_sriov sriov;    /**< SRIOV data */
1600
1601         void *dev_private;              /**< PMD-specific private data */
1602
1603         struct rte_eth_link dev_link;
1604         /**< Link-level information & status */
1605
1606         struct rte_eth_conf dev_conf;   /**< Configuration applied to device. */
1607         uint16_t mtu;                   /**< Maximum Transmission Unit. */
1608
1609         uint32_t min_rx_buf_size;
1610         /**< Common rx buffer size handled by all queues */
1611
1612         uint64_t rx_mbuf_alloc_failed; /**< RX ring mbuf allocation failures. */
1613         struct ether_addr* mac_addrs;/**< Device Ethernet Link address. */
1614         uint64_t mac_pool_sel[ETH_NUM_RECEIVE_MAC_ADDR];
1615         /** bitmap array of associating Ethernet MAC addresses to pools */
1616         struct ether_addr* hash_mac_addrs;
1617         /** Device Ethernet MAC addresses of hash filtering. */
1618         uint8_t port_id;           /**< Device [external] port identifier. */
1619         uint8_t promiscuous   : 1, /**< RX promiscuous mode ON(1) / OFF(0). */
1620                 scattered_rx : 1,  /**< RX of scattered packets is ON(1) / OFF(0) */
1621                 lro          : 1,  /**< RX LRO is ON(1) / OFF(0) */
1622                 all_multicast : 1, /**< RX all multicast mode ON(1) / OFF(0). */
1623                 dev_started : 1;   /**< Device state: STARTED(1) / STOPPED(0). */
1624 };
1625
1626 /**
1627  * @internal
1628  * The pool of *rte_eth_dev* structures. The size of the pool
1629  * is configured at compile-time in the <rte_ethdev.c> file.
1630  */
1631 extern struct rte_eth_dev rte_eth_devices[];
1632
1633 /**
1634  * Get the total number of Ethernet devices that have been successfully
1635  * initialized by the [matching] Ethernet driver during the PCI probing phase.
1636  * All devices whose port identifier is in the range
1637  * [0,  rte_eth_dev_count() - 1] can be operated on by network applications
1638  * immediately after invoking rte_eal_init().
1639  * If the application unplugs a port using hotplug function, The enabled port
1640  * numbers may be noncontiguous. In the case, the applications need to manage
1641  * enabled port by themselves.
1642  *
1643  * @return
1644  *   - The total number of usable Ethernet devices.
1645  */
1646 extern uint8_t rte_eth_dev_count(void);
1647
1648 /**
1649  * Function for internal use by port hotplug functions.
1650  * Returns a ethdev slot specified by the unique identifier name.
1651  * @param       name
1652  *  The pointer to the Unique identifier name for each Ethernet device
1653  * @return
1654  *   - The pointer to the ethdev slot, on success. NULL on error
1655  */
1656 extern struct rte_eth_dev *rte_eth_dev_allocated(const char *name);
1657
1658 /**
1659  * Function for internal use by dummy drivers primarily, e.g. ring-based
1660  * driver.
1661  * Allocates a new ethdev slot for an ethernet device and returns the pointer
1662  * to that slot for the driver to use.
1663  *
1664  * @param       name    Unique identifier name for each Ethernet device
1665  * @param       type    Device type of this Ethernet device
1666  * @return
1667  *   - Slot in the rte_dev_devices array for a new device;
1668  */
1669 struct rte_eth_dev *rte_eth_dev_allocate(const char *name,
1670                 enum rte_eth_dev_type type);
1671
1672 /**
1673  * Function for internal use by dummy drivers primarily, e.g. ring-based
1674  * driver.
1675  * Release the specified ethdev port.
1676  *
1677  * @param eth_dev
1678  * The *eth_dev* pointer is the address of the *rte_eth_dev* structure.
1679  * @return
1680  *   - 0 on success, negative on error
1681  */
1682 int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev);
1683
1684 /**
1685  * Attach a new Ethernet device specified by aruguments.
1686  *
1687  * @param devargs
1688  *  A pointer to a strings array describing the new device
1689  *  to be attached. The strings should be a pci address like
1690  *  '0000:01:00.0' or virtual device name like 'eth_pcap0'.
1691  * @param port_id
1692  *  A pointer to a port identifier actually attached.
1693  * @return
1694  *  0 on success and port_id is filled, negative on error
1695  */
1696 int rte_eth_dev_attach(const char *devargs, uint8_t *port_id);
1697
1698 /**
1699  * Detach a Ethernet device specified by port identifier.
1700  * This function must be called when the device is in the
1701  * closed state.
1702  *
1703  * @param port_id
1704  *   The port identifier of the device to detach.
1705  * @param devname
1706  *  A pointer to a device name actually detached.
1707  * @return
1708  *  0 on success and devname is filled, negative on error
1709  */
1710 int rte_eth_dev_detach(uint8_t port_id, char *devname);
1711
1712 struct eth_driver;
1713 /**
1714  * @internal
1715  * Initialization function of an Ethernet driver invoked for each matching
1716  * Ethernet PCI device detected during the PCI probing phase.
1717  *
1718  * @param eth_dev
1719  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
1720  *   associated with the matching device and which have been [automatically]
1721  *   allocated in the *rte_eth_devices* array.
1722  *   The *eth_dev* structure is supplied to the driver initialization function
1723  *   with the following fields already initialized:
1724  *
1725  *   - *pci_dev*: Holds the pointers to the *rte_pci_device* structure which
1726  *     contains the generic PCI information of the matching device.
1727  *
1728  *   - *driver*: Holds the pointer to the *eth_driver* structure.
1729  *
1730  *   - *dev_private*: Holds a pointer to the device private data structure.
1731  *
1732  *   - *mtu*: Contains the default Ethernet maximum frame length (1500).
1733  *
1734  *   - *port_id*: Contains the port index of the device (actually the index
1735  *     of the *eth_dev* structure in the *rte_eth_devices* array).
1736  *
1737  * @return
1738  *   - 0: Success, the device is properly initialized by the driver.
1739  *        In particular, the driver MUST have set up the *dev_ops* pointer
1740  *        of the *eth_dev* structure.
1741  *   - <0: Error code of the device initialization failure.
1742  */
1743 typedef int (*eth_dev_init_t)(struct rte_eth_dev *eth_dev);
1744
1745 /**
1746  * @internal
1747  * Finalization function of an Ethernet driver invoked for each matching
1748  * Ethernet PCI device detected during the PCI closing phase.
1749  *
1750  * @param eth_dev
1751  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
1752  *   associated with the matching device and which have been [automatically]
1753  *   allocated in the *rte_eth_devices* array.
1754  * @return
1755  *   - 0: Success, the device is properly finalized by the driver.
1756  *        In particular, the driver MUST free 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_uninit_t)(struct rte_eth_dev *eth_dev);
1761
1762 /**
1763  * @internal
1764  * The structure associated with a PMD Ethernet driver.
1765  *
1766  * Each Ethernet driver acts as a PCI driver and is represented by a generic
1767  * *eth_driver* structure that holds:
1768  *
1769  * - An *rte_pci_driver* structure (which must be the first field).
1770  *
1771  * - The *eth_dev_init* function invoked for each matching PCI device.
1772  *
1773  * - The *eth_dev_uninit* function invoked for each matching PCI device.
1774  *
1775  * - The size of the private data to allocate for each matching device.
1776  */
1777 struct eth_driver {
1778         struct rte_pci_driver pci_drv;    /**< The PMD is also a PCI driver. */
1779         eth_dev_init_t eth_dev_init;      /**< Device init function. */
1780         eth_dev_uninit_t eth_dev_uninit;  /**< Device uninit function. */
1781         unsigned int dev_private_size;    /**< Size of device private data. */
1782 };
1783
1784 /**
1785  * @internal
1786  * A function invoked by the initialization function of an Ethernet driver
1787  * to simultaneously register itself as a PCI driver and as an Ethernet
1788  * Poll Mode Driver (PMD).
1789  *
1790  * @param eth_drv
1791  *   The pointer to the *eth_driver* structure associated with
1792  *   the Ethernet driver.
1793  */
1794 extern void rte_eth_driver_register(struct eth_driver *eth_drv);
1795
1796 /**
1797  * Configure an Ethernet device.
1798  * This function must be invoked first before any other function in the
1799  * Ethernet API. This function can also be re-invoked when a device is in the
1800  * stopped state.
1801  *
1802  * @param port_id
1803  *   The port identifier of the Ethernet device to configure.
1804  * @param nb_rx_queue
1805  *   The number of receive queues to set up for the Ethernet device.
1806  * @param nb_tx_queue
1807  *   The number of transmit queues to set up for the Ethernet device.
1808  * @param eth_conf
1809  *   The pointer to the configuration data to be used for the Ethernet device.
1810  *   The *rte_eth_conf* structure includes:
1811  *     -  the hardware offload features to activate, with dedicated fields for
1812  *        each statically configurable offload hardware feature provided by
1813  *        Ethernet devices, such as IP checksum or VLAN tag stripping for
1814  *        example.
1815  *     - the Receive Side Scaling (RSS) configuration when using multiple RX
1816  *         queues per port.
1817  *
1818  *   Embedding all configuration information in a single data structure
1819  *   is the more flexible method that allows the addition of new features
1820  *   without changing the syntax of the API.
1821  * @return
1822  *   - 0: Success, device configured.
1823  *   - <0: Error code returned by the driver configuration function.
1824  */
1825 extern int rte_eth_dev_configure(uint8_t port_id,
1826                                  uint16_t nb_rx_queue,
1827                                  uint16_t nb_tx_queue,
1828                                  const struct rte_eth_conf *eth_conf);
1829
1830 /**
1831  * Allocate and set up a receive queue for an Ethernet device.
1832  *
1833  * The function allocates a contiguous block of memory for *nb_rx_desc*
1834  * receive descriptors from a memory zone associated with *socket_id*
1835  * and initializes each receive descriptor with a network buffer allocated
1836  * from the memory pool *mb_pool*.
1837  *
1838  * @param port_id
1839  *   The port identifier of the Ethernet device.
1840  * @param rx_queue_id
1841  *   The index of the receive queue to set up.
1842  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1843  *   to rte_eth_dev_configure().
1844  * @param nb_rx_desc
1845  *   The number of receive descriptors to allocate for the receive ring.
1846  * @param socket_id
1847  *   The *socket_id* argument is the socket identifier in case of NUMA.
1848  *   The value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
1849  *   the DMA memory allocated for the receive descriptors of the ring.
1850  * @param rx_conf
1851  *   The pointer to the configuration data to be used for the receive queue.
1852  *   NULL value is allowed, in which case default RX configuration
1853  *   will be used.
1854  *   The *rx_conf* structure contains an *rx_thresh* structure with the values
1855  *   of the Prefetch, Host, and Write-Back threshold registers of the receive
1856  *   ring.
1857  * @param mb_pool
1858  *   The pointer to the memory pool from which to allocate *rte_mbuf* network
1859  *   memory buffers to populate each descriptor of the receive ring.
1860  * @return
1861  *   - 0: Success, receive queue correctly set up.
1862  *   - -EINVAL: The size of network buffers which can be allocated from the
1863  *      memory pool does not fit the various buffer sizes allowed by the
1864  *      device controller.
1865  *   - -ENOMEM: Unable to allocate the receive ring descriptors or to
1866  *      allocate network memory buffers from the memory pool when
1867  *      initializing receive descriptors.
1868  */
1869 extern int rte_eth_rx_queue_setup(uint8_t port_id, uint16_t rx_queue_id,
1870                                   uint16_t nb_rx_desc, unsigned int socket_id,
1871                                   const struct rte_eth_rxconf *rx_conf,
1872                                   struct rte_mempool *mb_pool);
1873
1874 /**
1875  * Allocate and set up a transmit queue for an Ethernet device.
1876  *
1877  * @param port_id
1878  *   The port identifier of the Ethernet device.
1879  * @param tx_queue_id
1880  *   The index of the transmit queue to set up.
1881  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
1882  *   to rte_eth_dev_configure().
1883  * @param nb_tx_desc
1884  *   The number of transmit descriptors to allocate for the transmit ring.
1885  * @param socket_id
1886  *   The *socket_id* argument is the socket identifier in case of NUMA.
1887  *   Its value can be *SOCKET_ID_ANY* if there is no NUMA constraint for
1888  *   the DMA memory allocated for the transmit descriptors of the ring.
1889  * @param tx_conf
1890  *   The pointer to the configuration data to be used for the transmit queue.
1891  *   NULL value is allowed, in which case default RX configuration
1892  *   will be used.
1893  *   The *tx_conf* structure contains the following data:
1894  *   - The *tx_thresh* structure with the values of the Prefetch, Host, and
1895  *     Write-Back threshold registers of the transmit ring.
1896  *     When setting Write-Back threshold to the value greater then zero,
1897  *     *tx_rs_thresh* value should be explicitly set to one.
1898  *   - The *tx_free_thresh* value indicates the [minimum] number of network
1899  *     buffers that must be pending in the transmit ring to trigger their
1900  *     [implicit] freeing by the driver transmit function.
1901  *   - The *tx_rs_thresh* value indicates the [minimum] number of transmit
1902  *     descriptors that must be pending in the transmit ring before setting the
1903  *     RS bit on a descriptor by the driver transmit function.
1904  *     The *tx_rs_thresh* value should be less or equal then
1905  *     *tx_free_thresh* value, and both of them should be less then
1906  *     *nb_tx_desc* - 3.
1907  *   - The *txq_flags* member contains flags to pass to the TX queue setup
1908  *     function to configure the behavior of the TX queue. This should be set
1909  *     to 0 if no special configuration is required.
1910  *
1911  *     Note that setting *tx_free_thresh* or *tx_rs_thresh* value to 0 forces
1912  *     the transmit function to use default values.
1913  * @return
1914  *   - 0: Success, the transmit queue is correctly set up.
1915  *   - -ENOMEM: Unable to allocate the transmit ring descriptors.
1916  */
1917 extern int rte_eth_tx_queue_setup(uint8_t port_id, uint16_t tx_queue_id,
1918                                   uint16_t nb_tx_desc, unsigned int socket_id,
1919                                   const struct rte_eth_txconf *tx_conf);
1920
1921 /*
1922  * Return the NUMA socket to which an Ethernet device is connected
1923  *
1924  * @param port_id
1925  *   The port identifier of the Ethernet device
1926  * @return
1927  *   The NUMA socket id to which the Ethernet device is connected or
1928  *   a default of zero if the socket could not be determined.
1929  *   -1 is returned is the port_id value is out of range.
1930  */
1931 extern int rte_eth_dev_socket_id(uint8_t port_id);
1932
1933 /*
1934  * Allocate mbuf from mempool, setup the DMA physical address
1935  * and then start RX for specified queue of a port. It is used
1936  * when rx_deferred_start flag of the specified queue is true.
1937  *
1938  * @param port_id
1939  *   The port identifier of the Ethernet device
1940  * @param rx_queue_id
1941  *   The index of the rx queue to update the ring.
1942  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1943  *   to rte_eth_dev_configure().
1944  * @return
1945  *   - 0: Success, the transmit queue is correctly set up.
1946  *   - -EINVAL: The port_id or the queue_id out of range.
1947  *   - -ENOTSUP: The function not supported in PMD driver.
1948  */
1949 extern int rte_eth_dev_rx_queue_start(uint8_t port_id, uint16_t rx_queue_id);
1950
1951 /*
1952  * Stop specified RX queue of a port
1953  *
1954  * @param port_id
1955  *   The port identifier of the Ethernet device
1956  * @param rx_queue_id
1957  *   The index of the rx queue to update the ring.
1958  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
1959  *   to rte_eth_dev_configure().
1960  * @return
1961  *   - 0: Success, the transmit queue is correctly set up.
1962  *   - -EINVAL: The port_id or the queue_id out of range.
1963  *   - -ENOTSUP: The function not supported in PMD driver.
1964  */
1965 extern int rte_eth_dev_rx_queue_stop(uint8_t port_id, uint16_t rx_queue_id);
1966
1967 /*
1968  * Start TX for specified queue of a port. It is used when tx_deferred_start
1969  * flag of the specified queue is true.
1970  *
1971  * @param port_id
1972  *   The port identifier of the Ethernet device
1973  * @param tx_queue_id
1974  *   The index of the tx queue to update the ring.
1975  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
1976  *   to rte_eth_dev_configure().
1977  * @return
1978  *   - 0: Success, the transmit queue is correctly set up.
1979  *   - -EINVAL: The port_id or the queue_id out of range.
1980  *   - -ENOTSUP: The function not supported in PMD driver.
1981  */
1982 extern int rte_eth_dev_tx_queue_start(uint8_t port_id, uint16_t tx_queue_id);
1983
1984 /*
1985  * Stop specified TX queue of a port
1986  *
1987  * @param port_id
1988  *   The port identifier of the Ethernet device
1989  * @param tx_queue_id
1990  *   The index of the tx queue to update the ring.
1991  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
1992  *   to rte_eth_dev_configure().
1993  * @return
1994  *   - 0: Success, the transmit queue is correctly set up.
1995  *   - -EINVAL: The port_id or the queue_id out of range.
1996  *   - -ENOTSUP: The function not supported in PMD driver.
1997  */
1998 extern int rte_eth_dev_tx_queue_stop(uint8_t port_id, uint16_t tx_queue_id);
1999
2000
2001
2002 /**
2003  * Start an Ethernet device.
2004  *
2005  * The device start step is the last one and consists of setting the configured
2006  * offload features and in starting the transmit and the receive units of the
2007  * device.
2008  * On success, all basic functions exported by the Ethernet API (link status,
2009  * receive/transmit, and so on) can be invoked.
2010  *
2011  * @param port_id
2012  *   The port identifier of the Ethernet device.
2013  * @return
2014  *   - 0: Success, Ethernet device started.
2015  *   - <0: Error code of the driver device start function.
2016  */
2017 extern int rte_eth_dev_start(uint8_t port_id);
2018
2019 /**
2020  * Stop an Ethernet device. The device can be restarted with a call to
2021  * rte_eth_dev_start()
2022  *
2023  * @param port_id
2024  *   The port identifier of the Ethernet device.
2025  */
2026 extern void rte_eth_dev_stop(uint8_t port_id);
2027
2028
2029 /**
2030  * Link up an Ethernet device.
2031  *
2032  * Set device link up will re-enable the device rx/tx
2033  * functionality after it is previously set device linked down.
2034  *
2035  * @param port_id
2036  *   The port identifier of the Ethernet device.
2037  * @return
2038  *   - 0: Success, Ethernet device linked up.
2039  *   - <0: Error code of the driver device link up function.
2040  */
2041 extern int rte_eth_dev_set_link_up(uint8_t port_id);
2042
2043 /**
2044  * Link down an Ethernet device.
2045  * The device rx/tx functionality will be disabled if success,
2046  * and it can be re-enabled with a call to
2047  * rte_eth_dev_set_link_up()
2048  *
2049  * @param port_id
2050  *   The port identifier of the Ethernet device.
2051  */
2052 extern int rte_eth_dev_set_link_down(uint8_t port_id);
2053
2054 /**
2055  * Close a stopped Ethernet device. The device cannot be restarted!
2056  * The function frees all resources except for needed by the
2057  * closed state. To free these resources, call rte_eth_dev_detach().
2058  *
2059  * @param port_id
2060  *   The port identifier of the Ethernet device.
2061  */
2062 extern void rte_eth_dev_close(uint8_t port_id);
2063
2064 /**
2065  * Enable receipt in promiscuous mode for an Ethernet device.
2066  *
2067  * @param port_id
2068  *   The port identifier of the Ethernet device.
2069  */
2070 extern void rte_eth_promiscuous_enable(uint8_t port_id);
2071
2072 /**
2073  * Disable receipt in promiscuous mode for an Ethernet device.
2074  *
2075  * @param port_id
2076  *   The port identifier of the Ethernet device.
2077  */
2078 extern void rte_eth_promiscuous_disable(uint8_t port_id);
2079
2080 /**
2081  * Return the value of promiscuous mode for an Ethernet device.
2082  *
2083  * @param port_id
2084  *   The port identifier of the Ethernet device.
2085  * @return
2086  *   - (1) if promiscuous is enabled
2087  *   - (0) if promiscuous is disabled.
2088  *   - (-1) on error
2089  */
2090 extern int rte_eth_promiscuous_get(uint8_t port_id);
2091
2092 /**
2093  * Enable the receipt of any multicast frame by an Ethernet device.
2094  *
2095  * @param port_id
2096  *   The port identifier of the Ethernet device.
2097  */
2098 extern void rte_eth_allmulticast_enable(uint8_t port_id);
2099
2100 /**
2101  * Disable the receipt of all multicast frames by an Ethernet device.
2102  *
2103  * @param port_id
2104  *   The port identifier of the Ethernet device.
2105  */
2106 extern void rte_eth_allmulticast_disable(uint8_t port_id);
2107
2108 /**
2109  * Return the value of allmulticast mode for an Ethernet device.
2110  *
2111  * @param port_id
2112  *   The port identifier of the Ethernet device.
2113  * @return
2114  *   - (1) if allmulticast is enabled
2115  *   - (0) if allmulticast is disabled.
2116  *   - (-1) on error
2117  */
2118 extern int rte_eth_allmulticast_get(uint8_t port_id);
2119
2120 /**
2121  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2122  * or FULL-DUPLEX) of the physical link of an Ethernet device. It might need
2123  * to wait up to 9 seconds in it.
2124  *
2125  * @param port_id
2126  *   The port identifier of the Ethernet device.
2127  * @param link
2128  *   A pointer to an *rte_eth_link* structure to be filled with
2129  *   the status, the speed and the mode of the Ethernet device link.
2130  */
2131 extern void rte_eth_link_get(uint8_t port_id, struct rte_eth_link *link);
2132
2133 /**
2134  * Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX
2135  * or FULL-DUPLEX) of the physical link of an Ethernet device. It is a no-wait
2136  * version of rte_eth_link_get().
2137  *
2138  * @param port_id
2139  *   The port identifier of the Ethernet device.
2140  * @param link
2141  *   A pointer to an *rte_eth_link* structure to be filled with
2142  *   the status, the speed and the mode of the Ethernet device link.
2143  */
2144 extern void rte_eth_link_get_nowait(uint8_t port_id,
2145                                 struct rte_eth_link *link);
2146
2147 /**
2148  * Retrieve the general I/O statistics of an Ethernet device.
2149  *
2150  * @param port_id
2151  *   The port identifier of the Ethernet device.
2152  * @param stats
2153  *   A pointer to a structure of type *rte_eth_stats* to be filled with
2154  *   the values of device counters for the following set of statistics:
2155  *   - *ipackets* with the total of successfully received packets.
2156  *   - *opackets* with the total of successfully transmitted packets.
2157  *   - *ibytes*   with the total of successfully received bytes.
2158  *   - *obytes*   with the total of successfully transmitted bytes.
2159  *   - *ierrors*  with the total of erroneous received packets.
2160  *   - *oerrors*  with the total of failed transmitted packets.
2161  * @return
2162  *   Zero if successful. Non-zero otherwise.
2163  */
2164 extern int rte_eth_stats_get(uint8_t port_id, struct rte_eth_stats *stats);
2165
2166 /**
2167  * Reset the general I/O statistics of an Ethernet device.
2168  *
2169  * @param port_id
2170  *   The port identifier of the Ethernet device.
2171  */
2172 extern void rte_eth_stats_reset(uint8_t port_id);
2173
2174 /**
2175  * Retrieve extended statistics of an Ethernet device.
2176  *
2177  * @param port_id
2178  *   The port identifier of the Ethernet device.
2179  * @param xstats
2180  *   A pointer to a table of structure of type *rte_eth_xstats*
2181  *   to be filled with device statistics names and values.
2182  *   This parameter can be set to NULL if n is 0.
2183  * @param n
2184  *   The size of the stats table, which should be large enough to store
2185  *   all the statistics of the device.
2186  * @return
2187  *   - positive value lower or equal to n: success. The return value
2188  *     is the number of entries filled in the stats table.
2189  *   - positive value higher than n: error, the given statistics table
2190  *     is too small. The return value corresponds to the size that should
2191  *     be given to succeed. The entries in the table are not valid and
2192  *     shall not be used by the caller.
2193  *   - negative value on error (invalid port id)
2194  */
2195 extern int rte_eth_xstats_get(uint8_t port_id,
2196         struct rte_eth_xstats *xstats, unsigned n);
2197
2198 /**
2199  * Reset extended statistics of an Ethernet device.
2200  *
2201  * @param port_id
2202  *   The port identifier of the Ethernet device.
2203  */
2204 extern void rte_eth_xstats_reset(uint8_t port_id);
2205
2206 /**
2207  *  Set a mapping for the specified transmit queue to the specified per-queue
2208  *  statistics counter.
2209  *
2210  * @param port_id
2211  *   The port identifier of the Ethernet device.
2212  * @param tx_queue_id
2213  *   The index of the transmit queue for which a queue stats mapping is required.
2214  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2215  *   to rte_eth_dev_configure().
2216  * @param stat_idx
2217  *   The per-queue packet statistics functionality number that the transmit
2218  *   queue is to be assigned.
2219  *   The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1].
2220  * @return
2221  *   Zero if successful. Non-zero otherwise.
2222  */
2223 extern int rte_eth_dev_set_tx_queue_stats_mapping(uint8_t port_id,
2224                                                   uint16_t tx_queue_id,
2225                                                   uint8_t stat_idx);
2226
2227 /**
2228  *  Set a mapping for the specified receive queue to the specified per-queue
2229  *  statistics counter.
2230  *
2231  * @param port_id
2232  *   The port identifier of the Ethernet device.
2233  * @param rx_queue_id
2234  *   The index of the receive queue for which a queue stats mapping is required.
2235  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2236  *   to rte_eth_dev_configure().
2237  * @param stat_idx
2238  *   The per-queue packet statistics functionality number that the receive
2239  *   queue is to be assigned.
2240  *   The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1].
2241  * @return
2242  *   Zero if successful. Non-zero otherwise.
2243  */
2244 extern int rte_eth_dev_set_rx_queue_stats_mapping(uint8_t port_id,
2245                                                   uint16_t rx_queue_id,
2246                                                   uint8_t stat_idx);
2247
2248 /**
2249  * Retrieve the Ethernet address of an Ethernet device.
2250  *
2251  * @param port_id
2252  *   The port identifier of the Ethernet device.
2253  * @param mac_addr
2254  *   A pointer to a structure of type *ether_addr* to be filled with
2255  *   the Ethernet address of the Ethernet device.
2256  */
2257 extern void rte_eth_macaddr_get(uint8_t port_id, struct ether_addr *mac_addr);
2258
2259 /**
2260  * Retrieve the contextual information of an Ethernet device.
2261  *
2262  * @param port_id
2263  *   The port identifier of the Ethernet device.
2264  * @param dev_info
2265  *   A pointer to a structure of type *rte_eth_dev_info* to be filled with
2266  *   the contextual information of the Ethernet device.
2267  */
2268 extern void rte_eth_dev_info_get(uint8_t port_id,
2269                                  struct rte_eth_dev_info *dev_info);
2270
2271 /**
2272  * Retrieve the MTU of an Ethernet device.
2273  *
2274  * @param port_id
2275  *   The port identifier of the Ethernet device.
2276  * @param mtu
2277  *   A pointer to a uint16_t where the retrieved MTU is to be stored.
2278  * @return
2279  *   - (0) if successful.
2280  *   - (-ENODEV) if *port_id* invalid.
2281  */
2282 extern int rte_eth_dev_get_mtu(uint8_t port_id, uint16_t *mtu);
2283
2284 /**
2285  * Change the MTU of an Ethernet device.
2286  *
2287  * @param port_id
2288  *   The port identifier of the Ethernet device.
2289  * @param mtu
2290  *   A uint16_t for the MTU to be applied.
2291  * @return
2292  *   - (0) if successful.
2293  *   - (-ENOTSUP) if operation is not supported.
2294  *   - (-ENODEV) if *port_id* invalid.
2295  *   - (-EINVAL) if *mtu* invalid.
2296  */
2297 extern int rte_eth_dev_set_mtu(uint8_t port_id, uint16_t mtu);
2298
2299 /**
2300  * Enable/Disable hardware filtering by an Ethernet device of received
2301  * VLAN packets tagged with a given VLAN Tag Identifier.
2302  *
2303  * @param port_id
2304  *   The port identifier of the Ethernet device.
2305  * @param vlan_id
2306  *   The VLAN Tag Identifier whose filtering must be enabled or disabled.
2307  * @param on
2308  *   If > 0, enable VLAN filtering of VLAN packets tagged with *vlan_id*.
2309  *   Otherwise, disable VLAN filtering of VLAN packets tagged with *vlan_id*.
2310  * @return
2311  *   - (0) if successful.
2312  *   - (-ENOSUP) if hardware-assisted VLAN filtering not configured.
2313  *   - (-ENODEV) if *port_id* invalid.
2314  *   - (-ENOSYS) if VLAN filtering on *port_id* disabled.
2315  *   - (-EINVAL) if *vlan_id* > 4095.
2316  */
2317 extern int rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id , int on);
2318
2319 /**
2320  * Enable/Disable hardware VLAN Strip by a rx queue of an Ethernet device.
2321  * 82599/X540/X550 can support VLAN stripping at the rx queue level
2322  *
2323  * @param port_id
2324  *   The port identifier of the Ethernet device.
2325  * @param rx_queue_id
2326  *   The index of the receive queue for which a queue stats mapping is required.
2327  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2328  *   to rte_eth_dev_configure().
2329  * @param on
2330  *   If 1, Enable VLAN Stripping of the receive queue of the Ethernet port.
2331  *   If 0, Disable VLAN Stripping of the receive queue of the Ethernet port.
2332  * @return
2333  *   - (0) if successful.
2334  *   - (-ENOSUP) if hardware-assisted VLAN stripping not configured.
2335  *   - (-ENODEV) if *port_id* invalid.
2336  *   - (-EINVAL) if *rx_queue_id* invalid.
2337  */
2338 extern int rte_eth_dev_set_vlan_strip_on_queue(uint8_t port_id,
2339                 uint16_t rx_queue_id, int on);
2340
2341 /**
2342  * Set the Outer VLAN Ether Type by an Ethernet device, it can be inserted to
2343  * the VLAN Header. This is a register setup available on some Intel NIC, not
2344  * but all, please check the data sheet for availability.
2345  *
2346  * @param port_id
2347  *   The port identifier of the Ethernet device.
2348  * @param tag_type
2349  *   The Tag Protocol ID
2350  * @return
2351  *   - (0) if successful.
2352  *   - (-ENOSUP) if hardware-assisted VLAN TPID setup is not supported.
2353  *   - (-ENODEV) if *port_id* invalid.
2354  */
2355 extern int rte_eth_dev_set_vlan_ether_type(uint8_t port_id, uint16_t tag_type);
2356
2357 /**
2358  * Set VLAN offload configuration on an Ethernet device
2359  * Enable/Disable Extended VLAN by an Ethernet device, This is a register setup
2360  * available on some Intel NIC, not but all, please check the data sheet for
2361  * availability.
2362  * Enable/Disable VLAN Strip can be done on rx queue for certain NIC, but here
2363  * the configuration is applied on the port level.
2364  *
2365  * @param port_id
2366  *   The port identifier of the Ethernet device.
2367  * @param offload_mask
2368  *   The VLAN Offload bit mask can be mixed use with "OR"
2369  *       ETH_VLAN_STRIP_OFFLOAD
2370  *       ETH_VLAN_FILTER_OFFLOAD
2371  *       ETH_VLAN_EXTEND_OFFLOAD
2372  * @return
2373  *   - (0) if successful.
2374  *   - (-ENOSUP) if hardware-assisted VLAN filtering not configured.
2375  *   - (-ENODEV) if *port_id* invalid.
2376  */
2377 extern int rte_eth_dev_set_vlan_offload(uint8_t port_id, int offload_mask);
2378
2379 /**
2380  * Read VLAN Offload configuration from an Ethernet device
2381  *
2382  * @param port_id
2383  *   The port identifier of the Ethernet device.
2384  * @return
2385  *   - (>0) if successful. Bit mask to indicate
2386  *       ETH_VLAN_STRIP_OFFLOAD
2387  *       ETH_VLAN_FILTER_OFFLOAD
2388  *       ETH_VLAN_EXTEND_OFFLOAD
2389  *   - (-ENODEV) if *port_id* invalid.
2390  */
2391 extern int rte_eth_dev_get_vlan_offload(uint8_t port_id);
2392
2393 /**
2394  * Set port based TX VLAN insersion on or off.
2395  *
2396  * @param port_id
2397  *  The port identifier of the Ethernet device.
2398  * @param pvid
2399  *  Port based TX VLAN identifier togeth with user priority.
2400  * @param on
2401  *  Turn on or off the port based TX VLAN insertion.
2402  *
2403  * @return
2404  *   - (0) if successful.
2405  *   - negative if failed.
2406  */
2407 extern int rte_eth_dev_set_vlan_pvid(uint8_t port_id, uint16_t pvid, int on);
2408
2409 /**
2410  *
2411  * Retrieve a burst of input packets from a receive queue of an Ethernet
2412  * device. The retrieved packets are stored in *rte_mbuf* structures whose
2413  * pointers are supplied in the *rx_pkts* array.
2414  *
2415  * The rte_eth_rx_burst() function loops, parsing the RX ring of the
2416  * receive queue, up to *nb_pkts* packets, and for each completed RX
2417  * descriptor in the ring, it performs the following operations:
2418  *
2419  * - Initialize the *rte_mbuf* data structure associated with the
2420  *   RX descriptor according to the information provided by the NIC into
2421  *   that RX descriptor.
2422  *
2423  * - Store the *rte_mbuf* data structure into the next entry of the
2424  *   *rx_pkts* array.
2425  *
2426  * - Replenish the RX descriptor with a new *rte_mbuf* buffer
2427  *   allocated from the memory pool associated with the receive queue at
2428  *   initialization time.
2429  *
2430  * When retrieving an input packet that was scattered by the controller
2431  * into multiple receive descriptors, the rte_eth_rx_burst() function
2432  * appends the associated *rte_mbuf* buffers to the first buffer of the
2433  * packet.
2434  *
2435  * The rte_eth_rx_burst() function returns the number of packets
2436  * actually retrieved, which is the number of *rte_mbuf* data structures
2437  * effectively supplied into the *rx_pkts* array.
2438  * A return value equal to *nb_pkts* indicates that the RX queue contained
2439  * at least *rx_pkts* packets, and this is likely to signify that other
2440  * received packets remain in the input queue. Applications implementing
2441  * a "retrieve as much received packets as possible" policy can check this
2442  * specific case and keep invoking the rte_eth_rx_burst() function until
2443  * a value less than *nb_pkts* is returned.
2444  *
2445  * This receive method has the following advantages:
2446  *
2447  * - It allows a run-to-completion network stack engine to retrieve and
2448  *   to immediately process received packets in a fast burst-oriented
2449  *   approach, avoiding the overhead of unnecessary intermediate packet
2450  *   queue/dequeue operations.
2451  *
2452  * - Conversely, it also allows an asynchronous-oriented processing
2453  *   method to retrieve bursts of received packets and to immediately
2454  *   queue them for further parallel processing by another logical core,
2455  *   for instance. However, instead of having received packets being
2456  *   individually queued by the driver, this approach allows the invoker
2457  *   of the rte_eth_rx_burst() function to queue a burst of retrieved
2458  *   packets at a time and therefore dramatically reduce the cost of
2459  *   enqueue/dequeue operations per packet.
2460  *
2461  * - It allows the rte_eth_rx_burst() function of the driver to take
2462  *   advantage of burst-oriented hardware features (CPU cache,
2463  *   prefetch instructions, and so on) to minimize the number of CPU
2464  *   cycles per packet.
2465  *
2466  * To summarize, the proposed receive API enables many
2467  * burst-oriented optimizations in both synchronous and asynchronous
2468  * packet processing environments with no overhead in both cases.
2469  *
2470  * The rte_eth_rx_burst() function does not provide any error
2471  * notification to avoid the corresponding overhead. As a hint, the
2472  * upper-level application might check the status of the device link once
2473  * being systematically returned a 0 value for a given number of tries.
2474  *
2475  * @param port_id
2476  *   The port identifier of the Ethernet device.
2477  * @param queue_id
2478  *   The index of the receive queue from which to retrieve input packets.
2479  *   The value must be in the range [0, nb_rx_queue - 1] previously supplied
2480  *   to rte_eth_dev_configure().
2481  * @param rx_pkts
2482  *   The address of an array of pointers to *rte_mbuf* structures that
2483  *   must be large enough to store *nb_pkts* pointers in it.
2484  * @param nb_pkts
2485  *   The maximum number of packets to retrieve.
2486  * @return
2487  *   The number of packets actually retrieved, which is the number
2488  *   of pointers to *rte_mbuf* structures effectively supplied to the
2489  *   *rx_pkts* array.
2490  */
2491 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2492 extern uint16_t rte_eth_rx_burst(uint8_t port_id, uint16_t queue_id,
2493                                  struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
2494 #else
2495 static inline uint16_t
2496 rte_eth_rx_burst(uint8_t port_id, uint16_t queue_id,
2497                  struct rte_mbuf **rx_pkts, const uint16_t nb_pkts)
2498 {
2499         struct rte_eth_dev *dev;
2500
2501         dev = &rte_eth_devices[port_id];
2502
2503         int16_t nb_rx = (*dev->rx_pkt_burst)(dev->data->rx_queues[queue_id],
2504                         rx_pkts, nb_pkts);
2505
2506 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
2507         struct rte_eth_rxtx_callback *cb = dev->post_rx_burst_cbs[queue_id];
2508
2509         if (unlikely(cb != NULL)) {
2510                 do {
2511                         nb_rx = cb->fn.rx(port_id, queue_id, rx_pkts, nb_rx,
2512                                                 nb_pkts, cb->param);
2513                         cb = cb->next;
2514                 } while (cb != NULL);
2515         }
2516 #endif
2517
2518         return nb_rx;
2519 }
2520 #endif
2521
2522 /**
2523  * Get the number of used descriptors in a specific queue
2524  *
2525  * @param port_id
2526  *  The port identifier of the Ethernet device.
2527  * @param queue_id
2528  *  The queue id on the specific port.
2529  * @return
2530  *  The number of used descriptors in the specific queue.
2531  */
2532 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2533 extern uint32_t rte_eth_rx_queue_count(uint8_t port_id, uint16_t queue_id);
2534 #else
2535 static inline uint32_t
2536 rte_eth_rx_queue_count(uint8_t port_id, uint16_t queue_id)
2537 {
2538         struct rte_eth_dev *dev;
2539
2540         dev = &rte_eth_devices[port_id];
2541         return (*dev->dev_ops->rx_queue_count)(dev, queue_id);
2542 }
2543 #endif
2544
2545 /**
2546  * Check if the DD bit of the specific RX descriptor in the queue has been set
2547  *
2548  * @param port_id
2549  *  The port identifier of the Ethernet device.
2550  * @param queue_id
2551  *  The queue id on the specific port.
2552  * @param offset
2553  *  The offset of the descriptor ID from tail.
2554  * @return
2555  *  - (1) if the specific DD bit is set.
2556  *  - (0) if the specific DD bit is not set.
2557  *  - (-ENODEV) if *port_id* invalid.
2558  */
2559 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2560 extern int rte_eth_rx_descriptor_done(uint8_t port_id,
2561                                       uint16_t queue_id,
2562                                       uint16_t offset);
2563 #else
2564 static inline int
2565 rte_eth_rx_descriptor_done(uint8_t port_id, uint16_t queue_id, uint16_t offset)
2566 {
2567         struct rte_eth_dev *dev;
2568
2569         dev = &rte_eth_devices[port_id];
2570         return (*dev->dev_ops->rx_descriptor_done)( \
2571                 dev->data->rx_queues[queue_id], offset);
2572 }
2573 #endif
2574
2575 /**
2576  * Send a burst of output packets on a transmit queue of an Ethernet device.
2577  *
2578  * The rte_eth_tx_burst() function is invoked to transmit output packets
2579  * on the output queue *queue_id* of the Ethernet device designated by its
2580  * *port_id*.
2581  * The *nb_pkts* parameter is the number of packets to send which are
2582  * supplied in the *tx_pkts* array of *rte_mbuf* structures.
2583  * The rte_eth_tx_burst() function loops, sending *nb_pkts* packets,
2584  * up to the number of transmit descriptors available in the TX ring of the
2585  * transmit queue.
2586  * For each packet to send, the rte_eth_tx_burst() function performs
2587  * the following operations:
2588  *
2589  * - Pick up the next available descriptor in the transmit ring.
2590  *
2591  * - Free the network buffer previously sent with that descriptor, if any.
2592  *
2593  * - Initialize the transmit descriptor with the information provided
2594  *   in the *rte_mbuf data structure.
2595  *
2596  * In the case of a segmented packet composed of a list of *rte_mbuf* buffers,
2597  * the rte_eth_tx_burst() function uses several transmit descriptors
2598  * of the ring.
2599  *
2600  * The rte_eth_tx_burst() function returns the number of packets it
2601  * actually sent. A return value equal to *nb_pkts* means that all packets
2602  * have been sent, and this is likely to signify that other output packets
2603  * could be immediately transmitted again. Applications that implement a
2604  * "send as many packets to transmit as possible" policy can check this
2605  * specific case and keep invoking the rte_eth_tx_burst() function until
2606  * a value less than *nb_pkts* is returned.
2607  *
2608  * It is the responsibility of the rte_eth_tx_burst() function to
2609  * transparently free the memory buffers of packets previously sent.
2610  * This feature is driven by the *tx_free_thresh* value supplied to the
2611  * rte_eth_dev_configure() function at device configuration time.
2612  * When the number of free TX descriptors drops below this threshold, the
2613  * rte_eth_tx_burst() function must [attempt to] free the *rte_mbuf*  buffers
2614  * of those packets whose transmission was effectively completed.
2615  *
2616  * @param port_id
2617  *   The port identifier of the Ethernet device.
2618  * @param queue_id
2619  *   The index of the transmit queue through which output packets must be
2620  *   sent.
2621  *   The value must be in the range [0, nb_tx_queue - 1] previously supplied
2622  *   to rte_eth_dev_configure().
2623  * @param tx_pkts
2624  *   The address of an array of *nb_pkts* pointers to *rte_mbuf* structures
2625  *   which contain the output packets.
2626  * @param nb_pkts
2627  *   The maximum number of packets to transmit.
2628  * @return
2629  *   The number of output packets actually stored in transmit descriptors of
2630  *   the transmit ring. The return value can be less than the value of the
2631  *   *tx_pkts* parameter when the transmit ring is full or has been filled up.
2632  */
2633 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
2634 extern uint16_t rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id,
2635                                  struct rte_mbuf **tx_pkts, uint16_t nb_pkts);
2636 #else
2637 static inline uint16_t
2638 rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id,
2639                  struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
2640 {
2641         struct rte_eth_dev *dev;
2642
2643         dev = &rte_eth_devices[port_id];
2644
2645 #ifdef RTE_ETHDEV_RXTX_CALLBACKS
2646         struct rte_eth_rxtx_callback *cb = dev->pre_tx_burst_cbs[queue_id];
2647
2648         if (unlikely(cb != NULL)) {
2649                 do {
2650                         nb_pkts = cb->fn.tx(port_id, queue_id, tx_pkts, nb_pkts,
2651                                         cb->param);
2652                         cb = cb->next;
2653                 } while (cb != NULL);
2654         }
2655 #endif
2656
2657         return (*dev->tx_pkt_burst)(dev->data->tx_queues[queue_id], tx_pkts, nb_pkts);
2658 }
2659 #endif
2660
2661 /**
2662  * Setup a new signature filter rule on an Ethernet device
2663  *
2664  * @param port_id
2665  *   The port identifier of the Ethernet device.
2666  * @param fdir_filter
2667  *   The pointer to the fdir filter structure describing the signature filter
2668  *   rule.
2669  *   The *rte_fdir_filter* structure includes the values of the different fields
2670  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2671  *   and destination ports, and so on.
2672  * @param rx_queue
2673  *   The index of the RX queue where to store RX packets matching the added
2674  *   signature filter defined in fdir_filter.
2675  * @return
2676  *   - (0) if successful.
2677  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2678  *   - (-ENODEV) if *port_id* invalid.
2679  *   - (-ENOSYS) if the FDIR mode is not configured in signature mode
2680  *               on *port_id*.
2681  *   - (-EINVAL) if the fdir_filter information is not correct.
2682  */
2683 int rte_eth_dev_fdir_add_signature_filter(uint8_t port_id,
2684                                           struct rte_fdir_filter *fdir_filter,
2685                                           uint8_t rx_queue);
2686
2687 /**
2688  * Update a signature filter rule on an Ethernet device.
2689  * If the rule doesn't exits, it is created.
2690  *
2691  * @param port_id
2692  *   The port identifier of the Ethernet device.
2693  * @param fdir_ftr
2694  *   The pointer to the structure describing the signature filter rule.
2695  *   The *rte_fdir_filter* structure includes the values of the different fields
2696  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2697  *   and destination ports, and so on.
2698  * @param rx_queue
2699  *   The index of the RX queue where to store RX packets matching the added
2700  *   signature filter defined in fdir_ftr.
2701  * @return
2702  *   - (0) if successful.
2703  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2704  *   - (-ENODEV) if *port_id* invalid.
2705  *   - (-ENOSYS) if the flow director mode is not configured in signature mode
2706  *     on *port_id*.
2707  *   - (-EINVAL) if the fdir_filter information is not correct.
2708  */
2709 int rte_eth_dev_fdir_update_signature_filter(uint8_t port_id,
2710                                              struct rte_fdir_filter *fdir_ftr,
2711                                              uint8_t rx_queue);
2712
2713 /**
2714  * Remove a signature filter rule on an Ethernet device.
2715  *
2716  * @param port_id
2717  *   The port identifier of the Ethernet device.
2718  * @param fdir_ftr
2719  *   The pointer to the structure describing the signature filter rule.
2720  *   The *rte_fdir_filter* structure includes the values of the different fields
2721  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2722  *   and destination ports, and so on.
2723  * @return
2724  *   - (0) if successful.
2725  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2726  *   - (-ENODEV) if *port_id* invalid.
2727  *   - (-ENOSYS) if the flow director mode is not configured in signature mode
2728  *     on *port_id*.
2729  *   - (-EINVAL) if the fdir_filter information is not correct.
2730  */
2731 int rte_eth_dev_fdir_remove_signature_filter(uint8_t port_id,
2732                                              struct rte_fdir_filter *fdir_ftr);
2733
2734 /**
2735  * Retrieve the flow director information of an Ethernet device.
2736  *
2737  * @param port_id
2738  *   The port identifier of the Ethernet device.
2739  * @param fdir
2740  *   A pointer to a structure of type *rte_eth_dev_fdir* to be filled with
2741  *   the flow director information of the Ethernet device.
2742  * @return
2743  *   - (0) if successful.
2744  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2745  *   - (-ENODEV) if *port_id* invalid.
2746  *   - (-ENOSYS) if the flow director mode is not configured on *port_id*.
2747  */
2748 int rte_eth_dev_fdir_get_infos(uint8_t port_id, struct rte_eth_fdir *fdir);
2749
2750 /**
2751  * Add a new perfect filter rule on an Ethernet device.
2752  *
2753  * @param port_id
2754  *   The port identifier of the Ethernet device.
2755  * @param fdir_filter
2756  *   The pointer to the structure describing the perfect filter rule.
2757  *   The *rte_fdir_filter* structure includes the values of the different fields
2758  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2759  *   and destination ports, and so on.
2760  *   IPv6 are not supported.
2761  * @param soft_id
2762  *    The 16-bit value supplied in the field hash.fdir.id of mbuf for RX
2763  *    packets matching the perfect filter.
2764  * @param rx_queue
2765  *   The index of the RX queue where to store RX packets matching the added
2766  *   perfect filter defined in fdir_filter.
2767  * @param drop
2768  *    If drop is set to 1, matching RX packets are stored into the RX drop
2769  *    queue defined in the rte_fdir_conf.
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 in perfect mode
2775  *               on *port_id*.
2776  *   - (-EINVAL) if the fdir_filter information is not correct.
2777  */
2778 int rte_eth_dev_fdir_add_perfect_filter(uint8_t port_id,
2779                                         struct rte_fdir_filter *fdir_filter,
2780                                         uint16_t soft_id, uint8_t rx_queue,
2781                                         uint8_t drop);
2782
2783 /**
2784  * Update a perfect filter rule on an Ethernet device.
2785  * If the rule doesn't exits, it is created.
2786  *
2787  * @param port_id
2788  *   The port identifier of the Ethernet device.
2789  * @param fdir_filter
2790  *   The pointer to the structure describing the perfect filter rule.
2791  *   The *rte_fdir_filter* structure includes the values of the different fields
2792  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2793  *   and destination ports, and so on.
2794  *   IPv6 are not supported.
2795  * @param soft_id
2796  *    The 16-bit value supplied in the field hash.fdir.id of mbuf for RX
2797  *    packets matching the perfect filter.
2798  * @param rx_queue
2799  *   The index of the RX queue where to store RX packets matching the added
2800  *   perfect filter defined in fdir_filter.
2801  * @param drop
2802  *    If drop is set to 1, matching RX packets are stored into the RX drop
2803  *    queue defined in the rte_fdir_conf.
2804  * @return
2805  *   - (0) if successful.
2806  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2807  *   - (-ENODEV) if *port_id* invalid.
2808  *   - (-ENOSYS) if the flow director mode is not configured in perfect mode
2809  *      on *port_id*.
2810  *   - (-EINVAL) if the fdir_filter information is not correct.
2811  */
2812 int rte_eth_dev_fdir_update_perfect_filter(uint8_t port_id,
2813                                            struct rte_fdir_filter *fdir_filter,
2814                                            uint16_t soft_id, uint8_t rx_queue,
2815                                            uint8_t drop);
2816
2817 /**
2818  * Remove a perfect filter rule on an Ethernet device.
2819  *
2820  * @param port_id
2821  *   The port identifier of the Ethernet device.
2822  * @param fdir_filter
2823  *   The pointer to the structure describing the perfect filter rule.
2824  *   The *rte_fdir_filter* structure includes the values of the different fields
2825  *   to match: source and destination IP addresses, vlan id, flexbytes, source
2826  *   and destination ports, and so on.
2827  *   IPv6 are not supported.
2828  * @param soft_id
2829  *    The soft_id value provided when adding/updating the removed filter.
2830  * @return
2831  *   - (0) if successful.
2832  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2833  *   - (-ENODEV) if *port_id* invalid.
2834  *   - (-ENOSYS) if the flow director mode is not configured in perfect mode
2835  *      on *port_id*.
2836  *   - (-EINVAL) if the fdir_filter information is not correct.
2837  */
2838 int rte_eth_dev_fdir_remove_perfect_filter(uint8_t port_id,
2839                                            struct rte_fdir_filter *fdir_filter,
2840                                            uint16_t soft_id);
2841 /**
2842  * Configure globally the masks for flow director mode for an Ethernet device.
2843  * For example, the device can match packets with only the first 24 bits of
2844  * the IPv4 source address.
2845  *
2846  * The following fields can be masked: IPv4 addresses and L4 port numbers.
2847  * The following fields can be either enabled or disabled completely for the
2848  * matching functionality: VLAN ID tag; VLAN Priority + CFI bit; Flexible 2-byte
2849  * tuple.
2850  * IPv6 masks are not supported.
2851  *
2852  * All filters must comply with the masks previously configured.
2853  * For example, with a mask equal to 255.255.255.0 for the source IPv4 address,
2854  * all IPv4 filters must be created with a source IPv4 address that fits the
2855  * "X.X.X.0" format.
2856  *
2857  * This function flushes all filters that have been previously added in
2858  * the device.
2859  *
2860  * @param port_id
2861  *   The port identifier of the Ethernet device.
2862  * @param fdir_mask
2863  *   The pointer to the fdir mask structure describing relevant headers fields
2864  *   and relevant bits to use when matching packets addresses and ports.
2865  *   IPv6 masks are not supported.
2866  * @return
2867  *   - (0) if successful.
2868  *   - (-ENOTSUP) if hardware doesn't support flow director mode.
2869  *   - (-ENODEV) if *port_id* invalid.
2870  *   - (-ENOSYS) if the flow director mode is not configured in perfect
2871  *      mode on *port_id*.
2872  *   - (-EINVAL) if the fdir_filter information is not correct
2873  */
2874 int rte_eth_dev_fdir_set_masks(uint8_t port_id,
2875                                struct rte_fdir_masks *fdir_mask);
2876
2877 /**
2878  * The eth device event type for interrupt, and maybe others in the future.
2879  */
2880 enum rte_eth_event_type {
2881         RTE_ETH_EVENT_UNKNOWN,  /**< unknown event type */
2882         RTE_ETH_EVENT_INTR_LSC, /**< lsc interrupt event */
2883         RTE_ETH_EVENT_MAX       /**< max value of this enum */
2884 };
2885
2886 typedef void (*rte_eth_dev_cb_fn)(uint8_t port_id, \
2887                 enum rte_eth_event_type event, void *cb_arg);
2888 /**< user application callback to be registered for interrupts */
2889
2890
2891
2892 /**
2893  * Register a callback function for specific port id.
2894  *
2895  * @param port_id
2896  *  Port id.
2897  * @param event
2898  *  Event interested.
2899  * @param cb_fn
2900  *  User supplied callback function to be called.
2901  * @param cb_arg
2902  *  Pointer to the parameters for the registered callback.
2903  *
2904  * @return
2905  *  - On success, zero.
2906  *  - On failure, a negative value.
2907  */
2908 int rte_eth_dev_callback_register(uint8_t port_id,
2909                         enum rte_eth_event_type event,
2910                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
2911
2912 /**
2913  * Unregister a callback function for specific port id.
2914  *
2915  * @param port_id
2916  *  Port id.
2917  * @param event
2918  *  Event interested.
2919  * @param cb_fn
2920  *  User supplied callback function to be called.
2921  * @param cb_arg
2922  *  Pointer to the parameters for the registered callback. -1 means to
2923  *  remove all for the same callback address and same event.
2924  *
2925  * @return
2926  *  - On success, zero.
2927  *  - On failure, a negative value.
2928  */
2929 int rte_eth_dev_callback_unregister(uint8_t port_id,
2930                         enum rte_eth_event_type event,
2931                 rte_eth_dev_cb_fn cb_fn, void *cb_arg);
2932
2933 /**
2934  * @internal Executes all the user application registered callbacks for
2935  * the specific device. It is for DPDK internal user only. User
2936  * application should not call it directly.
2937  *
2938  * @param dev
2939  *  Pointer to struct rte_eth_dev.
2940  * @param event
2941  *  Eth device interrupt event type.
2942  *
2943  * @return
2944  *  void
2945  */
2946 void _rte_eth_dev_callback_process(struct rte_eth_dev *dev,
2947                                 enum rte_eth_event_type event);
2948
2949 /**
2950  * Turn on the LED on the Ethernet device.
2951  * This function turns on the LED on the Ethernet device.
2952  *
2953  * @param port_id
2954  *   The port identifier of the Ethernet device.
2955  * @return
2956  *   - (0) if successful.
2957  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
2958  *     that operation.
2959  *   - (-ENODEV) if *port_id* invalid.
2960  */
2961 int  rte_eth_led_on(uint8_t port_id);
2962
2963 /**
2964  * Turn off the LED on the Ethernet device.
2965  * This function turns off the LED on the Ethernet device.
2966  *
2967  * @param port_id
2968  *   The port identifier of the Ethernet device.
2969  * @return
2970  *   - (0) if successful.
2971  *   - (-ENOTSUP) if underlying hardware OR driver doesn't support
2972  *     that operation.
2973  *   - (-ENODEV) if *port_id* invalid.
2974  */
2975 int  rte_eth_led_off(uint8_t port_id);
2976
2977 /**
2978  * Get current status of the Ethernet link flow control for Ethernet device
2979  *
2980  * @param port_id
2981  *   The port identifier of the Ethernet device.
2982  * @param fc_conf
2983  *   The pointer to the structure where to store the flow control parameters.
2984  * @return
2985  *   - (0) if successful.
2986  *   - (-ENOTSUP) if hardware doesn't support flow control.
2987  *   - (-ENODEV)  if *port_id* invalid.
2988  */
2989 int rte_eth_dev_flow_ctrl_get(uint8_t port_id,
2990                               struct rte_eth_fc_conf *fc_conf);
2991
2992 /**
2993  * Configure the Ethernet link flow control for Ethernet device
2994  *
2995  * @param port_id
2996  *   The port identifier of the Ethernet device.
2997  * @param fc_conf
2998  *   The pointer to the structure of the flow control parameters.
2999  * @return
3000  *   - (0) if successful.
3001  *   - (-ENOTSUP) if hardware doesn't support flow control mode.
3002  *   - (-ENODEV)  if *port_id* invalid.
3003  *   - (-EINVAL)  if bad parameter
3004  *   - (-EIO)     if flow control setup failure
3005  */
3006 int rte_eth_dev_flow_ctrl_set(uint8_t port_id,
3007                               struct rte_eth_fc_conf *fc_conf);
3008
3009 /**
3010  * Configure the Ethernet priority flow control under DCB environment
3011  * for Ethernet device.
3012  *
3013  * @param port_id
3014  * The port identifier of the Ethernet device.
3015  * @param pfc_conf
3016  * The pointer to the structure of the priority flow control parameters.
3017  * @return
3018  *   - (0) if successful.
3019  *   - (-ENOTSUP) if hardware doesn't support priority flow control mode.
3020  *   - (-ENODEV)  if *port_id* invalid.
3021  *   - (-EINVAL)  if bad parameter
3022  *   - (-EIO)     if flow control setup failure
3023  */
3024 int rte_eth_dev_priority_flow_ctrl_set(uint8_t port_id,
3025                                 struct rte_eth_pfc_conf *pfc_conf);
3026
3027 /**
3028  * Add a MAC address to an internal array of addresses used to enable whitelist
3029  * filtering to accept packets only if the destination MAC address matches.
3030  *
3031  * @param port
3032  *   The port identifier of the Ethernet device.
3033  * @param mac_addr
3034  *   The MAC address to add.
3035  * @param pool
3036  *   VMDq pool index to associate address with (if VMDq is enabled). If VMDq is
3037  *   not enabled, this should be set to 0.
3038  * @return
3039  *   - (0) if successfully added or *mac_addr" was already added.
3040  *   - (-ENOTSUP) if hardware doesn't support this feature.
3041  *   - (-ENODEV) if *port* is invalid.
3042  *   - (-ENOSPC) if no more MAC addresses can be added.
3043  *   - (-EINVAL) if MAC address is invalid.
3044  */
3045 int rte_eth_dev_mac_addr_add(uint8_t port, struct ether_addr *mac_addr,
3046                                 uint32_t pool);
3047
3048 /**
3049  * Remove a MAC address from the internal array of addresses.
3050  *
3051  * @param port
3052  *   The port identifier of the Ethernet device.
3053  * @param mac_addr
3054  *   MAC address to remove.
3055  * @return
3056  *   - (0) if successful, or *mac_addr* didn't exist.
3057  *   - (-ENOTSUP) if hardware doesn't support.
3058  *   - (-ENODEV) if *port* invalid.
3059  *   - (-EADDRINUSE) if attempting to remove the default MAC address
3060  */
3061 int rte_eth_dev_mac_addr_remove(uint8_t port, struct ether_addr *mac_addr);
3062
3063 /**
3064  * Set the default MAC address.
3065  *
3066  * @param port
3067  *   The port identifier of the Ethernet device.
3068  * @param mac_addr
3069  *   New default MAC address.
3070  * @return
3071  *   - (0) if successful, or *mac_addr* didn't exist.
3072  *   - (-ENOTSUP) if hardware doesn't support.
3073  *   - (-ENODEV) if *port* invalid.
3074  *   - (-EINVAL) if MAC address is invalid.
3075  */
3076 int rte_eth_dev_default_mac_addr_set(uint8_t port, struct ether_addr *mac_addr);
3077
3078
3079 /**
3080  * Update Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3081  *
3082  * @param port
3083  *   The port identifier of the Ethernet device.
3084  * @param reta_conf
3085  *   RETA to update.
3086  * @param reta_size
3087  *   Redirection table size. The table size can be queried by
3088  *   rte_eth_dev_info_get().
3089  * @return
3090  *   - (0) if successful.
3091  *   - (-ENOTSUP) if hardware doesn't support.
3092  *   - (-EINVAL) if bad parameter.
3093  */
3094 int rte_eth_dev_rss_reta_update(uint8_t port,
3095                                 struct rte_eth_rss_reta_entry64 *reta_conf,
3096                                 uint16_t reta_size);
3097
3098  /**
3099  * Query Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
3100  *
3101  * @param port
3102  *   The port identifier of the Ethernet device.
3103  * @param reta_conf
3104  *   RETA to query.
3105  * @param reta_size
3106  *   Redirection table size. The table size can be queried by
3107  *   rte_eth_dev_info_get().
3108  * @return
3109  *   - (0) if successful.
3110  *   - (-ENOTSUP) if hardware doesn't support.
3111  *   - (-EINVAL) if bad parameter.
3112  */
3113 int rte_eth_dev_rss_reta_query(uint8_t port,
3114                                struct rte_eth_rss_reta_entry64 *reta_conf,
3115                                uint16_t reta_size);
3116
3117  /**
3118  * Updates unicast hash table for receiving packet with the given destination
3119  * MAC address, and the packet is routed to all VFs for which the RX mode is
3120  * accept packets that match the unicast hash table.
3121  *
3122  * @param port
3123  *   The port identifier of the Ethernet device.
3124  * @param addr
3125  *   Unicast MAC address.
3126  * @param on
3127  *    1 - Set an unicast hash bit for receiving packets with the MAC address.
3128  *    0 - Clear an unicast hash bit.
3129  * @return
3130  *   - (0) if successful.
3131  *   - (-ENOTSUP) if hardware doesn't support.
3132   *  - (-ENODEV) if *port_id* invalid.
3133  *   - (-EINVAL) if bad parameter.
3134  */
3135 int rte_eth_dev_uc_hash_table_set(uint8_t port,struct ether_addr *addr,
3136                                         uint8_t on);
3137
3138  /**
3139  * Updates all unicast hash bitmaps for receiving packet with any Unicast
3140  * Ethernet MAC addresses,the packet is routed to all VFs for which the RX
3141  * mode is accept packets that match the unicast hash table.
3142  *
3143  * @param port
3144  *   The port identifier of the Ethernet device.
3145  * @param on
3146  *    1 - Set all unicast hash bitmaps for receiving all the Ethernet
3147  *         MAC addresses
3148  *    0 - Clear all unicast hash bitmaps
3149  * @return
3150  *   - (0) if successful.
3151  *   - (-ENOTSUP) if hardware doesn't support.
3152   *  - (-ENODEV) if *port_id* invalid.
3153  *   - (-EINVAL) if bad parameter.
3154  */
3155 int rte_eth_dev_uc_all_hash_table_set(uint8_t port,uint8_t on);
3156
3157  /**
3158  * Set RX L2 Filtering mode of a VF of an Ethernet device.
3159  *
3160  * @param port
3161  *   The port identifier of the Ethernet device.
3162  * @param vf
3163  *   VF id.
3164  * @param rx_mode
3165  *    The RX mode mask, which  is one or more of  accepting Untagged Packets,
3166  *    packets that match the PFUTA table, Broadcast and Multicast Promiscuous.
3167  *    ETH_VMDQ_ACCEPT_UNTAG,ETH_VMDQ_ACCEPT_HASH_UC,
3168  *    ETH_VMDQ_ACCEPT_BROADCAST and ETH_VMDQ_ACCEPT_MULTICAST will be used
3169  *    in rx_mode.
3170  * @param on
3171  *    1 - Enable a VF RX mode.
3172  *    0 - Disable a VF RX mode.
3173  * @return
3174  *   - (0) if successful.
3175  *   - (-ENOTSUP) if hardware doesn't support.
3176  *   - (-ENOTSUP) if hardware doesn't support.
3177  *   - (-EINVAL) if bad parameter.
3178  */
3179 int rte_eth_dev_set_vf_rxmode(uint8_t port, uint16_t vf, uint16_t rx_mode,
3180                                 uint8_t on);
3181
3182 /**
3183 * Enable or disable a VF traffic transmit of the Ethernet device.
3184 *
3185 * @param port
3186 *   The port identifier of the Ethernet device.
3187 * @param vf
3188 *   VF id.
3189 * @param on
3190 *    1 - Enable a VF traffic transmit.
3191 *    0 - Disable a VF traffic transmit.
3192 * @return
3193 *   - (0) if successful.
3194 *   - (-ENODEV) if *port_id* invalid.
3195 *   - (-ENOTSUP) if hardware doesn't support.
3196 *   - (-EINVAL) if bad parameter.
3197 */
3198 int
3199 rte_eth_dev_set_vf_tx(uint8_t port,uint16_t vf, uint8_t on);
3200
3201 /**
3202 * Enable or disable a VF traffic receive of an Ethernet device.
3203 *
3204 * @param port
3205 *   The port identifier of the Ethernet device.
3206 * @param vf
3207 *   VF id.
3208 * @param on
3209 *    1 - Enable a VF traffic receive.
3210 *    0 - Disable a VF traffic receive.
3211 * @return
3212 *   - (0) if successful.
3213 *   - (-ENOTSUP) if hardware doesn't support.
3214 *   - (-ENODEV) if *port_id* invalid.
3215 *   - (-EINVAL) if bad parameter.
3216 */
3217 int
3218 rte_eth_dev_set_vf_rx(uint8_t port,uint16_t vf, uint8_t on);
3219
3220 /**
3221 * Enable/Disable hardware VF VLAN filtering by an Ethernet device of
3222 * received VLAN packets tagged with a given VLAN Tag Identifier.
3223 *
3224 * @param port id
3225 *   The port identifier of the Ethernet device.
3226 * @param vlan_id
3227 *   The VLAN Tag Identifier whose filtering must be enabled or disabled.
3228 * @param vf_mask
3229 *    Bitmap listing which VFs participate in the VLAN filtering.
3230 * @param vlan_on
3231 *    1 - Enable VFs VLAN filtering.
3232 *    0 - Disable VFs VLAN filtering.
3233 * @return
3234 *   - (0) if successful.
3235 *   - (-ENOTSUP) if hardware doesn't support.
3236 *   - (-ENODEV) if *port_id* invalid.
3237 *   - (-EINVAL) if bad parameter.
3238 */
3239 int
3240 rte_eth_dev_set_vf_vlan_filter(uint8_t port, uint16_t vlan_id,
3241                                 uint64_t vf_mask,
3242                                 uint8_t vlan_on);
3243
3244 /**
3245  * Set a traffic mirroring rule on an Ethernet device
3246  *
3247  * @param port_id
3248  *   The port identifier of the Ethernet device.
3249  * @param mirror_conf
3250  *   The pointer to the traffic mirroring structure describing the mirroring rule.
3251  *   The *rte_eth_vm_mirror_conf* structure includes the type of mirroring rule,
3252  *   destination pool and the value of rule if enable vlan or pool mirroring.
3253  *
3254  * @param rule_id
3255  *   The index of traffic mirroring rule, we support four separated rules.
3256  * @param on
3257  *   1 - Enable a mirroring rule.
3258  *   0 - Disable a mirroring rule.
3259  * @return
3260  *   - (0) if successful.
3261  *   - (-ENOTSUP) if hardware doesn't support this feature.
3262  *   - (-ENODEV) if *port_id* invalid.
3263  *   - (-EINVAL) if the mr_conf information is not correct.
3264  */
3265 int rte_eth_mirror_rule_set(uint8_t port_id,
3266                         struct rte_eth_mirror_conf *mirror_conf,
3267                         uint8_t rule_id,
3268                         uint8_t on);
3269
3270 /**
3271  * Reset a traffic mirroring rule on an Ethernet device.
3272  *
3273  * @param port_id
3274  *   The port identifier of the Ethernet device.
3275  * @param rule_id
3276  *   The index of traffic mirroring rule, we support four separated rules.
3277  * @return
3278  *   - (0) if successful.
3279  *   - (-ENOTSUP) if hardware doesn't support this feature.
3280  *   - (-ENODEV) if *port_id* invalid.
3281  *   - (-EINVAL) if bad parameter.
3282  */
3283 int rte_eth_mirror_rule_reset(uint8_t port_id,
3284                                          uint8_t rule_id);
3285
3286 /**
3287  * Set the rate limitation for a queue on an Ethernet device.
3288  *
3289  * @param port_id
3290  *   The port identifier of the Ethernet device.
3291  * @param queue_idx
3292  *   The queue id.
3293  * @param tx_rate
3294  *   The tx rate allocated from the total link speed for this queue.
3295  * @return
3296  *   - (0) if successful.
3297  *   - (-ENOTSUP) if hardware doesn't support this feature.
3298  *   - (-ENODEV) if *port_id* invalid.
3299  *   - (-EINVAL) if bad parameter.
3300  */
3301 int rte_eth_set_queue_rate_limit(uint8_t port_id, uint16_t queue_idx,
3302                         uint16_t tx_rate);
3303
3304 /**
3305  * Set the rate limitation for a vf on an Ethernet device.
3306  *
3307  * @param port_id
3308  *   The port identifier of the Ethernet device.
3309  * @param vf
3310  *   VF id.
3311  * @param tx_rate
3312  *   The tx rate allocated from the total link speed for this VF id.
3313  * @param q_msk
3314  *   The queue mask which need to set the rate.
3315  * @return
3316  *   - (0) if successful.
3317  *   - (-ENOTSUP) if hardware doesn't support this feature.
3318  *   - (-ENODEV) if *port_id* invalid.
3319  *   - (-EINVAL) if bad parameter.
3320  */
3321 int rte_eth_set_vf_rate_limit(uint8_t port_id, uint16_t vf,
3322                         uint16_t tx_rate, uint64_t q_msk);
3323
3324 /**
3325  * Initialize bypass logic. This function needs to be called before
3326  * executing any other bypass API.
3327  *
3328  * @param port
3329  *   The port identifier of the Ethernet device.
3330  * @return
3331  *   - (0) if successful.
3332  *   - (-ENOTSUP) if hardware doesn't support.
3333  *   - (-EINVAL) if bad parameter.
3334  */
3335 int rte_eth_dev_bypass_init(uint8_t port);
3336
3337 /**
3338  * Return bypass state.
3339  *
3340  * @param port
3341  *   The port identifier of the Ethernet device.
3342  * @param state
3343  *   The return bypass state.
3344  *   - (1) Normal mode
3345  *   - (2) Bypass mode
3346  *   - (3) Isolate mode
3347  * @return
3348  *   - (0) if successful.
3349  *   - (-ENOTSUP) if hardware doesn't support.
3350  *   - (-EINVAL) if bad parameter.
3351  */
3352 int rte_eth_dev_bypass_state_show(uint8_t port, uint32_t *state);
3353
3354 /**
3355  * Set bypass state
3356  *
3357  * @param port
3358  *   The port identifier of the Ethernet device.
3359  * @param new_state
3360  *   The current bypass state.
3361  *   - (1) Normal mode
3362  *   - (2) Bypass mode
3363  *   - (3) Isolate mode
3364  * @return
3365  *   - (0) if successful.
3366  *   - (-ENOTSUP) if hardware doesn't support.
3367  *   - (-EINVAL) if bad parameter.
3368  */
3369 int rte_eth_dev_bypass_state_set(uint8_t port, uint32_t *new_state);
3370
3371 /**
3372  * Return bypass state when given event occurs.
3373  *
3374  * @param port
3375  *   The port identifier of the Ethernet device.
3376  * @param event
3377  *   The bypass event
3378  *   - (1) Main power on (power button is pushed)
3379  *   - (2) Auxiliary power on (power supply is being plugged)
3380  *   - (3) Main power off (system shutdown and power supply is left plugged in)
3381  *   - (4) Auxiliary power off (power supply is being unplugged)
3382  *   - (5) Display or set the watchdog timer
3383  * @param state
3384  *   The bypass state when given event occurred.
3385  *   - (1) Normal mode
3386  *   - (2) Bypass mode
3387  *   - (3) Isolate mode
3388  * @return
3389  *   - (0) if successful.
3390  *   - (-ENOTSUP) if hardware doesn't support.
3391  *   - (-EINVAL) if bad parameter.
3392  */
3393 int rte_eth_dev_bypass_event_show(uint8_t port, uint32_t event, uint32_t *state);
3394
3395 /**
3396  * Set bypass state when given event occurs.
3397  *
3398  * @param port
3399  *   The port identifier of the Ethernet device.
3400  * @param event
3401  *   The bypass event
3402  *   - (1) Main power on (power button is pushed)
3403  *   - (2) Auxiliary power on (power supply is being plugged)
3404  *   - (3) Main power off (system shutdown and power supply is left plugged in)
3405  *   - (4) Auxiliary power off (power supply is being unplugged)
3406  *   - (5) Display or set the watchdog timer
3407  * @param state
3408  *   The assigned state when given event occurs.
3409  *   - (1) Normal mode
3410  *   - (2) Bypass mode
3411  *   - (3) Isolate mode
3412  * @return
3413  *   - (0) if successful.
3414  *   - (-ENOTSUP) if hardware doesn't support.
3415  *   - (-EINVAL) if bad parameter.
3416  */
3417 int rte_eth_dev_bypass_event_store(uint8_t port, uint32_t event, uint32_t state);
3418
3419 /**
3420  * Set bypass watchdog timeout count.
3421  *
3422  * @param port
3423  *   The port identifier of the Ethernet device.
3424  * @param timeout
3425  *   The timeout to be set.
3426  *   - (0) 0 seconds (timer is off)
3427  *   - (1) 1.5 seconds
3428  *   - (2) 2 seconds
3429  *   - (3) 3 seconds
3430  *   - (4) 4 seconds
3431  *   - (5) 8 seconds
3432  *   - (6) 16 seconds
3433  *   - (7) 32 seconds
3434  * @return
3435  *   - (0) if successful.
3436  *   - (-ENOTSUP) if hardware doesn't support.
3437  *   - (-EINVAL) if bad parameter.
3438  */
3439 int rte_eth_dev_wd_timeout_store(uint8_t port, uint32_t timeout);
3440
3441 /**
3442  * Get bypass firmware version.
3443  *
3444  * @param port
3445  *   The port identifier of the Ethernet device.
3446  * @param ver
3447  *   The firmware version
3448  * @return
3449  *   - (0) if successful.
3450  *   - (-ENOTSUP) if hardware doesn't support.
3451  *   - (-EINVAL) if bad parameter.
3452  */
3453 int rte_eth_dev_bypass_ver_show(uint8_t port, uint32_t *ver);
3454
3455 /**
3456  * Return bypass watchdog timeout in seconds
3457  *
3458  * @param port
3459  *   The port identifier of the Ethernet device.
3460  * @param wd_timeout
3461  *   The return watchdog timeout. "0" represents timer expired
3462  *   - (0) 0 seconds (timer is off)
3463  *   - (1) 1.5 seconds
3464  *   - (2) 2 seconds
3465  *   - (3) 3 seconds
3466  *   - (4) 4 seconds
3467  *   - (5) 8 seconds
3468  *   - (6) 16 seconds
3469  *   - (7) 32 seconds
3470  * @return
3471  *   - (0) if successful.
3472  *   - (-ENOTSUP) if hardware doesn't support.
3473  *   - (-EINVAL) if bad parameter.
3474  */
3475 int rte_eth_dev_bypass_wd_timeout_show(uint8_t port, uint32_t *wd_timeout);
3476
3477 /**
3478  * Reset bypass watchdog timer
3479  *
3480  * @param port
3481  *   The port identifier of the Ethernet device.
3482  * @return
3483  *   - (0) if successful.
3484  *   - (-ENOTSUP) if hardware doesn't support.
3485  *   - (-EINVAL) if bad parameter.
3486  */
3487 int rte_eth_dev_bypass_wd_reset(uint8_t port);
3488
3489  /**
3490  * Configuration of Receive Side Scaling hash computation of Ethernet device.
3491  *
3492  * @param port_id
3493  *   The port identifier of the Ethernet device.
3494  * @param rss_conf
3495  *   The new configuration to use for RSS hash computation on the port.
3496  * @return
3497  *   - (0) if successful.
3498  *   - (-ENODEV) if port identifier is invalid.
3499  *   - (-ENOTSUP) if hardware doesn't support.
3500  *   - (-EINVAL) if bad parameter.
3501  */
3502 int rte_eth_dev_rss_hash_update(uint8_t port_id,
3503                                 struct rte_eth_rss_conf *rss_conf);
3504
3505  /**
3506  * Retrieve current configuration of Receive Side Scaling hash computation
3507  * of Ethernet device.
3508  *
3509  * @param port_id
3510  *   The port identifier of the Ethernet device.
3511  * @param rss_conf
3512  *   Where to store the current RSS hash configuration of the Ethernet device.
3513  * @return
3514  *   - (0) if successful.
3515  *   - (-ENODEV) if port identifier is invalid.
3516  *   - (-ENOTSUP) if hardware doesn't support RSS.
3517  */
3518 int
3519 rte_eth_dev_rss_hash_conf_get(uint8_t port_id,
3520                               struct rte_eth_rss_conf *rss_conf);
3521
3522  /**
3523  * Add UDP tunneling port of an Ethernet device for filtering a specific
3524  * tunneling packet by UDP port number.
3525  *
3526  * @param port_id
3527  *   The port identifier of the Ethernet device.
3528  * @param tunnel_udp
3529  *   UDP tunneling configuration.
3530  *
3531  * @return
3532  *   - (0) if successful.
3533  *   - (-ENODEV) if port identifier is invalid.
3534  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3535  */
3536 int
3537 rte_eth_dev_udp_tunnel_add(uint8_t port_id,
3538                            struct rte_eth_udp_tunnel *tunnel_udp);
3539
3540  /**
3541  * Detete UDP tunneling port configuration of Ethernet device
3542  *
3543  * @param port_id
3544  *   The port identifier of the Ethernet device.
3545  * @param tunnel_udp
3546  *   UDP tunneling configuration.
3547  *
3548  * @return
3549  *   - (0) if successful.
3550  *   - (-ENODEV) if port identifier is invalid.
3551  *   - (-ENOTSUP) if hardware doesn't support tunnel type.
3552  */
3553 int
3554 rte_eth_dev_udp_tunnel_delete(uint8_t port_id,
3555                               struct rte_eth_udp_tunnel *tunnel_udp);
3556
3557 /**
3558  * Check whether the filter type is supported on an Ethernet device.
3559  * All the supported filter types are defined in 'rte_eth_ctrl.h'.
3560  *
3561  * @param port_id
3562  *   The port identifier of the Ethernet device.
3563  * @param filter_type
3564  *   Filter type.
3565  * @return
3566  *   - (0) if successful.
3567  *   - (-ENOTSUP) if hardware doesn't support this filter type.
3568  *   - (-ENODEV) if *port_id* invalid.
3569  */
3570 int rte_eth_dev_filter_supported(uint8_t port_id, enum rte_filter_type filter_type);
3571
3572 /**
3573  * Take operations to assigned filter type on an Ethernet device.
3574  * All the supported operations and filter types are defined in 'rte_eth_ctrl.h'.
3575  *
3576  * @param port_id
3577  *   The port identifier of the Ethernet device.
3578  * @param filter_type
3579  *   Filter type.
3580  * @param filter_op
3581  *   Type of operation.
3582  * @param arg
3583  *   A pointer to arguments defined specifically for the operation.
3584  * @return
3585  *   - (0) if successful.
3586  *   - (-ENOTSUP) if hardware doesn't support.
3587  *   - (-ENODEV) if *port_id* invalid.
3588  *   - others depends on the specific operations implementation.
3589  */
3590 int rte_eth_dev_filter_ctrl(uint8_t port_id, enum rte_filter_type filter_type,
3591                         enum rte_filter_op filter_op, void *arg);
3592
3593 /**
3594  * Add a callback to be called on packet RX on a given port and queue.
3595  *
3596  * This API configures a function to be called for each burst of
3597  * packets received on a given NIC port queue. The return value is a pointer
3598  * that can be used to later remove the callback using
3599  * rte_eth_remove_rx_callback().
3600  *
3601  * Multiple functions are called in the order that they are added.
3602  *
3603  * @param port_id
3604  *   The port identifier of the Ethernet device.
3605  * @param queue_id
3606  *   The queue on the Ethernet device on which the callback is to be added.
3607  * @param fn
3608  *   The callback function
3609  * @param user_param
3610  *   A generic pointer parameter which will be passed to each invocation of the
3611  *   callback function on this port and queue.
3612  *
3613  * @return
3614  *   NULL on error.
3615  *   On success, a pointer value which can later be used to remove the callback.
3616  */
3617 void *rte_eth_add_rx_callback(uint8_t port_id, uint16_t queue_id,
3618                 rte_rx_callback_fn fn, void *user_param);
3619
3620 /**
3621  * Add a callback to be called on packet TX on a given port and queue.
3622  *
3623  * This API configures a function to be called for each burst of
3624  * packets sent on a given NIC port queue. The return value is a pointer
3625  * that can be used to later remove the callback using
3626  * rte_eth_remove_tx_callback().
3627  *
3628  * Multiple functions are called in the order that they are added.
3629  *
3630  * @param port_id
3631  *   The port identifier of the Ethernet device.
3632  * @param queue_id
3633  *   The queue on the Ethernet device on which the callback is to be added.
3634  * @param fn
3635  *   The callback function
3636  * @param user_param
3637  *   A generic pointer parameter which will be passed to each invocation of the
3638  *   callback function on this port and queue.
3639  *
3640  * @return
3641  *   NULL on error.
3642  *   On success, a pointer value which can later be used to remove the callback.
3643  */
3644 void *rte_eth_add_tx_callback(uint8_t port_id, uint16_t queue_id,
3645                 rte_tx_callback_fn fn, void *user_param);
3646
3647 /**
3648  * Remove an RX packet callback from a given port and queue.
3649  *
3650  * This function is used to removed callbacks that were added to a NIC port
3651  * queue using rte_eth_add_rx_callback().
3652  *
3653  * Note: the callback is removed from the callback list but it isn't freed
3654  * since the it may still be in use. The memory for the callback can be
3655  * subsequently freed back by the application by calling rte_free():
3656  *
3657  * - Immediately - if the port is stopped, or the user knows that no
3658  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3659  *   on that queue.
3660  *
3661  * - After a short delay - where the delay is sufficient to allow any
3662  *   in-flight callbacks to complete.
3663  *
3664  * @param port_id
3665  *   The port identifier of the Ethernet device.
3666  * @param queue_id
3667  *   The queue on the Ethernet device from which the callback is to be removed.
3668  * @param user_cb
3669  *   User supplied callback created via rte_eth_add_rx_callback().
3670  *
3671  * @return
3672  *   - 0: Success. Callback was removed.
3673  *   - -ENOTSUP: Callback support is not available.
3674  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3675  *               is NULL or not found for the port/queue.
3676  */
3677 int rte_eth_remove_rx_callback(uint8_t port_id, uint16_t queue_id,
3678                 struct rte_eth_rxtx_callback *user_cb);
3679
3680 /**
3681  * Remove a TX packet callback from a given port and queue.
3682  *
3683  * This function is used to removed callbacks that were added to a NIC port
3684  * queue using rte_eth_add_tx_callback().
3685  *
3686  * Note: the callback is removed from the callback list but it isn't freed
3687  * since the it may still be in use. The memory for the callback can be
3688  * subsequently freed back by the application by calling rte_free():
3689  *
3690  * - Immediately - if the port is stopped, or the user knows that no
3691  *   callbacks are in flight e.g. if called from the thread doing RX/TX
3692  *   on that queue.
3693  *
3694  * - After a short delay - where the delay is sufficient to allow any
3695  *   in-flight callbacks to complete.
3696  *
3697  * @param port_id
3698  *   The port identifier of the Ethernet device.
3699  * @param queue_id
3700  *   The queue on the Ethernet device from which the callback is to be removed.
3701  * @param user_cb
3702  *   User supplied callback created via rte_eth_add_tx_callback().
3703  *
3704  * @return
3705  *   - 0: Success. Callback was removed.
3706  *   - -ENOTSUP: Callback support is not available.
3707  *   - -EINVAL:  The port_id or the queue_id is out of range, or the callback
3708  *               is NULL or not found for the port/queue.
3709  */
3710 int rte_eth_remove_tx_callback(uint8_t port_id, uint16_t queue_id,
3711                 struct rte_eth_rxtx_callback *user_cb);
3712
3713 /**
3714  * Retrieve number of available registers for access
3715  *
3716  * @param port_id
3717  *   The port identifier of the Ethernet device.
3718  * @return
3719  *   - (>=0) number of registers if successful.
3720  *   - (-ENOTSUP) if hardware doesn't support.
3721  *   - (-ENODEV) if *port_id* invalid.
3722  *   - others depends on the specific operations implementation.
3723  */
3724 int rte_eth_dev_get_reg_length(uint8_t port_id);
3725
3726 /**
3727  * Retrieve device registers and register attributes
3728  *
3729  * @param port_id
3730  *   The port identifier of the Ethernet device.
3731  * @param info
3732  *   The template includes buffer for register data and attribute to be filled.
3733  * @return
3734  *   - (0) if successful.
3735  *   - (-ENOTSUP) if hardware doesn't support.
3736  *   - (-ENODEV) if *port_id* invalid.
3737  *   - others depends on the specific operations implementation.
3738  */
3739 int rte_eth_dev_get_reg_info(uint8_t port_id, struct rte_dev_reg_info *info);
3740
3741 /**
3742  * Retrieve size of device EEPROM
3743  *
3744  * @param port_id
3745  *   The port identifier of the Ethernet device.
3746  * @return
3747  *   - (>=0) EEPROM size if successful.
3748  *   - (-ENOTSUP) if hardware doesn't support.
3749  *   - (-ENODEV) if *port_id* invalid.
3750  *   - others depends on the specific operations implementation.
3751  */
3752 int rte_eth_dev_get_eeprom_length(uint8_t port_id);
3753
3754 /**
3755  * Retrieve EEPROM and EEPROM attribute
3756  *
3757  * @param port_id
3758  *   The port identifier of the Ethernet device.
3759  * @param info
3760  *   The template includes buffer for return EEPROM data and
3761  *   EEPROM attributes to be filled.
3762  * @return
3763  *   - (0) if successful.
3764  *   - (-ENOTSUP) if hardware doesn't support.
3765  *   - (-ENODEV) if *port_id* invalid.
3766  *   - others depends on the specific operations implementation.
3767  */
3768 int rte_eth_dev_get_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
3769
3770 /**
3771  * Program EEPROM with provided data
3772  *
3773  * @param port_id
3774  *   The port identifier of the Ethernet device.
3775  * @param info
3776  *   The template includes EEPROM data for programming and
3777  *   EEPROM attributes to be filled
3778  * @return
3779  *   - (0) if successful.
3780  *   - (-ENOTSUP) if hardware doesn't support.
3781  *   - (-ENODEV) if *port_id* invalid.
3782  *   - others depends on the specific operations implementation.
3783  */
3784 int rte_eth_dev_set_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
3785
3786 #ifdef __cplusplus
3787 }
3788 #endif
3789
3790 /**
3791  * Set the list of multicast addresses to filter on an Ethernet device.
3792  *
3793  * @param port_id
3794  *   The port identifier of the Ethernet device.
3795  * @param mc_addr_set
3796  *   The array of multicast addresses to set. Equal to NULL when the function
3797  *   is invoked to flush the set of filtered addresses.
3798  * @param nb_mc_addr
3799  *   The number of multicast addresses in the *mc_addr_set* array. Equal to 0
3800  *   when the function is invoked to flush the set of filtered addresses.
3801  * @return
3802  *   - (0) if successful.
3803  *   - (-ENODEV) if *port_id* invalid.
3804  *   - (-ENOTSUP) if PMD of *port_id* doesn't support multicast filtering.
3805  *   - (-ENOSPC) if *port_id* has not enough multicast filtering resources.
3806  */
3807 int rte_eth_dev_set_mc_addr_list(uint8_t port_id,
3808                                  struct ether_addr *mc_addr_set,
3809                                  uint32_t nb_mc_addr);
3810
3811
3812 /**
3813  * Enable IEEE1588/802.1AS timestamping for an Ethernet device.
3814  *
3815  * @param port_id
3816  *   The port identifier of the Ethernet device.
3817  *
3818  * @return
3819  *   - 0: Success.
3820  *   - -ENODEV: The port ID is invalid.
3821  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3822  */
3823 extern int rte_eth_timesync_enable(uint8_t port_id);
3824
3825 /**
3826  * Disable IEEE1588/802.1AS timestamping for an Ethernet device.
3827  *
3828  * @param port_id
3829  *   The port identifier of the Ethernet device.
3830  *
3831  * @return
3832  *   - 0: Success.
3833  *   - -ENODEV: The port ID is invalid.
3834  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3835  */
3836 extern int rte_eth_timesync_disable(uint8_t port_id);
3837
3838 /**
3839  * Read an IEEE1588/802.1AS RX timestamp from an Ethernet device.
3840  *
3841  * @param port_id
3842  *   The port identifier of the Ethernet device.
3843  * @param timestamp
3844  *   Pointer to the timestamp struct.
3845  * @param flags
3846  *   Device specific flags. Used to pass the RX timesync register index to
3847  *   i40e. Unused in igb/ixgbe, pass 0 instead.
3848  *
3849  * @return
3850  *   - 0: Success.
3851  *   - -EINVAL: No timestamp is available.
3852  *   - -ENODEV: The port ID is invalid.
3853  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3854  */
3855 extern int rte_eth_timesync_read_rx_timestamp(uint8_t port_id,
3856                                               struct timespec *timestamp,
3857                                               uint32_t flags);
3858
3859 /**
3860  * Read an IEEE1588/802.1AS TX timestamp from an Ethernet device.
3861  *
3862  * @param port_id
3863  *   The port identifier of the Ethernet device.
3864  * @param timestamp
3865  *   Pointer to the timestamp struct.
3866  *
3867  * @return
3868  *   - 0: Success.
3869  *   - -EINVAL: No timestamp is available.
3870  *   - -ENODEV: The port ID is invalid.
3871  *   - -ENOTSUP: The function is not supported by the Ethernet driver.
3872  */
3873 extern int rte_eth_timesync_read_tx_timestamp(uint8_t port_id,
3874                                               struct timespec *timestamp);
3875 #endif /* _RTE_ETHDEV_H_ */