1266423Sjfv/******************************************************************************
2266423Sjfv
3349163Serj  Copyright (c) 2013-2019, Intel Corporation
4266423Sjfv  All rights reserved.
5349163Serj
6266423Sjfv  Redistribution and use in source and binary forms, with or without
7266423Sjfv  modification, are permitted provided that the following conditions are met:
8266423Sjfv
9266423Sjfv   1. Redistributions of source code must retain the above copyright notice,
10266423Sjfv      this list of conditions and the following disclaimer.
11266423Sjfv
12266423Sjfv   2. Redistributions in binary form must reproduce the above copyright
13266423Sjfv      notice, this list of conditions and the following disclaimer in the
14266423Sjfv      documentation and/or other materials provided with the distribution.
15266423Sjfv
16266423Sjfv   3. Neither the name of the Intel Corporation nor the names of its
17266423Sjfv      contributors may be used to endorse or promote products derived from
18266423Sjfv      this software without specific prior written permission.
19266423Sjfv
20266423Sjfv  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21266423Sjfv  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22266423Sjfv  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23266423Sjfv  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24266423Sjfv  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25266423Sjfv  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26266423Sjfv  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27266423Sjfv  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28266423Sjfv  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29266423Sjfv  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30266423Sjfv  POSSIBILITY OF SUCH DAMAGE.
31266423Sjfv
32266423Sjfv******************************************************************************/
33266423Sjfv/*$FreeBSD: stable/11/sys/dev/ixl/i40e_prototype.h 349163 2019-06-18 00:08:02Z erj $*/
34266423Sjfv
35266423Sjfv#ifndef _I40E_PROTOTYPE_H_
36266423Sjfv#define _I40E_PROTOTYPE_H_
37266423Sjfv
38266423Sjfv#include "i40e_type.h"
39266423Sjfv#include "i40e_alloc.h"
40333343Serj#include "virtchnl.h"
41266423Sjfv
42266423Sjfv/* Prototypes for shared code functions that are not in
43266423Sjfv * the standard function pointer structures.  These are
44266423Sjfv * mostly because they are needed even before the init
45266423Sjfv * has happened and will assist in the early SW and FW
46266423Sjfv * setup.
47266423Sjfv */
48266423Sjfv
49266423Sjfv/* adminq functions */
50266423Sjfvenum i40e_status_code i40e_init_adminq(struct i40e_hw *hw);
51266423Sjfvenum i40e_status_code i40e_shutdown_adminq(struct i40e_hw *hw);
52266423Sjfvenum i40e_status_code i40e_init_asq(struct i40e_hw *hw);
53266423Sjfvenum i40e_status_code i40e_init_arq(struct i40e_hw *hw);
54266423Sjfvenum i40e_status_code i40e_alloc_adminq_asq_ring(struct i40e_hw *hw);
55266423Sjfvenum i40e_status_code i40e_alloc_adminq_arq_ring(struct i40e_hw *hw);
56266423Sjfvenum i40e_status_code i40e_shutdown_asq(struct i40e_hw *hw);
57266423Sjfvenum i40e_status_code i40e_shutdown_arq(struct i40e_hw *hw);
58266423Sjfvu16 i40e_clean_asq(struct i40e_hw *hw);
59266423Sjfvvoid i40e_free_adminq_asq(struct i40e_hw *hw);
60266423Sjfvvoid i40e_free_adminq_arq(struct i40e_hw *hw);
61277082Sjfvenum i40e_status_code i40e_validate_mac_addr(u8 *mac_addr);
62266423Sjfvvoid i40e_adminq_init_ring_data(struct i40e_hw *hw);
63266423Sjfvenum i40e_status_code i40e_clean_arq_element(struct i40e_hw *hw,
64266423Sjfv					     struct i40e_arq_event_info *e,
65266423Sjfv					     u16 *events_pending);
66266423Sjfvenum i40e_status_code i40e_asq_send_command(struct i40e_hw *hw,
67266423Sjfv				struct i40e_aq_desc *desc,
68266423Sjfv				void *buff, /* can be NULL */
69266423Sjfv				u16  buff_size,
70266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
71266423Sjfvbool i40e_asq_done(struct i40e_hw *hw);
72266423Sjfv
73266423Sjfv/* debug function for adminq */
74269198Sjfvvoid i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask,
75269198Sjfv		   void *desc, void *buffer, u16 buf_len);
76266423Sjfv
77266423Sjfvvoid i40e_idle_aq(struct i40e_hw *hw);
78266423Sjfvbool i40e_check_asq_alive(struct i40e_hw *hw);
79266423Sjfvenum i40e_status_code i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
80303967Ssbruno
81303967Ssbrunoenum i40e_status_code i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 seid,
82303967Ssbruno					  bool pf_lut, u8 *lut, u16 lut_size);
83303967Ssbrunoenum i40e_status_code i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 seid,
84303967Ssbruno					  bool pf_lut, u8 *lut, u16 lut_size);
85303967Ssbrunoenum i40e_status_code i40e_aq_get_rss_key(struct i40e_hw *hw,
86303967Ssbruno				     u16 seid,
87303967Ssbruno				     struct i40e_aqc_get_set_rss_key_data *key);
88303967Ssbrunoenum i40e_status_code i40e_aq_set_rss_key(struct i40e_hw *hw,
89303967Ssbruno				     u16 seid,
90303967Ssbruno				     struct i40e_aqc_get_set_rss_key_data *key);
91299545Serjconst char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err);
92299545Serjconst char *i40e_stat_str(struct i40e_hw *hw, enum i40e_status_code stat_err);
93266423Sjfv
94266423Sjfv
95266423Sjfvu32 i40e_led_get(struct i40e_hw *hw);
96266423Sjfvvoid i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
97299553Serjenum i40e_status_code i40e_led_set_phy(struct i40e_hw *hw, bool on,
98299553Serj				       u16 led_addr, u32 mode);
99299553Serjenum i40e_status_code i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
100299553Serj				       u16 *val);
101299553Serjenum i40e_status_code i40e_blink_phy_link_led(struct i40e_hw *hw,
102299553Serj					      u32 time, u32 interval);
103266423Sjfv
104349163Serjenum i40e_status_code i40e_get_phy_lpi_status(struct i40e_hw *hw,
105349163Serj					      struct i40e_hw_port_stats *stats);
106349163Serjenum i40e_status_code i40e_get_lpi_counters(struct i40e_hw *hw, u32 *tx_counter,
107349163Serj					    u32 *rx_counter);
108349163Serjenum i40e_status_code i40e_lpi_stat_update(struct i40e_hw *hw,
109349163Serj					   bool offset_loaded, u64 *tx_offset,
110349163Serj					   u64 *tx_stat, u64 *rx_offset,
111349163Serj					   u64 *rx_stat);
112266423Sjfv/* admin send queue commands */
113266423Sjfv
114266423Sjfvenum i40e_status_code i40e_aq_get_firmware_version(struct i40e_hw *hw,
115266423Sjfv				u16 *fw_major_version, u16 *fw_minor_version,
116277082Sjfv				u32 *fw_build,
117266423Sjfv				u16 *api_major_version, u16 *api_minor_version,
118266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
119269198Sjfvenum i40e_status_code i40e_aq_debug_write_register(struct i40e_hw *hw,
120269198Sjfv				u32 reg_addr, u64 reg_val,
121269198Sjfv				struct i40e_asq_cmd_details *cmd_details);
122277082Sjfvenum i40e_status_code i40e_aq_debug_read_register(struct i40e_hw *hw,
123277082Sjfv				u32  reg_addr, u64 *reg_val,
124277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
125266423Sjfvenum i40e_status_code i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
126266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
127266423Sjfvenum i40e_status_code i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
128266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
129303967Ssbrunoenum i40e_status_code i40e_aq_clear_default_vsi(struct i40e_hw *hw, u16 vsi_id,
130303967Ssbruno				struct i40e_asq_cmd_details *cmd_details);
131266423Sjfvenum i40e_status_code i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
132266423Sjfv			bool qualified_modules, bool report_init,
133266423Sjfv			struct i40e_aq_get_phy_abilities_resp *abilities,
134266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
135266423Sjfvenum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
136266423Sjfv				struct i40e_aq_set_phy_config *config,
137266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
138266423Sjfvenum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
139266423Sjfv				  bool atomic_reset);
140270346Sjfvenum i40e_status_code i40e_aq_set_phy_int_mask(struct i40e_hw *hw, u16 mask,
141270346Sjfv				struct i40e_asq_cmd_details *cmd_details);
142266423Sjfvenum i40e_status_code i40e_aq_set_mac_config(struct i40e_hw *hw,
143266423Sjfv				u16 max_frame_size, bool crc_en, u16 pacing,
144266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
145266423Sjfvenum i40e_status_code i40e_aq_get_local_advt_reg(struct i40e_hw *hw,
146266423Sjfv				u64 *advt_reg,
147266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
148266423Sjfvenum i40e_status_code i40e_aq_get_partner_advt(struct i40e_hw *hw,
149266423Sjfv				u64 *advt_reg,
150266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
151333343Serjenum i40e_status_code
152333343Serji40e_aq_set_lb_modes(struct i40e_hw *hw, u8 lb_level, u8 lb_type, u8 speed,
153333343Serj		     struct i40e_asq_cmd_details *cmd_details);
154266423Sjfvenum i40e_status_code i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
155266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
156266423Sjfvenum i40e_status_code i40e_aq_set_link_restart_an(struct i40e_hw *hw,
157269198Sjfv		bool enable_link, struct i40e_asq_cmd_details *cmd_details);
158266423Sjfvenum i40e_status_code i40e_aq_get_link_info(struct i40e_hw *hw,
159266423Sjfv				bool enable_lse, struct i40e_link_status *link,
160266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
161266423Sjfvenum i40e_status_code i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
162266423Sjfv				u64 advt_reg,
163266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
164266423Sjfvenum i40e_status_code i40e_aq_send_driver_version(struct i40e_hw *hw,
165266423Sjfv				struct i40e_driver_version *dv,
166266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
167266423Sjfvenum i40e_status_code i40e_aq_add_vsi(struct i40e_hw *hw,
168266423Sjfv				struct i40e_vsi_context *vsi_ctx,
169266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
170266423Sjfvenum i40e_status_code i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
171266423Sjfv				u16 vsi_id, bool set_filter,
172266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
173266423Sjfvenum i40e_status_code i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
174303967Ssbruno		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details,
175303967Ssbruno		bool rx_only_promisc);
176266423Sjfvenum i40e_status_code i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
177266423Sjfv		u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
178318357Serjenum i40e_status_code i40e_aq_set_vsi_full_promiscuous(struct i40e_hw *hw,
179318357Serj				u16 seid, bool set,
180318357Serj				struct i40e_asq_cmd_details *cmd_details);
181284049Sjfvenum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
182284049Sjfv				u16 seid, bool enable, u16 vid,
183284049Sjfv				struct i40e_asq_cmd_details *cmd_details);
184284049Sjfvenum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
185284049Sjfv				u16 seid, bool enable, u16 vid,
186284049Sjfv				struct i40e_asq_cmd_details *cmd_details);
187318357Serjenum i40e_status_code i40e_aq_set_vsi_bc_promisc_on_vlan(struct i40e_hw *hw,
188318357Serj				u16 seid, bool enable, u16 vid,
189318357Serj				struct i40e_asq_cmd_details *cmd_details);
190299552Serjenum i40e_status_code i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
191299552Serj				u16 seid, bool enable,
192299552Serj				struct i40e_asq_cmd_details *cmd_details);
193266423Sjfvenum i40e_status_code i40e_aq_get_vsi_params(struct i40e_hw *hw,
194266423Sjfv				struct i40e_vsi_context *vsi_ctx,
195266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
196266423Sjfvenum i40e_status_code i40e_aq_update_vsi_params(struct i40e_hw *hw,
197266423Sjfv				struct i40e_vsi_context *vsi_ctx,
198266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
199266423Sjfvenum i40e_status_code i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
200266423Sjfv				u16 downlink_seid, u8 enabled_tc,
201299552Serj				bool default_port, u16 *pveb_seid,
202299552Serj				bool enable_stats,
203266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
204266423Sjfvenum i40e_status_code i40e_aq_get_veb_parameters(struct i40e_hw *hw,
205266423Sjfv				u16 veb_seid, u16 *switch_id, bool *floating,
206266423Sjfv				u16 *statistic_index, u16 *vebs_used,
207266423Sjfv				u16 *vebs_free,
208266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
209266423Sjfvenum i40e_status_code i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
210266423Sjfv			struct i40e_aqc_add_macvlan_element_data *mv_list,
211266423Sjfv			u16 count, struct i40e_asq_cmd_details *cmd_details);
212266423Sjfvenum i40e_status_code i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
213266423Sjfv			struct i40e_aqc_remove_macvlan_element_data *mv_list,
214266423Sjfv			u16 count, struct i40e_asq_cmd_details *cmd_details);
215299552Serjenum i40e_status_code i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
216299552Serj			u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
217299552Serj			struct i40e_asq_cmd_details *cmd_details,
218299552Serj			u16 *rule_id, u16 *rules_used, u16 *rules_free);
219299552Serjenum i40e_status_code i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
220299552Serj			u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
221299552Serj			struct i40e_asq_cmd_details *cmd_details,
222299552Serj			u16 *rules_used, u16 *rules_free);
223299552Serj
224266423Sjfvenum i40e_status_code i40e_aq_add_vlan(struct i40e_hw *hw, u16 vsi_id,
225266423Sjfv			struct i40e_aqc_add_remove_vlan_element_data *v_list,
226266423Sjfv			u8 count, struct i40e_asq_cmd_details *cmd_details);
227266423Sjfvenum i40e_status_code i40e_aq_remove_vlan(struct i40e_hw *hw, u16 vsi_id,
228266423Sjfv			struct i40e_aqc_add_remove_vlan_element_data *v_list,
229266423Sjfv			u8 count, struct i40e_asq_cmd_details *cmd_details);
230266423Sjfvenum i40e_status_code i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
231266423Sjfv				u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
232266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
233266423Sjfvenum i40e_status_code i40e_aq_get_switch_config(struct i40e_hw *hw,
234266423Sjfv				struct i40e_aqc_get_switch_config_resp *buf,
235266423Sjfv				u16 buf_size, u16 *start_seid,
236266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
237299552Serjenum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
238333343Serj				u16 flags, u16 valid_flags, u8 mode,
239299552Serj				struct i40e_asq_cmd_details *cmd_details);
240266423Sjfvenum i40e_status_code i40e_aq_request_resource(struct i40e_hw *hw,
241266423Sjfv				enum i40e_aq_resources_ids resource,
242266423Sjfv				enum i40e_aq_resource_access_type access,
243266423Sjfv				u8 sdp_number, u64 *timeout,
244266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
245266423Sjfvenum i40e_status_code i40e_aq_release_resource(struct i40e_hw *hw,
246266423Sjfv				enum i40e_aq_resources_ids resource,
247266423Sjfv				u8 sdp_number,
248266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
249266423Sjfvenum i40e_status_code i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
250266423Sjfv				u32 offset, u16 length, void *data,
251266423Sjfv				bool last_command,
252266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
253266423Sjfvenum i40e_status_code i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
254266423Sjfv				u32 offset, u16 length, bool last_command,
255266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
256277082Sjfvenum i40e_status_code i40e_aq_read_nvm_config(struct i40e_hw *hw,
257277082Sjfv				u8 cmd_flags, u32 field_id, void *data,
258277082Sjfv				u16 buf_size, u16 *element_count,
259277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
260277082Sjfvenum i40e_status_code i40e_aq_write_nvm_config(struct i40e_hw *hw,
261277082Sjfv				u8 cmd_flags, void *data, u16 buf_size,
262277082Sjfv				u16 element_count,
263277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
264284049Sjfvenum i40e_status_code i40e_aq_oem_post_update(struct i40e_hw *hw,
265284049Sjfv				void *buff, u16 buff_size,
266284049Sjfv				struct i40e_asq_cmd_details *cmd_details);
267266423Sjfvenum i40e_status_code i40e_aq_discover_capabilities(struct i40e_hw *hw,
268266423Sjfv				void *buff, u16 buff_size, u16 *data_size,
269266423Sjfv				enum i40e_admin_queue_opc list_type_opc,
270266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
271266423Sjfvenum i40e_status_code i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
272266423Sjfv				u32 offset, u16 length, void *data,
273333343Serj				bool last_command, u8 preservation_flags,
274266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
275349163Serjenum i40e_status_code i40e_aq_rearrange_nvm(struct i40e_hw *hw,
276349163Serj				u8 rearrange_nvm,
277349163Serj				struct i40e_asq_cmd_details *cmd_details);
278333343Serjenum i40e_status_code i40e_aq_nvm_progress(struct i40e_hw *hw, u8 *progress,
279333343Serj				struct i40e_asq_cmd_details *cmd_details);
280266423Sjfvenum i40e_status_code i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
281266423Sjfv				u8 mib_type, void *buff, u16 buff_size,
282266423Sjfv				u16 *local_len, u16 *remote_len,
283266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
284277082Sjfvenum i40e_status_code i40e_aq_set_lldp_mib(struct i40e_hw *hw,
285277082Sjfv				u8 mib_type, void *buff, u16 buff_size,
286277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
287266423Sjfvenum i40e_status_code i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
288266423Sjfv				bool enable_update,
289266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
290349163Serjenum i40e_status_code
291349163Serji40e_aq_restore_lldp(struct i40e_hw *hw, u8 *setting, bool restore,
292349163Serj		     struct i40e_asq_cmd_details *cmd_details);
293266423Sjfvenum i40e_status_code i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
294349163Serj				bool persist,
295266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
296333343Serjenum i40e_status_code i40e_aq_set_dcb_parameters(struct i40e_hw *hw,
297333343Serj						 bool dcb_enable,
298333343Serj						 struct i40e_asq_cmd_details
299333343Serj						 *cmd_details);
300266423Sjfvenum i40e_status_code i40e_aq_start_lldp(struct i40e_hw *hw,
301349163Serj				bool persist,
302266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
303277082Sjfvenum i40e_status_code i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
304277082Sjfv				void *buff, u16 buff_size,
305277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
306277082Sjfvenum i40e_status_code i40e_aq_start_stop_dcbx(struct i40e_hw *hw,
307277082Sjfv				bool start_agent,
308277082Sjfv				struct i40e_asq_cmd_details *cmd_details);
309266423Sjfvenum i40e_status_code i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
310266423Sjfv				u16 udp_port, u8 protocol_index,
311266423Sjfv				u8 *filter_index,
312266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
313266423Sjfvenum i40e_status_code i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
314266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
315266423Sjfvenum i40e_status_code i40e_aq_get_switch_resource_alloc(struct i40e_hw *hw,
316266423Sjfv			u8 *num_entries,
317266423Sjfv			struct i40e_aqc_switch_resource_alloc_element_resp *buf,
318266423Sjfv			u16 count,
319266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
320266423Sjfvenum i40e_status_code i40e_aq_add_pvirt(struct i40e_hw *hw, u16 flags,
321266423Sjfv				       u16 mac_seid, u16 vsi_seid,
322266423Sjfv				       u16 *ret_seid);
323266423Sjfvenum i40e_status_code i40e_aq_add_tag(struct i40e_hw *hw, bool direct_to_queue,
324266423Sjfv				u16 vsi_seid, u16 tag, u16 queue_num,
325266423Sjfv				u16 *tags_used, u16 *tags_free,
326266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
327266423Sjfvenum i40e_status_code i40e_aq_remove_tag(struct i40e_hw *hw, u16 vsi_seid,
328266423Sjfv				u16 tag, u16 *tags_used, u16 *tags_free,
329266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
330266423Sjfvenum i40e_status_code i40e_aq_add_mcast_etag(struct i40e_hw *hw, u16 pe_seid,
331266423Sjfv				u16 etag, u8 num_tags_in_buf, void *buf,
332266423Sjfv				u16 *tags_used, u16 *tags_free,
333266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
334266423Sjfvenum i40e_status_code i40e_aq_remove_mcast_etag(struct i40e_hw *hw, u16 pe_seid,
335266423Sjfv				u16 etag, u16 *tags_used, u16 *tags_free,
336266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
337266423Sjfvenum i40e_status_code i40e_aq_update_tag(struct i40e_hw *hw, u16 vsi_seid,
338266423Sjfv				u16 old_tag, u16 new_tag, u16 *tags_used,
339266423Sjfv				u16 *tags_free,
340266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
341266423Sjfvenum i40e_status_code i40e_aq_add_statistics(struct i40e_hw *hw, u16 seid,
342266423Sjfv				u16 vlan_id, u16 *stat_index,
343266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
344266423Sjfvenum i40e_status_code i40e_aq_remove_statistics(struct i40e_hw *hw, u16 seid,
345266423Sjfv				u16 vlan_id, u16 stat_index,
346266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
347266423Sjfvenum i40e_status_code i40e_aq_set_port_parameters(struct i40e_hw *hw,
348266423Sjfv				u16 bad_frame_vsi, bool save_bad_pac,
349266423Sjfv				bool pad_short_pac, bool double_vlan,
350266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
351266423Sjfvenum i40e_status_code i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
352266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
353266423Sjfvenum i40e_status_code i40e_aq_mac_address_write(struct i40e_hw *hw,
354266423Sjfv				    u16 flags, u8 *mac_addr,
355266423Sjfv				    struct i40e_asq_cmd_details *cmd_details);
356266423Sjfvenum i40e_status_code i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
357266423Sjfv				u16 seid, u16 credit, u8 max_credit,
358266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
359266423Sjfvenum i40e_status_code i40e_aq_dcb_ignore_pfc(struct i40e_hw *hw,
360266423Sjfv				u8 tcmap, bool request, u8 *tcmap_ret,
361266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
362266423Sjfvenum i40e_status_code i40e_aq_config_switch_comp_ets_bw_limit(
363266423Sjfv	struct i40e_hw *hw, u16 seid,
364266423Sjfv	struct i40e_aqc_configure_switching_comp_ets_bw_limit_data *bw_data,
365266423Sjfv	struct i40e_asq_cmd_details *cmd_details);
366266423Sjfvenum i40e_status_code i40e_aq_config_vsi_ets_sla_bw_limit(struct i40e_hw *hw,
367266423Sjfv			u16 seid,
368266423Sjfv			struct i40e_aqc_configure_vsi_ets_sla_bw_data *bw_data,
369266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
370266423Sjfvenum i40e_status_code i40e_aq_dcb_updated(struct i40e_hw *hw,
371266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
372266423Sjfvenum i40e_status_code i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
373266423Sjfv				u16 seid, u16 credit, u8 max_bw,
374266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
375266423Sjfvenum i40e_status_code i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
376266423Sjfv			struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
377266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
378266423Sjfvenum i40e_status_code i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
379266423Sjfv			u16 seid,
380266423Sjfv			struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
381266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
382266423Sjfvenum i40e_status_code i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
383266423Sjfv			u16 seid,
384266423Sjfv			struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
385266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
386266423Sjfvenum i40e_status_code i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
387266423Sjfv		u16 seid,
388266423Sjfv		struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
389266423Sjfv		struct i40e_asq_cmd_details *cmd_details);
390266423Sjfvenum i40e_status_code i40e_aq_query_port_ets_config(struct i40e_hw *hw,
391266423Sjfv		u16 seid,
392266423Sjfv		struct i40e_aqc_query_port_ets_config_resp *bw_data,
393266423Sjfv		struct i40e_asq_cmd_details *cmd_details);
394266423Sjfvenum i40e_status_code i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
395266423Sjfv		u16 seid,
396266423Sjfv		struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
397266423Sjfv		struct i40e_asq_cmd_details *cmd_details);
398266423Sjfvenum i40e_status_code i40e_aq_resume_port_tx(struct i40e_hw *hw,
399266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
400277082Sjfvenum i40e_status_code i40e_read_lldp_cfg(struct i40e_hw *hw,
401277082Sjfv					struct i40e_lldp_variables *lldp_cfg);
402266423Sjfvenum i40e_status_code i40e_aq_add_cloud_filters(struct i40e_hw *hw,
403266423Sjfv		u16 vsi,
404266423Sjfv		struct i40e_aqc_add_remove_cloud_filters_element_data *filters,
405266423Sjfv		u8 filter_count);
406266423Sjfv
407266423Sjfvenum i40e_status_code i40e_aq_remove_cloud_filters(struct i40e_hw *hw,
408266423Sjfv		u16 vsi,
409266423Sjfv		struct i40e_aqc_add_remove_cloud_filters_element_data *filters,
410266423Sjfv		u8 filter_count);
411266423Sjfvenum i40e_status_code i40e_aq_alternate_read(struct i40e_hw *hw,
412266423Sjfv				u32 reg_addr0, u32 *reg_val0,
413266423Sjfv				u32 reg_addr1, u32 *reg_val1);
414266423Sjfvenum i40e_status_code i40e_aq_alternate_read_indirect(struct i40e_hw *hw,
415266423Sjfv				u32 addr, u32 dw_count, void *buffer);
416266423Sjfvenum i40e_status_code i40e_aq_alternate_write(struct i40e_hw *hw,
417266423Sjfv				u32 reg_addr0, u32 reg_val0,
418266423Sjfv				u32 reg_addr1, u32 reg_val1);
419266423Sjfvenum i40e_status_code i40e_aq_alternate_write_indirect(struct i40e_hw *hw,
420266423Sjfv				u32 addr, u32 dw_count, void *buffer);
421266423Sjfvenum i40e_status_code i40e_aq_alternate_clear(struct i40e_hw *hw);
422266423Sjfvenum i40e_status_code i40e_aq_alternate_write_done(struct i40e_hw *hw,
423266423Sjfv				u8 bios_mode, bool *reset_needed);
424266423Sjfvenum i40e_status_code i40e_aq_set_oem_mode(struct i40e_hw *hw,
425266423Sjfv				u8 oem_mode);
426266423Sjfv
427266423Sjfv/* i40e_common */
428266423Sjfvenum i40e_status_code i40e_init_shared_code(struct i40e_hw *hw);
429266423Sjfvenum i40e_status_code i40e_pf_reset(struct i40e_hw *hw);
430269198Sjfvvoid i40e_clear_hw(struct i40e_hw *hw);
431266423Sjfvvoid i40e_clear_pxe_mode(struct i40e_hw *hw);
432284049Sjfvenum i40e_status_code i40e_get_link_status(struct i40e_hw *hw, bool *link_up);
433284049Sjfvenum i40e_status_code i40e_update_link_info(struct i40e_hw *hw);
434266423Sjfvenum i40e_status_code i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
435266423Sjfvenum i40e_status_code i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
436266423Sjfv		u32 *max_bw, u32 *min_bw, bool *min_valid, bool *max_valid);
437266423Sjfvenum i40e_status_code i40e_aq_configure_partition_bw(struct i40e_hw *hw,
438266423Sjfv			struct i40e_aqc_configure_partition_bw_data *bw_data,
439266423Sjfv			struct i40e_asq_cmd_details *cmd_details);
440266423Sjfvenum i40e_status_code i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr);
441277082Sjfvenum i40e_status_code i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
442277082Sjfv					    u32 pba_num_size);
443266423Sjfvvoid i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
444266423Sjfvenum i40e_aq_link_speed i40e_get_link_speed(struct i40e_hw *hw);
445266423Sjfv/* prototype for functions used for NVM access */
446266423Sjfvenum i40e_status_code i40e_init_nvm(struct i40e_hw *hw);
447266423Sjfvenum i40e_status_code i40e_acquire_nvm(struct i40e_hw *hw,
448266423Sjfv				      enum i40e_aq_resource_access_type access);
449266423Sjfvvoid i40e_release_nvm(struct i40e_hw *hw);
450266423Sjfvenum i40e_status_code i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
451266423Sjfv					 u16 *data);
452266423Sjfvenum i40e_status_code i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
453266423Sjfv					   u16 *words, u16 *data);
454266423Sjfvenum i40e_status_code i40e_write_nvm_aq(struct i40e_hw *hw, u8 module,
455266423Sjfv					u32 offset, u16 words, void *data,
456266423Sjfv					bool last_command);
457299549Serjenum i40e_status_code __i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
458299549Serj					   u16 *data);
459299549Serjenum i40e_status_code __i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
460299549Serj					     u16 *words, u16 *data);
461299549Serjenum i40e_status_code __i40e_write_nvm_word(struct i40e_hw *hw, u32 offset,
462266423Sjfv					  void *data);
463299549Serjenum i40e_status_code __i40e_write_nvm_buffer(struct i40e_hw *hw, u8 module,
464266423Sjfv					    u32 offset, u16 words, void *data);
465266423Sjfvenum i40e_status_code i40e_calc_nvm_checksum(struct i40e_hw *hw, u16 *checksum);
466266423Sjfvenum i40e_status_code i40e_update_nvm_checksum(struct i40e_hw *hw);
467266423Sjfvenum i40e_status_code i40e_validate_nvm_checksum(struct i40e_hw *hw,
468266423Sjfv						 u16 *checksum);
469266423Sjfvenum i40e_status_code i40e_nvmupd_command(struct i40e_hw *hw,
470266423Sjfv					  struct i40e_nvm_access *cmd,
471266423Sjfv					  u8 *bytes, int *);
472333343Serjvoid i40e_nvmupd_check_wait_event(struct i40e_hw *hw, u16 opcode,
473333343Serj				  struct i40e_aq_desc *desc);
474333343Serjvoid i40e_nvmupd_clear_wait_state(struct i40e_hw *hw);
475266423Sjfvvoid i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
476349163Serjenum i40e_status_code i40e_enable_eee(struct i40e_hw *hw, bool enable);
477266423Sjfv
478266423Sjfvenum i40e_status_code i40e_set_mac_type(struct i40e_hw *hw);
479266423Sjfv
480266423Sjfvextern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
481266423Sjfv
482266423Sjfvstatic INLINE struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
483266423Sjfv{
484266423Sjfv	return i40e_ptype_lookup[ptype];
485266423Sjfv}
486266423Sjfv
487333343Serj/**
488333343Serj * i40e_virtchnl_link_speed - Convert AdminQ link_speed to virtchnl definition
489333343Serj * @link_speed: the speed to convert
490333343Serj *
491333343Serj * Returns the link_speed in terms of the virtchnl interface, for use in
492333343Serj * converting link_speed as reported by the AdminQ into the format used for
493333343Serj * talking to virtchnl devices. If we can't represent the link speed properly,
494333343Serj * report LINK_SPEED_UNKNOWN.
495333343Serj **/
496333343Serjstatic INLINE enum virtchnl_link_speed
497333343Serji40e_virtchnl_link_speed(enum i40e_aq_link_speed link_speed)
498333343Serj{
499333343Serj	switch (link_speed) {
500333343Serj	case I40E_LINK_SPEED_100MB:
501333343Serj		return VIRTCHNL_LINK_SPEED_100MB;
502333343Serj	case I40E_LINK_SPEED_1GB:
503333343Serj		return VIRTCHNL_LINK_SPEED_1GB;
504349163Serj	case I40E_LINK_SPEED_2_5GB:
505349163Serj		return VIRTCHNL_LINK_SPEED_2_5GB;
506349163Serj	case I40E_LINK_SPEED_5GB:
507349163Serj		return VIRTCHNL_LINK_SPEED_5GB;
508333343Serj	case I40E_LINK_SPEED_10GB:
509333343Serj		return VIRTCHNL_LINK_SPEED_10GB;
510333343Serj	case I40E_LINK_SPEED_40GB:
511333343Serj		return VIRTCHNL_LINK_SPEED_40GB;
512333343Serj	case I40E_LINK_SPEED_20GB:
513333343Serj		return VIRTCHNL_LINK_SPEED_20GB;
514333343Serj	case I40E_LINK_SPEED_25GB:
515333343Serj		return VIRTCHNL_LINK_SPEED_25GB;
516333343Serj	case I40E_LINK_SPEED_UNKNOWN:
517333343Serj	default:
518333343Serj		return VIRTCHNL_LINK_SPEED_UNKNOWN;
519333343Serj	}
520333343Serj}
521333343Serj
522266423Sjfv/* prototype for functions used for SW spinlocks */
523266423Sjfvvoid i40e_init_spinlock(struct i40e_spinlock *sp);
524266423Sjfvvoid i40e_acquire_spinlock(struct i40e_spinlock *sp);
525266423Sjfvvoid i40e_release_spinlock(struct i40e_spinlock *sp);
526266423Sjfvvoid i40e_destroy_spinlock(struct i40e_spinlock *sp);
527266423Sjfv
528266423Sjfv/* i40e_common for VF drivers*/
529266423Sjfvvoid i40e_vf_parse_hw_config(struct i40e_hw *hw,
530333343Serj			     struct virtchnl_vf_resource *msg);
531266423Sjfvenum i40e_status_code i40e_vf_reset(struct i40e_hw *hw);
532266423Sjfvenum i40e_status_code i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
533333343Serj				enum virtchnl_ops v_opcode,
534266423Sjfv				enum i40e_status_code v_retval,
535266423Sjfv				u8 *msg, u16 msglen,
536266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
537266423Sjfvenum i40e_status_code i40e_set_filter_control(struct i40e_hw *hw,
538266423Sjfv				struct i40e_filter_control_settings *settings);
539266423Sjfvenum i40e_status_code i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
540266423Sjfv				u8 *mac_addr, u16 ethtype, u16 flags,
541266423Sjfv				u16 vsi_seid, u16 queue, bool is_add,
542266423Sjfv				struct i40e_control_filter_stats *stats,
543266423Sjfv				struct i40e_asq_cmd_details *cmd_details);
544284049Sjfvenum i40e_status_code i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
545284049Sjfv				u8 table_id, u32 start_index, u16 buff_size,
546284049Sjfv				void *buff, u16 *ret_buff_size,
547284049Sjfv				u8 *ret_next_table, u32 *ret_next_index,
548284049Sjfv				struct i40e_asq_cmd_details *cmd_details);
549299547Serjvoid i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
550299547Serj						    u16 vsi_seid);
551299555Serjenum i40e_status_code i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
552299555Serj				u32 reg_addr, u32 *reg_val,
553299555Serj				struct i40e_asq_cmd_details *cmd_details);
554299555Serju32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr);
555299555Serjenum i40e_status_code i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
556299555Serj				u32 reg_addr, u32 reg_val,
557299555Serj				struct i40e_asq_cmd_details *cmd_details);
558299555Serjvoid i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val);
559333343Serjenum i40e_status_code i40e_aq_set_phy_register(struct i40e_hw *hw,
560349163Serj				u8 phy_select, u8 dev_addr, bool page_change,
561333343Serj				u32 reg_addr, u32 reg_val,
562333343Serj				struct i40e_asq_cmd_details *cmd_details);
563333343Serjenum i40e_status_code i40e_aq_get_phy_register(struct i40e_hw *hw,
564349163Serj				u8 phy_select, u8 dev_addr, bool page_change,
565333343Serj				u32 reg_addr, u32 *reg_val,
566333343Serj				struct i40e_asq_cmd_details *cmd_details);
567349163Serjenum i40e_status_code
568349163Serji40e_aq_run_phy_activity(struct i40e_hw *hw, u16 activity_id, u32 opcode,
569349163Serj			 u32 *cmd_status, u32 *data0, u32 *data1,
570349163Serj			 struct i40e_asq_cmd_details *cmd_details);
571333343Serj
572303967Ssbrunoenum i40e_status_code i40e_aq_set_arp_proxy_config(struct i40e_hw *hw,
573303967Ssbruno			struct i40e_aqc_arp_proxy_data *proxy_config,
574303967Ssbruno			struct i40e_asq_cmd_details *cmd_details);
575303967Ssbrunoenum i40e_status_code i40e_aq_set_ns_proxy_table_entry(struct i40e_hw *hw,
576303967Ssbruno			struct i40e_aqc_ns_proxy_data *ns_proxy_table_entry,
577303967Ssbruno			struct i40e_asq_cmd_details *cmd_details);
578303967Ssbrunoenum i40e_status_code i40e_aq_set_clear_wol_filter(struct i40e_hw *hw,
579303967Ssbruno			u8 filter_index,
580303967Ssbruno			struct i40e_aqc_set_wol_filter_data *filter,
581303967Ssbruno			bool set_filter, bool no_wol_tco,
582303967Ssbruno			bool filter_valid, bool no_wol_tco_valid,
583303967Ssbruno			struct i40e_asq_cmd_details *cmd_details);
584303967Ssbrunoenum i40e_status_code i40e_aq_get_wake_event_reason(struct i40e_hw *hw,
585303967Ssbruno			u16 *wake_reason,
586303967Ssbruno			struct i40e_asq_cmd_details *cmd_details);
587318357Serjenum i40e_status_code i40e_aq_clear_all_wol_filters(struct i40e_hw *hw,
588318357Serj			struct i40e_asq_cmd_details *cmd_details);
589318357Serjenum i40e_status_code i40e_read_phy_register_clause22(struct i40e_hw *hw,
590318357Serj					u16 reg, u8 phy_addr, u16 *value);
591318357Serjenum i40e_status_code i40e_write_phy_register_clause22(struct i40e_hw *hw,
592318357Serj					u16 reg, u8 phy_addr, u16 value);
593318357Serjenum i40e_status_code i40e_read_phy_register_clause45(struct i40e_hw *hw,
594318357Serj				u8 page, u16 reg, u8 phy_addr, u16 *value);
595318357Serjenum i40e_status_code i40e_write_phy_register_clause45(struct i40e_hw *hw,
596318357Serj				u8 page, u16 reg, u8 phy_addr, u16 value);
597318357Serjenum i40e_status_code i40e_read_phy_register(struct i40e_hw *hw,
598318357Serj				u8 page, u16 reg, u8 phy_addr, u16 *value);
599318357Serjenum i40e_status_code i40e_write_phy_register(struct i40e_hw *hw,
600318357Serj				u8 page, u16 reg, u8 phy_addr, u16 value);
601299553Serju8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num);
602266423Sjfv#endif /* _I40E_PROTOTYPE_H_ */
603