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_XMIT_POLICY_KVARG ("xmit_policy")
49 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
50 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
51 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
52 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
53 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
55 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
56 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
57 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
59 #define RTE_BOND_LOG(lvl, msg, ...) \
60 RTE_LOG(lvl, PMD, "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
62 #define BONDING_MODE_INVALID 0xFF
64 extern const char *pmd_bond_init_valid_arguments[];
82 struct bond_tx_queue {
99 struct bond_slave_details {
102 uint8_t link_status_poll_enabled;
103 uint8_t link_status_wait_to_complete;
104 uint8_t last_link_status;
112 typedef uint16_t (*xmit_hash_t)(
const struct rte_mbuf *buf, uint8_t slave_count);
138 uint8_t link_status_polling_enabled;
139 uint32_t link_status_polling_interval_ms;
141 uint32_t link_down_delay_ms;
142 uint32_t link_up_delay_ms;
152 struct bond_slave_details
slaves[RTE_MAX_ETHPORTS];
155 struct mode8023ad_private mode4;
156 uint8_t tlb_slaves_order[RTE_MAX_ETHPORTS];
157 struct mode_alb_private mode6;
159 uint32_t rx_offload_capa;
167 RTE_RETA_GROUP_SIZE];
173 uint8_t slave_update_idx;
175 uint32_t candidate_max_rx_pktlen;
176 uint32_t max_rx_pktlen;
178 void *vlan_filter_bmpmem;
182 extern const struct eth_dev_ops default_dev_ops;
185 check_for_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
189 static inline uint8_t
190 find_slave_by_id(uint8_t *slaves, uint8_t slaves_count, uint8_t slave_id) {
193 for (pos = 0; pos < slaves_count; pos++) {
194 if (slave_id == slaves[pos])
202 valid_port_id(uint8_t port_id);
205 valid_bonded_port_id(uint8_t port_id);
208 valid_slave_port_id(uint8_t port_id);
211 deactivate_slave(
struct rte_eth_dev *eth_dev, uint8_t port_id);
214 activate_slave(
struct rte_eth_dev *eth_dev, uint8_t port_id);
217 link_properties_set(
struct rte_eth_dev *bonded_eth_dev,
220 link_properties_reset(
struct rte_eth_dev *bonded_eth_dev);
223 link_properties_valid(
struct rte_eth_link *bonded_dev_link,
227 mac_address_set(
struct rte_eth_dev *eth_dev,
struct ether_addr *new_mac_addr);
230 mac_address_get(
struct rte_eth_dev *eth_dev,
struct ether_addr *dst_mac_addr);
233 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
236 number_of_sockets(
void);
239 bond_ethdev_mode_set(
struct rte_eth_dev *eth_dev,
int mode);
242 slave_configure(
struct rte_eth_dev *bonded_eth_dev,
243 struct rte_eth_dev *slave_eth_dev);
247 struct rte_eth_dev *slave_eth_dev);
251 struct rte_eth_dev *slave_eth_dev);
254 xmit_l2_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
257 xmit_l23_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
260 xmit_l34_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
264 uint8_t slave_port_id);
271 bond_ethdev_parse_slave_port_kvarg(
const char *key
__rte_unused,
272 const char *value,
void *extra_args);
275 bond_ethdev_parse_slave_mode_kvarg(
const char *key
__rte_unused,
276 const char *value,
void *extra_args);
279 bond_ethdev_parse_socket_id_kvarg(
const char *key
__rte_unused,
280 const char *value,
void *extra_args);
283 bond_ethdev_parse_primary_slave_port_id_kvarg(
const char *key
__rte_unused,
284 const char *value,
void *extra_args);
287 bond_ethdev_parse_balance_xmit_policy_kvarg(
const char *key
__rte_unused,
288 const char *value,
void *extra_args);
291 bond_ethdev_parse_bond_mac_addr_kvarg(
const char *key
__rte_unused,
292 const char *value,
void *extra_args);
295 bond_ethdev_parse_time_ms_kvarg(
const char *key
__rte_unused,
296 const char *value,
void *extra_args);
308 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
311 bond_ethdev_close(
struct rte_eth_dev *dev);