ice_lib.h 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2018, Intel Corporation. */

#ifndef _ICE_LIB_H_
#define _ICE_LIB_H_

#include "ice.h"

int ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
			const u8 *macaddr);

void ice_free_fltr_list(struct device *dev, struct list_head *h);

void ice_update_eth_stats(struct ice_vsi *vsi);

16 17
int ice_vsi_cfg_rxqs(struct ice_vsi *vsi);

18
int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi);
19 20 21

void ice_vsi_cfg_msix(struct ice_vsi *vsi);

22 23 24 25 26 27 28
int ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid);

int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid);

int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi);

int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena);
29 30 31 32 33

int ice_vsi_start_rx_rings(struct ice_vsi *vsi);

int ice_vsi_stop_rx_rings(struct ice_vsi *vsi);

34 35
int
ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
36
			  u16 rel_vmvf_num);
37

38
int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc);
39 40 41

void ice_vsi_delete(struct ice_vsi *vsi);

42 43
int ice_vsi_clear(struct ice_vsi *vsi);

44 45 46 47
#ifdef CONFIG_DCB
int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc);
#endif /* CONFIG_DCB */

48 49 50 51
struct ice_vsi *
ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
	      enum ice_vsi_type type, u16 vf_id);

52 53
void ice_napi_del(struct ice_vsi *vsi);

54 55
int ice_vsi_release(struct ice_vsi *vsi);

56 57
void ice_vsi_close(struct ice_vsi *vsi);

58 59 60 61 62
int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id);

int
ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id);

63 64
int ice_vsi_rebuild(struct ice_vsi *vsi);

65
bool ice_is_reset_in_progress(unsigned long *state);
66

67 68
void ice_vsi_free_q_vectors(struct ice_vsi *vsi);

69 70
void ice_trigger_sw_intr(struct ice_hw *hw, struct ice_q_vector *q_vector);

71 72
void ice_vsi_put_qs(struct ice_vsi *vsi);

73 74 75 76
#ifdef CONFIG_DCB
void ice_vsi_map_rings_to_vectors(struct ice_vsi *vsi);
#endif /* CONFIG_DCB */

77 78 79 80 81 82 83 84
void ice_vsi_dis_irq(struct ice_vsi *vsi);

void ice_vsi_free_irq(struct ice_vsi *vsi);

void ice_vsi_free_rx_rings(struct ice_vsi *vsi);

void ice_vsi_free_tx_rings(struct ice_vsi *vsi);

85 86
int ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena);

87
u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran);
88
#endif /* !_ICE_LIB_H_ */