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