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