net/i40e/base: change AQ command for PHY access
[dpdk.git] / drivers / net / i40e / base / i40e_prototype.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2018
3  */
4
5 #ifndef _I40E_PROTOTYPE_H_
6 #define _I40E_PROTOTYPE_H_
7
8 #include "i40e_type.h"
9 #include "i40e_alloc.h"
10 #include "virtchnl.h"
11
12 /* Prototypes for shared code functions that are not in
13  * the standard function pointer structures.  These are
14  * mostly because they are needed even before the init
15  * has happened and will assist in the early SW and FW
16  * setup.
17  */
18
19 /* adminq functions */
20 enum i40e_status_code i40e_init_adminq(struct i40e_hw *hw);
21 enum i40e_status_code i40e_shutdown_adminq(struct i40e_hw *hw);
22 enum i40e_status_code i40e_init_asq(struct i40e_hw *hw);
23 enum i40e_status_code i40e_init_arq(struct i40e_hw *hw);
24 enum i40e_status_code i40e_alloc_adminq_asq_ring(struct i40e_hw *hw);
25 enum i40e_status_code i40e_alloc_adminq_arq_ring(struct i40e_hw *hw);
26 enum i40e_status_code i40e_shutdown_asq(struct i40e_hw *hw);
27 enum i40e_status_code i40e_shutdown_arq(struct i40e_hw *hw);
28 u16 i40e_clean_asq(struct i40e_hw *hw);
29 void i40e_free_adminq_asq(struct i40e_hw *hw);
30 void i40e_free_adminq_arq(struct i40e_hw *hw);
31 enum i40e_status_code i40e_validate_mac_addr(u8 *mac_addr);
32 void i40e_adminq_init_ring_data(struct i40e_hw *hw);
33 enum i40e_status_code i40e_clean_arq_element(struct i40e_hw *hw,
34                                              struct i40e_arq_event_info *e,
35                                              u16 *events_pending);
36 enum i40e_status_code i40e_asq_send_command(struct i40e_hw *hw,
37                                 struct i40e_aq_desc *desc,
38                                 void *buff, /* can be NULL */
39                                 u16  buff_size,
40                                 struct i40e_asq_cmd_details *cmd_details);
41 #ifdef VF_DRIVER
42 bool i40e_asq_done(struct i40e_hw *hw);
43 #endif
44
45 /* debug function for adminq */
46 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask,
47                    void *desc, void *buffer, u16 buf_len);
48
49 void i40e_idle_aq(struct i40e_hw *hw);
50 bool i40e_check_asq_alive(struct i40e_hw *hw);
51 enum i40e_status_code i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
52
53 enum i40e_status_code i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 seid,
54                                           bool pf_lut, u8 *lut, u16 lut_size);
55 enum i40e_status_code i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 seid,
56                                           bool pf_lut, u8 *lut, u16 lut_size);
57 enum i40e_status_code i40e_aq_get_rss_key(struct i40e_hw *hw,
58                                      u16 seid,
59                                      struct i40e_aqc_get_set_rss_key_data *key);
60 enum i40e_status_code i40e_aq_set_rss_key(struct i40e_hw *hw,
61                                      u16 seid,
62                                      struct i40e_aqc_get_set_rss_key_data *key);
63 const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err);
64 const char *i40e_stat_str(struct i40e_hw *hw, enum i40e_status_code stat_err);
65
66 #ifdef PF_DRIVER
67
68 u32 i40e_led_get(struct i40e_hw *hw);
69 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
70 enum i40e_status_code i40e_led_set_phy(struct i40e_hw *hw, bool on,
71                                        u16 led_addr, u32 mode);
72 enum i40e_status_code i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
73                                        u16 *val);
74 enum i40e_status_code i40e_blink_phy_link_led(struct i40e_hw *hw,
75                                               u32 time, u32 interval);
76
77 /* admin send queue commands */
78
79 enum i40e_status_code 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 enum i40e_status_code 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 enum i40e_status_code 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 enum i40e_status_code i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
91                                 struct i40e_asq_cmd_details *cmd_details);
92 enum i40e_status_code i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
93                                 struct i40e_asq_cmd_details *cmd_details);
94 enum i40e_status_code i40e_aq_clear_default_vsi(struct i40e_hw *hw, u16 vsi_id,
95                                 struct i40e_asq_cmd_details *cmd_details);
96 enum i40e_status_code 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 enum i40e_status_code 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 enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
104                                   bool atomic_reset);
105 enum i40e_status_code i40e_aq_set_phy_int_mask(struct i40e_hw *hw, u16 mask,
106                                 struct i40e_asq_cmd_details *cmd_details);
107 enum i40e_status_code i40e_aq_set_mac_config(struct i40e_hw *hw,
108                                 u16 max_frame_size, bool crc_en, u16 pacing,
109                                 struct i40e_asq_cmd_details *cmd_details);
110 enum i40e_status_code i40e_aq_get_local_advt_reg(struct i40e_hw *hw,
111                                 u64 *advt_reg,
112                                 struct i40e_asq_cmd_details *cmd_details);
113 enum i40e_status_code i40e_aq_get_partner_advt(struct i40e_hw *hw,
114                                 u64 *advt_reg,
115                                 struct i40e_asq_cmd_details *cmd_details);
116 enum i40e_status_code i40e_aq_set_lb_modes(struct i40e_hw *hw, u16 lb_modes,
117                                 struct i40e_asq_cmd_details *cmd_details);
118 enum i40e_status_code i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
119                         struct i40e_asq_cmd_details *cmd_details);
120 enum i40e_status_code i40e_aq_set_link_restart_an(struct i40e_hw *hw,
121                 bool enable_link, struct i40e_asq_cmd_details *cmd_details);
122 enum i40e_status_code i40e_aq_get_link_info(struct i40e_hw *hw,
123                                 bool enable_lse, struct i40e_link_status *link,
124                                 struct i40e_asq_cmd_details *cmd_details);
125 enum i40e_status_code i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
126                                 u64 advt_reg,
127                                 struct i40e_asq_cmd_details *cmd_details);
128 enum i40e_status_code i40e_aq_send_driver_version(struct i40e_hw *hw,
129                                 struct i40e_driver_version *dv,
130                                 struct i40e_asq_cmd_details *cmd_details);
131 enum i40e_status_code i40e_aq_add_vsi(struct i40e_hw *hw,
132                                 struct i40e_vsi_context *vsi_ctx,
133                                 struct i40e_asq_cmd_details *cmd_details);
134 enum i40e_status_code i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
135                                 u16 vsi_id, bool set_filter,
136                                 struct i40e_asq_cmd_details *cmd_details);
137 enum i40e_status_code i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
138                 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details,
139                 bool rx_only_promisc);
140 enum i40e_status_code i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
141                 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
142 enum i40e_status_code i40e_aq_set_vsi_full_promiscuous(struct i40e_hw *hw,
143                                 u16 seid, bool set,
144                                 struct i40e_asq_cmd_details *cmd_details);
145 enum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
146                                 u16 seid, bool enable, u16 vid,
147                                 struct i40e_asq_cmd_details *cmd_details);
148 enum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
149                                 u16 seid, bool enable, u16 vid,
150                                 struct i40e_asq_cmd_details *cmd_details);
151 enum i40e_status_code i40e_aq_set_vsi_bc_promisc_on_vlan(struct i40e_hw *hw,
152                                 u16 seid, bool enable, u16 vid,
153                                 struct i40e_asq_cmd_details *cmd_details);
154 enum i40e_status_code i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
155                                 u16 seid, bool enable,
156                                 struct i40e_asq_cmd_details *cmd_details);
157 enum i40e_status_code i40e_aq_get_vsi_params(struct i40e_hw *hw,
158                                 struct i40e_vsi_context *vsi_ctx,
159                                 struct i40e_asq_cmd_details *cmd_details);
160 enum i40e_status_code i40e_aq_update_vsi_params(struct i40e_hw *hw,
161                                 struct i40e_vsi_context *vsi_ctx,
162                                 struct i40e_asq_cmd_details *cmd_details);
163 enum i40e_status_code i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
164                                 u16 downlink_seid, u8 enabled_tc,
165                                 bool default_port, u16 *pveb_seid,
166                                 bool enable_stats,
167                                 struct i40e_asq_cmd_details *cmd_details);
168 enum i40e_status_code i40e_aq_get_veb_parameters(struct i40e_hw *hw,
169                                 u16 veb_seid, u16 *switch_id, bool *floating,
170                                 u16 *statistic_index, u16 *vebs_used,
171                                 u16 *vebs_free,
172                                 struct i40e_asq_cmd_details *cmd_details);
173 enum i40e_status_code i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
174                         struct i40e_aqc_add_macvlan_element_data *mv_list,
175                         u16 count, struct i40e_asq_cmd_details *cmd_details);
176 enum i40e_status_code i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
177                         struct i40e_aqc_remove_macvlan_element_data *mv_list,
178                         u16 count, struct i40e_asq_cmd_details *cmd_details);
179 enum i40e_status_code i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
180                         u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
181                         struct i40e_asq_cmd_details *cmd_details,
182                         u16 *rule_id, u16 *rules_used, u16 *rules_free);
183 enum i40e_status_code i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
184                         u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
185                         struct i40e_asq_cmd_details *cmd_details,
186                         u16 *rules_used, u16 *rules_free);
187
188 enum i40e_status_code i40e_aq_add_vlan(struct i40e_hw *hw, u16 vsi_id,
189                         struct i40e_aqc_add_remove_vlan_element_data *v_list,
190                         u8 count, struct i40e_asq_cmd_details *cmd_details);
191 enum i40e_status_code i40e_aq_remove_vlan(struct i40e_hw *hw, u16 vsi_id,
192                         struct i40e_aqc_add_remove_vlan_element_data *v_list,
193                         u8 count, struct i40e_asq_cmd_details *cmd_details);
194 enum i40e_status_code i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
195                                 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
196                                 struct i40e_asq_cmd_details *cmd_details);
197 enum i40e_status_code i40e_aq_get_switch_config(struct i40e_hw *hw,
198                                 struct i40e_aqc_get_switch_config_resp *buf,
199                                 u16 buf_size, u16 *start_seid,
200                                 struct i40e_asq_cmd_details *cmd_details);
201 enum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
202                                 u16 flags, u16 valid_flags, u8 mode,
203                                 struct i40e_asq_cmd_details *cmd_details);
204 enum i40e_status_code i40e_aq_request_resource(struct i40e_hw *hw,
205                                 enum i40e_aq_resources_ids resource,
206                                 enum i40e_aq_resource_access_type access,
207                                 u8 sdp_number, u64 *timeout,
208                                 struct i40e_asq_cmd_details *cmd_details);
209 enum i40e_status_code i40e_aq_release_resource(struct i40e_hw *hw,
210                                 enum i40e_aq_resources_ids resource,
211                                 u8 sdp_number,
212                                 struct i40e_asq_cmd_details *cmd_details);
213 enum i40e_status_code i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
214                                 u32 offset, u16 length, void *data,
215                                 bool last_command,
216                                 struct i40e_asq_cmd_details *cmd_details);
217 enum i40e_status_code i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
218                                 u32 offset, u16 length, bool last_command,
219                                 struct i40e_asq_cmd_details *cmd_details);
220 enum i40e_status_code i40e_aq_read_nvm_config(struct i40e_hw *hw,
221                                 u8 cmd_flags, u32 field_id, void *data,
222                                 u16 buf_size, u16 *element_count,
223                                 struct i40e_asq_cmd_details *cmd_details);
224 enum i40e_status_code i40e_aq_write_nvm_config(struct i40e_hw *hw,
225                                 u8 cmd_flags, void *data, u16 buf_size,
226                                 u16 element_count,
227                                 struct i40e_asq_cmd_details *cmd_details);
228 enum i40e_status_code i40e_aq_oem_post_update(struct i40e_hw *hw,
229                                 void *buff, u16 buff_size,
230                                 struct i40e_asq_cmd_details *cmd_details);
231 enum i40e_status_code i40e_aq_discover_capabilities(struct i40e_hw *hw,
232                                 void *buff, u16 buff_size, u16 *data_size,
233                                 enum i40e_admin_queue_opc list_type_opc,
234                                 struct i40e_asq_cmd_details *cmd_details);
235 enum i40e_status_code i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
236                                 u32 offset, u16 length, void *data,
237                                 bool last_command, u8 preservation_flags,
238                                 struct i40e_asq_cmd_details *cmd_details);
239 enum i40e_status_code i40e_aq_nvm_progress(struct i40e_hw *hw, u8 *progress,
240                                 struct i40e_asq_cmd_details *cmd_details);
241 enum i40e_status_code i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
242                                 u8 mib_type, void *buff, u16 buff_size,
243                                 u16 *local_len, u16 *remote_len,
244                                 struct i40e_asq_cmd_details *cmd_details);
245 enum i40e_status_code i40e_aq_set_lldp_mib(struct i40e_hw *hw,
246                                 u8 mib_type, void *buff, u16 buff_size,
247                                 struct i40e_asq_cmd_details *cmd_details);
248 enum i40e_status_code i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
249                                 bool enable_update,
250                                 struct i40e_asq_cmd_details *cmd_details);
251 enum i40e_status_code i40e_aq_add_lldp_tlv(struct i40e_hw *hw, u8 bridge_type,
252                                 void *buff, u16 buff_size, u16 tlv_len,
253                                 u16 *mib_len,
254                                 struct i40e_asq_cmd_details *cmd_details);
255 enum i40e_status_code i40e_aq_update_lldp_tlv(struct i40e_hw *hw,
256                                 u8 bridge_type, void *buff, u16 buff_size,
257                                 u16 old_len, u16 new_len, u16 offset,
258                                 u16 *mib_len,
259                                 struct i40e_asq_cmd_details *cmd_details);
260 enum i40e_status_code i40e_aq_delete_lldp_tlv(struct i40e_hw *hw,
261                                 u8 bridge_type, void *buff, u16 buff_size,
262                                 u16 tlv_len, u16 *mib_len,
263                                 struct i40e_asq_cmd_details *cmd_details);
264 enum i40e_status_code i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
265                                 struct i40e_asq_cmd_details *cmd_details);
266 enum i40e_status_code i40e_aq_set_dcb_parameters(struct i40e_hw *hw,
267                                                  bool dcb_enable,
268                                                  struct i40e_asq_cmd_details
269                                                  *cmd_details);
270 enum i40e_status_code i40e_aq_start_lldp(struct i40e_hw *hw,
271                                 struct i40e_asq_cmd_details *cmd_details);
272 enum i40e_status_code i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
273                                 void *buff, u16 buff_size,
274                                 struct i40e_asq_cmd_details *cmd_details);
275 enum i40e_status_code i40e_aq_start_stop_dcbx(struct i40e_hw *hw,
276                                 bool start_agent,
277                                 struct i40e_asq_cmd_details *cmd_details);
278 enum i40e_status_code i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
279                                 u16 udp_port, u8 protocol_index,
280                                 u8 *filter_index,
281                                 struct i40e_asq_cmd_details *cmd_details);
282 enum i40e_status_code i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
283                                 struct i40e_asq_cmd_details *cmd_details);
284 enum i40e_status_code i40e_aq_get_switch_resource_alloc(struct i40e_hw *hw,
285                         u8 *num_entries,
286                         struct i40e_aqc_switch_resource_alloc_element_resp *buf,
287                         u16 count,
288                         struct i40e_asq_cmd_details *cmd_details);
289 enum i40e_status_code i40e_aq_add_pvirt(struct i40e_hw *hw, u16 flags,
290                                        u16 mac_seid, u16 vsi_seid,
291                                        u16 *ret_seid);
292 enum i40e_status_code i40e_aq_add_tag(struct i40e_hw *hw, bool direct_to_queue,
293                                 u16 vsi_seid, u16 tag, u16 queue_num,
294                                 u16 *tags_used, u16 *tags_free,
295                                 struct i40e_asq_cmd_details *cmd_details);
296 enum i40e_status_code i40e_aq_remove_tag(struct i40e_hw *hw, u16 vsi_seid,
297                                 u16 tag, u16 *tags_used, u16 *tags_free,
298                                 struct i40e_asq_cmd_details *cmd_details);
299 enum i40e_status_code i40e_aq_add_mcast_etag(struct i40e_hw *hw, u16 pe_seid,
300                                 u16 etag, u8 num_tags_in_buf, void *buf,
301                                 u16 *tags_used, u16 *tags_free,
302                                 struct i40e_asq_cmd_details *cmd_details);
303 enum i40e_status_code i40e_aq_remove_mcast_etag(struct i40e_hw *hw, u16 pe_seid,
304                                 u16 etag, u16 *tags_used, u16 *tags_free,
305                                 struct i40e_asq_cmd_details *cmd_details);
306 enum i40e_status_code i40e_aq_update_tag(struct i40e_hw *hw, u16 vsi_seid,
307                                 u16 old_tag, u16 new_tag, u16 *tags_used,
308                                 u16 *tags_free,
309                                 struct i40e_asq_cmd_details *cmd_details);
310 enum i40e_status_code i40e_aq_add_statistics(struct i40e_hw *hw, u16 seid,
311                                 u16 vlan_id, u16 *stat_index,
312                                 struct i40e_asq_cmd_details *cmd_details);
313 enum i40e_status_code i40e_aq_remove_statistics(struct i40e_hw *hw, u16 seid,
314                                 u16 vlan_id, u16 stat_index,
315                                 struct i40e_asq_cmd_details *cmd_details);
316 enum i40e_status_code i40e_aq_set_port_parameters(struct i40e_hw *hw,
317                                 u16 bad_frame_vsi, bool save_bad_pac,
318                                 bool pad_short_pac, bool double_vlan,
319                                 struct i40e_asq_cmd_details *cmd_details);
320 enum i40e_status_code i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
321                                 struct i40e_asq_cmd_details *cmd_details);
322 enum i40e_status_code i40e_aq_mac_address_write(struct i40e_hw *hw,
323                                     u16 flags, u8 *mac_addr,
324                                     struct i40e_asq_cmd_details *cmd_details);
325 enum i40e_status_code i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
326                                 u16 seid, u16 credit, u8 max_credit,
327                                 struct i40e_asq_cmd_details *cmd_details);
328 enum i40e_status_code i40e_aq_dcb_ignore_pfc(struct i40e_hw *hw,
329                                 u8 tcmap, bool request, u8 *tcmap_ret,
330                                 struct i40e_asq_cmd_details *cmd_details);
331 enum i40e_status_code i40e_aq_config_switch_comp_ets_bw_limit(
332         struct i40e_hw *hw, u16 seid,
333         struct i40e_aqc_configure_switching_comp_ets_bw_limit_data *bw_data,
334         struct i40e_asq_cmd_details *cmd_details);
335 enum i40e_status_code i40e_aq_config_vsi_ets_sla_bw_limit(struct i40e_hw *hw,
336                         u16 seid,
337                         struct i40e_aqc_configure_vsi_ets_sla_bw_data *bw_data,
338                         struct i40e_asq_cmd_details *cmd_details);
339 enum i40e_status_code i40e_aq_dcb_updated(struct i40e_hw *hw,
340                                 struct i40e_asq_cmd_details *cmd_details);
341 enum i40e_status_code i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
342                                 u16 seid, u16 credit, u8 max_bw,
343                                 struct i40e_asq_cmd_details *cmd_details);
344 enum i40e_status_code i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
345                         struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
346                         struct i40e_asq_cmd_details *cmd_details);
347 enum i40e_status_code i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
348                 u16 seid,
349                 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
350                 enum i40e_admin_queue_opc opcode,
351                 struct i40e_asq_cmd_details *cmd_details);
352 enum i40e_status_code i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
353         u16 seid,
354         struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
355         struct i40e_asq_cmd_details *cmd_details);
356 enum i40e_status_code i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
357                         u16 seid,
358                         struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
359                         struct i40e_asq_cmd_details *cmd_details);
360 enum i40e_status_code i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
361                         u16 seid,
362                         struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
363                         struct i40e_asq_cmd_details *cmd_details);
364 enum i40e_status_code i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
365                 u16 seid,
366                 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
367                 struct i40e_asq_cmd_details *cmd_details);
368 enum i40e_status_code i40e_aq_query_port_ets_config(struct i40e_hw *hw,
369                 u16 seid,
370                 struct i40e_aqc_query_port_ets_config_resp *bw_data,
371                 struct i40e_asq_cmd_details *cmd_details);
372 enum i40e_status_code i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
373                 u16 seid,
374                 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
375                 struct i40e_asq_cmd_details *cmd_details);
376 enum i40e_status_code i40e_aq_resume_port_tx(struct i40e_hw *hw,
377                                 struct i40e_asq_cmd_details *cmd_details);
378 enum i40e_status_code
379 i40e_aq_add_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
380                              struct i40e_aqc_cloud_filters_element_bb *filters,
381                              u8 filter_count);
382 enum i40e_status_code
383 i40e_aq_add_cloud_filters(struct i40e_hw *hw, u16 vsi,
384                           struct i40e_aqc_cloud_filters_element_data *filters,
385                           u8 filter_count);
386 enum i40e_status_code
387 i40e_aq_rem_cloud_filters(struct i40e_hw *hw, u16 vsi,
388                           struct i40e_aqc_cloud_filters_element_data *filters,
389                           u8 filter_count);
390 enum i40e_status_code
391 i40e_aq_rem_cloud_filters_bb(struct i40e_hw *hw, u16 seid,
392                              struct i40e_aqc_cloud_filters_element_bb *filters,
393                              u8 filter_count);
394 enum i40e_status_code i40e_read_lldp_cfg(struct i40e_hw *hw,
395                                         struct i40e_lldp_variables *lldp_cfg);
396 enum i40e_status_code i40e_aq_replace_cloud_filters(struct i40e_hw *hw,
397                 struct i40e_aqc_replace_cloud_filters_cmd *filters,
398                 struct i40e_aqc_replace_cloud_filters_cmd_buf *cmd_buf);
399 enum i40e_status_code i40e_aq_alternate_read(struct i40e_hw *hw,
400                                 u32 reg_addr0, u32 *reg_val0,
401                                 u32 reg_addr1, u32 *reg_val1);
402 enum i40e_status_code i40e_aq_alternate_read_indirect(struct i40e_hw *hw,
403                                 u32 addr, u32 dw_count, void *buffer);
404 enum i40e_status_code i40e_aq_alternate_write(struct i40e_hw *hw,
405                                 u32 reg_addr0, u32 reg_val0,
406                                 u32 reg_addr1, u32 reg_val1);
407 enum i40e_status_code i40e_aq_alternate_write_indirect(struct i40e_hw *hw,
408                                 u32 addr, u32 dw_count, void *buffer);
409 enum i40e_status_code i40e_aq_alternate_clear(struct i40e_hw *hw);
410 enum i40e_status_code i40e_aq_alternate_write_done(struct i40e_hw *hw,
411                                 u8 bios_mode, bool *reset_needed);
412 enum i40e_status_code i40e_aq_set_oem_mode(struct i40e_hw *hw,
413                                 u8 oem_mode);
414
415 /* i40e_common */
416 enum i40e_status_code i40e_init_shared_code(struct i40e_hw *hw);
417 enum i40e_status_code i40e_pf_reset(struct i40e_hw *hw);
418 void i40e_clear_hw(struct i40e_hw *hw);
419 void i40e_clear_pxe_mode(struct i40e_hw *hw);
420 enum i40e_status_code i40e_get_link_status(struct i40e_hw *hw, bool *link_up);
421 enum i40e_status_code i40e_update_link_info(struct i40e_hw *hw);
422 enum i40e_status_code i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
423 enum i40e_status_code i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
424                 u32 *max_bw, u32 *min_bw, bool *min_valid, bool *max_valid);
425 enum i40e_status_code i40e_aq_configure_partition_bw(struct i40e_hw *hw,
426                         struct i40e_aqc_configure_partition_bw_data *bw_data,
427                         struct i40e_asq_cmd_details *cmd_details);
428 enum i40e_status_code i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
429 enum i40e_status_code i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
430                                             u32 pba_num_size);
431 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
432 enum i40e_status_code i40e_get_san_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
433 enum i40e_aq_link_speed i40e_get_link_speed(struct i40e_hw *hw);
434 /* prototype for functions used for NVM access */
435 enum i40e_status_code i40e_init_nvm(struct i40e_hw *hw);
436 enum i40e_status_code i40e_acquire_nvm(struct i40e_hw *hw,
437                                       enum i40e_aq_resource_access_type access);
438 void i40e_release_nvm(struct i40e_hw *hw);
439 enum i40e_status_code i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
440                                          u16 *data);
441 enum i40e_status_code i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
442                                            u16 *words, u16 *data);
443 enum i40e_status_code i40e_write_nvm_aq(struct i40e_hw *hw, u8 module,
444                                         u32 offset, u16 words, void *data,
445                                         bool last_command);
446 enum i40e_status_code __i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
447                                            u16 *data);
448 enum i40e_status_code __i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
449                                              u16 *words, u16 *data);
450 enum i40e_status_code __i40e_write_nvm_word(struct i40e_hw *hw, u32 offset,
451                                           void *data);
452 enum i40e_status_code __i40e_write_nvm_buffer(struct i40e_hw *hw, u8 module,
453                                             u32 offset, u16 words, void *data);
454 enum i40e_status_code i40e_calc_nvm_checksum(struct i40e_hw *hw, u16 *checksum);
455 enum i40e_status_code i40e_update_nvm_checksum(struct i40e_hw *hw);
456 enum i40e_status_code i40e_validate_nvm_checksum(struct i40e_hw *hw,
457                                                  u16 *checksum);
458 enum i40e_status_code i40e_nvmupd_command(struct i40e_hw *hw,
459                                           struct i40e_nvm_access *cmd,
460                                           u8 *bytes, int *);
461 void i40e_nvmupd_check_wait_event(struct i40e_hw *hw, u16 opcode,
462                                   struct i40e_aq_desc *desc);
463 void i40e_nvmupd_clear_wait_state(struct i40e_hw *hw);
464 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
465 #endif /* PF_DRIVER */
466
467 #if defined(I40E_QV) || defined(VF_DRIVER)
468 enum i40e_status_code i40e_set_mac_type(struct i40e_hw *hw);
469
470 #endif
471 extern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
472
473 STATIC INLINE struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
474 {
475         return i40e_ptype_lookup[ptype];
476 }
477
478 #ifdef PF_DRIVER
479 /**
480  * i40e_virtchnl_link_speed - Convert AdminQ link_speed to virtchnl definition
481  * @link_speed: the speed to convert
482  *
483  * Returns the link_speed in terms of the virtchnl interface, for use in
484  * converting link_speed as reported by the AdminQ into the format used for
485  * talking to virtchnl devices. If we can't represent the link speed properly,
486  * report LINK_SPEED_UNKNOWN.
487  **/
488 STATIC INLINE enum virtchnl_link_speed
489 i40e_virtchnl_link_speed(enum i40e_aq_link_speed link_speed)
490 {
491         switch (link_speed) {
492         case I40E_LINK_SPEED_100MB:
493                 return VIRTCHNL_LINK_SPEED_100MB;
494         case I40E_LINK_SPEED_1GB:
495                 return VIRTCHNL_LINK_SPEED_1GB;
496         case I40E_LINK_SPEED_10GB:
497                 return VIRTCHNL_LINK_SPEED_10GB;
498         case I40E_LINK_SPEED_40GB:
499                 return VIRTCHNL_LINK_SPEED_40GB;
500         case I40E_LINK_SPEED_20GB:
501                 return VIRTCHNL_LINK_SPEED_20GB;
502         case I40E_LINK_SPEED_25GB:
503                 return VIRTCHNL_LINK_SPEED_25GB;
504         case I40E_LINK_SPEED_UNKNOWN:
505         default:
506                 return VIRTCHNL_LINK_SPEED_UNKNOWN;
507         }
508 }
509 #endif /* PF_DRIVER */
510 /* prototype for functions used for SW spinlocks */
511 void i40e_init_spinlock(struct i40e_spinlock *sp);
512 void i40e_acquire_spinlock(struct i40e_spinlock *sp);
513 void i40e_release_spinlock(struct i40e_spinlock *sp);
514 void i40e_destroy_spinlock(struct i40e_spinlock *sp);
515
516 /* i40e_common for VF drivers*/
517 void i40e_vf_parse_hw_config(struct i40e_hw *hw,
518                              struct virtchnl_vf_resource *msg);
519 enum i40e_status_code i40e_vf_reset(struct i40e_hw *hw);
520 enum i40e_status_code i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
521                                 enum virtchnl_ops v_opcode,
522                                 enum i40e_status_code v_retval,
523                                 u8 *msg, u16 msglen,
524                                 struct i40e_asq_cmd_details *cmd_details);
525 enum i40e_status_code i40e_set_filter_control(struct i40e_hw *hw,
526                                 struct i40e_filter_control_settings *settings);
527 enum i40e_status_code i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
528                                 u8 *mac_addr, u16 ethtype, u16 flags,
529                                 u16 vsi_seid, u16 queue, bool is_add,
530                                 struct i40e_control_filter_stats *stats,
531                                 struct i40e_asq_cmd_details *cmd_details);
532 enum i40e_status_code i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
533                                 u8 table_id, u32 start_index, u16 buff_size,
534                                 void *buff, u16 *ret_buff_size,
535                                 u8 *ret_next_table, u32 *ret_next_index,
536                                 struct i40e_asq_cmd_details *cmd_details);
537 void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
538                                                     u16 vsi_seid);
539 enum i40e_status_code i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
540                                 u32 reg_addr, u32 *reg_val,
541                                 struct i40e_asq_cmd_details *cmd_details);
542 u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr);
543 enum i40e_status_code i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
544                                 u32 reg_addr, u32 reg_val,
545                                 struct i40e_asq_cmd_details *cmd_details);
546 void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val);
547 enum i40e_status_code i40e_aq_set_phy_register(struct i40e_hw *hw,
548                                 u8 phy_select, u8 dev_addr, bool page_change,
549                                 u32 reg_addr, u32 reg_val,
550                                 struct i40e_asq_cmd_details *cmd_details);
551 enum i40e_status_code i40e_aq_get_phy_register(struct i40e_hw *hw,
552                                 u8 phy_select, u8 dev_addr, bool page_change,
553                                 u32 reg_addr, u32 *reg_val,
554                                 struct i40e_asq_cmd_details *cmd_details);
555
556 enum i40e_status_code i40e_aq_set_arp_proxy_config(struct i40e_hw *hw,
557                         struct i40e_aqc_arp_proxy_data *proxy_config,
558                         struct i40e_asq_cmd_details *cmd_details);
559 enum i40e_status_code i40e_aq_set_ns_proxy_table_entry(struct i40e_hw *hw,
560                         struct i40e_aqc_ns_proxy_data *ns_proxy_table_entry,
561                         struct i40e_asq_cmd_details *cmd_details);
562 enum i40e_status_code i40e_aq_set_clear_wol_filter(struct i40e_hw *hw,
563                         u8 filter_index,
564                         struct i40e_aqc_set_wol_filter_data *filter,
565                         bool set_filter, bool no_wol_tco,
566                         bool filter_valid, bool no_wol_tco_valid,
567                         struct i40e_asq_cmd_details *cmd_details);
568 enum i40e_status_code i40e_aq_get_wake_event_reason(struct i40e_hw *hw,
569                         u16 *wake_reason,
570                         struct i40e_asq_cmd_details *cmd_details);
571 enum i40e_status_code i40e_aq_clear_all_wol_filters(struct i40e_hw *hw,
572                         struct i40e_asq_cmd_details *cmd_details);
573 enum i40e_status_code i40e_read_phy_register_clause22(struct i40e_hw *hw,
574                                         u16 reg, u8 phy_addr, u16 *value);
575 enum i40e_status_code i40e_write_phy_register_clause22(struct i40e_hw *hw,
576                                         u16 reg, u8 phy_addr, u16 value);
577 enum i40e_status_code i40e_read_phy_register_clause45(struct i40e_hw *hw,
578                                 u8 page, u16 reg, u8 phy_addr, u16 *value);
579 enum i40e_status_code i40e_write_phy_register_clause45(struct i40e_hw *hw,
580                                 u8 page, u16 reg, u8 phy_addr, u16 value);
581 enum i40e_status_code i40e_read_phy_register(struct i40e_hw *hw,
582                                 u8 page, u16 reg, u8 phy_addr, u16 *value);
583 enum i40e_status_code i40e_write_phy_register(struct i40e_hw *hw,
584                                 u8 page, u16 reg, u8 phy_addr, u16 value);
585 u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num);
586 enum i40e_status_code i40e_blink_phy_link_led(struct i40e_hw *hw,
587                                               u32 time, u32 interval);
588 enum i40e_status_code i40e_aq_write_ddp(struct i40e_hw *hw, void *buff,
589                                         u16 buff_size, u32 track_id,
590                                         u32 *error_offset, u32 *error_info,
591                                         struct i40e_asq_cmd_details *
592                                         cmd_details);
593 enum i40e_status_code i40e_aq_get_ddp_list(struct i40e_hw *hw, void *buff,
594                                            u16 buff_size, u8 flags,
595                                            struct i40e_asq_cmd_details *
596                                            cmd_details);
597 struct i40e_generic_seg_header *
598 i40e_find_segment_in_package(u32 segment_type,
599                              struct i40e_package_header *pkg_header);
600 struct i40e_profile_section_header *
601 i40e_find_section_in_profile(u32 section_type,
602                              struct i40e_profile_segment *profile);
603 enum i40e_status_code
604 i40e_write_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
605                    u32 track_id);
606 enum i40e_status_code
607 i40e_rollback_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
608                       u32 track_id);
609 enum i40e_status_code
610 i40e_add_pinfo_to_list(struct i40e_hw *hw,
611                        struct i40e_profile_segment *profile,
612                        u8 *profile_info_sec, u32 track_id);
613 #endif /* _I40E_PROTOTYPE_H_ */