199a2dd95SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause 299a2dd95SBruce Richardson * Copyright(c) 2017 Intel Corporation 399a2dd95SBruce Richardson */ 499a2dd95SBruce Richardson 599a2dd95SBruce Richardson #ifndef _RTE_ETHDEV_DRIVER_H_ 699a2dd95SBruce Richardson #define _RTE_ETHDEV_DRIVER_H_ 799a2dd95SBruce Richardson 899a2dd95SBruce Richardson /** 999a2dd95SBruce Richardson * @file 1099a2dd95SBruce Richardson * 1199a2dd95SBruce Richardson * RTE Ethernet Device PMD API 1299a2dd95SBruce Richardson * 1399a2dd95SBruce Richardson * These APIs for the use from Ethernet drivers, user applications shouldn't 1499a2dd95SBruce Richardson * use them. 1599a2dd95SBruce Richardson * 1699a2dd95SBruce Richardson */ 1799a2dd95SBruce Richardson 1899a2dd95SBruce Richardson #include <rte_ethdev.h> 1999a2dd95SBruce Richardson 20*f9bdee26SKonstantin Ananyev /** 21*f9bdee26SKonstantin Ananyev * @internal 22*f9bdee26SKonstantin Ananyev * Structure used to hold information about the callbacks to be called for a 23*f9bdee26SKonstantin Ananyev * queue on RX and TX. 24*f9bdee26SKonstantin Ananyev */ 25*f9bdee26SKonstantin Ananyev struct rte_eth_rxtx_callback { 26*f9bdee26SKonstantin Ananyev struct rte_eth_rxtx_callback *next; 27*f9bdee26SKonstantin Ananyev union{ 28*f9bdee26SKonstantin Ananyev rte_rx_callback_fn rx; 29*f9bdee26SKonstantin Ananyev rte_tx_callback_fn tx; 30*f9bdee26SKonstantin Ananyev } fn; 31*f9bdee26SKonstantin Ananyev void *param; 32*f9bdee26SKonstantin Ananyev }; 33*f9bdee26SKonstantin Ananyev 34*f9bdee26SKonstantin Ananyev /** 35*f9bdee26SKonstantin Ananyev * @internal 36*f9bdee26SKonstantin Ananyev * The generic data structure associated with each ethernet device. 37*f9bdee26SKonstantin Ananyev * 38*f9bdee26SKonstantin Ananyev * Pointers to burst-oriented packet receive and transmit functions are 39*f9bdee26SKonstantin Ananyev * located at the beginning of the structure, along with the pointer to 40*f9bdee26SKonstantin Ananyev * where all the data elements for the particular device are stored in shared 41*f9bdee26SKonstantin Ananyev * memory. This split allows the function pointer and driver data to be per- 42*f9bdee26SKonstantin Ananyev * process, while the actual configuration data for the device is shared. 43*f9bdee26SKonstantin Ananyev */ 44*f9bdee26SKonstantin Ananyev struct rte_eth_dev { 45*f9bdee26SKonstantin Ananyev eth_rx_burst_t rx_pkt_burst; /**< Pointer to PMD receive function. */ 46*f9bdee26SKonstantin Ananyev eth_tx_burst_t tx_pkt_burst; /**< Pointer to PMD transmit function. */ 47*f9bdee26SKonstantin Ananyev eth_tx_prep_t tx_pkt_prepare; 48*f9bdee26SKonstantin Ananyev /**< Pointer to PMD transmit prepare function. */ 49*f9bdee26SKonstantin Ananyev eth_rx_queue_count_t rx_queue_count; 50*f9bdee26SKonstantin Ananyev /**< Get the number of used RX descriptors. */ 51*f9bdee26SKonstantin Ananyev eth_rx_descriptor_status_t rx_descriptor_status; 52*f9bdee26SKonstantin Ananyev /**< Check the status of a Rx descriptor. */ 53*f9bdee26SKonstantin Ananyev eth_tx_descriptor_status_t tx_descriptor_status; 54*f9bdee26SKonstantin Ananyev /**< Check the status of a Tx descriptor. */ 55*f9bdee26SKonstantin Ananyev 56*f9bdee26SKonstantin Ananyev /** 57*f9bdee26SKonstantin Ananyev * points to device data that is shared between 58*f9bdee26SKonstantin Ananyev * primary and secondary processes. 59*f9bdee26SKonstantin Ananyev */ 60*f9bdee26SKonstantin Ananyev struct rte_eth_dev_data *data; 61*f9bdee26SKonstantin Ananyev void *process_private; /**< Pointer to per-process device data. */ 62*f9bdee26SKonstantin Ananyev const struct eth_dev_ops *dev_ops; /**< Functions exported by PMD */ 63*f9bdee26SKonstantin Ananyev struct rte_device *device; /**< Backing device */ 64*f9bdee26SKonstantin Ananyev struct rte_intr_handle *intr_handle; /**< Device interrupt handle */ 65*f9bdee26SKonstantin Ananyev /** User application callbacks for NIC interrupts */ 66*f9bdee26SKonstantin Ananyev struct rte_eth_dev_cb_list link_intr_cbs; 67*f9bdee26SKonstantin Ananyev /** 68*f9bdee26SKonstantin Ananyev * User-supplied functions called from rx_burst to post-process 69*f9bdee26SKonstantin Ananyev * received packets before passing them to the user 70*f9bdee26SKonstantin Ananyev */ 71*f9bdee26SKonstantin Ananyev struct rte_eth_rxtx_callback *post_rx_burst_cbs[RTE_MAX_QUEUES_PER_PORT]; 72*f9bdee26SKonstantin Ananyev /** 73*f9bdee26SKonstantin Ananyev * User-supplied functions called from tx_burst to pre-process 74*f9bdee26SKonstantin Ananyev * received packets before passing them to the driver for transmission. 75*f9bdee26SKonstantin Ananyev */ 76*f9bdee26SKonstantin Ananyev struct rte_eth_rxtx_callback *pre_tx_burst_cbs[RTE_MAX_QUEUES_PER_PORT]; 77*f9bdee26SKonstantin Ananyev enum rte_eth_dev_state state; /**< Flag indicating the port state */ 78*f9bdee26SKonstantin Ananyev void *security_ctx; /**< Context for security ops */ 79*f9bdee26SKonstantin Ananyev 80*f9bdee26SKonstantin Ananyev uint64_t reserved_64s[4]; /**< Reserved for future fields */ 81*f9bdee26SKonstantin Ananyev void *reserved_ptrs[4]; /**< Reserved for future fields */ 82*f9bdee26SKonstantin Ananyev } __rte_cache_aligned; 83*f9bdee26SKonstantin Ananyev 84*f9bdee26SKonstantin Ananyev struct rte_eth_dev_sriov; 85*f9bdee26SKonstantin Ananyev struct rte_eth_dev_owner; 86*f9bdee26SKonstantin Ananyev 87*f9bdee26SKonstantin Ananyev /** 88*f9bdee26SKonstantin Ananyev * @internal 89*f9bdee26SKonstantin Ananyev * The data part, with no function pointers, associated with each ethernet 90*f9bdee26SKonstantin Ananyev * device. This structure is safe to place in shared memory to be common 91*f9bdee26SKonstantin Ananyev * among different processes in a multi-process configuration. 92*f9bdee26SKonstantin Ananyev */ 93*f9bdee26SKonstantin Ananyev struct rte_eth_dev_data { 94*f9bdee26SKonstantin Ananyev char name[RTE_ETH_NAME_MAX_LEN]; /**< Unique identifier name */ 95*f9bdee26SKonstantin Ananyev 96*f9bdee26SKonstantin Ananyev void **rx_queues; /**< Array of pointers to RX queues. */ 97*f9bdee26SKonstantin Ananyev void **tx_queues; /**< Array of pointers to TX queues. */ 98*f9bdee26SKonstantin Ananyev uint16_t nb_rx_queues; /**< Number of RX queues. */ 99*f9bdee26SKonstantin Ananyev uint16_t nb_tx_queues; /**< Number of TX queues. */ 100*f9bdee26SKonstantin Ananyev 101*f9bdee26SKonstantin Ananyev struct rte_eth_dev_sriov sriov; /**< SRIOV data */ 102*f9bdee26SKonstantin Ananyev 103*f9bdee26SKonstantin Ananyev void *dev_private; 104*f9bdee26SKonstantin Ananyev /**< PMD-specific private data. 105*f9bdee26SKonstantin Ananyev * @see rte_eth_dev_release_port() 106*f9bdee26SKonstantin Ananyev */ 107*f9bdee26SKonstantin Ananyev 108*f9bdee26SKonstantin Ananyev struct rte_eth_link dev_link; /**< Link-level information & status. */ 109*f9bdee26SKonstantin Ananyev struct rte_eth_conf dev_conf; /**< Configuration applied to device. */ 110*f9bdee26SKonstantin Ananyev uint16_t mtu; /**< Maximum Transmission Unit. */ 111*f9bdee26SKonstantin Ananyev uint32_t min_rx_buf_size; 112*f9bdee26SKonstantin Ananyev /**< Common RX buffer size handled by all queues. */ 113*f9bdee26SKonstantin Ananyev 114*f9bdee26SKonstantin Ananyev uint64_t rx_mbuf_alloc_failed; /**< RX ring mbuf allocation failures. */ 115*f9bdee26SKonstantin Ananyev struct rte_ether_addr *mac_addrs; 116*f9bdee26SKonstantin Ananyev /**< Device Ethernet link address. 117*f9bdee26SKonstantin Ananyev * @see rte_eth_dev_release_port() 118*f9bdee26SKonstantin Ananyev */ 119*f9bdee26SKonstantin Ananyev uint64_t mac_pool_sel[ETH_NUM_RECEIVE_MAC_ADDR]; 120*f9bdee26SKonstantin Ananyev /**< Bitmap associating MAC addresses to pools. */ 121*f9bdee26SKonstantin Ananyev struct rte_ether_addr *hash_mac_addrs; 122*f9bdee26SKonstantin Ananyev /**< Device Ethernet MAC addresses of hash filtering. 123*f9bdee26SKonstantin Ananyev * @see rte_eth_dev_release_port() 124*f9bdee26SKonstantin Ananyev */ 125*f9bdee26SKonstantin Ananyev uint16_t port_id; /**< Device [external] port identifier. */ 126*f9bdee26SKonstantin Ananyev 127*f9bdee26SKonstantin Ananyev __extension__ 128*f9bdee26SKonstantin Ananyev uint8_t promiscuous : 1, 129*f9bdee26SKonstantin Ananyev /**< RX promiscuous mode ON(1) / OFF(0). */ 130*f9bdee26SKonstantin Ananyev scattered_rx : 1, 131*f9bdee26SKonstantin Ananyev /**< RX of scattered packets is ON(1) / OFF(0) */ 132*f9bdee26SKonstantin Ananyev all_multicast : 1, 133*f9bdee26SKonstantin Ananyev /**< RX all multicast mode ON(1) / OFF(0). */ 134*f9bdee26SKonstantin Ananyev dev_started : 1, 135*f9bdee26SKonstantin Ananyev /**< Device state: STARTED(1) / STOPPED(0). */ 136*f9bdee26SKonstantin Ananyev lro : 1, 137*f9bdee26SKonstantin Ananyev /**< RX LRO is ON(1) / OFF(0) */ 138*f9bdee26SKonstantin Ananyev dev_configured : 1; 139*f9bdee26SKonstantin Ananyev /**< Indicates whether the device is configured. 140*f9bdee26SKonstantin Ananyev * CONFIGURED(1) / NOT CONFIGURED(0). 141*f9bdee26SKonstantin Ananyev */ 142*f9bdee26SKonstantin Ananyev uint8_t rx_queue_state[RTE_MAX_QUEUES_PER_PORT]; 143*f9bdee26SKonstantin Ananyev /**< Queues state: HAIRPIN(2) / STARTED(1) / STOPPED(0). */ 144*f9bdee26SKonstantin Ananyev uint8_t tx_queue_state[RTE_MAX_QUEUES_PER_PORT]; 145*f9bdee26SKonstantin Ananyev /**< Queues state: HAIRPIN(2) / STARTED(1) / STOPPED(0). */ 146*f9bdee26SKonstantin Ananyev uint32_t dev_flags; /**< Capabilities. */ 147*f9bdee26SKonstantin Ananyev int numa_node; /**< NUMA node connection. */ 148*f9bdee26SKonstantin Ananyev struct rte_vlan_filter_conf vlan_filter_conf; 149*f9bdee26SKonstantin Ananyev /**< VLAN filter configuration. */ 150*f9bdee26SKonstantin Ananyev struct rte_eth_dev_owner owner; /**< The port owner. */ 151*f9bdee26SKonstantin Ananyev uint16_t representor_id; 152*f9bdee26SKonstantin Ananyev /**< Switch-specific identifier. 153*f9bdee26SKonstantin Ananyev * Valid if RTE_ETH_DEV_REPRESENTOR in dev_flags. 154*f9bdee26SKonstantin Ananyev */ 155*f9bdee26SKonstantin Ananyev uint16_t backer_port_id; 156*f9bdee26SKonstantin Ananyev /**< Port ID of the backing device. 157*f9bdee26SKonstantin Ananyev * This device will be used to query representor 158*f9bdee26SKonstantin Ananyev * info and calculate representor IDs. 159*f9bdee26SKonstantin Ananyev * Valid if RTE_ETH_DEV_REPRESENTOR in dev_flags. 160*f9bdee26SKonstantin Ananyev */ 161*f9bdee26SKonstantin Ananyev 162*f9bdee26SKonstantin Ananyev pthread_mutex_t flow_ops_mutex; /**< rte_flow ops mutex. */ 163*f9bdee26SKonstantin Ananyev uint64_t reserved_64s[4]; /**< Reserved for future fields */ 164*f9bdee26SKonstantin Ananyev void *reserved_ptrs[4]; /**< Reserved for future fields */ 165*f9bdee26SKonstantin Ananyev } __rte_cache_aligned; 166*f9bdee26SKonstantin Ananyev 167*f9bdee26SKonstantin Ananyev /** 168*f9bdee26SKonstantin Ananyev * @internal 169*f9bdee26SKonstantin Ananyev * The pool of *rte_eth_dev* structures. The size of the pool 170*f9bdee26SKonstantin Ananyev * is configured at compile-time in the <rte_ethdev.c> file. 171*f9bdee26SKonstantin Ananyev */ 172*f9bdee26SKonstantin Ananyev extern struct rte_eth_dev rte_eth_devices[]; 173*f9bdee26SKonstantin Ananyev 17499a2dd95SBruce Richardson /**< @internal Declaration of the hairpin peer queue information structure. */ 17599a2dd95SBruce Richardson struct rte_hairpin_peer_info; 17699a2dd95SBruce Richardson 17799a2dd95SBruce Richardson /* 17899a2dd95SBruce Richardson * Definitions of all functions exported by an Ethernet driver through the 17999a2dd95SBruce Richardson * generic structure of type *eth_dev_ops* supplied in the *rte_eth_dev* 18099a2dd95SBruce Richardson * structure associated with an Ethernet device. 18199a2dd95SBruce Richardson */ 18299a2dd95SBruce Richardson 18399a2dd95SBruce Richardson typedef int (*eth_dev_configure_t)(struct rte_eth_dev *dev); 18499a2dd95SBruce Richardson /**< @internal Ethernet device configuration. */ 18599a2dd95SBruce Richardson 18699a2dd95SBruce Richardson typedef int (*eth_dev_start_t)(struct rte_eth_dev *dev); 18799a2dd95SBruce Richardson /**< @internal Function used to start a configured Ethernet device. */ 18899a2dd95SBruce Richardson 18999a2dd95SBruce Richardson typedef int (*eth_dev_stop_t)(struct rte_eth_dev *dev); 19099a2dd95SBruce Richardson /**< @internal Function used to stop a configured Ethernet device. */ 19199a2dd95SBruce Richardson 19299a2dd95SBruce Richardson typedef int (*eth_dev_set_link_up_t)(struct rte_eth_dev *dev); 19399a2dd95SBruce Richardson /**< @internal Function used to link up a configured Ethernet device. */ 19499a2dd95SBruce Richardson 19599a2dd95SBruce Richardson typedef int (*eth_dev_set_link_down_t)(struct rte_eth_dev *dev); 19699a2dd95SBruce Richardson /**< @internal Function used to link down a configured Ethernet device. */ 19799a2dd95SBruce Richardson 19899a2dd95SBruce Richardson typedef int (*eth_dev_close_t)(struct rte_eth_dev *dev); 19999a2dd95SBruce Richardson /**< @internal Function used to close a configured Ethernet device. */ 20099a2dd95SBruce Richardson 20199a2dd95SBruce Richardson typedef int (*eth_dev_reset_t)(struct rte_eth_dev *dev); 20299a2dd95SBruce Richardson /** <@internal Function used to reset a configured Ethernet device. */ 20399a2dd95SBruce Richardson 20499a2dd95SBruce Richardson typedef int (*eth_is_removed_t)(struct rte_eth_dev *dev); 20599a2dd95SBruce Richardson /**< @internal Function used to detect an Ethernet device removal. */ 20699a2dd95SBruce Richardson 20799a2dd95SBruce Richardson /** 20899a2dd95SBruce Richardson * @internal 20999a2dd95SBruce Richardson * Function used to enable the Rx promiscuous mode of an Ethernet device. 21099a2dd95SBruce Richardson * 21199a2dd95SBruce Richardson * @param dev 21299a2dd95SBruce Richardson * ethdev handle of port. 21399a2dd95SBruce Richardson * 21499a2dd95SBruce Richardson * @return 21599a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 21699a2dd95SBruce Richardson * 21799a2dd95SBruce Richardson * @retval 0 21899a2dd95SBruce Richardson * Success, promiscuous mode is enabled. 21999a2dd95SBruce Richardson * @retval -ENOTSUP 22099a2dd95SBruce Richardson * Promiscuous mode is not supported. 22199a2dd95SBruce Richardson * @retval -ENODEV 22299a2dd95SBruce Richardson * Device is gone. 22399a2dd95SBruce Richardson * @retval -E_RTE_SECONDARY 22499a2dd95SBruce Richardson * Function was called from a secondary process instance and not supported. 22599a2dd95SBruce Richardson * @retval -ETIMEDOUT 22699a2dd95SBruce Richardson * Attempt to enable promiscuos mode failed because of timeout. 22799a2dd95SBruce Richardson * @retval -EAGAIN 22899a2dd95SBruce Richardson * Failed to enable promiscuous mode. 22999a2dd95SBruce Richardson */ 23099a2dd95SBruce Richardson typedef int (*eth_promiscuous_enable_t)(struct rte_eth_dev *dev); 23199a2dd95SBruce Richardson 23299a2dd95SBruce Richardson /** 23399a2dd95SBruce Richardson * @internal 23499a2dd95SBruce Richardson * Function used to disable the Rx promiscuous mode of an Ethernet device. 23599a2dd95SBruce Richardson * 23699a2dd95SBruce Richardson * @param dev 23799a2dd95SBruce Richardson * ethdev handle of port. 23899a2dd95SBruce Richardson * 23999a2dd95SBruce Richardson * @return 24099a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 24199a2dd95SBruce Richardson * 24299a2dd95SBruce Richardson * @retval 0 24399a2dd95SBruce Richardson * Success, promiscuous mode is disabled. 24499a2dd95SBruce Richardson * @retval -ENOTSUP 24599a2dd95SBruce Richardson * Promiscuous mode disabling is not supported. 24699a2dd95SBruce Richardson * @retval -ENODEV 24799a2dd95SBruce Richardson * Device is gone. 24899a2dd95SBruce Richardson * @retval -E_RTE_SECONDARY 24999a2dd95SBruce Richardson * Function was called from a secondary process instance and not supported. 25099a2dd95SBruce Richardson * @retval -ETIMEDOUT 25199a2dd95SBruce Richardson * Attempt to disable promiscuos mode failed because of timeout. 25299a2dd95SBruce Richardson * @retval -EAGAIN 25399a2dd95SBruce Richardson * Failed to disable promiscuous mode. 25499a2dd95SBruce Richardson */ 25599a2dd95SBruce Richardson typedef int (*eth_promiscuous_disable_t)(struct rte_eth_dev *dev); 25699a2dd95SBruce Richardson 25799a2dd95SBruce Richardson /** 25899a2dd95SBruce Richardson * @internal 25999a2dd95SBruce Richardson * Enable the receipt of all multicast packets by an Ethernet device. 26099a2dd95SBruce Richardson * 26199a2dd95SBruce Richardson * @param dev 26299a2dd95SBruce Richardson * ethdev handle of port. 26399a2dd95SBruce Richardson * 26499a2dd95SBruce Richardson * @return 26599a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 26699a2dd95SBruce Richardson * 26799a2dd95SBruce Richardson * @retval 0 26899a2dd95SBruce Richardson * Success, all-multicast mode is enabled. 26999a2dd95SBruce Richardson * @retval -ENOTSUP 27099a2dd95SBruce Richardson * All-multicast mode is not supported. 27199a2dd95SBruce Richardson * @retval -ENODEV 27299a2dd95SBruce Richardson * Device is gone. 27399a2dd95SBruce Richardson * @retval -E_RTE_SECONDARY 27499a2dd95SBruce Richardson * Function was called from a secondary process instance and not supported. 27599a2dd95SBruce Richardson * @retval -ETIMEDOUT 27699a2dd95SBruce Richardson * Attempt to enable all-multicast mode failed because of timeout. 27799a2dd95SBruce Richardson * @retval -EAGAIN 27899a2dd95SBruce Richardson * Failed to enable all-multicast mode. 27999a2dd95SBruce Richardson */ 28099a2dd95SBruce Richardson typedef int (*eth_allmulticast_enable_t)(struct rte_eth_dev *dev); 28199a2dd95SBruce Richardson 28299a2dd95SBruce Richardson /** 28399a2dd95SBruce Richardson * @internal 28499a2dd95SBruce Richardson * Disable the receipt of all multicast packets by an Ethernet device. 28599a2dd95SBruce Richardson * 28699a2dd95SBruce Richardson * @param dev 28799a2dd95SBruce Richardson * ethdev handle of port. 28899a2dd95SBruce Richardson * 28999a2dd95SBruce Richardson * @return 29099a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 29199a2dd95SBruce Richardson * 29299a2dd95SBruce Richardson * @retval 0 29399a2dd95SBruce Richardson * Success, all-multicast mode is disabled. 29499a2dd95SBruce Richardson * @retval -ENOTSUP 29599a2dd95SBruce Richardson * All-multicast mode disabling is not supported. 29699a2dd95SBruce Richardson * @retval -ENODEV 29799a2dd95SBruce Richardson * Device is gone. 29899a2dd95SBruce Richardson * @retval -E_RTE_SECONDARY 29999a2dd95SBruce Richardson * Function was called from a secondary process instance and not supported. 30099a2dd95SBruce Richardson * @retval -ETIMEDOUT 30199a2dd95SBruce Richardson * Attempt to disable all-multicast mode failed because of timeout. 30299a2dd95SBruce Richardson * @retval -EAGAIN 30399a2dd95SBruce Richardson * Failed to disable all-multicast mode. 30499a2dd95SBruce Richardson */ 30599a2dd95SBruce Richardson typedef int (*eth_allmulticast_disable_t)(struct rte_eth_dev *dev); 30699a2dd95SBruce Richardson 30799a2dd95SBruce Richardson typedef int (*eth_link_update_t)(struct rte_eth_dev *dev, 30899a2dd95SBruce Richardson int wait_to_complete); 30999a2dd95SBruce Richardson /**< @internal Get link speed, duplex mode and state (up/down) of an Ethernet device. */ 31099a2dd95SBruce Richardson 31199a2dd95SBruce Richardson typedef int (*eth_stats_get_t)(struct rte_eth_dev *dev, 31299a2dd95SBruce Richardson struct rte_eth_stats *igb_stats); 31399a2dd95SBruce Richardson /**< @internal Get global I/O statistics of an Ethernet device. */ 31499a2dd95SBruce Richardson 31599a2dd95SBruce Richardson /** 31699a2dd95SBruce Richardson * @internal 31799a2dd95SBruce Richardson * Reset global I/O statistics of an Ethernet device to 0. 31899a2dd95SBruce Richardson * 31999a2dd95SBruce Richardson * @param dev 32099a2dd95SBruce Richardson * ethdev handle of port. 32199a2dd95SBruce Richardson * 32299a2dd95SBruce Richardson * @return 32399a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 32499a2dd95SBruce Richardson * 32599a2dd95SBruce Richardson * @retval 0 32699a2dd95SBruce Richardson * Success, statistics has been reset. 32799a2dd95SBruce Richardson * @retval -ENOTSUP 32899a2dd95SBruce Richardson * Resetting statistics is not supported. 32999a2dd95SBruce Richardson * @retval -EINVAL 33099a2dd95SBruce Richardson * Resetting statistics is not valid. 33199a2dd95SBruce Richardson * @retval -ENOMEM 33299a2dd95SBruce Richardson * Not enough memory to get the stats. 33399a2dd95SBruce Richardson */ 33499a2dd95SBruce Richardson typedef int (*eth_stats_reset_t)(struct rte_eth_dev *dev); 33599a2dd95SBruce Richardson 33699a2dd95SBruce Richardson typedef int (*eth_xstats_get_t)(struct rte_eth_dev *dev, 33799a2dd95SBruce Richardson struct rte_eth_xstat *stats, unsigned int n); 33899a2dd95SBruce Richardson /**< @internal Get extended stats of an Ethernet device. */ 33999a2dd95SBruce Richardson 34071b5e430SIvan Ilchenko /** 34171b5e430SIvan Ilchenko * @internal 34271b5e430SIvan Ilchenko * Get extended stats of an Ethernet device. 34371b5e430SIvan Ilchenko * 34471b5e430SIvan Ilchenko * @param dev 34571b5e430SIvan Ilchenko * ethdev handle of port. 34671b5e430SIvan Ilchenko * @param ids 34771b5e430SIvan Ilchenko * IDs array to retrieve specific statistics. Must not be NULL. 34871b5e430SIvan Ilchenko * @param values 34971b5e430SIvan Ilchenko * A pointer to a table to be filled with device statistics values. 35071b5e430SIvan Ilchenko * Must not be NULL. 35171b5e430SIvan Ilchenko * @param n 35271b5e430SIvan Ilchenko * Element count in @p ids and @p values. 35371b5e430SIvan Ilchenko * 35471b5e430SIvan Ilchenko * @return 35571b5e430SIvan Ilchenko * - A number of filled in stats. 35671b5e430SIvan Ilchenko * - A negative value on error. 35771b5e430SIvan Ilchenko */ 35899a2dd95SBruce Richardson typedef int (*eth_xstats_get_by_id_t)(struct rte_eth_dev *dev, 35999a2dd95SBruce Richardson const uint64_t *ids, 36099a2dd95SBruce Richardson uint64_t *values, 36199a2dd95SBruce Richardson unsigned int n); 36299a2dd95SBruce Richardson 36399a2dd95SBruce Richardson /** 36499a2dd95SBruce Richardson * @internal 36599a2dd95SBruce Richardson * Reset extended stats of an Ethernet device. 36699a2dd95SBruce Richardson * 36799a2dd95SBruce Richardson * @param dev 36899a2dd95SBruce Richardson * ethdev handle of port. 36999a2dd95SBruce Richardson * 37099a2dd95SBruce Richardson * @return 37199a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 37299a2dd95SBruce Richardson * 37399a2dd95SBruce Richardson * @retval 0 37499a2dd95SBruce Richardson * Success, statistics has been reset. 37599a2dd95SBruce Richardson * @retval -ENOTSUP 37699a2dd95SBruce Richardson * Resetting statistics is not supported. 37799a2dd95SBruce Richardson * @retval -EINVAL 37899a2dd95SBruce Richardson * Resetting statistics is not valid. 37999a2dd95SBruce Richardson * @retval -ENOMEM 38099a2dd95SBruce Richardson * Not enough memory to get the stats. 38199a2dd95SBruce Richardson */ 38299a2dd95SBruce Richardson typedef int (*eth_xstats_reset_t)(struct rte_eth_dev *dev); 38399a2dd95SBruce Richardson 38499a2dd95SBruce Richardson typedef int (*eth_xstats_get_names_t)(struct rte_eth_dev *dev, 38599a2dd95SBruce Richardson struct rte_eth_xstat_name *xstats_names, unsigned int size); 38699a2dd95SBruce Richardson /**< @internal Get names of extended stats of an Ethernet device. */ 38799a2dd95SBruce Richardson 38871b5e430SIvan Ilchenko /** 38971b5e430SIvan Ilchenko * @internal 39071b5e430SIvan Ilchenko * Get names of extended stats of an Ethernet device. 39171b5e430SIvan Ilchenko * 39271b5e430SIvan Ilchenko * @param dev 39371b5e430SIvan Ilchenko * ethdev handle of port. 3948c9f976fSAndrew Rybchenko * @param ids 3958c9f976fSAndrew Rybchenko * IDs array to retrieve specific statistics. Must not be NULL. 39671b5e430SIvan Ilchenko * @param xstats_names 39771b5e430SIvan Ilchenko * An rte_eth_xstat_name array of at least @p size elements to be filled. 39871b5e430SIvan Ilchenko * Must not be NULL. 39971b5e430SIvan Ilchenko * @param size 40071b5e430SIvan Ilchenko * Element count in @p ids and @p xstats_names. 40171b5e430SIvan Ilchenko * 40271b5e430SIvan Ilchenko * @return 40371b5e430SIvan Ilchenko * - A number of filled in stats. 40471b5e430SIvan Ilchenko * - A negative value on error. 40571b5e430SIvan Ilchenko */ 40699a2dd95SBruce Richardson typedef int (*eth_xstats_get_names_by_id_t)(struct rte_eth_dev *dev, 4078c9f976fSAndrew Rybchenko const uint64_t *ids, struct rte_eth_xstat_name *xstats_names, 40899a2dd95SBruce Richardson unsigned int size); 40999a2dd95SBruce Richardson 41099a2dd95SBruce Richardson typedef int (*eth_queue_stats_mapping_set_t)(struct rte_eth_dev *dev, 41199a2dd95SBruce Richardson uint16_t queue_id, 41299a2dd95SBruce Richardson uint8_t stat_idx, 41399a2dd95SBruce Richardson uint8_t is_rx); 41499a2dd95SBruce Richardson /**< @internal Set a queue statistics mapping for a tx/rx queue of an Ethernet device. */ 41599a2dd95SBruce Richardson 41699a2dd95SBruce Richardson typedef int (*eth_dev_infos_get_t)(struct rte_eth_dev *dev, 41799a2dd95SBruce Richardson struct rte_eth_dev_info *dev_info); 41899a2dd95SBruce Richardson /**< @internal Get specific information of an Ethernet device. */ 41999a2dd95SBruce Richardson 42099a2dd95SBruce Richardson typedef const uint32_t *(*eth_dev_supported_ptypes_get_t)(struct rte_eth_dev *dev); 42199a2dd95SBruce Richardson /**< @internal Get supported ptypes of an Ethernet device. */ 42299a2dd95SBruce Richardson 42399a2dd95SBruce Richardson /** 42499a2dd95SBruce Richardson * @internal 42599a2dd95SBruce Richardson * Inform Ethernet device about reduced range of packet types to handle. 42699a2dd95SBruce Richardson * 42799a2dd95SBruce Richardson * @param dev 42899a2dd95SBruce Richardson * The Ethernet device identifier. 42999a2dd95SBruce Richardson * @param ptype_mask 43099a2dd95SBruce Richardson * The ptype family that application is interested in should be bitwise OR of 43199a2dd95SBruce Richardson * RTE_PTYPE_*_MASK or 0. 43299a2dd95SBruce Richardson * @return 43399a2dd95SBruce Richardson * - (0) if Success. 43499a2dd95SBruce Richardson */ 43599a2dd95SBruce Richardson typedef int (*eth_dev_ptypes_set_t)(struct rte_eth_dev *dev, 43699a2dd95SBruce Richardson uint32_t ptype_mask); 43799a2dd95SBruce Richardson 43899a2dd95SBruce Richardson typedef int (*eth_queue_start_t)(struct rte_eth_dev *dev, 43999a2dd95SBruce Richardson uint16_t queue_id); 44099a2dd95SBruce Richardson /**< @internal Start rx and tx of a queue of an Ethernet device. */ 44199a2dd95SBruce Richardson 44299a2dd95SBruce Richardson typedef int (*eth_queue_stop_t)(struct rte_eth_dev *dev, 44399a2dd95SBruce Richardson uint16_t queue_id); 44499a2dd95SBruce Richardson /**< @internal Stop rx and tx of a queue of an Ethernet device. */ 44599a2dd95SBruce Richardson 44699a2dd95SBruce Richardson typedef int (*eth_rx_queue_setup_t)(struct rte_eth_dev *dev, 44799a2dd95SBruce Richardson uint16_t rx_queue_id, 44899a2dd95SBruce Richardson uint16_t nb_rx_desc, 44999a2dd95SBruce Richardson unsigned int socket_id, 45099a2dd95SBruce Richardson const struct rte_eth_rxconf *rx_conf, 45199a2dd95SBruce Richardson struct rte_mempool *mb_pool); 45299a2dd95SBruce Richardson /**< @internal Set up a receive queue of an Ethernet device. */ 45399a2dd95SBruce Richardson 45499a2dd95SBruce Richardson typedef int (*eth_tx_queue_setup_t)(struct rte_eth_dev *dev, 45599a2dd95SBruce Richardson uint16_t tx_queue_id, 45699a2dd95SBruce Richardson uint16_t nb_tx_desc, 45799a2dd95SBruce Richardson unsigned int socket_id, 45899a2dd95SBruce Richardson const struct rte_eth_txconf *tx_conf); 45999a2dd95SBruce Richardson /**< @internal Setup a transmit queue of an Ethernet device. */ 46099a2dd95SBruce Richardson 46199a2dd95SBruce Richardson typedef int (*eth_rx_enable_intr_t)(struct rte_eth_dev *dev, 46299a2dd95SBruce Richardson uint16_t rx_queue_id); 46399a2dd95SBruce Richardson /**< @internal Enable interrupt of a receive queue of an Ethernet device. */ 46499a2dd95SBruce Richardson 46599a2dd95SBruce Richardson typedef int (*eth_rx_disable_intr_t)(struct rte_eth_dev *dev, 46699a2dd95SBruce Richardson uint16_t rx_queue_id); 46799a2dd95SBruce Richardson /**< @internal Disable interrupt of a receive queue of an Ethernet device. */ 46899a2dd95SBruce Richardson 4697483341aSXueming Li typedef void (*eth_queue_release_t)(struct rte_eth_dev *dev, 4707483341aSXueming Li uint16_t queue_id); 47199a2dd95SBruce Richardson /**< @internal Release memory resources allocated by given RX/TX queue. */ 47299a2dd95SBruce Richardson 47399a2dd95SBruce Richardson typedef int (*eth_fw_version_get_t)(struct rte_eth_dev *dev, 47499a2dd95SBruce Richardson char *fw_version, size_t fw_size); 47599a2dd95SBruce Richardson /**< @internal Get firmware information of an Ethernet device. */ 47699a2dd95SBruce Richardson 47799a2dd95SBruce Richardson typedef int (*eth_tx_done_cleanup_t)(void *txq, uint32_t free_cnt); 47899a2dd95SBruce Richardson /**< @internal Force mbufs to be from TX ring. */ 47999a2dd95SBruce Richardson 48099a2dd95SBruce Richardson typedef void (*eth_rxq_info_get_t)(struct rte_eth_dev *dev, 48199a2dd95SBruce Richardson uint16_t rx_queue_id, struct rte_eth_rxq_info *qinfo); 48299a2dd95SBruce Richardson 48399a2dd95SBruce Richardson typedef void (*eth_txq_info_get_t)(struct rte_eth_dev *dev, 48499a2dd95SBruce Richardson uint16_t tx_queue_id, struct rte_eth_txq_info *qinfo); 48599a2dd95SBruce Richardson 48699a2dd95SBruce Richardson typedef int (*eth_burst_mode_get_t)(struct rte_eth_dev *dev, 48799a2dd95SBruce Richardson uint16_t queue_id, struct rte_eth_burst_mode *mode); 48899a2dd95SBruce Richardson 48999a2dd95SBruce Richardson typedef int (*mtu_set_t)(struct rte_eth_dev *dev, uint16_t mtu); 49099a2dd95SBruce Richardson /**< @internal Set MTU. */ 49199a2dd95SBruce Richardson 49299a2dd95SBruce Richardson typedef int (*vlan_filter_set_t)(struct rte_eth_dev *dev, 49399a2dd95SBruce Richardson uint16_t vlan_id, 49499a2dd95SBruce Richardson int on); 49599a2dd95SBruce Richardson /**< @internal filtering of a VLAN Tag Identifier by an Ethernet device. */ 49699a2dd95SBruce Richardson 49799a2dd95SBruce Richardson typedef int (*vlan_tpid_set_t)(struct rte_eth_dev *dev, 49899a2dd95SBruce Richardson enum rte_vlan_type type, uint16_t tpid); 49999a2dd95SBruce Richardson /**< @internal set the outer/inner VLAN-TPID by an Ethernet device. */ 50099a2dd95SBruce Richardson 50199a2dd95SBruce Richardson typedef int (*vlan_offload_set_t)(struct rte_eth_dev *dev, int mask); 50299a2dd95SBruce Richardson /**< @internal set VLAN offload function by an Ethernet device. */ 50399a2dd95SBruce Richardson 50499a2dd95SBruce Richardson typedef int (*vlan_pvid_set_t)(struct rte_eth_dev *dev, 50599a2dd95SBruce Richardson uint16_t vlan_id, 50699a2dd95SBruce Richardson int on); 50799a2dd95SBruce Richardson /**< @internal set port based TX VLAN insertion by an Ethernet device. */ 50899a2dd95SBruce Richardson 50999a2dd95SBruce Richardson typedef void (*vlan_strip_queue_set_t)(struct rte_eth_dev *dev, 51099a2dd95SBruce Richardson uint16_t rx_queue_id, 51199a2dd95SBruce Richardson int on); 51299a2dd95SBruce Richardson /**< @internal VLAN stripping enable/disable by an queue of Ethernet device. */ 51399a2dd95SBruce Richardson 51499a2dd95SBruce Richardson typedef int (*flow_ctrl_get_t)(struct rte_eth_dev *dev, 51599a2dd95SBruce Richardson struct rte_eth_fc_conf *fc_conf); 51699a2dd95SBruce Richardson /**< @internal Get current flow control parameter on an Ethernet device */ 51799a2dd95SBruce Richardson 51899a2dd95SBruce Richardson typedef int (*flow_ctrl_set_t)(struct rte_eth_dev *dev, 51999a2dd95SBruce Richardson struct rte_eth_fc_conf *fc_conf); 52099a2dd95SBruce Richardson /**< @internal Setup flow control parameter on an Ethernet device */ 52199a2dd95SBruce Richardson 52299a2dd95SBruce Richardson typedef int (*priority_flow_ctrl_set_t)(struct rte_eth_dev *dev, 52399a2dd95SBruce Richardson struct rte_eth_pfc_conf *pfc_conf); 52499a2dd95SBruce Richardson /**< @internal Setup priority flow control parameter on an Ethernet device */ 52599a2dd95SBruce Richardson 52699a2dd95SBruce Richardson typedef int (*reta_update_t)(struct rte_eth_dev *dev, 52799a2dd95SBruce Richardson struct rte_eth_rss_reta_entry64 *reta_conf, 52899a2dd95SBruce Richardson uint16_t reta_size); 52999a2dd95SBruce Richardson /**< @internal Update RSS redirection table on an Ethernet device */ 53099a2dd95SBruce Richardson 53199a2dd95SBruce Richardson typedef int (*reta_query_t)(struct rte_eth_dev *dev, 53299a2dd95SBruce Richardson struct rte_eth_rss_reta_entry64 *reta_conf, 53399a2dd95SBruce Richardson uint16_t reta_size); 53499a2dd95SBruce Richardson /**< @internal Query RSS redirection table on an Ethernet device */ 53599a2dd95SBruce Richardson 53699a2dd95SBruce Richardson typedef int (*rss_hash_update_t)(struct rte_eth_dev *dev, 53799a2dd95SBruce Richardson struct rte_eth_rss_conf *rss_conf); 53899a2dd95SBruce Richardson /**< @internal Update RSS hash configuration of an Ethernet device */ 53999a2dd95SBruce Richardson 54099a2dd95SBruce Richardson typedef int (*rss_hash_conf_get_t)(struct rte_eth_dev *dev, 54199a2dd95SBruce Richardson struct rte_eth_rss_conf *rss_conf); 54299a2dd95SBruce Richardson /**< @internal Get current RSS hash configuration of an Ethernet device */ 54399a2dd95SBruce Richardson 54499a2dd95SBruce Richardson typedef int (*eth_dev_led_on_t)(struct rte_eth_dev *dev); 54599a2dd95SBruce Richardson /**< @internal Turn on SW controllable LED on an Ethernet device */ 54699a2dd95SBruce Richardson 54799a2dd95SBruce Richardson typedef int (*eth_dev_led_off_t)(struct rte_eth_dev *dev); 54899a2dd95SBruce Richardson /**< @internal Turn off SW controllable LED on an Ethernet device */ 54999a2dd95SBruce Richardson 55099a2dd95SBruce Richardson typedef void (*eth_mac_addr_remove_t)(struct rte_eth_dev *dev, uint32_t index); 55199a2dd95SBruce Richardson /**< @internal Remove MAC address from receive address register */ 55299a2dd95SBruce Richardson 55399a2dd95SBruce Richardson typedef int (*eth_mac_addr_add_t)(struct rte_eth_dev *dev, 55499a2dd95SBruce Richardson struct rte_ether_addr *mac_addr, 55599a2dd95SBruce Richardson uint32_t index, 55699a2dd95SBruce Richardson uint32_t vmdq); 55799a2dd95SBruce Richardson /**< @internal Set a MAC address into Receive Address Register */ 55899a2dd95SBruce Richardson 55999a2dd95SBruce Richardson typedef int (*eth_mac_addr_set_t)(struct rte_eth_dev *dev, 56099a2dd95SBruce Richardson struct rte_ether_addr *mac_addr); 56199a2dd95SBruce Richardson /**< @internal Set a MAC address into Receive Address Register */ 56299a2dd95SBruce Richardson 56399a2dd95SBruce Richardson typedef int (*eth_uc_hash_table_set_t)(struct rte_eth_dev *dev, 56499a2dd95SBruce Richardson struct rte_ether_addr *mac_addr, 56599a2dd95SBruce Richardson uint8_t on); 56699a2dd95SBruce Richardson /**< @internal Set a Unicast Hash bitmap */ 56799a2dd95SBruce Richardson 56899a2dd95SBruce Richardson typedef int (*eth_uc_all_hash_table_set_t)(struct rte_eth_dev *dev, 56999a2dd95SBruce Richardson uint8_t on); 57099a2dd95SBruce Richardson /**< @internal Set all Unicast Hash bitmap */ 57199a2dd95SBruce Richardson 57299a2dd95SBruce Richardson typedef int (*eth_set_queue_rate_limit_t)(struct rte_eth_dev *dev, 57399a2dd95SBruce Richardson uint16_t queue_idx, 57499a2dd95SBruce Richardson uint16_t tx_rate); 57599a2dd95SBruce Richardson /**< @internal Set queue TX rate */ 57699a2dd95SBruce Richardson 57799a2dd95SBruce Richardson typedef int (*eth_udp_tunnel_port_add_t)(struct rte_eth_dev *dev, 57899a2dd95SBruce Richardson struct rte_eth_udp_tunnel *tunnel_udp); 57999a2dd95SBruce Richardson /**< @internal Add tunneling UDP port */ 58099a2dd95SBruce Richardson 58199a2dd95SBruce Richardson typedef int (*eth_udp_tunnel_port_del_t)(struct rte_eth_dev *dev, 58299a2dd95SBruce Richardson struct rte_eth_udp_tunnel *tunnel_udp); 58399a2dd95SBruce Richardson /**< @internal Delete tunneling UDP port */ 58499a2dd95SBruce Richardson 58599a2dd95SBruce Richardson typedef int (*eth_set_mc_addr_list_t)(struct rte_eth_dev *dev, 58699a2dd95SBruce Richardson struct rte_ether_addr *mc_addr_set, 58799a2dd95SBruce Richardson uint32_t nb_mc_addr); 58899a2dd95SBruce Richardson /**< @internal set the list of multicast addresses on an Ethernet device */ 58999a2dd95SBruce Richardson 59099a2dd95SBruce Richardson typedef int (*eth_timesync_enable_t)(struct rte_eth_dev *dev); 59199a2dd95SBruce Richardson /**< @internal Function used to enable IEEE1588/802.1AS timestamping. */ 59299a2dd95SBruce Richardson 59399a2dd95SBruce Richardson typedef int (*eth_timesync_disable_t)(struct rte_eth_dev *dev); 59499a2dd95SBruce Richardson /**< @internal Function used to disable IEEE1588/802.1AS timestamping. */ 59599a2dd95SBruce Richardson 59699a2dd95SBruce Richardson typedef int (*eth_timesync_read_rx_timestamp_t)(struct rte_eth_dev *dev, 59799a2dd95SBruce Richardson struct timespec *timestamp, 59899a2dd95SBruce Richardson uint32_t flags); 59999a2dd95SBruce Richardson /**< @internal Function used to read an RX IEEE1588/802.1AS timestamp. */ 60099a2dd95SBruce Richardson 60199a2dd95SBruce Richardson typedef int (*eth_timesync_read_tx_timestamp_t)(struct rte_eth_dev *dev, 60299a2dd95SBruce Richardson struct timespec *timestamp); 60399a2dd95SBruce Richardson /**< @internal Function used to read a TX IEEE1588/802.1AS timestamp. */ 60499a2dd95SBruce Richardson 60599a2dd95SBruce Richardson typedef int (*eth_timesync_adjust_time)(struct rte_eth_dev *dev, int64_t); 60699a2dd95SBruce Richardson /**< @internal Function used to adjust the device clock */ 60799a2dd95SBruce Richardson 60899a2dd95SBruce Richardson typedef int (*eth_timesync_read_time)(struct rte_eth_dev *dev, 60999a2dd95SBruce Richardson struct timespec *timestamp); 61099a2dd95SBruce Richardson /**< @internal Function used to get time from the device clock. */ 61199a2dd95SBruce Richardson 61299a2dd95SBruce Richardson typedef int (*eth_timesync_write_time)(struct rte_eth_dev *dev, 61399a2dd95SBruce Richardson const struct timespec *timestamp); 61499a2dd95SBruce Richardson /**< @internal Function used to get time from the device clock */ 61599a2dd95SBruce Richardson 61699a2dd95SBruce Richardson typedef int (*eth_read_clock)(struct rte_eth_dev *dev, 61799a2dd95SBruce Richardson uint64_t *timestamp); 61899a2dd95SBruce Richardson /**< @internal Function used to get the current value of the device clock. */ 61999a2dd95SBruce Richardson 62099a2dd95SBruce Richardson typedef int (*eth_get_reg_t)(struct rte_eth_dev *dev, 62199a2dd95SBruce Richardson struct rte_dev_reg_info *info); 62299a2dd95SBruce Richardson /**< @internal Retrieve registers */ 62399a2dd95SBruce Richardson 62499a2dd95SBruce Richardson typedef int (*eth_get_eeprom_length_t)(struct rte_eth_dev *dev); 62599a2dd95SBruce Richardson /**< @internal Retrieve eeprom size */ 62699a2dd95SBruce Richardson 62799a2dd95SBruce Richardson typedef int (*eth_get_eeprom_t)(struct rte_eth_dev *dev, 62899a2dd95SBruce Richardson struct rte_dev_eeprom_info *info); 62999a2dd95SBruce Richardson /**< @internal Retrieve eeprom data */ 63099a2dd95SBruce Richardson 63199a2dd95SBruce Richardson typedef int (*eth_set_eeprom_t)(struct rte_eth_dev *dev, 63299a2dd95SBruce Richardson struct rte_dev_eeprom_info *info); 63399a2dd95SBruce Richardson /**< @internal Program eeprom data */ 63499a2dd95SBruce Richardson 63599a2dd95SBruce Richardson typedef int (*eth_get_module_info_t)(struct rte_eth_dev *dev, 63699a2dd95SBruce Richardson struct rte_eth_dev_module_info *modinfo); 63799a2dd95SBruce Richardson /**< @internal Retrieve type and size of plugin module eeprom */ 63899a2dd95SBruce Richardson 63999a2dd95SBruce Richardson typedef int (*eth_get_module_eeprom_t)(struct rte_eth_dev *dev, 64099a2dd95SBruce Richardson struct rte_dev_eeprom_info *info); 64199a2dd95SBruce Richardson /**< @internal Retrieve plugin module eeprom data */ 64299a2dd95SBruce Richardson 64399a2dd95SBruce Richardson struct rte_flow_ops; 64499a2dd95SBruce Richardson /** 64599a2dd95SBruce Richardson * @internal 64699a2dd95SBruce Richardson * Get flow operations. 64799a2dd95SBruce Richardson * 64899a2dd95SBruce Richardson * If the flow API is not supported for the specified device, 64999a2dd95SBruce Richardson * the driver can return NULL. 65099a2dd95SBruce Richardson */ 65199a2dd95SBruce Richardson typedef int (*eth_flow_ops_get_t)(struct rte_eth_dev *dev, 65299a2dd95SBruce Richardson const struct rte_flow_ops **ops); 65399a2dd95SBruce Richardson 65499a2dd95SBruce Richardson typedef int (*eth_tm_ops_get_t)(struct rte_eth_dev *dev, void *ops); 65599a2dd95SBruce Richardson /**< @internal Get Traffic Management (TM) operations on an Ethernet device */ 65699a2dd95SBruce Richardson 65799a2dd95SBruce Richardson typedef int (*eth_mtr_ops_get_t)(struct rte_eth_dev *dev, void *ops); 65899a2dd95SBruce Richardson /**< @internal Get Traffic Metering and Policing (MTR) operations */ 65999a2dd95SBruce Richardson 66099a2dd95SBruce Richardson typedef int (*eth_get_dcb_info)(struct rte_eth_dev *dev, 66199a2dd95SBruce Richardson struct rte_eth_dcb_info *dcb_info); 66299a2dd95SBruce Richardson /**< @internal Get dcb information on an Ethernet device */ 66399a2dd95SBruce Richardson 66499a2dd95SBruce Richardson typedef int (*eth_pool_ops_supported_t)(struct rte_eth_dev *dev, 66599a2dd95SBruce Richardson const char *pool); 66699a2dd95SBruce Richardson /**< @internal Test if a port supports specific mempool ops */ 66799a2dd95SBruce Richardson 66899a2dd95SBruce Richardson /** 66999a2dd95SBruce Richardson * @internal 67099a2dd95SBruce Richardson * Get the hairpin capabilities. 67199a2dd95SBruce Richardson * 67299a2dd95SBruce Richardson * @param dev 67399a2dd95SBruce Richardson * ethdev handle of port. 67499a2dd95SBruce Richardson * @param cap 67599a2dd95SBruce Richardson * returns the hairpin capabilities from the device. 67699a2dd95SBruce Richardson * 67799a2dd95SBruce Richardson * @return 67899a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 67999a2dd95SBruce Richardson * 68099a2dd95SBruce Richardson * @retval 0 68199a2dd95SBruce Richardson * Success, hairpin is supported. 68299a2dd95SBruce Richardson * @retval -ENOTSUP 68399a2dd95SBruce Richardson * Hairpin is not supported. 68499a2dd95SBruce Richardson */ 68599a2dd95SBruce Richardson typedef int (*eth_hairpin_cap_get_t)(struct rte_eth_dev *dev, 68699a2dd95SBruce Richardson struct rte_eth_hairpin_cap *cap); 68799a2dd95SBruce Richardson 68899a2dd95SBruce Richardson /** 68999a2dd95SBruce Richardson * @internal 69099a2dd95SBruce Richardson * Setup RX hairpin queue. 69199a2dd95SBruce Richardson * 69299a2dd95SBruce Richardson * @param dev 69399a2dd95SBruce Richardson * ethdev handle of port. 69499a2dd95SBruce Richardson * @param rx_queue_id 69599a2dd95SBruce Richardson * the selected RX queue index. 69699a2dd95SBruce Richardson * @param nb_rx_desc 69799a2dd95SBruce Richardson * the requested number of descriptors for this queue. 0 - use PMD default. 69899a2dd95SBruce Richardson * @param conf 69999a2dd95SBruce Richardson * the RX hairpin configuration structure. 70099a2dd95SBruce Richardson * 70199a2dd95SBruce Richardson * @return 70299a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 70399a2dd95SBruce Richardson * 70499a2dd95SBruce Richardson * @retval 0 70599a2dd95SBruce Richardson * Success, hairpin is supported. 70699a2dd95SBruce Richardson * @retval -ENOTSUP 70799a2dd95SBruce Richardson * Hairpin is not supported. 70899a2dd95SBruce Richardson * @retval -EINVAL 70999a2dd95SBruce Richardson * One of the parameters is invalid. 71099a2dd95SBruce Richardson * @retval -ENOMEM 71199a2dd95SBruce Richardson * Unable to allocate resources. 71299a2dd95SBruce Richardson */ 71399a2dd95SBruce Richardson typedef int (*eth_rx_hairpin_queue_setup_t) 71499a2dd95SBruce Richardson (struct rte_eth_dev *dev, uint16_t rx_queue_id, 71599a2dd95SBruce Richardson uint16_t nb_rx_desc, 71699a2dd95SBruce Richardson const struct rte_eth_hairpin_conf *conf); 71799a2dd95SBruce Richardson 71899a2dd95SBruce Richardson /** 71999a2dd95SBruce Richardson * @internal 72099a2dd95SBruce Richardson * Setup TX hairpin queue. 72199a2dd95SBruce Richardson * 72299a2dd95SBruce Richardson * @param dev 72399a2dd95SBruce Richardson * ethdev handle of port. 72499a2dd95SBruce Richardson * @param tx_queue_id 72599a2dd95SBruce Richardson * the selected TX queue index. 72699a2dd95SBruce Richardson * @param nb_tx_desc 72799a2dd95SBruce Richardson * the requested number of descriptors for this queue. 0 - use PMD default. 72899a2dd95SBruce Richardson * @param conf 72999a2dd95SBruce Richardson * the TX hairpin configuration structure. 73099a2dd95SBruce Richardson * 73199a2dd95SBruce Richardson * @return 73299a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 73399a2dd95SBruce Richardson * 73499a2dd95SBruce Richardson * @retval 0 73599a2dd95SBruce Richardson * Success, hairpin is supported. 73699a2dd95SBruce Richardson * @retval -ENOTSUP 73799a2dd95SBruce Richardson * Hairpin is not supported. 73899a2dd95SBruce Richardson * @retval -EINVAL 73999a2dd95SBruce Richardson * One of the parameters is invalid. 74099a2dd95SBruce Richardson * @retval -ENOMEM 74199a2dd95SBruce Richardson * Unable to allocate resources. 74299a2dd95SBruce Richardson */ 74399a2dd95SBruce Richardson typedef int (*eth_tx_hairpin_queue_setup_t) 74499a2dd95SBruce Richardson (struct rte_eth_dev *dev, uint16_t tx_queue_id, 74599a2dd95SBruce Richardson uint16_t nb_tx_desc, 74699a2dd95SBruce Richardson const struct rte_eth_hairpin_conf *hairpin_conf); 74799a2dd95SBruce Richardson 74899a2dd95SBruce Richardson /** 74999a2dd95SBruce Richardson * @internal 75099a2dd95SBruce Richardson * Get Forward Error Correction(FEC) capability. 75199a2dd95SBruce Richardson * 75299a2dd95SBruce Richardson * @param dev 75399a2dd95SBruce Richardson * ethdev handle of port. 75499a2dd95SBruce Richardson * @param speed_fec_capa 75599a2dd95SBruce Richardson * speed_fec_capa is out only with per-speed capabilities. 75699a2dd95SBruce Richardson * @param num 75799a2dd95SBruce Richardson * a number of elements in an speed_fec_capa array. 75899a2dd95SBruce Richardson * 75999a2dd95SBruce Richardson * @return 76099a2dd95SBruce Richardson * Negative errno value on error, positive value on success. 76199a2dd95SBruce Richardson * 76299a2dd95SBruce Richardson * @retval positive value 76399a2dd95SBruce Richardson * A non-negative value lower or equal to num: success. The return value 76499a2dd95SBruce Richardson * is the number of entries filled in the fec capa array. 76599a2dd95SBruce Richardson * A non-negative value higher than num: error, the given fec capa array 76699a2dd95SBruce Richardson * is too small. The return value corresponds to the num that should 76799a2dd95SBruce Richardson * be given to succeed. The entries in the fec capa array are not valid 76899a2dd95SBruce Richardson * and shall not be used by the caller. 76999a2dd95SBruce Richardson * @retval -ENOTSUP 77099a2dd95SBruce Richardson * Operation is not supported. 77199a2dd95SBruce Richardson * @retval -EIO 77299a2dd95SBruce Richardson * Device is removed. 77399a2dd95SBruce Richardson * @retval -EINVAL 77499a2dd95SBruce Richardson * *num* or *speed_fec_capa* invalid. 77599a2dd95SBruce Richardson */ 77699a2dd95SBruce Richardson typedef int (*eth_fec_get_capability_t)(struct rte_eth_dev *dev, 77799a2dd95SBruce Richardson struct rte_eth_fec_capa *speed_fec_capa, unsigned int num); 77899a2dd95SBruce Richardson 77999a2dd95SBruce Richardson /** 78099a2dd95SBruce Richardson * @internal 78199a2dd95SBruce Richardson * Get Forward Error Correction(FEC) mode. 78299a2dd95SBruce Richardson * 78399a2dd95SBruce Richardson * @param dev 78499a2dd95SBruce Richardson * ethdev handle of port. 78599a2dd95SBruce Richardson * @param fec_capa 78699a2dd95SBruce Richardson * a bitmask of enabled FEC modes. If AUTO bit is set, other 78799a2dd95SBruce Richardson * bits specify FEC modes which may be negotiated. If AUTO 78899a2dd95SBruce Richardson * bit is clear, specify FEC modes to be used (only one valid 78999a2dd95SBruce Richardson * mode per speed may be set). 79099a2dd95SBruce Richardson * 79199a2dd95SBruce Richardson * @return 79299a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 79399a2dd95SBruce Richardson * 79499a2dd95SBruce Richardson * @retval 0 79599a2dd95SBruce Richardson * Success, get FEC success. 79699a2dd95SBruce Richardson * @retval -ENOTSUP 79799a2dd95SBruce Richardson * Operation is not supported. 79899a2dd95SBruce Richardson * @retval -EIO 79999a2dd95SBruce Richardson * Device is removed. 80099a2dd95SBruce Richardson */ 80199a2dd95SBruce Richardson typedef int (*eth_fec_get_t)(struct rte_eth_dev *dev, 80299a2dd95SBruce Richardson uint32_t *fec_capa); 80399a2dd95SBruce Richardson 80499a2dd95SBruce Richardson /** 80599a2dd95SBruce Richardson * @internal 80699a2dd95SBruce Richardson * Set Forward Error Correction(FEC) mode. 80799a2dd95SBruce Richardson * 80899a2dd95SBruce Richardson * @param dev 80999a2dd95SBruce Richardson * ethdev handle of port. 81099a2dd95SBruce Richardson * @param fec_capa 81199a2dd95SBruce Richardson * bitmask of allowed FEC modes. It must be only one 81299a2dd95SBruce Richardson * if AUTO is disabled. If AUTO is enabled, other 81399a2dd95SBruce Richardson * bits specify FEC modes which may be negotiated. 81499a2dd95SBruce Richardson * 81599a2dd95SBruce Richardson * @return 81699a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 81799a2dd95SBruce Richardson * 81899a2dd95SBruce Richardson * @retval 0 81999a2dd95SBruce Richardson * Success, set FEC success. 82099a2dd95SBruce Richardson * @retval -ENOTSUP 82199a2dd95SBruce Richardson * Operation is not supported. 82299a2dd95SBruce Richardson * @retval -EINVAL 82399a2dd95SBruce Richardson * Unsupported FEC mode requested. 82499a2dd95SBruce Richardson * @retval -EIO 82599a2dd95SBruce Richardson * Device is removed. 82699a2dd95SBruce Richardson */ 82799a2dd95SBruce Richardson typedef int (*eth_fec_set_t)(struct rte_eth_dev *dev, uint32_t fec_capa); 82899a2dd95SBruce Richardson 82999a2dd95SBruce Richardson /** 83099a2dd95SBruce Richardson * @internal 83199a2dd95SBruce Richardson * Get all hairpin Tx/Rx peer ports of the current device, if any. 83299a2dd95SBruce Richardson * 83399a2dd95SBruce Richardson * @param dev 83499a2dd95SBruce Richardson * ethdev handle of port. 83599a2dd95SBruce Richardson * @param peer_ports 83699a2dd95SBruce Richardson * array to save the ports list. 83799a2dd95SBruce Richardson * @param len 83899a2dd95SBruce Richardson * array length. 83999a2dd95SBruce Richardson * @param direction 84099a2dd95SBruce Richardson * value to decide the current to peer direction 84199a2dd95SBruce Richardson * positive - used as Tx to get all peer Rx ports. 84299a2dd95SBruce Richardson * zero - used as Rx to get all peer Tx ports. 84399a2dd95SBruce Richardson * 84499a2dd95SBruce Richardson * @return 84599a2dd95SBruce Richardson * Negative errno value on error, 0 or positive on success. 84699a2dd95SBruce Richardson * 84799a2dd95SBruce Richardson * @retval 0 84899a2dd95SBruce Richardson * Success, no peer ports. 84999a2dd95SBruce Richardson * @retval >0 85099a2dd95SBruce Richardson * Actual number of the peer ports. 85199a2dd95SBruce Richardson * @retval -ENOTSUP 85299a2dd95SBruce Richardson * Get peer ports API is not supported. 85399a2dd95SBruce Richardson * @retval -EINVAL 85499a2dd95SBruce Richardson * One of the parameters is invalid. 85599a2dd95SBruce Richardson */ 85699a2dd95SBruce Richardson typedef int (*hairpin_get_peer_ports_t)(struct rte_eth_dev *dev, 85799a2dd95SBruce Richardson uint16_t *peer_ports, size_t len, 85899a2dd95SBruce Richardson uint32_t direction); 85999a2dd95SBruce Richardson 86099a2dd95SBruce Richardson /** 86199a2dd95SBruce Richardson * @internal 86299a2dd95SBruce Richardson * Bind all hairpin Tx queues of one port to the Rx queues of the peer port. 86399a2dd95SBruce Richardson * 86499a2dd95SBruce Richardson * @param dev 86599a2dd95SBruce Richardson * ethdev handle of port. 86699a2dd95SBruce Richardson * @param rx_port 86799a2dd95SBruce Richardson * the peer Rx port. 86899a2dd95SBruce Richardson * 86999a2dd95SBruce Richardson * @return 87099a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 87199a2dd95SBruce Richardson * 87299a2dd95SBruce Richardson * @retval 0 87399a2dd95SBruce Richardson * Success, bind successfully. 87499a2dd95SBruce Richardson * @retval -ENOTSUP 87599a2dd95SBruce Richardson * Bind API is not supported. 87699a2dd95SBruce Richardson * @retval -EINVAL 87799a2dd95SBruce Richardson * One of the parameters is invalid. 87899a2dd95SBruce Richardson * @retval -EBUSY 87999a2dd95SBruce Richardson * Device is not started. 88099a2dd95SBruce Richardson */ 88199a2dd95SBruce Richardson typedef int (*eth_hairpin_bind_t)(struct rte_eth_dev *dev, 88299a2dd95SBruce Richardson uint16_t rx_port); 88399a2dd95SBruce Richardson 88499a2dd95SBruce Richardson /** 88599a2dd95SBruce Richardson * @internal 88699a2dd95SBruce Richardson * Unbind all hairpin Tx queues of one port from the Rx queues of the peer port. 88799a2dd95SBruce Richardson * 88899a2dd95SBruce Richardson * @param dev 88999a2dd95SBruce Richardson * ethdev handle of port. 89099a2dd95SBruce Richardson * @param rx_port 89199a2dd95SBruce Richardson * the peer Rx port. 89299a2dd95SBruce Richardson * 89399a2dd95SBruce Richardson * @return 89499a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 89599a2dd95SBruce Richardson * 89699a2dd95SBruce Richardson * @retval 0 89799a2dd95SBruce Richardson * Success, unbind successfully. 89899a2dd95SBruce Richardson * @retval -ENOTSUP 89999a2dd95SBruce Richardson * Bind API is not supported. 90099a2dd95SBruce Richardson * @retval -EINVAL 90199a2dd95SBruce Richardson * One of the parameters is invalid. 90299a2dd95SBruce Richardson * @retval -EBUSY 90399a2dd95SBruce Richardson * Device is already stopped. 90499a2dd95SBruce Richardson */ 90599a2dd95SBruce Richardson typedef int (*eth_hairpin_unbind_t)(struct rte_eth_dev *dev, 90699a2dd95SBruce Richardson uint16_t rx_port); 90799a2dd95SBruce Richardson 90899a2dd95SBruce Richardson typedef int (*eth_hairpin_queue_peer_update_t) 90999a2dd95SBruce Richardson (struct rte_eth_dev *dev, uint16_t peer_queue, 91099a2dd95SBruce Richardson struct rte_hairpin_peer_info *current_info, 91199a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, uint32_t direction); 91299a2dd95SBruce Richardson /**< @internal Update and fetch peer queue information. */ 91399a2dd95SBruce Richardson 91499a2dd95SBruce Richardson typedef int (*eth_hairpin_queue_peer_bind_t) 91599a2dd95SBruce Richardson (struct rte_eth_dev *dev, uint16_t cur_queue, 91699a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, uint32_t direction); 91799a2dd95SBruce Richardson /**< @internal Bind peer queue to the current queue with fetched information. */ 91899a2dd95SBruce Richardson 91999a2dd95SBruce Richardson typedef int (*eth_hairpin_queue_peer_unbind_t) 92099a2dd95SBruce Richardson (struct rte_eth_dev *dev, uint16_t cur_queue, uint32_t direction); 92199a2dd95SBruce Richardson /**< @internal Unbind peer queue from the current queue. */ 92299a2dd95SBruce Richardson 92399a2dd95SBruce Richardson /** 92499a2dd95SBruce Richardson * @internal 92599a2dd95SBruce Richardson * Get address of memory location whose contents will change whenever there is 92699a2dd95SBruce Richardson * new data to be received on an Rx queue. 92799a2dd95SBruce Richardson * 92899a2dd95SBruce Richardson * @param rxq 92999a2dd95SBruce Richardson * Ethdev queue pointer. 93099a2dd95SBruce Richardson * @param pmc 93199a2dd95SBruce Richardson * The pointer to power-optimized monitoring condition structure. 93299a2dd95SBruce Richardson * @return 93399a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 93499a2dd95SBruce Richardson * 93599a2dd95SBruce Richardson * @retval 0 93699a2dd95SBruce Richardson * Success 93799a2dd95SBruce Richardson * @retval -EINVAL 93899a2dd95SBruce Richardson * Invalid parameters 93999a2dd95SBruce Richardson */ 94099a2dd95SBruce Richardson typedef int (*eth_get_monitor_addr_t)(void *rxq, 94199a2dd95SBruce Richardson struct rte_power_monitor_cond *pmc); 94299a2dd95SBruce Richardson 94399a2dd95SBruce Richardson /** 94499a2dd95SBruce Richardson * @internal 94599a2dd95SBruce Richardson * Get representor info to be able to calculate the unique representor ID. 94699a2dd95SBruce Richardson * 94799a2dd95SBruce Richardson * Caller should pass NULL as pointer of info to get number of entries, 94899a2dd95SBruce Richardson * allocate info buffer according to returned entry number, then call 94999a2dd95SBruce Richardson * again with buffer to get real info. 95099a2dd95SBruce Richardson * 95199a2dd95SBruce Richardson * To calculate the representor ID, caller should iterate each entry, 95299a2dd95SBruce Richardson * match controller index, pf index, vf or sf start index and range, 95399a2dd95SBruce Richardson * then calculate representor ID from offset to vf/sf start index. 95499a2dd95SBruce Richardson * @see rte_eth_representor_id_get. 95599a2dd95SBruce Richardson * 95699a2dd95SBruce Richardson * @param dev 95799a2dd95SBruce Richardson * Ethdev handle of port. 95899a2dd95SBruce Richardson * @param [out] info 95999a2dd95SBruce Richardson * Pointer to memory to save device representor info. 96099a2dd95SBruce Richardson * @return 96199a2dd95SBruce Richardson * Negative errno value on error, number of info entries otherwise. 96299a2dd95SBruce Richardson */ 96399a2dd95SBruce Richardson 96499a2dd95SBruce Richardson typedef int (*eth_representor_info_get_t)(struct rte_eth_dev *dev, 96599a2dd95SBruce Richardson struct rte_eth_representor_info *info); 96699a2dd95SBruce Richardson 96799a2dd95SBruce Richardson /** 968f6d8a6d3SIvan Malov * @internal 969f6d8a6d3SIvan Malov * Negotiate the NIC's ability to deliver specific kinds of metadata to the PMD. 970f6d8a6d3SIvan Malov * 971f6d8a6d3SIvan Malov * @param dev 972f6d8a6d3SIvan Malov * Port (ethdev) handle 973f6d8a6d3SIvan Malov * 974f6d8a6d3SIvan Malov * @param[inout] features 975f6d8a6d3SIvan Malov * Feature selection buffer 976f6d8a6d3SIvan Malov * 977f6d8a6d3SIvan Malov * @return 978f6d8a6d3SIvan Malov * Negative errno value on error, zero otherwise 979f6d8a6d3SIvan Malov */ 980f6d8a6d3SIvan Malov typedef int (*eth_rx_metadata_negotiate_t)(struct rte_eth_dev *dev, 981f6d8a6d3SIvan Malov uint64_t *features); 982f6d8a6d3SIvan Malov 983f6d8a6d3SIvan Malov /** 98499a2dd95SBruce Richardson * @internal A structure containing the functions exported by an Ethernet driver. 98599a2dd95SBruce Richardson */ 98699a2dd95SBruce Richardson struct eth_dev_ops { 98799a2dd95SBruce Richardson eth_dev_configure_t dev_configure; /**< Configure device. */ 98899a2dd95SBruce Richardson eth_dev_start_t dev_start; /**< Start device. */ 98999a2dd95SBruce Richardson eth_dev_stop_t dev_stop; /**< Stop device. */ 99099a2dd95SBruce Richardson eth_dev_set_link_up_t dev_set_link_up; /**< Device link up. */ 99199a2dd95SBruce Richardson eth_dev_set_link_down_t dev_set_link_down; /**< Device link down. */ 99299a2dd95SBruce Richardson eth_dev_close_t dev_close; /**< Close device. */ 99399a2dd95SBruce Richardson eth_dev_reset_t dev_reset; /**< Reset device. */ 99499a2dd95SBruce Richardson eth_link_update_t link_update; /**< Get device link state. */ 99599a2dd95SBruce Richardson eth_is_removed_t is_removed; 99699a2dd95SBruce Richardson /**< Check if the device was physically removed. */ 99799a2dd95SBruce Richardson 99899a2dd95SBruce Richardson eth_promiscuous_enable_t promiscuous_enable; /**< Promiscuous ON. */ 99999a2dd95SBruce Richardson eth_promiscuous_disable_t promiscuous_disable;/**< Promiscuous OFF. */ 100099a2dd95SBruce Richardson eth_allmulticast_enable_t allmulticast_enable;/**< RX multicast ON. */ 100199a2dd95SBruce Richardson eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OFF. */ 100299a2dd95SBruce Richardson eth_mac_addr_remove_t mac_addr_remove; /**< Remove MAC address. */ 100399a2dd95SBruce Richardson eth_mac_addr_add_t mac_addr_add; /**< Add a MAC address. */ 100499a2dd95SBruce Richardson eth_mac_addr_set_t mac_addr_set; /**< Set a MAC address. */ 100599a2dd95SBruce Richardson eth_set_mc_addr_list_t set_mc_addr_list; /**< set list of mcast addrs. */ 100699a2dd95SBruce Richardson mtu_set_t mtu_set; /**< Set MTU. */ 100799a2dd95SBruce Richardson 100899a2dd95SBruce Richardson eth_stats_get_t stats_get; /**< Get generic device statistics. */ 100999a2dd95SBruce Richardson eth_stats_reset_t stats_reset; /**< Reset generic device statistics. */ 101099a2dd95SBruce Richardson eth_xstats_get_t xstats_get; /**< Get extended device statistics. */ 101199a2dd95SBruce Richardson eth_xstats_reset_t xstats_reset; /**< Reset extended device statistics. */ 101299a2dd95SBruce Richardson eth_xstats_get_names_t xstats_get_names; 101399a2dd95SBruce Richardson /**< Get names of extended statistics. */ 101499a2dd95SBruce Richardson eth_queue_stats_mapping_set_t queue_stats_mapping_set; 101599a2dd95SBruce Richardson /**< Configure per queue stat counter mapping. */ 101699a2dd95SBruce Richardson 101799a2dd95SBruce Richardson eth_dev_infos_get_t dev_infos_get; /**< Get device info. */ 101899a2dd95SBruce Richardson eth_rxq_info_get_t rxq_info_get; /**< retrieve RX queue information. */ 101999a2dd95SBruce Richardson eth_txq_info_get_t txq_info_get; /**< retrieve TX queue information. */ 102099a2dd95SBruce Richardson eth_burst_mode_get_t rx_burst_mode_get; /**< Get RX burst mode */ 102199a2dd95SBruce Richardson eth_burst_mode_get_t tx_burst_mode_get; /**< Get TX burst mode */ 102299a2dd95SBruce Richardson eth_fw_version_get_t fw_version_get; /**< Get firmware version. */ 102399a2dd95SBruce Richardson eth_dev_supported_ptypes_get_t dev_supported_ptypes_get; 102499a2dd95SBruce Richardson /**< Get packet types supported and identified by device. */ 102599a2dd95SBruce Richardson eth_dev_ptypes_set_t dev_ptypes_set; 102699a2dd95SBruce Richardson /**< Inform Ethernet device about reduced range of packet types to handle. */ 102799a2dd95SBruce Richardson 102899a2dd95SBruce Richardson vlan_filter_set_t vlan_filter_set; /**< Filter VLAN Setup. */ 102999a2dd95SBruce Richardson vlan_tpid_set_t vlan_tpid_set; /**< Outer/Inner VLAN TPID Setup. */ 103099a2dd95SBruce Richardson vlan_strip_queue_set_t vlan_strip_queue_set; /**< VLAN Stripping on queue. */ 103199a2dd95SBruce Richardson vlan_offload_set_t vlan_offload_set; /**< Set VLAN Offload. */ 103299a2dd95SBruce Richardson vlan_pvid_set_t vlan_pvid_set; /**< Set port based TX VLAN insertion. */ 103399a2dd95SBruce Richardson 103499a2dd95SBruce Richardson eth_queue_start_t rx_queue_start;/**< Start RX for a queue. */ 103599a2dd95SBruce Richardson eth_queue_stop_t rx_queue_stop; /**< Stop RX for a queue. */ 103699a2dd95SBruce Richardson eth_queue_start_t tx_queue_start;/**< Start TX for a queue. */ 103799a2dd95SBruce Richardson eth_queue_stop_t tx_queue_stop; /**< Stop TX for a queue. */ 103899a2dd95SBruce Richardson eth_rx_queue_setup_t rx_queue_setup;/**< Set up device RX queue. */ 103999a2dd95SBruce Richardson eth_queue_release_t rx_queue_release; /**< Release RX queue. */ 104099a2dd95SBruce Richardson 104199a2dd95SBruce Richardson eth_rx_enable_intr_t rx_queue_intr_enable; /**< Enable Rx queue interrupt. */ 104299a2dd95SBruce Richardson eth_rx_disable_intr_t rx_queue_intr_disable; /**< Disable Rx queue interrupt. */ 104399a2dd95SBruce Richardson eth_tx_queue_setup_t tx_queue_setup;/**< Set up device TX queue. */ 104499a2dd95SBruce Richardson eth_queue_release_t tx_queue_release; /**< Release TX queue. */ 104599a2dd95SBruce Richardson eth_tx_done_cleanup_t tx_done_cleanup;/**< Free tx ring mbufs */ 104699a2dd95SBruce Richardson 104799a2dd95SBruce Richardson eth_dev_led_on_t dev_led_on; /**< Turn on LED. */ 104899a2dd95SBruce Richardson eth_dev_led_off_t dev_led_off; /**< Turn off LED. */ 104999a2dd95SBruce Richardson 105099a2dd95SBruce Richardson flow_ctrl_get_t flow_ctrl_get; /**< Get flow control. */ 105199a2dd95SBruce Richardson flow_ctrl_set_t flow_ctrl_set; /**< Setup flow control. */ 105299a2dd95SBruce Richardson priority_flow_ctrl_set_t priority_flow_ctrl_set; /**< Setup priority flow control. */ 105399a2dd95SBruce Richardson 105499a2dd95SBruce Richardson eth_uc_hash_table_set_t uc_hash_table_set; /**< Set Unicast Table Array. */ 105599a2dd95SBruce Richardson eth_uc_all_hash_table_set_t uc_all_hash_table_set; /**< Set Unicast hash bitmap. */ 105699a2dd95SBruce Richardson 105799a2dd95SBruce Richardson eth_udp_tunnel_port_add_t udp_tunnel_port_add; /** Add UDP tunnel port. */ 105899a2dd95SBruce Richardson eth_udp_tunnel_port_del_t udp_tunnel_port_del; /** Del UDP tunnel port. */ 105999a2dd95SBruce Richardson 106099a2dd95SBruce Richardson eth_set_queue_rate_limit_t set_queue_rate_limit; /**< Set queue rate limit. */ 106199a2dd95SBruce Richardson 106299a2dd95SBruce Richardson rss_hash_update_t rss_hash_update; /** Configure RSS hash protocols. */ 106399a2dd95SBruce Richardson rss_hash_conf_get_t rss_hash_conf_get; /** Get current RSS hash configuration. */ 106499a2dd95SBruce Richardson reta_update_t reta_update; /** Update redirection table. */ 106599a2dd95SBruce Richardson reta_query_t reta_query; /** Query redirection table. */ 106699a2dd95SBruce Richardson 106799a2dd95SBruce Richardson eth_get_reg_t get_reg; /**< Get registers. */ 106899a2dd95SBruce Richardson eth_get_eeprom_length_t get_eeprom_length; /**< Get eeprom length. */ 106999a2dd95SBruce Richardson eth_get_eeprom_t get_eeprom; /**< Get eeprom data. */ 107099a2dd95SBruce Richardson eth_set_eeprom_t set_eeprom; /**< Set eeprom. */ 107199a2dd95SBruce Richardson 107299a2dd95SBruce Richardson eth_get_module_info_t get_module_info; 107399a2dd95SBruce Richardson /** Get plugin module eeprom attribute. */ 107499a2dd95SBruce Richardson eth_get_module_eeprom_t get_module_eeprom; 107599a2dd95SBruce Richardson /** Get plugin module eeprom data. */ 107699a2dd95SBruce Richardson 107799a2dd95SBruce Richardson eth_flow_ops_get_t flow_ops_get; /**< Get flow operations. */ 107899a2dd95SBruce Richardson 107999a2dd95SBruce Richardson eth_get_dcb_info get_dcb_info; /** Get DCB information. */ 108099a2dd95SBruce Richardson 108199a2dd95SBruce Richardson eth_timesync_enable_t timesync_enable; 108299a2dd95SBruce Richardson /** Turn IEEE1588/802.1AS timestamping on. */ 108399a2dd95SBruce Richardson eth_timesync_disable_t timesync_disable; 108499a2dd95SBruce Richardson /** Turn IEEE1588/802.1AS timestamping off. */ 108599a2dd95SBruce Richardson eth_timesync_read_rx_timestamp_t timesync_read_rx_timestamp; 108699a2dd95SBruce Richardson /** Read the IEEE1588/802.1AS RX timestamp. */ 108799a2dd95SBruce Richardson eth_timesync_read_tx_timestamp_t timesync_read_tx_timestamp; 108899a2dd95SBruce Richardson /** Read the IEEE1588/802.1AS TX timestamp. */ 108999a2dd95SBruce Richardson eth_timesync_adjust_time timesync_adjust_time; /** Adjust the device clock. */ 109099a2dd95SBruce Richardson eth_timesync_read_time timesync_read_time; /** Get the device clock time. */ 109199a2dd95SBruce Richardson eth_timesync_write_time timesync_write_time; /** Set the device clock time. */ 109299a2dd95SBruce Richardson 109399a2dd95SBruce Richardson eth_read_clock read_clock; 109499a2dd95SBruce Richardson 109599a2dd95SBruce Richardson eth_xstats_get_by_id_t xstats_get_by_id; 109699a2dd95SBruce Richardson /**< Get extended device statistic values by ID. */ 109799a2dd95SBruce Richardson eth_xstats_get_names_by_id_t xstats_get_names_by_id; 109899a2dd95SBruce Richardson /**< Get name of extended device statistics by ID. */ 109999a2dd95SBruce Richardson 110099a2dd95SBruce Richardson eth_tm_ops_get_t tm_ops_get; 110199a2dd95SBruce Richardson /**< Get Traffic Management (TM) operations. */ 110299a2dd95SBruce Richardson 110399a2dd95SBruce Richardson eth_mtr_ops_get_t mtr_ops_get; 110499a2dd95SBruce Richardson /**< Get Traffic Metering and Policing (MTR) operations. */ 110599a2dd95SBruce Richardson 110699a2dd95SBruce Richardson eth_pool_ops_supported_t pool_ops_supported; 110799a2dd95SBruce Richardson /**< Test if a port supports specific mempool ops */ 110899a2dd95SBruce Richardson 110999a2dd95SBruce Richardson eth_hairpin_cap_get_t hairpin_cap_get; 111099a2dd95SBruce Richardson /**< Returns the hairpin capabilities. */ 111199a2dd95SBruce Richardson eth_rx_hairpin_queue_setup_t rx_hairpin_queue_setup; 111299a2dd95SBruce Richardson /**< Set up device RX hairpin queue. */ 111399a2dd95SBruce Richardson eth_tx_hairpin_queue_setup_t tx_hairpin_queue_setup; 111499a2dd95SBruce Richardson /**< Set up device TX hairpin queue. */ 111599a2dd95SBruce Richardson 111699a2dd95SBruce Richardson eth_fec_get_capability_t fec_get_capability; 111799a2dd95SBruce Richardson /**< Get Forward Error Correction(FEC) capability. */ 111899a2dd95SBruce Richardson eth_fec_get_t fec_get; 111999a2dd95SBruce Richardson /**< Get Forward Error Correction(FEC) mode. */ 112099a2dd95SBruce Richardson eth_fec_set_t fec_set; 112199a2dd95SBruce Richardson /**< Set Forward Error Correction(FEC) mode. */ 112299a2dd95SBruce Richardson hairpin_get_peer_ports_t hairpin_get_peer_ports; 112399a2dd95SBruce Richardson /**< Get hairpin peer ports list. */ 112499a2dd95SBruce Richardson eth_hairpin_bind_t hairpin_bind; 112599a2dd95SBruce Richardson /**< Bind all hairpin Tx queues of device to the peer port Rx queues. */ 112699a2dd95SBruce Richardson eth_hairpin_unbind_t hairpin_unbind; 112799a2dd95SBruce Richardson /**< Unbind all hairpin Tx queues from the peer port Rx queues. */ 112899a2dd95SBruce Richardson eth_hairpin_queue_peer_update_t hairpin_queue_peer_update; 112999a2dd95SBruce Richardson /**< Pass the current queue info and get the peer queue info. */ 113099a2dd95SBruce Richardson eth_hairpin_queue_peer_bind_t hairpin_queue_peer_bind; 113199a2dd95SBruce Richardson /**< Set up the connection between the pair of hairpin queues. */ 113299a2dd95SBruce Richardson eth_hairpin_queue_peer_unbind_t hairpin_queue_peer_unbind; 113399a2dd95SBruce Richardson /**< Disconnect the hairpin queues of a pair from each other. */ 113499a2dd95SBruce Richardson 113599a2dd95SBruce Richardson eth_get_monitor_addr_t get_monitor_addr; 113699a2dd95SBruce Richardson /**< Get power monitoring condition for Rx queue. */ 113799a2dd95SBruce Richardson 113899a2dd95SBruce Richardson eth_representor_info_get_t representor_info_get; 113999a2dd95SBruce Richardson /**< Get representor info. */ 1140f6d8a6d3SIvan Malov 1141f6d8a6d3SIvan Malov /** 1142f6d8a6d3SIvan Malov * Negotiate the NIC's ability to deliver specific 1143f6d8a6d3SIvan Malov * kinds of metadata to the PMD. 1144f6d8a6d3SIvan Malov */ 1145f6d8a6d3SIvan Malov eth_rx_metadata_negotiate_t rx_metadata_negotiate; 114699a2dd95SBruce Richardson }; 114799a2dd95SBruce Richardson 114899a2dd95SBruce Richardson /** 114999a2dd95SBruce Richardson * @internal 115099a2dd95SBruce Richardson * Check if the selected Rx queue is hairpin queue. 115199a2dd95SBruce Richardson * 115299a2dd95SBruce Richardson * @param dev 115399a2dd95SBruce Richardson * Pointer to the selected device. 115499a2dd95SBruce Richardson * @param queue_id 115599a2dd95SBruce Richardson * The selected queue. 115699a2dd95SBruce Richardson * 115799a2dd95SBruce Richardson * @return 115899a2dd95SBruce Richardson * - (1) if the queue is hairpin queue, 0 otherwise. 115999a2dd95SBruce Richardson */ 116099a2dd95SBruce Richardson __rte_internal 116199a2dd95SBruce Richardson int rte_eth_dev_is_rx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id); 116299a2dd95SBruce Richardson 116399a2dd95SBruce Richardson /** 116499a2dd95SBruce Richardson * @internal 116599a2dd95SBruce Richardson * Check if the selected Tx queue is hairpin queue. 116699a2dd95SBruce Richardson * 116799a2dd95SBruce Richardson * @param dev 116899a2dd95SBruce Richardson * Pointer to the selected device. 116999a2dd95SBruce Richardson * @param queue_id 117099a2dd95SBruce Richardson * The selected queue. 117199a2dd95SBruce Richardson * 117299a2dd95SBruce Richardson * @return 117399a2dd95SBruce Richardson * - (1) if the queue is hairpin queue, 0 otherwise. 117499a2dd95SBruce Richardson */ 117599a2dd95SBruce Richardson __rte_internal 117699a2dd95SBruce Richardson int rte_eth_dev_is_tx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id); 117799a2dd95SBruce Richardson 117899a2dd95SBruce Richardson /** 117999a2dd95SBruce Richardson * @internal 118099a2dd95SBruce Richardson * Returns a ethdev slot specified by the unique identifier name. 118199a2dd95SBruce Richardson * 118299a2dd95SBruce Richardson * @param name 118399a2dd95SBruce Richardson * The pointer to the Unique identifier name for each Ethernet device 118499a2dd95SBruce Richardson * @return 118599a2dd95SBruce Richardson * - The pointer to the ethdev slot, on success. NULL on error 118699a2dd95SBruce Richardson */ 118799a2dd95SBruce Richardson __rte_internal 118899a2dd95SBruce Richardson struct rte_eth_dev *rte_eth_dev_allocated(const char *name); 118999a2dd95SBruce Richardson 119099a2dd95SBruce Richardson /** 119199a2dd95SBruce Richardson * @internal 119299a2dd95SBruce Richardson * Allocates a new ethdev slot for an ethernet device and returns the pointer 119399a2dd95SBruce Richardson * to that slot for the driver to use. 119499a2dd95SBruce Richardson * 119599a2dd95SBruce Richardson * @param name Unique identifier name for each Ethernet device 119699a2dd95SBruce Richardson * @return 119799a2dd95SBruce Richardson * - Slot in the rte_dev_devices array for a new device; 119899a2dd95SBruce Richardson */ 119999a2dd95SBruce Richardson __rte_internal 120099a2dd95SBruce Richardson struct rte_eth_dev *rte_eth_dev_allocate(const char *name); 120199a2dd95SBruce Richardson 120299a2dd95SBruce Richardson /** 120399a2dd95SBruce Richardson * @internal 120499a2dd95SBruce Richardson * Attach to the ethdev already initialized by the primary 120599a2dd95SBruce Richardson * process. 120699a2dd95SBruce Richardson * 120799a2dd95SBruce Richardson * @param name Ethernet device's name. 120899a2dd95SBruce Richardson * @return 120999a2dd95SBruce Richardson * - Success: Slot in the rte_dev_devices array for attached 121099a2dd95SBruce Richardson * device. 121199a2dd95SBruce Richardson * - Error: Null pointer. 121299a2dd95SBruce Richardson */ 121399a2dd95SBruce Richardson __rte_internal 121499a2dd95SBruce Richardson struct rte_eth_dev *rte_eth_dev_attach_secondary(const char *name); 121599a2dd95SBruce Richardson 121699a2dd95SBruce Richardson /** 121799a2dd95SBruce Richardson * @internal 121899a2dd95SBruce Richardson * Notify RTE_ETH_EVENT_DESTROY and release the specified ethdev port. 121999a2dd95SBruce Richardson * 122099a2dd95SBruce Richardson * The following PMD-managed data fields will be freed: 122199a2dd95SBruce Richardson * - dev_private 122299a2dd95SBruce Richardson * - mac_addrs 122399a2dd95SBruce Richardson * - hash_mac_addrs 122499a2dd95SBruce Richardson * If one of these fields should not be freed, 122599a2dd95SBruce Richardson * it must be reset to NULL by the PMD, typically in dev_close method. 122699a2dd95SBruce Richardson * 122799a2dd95SBruce Richardson * @param eth_dev 122899a2dd95SBruce Richardson * Device to be detached. 122999a2dd95SBruce Richardson * @return 123099a2dd95SBruce Richardson * - 0 on success, negative on error 123199a2dd95SBruce Richardson */ 123299a2dd95SBruce Richardson __rte_internal 123399a2dd95SBruce Richardson int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev); 123499a2dd95SBruce Richardson 123599a2dd95SBruce Richardson /** 123699a2dd95SBruce Richardson * @internal 123799a2dd95SBruce Richardson * Release device queues and clear its configuration to force the user 123899a2dd95SBruce Richardson * application to reconfigure it. It is for internal use only. 123999a2dd95SBruce Richardson * 124099a2dd95SBruce Richardson * @param dev 124199a2dd95SBruce Richardson * Pointer to struct rte_eth_dev. 124299a2dd95SBruce Richardson * 124399a2dd95SBruce Richardson * @return 124499a2dd95SBruce Richardson * void 124599a2dd95SBruce Richardson */ 124699a2dd95SBruce Richardson __rte_internal 124799a2dd95SBruce Richardson void rte_eth_dev_internal_reset(struct rte_eth_dev *dev); 124899a2dd95SBruce Richardson 124999a2dd95SBruce Richardson /** 125099a2dd95SBruce Richardson * @internal Executes all the user application registered callbacks for 125199a2dd95SBruce Richardson * the specific device. It is for DPDK internal user only. User 125299a2dd95SBruce Richardson * application should not call it directly. 125399a2dd95SBruce Richardson * 125499a2dd95SBruce Richardson * @param dev 125599a2dd95SBruce Richardson * Pointer to struct rte_eth_dev. 125699a2dd95SBruce Richardson * @param event 125799a2dd95SBruce Richardson * Eth device interrupt event type. 125899a2dd95SBruce Richardson * @param ret_param 125999a2dd95SBruce Richardson * To pass data back to user application. 126099a2dd95SBruce Richardson * This allows the user application to decide if a particular function 126199a2dd95SBruce Richardson * is permitted or not. 126299a2dd95SBruce Richardson * 126399a2dd95SBruce Richardson * @return 126499a2dd95SBruce Richardson * int 126599a2dd95SBruce Richardson */ 126699a2dd95SBruce Richardson __rte_internal 126799a2dd95SBruce Richardson int rte_eth_dev_callback_process(struct rte_eth_dev *dev, 126899a2dd95SBruce Richardson enum rte_eth_event_type event, void *ret_param); 126999a2dd95SBruce Richardson 127099a2dd95SBruce Richardson /** 127199a2dd95SBruce Richardson * @internal 127299a2dd95SBruce Richardson * This is the last step of device probing. 127399a2dd95SBruce Richardson * It must be called after a port is allocated and initialized successfully. 127499a2dd95SBruce Richardson * 127599a2dd95SBruce Richardson * The notification RTE_ETH_EVENT_NEW is sent to other entities 127699a2dd95SBruce Richardson * (libraries and applications). 127799a2dd95SBruce Richardson * The state is set as RTE_ETH_DEV_ATTACHED. 127899a2dd95SBruce Richardson * 127999a2dd95SBruce Richardson * @param dev 128099a2dd95SBruce Richardson * New ethdev port. 128199a2dd95SBruce Richardson */ 128299a2dd95SBruce Richardson __rte_internal 128399a2dd95SBruce Richardson void rte_eth_dev_probing_finish(struct rte_eth_dev *dev); 128499a2dd95SBruce Richardson 128599a2dd95SBruce Richardson /** 128699a2dd95SBruce Richardson * Create memzone for HW rings. 128799a2dd95SBruce Richardson * malloc can't be used as the physical address is needed. 128899a2dd95SBruce Richardson * If the memzone is already created, then this function returns a ptr 128999a2dd95SBruce Richardson * to the old one. 129099a2dd95SBruce Richardson * 129199a2dd95SBruce Richardson * @param eth_dev 129299a2dd95SBruce Richardson * The *eth_dev* pointer is the address of the *rte_eth_dev* structure 129399a2dd95SBruce Richardson * @param name 129499a2dd95SBruce Richardson * The name of the memory zone 129599a2dd95SBruce Richardson * @param queue_id 129699a2dd95SBruce Richardson * The index of the queue to add to name 129799a2dd95SBruce Richardson * @param size 129899a2dd95SBruce Richardson * The sizeof of the memory area 129999a2dd95SBruce Richardson * @param align 130099a2dd95SBruce Richardson * Alignment for resulting memzone. Must be a power of 2. 130199a2dd95SBruce Richardson * @param socket_id 130299a2dd95SBruce Richardson * The *socket_id* argument is the socket identifier in case of NUMA. 130399a2dd95SBruce Richardson */ 130499a2dd95SBruce Richardson __rte_internal 130599a2dd95SBruce Richardson const struct rte_memzone * 130699a2dd95SBruce Richardson rte_eth_dma_zone_reserve(const struct rte_eth_dev *eth_dev, const char *name, 130799a2dd95SBruce Richardson uint16_t queue_id, size_t size, 130899a2dd95SBruce Richardson unsigned align, int socket_id); 130999a2dd95SBruce Richardson 131099a2dd95SBruce Richardson /** 131199a2dd95SBruce Richardson * Free previously allocated memzone for HW rings. 131299a2dd95SBruce Richardson * 131399a2dd95SBruce Richardson * @param eth_dev 131499a2dd95SBruce Richardson * The *eth_dev* pointer is the address of the *rte_eth_dev* structure 131599a2dd95SBruce Richardson * @param name 131699a2dd95SBruce Richardson * The name of the memory zone 131799a2dd95SBruce Richardson * @param queue_id 131899a2dd95SBruce Richardson * The index of the queue to add to name 131999a2dd95SBruce Richardson * @return 132099a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 132199a2dd95SBruce Richardson */ 132299a2dd95SBruce Richardson __rte_internal 132399a2dd95SBruce Richardson int 132499a2dd95SBruce Richardson rte_eth_dma_zone_free(const struct rte_eth_dev *eth_dev, const char *name, 132599a2dd95SBruce Richardson uint16_t queue_id); 132699a2dd95SBruce Richardson 132799a2dd95SBruce Richardson /** 132899a2dd95SBruce Richardson * @internal 132999a2dd95SBruce Richardson * Atomically set the link status for the specific device. 133099a2dd95SBruce Richardson * It is for use by DPDK device driver use only. 133199a2dd95SBruce Richardson * User applications should not call it 133299a2dd95SBruce Richardson * 133399a2dd95SBruce Richardson * @param dev 133499a2dd95SBruce Richardson * Pointer to struct rte_eth_dev. 133599a2dd95SBruce Richardson * @param link 133699a2dd95SBruce Richardson * New link status value. 133799a2dd95SBruce Richardson * @return 133899a2dd95SBruce Richardson * Same convention as eth_link_update operation. 133999a2dd95SBruce Richardson * 0 if link up status has changed 134099a2dd95SBruce Richardson * -1 if link up status was unchanged 134199a2dd95SBruce Richardson */ 134299a2dd95SBruce Richardson static inline int 134399a2dd95SBruce Richardson rte_eth_linkstatus_set(struct rte_eth_dev *dev, 134499a2dd95SBruce Richardson const struct rte_eth_link *new_link) 134599a2dd95SBruce Richardson { 134699a2dd95SBruce Richardson uint64_t *dev_link = (uint64_t *)&(dev->data->dev_link); 134799a2dd95SBruce Richardson union { 134899a2dd95SBruce Richardson uint64_t val64; 134999a2dd95SBruce Richardson struct rte_eth_link link; 135099a2dd95SBruce Richardson } orig; 135199a2dd95SBruce Richardson 135299a2dd95SBruce Richardson RTE_BUILD_BUG_ON(sizeof(*new_link) != sizeof(uint64_t)); 135399a2dd95SBruce Richardson 135499a2dd95SBruce Richardson orig.val64 = __atomic_exchange_n(dev_link, *(const uint64_t *)new_link, 135599a2dd95SBruce Richardson __ATOMIC_SEQ_CST); 135699a2dd95SBruce Richardson 135799a2dd95SBruce Richardson return (orig.link.link_status == new_link->link_status) ? -1 : 0; 135899a2dd95SBruce Richardson } 135999a2dd95SBruce Richardson 136099a2dd95SBruce Richardson /** 136199a2dd95SBruce Richardson * @internal 136299a2dd95SBruce Richardson * Atomically get the link speed and status. 136399a2dd95SBruce Richardson * 136499a2dd95SBruce Richardson * @param dev 136599a2dd95SBruce Richardson * Pointer to struct rte_eth_dev. 136699a2dd95SBruce Richardson * @param link 136799a2dd95SBruce Richardson * link status value. 136899a2dd95SBruce Richardson */ 136999a2dd95SBruce Richardson static inline void 137099a2dd95SBruce Richardson rte_eth_linkstatus_get(const struct rte_eth_dev *dev, 137199a2dd95SBruce Richardson struct rte_eth_link *link) 137299a2dd95SBruce Richardson { 137399a2dd95SBruce Richardson uint64_t *src = (uint64_t *)&(dev->data->dev_link); 137499a2dd95SBruce Richardson uint64_t *dst = (uint64_t *)link; 137599a2dd95SBruce Richardson 137699a2dd95SBruce Richardson RTE_BUILD_BUG_ON(sizeof(*link) != sizeof(uint64_t)); 137799a2dd95SBruce Richardson 137899a2dd95SBruce Richardson *dst = __atomic_load_n(src, __ATOMIC_SEQ_CST); 137999a2dd95SBruce Richardson } 138099a2dd95SBruce Richardson 138199a2dd95SBruce Richardson /** 138299a2dd95SBruce Richardson * Allocate an unique switch domain identifier. 138399a2dd95SBruce Richardson * 138499a2dd95SBruce Richardson * A pool of switch domain identifiers which can be allocated on request. This 138599a2dd95SBruce Richardson * will enabled devices which support the concept of switch domains to request 138699a2dd95SBruce Richardson * a switch domain id which is guaranteed to be unique from other devices 138799a2dd95SBruce Richardson * running in the same process. 138899a2dd95SBruce Richardson * 138999a2dd95SBruce Richardson * @param domain_id 139099a2dd95SBruce Richardson * switch domain identifier parameter to pass back to application 139199a2dd95SBruce Richardson * 139299a2dd95SBruce Richardson * @return 139399a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 139499a2dd95SBruce Richardson */ 139599a2dd95SBruce Richardson __rte_internal 139699a2dd95SBruce Richardson int 139799a2dd95SBruce Richardson rte_eth_switch_domain_alloc(uint16_t *domain_id); 139899a2dd95SBruce Richardson 139999a2dd95SBruce Richardson /** 140099a2dd95SBruce Richardson * Free switch domain. 140199a2dd95SBruce Richardson * 140299a2dd95SBruce Richardson * Return a switch domain identifier to the pool of free identifiers after it is 140399a2dd95SBruce Richardson * no longer in use by device. 140499a2dd95SBruce Richardson * 140599a2dd95SBruce Richardson * @param domain_id 140699a2dd95SBruce Richardson * switch domain identifier to free 140799a2dd95SBruce Richardson * 140899a2dd95SBruce Richardson * @return 140999a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 141099a2dd95SBruce Richardson */ 141199a2dd95SBruce Richardson __rte_internal 141299a2dd95SBruce Richardson int 141399a2dd95SBruce Richardson rte_eth_switch_domain_free(uint16_t domain_id); 141499a2dd95SBruce Richardson 141599a2dd95SBruce Richardson /** 141699a2dd95SBruce Richardson * Generic Ethernet device arguments 141799a2dd95SBruce Richardson * 141899a2dd95SBruce Richardson * One type of representor each structure. 141999a2dd95SBruce Richardson */ 142099a2dd95SBruce Richardson struct rte_eth_devargs { 142199a2dd95SBruce Richardson uint16_t mh_controllers[RTE_MAX_MULTI_HOST_CTRLS]; 142299a2dd95SBruce Richardson /** controller/s number in case of multi-host */ 142399a2dd95SBruce Richardson uint16_t nb_mh_controllers; 142499a2dd95SBruce Richardson /** number of controllers in multi-host controllers field */ 142599a2dd95SBruce Richardson uint16_t ports[RTE_MAX_ETHPORTS]; 142699a2dd95SBruce Richardson /** port/s number to enable on a multi-port single function */ 142799a2dd95SBruce Richardson uint16_t nb_ports; 142899a2dd95SBruce Richardson /** number of ports in ports field */ 142999a2dd95SBruce Richardson uint16_t representor_ports[RTE_MAX_ETHPORTS]; 143099a2dd95SBruce Richardson /** representor port/s identifier to enable on device */ 143199a2dd95SBruce Richardson uint16_t nb_representor_ports; 143299a2dd95SBruce Richardson /** number of ports in representor port field */ 143399a2dd95SBruce Richardson enum rte_eth_representor_type type; /* type of representor */ 143499a2dd95SBruce Richardson }; 143599a2dd95SBruce Richardson 143699a2dd95SBruce Richardson /** 143799a2dd95SBruce Richardson * PMD helper function to get representor ID from location detail. 143899a2dd95SBruce Richardson * 143999a2dd95SBruce Richardson * Get representor ID from controller, pf and (sf or vf). 144099a2dd95SBruce Richardson * The mapping is retrieved from rte_eth_representor_info_get(). 144199a2dd95SBruce Richardson * 144299a2dd95SBruce Richardson * For backward compatibility, if no representor info, direct 144399a2dd95SBruce Richardson * map legacy VF (no controller and pf). 144499a2dd95SBruce Richardson * 1445ff4e52efSViacheslav Galaktionov * @param port_id 1446ff4e52efSViacheslav Galaktionov * Port ID of the backing device. 144799a2dd95SBruce Richardson * @param type 144899a2dd95SBruce Richardson * Representor type. 144999a2dd95SBruce Richardson * @param controller 145099a2dd95SBruce Richardson * Controller ID, -1 if unspecified. 145199a2dd95SBruce Richardson * @param pf 145299a2dd95SBruce Richardson * PF port ID, -1 if unspecified. 145399a2dd95SBruce Richardson * @param representor_port 145499a2dd95SBruce Richardson * VF or SF representor port number, -1 if unspecified. 145599a2dd95SBruce Richardson * @param repr_id 145699a2dd95SBruce Richardson * Pointer to output representor ID. 145799a2dd95SBruce Richardson * 145899a2dd95SBruce Richardson * @return 145999a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 146099a2dd95SBruce Richardson */ 146199a2dd95SBruce Richardson __rte_internal 146299a2dd95SBruce Richardson int 1463ff4e52efSViacheslav Galaktionov rte_eth_representor_id_get(uint16_t port_id, 146499a2dd95SBruce Richardson enum rte_eth_representor_type type, 146599a2dd95SBruce Richardson int controller, int pf, int representor_port, 146699a2dd95SBruce Richardson uint16_t *repr_id); 146799a2dd95SBruce Richardson 146899a2dd95SBruce Richardson /** 146999a2dd95SBruce Richardson * PMD helper function to parse ethdev arguments 147099a2dd95SBruce Richardson * 147199a2dd95SBruce Richardson * @param devargs 147299a2dd95SBruce Richardson * device arguments 147399a2dd95SBruce Richardson * @param eth_devargs 147499a2dd95SBruce Richardson * parsed ethdev specific arguments. 147599a2dd95SBruce Richardson * 147699a2dd95SBruce Richardson * @return 147799a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 147899a2dd95SBruce Richardson */ 147999a2dd95SBruce Richardson __rte_internal 148099a2dd95SBruce Richardson int 148199a2dd95SBruce Richardson rte_eth_devargs_parse(const char *devargs, struct rte_eth_devargs *eth_devargs); 148299a2dd95SBruce Richardson 148399a2dd95SBruce Richardson 148499a2dd95SBruce Richardson typedef int (*ethdev_init_t)(struct rte_eth_dev *ethdev, void *init_params); 148599a2dd95SBruce Richardson typedef int (*ethdev_bus_specific_init)(struct rte_eth_dev *ethdev, 148699a2dd95SBruce Richardson void *bus_specific_init_params); 148799a2dd95SBruce Richardson 148899a2dd95SBruce Richardson /** 148999a2dd95SBruce Richardson * PMD helper function for the creation of a new ethdev ports. 149099a2dd95SBruce Richardson * 149199a2dd95SBruce Richardson * @param device 149299a2dd95SBruce Richardson * rte_device handle. 149399a2dd95SBruce Richardson * @param name 149499a2dd95SBruce Richardson * port name. 149599a2dd95SBruce Richardson * @param priv_data_size 149699a2dd95SBruce Richardson * size of private data required for port. 149799a2dd95SBruce Richardson * @param bus_specific_init 149899a2dd95SBruce Richardson * port bus specific initialisation callback function 149999a2dd95SBruce Richardson * @param bus_init_params 150099a2dd95SBruce Richardson * port bus specific initialisation parameters 150199a2dd95SBruce Richardson * @param ethdev_init 150299a2dd95SBruce Richardson * device specific port initialization callback function 150399a2dd95SBruce Richardson * @param init_params 150499a2dd95SBruce Richardson * port initialisation parameters 150599a2dd95SBruce Richardson * 150699a2dd95SBruce Richardson * @return 150799a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 150899a2dd95SBruce Richardson */ 150999a2dd95SBruce Richardson __rte_internal 151099a2dd95SBruce Richardson int 151199a2dd95SBruce Richardson rte_eth_dev_create(struct rte_device *device, const char *name, 151299a2dd95SBruce Richardson size_t priv_data_size, 151399a2dd95SBruce Richardson ethdev_bus_specific_init bus_specific_init, void *bus_init_params, 151499a2dd95SBruce Richardson ethdev_init_t ethdev_init, void *init_params); 151599a2dd95SBruce Richardson 151699a2dd95SBruce Richardson 151799a2dd95SBruce Richardson typedef int (*ethdev_uninit_t)(struct rte_eth_dev *ethdev); 151899a2dd95SBruce Richardson 151999a2dd95SBruce Richardson /** 152099a2dd95SBruce Richardson * PMD helper function for cleaning up the resources of a ethdev port on it's 152199a2dd95SBruce Richardson * destruction. 152299a2dd95SBruce Richardson * 152399a2dd95SBruce Richardson * @param ethdev 152499a2dd95SBruce Richardson * ethdev handle of port. 152599a2dd95SBruce Richardson * @param ethdev_uninit 152699a2dd95SBruce Richardson * device specific port un-initialise callback function 152799a2dd95SBruce Richardson * 152899a2dd95SBruce Richardson * @return 152999a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 153099a2dd95SBruce Richardson */ 153199a2dd95SBruce Richardson __rte_internal 153299a2dd95SBruce Richardson int 153399a2dd95SBruce Richardson rte_eth_dev_destroy(struct rte_eth_dev *ethdev, ethdev_uninit_t ethdev_uninit); 153499a2dd95SBruce Richardson 153599a2dd95SBruce Richardson /** 153699a2dd95SBruce Richardson * @internal 153799a2dd95SBruce Richardson * Pass the current hairpin queue HW and/or SW information to the peer queue 153899a2dd95SBruce Richardson * and fetch back the information of the peer queue. 153999a2dd95SBruce Richardson * 154099a2dd95SBruce Richardson * @param peer_port 154199a2dd95SBruce Richardson * Peer port identifier of the Ethernet device. 154299a2dd95SBruce Richardson * @param peer_queue 154399a2dd95SBruce Richardson * Peer queue index of the port. 154499a2dd95SBruce Richardson * @param cur_info 154599a2dd95SBruce Richardson * Pointer to the current information structure. 154699a2dd95SBruce Richardson * @param peer_info 154799a2dd95SBruce Richardson * Pointer to the peer information, output. 154899a2dd95SBruce Richardson * @param direction 154999a2dd95SBruce Richardson * Direction to pass the information. 155099a2dd95SBruce Richardson * positive - pass Tx queue information and get peer Rx queue information 155199a2dd95SBruce Richardson * zero - pass Rx queue information and get peer Tx queue information 155299a2dd95SBruce Richardson * 155399a2dd95SBruce Richardson * @return 155499a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 155599a2dd95SBruce Richardson */ 155699a2dd95SBruce Richardson __rte_internal 155799a2dd95SBruce Richardson int 155899a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_update(uint16_t peer_port, uint16_t peer_queue, 155999a2dd95SBruce Richardson struct rte_hairpin_peer_info *cur_info, 156099a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, 156199a2dd95SBruce Richardson uint32_t direction); 156299a2dd95SBruce Richardson 156399a2dd95SBruce Richardson /** 156499a2dd95SBruce Richardson * @internal 156599a2dd95SBruce Richardson * Configure current hairpin queue with the peer information fetched to create 156699a2dd95SBruce Richardson * the connection (bind) with peer queue in the specified direction. 156799a2dd95SBruce Richardson * This function might need to be called twice to fully create the connections. 156899a2dd95SBruce Richardson * 156999a2dd95SBruce Richardson * @param cur_port 157099a2dd95SBruce Richardson * Current port identifier of the Ethernet device. 157199a2dd95SBruce Richardson * @param cur_queue 157299a2dd95SBruce Richardson * Current queue index of the port. 157399a2dd95SBruce Richardson * @param peer_info 157499a2dd95SBruce Richardson * Pointer to the peer information, input. 157599a2dd95SBruce Richardson * @param direction 157699a2dd95SBruce Richardson * Direction to create the connection. 157799a2dd95SBruce Richardson * positive - bind current Tx queue to peer Rx queue 157899a2dd95SBruce Richardson * zero - bind current Rx queue to peer Tx queue 157999a2dd95SBruce Richardson * 158099a2dd95SBruce Richardson * @return 158199a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 158299a2dd95SBruce Richardson */ 158399a2dd95SBruce Richardson __rte_internal 158499a2dd95SBruce Richardson int 158599a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_bind(uint16_t cur_port, uint16_t cur_queue, 158699a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, 158799a2dd95SBruce Richardson uint32_t direction); 158899a2dd95SBruce Richardson 158999a2dd95SBruce Richardson /** 159099a2dd95SBruce Richardson * @internal 159199a2dd95SBruce Richardson * Reset the current queue state and configuration to disconnect (unbind) it 159299a2dd95SBruce Richardson * from the peer queue. 159399a2dd95SBruce Richardson * This function might need to be called twice to disconnect each other. 159499a2dd95SBruce Richardson * 159599a2dd95SBruce Richardson * @param cur_port 159699a2dd95SBruce Richardson * Current port identifier of the Ethernet device. 159799a2dd95SBruce Richardson * @param cur_queue 159899a2dd95SBruce Richardson * Current queue index of the port. 159999a2dd95SBruce Richardson * @param direction 160099a2dd95SBruce Richardson * Direction to destroy the connection. 160199a2dd95SBruce Richardson * positive - unbind current Tx queue from peer Rx queue 160299a2dd95SBruce Richardson * zero - unbind current Rx queue from peer Tx queue 160399a2dd95SBruce Richardson * 160499a2dd95SBruce Richardson * @return 160599a2dd95SBruce Richardson * Negative errno value on error, 0 on success. 160699a2dd95SBruce Richardson */ 160799a2dd95SBruce Richardson __rte_internal 160899a2dd95SBruce Richardson int 160999a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_unbind(uint16_t cur_port, uint16_t cur_queue, 161099a2dd95SBruce Richardson uint32_t direction); 161199a2dd95SBruce Richardson 161299a2dd95SBruce Richardson 161399a2dd95SBruce Richardson /* 161499a2dd95SBruce Richardson * Legacy ethdev API used internally by drivers. 161599a2dd95SBruce Richardson */ 161699a2dd95SBruce Richardson 161799a2dd95SBruce Richardson enum rte_filter_type { 161899a2dd95SBruce Richardson RTE_ETH_FILTER_NONE = 0, 161999a2dd95SBruce Richardson RTE_ETH_FILTER_ETHERTYPE, 162099a2dd95SBruce Richardson RTE_ETH_FILTER_FLEXIBLE, 162199a2dd95SBruce Richardson RTE_ETH_FILTER_SYN, 162299a2dd95SBruce Richardson RTE_ETH_FILTER_NTUPLE, 162399a2dd95SBruce Richardson RTE_ETH_FILTER_TUNNEL, 162499a2dd95SBruce Richardson RTE_ETH_FILTER_FDIR, 162599a2dd95SBruce Richardson RTE_ETH_FILTER_HASH, 162699a2dd95SBruce Richardson RTE_ETH_FILTER_L2_TUNNEL, 162799a2dd95SBruce Richardson }; 162899a2dd95SBruce Richardson 162999a2dd95SBruce Richardson /** 163099a2dd95SBruce Richardson * Define all structures for Ethertype Filter type. 163199a2dd95SBruce Richardson */ 163299a2dd95SBruce Richardson 163399a2dd95SBruce Richardson #define RTE_ETHTYPE_FLAGS_MAC 0x0001 /**< If set, compare mac */ 163499a2dd95SBruce Richardson #define RTE_ETHTYPE_FLAGS_DROP 0x0002 /**< If set, drop packet when match */ 163599a2dd95SBruce Richardson 163699a2dd95SBruce Richardson /** 163799a2dd95SBruce Richardson * A structure used to define the ethertype filter entry 163899a2dd95SBruce Richardson * to support RTE_ETH_FILTER_ETHERTYPE data representation. 163999a2dd95SBruce Richardson */ 164099a2dd95SBruce Richardson struct rte_eth_ethertype_filter { 164199a2dd95SBruce Richardson struct rte_ether_addr mac_addr; /**< Mac address to match. */ 164299a2dd95SBruce Richardson uint16_t ether_type; /**< Ether type to match */ 164399a2dd95SBruce Richardson uint16_t flags; /**< Flags from RTE_ETHTYPE_FLAGS_* */ 164499a2dd95SBruce Richardson uint16_t queue; /**< Queue assigned to when match*/ 164599a2dd95SBruce Richardson }; 164699a2dd95SBruce Richardson 164799a2dd95SBruce Richardson /** 164899a2dd95SBruce Richardson * A structure used to define the TCP syn filter entry 164999a2dd95SBruce Richardson * to support RTE_ETH_FILTER_SYN data representation. 165099a2dd95SBruce Richardson */ 165199a2dd95SBruce Richardson struct rte_eth_syn_filter { 165299a2dd95SBruce Richardson /** 1 - higher priority than other filters, 0 - lower priority. */ 165399a2dd95SBruce Richardson uint8_t hig_pri; 165499a2dd95SBruce Richardson uint16_t queue; /**< Queue assigned to when match */ 165599a2dd95SBruce Richardson }; 165699a2dd95SBruce Richardson 165799a2dd95SBruce Richardson /** 165899a2dd95SBruce Richardson * filter type of tunneling packet 165999a2dd95SBruce Richardson */ 166099a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_OMAC 0x01 /**< filter by outer MAC addr */ 166199a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_OIP 0x02 /**< filter by outer IP Addr */ 166299a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_TENID 0x04 /**< filter by tenant ID */ 166399a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_IMAC 0x08 /**< filter by inner MAC addr */ 166499a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_IVLAN 0x10 /**< filter by inner VLAN ID */ 166599a2dd95SBruce Richardson #define ETH_TUNNEL_FILTER_IIP 0x20 /**< filter by inner IP addr */ 166699a2dd95SBruce Richardson 166799a2dd95SBruce Richardson #define RTE_TUNNEL_FILTER_IMAC_IVLAN (ETH_TUNNEL_FILTER_IMAC | \ 166899a2dd95SBruce Richardson ETH_TUNNEL_FILTER_IVLAN) 166999a2dd95SBruce Richardson #define RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID (ETH_TUNNEL_FILTER_IMAC | \ 167099a2dd95SBruce Richardson ETH_TUNNEL_FILTER_IVLAN | \ 167199a2dd95SBruce Richardson ETH_TUNNEL_FILTER_TENID) 167299a2dd95SBruce Richardson #define RTE_TUNNEL_FILTER_IMAC_TENID (ETH_TUNNEL_FILTER_IMAC | \ 167399a2dd95SBruce Richardson ETH_TUNNEL_FILTER_TENID) 167499a2dd95SBruce Richardson #define RTE_TUNNEL_FILTER_OMAC_TENID_IMAC (ETH_TUNNEL_FILTER_OMAC | \ 167599a2dd95SBruce Richardson ETH_TUNNEL_FILTER_TENID | \ 167699a2dd95SBruce Richardson ETH_TUNNEL_FILTER_IMAC) 167799a2dd95SBruce Richardson 167899a2dd95SBruce Richardson /** 167999a2dd95SBruce Richardson * Select IPv4 or IPv6 for tunnel filters. 168099a2dd95SBruce Richardson */ 168199a2dd95SBruce Richardson enum rte_tunnel_iptype { 168299a2dd95SBruce Richardson RTE_TUNNEL_IPTYPE_IPV4 = 0, /**< IPv4. */ 168399a2dd95SBruce Richardson RTE_TUNNEL_IPTYPE_IPV6, /**< IPv6. */ 168499a2dd95SBruce Richardson }; 168599a2dd95SBruce Richardson 168699a2dd95SBruce Richardson /** 168799a2dd95SBruce Richardson * Tunneling Packet filter configuration. 168899a2dd95SBruce Richardson */ 168999a2dd95SBruce Richardson struct rte_eth_tunnel_filter_conf { 169099a2dd95SBruce Richardson struct rte_ether_addr outer_mac; /**< Outer MAC address to match. */ 169199a2dd95SBruce Richardson struct rte_ether_addr inner_mac; /**< Inner MAC address to match. */ 169299a2dd95SBruce Richardson uint16_t inner_vlan; /**< Inner VLAN to match. */ 169399a2dd95SBruce Richardson enum rte_tunnel_iptype ip_type; /**< IP address type. */ 169499a2dd95SBruce Richardson /** 169599a2dd95SBruce Richardson * Outer destination IP address to match if ETH_TUNNEL_FILTER_OIP 169699a2dd95SBruce Richardson * is set in filter_type, or inner destination IP address to match 169799a2dd95SBruce Richardson * if ETH_TUNNEL_FILTER_IIP is set in filter_type. 169899a2dd95SBruce Richardson */ 169999a2dd95SBruce Richardson union { 170099a2dd95SBruce Richardson uint32_t ipv4_addr; /**< IPv4 address in big endian. */ 170199a2dd95SBruce Richardson uint32_t ipv6_addr[4]; /**< IPv6 address in big endian. */ 170299a2dd95SBruce Richardson } ip_addr; 170399a2dd95SBruce Richardson /** Flags from ETH_TUNNEL_FILTER_XX - see above. */ 170499a2dd95SBruce Richardson uint16_t filter_type; 170599a2dd95SBruce Richardson enum rte_eth_tunnel_type tunnel_type; /**< Tunnel Type. */ 170699a2dd95SBruce Richardson uint32_t tenant_id; /**< Tenant ID to match. VNI, GRE key... */ 170799a2dd95SBruce Richardson uint16_t queue_id; /**< Queue assigned to if match. */ 170899a2dd95SBruce Richardson }; 170999a2dd95SBruce Richardson 171099a2dd95SBruce Richardson #endif /* _RTE_ETHDEV_DRIVER_H_ */ 1711