DPDK  18.11.11
rte_eth_bond_private.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4 
5 #ifndef _RTE_ETH_BOND_PRIVATE_H_
6 #define _RTE_ETH_BOND_PRIVATE_H_
7 
8 #include <stdint.h>
9 #include <sys/queue.h>
10 
11 #include <rte_ethdev_driver.h>
12 #include <rte_flow.h>
13 #include <rte_spinlock.h>
14 #include <rte_bitmap.h>
15 #include <rte_flow_driver.h>
16 
17 #include "rte_eth_bond.h"
18 #include "rte_eth_bond_8023ad_private.h"
19 #include "rte_eth_bond_alb.h"
20 
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")
31 
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")
35 
36 extern int bond_logtype;
37 
38 #define RTE_BOND_LOG(lvl, msg, ...) \
39  rte_log(RTE_LOG_ ## lvl, bond_logtype, \
40  "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
41 
42 #define BONDING_MODE_INVALID 0xFF
43 
44 extern const char *pmd_bond_init_valid_arguments[];
45 
46 extern struct rte_vdev_driver pmd_bond_drv;
47 
48 extern const struct rte_flow_ops bond_flow_ops;
49 
51 struct bond_rx_queue {
52  uint16_t queue_id;
54  uint16_t active_slave;
58  uint16_t nb_rx_desc;
64 };
65 
66 struct bond_tx_queue {
67  uint16_t queue_id;
69  struct bond_dev_private *dev_private;
71  uint16_t nb_tx_desc;
73  struct rte_eth_txconf tx_conf;
75 };
76 
79  uint16_t slaves[RTE_MAX_ETHPORTS];
80  uint16_t slave_count;
81 };
82 
83 struct bond_slave_details {
84  uint16_t port_id;
85 
86  uint8_t link_status_poll_enabled;
87  uint8_t link_status_wait_to_complete;
88  uint8_t last_link_status;
90  struct ether_addr persisted_mac_addr;
91 
92  uint16_t reta_size;
93 };
94 
95 struct rte_flow {
96  TAILQ_ENTRY(rte_flow) next;
97  /* Slaves flows */
98  struct rte_flow *flows[RTE_MAX_ETHPORTS];
99  /* Flow description for synchronization */
100  struct rte_flow_conv_rule rule;
101  uint8_t rule_data[];
102 };
103 
104 typedef void (*burst_xmit_hash_t)(struct rte_mbuf **buf, uint16_t nb_pkts,
105  uint16_t slave_count, uint16_t *slaves);
106 
109  uint16_t port_id;
110  uint8_t mode;
112  rte_spinlock_t lock;
113  rte_spinlock_t lsc_lock;
114 
115  uint16_t primary_port;
122  burst_xmit_hash_t burst_xmit_hash;
127  uint8_t promiscuous_en;
131  uint8_t link_status_polling_enabled;
132  uint32_t link_status_polling_interval_ms;
133 
134  uint32_t link_down_delay_ms;
135  uint32_t link_up_delay_ms;
136 
137  uint16_t nb_rx_queues;
138  uint16_t nb_tx_queues;
141  uint16_t active_slaves[RTE_MAX_ETHPORTS];
143  uint16_t slave_count;
144  struct bond_slave_details slaves[RTE_MAX_ETHPORTS];
147  struct mode8023ad_private mode4;
148  uint16_t tlb_slaves_order[RTE_MAX_ETHPORTS];
150  struct mode_alb_private mode6;
151 
152  uint64_t rx_offload_capa;
153  uint64_t tx_offload_capa;
158  TAILQ_HEAD(sub_flows, rte_flow) flow_list;
159 
161  int flow_isolated;
162  int flow_isolated_valid;
163 
165  uint64_t flow_type_rss_offloads;
166 
167  struct rte_eth_rxconf default_rxconf;
168  struct rte_eth_txconf default_txconf;
169  struct rte_eth_desc_lim rx_desc_lim;
170  struct rte_eth_desc_lim tx_desc_lim;
172  uint16_t reta_size;
173  struct rte_eth_rss_reta_entry64 reta_conf[ETH_RSS_RETA_SIZE_512 /
174  RTE_RETA_GROUP_SIZE];
175 
176  uint8_t rss_key[52];
177  uint8_t rss_key_len;
179  struct rte_kvargs *kvlist;
180  uint8_t slave_update_idx;
181 
182  uint32_t candidate_max_rx_pktlen;
183  uint32_t max_rx_pktlen;
184 
185  void *vlan_filter_bmpmem; /* enabled vlan filter bitmap */
186  struct rte_bitmap *vlan_filter_bmp;
187 };
188 
189 extern const struct eth_dev_ops default_dev_ops;
190 
191 int
192 check_for_master_bonded_ethdev(const struct rte_eth_dev *eth_dev);
193 
194 int
195 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev);
196 
197 /* Search given slave array to find position of given id.
198  * Return slave pos or slaves_count if not found. */
199 static inline uint16_t
200 find_slave_by_id(uint16_t *slaves, uint16_t slaves_count, uint16_t slave_id) {
201 
202  uint16_t pos;
203  for (pos = 0; pos < slaves_count; pos++) {
204  if (slave_id == slaves[pos])
205  break;
206  }
207 
208  return pos;
209 }
210 
211 int
212 valid_port_id(uint16_t port_id);
213 
214 int
215 valid_bonded_port_id(uint16_t port_id);
216 
217 int
218 valid_slave_port_id(uint16_t port_id, uint8_t mode);
219 
220 void
221 deactivate_slave(struct rte_eth_dev *eth_dev, uint16_t port_id);
222 
223 void
224 activate_slave(struct rte_eth_dev *eth_dev, uint16_t port_id);
225 
226 int
227 mac_address_set(struct rte_eth_dev *eth_dev, struct ether_addr *new_mac_addr);
228 
229 int
230 mac_address_get(struct rte_eth_dev *eth_dev, struct ether_addr *dst_mac_addr);
231 
232 int
233 mac_address_slaves_update(struct rte_eth_dev *bonded_eth_dev);
234 
235 int
236 slave_add_mac_addresses(struct rte_eth_dev *bonded_eth_dev,
237  uint16_t slave_port_id);
238 
239 int
240 slave_remove_mac_addresses(struct rte_eth_dev *bonded_eth_dev,
241  uint16_t slave_port_id);
242 
243 int
244 bond_ethdev_mode_set(struct rte_eth_dev *eth_dev, int mode);
245 
246 int
247 slave_configure(struct rte_eth_dev *bonded_eth_dev,
248  struct rte_eth_dev *slave_eth_dev);
249 
250 void
251 slave_remove(struct bond_dev_private *internals,
252  struct rte_eth_dev *slave_eth_dev);
253 
254 void
255 slave_add(struct bond_dev_private *internals,
256  struct rte_eth_dev *slave_eth_dev);
257 
258 void
259 burst_xmit_l2_hash(struct rte_mbuf **buf, uint16_t nb_pkts,
260  uint16_t slave_count, uint16_t *slaves);
261 
262 void
263 burst_xmit_l23_hash(struct rte_mbuf **buf, uint16_t nb_pkts,
264  uint16_t slave_count, uint16_t *slaves);
265 
266 void
267 burst_xmit_l34_hash(struct rte_mbuf **buf, uint16_t nb_pkts,
268  uint16_t slave_count, uint16_t *slaves);
269 
270 
271 void
272 bond_ethdev_primary_set(struct bond_dev_private *internals,
273  uint16_t slave_port_id);
274 
275 int
276 bond_ethdev_lsc_event_callback(uint16_t port_id, enum rte_eth_event_type type,
277  void *param, void *ret_param);
278 
279 int
280 bond_ethdev_parse_slave_port_kvarg(const char *key,
281  const char *value, void *extra_args);
282 
283 int
284 bond_ethdev_parse_slave_mode_kvarg(const char *key,
285  const char *value, void *extra_args);
286 
287 int
288 bond_ethdev_parse_slave_agg_mode_kvarg(const char *key __rte_unused,
289  const char *value, void *extra_args);
290 
291 int
292 bond_ethdev_parse_socket_id_kvarg(const char *key,
293  const char *value, void *extra_args);
294 
295 int
296 bond_ethdev_parse_primary_slave_port_id_kvarg(const char *key,
297  const char *value, void *extra_args);
298 
299 int
300 bond_ethdev_parse_balance_xmit_policy_kvarg(const char *key,
301  const char *value, void *extra_args);
302 
303 int
304 bond_ethdev_parse_bond_mac_addr_kvarg(const char *key,
305  const char *value, void *extra_args);
306 
307 int
308 bond_ethdev_parse_time_ms_kvarg(const char *key,
309  const char *value, void *extra_args);
310 
311 void
312 bond_tlb_disable(struct bond_dev_private *internals);
313 
314 void
315 bond_tlb_enable(struct bond_dev_private *internals);
316 
317 void
318 bond_tlb_activate_slave(struct bond_dev_private *internals);
319 
320 void
321 bond_ethdev_stop(struct rte_eth_dev *eth_dev);
322 
323 void
324 bond_ethdev_close(struct rte_eth_dev *dev);
325 
326 #endif
uint16_t user_defined_primary_port
burst_xmit_hash_t burst_xmit_hash
TAILQ_HEAD(rte_bus_list, rte_bus)
#define __rte_unused
Definition: rte_common.h:81
struct bond_dev_private * dev_private
struct rte_mempool * mb_pool
uint16_t slaves[RTE_MAX_ETHPORTS]
struct rte_eth_rxconf rx_conf
rte_eth_event_type
Definition: rte_ethdev.h:2616