1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (c) 2018, Intel Corporation. */ 3 4 #ifndef _ICE_LIB_H_ 5 #define _ICE_LIB_H_ 6 7 #include "ice.h" 8 9 int 10 ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list, 11 const u8 *macaddr); 12 13 void ice_free_fltr_list(struct device *dev, struct list_head *h); 14 15 void ice_update_eth_stats(struct ice_vsi *vsi); 16 17 int ice_vsi_cfg_rxqs(struct ice_vsi *vsi); 18 19 int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi); 20 21 void ice_vsi_cfg_msix(struct ice_vsi *vsi); 22 23 int ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid); 24 25 int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid); 26 27 int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi); 28 29 int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena); 30 31 int ice_vsi_start_rx_rings(struct ice_vsi *vsi); 32 33 int ice_vsi_stop_rx_rings(struct ice_vsi *vsi); 34 35 int 36 ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, 37 u16 rel_vmvf_num); 38 39 int ice_vsi_cfg_xdp_txqs(struct ice_vsi *vsi); 40 41 int ice_vsi_stop_xdp_tx_rings(struct ice_vsi *vsi); 42 43 int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc); 44 45 void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create); 46 47 void ice_vsi_delete(struct ice_vsi *vsi); 48 49 int ice_vsi_clear(struct ice_vsi *vsi); 50 51 #ifdef CONFIG_DCB 52 int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc); 53 #endif /* CONFIG_DCB */ 54 55 struct ice_vsi * 56 ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi, 57 enum ice_vsi_type type, u16 vf_id); 58 59 void ice_napi_del(struct ice_vsi *vsi); 60 61 int ice_vsi_release(struct ice_vsi *vsi); 62 63 void ice_vsi_close(struct ice_vsi *vsi); 64 65 int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id); 66 67 int 68 ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id); 69 70 int ice_vsi_rebuild(struct ice_vsi *vsi); 71 72 bool ice_is_reset_in_progress(unsigned long *state); 73 74 void ice_vsi_put_qs(struct ice_vsi *vsi); 75 76 void ice_vsi_dis_irq(struct ice_vsi *vsi); 77 78 void ice_vsi_free_irq(struct ice_vsi *vsi); 79 80 void ice_vsi_free_rx_rings(struct ice_vsi *vsi); 81 82 void ice_vsi_free_tx_rings(struct ice_vsi *vsi); 83 84 int ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena); 85 86 void ice_update_tx_ring_stats(struct ice_ring *ring, u64 pkts, u64 bytes); 87 88 void ice_update_rx_ring_stats(struct ice_ring *ring, u64 pkts, u64 bytes); 89 90 void ice_vsi_cfg_frame_size(struct ice_vsi *vsi); 91 92 u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran); 93 94 char *ice_nvm_version_str(struct ice_hw *hw); 95 96 enum ice_status 97 ice_vsi_cfg_mac_fltr(struct ice_vsi *vsi, const u8 *macaddr, bool set); 98 99 bool ice_is_safe_mode(struct ice_pf *pf); 100 #endif /* !_ICE_LIB_H_ */ 101