i40e: AQ thermal sensor control struct
[deliverable/linux.git] / drivers / net / ethernet / intel / i40evf / i40e_adminq_cmd.h
1 /*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
4 * Copyright(c) 2013 - 2014 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27 #ifndef _I40E_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
36 #define I40E_FW_API_VERSION_MAJOR 0x0001
37 #define I40E_FW_API_VERSION_MINOR 0x0004
38
39 struct 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*/
69 #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
80
81 #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 */
92
93 /* error codes */
94 enum i40e_admin_queue_err {
95 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 */
118 };
119
120 /* Admin Queue command opcodes */
121 enum i40e_admin_queue_opc {
122 /* aq commands */
123 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,
127
128 /* resource ownership */
129 i40e_aqc_opc_request_resource = 0x0008,
130 i40e_aqc_opc_release_resource = 0x0009,
131
132 i40e_aqc_opc_list_func_capabilities = 0x000A,
133 i40e_aqc_opc_list_dev_capabilities = 0x000B,
134
135 /* LAA */
136 i40e_aqc_opc_mac_address_read = 0x0107,
137 i40e_aqc_opc_mac_address_write = 0x0108,
138
139 /* PXE */
140 i40e_aqc_opc_clear_pxe_mode = 0x0110,
141
142 /* internal switch commands */
143 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,
148 i40e_aqc_opc_set_switch_config = 0x0205,
149
150 i40e_aqc_opc_add_vsi = 0x0210,
151 i40e_aqc_opc_update_vsi_parameters = 0x0211,
152 i40e_aqc_opc_get_vsi_parameters = 0x0212,
153
154 i40e_aqc_opc_add_pv = 0x0220,
155 i40e_aqc_opc_update_pv_parameters = 0x0221,
156 i40e_aqc_opc_get_pv_parameters = 0x0222,
157
158 i40e_aqc_opc_add_veb = 0x0230,
159 i40e_aqc_opc_update_veb_parameters = 0x0231,
160 i40e_aqc_opc_get_veb_parameters = 0x0232,
161
162 i40e_aqc_opc_delete_element = 0x0243,
163
164 i40e_aqc_opc_add_macvlan = 0x0250,
165 i40e_aqc_opc_remove_macvlan = 0x0251,
166 i40e_aqc_opc_add_vlan = 0x0252,
167 i40e_aqc_opc_remove_vlan = 0x0253,
168 i40e_aqc_opc_set_vsi_promiscuous_modes = 0x0254,
169 i40e_aqc_opc_add_tag = 0x0255,
170 i40e_aqc_opc_remove_tag = 0x0256,
171 i40e_aqc_opc_add_multicast_etag = 0x0257,
172 i40e_aqc_opc_remove_multicast_etag = 0x0258,
173 i40e_aqc_opc_update_tag = 0x0259,
174 i40e_aqc_opc_add_control_packet_filter = 0x025A,
175 i40e_aqc_opc_remove_control_packet_filter = 0x025B,
176 i40e_aqc_opc_add_cloud_filters = 0x025C,
177 i40e_aqc_opc_remove_cloud_filters = 0x025D,
178
179 i40e_aqc_opc_add_mirror_rule = 0x0260,
180 i40e_aqc_opc_delete_mirror_rule = 0x0261,
181
182 /* DCB commands */
183 i40e_aqc_opc_dcb_ignore_pfc = 0x0301,
184 i40e_aqc_opc_dcb_updated = 0x0302,
185
186 /* TX scheduler */
187 i40e_aqc_opc_configure_vsi_bw_limit = 0x0400,
188 i40e_aqc_opc_configure_vsi_ets_sla_bw_limit = 0x0406,
189 i40e_aqc_opc_configure_vsi_tc_bw = 0x0407,
190 i40e_aqc_opc_query_vsi_bw_config = 0x0408,
191 i40e_aqc_opc_query_vsi_ets_sla_config = 0x040A,
192 i40e_aqc_opc_configure_switching_comp_bw_limit = 0x0410,
193
194 i40e_aqc_opc_enable_switching_comp_ets = 0x0413,
195 i40e_aqc_opc_modify_switching_comp_ets = 0x0414,
196 i40e_aqc_opc_disable_switching_comp_ets = 0x0415,
197 i40e_aqc_opc_configure_switching_comp_ets_bw_limit = 0x0416,
198 i40e_aqc_opc_configure_switching_comp_bw_config = 0x0417,
199 i40e_aqc_opc_query_switching_comp_ets_config = 0x0418,
200 i40e_aqc_opc_query_port_ets_config = 0x0419,
201 i40e_aqc_opc_query_switching_comp_bw_config = 0x041A,
202 i40e_aqc_opc_suspend_port_tx = 0x041B,
203 i40e_aqc_opc_resume_port_tx = 0x041C,
204 i40e_aqc_opc_configure_partition_bw = 0x041D,
205
206 /* hmc */
207 i40e_aqc_opc_query_hmc_resource_profile = 0x0500,
208 i40e_aqc_opc_set_hmc_resource_profile = 0x0501,
209
210 /* phy commands*/
211 i40e_aqc_opc_get_phy_abilities = 0x0600,
212 i40e_aqc_opc_set_phy_config = 0x0601,
213 i40e_aqc_opc_set_mac_config = 0x0603,
214 i40e_aqc_opc_set_link_restart_an = 0x0605,
215 i40e_aqc_opc_get_link_status = 0x0607,
216 i40e_aqc_opc_set_phy_int_mask = 0x0613,
217 i40e_aqc_opc_get_local_advt_reg = 0x0614,
218 i40e_aqc_opc_set_local_advt_reg = 0x0615,
219 i40e_aqc_opc_get_partner_advt = 0x0616,
220 i40e_aqc_opc_set_lb_modes = 0x0618,
221 i40e_aqc_opc_get_phy_wol_caps = 0x0621,
222 i40e_aqc_opc_set_phy_debug = 0x0622,
223 i40e_aqc_opc_upload_ext_phy_fm = 0x0625,
224 i40e_aqc_opc_run_phy_activity = 0x0626,
225
226 /* NVM commands */
227 i40e_aqc_opc_nvm_read = 0x0701,
228 i40e_aqc_opc_nvm_erase = 0x0702,
229 i40e_aqc_opc_nvm_update = 0x0703,
230 i40e_aqc_opc_nvm_config_read = 0x0704,
231 i40e_aqc_opc_nvm_config_write = 0x0705,
232 i40e_aqc_opc_oem_post_update = 0x0720,
233 i40e_aqc_opc_thermal_sensor = 0x0721,
234
235 /* virtualization commands */
236 i40e_aqc_opc_send_msg_to_pf = 0x0801,
237 i40e_aqc_opc_send_msg_to_vf = 0x0802,
238 i40e_aqc_opc_send_msg_to_peer = 0x0803,
239
240 /* alternate structure */
241 i40e_aqc_opc_alternate_write = 0x0900,
242 i40e_aqc_opc_alternate_write_indirect = 0x0901,
243 i40e_aqc_opc_alternate_read = 0x0902,
244 i40e_aqc_opc_alternate_read_indirect = 0x0903,
245 i40e_aqc_opc_alternate_write_done = 0x0904,
246 i40e_aqc_opc_alternate_set_mode = 0x0905,
247 i40e_aqc_opc_alternate_clear_port = 0x0906,
248
249 /* LLDP commands */
250 i40e_aqc_opc_lldp_get_mib = 0x0A00,
251 i40e_aqc_opc_lldp_update_mib = 0x0A01,
252 i40e_aqc_opc_lldp_add_tlv = 0x0A02,
253 i40e_aqc_opc_lldp_update_tlv = 0x0A03,
254 i40e_aqc_opc_lldp_delete_tlv = 0x0A04,
255 i40e_aqc_opc_lldp_stop = 0x0A05,
256 i40e_aqc_opc_lldp_start = 0x0A06,
257
258 /* Tunnel commands */
259 i40e_aqc_opc_add_udp_tunnel = 0x0B00,
260 i40e_aqc_opc_del_udp_tunnel = 0x0B01,
261 i40e_aqc_opc_set_rss_key = 0x0B02,
262 i40e_aqc_opc_set_rss_lut = 0x0B03,
263 i40e_aqc_opc_get_rss_key = 0x0B04,
264 i40e_aqc_opc_get_rss_lut = 0x0B05,
265
266 /* Async Events */
267 i40e_aqc_opc_event_lan_overflow = 0x1001,
268
269 /* OEM commands */
270 i40e_aqc_opc_oem_parameter_change = 0xFE00,
271 i40e_aqc_opc_oem_device_status_change = 0xFE01,
272 i40e_aqc_opc_oem_ocsd_initialize = 0xFE02,
273 i40e_aqc_opc_oem_ocbb_initialize = 0xFE03,
274
275 /* debug commands */
276 i40e_aqc_opc_debug_read_reg = 0xFF03,
277 i40e_aqc_opc_debug_write_reg = 0xFF04,
278 i40e_aqc_opc_debug_modify_reg = 0xFF07,
279 i40e_aqc_opc_debug_dump_internals = 0xFF08,
280 };
281
282 /* command structures and indirect data structures */
283
284 /* Structure naming conventions:
285 * - no suffix for direct command descriptor structures
286 * - _data for indirect sent data
287 * - _resp for indirect return data (data which is both will use _data)
288 * - _completion for direct return data
289 * - _element_ for repeated elements (may also be _data or _resp)
290 *
291 * Command structures are expected to overlay the params.raw member of the basic
292 * descriptor, and as such cannot exceed 16 bytes in length.
293 */
294
295 /* This macro is used to generate a compilation error if a structure
296 * is not exactly the correct length. It gives a divide by zero error if the
297 * structure is not of the correct size, otherwise it creates an enum that is
298 * never used.
299 */
300 #define I40E_CHECK_STRUCT_LEN(n, X) enum i40e_static_assert_enum_##X \
301 { i40e_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
302
303 /* This macro is used extensively to ensure that command structures are 16
304 * bytes in length as they have to map to the raw array of that size.
305 */
306 #define I40E_CHECK_CMD_LENGTH(X) I40E_CHECK_STRUCT_LEN(16, X)
307
308 /* internal (0x00XX) commands */
309
310 /* Get version (direct 0x0001) */
311 struct i40e_aqc_get_version {
312 __le32 rom_ver;
313 __le32 fw_build;
314 __le16 fw_major;
315 __le16 fw_minor;
316 __le16 api_major;
317 __le16 api_minor;
318 };
319
320 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_version);
321
322 /* Send driver version (indirect 0x0002) */
323 struct i40e_aqc_driver_version {
324 u8 driver_major_ver;
325 u8 driver_minor_ver;
326 u8 driver_build_ver;
327 u8 driver_subbuild_ver;
328 u8 reserved[4];
329 __le32 address_high;
330 __le32 address_low;
331 };
332
333 I40E_CHECK_CMD_LENGTH(i40e_aqc_driver_version);
334
335 /* Queue Shutdown (direct 0x0003) */
336 struct i40e_aqc_queue_shutdown {
337 __le32 driver_unloading;
338 #define I40E_AQ_DRIVER_UNLOADING 0x1
339 u8 reserved[12];
340 };
341
342 I40E_CHECK_CMD_LENGTH(i40e_aqc_queue_shutdown);
343
344 /* Set PF context (0x0004, direct) */
345 struct i40e_aqc_set_pf_context {
346 u8 pf_id;
347 u8 reserved[15];
348 };
349
350 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_pf_context);
351
352 /* Request resource ownership (direct 0x0008)
353 * Release resource ownership (direct 0x0009)
354 */
355 #define I40E_AQ_RESOURCE_NVM 1
356 #define I40E_AQ_RESOURCE_SDP 2
357 #define I40E_AQ_RESOURCE_ACCESS_READ 1
358 #define I40E_AQ_RESOURCE_ACCESS_WRITE 2
359 #define I40E_AQ_RESOURCE_NVM_READ_TIMEOUT 3000
360 #define I40E_AQ_RESOURCE_NVM_WRITE_TIMEOUT 180000
361
362 struct i40e_aqc_request_resource {
363 __le16 resource_id;
364 __le16 access_type;
365 __le32 timeout;
366 __le32 resource_number;
367 u8 reserved[4];
368 };
369
370 I40E_CHECK_CMD_LENGTH(i40e_aqc_request_resource);
371
372 /* Get function capabilities (indirect 0x000A)
373 * Get device capabilities (indirect 0x000B)
374 */
375 struct i40e_aqc_list_capabilites {
376 u8 command_flags;
377 #define I40E_AQ_LIST_CAP_PF_INDEX_EN 1
378 u8 pf_index;
379 u8 reserved[2];
380 __le32 count;
381 __le32 addr_high;
382 __le32 addr_low;
383 };
384
385 I40E_CHECK_CMD_LENGTH(i40e_aqc_list_capabilites);
386
387 struct i40e_aqc_list_capabilities_element_resp {
388 __le16 id;
389 u8 major_rev;
390 u8 minor_rev;
391 __le32 number;
392 __le32 logical_id;
393 __le32 phys_id;
394 u8 reserved[16];
395 };
396
397 /* list of caps */
398
399 #define I40E_AQ_CAP_ID_SWITCH_MODE 0x0001
400 #define I40E_AQ_CAP_ID_MNG_MODE 0x0002
401 #define I40E_AQ_CAP_ID_NPAR_ACTIVE 0x0003
402 #define I40E_AQ_CAP_ID_OS2BMC_CAP 0x0004
403 #define I40E_AQ_CAP_ID_FUNCTIONS_VALID 0x0005
404 #define I40E_AQ_CAP_ID_ALTERNATE_RAM 0x0006
405 #define I40E_AQ_CAP_ID_WOL_AND_PROXY 0x0008
406 #define I40E_AQ_CAP_ID_SRIOV 0x0012
407 #define I40E_AQ_CAP_ID_VF 0x0013
408 #define I40E_AQ_CAP_ID_VMDQ 0x0014
409 #define I40E_AQ_CAP_ID_8021QBG 0x0015
410 #define I40E_AQ_CAP_ID_8021QBR 0x0016
411 #define I40E_AQ_CAP_ID_VSI 0x0017
412 #define I40E_AQ_CAP_ID_DCB 0x0018
413 #define I40E_AQ_CAP_ID_FCOE 0x0021
414 #define I40E_AQ_CAP_ID_ISCSI 0x0022
415 #define I40E_AQ_CAP_ID_RSS 0x0040
416 #define I40E_AQ_CAP_ID_RXQ 0x0041
417 #define I40E_AQ_CAP_ID_TXQ 0x0042
418 #define I40E_AQ_CAP_ID_MSIX 0x0043
419 #define I40E_AQ_CAP_ID_VF_MSIX 0x0044
420 #define I40E_AQ_CAP_ID_FLOW_DIRECTOR 0x0045
421 #define I40E_AQ_CAP_ID_1588 0x0046
422 #define I40E_AQ_CAP_ID_IWARP 0x0051
423 #define I40E_AQ_CAP_ID_LED 0x0061
424 #define I40E_AQ_CAP_ID_SDP 0x0062
425 #define I40E_AQ_CAP_ID_MDIO 0x0063
426 #define I40E_AQ_CAP_ID_WSR_PROT 0x0064
427 #define I40E_AQ_CAP_ID_FLEX10 0x00F1
428 #define I40E_AQ_CAP_ID_CEM 0x00F2
429
430 /* Set CPPM Configuration (direct 0x0103) */
431 struct i40e_aqc_cppm_configuration {
432 __le16 command_flags;
433 #define I40E_AQ_CPPM_EN_LTRC 0x0800
434 #define I40E_AQ_CPPM_EN_DMCTH 0x1000
435 #define I40E_AQ_CPPM_EN_DMCTLX 0x2000
436 #define I40E_AQ_CPPM_EN_HPTC 0x4000
437 #define I40E_AQ_CPPM_EN_DMARC 0x8000
438 __le16 ttlx;
439 __le32 dmacr;
440 __le16 dmcth;
441 u8 hptc;
442 u8 reserved;
443 __le32 pfltrc;
444 };
445
446 I40E_CHECK_CMD_LENGTH(i40e_aqc_cppm_configuration);
447
448 /* Set ARP Proxy command / response (indirect 0x0104) */
449 struct i40e_aqc_arp_proxy_data {
450 __le16 command_flags;
451 #define I40E_AQ_ARP_INIT_IPV4 0x0008
452 #define I40E_AQ_ARP_UNSUP_CTL 0x0010
453 #define I40E_AQ_ARP_ENA 0x0020
454 #define I40E_AQ_ARP_ADD_IPV4 0x0040
455 #define I40E_AQ_ARP_DEL_IPV4 0x0080
456 __le16 table_id;
457 __le32 pfpm_proxyfc;
458 __le32 ip_addr;
459 u8 mac_addr[6];
460 u8 reserved[2];
461 };
462
463 I40E_CHECK_STRUCT_LEN(0x14, i40e_aqc_arp_proxy_data);
464
465 /* Set NS Proxy Table Entry Command (indirect 0x0105) */
466 struct i40e_aqc_ns_proxy_data {
467 __le16 table_idx_mac_addr_0;
468 __le16 table_idx_mac_addr_1;
469 __le16 table_idx_ipv6_0;
470 __le16 table_idx_ipv6_1;
471 __le16 control;
472 #define I40E_AQ_NS_PROXY_ADD_0 0x0100
473 #define I40E_AQ_NS_PROXY_DEL_0 0x0200
474 #define I40E_AQ_NS_PROXY_ADD_1 0x0400
475 #define I40E_AQ_NS_PROXY_DEL_1 0x0800
476 #define I40E_AQ_NS_PROXY_ADD_IPV6_0 0x1000
477 #define I40E_AQ_NS_PROXY_DEL_IPV6_0 0x2000
478 #define I40E_AQ_NS_PROXY_ADD_IPV6_1 0x4000
479 #define I40E_AQ_NS_PROXY_DEL_IPV6_1 0x8000
480 #define I40E_AQ_NS_PROXY_COMMAND_SEQ 0x0001
481 #define I40E_AQ_NS_PROXY_INIT_IPV6_TBL 0x0002
482 #define I40E_AQ_NS_PROXY_INIT_MAC_TBL 0x0004
483 u8 mac_addr_0[6];
484 u8 mac_addr_1[6];
485 u8 local_mac_addr[6];
486 u8 ipv6_addr_0[16]; /* Warning! spec specifies BE byte order */
487 u8 ipv6_addr_1[16];
488 };
489
490 I40E_CHECK_STRUCT_LEN(0x3c, i40e_aqc_ns_proxy_data);
491
492 /* Manage LAA Command (0x0106) - obsolete */
493 struct i40e_aqc_mng_laa {
494 __le16 command_flags;
495 #define I40E_AQ_LAA_FLAG_WR 0x8000
496 u8 reserved[2];
497 __le32 sal;
498 __le16 sah;
499 u8 reserved2[6];
500 };
501
502 I40E_CHECK_CMD_LENGTH(i40e_aqc_mng_laa);
503
504 /* Manage MAC Address Read Command (indirect 0x0107) */
505 struct i40e_aqc_mac_address_read {
506 __le16 command_flags;
507 #define I40E_AQC_LAN_ADDR_VALID 0x10
508 #define I40E_AQC_SAN_ADDR_VALID 0x20
509 #define I40E_AQC_PORT_ADDR_VALID 0x40
510 #define I40E_AQC_WOL_ADDR_VALID 0x80
511 #define I40E_AQC_MC_MAG_EN_VALID 0x100
512 #define I40E_AQC_ADDR_VALID_MASK 0x1F0
513 u8 reserved[6];
514 __le32 addr_high;
515 __le32 addr_low;
516 };
517
518 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_read);
519
520 struct i40e_aqc_mac_address_read_data {
521 u8 pf_lan_mac[6];
522 u8 pf_san_mac[6];
523 u8 port_mac[6];
524 u8 pf_wol_mac[6];
525 };
526
527 I40E_CHECK_STRUCT_LEN(24, i40e_aqc_mac_address_read_data);
528
529 /* Manage MAC Address Write Command (0x0108) */
530 struct i40e_aqc_mac_address_write {
531 __le16 command_flags;
532 #define I40E_AQC_WRITE_TYPE_LAA_ONLY 0x0000
533 #define I40E_AQC_WRITE_TYPE_LAA_WOL 0x4000
534 #define I40E_AQC_WRITE_TYPE_PORT 0x8000
535 #define I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG 0xC000
536 #define I40E_AQC_WRITE_TYPE_MASK 0xC000
537
538 __le16 mac_sah;
539 __le32 mac_sal;
540 u8 reserved[8];
541 };
542
543 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_write);
544
545 /* PXE commands (0x011x) */
546
547 /* Clear PXE Command and response (direct 0x0110) */
548 struct i40e_aqc_clear_pxe {
549 u8 rx_cnt;
550 u8 reserved[15];
551 };
552
553 I40E_CHECK_CMD_LENGTH(i40e_aqc_clear_pxe);
554
555 /* Switch configuration commands (0x02xx) */
556
557 /* Used by many indirect commands that only pass an seid and a buffer in the
558 * command
559 */
560 struct i40e_aqc_switch_seid {
561 __le16 seid;
562 u8 reserved[6];
563 __le32 addr_high;
564 __le32 addr_low;
565 };
566
567 I40E_CHECK_CMD_LENGTH(i40e_aqc_switch_seid);
568
569 /* Get Switch Configuration command (indirect 0x0200)
570 * uses i40e_aqc_switch_seid for the descriptor
571 */
572 struct i40e_aqc_get_switch_config_header_resp {
573 __le16 num_reported;
574 __le16 num_total;
575 u8 reserved[12];
576 };
577
578 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_config_header_resp);
579
580 struct i40e_aqc_switch_config_element_resp {
581 u8 element_type;
582 #define I40E_AQ_SW_ELEM_TYPE_MAC 1
583 #define I40E_AQ_SW_ELEM_TYPE_PF 2
584 #define I40E_AQ_SW_ELEM_TYPE_VF 3
585 #define I40E_AQ_SW_ELEM_TYPE_EMP 4
586 #define I40E_AQ_SW_ELEM_TYPE_BMC 5
587 #define I40E_AQ_SW_ELEM_TYPE_PV 16
588 #define I40E_AQ_SW_ELEM_TYPE_VEB 17
589 #define I40E_AQ_SW_ELEM_TYPE_PA 18
590 #define I40E_AQ_SW_ELEM_TYPE_VSI 19
591 u8 revision;
592 #define I40E_AQ_SW_ELEM_REV_1 1
593 __le16 seid;
594 __le16 uplink_seid;
595 __le16 downlink_seid;
596 u8 reserved[3];
597 u8 connection_type;
598 #define I40E_AQ_CONN_TYPE_REGULAR 0x1
599 #define I40E_AQ_CONN_TYPE_DEFAULT 0x2
600 #define I40E_AQ_CONN_TYPE_CASCADED 0x3
601 __le16 scheduler_id;
602 __le16 element_info;
603 };
604
605 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_config_element_resp);
606
607 /* Get Switch Configuration (indirect 0x0200)
608 * an array of elements are returned in the response buffer
609 * the first in the array is the header, remainder are elements
610 */
611 struct i40e_aqc_get_switch_config_resp {
612 struct i40e_aqc_get_switch_config_header_resp header;
613 struct i40e_aqc_switch_config_element_resp element[1];
614 };
615
616 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_switch_config_resp);
617
618 /* Add Statistics (direct 0x0201)
619 * Remove Statistics (direct 0x0202)
620 */
621 struct i40e_aqc_add_remove_statistics {
622 __le16 seid;
623 __le16 vlan;
624 __le16 stat_index;
625 u8 reserved[10];
626 };
627
628 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_statistics);
629
630 /* Set Port Parameters command (direct 0x0203) */
631 struct i40e_aqc_set_port_parameters {
632 __le16 command_flags;
633 #define I40E_AQ_SET_P_PARAMS_SAVE_BAD_PACKETS 1
634 #define I40E_AQ_SET_P_PARAMS_PAD_SHORT_PACKETS 2 /* must set! */
635 #define I40E_AQ_SET_P_PARAMS_DOUBLE_VLAN_ENA 4
636 __le16 bad_frame_vsi;
637 __le16 default_seid; /* reserved for command */
638 u8 reserved[10];
639 };
640
641 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_port_parameters);
642
643 /* Get Switch Resource Allocation (indirect 0x0204) */
644 struct i40e_aqc_get_switch_resource_alloc {
645 u8 num_entries; /* reserved for command */
646 u8 reserved[7];
647 __le32 addr_high;
648 __le32 addr_low;
649 };
650
651 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_resource_alloc);
652
653 /* expect an array of these structs in the response buffer */
654 struct i40e_aqc_switch_resource_alloc_element_resp {
655 u8 resource_type;
656 #define I40E_AQ_RESOURCE_TYPE_VEB 0x0
657 #define I40E_AQ_RESOURCE_TYPE_VSI 0x1
658 #define I40E_AQ_RESOURCE_TYPE_MACADDR 0x2
659 #define I40E_AQ_RESOURCE_TYPE_STAG 0x3
660 #define I40E_AQ_RESOURCE_TYPE_ETAG 0x4
661 #define I40E_AQ_RESOURCE_TYPE_MULTICAST_HASH 0x5
662 #define I40E_AQ_RESOURCE_TYPE_UNICAST_HASH 0x6
663 #define I40E_AQ_RESOURCE_TYPE_VLAN 0x7
664 #define I40E_AQ_RESOURCE_TYPE_VSI_LIST_ENTRY 0x8
665 #define I40E_AQ_RESOURCE_TYPE_ETAG_LIST_ENTRY 0x9
666 #define I40E_AQ_RESOURCE_TYPE_VLAN_STAT_POOL 0xA
667 #define I40E_AQ_RESOURCE_TYPE_MIRROR_RULE 0xB
668 #define I40E_AQ_RESOURCE_TYPE_QUEUE_SETS 0xC
669 #define I40E_AQ_RESOURCE_TYPE_VLAN_FILTERS 0xD
670 #define I40E_AQ_RESOURCE_TYPE_INNER_MAC_FILTERS 0xF
671 #define I40E_AQ_RESOURCE_TYPE_IP_FILTERS 0x10
672 #define I40E_AQ_RESOURCE_TYPE_GRE_VN_KEYS 0x11
673 #define I40E_AQ_RESOURCE_TYPE_VN2_KEYS 0x12
674 #define I40E_AQ_RESOURCE_TYPE_TUNNEL_PORTS 0x13
675 u8 reserved1;
676 __le16 guaranteed;
677 __le16 total;
678 __le16 used;
679 __le16 total_unalloced;
680 u8 reserved2[6];
681 };
682
683 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_resource_alloc_element_resp);
684
685 /* Set Switch Configuration (direct 0x0205) */
686 struct i40e_aqc_set_switch_config {
687 __le16 flags;
688 #define I40E_AQ_SET_SWITCH_CFG_PROMISC 0x0001
689 #define I40E_AQ_SET_SWITCH_CFG_L2_FILTER 0x0002
690 __le16 valid_flags;
691 u8 reserved[12];
692 };
693
694 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_switch_config);
695
696 /* Add VSI (indirect 0x0210)
697 * this indirect command uses struct i40e_aqc_vsi_properties_data
698 * as the indirect buffer (128 bytes)
699 *
700 * Update VSI (indirect 0x211)
701 * uses the same data structure as Add VSI
702 *
703 * Get VSI (indirect 0x0212)
704 * uses the same completion and data structure as Add VSI
705 */
706 struct i40e_aqc_add_get_update_vsi {
707 __le16 uplink_seid;
708 u8 connection_type;
709 #define I40E_AQ_VSI_CONN_TYPE_NORMAL 0x1
710 #define I40E_AQ_VSI_CONN_TYPE_DEFAULT 0x2
711 #define I40E_AQ_VSI_CONN_TYPE_CASCADED 0x3
712 u8 reserved1;
713 u8 vf_id;
714 u8 reserved2;
715 __le16 vsi_flags;
716 #define I40E_AQ_VSI_TYPE_SHIFT 0x0
717 #define I40E_AQ_VSI_TYPE_MASK (0x3 << I40E_AQ_VSI_TYPE_SHIFT)
718 #define I40E_AQ_VSI_TYPE_VF 0x0
719 #define I40E_AQ_VSI_TYPE_VMDQ2 0x1
720 #define I40E_AQ_VSI_TYPE_PF 0x2
721 #define I40E_AQ_VSI_TYPE_EMP_MNG 0x3
722 #define I40E_AQ_VSI_FLAG_CASCADED_PV 0x4
723 __le32 addr_high;
724 __le32 addr_low;
725 };
726
727 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi);
728
729 struct i40e_aqc_add_get_update_vsi_completion {
730 __le16 seid;
731 __le16 vsi_number;
732 __le16 vsi_used;
733 __le16 vsi_free;
734 __le32 addr_high;
735 __le32 addr_low;
736 };
737
738 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi_completion);
739
740 struct i40e_aqc_vsi_properties_data {
741 /* first 96 byte are written by SW */
742 __le16 valid_sections;
743 #define I40E_AQ_VSI_PROP_SWITCH_VALID 0x0001
744 #define I40E_AQ_VSI_PROP_SECURITY_VALID 0x0002
745 #define I40E_AQ_VSI_PROP_VLAN_VALID 0x0004
746 #define I40E_AQ_VSI_PROP_CAS_PV_VALID 0x0008
747 #define I40E_AQ_VSI_PROP_INGRESS_UP_VALID 0x0010
748 #define I40E_AQ_VSI_PROP_EGRESS_UP_VALID 0x0020
749 #define I40E_AQ_VSI_PROP_QUEUE_MAP_VALID 0x0040
750 #define I40E_AQ_VSI_PROP_QUEUE_OPT_VALID 0x0080
751 #define I40E_AQ_VSI_PROP_OUTER_UP_VALID 0x0100
752 #define I40E_AQ_VSI_PROP_SCHED_VALID 0x0200
753 /* switch section */
754 __le16 switch_id; /* 12bit id combined with flags below */
755 #define I40E_AQ_VSI_SW_ID_SHIFT 0x0000
756 #define I40E_AQ_VSI_SW_ID_MASK (0xFFF << I40E_AQ_VSI_SW_ID_SHIFT)
757 #define I40E_AQ_VSI_SW_ID_FLAG_NOT_STAG 0x1000
758 #define I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB 0x2000
759 #define I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB 0x4000
760 u8 sw_reserved[2];
761 /* security section */
762 u8 sec_flags;
763 #define I40E_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD 0x01
764 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK 0x02
765 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK 0x04
766 u8 sec_reserved;
767 /* VLAN section */
768 __le16 pvid; /* VLANS include priority bits */
769 __le16 fcoe_pvid;
770 u8 port_vlan_flags;
771 #define I40E_AQ_VSI_PVLAN_MODE_SHIFT 0x00
772 #define I40E_AQ_VSI_PVLAN_MODE_MASK (0x03 << \
773 I40E_AQ_VSI_PVLAN_MODE_SHIFT)
774 #define I40E_AQ_VSI_PVLAN_MODE_TAGGED 0x01
775 #define I40E_AQ_VSI_PVLAN_MODE_UNTAGGED 0x02
776 #define I40E_AQ_VSI_PVLAN_MODE_ALL 0x03
777 #define I40E_AQ_VSI_PVLAN_INSERT_PVID 0x04
778 #define I40E_AQ_VSI_PVLAN_EMOD_SHIFT 0x03
779 #define I40E_AQ_VSI_PVLAN_EMOD_MASK (0x3 << \
780 I40E_AQ_VSI_PVLAN_EMOD_SHIFT)
781 #define I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH 0x0
782 #define I40E_AQ_VSI_PVLAN_EMOD_STR_UP 0x08
783 #define I40E_AQ_VSI_PVLAN_EMOD_STR 0x10
784 #define I40E_AQ_VSI_PVLAN_EMOD_NOTHING 0x18
785 u8 pvlan_reserved[3];
786 /* ingress egress up sections */
787 __le32 ingress_table; /* bitmap, 3 bits per up */
788 #define I40E_AQ_VSI_UP_TABLE_UP0_SHIFT 0
789 #define I40E_AQ_VSI_UP_TABLE_UP0_MASK (0x7 << \
790 I40E_AQ_VSI_UP_TABLE_UP0_SHIFT)
791 #define I40E_AQ_VSI_UP_TABLE_UP1_SHIFT 3
792 #define I40E_AQ_VSI_UP_TABLE_UP1_MASK (0x7 << \
793 I40E_AQ_VSI_UP_TABLE_UP1_SHIFT)
794 #define I40E_AQ_VSI_UP_TABLE_UP2_SHIFT 6
795 #define I40E_AQ_VSI_UP_TABLE_UP2_MASK (0x7 << \
796 I40E_AQ_VSI_UP_TABLE_UP2_SHIFT)
797 #define I40E_AQ_VSI_UP_TABLE_UP3_SHIFT 9
798 #define I40E_AQ_VSI_UP_TABLE_UP3_MASK (0x7 << \
799 I40E_AQ_VSI_UP_TABLE_UP3_SHIFT)
800 #define I40E_AQ_VSI_UP_TABLE_UP4_SHIFT 12
801 #define I40E_AQ_VSI_UP_TABLE_UP4_MASK (0x7 << \
802 I40E_AQ_VSI_UP_TABLE_UP4_SHIFT)
803 #define I40E_AQ_VSI_UP_TABLE_UP5_SHIFT 15
804 #define I40E_AQ_VSI_UP_TABLE_UP5_MASK (0x7 << \
805 I40E_AQ_VSI_UP_TABLE_UP5_SHIFT)
806 #define I40E_AQ_VSI_UP_TABLE_UP6_SHIFT 18
807 #define I40E_AQ_VSI_UP_TABLE_UP6_MASK (0x7 << \
808 I40E_AQ_VSI_UP_TABLE_UP6_SHIFT)
809 #define I40E_AQ_VSI_UP_TABLE_UP7_SHIFT 21
810 #define I40E_AQ_VSI_UP_TABLE_UP7_MASK (0x7 << \
811 I40E_AQ_VSI_UP_TABLE_UP7_SHIFT)
812 __le32 egress_table; /* same defines as for ingress table */
813 /* cascaded PV section */
814 __le16 cas_pv_tag;
815 u8 cas_pv_flags;
816 #define I40E_AQ_VSI_CAS_PV_TAGX_SHIFT 0x00
817 #define I40E_AQ_VSI_CAS_PV_TAGX_MASK (0x03 << \
818 I40E_AQ_VSI_CAS_PV_TAGX_SHIFT)
819 #define I40E_AQ_VSI_CAS_PV_TAGX_LEAVE 0x00
820 #define I40E_AQ_VSI_CAS_PV_TAGX_REMOVE 0x01
821 #define I40E_AQ_VSI_CAS_PV_TAGX_COPY 0x02
822 #define I40E_AQ_VSI_CAS_PV_INSERT_TAG 0x10
823 #define I40E_AQ_VSI_CAS_PV_ETAG_PRUNE 0x20
824 #define I40E_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG 0x40
825 u8 cas_pv_reserved;
826 /* queue mapping section */
827 __le16 mapping_flags;
828 #define I40E_AQ_VSI_QUE_MAP_CONTIG 0x0
829 #define I40E_AQ_VSI_QUE_MAP_NONCONTIG 0x1
830 __le16 queue_mapping[16];
831 #define I40E_AQ_VSI_QUEUE_SHIFT 0x0
832 #define I40E_AQ_VSI_QUEUE_MASK (0x7FF << I40E_AQ_VSI_QUEUE_SHIFT)
833 __le16 tc_mapping[8];
834 #define I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT 0
835 #define I40E_AQ_VSI_TC_QUE_OFFSET_MASK (0x1FF << \
836 I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT)
837 #define I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT 9
838 #define I40E_AQ_VSI_TC_QUE_NUMBER_MASK (0x7 << \
839 I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT)
840 /* queueing option section */
841 u8 queueing_opt_flags;
842 #define I40E_AQ_VSI_QUE_OPT_MULTICAST_UDP_ENA 0x04
843 #define I40E_AQ_VSI_QUE_OPT_UNICAST_UDP_ENA 0x08
844 #define I40E_AQ_VSI_QUE_OPT_TCP_ENA 0x10
845 #define I40E_AQ_VSI_QUE_OPT_FCOE_ENA 0x20
846 #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_PF 0x00
847 #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI 0x40
848 u8 queueing_opt_reserved[3];
849 /* scheduler section */
850 u8 up_enable_bits;
851 u8 sched_reserved;
852 /* outer up section */
853 __le32 outer_up_table; /* same structure and defines as ingress tbl */
854 u8 cmd_reserved[8];
855 /* last 32 bytes are written by FW */
856 __le16 qs_handle[8];
857 #define I40E_AQ_VSI_QS_HANDLE_INVALID 0xFFFF
858 __le16 stat_counter_idx;
859 __le16 sched_id;
860 u8 resp_reserved[12];
861 };
862
863 I40E_CHECK_STRUCT_LEN(128, i40e_aqc_vsi_properties_data);
864
865 /* Add Port Virtualizer (direct 0x0220)
866 * also used for update PV (direct 0x0221) but only flags are used
867 * (IS_CTRL_PORT only works on add PV)
868 */
869 struct i40e_aqc_add_update_pv {
870 __le16 command_flags;
871 #define I40E_AQC_PV_FLAG_PV_TYPE 0x1
872 #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_STAG_EN 0x2
873 #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_ETAG_EN 0x4
874 #define I40E_AQC_PV_FLAG_IS_CTRL_PORT 0x8
875 __le16 uplink_seid;
876 __le16 connected_seid;
877 u8 reserved[10];
878 };
879
880 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv);
881
882 struct i40e_aqc_add_update_pv_completion {
883 /* reserved for update; for add also encodes error if rc == ENOSPC */
884 __le16 pv_seid;
885 #define I40E_AQC_PV_ERR_FLAG_NO_PV 0x1
886 #define I40E_AQC_PV_ERR_FLAG_NO_SCHED 0x2
887 #define I40E_AQC_PV_ERR_FLAG_NO_COUNTER 0x4
888 #define I40E_AQC_PV_ERR_FLAG_NO_ENTRY 0x8
889 u8 reserved[14];
890 };
891
892 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv_completion);
893
894 /* Get PV Params (direct 0x0222)
895 * uses i40e_aqc_switch_seid for the descriptor
896 */
897
898 struct i40e_aqc_get_pv_params_completion {
899 __le16 seid;
900 __le16 default_stag;
901 __le16 pv_flags; /* same flags as add_pv */
902 #define I40E_AQC_GET_PV_PV_TYPE 0x1
903 #define I40E_AQC_GET_PV_FRWD_UNKNOWN_STAG 0x2
904 #define I40E_AQC_GET_PV_FRWD_UNKNOWN_ETAG 0x4
905 u8 reserved[8];
906 __le16 default_port_seid;
907 };
908
909 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_pv_params_completion);
910
911 /* Add VEB (direct 0x0230) */
912 struct i40e_aqc_add_veb {
913 __le16 uplink_seid;
914 __le16 downlink_seid;
915 __le16 veb_flags;
916 #define I40E_AQC_ADD_VEB_FLOATING 0x1
917 #define I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT 1
918 #define I40E_AQC_ADD_VEB_PORT_TYPE_MASK (0x3 << \
919 I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT)
920 #define I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT 0x2
921 #define I40E_AQC_ADD_VEB_PORT_TYPE_DATA 0x4
922 #define I40E_AQC_ADD_VEB_ENABLE_L2_FILTER 0x8 /* deprecated */
923 #define I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS 0x10
924 u8 enable_tcs;
925 u8 reserved[9];
926 };
927
928 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb);
929
930 struct i40e_aqc_add_veb_completion {
931 u8 reserved[6];
932 __le16 switch_seid;
933 /* also encodes error if rc == ENOSPC; codes are the same as add_pv */
934 __le16 veb_seid;
935 #define I40E_AQC_VEB_ERR_FLAG_NO_VEB 0x1
936 #define I40E_AQC_VEB_ERR_FLAG_NO_SCHED 0x2
937 #define I40E_AQC_VEB_ERR_FLAG_NO_COUNTER 0x4
938 #define I40E_AQC_VEB_ERR_FLAG_NO_ENTRY 0x8
939 __le16 statistic_index;
940 __le16 vebs_used;
941 __le16 vebs_free;
942 };
943
944 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb_completion);
945
946 /* Get VEB Parameters (direct 0x0232)
947 * uses i40e_aqc_switch_seid for the descriptor
948 */
949 struct i40e_aqc_get_veb_parameters_completion {
950 __le16 seid;
951 __le16 switch_id;
952 __le16 veb_flags; /* only the first/last flags from 0x0230 is valid */
953 __le16 statistic_index;
954 __le16 vebs_used;
955 __le16 vebs_free;
956 u8 reserved[4];
957 };
958
959 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_veb_parameters_completion);
960
961 /* Delete Element (direct 0x0243)
962 * uses the generic i40e_aqc_switch_seid
963 */
964
965 /* Add MAC-VLAN (indirect 0x0250) */
966
967 /* used for the command for most vlan commands */
968 struct i40e_aqc_macvlan {
969 __le16 num_addresses;
970 __le16 seid[3];
971 #define I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT 0
972 #define I40E_AQC_MACVLAN_CMD_SEID_NUM_MASK (0x3FF << \
973 I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
974 #define I40E_AQC_MACVLAN_CMD_SEID_VALID 0x8000
975 __le32 addr_high;
976 __le32 addr_low;
977 };
978
979 I40E_CHECK_CMD_LENGTH(i40e_aqc_macvlan);
980
981 /* indirect data for command and response */
982 struct i40e_aqc_add_macvlan_element_data {
983 u8 mac_addr[6];
984 __le16 vlan_tag;
985 __le16 flags;
986 #define I40E_AQC_MACVLAN_ADD_PERFECT_MATCH 0x0001
987 #define I40E_AQC_MACVLAN_ADD_HASH_MATCH 0x0002
988 #define I40E_AQC_MACVLAN_ADD_IGNORE_VLAN 0x0004
989 #define I40E_AQC_MACVLAN_ADD_TO_QUEUE 0x0008
990 #define I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC 0x0010
991 __le16 queue_number;
992 #define I40E_AQC_MACVLAN_CMD_QUEUE_SHIFT 0
993 #define I40E_AQC_MACVLAN_CMD_QUEUE_MASK (0x7FF << \
994 I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
995 /* response section */
996 u8 match_method;
997 #define I40E_AQC_MM_PERFECT_MATCH 0x01
998 #define I40E_AQC_MM_HASH_MATCH 0x02
999 #define I40E_AQC_MM_ERR_NO_RES 0xFF
1000 u8 reserved1[3];
1001 };
1002
1003 struct i40e_aqc_add_remove_macvlan_completion {
1004 __le16 perfect_mac_used;
1005 __le16 perfect_mac_free;
1006 __le16 unicast_hash_free;
1007 __le16 multicast_hash_free;
1008 __le32 addr_high;
1009 __le32 addr_low;
1010 };
1011
1012 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_macvlan_completion);
1013
1014 /* Remove MAC-VLAN (indirect 0x0251)
1015 * uses i40e_aqc_macvlan for the descriptor
1016 * data points to an array of num_addresses of elements
1017 */
1018
1019 struct i40e_aqc_remove_macvlan_element_data {
1020 u8 mac_addr[6];
1021 __le16 vlan_tag;
1022 u8 flags;
1023 #define I40E_AQC_MACVLAN_DEL_PERFECT_MATCH 0x01
1024 #define I40E_AQC_MACVLAN_DEL_HASH_MATCH 0x02
1025 #define I40E_AQC_MACVLAN_DEL_IGNORE_VLAN 0x08
1026 #define I40E_AQC_MACVLAN_DEL_ALL_VSIS 0x10
1027 u8 reserved[3];
1028 /* reply section */
1029 u8 error_code;
1030 #define I40E_AQC_REMOVE_MACVLAN_SUCCESS 0x0
1031 #define I40E_AQC_REMOVE_MACVLAN_FAIL 0xFF
1032 u8 reply_reserved[3];
1033 };
1034
1035 /* Add VLAN (indirect 0x0252)
1036 * Remove VLAN (indirect 0x0253)
1037 * use the generic i40e_aqc_macvlan for the command
1038 */
1039 struct i40e_aqc_add_remove_vlan_element_data {
1040 __le16 vlan_tag;
1041 u8 vlan_flags;
1042 /* flags for add VLAN */
1043 #define I40E_AQC_ADD_VLAN_LOCAL 0x1
1044 #define I40E_AQC_ADD_PVLAN_TYPE_SHIFT 1
1045 #define I40E_AQC_ADD_PVLAN_TYPE_MASK (0x3 << I40E_AQC_ADD_PVLAN_TYPE_SHIFT)
1046 #define I40E_AQC_ADD_PVLAN_TYPE_REGULAR 0x0
1047 #define I40E_AQC_ADD_PVLAN_TYPE_PRIMARY 0x2
1048 #define I40E_AQC_ADD_PVLAN_TYPE_SECONDARY 0x4
1049 #define I40E_AQC_VLAN_PTYPE_SHIFT 3
1050 #define I40E_AQC_VLAN_PTYPE_MASK (0x3 << I40E_AQC_VLAN_PTYPE_SHIFT)
1051 #define I40E_AQC_VLAN_PTYPE_REGULAR_VSI 0x0
1052 #define I40E_AQC_VLAN_PTYPE_PROMISC_VSI 0x8
1053 #define I40E_AQC_VLAN_PTYPE_COMMUNITY_VSI 0x10
1054 #define I40E_AQC_VLAN_PTYPE_ISOLATED_VSI 0x18
1055 /* flags for remove VLAN */
1056 #define I40E_AQC_REMOVE_VLAN_ALL 0x1
1057 u8 reserved;
1058 u8 result;
1059 /* flags for add VLAN */
1060 #define I40E_AQC_ADD_VLAN_SUCCESS 0x0
1061 #define I40E_AQC_ADD_VLAN_FAIL_REQUEST 0xFE
1062 #define I40E_AQC_ADD_VLAN_FAIL_RESOURCE 0xFF
1063 /* flags for remove VLAN */
1064 #define I40E_AQC_REMOVE_VLAN_SUCCESS 0x0
1065 #define I40E_AQC_REMOVE_VLAN_FAIL 0xFF
1066 u8 reserved1[3];
1067 };
1068
1069 struct i40e_aqc_add_remove_vlan_completion {
1070 u8 reserved[4];
1071 __le16 vlans_used;
1072 __le16 vlans_free;
1073 __le32 addr_high;
1074 __le32 addr_low;
1075 };
1076
1077 /* Set VSI Promiscuous Modes (direct 0x0254) */
1078 struct i40e_aqc_set_vsi_promiscuous_modes {
1079 __le16 promiscuous_flags;
1080 __le16 valid_flags;
1081 /* flags used for both fields above */
1082 #define I40E_AQC_SET_VSI_PROMISC_UNICAST 0x01
1083 #define I40E_AQC_SET_VSI_PROMISC_MULTICAST 0x02
1084 #define I40E_AQC_SET_VSI_PROMISC_BROADCAST 0x04
1085 #define I40E_AQC_SET_VSI_DEFAULT 0x08
1086 #define I40E_AQC_SET_VSI_PROMISC_VLAN 0x10
1087 __le16 seid;
1088 #define I40E_AQC_VSI_PROM_CMD_SEID_MASK 0x3FF
1089 __le16 vlan_tag;
1090 #define I40E_AQC_SET_VSI_VLAN_MASK 0x0FFF
1091 #define I40E_AQC_SET_VSI_VLAN_VALID 0x8000
1092 u8 reserved[8];
1093 };
1094
1095 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
1096
1097 /* Add S/E-tag command (direct 0x0255)
1098 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1099 */
1100 struct i40e_aqc_add_tag {
1101 __le16 flags;
1102 #define I40E_AQC_ADD_TAG_FLAG_TO_QUEUE 0x0001
1103 __le16 seid;
1104 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT 0
1105 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1106 I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT)
1107 __le16 tag;
1108 __le16 queue_number;
1109 u8 reserved[8];
1110 };
1111
1112 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
1113
1114 struct i40e_aqc_add_remove_tag_completion {
1115 u8 reserved[12];
1116 __le16 tags_used;
1117 __le16 tags_free;
1118 };
1119
1120 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
1121
1122 /* Remove S/E-tag command (direct 0x0256)
1123 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1124 */
1125 struct i40e_aqc_remove_tag {
1126 __le16 seid;
1127 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT 0
1128 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1129 I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT)
1130 __le16 tag;
1131 u8 reserved[12];
1132 };
1133
1134 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
1135
1136 /* Add multicast E-Tag (direct 0x0257)
1137 * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
1138 * and no external data
1139 */
1140 struct i40e_aqc_add_remove_mcast_etag {
1141 __le16 pv_seid;
1142 __le16 etag;
1143 u8 num_unicast_etags;
1144 u8 reserved[3];
1145 __le32 addr_high; /* address of array of 2-byte s-tags */
1146 __le32 addr_low;
1147 };
1148
1149 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
1150
1151 struct i40e_aqc_add_remove_mcast_etag_completion {
1152 u8 reserved[4];
1153 __le16 mcast_etags_used;
1154 __le16 mcast_etags_free;
1155 __le32 addr_high;
1156 __le32 addr_low;
1157
1158 };
1159
1160 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
1161
1162 /* Update S/E-Tag (direct 0x0259) */
1163 struct i40e_aqc_update_tag {
1164 __le16 seid;
1165 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT 0
1166 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1167 I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT)
1168 __le16 old_tag;
1169 __le16 new_tag;
1170 u8 reserved[10];
1171 };
1172
1173 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
1174
1175 struct i40e_aqc_update_tag_completion {
1176 u8 reserved[12];
1177 __le16 tags_used;
1178 __le16 tags_free;
1179 };
1180
1181 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
1182
1183 /* Add Control Packet filter (direct 0x025A)
1184 * Remove Control Packet filter (direct 0x025B)
1185 * uses the i40e_aqc_add_oveb_cloud,
1186 * and the generic direct completion structure
1187 */
1188 struct i40e_aqc_add_remove_control_packet_filter {
1189 u8 mac[6];
1190 __le16 etype;
1191 __le16 flags;
1192 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC 0x0001
1193 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP 0x0002
1194 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE 0x0004
1195 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX 0x0008
1196 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX 0x0000
1197 __le16 seid;
1198 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT 0
1199 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_MASK (0x3FF << \
1200 I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT)
1201 __le16 queue;
1202 u8 reserved[2];
1203 };
1204
1205 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
1206
1207 struct i40e_aqc_add_remove_control_packet_filter_completion {
1208 __le16 mac_etype_used;
1209 __le16 etype_used;
1210 __le16 mac_etype_free;
1211 __le16 etype_free;
1212 u8 reserved[8];
1213 };
1214
1215 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
1216
1217 /* Add Cloud filters (indirect 0x025C)
1218 * Remove Cloud filters (indirect 0x025D)
1219 * uses the i40e_aqc_add_remove_cloud_filters,
1220 * and the generic indirect completion structure
1221 */
1222 struct i40e_aqc_add_remove_cloud_filters {
1223 u8 num_filters;
1224 u8 reserved;
1225 __le16 seid;
1226 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT 0
1227 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_MASK (0x3FF << \
1228 I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT)
1229 u8 reserved2[4];
1230 __le32 addr_high;
1231 __le32 addr_low;
1232 };
1233
1234 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
1235
1236 struct i40e_aqc_add_remove_cloud_filters_element_data {
1237 u8 outer_mac[6];
1238 u8 inner_mac[6];
1239 __le16 inner_vlan;
1240 union {
1241 struct {
1242 u8 reserved[12];
1243 u8 data[4];
1244 } v4;
1245 struct {
1246 u8 data[16];
1247 } v6;
1248 } ipaddr;
1249 __le16 flags;
1250 #define I40E_AQC_ADD_CLOUD_FILTER_SHIFT 0
1251 #define I40E_AQC_ADD_CLOUD_FILTER_MASK (0x3F << \
1252 I40E_AQC_ADD_CLOUD_FILTER_SHIFT)
1253 /* 0x0000 reserved */
1254 #define I40E_AQC_ADD_CLOUD_FILTER_OIP 0x0001
1255 /* 0x0002 reserved */
1256 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN 0x0003
1257 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID 0x0004
1258 /* 0x0005 reserved */
1259 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID 0x0006
1260 /* 0x0007 reserved */
1261 /* 0x0008 reserved */
1262 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC 0x0009
1263 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC 0x000A
1264 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC 0x000B
1265 #define I40E_AQC_ADD_CLOUD_FILTER_IIP 0x000C
1266
1267 #define I40E_AQC_ADD_CLOUD_FLAGS_TO_QUEUE 0x0080
1268 #define I40E_AQC_ADD_CLOUD_VNK_SHIFT 6
1269 #define I40E_AQC_ADD_CLOUD_VNK_MASK 0x00C0
1270 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV4 0
1271 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV6 0x0100
1272
1273 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT 9
1274 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK 0x1E00
1275 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN 0
1276 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC 1
1277 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE 2
1278 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_IP 3
1279 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_RESERVED 4
1280 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN_GPE 5
1281
1282 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_MAC 0x2000
1283 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_INNER_MAC 0x4000
1284 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_IP 0x8000
1285
1286 __le32 tenant_id;
1287 u8 reserved[4];
1288 __le16 queue_number;
1289 #define I40E_AQC_ADD_CLOUD_QUEUE_SHIFT 0
1290 #define I40E_AQC_ADD_CLOUD_QUEUE_MASK (0x7FF << \
1291 I40E_AQC_ADD_CLOUD_QUEUE_SHIFT)
1292 u8 reserved2[14];
1293 /* response section */
1294 u8 allocation_result;
1295 #define I40E_AQC_ADD_CLOUD_FILTER_SUCCESS 0x0
1296 #define I40E_AQC_ADD_CLOUD_FILTER_FAIL 0xFF
1297 u8 response_reserved[7];
1298 };
1299
1300 struct i40e_aqc_remove_cloud_filters_completion {
1301 __le16 perfect_ovlan_used;
1302 __le16 perfect_ovlan_free;
1303 __le16 vlan_used;
1304 __le16 vlan_free;
1305 __le32 addr_high;
1306 __le32 addr_low;
1307 };
1308
1309 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
1310
1311 /* Add Mirror Rule (indirect or direct 0x0260)
1312 * Delete Mirror Rule (indirect or direct 0x0261)
1313 * note: some rule types (4,5) do not use an external buffer.
1314 * take care to set the flags correctly.
1315 */
1316 struct i40e_aqc_add_delete_mirror_rule {
1317 __le16 seid;
1318 __le16 rule_type;
1319 #define I40E_AQC_MIRROR_RULE_TYPE_SHIFT 0
1320 #define I40E_AQC_MIRROR_RULE_TYPE_MASK (0x7 << \
1321 I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
1322 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_INGRESS 1
1323 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_EGRESS 2
1324 #define I40E_AQC_MIRROR_RULE_TYPE_VLAN 3
1325 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS 4
1326 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS 5
1327 __le16 num_entries;
1328 __le16 destination; /* VSI for add, rule id for delete */
1329 __le32 addr_high; /* address of array of 2-byte VSI or VLAN ids */
1330 __le32 addr_low;
1331 };
1332
1333 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
1334
1335 struct i40e_aqc_add_delete_mirror_rule_completion {
1336 u8 reserved[2];
1337 __le16 rule_id; /* only used on add */
1338 __le16 mirror_rules_used;
1339 __le16 mirror_rules_free;
1340 __le32 addr_high;
1341 __le32 addr_low;
1342 };
1343
1344 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
1345
1346 /* DCB 0x03xx*/
1347
1348 /* PFC Ignore (direct 0x0301)
1349 * the command and response use the same descriptor structure
1350 */
1351 struct i40e_aqc_pfc_ignore {
1352 u8 tc_bitmap;
1353 u8 command_flags; /* unused on response */
1354 #define I40E_AQC_PFC_IGNORE_SET 0x80
1355 #define I40E_AQC_PFC_IGNORE_CLEAR 0x0
1356 u8 reserved[14];
1357 };
1358
1359 I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
1360
1361 /* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
1362 * with no parameters
1363 */
1364
1365 /* TX scheduler 0x04xx */
1366
1367 /* Almost all the indirect commands use
1368 * this generic struct to pass the SEID in param0
1369 */
1370 struct i40e_aqc_tx_sched_ind {
1371 __le16 vsi_seid;
1372 u8 reserved[6];
1373 __le32 addr_high;
1374 __le32 addr_low;
1375 };
1376
1377 I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
1378
1379 /* Several commands respond with a set of queue set handles */
1380 struct i40e_aqc_qs_handles_resp {
1381 __le16 qs_handles[8];
1382 };
1383
1384 /* Configure VSI BW limits (direct 0x0400) */
1385 struct i40e_aqc_configure_vsi_bw_limit {
1386 __le16 vsi_seid;
1387 u8 reserved[2];
1388 __le16 credit;
1389 u8 reserved1[2];
1390 u8 max_credit; /* 0-3, limit = 2^max */
1391 u8 reserved2[7];
1392 };
1393
1394 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
1395
1396 /* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
1397 * responds with i40e_aqc_qs_handles_resp
1398 */
1399 struct i40e_aqc_configure_vsi_ets_sla_bw_data {
1400 u8 tc_valid_bits;
1401 u8 reserved[15];
1402 __le16 tc_bw_credits[8]; /* FW writesback QS handles here */
1403
1404 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1405 __le16 tc_bw_max[2];
1406 u8 reserved1[28];
1407 };
1408
1409 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
1410
1411 /* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
1412 * responds with i40e_aqc_qs_handles_resp
1413 */
1414 struct i40e_aqc_configure_vsi_tc_bw_data {
1415 u8 tc_valid_bits;
1416 u8 reserved[3];
1417 u8 tc_bw_credits[8];
1418 u8 reserved1[4];
1419 __le16 qs_handles[8];
1420 };
1421
1422 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
1423
1424 /* Query vsi bw configuration (indirect 0x0408) */
1425 struct i40e_aqc_query_vsi_bw_config_resp {
1426 u8 tc_valid_bits;
1427 u8 tc_suspended_bits;
1428 u8 reserved[14];
1429 __le16 qs_handles[8];
1430 u8 reserved1[4];
1431 __le16 port_bw_limit;
1432 u8 reserved2[2];
1433 u8 max_bw; /* 0-3, limit = 2^max */
1434 u8 reserved3[23];
1435 };
1436
1437 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
1438
1439 /* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
1440 struct i40e_aqc_query_vsi_ets_sla_config_resp {
1441 u8 tc_valid_bits;
1442 u8 reserved[3];
1443 u8 share_credits[8];
1444 __le16 credits[8];
1445
1446 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1447 __le16 tc_bw_max[2];
1448 };
1449
1450 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
1451
1452 /* Configure Switching Component Bandwidth Limit (direct 0x0410) */
1453 struct i40e_aqc_configure_switching_comp_bw_limit {
1454 __le16 seid;
1455 u8 reserved[2];
1456 __le16 credit;
1457 u8 reserved1[2];
1458 u8 max_bw; /* 0-3, limit = 2^max */
1459 u8 reserved2[7];
1460 };
1461
1462 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
1463
1464 /* Enable Physical Port ETS (indirect 0x0413)
1465 * Modify Physical Port ETS (indirect 0x0414)
1466 * Disable Physical Port ETS (indirect 0x0415)
1467 */
1468 struct i40e_aqc_configure_switching_comp_ets_data {
1469 u8 reserved[4];
1470 u8 tc_valid_bits;
1471 u8 seepage;
1472 #define I40E_AQ_ETS_SEEPAGE_EN_MASK 0x1
1473 u8 tc_strict_priority_flags;
1474 u8 reserved1[17];
1475 u8 tc_bw_share_credits[8];
1476 u8 reserved2[96];
1477 };
1478
1479 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
1480
1481 /* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
1482 struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
1483 u8 tc_valid_bits;
1484 u8 reserved[15];
1485 __le16 tc_bw_credit[8];
1486
1487 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1488 __le16 tc_bw_max[2];
1489 u8 reserved1[28];
1490 };
1491
1492 I40E_CHECK_STRUCT_LEN(0x40,
1493 i40e_aqc_configure_switching_comp_ets_bw_limit_data);
1494
1495 /* Configure Switching Component Bandwidth Allocation per Tc
1496 * (indirect 0x0417)
1497 */
1498 struct i40e_aqc_configure_switching_comp_bw_config_data {
1499 u8 tc_valid_bits;
1500 u8 reserved[2];
1501 u8 absolute_credits; /* bool */
1502 u8 tc_bw_share_credits[8];
1503 u8 reserved1[20];
1504 };
1505
1506 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
1507
1508 /* Query Switching Component Configuration (indirect 0x0418) */
1509 struct i40e_aqc_query_switching_comp_ets_config_resp {
1510 u8 tc_valid_bits;
1511 u8 reserved[35];
1512 __le16 port_bw_limit;
1513 u8 reserved1[2];
1514 u8 tc_bw_max; /* 0-3, limit = 2^max */
1515 u8 reserved2[23];
1516 };
1517
1518 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
1519
1520 /* Query PhysicalPort ETS Configuration (indirect 0x0419) */
1521 struct i40e_aqc_query_port_ets_config_resp {
1522 u8 reserved[4];
1523 u8 tc_valid_bits;
1524 u8 reserved1;
1525 u8 tc_strict_priority_bits;
1526 u8 reserved2;
1527 u8 tc_bw_share_credits[8];
1528 __le16 tc_bw_limits[8];
1529
1530 /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
1531 __le16 tc_bw_max[2];
1532 u8 reserved3[32];
1533 };
1534
1535 I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
1536
1537 /* Query Switching Component Bandwidth Allocation per Traffic Type
1538 * (indirect 0x041A)
1539 */
1540 struct i40e_aqc_query_switching_comp_bw_config_resp {
1541 u8 tc_valid_bits;
1542 u8 reserved[2];
1543 u8 absolute_credits_enable; /* bool */
1544 u8 tc_bw_share_credits[8];
1545 __le16 tc_bw_limits[8];
1546
1547 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1548 __le16 tc_bw_max[2];
1549 };
1550
1551 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
1552
1553 /* Suspend/resume port TX traffic
1554 * (direct 0x041B and 0x041C) uses the generic SEID struct
1555 */
1556
1557 /* Configure partition BW
1558 * (indirect 0x041D)
1559 */
1560 struct i40e_aqc_configure_partition_bw_data {
1561 __le16 pf_valid_bits;
1562 u8 min_bw[16]; /* guaranteed bandwidth */
1563 u8 max_bw[16]; /* bandwidth limit */
1564 };
1565
1566 I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
1567
1568 /* Get and set the active HMC resource profile and status.
1569 * (direct 0x0500) and (direct 0x0501)
1570 */
1571 struct i40e_aq_get_set_hmc_resource_profile {
1572 u8 pm_profile;
1573 u8 pe_vf_enabled;
1574 u8 reserved[14];
1575 };
1576
1577 I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
1578
1579 enum i40e_aq_hmc_profile {
1580 /* I40E_HMC_PROFILE_NO_CHANGE = 0, reserved */
1581 I40E_HMC_PROFILE_DEFAULT = 1,
1582 I40E_HMC_PROFILE_FAVOR_VF = 2,
1583 I40E_HMC_PROFILE_EQUAL = 3,
1584 };
1585
1586 #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_PM_MASK 0xF
1587 #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_COUNT_MASK 0x3F
1588
1589 /* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
1590
1591 /* set in param0 for get phy abilities to report qualified modules */
1592 #define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES 0x0001
1593 #define I40E_AQ_PHY_REPORT_INITIAL_VALUES 0x0002
1594
1595 enum i40e_aq_phy_type {
1596 I40E_PHY_TYPE_SGMII = 0x0,
1597 I40E_PHY_TYPE_1000BASE_KX = 0x1,
1598 I40E_PHY_TYPE_10GBASE_KX4 = 0x2,
1599 I40E_PHY_TYPE_10GBASE_KR = 0x3,
1600 I40E_PHY_TYPE_40GBASE_KR4 = 0x4,
1601 I40E_PHY_TYPE_XAUI = 0x5,
1602 I40E_PHY_TYPE_XFI = 0x6,
1603 I40E_PHY_TYPE_SFI = 0x7,
1604 I40E_PHY_TYPE_XLAUI = 0x8,
1605 I40E_PHY_TYPE_XLPPI = 0x9,
1606 I40E_PHY_TYPE_40GBASE_CR4_CU = 0xA,
1607 I40E_PHY_TYPE_10GBASE_CR1_CU = 0xB,
1608 I40E_PHY_TYPE_10GBASE_AOC = 0xC,
1609 I40E_PHY_TYPE_40GBASE_AOC = 0xD,
1610 I40E_PHY_TYPE_100BASE_TX = 0x11,
1611 I40E_PHY_TYPE_1000BASE_T = 0x12,
1612 I40E_PHY_TYPE_10GBASE_T = 0x13,
1613 I40E_PHY_TYPE_10GBASE_SR = 0x14,
1614 I40E_PHY_TYPE_10GBASE_LR = 0x15,
1615 I40E_PHY_TYPE_10GBASE_SFPP_CU = 0x16,
1616 I40E_PHY_TYPE_10GBASE_CR1 = 0x17,
1617 I40E_PHY_TYPE_40GBASE_CR4 = 0x18,
1618 I40E_PHY_TYPE_40GBASE_SR4 = 0x19,
1619 I40E_PHY_TYPE_40GBASE_LR4 = 0x1A,
1620 I40E_PHY_TYPE_1000BASE_SX = 0x1B,
1621 I40E_PHY_TYPE_1000BASE_LX = 0x1C,
1622 I40E_PHY_TYPE_1000BASE_T_OPTICAL = 0x1D,
1623 I40E_PHY_TYPE_20GBASE_KR2 = 0x1E,
1624 I40E_PHY_TYPE_MAX
1625 };
1626
1627 #define I40E_LINK_SPEED_100MB_SHIFT 0x1
1628 #define I40E_LINK_SPEED_1000MB_SHIFT 0x2
1629 #define I40E_LINK_SPEED_10GB_SHIFT 0x3
1630 #define I40E_LINK_SPEED_40GB_SHIFT 0x4
1631 #define I40E_LINK_SPEED_20GB_SHIFT 0x5
1632
1633 enum i40e_aq_link_speed {
1634 I40E_LINK_SPEED_UNKNOWN = 0,
1635 I40E_LINK_SPEED_100MB = (1 << I40E_LINK_SPEED_100MB_SHIFT),
1636 I40E_LINK_SPEED_1GB = (1 << I40E_LINK_SPEED_1000MB_SHIFT),
1637 I40E_LINK_SPEED_10GB = (1 << I40E_LINK_SPEED_10GB_SHIFT),
1638 I40E_LINK_SPEED_40GB = (1 << I40E_LINK_SPEED_40GB_SHIFT),
1639 I40E_LINK_SPEED_20GB = (1 << I40E_LINK_SPEED_20GB_SHIFT)
1640 };
1641
1642 struct i40e_aqc_module_desc {
1643 u8 oui[3];
1644 u8 reserved1;
1645 u8 part_number[16];
1646 u8 revision[4];
1647 u8 reserved2[8];
1648 };
1649
1650 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
1651
1652 struct i40e_aq_get_phy_abilities_resp {
1653 __le32 phy_type; /* bitmap using the above enum for offsets */
1654 u8 link_speed; /* bitmap using the above enum bit patterns */
1655 u8 abilities;
1656 #define I40E_AQ_PHY_FLAG_PAUSE_TX 0x01
1657 #define I40E_AQ_PHY_FLAG_PAUSE_RX 0x02
1658 #define I40E_AQ_PHY_FLAG_LOW_POWER 0x04
1659 #define I40E_AQ_PHY_LINK_ENABLED 0x08
1660 #define I40E_AQ_PHY_AN_ENABLED 0x10
1661 #define I40E_AQ_PHY_FLAG_MODULE_QUAL 0x20
1662 __le16 eee_capability;
1663 #define I40E_AQ_EEE_100BASE_TX 0x0002
1664 #define I40E_AQ_EEE_1000BASE_T 0x0004
1665 #define I40E_AQ_EEE_10GBASE_T 0x0008
1666 #define I40E_AQ_EEE_1000BASE_KX 0x0010
1667 #define I40E_AQ_EEE_10GBASE_KX4 0x0020
1668 #define I40E_AQ_EEE_10GBASE_KR 0x0040
1669 __le32 eeer_val;
1670 u8 d3_lpan;
1671 #define I40E_AQ_SET_PHY_D3_LPAN_ENA 0x01
1672 u8 reserved[3];
1673 u8 phy_id[4];
1674 u8 module_type[3];
1675 u8 qualified_module_count;
1676 #define I40E_AQ_PHY_MAX_QMS 16
1677 struct i40e_aqc_module_desc qualified_module[I40E_AQ_PHY_MAX_QMS];
1678 };
1679
1680 I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
1681
1682 /* Set PHY Config (direct 0x0601) */
1683 struct i40e_aq_set_phy_config { /* same bits as above in all */
1684 __le32 phy_type;
1685 u8 link_speed;
1686 u8 abilities;
1687 /* bits 0-2 use the values from get_phy_abilities_resp */
1688 #define I40E_AQ_PHY_ENABLE_LINK 0x08
1689 #define I40E_AQ_PHY_ENABLE_AN 0x10
1690 #define I40E_AQ_PHY_ENABLE_ATOMIC_LINK 0x20
1691 __le16 eee_capability;
1692 __le32 eeer;
1693 u8 low_power_ctrl;
1694 u8 reserved[3];
1695 };
1696
1697 I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
1698
1699 /* Set MAC Config command data structure (direct 0x0603) */
1700 struct i40e_aq_set_mac_config {
1701 __le16 max_frame_size;
1702 u8 params;
1703 #define I40E_AQ_SET_MAC_CONFIG_CRC_EN 0x04
1704 #define I40E_AQ_SET_MAC_CONFIG_PACING_MASK 0x78
1705 #define I40E_AQ_SET_MAC_CONFIG_PACING_SHIFT 3
1706 #define I40E_AQ_SET_MAC_CONFIG_PACING_NONE 0x0
1707 #define I40E_AQ_SET_MAC_CONFIG_PACING_1B_13TX 0xF
1708 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_9TX 0x9
1709 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_4TX 0x8
1710 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_7TX 0x7
1711 #define I40E_AQ_SET_MAC_CONFIG_PACING_2DW_3TX 0x6
1712 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_1TX 0x5
1713 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_2TX 0x4
1714 #define I40E_AQ_SET_MAC_CONFIG_PACING_7DW_3TX 0x3
1715 #define I40E_AQ_SET_MAC_CONFIG_PACING_4DW_1TX 0x2
1716 #define I40E_AQ_SET_MAC_CONFIG_PACING_9DW_1TX 0x1
1717 u8 tx_timer_priority; /* bitmap */
1718 __le16 tx_timer_value;
1719 __le16 fc_refresh_threshold;
1720 u8 reserved[8];
1721 };
1722
1723 I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
1724
1725 /* Restart Auto-Negotiation (direct 0x605) */
1726 struct i40e_aqc_set_link_restart_an {
1727 u8 command;
1728 #define I40E_AQ_PHY_RESTART_AN 0x02
1729 #define I40E_AQ_PHY_LINK_ENABLE 0x04
1730 u8 reserved[15];
1731 };
1732
1733 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
1734
1735 /* Get Link Status cmd & response data structure (direct 0x0607) */
1736 struct i40e_aqc_get_link_status {
1737 __le16 command_flags; /* only field set on command */
1738 #define I40E_AQ_LSE_MASK 0x3
1739 #define I40E_AQ_LSE_NOP 0x0
1740 #define I40E_AQ_LSE_DISABLE 0x2
1741 #define I40E_AQ_LSE_ENABLE 0x3
1742 /* only response uses this flag */
1743 #define I40E_AQ_LSE_IS_ENABLED 0x1
1744 u8 phy_type; /* i40e_aq_phy_type */
1745 u8 link_speed; /* i40e_aq_link_speed */
1746 u8 link_info;
1747 #define I40E_AQ_LINK_UP 0x01 /* obsolete */
1748 #define I40E_AQ_LINK_UP_FUNCTION 0x01
1749 #define I40E_AQ_LINK_FAULT 0x02
1750 #define I40E_AQ_LINK_FAULT_TX 0x04
1751 #define I40E_AQ_LINK_FAULT_RX 0x08
1752 #define I40E_AQ_LINK_FAULT_REMOTE 0x10
1753 #define I40E_AQ_LINK_UP_PORT 0x20
1754 #define I40E_AQ_MEDIA_AVAILABLE 0x40
1755 #define I40E_AQ_SIGNAL_DETECT 0x80
1756 u8 an_info;
1757 #define I40E_AQ_AN_COMPLETED 0x01
1758 #define I40E_AQ_LP_AN_ABILITY 0x02
1759 #define I40E_AQ_PD_FAULT 0x04
1760 #define I40E_AQ_FEC_EN 0x08
1761 #define I40E_AQ_PHY_LOW_POWER 0x10
1762 #define I40E_AQ_LINK_PAUSE_TX 0x20
1763 #define I40E_AQ_LINK_PAUSE_RX 0x40
1764 #define I40E_AQ_QUALIFIED_MODULE 0x80
1765 u8 ext_info;
1766 #define I40E_AQ_LINK_PHY_TEMP_ALARM 0x01
1767 #define I40E_AQ_LINK_XCESSIVE_ERRORS 0x02
1768 #define I40E_AQ_LINK_TX_SHIFT 0x02
1769 #define I40E_AQ_LINK_TX_MASK (0x03 << I40E_AQ_LINK_TX_SHIFT)
1770 #define I40E_AQ_LINK_TX_ACTIVE 0x00
1771 #define I40E_AQ_LINK_TX_DRAINED 0x01
1772 #define I40E_AQ_LINK_TX_FLUSHED 0x03
1773 #define I40E_AQ_LINK_FORCED_40G 0x10
1774 u8 loopback; /* use defines from i40e_aqc_set_lb_mode */
1775 __le16 max_frame_size;
1776 u8 config;
1777 #define I40E_AQ_CONFIG_CRC_ENA 0x04
1778 #define I40E_AQ_CONFIG_PACING_MASK 0x78
1779 u8 external_power_ability;
1780 #define I40E_AQ_LINK_POWER_CLASS_1 0x00
1781 #define I40E_AQ_LINK_POWER_CLASS_2 0x01
1782 #define I40E_AQ_LINK_POWER_CLASS_3 0x02
1783 #define I40E_AQ_LINK_POWER_CLASS_4 0x03
1784 u8 reserved[4];
1785 };
1786
1787 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
1788
1789 /* Set event mask command (direct 0x613) */
1790 struct i40e_aqc_set_phy_int_mask {
1791 u8 reserved[8];
1792 __le16 event_mask;
1793 #define I40E_AQ_EVENT_LINK_UPDOWN 0x0002
1794 #define I40E_AQ_EVENT_MEDIA_NA 0x0004
1795 #define I40E_AQ_EVENT_LINK_FAULT 0x0008
1796 #define I40E_AQ_EVENT_PHY_TEMP_ALARM 0x0010
1797 #define I40E_AQ_EVENT_EXCESSIVE_ERRORS 0x0020
1798 #define I40E_AQ_EVENT_SIGNAL_DETECT 0x0040
1799 #define I40E_AQ_EVENT_AN_COMPLETED 0x0080
1800 #define I40E_AQ_EVENT_MODULE_QUAL_FAIL 0x0100
1801 #define I40E_AQ_EVENT_PORT_TX_SUSPENDED 0x0200
1802 u8 reserved1[6];
1803 };
1804
1805 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
1806
1807 /* Get Local AN advt register (direct 0x0614)
1808 * Set Local AN advt register (direct 0x0615)
1809 * Get Link Partner AN advt register (direct 0x0616)
1810 */
1811 struct i40e_aqc_an_advt_reg {
1812 __le32 local_an_reg0;
1813 __le16 local_an_reg1;
1814 u8 reserved[10];
1815 };
1816
1817 I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
1818
1819 /* Set Loopback mode (0x0618) */
1820 struct i40e_aqc_set_lb_mode {
1821 __le16 lb_mode;
1822 #define I40E_AQ_LB_PHY_LOCAL 0x01
1823 #define I40E_AQ_LB_PHY_REMOTE 0x02
1824 #define I40E_AQ_LB_MAC_LOCAL 0x04
1825 u8 reserved[14];
1826 };
1827
1828 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
1829
1830 /* Set PHY Debug command (0x0622) */
1831 struct i40e_aqc_set_phy_debug {
1832 u8 command_flags;
1833 #define I40E_AQ_PHY_DEBUG_RESET_INTERNAL 0x02
1834 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT 2
1835 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_MASK (0x03 << \
1836 I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT)
1837 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_NONE 0x00
1838 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_HARD 0x01
1839 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SOFT 0x02
1840 #define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW 0x10
1841 u8 reserved[15];
1842 };
1843
1844 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
1845
1846 enum i40e_aq_phy_reg_type {
1847 I40E_AQC_PHY_REG_INTERNAL = 0x1,
1848 I40E_AQC_PHY_REG_EXERNAL_BASET = 0x2,
1849 I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
1850 };
1851
1852 /* Run PHY Activity (0x0626) */
1853 struct i40e_aqc_run_phy_activity {
1854 __le16 activity_id;
1855 u8 flags;
1856 u8 reserved1;
1857 __le32 control;
1858 __le32 data;
1859 u8 reserved2[4];
1860 };
1861
1862 I40E_CHECK_CMD_LENGTH(i40e_aqc_run_phy_activity);
1863
1864 /* NVM Read command (indirect 0x0701)
1865 * NVM Erase commands (direct 0x0702)
1866 * NVM Update commands (indirect 0x0703)
1867 */
1868 struct i40e_aqc_nvm_update {
1869 u8 command_flags;
1870 #define I40E_AQ_NVM_LAST_CMD 0x01
1871 #define I40E_AQ_NVM_FLASH_ONLY 0x80
1872 u8 module_pointer;
1873 __le16 length;
1874 __le32 offset;
1875 __le32 addr_high;
1876 __le32 addr_low;
1877 };
1878
1879 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
1880
1881 /* NVM Config Read (indirect 0x0704) */
1882 struct i40e_aqc_nvm_config_read {
1883 __le16 cmd_flags;
1884 #define I40E_AQ_ANVM_SINGLE_OR_MULTIPLE_FEATURES_MASK 1
1885 #define I40E_AQ_ANVM_READ_SINGLE_FEATURE 0
1886 #define I40E_AQ_ANVM_READ_MULTIPLE_FEATURES 1
1887 __le16 element_count;
1888 __le16 element_id; /* Feature/field ID */
1889 __le16 element_id_msw; /* MSWord of field ID */
1890 __le32 address_high;
1891 __le32 address_low;
1892 };
1893
1894 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
1895
1896 /* NVM Config Write (indirect 0x0705) */
1897 struct i40e_aqc_nvm_config_write {
1898 __le16 cmd_flags;
1899 __le16 element_count;
1900 u8 reserved[4];
1901 __le32 address_high;
1902 __le32 address_low;
1903 };
1904
1905 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
1906
1907 /* Used for 0x0704 as well as for 0x0705 commands */
1908 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT 1
1909 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK \
1910 (1 << I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT)
1911 #define I40E_AQ_ANVM_FEATURE 0
1912 #define I40E_AQ_ANVM_IMMEDIATE_FIELD (1 << FEATURE_OR_IMMEDIATE_SHIFT)
1913 struct i40e_aqc_nvm_config_data_feature {
1914 __le16 feature_id;
1915 #define I40E_AQ_ANVM_FEATURE_OPTION_OEM_ONLY 0x01
1916 #define I40E_AQ_ANVM_FEATURE_OPTION_DWORD_MAP 0x08
1917 #define I40E_AQ_ANVM_FEATURE_OPTION_POR_CSR 0x10
1918 __le16 feature_options;
1919 __le16 feature_selection;
1920 };
1921
1922 I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
1923
1924 struct i40e_aqc_nvm_config_data_immediate_field {
1925 __le32 field_id;
1926 __le32 field_value;
1927 __le16 field_options;
1928 __le16 reserved;
1929 };
1930
1931 I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
1932
1933 /* OEM Post Update (indirect 0x0720)
1934 * no command data struct used
1935 */
1936 struct i40e_aqc_nvm_oem_post_update {
1937 #define I40E_AQ_NVM_OEM_POST_UPDATE_EXTERNAL_DATA 0x01
1938 u8 sel_data;
1939 u8 reserved[7];
1940 };
1941
1942 I40E_CHECK_STRUCT_LEN(0x8, i40e_aqc_nvm_oem_post_update);
1943
1944 struct i40e_aqc_nvm_oem_post_update_buffer {
1945 u8 str_len;
1946 u8 dev_addr;
1947 __le16 eeprom_addr;
1948 u8 data[36];
1949 };
1950
1951 I40E_CHECK_STRUCT_LEN(0x28, i40e_aqc_nvm_oem_post_update_buffer);
1952
1953 /* Thermal Sensor (indirect 0x0721)
1954 * read or set thermal sensor configs and values
1955 * takes a sensor and command specific data buffer, not detailed here
1956 */
1957 struct i40e_aqc_thermal_sensor {
1958 u8 sensor_action;
1959 #define I40E_AQ_THERMAL_SENSOR_READ_CONFIG 0
1960 #define I40E_AQ_THERMAL_SENSOR_SET_CONFIG 1
1961 #define I40E_AQ_THERMAL_SENSOR_READ_TEMP 2
1962 u8 reserved[7];
1963 __le32 addr_high;
1964 __le32 addr_low;
1965 };
1966
1967 I40E_CHECK_CMD_LENGTH(i40e_aqc_thermal_sensor);
1968
1969 /* Send to PF command (indirect 0x0801) id is only used by PF
1970 * Send to VF command (indirect 0x0802) id is only used by PF
1971 * Send to Peer PF command (indirect 0x0803)
1972 */
1973 struct i40e_aqc_pf_vf_message {
1974 __le32 id;
1975 u8 reserved[4];
1976 __le32 addr_high;
1977 __le32 addr_low;
1978 };
1979
1980 I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
1981
1982 /* Alternate structure */
1983
1984 /* Direct write (direct 0x0900)
1985 * Direct read (direct 0x0902)
1986 */
1987 struct i40e_aqc_alternate_write {
1988 __le32 address0;
1989 __le32 data0;
1990 __le32 address1;
1991 __le32 data1;
1992 };
1993
1994 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
1995
1996 /* Indirect write (indirect 0x0901)
1997 * Indirect read (indirect 0x0903)
1998 */
1999
2000 struct i40e_aqc_alternate_ind_write {
2001 __le32 address;
2002 __le32 length;
2003 __le32 addr_high;
2004 __le32 addr_low;
2005 };
2006
2007 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
2008
2009 /* Done alternate write (direct 0x0904)
2010 * uses i40e_aq_desc
2011 */
2012 struct i40e_aqc_alternate_write_done {
2013 __le16 cmd_flags;
2014 #define I40E_AQ_ALTERNATE_MODE_BIOS_MASK 1
2015 #define I40E_AQ_ALTERNATE_MODE_BIOS_LEGACY 0
2016 #define I40E_AQ_ALTERNATE_MODE_BIOS_UEFI 1
2017 #define I40E_AQ_ALTERNATE_RESET_NEEDED 2
2018 u8 reserved[14];
2019 };
2020
2021 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
2022
2023 /* Set OEM mode (direct 0x0905) */
2024 struct i40e_aqc_alternate_set_mode {
2025 __le32 mode;
2026 #define I40E_AQ_ALTERNATE_MODE_NONE 0
2027 #define I40E_AQ_ALTERNATE_MODE_OEM 1
2028 u8 reserved[12];
2029 };
2030
2031 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
2032
2033 /* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
2034
2035 /* async events 0x10xx */
2036
2037 /* Lan Queue Overflow Event (direct, 0x1001) */
2038 struct i40e_aqc_lan_overflow {
2039 __le32 prtdcb_rupto;
2040 __le32 otx_ctl;
2041 u8 reserved[8];
2042 };
2043
2044 I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
2045
2046 /* Get LLDP MIB (indirect 0x0A00) */
2047 struct i40e_aqc_lldp_get_mib {
2048 u8 type;
2049 u8 reserved1;
2050 #define I40E_AQ_LLDP_MIB_TYPE_MASK 0x3
2051 #define I40E_AQ_LLDP_MIB_LOCAL 0x0
2052 #define I40E_AQ_LLDP_MIB_REMOTE 0x1
2053 #define I40E_AQ_LLDP_MIB_LOCAL_AND_REMOTE 0x2
2054 #define I40E_AQ_LLDP_BRIDGE_TYPE_MASK 0xC
2055 #define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT 0x2
2056 #define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
2057 #define I40E_AQ_LLDP_BRIDGE_TYPE_NON_TPMR 0x1
2058 #define I40E_AQ_LLDP_TX_SHIFT 0x4
2059 #define I40E_AQ_LLDP_TX_MASK (0x03 << I40E_AQ_LLDP_TX_SHIFT)
2060 /* TX pause flags use I40E_AQ_LINK_TX_* above */
2061 __le16 local_len;
2062 __le16 remote_len;
2063 u8 reserved2[2];
2064 __le32 addr_high;
2065 __le32 addr_low;
2066 };
2067
2068 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
2069
2070 /* Configure LLDP MIB Change Event (direct 0x0A01)
2071 * also used for the event (with type in the command field)
2072 */
2073 struct i40e_aqc_lldp_update_mib {
2074 u8 command;
2075 #define I40E_AQ_LLDP_MIB_UPDATE_ENABLE 0x0
2076 #define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
2077 u8 reserved[7];
2078 __le32 addr_high;
2079 __le32 addr_low;
2080 };
2081
2082 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
2083
2084 /* Add LLDP TLV (indirect 0x0A02)
2085 * Delete LLDP TLV (indirect 0x0A04)
2086 */
2087 struct i40e_aqc_lldp_add_tlv {
2088 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2089 u8 reserved1[1];
2090 __le16 len;
2091 u8 reserved2[4];
2092 __le32 addr_high;
2093 __le32 addr_low;
2094 };
2095
2096 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
2097
2098 /* Update LLDP TLV (indirect 0x0A03) */
2099 struct i40e_aqc_lldp_update_tlv {
2100 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2101 u8 reserved;
2102 __le16 old_len;
2103 __le16 new_offset;
2104 __le16 new_len;
2105 __le32 addr_high;
2106 __le32 addr_low;
2107 };
2108
2109 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
2110
2111 /* Stop LLDP (direct 0x0A05) */
2112 struct i40e_aqc_lldp_stop {
2113 u8 command;
2114 #define I40E_AQ_LLDP_AGENT_STOP 0x0
2115 #define I40E_AQ_LLDP_AGENT_SHUTDOWN 0x1
2116 u8 reserved[15];
2117 };
2118
2119 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
2120
2121 /* Start LLDP (direct 0x0A06) */
2122
2123 struct i40e_aqc_lldp_start {
2124 u8 command;
2125 #define I40E_AQ_LLDP_AGENT_START 0x1
2126 u8 reserved[15];
2127 };
2128
2129 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
2130
2131 /* Apply MIB changes (0x0A07)
2132 * uses the generic struc as it contains no data
2133 */
2134
2135 /* Add Udp Tunnel command and completion (direct 0x0B00) */
2136 struct i40e_aqc_add_udp_tunnel {
2137 __le16 udp_port;
2138 u8 reserved0[3];
2139 u8 protocol_type;
2140 #define I40E_AQC_TUNNEL_TYPE_VXLAN 0x00
2141 #define I40E_AQC_TUNNEL_TYPE_NGE 0x01
2142 #define I40E_AQC_TUNNEL_TYPE_TEREDO 0x10
2143 #define I40E_AQC_TUNNEL_TYPE_VXLAN_GPE 0x11
2144 u8 reserved1[10];
2145 };
2146
2147 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
2148
2149 struct i40e_aqc_add_udp_tunnel_completion {
2150 __le16 udp_port;
2151 u8 filter_entry_index;
2152 u8 multiple_pfs;
2153 #define I40E_AQC_SINGLE_PF 0x0
2154 #define I40E_AQC_MULTIPLE_PFS 0x1
2155 u8 total_filters;
2156 u8 reserved[11];
2157 };
2158
2159 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
2160
2161 /* remove UDP Tunnel command (0x0B01) */
2162 struct i40e_aqc_remove_udp_tunnel {
2163 u8 reserved[2];
2164 u8 index; /* 0 to 15 */
2165 u8 reserved2[13];
2166 };
2167
2168 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
2169
2170 struct i40e_aqc_del_udp_tunnel_completion {
2171 __le16 udp_port;
2172 u8 index; /* 0 to 15 */
2173 u8 multiple_pfs;
2174 u8 total_filters_used;
2175 u8 reserved1[11];
2176 };
2177
2178 I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
2179
2180 struct i40e_aqc_get_set_rss_key {
2181 #define I40E_AQC_SET_RSS_KEY_VSI_VALID (0x1 << 15)
2182 #define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT 0
2183 #define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK (0x3FF << \
2184 I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
2185 __le16 vsi_id;
2186 u8 reserved[6];
2187 __le32 addr_high;
2188 __le32 addr_low;
2189 };
2190
2191 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
2192
2193 struct i40e_aqc_get_set_rss_key_data {
2194 u8 standard_rss_key[0x28];
2195 u8 extended_hash_key[0xc];
2196 };
2197
2198 I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
2199
2200 struct i40e_aqc_get_set_rss_lut {
2201 #define I40E_AQC_SET_RSS_LUT_VSI_VALID (0x1 << 15)
2202 #define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT 0
2203 #define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK (0x3FF << \
2204 I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
2205 __le16 vsi_id;
2206 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT 0
2207 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK (0x1 << \
2208 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
2209
2210 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI 0
2211 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF 1
2212 __le16 flags;
2213 u8 reserved[4];
2214 __le32 addr_high;
2215 __le32 addr_low;
2216 };
2217
2218 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
2219
2220 /* tunnel key structure 0x0B10 */
2221
2222 struct i40e_aqc_tunnel_key_structure_A0 {
2223 __le16 key1_off;
2224 __le16 key1_len;
2225 __le16 key2_off;
2226 __le16 key2_len;
2227 __le16 flags;
2228 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
2229 /* response flags */
2230 #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2231 #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2232 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
2233 u8 resreved[6];
2234 };
2235
2236 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure_A0);
2237
2238 struct i40e_aqc_tunnel_key_structure {
2239 u8 key1_off;
2240 u8 key2_off;
2241 u8 key1_len; /* 0 to 15 */
2242 u8 key2_len; /* 0 to 15 */
2243 u8 flags;
2244 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
2245 /* response flags */
2246 #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2247 #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2248 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
2249 u8 network_key_index;
2250 #define I40E_AQC_NETWORK_KEY_INDEX_VXLAN 0x0
2251 #define I40E_AQC_NETWORK_KEY_INDEX_NGE 0x1
2252 #define I40E_AQC_NETWORK_KEY_INDEX_FLEX_MAC_IN_UDP 0x2
2253 #define I40E_AQC_NETWORK_KEY_INDEX_GRE 0x3
2254 u8 reserved[10];
2255 };
2256
2257 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
2258
2259 /* OEM mode commands (direct 0xFE0x) */
2260 struct i40e_aqc_oem_param_change {
2261 __le32 param_type;
2262 #define I40E_AQ_OEM_PARAM_TYPE_PF_CTL 0
2263 #define I40E_AQ_OEM_PARAM_TYPE_BW_CTL 1
2264 #define I40E_AQ_OEM_PARAM_MAC 2
2265 __le32 param_value1;
2266 __le16 param_value2;
2267 u8 reserved[6];
2268 };
2269
2270 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
2271
2272 struct i40e_aqc_oem_state_change {
2273 __le32 state;
2274 #define I40E_AQ_OEM_STATE_LINK_DOWN 0x0
2275 #define I40E_AQ_OEM_STATE_LINK_UP 0x1
2276 u8 reserved[12];
2277 };
2278
2279 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
2280
2281 /* Initialize OCSD (0xFE02, direct) */
2282 struct i40e_aqc_opc_oem_ocsd_initialize {
2283 u8 type_status;
2284 u8 reserved1[3];
2285 __le32 ocsd_memory_block_addr_high;
2286 __le32 ocsd_memory_block_addr_low;
2287 __le32 requested_update_interval;
2288 };
2289
2290 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
2291
2292 /* Initialize OCBB (0xFE03, direct) */
2293 struct i40e_aqc_opc_oem_ocbb_initialize {
2294 u8 type_status;
2295 u8 reserved1[3];
2296 __le32 ocbb_memory_block_addr_high;
2297 __le32 ocbb_memory_block_addr_low;
2298 u8 reserved2[4];
2299 };
2300
2301 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
2302
2303 /* debug commands */
2304
2305 /* get device id (0xFF00) uses the generic structure */
2306
2307 /* set test more (0xFF01, internal) */
2308
2309 struct i40e_acq_set_test_mode {
2310 u8 mode;
2311 #define I40E_AQ_TEST_PARTIAL 0
2312 #define I40E_AQ_TEST_FULL 1
2313 #define I40E_AQ_TEST_NVM 2
2314 u8 reserved[3];
2315 u8 command;
2316 #define I40E_AQ_TEST_OPEN 0
2317 #define I40E_AQ_TEST_CLOSE 1
2318 #define I40E_AQ_TEST_INC 2
2319 u8 reserved2[3];
2320 __le32 address_high;
2321 __le32 address_low;
2322 };
2323
2324 I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
2325
2326 /* Debug Read Register command (0xFF03)
2327 * Debug Write Register command (0xFF04)
2328 */
2329 struct i40e_aqc_debug_reg_read_write {
2330 __le32 reserved;
2331 __le32 address;
2332 __le32 value_high;
2333 __le32 value_low;
2334 };
2335
2336 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
2337
2338 /* Scatter/gather Reg Read (indirect 0xFF05)
2339 * Scatter/gather Reg Write (indirect 0xFF06)
2340 */
2341
2342 /* i40e_aq_desc is used for the command */
2343 struct i40e_aqc_debug_reg_sg_element_data {
2344 __le32 address;
2345 __le32 value;
2346 };
2347
2348 /* Debug Modify register (direct 0xFF07) */
2349 struct i40e_aqc_debug_modify_reg {
2350 __le32 address;
2351 __le32 value;
2352 __le32 clear_mask;
2353 __le32 set_mask;
2354 };
2355
2356 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
2357
2358 /* dump internal data (0xFF08, indirect) */
2359
2360 #define I40E_AQ_CLUSTER_ID_AUX 0
2361 #define I40E_AQ_CLUSTER_ID_SWITCH_FLU 1
2362 #define I40E_AQ_CLUSTER_ID_TXSCHED 2
2363 #define I40E_AQ_CLUSTER_ID_HMC 3
2364 #define I40E_AQ_CLUSTER_ID_MAC0 4
2365 #define I40E_AQ_CLUSTER_ID_MAC1 5
2366 #define I40E_AQ_CLUSTER_ID_MAC2 6
2367 #define I40E_AQ_CLUSTER_ID_MAC3 7
2368 #define I40E_AQ_CLUSTER_ID_DCB 8
2369 #define I40E_AQ_CLUSTER_ID_EMP_MEM 9
2370 #define I40E_AQ_CLUSTER_ID_PKT_BUF 10
2371 #define I40E_AQ_CLUSTER_ID_ALTRAM 11
2372
2373 struct i40e_aqc_debug_dump_internals {
2374 u8 cluster_id;
2375 u8 table_id;
2376 __le16 data_size;
2377 __le32 idx;
2378 __le32 address_high;
2379 __le32 address_low;
2380 };
2381
2382 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
2383
2384 struct i40e_aqc_debug_modify_internals {
2385 u8 cluster_id;
2386 u8 cluster_specific_params[7];
2387 __le32 address_high;
2388 __le32 address_low;
2389 };
2390
2391 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
2392
2393 #endif /* _I40E_ADMINQ_CMD_H_ */
This page took 0.104485 seconds and 6 git commands to generate.