xref: /dpdk/drivers/net/ice/base/ice_switch.h (revision b19f366c)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2021 Intel Corporation
3  */
4 
5 #ifndef _ICE_SWITCH_H_
6 #define _ICE_SWITCH_H_
7 
8 #include "ice_common.h"
9 #include "ice_protocol_type.h"
10 
11 #define ICE_SW_CFG_MAX_BUF_LEN 2048
12 #define ICE_MAX_SW 256
13 #define ICE_DFLT_VSI_INVAL 0xff
14 #define ICE_FLTR_RX BIT(0)
15 #define ICE_FLTR_TX BIT(1)
16 #define ICE_FLTR_TX_RX (ICE_FLTR_RX | ICE_FLTR_TX)
17 
18 /* Switch Profile IDs for Profile related switch rules */
19 #define ICE_PROFID_IPV4_TCP		4
20 #define ICE_PROFID_IPV4_UDP		5
21 #define ICE_PROFID_IPV6_TCP		7
22 #define ICE_PROFID_IPV6_UDP		8
23 #define ICE_PROFID_PPPOE_PAY		34
24 #define ICE_PROFID_PPPOE_IPV4_TCP	35
25 #define ICE_PROFID_PPPOE_IPV4_UDP	36
26 #define ICE_PROFID_PPPOE_IPV4_OTHER	37
27 #define ICE_PROFID_PPPOE_IPV6_TCP	38
28 #define ICE_PROFID_PPPOE_IPV6_UDP	39
29 #define ICE_PROFID_PPPOE_IPV6_OTHER	40
30 #define ICE_PROFID_IPV4_GTPC_TEID	41
31 #define ICE_PROFID_IPV4_GTPU_TEID		43
32 #define ICE_PROFID_IPV6_GTPU_TEID		46
33 #define ICE_PROFID_IPV4_GTPU_EH_IPV4_OTHER	47
34 #define ICE_PROFID_IPV4_GTPU_IPV4_OTHER		48
35 #define ICE_PROFID_IPV4_GTPU_EH_IPV4_UDP	49
36 #define ICE_PROFID_IPV4_GTPU_IPV4_UDP		50
37 #define ICE_PROFID_IPV4_GTPU_EH_IPV4_TCP	51
38 #define ICE_PROFID_IPV4_GTPU_IPV4_TCP		52
39 #define ICE_PROFID_IPV6_GTPU_EH_IPV4_OTHER	53
40 #define ICE_PROFID_IPV6_GTPU_IPV4_OTHER		54
41 #define ICE_PROFID_IPV6_GTPU_EH_IPV4_UDP	55
42 #define ICE_PROFID_IPV6_GTPU_IPV4_UDP		56
43 #define ICE_PROFID_IPV6_GTPU_EH_IPV4_TCP	57
44 #define ICE_PROFID_IPV6_GTPU_IPV4_TCP		58
45 #define ICE_PROFID_IPV4_GTPU_EH_IPV6_OTHER	59
46 #define ICE_PROFID_IPV4_GTPU_IPV6_OTHER		60
47 #define ICE_PROFID_IPV4_GTPU_EH_IPV6_UDP	61
48 #define ICE_PROFID_IPV4_GTPU_IPV6_UDP		62
49 #define ICE_PROFID_IPV4_GTPU_EH_IPV6_TCP	63
50 #define ICE_PROFID_IPV4_GTPU_IPV6_TCP		64
51 #define ICE_PROFID_IPV6_GTPU_EH_IPV6_OTHER	65
52 #define ICE_PROFID_IPV6_GTPU_IPV6_OTHER		66
53 #define ICE_PROFID_IPV6_GTPU_EH_IPV6_UDP	67
54 #define ICE_PROFID_IPV6_GTPU_IPV6_UDP		68
55 #define ICE_PROFID_IPV6_GTPU_EH_IPV6_TCP	69
56 #define ICE_PROFID_IPV6_GTPU_IPV6_TCP		70
57 #define ICE_PROFID_IPV4_ESP		71
58 #define ICE_PROFID_IPV6_ESP		72
59 #define ICE_PROFID_IPV4_AH		73
60 #define ICE_PROFID_IPV6_AH		74
61 #define ICE_PROFID_IPV4_NAT_T		75
62 #define ICE_PROFID_IPV6_NAT_T		76
63 #define ICE_PROFID_MAC_IPV4_L2TPV3	77
64 #define ICE_PROFID_MAC_IPV6_L2TPV3	78
65 #define ICE_PROFID_IPV4_PFCP_NODE	79
66 #define ICE_PROFID_IPV4_PFCP_SESSION	80
67 #define ICE_PROFID_IPV6_PFCP_NODE	81
68 #define ICE_PROFID_IPV6_PFCP_SESSION	82
69 
70 #define DUMMY_ETH_HDR_LEN		16
71 #define ICE_SW_RULE_RX_TX_ETH_HDR_SIZE \
72 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lkup_tx_rx.hdr) + \
73 	 (DUMMY_ETH_HDR_LEN * \
74 	  sizeof(((struct ice_sw_rule_lkup_rx_tx *)0)->hdr[0])))
75 #define ICE_SW_RULE_RX_TX_NO_HDR_SIZE \
76 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lkup_tx_rx.hdr))
77 #define ICE_SW_RULE_LG_ACT_SIZE(n) \
78 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lg_act.act) + \
79 	 ((n) * sizeof(((struct ice_sw_rule_lg_act *)0)->act[0])))
80 #define ICE_SW_RULE_VSI_LIST_SIZE(n) \
81 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.vsi_list.vsi) + \
82 	 ((n) * sizeof(((struct ice_sw_rule_vsi_list *)0)->vsi[0])))
83 
84 /* Worst case buffer length for ice_aqc_opc_get_res_alloc */
85 #define ICE_MAX_RES_TYPES 0x80
86 #define ICE_AQ_GET_RES_ALLOC_BUF_LEN \
87 	(ICE_MAX_RES_TYPES * sizeof(struct ice_aqc_get_res_resp_elem))
88 
89 #define ICE_VSI_INVAL_ID 0xFFFF
90 #define ICE_INVAL_Q_HANDLE 0xFFFF
91 
92 /* VSI context structure for add/get/update/free operations */
93 struct ice_vsi_ctx {
94 	u16 vsi_num;
95 	u16 vsis_allocd;
96 	u16 vsis_unallocated;
97 	u16 flags;
98 	struct ice_aqc_vsi_props info;
99 	struct ice_sched_vsi_info sched;
100 	u8 alloc_from_pool;
101 	u16 num_lan_q_entries[ICE_MAX_TRAFFIC_CLASS];
102 	struct ice_q_ctx *lan_q_ctx[ICE_MAX_TRAFFIC_CLASS];
103 };
104 
105 /* This is to be used by add/update mirror rule Admin Queue command */
106 struct ice_mir_rule_buf {
107 	u16 vsi_idx; /* VSI index */
108 
109 	/* For each VSI, user can specify whether corresponding VSI
110 	 * should be added/removed to/from mirror rule
111 	 *
112 	 * add mirror rule: this should always be TRUE.
113 	 * update mirror rule:  add(true) or remove(false) VSI to/from
114 	 * mirror rule
115 	 */
116 	u8 add;
117 };
118 
119 /* Switch recipe ID enum values are specific to hardware */
120 enum ice_sw_lkup_type {
121 	ICE_SW_LKUP_ETHERTYPE = 0,
122 	ICE_SW_LKUP_MAC = 1,
123 	ICE_SW_LKUP_MAC_VLAN = 2,
124 	ICE_SW_LKUP_PROMISC = 3,
125 	ICE_SW_LKUP_VLAN = 4,
126 	ICE_SW_LKUP_DFLT = 5,
127 	ICE_SW_LKUP_ETHERTYPE_MAC = 8,
128 	ICE_SW_LKUP_PROMISC_VLAN = 9,
129 	ICE_SW_LKUP_LAST
130 };
131 
132 /* type of filter src ID */
133 enum ice_src_id {
134 	ICE_SRC_ID_UNKNOWN = 0,
135 	ICE_SRC_ID_VSI,
136 	ICE_SRC_ID_QUEUE,
137 	ICE_SRC_ID_LPORT,
138 };
139 
140 struct ice_fltr_info {
141 	/* Look up information: how to look up packet */
142 	enum ice_sw_lkup_type lkup_type;
143 	/* Forward action: filter action to do after lookup */
144 	enum ice_sw_fwd_act_type fltr_act;
145 	/* rule ID returned by firmware once filter rule is created */
146 	u16 fltr_rule_id;
147 	u16 flag;
148 
149 	/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
150 	u16 src;
151 	enum ice_src_id src_id;
152 
153 	union {
154 		struct {
155 			u8 mac_addr[ETH_ALEN];
156 		} mac;
157 		struct {
158 			u8 mac_addr[ETH_ALEN];
159 			u16 vlan_id;
160 		} mac_vlan;
161 		struct {
162 			u16 vlan_id;
163 			u16 tpid;
164 			u8 tpid_valid;
165 		} vlan;
166 		/* Set lkup_type as ICE_SW_LKUP_ETHERTYPE
167 		 * if just using ethertype as filter. Set lkup_type as
168 		 * ICE_SW_LKUP_ETHERTYPE_MAC if MAC also needs to be
169 		 * passed in as filter.
170 		 */
171 		struct {
172 			u16 ethertype;
173 			u8 mac_addr[ETH_ALEN]; /* optional */
174 		} ethertype_mac;
175 	} l_data; /* Make sure to zero out the memory of l_data before using
176 		   * it or only set the data associated with lookup match
177 		   * rest everything should be zero
178 		   */
179 
180 	/* Depending on filter action */
181 	union {
182 		/* queue ID in case of ICE_FWD_TO_Q and starting
183 		 * queue ID in case of ICE_FWD_TO_QGRP.
184 		 */
185 		u16 q_id:11;
186 		u16 hw_vsi_id:10;
187 		u16 vsi_list_id:10;
188 	} fwd_id;
189 
190 	/* Sw VSI handle */
191 	u16 vsi_handle;
192 
193 	/* Set to num_queues if action is ICE_FWD_TO_QGRP. This field
194 	 * determines the range of queues the packet needs to be forwarded to.
195 	 * Note that qgrp_size must be set to a power of 2.
196 	 */
197 	u8 qgrp_size;
198 
199 	/* Rule creations populate these indicators basing on the switch type */
200 	u8 lb_en;	/* Indicate if packet can be looped back */
201 	u8 lan_en;	/* Indicate if packet can be forwarded to the uplink */
202 };
203 
204 struct ice_update_recipe_lkup_idx_params {
205 	u16 rid;
206 	u16 fv_idx;
207 	bool ignore_valid;
208 	u16 mask;
209 	bool mask_valid;
210 	u8 lkup_idx;
211 };
212 
213 struct ice_adv_lkup_elem {
214 	enum ice_protocol_type type;
215 	union ice_prot_hdr h_u;	/* Header values */
216 	union ice_prot_hdr m_u;	/* Mask of header values to match */
217 };
218 
219 struct ice_prof_type_entry {
220 	u16 prof_id;
221 	enum ice_sw_tunnel_type type;
222 };
223 
224 struct ice_sw_act_ctrl {
225 	/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
226 	u16 src;
227 	u16 flag;
228 	enum ice_sw_fwd_act_type fltr_act;
229 	/* Depending on filter action */
230 	union {
231 		/* This is a queue ID in case of ICE_FWD_TO_Q and starting
232 		 * queue ID in case of ICE_FWD_TO_QGRP.
233 		 */
234 		u16 q_id:11;
235 		u16 vsi_id:10;
236 		u16 hw_vsi_id:10;
237 		u16 vsi_list_id:10;
238 	} fwd_id;
239 	/* software VSI handle */
240 	u16 vsi_handle;
241 	u8 qgrp_size;
242 };
243 
244 struct ice_rule_query_data {
245 	/* Recipe ID for which the requested rule was added */
246 	u16 rid;
247 	/* Rule ID that was added or is supposed to be removed */
248 	u16 rule_id;
249 	/* vsi_handle for which Rule was added or is supposed to be removed */
250 	u16 vsi_handle;
251 };
252 
253 struct ice_adv_rule_info {
254 	enum ice_sw_tunnel_type tun_type;
255 	struct ice_sw_act_ctrl sw_act;
256 	u32 priority;
257 	u8 rx; /* true means LOOKUP_RX otherwise LOOKUP_TX */
258 	u16 fltr_rule_id;
259 };
260 
261 /* A collection of one or more four word recipe */
262 struct ice_sw_recipe {
263 	/* For a chained recipe the root recipe is what should be used for
264 	 * programming rules
265 	 */
266 	u8 is_root;
267 	u8 root_rid;
268 	u8 recp_created;
269 
270 	/* Number of extraction words */
271 	u8 n_ext_words;
272 	/* Protocol ID and Offset pair (extraction word) to describe the
273 	 * recipe
274 	 */
275 	struct ice_fv_word ext_words[ICE_MAX_CHAIN_WORDS];
276 	u16 word_masks[ICE_MAX_CHAIN_WORDS];
277 
278 	/* if this recipe is a collection of other recipe */
279 	u8 big_recp;
280 
281 	/* if this recipe is part of another bigger recipe then chain index
282 	 * corresponding to this recipe
283 	 */
284 	u8 chain_idx;
285 
286 	/* if this recipe is a collection of other recipe then count of other
287 	 * recipes and recipe IDs of those recipes
288 	 */
289 	u8 n_grp_count;
290 
291 	/* Bit map specifying the IDs associated with this group of recipe */
292 	ice_declare_bitmap(r_bitmap, ICE_MAX_NUM_RECIPES);
293 
294 	enum ice_sw_tunnel_type tun_type;
295 
296 	/* List of type ice_fltr_mgmt_list_entry or adv_rule */
297 	u8 adv_rule;
298 	struct LIST_HEAD_TYPE filt_rules;
299 	struct LIST_HEAD_TYPE filt_replay_rules;
300 
301 	struct ice_lock filt_rule_lock;	/* protect filter rule structure */
302 
303 	/* Profiles this recipe should be associated with */
304 	struct LIST_HEAD_TYPE fv_list;
305 
306 	/* Profiles this recipe is associated with */
307 	u8 num_profs, *prof_ids;
308 
309 	/* Bit map for possible result indexes */
310 	ice_declare_bitmap(res_idxs, ICE_MAX_FV_WORDS);
311 
312 	/* This allows user to specify the recipe priority.
313 	 * For now, this becomes 'fwd_priority' when recipe
314 	 * is created, usually recipes can have 'fwd' and 'join'
315 	 * priority.
316 	 */
317 	u8 priority;
318 
319 	struct LIST_HEAD_TYPE rg_list;
320 
321 	/* AQ buffer associated with this recipe */
322 	struct ice_aqc_recipe_data_elem *root_buf;
323 	/* This struct saves the fv_words for a given lookup */
324 	struct ice_prot_lkup_ext lkup_exts;
325 };
326 
327 /* Bookkeeping structure to hold bitmap of VSIs corresponding to VSI list ID */
328 struct ice_vsi_list_map_info {
329 	struct LIST_ENTRY_TYPE list_entry;
330 	ice_declare_bitmap(vsi_map, ICE_MAX_VSI);
331 	u16 vsi_list_id;
332 	/* counter to track how many rules are reusing this VSI list */
333 	u16 ref_cnt;
334 };
335 
336 struct ice_fltr_list_entry {
337 	struct LIST_ENTRY_TYPE list_entry;
338 	enum ice_status status;
339 	struct ice_fltr_info fltr_info;
340 };
341 
342 /* This defines an entry in the list that maintains MAC or VLAN membership
343  * to HW list mapping, since multiple VSIs can subscribe to the same MAC or
344  * VLAN. As an optimization the VSI list should be created only when a
345  * second VSI becomes a subscriber to the same MAC address. VSI lists are always
346  * used for VLAN membership.
347  */
348 struct ice_fltr_mgmt_list_entry {
349 	/* back pointer to VSI list ID to VSI list mapping */
350 	struct ice_vsi_list_map_info *vsi_list_info;
351 	u16 vsi_count;
352 #define ICE_INVAL_LG_ACT_INDEX 0xffff
353 	u16 lg_act_idx;
354 #define ICE_INVAL_SW_MARKER_ID 0xffff
355 	u16 sw_marker_id;
356 	struct LIST_ENTRY_TYPE list_entry;
357 	struct ice_fltr_info fltr_info;
358 #define ICE_INVAL_COUNTER_ID 0xff
359 	u8 counter_index;
360 };
361 
362 struct ice_adv_fltr_mgmt_list_entry {
363 	struct LIST_ENTRY_TYPE list_entry;
364 
365 	struct ice_adv_lkup_elem *lkups;
366 	struct ice_adv_rule_info rule_info;
367 	u16 lkups_cnt;
368 	struct ice_vsi_list_map_info *vsi_list_info;
369 	u16 vsi_count;
370 };
371 
372 enum ice_promisc_flags {
373 	ICE_PROMISC_UCAST_RX = 0x1,
374 	ICE_PROMISC_UCAST_TX = 0x2,
375 	ICE_PROMISC_MCAST_RX = 0x4,
376 	ICE_PROMISC_MCAST_TX = 0x8,
377 	ICE_PROMISC_BCAST_RX = 0x10,
378 	ICE_PROMISC_BCAST_TX = 0x20,
379 	ICE_PROMISC_VLAN_RX = 0x40,
380 	ICE_PROMISC_VLAN_TX = 0x80,
381 };
382 
383 /* VSI related commands */
384 enum ice_status
385 ice_aq_add_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
386 	       struct ice_sq_cd *cd);
387 enum ice_status
388 ice_aq_free_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
389 		bool keep_vsi_alloc, struct ice_sq_cd *cd);
390 enum ice_status
391 ice_aq_update_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
392 		  struct ice_sq_cd *cd);
393 enum ice_status
394 ice_add_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
395 	    struct ice_sq_cd *cd);
396 enum ice_status
397 ice_free_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
398 	     bool keep_vsi_alloc, struct ice_sq_cd *cd);
399 enum ice_status
400 ice_update_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
401 	       struct ice_sq_cd *cd);
402 struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle);
403 void ice_clear_all_vsi_ctx(struct ice_hw *hw);
404 enum ice_status
405 ice_aq_get_vsi_params(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
406 		      struct ice_sq_cd *cd);
407 enum ice_status
408 ice_aq_add_update_mir_rule(struct ice_hw *hw, u16 rule_type, u16 dest_vsi,
409 			   u16 count, struct ice_mir_rule_buf *mr_buf,
410 			   struct ice_sq_cd *cd, u16 *rule_id);
411 enum ice_status
412 ice_aq_delete_mir_rule(struct ice_hw *hw, u16 rule_id, bool keep_allocd,
413 		       struct ice_sq_cd *cd);
414 enum ice_status
415 ice_aq_get_storm_ctrl(struct ice_hw *hw, u32 *bcast_thresh, u32 *mcast_thresh,
416 		      u32 *ctl_bitmask);
417 enum ice_status
418 ice_aq_set_storm_ctrl(struct ice_hw *hw, u32 bcast_thresh, u32 mcast_thresh,
419 		      u32 ctl_bitmask);
420 /* Switch config */
421 enum ice_status ice_get_initial_sw_cfg(struct ice_hw *hw);
422 
423 enum ice_status
424 ice_alloc_vlan_res_counter(struct ice_hw *hw, u16 *counter_id);
425 enum ice_status
426 ice_free_vlan_res_counter(struct ice_hw *hw, u16 counter_id);
427 enum ice_status
428 ice_alloc_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
429 		   u16 *counter_id);
430 enum ice_status
431 ice_free_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
432 		  u16 counter_id);
433 
434 /* Switch/bridge related commands */
435 enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw);
436 enum ice_status ice_alloc_rss_global_lut(struct ice_hw *hw, bool shared_res, u16 *global_lut_id);
437 enum ice_status ice_free_rss_global_lut(struct ice_hw *hw, u16 global_lut_id);
438 enum ice_status
439 ice_alloc_sw(struct ice_hw *hw, bool ena_stats, bool shared_res, u16 *sw_id,
440 	     u16 *counter_id);
441 enum ice_status
442 ice_free_sw(struct ice_hw *hw, u16 sw_id, u16 counter_id);
443 enum ice_status
444 ice_aq_get_res_alloc(struct ice_hw *hw, u16 *num_entries,
445 		     struct ice_aqc_get_res_resp_elem *buf, u16 buf_size,
446 		     struct ice_sq_cd *cd);
447 enum ice_status
448 ice_aq_get_res_descs(struct ice_hw *hw, u16 num_entries,
449 		     struct ice_aqc_res_elem *buf, u16 buf_size, u16 res_type,
450 		     bool res_shared, u16 *desc_id, struct ice_sq_cd *cd);
451 enum ice_status
452 ice_add_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
453 enum ice_status
454 ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
455 void ice_rem_all_sw_rules_info(struct ice_hw *hw);
456 enum ice_status ice_add_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
457 enum ice_status ice_remove_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
458 enum ice_status
459 ice_add_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
460 enum ice_status
461 ice_remove_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
462 enum ice_status
463 ice_add_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
464 enum ice_status
465 ice_remove_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
466 
467 enum ice_status
468 ice_add_mac_with_sw_marker(struct ice_hw *hw, struct ice_fltr_info *f_info,
469 			   u16 sw_marker);
470 enum ice_status
471 ice_add_mac_with_counter(struct ice_hw *hw, struct ice_fltr_info *f_info);
472 void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle);
473 
474 /* Promisc/defport setup for VSIs */
475 enum ice_status
476 ice_cfg_dflt_vsi(struct ice_port_info *pi, u16 vsi_handle, bool set,
477 		 u8 direction);
478 enum ice_status
479 ice_set_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
480 		    u16 vid);
481 enum ice_status
482 ice_clear_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
483 		      u16 vid);
484 enum ice_status
485 ice_set_vlan_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
486 			 bool rm_vlan_promisc);
487 
488 /* Get VSIs Promisc/defport settings */
489 enum ice_status
490 ice_get_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
491 		    u16 *vid);
492 enum ice_status
493 ice_get_vsi_vlan_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
494 			 u16 *vid);
495 
496 enum ice_status
497 ice_aq_add_recipe(struct ice_hw *hw,
498 		  struct ice_aqc_recipe_data_elem *s_recipe_list,
499 		  u16 num_recipes, struct ice_sq_cd *cd);
500 
501 enum ice_status
502 ice_aq_get_recipe(struct ice_hw *hw,
503 		  struct ice_aqc_recipe_data_elem *s_recipe_list,
504 		  u16 *num_recipes, u16 recipe_root, struct ice_sq_cd *cd);
505 enum ice_status
506 ice_aq_map_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
507 			     struct ice_sq_cd *cd);
508 
509 enum ice_status
510 ice_aq_get_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
511 			     struct ice_sq_cd *cd);
512 
513 enum ice_status ice_alloc_recipe(struct ice_hw *hw, u16 *recipe_id);
514 enum ice_status
515 ice_add_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
516 		 u16 lkups_cnt, struct ice_adv_rule_info *rinfo,
517 		 struct ice_rule_query_data *added_entry);
518 enum ice_status
519 ice_rem_adv_rule_for_vsi(struct ice_hw *hw, u16 vsi_handle);
520 enum ice_status
521 ice_rem_adv_rule_by_id(struct ice_hw *hw,
522 		       struct ice_rule_query_data *remove_entry);
523 enum ice_status
524 ice_rem_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
525 		 u16 lkups_cnt, struct ice_adv_rule_info *rinfo);
526 
527 enum ice_status ice_replay_all_fltr(struct ice_hw *hw);
528 
529 enum ice_status
530 ice_init_def_sw_recp(struct ice_hw *hw, struct ice_sw_recipe **recp_list);
531 u16 ice_get_hw_vsi_num(struct ice_hw *hw, u16 vsi_handle);
532 bool ice_is_vsi_valid(struct ice_hw *hw, u16 vsi_handle);
533 
534 enum ice_status
535 ice_replay_vsi_all_fltr(struct ice_hw *hw, struct ice_port_info *pi,
536 			u16 vsi_handle);
537 void ice_rm_sw_replay_rule_info(struct ice_hw *hw, struct ice_switch_info *sw);
538 void ice_rm_all_sw_replay_rule_info(struct ice_hw *hw);
539 bool ice_is_prof_rule(enum ice_sw_tunnel_type type);
540 enum ice_status
541 ice_update_recipe_lkup_idx(struct ice_hw *hw,
542 			   struct ice_update_recipe_lkup_idx_params *params);
543 void ice_change_proto_id_to_dvm(void);
544 #endif /* _ICE_SWITCH_H_ */
545