5 #ifndef _RTE_ETH_BOND_PRIVATE_H_
6 #define _RTE_ETH_BOND_PRIVATE_H_
13 #include "rte_eth_bond_8023ad_private.h"
14 #include "rte_eth_bond_alb.h"
16 #define PMD_BOND_SLAVE_PORT_KVARG ("slave")
17 #define PMD_BOND_PRIMARY_SLAVE_KVARG ("primary")
18 #define PMD_BOND_MODE_KVARG ("mode")
19 #define PMD_BOND_AGG_MODE_KVARG ("agg_mode")
20 #define PMD_BOND_XMIT_POLICY_KVARG ("xmit_policy")
21 #define PMD_BOND_SOCKET_ID_KVARG ("socket_id")
22 #define PMD_BOND_MAC_ADDR_KVARG ("mac")
23 #define PMD_BOND_LSC_POLL_PERIOD_KVARG ("lsc_poll_period_ms")
24 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG ("up_delay")
25 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG ("down_delay")
27 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG ("l2")
28 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG ("l23")
29 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG ("l34")
31 #define RTE_BOND_LOG(lvl, msg, ...) \
32 RTE_LOG(lvl, PMD, "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
34 #define BONDING_MODE_INVALID 0xFF
36 extern const char *pmd_bond_init_valid_arguments[];
38 extern struct rte_vdev_driver pmd_bond_drv;
54 struct bond_tx_queue {
71 struct bond_slave_details {
74 uint8_t link_status_poll_enabled;
75 uint8_t link_status_wait_to_complete;
76 uint8_t last_link_status;
83 typedef void (*burst_xmit_hash_t)(
struct rte_mbuf **buf, uint16_t nb_pkts,
84 uint8_t slave_count, uint16_t *slaves);
110 uint8_t link_status_polling_enabled;
111 uint32_t link_status_polling_interval_ms;
113 uint32_t link_down_delay_ms;
114 uint32_t link_up_delay_ms;
124 struct bond_slave_details
slaves[RTE_MAX_ETHPORTS];
127 struct mode8023ad_private mode4;
130 struct mode_alb_private mode6;
132 uint32_t rx_offload_capa;
140 RTE_RETA_GROUP_SIZE];
146 uint8_t slave_update_idx;
148 uint32_t candidate_max_rx_pktlen;
149 uint32_t max_rx_pktlen;
151 void *vlan_filter_bmpmem;
155 extern const struct eth_dev_ops default_dev_ops;
158 check_for_master_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
161 check_for_bonded_ethdev(
const struct rte_eth_dev *eth_dev);
165 static inline uint16_t
166 find_slave_by_id(uint16_t *slaves, uint16_t slaves_count, uint16_t slave_id) {
169 for (pos = 0; pos < slaves_count; pos++) {
170 if (slave_id == slaves[pos])
178 valid_port_id(uint16_t port_id);
181 valid_bonded_port_id(uint16_t port_id);
184 valid_slave_port_id(uint16_t port_id, uint8_t mode);
187 deactivate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
190 activate_slave(
struct rte_eth_dev *eth_dev, uint16_t port_id);
193 link_properties_set(
struct rte_eth_dev *bonded_eth_dev,
196 link_properties_valid(
struct rte_eth_dev *bonded_eth_dev,
200 mac_address_set(
struct rte_eth_dev *eth_dev,
struct ether_addr *new_mac_addr);
203 mac_address_get(
struct rte_eth_dev *eth_dev,
struct ether_addr *dst_mac_addr);
206 mac_address_slaves_update(
struct rte_eth_dev *bonded_eth_dev);
209 bond_ethdev_mode_set(
struct rte_eth_dev *eth_dev,
int mode);
212 slave_configure(
struct rte_eth_dev *bonded_eth_dev,
213 struct rte_eth_dev *slave_eth_dev);
217 struct rte_eth_dev *slave_eth_dev);
221 struct rte_eth_dev *slave_eth_dev);
224 burst_xmit_l2_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
225 uint8_t slave_count, uint16_t *slaves);
228 burst_xmit_l23_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
229 uint8_t slave_count, uint16_t *slaves);
232 burst_xmit_l34_hash(
struct rte_mbuf **buf, uint16_t nb_pkts,
233 uint8_t slave_count, uint16_t *slaves);
238 uint16_t slave_port_id);
242 void *param,
void *ret_param);
245 bond_ethdev_parse_slave_port_kvarg(
const char *key,
246 const char *value,
void *extra_args);
249 bond_ethdev_parse_slave_mode_kvarg(
const char *key,
250 const char *value,
void *extra_args);
253 bond_ethdev_parse_slave_agg_mode_kvarg(
const char *key
__rte_unused,
254 const char *value,
void *extra_args);
257 bond_ethdev_parse_socket_id_kvarg(
const char *key,
258 const char *value,
void *extra_args);
261 bond_ethdev_parse_primary_slave_port_id_kvarg(
const char *key,
262 const char *value,
void *extra_args);
265 bond_ethdev_parse_balance_xmit_policy_kvarg(
const char *key,
266 const char *value,
void *extra_args);
269 bond_ethdev_parse_bond_mac_addr_kvarg(
const char *key,
270 const char *value,
void *extra_args);
273 bond_ethdev_parse_time_ms_kvarg(
const char *key,
274 const char *value,
void *extra_args);
286 bond_ethdev_stop(
struct rte_eth_dev *eth_dev);
289 bond_ethdev_close(
struct rte_eth_dev *dev);