1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2013 - 2021 Intel Corporation. */
3 
4 #ifndef _I40E_PROTOTYPE_H_
5 #define _I40E_PROTOTYPE_H_
6 
7 #include "i40e_type.h"
8 #include "i40e_alloc.h"
9 #include <linux/avf/virtchnl.h>
10 
11 /* Prototypes for shared code functions that are not in
12  * the standard function pointer structures.  These are
13  * mostly because they are needed even before the init
14  * has happened and will assist in the early SW and FW
15  * setup.
16  */
17 
18 /* adminq functions */
19 i40e_status i40e_init_adminq(struct i40e_hw *hw);
20 void i40e_shutdown_adminq(struct i40e_hw *hw);
21 void i40e_adminq_init_ring_data(struct i40e_hw *hw);
22 i40e_status i40e_clean_arq_element(struct i40e_hw *hw,
23 					     struct i40e_arq_event_info *e,
24 					     u16 *events_pending);
25 i40e_status
26 i40e_asq_send_command(struct i40e_hw *hw, struct i40e_aq_desc *desc,
27 		      void *buff, /* can be NULL */ u16  buff_size,
28 		      struct i40e_asq_cmd_details *cmd_details);
29 i40e_status
30 i40e_asq_send_command_v2(struct i40e_hw *hw,
31 			 struct i40e_aq_desc *desc,
32 			 void *buff, /* can be NULL */
33 			 u16  buff_size,
34 			 struct i40e_asq_cmd_details *cmd_details,
35 			 enum i40e_admin_queue_err *aq_status);
36 i40e_status
37 i40e_asq_send_command_atomic(struct i40e_hw *hw, struct i40e_aq_desc *desc,
38 			     void *buff, /* can be NULL */ u16  buff_size,
39 			     struct i40e_asq_cmd_details *cmd_details,
40 			     bool is_atomic_context);
41 i40e_status
42 i40e_asq_send_command_atomic_v2(struct i40e_hw *hw,
43 				struct i40e_aq_desc *desc,
44 				void *buff, /* can be NULL */
45 				u16  buff_size,
46 				struct i40e_asq_cmd_details *cmd_details,
47 				bool is_atomic_context,
48 				enum i40e_admin_queue_err *aq_status);
49 
50 /* debug function for adminq */
51 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask,
52 		   void *desc, void *buffer, u16 buf_len);
53 
54 void i40e_idle_aq(struct i40e_hw *hw);
55 bool i40e_check_asq_alive(struct i40e_hw *hw);
56 i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
57 const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err);
58 const char *i40e_stat_str(struct i40e_hw *hw, i40e_status stat_err);
59 
60 i40e_status i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 seid,
61 				bool pf_lut, u8 *lut, u16 lut_size);
62 i40e_status i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 seid,
63 				bool pf_lut, u8 *lut, u16 lut_size);
64 i40e_status i40e_aq_get_rss_key(struct i40e_hw *hw,
65 				u16 seid,
66 				struct i40e_aqc_get_set_rss_key_data *key);
67 i40e_status i40e_aq_set_rss_key(struct i40e_hw *hw,
68 				u16 seid,
69 				struct i40e_aqc_get_set_rss_key_data *key);
70 
71 u32 i40e_led_get(struct i40e_hw *hw);
72 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
73 i40e_status i40e_led_set_phy(struct i40e_hw *hw, bool on,
74 			     u16 led_addr, u32 mode);
75 i40e_status i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
76 			     u16 *val);
77 i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
78 				    u32 time, u32 interval);
79 
80 /* admin send queue commands */
81 
82 i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
83 				u16 *fw_major_version, u16 *fw_minor_version,
84 				u32 *fw_build,
85 				u16 *api_major_version, u16 *api_minor_version,
86 				struct i40e_asq_cmd_details *cmd_details);
87 i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
88 					u32 reg_addr, u64 reg_val,
89 					struct i40e_asq_cmd_details *cmd_details);
90 i40e_status i40e_aq_debug_read_register(struct i40e_hw *hw,
91 				u32  reg_addr, u64 *reg_val,
92 				struct i40e_asq_cmd_details *cmd_details);
93 i40e_status i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
94 				struct i40e_asq_cmd_details *cmd_details);
95 i40e_status i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
96 				struct i40e_asq_cmd_details *cmd_details);
97 i40e_status i40e_aq_clear_default_vsi(struct i40e_hw *hw, u16 vsi_id,
98 				      struct i40e_asq_cmd_details *cmd_details);
99 enum i40e_status_code i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
100 			bool qualified_modules, bool report_init,
101 			struct i40e_aq_get_phy_abilities_resp *abilities,
102 			struct i40e_asq_cmd_details *cmd_details);
103 enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
104 				struct i40e_aq_set_phy_config *config,
105 				struct i40e_asq_cmd_details *cmd_details);
106 enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
107 				  bool atomic_reset);
108 i40e_status i40e_aq_set_mac_loopback(struct i40e_hw *hw,
109 				     bool ena_lpbk,
110 				     struct i40e_asq_cmd_details *cmd_details);
111 i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw, u16 mask,
112 				     struct i40e_asq_cmd_details *cmd_details);
113 i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
114 				struct i40e_asq_cmd_details *cmd_details);
115 i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
116 					bool enable_link,
117 					struct i40e_asq_cmd_details *cmd_details);
118 i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
119 				bool enable_lse, struct i40e_link_status *link,
120 				struct i40e_asq_cmd_details *cmd_details);
121 i40e_status i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
122 				u64 advt_reg,
123 				struct i40e_asq_cmd_details *cmd_details);
124 i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
125 				struct i40e_driver_version *dv,
126 				struct i40e_asq_cmd_details *cmd_details);
127 i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
128 				struct i40e_vsi_context *vsi_ctx,
129 				struct i40e_asq_cmd_details *cmd_details);
130 i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
131 				u16 vsi_id, bool set_filter,
132 				struct i40e_asq_cmd_details *cmd_details);
133 i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
134 		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details,
135 		bool rx_only_promisc);
136 i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
137 		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
138 enum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
139 							 u16 seid, bool enable,
140 							 u16 vid,
141 				struct i40e_asq_cmd_details *cmd_details);
142 enum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
143 							 u16 seid, bool enable,
144 							 u16 vid,
145 				struct i40e_asq_cmd_details *cmd_details);
146 i40e_status i40e_aq_set_vsi_bc_promisc_on_vlan(struct i40e_hw *hw,
147 				u16 seid, bool enable, u16 vid,
148 				struct i40e_asq_cmd_details *cmd_details);
149 i40e_status i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
150 				u16 seid, bool enable,
151 				struct i40e_asq_cmd_details *cmd_details);
152 i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
153 				struct i40e_vsi_context *vsi_ctx,
154 				struct i40e_asq_cmd_details *cmd_details);
155 i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
156 				struct i40e_vsi_context *vsi_ctx,
157 				struct i40e_asq_cmd_details *cmd_details);
158 i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
159 				u16 downlink_seid, u8 enabled_tc,
160 				bool default_port, u16 *pveb_seid,
161 				bool enable_stats,
162 				struct i40e_asq_cmd_details *cmd_details);
163 i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
164 				u16 veb_seid, u16 *switch_id, bool *floating,
165 				u16 *statistic_index, u16 *vebs_used,
166 				u16 *vebs_free,
167 				struct i40e_asq_cmd_details *cmd_details);
168 i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
169 			struct i40e_aqc_add_macvlan_element_data *mv_list,
170 			u16 count, struct i40e_asq_cmd_details *cmd_details);
171 i40e_status
172 i40e_aq_add_macvlan_v2(struct i40e_hw *hw, u16 seid,
173 		       struct i40e_aqc_add_macvlan_element_data *mv_list,
174 		       u16 count, struct i40e_asq_cmd_details *cmd_details,
175 		       enum i40e_admin_queue_err *aq_status);
176 i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
177 			struct i40e_aqc_remove_macvlan_element_data *mv_list,
178 			u16 count, struct i40e_asq_cmd_details *cmd_details);
179 i40e_status
180 i40e_aq_remove_macvlan_v2(struct i40e_hw *hw, u16 seid,
181 			  struct i40e_aqc_remove_macvlan_element_data *mv_list,
182 			  u16 count, struct i40e_asq_cmd_details *cmd_details,
183 			  enum i40e_admin_queue_err *aq_status);
184 i40e_status i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
185 			u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
186 			struct i40e_asq_cmd_details *cmd_details,
187 			u16 *rule_id, u16 *rules_used, u16 *rules_free);
188 i40e_status i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
189 			u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
190 			struct i40e_asq_cmd_details *cmd_details,
191 			u16 *rules_used, u16 *rules_free);
192 
193 i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
194 				u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
195 				struct i40e_asq_cmd_details *cmd_details);
196 i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
197 				struct i40e_aqc_get_switch_config_resp *buf,
198 				u16 buf_size, u16 *start_seid,
199 				struct i40e_asq_cmd_details *cmd_details);
200 enum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
201 						u16 flags,
202 						u16 valid_flags, u8 mode,
203 				struct i40e_asq_cmd_details *cmd_details);
204 i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
205 				enum i40e_aq_resources_ids resource,
206 				enum i40e_aq_resource_access_type access,
207 				u8 sdp_number, u64 *timeout,
208 				struct i40e_asq_cmd_details *cmd_details);
209 i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
210 				enum i40e_aq_resources_ids resource,
211 				u8 sdp_number,
212 				struct i40e_asq_cmd_details *cmd_details);
213 i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
214 				u32 offset, u16 length, void *data,
215 				bool last_command,
216 				struct i40e_asq_cmd_details *cmd_details);
217 i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
218 			      u32 offset, u16 length, bool last_command,
219 			      struct i40e_asq_cmd_details *cmd_details);
220 i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
221 				void *buff, u16 buff_size, u16 *data_size,
222 				enum i40e_admin_queue_opc list_type_opc,
223 				struct i40e_asq_cmd_details *cmd_details);
224 i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
225 				u32 offset, u16 length, void *data,
226 				bool last_command, u8 preservation_flags,
227 				struct i40e_asq_cmd_details *cmd_details);
228 i40e_status i40e_aq_rearrange_nvm(struct i40e_hw *hw,
229 				  u8 rearrange_nvm,
230 				  struct i40e_asq_cmd_details *cmd_details);
231 i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
232 				u8 mib_type, void *buff, u16 buff_size,
233 				u16 *local_len, u16 *remote_len,
234 				struct i40e_asq_cmd_details *cmd_details);
235 enum i40e_status_code
236 i40e_aq_set_lldp_mib(struct i40e_hw *hw,
237 		     u8 mib_type, void *buff, u16 buff_size,
238 		     struct i40e_asq_cmd_details *cmd_details);
239 i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
240 				bool enable_update,
241 				struct i40e_asq_cmd_details *cmd_details);
242 enum i40e_status_code
243 i40e_aq_restore_lldp(struct i40e_hw *hw, u8 *setting, bool restore,
244 		     struct i40e_asq_cmd_details *cmd_details);
245 i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
246 			      bool persist,
247 				struct i40e_asq_cmd_details *cmd_details);
248 i40e_status i40e_aq_set_dcb_parameters(struct i40e_hw *hw,
249 				       bool dcb_enable,
250 				       struct i40e_asq_cmd_details
251 				       *cmd_details);
252 i40e_status i40e_aq_start_lldp(struct i40e_hw *hw, bool persist,
253 			       struct i40e_asq_cmd_details *cmd_details);
254 i40e_status i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
255 				       void *buff, u16 buff_size,
256 				       struct i40e_asq_cmd_details *cmd_details);
257 i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
258 				u16 udp_port, u8 protocol_index,
259 				u8 *filter_index,
260 				struct i40e_asq_cmd_details *cmd_details);
261 i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
262 				struct i40e_asq_cmd_details *cmd_details);
263 i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
264 				struct i40e_asq_cmd_details *cmd_details);
265 i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
266 				    u16 flags, u8 *mac_addr,
267 				    struct i40e_asq_cmd_details *cmd_details);
268 i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
269 				u16 seid, u16 credit, u8 max_credit,
270 				struct i40e_asq_cmd_details *cmd_details);
271 i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
272 				struct i40e_asq_cmd_details *cmd_details);
273 i40e_status i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
274 				u16 seid, u16 credit, u8 max_bw,
275 				struct i40e_asq_cmd_details *cmd_details);
276 i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
277 			struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
278 			struct i40e_asq_cmd_details *cmd_details);
279 i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
280 		u16 seid,
281 		struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
282 		enum i40e_admin_queue_opc opcode,
283 		struct i40e_asq_cmd_details *cmd_details);
284 i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
285 	u16 seid,
286 	struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
287 	struct i40e_asq_cmd_details *cmd_details);
288 i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
289 			u16 seid,
290 			struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
291 			struct i40e_asq_cmd_details *cmd_details);
292 i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
293 			u16 seid,
294 			struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
295 			struct i40e_asq_cmd_details *cmd_details);
296 i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
297 		u16 seid,
298 		struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
299 		struct i40e_asq_cmd_details *cmd_details);
300 i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
301 		u16 seid,
302 		struct i40e_aqc_query_port_ets_config_resp *bw_data,
303 		struct i40e_asq_cmd_details *cmd_details);
304 i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
305 		u16 seid,
306 		struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
307 		struct i40e_asq_cmd_details *cmd_details);
308 i40e_status i40e_aq_resume_port_tx(struct i40e_hw *hw,
309 				   struct i40e_asq_cmd_details *cmd_details);
310 enum i40e_status_code
311 i40e_aq_add_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
312 			     struct i40e_aqc_cloud_filters_element_bb *filters,
313 			     u8 filter_count);
314 enum i40e_status_code
315 i40e_aq_add_cloud_filters(struct i40e_hw *hw, u16 vsi,
316 			  struct i40e_aqc_cloud_filters_element_data *filters,
317 			  u8 filter_count);
318 enum i40e_status_code
319 i40e_aq_rem_cloud_filters(struct i40e_hw *hw, u16 vsi,
320 			  struct i40e_aqc_cloud_filters_element_data *filters,
321 			  u8 filter_count);
322 enum i40e_status_code
323 i40e_aq_rem_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
324 			     struct i40e_aqc_cloud_filters_element_bb *filters,
325 			     u8 filter_count);
326 i40e_status i40e_read_lldp_cfg(struct i40e_hw *hw,
327 			       struct i40e_lldp_variables *lldp_cfg);
328 enum i40e_status_code
329 i40e_aq_suspend_port_tx(struct i40e_hw *hw, u16 seid,
330 			struct i40e_asq_cmd_details *cmd_details);
331 /* i40e_common */
332 i40e_status i40e_init_shared_code(struct i40e_hw *hw);
333 i40e_status i40e_pf_reset(struct i40e_hw *hw);
334 void i40e_clear_hw(struct i40e_hw *hw);
335 void i40e_clear_pxe_mode(struct i40e_hw *hw);
336 i40e_status i40e_get_link_status(struct i40e_hw *hw, bool *link_up);
337 i40e_status i40e_update_link_info(struct i40e_hw *hw);
338 i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
339 i40e_status i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
340 				      u32 *max_bw, u32 *min_bw, bool *min_valid,
341 				      bool *max_valid);
342 i40e_status i40e_aq_configure_partition_bw(struct i40e_hw *hw,
343 			struct i40e_aqc_configure_partition_bw_data *bw_data,
344 			struct i40e_asq_cmd_details *cmd_details);
345 i40e_status i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
346 i40e_status i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
347 				 u32 pba_num_size);
348 i40e_status i40e_validate_mac_addr(u8 *mac_addr);
349 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
350 /* prototype for functions used for NVM access */
351 i40e_status i40e_init_nvm(struct i40e_hw *hw);
352 i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
353 				      enum i40e_aq_resource_access_type access);
354 void i40e_release_nvm(struct i40e_hw *hw);
355 i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
356 					 u16 *data);
357 enum i40e_status_code i40e_read_nvm_module_data(struct i40e_hw *hw,
358 						u8 module_ptr,
359 						u16 module_offset,
360 						u16 data_offset,
361 						u16 words_data_size,
362 						u16 *data_ptr);
363 i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
364 				 u16 *words, u16 *data);
365 i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw);
366 i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
367 						 u16 *checksum);
368 i40e_status i40e_nvmupd_command(struct i40e_hw *hw,
369 				struct i40e_nvm_access *cmd,
370 				u8 *bytes, int *);
371 void i40e_nvmupd_check_wait_event(struct i40e_hw *hw, u16 opcode,
372 				  struct i40e_aq_desc *desc);
373 void i40e_nvmupd_clear_wait_state(struct i40e_hw *hw);
374 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
375 
376 i40e_status i40e_set_mac_type(struct i40e_hw *hw);
377 
378 extern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
379 
380 static inline struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
381 {
382 	return i40e_ptype_lookup[ptype];
383 }
384 
385 /**
386  * i40e_virtchnl_link_speed - Convert AdminQ link_speed to virtchnl definition
387  * @link_speed: the speed to convert
388  *
389  * Returns the link_speed in terms of the virtchnl interface, for use in
390  * converting link_speed as reported by the AdminQ into the format used for
391  * talking to virtchnl devices. If we can't represent the link speed properly,
392  * report LINK_SPEED_UNKNOWN.
393  **/
394 static inline enum virtchnl_link_speed
395 i40e_virtchnl_link_speed(enum i40e_aq_link_speed link_speed)
396 {
397 	switch (link_speed) {
398 	case I40E_LINK_SPEED_100MB:
399 		return VIRTCHNL_LINK_SPEED_100MB;
400 	case I40E_LINK_SPEED_1GB:
401 		return VIRTCHNL_LINK_SPEED_1GB;
402 	case I40E_LINK_SPEED_2_5GB:
403 		return VIRTCHNL_LINK_SPEED_2_5GB;
404 	case I40E_LINK_SPEED_5GB:
405 		return VIRTCHNL_LINK_SPEED_5GB;
406 	case I40E_LINK_SPEED_10GB:
407 		return VIRTCHNL_LINK_SPEED_10GB;
408 	case I40E_LINK_SPEED_40GB:
409 		return VIRTCHNL_LINK_SPEED_40GB;
410 	case I40E_LINK_SPEED_20GB:
411 		return VIRTCHNL_LINK_SPEED_20GB;
412 	case I40E_LINK_SPEED_25GB:
413 		return VIRTCHNL_LINK_SPEED_25GB;
414 	case I40E_LINK_SPEED_UNKNOWN:
415 	default:
416 		return VIRTCHNL_LINK_SPEED_UNKNOWN;
417 	}
418 }
419 
420 /* prototype for functions used for SW locks */
421 
422 /* i40e_common for VF drivers*/
423 void i40e_vf_parse_hw_config(struct i40e_hw *hw,
424 			     struct virtchnl_vf_resource *msg);
425 i40e_status i40e_vf_reset(struct i40e_hw *hw);
426 i40e_status i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
427 				enum virtchnl_ops v_opcode,
428 				i40e_status v_retval,
429 				u8 *msg, u16 msglen,
430 				struct i40e_asq_cmd_details *cmd_details);
431 i40e_status i40e_set_filter_control(struct i40e_hw *hw,
432 				struct i40e_filter_control_settings *settings);
433 i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
434 				u8 *mac_addr, u16 ethtype, u16 flags,
435 				u16 vsi_seid, u16 queue, bool is_add,
436 				struct i40e_control_filter_stats *stats,
437 				struct i40e_asq_cmd_details *cmd_details);
438 i40e_status i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
439 			       u8 table_id, u32 start_index, u16 buff_size,
440 			       void *buff, u16 *ret_buff_size,
441 			       u8 *ret_next_table, u32 *ret_next_index,
442 			       struct i40e_asq_cmd_details *cmd_details);
443 void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
444 						    u16 vsi_seid);
445 i40e_status i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
446 				u32 reg_addr, u32 *reg_val,
447 				struct i40e_asq_cmd_details *cmd_details);
448 u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr);
449 i40e_status i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
450 				u32 reg_addr, u32 reg_val,
451 				struct i40e_asq_cmd_details *cmd_details);
452 void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val);
453 enum i40e_status_code
454 i40e_aq_set_phy_register_ext(struct i40e_hw *hw,
455 			     u8 phy_select, u8 dev_addr, bool page_change,
456 			     bool set_mdio, u8 mdio_num,
457 			     u32 reg_addr, u32 reg_val,
458 			     struct i40e_asq_cmd_details *cmd_details);
459 enum i40e_status_code
460 i40e_aq_get_phy_register_ext(struct i40e_hw *hw,
461 			     u8 phy_select, u8 dev_addr, bool page_change,
462 			     bool set_mdio, u8 mdio_num,
463 			     u32 reg_addr, u32 *reg_val,
464 			     struct i40e_asq_cmd_details *cmd_details);
465 
466 /* Convenience wrappers for most common use case */
467 #define i40e_aq_set_phy_register(hw, ps, da, pc, ra, rv, cd)		\
468 	i40e_aq_set_phy_register_ext(hw, ps, da, pc, false, 0, ra, rv, cd)
469 #define i40e_aq_get_phy_register(hw, ps, da, pc, ra, rv, cd)		\
470 	i40e_aq_get_phy_register_ext(hw, ps, da, pc, false, 0, ra, rv, cd)
471 
472 i40e_status i40e_read_phy_register_clause22(struct i40e_hw *hw,
473 					    u16 reg, u8 phy_addr, u16 *value);
474 i40e_status i40e_write_phy_register_clause22(struct i40e_hw *hw,
475 					     u16 reg, u8 phy_addr, u16 value);
476 i40e_status i40e_read_phy_register_clause45(struct i40e_hw *hw,
477 				u8 page, u16 reg, u8 phy_addr, u16 *value);
478 i40e_status i40e_write_phy_register_clause45(struct i40e_hw *hw,
479 				u8 page, u16 reg, u8 phy_addr, u16 value);
480 i40e_status i40e_read_phy_register(struct i40e_hw *hw, u8 page, u16 reg,
481 				   u8 phy_addr, u16 *value);
482 i40e_status i40e_write_phy_register(struct i40e_hw *hw, u8 page, u16 reg,
483 				    u8 phy_addr, u16 value);
484 u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num);
485 i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
486 				    u32 time, u32 interval);
487 i40e_status i40e_aq_write_ddp(struct i40e_hw *hw, void *buff,
488 			      u16 buff_size, u32 track_id,
489 			      u32 *error_offset, u32 *error_info,
490 			      struct i40e_asq_cmd_details *
491 			      cmd_details);
492 i40e_status i40e_aq_get_ddp_list(struct i40e_hw *hw, void *buff,
493 				 u16 buff_size, u8 flags,
494 				 struct i40e_asq_cmd_details *
495 				 cmd_details);
496 struct i40e_generic_seg_header *
497 i40e_find_segment_in_package(u32 segment_type,
498 			     struct i40e_package_header *pkg_header);
499 struct i40e_profile_section_header *
500 i40e_find_section_in_profile(u32 section_type,
501 			     struct i40e_profile_segment *profile);
502 enum i40e_status_code
503 i40e_write_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
504 		   u32 track_id);
505 enum i40e_status_code
506 i40e_rollback_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
507 		      u32 track_id);
508 enum i40e_status_code
509 i40e_add_pinfo_to_list(struct i40e_hw *hw,
510 		       struct i40e_profile_segment *profile,
511 		       u8 *profile_info_sec, u32 track_id);
512 #endif /* _I40E_PROTOTYPE_H_ */
513