Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright(c) 2017 Intel Corporation
3 : : */
4 : :
5 : : #ifndef _IAVF_ETHDEV_H_
6 : : #define _IAVF_ETHDEV_H_
7 : :
8 : : #include <sys/queue.h>
9 : :
10 : : #include <rte_kvargs.h>
11 : : #include <rte_tm_driver.h>
12 : :
13 : : #include <iavf_prototype.h>
14 : : #include <iavf_adminq_cmd.h>
15 : : #include <iavf_type.h>
16 : :
17 : : #include "iavf_log.h"
18 : :
19 : : #define IAVF_AQ_LEN 32
20 : : #define IAVF_AQ_BUF_SZ 4096
21 : : #define IAVF_RESET_WAIT_CNT 500
22 : : #define IAVF_BUF_SIZE_MIN 1024
23 : : #define IAVF_FRAME_SIZE_MAX 9728
24 : : #define IAVF_QUEUE_BASE_ADDR_UNIT 128
25 : :
26 : : #define IAVF_MAX_NUM_QUEUES_DFLT 16
27 : : #define IAVF_MAX_NUM_QUEUES_LV 256
28 : : #define IAVF_CFG_Q_NUM_PER_BUF 32
29 : : #define IAVF_IRQ_MAP_NUM_PER_BUF 128
30 : : #define IAVF_RXTX_QUEUE_CHUNKS_NUM 2
31 : :
32 : : #define IAVF_NUM_MACADDR_MAX 64
33 : :
34 : : #define IAVF_DEV_WATCHDOG_PERIOD 2000 /* microseconds, set 0 to disable*/
35 : :
36 : : #define IAVF_DEFAULT_RX_PTHRESH 8
37 : : #define IAVF_DEFAULT_RX_HTHRESH 8
38 : : #define IAVF_DEFAULT_RX_WTHRESH 0
39 : :
40 : : #define IAVF_DEFAULT_RX_FREE_THRESH 32
41 : :
42 : : #define IAVF_DEFAULT_TX_PTHRESH 32
43 : : #define IAVF_DEFAULT_TX_HTHRESH 0
44 : : #define IAVF_DEFAULT_TX_WTHRESH 0
45 : :
46 : : #define IAVF_DEFAULT_TX_FREE_THRESH 32
47 : : #define IAVF_DEFAULT_TX_RS_THRESH 32
48 : :
49 : : #define IAVF_BASIC_OFFLOAD_CAPS ( \
50 : : VF_BASE_MODE_OFFLOADS | \
51 : : VIRTCHNL_VF_OFFLOAD_WB_ON_ITR | \
52 : : VIRTCHNL_VF_OFFLOAD_RX_POLLING)
53 : :
54 : : #define IAVF_RSS_OFFLOAD_ALL ( \
55 : : RTE_ETH_RSS_IPV4 | \
56 : : RTE_ETH_RSS_FRAG_IPV4 | \
57 : : RTE_ETH_RSS_NONFRAG_IPV4_TCP | \
58 : : RTE_ETH_RSS_NONFRAG_IPV4_UDP | \
59 : : RTE_ETH_RSS_NONFRAG_IPV4_SCTP | \
60 : : RTE_ETH_RSS_NONFRAG_IPV4_OTHER | \
61 : : RTE_ETH_RSS_IPV6 | \
62 : : RTE_ETH_RSS_FRAG_IPV6 | \
63 : : RTE_ETH_RSS_NONFRAG_IPV6_TCP | \
64 : : RTE_ETH_RSS_NONFRAG_IPV6_UDP | \
65 : : RTE_ETH_RSS_NONFRAG_IPV6_SCTP | \
66 : : RTE_ETH_RSS_NONFRAG_IPV6_OTHER)
67 : :
68 : : #define IAVF_MISC_VEC_ID RTE_INTR_VEC_ZERO_OFFSET
69 : : #define IAVF_RX_VEC_START RTE_INTR_VEC_RXTX_OFFSET
70 : :
71 : : /* Default queue interrupt throttling time in microseconds */
72 : : #define IAVF_ITR_INDEX_DEFAULT 0
73 : : #define IAVF_QUEUE_ITR_INTERVAL_DEFAULT 32 /* 32 us */
74 : : #define IAVF_QUEUE_ITR_INTERVAL_MAX 8160 /* 8160 us */
75 : :
76 : : #define IAVF_ALARM_INTERVAL 50000 /* us */
77 : :
78 : : /* The overhead from MTU to max frame size.
79 : : * Considering QinQ packet, the VLAN tag needs to be counted twice.
80 : : */
81 : : #define IAVF_ETH_OVERHEAD \
82 : : (RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN + RTE_VLAN_HLEN * 2)
83 : : #define IAVF_ETH_MAX_LEN (RTE_ETHER_MTU + IAVF_ETH_OVERHEAD)
84 : :
85 : : #define IAVF_32_BIT_WIDTH (CHAR_BIT * 4)
86 : : #define IAVF_48_BIT_WIDTH (CHAR_BIT * 6)
87 : : #define IAVF_48_BIT_MASK RTE_LEN2MASK(IAVF_48_BIT_WIDTH, uint64_t)
88 : :
89 : : #define IAVF_RX_DESC_EXT_STATUS_FLEXBH_MASK 0x03
90 : : #define IAVF_RX_DESC_EXT_STATUS_FLEXBH_FD_ID 0x01
91 : :
92 : : #define IAVF_BITS_PER_BYTE 8
93 : :
94 : : #define IAVF_VLAN_TAG_PCP_OFFSET 13
95 : :
96 : : #define IAVF_L2TPV2_FLAGS_LEN 0x4000
97 : :
98 : : struct iavf_adapter;
99 : : struct iavf_rx_queue;
100 : : struct iavf_tx_queue;
101 : :
102 : :
103 : : struct iavf_ipsec_crypto_stats {
104 : : uint64_t icount;
105 : : uint64_t ibytes;
106 : : struct {
107 : : uint64_t count;
108 : : uint64_t sad_miss;
109 : : uint64_t not_processed;
110 : : uint64_t icv_check;
111 : : uint64_t ipsec_length;
112 : : uint64_t misc;
113 : : } ierrors;
114 : : };
115 : :
116 : : struct iavf_eth_xstats {
117 : : struct virtchnl_eth_stats eth_stats;
118 : : struct iavf_ipsec_crypto_stats ips_stats;
119 : : };
120 : :
121 : : /* Structure that defines a VSI, associated with a adapter. */
122 : : struct iavf_vsi {
123 : : struct iavf_adapter *adapter; /* Backreference to associated adapter */
124 : : uint16_t vsi_id;
125 : : uint16_t nb_qps; /* Number of queue pairs VSI can occupy */
126 : : uint16_t nb_used_qps; /* Number of queue pairs VSI uses */
127 : : uint16_t max_macaddrs; /* Maximum number of MAC addresses */
128 : : uint16_t base_vector;
129 : : uint16_t msix_intr; /* The MSIX interrupt binds to VSI */
130 : : struct iavf_eth_xstats eth_stats_offset;
131 : : };
132 : :
133 : : struct rte_flow;
134 : : TAILQ_HEAD(iavf_flow_list, rte_flow);
135 : :
136 : : struct iavf_flow_parser_node;
137 : : TAILQ_HEAD(iavf_parser_list, iavf_flow_parser_node);
138 : :
139 : : struct iavf_fdir_conf {
140 : : struct virtchnl_fdir_add add_fltr;
141 : : struct virtchnl_fdir_del del_fltr;
142 : : uint64_t input_set;
143 : : uint32_t flow_id;
144 : : uint32_t mark_flag;
145 : : };
146 : :
147 : : struct iavf_fdir_info {
148 : : struct iavf_fdir_conf conf;
149 : : };
150 : :
151 : : struct iavf_fsub_conf {
152 : : struct virtchnl_flow_sub sub_fltr;
153 : : struct virtchnl_flow_unsub unsub_fltr;
154 : : uint64_t input_set;
155 : : uint32_t flow_id;
156 : : };
157 : :
158 : : struct iavf_qv_map {
159 : : uint16_t queue_id;
160 : : uint16_t vector_id;
161 : : };
162 : :
163 : : /* Message type read in admin queue from PF */
164 : : enum iavf_aq_result {
165 : : IAVF_MSG_ERR = -1, /* Meet error when accessing admin queue */
166 : : IAVF_MSG_NON, /* Read nothing from admin queue */
167 : : IAVF_MSG_SYS, /* Read system msg from admin queue */
168 : : IAVF_MSG_CMD, /* Read async command result */
169 : : };
170 : :
171 : : /* Struct to store Traffic Manager node configuration. */
172 : : struct iavf_tm_node {
173 : : TAILQ_ENTRY(iavf_tm_node) node;
174 : : uint32_t id;
175 : : uint32_t tc;
176 : : uint32_t priority;
177 : : uint32_t weight;
178 : : uint32_t reference_count;
179 : : struct iavf_tm_node *parent;
180 : : struct iavf_tm_shaper_profile *shaper_profile;
181 : : struct rte_tm_node_params params;
182 : : };
183 : :
184 : : TAILQ_HEAD(iavf_tm_node_list, iavf_tm_node);
185 : :
186 : : struct iavf_tm_shaper_profile {
187 : : TAILQ_ENTRY(iavf_tm_shaper_profile) node;
188 : : uint32_t shaper_profile_id;
189 : : uint32_t reference_count;
190 : : struct rte_tm_shaper_params profile;
191 : : };
192 : :
193 : : TAILQ_HEAD(iavf_shaper_profile_list, iavf_tm_shaper_profile);
194 : :
195 : : /* node type of Traffic Manager */
196 : : enum iavf_tm_node_type {
197 : : IAVF_TM_NODE_TYPE_PORT,
198 : : IAVF_TM_NODE_TYPE_TC,
199 : : IAVF_TM_NODE_TYPE_QUEUE,
200 : : IAVF_TM_NODE_TYPE_MAX,
201 : : };
202 : :
203 : : /* Struct to store all the Traffic Manager configuration. */
204 : : struct iavf_tm_conf {
205 : : struct iavf_tm_node *root; /* root node - vf vsi */
206 : : struct iavf_tm_node_list tc_list; /* node list for all the TCs */
207 : : struct iavf_tm_node_list queue_list; /* node list for all the queues */
208 : : struct iavf_shaper_profile_list shaper_profile_list;
209 : : uint32_t nb_tc_node;
210 : : uint32_t nb_queue_node;
211 : : bool committed;
212 : : };
213 : :
214 : : /* Struct to store queue TC mapping. Queue is continuous in one TC */
215 : : struct iavf_qtc_map {
216 : : uint8_t tc;
217 : : uint16_t start_queue_id;
218 : : uint16_t queue_count;
219 : : };
220 : :
221 : : /* Structure to store private data specific for VF instance. */
222 : : struct iavf_info {
223 : : uint16_t num_queue_pairs;
224 : : uint16_t max_pkt_len; /* Maximum packet length */
225 : : uint16_t mac_num; /* Number of MAC addresses */
226 : : bool promisc_unicast_enabled;
227 : : bool promisc_multicast_enabled;
228 : :
229 : : struct virtchnl_version_info virtchnl_version;
230 : : struct virtchnl_vf_resource *vf_res; /* VF resource */
231 : : struct virtchnl_vsi_resource *vsi_res; /* LAN VSI */
232 : : struct virtchnl_vlan_caps vlan_v2_caps;
233 : : uint64_t supported_rxdid;
234 : : uint8_t *proto_xtr; /* proto xtr type for all queues */
235 : : volatile enum virtchnl_ops pend_cmd; /* pending command not finished */
236 : : uint32_t pend_cmd_count;
237 : : int cmd_retval; /* return value of the cmd response from PF */
238 : : uint8_t *aq_resp; /* buffer to store the adminq response from PF */
239 : :
240 : : /** iAVF watchdog enable */
241 : : bool watchdog_enabled;
242 : :
243 : : /* Event from pf */
244 : : bool dev_closed;
245 : : bool link_up;
246 : : uint32_t link_speed;
247 : :
248 : : /* Multicast addrs */
249 : : struct rte_ether_addr mc_addrs[IAVF_NUM_MACADDR_MAX];
250 : : uint16_t mc_addrs_num; /* Multicast mac addresses number */
251 : :
252 : : struct iavf_vsi vsi;
253 : : bool vf_reset; /* true for VF reset pending, false for no VF reset */
254 : : uint64_t flags;
255 : :
256 : : uint8_t *rss_lut;
257 : : uint8_t *rss_key;
258 : : uint64_t rss_hf;
259 : : uint16_t nb_msix; /* number of MSI-X interrupts on Rx */
260 : : uint16_t msix_base; /* msix vector base from */
261 : : uint16_t max_rss_qregion; /* max RSS queue region supported by PF */
262 : : struct iavf_qv_map *qv_map; /* queue vector mapping */
263 : : struct iavf_flow_list flow_list;
264 : : rte_spinlock_t flow_ops_lock;
265 : : rte_spinlock_t aq_lock;
266 : : struct iavf_parser_list rss_parser_list;
267 : : struct iavf_parser_list dist_parser_list;
268 : : struct iavf_parser_list ipsec_crypto_parser_list;
269 : :
270 : : struct iavf_fdir_info fdir; /* flow director info */
271 : : /* indicate large VF support enabled or not */
272 : : bool lv_enabled;
273 : :
274 : : struct virtchnl_qos_cap_list *qos_cap;
275 : : struct iavf_qtc_map *qtc_map;
276 : : struct iavf_tm_conf tm_conf;
277 : :
278 : : struct rte_eth_dev *eth_dev;
279 : :
280 : : bool in_reset_recovery;
281 : :
282 : : uint32_t ptp_caps;
283 : : rte_spinlock_t phc_time_aq_lock;
284 : : };
285 : :
286 : : #define IAVF_MAX_PKT_TYPE 1024
287 : :
288 : : #define IAVF_MAX_QUEUE_NUM 2048
289 : :
290 : : enum iavf_proto_xtr_type {
291 : : IAVF_PROTO_XTR_NONE,
292 : : IAVF_PROTO_XTR_VLAN,
293 : : IAVF_PROTO_XTR_IPV4,
294 : : IAVF_PROTO_XTR_IPV6,
295 : : IAVF_PROTO_XTR_IPV6_FLOW,
296 : : IAVF_PROTO_XTR_TCP,
297 : : IAVF_PROTO_XTR_IP_OFFSET,
298 : : IAVF_PROTO_XTR_IPSEC_CRYPTO_SAID,
299 : : IAVF_PROTO_XTR_MAX,
300 : : };
301 : :
302 : : /**
303 : : * Cache devargs parse result.
304 : : */
305 : : struct iavf_devargs {
306 : : uint8_t proto_xtr_dflt;
307 : : uint8_t proto_xtr[IAVF_MAX_QUEUE_NUM];
308 : : uint16_t quanta_size;
309 : : uint32_t watchdog_period;
310 : : int auto_reset;
311 : : int no_poll_on_link_down;
312 : : };
313 : :
314 : : struct iavf_security_ctx;
315 : :
316 : : /* Structure to store private data for each VF instance. */
317 : : struct iavf_adapter {
318 : : struct iavf_hw hw;
319 : : struct rte_eth_dev_data *dev_data;
320 : : struct iavf_info vf;
321 : : struct iavf_security_ctx *security_ctx;
322 : :
323 : : bool rx_bulk_alloc_allowed;
324 : : /* For vector PMD */
325 : : bool rx_vec_allowed;
326 : : bool tx_vec_allowed;
327 : : uint32_t ptype_tbl[IAVF_MAX_PKT_TYPE] __rte_cache_min_aligned;
328 : : bool stopped;
329 : : bool closed;
330 : : bool no_poll;
331 : : eth_rx_burst_t rx_pkt_burst;
332 : : eth_tx_burst_t tx_pkt_burst;
333 : : uint16_t fdir_ref_cnt;
334 : : struct iavf_devargs devargs;
335 : : };
336 : :
337 : : /* IAVF_DEV_PRIVATE_TO */
338 : : #define IAVF_DEV_PRIVATE_TO_ADAPTER(adapter) \
339 : : ((struct iavf_adapter *)adapter)
340 : : #define IAVF_DEV_PRIVATE_TO_VF(adapter) \
341 : : (&((struct iavf_adapter *)adapter)->vf)
342 : : #define IAVF_DEV_PRIVATE_TO_HW(adapter) \
343 : : (&((struct iavf_adapter *)adapter)->hw)
344 : : #define IAVF_DEV_PRIVATE_TO_IAVF_SECURITY_CTX(adapter) \
345 : : (((struct iavf_adapter *)adapter)->security_ctx)
346 : :
347 : : /* IAVF_VSI_TO */
348 : : #define IAVF_VSI_TO_HW(vsi) \
349 : : (&(((struct iavf_vsi *)vsi)->adapter->hw))
350 : : #define IAVF_VSI_TO_VF(vsi) \
351 : : (&(((struct iavf_vsi *)vsi)->adapter->vf))
352 : :
353 : : static inline void
354 : : iavf_init_adminq_parameter(struct iavf_hw *hw)
355 : : {
356 : 0 : hw->aq.num_arq_entries = IAVF_AQ_LEN;
357 : 0 : hw->aq.num_asq_entries = IAVF_AQ_LEN;
358 : 0 : hw->aq.arq_buf_size = IAVF_AQ_BUF_SZ;
359 : 0 : hw->aq.asq_buf_size = IAVF_AQ_BUF_SZ;
360 : : }
361 : :
362 : : static inline uint16_t
363 : : iavf_calc_itr_interval(int16_t interval)
364 : : {
365 : : if (interval < 0 || interval > IAVF_QUEUE_ITR_INTERVAL_MAX)
366 : : interval = IAVF_QUEUE_ITR_INTERVAL_DEFAULT;
367 : :
368 : : /* Convert to hardware count, as writing each 1 represents 2 us */
369 : : return interval / 2;
370 : : }
371 : :
372 : : /* structure used for sending and checking response of virtchnl ops */
373 : : struct iavf_cmd_info {
374 : : enum virtchnl_ops ops;
375 : : uint8_t *in_args; /* buffer for sending */
376 : : uint32_t in_args_size; /* buffer size for sending */
377 : : uint8_t *out_buffer; /* buffer for response */
378 : : uint32_t out_size; /* buffer size for response */
379 : : };
380 : :
381 : : /* notify current command done. Only call in case execute
382 : : * _atomic_set_cmd successfully.
383 : : */
384 : : static inline void
385 : : _notify_cmd(struct iavf_info *vf, int msg_ret)
386 : : {
387 : 0 : vf->cmd_retval = msg_ret;
388 : : rte_wmb();
389 : 0 : vf->pend_cmd = VIRTCHNL_OP_UNKNOWN;
390 : 0 : }
391 : :
392 : : /* clear current command. Only call in case execute
393 : : * _atomic_set_cmd successfully.
394 : : */
395 : : static inline void
396 : : _clear_cmd(struct iavf_info *vf)
397 : : {
398 : : rte_wmb();
399 : 0 : vf->pend_cmd = VIRTCHNL_OP_UNKNOWN;
400 : 0 : vf->cmd_retval = VIRTCHNL_STATUS_SUCCESS;
401 : 0 : }
402 : :
403 : : /* Check there is pending cmd in execution. If none, set new command. */
404 : : static inline int
405 : 0 : _atomic_set_cmd(struct iavf_info *vf, enum virtchnl_ops ops)
406 : : {
407 : : enum virtchnl_ops op_unk = VIRTCHNL_OP_UNKNOWN;
408 : 0 : int ret = __atomic_compare_exchange(&vf->pend_cmd, &op_unk, &ops,
409 : : 0, __ATOMIC_ACQUIRE, __ATOMIC_ACQUIRE);
410 : :
411 [ # # ]: 0 : if (!ret)
412 : 0 : PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
413 : :
414 : 0 : __atomic_store_n(&vf->pend_cmd_count, 1, __ATOMIC_RELAXED);
415 : :
416 : 0 : return !ret;
417 : : }
418 : :
419 : : /* Check there is pending cmd in execution. If none, set new command. */
420 : : static inline int
421 : 0 : _atomic_set_async_response_cmd(struct iavf_info *vf, enum virtchnl_ops ops)
422 : : {
423 : : enum virtchnl_ops op_unk = VIRTCHNL_OP_UNKNOWN;
424 : 0 : int ret = __atomic_compare_exchange(&vf->pend_cmd, &op_unk, &ops,
425 : : 0, __ATOMIC_ACQUIRE, __ATOMIC_ACQUIRE);
426 : :
427 [ # # ]: 0 : if (!ret)
428 : 0 : PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
429 : :
430 : 0 : __atomic_store_n(&vf->pend_cmd_count, 2, __ATOMIC_RELAXED);
431 : :
432 : 0 : return !ret;
433 : : }
434 : : int iavf_check_api_version(struct iavf_adapter *adapter);
435 : : int iavf_get_vf_resource(struct iavf_adapter *adapter);
436 : : void iavf_dev_event_post(struct rte_eth_dev *dev,
437 : : enum rte_eth_event_type event,
438 : : void *param, size_t param_alloc_size);
439 : : void iavf_dev_event_handler_fini(void);
440 : : int iavf_dev_event_handler_init(void);
441 : : void iavf_handle_virtchnl_msg(struct rte_eth_dev *dev);
442 : : int iavf_enable_vlan_strip(struct iavf_adapter *adapter);
443 : : int iavf_disable_vlan_strip(struct iavf_adapter *adapter);
444 : : int iavf_switch_queue(struct iavf_adapter *adapter, uint16_t qid,
445 : : bool rx, bool on);
446 : : int iavf_switch_queue_lv(struct iavf_adapter *adapter, uint16_t qid,
447 : : bool rx, bool on);
448 : : int iavf_enable_queues(struct iavf_adapter *adapter);
449 : : int iavf_enable_queues_lv(struct iavf_adapter *adapter);
450 : : int iavf_disable_queues(struct iavf_adapter *adapter);
451 : : int iavf_disable_queues_lv(struct iavf_adapter *adapter);
452 : : int iavf_configure_rss_lut(struct iavf_adapter *adapter);
453 : : int iavf_configure_rss_key(struct iavf_adapter *adapter);
454 : : int iavf_configure_queues(struct iavf_adapter *adapter,
455 : : uint16_t num_queue_pairs, uint16_t index);
456 : : int iavf_get_supported_rxdid(struct iavf_adapter *adapter);
457 : : int iavf_config_vlan_strip_v2(struct iavf_adapter *adapter, bool enable);
458 : : int iavf_config_vlan_insert_v2(struct iavf_adapter *adapter, bool enable);
459 : : int iavf_add_del_vlan_v2(struct iavf_adapter *adapter, uint16_t vlanid,
460 : : bool add);
461 : : int iavf_get_vlan_offload_caps_v2(struct iavf_adapter *adapter);
462 : : int iavf_config_irq_map(struct iavf_adapter *adapter);
463 : : int iavf_config_irq_map_lv(struct iavf_adapter *adapter, uint16_t num,
464 : : uint16_t index);
465 : : void iavf_add_del_all_mac_addr(struct iavf_adapter *adapter, bool add);
466 : : int iavf_dev_link_update(struct rte_eth_dev *dev,
467 : : __rte_unused int wait_to_complete);
468 : : void iavf_dev_alarm_handler(void *param);
469 : : int iavf_query_stats(struct iavf_adapter *adapter,
470 : : struct virtchnl_eth_stats **pstats);
471 : : int iavf_config_promisc(struct iavf_adapter *adapter, bool enable_unicast,
472 : : bool enable_multicast);
473 : : int iavf_add_del_eth_addr(struct iavf_adapter *adapter,
474 : : struct rte_ether_addr *addr, bool add, uint8_t type);
475 : : int iavf_add_del_vlan(struct iavf_adapter *adapter, uint16_t vlanid, bool add);
476 : : int iavf_fdir_add(struct iavf_adapter *adapter, struct iavf_fdir_conf *filter);
477 : : int iavf_fdir_del(struct iavf_adapter *adapter, struct iavf_fdir_conf *filter);
478 : : int iavf_fdir_check(struct iavf_adapter *adapter,
479 : : struct iavf_fdir_conf *filter);
480 : : int iavf_add_del_rss_cfg(struct iavf_adapter *adapter,
481 : : struct virtchnl_rss_cfg *rss_cfg, bool add);
482 : : int iavf_get_hena_caps(struct iavf_adapter *adapter, uint64_t *caps);
483 : : int iavf_set_hena(struct iavf_adapter *adapter, uint64_t hena);
484 : : int iavf_rss_hash_set(struct iavf_adapter *ad, uint64_t rss_hf, bool add);
485 : : int iavf_add_del_mc_addr_list(struct iavf_adapter *adapter,
486 : : struct rte_ether_addr *mc_addrs,
487 : : uint32_t mc_addrs_num, bool add);
488 : : int iavf_request_queues(struct rte_eth_dev *dev, uint16_t num);
489 : : int iavf_get_max_rss_queue_region(struct iavf_adapter *adapter);
490 : : int iavf_get_qos_cap(struct iavf_adapter *adapter);
491 : : int iavf_set_q_bw(struct rte_eth_dev *dev,
492 : : struct virtchnl_queues_bw_cfg *q_bw, uint16_t size);
493 : : int iavf_set_q_tc_map(struct rte_eth_dev *dev,
494 : : struct virtchnl_queue_tc_mapping *q_tc_mapping,
495 : : uint16_t size);
496 : : int iavf_set_vf_quanta_size(struct iavf_adapter *adapter, u16 start_queue_id,
497 : : u16 num_queues);
498 : : void iavf_tm_conf_init(struct rte_eth_dev *dev);
499 : : void iavf_tm_conf_uninit(struct rte_eth_dev *dev);
500 : : int iavf_ipsec_crypto_request(struct iavf_adapter *adapter,
501 : : uint8_t *msg, size_t msg_len,
502 : : uint8_t *resp_msg, size_t resp_msg_len);
503 : : extern const struct rte_tm_ops iavf_tm_ops;
504 : : int iavf_get_ptp_cap(struct iavf_adapter *adapter);
505 : : int iavf_get_phc_time(struct iavf_rx_queue *rxq);
506 : : int iavf_flow_sub(struct iavf_adapter *adapter,
507 : : struct iavf_fsub_conf *filter);
508 : : int iavf_flow_unsub(struct iavf_adapter *adapter,
509 : : struct iavf_fsub_conf *filter);
510 : : int iavf_flow_sub_check(struct iavf_adapter *adapter,
511 : : struct iavf_fsub_conf *filter);
512 : : void iavf_dev_watchdog_enable(struct iavf_adapter *adapter);
513 : : void iavf_dev_watchdog_disable(struct iavf_adapter *adapter);
514 : : int iavf_handle_hw_reset(struct rte_eth_dev *dev);
515 : : #endif /* _IAVF_ETHDEV_H_ */
|