blob: 0b6e9fc9fb1f46ac36cb30f75a04c339c6345b72 [file] [log] [blame]
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
4 * Copyright(c) 2013 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 with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
21 *
22 * Contact Information:
23 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *
26 ******************************************************************************/
27
28#ifndef _I40E_PROTOTYPE_H_
29#define _I40E_PROTOTYPE_H_
30
31#include "i40e_type.h"
32#include "i40e_alloc.h"
33#include "i40e_virtchnl.h"
34
35/* Prototypes for shared code functions that are not in
36 * the standard function pointer structures. These are
37 * mostly because they are needed even before the init
38 * has happened and will assist in the early SW and FW
39 * setup.
40 */
41
42/* adminq functions */
43i40e_status i40e_init_adminq(struct i40e_hw *hw);
44i40e_status i40e_shutdown_adminq(struct i40e_hw *hw);
45void i40e_adminq_init_ring_data(struct i40e_hw *hw);
46i40e_status i40e_clean_arq_element(struct i40e_hw *hw,
47 struct i40e_arq_event_info *e,
48 u16 *events_pending);
49i40e_status i40e_asq_send_command(struct i40e_hw *hw,
50 struct i40e_aq_desc *desc,
51 void *buff, /* can be NULL */
52 u16 buff_size,
53 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000054
55/* debug function for adminq */
56void i40e_debug_aq(struct i40e_hw *hw,
57 enum i40e_debug_mask mask,
58 void *desc,
59 void *buffer);
60
61void i40e_idle_aq(struct i40e_hw *hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000062
63u32 i40e_led_get(struct i40e_hw *hw);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +000064void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000065
66/* admin send queue commands */
67
68i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
69 u16 *fw_major_version, u16 *fw_minor_version,
70 u16 *api_major_version, u16 *api_minor_version,
71 struct i40e_asq_cmd_details *cmd_details);
72i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw,
73 bool unloading);
74i40e_status i40e_aq_set_phy_reset(struct i40e_hw *hw,
75 struct i40e_asq_cmd_details *cmd_details);
76i40e_status i40e_aq_set_default_vsi(struct i40e_hw *hw, u16 vsi_id,
77 struct i40e_asq_cmd_details *cmd_details);
78i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
79 struct i40e_asq_cmd_details *cmd_details);
80i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
81 bool enable_lse, struct i40e_link_status *link,
82 struct i40e_asq_cmd_details *cmd_details);
83i40e_status i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
84 u64 advt_reg,
85 struct i40e_asq_cmd_details *cmd_details);
86i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
87 struct i40e_driver_version *dv,
88 struct i40e_asq_cmd_details *cmd_details);
89i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
90 struct i40e_vsi_context *vsi_ctx,
91 struct i40e_asq_cmd_details *cmd_details);
92i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
93 u16 vsi_id, bool set_filter,
94 struct i40e_asq_cmd_details *cmd_details);
95i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
96 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
97i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
98 u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
99i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
100 struct i40e_vsi_context *vsi_ctx,
101 struct i40e_asq_cmd_details *cmd_details);
102i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
103 struct i40e_vsi_context *vsi_ctx,
104 struct i40e_asq_cmd_details *cmd_details);
105i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
106 u16 downlink_seid, u8 enabled_tc,
Kevin Scotte1c51b952013-11-20 10:02:51 +0000107 bool default_port, bool enable_l2_filtering,
108 u16 *pveb_seid,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000109 struct i40e_asq_cmd_details *cmd_details);
110i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
111 u16 veb_seid, u16 *switch_id, bool *floating,
112 u16 *statistic_index, u16 *vebs_used,
113 u16 *vebs_free,
114 struct i40e_asq_cmd_details *cmd_details);
115i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 vsi_id,
116 struct i40e_aqc_add_macvlan_element_data *mv_list,
117 u16 count, struct i40e_asq_cmd_details *cmd_details);
118i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 vsi_id,
119 struct i40e_aqc_remove_macvlan_element_data *mv_list,
120 u16 count, struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000121i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
122 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
123 struct i40e_asq_cmd_details *cmd_details);
124i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
125 struct i40e_aqc_get_switch_config_resp *buf,
126 u16 buf_size, u16 *start_seid,
127 struct i40e_asq_cmd_details *cmd_details);
128i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
129 enum i40e_aq_resources_ids resource,
130 enum i40e_aq_resource_access_type access,
131 u8 sdp_number, u64 *timeout,
132 struct i40e_asq_cmd_details *cmd_details);
133i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
134 enum i40e_aq_resources_ids resource,
135 u8 sdp_number,
136 struct i40e_asq_cmd_details *cmd_details);
137i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
138 u32 offset, u16 length, void *data,
139 bool last_command,
140 struct i40e_asq_cmd_details *cmd_details);
141i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
142 void *buff, u16 buff_size, u16 *data_size,
143 enum i40e_admin_queue_opc list_type_opc,
144 struct i40e_asq_cmd_details *cmd_details);
145i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
146 u32 offset, u16 length, void *data,
147 bool last_command,
148 struct i40e_asq_cmd_details *cmd_details);
149i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
150 u8 mib_type, void *buff, u16 buff_size,
151 u16 *local_len, u16 *remote_len,
152 struct i40e_asq_cmd_details *cmd_details);
153i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
154 bool enable_update,
155 struct i40e_asq_cmd_details *cmd_details);
156i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
157 struct i40e_asq_cmd_details *cmd_details);
158i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
159 struct i40e_asq_cmd_details *cmd_details);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +0000160i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
161 u16 udp_port, u8 header_len,
162 u8 protocol_index, u8 *filter_index,
163 struct i40e_asq_cmd_details *cmd_details);
164i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
165 struct i40e_asq_cmd_details *cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000166i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
167 struct i40e_asq_cmd_details *cmd_details);
168i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
169 u16 flags, u8 *mac_addr,
170 struct i40e_asq_cmd_details *cmd_details);
171i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
172 enum i40e_aq_hmc_profile profile,
173 u8 pe_vf_enabled_count,
174 struct i40e_asq_cmd_details *cmd_details);
175i40e_status i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
176 u16 seid, u16 credit, u8 max_bw,
177 struct i40e_asq_cmd_details *cmd_details);
178i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw, u16 seid,
179 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
180 struct i40e_asq_cmd_details *cmd_details);
181i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
182 u16 seid,
183 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
184 struct i40e_asq_cmd_details *cmd_details);
185i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
186 u16 seid,
187 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
188 struct i40e_asq_cmd_details *cmd_details);
189i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
190 u16 seid,
191 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
192 struct i40e_asq_cmd_details *cmd_details);
193i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
194 u16 seid,
195 struct i40e_aqc_query_port_ets_config_resp *bw_data,
196 struct i40e_asq_cmd_details *cmd_details);
197i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
198 u16 seid,
199 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
200 struct i40e_asq_cmd_details *cmd_details);
201/* i40e_common */
202i40e_status i40e_init_shared_code(struct i40e_hw *hw);
203i40e_status i40e_pf_reset(struct i40e_hw *hw);
204void i40e_clear_pxe_mode(struct i40e_hw *hw);
205bool i40e_get_link_status(struct i40e_hw *hw);
206i40e_status i40e_get_mac_addr(struct i40e_hw *hw,
207 u8 *mac_addr);
208i40e_status i40e_validate_mac_addr(u8 *mac_addr);
209i40e_status i40e_read_lldp_cfg(struct i40e_hw *hw,
210 struct i40e_lldp_variables *lldp_cfg);
211/* prototype for functions used for NVM access */
212i40e_status i40e_init_nvm(struct i40e_hw *hw);
213i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
214 enum i40e_aq_resource_access_type access);
215void i40e_release_nvm(struct i40e_hw *hw);
216i40e_status i40e_read_nvm_srrd(struct i40e_hw *hw, u16 offset,
217 u16 *data);
218i40e_status i40e_read_nvm_word(struct i40e_hw *hw, u16 offset,
219 u16 *data);
220i40e_status i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset,
221 u16 *words, u16 *data);
222i40e_status i40e_validate_nvm_checksum(struct i40e_hw *hw,
223 u16 *checksum);
Catherine Sullivand4dfb812013-11-28 06:39:21 +0000224void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000225
226/* prototype for functions used for SW locks */
227
228/* i40e_common for VF drivers*/
229void i40e_vf_parse_hw_config(struct i40e_hw *hw,
230 struct i40e_virtchnl_vf_resource *msg);
231i40e_status i40e_vf_reset(struct i40e_hw *hw);
232i40e_status i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
233 enum i40e_virtchnl_ops v_opcode,
234 i40e_status v_retval,
235 u8 *msg, u16 msglen,
236 struct i40e_asq_cmd_details *cmd_details);
237i40e_status i40e_set_filter_control(struct i40e_hw *hw,
238 struct i40e_filter_control_settings *settings);
239#endif /* _I40E_PROTOTYPE_H_ */