blob: 0d3bc3be0527d35245b545aa92202c13664452c0 [file] [log] [blame]
Greg Rosed358aa92013-12-21 06:13:11 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
Jesse Brandeburgb8316072014-04-05 07:46:11 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Greg Rosed358aa92013-12-21 06:13:11 +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 *
Jesse Brandeburgb8316072014-04-05 07:46:11 +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/>.
17 *
Greg Rosed358aa92013-12-21 06:13:11 +000018 * 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_ADMINQ_CMD_H_
28#define _I40E_ADMINQ_CMD_H_
29
30/* This header file defines the i40e Admin Queue commands and is shared between
31 * i40e Firmware and Software.
32 *
33 * This file needs to comply with the Linux Kernel coding style.
34 */
35
Jeff Kirsher8c570dc2014-09-13 07:40:43 +000036#define I40E_FW_API_VERSION_MAJOR 0x0001
Greg Rosecb2f65b2015-04-27 14:57:12 -040037#define I40E_FW_API_VERSION_MINOR 0x0004
Greg Rosed358aa92013-12-21 06:13:11 +000038
39struct i40e_aq_desc {
40 __le16 flags;
41 __le16 opcode;
42 __le16 datalen;
43 __le16 retval;
44 __le32 cookie_high;
45 __le32 cookie_low;
46 union {
47 struct {
48 __le32 param0;
49 __le32 param1;
50 __le32 param2;
51 __le32 param3;
52 } internal;
53 struct {
54 __le32 param0;
55 __le32 param1;
56 __le32 addr_high;
57 __le32 addr_low;
58 } external;
59 u8 raw[16];
60 } params;
61};
62
63/* Flags sub-structure
64 * |0 |1 |2 |3 |4 |5 |6 |7 |8 |9 |10 |11 |12 |13 |14 |15 |
65 * |DD |CMP|ERR|VFE| * * RESERVED * * |LB |RD |VFC|BUF|SI |EI |FE |
66 */
67
68/* command flags and offsets*/
Jeff Kirsher8c570dc2014-09-13 07:40:43 +000069#define I40E_AQ_FLAG_DD_SHIFT 0
70#define I40E_AQ_FLAG_CMP_SHIFT 1
71#define I40E_AQ_FLAG_ERR_SHIFT 2
72#define I40E_AQ_FLAG_VFE_SHIFT 3
73#define I40E_AQ_FLAG_LB_SHIFT 9
74#define I40E_AQ_FLAG_RD_SHIFT 10
75#define I40E_AQ_FLAG_VFC_SHIFT 11
76#define I40E_AQ_FLAG_BUF_SHIFT 12
77#define I40E_AQ_FLAG_SI_SHIFT 13
78#define I40E_AQ_FLAG_EI_SHIFT 14
79#define I40E_AQ_FLAG_FE_SHIFT 15
Greg Rosed358aa92013-12-21 06:13:11 +000080
Jeff Kirsher8c570dc2014-09-13 07:40:43 +000081#define I40E_AQ_FLAG_DD (1 << I40E_AQ_FLAG_DD_SHIFT) /* 0x1 */
82#define I40E_AQ_FLAG_CMP (1 << I40E_AQ_FLAG_CMP_SHIFT) /* 0x2 */
83#define I40E_AQ_FLAG_ERR (1 << I40E_AQ_FLAG_ERR_SHIFT) /* 0x4 */
84#define I40E_AQ_FLAG_VFE (1 << I40E_AQ_FLAG_VFE_SHIFT) /* 0x8 */
85#define I40E_AQ_FLAG_LB (1 << I40E_AQ_FLAG_LB_SHIFT) /* 0x200 */
86#define I40E_AQ_FLAG_RD (1 << I40E_AQ_FLAG_RD_SHIFT) /* 0x400 */
87#define I40E_AQ_FLAG_VFC (1 << I40E_AQ_FLAG_VFC_SHIFT) /* 0x800 */
88#define I40E_AQ_FLAG_BUF (1 << I40E_AQ_FLAG_BUF_SHIFT) /* 0x1000 */
89#define I40E_AQ_FLAG_SI (1 << I40E_AQ_FLAG_SI_SHIFT) /* 0x2000 */
90#define I40E_AQ_FLAG_EI (1 << I40E_AQ_FLAG_EI_SHIFT) /* 0x4000 */
91#define I40E_AQ_FLAG_FE (1 << I40E_AQ_FLAG_FE_SHIFT) /* 0x8000 */
Greg Rosed358aa92013-12-21 06:13:11 +000092
93/* error codes */
94enum i40e_admin_queue_err {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +000095 I40E_AQ_RC_OK = 0, /* success */
96 I40E_AQ_RC_EPERM = 1, /* Operation not permitted */
97 I40E_AQ_RC_ENOENT = 2, /* No such element */
98 I40E_AQ_RC_ESRCH = 3, /* Bad opcode */
99 I40E_AQ_RC_EINTR = 4, /* operation interrupted */
100 I40E_AQ_RC_EIO = 5, /* I/O error */
101 I40E_AQ_RC_ENXIO = 6, /* No such resource */
102 I40E_AQ_RC_E2BIG = 7, /* Arg too long */
103 I40E_AQ_RC_EAGAIN = 8, /* Try again */
104 I40E_AQ_RC_ENOMEM = 9, /* Out of memory */
105 I40E_AQ_RC_EACCES = 10, /* Permission denied */
106 I40E_AQ_RC_EFAULT = 11, /* Bad address */
107 I40E_AQ_RC_EBUSY = 12, /* Device or resource busy */
108 I40E_AQ_RC_EEXIST = 13, /* object already exists */
109 I40E_AQ_RC_EINVAL = 14, /* Invalid argument */
110 I40E_AQ_RC_ENOTTY = 15, /* Not a typewriter */
111 I40E_AQ_RC_ENOSPC = 16, /* No space left or alloc failure */
112 I40E_AQ_RC_ENOSYS = 17, /* Function not implemented */
113 I40E_AQ_RC_ERANGE = 18, /* Parameter out of range */
114 I40E_AQ_RC_EFLUSHED = 19, /* Cmd flushed due to prev cmd error */
115 I40E_AQ_RC_BAD_ADDR = 20, /* Descriptor contains a bad pointer */
116 I40E_AQ_RC_EMODE = 21, /* Op not allowed in current dev mode */
117 I40E_AQ_RC_EFBIG = 22, /* File too large */
Greg Rosed358aa92013-12-21 06:13:11 +0000118};
119
120/* Admin Queue command opcodes */
121enum i40e_admin_queue_opc {
122 /* aq commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000123 i40e_aqc_opc_get_version = 0x0001,
124 i40e_aqc_opc_driver_version = 0x0002,
125 i40e_aqc_opc_queue_shutdown = 0x0003,
126 i40e_aqc_opc_set_pf_context = 0x0004,
Greg Rosed358aa92013-12-21 06:13:11 +0000127
128 /* resource ownership */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000129 i40e_aqc_opc_request_resource = 0x0008,
130 i40e_aqc_opc_release_resource = 0x0009,
Greg Rosed358aa92013-12-21 06:13:11 +0000131
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000132 i40e_aqc_opc_list_func_capabilities = 0x000A,
133 i40e_aqc_opc_list_dev_capabilities = 0x000B,
Greg Rosed358aa92013-12-21 06:13:11 +0000134
Greg Rosed358aa92013-12-21 06:13:11 +0000135 /* LAA */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000136 i40e_aqc_opc_mac_address_read = 0x0107,
137 i40e_aqc_opc_mac_address_write = 0x0108,
Greg Rosed358aa92013-12-21 06:13:11 +0000138
139 /* PXE */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000140 i40e_aqc_opc_clear_pxe_mode = 0x0110,
Greg Rosed358aa92013-12-21 06:13:11 +0000141
142 /* internal switch commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000143 i40e_aqc_opc_get_switch_config = 0x0200,
144 i40e_aqc_opc_add_statistics = 0x0201,
145 i40e_aqc_opc_remove_statistics = 0x0202,
146 i40e_aqc_opc_set_port_parameters = 0x0203,
147 i40e_aqc_opc_get_switch_resource_alloc = 0x0204,
Greg Rosed358aa92013-12-21 06:13:11 +0000148
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000149 i40e_aqc_opc_add_vsi = 0x0210,
150 i40e_aqc_opc_update_vsi_parameters = 0x0211,
151 i40e_aqc_opc_get_vsi_parameters = 0x0212,
Greg Rosed358aa92013-12-21 06:13:11 +0000152
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000153 i40e_aqc_opc_add_pv = 0x0220,
154 i40e_aqc_opc_update_pv_parameters = 0x0221,
155 i40e_aqc_opc_get_pv_parameters = 0x0222,
Greg Rosed358aa92013-12-21 06:13:11 +0000156
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000157 i40e_aqc_opc_add_veb = 0x0230,
158 i40e_aqc_opc_update_veb_parameters = 0x0231,
159 i40e_aqc_opc_get_veb_parameters = 0x0232,
Greg Rosed358aa92013-12-21 06:13:11 +0000160
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000161 i40e_aqc_opc_delete_element = 0x0243,
Greg Rosed358aa92013-12-21 06:13:11 +0000162
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000163 i40e_aqc_opc_add_macvlan = 0x0250,
164 i40e_aqc_opc_remove_macvlan = 0x0251,
165 i40e_aqc_opc_add_vlan = 0x0252,
166 i40e_aqc_opc_remove_vlan = 0x0253,
167 i40e_aqc_opc_set_vsi_promiscuous_modes = 0x0254,
168 i40e_aqc_opc_add_tag = 0x0255,
169 i40e_aqc_opc_remove_tag = 0x0256,
170 i40e_aqc_opc_add_multicast_etag = 0x0257,
171 i40e_aqc_opc_remove_multicast_etag = 0x0258,
172 i40e_aqc_opc_update_tag = 0x0259,
173 i40e_aqc_opc_add_control_packet_filter = 0x025A,
174 i40e_aqc_opc_remove_control_packet_filter = 0x025B,
175 i40e_aqc_opc_add_cloud_filters = 0x025C,
176 i40e_aqc_opc_remove_cloud_filters = 0x025D,
Greg Rosed358aa92013-12-21 06:13:11 +0000177
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000178 i40e_aqc_opc_add_mirror_rule = 0x0260,
179 i40e_aqc_opc_delete_mirror_rule = 0x0261,
Greg Rosed358aa92013-12-21 06:13:11 +0000180
Greg Rosed358aa92013-12-21 06:13:11 +0000181 /* DCB commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000182 i40e_aqc_opc_dcb_ignore_pfc = 0x0301,
183 i40e_aqc_opc_dcb_updated = 0x0302,
Greg Rosed358aa92013-12-21 06:13:11 +0000184
185 /* TX scheduler */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000186 i40e_aqc_opc_configure_vsi_bw_limit = 0x0400,
187 i40e_aqc_opc_configure_vsi_ets_sla_bw_limit = 0x0406,
188 i40e_aqc_opc_configure_vsi_tc_bw = 0x0407,
189 i40e_aqc_opc_query_vsi_bw_config = 0x0408,
190 i40e_aqc_opc_query_vsi_ets_sla_config = 0x040A,
191 i40e_aqc_opc_configure_switching_comp_bw_limit = 0x0410,
Greg Rosed358aa92013-12-21 06:13:11 +0000192
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000193 i40e_aqc_opc_enable_switching_comp_ets = 0x0413,
194 i40e_aqc_opc_modify_switching_comp_ets = 0x0414,
195 i40e_aqc_opc_disable_switching_comp_ets = 0x0415,
196 i40e_aqc_opc_configure_switching_comp_ets_bw_limit = 0x0416,
197 i40e_aqc_opc_configure_switching_comp_bw_config = 0x0417,
198 i40e_aqc_opc_query_switching_comp_ets_config = 0x0418,
199 i40e_aqc_opc_query_port_ets_config = 0x0419,
200 i40e_aqc_opc_query_switching_comp_bw_config = 0x041A,
201 i40e_aqc_opc_suspend_port_tx = 0x041B,
202 i40e_aqc_opc_resume_port_tx = 0x041C,
203 i40e_aqc_opc_configure_partition_bw = 0x041D,
Greg Rosed358aa92013-12-21 06:13:11 +0000204
205 /* hmc */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000206 i40e_aqc_opc_query_hmc_resource_profile = 0x0500,
207 i40e_aqc_opc_set_hmc_resource_profile = 0x0501,
Greg Rosed358aa92013-12-21 06:13:11 +0000208
209 /* phy commands*/
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000210 i40e_aqc_opc_get_phy_abilities = 0x0600,
211 i40e_aqc_opc_set_phy_config = 0x0601,
212 i40e_aqc_opc_set_mac_config = 0x0603,
213 i40e_aqc_opc_set_link_restart_an = 0x0605,
214 i40e_aqc_opc_get_link_status = 0x0607,
215 i40e_aqc_opc_set_phy_int_mask = 0x0613,
216 i40e_aqc_opc_get_local_advt_reg = 0x0614,
217 i40e_aqc_opc_set_local_advt_reg = 0x0615,
218 i40e_aqc_opc_get_partner_advt = 0x0616,
219 i40e_aqc_opc_set_lb_modes = 0x0618,
220 i40e_aqc_opc_get_phy_wol_caps = 0x0621,
221 i40e_aqc_opc_set_phy_debug = 0x0622,
222 i40e_aqc_opc_upload_ext_phy_fm = 0x0625,
Greg Rosed358aa92013-12-21 06:13:11 +0000223
224 /* NVM commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000225 i40e_aqc_opc_nvm_read = 0x0701,
226 i40e_aqc_opc_nvm_erase = 0x0702,
227 i40e_aqc_opc_nvm_update = 0x0703,
228 i40e_aqc_opc_nvm_config_read = 0x0704,
229 i40e_aqc_opc_nvm_config_write = 0x0705,
Michal Kosiarz00ada502015-11-19 11:34:20 -0800230 i40e_aqc_opc_oem_post_update = 0x0720,
Greg Rosed358aa92013-12-21 06:13:11 +0000231
232 /* virtualization commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000233 i40e_aqc_opc_send_msg_to_pf = 0x0801,
234 i40e_aqc_opc_send_msg_to_vf = 0x0802,
235 i40e_aqc_opc_send_msg_to_peer = 0x0803,
Greg Rosed358aa92013-12-21 06:13:11 +0000236
237 /* alternate structure */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000238 i40e_aqc_opc_alternate_write = 0x0900,
239 i40e_aqc_opc_alternate_write_indirect = 0x0901,
240 i40e_aqc_opc_alternate_read = 0x0902,
241 i40e_aqc_opc_alternate_read_indirect = 0x0903,
242 i40e_aqc_opc_alternate_write_done = 0x0904,
243 i40e_aqc_opc_alternate_set_mode = 0x0905,
244 i40e_aqc_opc_alternate_clear_port = 0x0906,
Greg Rosed358aa92013-12-21 06:13:11 +0000245
246 /* LLDP commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000247 i40e_aqc_opc_lldp_get_mib = 0x0A00,
248 i40e_aqc_opc_lldp_update_mib = 0x0A01,
249 i40e_aqc_opc_lldp_add_tlv = 0x0A02,
250 i40e_aqc_opc_lldp_update_tlv = 0x0A03,
251 i40e_aqc_opc_lldp_delete_tlv = 0x0A04,
252 i40e_aqc_opc_lldp_stop = 0x0A05,
253 i40e_aqc_opc_lldp_start = 0x0A06,
Greg Rosed358aa92013-12-21 06:13:11 +0000254
255 /* Tunnel commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000256 i40e_aqc_opc_add_udp_tunnel = 0x0B00,
257 i40e_aqc_opc_del_udp_tunnel = 0x0B01,
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400258 i40e_aqc_opc_set_rss_key = 0x0B02,
259 i40e_aqc_opc_set_rss_lut = 0x0B03,
260 i40e_aqc_opc_get_rss_key = 0x0B04,
261 i40e_aqc_opc_get_rss_lut = 0x0B05,
Greg Rosed358aa92013-12-21 06:13:11 +0000262
263 /* Async Events */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000264 i40e_aqc_opc_event_lan_overflow = 0x1001,
Greg Rosed358aa92013-12-21 06:13:11 +0000265
266 /* OEM commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000267 i40e_aqc_opc_oem_parameter_change = 0xFE00,
268 i40e_aqc_opc_oem_device_status_change = 0xFE01,
Shannon Nelson672415c2014-12-14 01:55:13 +0000269 i40e_aqc_opc_oem_ocsd_initialize = 0xFE02,
270 i40e_aqc_opc_oem_ocbb_initialize = 0xFE03,
Greg Rosed358aa92013-12-21 06:13:11 +0000271
272 /* debug commands */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000273 i40e_aqc_opc_debug_read_reg = 0xFF03,
274 i40e_aqc_opc_debug_write_reg = 0xFF04,
275 i40e_aqc_opc_debug_modify_reg = 0xFF07,
276 i40e_aqc_opc_debug_dump_internals = 0xFF08,
Greg Rosed358aa92013-12-21 06:13:11 +0000277};
278
279/* command structures and indirect data structures */
280
281/* Structure naming conventions:
282 * - no suffix for direct command descriptor structures
283 * - _data for indirect sent data
284 * - _resp for indirect return data (data which is both will use _data)
285 * - _completion for direct return data
286 * - _element_ for repeated elements (may also be _data or _resp)
287 *
288 * Command structures are expected to overlay the params.raw member of the basic
289 * descriptor, and as such cannot exceed 16 bytes in length.
290 */
291
292/* This macro is used to generate a compilation error if a structure
293 * is not exactly the correct length. It gives a divide by zero error if the
294 * structure is not of the correct size, otherwise it creates an enum that is
295 * never used.
296 */
297#define I40E_CHECK_STRUCT_LEN(n, X) enum i40e_static_assert_enum_##X \
298 { i40e_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
299
300/* This macro is used extensively to ensure that command structures are 16
301 * bytes in length as they have to map to the raw array of that size.
302 */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000303#define I40E_CHECK_CMD_LENGTH(X) I40E_CHECK_STRUCT_LEN(16, X)
Greg Rosed358aa92013-12-21 06:13:11 +0000304
305/* internal (0x00XX) commands */
306
307/* Get version (direct 0x0001) */
308struct i40e_aqc_get_version {
309 __le32 rom_ver;
310 __le32 fw_build;
311 __le16 fw_major;
312 __le16 fw_minor;
313 __le16 api_major;
314 __le16 api_minor;
315};
316
317I40E_CHECK_CMD_LENGTH(i40e_aqc_get_version);
318
319/* Send driver version (indirect 0x0002) */
320struct i40e_aqc_driver_version {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000321 u8 driver_major_ver;
322 u8 driver_minor_ver;
323 u8 driver_build_ver;
324 u8 driver_subbuild_ver;
325 u8 reserved[4];
326 __le32 address_high;
327 __le32 address_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000328};
329
330I40E_CHECK_CMD_LENGTH(i40e_aqc_driver_version);
331
332/* Queue Shutdown (direct 0x0003) */
333struct i40e_aqc_queue_shutdown {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000334 __le32 driver_unloading;
335#define I40E_AQ_DRIVER_UNLOADING 0x1
336 u8 reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +0000337};
338
339I40E_CHECK_CMD_LENGTH(i40e_aqc_queue_shutdown);
340
Shannon Nelsonf94234e2014-05-22 06:31:30 +0000341/* Set PF context (0x0004, direct) */
342struct i40e_aqc_set_pf_context {
343 u8 pf_id;
344 u8 reserved[15];
345};
346
347I40E_CHECK_CMD_LENGTH(i40e_aqc_set_pf_context);
348
Greg Rosed358aa92013-12-21 06:13:11 +0000349/* Request resource ownership (direct 0x0008)
350 * Release resource ownership (direct 0x0009)
351 */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000352#define I40E_AQ_RESOURCE_NVM 1
353#define I40E_AQ_RESOURCE_SDP 2
354#define I40E_AQ_RESOURCE_ACCESS_READ 1
355#define I40E_AQ_RESOURCE_ACCESS_WRITE 2
356#define I40E_AQ_RESOURCE_NVM_READ_TIMEOUT 3000
357#define I40E_AQ_RESOURCE_NVM_WRITE_TIMEOUT 180000
Greg Rosed358aa92013-12-21 06:13:11 +0000358
359struct i40e_aqc_request_resource {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000360 __le16 resource_id;
361 __le16 access_type;
362 __le32 timeout;
363 __le32 resource_number;
364 u8 reserved[4];
Greg Rosed358aa92013-12-21 06:13:11 +0000365};
366
367I40E_CHECK_CMD_LENGTH(i40e_aqc_request_resource);
368
369/* Get function capabilities (indirect 0x000A)
370 * Get device capabilities (indirect 0x000B)
371 */
372struct i40e_aqc_list_capabilites {
373 u8 command_flags;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000374#define I40E_AQ_LIST_CAP_PF_INDEX_EN 1
Greg Rosed358aa92013-12-21 06:13:11 +0000375 u8 pf_index;
376 u8 reserved[2];
377 __le32 count;
378 __le32 addr_high;
379 __le32 addr_low;
380};
381
382I40E_CHECK_CMD_LENGTH(i40e_aqc_list_capabilites);
383
384struct i40e_aqc_list_capabilities_element_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000385 __le16 id;
386 u8 major_rev;
387 u8 minor_rev;
388 __le32 number;
389 __le32 logical_id;
390 __le32 phys_id;
391 u8 reserved[16];
Greg Rosed358aa92013-12-21 06:13:11 +0000392};
393
394/* list of caps */
395
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000396#define I40E_AQ_CAP_ID_SWITCH_MODE 0x0001
397#define I40E_AQ_CAP_ID_MNG_MODE 0x0002
398#define I40E_AQ_CAP_ID_NPAR_ACTIVE 0x0003
399#define I40E_AQ_CAP_ID_OS2BMC_CAP 0x0004
400#define I40E_AQ_CAP_ID_FUNCTIONS_VALID 0x0005
401#define I40E_AQ_CAP_ID_ALTERNATE_RAM 0x0006
402#define I40E_AQ_CAP_ID_SRIOV 0x0012
403#define I40E_AQ_CAP_ID_VF 0x0013
404#define I40E_AQ_CAP_ID_VMDQ 0x0014
405#define I40E_AQ_CAP_ID_8021QBG 0x0015
406#define I40E_AQ_CAP_ID_8021QBR 0x0016
407#define I40E_AQ_CAP_ID_VSI 0x0017
408#define I40E_AQ_CAP_ID_DCB 0x0018
409#define I40E_AQ_CAP_ID_FCOE 0x0021
Shannon Nelson35155fe2014-12-12 07:50:07 +0000410#define I40E_AQ_CAP_ID_ISCSI 0x0022
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000411#define I40E_AQ_CAP_ID_RSS 0x0040
412#define I40E_AQ_CAP_ID_RXQ 0x0041
413#define I40E_AQ_CAP_ID_TXQ 0x0042
414#define I40E_AQ_CAP_ID_MSIX 0x0043
415#define I40E_AQ_CAP_ID_VF_MSIX 0x0044
416#define I40E_AQ_CAP_ID_FLOW_DIRECTOR 0x0045
417#define I40E_AQ_CAP_ID_1588 0x0046
418#define I40E_AQ_CAP_ID_IWARP 0x0051
419#define I40E_AQ_CAP_ID_LED 0x0061
420#define I40E_AQ_CAP_ID_SDP 0x0062
421#define I40E_AQ_CAP_ID_MDIO 0x0063
Shannon Nelson406e7342015-12-10 11:38:49 -0800422#define I40E_AQ_CAP_ID_WSR_PROT 0x0064
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000423#define I40E_AQ_CAP_ID_FLEX10 0x00F1
424#define I40E_AQ_CAP_ID_CEM 0x00F2
Greg Rosed358aa92013-12-21 06:13:11 +0000425
426/* Set CPPM Configuration (direct 0x0103) */
427struct i40e_aqc_cppm_configuration {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000428 __le16 command_flags;
429#define I40E_AQ_CPPM_EN_LTRC 0x0800
430#define I40E_AQ_CPPM_EN_DMCTH 0x1000
431#define I40E_AQ_CPPM_EN_DMCTLX 0x2000
432#define I40E_AQ_CPPM_EN_HPTC 0x4000
433#define I40E_AQ_CPPM_EN_DMARC 0x8000
434 __le16 ttlx;
435 __le32 dmacr;
436 __le16 dmcth;
437 u8 hptc;
438 u8 reserved;
439 __le32 pfltrc;
Greg Rosed358aa92013-12-21 06:13:11 +0000440};
441
442I40E_CHECK_CMD_LENGTH(i40e_aqc_cppm_configuration);
443
444/* Set ARP Proxy command / response (indirect 0x0104) */
445struct i40e_aqc_arp_proxy_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000446 __le16 command_flags;
447#define I40E_AQ_ARP_INIT_IPV4 0x0008
448#define I40E_AQ_ARP_UNSUP_CTL 0x0010
449#define I40E_AQ_ARP_ENA 0x0020
450#define I40E_AQ_ARP_ADD_IPV4 0x0040
451#define I40E_AQ_ARP_DEL_IPV4 0x0080
452 __le16 table_id;
453 __le32 pfpm_proxyfc;
454 __le32 ip_addr;
455 u8 mac_addr[6];
Shannon Nelson672415c2014-12-14 01:55:13 +0000456 u8 reserved[2];
Greg Rosed358aa92013-12-21 06:13:11 +0000457};
458
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000459I40E_CHECK_STRUCT_LEN(0x14, i40e_aqc_arp_proxy_data);
460
Greg Rosed358aa92013-12-21 06:13:11 +0000461/* Set NS Proxy Table Entry Command (indirect 0x0105) */
462struct i40e_aqc_ns_proxy_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000463 __le16 table_idx_mac_addr_0;
464 __le16 table_idx_mac_addr_1;
465 __le16 table_idx_ipv6_0;
466 __le16 table_idx_ipv6_1;
467 __le16 control;
468#define I40E_AQ_NS_PROXY_ADD_0 0x0100
469#define I40E_AQ_NS_PROXY_DEL_0 0x0200
470#define I40E_AQ_NS_PROXY_ADD_1 0x0400
471#define I40E_AQ_NS_PROXY_DEL_1 0x0800
472#define I40E_AQ_NS_PROXY_ADD_IPV6_0 0x1000
473#define I40E_AQ_NS_PROXY_DEL_IPV6_0 0x2000
474#define I40E_AQ_NS_PROXY_ADD_IPV6_1 0x4000
475#define I40E_AQ_NS_PROXY_DEL_IPV6_1 0x8000
476#define I40E_AQ_NS_PROXY_COMMAND_SEQ 0x0001
477#define I40E_AQ_NS_PROXY_INIT_IPV6_TBL 0x0002
478#define I40E_AQ_NS_PROXY_INIT_MAC_TBL 0x0004
479 u8 mac_addr_0[6];
480 u8 mac_addr_1[6];
481 u8 local_mac_addr[6];
482 u8 ipv6_addr_0[16]; /* Warning! spec specifies BE byte order */
483 u8 ipv6_addr_1[16];
Greg Rosed358aa92013-12-21 06:13:11 +0000484};
485
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000486I40E_CHECK_STRUCT_LEN(0x3c, i40e_aqc_ns_proxy_data);
487
Greg Rosed358aa92013-12-21 06:13:11 +0000488/* Manage LAA Command (0x0106) - obsolete */
489struct i40e_aqc_mng_laa {
490 __le16 command_flags;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000491#define I40E_AQ_LAA_FLAG_WR 0x8000
492 u8 reserved[2];
493 __le32 sal;
494 __le16 sah;
495 u8 reserved2[6];
Greg Rosed358aa92013-12-21 06:13:11 +0000496};
497
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000498I40E_CHECK_CMD_LENGTH(i40e_aqc_mng_laa);
499
Greg Rosed358aa92013-12-21 06:13:11 +0000500/* Manage MAC Address Read Command (indirect 0x0107) */
501struct i40e_aqc_mac_address_read {
502 __le16 command_flags;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000503#define I40E_AQC_LAN_ADDR_VALID 0x10
504#define I40E_AQC_SAN_ADDR_VALID 0x20
505#define I40E_AQC_PORT_ADDR_VALID 0x40
506#define I40E_AQC_WOL_ADDR_VALID 0x80
Greg Rosecb2f65b2015-04-27 14:57:12 -0400507#define I40E_AQC_MC_MAG_EN_VALID 0x100
508#define I40E_AQC_ADDR_VALID_MASK 0x1F0
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000509 u8 reserved[6];
510 __le32 addr_high;
511 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000512};
513
514I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_read);
515
516struct i40e_aqc_mac_address_read_data {
517 u8 pf_lan_mac[6];
518 u8 pf_san_mac[6];
519 u8 port_mac[6];
520 u8 pf_wol_mac[6];
521};
522
523I40E_CHECK_STRUCT_LEN(24, i40e_aqc_mac_address_read_data);
524
525/* Manage MAC Address Write Command (0x0108) */
526struct i40e_aqc_mac_address_write {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000527 __le16 command_flags;
528#define I40E_AQC_WRITE_TYPE_LAA_ONLY 0x0000
529#define I40E_AQC_WRITE_TYPE_LAA_WOL 0x4000
530#define I40E_AQC_WRITE_TYPE_PORT 0x8000
Greg Rosecb2f65b2015-04-27 14:57:12 -0400531#define I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG 0xC000
532#define I40E_AQC_WRITE_TYPE_MASK 0xC000
533
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000534 __le16 mac_sah;
535 __le32 mac_sal;
536 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +0000537};
538
539I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_write);
540
541/* PXE commands (0x011x) */
542
543/* Clear PXE Command and response (direct 0x0110) */
544struct i40e_aqc_clear_pxe {
545 u8 rx_cnt;
546 u8 reserved[15];
547};
548
549I40E_CHECK_CMD_LENGTH(i40e_aqc_clear_pxe);
550
551/* Switch configuration commands (0x02xx) */
552
553/* Used by many indirect commands that only pass an seid and a buffer in the
554 * command
555 */
556struct i40e_aqc_switch_seid {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000557 __le16 seid;
558 u8 reserved[6];
559 __le32 addr_high;
560 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000561};
562
563I40E_CHECK_CMD_LENGTH(i40e_aqc_switch_seid);
564
565/* Get Switch Configuration command (indirect 0x0200)
566 * uses i40e_aqc_switch_seid for the descriptor
567 */
568struct i40e_aqc_get_switch_config_header_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000569 __le16 num_reported;
570 __le16 num_total;
571 u8 reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +0000572};
573
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000574I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_config_header_resp);
575
Greg Rosed358aa92013-12-21 06:13:11 +0000576struct i40e_aqc_switch_config_element_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000577 u8 element_type;
578#define I40E_AQ_SW_ELEM_TYPE_MAC 1
579#define I40E_AQ_SW_ELEM_TYPE_PF 2
580#define I40E_AQ_SW_ELEM_TYPE_VF 3
581#define I40E_AQ_SW_ELEM_TYPE_EMP 4
582#define I40E_AQ_SW_ELEM_TYPE_BMC 5
583#define I40E_AQ_SW_ELEM_TYPE_PV 16
584#define I40E_AQ_SW_ELEM_TYPE_VEB 17
585#define I40E_AQ_SW_ELEM_TYPE_PA 18
586#define I40E_AQ_SW_ELEM_TYPE_VSI 19
587 u8 revision;
588#define I40E_AQ_SW_ELEM_REV_1 1
589 __le16 seid;
590 __le16 uplink_seid;
591 __le16 downlink_seid;
592 u8 reserved[3];
593 u8 connection_type;
594#define I40E_AQ_CONN_TYPE_REGULAR 0x1
595#define I40E_AQ_CONN_TYPE_DEFAULT 0x2
596#define I40E_AQ_CONN_TYPE_CASCADED 0x3
597 __le16 scheduler_id;
598 __le16 element_info;
Greg Rosed358aa92013-12-21 06:13:11 +0000599};
600
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000601I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_config_element_resp);
602
Greg Rosed358aa92013-12-21 06:13:11 +0000603/* Get Switch Configuration (indirect 0x0200)
604 * an array of elements are returned in the response buffer
605 * the first in the array is the header, remainder are elements
606 */
607struct i40e_aqc_get_switch_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000608 struct i40e_aqc_get_switch_config_header_resp header;
609 struct i40e_aqc_switch_config_element_resp element[1];
Greg Rosed358aa92013-12-21 06:13:11 +0000610};
611
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000612I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_switch_config_resp);
613
Greg Rosed358aa92013-12-21 06:13:11 +0000614/* Add Statistics (direct 0x0201)
615 * Remove Statistics (direct 0x0202)
616 */
617struct i40e_aqc_add_remove_statistics {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000618 __le16 seid;
619 __le16 vlan;
620 __le16 stat_index;
621 u8 reserved[10];
Greg Rosed358aa92013-12-21 06:13:11 +0000622};
623
624I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_statistics);
625
626/* Set Port Parameters command (direct 0x0203) */
627struct i40e_aqc_set_port_parameters {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000628 __le16 command_flags;
629#define I40E_AQ_SET_P_PARAMS_SAVE_BAD_PACKETS 1
630#define I40E_AQ_SET_P_PARAMS_PAD_SHORT_PACKETS 2 /* must set! */
631#define I40E_AQ_SET_P_PARAMS_DOUBLE_VLAN_ENA 4
632 __le16 bad_frame_vsi;
633 __le16 default_seid; /* reserved for command */
634 u8 reserved[10];
Greg Rosed358aa92013-12-21 06:13:11 +0000635};
636
637I40E_CHECK_CMD_LENGTH(i40e_aqc_set_port_parameters);
638
639/* Get Switch Resource Allocation (indirect 0x0204) */
640struct i40e_aqc_get_switch_resource_alloc {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000641 u8 num_entries; /* reserved for command */
642 u8 reserved[7];
643 __le32 addr_high;
644 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000645};
646
647I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_resource_alloc);
648
649/* expect an array of these structs in the response buffer */
650struct i40e_aqc_switch_resource_alloc_element_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000651 u8 resource_type;
652#define I40E_AQ_RESOURCE_TYPE_VEB 0x0
653#define I40E_AQ_RESOURCE_TYPE_VSI 0x1
654#define I40E_AQ_RESOURCE_TYPE_MACADDR 0x2
655#define I40E_AQ_RESOURCE_TYPE_STAG 0x3
656#define I40E_AQ_RESOURCE_TYPE_ETAG 0x4
657#define I40E_AQ_RESOURCE_TYPE_MULTICAST_HASH 0x5
658#define I40E_AQ_RESOURCE_TYPE_UNICAST_HASH 0x6
659#define I40E_AQ_RESOURCE_TYPE_VLAN 0x7
660#define I40E_AQ_RESOURCE_TYPE_VSI_LIST_ENTRY 0x8
661#define I40E_AQ_RESOURCE_TYPE_ETAG_LIST_ENTRY 0x9
662#define I40E_AQ_RESOURCE_TYPE_VLAN_STAT_POOL 0xA
663#define I40E_AQ_RESOURCE_TYPE_MIRROR_RULE 0xB
664#define I40E_AQ_RESOURCE_TYPE_QUEUE_SETS 0xC
665#define I40E_AQ_RESOURCE_TYPE_VLAN_FILTERS 0xD
666#define I40E_AQ_RESOURCE_TYPE_INNER_MAC_FILTERS 0xF
667#define I40E_AQ_RESOURCE_TYPE_IP_FILTERS 0x10
668#define I40E_AQ_RESOURCE_TYPE_GRE_VN_KEYS 0x11
669#define I40E_AQ_RESOURCE_TYPE_VN2_KEYS 0x12
670#define I40E_AQ_RESOURCE_TYPE_TUNNEL_PORTS 0x13
671 u8 reserved1;
672 __le16 guaranteed;
673 __le16 total;
674 __le16 used;
675 __le16 total_unalloced;
676 u8 reserved2[6];
Greg Rosed358aa92013-12-21 06:13:11 +0000677};
678
Shannon Nelson8d5e33a2014-12-14 01:55:12 +0000679I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_resource_alloc_element_resp);
680
Greg Rosed358aa92013-12-21 06:13:11 +0000681/* Add VSI (indirect 0x0210)
682 * this indirect command uses struct i40e_aqc_vsi_properties_data
683 * as the indirect buffer (128 bytes)
684 *
685 * Update VSI (indirect 0x211)
686 * uses the same data structure as Add VSI
687 *
688 * Get VSI (indirect 0x0212)
689 * uses the same completion and data structure as Add VSI
690 */
691struct i40e_aqc_add_get_update_vsi {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000692 __le16 uplink_seid;
693 u8 connection_type;
694#define I40E_AQ_VSI_CONN_TYPE_NORMAL 0x1
695#define I40E_AQ_VSI_CONN_TYPE_DEFAULT 0x2
696#define I40E_AQ_VSI_CONN_TYPE_CASCADED 0x3
697 u8 reserved1;
698 u8 vf_id;
699 u8 reserved2;
700 __le16 vsi_flags;
701#define I40E_AQ_VSI_TYPE_SHIFT 0x0
702#define I40E_AQ_VSI_TYPE_MASK (0x3 << I40E_AQ_VSI_TYPE_SHIFT)
703#define I40E_AQ_VSI_TYPE_VF 0x0
704#define I40E_AQ_VSI_TYPE_VMDQ2 0x1
705#define I40E_AQ_VSI_TYPE_PF 0x2
706#define I40E_AQ_VSI_TYPE_EMP_MNG 0x3
707#define I40E_AQ_VSI_FLAG_CASCADED_PV 0x4
708 __le32 addr_high;
709 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000710};
711
712I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi);
713
714struct i40e_aqc_add_get_update_vsi_completion {
715 __le16 seid;
716 __le16 vsi_number;
717 __le16 vsi_used;
718 __le16 vsi_free;
719 __le32 addr_high;
720 __le32 addr_low;
721};
722
723I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi_completion);
724
725struct i40e_aqc_vsi_properties_data {
726 /* first 96 byte are written by SW */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000727 __le16 valid_sections;
728#define I40E_AQ_VSI_PROP_SWITCH_VALID 0x0001
729#define I40E_AQ_VSI_PROP_SECURITY_VALID 0x0002
730#define I40E_AQ_VSI_PROP_VLAN_VALID 0x0004
731#define I40E_AQ_VSI_PROP_CAS_PV_VALID 0x0008
732#define I40E_AQ_VSI_PROP_INGRESS_UP_VALID 0x0010
733#define I40E_AQ_VSI_PROP_EGRESS_UP_VALID 0x0020
734#define I40E_AQ_VSI_PROP_QUEUE_MAP_VALID 0x0040
735#define I40E_AQ_VSI_PROP_QUEUE_OPT_VALID 0x0080
736#define I40E_AQ_VSI_PROP_OUTER_UP_VALID 0x0100
737#define I40E_AQ_VSI_PROP_SCHED_VALID 0x0200
Greg Rosed358aa92013-12-21 06:13:11 +0000738 /* switch section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000739 __le16 switch_id; /* 12bit id combined with flags below */
740#define I40E_AQ_VSI_SW_ID_SHIFT 0x0000
741#define I40E_AQ_VSI_SW_ID_MASK (0xFFF << I40E_AQ_VSI_SW_ID_SHIFT)
742#define I40E_AQ_VSI_SW_ID_FLAG_NOT_STAG 0x1000
743#define I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB 0x2000
744#define I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB 0x4000
745 u8 sw_reserved[2];
Greg Rosed358aa92013-12-21 06:13:11 +0000746 /* security section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000747 u8 sec_flags;
748#define I40E_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD 0x01
749#define I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK 0x02
750#define I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK 0x04
751 u8 sec_reserved;
Greg Rosed358aa92013-12-21 06:13:11 +0000752 /* VLAN section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000753 __le16 pvid; /* VLANS include priority bits */
754 __le16 fcoe_pvid;
755 u8 port_vlan_flags;
756#define I40E_AQ_VSI_PVLAN_MODE_SHIFT 0x00
757#define I40E_AQ_VSI_PVLAN_MODE_MASK (0x03 << \
758 I40E_AQ_VSI_PVLAN_MODE_SHIFT)
759#define I40E_AQ_VSI_PVLAN_MODE_TAGGED 0x01
760#define I40E_AQ_VSI_PVLAN_MODE_UNTAGGED 0x02
761#define I40E_AQ_VSI_PVLAN_MODE_ALL 0x03
762#define I40E_AQ_VSI_PVLAN_INSERT_PVID 0x04
763#define I40E_AQ_VSI_PVLAN_EMOD_SHIFT 0x03
764#define I40E_AQ_VSI_PVLAN_EMOD_MASK (0x3 << \
765 I40E_AQ_VSI_PVLAN_EMOD_SHIFT)
766#define I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH 0x0
767#define I40E_AQ_VSI_PVLAN_EMOD_STR_UP 0x08
768#define I40E_AQ_VSI_PVLAN_EMOD_STR 0x10
769#define I40E_AQ_VSI_PVLAN_EMOD_NOTHING 0x18
770 u8 pvlan_reserved[3];
Greg Rosed358aa92013-12-21 06:13:11 +0000771 /* ingress egress up sections */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000772 __le32 ingress_table; /* bitmap, 3 bits per up */
773#define I40E_AQ_VSI_UP_TABLE_UP0_SHIFT 0
774#define I40E_AQ_VSI_UP_TABLE_UP0_MASK (0x7 << \
775 I40E_AQ_VSI_UP_TABLE_UP0_SHIFT)
776#define I40E_AQ_VSI_UP_TABLE_UP1_SHIFT 3
777#define I40E_AQ_VSI_UP_TABLE_UP1_MASK (0x7 << \
778 I40E_AQ_VSI_UP_TABLE_UP1_SHIFT)
779#define I40E_AQ_VSI_UP_TABLE_UP2_SHIFT 6
780#define I40E_AQ_VSI_UP_TABLE_UP2_MASK (0x7 << \
781 I40E_AQ_VSI_UP_TABLE_UP2_SHIFT)
782#define I40E_AQ_VSI_UP_TABLE_UP3_SHIFT 9
783#define I40E_AQ_VSI_UP_TABLE_UP3_MASK (0x7 << \
784 I40E_AQ_VSI_UP_TABLE_UP3_SHIFT)
785#define I40E_AQ_VSI_UP_TABLE_UP4_SHIFT 12
786#define I40E_AQ_VSI_UP_TABLE_UP4_MASK (0x7 << \
787 I40E_AQ_VSI_UP_TABLE_UP4_SHIFT)
788#define I40E_AQ_VSI_UP_TABLE_UP5_SHIFT 15
789#define I40E_AQ_VSI_UP_TABLE_UP5_MASK (0x7 << \
790 I40E_AQ_VSI_UP_TABLE_UP5_SHIFT)
791#define I40E_AQ_VSI_UP_TABLE_UP6_SHIFT 18
792#define I40E_AQ_VSI_UP_TABLE_UP6_MASK (0x7 << \
793 I40E_AQ_VSI_UP_TABLE_UP6_SHIFT)
794#define I40E_AQ_VSI_UP_TABLE_UP7_SHIFT 21
795#define I40E_AQ_VSI_UP_TABLE_UP7_MASK (0x7 << \
796 I40E_AQ_VSI_UP_TABLE_UP7_SHIFT)
797 __le32 egress_table; /* same defines as for ingress table */
Greg Rosed358aa92013-12-21 06:13:11 +0000798 /* cascaded PV section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000799 __le16 cas_pv_tag;
800 u8 cas_pv_flags;
801#define I40E_AQ_VSI_CAS_PV_TAGX_SHIFT 0x00
802#define I40E_AQ_VSI_CAS_PV_TAGX_MASK (0x03 << \
803 I40E_AQ_VSI_CAS_PV_TAGX_SHIFT)
804#define I40E_AQ_VSI_CAS_PV_TAGX_LEAVE 0x00
805#define I40E_AQ_VSI_CAS_PV_TAGX_REMOVE 0x01
806#define I40E_AQ_VSI_CAS_PV_TAGX_COPY 0x02
807#define I40E_AQ_VSI_CAS_PV_INSERT_TAG 0x10
808#define I40E_AQ_VSI_CAS_PV_ETAG_PRUNE 0x20
809#define I40E_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG 0x40
810 u8 cas_pv_reserved;
Greg Rosed358aa92013-12-21 06:13:11 +0000811 /* queue mapping section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000812 __le16 mapping_flags;
813#define I40E_AQ_VSI_QUE_MAP_CONTIG 0x0
814#define I40E_AQ_VSI_QUE_MAP_NONCONTIG 0x1
815 __le16 queue_mapping[16];
816#define I40E_AQ_VSI_QUEUE_SHIFT 0x0
817#define I40E_AQ_VSI_QUEUE_MASK (0x7FF << I40E_AQ_VSI_QUEUE_SHIFT)
818 __le16 tc_mapping[8];
819#define I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT 0
820#define I40E_AQ_VSI_TC_QUE_OFFSET_MASK (0x1FF << \
821 I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT)
822#define I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT 9
823#define I40E_AQ_VSI_TC_QUE_NUMBER_MASK (0x7 << \
824 I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT)
Greg Rosed358aa92013-12-21 06:13:11 +0000825 /* queueing option section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000826 u8 queueing_opt_flags;
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400827#define I40E_AQ_VSI_QUE_OPT_MULTICAST_UDP_ENA 0x04
828#define I40E_AQ_VSI_QUE_OPT_UNICAST_UDP_ENA 0x08
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000829#define I40E_AQ_VSI_QUE_OPT_TCP_ENA 0x10
830#define I40E_AQ_VSI_QUE_OPT_FCOE_ENA 0x20
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400831#define I40E_AQ_VSI_QUE_OPT_RSS_LUT_PF 0x00
832#define I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI 0x40
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000833 u8 queueing_opt_reserved[3];
Greg Rosed358aa92013-12-21 06:13:11 +0000834 /* scheduler section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000835 u8 up_enable_bits;
836 u8 sched_reserved;
Greg Rosed358aa92013-12-21 06:13:11 +0000837 /* outer up section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000838 __le32 outer_up_table; /* same structure and defines as ingress tbl */
839 u8 cmd_reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +0000840 /* last 32 bytes are written by FW */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000841 __le16 qs_handle[8];
Greg Rosed358aa92013-12-21 06:13:11 +0000842#define I40E_AQ_VSI_QS_HANDLE_INVALID 0xFFFF
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000843 __le16 stat_counter_idx;
844 __le16 sched_id;
845 u8 resp_reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +0000846};
847
848I40E_CHECK_STRUCT_LEN(128, i40e_aqc_vsi_properties_data);
849
850/* Add Port Virtualizer (direct 0x0220)
851 * also used for update PV (direct 0x0221) but only flags are used
852 * (IS_CTRL_PORT only works on add PV)
853 */
854struct i40e_aqc_add_update_pv {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000855 __le16 command_flags;
856#define I40E_AQC_PV_FLAG_PV_TYPE 0x1
857#define I40E_AQC_PV_FLAG_FWD_UNKNOWN_STAG_EN 0x2
858#define I40E_AQC_PV_FLAG_FWD_UNKNOWN_ETAG_EN 0x4
859#define I40E_AQC_PV_FLAG_IS_CTRL_PORT 0x8
860 __le16 uplink_seid;
861 __le16 connected_seid;
862 u8 reserved[10];
Greg Rosed358aa92013-12-21 06:13:11 +0000863};
864
865I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv);
866
867struct i40e_aqc_add_update_pv_completion {
868 /* reserved for update; for add also encodes error if rc == ENOSPC */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000869 __le16 pv_seid;
870#define I40E_AQC_PV_ERR_FLAG_NO_PV 0x1
871#define I40E_AQC_PV_ERR_FLAG_NO_SCHED 0x2
872#define I40E_AQC_PV_ERR_FLAG_NO_COUNTER 0x4
873#define I40E_AQC_PV_ERR_FLAG_NO_ENTRY 0x8
874 u8 reserved[14];
Greg Rosed358aa92013-12-21 06:13:11 +0000875};
876
877I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv_completion);
878
879/* Get PV Params (direct 0x0222)
880 * uses i40e_aqc_switch_seid for the descriptor
881 */
882
883struct i40e_aqc_get_pv_params_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000884 __le16 seid;
885 __le16 default_stag;
886 __le16 pv_flags; /* same flags as add_pv */
887#define I40E_AQC_GET_PV_PV_TYPE 0x1
888#define I40E_AQC_GET_PV_FRWD_UNKNOWN_STAG 0x2
889#define I40E_AQC_GET_PV_FRWD_UNKNOWN_ETAG 0x4
890 u8 reserved[8];
891 __le16 default_port_seid;
Greg Rosed358aa92013-12-21 06:13:11 +0000892};
893
894I40E_CHECK_CMD_LENGTH(i40e_aqc_get_pv_params_completion);
895
896/* Add VEB (direct 0x0230) */
897struct i40e_aqc_add_veb {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000898 __le16 uplink_seid;
899 __le16 downlink_seid;
900 __le16 veb_flags;
901#define I40E_AQC_ADD_VEB_FLOATING 0x1
902#define I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT 1
903#define I40E_AQC_ADD_VEB_PORT_TYPE_MASK (0x3 << \
Greg Rosed358aa92013-12-21 06:13:11 +0000904 I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000905#define I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT 0x2
906#define I40E_AQC_ADD_VEB_PORT_TYPE_DATA 0x4
907#define I40E_AQC_ADD_VEB_ENABLE_L2_FILTER 0x8
908 u8 enable_tcs;
909 u8 reserved[9];
Greg Rosed358aa92013-12-21 06:13:11 +0000910};
911
912I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb);
913
914struct i40e_aqc_add_veb_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000915 u8 reserved[6];
916 __le16 switch_seid;
Greg Rosed358aa92013-12-21 06:13:11 +0000917 /* also encodes error if rc == ENOSPC; codes are the same as add_pv */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000918 __le16 veb_seid;
919#define I40E_AQC_VEB_ERR_FLAG_NO_VEB 0x1
920#define I40E_AQC_VEB_ERR_FLAG_NO_SCHED 0x2
921#define I40E_AQC_VEB_ERR_FLAG_NO_COUNTER 0x4
922#define I40E_AQC_VEB_ERR_FLAG_NO_ENTRY 0x8
923 __le16 statistic_index;
924 __le16 vebs_used;
925 __le16 vebs_free;
Greg Rosed358aa92013-12-21 06:13:11 +0000926};
927
928I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb_completion);
929
930/* Get VEB Parameters (direct 0x0232)
931 * uses i40e_aqc_switch_seid for the descriptor
932 */
933struct i40e_aqc_get_veb_parameters_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000934 __le16 seid;
935 __le16 switch_id;
936 __le16 veb_flags; /* only the first/last flags from 0x0230 is valid */
937 __le16 statistic_index;
938 __le16 vebs_used;
939 __le16 vebs_free;
940 u8 reserved[4];
Greg Rosed358aa92013-12-21 06:13:11 +0000941};
942
943I40E_CHECK_CMD_LENGTH(i40e_aqc_get_veb_parameters_completion);
944
945/* Delete Element (direct 0x0243)
946 * uses the generic i40e_aqc_switch_seid
947 */
948
949/* Add MAC-VLAN (indirect 0x0250) */
950
951/* used for the command for most vlan commands */
952struct i40e_aqc_macvlan {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000953 __le16 num_addresses;
954 __le16 seid[3];
955#define I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT 0
956#define I40E_AQC_MACVLAN_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +0000957 I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000958#define I40E_AQC_MACVLAN_CMD_SEID_VALID 0x8000
959 __le32 addr_high;
960 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +0000961};
962
963I40E_CHECK_CMD_LENGTH(i40e_aqc_macvlan);
964
965/* indirect data for command and response */
966struct i40e_aqc_add_macvlan_element_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000967 u8 mac_addr[6];
968 __le16 vlan_tag;
969 __le16 flags;
970#define I40E_AQC_MACVLAN_ADD_PERFECT_MATCH 0x0001
971#define I40E_AQC_MACVLAN_ADD_HASH_MATCH 0x0002
972#define I40E_AQC_MACVLAN_ADD_IGNORE_VLAN 0x0004
973#define I40E_AQC_MACVLAN_ADD_TO_QUEUE 0x0008
974 __le16 queue_number;
975#define I40E_AQC_MACVLAN_CMD_QUEUE_SHIFT 0
976#define I40E_AQC_MACVLAN_CMD_QUEUE_MASK (0x7FF << \
Greg Rosed358aa92013-12-21 06:13:11 +0000977 I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
978 /* response section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +0000979 u8 match_method;
980#define I40E_AQC_MM_PERFECT_MATCH 0x01
981#define I40E_AQC_MM_HASH_MATCH 0x02
982#define I40E_AQC_MM_ERR_NO_RES 0xFF
983 u8 reserved1[3];
Greg Rosed358aa92013-12-21 06:13:11 +0000984};
985
986struct i40e_aqc_add_remove_macvlan_completion {
987 __le16 perfect_mac_used;
988 __le16 perfect_mac_free;
989 __le16 unicast_hash_free;
990 __le16 multicast_hash_free;
991 __le32 addr_high;
992 __le32 addr_low;
993};
994
995I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_macvlan_completion);
996
997/* Remove MAC-VLAN (indirect 0x0251)
998 * uses i40e_aqc_macvlan for the descriptor
999 * data points to an array of num_addresses of elements
1000 */
1001
1002struct i40e_aqc_remove_macvlan_element_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001003 u8 mac_addr[6];
1004 __le16 vlan_tag;
1005 u8 flags;
1006#define I40E_AQC_MACVLAN_DEL_PERFECT_MATCH 0x01
1007#define I40E_AQC_MACVLAN_DEL_HASH_MATCH 0x02
1008#define I40E_AQC_MACVLAN_DEL_IGNORE_VLAN 0x08
1009#define I40E_AQC_MACVLAN_DEL_ALL_VSIS 0x10
1010 u8 reserved[3];
Greg Rosed358aa92013-12-21 06:13:11 +00001011 /* reply section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001012 u8 error_code;
1013#define I40E_AQC_REMOVE_MACVLAN_SUCCESS 0x0
1014#define I40E_AQC_REMOVE_MACVLAN_FAIL 0xFF
1015 u8 reply_reserved[3];
Greg Rosed358aa92013-12-21 06:13:11 +00001016};
1017
1018/* Add VLAN (indirect 0x0252)
1019 * Remove VLAN (indirect 0x0253)
1020 * use the generic i40e_aqc_macvlan for the command
1021 */
1022struct i40e_aqc_add_remove_vlan_element_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001023 __le16 vlan_tag;
1024 u8 vlan_flags;
Greg Rosed358aa92013-12-21 06:13:11 +00001025/* flags for add VLAN */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001026#define I40E_AQC_ADD_VLAN_LOCAL 0x1
1027#define I40E_AQC_ADD_PVLAN_TYPE_SHIFT 1
1028#define I40E_AQC_ADD_PVLAN_TYPE_MASK (0x3 << I40E_AQC_ADD_PVLAN_TYPE_SHIFT)
1029#define I40E_AQC_ADD_PVLAN_TYPE_REGULAR 0x0
1030#define I40E_AQC_ADD_PVLAN_TYPE_PRIMARY 0x2
1031#define I40E_AQC_ADD_PVLAN_TYPE_SECONDARY 0x4
1032#define I40E_AQC_VLAN_PTYPE_SHIFT 3
1033#define I40E_AQC_VLAN_PTYPE_MASK (0x3 << I40E_AQC_VLAN_PTYPE_SHIFT)
1034#define I40E_AQC_VLAN_PTYPE_REGULAR_VSI 0x0
1035#define I40E_AQC_VLAN_PTYPE_PROMISC_VSI 0x8
1036#define I40E_AQC_VLAN_PTYPE_COMMUNITY_VSI 0x10
1037#define I40E_AQC_VLAN_PTYPE_ISOLATED_VSI 0x18
Greg Rosed358aa92013-12-21 06:13:11 +00001038/* flags for remove VLAN */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001039#define I40E_AQC_REMOVE_VLAN_ALL 0x1
1040 u8 reserved;
1041 u8 result;
Greg Rosed358aa92013-12-21 06:13:11 +00001042/* flags for add VLAN */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001043#define I40E_AQC_ADD_VLAN_SUCCESS 0x0
1044#define I40E_AQC_ADD_VLAN_FAIL_REQUEST 0xFE
1045#define I40E_AQC_ADD_VLAN_FAIL_RESOURCE 0xFF
Greg Rosed358aa92013-12-21 06:13:11 +00001046/* flags for remove VLAN */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001047#define I40E_AQC_REMOVE_VLAN_SUCCESS 0x0
1048#define I40E_AQC_REMOVE_VLAN_FAIL 0xFF
1049 u8 reserved1[3];
Greg Rosed358aa92013-12-21 06:13:11 +00001050};
1051
1052struct i40e_aqc_add_remove_vlan_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001053 u8 reserved[4];
1054 __le16 vlans_used;
1055 __le16 vlans_free;
1056 __le32 addr_high;
1057 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001058};
1059
1060/* Set VSI Promiscuous Modes (direct 0x0254) */
1061struct i40e_aqc_set_vsi_promiscuous_modes {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001062 __le16 promiscuous_flags;
1063 __le16 valid_flags;
Greg Rosed358aa92013-12-21 06:13:11 +00001064/* flags used for both fields above */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001065#define I40E_AQC_SET_VSI_PROMISC_UNICAST 0x01
1066#define I40E_AQC_SET_VSI_PROMISC_MULTICAST 0x02
1067#define I40E_AQC_SET_VSI_PROMISC_BROADCAST 0x04
1068#define I40E_AQC_SET_VSI_DEFAULT 0x08
1069#define I40E_AQC_SET_VSI_PROMISC_VLAN 0x10
1070 __le16 seid;
1071#define I40E_AQC_VSI_PROM_CMD_SEID_MASK 0x3FF
1072 __le16 vlan_tag;
Greg Rosecb2f65b2015-04-27 14:57:12 -04001073#define I40E_AQC_SET_VSI_VLAN_MASK 0x0FFF
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001074#define I40E_AQC_SET_VSI_VLAN_VALID 0x8000
1075 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001076};
1077
1078I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
1079
1080/* Add S/E-tag command (direct 0x0255)
1081 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1082 */
1083struct i40e_aqc_add_tag {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001084 __le16 flags;
1085#define I40E_AQC_ADD_TAG_FLAG_TO_QUEUE 0x0001
1086 __le16 seid;
1087#define I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT 0
1088#define I40E_AQC_ADD_TAG_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +00001089 I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001090 __le16 tag;
1091 __le16 queue_number;
1092 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001093};
1094
1095I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
1096
1097struct i40e_aqc_add_remove_tag_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001098 u8 reserved[12];
1099 __le16 tags_used;
1100 __le16 tags_free;
Greg Rosed358aa92013-12-21 06:13:11 +00001101};
1102
1103I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
1104
1105/* Remove S/E-tag command (direct 0x0256)
1106 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1107 */
1108struct i40e_aqc_remove_tag {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001109 __le16 seid;
1110#define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT 0
1111#define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +00001112 I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001113 __le16 tag;
1114 u8 reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +00001115};
1116
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001117I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
1118
Greg Rosed358aa92013-12-21 06:13:11 +00001119/* Add multicast E-Tag (direct 0x0257)
1120 * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
1121 * and no external data
1122 */
1123struct i40e_aqc_add_remove_mcast_etag {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001124 __le16 pv_seid;
1125 __le16 etag;
1126 u8 num_unicast_etags;
1127 u8 reserved[3];
1128 __le32 addr_high; /* address of array of 2-byte s-tags */
1129 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001130};
1131
1132I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
1133
1134struct i40e_aqc_add_remove_mcast_etag_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001135 u8 reserved[4];
1136 __le16 mcast_etags_used;
1137 __le16 mcast_etags_free;
1138 __le32 addr_high;
1139 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001140
1141};
1142
1143I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
1144
1145/* Update S/E-Tag (direct 0x0259) */
1146struct i40e_aqc_update_tag {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001147 __le16 seid;
1148#define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT 0
1149#define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +00001150 I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001151 __le16 old_tag;
1152 __le16 new_tag;
1153 u8 reserved[10];
Greg Rosed358aa92013-12-21 06:13:11 +00001154};
1155
1156I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
1157
1158struct i40e_aqc_update_tag_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001159 u8 reserved[12];
1160 __le16 tags_used;
1161 __le16 tags_free;
Greg Rosed358aa92013-12-21 06:13:11 +00001162};
1163
1164I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
1165
1166/* Add Control Packet filter (direct 0x025A)
1167 * Remove Control Packet filter (direct 0x025B)
1168 * uses the i40e_aqc_add_oveb_cloud,
1169 * and the generic direct completion structure
1170 */
1171struct i40e_aqc_add_remove_control_packet_filter {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001172 u8 mac[6];
1173 __le16 etype;
1174 __le16 flags;
1175#define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC 0x0001
1176#define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP 0x0002
1177#define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE 0x0004
1178#define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX 0x0008
1179#define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX 0x0000
1180 __le16 seid;
1181#define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT 0
1182#define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +00001183 I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001184 __le16 queue;
1185 u8 reserved[2];
Greg Rosed358aa92013-12-21 06:13:11 +00001186};
1187
1188I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
1189
1190struct i40e_aqc_add_remove_control_packet_filter_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001191 __le16 mac_etype_used;
1192 __le16 etype_used;
1193 __le16 mac_etype_free;
1194 __le16 etype_free;
1195 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001196};
1197
1198I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
1199
1200/* Add Cloud filters (indirect 0x025C)
1201 * Remove Cloud filters (indirect 0x025D)
1202 * uses the i40e_aqc_add_remove_cloud_filters,
1203 * and the generic indirect completion structure
1204 */
1205struct i40e_aqc_add_remove_cloud_filters {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001206 u8 num_filters;
1207 u8 reserved;
1208 __le16 seid;
1209#define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT 0
1210#define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_MASK (0x3FF << \
Greg Rosed358aa92013-12-21 06:13:11 +00001211 I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001212 u8 reserved2[4];
1213 __le32 addr_high;
1214 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001215};
1216
1217I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
1218
1219struct i40e_aqc_add_remove_cloud_filters_element_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001220 u8 outer_mac[6];
1221 u8 inner_mac[6];
1222 __le16 inner_vlan;
Greg Rosed358aa92013-12-21 06:13:11 +00001223 union {
1224 struct {
1225 u8 reserved[12];
1226 u8 data[4];
1227 } v4;
1228 struct {
1229 u8 data[16];
1230 } v6;
1231 } ipaddr;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001232 __le16 flags;
1233#define I40E_AQC_ADD_CLOUD_FILTER_SHIFT 0
Shannon Nelson35155fe2014-12-12 07:50:07 +00001234#define I40E_AQC_ADD_CLOUD_FILTER_MASK (0x3F << \
Greg Rosed358aa92013-12-21 06:13:11 +00001235 I40E_AQC_ADD_CLOUD_FILTER_SHIFT)
1236/* 0x0000 reserved */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001237#define I40E_AQC_ADD_CLOUD_FILTER_OIP 0x0001
Greg Rosed358aa92013-12-21 06:13:11 +00001238/* 0x0002 reserved */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001239#define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN 0x0003
1240#define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID 0x0004
Greg Rosed358aa92013-12-21 06:13:11 +00001241/* 0x0005 reserved */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001242#define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID 0x0006
Greg Rosed358aa92013-12-21 06:13:11 +00001243/* 0x0007 reserved */
1244/* 0x0008 reserved */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001245#define I40E_AQC_ADD_CLOUD_FILTER_OMAC 0x0009
1246#define I40E_AQC_ADD_CLOUD_FILTER_IMAC 0x000A
1247#define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC 0x000B
1248#define I40E_AQC_ADD_CLOUD_FILTER_IIP 0x000C
Greg Rosed358aa92013-12-21 06:13:11 +00001249
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001250#define I40E_AQC_ADD_CLOUD_FLAGS_TO_QUEUE 0x0080
1251#define I40E_AQC_ADD_CLOUD_VNK_SHIFT 6
1252#define I40E_AQC_ADD_CLOUD_VNK_MASK 0x00C0
1253#define I40E_AQC_ADD_CLOUD_FLAGS_IPV4 0
1254#define I40E_AQC_ADD_CLOUD_FLAGS_IPV6 0x0100
Greg Rosed358aa92013-12-21 06:13:11 +00001255
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001256#define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT 9
1257#define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK 0x1E00
1258#define I40E_AQC_ADD_CLOUD_TNL_TYPE_XVLAN 0
1259#define I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC 1
1260#define I40E_AQC_ADD_CLOUD_TNL_TYPE_NGE 2
1261#define I40E_AQC_ADD_CLOUD_TNL_TYPE_IP 3
Greg Rosed358aa92013-12-21 06:13:11 +00001262
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001263 __le32 tenant_id;
1264 u8 reserved[4];
1265 __le16 queue_number;
1266#define I40E_AQC_ADD_CLOUD_QUEUE_SHIFT 0
Shannon Nelson35155fe2014-12-12 07:50:07 +00001267#define I40E_AQC_ADD_CLOUD_QUEUE_MASK (0x7FF << \
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001268 I40E_AQC_ADD_CLOUD_QUEUE_SHIFT)
1269 u8 reserved2[14];
Greg Rosed358aa92013-12-21 06:13:11 +00001270 /* response section */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001271 u8 allocation_result;
1272#define I40E_AQC_ADD_CLOUD_FILTER_SUCCESS 0x0
1273#define I40E_AQC_ADD_CLOUD_FILTER_FAIL 0xFF
1274 u8 response_reserved[7];
Greg Rosed358aa92013-12-21 06:13:11 +00001275};
1276
1277struct i40e_aqc_remove_cloud_filters_completion {
1278 __le16 perfect_ovlan_used;
1279 __le16 perfect_ovlan_free;
1280 __le16 vlan_used;
1281 __le16 vlan_free;
1282 __le32 addr_high;
1283 __le32 addr_low;
1284};
1285
1286I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
1287
1288/* Add Mirror Rule (indirect or direct 0x0260)
1289 * Delete Mirror Rule (indirect or direct 0x0261)
1290 * note: some rule types (4,5) do not use an external buffer.
1291 * take care to set the flags correctly.
1292 */
1293struct i40e_aqc_add_delete_mirror_rule {
1294 __le16 seid;
1295 __le16 rule_type;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001296#define I40E_AQC_MIRROR_RULE_TYPE_SHIFT 0
1297#define I40E_AQC_MIRROR_RULE_TYPE_MASK (0x7 << \
Greg Rosed358aa92013-12-21 06:13:11 +00001298 I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001299#define I40E_AQC_MIRROR_RULE_TYPE_VPORT_INGRESS 1
1300#define I40E_AQC_MIRROR_RULE_TYPE_VPORT_EGRESS 2
1301#define I40E_AQC_MIRROR_RULE_TYPE_VLAN 3
1302#define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS 4
1303#define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS 5
Greg Rosed358aa92013-12-21 06:13:11 +00001304 __le16 num_entries;
1305 __le16 destination; /* VSI for add, rule id for delete */
1306 __le32 addr_high; /* address of array of 2-byte VSI or VLAN ids */
1307 __le32 addr_low;
1308};
1309
1310I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
1311
1312struct i40e_aqc_add_delete_mirror_rule_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001313 u8 reserved[2];
1314 __le16 rule_id; /* only used on add */
1315 __le16 mirror_rules_used;
1316 __le16 mirror_rules_free;
1317 __le32 addr_high;
1318 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001319};
1320
1321I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
1322
Greg Rosed358aa92013-12-21 06:13:11 +00001323/* DCB 0x03xx*/
1324
1325/* PFC Ignore (direct 0x0301)
1326 * the command and response use the same descriptor structure
1327 */
1328struct i40e_aqc_pfc_ignore {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001329 u8 tc_bitmap;
1330 u8 command_flags; /* unused on response */
1331#define I40E_AQC_PFC_IGNORE_SET 0x80
1332#define I40E_AQC_PFC_IGNORE_CLEAR 0x0
1333 u8 reserved[14];
Greg Rosed358aa92013-12-21 06:13:11 +00001334};
1335
1336I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
1337
1338/* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
1339 * with no parameters
1340 */
1341
1342/* TX scheduler 0x04xx */
1343
1344/* Almost all the indirect commands use
1345 * this generic struct to pass the SEID in param0
1346 */
1347struct i40e_aqc_tx_sched_ind {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001348 __le16 vsi_seid;
1349 u8 reserved[6];
1350 __le32 addr_high;
1351 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001352};
1353
1354I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
1355
1356/* Several commands respond with a set of queue set handles */
1357struct i40e_aqc_qs_handles_resp {
1358 __le16 qs_handles[8];
1359};
1360
1361/* Configure VSI BW limits (direct 0x0400) */
1362struct i40e_aqc_configure_vsi_bw_limit {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001363 __le16 vsi_seid;
1364 u8 reserved[2];
1365 __le16 credit;
1366 u8 reserved1[2];
1367 u8 max_credit; /* 0-3, limit = 2^max */
1368 u8 reserved2[7];
Greg Rosed358aa92013-12-21 06:13:11 +00001369};
1370
1371I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
1372
1373/* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
1374 * responds with i40e_aqc_qs_handles_resp
1375 */
1376struct i40e_aqc_configure_vsi_ets_sla_bw_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001377 u8 tc_valid_bits;
1378 u8 reserved[15];
1379 __le16 tc_bw_credits[8]; /* FW writesback QS handles here */
Greg Rosed358aa92013-12-21 06:13:11 +00001380
1381 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001382 __le16 tc_bw_max[2];
1383 u8 reserved1[28];
Greg Rosed358aa92013-12-21 06:13:11 +00001384};
1385
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001386I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
1387
Greg Rosed358aa92013-12-21 06:13:11 +00001388/* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
1389 * responds with i40e_aqc_qs_handles_resp
1390 */
1391struct i40e_aqc_configure_vsi_tc_bw_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001392 u8 tc_valid_bits;
1393 u8 reserved[3];
1394 u8 tc_bw_credits[8];
1395 u8 reserved1[4];
1396 __le16 qs_handles[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001397};
1398
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001399I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
1400
Greg Rosed358aa92013-12-21 06:13:11 +00001401/* Query vsi bw configuration (indirect 0x0408) */
1402struct i40e_aqc_query_vsi_bw_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001403 u8 tc_valid_bits;
1404 u8 tc_suspended_bits;
1405 u8 reserved[14];
1406 __le16 qs_handles[8];
1407 u8 reserved1[4];
1408 __le16 port_bw_limit;
1409 u8 reserved2[2];
1410 u8 max_bw; /* 0-3, limit = 2^max */
1411 u8 reserved3[23];
Greg Rosed358aa92013-12-21 06:13:11 +00001412};
1413
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001414I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
1415
Greg Rosed358aa92013-12-21 06:13:11 +00001416/* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
1417struct i40e_aqc_query_vsi_ets_sla_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001418 u8 tc_valid_bits;
1419 u8 reserved[3];
1420 u8 share_credits[8];
1421 __le16 credits[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001422
1423 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001424 __le16 tc_bw_max[2];
Greg Rosed358aa92013-12-21 06:13:11 +00001425};
1426
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001427I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
1428
Greg Rosed358aa92013-12-21 06:13:11 +00001429/* Configure Switching Component Bandwidth Limit (direct 0x0410) */
1430struct i40e_aqc_configure_switching_comp_bw_limit {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001431 __le16 seid;
1432 u8 reserved[2];
1433 __le16 credit;
1434 u8 reserved1[2];
1435 u8 max_bw; /* 0-3, limit = 2^max */
1436 u8 reserved2[7];
Greg Rosed358aa92013-12-21 06:13:11 +00001437};
1438
1439I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
1440
1441/* Enable Physical Port ETS (indirect 0x0413)
1442 * Modify Physical Port ETS (indirect 0x0414)
1443 * Disable Physical Port ETS (indirect 0x0415)
1444 */
1445struct i40e_aqc_configure_switching_comp_ets_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001446 u8 reserved[4];
1447 u8 tc_valid_bits;
1448 u8 seepage;
1449#define I40E_AQ_ETS_SEEPAGE_EN_MASK 0x1
1450 u8 tc_strict_priority_flags;
1451 u8 reserved1[17];
1452 u8 tc_bw_share_credits[8];
1453 u8 reserved2[96];
Greg Rosed358aa92013-12-21 06:13:11 +00001454};
1455
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001456I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
1457
Greg Rosed358aa92013-12-21 06:13:11 +00001458/* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
1459struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001460 u8 tc_valid_bits;
1461 u8 reserved[15];
1462 __le16 tc_bw_credit[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001463
1464 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001465 __le16 tc_bw_max[2];
1466 u8 reserved1[28];
Greg Rosed358aa92013-12-21 06:13:11 +00001467};
1468
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001469I40E_CHECK_STRUCT_LEN(0x40,
1470 i40e_aqc_configure_switching_comp_ets_bw_limit_data);
1471
Greg Rosed358aa92013-12-21 06:13:11 +00001472/* Configure Switching Component Bandwidth Allocation per Tc
1473 * (indirect 0x0417)
1474 */
1475struct i40e_aqc_configure_switching_comp_bw_config_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001476 u8 tc_valid_bits;
1477 u8 reserved[2];
1478 u8 absolute_credits; /* bool */
1479 u8 tc_bw_share_credits[8];
1480 u8 reserved1[20];
Greg Rosed358aa92013-12-21 06:13:11 +00001481};
1482
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001483I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
1484
Greg Rosed358aa92013-12-21 06:13:11 +00001485/* Query Switching Component Configuration (indirect 0x0418) */
1486struct i40e_aqc_query_switching_comp_ets_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001487 u8 tc_valid_bits;
1488 u8 reserved[35];
1489 __le16 port_bw_limit;
1490 u8 reserved1[2];
1491 u8 tc_bw_max; /* 0-3, limit = 2^max */
1492 u8 reserved2[23];
Greg Rosed358aa92013-12-21 06:13:11 +00001493};
1494
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001495I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
1496
Greg Rosed358aa92013-12-21 06:13:11 +00001497/* Query PhysicalPort ETS Configuration (indirect 0x0419) */
1498struct i40e_aqc_query_port_ets_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001499 u8 reserved[4];
1500 u8 tc_valid_bits;
1501 u8 reserved1;
1502 u8 tc_strict_priority_bits;
1503 u8 reserved2;
1504 u8 tc_bw_share_credits[8];
1505 __le16 tc_bw_limits[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001506
1507 /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001508 __le16 tc_bw_max[2];
1509 u8 reserved3[32];
Greg Rosed358aa92013-12-21 06:13:11 +00001510};
1511
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001512I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
1513
Greg Rosed358aa92013-12-21 06:13:11 +00001514/* Query Switching Component Bandwidth Allocation per Traffic Type
1515 * (indirect 0x041A)
1516 */
1517struct i40e_aqc_query_switching_comp_bw_config_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001518 u8 tc_valid_bits;
1519 u8 reserved[2];
1520 u8 absolute_credits_enable; /* bool */
1521 u8 tc_bw_share_credits[8];
1522 __le16 tc_bw_limits[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001523
1524 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001525 __le16 tc_bw_max[2];
Greg Rosed358aa92013-12-21 06:13:11 +00001526};
1527
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001528I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
1529
Greg Rosed358aa92013-12-21 06:13:11 +00001530/* Suspend/resume port TX traffic
1531 * (direct 0x041B and 0x041C) uses the generic SEID struct
1532 */
1533
Shannon Nelsonbefc2292014-03-14 07:32:23 +00001534/* Configure partition BW
1535 * (indirect 0x041D)
1536 */
1537struct i40e_aqc_configure_partition_bw_data {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001538 __le16 pf_valid_bits;
1539 u8 min_bw[16]; /* guaranteed bandwidth */
1540 u8 max_bw[16]; /* bandwidth limit */
Shannon Nelsonbefc2292014-03-14 07:32:23 +00001541};
1542
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001543I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
1544
Greg Rosed358aa92013-12-21 06:13:11 +00001545/* Get and set the active HMC resource profile and status.
1546 * (direct 0x0500) and (direct 0x0501)
1547 */
1548struct i40e_aq_get_set_hmc_resource_profile {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001549 u8 pm_profile;
1550 u8 pe_vf_enabled;
1551 u8 reserved[14];
Greg Rosed358aa92013-12-21 06:13:11 +00001552};
1553
1554I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
1555
1556enum i40e_aq_hmc_profile {
1557 /* I40E_HMC_PROFILE_NO_CHANGE = 0, reserved */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001558 I40E_HMC_PROFILE_DEFAULT = 1,
1559 I40E_HMC_PROFILE_FAVOR_VF = 2,
1560 I40E_HMC_PROFILE_EQUAL = 3,
Greg Rosed358aa92013-12-21 06:13:11 +00001561};
1562
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001563#define I40E_AQ_GET_HMC_RESOURCE_PROFILE_PM_MASK 0xF
1564#define I40E_AQ_GET_HMC_RESOURCE_PROFILE_COUNT_MASK 0x3F
Greg Rosed358aa92013-12-21 06:13:11 +00001565
1566/* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
1567
1568/* set in param0 for get phy abilities to report qualified modules */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001569#define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES 0x0001
1570#define I40E_AQ_PHY_REPORT_INITIAL_VALUES 0x0002
Greg Rosed358aa92013-12-21 06:13:11 +00001571
1572enum i40e_aq_phy_type {
1573 I40E_PHY_TYPE_SGMII = 0x0,
1574 I40E_PHY_TYPE_1000BASE_KX = 0x1,
1575 I40E_PHY_TYPE_10GBASE_KX4 = 0x2,
1576 I40E_PHY_TYPE_10GBASE_KR = 0x3,
1577 I40E_PHY_TYPE_40GBASE_KR4 = 0x4,
1578 I40E_PHY_TYPE_XAUI = 0x5,
1579 I40E_PHY_TYPE_XFI = 0x6,
1580 I40E_PHY_TYPE_SFI = 0x7,
1581 I40E_PHY_TYPE_XLAUI = 0x8,
1582 I40E_PHY_TYPE_XLPPI = 0x9,
1583 I40E_PHY_TYPE_40GBASE_CR4_CU = 0xA,
1584 I40E_PHY_TYPE_10GBASE_CR1_CU = 0xB,
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001585 I40E_PHY_TYPE_10GBASE_AOC = 0xC,
1586 I40E_PHY_TYPE_40GBASE_AOC = 0xD,
Greg Rosed358aa92013-12-21 06:13:11 +00001587 I40E_PHY_TYPE_100BASE_TX = 0x11,
1588 I40E_PHY_TYPE_1000BASE_T = 0x12,
1589 I40E_PHY_TYPE_10GBASE_T = 0x13,
1590 I40E_PHY_TYPE_10GBASE_SR = 0x14,
1591 I40E_PHY_TYPE_10GBASE_LR = 0x15,
1592 I40E_PHY_TYPE_10GBASE_SFPP_CU = 0x16,
1593 I40E_PHY_TYPE_10GBASE_CR1 = 0x17,
1594 I40E_PHY_TYPE_40GBASE_CR4 = 0x18,
1595 I40E_PHY_TYPE_40GBASE_SR4 = 0x19,
1596 I40E_PHY_TYPE_40GBASE_LR4 = 0x1A,
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001597 I40E_PHY_TYPE_1000BASE_SX = 0x1B,
1598 I40E_PHY_TYPE_1000BASE_LX = 0x1C,
1599 I40E_PHY_TYPE_1000BASE_T_OPTICAL = 0x1D,
1600 I40E_PHY_TYPE_20GBASE_KR2 = 0x1E,
Greg Rosed358aa92013-12-21 06:13:11 +00001601 I40E_PHY_TYPE_MAX
1602};
1603
1604#define I40E_LINK_SPEED_100MB_SHIFT 0x1
1605#define I40E_LINK_SPEED_1000MB_SHIFT 0x2
1606#define I40E_LINK_SPEED_10GB_SHIFT 0x3
1607#define I40E_LINK_SPEED_40GB_SHIFT 0x4
1608#define I40E_LINK_SPEED_20GB_SHIFT 0x5
1609
1610enum i40e_aq_link_speed {
1611 I40E_LINK_SPEED_UNKNOWN = 0,
1612 I40E_LINK_SPEED_100MB = (1 << I40E_LINK_SPEED_100MB_SHIFT),
1613 I40E_LINK_SPEED_1GB = (1 << I40E_LINK_SPEED_1000MB_SHIFT),
1614 I40E_LINK_SPEED_10GB = (1 << I40E_LINK_SPEED_10GB_SHIFT),
1615 I40E_LINK_SPEED_40GB = (1 << I40E_LINK_SPEED_40GB_SHIFT),
1616 I40E_LINK_SPEED_20GB = (1 << I40E_LINK_SPEED_20GB_SHIFT)
1617};
1618
1619struct i40e_aqc_module_desc {
1620 u8 oui[3];
1621 u8 reserved1;
1622 u8 part_number[16];
1623 u8 revision[4];
1624 u8 reserved2[8];
1625};
1626
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001627I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
1628
Greg Rosed358aa92013-12-21 06:13:11 +00001629struct i40e_aq_get_phy_abilities_resp {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001630 __le32 phy_type; /* bitmap using the above enum for offsets */
1631 u8 link_speed; /* bitmap using the above enum bit patterns */
1632 u8 abilities;
1633#define I40E_AQ_PHY_FLAG_PAUSE_TX 0x01
1634#define I40E_AQ_PHY_FLAG_PAUSE_RX 0x02
1635#define I40E_AQ_PHY_FLAG_LOW_POWER 0x04
1636#define I40E_AQ_PHY_LINK_ENABLED 0x08
1637#define I40E_AQ_PHY_AN_ENABLED 0x10
1638#define I40E_AQ_PHY_FLAG_MODULE_QUAL 0x20
1639 __le16 eee_capability;
1640#define I40E_AQ_EEE_100BASE_TX 0x0002
1641#define I40E_AQ_EEE_1000BASE_T 0x0004
1642#define I40E_AQ_EEE_10GBASE_T 0x0008
1643#define I40E_AQ_EEE_1000BASE_KX 0x0010
1644#define I40E_AQ_EEE_10GBASE_KX4 0x0020
1645#define I40E_AQ_EEE_10GBASE_KR 0x0040
1646 __le32 eeer_val;
1647 u8 d3_lpan;
1648#define I40E_AQ_SET_PHY_D3_LPAN_ENA 0x01
1649 u8 reserved[3];
1650 u8 phy_id[4];
1651 u8 module_type[3];
1652 u8 qualified_module_count;
1653#define I40E_AQ_PHY_MAX_QMS 16
1654 struct i40e_aqc_module_desc qualified_module[I40E_AQ_PHY_MAX_QMS];
Greg Rosed358aa92013-12-21 06:13:11 +00001655};
1656
Shannon Nelson8d5e33a2014-12-14 01:55:12 +00001657I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
1658
Greg Rosed358aa92013-12-21 06:13:11 +00001659/* Set PHY Config (direct 0x0601) */
1660struct i40e_aq_set_phy_config { /* same bits as above in all */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001661 __le32 phy_type;
1662 u8 link_speed;
1663 u8 abilities;
Greg Rosed358aa92013-12-21 06:13:11 +00001664/* bits 0-2 use the values from get_phy_abilities_resp */
1665#define I40E_AQ_PHY_ENABLE_LINK 0x08
1666#define I40E_AQ_PHY_ENABLE_AN 0x10
1667#define I40E_AQ_PHY_ENABLE_ATOMIC_LINK 0x20
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001668 __le16 eee_capability;
1669 __le32 eeer;
1670 u8 low_power_ctrl;
1671 u8 reserved[3];
Greg Rosed358aa92013-12-21 06:13:11 +00001672};
1673
1674I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
1675
1676/* Set MAC Config command data structure (direct 0x0603) */
1677struct i40e_aq_set_mac_config {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001678 __le16 max_frame_size;
1679 u8 params;
1680#define I40E_AQ_SET_MAC_CONFIG_CRC_EN 0x04
1681#define I40E_AQ_SET_MAC_CONFIG_PACING_MASK 0x78
1682#define I40E_AQ_SET_MAC_CONFIG_PACING_SHIFT 3
1683#define I40E_AQ_SET_MAC_CONFIG_PACING_NONE 0x0
1684#define I40E_AQ_SET_MAC_CONFIG_PACING_1B_13TX 0xF
1685#define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_9TX 0x9
1686#define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_4TX 0x8
1687#define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_7TX 0x7
1688#define I40E_AQ_SET_MAC_CONFIG_PACING_2DW_3TX 0x6
1689#define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_1TX 0x5
1690#define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_2TX 0x4
1691#define I40E_AQ_SET_MAC_CONFIG_PACING_7DW_3TX 0x3
1692#define I40E_AQ_SET_MAC_CONFIG_PACING_4DW_1TX 0x2
1693#define I40E_AQ_SET_MAC_CONFIG_PACING_9DW_1TX 0x1
1694 u8 tx_timer_priority; /* bitmap */
1695 __le16 tx_timer_value;
1696 __le16 fc_refresh_threshold;
1697 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001698};
1699
1700I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
1701
1702/* Restart Auto-Negotiation (direct 0x605) */
1703struct i40e_aqc_set_link_restart_an {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001704 u8 command;
1705#define I40E_AQ_PHY_RESTART_AN 0x02
1706#define I40E_AQ_PHY_LINK_ENABLE 0x04
1707 u8 reserved[15];
Greg Rosed358aa92013-12-21 06:13:11 +00001708};
1709
1710I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
1711
1712/* Get Link Status cmd & response data structure (direct 0x0607) */
1713struct i40e_aqc_get_link_status {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001714 __le16 command_flags; /* only field set on command */
1715#define I40E_AQ_LSE_MASK 0x3
1716#define I40E_AQ_LSE_NOP 0x0
1717#define I40E_AQ_LSE_DISABLE 0x2
1718#define I40E_AQ_LSE_ENABLE 0x3
Greg Rosed358aa92013-12-21 06:13:11 +00001719/* only response uses this flag */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001720#define I40E_AQ_LSE_IS_ENABLED 0x1
1721 u8 phy_type; /* i40e_aq_phy_type */
1722 u8 link_speed; /* i40e_aq_link_speed */
1723 u8 link_info;
Shannon Nelson1d55aa92015-08-31 19:54:41 -04001724#define I40E_AQ_LINK_UP 0x01 /* obsolete */
1725#define I40E_AQ_LINK_UP_FUNCTION 0x01
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001726#define I40E_AQ_LINK_FAULT 0x02
1727#define I40E_AQ_LINK_FAULT_TX 0x04
1728#define I40E_AQ_LINK_FAULT_RX 0x08
1729#define I40E_AQ_LINK_FAULT_REMOTE 0x10
Shannon Nelson1d55aa92015-08-31 19:54:41 -04001730#define I40E_AQ_LINK_UP_PORT 0x20
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001731#define I40E_AQ_MEDIA_AVAILABLE 0x40
1732#define I40E_AQ_SIGNAL_DETECT 0x80
1733 u8 an_info;
1734#define I40E_AQ_AN_COMPLETED 0x01
1735#define I40E_AQ_LP_AN_ABILITY 0x02
1736#define I40E_AQ_PD_FAULT 0x04
1737#define I40E_AQ_FEC_EN 0x08
1738#define I40E_AQ_PHY_LOW_POWER 0x10
1739#define I40E_AQ_LINK_PAUSE_TX 0x20
1740#define I40E_AQ_LINK_PAUSE_RX 0x40
1741#define I40E_AQ_QUALIFIED_MODULE 0x80
1742 u8 ext_info;
1743#define I40E_AQ_LINK_PHY_TEMP_ALARM 0x01
1744#define I40E_AQ_LINK_XCESSIVE_ERRORS 0x02
1745#define I40E_AQ_LINK_TX_SHIFT 0x02
1746#define I40E_AQ_LINK_TX_MASK (0x03 << I40E_AQ_LINK_TX_SHIFT)
1747#define I40E_AQ_LINK_TX_ACTIVE 0x00
1748#define I40E_AQ_LINK_TX_DRAINED 0x01
1749#define I40E_AQ_LINK_TX_FLUSHED 0x03
1750#define I40E_AQ_LINK_FORCED_40G 0x10
1751 u8 loopback; /* use defines from i40e_aqc_set_lb_mode */
1752 __le16 max_frame_size;
1753 u8 config;
1754#define I40E_AQ_CONFIG_CRC_ENA 0x04
1755#define I40E_AQ_CONFIG_PACING_MASK 0x78
1756 u8 reserved[5];
Greg Rosed358aa92013-12-21 06:13:11 +00001757};
1758
1759I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
1760
1761/* Set event mask command (direct 0x613) */
1762struct i40e_aqc_set_phy_int_mask {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001763 u8 reserved[8];
1764 __le16 event_mask;
1765#define I40E_AQ_EVENT_LINK_UPDOWN 0x0002
1766#define I40E_AQ_EVENT_MEDIA_NA 0x0004
1767#define I40E_AQ_EVENT_LINK_FAULT 0x0008
1768#define I40E_AQ_EVENT_PHY_TEMP_ALARM 0x0010
1769#define I40E_AQ_EVENT_EXCESSIVE_ERRORS 0x0020
1770#define I40E_AQ_EVENT_SIGNAL_DETECT 0x0040
1771#define I40E_AQ_EVENT_AN_COMPLETED 0x0080
1772#define I40E_AQ_EVENT_MODULE_QUAL_FAIL 0x0100
1773#define I40E_AQ_EVENT_PORT_TX_SUSPENDED 0x0200
1774 u8 reserved1[6];
Greg Rosed358aa92013-12-21 06:13:11 +00001775};
1776
1777I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
1778
1779/* Get Local AN advt register (direct 0x0614)
1780 * Set Local AN advt register (direct 0x0615)
1781 * Get Link Partner AN advt register (direct 0x0616)
1782 */
1783struct i40e_aqc_an_advt_reg {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001784 __le32 local_an_reg0;
1785 __le16 local_an_reg1;
1786 u8 reserved[10];
Greg Rosed358aa92013-12-21 06:13:11 +00001787};
1788
1789I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
1790
1791/* Set Loopback mode (0x0618) */
1792struct i40e_aqc_set_lb_mode {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001793 __le16 lb_mode;
1794#define I40E_AQ_LB_PHY_LOCAL 0x01
1795#define I40E_AQ_LB_PHY_REMOTE 0x02
1796#define I40E_AQ_LB_MAC_LOCAL 0x04
1797 u8 reserved[14];
Greg Rosed358aa92013-12-21 06:13:11 +00001798};
1799
1800I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
1801
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001802/* Set PHY Debug command (0x0622) */
1803struct i40e_aqc_set_phy_debug {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001804 u8 command_flags;
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001805#define I40E_AQ_PHY_DEBUG_RESET_INTERNAL 0x02
1806#define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT 2
1807#define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_MASK (0x03 << \
1808 I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT)
1809#define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_NONE 0x00
1810#define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_HARD 0x01
1811#define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SOFT 0x02
1812#define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW 0x10
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001813 u8 reserved[15];
Greg Rosed358aa92013-12-21 06:13:11 +00001814};
1815
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001816I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
Greg Rosed358aa92013-12-21 06:13:11 +00001817
1818enum i40e_aq_phy_reg_type {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001819 I40E_AQC_PHY_REG_INTERNAL = 0x1,
1820 I40E_AQC_PHY_REG_EXERNAL_BASET = 0x2,
1821 I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
Greg Rosed358aa92013-12-21 06:13:11 +00001822};
1823
1824/* NVM Read command (indirect 0x0701)
1825 * NVM Erase commands (direct 0x0702)
1826 * NVM Update commands (indirect 0x0703)
1827 */
1828struct i40e_aqc_nvm_update {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001829 u8 command_flags;
1830#define I40E_AQ_NVM_LAST_CMD 0x01
1831#define I40E_AQ_NVM_FLASH_ONLY 0x80
1832 u8 module_pointer;
1833 __le16 length;
1834 __le32 offset;
1835 __le32 addr_high;
1836 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001837};
1838
1839I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
1840
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001841/* NVM Config Read (indirect 0x0704) */
1842struct i40e_aqc_nvm_config_read {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001843 __le16 cmd_flags;
Jeff Kirshere910ca72015-01-16 05:02:52 -08001844#define I40E_AQ_ANVM_SINGLE_OR_MULTIPLE_FEATURES_MASK 1
1845#define I40E_AQ_ANVM_READ_SINGLE_FEATURE 0
1846#define I40E_AQ_ANVM_READ_MULTIPLE_FEATURES 1
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001847 __le16 element_count;
Jeff Kirshere910ca72015-01-16 05:02:52 -08001848 __le16 element_id; /* Feature/field ID */
1849 __le16 element_id_msw; /* MSWord of field ID */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001850 __le32 address_high;
1851 __le32 address_low;
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001852};
1853
1854I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
1855
1856/* NVM Config Write (indirect 0x0705) */
1857struct i40e_aqc_nvm_config_write {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001858 __le16 cmd_flags;
1859 __le16 element_count;
1860 u8 reserved[4];
1861 __le32 address_high;
1862 __le32 address_low;
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001863};
1864
1865I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
1866
Shannon Nelson672415c2014-12-14 01:55:13 +00001867/* Used for 0x0704 as well as for 0x0705 commands */
1868#define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT 1
1869#define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK \
1870 (1 << I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT)
1871#define I40E_AQ_ANVM_FEATURE 0
1872#define I40E_AQ_ANVM_IMMEDIATE_FIELD (1 << FEATURE_OR_IMMEDIATE_SHIFT)
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001873struct i40e_aqc_nvm_config_data_feature {
1874 __le16 feature_id;
Shannon Nelson672415c2014-12-14 01:55:13 +00001875#define I40E_AQ_ANVM_FEATURE_OPTION_OEM_ONLY 0x01
1876#define I40E_AQ_ANVM_FEATURE_OPTION_DWORD_MAP 0x08
1877#define I40E_AQ_ANVM_FEATURE_OPTION_POR_CSR 0x10
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001878 __le16 feature_options;
1879 __le16 feature_selection;
1880};
1881
Shannon Nelson672415c2014-12-14 01:55:13 +00001882I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
1883
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001884struct i40e_aqc_nvm_config_data_immediate_field {
Shannon Nelson672415c2014-12-14 01:55:13 +00001885 __le32 field_id;
1886 __le32 field_value;
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001887 __le16 field_options;
Shannon Nelson672415c2014-12-14 01:55:13 +00001888 __le16 reserved;
Shannon Nelsonf94234e2014-05-22 06:31:30 +00001889};
1890
Shannon Nelson672415c2014-12-14 01:55:13 +00001891I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
1892
Michal Kosiarz00ada502015-11-19 11:34:20 -08001893/* OEM Post Update (indirect 0x0720)
1894 * no command data struct used
1895 */
1896 struct i40e_aqc_nvm_oem_post_update {
1897#define I40E_AQ_NVM_OEM_POST_UPDATE_EXTERNAL_DATA 0x01
1898 u8 sel_data;
1899 u8 reserved[7];
1900};
1901
1902I40E_CHECK_STRUCT_LEN(0x8, i40e_aqc_nvm_oem_post_update);
1903
1904struct i40e_aqc_nvm_oem_post_update_buffer {
1905 u8 str_len;
1906 u8 dev_addr;
1907 __le16 eeprom_addr;
1908 u8 data[36];
1909};
1910
1911I40E_CHECK_STRUCT_LEN(0x28, i40e_aqc_nvm_oem_post_update_buffer);
1912
Greg Rosed358aa92013-12-21 06:13:11 +00001913/* Send to PF command (indirect 0x0801) id is only used by PF
1914 * Send to VF command (indirect 0x0802) id is only used by PF
1915 * Send to Peer PF command (indirect 0x0803)
1916 */
1917struct i40e_aqc_pf_vf_message {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001918 __le32 id;
1919 u8 reserved[4];
1920 __le32 addr_high;
1921 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00001922};
1923
1924I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
1925
1926/* Alternate structure */
1927
1928/* Direct write (direct 0x0900)
1929 * Direct read (direct 0x0902)
1930 */
1931struct i40e_aqc_alternate_write {
1932 __le32 address0;
1933 __le32 data0;
1934 __le32 address1;
1935 __le32 data1;
1936};
1937
1938I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
1939
1940/* Indirect write (indirect 0x0901)
1941 * Indirect read (indirect 0x0903)
1942 */
1943
1944struct i40e_aqc_alternate_ind_write {
1945 __le32 address;
1946 __le32 length;
1947 __le32 addr_high;
1948 __le32 addr_low;
1949};
1950
1951I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
1952
1953/* Done alternate write (direct 0x0904)
1954 * uses i40e_aq_desc
1955 */
1956struct i40e_aqc_alternate_write_done {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001957 __le16 cmd_flags;
Greg Rosed358aa92013-12-21 06:13:11 +00001958#define I40E_AQ_ALTERNATE_MODE_BIOS_MASK 1
1959#define I40E_AQ_ALTERNATE_MODE_BIOS_LEGACY 0
1960#define I40E_AQ_ALTERNATE_MODE_BIOS_UEFI 1
1961#define I40E_AQ_ALTERNATE_RESET_NEEDED 2
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001962 u8 reserved[14];
Greg Rosed358aa92013-12-21 06:13:11 +00001963};
1964
1965I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
1966
1967/* Set OEM mode (direct 0x0905) */
1968struct i40e_aqc_alternate_set_mode {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001969 __le32 mode;
Greg Rosed358aa92013-12-21 06:13:11 +00001970#define I40E_AQ_ALTERNATE_MODE_NONE 0
1971#define I40E_AQ_ALTERNATE_MODE_OEM 1
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001972 u8 reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +00001973};
1974
1975I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
1976
1977/* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
1978
1979/* async events 0x10xx */
1980
1981/* Lan Queue Overflow Event (direct, 0x1001) */
1982struct i40e_aqc_lan_overflow {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001983 __le32 prtdcb_rupto;
1984 __le32 otx_ctl;
1985 u8 reserved[8];
Greg Rosed358aa92013-12-21 06:13:11 +00001986};
1987
1988I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
1989
1990/* Get LLDP MIB (indirect 0x0A00) */
1991struct i40e_aqc_lldp_get_mib {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00001992 u8 type;
1993 u8 reserved1;
1994#define I40E_AQ_LLDP_MIB_TYPE_MASK 0x3
1995#define I40E_AQ_LLDP_MIB_LOCAL 0x0
1996#define I40E_AQ_LLDP_MIB_REMOTE 0x1
1997#define I40E_AQ_LLDP_MIB_LOCAL_AND_REMOTE 0x2
1998#define I40E_AQ_LLDP_BRIDGE_TYPE_MASK 0xC
1999#define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT 0x2
2000#define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
2001#define I40E_AQ_LLDP_BRIDGE_TYPE_NON_TPMR 0x1
2002#define I40E_AQ_LLDP_TX_SHIFT 0x4
2003#define I40E_AQ_LLDP_TX_MASK (0x03 << I40E_AQ_LLDP_TX_SHIFT)
Greg Rosed358aa92013-12-21 06:13:11 +00002004/* TX pause flags use I40E_AQ_LINK_TX_* above */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002005 __le16 local_len;
2006 __le16 remote_len;
2007 u8 reserved2[2];
2008 __le32 addr_high;
2009 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002010};
2011
2012I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
2013
2014/* Configure LLDP MIB Change Event (direct 0x0A01)
2015 * also used for the event (with type in the command field)
2016 */
2017struct i40e_aqc_lldp_update_mib {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002018 u8 command;
2019#define I40E_AQ_LLDP_MIB_UPDATE_ENABLE 0x0
2020#define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
2021 u8 reserved[7];
2022 __le32 addr_high;
2023 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002024};
2025
2026I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
2027
2028/* Add LLDP TLV (indirect 0x0A02)
2029 * Delete LLDP TLV (indirect 0x0A04)
2030 */
2031struct i40e_aqc_lldp_add_tlv {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002032 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2033 u8 reserved1[1];
2034 __le16 len;
2035 u8 reserved2[4];
2036 __le32 addr_high;
2037 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002038};
2039
2040I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
2041
2042/* Update LLDP TLV (indirect 0x0A03) */
2043struct i40e_aqc_lldp_update_tlv {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002044 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2045 u8 reserved;
2046 __le16 old_len;
2047 __le16 new_offset;
2048 __le16 new_len;
2049 __le32 addr_high;
2050 __le32 addr_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002051};
2052
2053I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
2054
2055/* Stop LLDP (direct 0x0A05) */
2056struct i40e_aqc_lldp_stop {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002057 u8 command;
2058#define I40E_AQ_LLDP_AGENT_STOP 0x0
2059#define I40E_AQ_LLDP_AGENT_SHUTDOWN 0x1
2060 u8 reserved[15];
Greg Rosed358aa92013-12-21 06:13:11 +00002061};
2062
2063I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
2064
2065/* Start LLDP (direct 0x0A06) */
2066
2067struct i40e_aqc_lldp_start {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002068 u8 command;
2069#define I40E_AQ_LLDP_AGENT_START 0x1
2070 u8 reserved[15];
Greg Rosed358aa92013-12-21 06:13:11 +00002071};
2072
2073I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
2074
2075/* Apply MIB changes (0x0A07)
2076 * uses the generic struc as it contains no data
2077 */
2078
2079/* Add Udp Tunnel command and completion (direct 0x0B00) */
2080struct i40e_aqc_add_udp_tunnel {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002081 __le16 udp_port;
2082 u8 reserved0[3];
2083 u8 protocol_type;
Shannon Nelson9774dd82014-04-04 04:43:03 +00002084#define I40E_AQC_TUNNEL_TYPE_VXLAN 0x00
2085#define I40E_AQC_TUNNEL_TYPE_NGE 0x01
2086#define I40E_AQC_TUNNEL_TYPE_TEREDO 0x10
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002087 u8 reserved1[10];
Greg Rosed358aa92013-12-21 06:13:11 +00002088};
2089
2090I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
2091
2092struct i40e_aqc_add_udp_tunnel_completion {
2093 __le16 udp_port;
2094 u8 filter_entry_index;
2095 u8 multiple_pfs;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002096#define I40E_AQC_SINGLE_PF 0x0
2097#define I40E_AQC_MULTIPLE_PFS 0x1
Greg Rosed358aa92013-12-21 06:13:11 +00002098 u8 total_filters;
2099 u8 reserved[11];
2100};
2101
2102I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
2103
2104/* remove UDP Tunnel command (0x0B01) */
2105struct i40e_aqc_remove_udp_tunnel {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002106 u8 reserved[2];
2107 u8 index; /* 0 to 15 */
2108 u8 reserved2[13];
Greg Rosed358aa92013-12-21 06:13:11 +00002109};
2110
2111I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
2112
2113struct i40e_aqc_del_udp_tunnel_completion {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002114 __le16 udp_port;
2115 u8 index; /* 0 to 15 */
2116 u8 multiple_pfs;
2117 u8 total_filters_used;
2118 u8 reserved1[11];
Greg Rosed358aa92013-12-21 06:13:11 +00002119};
2120
2121I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
2122
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -04002123struct i40e_aqc_get_set_rss_key {
2124#define I40E_AQC_SET_RSS_KEY_VSI_VALID (0x1 << 15)
2125#define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT 0
2126#define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK (0x3FF << \
2127 I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
2128 __le16 vsi_id;
2129 u8 reserved[6];
2130 __le32 addr_high;
2131 __le32 addr_low;
2132};
2133
2134I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
2135
2136struct i40e_aqc_get_set_rss_key_data {
2137 u8 standard_rss_key[0x28];
2138 u8 extended_hash_key[0xc];
2139};
2140
2141I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
2142
2143struct i40e_aqc_get_set_rss_lut {
2144#define I40E_AQC_SET_RSS_LUT_VSI_VALID (0x1 << 15)
2145#define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT 0
2146#define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK (0x3FF << \
2147 I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
2148 __le16 vsi_id;
2149#define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT 0
2150#define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK (0x1 << \
2151 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
2152
2153#define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI 0
2154#define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF 1
2155 __le16 flags;
2156 u8 reserved[4];
2157 __le32 addr_high;
2158 __le32 addr_low;
2159};
2160
2161I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
2162
Greg Rosed358aa92013-12-21 06:13:11 +00002163/* tunnel key structure 0x0B10 */
2164
Greg Rose90327e72013-12-21 06:13:21 +00002165struct i40e_aqc_tunnel_key_structure_A0 {
2166 __le16 key1_off;
2167 __le16 key1_len;
2168 __le16 key2_off;
2169 __le16 key2_len;
2170 __le16 flags;
2171#define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
2172/* response flags */
2173#define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2174#define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2175#define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
2176 u8 resreved[6];
2177};
2178
2179I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure_A0);
2180
Greg Rosed358aa92013-12-21 06:13:11 +00002181struct i40e_aqc_tunnel_key_structure {
2182 u8 key1_off;
2183 u8 key2_off;
2184 u8 key1_len; /* 0 to 15 */
2185 u8 key2_len; /* 0 to 15 */
2186 u8 flags;
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002187#define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
Greg Rosed358aa92013-12-21 06:13:11 +00002188/* response flags */
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002189#define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2190#define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2191#define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
Greg Rosed358aa92013-12-21 06:13:11 +00002192 u8 network_key_index;
2193#define I40E_AQC_NETWORK_KEY_INDEX_VXLAN 0x0
2194#define I40E_AQC_NETWORK_KEY_INDEX_NGE 0x1
2195#define I40E_AQC_NETWORK_KEY_INDEX_FLEX_MAC_IN_UDP 0x2
2196#define I40E_AQC_NETWORK_KEY_INDEX_GRE 0x3
2197 u8 reserved[10];
2198};
2199
2200I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
2201
2202/* OEM mode commands (direct 0xFE0x) */
2203struct i40e_aqc_oem_param_change {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002204 __le32 param_type;
2205#define I40E_AQ_OEM_PARAM_TYPE_PF_CTL 0
2206#define I40E_AQ_OEM_PARAM_TYPE_BW_CTL 1
2207#define I40E_AQ_OEM_PARAM_MAC 2
2208 __le32 param_value1;
Shannon Nelson35155fe2014-12-12 07:50:07 +00002209 __le16 param_value2;
2210 u8 reserved[6];
Greg Rosed358aa92013-12-21 06:13:11 +00002211};
2212
2213I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
2214
2215struct i40e_aqc_oem_state_change {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002216 __le32 state;
2217#define I40E_AQ_OEM_STATE_LINK_DOWN 0x0
2218#define I40E_AQ_OEM_STATE_LINK_UP 0x1
2219 u8 reserved[12];
Greg Rosed358aa92013-12-21 06:13:11 +00002220};
2221
2222I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
2223
Shannon Nelson672415c2014-12-14 01:55:13 +00002224/* Initialize OCSD (0xFE02, direct) */
2225struct i40e_aqc_opc_oem_ocsd_initialize {
2226 u8 type_status;
2227 u8 reserved1[3];
2228 __le32 ocsd_memory_block_addr_high;
2229 __le32 ocsd_memory_block_addr_low;
2230 __le32 requested_update_interval;
2231};
2232
2233I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
2234
2235/* Initialize OCBB (0xFE03, direct) */
2236struct i40e_aqc_opc_oem_ocbb_initialize {
2237 u8 type_status;
2238 u8 reserved1[3];
2239 __le32 ocbb_memory_block_addr_high;
2240 __le32 ocbb_memory_block_addr_low;
2241 u8 reserved2[4];
2242};
2243
2244I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
2245
Greg Rosed358aa92013-12-21 06:13:11 +00002246/* debug commands */
2247
2248/* get device id (0xFF00) uses the generic structure */
2249
2250/* set test more (0xFF01, internal) */
2251
2252struct i40e_acq_set_test_mode {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002253 u8 mode;
2254#define I40E_AQ_TEST_PARTIAL 0
2255#define I40E_AQ_TEST_FULL 1
2256#define I40E_AQ_TEST_NVM 2
2257 u8 reserved[3];
2258 u8 command;
2259#define I40E_AQ_TEST_OPEN 0
2260#define I40E_AQ_TEST_CLOSE 1
2261#define I40E_AQ_TEST_INC 2
2262 u8 reserved2[3];
2263 __le32 address_high;
2264 __le32 address_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002265};
2266
2267I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
2268
2269/* Debug Read Register command (0xFF03)
2270 * Debug Write Register command (0xFF04)
2271 */
2272struct i40e_aqc_debug_reg_read_write {
2273 __le32 reserved;
2274 __le32 address;
2275 __le32 value_high;
2276 __le32 value_low;
2277};
2278
2279I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
2280
2281/* Scatter/gather Reg Read (indirect 0xFF05)
2282 * Scatter/gather Reg Write (indirect 0xFF06)
2283 */
2284
2285/* i40e_aq_desc is used for the command */
2286struct i40e_aqc_debug_reg_sg_element_data {
2287 __le32 address;
2288 __le32 value;
2289};
2290
2291/* Debug Modify register (direct 0xFF07) */
2292struct i40e_aqc_debug_modify_reg {
2293 __le32 address;
2294 __le32 value;
2295 __le32 clear_mask;
2296 __le32 set_mask;
2297};
2298
2299I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
2300
2301/* dump internal data (0xFF08, indirect) */
2302
2303#define I40E_AQ_CLUSTER_ID_AUX 0
2304#define I40E_AQ_CLUSTER_ID_SWITCH_FLU 1
2305#define I40E_AQ_CLUSTER_ID_TXSCHED 2
2306#define I40E_AQ_CLUSTER_ID_HMC 3
2307#define I40E_AQ_CLUSTER_ID_MAC0 4
2308#define I40E_AQ_CLUSTER_ID_MAC1 5
2309#define I40E_AQ_CLUSTER_ID_MAC2 6
2310#define I40E_AQ_CLUSTER_ID_MAC3 7
2311#define I40E_AQ_CLUSTER_ID_DCB 8
2312#define I40E_AQ_CLUSTER_ID_EMP_MEM 9
2313#define I40E_AQ_CLUSTER_ID_PKT_BUF 10
2314#define I40E_AQ_CLUSTER_ID_ALTRAM 11
2315
2316struct i40e_aqc_debug_dump_internals {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002317 u8 cluster_id;
2318 u8 table_id;
2319 __le16 data_size;
2320 __le32 idx;
2321 __le32 address_high;
2322 __le32 address_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002323};
2324
2325I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
2326
2327struct i40e_aqc_debug_modify_internals {
Jeff Kirsher8c570dc2014-09-13 07:40:43 +00002328 u8 cluster_id;
2329 u8 cluster_specific_params[7];
2330 __le32 address_high;
2331 __le32 address_low;
Greg Rosed358aa92013-12-21 06:13:11 +00002332};
2333
2334I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
2335
Helin Zhang2f175f52015-10-21 19:47:10 -04002336#endif /* _I40E_ADMINQ_CMD_H_ */