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