34 #ifndef _RTE_ETH_BOND_PRIVATE_H_
35 #define _RTE_ETH_BOND_PRIVATE_H_
42 #include "rte_eth_bond_8023ad_private.h"
43 #include "rte_eth_bond_alb.h"
45 #define PMD_BOND_SLAVE_PORT_KVARG ("slave")
46 #define PMD_BOND_PRIMARY_SLAVE_KVARG ("primary")
47 #define PMD_BOND_MODE_KVARG ("mode")
48 #define PMD_BOND_AGG_MODE_KVARG ("agg_mode")
49 #define PMD_BOND_XMIT_POLICY_KVARG ("xmit_policy")
50 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
51 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
52 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
53 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
54 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
56 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
57 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
58 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
60 #define RTE_BOND_LOG(lvl, msg, ...) \
61 RTE_LOG(lvl, PMD, "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
63 #define BONDING_MODE_INVALID 0xFF
65 extern const char *pmd_bond_init_valid_arguments[];
67 extern struct rte_vdev_driver pmd_bond_drv;
83 struct bond_tx_queue {
100 struct bond_slave_details {
103 uint8_t link_status_poll_enabled;
104 uint8_t link_status_wait_to_complete;
105 uint8_t last_link_status;
113 typedef uint16_t (*xmit_hash_t)(
const struct rte_mbuf *buf, uint8_t slave_count);
139 uint8_t link_status_polling_enabled;
140 uint32_t link_status_polling_interval_ms;
142 uint32_t link_down_delay_ms;
143 uint32_t link_up_delay_ms;
153 struct bond_slave_details
slaves[RTE_MAX_ETHPORTS];
156 struct mode8023ad_private mode4;
159 struct mode_alb_private mode6;
161 uint32_t rx_offload_capa;
169 RTE_RETA_GROUP_SIZE];
175 uint8_t slave_update_idx;
177 uint32_t candidate_max_rx_pktlen;
178 uint32_t max_rx_pktlen;
180 void *vlan_filter_bmpmem;
184 extern const struct eth_dev_ops default_dev_ops;
187 check_for_master_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
190 check_for_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
194 static inline uint16_t
195 find_slave_by_id(uint16_t *slaves, uint16_t slaves_count, uint16_t slave_id) {
198 for (pos = 0; pos < slaves_count; pos++) {
199 if (slave_id == slaves[pos])
207 valid_port_id(uint16_t port_id);
210 valid_bonded_port_id(uint16_t port_id);
213 valid_slave_port_id(uint16_t port_id, uint8_t mode);
216 deactivate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
219 activate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
222 link_properties_set(
struct rte_eth_dev *bonded_eth_dev,
225 link_properties_valid(
struct rte_eth_dev *bonded_eth_dev,
229 mac_address_set(
struct rte_eth_dev *eth_dev,
struct ether_addr *new_mac_addr);
232 mac_address_get(
struct rte_eth_dev *eth_dev,
struct ether_addr *dst_mac_addr);
235 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
238 bond_ethdev_mode_set(
struct rte_eth_dev *eth_dev,
int mode);
241 slave_configure(
struct rte_eth_dev *bonded_eth_dev,
242 struct rte_eth_dev *slave_eth_dev);
246 struct rte_eth_dev *slave_eth_dev);
250 struct rte_eth_dev *slave_eth_dev);
253 xmit_l2_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
256 xmit_l23_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
259 xmit_l34_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
263 uint16_t slave_port_id);
267 void *param,
void *ret_param);
270 bond_ethdev_parse_slave_port_kvarg(
const char *key,
271 const char *value,
void *extra_args);
274 bond_ethdev_parse_slave_mode_kvarg(
const char *key,
275 const char *value,
void *extra_args);
278 bond_ethdev_parse_slave_agg_mode_kvarg(
const char *key
__rte_unused,
279 const char *value,
void *extra_args);
282 bond_ethdev_parse_socket_id_kvarg(
const char *key,
283 const char *value,
void *extra_args);
286 bond_ethdev_parse_primary_slave_port_id_kvarg(
const char *key,
287 const char *value,
void *extra_args);
290 bond_ethdev_parse_balance_xmit_policy_kvarg(
const char *key,
291 const char *value,
void *extra_args);
294 bond_ethdev_parse_bond_mac_addr_kvarg(
const char *key,
295 const char *value,
void *extra_args);
298 bond_ethdev_parse_time_ms_kvarg(
const char *key,
299 const char *value,
void *extra_args);
311 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
314 bond_ethdev_close(
struct rte_eth_dev *dev);
uint8_t balance_xmit_policy
uint16_t user_defined_primary_port
struct bond_dev_private * dev_private
uint64_t flow_type_rss_offloads
uint16_t active_slave_count
uint16_t current_primary_port
uint16_t active_slaves[RTE_MAX_ETHPORTS]
struct rte_mempool * mb_pool
struct bond_slave_details slaves[RTE_MAX_ETHPORTS]
uint16_t tlb_slaves_order[RTE_MAX_ETHPORTS]
uint16_t slaves[RTE_MAX_ETHPORTS]
struct rte_eth_rxconf rx_conf