blob: 9cd57e617959b1622ec57f8c8f6e2146c9c800a6 [file] [log] [blame]
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00005 *
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 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * 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/>.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000017 *
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 "i40e_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 */
42i40e_status i40e_init_adminq(struct i40e_hw *hw);
43i40e_status i40e_shutdown_adminq(struct i40e_hw *hw);
44void i40e_adminq_init_ring_data(struct i40e_hw *hw);
45i40e_status i40e_clean_arq_element(struct i40e_hw *hw,
46 struct i40e_arq_event_info *e,
47 u16 *events_pending);
48i40e_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);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000053
54/* debug function for adminq */
55void i40e_debug_aq(struct i40e_hw *hw,
56 enum i40e_debug_mask mask,
57 void *desc,
58 void *buffer);
59
60void i40e_idle_aq(struct i40e_hw *hw);
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +000061bool i40e_check_asq_alive(struct i40e_hw *hw);
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080062i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw, bool unloading);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000063
64u32 i40e_led_get(struct i40e_hw *hw);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +000065void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000066
67/* admin send queue commands */
68
69i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
70 u16 *fw_major_version, u16 *fw_minor_version,
71 u16 *api_major_version, u16 *api_minor_version,
72 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000073i40e_status i40e_aq_set_phy_reset(struct i40e_hw *hw,
74 struct i40e_asq_cmd_details *cmd_details);
75i40e_status i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
76 struct i40e_asq_cmd_details *cmd_details);
77i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
78 struct i40e_asq_cmd_details *cmd_details);
79i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
80 bool enable_lse, struct i40e_link_status *link,
81 struct i40e_asq_cmd_details *cmd_details);
82i40e_status i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
83 u64 advt_reg,
84 struct i40e_asq_cmd_details *cmd_details);
85i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
86 struct i40e_driver_version *dv,
87 struct i40e_asq_cmd_details *cmd_details);
88i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
89 struct i40e_vsi_context *vsi_ctx,
90 struct i40e_asq_cmd_details *cmd_details);
91i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
92 u16 vsi_id, bool set_filter,
93 struct i40e_asq_cmd_details *cmd_details);
94i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
Mitch Williams885552a2013-12-21 05:44:41 +000095 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000096i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
Mitch Williams885552a2013-12-21 05:44:41 +000097 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000098i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
99 struct i40e_vsi_context *vsi_ctx,
100 struct i40e_asq_cmd_details *cmd_details);
101i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
102 struct i40e_vsi_context *vsi_ctx,
103 struct i40e_asq_cmd_details *cmd_details);
104i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
105 u16 downlink_seid, u8 enabled_tc,
Kevin Scotte1c51b952013-11-20 10:02:51 +0000106 bool default_port, bool enable_l2_filtering,
107 u16 *pveb_seid,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000108 struct i40e_asq_cmd_details *cmd_details);
109i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
110 u16 veb_seid, u16 *switch_id, bool *floating,
111 u16 *statistic_index, u16 *vebs_used,
112 u16 *vebs_free,
113 struct i40e_asq_cmd_details *cmd_details);
114i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
115 struct i40e_aqc_add_macvlan_element_data *mv_list,
116 u16 count, struct i40e_asq_cmd_details *cmd_details);
117i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
118 struct i40e_aqc_remove_macvlan_element_data *mv_list,
119 u16 count, struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000120i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
121 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
122 struct i40e_asq_cmd_details *cmd_details);
123i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
124 struct i40e_aqc_get_switch_config_resp *buf,
125 u16 buf_size, u16 *start_seid,
126 struct i40e_asq_cmd_details *cmd_details);
127i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
128 enum i40e_aq_resources_ids resource,
129 enum i40e_aq_resource_access_type access,
130 u8 sdp_number, u64 *timeout,
131 struct i40e_asq_cmd_details *cmd_details);
132i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
133 enum i40e_aq_resources_ids resource,
134 u8 sdp_number,
135 struct i40e_asq_cmd_details *cmd_details);
136i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
137 u32 offset, u16 length, void *data,
138 bool last_command,
139 struct i40e_asq_cmd_details *cmd_details);
140i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
141 void *buff, u16 buff_size, u16 *data_size,
142 enum i40e_admin_queue_opc list_type_opc,
143 struct i40e_asq_cmd_details *cmd_details);
144i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
145 u32 offset, u16 length, void *data,
146 bool last_command,
147 struct i40e_asq_cmd_details *cmd_details);
148i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
149 u8 mib_type, void *buff, u16 buff_size,
150 u16 *local_len, u16 *remote_len,
151 struct i40e_asq_cmd_details *cmd_details);
152i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
153 bool enable_update,
154 struct i40e_asq_cmd_details *cmd_details);
155i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
156 struct i40e_asq_cmd_details *cmd_details);
157i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
158 struct i40e_asq_cmd_details *cmd_details);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +0000159i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
160 u16 udp_port, u8 header_len,
161 u8 protocol_index, u8 *filter_index,
162 struct i40e_asq_cmd_details *cmd_details);
163i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
164 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000165i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
166 struct i40e_asq_cmd_details *cmd_details);
167i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
168 u16 flags, u8 *mac_addr,
169 struct i40e_asq_cmd_details *cmd_details);
Neerav Parikhafb3ff02014-01-17 15:36:36 -0800170i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
171 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000172i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
173 enum i40e_aq_hmc_profile profile,
174 u8 pe_vf_enabled_count,
175 struct i40e_asq_cmd_details *cmd_details);
176i40e_status i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
177 u16 seid, u16 credit, u8 max_bw,
178 struct i40e_asq_cmd_details *cmd_details);
179i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
180 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
181 struct i40e_asq_cmd_details *cmd_details);
Neerav Parikhafb3ff02014-01-17 15:36:36 -0800182i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
183 u16 seid,
184 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
185 enum i40e_admin_queue_opc opcode,
186 struct i40e_asq_cmd_details *cmd_details);
187i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
188 u16 seid,
189 struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
190 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000191i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
192 u16 seid,
193 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
194 struct i40e_asq_cmd_details *cmd_details);
195i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
196 u16 seid,
197 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
198 struct i40e_asq_cmd_details *cmd_details);
199i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
200 u16 seid,
201 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
202 struct i40e_asq_cmd_details *cmd_details);
203i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
204 u16 seid,
205 struct i40e_aqc_query_port_ets_config_resp *bw_data,
206 struct i40e_asq_cmd_details *cmd_details);
207i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
208 u16 seid,
209 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
210 struct i40e_asq_cmd_details *cmd_details);
211/* i40e_common */
212i40e_status i40e_init_shared_code(struct i40e_hw *hw);
213i40e_status i40e_pf_reset(struct i40e_hw *hw);
214void i40e_clear_pxe_mode(struct i40e_hw *hw);
215bool i40e_get_link_status(struct i40e_hw *hw);
216i40e_status i40e_get_mac_addr(struct i40e_hw *hw,
217 u8 *mac_addr);
Neerav Parikhafb3ff02014-01-17 15:36:36 -0800218i40e_status i40e_validate_mac_addr(u8 *mac_addr);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000219/* prototype for functions used for NVM access */
220i40e_status i40e_init_nvm(struct i40e_hw *hw);
221i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
222 enum i40e_aq_resource_access_type access);
223void i40e_release_nvm(struct i40e_hw *hw);
224i40e_status i40e_read_nvm_srrd(struct i40e_hw *hw, u16 offset,
225 u16 *data);
226i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
227 u16 *data);
228i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
229 u16 *words, u16 *data);
230i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
231 u16 *checksum);
Catherine Sullivand4dfb812013-11-28 06:39:21 +0000232void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000233
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000234extern struct i40e_rx_ptype_decoded i40e_ptype_lookup[];
235
236static inline struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype)
237{
238 return i40e_ptype_lookup[ptype];
239}
240
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000241/* prototype for functions used for SW locks */
242
243/* i40e_common for VF drivers*/
244void i40e_vf_parse_hw_config(struct i40e_hw *hw,
245 struct i40e_virtchnl_vf_resource *msg);
246i40e_status i40e_vf_reset(struct i40e_hw *hw);
247i40e_status i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
248 enum i40e_virtchnl_ops v_opcode,
249 i40e_status v_retval,
250 u8 *msg, u16 msglen,
251 struct i40e_asq_cmd_details *cmd_details);
252i40e_status i40e_set_filter_control(struct i40e_hw *hw,
253 struct i40e_filter_control_settings *settings);
Neerav Parikhafb3ff02014-01-17 15:36:36 -0800254i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
255 u8 *mac_addr, u16 ethtype, u16 flags,
256 u16 vsi_seid, u16 queue, bool is_add,
257 struct i40e_control_filter_stats *stats,
258 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000259#endif /* _I40E_PROTOTYPE_H_ */