1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2013 - 2018 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 i40e_status 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 i40e_asq_send_command(struct i40e_hw *hw,
26 				struct i40e_aq_desc *desc,
27 				void *buff, /* can be NULL */
28 				u16  buff_size,
29 				struct i40e_asq_cmd_details *cmd_details);
30 
31 /* debug function for adminq */
32 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask,
33 		   void *desc, void *buffer, u16 buf_len);
34 
35 void i40e_idle_aq(struct i40e_hw *hw);
36 bool i40e_check_asq_alive(struct i40e_hw *hw);
37 i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
38 const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err);
39 const char *i40e_stat_str(struct i40e_hw *hw, i40e_status stat_err);
40 
41 i40e_status i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 seid,
42 				bool pf_lut, u8 *lut, u16 lut_size);
43 i40e_status i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 seid,
44 				bool pf_lut, u8 *lut, u16 lut_size);
45 i40e_status i40e_aq_get_rss_key(struct i40e_hw *hw,
46 				u16 seid,
47 				struct i40e_aqc_get_set_rss_key_data *key);
48 i40e_status i40e_aq_set_rss_key(struct i40e_hw *hw,
49 				u16 seid,
50 				struct i40e_aqc_get_set_rss_key_data *key);
51 
52 u32 i40e_led_get(struct i40e_hw *hw);
53 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
54 i40e_status i40e_led_set_phy(struct i40e_hw *hw, bool on,
55 			     u16 led_addr, u32 mode);
56 i40e_status i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
57 			     u16 *val);
58 i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
59 				    u32 time, u32 interval);
60 
61 /* admin send queue commands */
62 
63 i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
64 				u16 *fw_major_version, u16 *fw_minor_version,
65 				u32 *fw_build,
66 				u16 *api_major_version, u16 *api_minor_version,
67 				struct i40e_asq_cmd_details *cmd_details);
68 i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
69 					u32 reg_addr, u64 reg_val,
70 					struct i40e_asq_cmd_details *cmd_details);
71 i40e_status i40e_aq_debug_read_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 i40e_status i40e_aq_clear_default_vsi(struct i40e_hw *hw, u16 vsi_id,
79 				      struct i40e_asq_cmd_details *cmd_details);
80 enum i40e_status_code i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
81 			bool qualified_modules, bool report_init,
82 			struct i40e_aq_get_phy_abilities_resp *abilities,
83 			struct i40e_asq_cmd_details *cmd_details);
84 enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
85 				struct i40e_aq_set_phy_config *config,
86 				struct i40e_asq_cmd_details *cmd_details);
87 enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
88 				  bool atomic_reset);
89 i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw, u16 mask,
90 				     struct i40e_asq_cmd_details *cmd_details);
91 i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
92 				struct i40e_asq_cmd_details *cmd_details);
93 i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
94 					bool enable_link,
95 					struct i40e_asq_cmd_details *cmd_details);
96 i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
97 				bool enable_lse, struct i40e_link_status *link,
98 				struct i40e_asq_cmd_details *cmd_details);
99 i40e_status i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
100 				u64 advt_reg,
101 				struct i40e_asq_cmd_details *cmd_details);
102 i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
103 				struct i40e_driver_version *dv,
104 				struct i40e_asq_cmd_details *cmd_details);
105 i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
106 				struct i40e_vsi_context *vsi_ctx,
107 				struct i40e_asq_cmd_details *cmd_details);
108 i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
109 				u16 vsi_id, bool set_filter,
110 				struct i40e_asq_cmd_details *cmd_details);
111 i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
112 		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details,
113 		bool rx_only_promisc);
114 i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
115 		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
116 enum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
117 							 u16 seid, bool enable,
118 							 u16 vid,
119 				struct i40e_asq_cmd_details *cmd_details);
120 enum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
121 							 u16 seid, bool enable,
122 							 u16 vid,
123 				struct i40e_asq_cmd_details *cmd_details);
124 i40e_status i40e_aq_set_vsi_bc_promisc_on_vlan(struct i40e_hw *hw,
125 				u16 seid, bool enable, u16 vid,
126 				struct i40e_asq_cmd_details *cmd_details);
127 i40e_status i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
128 				u16 seid, bool enable,
129 				struct i40e_asq_cmd_details *cmd_details);
130 i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
131 				struct i40e_vsi_context *vsi_ctx,
132 				struct i40e_asq_cmd_details *cmd_details);
133 i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
134 				struct i40e_vsi_context *vsi_ctx,
135 				struct i40e_asq_cmd_details *cmd_details);
136 i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
137 				u16 downlink_seid, u8 enabled_tc,
138 				bool default_port, u16 *pveb_seid,
139 				bool enable_stats,
140 				struct i40e_asq_cmd_details *cmd_details);
141 i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
142 				u16 veb_seid, u16 *switch_id, bool *floating,
143 				u16 *statistic_index, u16 *vebs_used,
144 				u16 *vebs_free,
145 				struct i40e_asq_cmd_details *cmd_details);
146 i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
147 			struct i40e_aqc_add_macvlan_element_data *mv_list,
148 			u16 count, struct i40e_asq_cmd_details *cmd_details);
149 i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
150 			struct i40e_aqc_remove_macvlan_element_data *mv_list,
151 			u16 count, struct i40e_asq_cmd_details *cmd_details);
152 i40e_status i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
153 			u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
154 			struct i40e_asq_cmd_details *cmd_details,
155 			u16 *rule_id, u16 *rules_used, u16 *rules_free);
156 i40e_status i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
157 			u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
158 			struct i40e_asq_cmd_details *cmd_details,
159 			u16 *rules_used, u16 *rules_free);
160 
161 i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
162 				u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
163 				struct i40e_asq_cmd_details *cmd_details);
164 i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
165 				struct i40e_aqc_get_switch_config_resp *buf,
166 				u16 buf_size, u16 *start_seid,
167 				struct i40e_asq_cmd_details *cmd_details);
168 enum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
169 						u16 flags,
170 						u16 valid_flags, u8 mode,
171 				struct i40e_asq_cmd_details *cmd_details);
172 i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
173 				enum i40e_aq_resources_ids resource,
174 				enum i40e_aq_resource_access_type access,
175 				u8 sdp_number, u64 *timeout,
176 				struct i40e_asq_cmd_details *cmd_details);
177 i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
178 				enum i40e_aq_resources_ids resource,
179 				u8 sdp_number,
180 				struct i40e_asq_cmd_details *cmd_details);
181 i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
182 				u32 offset, u16 length, void *data,
183 				bool last_command,
184 				struct i40e_asq_cmd_details *cmd_details);
185 i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
186 			      u32 offset, u16 length, bool last_command,
187 			      struct i40e_asq_cmd_details *cmd_details);
188 i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
189 				void *buff, u16 buff_size, u16 *data_size,
190 				enum i40e_admin_queue_opc list_type_opc,
191 				struct i40e_asq_cmd_details *cmd_details);
192 i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
193 				u32 offset, u16 length, void *data,
194 				bool last_command, u8 preservation_flags,
195 				struct i40e_asq_cmd_details *cmd_details);
196 i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
197 				u8 mib_type, void *buff, u16 buff_size,
198 				u16 *local_len, u16 *remote_len,
199 				struct i40e_asq_cmd_details *cmd_details);
200 i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
201 				bool enable_update,
202 				struct i40e_asq_cmd_details *cmd_details);
203 i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
204 				struct i40e_asq_cmd_details *cmd_details);
205 i40e_status i40e_aq_set_dcb_parameters(struct i40e_hw *hw,
206 				       bool dcb_enable,
207 				       struct i40e_asq_cmd_details
208 				       *cmd_details);
209 i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
210 				struct i40e_asq_cmd_details *cmd_details);
211 i40e_status i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
212 				       void *buff, u16 buff_size,
213 				       struct i40e_asq_cmd_details *cmd_details);
214 i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
215 				u16 udp_port, u8 protocol_index,
216 				u8 *filter_index,
217 				struct i40e_asq_cmd_details *cmd_details);
218 i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
219 				struct i40e_asq_cmd_details *cmd_details);
220 i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
221 				struct i40e_asq_cmd_details *cmd_details);
222 i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
223 				    u16 flags, u8 *mac_addr,
224 				    struct i40e_asq_cmd_details *cmd_details);
225 i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
226 				u16 seid, u16 credit, u8 max_credit,
227 				struct i40e_asq_cmd_details *cmd_details);
228 i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
229 				struct i40e_asq_cmd_details *cmd_details);
230 i40e_status i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
231 				u16 seid, u16 credit, u8 max_bw,
232 				struct i40e_asq_cmd_details *cmd_details);
233 i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
234 			struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
235 			struct i40e_asq_cmd_details *cmd_details);
236 i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
237 		u16 seid,
238 		struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
239 		enum i40e_admin_queue_opc opcode,
240 		struct i40e_asq_cmd_details *cmd_details);
241 i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
242 	u16 seid,
243 	struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
244 	struct i40e_asq_cmd_details *cmd_details);
245 i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
246 			u16 seid,
247 			struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
248 			struct i40e_asq_cmd_details *cmd_details);
249 i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
250 			u16 seid,
251 			struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
252 			struct i40e_asq_cmd_details *cmd_details);
253 i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
254 		u16 seid,
255 		struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
256 		struct i40e_asq_cmd_details *cmd_details);
257 i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
258 		u16 seid,
259 		struct i40e_aqc_query_port_ets_config_resp *bw_data,
260 		struct i40e_asq_cmd_details *cmd_details);
261 i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
262 		u16 seid,
263 		struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
264 		struct i40e_asq_cmd_details *cmd_details);
265 i40e_status i40e_aq_resume_port_tx(struct i40e_hw *hw,
266 				   struct i40e_asq_cmd_details *cmd_details);
267 enum i40e_status_code
268 i40e_aq_add_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
269 			     struct i40e_aqc_cloud_filters_element_bb *filters,
270 			     u8 filter_count);
271 enum i40e_status_code
272 i40e_aq_add_cloud_filters(struct i40e_hw *hw, u16 vsi,
273 			  struct i40e_aqc_cloud_filters_element_data *filters,
274 			  u8 filter_count);
275 enum i40e_status_code
276 i40e_aq_rem_cloud_filters(struct i40e_hw *hw, u16 vsi,
277 			  struct i40e_aqc_cloud_filters_element_data *filters,
278 			  u8 filter_count);
279 enum i40e_status_code
280 i40e_aq_rem_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
281 			     struct i40e_aqc_cloud_filters_element_bb *filters,
282 			     u8 filter_count);
283 i40e_status i40e_read_lldp_cfg(struct i40e_hw *hw,
284 			       struct i40e_lldp_variables *lldp_cfg);
285 /* i40e_common */
286 i40e_status i40e_init_shared_code(struct i40e_hw *hw);
287 i40e_status i40e_pf_reset(struct i40e_hw *hw);
288 void i40e_clear_hw(struct i40e_hw *hw);
289 void i40e_clear_pxe_mode(struct i40e_hw *hw);
290 i40e_status i40e_get_link_status(struct i40e_hw *hw, bool *link_up);
291 i40e_status i40e_update_link_info(struct i40e_hw *hw);
292 i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
293 i40e_status i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
294 				      u32 *max_bw, u32 *min_bw, bool *min_valid,
295 				      bool *max_valid);
296 i40e_status i40e_aq_configure_partition_bw(struct i40e_hw *hw,
297 			struct i40e_aqc_configure_partition_bw_data *bw_data,
298 			struct i40e_asq_cmd_details *cmd_details);
299 i40e_status i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
300 i40e_status i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
301 				 u32 pba_num_size);
302 i40e_status i40e_validate_mac_addr(u8 *mac_addr);
303 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
304 /* prototype for functions used for NVM access */
305 i40e_status i40e_init_nvm(struct i40e_hw *hw);
306 i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
307 				      enum i40e_aq_resource_access_type access);
308 void i40e_release_nvm(struct i40e_hw *hw);
309 i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
310 					 u16 *data);
311 i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw);
312 i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
313 						 u16 *checksum);
314 i40e_status i40e_nvmupd_command(struct i40e_hw *hw,
315 				struct i40e_nvm_access *cmd,
316 				u8 *bytes, int *);
317 void i40e_nvmupd_check_wait_event(struct i40e_hw *hw, u16 opcode,
318 				  struct i40e_aq_desc *desc);
319 void i40e_nvmupd_clear_wait_state(struct i40e_hw *hw);
320 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
321 
322 extern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
323 
324 static inline struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
325 {
326 	return i40e_ptype_lookup[ptype];
327 }
328 
329 /**
330  * i40e_virtchnl_link_speed - Convert AdminQ link_speed to virtchnl definition
331  * @link_speed: the speed to convert
332  *
333  * Returns the link_speed in terms of the virtchnl interface, for use in
334  * converting link_speed as reported by the AdminQ into the format used for
335  * talking to virtchnl devices. If we can't represent the link speed properly,
336  * report LINK_SPEED_UNKNOWN.
337  **/
338 static inline enum virtchnl_link_speed
339 i40e_virtchnl_link_speed(enum i40e_aq_link_speed link_speed)
340 {
341 	switch (link_speed) {
342 	case I40E_LINK_SPEED_100MB:
343 		return VIRTCHNL_LINK_SPEED_100MB;
344 	case I40E_LINK_SPEED_1GB:
345 		return VIRTCHNL_LINK_SPEED_1GB;
346 	case I40E_LINK_SPEED_10GB:
347 		return VIRTCHNL_LINK_SPEED_10GB;
348 	case I40E_LINK_SPEED_40GB:
349 		return VIRTCHNL_LINK_SPEED_40GB;
350 	case I40E_LINK_SPEED_20GB:
351 		return VIRTCHNL_LINK_SPEED_20GB;
352 	case I40E_LINK_SPEED_25GB:
353 		return VIRTCHNL_LINK_SPEED_25GB;
354 	case I40E_LINK_SPEED_UNKNOWN:
355 	default:
356 		return VIRTCHNL_LINK_SPEED_UNKNOWN;
357 	}
358 }
359 
360 /* prototype for functions used for SW locks */
361 
362 /* i40e_common for VF drivers*/
363 void i40e_vf_parse_hw_config(struct i40e_hw *hw,
364 			     struct virtchnl_vf_resource *msg);
365 i40e_status i40e_vf_reset(struct i40e_hw *hw);
366 i40e_status i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
367 				enum virtchnl_ops v_opcode,
368 				i40e_status v_retval,
369 				u8 *msg, u16 msglen,
370 				struct i40e_asq_cmd_details *cmd_details);
371 i40e_status i40e_set_filter_control(struct i40e_hw *hw,
372 				struct i40e_filter_control_settings *settings);
373 i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
374 				u8 *mac_addr, u16 ethtype, u16 flags,
375 				u16 vsi_seid, u16 queue, bool is_add,
376 				struct i40e_control_filter_stats *stats,
377 				struct i40e_asq_cmd_details *cmd_details);
378 i40e_status i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
379 			       u8 table_id, u32 start_index, u16 buff_size,
380 			       void *buff, u16 *ret_buff_size,
381 			       u8 *ret_next_table, u32 *ret_next_index,
382 			       struct i40e_asq_cmd_details *cmd_details);
383 void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
384 						    u16 vsi_seid);
385 i40e_status i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
386 				u32 reg_addr, u32 *reg_val,
387 				struct i40e_asq_cmd_details *cmd_details);
388 u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr);
389 i40e_status i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
390 				u32 reg_addr, u32 reg_val,
391 				struct i40e_asq_cmd_details *cmd_details);
392 void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val);
393 i40e_status i40e_aq_set_phy_register(struct i40e_hw *hw,
394 				     u8 phy_select, u8 dev_addr,
395 				     u32 reg_addr, u32 reg_val,
396 				     struct i40e_asq_cmd_details *cmd_details);
397 i40e_status i40e_aq_get_phy_register(struct i40e_hw *hw,
398 				     u8 phy_select, u8 dev_addr,
399 				     u32 reg_addr, u32 *reg_val,
400 				     struct i40e_asq_cmd_details *cmd_details);
401 
402 i40e_status i40e_read_phy_register_clause22(struct i40e_hw *hw,
403 					    u16 reg, u8 phy_addr, u16 *value);
404 i40e_status i40e_write_phy_register_clause22(struct i40e_hw *hw,
405 					     u16 reg, u8 phy_addr, u16 value);
406 i40e_status i40e_read_phy_register_clause45(struct i40e_hw *hw,
407 				u8 page, u16 reg, u8 phy_addr, u16 *value);
408 i40e_status i40e_write_phy_register_clause45(struct i40e_hw *hw,
409 				u8 page, u16 reg, u8 phy_addr, u16 value);
410 i40e_status i40e_read_phy_register(struct i40e_hw *hw, u8 page, u16 reg,
411 				   u8 phy_addr, u16 *value);
412 i40e_status i40e_write_phy_register(struct i40e_hw *hw, u8 page, u16 reg,
413 				    u8 phy_addr, u16 value);
414 u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num);
415 i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
416 				    u32 time, u32 interval);
417 i40e_status i40e_aq_write_ddp(struct i40e_hw *hw, void *buff,
418 			      u16 buff_size, u32 track_id,
419 			      u32 *error_offset, u32 *error_info,
420 			      struct i40e_asq_cmd_details *
421 			      cmd_details);
422 i40e_status i40e_aq_get_ddp_list(struct i40e_hw *hw, void *buff,
423 				 u16 buff_size, u8 flags,
424 				 struct i40e_asq_cmd_details *
425 				 cmd_details);
426 struct i40e_generic_seg_header *
427 i40e_find_segment_in_package(u32 segment_type,
428 			     struct i40e_package_header *pkg_header);
429 enum i40e_status_code
430 i40e_write_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
431 		   u32 track_id);
432 enum i40e_status_code
433 i40e_add_pinfo_to_list(struct i40e_hw *hw,
434 		       struct i40e_profile_segment *profile,
435 		       u8 *profile_info_sec, u32 track_id);
436 #endif /* _I40E_PROTOTYPE_H_ */
437