xref: /f-stack/dpdk/drivers/net/ice/base/ice_switch.h (revision 2d9fd380)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2020 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 		} vlan;
164 		/* Set lkup_type as ICE_SW_LKUP_ETHERTYPE
165 		 * if just using ethertype as filter. Set lkup_type as
166 		 * ICE_SW_LKUP_ETHERTYPE_MAC if MAC also needs to be
167 		 * passed in as filter.
168 		 */
169 		struct {
170 			u16 ethertype;
171 			u8 mac_addr[ETH_ALEN]; /* optional */
172 		} ethertype_mac;
173 	} l_data; /* Make sure to zero out the memory of l_data before using
174 		   * it or only set the data associated with lookup match
175 		   * rest everything should be zero
176 		   */
177 
178 	/* Depending on filter action */
179 	union {
180 		/* queue ID in case of ICE_FWD_TO_Q and starting
181 		 * queue ID in case of ICE_FWD_TO_QGRP.
182 		 */
183 		u16 q_id:11;
184 		u16 hw_vsi_id:10;
185 		u16 vsi_id:10;
186 		u16 vsi_list_id:10;
187 	} fwd_id;
188 
189 	/* Sw VSI handle */
190 	u16 vsi_handle;
191 
192 	/* Set to num_queues if action is ICE_FWD_TO_QGRP. This field
193 	 * determines the range of queues the packet needs to be forwarded to.
194 	 * Note that qgrp_size must be set to a power of 2.
195 	 */
196 	u8 qgrp_size;
197 
198 	/* Rule creations populate these indicators basing on the switch type */
199 	u8 lb_en;	/* Indicate if packet can be looped back */
200 	u8 lan_en;	/* Indicate if packet can be forwarded to the uplink */
201 };
202 
203 struct ice_adv_lkup_elem {
204 	enum ice_protocol_type type;
205 	union ice_prot_hdr h_u;	/* Header values */
206 	union ice_prot_hdr m_u;	/* Mask of header values to match */
207 };
208 
209 struct ice_sw_act_ctrl {
210 	/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
211 	u16 src;
212 	u16 flag;
213 	enum ice_sw_fwd_act_type fltr_act;
214 	/* Depending on filter action */
215 	union {
216 		/* This is a queue ID in case of ICE_FWD_TO_Q and starting
217 		 * queue ID in case of ICE_FWD_TO_QGRP.
218 		 */
219 		u16 q_id:11;
220 		u16 vsi_id:10;
221 		u16 hw_vsi_id:10;
222 		u16 vsi_list_id:10;
223 	} fwd_id;
224 	/* software VSI handle */
225 	u16 vsi_handle;
226 	u8 qgrp_size;
227 };
228 
229 struct ice_rule_query_data {
230 	/* Recipe ID for which the requested rule was added */
231 	u16 rid;
232 	/* Rule ID that was added or is supposed to be removed */
233 	u16 rule_id;
234 	/* vsi_handle for which Rule was added or is supposed to be removed */
235 	u16 vsi_handle;
236 };
237 
238 struct ice_adv_rule_info {
239 	enum ice_sw_tunnel_type tun_type;
240 	struct ice_sw_act_ctrl sw_act;
241 	u32 priority;
242 	u8 rx; /* true means LOOKUP_RX otherwise LOOKUP_TX */
243 	u16 fltr_rule_id;
244 };
245 
246 /* A collection of one or more four word recipe */
247 struct ice_sw_recipe {
248 	/* For a chained recipe the root recipe is what should be used for
249 	 * programming rules
250 	 */
251 	u8 is_root;
252 	u8 root_rid;
253 	u8 recp_created;
254 
255 	/* Number of extraction words */
256 	u8 n_ext_words;
257 	/* Protocol ID and Offset pair (extraction word) to describe the
258 	 * recipe
259 	 */
260 	struct ice_fv_word ext_words[ICE_MAX_CHAIN_WORDS];
261 	u16 word_masks[ICE_MAX_CHAIN_WORDS];
262 
263 	/* if this recipe is a collection of other recipe */
264 	u8 big_recp;
265 
266 	/* if this recipe is part of another bigger recipe then chain index
267 	 * corresponding to this recipe
268 	 */
269 	u8 chain_idx;
270 
271 	/* if this recipe is a collection of other recipe then count of other
272 	 * recipes and recipe IDs of those recipes
273 	 */
274 	u8 n_grp_count;
275 
276 	/* Bit map specifying the IDs associated with this group of recipe */
277 	ice_declare_bitmap(r_bitmap, ICE_MAX_NUM_RECIPES);
278 
279 	enum ice_sw_tunnel_type tun_type;
280 
281 	/* List of type ice_fltr_mgmt_list_entry or adv_rule */
282 	u8 adv_rule;
283 	struct LIST_HEAD_TYPE filt_rules;
284 	struct LIST_HEAD_TYPE filt_replay_rules;
285 
286 	struct ice_lock filt_rule_lock;	/* protect filter rule structure */
287 
288 	/* Profiles this recipe should be associated with */
289 	struct LIST_HEAD_TYPE fv_list;
290 
291 	/* Profiles this recipe is associated with */
292 	u8 num_profs, *prof_ids;
293 
294 	/* Bit map for possible result indexes */
295 	ice_declare_bitmap(res_idxs, ICE_MAX_FV_WORDS);
296 
297 	/* This allows user to specify the recipe priority.
298 	 * For now, this becomes 'fwd_priority' when recipe
299 	 * is created, usually recipes can have 'fwd' and 'join'
300 	 * priority.
301 	 */
302 	u8 priority;
303 
304 	struct LIST_HEAD_TYPE rg_list;
305 
306 	/* AQ buffer associated with this recipe */
307 	struct ice_aqc_recipe_data_elem *root_buf;
308 	/* This struct saves the fv_words for a given lookup */
309 	struct ice_prot_lkup_ext lkup_exts;
310 };
311 
312 /* Bookkeeping structure to hold bitmap of VSIs corresponding to VSI list ID */
313 struct ice_vsi_list_map_info {
314 	struct LIST_ENTRY_TYPE list_entry;
315 	ice_declare_bitmap(vsi_map, ICE_MAX_VSI);
316 	u16 vsi_list_id;
317 	/* counter to track how many rules are reusing this VSI list */
318 	u16 ref_cnt;
319 };
320 
321 struct ice_fltr_list_entry {
322 	struct LIST_ENTRY_TYPE list_entry;
323 	enum ice_status status;
324 	struct ice_fltr_info fltr_info;
325 };
326 
327 /* This defines an entry in the list that maintains MAC or VLAN membership
328  * to HW list mapping, since multiple VSIs can subscribe to the same MAC or
329  * VLAN. As an optimization the VSI list should be created only when a
330  * second VSI becomes a subscriber to the same MAC address. VSI lists are always
331  * used for VLAN membership.
332  */
333 struct ice_fltr_mgmt_list_entry {
334 	/* back pointer to VSI list ID to VSI list mapping */
335 	struct ice_vsi_list_map_info *vsi_list_info;
336 	u16 vsi_count;
337 #define ICE_INVAL_LG_ACT_INDEX 0xffff
338 	u16 lg_act_idx;
339 #define ICE_INVAL_SW_MARKER_ID 0xffff
340 	u16 sw_marker_id;
341 	struct LIST_ENTRY_TYPE list_entry;
342 	struct ice_fltr_info fltr_info;
343 #define ICE_INVAL_COUNTER_ID 0xff
344 	u8 counter_index;
345 };
346 
347 struct ice_adv_fltr_mgmt_list_entry {
348 	struct LIST_ENTRY_TYPE list_entry;
349 
350 	struct ice_adv_lkup_elem *lkups;
351 	struct ice_adv_rule_info rule_info;
352 	u16 lkups_cnt;
353 	struct ice_vsi_list_map_info *vsi_list_info;
354 	u16 vsi_count;
355 };
356 
357 enum ice_promisc_flags {
358 	ICE_PROMISC_UCAST_RX = 0x1,
359 	ICE_PROMISC_UCAST_TX = 0x2,
360 	ICE_PROMISC_MCAST_RX = 0x4,
361 	ICE_PROMISC_MCAST_TX = 0x8,
362 	ICE_PROMISC_BCAST_RX = 0x10,
363 	ICE_PROMISC_BCAST_TX = 0x20,
364 	ICE_PROMISC_VLAN_RX = 0x40,
365 	ICE_PROMISC_VLAN_TX = 0x80,
366 };
367 
368 /* VSI related commands */
369 enum ice_status
370 ice_aq_add_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
371 	       struct ice_sq_cd *cd);
372 enum ice_status
373 ice_aq_free_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
374 		bool keep_vsi_alloc, struct ice_sq_cd *cd);
375 enum ice_status
376 ice_aq_update_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
377 		  struct ice_sq_cd *cd);
378 enum ice_status
379 ice_add_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
380 	    struct ice_sq_cd *cd);
381 enum ice_status
382 ice_free_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
383 	     bool keep_vsi_alloc, struct ice_sq_cd *cd);
384 enum ice_status
385 ice_update_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
386 	       struct ice_sq_cd *cd);
387 struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle);
388 void ice_clear_all_vsi_ctx(struct ice_hw *hw);
389 enum ice_status
390 ice_aq_get_vsi_params(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
391 		      struct ice_sq_cd *cd);
392 enum ice_status
393 ice_aq_add_update_mir_rule(struct ice_hw *hw, u16 rule_type, u16 dest_vsi,
394 			   u16 count, struct ice_mir_rule_buf *mr_buf,
395 			   struct ice_sq_cd *cd, u16 *rule_id);
396 enum ice_status
397 ice_aq_delete_mir_rule(struct ice_hw *hw, u16 rule_id, bool keep_allocd,
398 		       struct ice_sq_cd *cd);
399 enum ice_status
400 ice_aq_get_storm_ctrl(struct ice_hw *hw, u32 *bcast_thresh, u32 *mcast_thresh,
401 		      u32 *ctl_bitmask);
402 enum ice_status
403 ice_aq_set_storm_ctrl(struct ice_hw *hw, u32 bcast_thresh, u32 mcast_thresh,
404 		      u32 ctl_bitmask);
405 /* Switch config */
406 enum ice_status ice_get_initial_sw_cfg(struct ice_hw *hw);
407 
408 enum ice_status
409 ice_alloc_vlan_res_counter(struct ice_hw *hw, u16 *counter_id);
410 enum ice_status
411 ice_free_vlan_res_counter(struct ice_hw *hw, u16 counter_id);
412 enum ice_status
413 ice_alloc_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
414 		   u16 *counter_id);
415 enum ice_status
416 ice_free_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
417 		  u16 counter_id);
418 
419 /* Switch/bridge related commands */
420 enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw);
421 enum ice_status ice_alloc_rss_global_lut(struct ice_hw *hw, bool shared_res, u16 *global_lut_id);
422 enum ice_status ice_free_rss_global_lut(struct ice_hw *hw, u16 global_lut_id);
423 enum ice_status
424 ice_alloc_sw(struct ice_hw *hw, bool ena_stats, bool shared_res, u16 *sw_id,
425 	     u16 *counter_id);
426 enum ice_status
427 ice_free_sw(struct ice_hw *hw, u16 sw_id, u16 counter_id);
428 enum ice_status
429 ice_aq_get_res_alloc(struct ice_hw *hw, u16 *num_entries,
430 		     struct ice_aqc_get_res_resp_elem *buf, u16 buf_size,
431 		     struct ice_sq_cd *cd);
432 enum ice_status
433 ice_aq_get_res_descs(struct ice_hw *hw, u16 num_entries,
434 		     struct ice_aqc_res_elem *buf, u16 buf_size, u16 res_type,
435 		     bool res_shared, u16 *desc_id, struct ice_sq_cd *cd);
436 enum ice_status
437 ice_add_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
438 enum ice_status
439 ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
440 void ice_rem_all_sw_rules_info(struct ice_hw *hw);
441 enum ice_status ice_add_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
442 enum ice_status ice_remove_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
443 enum ice_status
444 ice_add_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
445 enum ice_status
446 ice_remove_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
447 enum ice_status
448 ice_add_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
449 enum ice_status
450 ice_remove_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
451 
452 enum ice_status
453 ice_add_mac_with_sw_marker(struct ice_hw *hw, struct ice_fltr_info *f_info,
454 			   u16 sw_marker);
455 enum ice_status
456 ice_add_mac_with_counter(struct ice_hw *hw, struct ice_fltr_info *f_info);
457 void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle);
458 
459 /* Promisc/defport setup for VSIs */
460 enum ice_status
461 ice_cfg_dflt_vsi(struct ice_port_info *pi, u16 vsi_handle, bool set,
462 		 u8 direction);
463 enum ice_status
464 ice_set_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
465 		    u16 vid);
466 enum ice_status
467 ice_clear_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
468 		      u16 vid);
469 enum ice_status
470 ice_set_vlan_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
471 			 bool rm_vlan_promisc);
472 
473 /* Get VSIs Promisc/defport settings */
474 enum ice_status
475 ice_get_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
476 		    u16 *vid);
477 enum ice_status
478 ice_get_vsi_vlan_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
479 			 u16 *vid);
480 
481 enum ice_status
482 ice_aq_add_recipe(struct ice_hw *hw,
483 		  struct ice_aqc_recipe_data_elem *s_recipe_list,
484 		  u16 num_recipes, struct ice_sq_cd *cd);
485 
486 enum ice_status
487 ice_aq_get_recipe(struct ice_hw *hw,
488 		  struct ice_aqc_recipe_data_elem *s_recipe_list,
489 		  u16 *num_recipes, u16 recipe_root, struct ice_sq_cd *cd);
490 enum ice_status
491 ice_aq_map_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
492 			     struct ice_sq_cd *cd);
493 
494 enum ice_status
495 ice_aq_get_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
496 			     struct ice_sq_cd *cd);
497 
498 enum ice_status ice_alloc_recipe(struct ice_hw *hw, u16 *recipe_id);
499 enum ice_status
500 ice_add_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
501 		 u16 lkups_cnt, struct ice_adv_rule_info *rinfo,
502 		 struct ice_rule_query_data *added_entry);
503 enum ice_status
504 ice_rem_adv_rule_for_vsi(struct ice_hw *hw, u16 vsi_handle);
505 enum ice_status
506 ice_rem_adv_rule_by_id(struct ice_hw *hw,
507 		       struct ice_rule_query_data *remove_entry);
508 enum ice_status
509 ice_rem_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
510 		 u16 lkups_cnt, struct ice_adv_rule_info *rinfo);
511 
512 enum ice_status ice_replay_all_fltr(struct ice_hw *hw);
513 
514 enum ice_status
515 ice_init_def_sw_recp(struct ice_hw *hw, struct ice_sw_recipe **recp_list);
516 u16 ice_get_hw_vsi_num(struct ice_hw *hw, u16 vsi_handle);
517 bool ice_is_vsi_valid(struct ice_hw *hw, u16 vsi_handle);
518 
519 enum ice_status
520 ice_replay_vsi_all_fltr(struct ice_hw *hw, struct ice_port_info *pi,
521 			u16 vsi_handle);
522 void ice_rm_sw_replay_rule_info(struct ice_hw *hw, struct ice_switch_info *sw);
523 void ice_rm_all_sw_replay_rule_info(struct ice_hw *hw);
524 bool ice_is_prof_rule(enum ice_sw_tunnel_type type);
525 #endif /* _ICE_SWITCH_H_ */
526