Merge remote-tracking branch 'torvalds/master' into perf/core
[linux-2.6-microblaze.git] / drivers / net / ethernet / intel / ice / ice_lib.h
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 const char *ice_vsi_type_str(enum ice_vsi_type vsi_type);
10
11 bool ice_pf_state_is_nominal(struct ice_pf *pf);
12
13 void ice_update_eth_stats(struct ice_vsi *vsi);
14
15 int ice_vsi_cfg_rxqs(struct ice_vsi *vsi);
16
17 int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi);
18
19 void ice_vsi_cfg_msix(struct ice_vsi *vsi);
20
21 int
22 ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action);
23
24 int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid);
25
26 int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi);
27
28 int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena);
29
30 int ice_vsi_start_all_rx_rings(struct ice_vsi *vsi);
31
32 int ice_vsi_stop_all_rx_rings(struct ice_vsi *vsi);
33
34 int
35 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_vsi_cfg_xdp_txqs(struct ice_vsi *vsi);
39
40 int ice_vsi_stop_xdp_tx_rings(struct ice_vsi *vsi);
41
42 bool ice_vsi_is_vlan_pruning_ena(struct ice_vsi *vsi);
43
44 int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc);
45
46 void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create);
47
48 int ice_set_link(struct ice_vsi *vsi, bool ena);
49
50 #ifdef CONFIG_DCB
51 int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc);
52 #endif /* CONFIG_DCB */
53
54 struct ice_vsi *
55 ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
56               enum ice_vsi_type vsi_type, u16 vf_id);
57
58 void ice_napi_del(struct ice_vsi *vsi);
59
60 int ice_vsi_release(struct ice_vsi *vsi);
61
62 void ice_vsi_close(struct ice_vsi *vsi);
63
64 int ice_ena_vsi(struct ice_vsi *vsi, bool locked);
65
66 void ice_dis_vsi(struct ice_vsi *vsi, bool locked);
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, bool init_vsi);
74
75 bool ice_is_reset_in_progress(unsigned long *state);
76
77 void
78 ice_write_qrxflxp_cntxt(struct ice_hw *hw, u16 pf_q, u32 rxdid, u32 prio);
79
80 void ice_vsi_dis_irq(struct ice_vsi *vsi);
81
82 void ice_vsi_free_irq(struct ice_vsi *vsi);
83
84 void ice_vsi_free_rx_rings(struct ice_vsi *vsi);
85
86 void ice_vsi_free_tx_rings(struct ice_vsi *vsi);
87
88 void ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena);
89
90 void ice_update_tx_ring_stats(struct ice_ring *ring, u64 pkts, u64 bytes);
91
92 void ice_update_rx_ring_stats(struct ice_ring *ring, u64 pkts, u64 bytes);
93
94 void ice_vsi_cfg_frame_size(struct ice_vsi *vsi);
95
96 int ice_status_to_errno(enum ice_status err);
97
98 void ice_write_intrl(struct ice_q_vector *q_vector, u8 intrl);
99 void ice_write_itr(struct ice_ring_container *rc, u16 itr);
100
101 enum ice_status
102 ice_vsi_cfg_mac_fltr(struct ice_vsi *vsi, const u8 *macaddr, bool set);
103
104 bool ice_is_safe_mode(struct ice_pf *pf);
105
106 bool ice_is_dflt_vsi_in_use(struct ice_sw *sw);
107
108 bool ice_is_vsi_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi);
109
110 int ice_set_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi);
111
112 int ice_clear_dflt_vsi(struct ice_sw *sw);
113 #endif /* !_ICE_LIB_H_ */