5 #ifndef _RTE_ETH_BOND_PRIVATE_H_
6 #define _RTE_ETH_BOND_PRIVATE_H_
16 #include "rte_eth_bond_8023ad_private.h"
17 #include "rte_eth_bond_alb.h"
19 #define PMD_BOND_SLAVE_PORT_KVARG ("slave")
20 #define PMD_BOND_PRIMARY_SLAVE_KVARG ("primary")
21 #define PMD_BOND_MODE_KVARG ("mode")
22 #define PMD_BOND_AGG_MODE_KVARG ("agg_mode")
23 #define PMD_BOND_XMIT_POLICY_KVARG ("xmit_policy")
24 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
25 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
26 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
27 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
28 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
30 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
31 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
32 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
34 extern int bond_logtype;
36 #define RTE_BOND_LOG(lvl, msg, ...) \
37 rte_log(RTE_LOG_ ## lvl, bond_logtype, \
38 "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
40 #define BONDING_MODE_INVALID 0xFF
42 extern const char *pmd_bond_init_valid_arguments[];
44 extern struct rte_vdev_driver pmd_bond_drv;
62 struct bond_tx_queue {
79 struct bond_slave_details {
82 uint8_t link_status_poll_enabled;
83 uint8_t link_status_wait_to_complete;
84 uint8_t last_link_status;
92 TAILQ_ENTRY(rte_flow) next;
94 struct rte_flow *flows[RTE_MAX_ETHPORTS];
99 typedef
void (*burst_xmit_hash_t)(struct
rte_mbuf **buf, uint16_t nb_pkts,
100 uint8_t slave_count, uint16_t *slaves);
112 uint16_t user_defined_primary_port;
115 uint8_t balance_xmit_policy;
117 burst_xmit_hash_t burst_xmit_hash;
120 uint8_t user_defined_mac;
122 uint8_t promiscuous_en;
126 uint8_t link_status_polling_enabled;
127 uint32_t link_status_polling_interval_ms;
129 uint32_t link_down_delay_ms;
130 uint32_t link_up_delay_ms;
137 uint16_t active_slaves[RTE_MAX_ETHPORTS];
140 struct bond_slave_details slaves[RTE_MAX_ETHPORTS];
143 struct mode8023ad_private mode4;
144 uint16_t tlb_slaves_order[RTE_MAX_ETHPORTS];
146 struct mode_alb_private mode6;
148 uint64_t rx_offload_capa;
158 int flow_isolated_valid;
161 uint64_t flow_type_rss_offloads;
165 RTE_RETA_GROUP_SIZE];
171 uint8_t slave_update_idx;
173 uint32_t candidate_max_rx_pktlen;
174 uint32_t max_rx_pktlen;
176 void *vlan_filter_bmpmem;
180 extern const struct eth_dev_ops default_dev_ops;
183 check_for_master_bonded_ethdev(const struct rte_eth_dev *eth_dev);
186 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev);
190 static inline uint16_t
191 find_slave_by_id(uint16_t *slaves, uint16_t slaves_count, uint16_t slave_id) {
194 for (pos = 0; pos < slaves_count; pos++) {
195 if (slave_id == slaves[pos])
203 valid_port_id(uint16_t port_id);
206 valid_bonded_port_id(uint16_t port_id);
209 valid_slave_port_id(uint16_t port_id, uint8_t mode);
212 deactivate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
215 activate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
218 link_properties_set(
struct rte_eth_dev *bonded_eth_dev,
221 link_properties_valid(
struct rte_eth_dev *bonded_eth_dev,
225 mac_address_set(
struct rte_eth_dev *eth_dev,
struct ether_addr *new_mac_addr);
228 mac_address_get(
struct rte_eth_dev *eth_dev,
struct ether_addr *dst_mac_addr);
231 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
234 bond_ethdev_mode_set(
struct rte_eth_dev *eth_dev,
int mode);
237 slave_configure(
struct rte_eth_dev *bonded_eth_dev,
238 struct rte_eth_dev *slave_eth_dev);
241 slave_remove(
struct bond_dev_private *internals,
242 struct rte_eth_dev *slave_eth_dev);
245 slave_add(
struct bond_dev_private *internals,
246 struct rte_eth_dev *slave_eth_dev);
249 burst_xmit_l2_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
250 uint8_t slave_count, uint16_t *slaves);
253 burst_xmit_l23_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
254 uint8_t slave_count, uint16_t *slaves);
257 burst_xmit_l34_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
258 uint8_t slave_count, uint16_t *slaves);
262 bond_ethdev_primary_set(
struct bond_dev_private *internals,
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);
302 bond_tlb_disable(
struct bond_dev_private *internals);
305 bond_tlb_enable(
struct bond_dev_private *internals);
308 bond_tlb_activate_slave(
struct bond_dev_private *internals);
311 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
314 bond_ethdev_close(
struct rte_eth_dev *dev);