i40e: When in promisc mode apply promisc mode to Tx Traffic as well
[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 - 2016 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 0x0005
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 #define I40E_AQC_SET_VSI_PROMISC_TX 0x8000
1088 __le16 seid;
1089 #define I40E_AQC_VSI_PROM_CMD_SEID_MASK 0x3FF
1090 __le16 vlan_tag;
1091 #define I40E_AQC_SET_VSI_VLAN_MASK 0x0FFF
1092 #define I40E_AQC_SET_VSI_VLAN_VALID 0x8000
1093 u8 reserved[8];
1094 };
1095
1096 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
1097
1098 /* Add S/E-tag command (direct 0x0255)
1099 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1100 */
1101 struct i40e_aqc_add_tag {
1102 __le16 flags;
1103 #define I40E_AQC_ADD_TAG_FLAG_TO_QUEUE 0x0001
1104 __le16 seid;
1105 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT 0
1106 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1107 I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT)
1108 __le16 tag;
1109 __le16 queue_number;
1110 u8 reserved[8];
1111 };
1112
1113 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
1114
1115 struct i40e_aqc_add_remove_tag_completion {
1116 u8 reserved[12];
1117 __le16 tags_used;
1118 __le16 tags_free;
1119 };
1120
1121 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
1122
1123 /* Remove S/E-tag command (direct 0x0256)
1124 * Uses generic i40e_aqc_add_remove_tag_completion for completion
1125 */
1126 struct i40e_aqc_remove_tag {
1127 __le16 seid;
1128 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT 0
1129 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1130 I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT)
1131 __le16 tag;
1132 u8 reserved[12];
1133 };
1134
1135 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
1136
1137 /* Add multicast E-Tag (direct 0x0257)
1138 * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
1139 * and no external data
1140 */
1141 struct i40e_aqc_add_remove_mcast_etag {
1142 __le16 pv_seid;
1143 __le16 etag;
1144 u8 num_unicast_etags;
1145 u8 reserved[3];
1146 __le32 addr_high; /* address of array of 2-byte s-tags */
1147 __le32 addr_low;
1148 };
1149
1150 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
1151
1152 struct i40e_aqc_add_remove_mcast_etag_completion {
1153 u8 reserved[4];
1154 __le16 mcast_etags_used;
1155 __le16 mcast_etags_free;
1156 __le32 addr_high;
1157 __le32 addr_low;
1158
1159 };
1160
1161 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
1162
1163 /* Update S/E-Tag (direct 0x0259) */
1164 struct i40e_aqc_update_tag {
1165 __le16 seid;
1166 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT 0
1167 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
1168 I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT)
1169 __le16 old_tag;
1170 __le16 new_tag;
1171 u8 reserved[10];
1172 };
1173
1174 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
1175
1176 struct i40e_aqc_update_tag_completion {
1177 u8 reserved[12];
1178 __le16 tags_used;
1179 __le16 tags_free;
1180 };
1181
1182 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
1183
1184 /* Add Control Packet filter (direct 0x025A)
1185 * Remove Control Packet filter (direct 0x025B)
1186 * uses the i40e_aqc_add_oveb_cloud,
1187 * and the generic direct completion structure
1188 */
1189 struct i40e_aqc_add_remove_control_packet_filter {
1190 u8 mac[6];
1191 __le16 etype;
1192 __le16 flags;
1193 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC 0x0001
1194 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP 0x0002
1195 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE 0x0004
1196 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX 0x0008
1197 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX 0x0000
1198 __le16 seid;
1199 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT 0
1200 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_MASK (0x3FF << \
1201 I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT)
1202 __le16 queue;
1203 u8 reserved[2];
1204 };
1205
1206 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
1207
1208 struct i40e_aqc_add_remove_control_packet_filter_completion {
1209 __le16 mac_etype_used;
1210 __le16 etype_used;
1211 __le16 mac_etype_free;
1212 __le16 etype_free;
1213 u8 reserved[8];
1214 };
1215
1216 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
1217
1218 /* Add Cloud filters (indirect 0x025C)
1219 * Remove Cloud filters (indirect 0x025D)
1220 * uses the i40e_aqc_add_remove_cloud_filters,
1221 * and the generic indirect completion structure
1222 */
1223 struct i40e_aqc_add_remove_cloud_filters {
1224 u8 num_filters;
1225 u8 reserved;
1226 __le16 seid;
1227 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT 0
1228 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_MASK (0x3FF << \
1229 I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT)
1230 u8 reserved2[4];
1231 __le32 addr_high;
1232 __le32 addr_low;
1233 };
1234
1235 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
1236
1237 struct i40e_aqc_add_remove_cloud_filters_element_data {
1238 u8 outer_mac[6];
1239 u8 inner_mac[6];
1240 __le16 inner_vlan;
1241 union {
1242 struct {
1243 u8 reserved[12];
1244 u8 data[4];
1245 } v4;
1246 struct {
1247 u8 data[16];
1248 } v6;
1249 } ipaddr;
1250 __le16 flags;
1251 #define I40E_AQC_ADD_CLOUD_FILTER_SHIFT 0
1252 #define I40E_AQC_ADD_CLOUD_FILTER_MASK (0x3F << \
1253 I40E_AQC_ADD_CLOUD_FILTER_SHIFT)
1254 /* 0x0000 reserved */
1255 #define I40E_AQC_ADD_CLOUD_FILTER_OIP 0x0001
1256 /* 0x0002 reserved */
1257 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN 0x0003
1258 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID 0x0004
1259 /* 0x0005 reserved */
1260 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID 0x0006
1261 /* 0x0007 reserved */
1262 /* 0x0008 reserved */
1263 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC 0x0009
1264 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC 0x000A
1265 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC 0x000B
1266 #define I40E_AQC_ADD_CLOUD_FILTER_IIP 0x000C
1267
1268 #define I40E_AQC_ADD_CLOUD_FLAGS_TO_QUEUE 0x0080
1269 #define I40E_AQC_ADD_CLOUD_VNK_SHIFT 6
1270 #define I40E_AQC_ADD_CLOUD_VNK_MASK 0x00C0
1271 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV4 0
1272 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV6 0x0100
1273
1274 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT 9
1275 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK 0x1E00
1276 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN 0
1277 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC 1
1278 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE 2
1279 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_IP 3
1280 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_RESERVED 4
1281 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN_GPE 5
1282
1283 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_MAC 0x2000
1284 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_INNER_MAC 0x4000
1285 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_IP 0x8000
1286
1287 __le32 tenant_id;
1288 u8 reserved[4];
1289 __le16 queue_number;
1290 #define I40E_AQC_ADD_CLOUD_QUEUE_SHIFT 0
1291 #define I40E_AQC_ADD_CLOUD_QUEUE_MASK (0x7FF << \
1292 I40E_AQC_ADD_CLOUD_QUEUE_SHIFT)
1293 u8 reserved2[14];
1294 /* response section */
1295 u8 allocation_result;
1296 #define I40E_AQC_ADD_CLOUD_FILTER_SUCCESS 0x0
1297 #define I40E_AQC_ADD_CLOUD_FILTER_FAIL 0xFF
1298 u8 response_reserved[7];
1299 };
1300
1301 struct i40e_aqc_remove_cloud_filters_completion {
1302 __le16 perfect_ovlan_used;
1303 __le16 perfect_ovlan_free;
1304 __le16 vlan_used;
1305 __le16 vlan_free;
1306 __le32 addr_high;
1307 __le32 addr_low;
1308 };
1309
1310 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
1311
1312 /* Add Mirror Rule (indirect or direct 0x0260)
1313 * Delete Mirror Rule (indirect or direct 0x0261)
1314 * note: some rule types (4,5) do not use an external buffer.
1315 * take care to set the flags correctly.
1316 */
1317 struct i40e_aqc_add_delete_mirror_rule {
1318 __le16 seid;
1319 __le16 rule_type;
1320 #define I40E_AQC_MIRROR_RULE_TYPE_SHIFT 0
1321 #define I40E_AQC_MIRROR_RULE_TYPE_MASK (0x7 << \
1322 I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
1323 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_INGRESS 1
1324 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_EGRESS 2
1325 #define I40E_AQC_MIRROR_RULE_TYPE_VLAN 3
1326 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS 4
1327 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS 5
1328 __le16 num_entries;
1329 __le16 destination; /* VSI for add, rule id for delete */
1330 __le32 addr_high; /* address of array of 2-byte VSI or VLAN ids */
1331 __le32 addr_low;
1332 };
1333
1334 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
1335
1336 struct i40e_aqc_add_delete_mirror_rule_completion {
1337 u8 reserved[2];
1338 __le16 rule_id; /* only used on add */
1339 __le16 mirror_rules_used;
1340 __le16 mirror_rules_free;
1341 __le32 addr_high;
1342 __le32 addr_low;
1343 };
1344
1345 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
1346
1347 /* DCB 0x03xx*/
1348
1349 /* PFC Ignore (direct 0x0301)
1350 * the command and response use the same descriptor structure
1351 */
1352 struct i40e_aqc_pfc_ignore {
1353 u8 tc_bitmap;
1354 u8 command_flags; /* unused on response */
1355 #define I40E_AQC_PFC_IGNORE_SET 0x80
1356 #define I40E_AQC_PFC_IGNORE_CLEAR 0x0
1357 u8 reserved[14];
1358 };
1359
1360 I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
1361
1362 /* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
1363 * with no parameters
1364 */
1365
1366 /* TX scheduler 0x04xx */
1367
1368 /* Almost all the indirect commands use
1369 * this generic struct to pass the SEID in param0
1370 */
1371 struct i40e_aqc_tx_sched_ind {
1372 __le16 vsi_seid;
1373 u8 reserved[6];
1374 __le32 addr_high;
1375 __le32 addr_low;
1376 };
1377
1378 I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
1379
1380 /* Several commands respond with a set of queue set handles */
1381 struct i40e_aqc_qs_handles_resp {
1382 __le16 qs_handles[8];
1383 };
1384
1385 /* Configure VSI BW limits (direct 0x0400) */
1386 struct i40e_aqc_configure_vsi_bw_limit {
1387 __le16 vsi_seid;
1388 u8 reserved[2];
1389 __le16 credit;
1390 u8 reserved1[2];
1391 u8 max_credit; /* 0-3, limit = 2^max */
1392 u8 reserved2[7];
1393 };
1394
1395 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
1396
1397 /* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
1398 * responds with i40e_aqc_qs_handles_resp
1399 */
1400 struct i40e_aqc_configure_vsi_ets_sla_bw_data {
1401 u8 tc_valid_bits;
1402 u8 reserved[15];
1403 __le16 tc_bw_credits[8]; /* FW writesback QS handles here */
1404
1405 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1406 __le16 tc_bw_max[2];
1407 u8 reserved1[28];
1408 };
1409
1410 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
1411
1412 /* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
1413 * responds with i40e_aqc_qs_handles_resp
1414 */
1415 struct i40e_aqc_configure_vsi_tc_bw_data {
1416 u8 tc_valid_bits;
1417 u8 reserved[3];
1418 u8 tc_bw_credits[8];
1419 u8 reserved1[4];
1420 __le16 qs_handles[8];
1421 };
1422
1423 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
1424
1425 /* Query vsi bw configuration (indirect 0x0408) */
1426 struct i40e_aqc_query_vsi_bw_config_resp {
1427 u8 tc_valid_bits;
1428 u8 tc_suspended_bits;
1429 u8 reserved[14];
1430 __le16 qs_handles[8];
1431 u8 reserved1[4];
1432 __le16 port_bw_limit;
1433 u8 reserved2[2];
1434 u8 max_bw; /* 0-3, limit = 2^max */
1435 u8 reserved3[23];
1436 };
1437
1438 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
1439
1440 /* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
1441 struct i40e_aqc_query_vsi_ets_sla_config_resp {
1442 u8 tc_valid_bits;
1443 u8 reserved[3];
1444 u8 share_credits[8];
1445 __le16 credits[8];
1446
1447 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1448 __le16 tc_bw_max[2];
1449 };
1450
1451 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
1452
1453 /* Configure Switching Component Bandwidth Limit (direct 0x0410) */
1454 struct i40e_aqc_configure_switching_comp_bw_limit {
1455 __le16 seid;
1456 u8 reserved[2];
1457 __le16 credit;
1458 u8 reserved1[2];
1459 u8 max_bw; /* 0-3, limit = 2^max */
1460 u8 reserved2[7];
1461 };
1462
1463 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
1464
1465 /* Enable Physical Port ETS (indirect 0x0413)
1466 * Modify Physical Port ETS (indirect 0x0414)
1467 * Disable Physical Port ETS (indirect 0x0415)
1468 */
1469 struct i40e_aqc_configure_switching_comp_ets_data {
1470 u8 reserved[4];
1471 u8 tc_valid_bits;
1472 u8 seepage;
1473 #define I40E_AQ_ETS_SEEPAGE_EN_MASK 0x1
1474 u8 tc_strict_priority_flags;
1475 u8 reserved1[17];
1476 u8 tc_bw_share_credits[8];
1477 u8 reserved2[96];
1478 };
1479
1480 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
1481
1482 /* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
1483 struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
1484 u8 tc_valid_bits;
1485 u8 reserved[15];
1486 __le16 tc_bw_credit[8];
1487
1488 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1489 __le16 tc_bw_max[2];
1490 u8 reserved1[28];
1491 };
1492
1493 I40E_CHECK_STRUCT_LEN(0x40,
1494 i40e_aqc_configure_switching_comp_ets_bw_limit_data);
1495
1496 /* Configure Switching Component Bandwidth Allocation per Tc
1497 * (indirect 0x0417)
1498 */
1499 struct i40e_aqc_configure_switching_comp_bw_config_data {
1500 u8 tc_valid_bits;
1501 u8 reserved[2];
1502 u8 absolute_credits; /* bool */
1503 u8 tc_bw_share_credits[8];
1504 u8 reserved1[20];
1505 };
1506
1507 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
1508
1509 /* Query Switching Component Configuration (indirect 0x0418) */
1510 struct i40e_aqc_query_switching_comp_ets_config_resp {
1511 u8 tc_valid_bits;
1512 u8 reserved[35];
1513 __le16 port_bw_limit;
1514 u8 reserved1[2];
1515 u8 tc_bw_max; /* 0-3, limit = 2^max */
1516 u8 reserved2[23];
1517 };
1518
1519 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
1520
1521 /* Query PhysicalPort ETS Configuration (indirect 0x0419) */
1522 struct i40e_aqc_query_port_ets_config_resp {
1523 u8 reserved[4];
1524 u8 tc_valid_bits;
1525 u8 reserved1;
1526 u8 tc_strict_priority_bits;
1527 u8 reserved2;
1528 u8 tc_bw_share_credits[8];
1529 __le16 tc_bw_limits[8];
1530
1531 /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
1532 __le16 tc_bw_max[2];
1533 u8 reserved3[32];
1534 };
1535
1536 I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
1537
1538 /* Query Switching Component Bandwidth Allocation per Traffic Type
1539 * (indirect 0x041A)
1540 */
1541 struct i40e_aqc_query_switching_comp_bw_config_resp {
1542 u8 tc_valid_bits;
1543 u8 reserved[2];
1544 u8 absolute_credits_enable; /* bool */
1545 u8 tc_bw_share_credits[8];
1546 __le16 tc_bw_limits[8];
1547
1548 /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1549 __le16 tc_bw_max[2];
1550 };
1551
1552 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
1553
1554 /* Suspend/resume port TX traffic
1555 * (direct 0x041B and 0x041C) uses the generic SEID struct
1556 */
1557
1558 /* Configure partition BW
1559 * (indirect 0x041D)
1560 */
1561 struct i40e_aqc_configure_partition_bw_data {
1562 __le16 pf_valid_bits;
1563 u8 min_bw[16]; /* guaranteed bandwidth */
1564 u8 max_bw[16]; /* bandwidth limit */
1565 };
1566
1567 I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
1568
1569 /* Get and set the active HMC resource profile and status.
1570 * (direct 0x0500) and (direct 0x0501)
1571 */
1572 struct i40e_aq_get_set_hmc_resource_profile {
1573 u8 pm_profile;
1574 u8 pe_vf_enabled;
1575 u8 reserved[14];
1576 };
1577
1578 I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
1579
1580 enum i40e_aq_hmc_profile {
1581 /* I40E_HMC_PROFILE_NO_CHANGE = 0, reserved */
1582 I40E_HMC_PROFILE_DEFAULT = 1,
1583 I40E_HMC_PROFILE_FAVOR_VF = 2,
1584 I40E_HMC_PROFILE_EQUAL = 3,
1585 };
1586
1587 #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_PM_MASK 0xF
1588 #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_COUNT_MASK 0x3F
1589
1590 /* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
1591
1592 /* set in param0 for get phy abilities to report qualified modules */
1593 #define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES 0x0001
1594 #define I40E_AQ_PHY_REPORT_INITIAL_VALUES 0x0002
1595
1596 enum i40e_aq_phy_type {
1597 I40E_PHY_TYPE_SGMII = 0x0,
1598 I40E_PHY_TYPE_1000BASE_KX = 0x1,
1599 I40E_PHY_TYPE_10GBASE_KX4 = 0x2,
1600 I40E_PHY_TYPE_10GBASE_KR = 0x3,
1601 I40E_PHY_TYPE_40GBASE_KR4 = 0x4,
1602 I40E_PHY_TYPE_XAUI = 0x5,
1603 I40E_PHY_TYPE_XFI = 0x6,
1604 I40E_PHY_TYPE_SFI = 0x7,
1605 I40E_PHY_TYPE_XLAUI = 0x8,
1606 I40E_PHY_TYPE_XLPPI = 0x9,
1607 I40E_PHY_TYPE_40GBASE_CR4_CU = 0xA,
1608 I40E_PHY_TYPE_10GBASE_CR1_CU = 0xB,
1609 I40E_PHY_TYPE_10GBASE_AOC = 0xC,
1610 I40E_PHY_TYPE_40GBASE_AOC = 0xD,
1611 I40E_PHY_TYPE_100BASE_TX = 0x11,
1612 I40E_PHY_TYPE_1000BASE_T = 0x12,
1613 I40E_PHY_TYPE_10GBASE_T = 0x13,
1614 I40E_PHY_TYPE_10GBASE_SR = 0x14,
1615 I40E_PHY_TYPE_10GBASE_LR = 0x15,
1616 I40E_PHY_TYPE_10GBASE_SFPP_CU = 0x16,
1617 I40E_PHY_TYPE_10GBASE_CR1 = 0x17,
1618 I40E_PHY_TYPE_40GBASE_CR4 = 0x18,
1619 I40E_PHY_TYPE_40GBASE_SR4 = 0x19,
1620 I40E_PHY_TYPE_40GBASE_LR4 = 0x1A,
1621 I40E_PHY_TYPE_1000BASE_SX = 0x1B,
1622 I40E_PHY_TYPE_1000BASE_LX = 0x1C,
1623 I40E_PHY_TYPE_1000BASE_T_OPTICAL = 0x1D,
1624 I40E_PHY_TYPE_20GBASE_KR2 = 0x1E,
1625 I40E_PHY_TYPE_MAX
1626 };
1627
1628 #define I40E_LINK_SPEED_100MB_SHIFT 0x1
1629 #define I40E_LINK_SPEED_1000MB_SHIFT 0x2
1630 #define I40E_LINK_SPEED_10GB_SHIFT 0x3
1631 #define I40E_LINK_SPEED_40GB_SHIFT 0x4
1632 #define I40E_LINK_SPEED_20GB_SHIFT 0x5
1633
1634 enum i40e_aq_link_speed {
1635 I40E_LINK_SPEED_UNKNOWN = 0,
1636 I40E_LINK_SPEED_100MB = (1 << I40E_LINK_SPEED_100MB_SHIFT),
1637 I40E_LINK_SPEED_1GB = (1 << I40E_LINK_SPEED_1000MB_SHIFT),
1638 I40E_LINK_SPEED_10GB = (1 << I40E_LINK_SPEED_10GB_SHIFT),
1639 I40E_LINK_SPEED_40GB = (1 << I40E_LINK_SPEED_40GB_SHIFT),
1640 I40E_LINK_SPEED_20GB = (1 << I40E_LINK_SPEED_20GB_SHIFT)
1641 };
1642
1643 struct i40e_aqc_module_desc {
1644 u8 oui[3];
1645 u8 reserved1;
1646 u8 part_number[16];
1647 u8 revision[4];
1648 u8 reserved2[8];
1649 };
1650
1651 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
1652
1653 struct i40e_aq_get_phy_abilities_resp {
1654 __le32 phy_type; /* bitmap using the above enum for offsets */
1655 u8 link_speed; /* bitmap using the above enum bit patterns */
1656 u8 abilities;
1657 #define I40E_AQ_PHY_FLAG_PAUSE_TX 0x01
1658 #define I40E_AQ_PHY_FLAG_PAUSE_RX 0x02
1659 #define I40E_AQ_PHY_FLAG_LOW_POWER 0x04
1660 #define I40E_AQ_PHY_LINK_ENABLED 0x08
1661 #define I40E_AQ_PHY_AN_ENABLED 0x10
1662 #define I40E_AQ_PHY_FLAG_MODULE_QUAL 0x20
1663 __le16 eee_capability;
1664 #define I40E_AQ_EEE_100BASE_TX 0x0002
1665 #define I40E_AQ_EEE_1000BASE_T 0x0004
1666 #define I40E_AQ_EEE_10GBASE_T 0x0008
1667 #define I40E_AQ_EEE_1000BASE_KX 0x0010
1668 #define I40E_AQ_EEE_10GBASE_KX4 0x0020
1669 #define I40E_AQ_EEE_10GBASE_KR 0x0040
1670 __le32 eeer_val;
1671 u8 d3_lpan;
1672 #define I40E_AQ_SET_PHY_D3_LPAN_ENA 0x01
1673 u8 reserved[3];
1674 u8 phy_id[4];
1675 u8 module_type[3];
1676 u8 qualified_module_count;
1677 #define I40E_AQ_PHY_MAX_QMS 16
1678 struct i40e_aqc_module_desc qualified_module[I40E_AQ_PHY_MAX_QMS];
1679 };
1680
1681 I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
1682
1683 /* Set PHY Config (direct 0x0601) */
1684 struct i40e_aq_set_phy_config { /* same bits as above in all */
1685 __le32 phy_type;
1686 u8 link_speed;
1687 u8 abilities;
1688 /* bits 0-2 use the values from get_phy_abilities_resp */
1689 #define I40E_AQ_PHY_ENABLE_LINK 0x08
1690 #define I40E_AQ_PHY_ENABLE_AN 0x10
1691 #define I40E_AQ_PHY_ENABLE_ATOMIC_LINK 0x20
1692 __le16 eee_capability;
1693 __le32 eeer;
1694 u8 low_power_ctrl;
1695 u8 reserved[3];
1696 };
1697
1698 I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
1699
1700 /* Set MAC Config command data structure (direct 0x0603) */
1701 struct i40e_aq_set_mac_config {
1702 __le16 max_frame_size;
1703 u8 params;
1704 #define I40E_AQ_SET_MAC_CONFIG_CRC_EN 0x04
1705 #define I40E_AQ_SET_MAC_CONFIG_PACING_MASK 0x78
1706 #define I40E_AQ_SET_MAC_CONFIG_PACING_SHIFT 3
1707 #define I40E_AQ_SET_MAC_CONFIG_PACING_NONE 0x0
1708 #define I40E_AQ_SET_MAC_CONFIG_PACING_1B_13TX 0xF
1709 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_9TX 0x9
1710 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_4TX 0x8
1711 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_7TX 0x7
1712 #define I40E_AQ_SET_MAC_CONFIG_PACING_2DW_3TX 0x6
1713 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_1TX 0x5
1714 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_2TX 0x4
1715 #define I40E_AQ_SET_MAC_CONFIG_PACING_7DW_3TX 0x3
1716 #define I40E_AQ_SET_MAC_CONFIG_PACING_4DW_1TX 0x2
1717 #define I40E_AQ_SET_MAC_CONFIG_PACING_9DW_1TX 0x1
1718 u8 tx_timer_priority; /* bitmap */
1719 __le16 tx_timer_value;
1720 __le16 fc_refresh_threshold;
1721 u8 reserved[8];
1722 };
1723
1724 I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
1725
1726 /* Restart Auto-Negotiation (direct 0x605) */
1727 struct i40e_aqc_set_link_restart_an {
1728 u8 command;
1729 #define I40E_AQ_PHY_RESTART_AN 0x02
1730 #define I40E_AQ_PHY_LINK_ENABLE 0x04
1731 u8 reserved[15];
1732 };
1733
1734 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
1735
1736 /* Get Link Status cmd & response data structure (direct 0x0607) */
1737 struct i40e_aqc_get_link_status {
1738 __le16 command_flags; /* only field set on command */
1739 #define I40E_AQ_LSE_MASK 0x3
1740 #define I40E_AQ_LSE_NOP 0x0
1741 #define I40E_AQ_LSE_DISABLE 0x2
1742 #define I40E_AQ_LSE_ENABLE 0x3
1743 /* only response uses this flag */
1744 #define I40E_AQ_LSE_IS_ENABLED 0x1
1745 u8 phy_type; /* i40e_aq_phy_type */
1746 u8 link_speed; /* i40e_aq_link_speed */
1747 u8 link_info;
1748 #define I40E_AQ_LINK_UP 0x01 /* obsolete */
1749 #define I40E_AQ_LINK_UP_FUNCTION 0x01
1750 #define I40E_AQ_LINK_FAULT 0x02
1751 #define I40E_AQ_LINK_FAULT_TX 0x04
1752 #define I40E_AQ_LINK_FAULT_RX 0x08
1753 #define I40E_AQ_LINK_FAULT_REMOTE 0x10
1754 #define I40E_AQ_LINK_UP_PORT 0x20
1755 #define I40E_AQ_MEDIA_AVAILABLE 0x40
1756 #define I40E_AQ_SIGNAL_DETECT 0x80
1757 u8 an_info;
1758 #define I40E_AQ_AN_COMPLETED 0x01
1759 #define I40E_AQ_LP_AN_ABILITY 0x02
1760 #define I40E_AQ_PD_FAULT 0x04
1761 #define I40E_AQ_FEC_EN 0x08
1762 #define I40E_AQ_PHY_LOW_POWER 0x10
1763 #define I40E_AQ_LINK_PAUSE_TX 0x20
1764 #define I40E_AQ_LINK_PAUSE_RX 0x40
1765 #define I40E_AQ_QUALIFIED_MODULE 0x80
1766 u8 ext_info;
1767 #define I40E_AQ_LINK_PHY_TEMP_ALARM 0x01
1768 #define I40E_AQ_LINK_XCESSIVE_ERRORS 0x02
1769 #define I40E_AQ_LINK_TX_SHIFT 0x02
1770 #define I40E_AQ_LINK_TX_MASK (0x03 << I40E_AQ_LINK_TX_SHIFT)
1771 #define I40E_AQ_LINK_TX_ACTIVE 0x00
1772 #define I40E_AQ_LINK_TX_DRAINED 0x01
1773 #define I40E_AQ_LINK_TX_FLUSHED 0x03
1774 #define I40E_AQ_LINK_FORCED_40G 0x10
1775 u8 loopback; /* use defines from i40e_aqc_set_lb_mode */
1776 __le16 max_frame_size;
1777 u8 config;
1778 #define I40E_AQ_CONFIG_CRC_ENA 0x04
1779 #define I40E_AQ_CONFIG_PACING_MASK 0x78
1780 u8 external_power_ability;
1781 #define I40E_AQ_LINK_POWER_CLASS_1 0x00
1782 #define I40E_AQ_LINK_POWER_CLASS_2 0x01
1783 #define I40E_AQ_LINK_POWER_CLASS_3 0x02
1784 #define I40E_AQ_LINK_POWER_CLASS_4 0x03
1785 u8 reserved[4];
1786 };
1787
1788 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
1789
1790 /* Set event mask command (direct 0x613) */
1791 struct i40e_aqc_set_phy_int_mask {
1792 u8 reserved[8];
1793 __le16 event_mask;
1794 #define I40E_AQ_EVENT_LINK_UPDOWN 0x0002
1795 #define I40E_AQ_EVENT_MEDIA_NA 0x0004
1796 #define I40E_AQ_EVENT_LINK_FAULT 0x0008
1797 #define I40E_AQ_EVENT_PHY_TEMP_ALARM 0x0010
1798 #define I40E_AQ_EVENT_EXCESSIVE_ERRORS 0x0020
1799 #define I40E_AQ_EVENT_SIGNAL_DETECT 0x0040
1800 #define I40E_AQ_EVENT_AN_COMPLETED 0x0080
1801 #define I40E_AQ_EVENT_MODULE_QUAL_FAIL 0x0100
1802 #define I40E_AQ_EVENT_PORT_TX_SUSPENDED 0x0200
1803 u8 reserved1[6];
1804 };
1805
1806 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
1807
1808 /* Get Local AN advt register (direct 0x0614)
1809 * Set Local AN advt register (direct 0x0615)
1810 * Get Link Partner AN advt register (direct 0x0616)
1811 */
1812 struct i40e_aqc_an_advt_reg {
1813 __le32 local_an_reg0;
1814 __le16 local_an_reg1;
1815 u8 reserved[10];
1816 };
1817
1818 I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
1819
1820 /* Set Loopback mode (0x0618) */
1821 struct i40e_aqc_set_lb_mode {
1822 __le16 lb_mode;
1823 #define I40E_AQ_LB_PHY_LOCAL 0x01
1824 #define I40E_AQ_LB_PHY_REMOTE 0x02
1825 #define I40E_AQ_LB_MAC_LOCAL 0x04
1826 u8 reserved[14];
1827 };
1828
1829 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
1830
1831 /* Set PHY Debug command (0x0622) */
1832 struct i40e_aqc_set_phy_debug {
1833 u8 command_flags;
1834 #define I40E_AQ_PHY_DEBUG_RESET_INTERNAL 0x02
1835 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT 2
1836 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_MASK (0x03 << \
1837 I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT)
1838 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_NONE 0x00
1839 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_HARD 0x01
1840 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SOFT 0x02
1841 #define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW 0x10
1842 u8 reserved[15];
1843 };
1844
1845 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
1846
1847 enum i40e_aq_phy_reg_type {
1848 I40E_AQC_PHY_REG_INTERNAL = 0x1,
1849 I40E_AQC_PHY_REG_EXERNAL_BASET = 0x2,
1850 I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
1851 };
1852
1853 /* Run PHY Activity (0x0626) */
1854 struct i40e_aqc_run_phy_activity {
1855 __le16 activity_id;
1856 u8 flags;
1857 u8 reserved1;
1858 __le32 control;
1859 __le32 data;
1860 u8 reserved2[4];
1861 };
1862
1863 I40E_CHECK_CMD_LENGTH(i40e_aqc_run_phy_activity);
1864
1865 /* NVM Read command (indirect 0x0701)
1866 * NVM Erase commands (direct 0x0702)
1867 * NVM Update commands (indirect 0x0703)
1868 */
1869 struct i40e_aqc_nvm_update {
1870 u8 command_flags;
1871 #define I40E_AQ_NVM_LAST_CMD 0x01
1872 #define I40E_AQ_NVM_FLASH_ONLY 0x80
1873 u8 module_pointer;
1874 __le16 length;
1875 __le32 offset;
1876 __le32 addr_high;
1877 __le32 addr_low;
1878 };
1879
1880 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
1881
1882 /* NVM Config Read (indirect 0x0704) */
1883 struct i40e_aqc_nvm_config_read {
1884 __le16 cmd_flags;
1885 #define I40E_AQ_ANVM_SINGLE_OR_MULTIPLE_FEATURES_MASK 1
1886 #define I40E_AQ_ANVM_READ_SINGLE_FEATURE 0
1887 #define I40E_AQ_ANVM_READ_MULTIPLE_FEATURES 1
1888 __le16 element_count;
1889 __le16 element_id; /* Feature/field ID */
1890 __le16 element_id_msw; /* MSWord of field ID */
1891 __le32 address_high;
1892 __le32 address_low;
1893 };
1894
1895 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
1896
1897 /* NVM Config Write (indirect 0x0705) */
1898 struct i40e_aqc_nvm_config_write {
1899 __le16 cmd_flags;
1900 __le16 element_count;
1901 u8 reserved[4];
1902 __le32 address_high;
1903 __le32 address_low;
1904 };
1905
1906 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
1907
1908 /* Used for 0x0704 as well as for 0x0705 commands */
1909 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT 1
1910 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK \
1911 (1 << I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT)
1912 #define I40E_AQ_ANVM_FEATURE 0
1913 #define I40E_AQ_ANVM_IMMEDIATE_FIELD (1 << FEATURE_OR_IMMEDIATE_SHIFT)
1914 struct i40e_aqc_nvm_config_data_feature {
1915 __le16 feature_id;
1916 #define I40E_AQ_ANVM_FEATURE_OPTION_OEM_ONLY 0x01
1917 #define I40E_AQ_ANVM_FEATURE_OPTION_DWORD_MAP 0x08
1918 #define I40E_AQ_ANVM_FEATURE_OPTION_POR_CSR 0x10
1919 __le16 feature_options;
1920 __le16 feature_selection;
1921 };
1922
1923 I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
1924
1925 struct i40e_aqc_nvm_config_data_immediate_field {
1926 __le32 field_id;
1927 __le32 field_value;
1928 __le16 field_options;
1929 __le16 reserved;
1930 };
1931
1932 I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
1933
1934 /* OEM Post Update (indirect 0x0720)
1935 * no command data struct used
1936 */
1937 struct i40e_aqc_nvm_oem_post_update {
1938 #define I40E_AQ_NVM_OEM_POST_UPDATE_EXTERNAL_DATA 0x01
1939 u8 sel_data;
1940 u8 reserved[7];
1941 };
1942
1943 I40E_CHECK_STRUCT_LEN(0x8, i40e_aqc_nvm_oem_post_update);
1944
1945 struct i40e_aqc_nvm_oem_post_update_buffer {
1946 u8 str_len;
1947 u8 dev_addr;
1948 __le16 eeprom_addr;
1949 u8 data[36];
1950 };
1951
1952 I40E_CHECK_STRUCT_LEN(0x28, i40e_aqc_nvm_oem_post_update_buffer);
1953
1954 /* Thermal Sensor (indirect 0x0721)
1955 * read or set thermal sensor configs and values
1956 * takes a sensor and command specific data buffer, not detailed here
1957 */
1958 struct i40e_aqc_thermal_sensor {
1959 u8 sensor_action;
1960 #define I40E_AQ_THERMAL_SENSOR_READ_CONFIG 0
1961 #define I40E_AQ_THERMAL_SENSOR_SET_CONFIG 1
1962 #define I40E_AQ_THERMAL_SENSOR_READ_TEMP 2
1963 u8 reserved[7];
1964 __le32 addr_high;
1965 __le32 addr_low;
1966 };
1967
1968 I40E_CHECK_CMD_LENGTH(i40e_aqc_thermal_sensor);
1969
1970 /* Send to PF command (indirect 0x0801) id is only used by PF
1971 * Send to VF command (indirect 0x0802) id is only used by PF
1972 * Send to Peer PF command (indirect 0x0803)
1973 */
1974 struct i40e_aqc_pf_vf_message {
1975 __le32 id;
1976 u8 reserved[4];
1977 __le32 addr_high;
1978 __le32 addr_low;
1979 };
1980
1981 I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
1982
1983 /* Alternate structure */
1984
1985 /* Direct write (direct 0x0900)
1986 * Direct read (direct 0x0902)
1987 */
1988 struct i40e_aqc_alternate_write {
1989 __le32 address0;
1990 __le32 data0;
1991 __le32 address1;
1992 __le32 data1;
1993 };
1994
1995 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
1996
1997 /* Indirect write (indirect 0x0901)
1998 * Indirect read (indirect 0x0903)
1999 */
2000
2001 struct i40e_aqc_alternate_ind_write {
2002 __le32 address;
2003 __le32 length;
2004 __le32 addr_high;
2005 __le32 addr_low;
2006 };
2007
2008 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
2009
2010 /* Done alternate write (direct 0x0904)
2011 * uses i40e_aq_desc
2012 */
2013 struct i40e_aqc_alternate_write_done {
2014 __le16 cmd_flags;
2015 #define I40E_AQ_ALTERNATE_MODE_BIOS_MASK 1
2016 #define I40E_AQ_ALTERNATE_MODE_BIOS_LEGACY 0
2017 #define I40E_AQ_ALTERNATE_MODE_BIOS_UEFI 1
2018 #define I40E_AQ_ALTERNATE_RESET_NEEDED 2
2019 u8 reserved[14];
2020 };
2021
2022 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
2023
2024 /* Set OEM mode (direct 0x0905) */
2025 struct i40e_aqc_alternate_set_mode {
2026 __le32 mode;
2027 #define I40E_AQ_ALTERNATE_MODE_NONE 0
2028 #define I40E_AQ_ALTERNATE_MODE_OEM 1
2029 u8 reserved[12];
2030 };
2031
2032 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
2033
2034 /* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
2035
2036 /* async events 0x10xx */
2037
2038 /* Lan Queue Overflow Event (direct, 0x1001) */
2039 struct i40e_aqc_lan_overflow {
2040 __le32 prtdcb_rupto;
2041 __le32 otx_ctl;
2042 u8 reserved[8];
2043 };
2044
2045 I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
2046
2047 /* Get LLDP MIB (indirect 0x0A00) */
2048 struct i40e_aqc_lldp_get_mib {
2049 u8 type;
2050 u8 reserved1;
2051 #define I40E_AQ_LLDP_MIB_TYPE_MASK 0x3
2052 #define I40E_AQ_LLDP_MIB_LOCAL 0x0
2053 #define I40E_AQ_LLDP_MIB_REMOTE 0x1
2054 #define I40E_AQ_LLDP_MIB_LOCAL_AND_REMOTE 0x2
2055 #define I40E_AQ_LLDP_BRIDGE_TYPE_MASK 0xC
2056 #define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT 0x2
2057 #define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
2058 #define I40E_AQ_LLDP_BRIDGE_TYPE_NON_TPMR 0x1
2059 #define I40E_AQ_LLDP_TX_SHIFT 0x4
2060 #define I40E_AQ_LLDP_TX_MASK (0x03 << I40E_AQ_LLDP_TX_SHIFT)
2061 /* TX pause flags use I40E_AQ_LINK_TX_* above */
2062 __le16 local_len;
2063 __le16 remote_len;
2064 u8 reserved2[2];
2065 __le32 addr_high;
2066 __le32 addr_low;
2067 };
2068
2069 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
2070
2071 /* Configure LLDP MIB Change Event (direct 0x0A01)
2072 * also used for the event (with type in the command field)
2073 */
2074 struct i40e_aqc_lldp_update_mib {
2075 u8 command;
2076 #define I40E_AQ_LLDP_MIB_UPDATE_ENABLE 0x0
2077 #define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
2078 u8 reserved[7];
2079 __le32 addr_high;
2080 __le32 addr_low;
2081 };
2082
2083 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
2084
2085 /* Add LLDP TLV (indirect 0x0A02)
2086 * Delete LLDP TLV (indirect 0x0A04)
2087 */
2088 struct i40e_aqc_lldp_add_tlv {
2089 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2090 u8 reserved1[1];
2091 __le16 len;
2092 u8 reserved2[4];
2093 __le32 addr_high;
2094 __le32 addr_low;
2095 };
2096
2097 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
2098
2099 /* Update LLDP TLV (indirect 0x0A03) */
2100 struct i40e_aqc_lldp_update_tlv {
2101 u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
2102 u8 reserved;
2103 __le16 old_len;
2104 __le16 new_offset;
2105 __le16 new_len;
2106 __le32 addr_high;
2107 __le32 addr_low;
2108 };
2109
2110 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
2111
2112 /* Stop LLDP (direct 0x0A05) */
2113 struct i40e_aqc_lldp_stop {
2114 u8 command;
2115 #define I40E_AQ_LLDP_AGENT_STOP 0x0
2116 #define I40E_AQ_LLDP_AGENT_SHUTDOWN 0x1
2117 u8 reserved[15];
2118 };
2119
2120 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
2121
2122 /* Start LLDP (direct 0x0A06) */
2123
2124 struct i40e_aqc_lldp_start {
2125 u8 command;
2126 #define I40E_AQ_LLDP_AGENT_START 0x1
2127 u8 reserved[15];
2128 };
2129
2130 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
2131
2132 /* Apply MIB changes (0x0A07)
2133 * uses the generic struc as it contains no data
2134 */
2135
2136 /* Add Udp Tunnel command and completion (direct 0x0B00) */
2137 struct i40e_aqc_add_udp_tunnel {
2138 __le16 udp_port;
2139 u8 reserved0[3];
2140 u8 protocol_type;
2141 #define I40E_AQC_TUNNEL_TYPE_VXLAN 0x00
2142 #define I40E_AQC_TUNNEL_TYPE_NGE 0x01
2143 #define I40E_AQC_TUNNEL_TYPE_TEREDO 0x10
2144 #define I40E_AQC_TUNNEL_TYPE_VXLAN_GPE 0x11
2145 u8 reserved1[10];
2146 };
2147
2148 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
2149
2150 struct i40e_aqc_add_udp_tunnel_completion {
2151 __le16 udp_port;
2152 u8 filter_entry_index;
2153 u8 multiple_pfs;
2154 #define I40E_AQC_SINGLE_PF 0x0
2155 #define I40E_AQC_MULTIPLE_PFS 0x1
2156 u8 total_filters;
2157 u8 reserved[11];
2158 };
2159
2160 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
2161
2162 /* remove UDP Tunnel command (0x0B01) */
2163 struct i40e_aqc_remove_udp_tunnel {
2164 u8 reserved[2];
2165 u8 index; /* 0 to 15 */
2166 u8 reserved2[13];
2167 };
2168
2169 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
2170
2171 struct i40e_aqc_del_udp_tunnel_completion {
2172 __le16 udp_port;
2173 u8 index; /* 0 to 15 */
2174 u8 multiple_pfs;
2175 u8 total_filters_used;
2176 u8 reserved1[11];
2177 };
2178
2179 I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
2180
2181 struct i40e_aqc_get_set_rss_key {
2182 #define I40E_AQC_SET_RSS_KEY_VSI_VALID (0x1 << 15)
2183 #define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT 0
2184 #define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK (0x3FF << \
2185 I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
2186 __le16 vsi_id;
2187 u8 reserved[6];
2188 __le32 addr_high;
2189 __le32 addr_low;
2190 };
2191
2192 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
2193
2194 struct i40e_aqc_get_set_rss_key_data {
2195 u8 standard_rss_key[0x28];
2196 u8 extended_hash_key[0xc];
2197 };
2198
2199 I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
2200
2201 struct i40e_aqc_get_set_rss_lut {
2202 #define I40E_AQC_SET_RSS_LUT_VSI_VALID (0x1 << 15)
2203 #define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT 0
2204 #define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK (0x3FF << \
2205 I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
2206 __le16 vsi_id;
2207 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT 0
2208 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK (0x1 << \
2209 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
2210
2211 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI 0
2212 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF 1
2213 __le16 flags;
2214 u8 reserved[4];
2215 __le32 addr_high;
2216 __le32 addr_low;
2217 };
2218
2219 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
2220
2221 /* tunnel key structure 0x0B10 */
2222
2223 struct i40e_aqc_tunnel_key_structure_A0 {
2224 __le16 key1_off;
2225 __le16 key1_len;
2226 __le16 key2_off;
2227 __le16 key2_len;
2228 __le16 flags;
2229 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
2230 /* response flags */
2231 #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2232 #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2233 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
2234 u8 resreved[6];
2235 };
2236
2237 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure_A0);
2238
2239 struct i40e_aqc_tunnel_key_structure {
2240 u8 key1_off;
2241 u8 key2_off;
2242 u8 key1_len; /* 0 to 15 */
2243 u8 key2_len; /* 0 to 15 */
2244 u8 flags;
2245 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
2246 /* response flags */
2247 #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
2248 #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
2249 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
2250 u8 network_key_index;
2251 #define I40E_AQC_NETWORK_KEY_INDEX_VXLAN 0x0
2252 #define I40E_AQC_NETWORK_KEY_INDEX_NGE 0x1
2253 #define I40E_AQC_NETWORK_KEY_INDEX_FLEX_MAC_IN_UDP 0x2
2254 #define I40E_AQC_NETWORK_KEY_INDEX_GRE 0x3
2255 u8 reserved[10];
2256 };
2257
2258 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
2259
2260 /* OEM mode commands (direct 0xFE0x) */
2261 struct i40e_aqc_oem_param_change {
2262 __le32 param_type;
2263 #define I40E_AQ_OEM_PARAM_TYPE_PF_CTL 0
2264 #define I40E_AQ_OEM_PARAM_TYPE_BW_CTL 1
2265 #define I40E_AQ_OEM_PARAM_MAC 2
2266 __le32 param_value1;
2267 __le16 param_value2;
2268 u8 reserved[6];
2269 };
2270
2271 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
2272
2273 struct i40e_aqc_oem_state_change {
2274 __le32 state;
2275 #define I40E_AQ_OEM_STATE_LINK_DOWN 0x0
2276 #define I40E_AQ_OEM_STATE_LINK_UP 0x1
2277 u8 reserved[12];
2278 };
2279
2280 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
2281
2282 /* Initialize OCSD (0xFE02, direct) */
2283 struct i40e_aqc_opc_oem_ocsd_initialize {
2284 u8 type_status;
2285 u8 reserved1[3];
2286 __le32 ocsd_memory_block_addr_high;
2287 __le32 ocsd_memory_block_addr_low;
2288 __le32 requested_update_interval;
2289 };
2290
2291 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
2292
2293 /* Initialize OCBB (0xFE03, direct) */
2294 struct i40e_aqc_opc_oem_ocbb_initialize {
2295 u8 type_status;
2296 u8 reserved1[3];
2297 __le32 ocbb_memory_block_addr_high;
2298 __le32 ocbb_memory_block_addr_low;
2299 u8 reserved2[4];
2300 };
2301
2302 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
2303
2304 /* debug commands */
2305
2306 /* get device id (0xFF00) uses the generic structure */
2307
2308 /* set test more (0xFF01, internal) */
2309
2310 struct i40e_acq_set_test_mode {
2311 u8 mode;
2312 #define I40E_AQ_TEST_PARTIAL 0
2313 #define I40E_AQ_TEST_FULL 1
2314 #define I40E_AQ_TEST_NVM 2
2315 u8 reserved[3];
2316 u8 command;
2317 #define I40E_AQ_TEST_OPEN 0
2318 #define I40E_AQ_TEST_CLOSE 1
2319 #define I40E_AQ_TEST_INC 2
2320 u8 reserved2[3];
2321 __le32 address_high;
2322 __le32 address_low;
2323 };
2324
2325 I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
2326
2327 /* Debug Read Register command (0xFF03)
2328 * Debug Write Register command (0xFF04)
2329 */
2330 struct i40e_aqc_debug_reg_read_write {
2331 __le32 reserved;
2332 __le32 address;
2333 __le32 value_high;
2334 __le32 value_low;
2335 };
2336
2337 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
2338
2339 /* Scatter/gather Reg Read (indirect 0xFF05)
2340 * Scatter/gather Reg Write (indirect 0xFF06)
2341 */
2342
2343 /* i40e_aq_desc is used for the command */
2344 struct i40e_aqc_debug_reg_sg_element_data {
2345 __le32 address;
2346 __le32 value;
2347 };
2348
2349 /* Debug Modify register (direct 0xFF07) */
2350 struct i40e_aqc_debug_modify_reg {
2351 __le32 address;
2352 __le32 value;
2353 __le32 clear_mask;
2354 __le32 set_mask;
2355 };
2356
2357 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
2358
2359 /* dump internal data (0xFF08, indirect) */
2360
2361 #define I40E_AQ_CLUSTER_ID_AUX 0
2362 #define I40E_AQ_CLUSTER_ID_SWITCH_FLU 1
2363 #define I40E_AQ_CLUSTER_ID_TXSCHED 2
2364 #define I40E_AQ_CLUSTER_ID_HMC 3
2365 #define I40E_AQ_CLUSTER_ID_MAC0 4
2366 #define I40E_AQ_CLUSTER_ID_MAC1 5
2367 #define I40E_AQ_CLUSTER_ID_MAC2 6
2368 #define I40E_AQ_CLUSTER_ID_MAC3 7
2369 #define I40E_AQ_CLUSTER_ID_DCB 8
2370 #define I40E_AQ_CLUSTER_ID_EMP_MEM 9
2371 #define I40E_AQ_CLUSTER_ID_PKT_BUF 10
2372 #define I40E_AQ_CLUSTER_ID_ALTRAM 11
2373
2374 struct i40e_aqc_debug_dump_internals {
2375 u8 cluster_id;
2376 u8 table_id;
2377 __le16 data_size;
2378 __le32 idx;
2379 __le32 address_high;
2380 __le32 address_low;
2381 };
2382
2383 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
2384
2385 struct i40e_aqc_debug_modify_internals {
2386 u8 cluster_id;
2387 u8 cluster_specific_params[7];
2388 __le32 address_high;
2389 __le32 address_low;
2390 };
2391
2392 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
2393
2394 #endif /* _I40E_ADMINQ_CMD_H_ */
This page took 0.081743 seconds and 5 git commands to generate.