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 ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list, 10 const u8 *macaddr); 11 12 void ice_free_fltr_list(struct device *dev, struct list_head *h); 13 14 void ice_update_eth_stats(struct ice_vsi *vsi); 15 16 int ice_vsi_cfg_rxqs(struct ice_vsi *vsi); 17 18 int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi); 19 20 void ice_vsi_cfg_msix(struct ice_vsi *vsi); 21 22 #ifdef CONFIG_PCI_IOV 23 void 24 ice_cfg_txq_interrupt(struct ice_vsi *vsi, u16 txq, u16 msix_idx, u16 itr_idx); 25 26 void 27 ice_cfg_rxq_interrupt(struct ice_vsi *vsi, u16 rxq, u16 msix_idx, u16 itr_idx); 28 #endif /* CONFIG_PCI_IOV */ 29 30 int ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid); 31 32 int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid); 33 34 int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi); 35 36 int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena); 37 38 int ice_vsi_start_rx_rings(struct ice_vsi *vsi); 39 40 int ice_vsi_stop_rx_rings(struct ice_vsi *vsi); 41 42 int 43 ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, 44 u16 rel_vmvf_num); 45 46 int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc); 47 48 void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create); 49 50 void ice_vsi_delete(struct ice_vsi *vsi); 51 52 int ice_vsi_clear(struct ice_vsi *vsi); 53 54 #ifdef CONFIG_DCB 55 int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc); 56 #endif /* CONFIG_DCB */ 57 58 struct ice_vsi * 59 ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi, 60 enum ice_vsi_type type, u16 vf_id); 61 62 void ice_napi_del(struct ice_vsi *vsi); 63 64 int ice_vsi_release(struct ice_vsi *vsi); 65 66 void ice_vsi_close(struct ice_vsi *vsi); 67 68 int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id); 69 70 int 71 ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id); 72 73 int ice_vsi_rebuild(struct ice_vsi *vsi); 74 75 bool ice_is_reset_in_progress(unsigned long *state); 76 77 void ice_vsi_free_q_vectors(struct ice_vsi *vsi); 78 79 void ice_trigger_sw_intr(struct ice_hw *hw, struct ice_q_vector *q_vector); 80 81 void ice_vsi_put_qs(struct ice_vsi *vsi); 82 83 #ifdef CONFIG_DCB 84 void ice_vsi_map_rings_to_vectors(struct ice_vsi *vsi); 85 #endif /* CONFIG_DCB */ 86 87 void ice_vsi_dis_irq(struct ice_vsi *vsi); 88 89 void ice_vsi_free_irq(struct ice_vsi *vsi); 90 91 void ice_vsi_free_rx_rings(struct ice_vsi *vsi); 92 93 void ice_vsi_free_tx_rings(struct ice_vsi *vsi); 94 95 int ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena); 96 97 u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran); 98 #endif /* !_ICE_LIB_H_ */ 99