5 #ifndef _RTE_ETH_BOND_PRIVATE_H_
6 #define _RTE_ETH_BOND_PRIVATE_H_
18 #include "rte_eth_bond_8023ad_private.h"
19 #include "rte_eth_bond_alb.h"
21 #define PMD_BOND_SLAVE_PORT_KVARG ("slave")
22 #define PMD_BOND_PRIMARY_SLAVE_KVARG ("primary")
23 #define PMD_BOND_MODE_KVARG ("mode")
24 #define PMD_BOND_AGG_MODE_KVARG ("agg_mode")
25 #define PMD_BOND_XMIT_POLICY_KVARG ("xmit_policy")
26 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
27 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
28 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
29 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
30 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
32 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
33 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
34 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
36 extern int bond_logtype;
38 #define RTE_BOND_LOG(lvl, msg, ...) \
39 rte_log(RTE_LOG_ ## lvl, bond_logtype, \
40 "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
42 #define BONDING_MODE_INVALID 0xFF
44 extern const char *pmd_bond_init_valid_arguments[];
64 struct bond_tx_queue {
81 struct bond_slave_details {
84 uint8_t link_status_poll_enabled;
85 uint8_t link_status_wait_to_complete;
86 uint8_t last_link_status;
94 TAILQ_ENTRY(rte_flow) next;
96 struct rte_flow *flows[RTE_MAX_ETHPORTS];
102 typedef
void (*burst_xmit_hash_t)(struct
rte_mbuf **buf, uint16_t nb_pkts,
103 uint16_t slave_count, uint16_t *slaves);
129 uint8_t link_status_polling_enabled;
130 uint32_t link_status_polling_interval_ms;
132 uint32_t link_down_delay_ms;
133 uint32_t link_up_delay_ms;
140 uint16_t active_slaves[RTE_MAX_ETHPORTS];
143 struct bond_slave_details slaves[RTE_MAX_ETHPORTS];
146 struct mode8023ad_private mode4;
147 uint16_t tlb_slaves_order[RTE_MAX_ETHPORTS];
149 struct mode_alb_private mode6;
151 uint64_t rx_offload_capa;
161 int flow_isolated_valid;
164 uint64_t flow_type_rss_offloads;
173 RTE_RETA_GROUP_SIZE];
179 uint8_t slave_update_idx;
181 uint32_t candidate_max_rx_pktlen;
182 uint32_t max_rx_pktlen;
184 void *vlan_filter_bmpmem;
188 extern const struct eth_dev_ops default_dev_ops;
191 check_for_master_bonded_ethdev(const struct rte_eth_dev *eth_dev);
194 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev);
198 static inline uint16_t
199 find_slave_by_id(uint16_t *slaves, uint16_t slaves_count, uint16_t slave_id) {
202 for (pos = 0; pos < slaves_count; pos++) {
203 if (slave_id == slaves[pos])
211 valid_port_id(uint16_t port_id);
214 valid_bonded_port_id(uint16_t port_id);
217 valid_slave_port_id(uint16_t port_id, uint8_t mode);
220 deactivate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
223 activate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
226 mac_address_set(
struct rte_eth_dev *eth_dev,
230 mac_address_get(
struct rte_eth_dev *eth_dev,
234 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
237 slave_add_mac_addresses(
struct rte_eth_dev *bonded_eth_dev,
238 uint16_t slave_port_id);
241 slave_remove_mac_addresses(
struct rte_eth_dev *bonded_eth_dev,
242 uint16_t slave_port_id);
245 bond_ethdev_mode_set(
struct rte_eth_dev *eth_dev,
int mode);
248 slave_configure(
struct rte_eth_dev *bonded_eth_dev,
249 struct rte_eth_dev *slave_eth_dev);
252 slave_remove(
struct bond_dev_private *internals,
253 struct rte_eth_dev *slave_eth_dev);
256 slave_add(
struct bond_dev_private *internals,
257 struct rte_eth_dev *slave_eth_dev);
260 burst_xmit_l2_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
261 uint16_t slave_count, uint16_t *slaves);
264 burst_xmit_l23_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
265 uint16_t slave_count, uint16_t *slaves);
268 burst_xmit_l34_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
269 uint16_t slave_count, uint16_t *slaves);
273 bond_ethdev_primary_set(
struct bond_dev_private *internals,
274 uint16_t slave_port_id);
278 void *param,
void *ret_param);
281 bond_ethdev_parse_slave_port_kvarg(
const char *key,
282 const char *value,
void *extra_args);
285 bond_ethdev_parse_slave_mode_kvarg(
const char *key,
286 const char *value,
void *extra_args);
289 bond_ethdev_parse_slave_agg_mode_kvarg(
const char *key
__rte_unused,
290 const char *value,
void *extra_args);
293 bond_ethdev_parse_socket_id_kvarg(
const char *key,
294 const char *value,
void *extra_args);
297 bond_ethdev_parse_primary_slave_port_id_kvarg(
const char *key,
298 const char *value,
void *extra_args);
301 bond_ethdev_parse_balance_xmit_policy_kvarg(
const char *key,
302 const char *value,
void *extra_args);
305 bond_ethdev_parse_bond_mac_addr_kvarg(
const char *key,
306 const char *value,
void *extra_args);
309 bond_ethdev_parse_time_ms_kvarg(
const char *key,
310 const char *value,
void *extra_args);
313 bond_tlb_disable(
struct bond_dev_private *internals);
316 bond_tlb_enable(
struct bond_dev_private *internals);
319 bond_tlb_activate_slave(
struct bond_dev_private *internals);
322 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
325 bond_ethdev_close(
struct rte_eth_dev *dev);
uint8_t balance_xmit_policy
uint64_t tx_queue_offload_capa
uint16_t user_defined_primary_port
burst_xmit_hash_t burst_xmit_hash
struct bond_dev_private * dev_private
uint64_t rx_queue_offload_capa
uint16_t active_slave_count
uint16_t current_primary_port
struct rte_mempool * mb_pool
TAILQ_HEAD(vdev_driver_list, rte_vdev_driver)
uint16_t slaves[RTE_MAX_ETHPORTS]
struct rte_eth_rxconf rx_conf