34 #ifndef _RTE_ETH_BOND_PRIVATE_H_
35 #define _RTE_ETH_BOND_PRIVATE_H_
41 #include "rte_eth_bond_8023ad_private.h"
42 #include "rte_eth_bond_alb.h"
44 #define PMD_BOND_SLAVE_PORT_KVARG ("slave")
45 #define PMD_BOND_PRIMARY_SLAVE_KVARG ("primary")
46 #define PMD_BOND_MODE_KVARG ("mode")
47 #define PMD_BOND_XMIT_POLICY_KVARG ("xmit_policy")
48 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
49 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
50 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
51 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
52 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
54 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
55 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
56 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
58 #define RTE_BOND_LOG(lvl, msg, ...) \
59 RTE_LOG(lvl, PMD, "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
61 #define BONDING_MODE_INVALID 0xFF
63 extern const char *pmd_bond_init_valid_arguments[];
65 extern const char pmd_bond_driver_name[];
81 struct bond_tx_queue {
98 struct bond_slave_details {
101 uint8_t link_status_poll_enabled;
102 uint8_t link_status_wait_to_complete;
103 uint8_t last_link_status;
111 typedef uint16_t (*xmit_hash_t)(
const struct rte_mbuf *buf, uint8_t slave_count);
137 uint8_t link_status_polling_enabled;
138 uint32_t link_status_polling_interval_ms;
140 uint32_t link_down_delay_ms;
141 uint32_t link_up_delay_ms;
150 struct bond_slave_details
slaves[RTE_MAX_ETHPORTS];
153 struct mode8023ad_private mode4;
154 uint8_t tlb_slaves_order[RTE_MAX_ETHPORTS];
155 struct mode_alb_private mode6;
157 uint32_t rx_offload_capa;
165 RTE_RETA_GROUP_SIZE];
171 uint8_t slave_update_idx;
173 uint32_t candidate_max_rx_pktlen;
174 uint32_t max_rx_pktlen;
177 extern const struct eth_dev_ops default_dev_ops;
180 check_for_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
184 static inline uint8_t
185 find_slave_by_id(uint8_t *slaves, uint8_t slaves_count, uint8_t slave_id) {
188 for (pos = 0; pos < slaves_count; pos++) {
189 if (slave_id == slaves[pos])
197 valid_port_id(uint8_t port_id);
200 valid_bonded_port_id(uint8_t port_id);
203 valid_slave_port_id(uint8_t port_id);
206 deactivate_slave(
struct rte_eth_dev *eth_dev, uint8_t port_id);
209 activate_slave(
struct rte_eth_dev *eth_dev, uint8_t port_id);
212 link_properties_set(
struct rte_eth_dev *bonded_eth_dev,
215 link_properties_reset(
struct rte_eth_dev *bonded_eth_dev);
218 link_properties_valid(
struct rte_eth_link *bonded_dev_link,
222 mac_address_set(
struct rte_eth_dev *eth_dev,
struct ether_addr *new_mac_addr);
225 mac_address_get(
struct rte_eth_dev *eth_dev,
struct ether_addr *dst_mac_addr);
228 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
231 number_of_sockets(
void);
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);
242 struct rte_eth_dev *slave_eth_dev);
246 struct rte_eth_dev *slave_eth_dev);
249 xmit_l2_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
252 xmit_l23_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
255 xmit_l34_hash(
const struct rte_mbuf *buf, uint8_t slave_count);
259 uint8_t slave_port_id);
266 bond_ethdev_parse_slave_port_kvarg(
const char *key
__rte_unused,
267 const char *value,
void *extra_args);
270 bond_ethdev_parse_slave_mode_kvarg(
const char *key
__rte_unused,
271 const char *value,
void *extra_args);
274 bond_ethdev_parse_socket_id_kvarg(
const char *key
__rte_unused,
275 const char *value,
void *extra_args);
278 bond_ethdev_parse_primary_slave_port_id_kvarg(
const char *key
__rte_unused,
279 const char *value,
void *extra_args);
282 bond_ethdev_parse_balance_xmit_policy_kvarg(
const char *key
__rte_unused,
283 const char *value,
void *extra_args);
286 bond_ethdev_parse_bond_mac_addr_kvarg(
const char *key
__rte_unused,
287 const char *value,
void *extra_args);
290 bond_ethdev_parse_time_ms_kvarg(
const char *key
__rte_unused,
291 const char *value,
void *extra_args);
303 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
306 bond_ethdev_close(
struct rte_eth_dev *dev);