xref: /freebsd/sys/dev/ice/ice_switch.h (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*  Copyright (c) 2023, Intel Corporation
3  *  All rights reserved.
4  *
5  *  Redistribution and use in source and binary forms, with or without
6  *  modification, are permitted provided that the following conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above copyright notice,
9  *      this list of conditions and the following disclaimer.
10  *
11  *   2. Redistributions in binary form must reproduce the above copyright
12  *      notice, this list of conditions and the following disclaimer in the
13  *      documentation and/or other materials provided with the distribution.
14  *
15  *   3. Neither the name of the Intel Corporation nor the names of its
16  *      contributors may be used to endorse or promote products derived from
17  *      this software without specific prior written permission.
18  *
19  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  *  POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef _ICE_SWITCH_H_
33 #define _ICE_SWITCH_H_
34 
35 #include "ice_type.h"
36 #include "ice_protocol_type.h"
37 
38 #define ICE_SW_CFG_MAX_BUF_LEN 2048
39 #define ICE_MAX_SW 256
40 #define ICE_DFLT_VSI_INVAL 0xff
41 #define ICE_FLTR_RX BIT(0)
42 #define ICE_FLTR_TX BIT(1)
43 #define ICE_FLTR_TX_RX (ICE_FLTR_RX | ICE_FLTR_TX)
44 
45 #define ICE_PROFID_IPV4_GTPC_TEID	41
46 #define ICE_PROFID_IPV4_GTPC_NO_TEID		42
47 #define ICE_PROFID_IPV4_GTPU_TEID		43
48 #define ICE_PROFID_IPV6_GTPC_TEID		44
49 #define ICE_PROFID_IPV6_GTPC_NO_TEID		45
50 #define ICE_PROFID_IPV6_GTPU_TEID		46
51 #define ICE_PROFID_IPV6_GTPU_IPV6_TCP		70
52 
53 #define DUMMY_ETH_HDR_LEN		16
54 #define ICE_SW_RULE_RX_TX_ETH_HDR_SIZE \
55 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lkup_tx_rx.hdr) + \
56 	 (DUMMY_ETH_HDR_LEN * \
57 	  sizeof(((struct ice_sw_rule_lkup_rx_tx *)0)->hdr[0])))
58 #define ICE_SW_RULE_RX_TX_NO_HDR_SIZE \
59 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lkup_tx_rx.hdr))
60 #define ICE_SW_RULE_LG_ACT_SIZE(n) \
61 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.lg_act.act) + \
62 	 ((n) * sizeof(((struct ice_sw_rule_lg_act *)0)->act[0])))
63 #define ICE_SW_RULE_VSI_LIST_SIZE(n) \
64 	(offsetof(struct ice_aqc_sw_rules_elem, pdata.vsi_list.vsi) + \
65 	 ((n) * sizeof(((struct ice_sw_rule_vsi_list *)0)->vsi[0])))
66 
67 /* Worst case buffer length for ice_aqc_opc_get_res_alloc */
68 #define ICE_MAX_RES_TYPES 0x80
69 #define ICE_AQ_GET_RES_ALLOC_BUF_LEN \
70 	(ICE_MAX_RES_TYPES * sizeof(struct ice_aqc_get_res_resp_elem))
71 
72 #define ICE_VSI_INVAL_ID 0xFFFF
73 #define ICE_INVAL_Q_HANDLE 0xFFFF
74 
75 /* VSI context structure for add/get/update/free operations */
76 struct ice_vsi_ctx {
77 	u16 vsi_num;
78 	u16 vsis_allocd;
79 	u16 vsis_unallocated;
80 	u16 flags;
81 	struct ice_aqc_vsi_props info;
82 	struct ice_sched_vsi_info sched;
83 	u8 alloc_from_pool;
84 	u8 vf_num;
85 	u16 num_lan_q_entries[ICE_MAX_TRAFFIC_CLASS];
86 	struct ice_q_ctx *lan_q_ctx[ICE_MAX_TRAFFIC_CLASS];
87 	u16 num_rdma_q_entries[ICE_MAX_TRAFFIC_CLASS];
88 	struct ice_q_ctx *rdma_q_ctx[ICE_MAX_TRAFFIC_CLASS];
89 };
90 
91 /* This is to be used by add/update mirror rule Admin Queue command */
92 struct ice_mir_rule_buf {
93 	u16 vsi_idx; /* VSI index */
94 
95 	/* For each VSI, user can specify whether corresponding VSI
96 	 * should be added/removed to/from mirror rule
97 	 *
98 	 * add mirror rule: this should always be TRUE.
99 	 * update mirror rule:  add(true) or remove(false) VSI to/from
100 	 * mirror rule
101 	 */
102 	u8 add;
103 };
104 
105 /* Switch recipe ID enum values are specific to hardware */
106 enum ice_sw_lkup_type {
107 	ICE_SW_LKUP_ETHERTYPE = 0,
108 	ICE_SW_LKUP_MAC = 1,
109 	ICE_SW_LKUP_MAC_VLAN = 2,
110 	ICE_SW_LKUP_PROMISC = 3,
111 	ICE_SW_LKUP_VLAN = 4,
112 	ICE_SW_LKUP_DFLT = 5,
113 	ICE_SW_LKUP_ETHERTYPE_MAC = 8,
114 	ICE_SW_LKUP_PROMISC_VLAN = 9,
115 	ICE_SW_LKUP_LAST
116 };
117 
118 /* type of filter src ID */
119 enum ice_src_id {
120 	ICE_SRC_ID_UNKNOWN = 0,
121 	ICE_SRC_ID_VSI,
122 	ICE_SRC_ID_QUEUE,
123 	ICE_SRC_ID_LPORT,
124 };
125 
126 struct ice_fltr_info {
127 	/* Look up information: how to look up packet */
128 	enum ice_sw_lkup_type lkup_type;
129 	/* Forward action: filter action to do after lookup */
130 	enum ice_sw_fwd_act_type fltr_act;
131 	/* rule ID returned by firmware once filter rule is created */
132 	u16 fltr_rule_id;
133 	u16 flag;
134 
135 	/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
136 	u16 src;
137 	enum ice_src_id src_id;
138 
139 	union {
140 		struct {
141 			u8 mac_addr[ETH_ALEN];
142 		} mac;
143 		struct {
144 			u8 mac_addr[ETH_ALEN];
145 			u16 vlan_id;
146 		} mac_vlan;
147 		struct {
148 			u16 vlan_id;
149 			u16 tpid;
150 			u8 tpid_valid;
151 		} vlan;
152 		/* Set lkup_type as ICE_SW_LKUP_ETHERTYPE
153 		 * if just using ethertype as filter. Set lkup_type as
154 		 * ICE_SW_LKUP_ETHERTYPE_MAC if MAC also needs to be
155 		 * passed in as filter.
156 		 */
157 		struct {
158 			u16 ethertype;
159 			u8 mac_addr[ETH_ALEN]; /* optional */
160 		} ethertype_mac;
161 	} l_data; /* Make sure to zero out the memory of l_data before using
162 		   * it or only set the data associated with lookup match
163 		   * rest everything should be zero
164 		   */
165 
166 	/* Depending on filter action */
167 	union {
168 		/* queue ID in case of ICE_FWD_TO_Q and starting
169 		 * queue ID in case of ICE_FWD_TO_QGRP.
170 		 */
171 		u16 q_id:11;
172 		u16 hw_vsi_id:10;
173 		u16 vsi_list_id:10;
174 	} fwd_id;
175 
176 	/* Sw VSI handle */
177 	u16 vsi_handle;
178 
179 	/* Set to num_queues if action is ICE_FWD_TO_QGRP. This field
180 	 * determines the range of queues the packet needs to be forwarded to.
181 	 * Note that qgrp_size must be set to a power of 2.
182 	 */
183 	u8 qgrp_size;
184 
185 	/* Rule creations populate these indicators basing on the switch type */
186 	u8 lb_en;	/* Indicate if packet can be looped back */
187 	u8 lan_en;	/* Indicate if packet can be forwarded to the uplink */
188 };
189 
190 struct ice_adv_lkup_elem {
191 	enum ice_protocol_type type;
192 	union ice_prot_hdr h_u;	/* Header values */
193 	union ice_prot_hdr m_u;	/* Mask of header values to match */
194 };
195 
196 struct ice_sw_act_ctrl {
197 	/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
198 	u16 src;
199 	u16 flag;
200 	enum ice_sw_fwd_act_type fltr_act;
201 	/* Depending on filter action */
202 	union {
203 		/* This is a queue ID in case of ICE_FWD_TO_Q and starting
204 		 * queue ID in case of ICE_FWD_TO_QGRP.
205 		 */
206 		u16 q_id:11;
207 		u16 vsi_id:10;
208 		u16 hw_vsi_id:10;
209 		u16 vsi_list_id:10;
210 	} fwd_id;
211 	/* software VSI handle */
212 	u16 vsi_handle;
213 	u8 qgrp_size;
214 };
215 
216 struct ice_rule_query_data {
217 	/* Recipe ID for which the requested rule was added */
218 	u16 rid;
219 	/* Rule ID that was added or is supposed to be removed */
220 	u16 rule_id;
221 	/* vsi_handle for which Rule was added or is supposed to be removed */
222 	u16 vsi_handle;
223 };
224 
225 /*
226  * This structure allows to pass info about lb_en and lan_en
227  * flags to ice_add_adv_rule. Values in act would be used
228  * only if act_valid was set to true, otherwise dflt
229  * values would be used.
230  */
231 struct ice_adv_rule_flags_info {
232 	u32 act;
233 	u8 act_valid;		/* indicate if flags in act are valid */
234 };
235 
236 struct ice_adv_rule_info {
237 	enum ice_sw_tunnel_type tun_type;
238 	struct ice_sw_act_ctrl sw_act;
239 	u32 priority;
240 	u8 rx; /* true means LOOKUP_RX otherwise LOOKUP_TX */
241 	u8 add_dir_lkup;
242 	u16 fltr_rule_id;
243 	u16 lg_id;
244 	u16 vlan_type;
245 	struct ice_adv_rule_flags_info flags_info;
246 };
247 
248 /* A collection of one or more four word recipe */
249 struct ice_sw_recipe {
250 	/* For a chained recipe the root recipe is what should be used for
251 	 * programming rules
252 	 */
253 	u8 is_root;
254 	u8 root_rid;
255 	u8 recp_created;
256 
257 	/* Number of extraction words */
258 	u8 n_ext_words;
259 	/* Protocol ID and Offset pair (extraction word) to describe the
260 	 * recipe
261 	 */
262 	struct ice_fv_word ext_words[ICE_MAX_CHAIN_WORDS];
263 	u16 word_masks[ICE_MAX_CHAIN_WORDS];
264 
265 	/* if this recipe is a collection of other recipe */
266 	u8 big_recp;
267 
268 	/* if this recipe is part of another bigger recipe then chain index
269 	 * corresponding to this recipe
270 	 */
271 	u8 chain_idx;
272 
273 	/* if this recipe is a collection of other recipe then count of other
274 	 * recipes and recipe IDs of those recipes
275 	 */
276 	u8 n_grp_count;
277 
278 	/* Bit map specifying the IDs associated with this group of recipe */
279 	ice_declare_bitmap(r_bitmap, ICE_MAX_NUM_RECIPES);
280 
281 	enum ice_sw_tunnel_type tun_type;
282 
283 	/* List of type ice_fltr_mgmt_list_entry or adv_rule */
284 	u8 adv_rule;
285 	struct LIST_HEAD_TYPE filt_rules;
286 	struct LIST_HEAD_TYPE filt_replay_rules;
287 
288 	struct ice_lock filt_rule_lock;	/* protect filter rule structure */
289 
290 	/* Profiles this recipe should be associated with */
291 	struct LIST_HEAD_TYPE fv_list;
292 
293 	/* Profiles this recipe is associated with */
294 	u8 num_profs, *prof_ids;
295 
296 	/* Bit map for possible result indexes */
297 	ice_declare_bitmap(res_idxs, ICE_MAX_FV_WORDS);
298 
299 	/* This allows user to specify the recipe priority.
300 	 * For now, this becomes 'fwd_priority' when recipe
301 	 * is created, usually recipes can have 'fwd' and 'join'
302 	 * priority.
303 	 */
304 	u8 priority;
305 
306 	struct LIST_HEAD_TYPE rg_list;
307 
308 	/* AQ buffer associated with this recipe */
309 	struct ice_aqc_recipe_data_elem *root_buf;
310 	/* This struct saves the fv_words for a given lookup */
311 	struct ice_prot_lkup_ext lkup_exts;
312 };
313 
314 /* Bookkeeping structure to hold bitmap of VSIs corresponding to VSI list ID */
315 struct ice_vsi_list_map_info {
316 	struct LIST_ENTRY_TYPE list_entry;
317 	ice_declare_bitmap(vsi_map, ICE_MAX_VSI);
318 	u16 vsi_list_id;
319 	/* counter to track how many rules are reusing this VSI list */
320 	u16 ref_cnt;
321 };
322 
323 struct ice_fltr_list_entry {
324 	struct LIST_ENTRY_TYPE list_entry;
325 	enum ice_status status;
326 	struct ice_fltr_info fltr_info;
327 };
328 
329 /**
330  * enum ice_fltr_marker - Marker for syncing OS and driver filter lists
331  * @ICE_FLTR_NOT_FOUND: initial state, indicates filter has not been found
332  * @ICE_FLTR_FOUND: set when a filter has been found in both lists
333  *
334  * This enumeration is used to help sync an operating system provided filter
335  * list with the filters previously added.
336  *
337  * This is required for FreeBSD because the operating system does not provide
338  * individual indications of whether a filter has been added or deleted, but
339  * instead just notifies the driver with the entire new list.
340  *
341  * To use this marker state, the driver shall initially reset all filters to
342  * the ICE_FLTR_NOT_FOUND state. Then, for each filter in the OS list, it
343  * shall search the driver list for the filter. If found, the filter state
344  * will be set to ICE_FLTR_FOUND. If not found, that filter will be added.
345  * Finally, the driver shall search the internal filter list for all filters
346  * still marked as ICE_FLTR_NOT_FOUND and remove them.
347  */
348 enum ice_fltr_marker {
349 	ICE_FLTR_NOT_FOUND,
350 	ICE_FLTR_FOUND,
351 };
352 
353 /* This defines an entry in the list that maintains MAC or VLAN membership
354  * to HW list mapping, since multiple VSIs can subscribe to the same MAC or
355  * VLAN. As an optimization the VSI list should be created only when a
356  * second VSI becomes a subscriber to the same MAC address. VSI lists are always
357  * used for VLAN membership.
358  */
359 struct ice_fltr_mgmt_list_entry {
360 	/* back pointer to VSI list ID to VSI list mapping */
361 	struct ice_vsi_list_map_info *vsi_list_info;
362 	u16 vsi_count;
363 #define ICE_INVAL_LG_ACT_INDEX 0xffff
364 	u16 lg_act_idx;
365 #define ICE_INVAL_SW_MARKER_ID 0xffff
366 	u16 sw_marker_id;
367 	struct LIST_ENTRY_TYPE list_entry;
368 	struct ice_fltr_info fltr_info;
369 #define ICE_INVAL_COUNTER_ID 0xff
370 	u8 counter_index;
371 	enum ice_fltr_marker marker;
372 };
373 
374 struct ice_adv_fltr_mgmt_list_entry {
375 	struct LIST_ENTRY_TYPE list_entry;
376 
377 	struct ice_adv_lkup_elem *lkups;
378 	struct ice_adv_rule_info rule_info;
379 	u16 lkups_cnt;
380 	struct ice_vsi_list_map_info *vsi_list_info;
381 	u16 vsi_count;
382 };
383 
384 enum ice_promisc_flags {
385 	ICE_PROMISC_UCAST_RX = 0x1,
386 	ICE_PROMISC_UCAST_TX = 0x2,
387 	ICE_PROMISC_MCAST_RX = 0x4,
388 	ICE_PROMISC_MCAST_TX = 0x8,
389 	ICE_PROMISC_BCAST_RX = 0x10,
390 	ICE_PROMISC_BCAST_TX = 0x20,
391 	ICE_PROMISC_VLAN_RX = 0x40,
392 	ICE_PROMISC_VLAN_TX = 0x80,
393 };
394 
395 struct ice_dummy_pkt_offsets {
396 	enum ice_protocol_type type;
397 	u16 offset; /* ICE_PROTOCOL_LAST indicates end of list */
398 };
399 
400 void
401 ice_find_dummy_packet(struct ice_adv_lkup_elem *lkups, u16 lkups_cnt,
402 		      enum ice_sw_tunnel_type tun_type, const u8 **pkt,
403 		      u16 *pkt_len,
404 		      const struct ice_dummy_pkt_offsets **offsets);
405 
406 enum ice_status
407 ice_fill_adv_dummy_packet(struct ice_adv_lkup_elem *lkups, u16 lkups_cnt,
408 			  struct ice_aqc_sw_rules_elem *s_rule,
409 			  const u8 *dummy_pkt, u16 pkt_len,
410 			  const struct ice_dummy_pkt_offsets *offsets);
411 
412 enum ice_status
413 ice_add_adv_recipe(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
414 		   u16 lkups_cnt, struct ice_adv_rule_info *rinfo, u16 *rid);
415 
416 struct ice_adv_fltr_mgmt_list_entry *
417 ice_find_adv_rule_entry(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
418 			u16 lkups_cnt, u16 recp_id,
419 			struct ice_adv_rule_info *rinfo);
420 
421 enum ice_status
422 ice_adv_add_update_vsi_list(struct ice_hw *hw,
423 			    struct ice_adv_fltr_mgmt_list_entry *m_entry,
424 			    struct ice_adv_rule_info *cur_fltr,
425 			    struct ice_adv_rule_info *new_fltr);
426 
427 struct ice_vsi_list_map_info *
428 ice_find_vsi_list_entry(struct ice_sw_recipe *recp_list, u16 vsi_handle,
429 			u16 *vsi_list_id);
430 
431 /* VSI related commands */
432 enum ice_status
433 ice_aq_add_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
434 	       struct ice_sq_cd *cd);
435 enum ice_status
436 ice_aq_free_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
437 		bool keep_vsi_alloc, struct ice_sq_cd *cd);
438 enum ice_status
439 ice_aq_update_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
440 		  struct ice_sq_cd *cd);
441 enum ice_status
442 ice_add_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
443 	    struct ice_sq_cd *cd);
444 enum ice_status
445 ice_free_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
446 	     bool keep_vsi_alloc, struct ice_sq_cd *cd);
447 enum ice_status
448 ice_update_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
449 	       struct ice_sq_cd *cd);
450 struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle);
451 void ice_clear_all_vsi_ctx(struct ice_hw *hw);
452 enum ice_status
453 ice_aq_get_vsi_params(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
454 		      struct ice_sq_cd *cd);
455 enum ice_status
456 ice_aq_add_update_mir_rule(struct ice_hw *hw, u16 rule_type, u16 dest_vsi,
457 			   u16 count, struct ice_mir_rule_buf *mr_buf,
458 			   struct ice_sq_cd *cd, u16 *rule_id);
459 enum ice_status
460 ice_aq_delete_mir_rule(struct ice_hw *hw, u16 rule_id, bool keep_allocd,
461 		       struct ice_sq_cd *cd);
462 enum ice_status
463 ice_aq_get_storm_ctrl(struct ice_hw *hw, u32 *bcast_thresh, u32 *mcast_thresh,
464 		      u32 *ctl_bitmask);
465 enum ice_status
466 ice_aq_set_storm_ctrl(struct ice_hw *hw, u32 bcast_thresh, u32 mcast_thresh,
467 		      u32 ctl_bitmask);
468 /* Switch config */
469 enum ice_status ice_get_initial_sw_cfg(struct ice_hw *hw);
470 
471 enum ice_status
472 ice_alloc_vlan_res_counter(struct ice_hw *hw, u16 *counter_id);
473 enum ice_status
474 ice_free_vlan_res_counter(struct ice_hw *hw, u16 counter_id);
475 
476 enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw);
477 enum ice_status ice_alloc_rss_global_lut(struct ice_hw *hw, bool shared_res, u16 *global_lut_id);
478 enum ice_status ice_free_rss_global_lut(struct ice_hw *hw, u16 global_lut_id);
479 enum ice_status
480 ice_alloc_sw(struct ice_hw *hw, bool ena_stats, bool shared_res, u16 *sw_id,
481 	     u16 *counter_id);
482 enum ice_status
483 ice_free_sw(struct ice_hw *hw, u16 sw_id, u16 counter_id);
484 enum ice_status
485 ice_aq_get_res_alloc(struct ice_hw *hw, u16 *num_entries,
486 		     struct ice_aqc_get_res_resp_elem *buf, u16 buf_size,
487 		     struct ice_sq_cd *cd);
488 enum ice_status
489 ice_aq_get_res_descs(struct ice_hw *hw, u16 num_entries,
490 		     struct ice_aqc_res_elem *buf, u16 buf_size, u16 res_type,
491 		     bool res_shared, u16 *desc_id, struct ice_sq_cd *cd);
492 enum ice_status
493 ice_add_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
494 enum ice_status ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
495 void ice_rem_all_sw_rules_info(struct ice_hw *hw);
496 enum ice_status ice_add_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
497 enum ice_status ice_remove_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
498 enum ice_status
499 ice_add_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
500 enum ice_status
501 ice_remove_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
502 enum ice_status
503 ice_cfg_iwarp_fltr(struct ice_hw *hw, u16 vsi_handle, bool enable);
504 
505 enum ice_status
506 ice_add_mac_with_sw_marker(struct ice_hw *hw, struct ice_fltr_info *f_info,
507 			   u16 sw_marker);
508 enum ice_status
509 ice_add_mac_with_counter(struct ice_hw *hw, struct ice_fltr_info *f_info);
510 void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle);
511 
512 /* Promisc/defport setup for VSIs */
513 enum ice_status
514 ice_cfg_dflt_vsi(struct ice_port_info *pi, u16 vsi_handle, bool set,
515 		 u8 direction);
516 bool ice_check_if_dflt_vsi(struct ice_port_info *pi, u16 vsi_handle,
517 			   bool *rule_exists);
518 enum ice_status
519 ice_set_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
520 		    u16 vid);
521 enum ice_status
522 ice_clear_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
523 		      u16 vid);
524 enum ice_status
525 ice_set_vlan_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
526 			 bool rm_vlan_promisc);
527 
528 /* Get VSIs Promisc/defport settings */
529 enum ice_status
530 ice_get_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
531 		    u16 *vid);
532 enum ice_status
533 ice_get_vsi_vlan_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
534 			 u16 *vid);
535 
536 enum ice_status ice_replay_all_fltr(struct ice_hw *hw);
537 
538 enum ice_status
539 ice_init_def_sw_recp(struct ice_hw *hw, struct ice_sw_recipe **recp_list);
540 u16 ice_get_hw_vsi_num(struct ice_hw *hw, u16 vsi_handle);
541 bool ice_is_vsi_valid(struct ice_hw *hw, u16 vsi_handle);
542 
543 enum ice_status
544 ice_replay_vsi_all_fltr(struct ice_hw *hw, struct ice_port_info *pi,
545 			u16 vsi_handle);
546 void ice_rm_sw_replay_rule_info(struct ice_hw *hw, struct ice_switch_info *sw);
547 void ice_rm_all_sw_replay_rule_info(struct ice_hw *hw);
548 enum ice_status
549 ice_aq_sw_rules(struct ice_hw *hw, void *rule_list, u16 rule_list_sz,
550 		u8 num_rules, enum ice_adminq_opc opc, struct ice_sq_cd *cd);
551 #endif /* _ICE_SWITCH_H_ */
552