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