246c27869a63814496041101b86bdb1893eab0e4
[firefly-linux-kernel-4.4.55.git] / drivers / net / ethernet / intel / i40e / i40e_prototype.h
1 /*******************************************************************************
2  *
3  * Intel Ethernet Controller XL710 Family Linux Driver
4  * Copyright(c) 2013 - 2014 Intel Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms and conditions of the GNU General Public License,
8  * version 2, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * The full GNU General Public License is included in this distribution in
19  * the file called "COPYING".
20  *
21  * Contact Information:
22  * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24  *
25  ******************************************************************************/
26
27 #ifndef _I40E_PROTOTYPE_H_
28 #define _I40E_PROTOTYPE_H_
29
30 #include "i40e_type.h"
31 #include "i40e_alloc.h"
32 #include "i40e_virtchnl.h"
33
34 /* Prototypes for shared code functions that are not in
35  * the standard function pointer structures.  These are
36  * mostly because they are needed even before the init
37  * has happened and will assist in the early SW and FW
38  * setup.
39  */
40
41 /* adminq functions */
42 i40e_status i40e_init_adminq(struct i40e_hw *hw);
43 i40e_status i40e_shutdown_adminq(struct i40e_hw *hw);
44 void i40e_adminq_init_ring_data(struct i40e_hw *hw);
45 i40e_status i40e_clean_arq_element(struct i40e_hw *hw,
46                                              struct i40e_arq_event_info *e,
47                                              u16 *events_pending);
48 i40e_status i40e_asq_send_command(struct i40e_hw *hw,
49                                 struct i40e_aq_desc *desc,
50                                 void *buff, /* can be NULL */
51                                 u16  buff_size,
52                                 struct i40e_asq_cmd_details *cmd_details);
53
54 /* debug function for adminq */
55 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask,
56                    void *desc, void *buffer, u16 buf_len);
57
58 void i40e_idle_aq(struct i40e_hw *hw);
59 bool i40e_check_asq_alive(struct i40e_hw *hw);
60 i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
61
62 u32 i40e_led_get(struct i40e_hw *hw);
63 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
64
65 /* admin send queue commands */
66
67 i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
68                                 u16 *fw_major_version, u16 *fw_minor_version,
69                                 u16 *api_major_version, u16 *api_minor_version,
70                                 struct i40e_asq_cmd_details *cmd_details);
71 i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
72                                         u32 reg_addr, u64 reg_val,
73                                         struct i40e_asq_cmd_details *cmd_details);
74 i40e_status i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
75                                 struct i40e_asq_cmd_details *cmd_details);
76 i40e_status i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
77                                 struct i40e_asq_cmd_details *cmd_details);
78 enum i40e_status_code i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
79                         bool qualified_modules, bool report_init,
80                         struct i40e_aq_get_phy_abilities_resp *abilities,
81                         struct i40e_asq_cmd_details *cmd_details);
82 enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
83                                 struct i40e_aq_set_phy_config *config,
84                                 struct i40e_asq_cmd_details *cmd_details);
85 enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
86                                   bool atomic_reset);
87 i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw, u16 mask,
88                                      struct i40e_asq_cmd_details *cmd_details);
89 i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
90                                 struct i40e_asq_cmd_details *cmd_details);
91 i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
92                                         bool enable_link,
93                                         struct i40e_asq_cmd_details *cmd_details);
94 i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
95                                 bool enable_lse, struct i40e_link_status *link,
96                                 struct i40e_asq_cmd_details *cmd_details);
97 i40e_status i40e_update_link_info(struct i40e_hw *hw, bool enable_lse);
98 i40e_status i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
99                                 u64 advt_reg,
100                                 struct i40e_asq_cmd_details *cmd_details);
101 i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
102                                 struct i40e_driver_version *dv,
103                                 struct i40e_asq_cmd_details *cmd_details);
104 i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
105                                 struct i40e_vsi_context *vsi_ctx,
106                                 struct i40e_asq_cmd_details *cmd_details);
107 i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
108                                 u16 vsi_id, bool set_filter,
109                                 struct i40e_asq_cmd_details *cmd_details);
110 i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
111                 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
112 i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
113                 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
114 i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
115                                 struct i40e_vsi_context *vsi_ctx,
116                                 struct i40e_asq_cmd_details *cmd_details);
117 i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
118                                 struct i40e_vsi_context *vsi_ctx,
119                                 struct i40e_asq_cmd_details *cmd_details);
120 i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
121                                 u16 downlink_seid, u8 enabled_tc,
122                                 bool default_port, bool enable_l2_filtering,
123                                 u16 *pveb_seid,
124                                 struct i40e_asq_cmd_details *cmd_details);
125 i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
126                                 u16 veb_seid, u16 *switch_id, bool *floating,
127                                 u16 *statistic_index, u16 *vebs_used,
128                                 u16 *vebs_free,
129                                 struct i40e_asq_cmd_details *cmd_details);
130 i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
131                         struct i40e_aqc_add_macvlan_element_data *mv_list,
132                         u16 count, struct i40e_asq_cmd_details *cmd_details);
133 i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
134                         struct i40e_aqc_remove_macvlan_element_data *mv_list,
135                         u16 count, struct i40e_asq_cmd_details *cmd_details);
136 i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
137                                 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
138                                 struct i40e_asq_cmd_details *cmd_details);
139 i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
140                                 struct i40e_aqc_get_switch_config_resp *buf,
141                                 u16 buf_size, u16 *start_seid,
142                                 struct i40e_asq_cmd_details *cmd_details);
143 i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
144                                 enum i40e_aq_resources_ids resource,
145                                 enum i40e_aq_resource_access_type access,
146                                 u8 sdp_number, u64 *timeout,
147                                 struct i40e_asq_cmd_details *cmd_details);
148 i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
149                                 enum i40e_aq_resources_ids resource,
150                                 u8 sdp_number,
151                                 struct i40e_asq_cmd_details *cmd_details);
152 i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
153                                 u32 offset, u16 length, void *data,
154                                 bool last_command,
155                                 struct i40e_asq_cmd_details *cmd_details);
156 i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
157                               u32 offset, u16 length, bool last_command,
158                               struct i40e_asq_cmd_details *cmd_details);
159 i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
160                                 void *buff, u16 buff_size, u16 *data_size,
161                                 enum i40e_admin_queue_opc list_type_opc,
162                                 struct i40e_asq_cmd_details *cmd_details);
163 i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
164                                 u32 offset, u16 length, void *data,
165                                 bool last_command,
166                                 struct i40e_asq_cmd_details *cmd_details);
167 i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
168                                 u8 mib_type, void *buff, u16 buff_size,
169                                 u16 *local_len, u16 *remote_len,
170                                 struct i40e_asq_cmd_details *cmd_details);
171 i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
172                                 bool enable_update,
173                                 struct i40e_asq_cmd_details *cmd_details);
174 i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
175                                 struct i40e_asq_cmd_details *cmd_details);
176 i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
177                                 struct i40e_asq_cmd_details *cmd_details);
178 i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
179                                 u16 udp_port, u8 protocol_index,
180                                 u8 *filter_index,
181                                 struct i40e_asq_cmd_details *cmd_details);
182 i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
183                                 struct i40e_asq_cmd_details *cmd_details);
184 i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
185                                 struct i40e_asq_cmd_details *cmd_details);
186 i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
187                                     u16 flags, u8 *mac_addr,
188                                     struct i40e_asq_cmd_details *cmd_details);
189 i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
190                                 u16 seid, u16 credit, u8 max_credit,
191                                 struct i40e_asq_cmd_details *cmd_details);
192 i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
193                                 struct i40e_asq_cmd_details *cmd_details);
194 i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
195                                 enum i40e_aq_hmc_profile profile,
196                                 u8 pe_vf_enabled_count,
197                                 struct i40e_asq_cmd_details *cmd_details);
198 i40e_status i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
199                                 u16 seid, u16 credit, u8 max_bw,
200                                 struct i40e_asq_cmd_details *cmd_details);
201 i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
202                         struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
203                         struct i40e_asq_cmd_details *cmd_details);
204 i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
205                 u16 seid,
206                 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
207                 enum i40e_admin_queue_opc opcode,
208                 struct i40e_asq_cmd_details *cmd_details);
209 i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
210         u16 seid,
211         struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
212         struct i40e_asq_cmd_details *cmd_details);
213 i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
214                         u16 seid,
215                         struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
216                         struct i40e_asq_cmd_details *cmd_details);
217 i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
218                         u16 seid,
219                         struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
220                         struct i40e_asq_cmd_details *cmd_details);
221 i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
222                 u16 seid,
223                 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
224                 struct i40e_asq_cmd_details *cmd_details);
225 i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
226                 u16 seid,
227                 struct i40e_aqc_query_port_ets_config_resp *bw_data,
228                 struct i40e_asq_cmd_details *cmd_details);
229 i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
230                 u16 seid,
231                 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
232                 struct i40e_asq_cmd_details *cmd_details);
233 /* i40e_common */
234 i40e_status i40e_init_shared_code(struct i40e_hw *hw);
235 i40e_status i40e_pf_reset(struct i40e_hw *hw);
236 void i40e_clear_hw(struct i40e_hw *hw);
237 void i40e_clear_pxe_mode(struct i40e_hw *hw);
238 bool i40e_get_link_status(struct i40e_hw *hw);
239 i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
240 i40e_status i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
241 i40e_status i40e_validate_mac_addr(u8 *mac_addr);
242 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
243 #ifdef I40E_FCOE
244 i40e_status i40e_get_san_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
245 #endif
246 /* prototype for functions used for NVM access */
247 i40e_status i40e_init_nvm(struct i40e_hw *hw);
248 i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
249                                       enum i40e_aq_resource_access_type access);
250 void i40e_release_nvm(struct i40e_hw *hw);
251 i40e_status i40e_read_nvm_srrd(struct i40e_hw *hw, u16 offset,
252                                          u16 *data);
253 i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
254                                          u16 *data);
255 i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
256                                            u16 *words, u16 *data);
257 i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw);
258 i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
259                                                  u16 *checksum);
260 i40e_status i40e_nvmupd_command(struct i40e_hw *hw,
261                                 struct i40e_nvm_access *cmd,
262                                 u8 *bytes, int *);
263 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
264
265 extern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
266
267 static inline struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
268 {
269         return i40e_ptype_lookup[ptype];
270 }
271
272 /* prototype for functions used for SW locks */
273
274 /* i40e_common for VF drivers*/
275 void i40e_vf_parse_hw_config(struct i40e_hw *hw,
276                              struct i40e_virtchnl_vf_resource *msg);
277 i40e_status i40e_vf_reset(struct i40e_hw *hw);
278 i40e_status i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
279                                 enum i40e_virtchnl_ops v_opcode,
280                                 i40e_status v_retval,
281                                 u8 *msg, u16 msglen,
282                                 struct i40e_asq_cmd_details *cmd_details);
283 i40e_status i40e_set_filter_control(struct i40e_hw *hw,
284                                 struct i40e_filter_control_settings *settings);
285 i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
286                                 u8 *mac_addr, u16 ethtype, u16 flags,
287                                 u16 vsi_seid, u16 queue, bool is_add,
288                                 struct i40e_control_filter_stats *stats,
289                                 struct i40e_asq_cmd_details *cmd_details);
290 #endif /* _I40E_PROTOTYPE_H_ */