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