net/i40e/base: support LLDP agent
[dpdk.git] / drivers / net / i40e / base / i40e_adminq_cmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2018
3  */
4
5 #ifndef _I40E_ADMINQ_CMD_H_
6 #define _I40E_ADMINQ_CMD_H_
7
8 /* This header file defines the i40e Admin Queue commands and is shared between
9  * i40e Firmware and Software.
10  *
11  * This file needs to comply with the Linux Kernel coding style.
12  */
13
14 #define I40E_FW_API_VERSION_MAJOR       0x0001
15 #define I40E_FW_API_VERSION_MINOR_X722  0x0006
16 #define I40E_FW_API_VERSION_MINOR_X710  0x0007
17
18 #define I40E_FW_MINOR_VERSION(_h) ((_h)->mac.type == I40E_MAC_XL710 ? \
19                                         I40E_FW_API_VERSION_MINOR_X710 : \
20                                         I40E_FW_API_VERSION_MINOR_X722)
21
22 /* API version 1.7 implements additional link and PHY-specific APIs  */
23 #define I40E_MINOR_VER_GET_LINK_INFO_XL710 0x0007
24 /* API version 1.6 for X722 devices adds ability to stop FW LLDP agent */
25 #define I40E_MINOR_VER_FW_LLDP_STOPPABLE_X722 0x0006
26
27 struct i40e_aq_desc {
28         __le16 flags;
29         __le16 opcode;
30         __le16 datalen;
31         __le16 retval;
32         __le32 cookie_high;
33         __le32 cookie_low;
34         union {
35                 struct {
36                         __le32 param0;
37                         __le32 param1;
38                         __le32 param2;
39                         __le32 param3;
40                 } internal;
41                 struct {
42                         __le32 param0;
43                         __le32 param1;
44                         __le32 addr_high;
45                         __le32 addr_low;
46                 } external;
47                 u8 raw[16];
48         } params;
49 };
50
51 /* Flags sub-structure
52  * |0  |1  |2  |3  |4  |5  |6  |7  |8  |9  |10 |11 |12 |13 |14 |15 |
53  * |DD |CMP|ERR|VFE| * *  RESERVED * * |LB |RD |VFC|BUF|SI |EI |FE |
54  */
55
56 /* command flags and offsets*/
57 #define I40E_AQ_FLAG_DD_SHIFT   0
58 #define I40E_AQ_FLAG_CMP_SHIFT  1
59 #define I40E_AQ_FLAG_ERR_SHIFT  2
60 #define I40E_AQ_FLAG_VFE_SHIFT  3
61 #define I40E_AQ_FLAG_LB_SHIFT   9
62 #define I40E_AQ_FLAG_RD_SHIFT   10
63 #define I40E_AQ_FLAG_VFC_SHIFT  11
64 #define I40E_AQ_FLAG_BUF_SHIFT  12
65 #define I40E_AQ_FLAG_SI_SHIFT   13
66 #define I40E_AQ_FLAG_EI_SHIFT   14
67 #define I40E_AQ_FLAG_FE_SHIFT   15
68
69 #define I40E_AQ_FLAG_DD         (1 << I40E_AQ_FLAG_DD_SHIFT)  /* 0x1    */
70 #define I40E_AQ_FLAG_CMP        (1 << I40E_AQ_FLAG_CMP_SHIFT) /* 0x2    */
71 #define I40E_AQ_FLAG_ERR        (1 << I40E_AQ_FLAG_ERR_SHIFT) /* 0x4    */
72 #define I40E_AQ_FLAG_VFE        (1 << I40E_AQ_FLAG_VFE_SHIFT) /* 0x8    */
73 #define I40E_AQ_FLAG_LB         (1 << I40E_AQ_FLAG_LB_SHIFT)  /* 0x200  */
74 #define I40E_AQ_FLAG_RD         (1 << I40E_AQ_FLAG_RD_SHIFT)  /* 0x400  */
75 #define I40E_AQ_FLAG_VFC        (1 << I40E_AQ_FLAG_VFC_SHIFT) /* 0x800  */
76 #define I40E_AQ_FLAG_BUF        (1 << I40E_AQ_FLAG_BUF_SHIFT) /* 0x1000 */
77 #define I40E_AQ_FLAG_SI         (1 << I40E_AQ_FLAG_SI_SHIFT)  /* 0x2000 */
78 #define I40E_AQ_FLAG_EI         (1 << I40E_AQ_FLAG_EI_SHIFT)  /* 0x4000 */
79 #define I40E_AQ_FLAG_FE         (1 << I40E_AQ_FLAG_FE_SHIFT)  /* 0x8000 */
80
81 /* error codes */
82 enum i40e_admin_queue_err {
83         I40E_AQ_RC_OK           = 0,  /* success */
84         I40E_AQ_RC_EPERM        = 1,  /* Operation not permitted */
85         I40E_AQ_RC_ENOENT       = 2,  /* No such element */
86         I40E_AQ_RC_ESRCH        = 3,  /* Bad opcode */
87         I40E_AQ_RC_EINTR        = 4,  /* operation interrupted */
88         I40E_AQ_RC_EIO          = 5,  /* I/O error */
89         I40E_AQ_RC_ENXIO        = 6,  /* No such resource */
90         I40E_AQ_RC_E2BIG        = 7,  /* Arg too long */
91         I40E_AQ_RC_EAGAIN       = 8,  /* Try again */
92         I40E_AQ_RC_ENOMEM       = 9,  /* Out of memory */
93         I40E_AQ_RC_EACCES       = 10, /* Permission denied */
94         I40E_AQ_RC_EFAULT       = 11, /* Bad address */
95         I40E_AQ_RC_EBUSY        = 12, /* Device or resource busy */
96         I40E_AQ_RC_EEXIST       = 13, /* object already exists */
97         I40E_AQ_RC_EINVAL       = 14, /* Invalid argument */
98         I40E_AQ_RC_ENOTTY       = 15, /* Not a typewriter */
99         I40E_AQ_RC_ENOSPC       = 16, /* No space left or alloc failure */
100         I40E_AQ_RC_ENOSYS       = 17, /* Function not implemented */
101         I40E_AQ_RC_ERANGE       = 18, /* Parameter out of range */
102         I40E_AQ_RC_EFLUSHED     = 19, /* Cmd flushed due to prev cmd error */
103         I40E_AQ_RC_BAD_ADDR     = 20, /* Descriptor contains a bad pointer */
104         I40E_AQ_RC_EMODE        = 21, /* Op not allowed in current dev mode */
105         I40E_AQ_RC_EFBIG        = 22, /* File too large */
106 };
107
108 /* Admin Queue command opcodes */
109 enum i40e_admin_queue_opc {
110         /* aq commands */
111         i40e_aqc_opc_get_version        = 0x0001,
112         i40e_aqc_opc_driver_version     = 0x0002,
113         i40e_aqc_opc_queue_shutdown     = 0x0003,
114         i40e_aqc_opc_set_pf_context     = 0x0004,
115
116         /* resource ownership */
117         i40e_aqc_opc_request_resource   = 0x0008,
118         i40e_aqc_opc_release_resource   = 0x0009,
119
120         i40e_aqc_opc_list_func_capabilities     = 0x000A,
121         i40e_aqc_opc_list_dev_capabilities      = 0x000B,
122
123         /* Proxy commands */
124         i40e_aqc_opc_set_proxy_config           = 0x0104,
125         i40e_aqc_opc_set_ns_proxy_table_entry   = 0x0105,
126
127         /* LAA */
128         i40e_aqc_opc_mac_address_read   = 0x0107,
129         i40e_aqc_opc_mac_address_write  = 0x0108,
130
131         /* PXE */
132         i40e_aqc_opc_clear_pxe_mode     = 0x0110,
133
134         /* WoL commands */
135         i40e_aqc_opc_set_wol_filter     = 0x0120,
136         i40e_aqc_opc_get_wake_reason    = 0x0121,
137         i40e_aqc_opc_clear_all_wol_filters = 0x025E,
138
139         /* internal switch commands */
140         i40e_aqc_opc_get_switch_config          = 0x0200,
141         i40e_aqc_opc_add_statistics             = 0x0201,
142         i40e_aqc_opc_remove_statistics          = 0x0202,
143         i40e_aqc_opc_set_port_parameters        = 0x0203,
144         i40e_aqc_opc_get_switch_resource_alloc  = 0x0204,
145         i40e_aqc_opc_set_switch_config          = 0x0205,
146         i40e_aqc_opc_rx_ctl_reg_read            = 0x0206,
147         i40e_aqc_opc_rx_ctl_reg_write           = 0x0207,
148
149         i40e_aqc_opc_add_vsi                    = 0x0210,
150         i40e_aqc_opc_update_vsi_parameters      = 0x0211,
151         i40e_aqc_opc_get_vsi_parameters         = 0x0212,
152
153         i40e_aqc_opc_add_pv                     = 0x0220,
154         i40e_aqc_opc_update_pv_parameters       = 0x0221,
155         i40e_aqc_opc_get_pv_parameters          = 0x0222,
156
157         i40e_aqc_opc_add_veb                    = 0x0230,
158         i40e_aqc_opc_update_veb_parameters      = 0x0231,
159         i40e_aqc_opc_get_veb_parameters         = 0x0232,
160
161         i40e_aqc_opc_delete_element             = 0x0243,
162
163         i40e_aqc_opc_add_macvlan                = 0x0250,
164         i40e_aqc_opc_remove_macvlan             = 0x0251,
165         i40e_aqc_opc_add_vlan                   = 0x0252,
166         i40e_aqc_opc_remove_vlan                = 0x0253,
167         i40e_aqc_opc_set_vsi_promiscuous_modes  = 0x0254,
168         i40e_aqc_opc_add_tag                    = 0x0255,
169         i40e_aqc_opc_remove_tag                 = 0x0256,
170         i40e_aqc_opc_add_multicast_etag         = 0x0257,
171         i40e_aqc_opc_remove_multicast_etag      = 0x0258,
172         i40e_aqc_opc_update_tag                 = 0x0259,
173         i40e_aqc_opc_add_control_packet_filter  = 0x025A,
174         i40e_aqc_opc_remove_control_packet_filter       = 0x025B,
175         i40e_aqc_opc_add_cloud_filters          = 0x025C,
176         i40e_aqc_opc_remove_cloud_filters       = 0x025D,
177         i40e_aqc_opc_clear_wol_switch_filters   = 0x025E,
178         i40e_aqc_opc_replace_cloud_filters      = 0x025F,
179
180         i40e_aqc_opc_add_mirror_rule    = 0x0260,
181         i40e_aqc_opc_delete_mirror_rule = 0x0261,
182
183         /* Dynamic Device Personalization */
184         i40e_aqc_opc_write_personalization_profile      = 0x0270,
185         i40e_aqc_opc_get_personalization_profile_list   = 0x0271,
186
187         /* DCB commands */
188         i40e_aqc_opc_dcb_ignore_pfc     = 0x0301,
189         i40e_aqc_opc_dcb_updated        = 0x0302,
190         i40e_aqc_opc_set_dcb_parameters = 0x0303,
191
192         /* TX scheduler */
193         i40e_aqc_opc_configure_vsi_bw_limit             = 0x0400,
194         i40e_aqc_opc_configure_vsi_ets_sla_bw_limit     = 0x0406,
195         i40e_aqc_opc_configure_vsi_tc_bw                = 0x0407,
196         i40e_aqc_opc_query_vsi_bw_config                = 0x0408,
197         i40e_aqc_opc_query_vsi_ets_sla_config           = 0x040A,
198         i40e_aqc_opc_configure_switching_comp_bw_limit  = 0x0410,
199
200         i40e_aqc_opc_enable_switching_comp_ets                  = 0x0413,
201         i40e_aqc_opc_modify_switching_comp_ets                  = 0x0414,
202         i40e_aqc_opc_disable_switching_comp_ets                 = 0x0415,
203         i40e_aqc_opc_configure_switching_comp_ets_bw_limit      = 0x0416,
204         i40e_aqc_opc_configure_switching_comp_bw_config         = 0x0417,
205         i40e_aqc_opc_query_switching_comp_ets_config            = 0x0418,
206         i40e_aqc_opc_query_port_ets_config                      = 0x0419,
207         i40e_aqc_opc_query_switching_comp_bw_config             = 0x041A,
208         i40e_aqc_opc_suspend_port_tx                            = 0x041B,
209         i40e_aqc_opc_resume_port_tx                             = 0x041C,
210         i40e_aqc_opc_configure_partition_bw                     = 0x041D,
211         /* hmc */
212         i40e_aqc_opc_query_hmc_resource_profile = 0x0500,
213         i40e_aqc_opc_set_hmc_resource_profile   = 0x0501,
214
215         /* phy commands*/
216         i40e_aqc_opc_get_phy_abilities          = 0x0600,
217         i40e_aqc_opc_set_phy_config             = 0x0601,
218         i40e_aqc_opc_set_mac_config             = 0x0603,
219         i40e_aqc_opc_set_link_restart_an        = 0x0605,
220         i40e_aqc_opc_get_link_status            = 0x0607,
221         i40e_aqc_opc_set_phy_int_mask           = 0x0613,
222         i40e_aqc_opc_get_local_advt_reg         = 0x0614,
223         i40e_aqc_opc_set_local_advt_reg         = 0x0615,
224         i40e_aqc_opc_get_partner_advt           = 0x0616,
225         i40e_aqc_opc_set_lb_modes               = 0x0618,
226         i40e_aqc_opc_get_phy_wol_caps           = 0x0621,
227         i40e_aqc_opc_set_phy_debug              = 0x0622,
228         i40e_aqc_opc_upload_ext_phy_fm          = 0x0625,
229         i40e_aqc_opc_run_phy_activity           = 0x0626,
230         i40e_aqc_opc_set_phy_register           = 0x0628,
231         i40e_aqc_opc_get_phy_register           = 0x0629,
232
233         /* NVM commands */
234         i40e_aqc_opc_nvm_read                   = 0x0701,
235         i40e_aqc_opc_nvm_erase                  = 0x0702,
236         i40e_aqc_opc_nvm_update                 = 0x0703,
237         i40e_aqc_opc_nvm_config_read            = 0x0704,
238         i40e_aqc_opc_nvm_config_write           = 0x0705,
239         i40e_aqc_opc_nvm_progress               = 0x0706,
240         i40e_aqc_opc_oem_post_update            = 0x0720,
241         i40e_aqc_opc_thermal_sensor             = 0x0721,
242
243         /* virtualization commands */
244         i40e_aqc_opc_send_msg_to_pf             = 0x0801,
245         i40e_aqc_opc_send_msg_to_vf             = 0x0802,
246         i40e_aqc_opc_send_msg_to_peer           = 0x0803,
247
248         /* alternate structure */
249         i40e_aqc_opc_alternate_write            = 0x0900,
250         i40e_aqc_opc_alternate_write_indirect   = 0x0901,
251         i40e_aqc_opc_alternate_read             = 0x0902,
252         i40e_aqc_opc_alternate_read_indirect    = 0x0903,
253         i40e_aqc_opc_alternate_write_done       = 0x0904,
254         i40e_aqc_opc_alternate_set_mode         = 0x0905,
255         i40e_aqc_opc_alternate_clear_port       = 0x0906,
256
257         /* LLDP commands */
258         i40e_aqc_opc_lldp_get_mib       = 0x0A00,
259         i40e_aqc_opc_lldp_update_mib    = 0x0A01,
260         i40e_aqc_opc_lldp_add_tlv       = 0x0A02,
261         i40e_aqc_opc_lldp_update_tlv    = 0x0A03,
262         i40e_aqc_opc_lldp_delete_tlv    = 0x0A04,
263         i40e_aqc_opc_lldp_stop          = 0x0A05,
264         i40e_aqc_opc_lldp_start         = 0x0A06,
265         i40e_aqc_opc_get_cee_dcb_cfg    = 0x0A07,
266         i40e_aqc_opc_lldp_set_local_mib = 0x0A08,
267         i40e_aqc_opc_lldp_stop_start_spec_agent = 0x0A09,
268         i40e_aqc_opc_lldp_restore               = 0x0A0A,
269
270         /* Tunnel commands */
271         i40e_aqc_opc_add_udp_tunnel     = 0x0B00,
272         i40e_aqc_opc_del_udp_tunnel     = 0x0B01,
273         i40e_aqc_opc_set_rss_key        = 0x0B02,
274         i40e_aqc_opc_set_rss_lut        = 0x0B03,
275         i40e_aqc_opc_get_rss_key        = 0x0B04,
276         i40e_aqc_opc_get_rss_lut        = 0x0B05,
277
278         /* Async Events */
279         i40e_aqc_opc_event_lan_overflow         = 0x1001,
280
281         /* OEM commands */
282         i40e_aqc_opc_oem_parameter_change       = 0xFE00,
283         i40e_aqc_opc_oem_device_status_change   = 0xFE01,
284         i40e_aqc_opc_oem_ocsd_initialize        = 0xFE02,
285         i40e_aqc_opc_oem_ocbb_initialize        = 0xFE03,
286
287         /* debug commands */
288         i40e_aqc_opc_debug_read_reg             = 0xFF03,
289         i40e_aqc_opc_debug_write_reg            = 0xFF04,
290         i40e_aqc_opc_debug_modify_reg           = 0xFF07,
291         i40e_aqc_opc_debug_dump_internals       = 0xFF08,
292 };
293
294 /* command structures and indirect data structures */
295
296 /* Structure naming conventions:
297  * - no suffix for direct command descriptor structures
298  * - _data for indirect sent data
299  * - _resp for indirect return data (data which is both will use _data)
300  * - _completion for direct return data
301  * - _element_ for repeated elements (may also be _data or _resp)
302  *
303  * Command structures are expected to overlay the params.raw member of the basic
304  * descriptor, and as such cannot exceed 16 bytes in length.
305  */
306
307 /* This macro is used to generate a compilation error if a structure
308  * is not exactly the correct length. It gives a divide by zero error if the
309  * structure is not of the correct size, otherwise it creates an enum that is
310  * never used.
311  */
312 #define I40E_CHECK_STRUCT_LEN(n, X) enum i40e_static_assert_enum_##X \
313         { i40e_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
314
315 /* This macro is used extensively to ensure that command structures are 16
316  * bytes in length as they have to map to the raw array of that size.
317  */
318 #define I40E_CHECK_CMD_LENGTH(X)        I40E_CHECK_STRUCT_LEN(16, X)
319
320 /* internal (0x00XX) commands */
321
322 /* Get version (direct 0x0001) */
323 struct i40e_aqc_get_version {
324         __le32 rom_ver;
325         __le32 fw_build;
326         __le16 fw_major;
327         __le16 fw_minor;
328         __le16 api_major;
329         __le16 api_minor;
330 };
331
332 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_version);
333
334 /* Send driver version (indirect 0x0002) */
335 struct i40e_aqc_driver_version {
336         u8      driver_major_ver;
337         u8      driver_minor_ver;
338         u8      driver_build_ver;
339         u8      driver_subbuild_ver;
340         u8      reserved[4];
341         __le32  address_high;
342         __le32  address_low;
343 };
344
345 I40E_CHECK_CMD_LENGTH(i40e_aqc_driver_version);
346
347 /* Queue Shutdown (direct 0x0003) */
348 struct i40e_aqc_queue_shutdown {
349         __le32  driver_unloading;
350 #define I40E_AQ_DRIVER_UNLOADING        0x1
351         u8      reserved[12];
352 };
353
354 I40E_CHECK_CMD_LENGTH(i40e_aqc_queue_shutdown);
355
356 /* Set PF context (0x0004, direct) */
357 struct i40e_aqc_set_pf_context {
358         u8      pf_id;
359         u8      reserved[15];
360 };
361
362 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_pf_context);
363
364 /* Request resource ownership (direct 0x0008)
365  * Release resource ownership (direct 0x0009)
366  */
367 #define I40E_AQ_RESOURCE_NVM                    1
368 #define I40E_AQ_RESOURCE_SDP                    2
369 #define I40E_AQ_RESOURCE_ACCESS_READ            1
370 #define I40E_AQ_RESOURCE_ACCESS_WRITE           2
371 #define I40E_AQ_RESOURCE_NVM_READ_TIMEOUT       3000
372 #define I40E_AQ_RESOURCE_NVM_WRITE_TIMEOUT      180000
373
374 struct i40e_aqc_request_resource {
375         __le16  resource_id;
376         __le16  access_type;
377         __le32  timeout;
378         __le32  resource_number;
379         u8      reserved[4];
380 };
381
382 I40E_CHECK_CMD_LENGTH(i40e_aqc_request_resource);
383
384 /* Get function capabilities (indirect 0x000A)
385  * Get device capabilities (indirect 0x000B)
386  */
387 struct i40e_aqc_list_capabilites {
388         u8 command_flags;
389 #define I40E_AQ_LIST_CAP_PF_INDEX_EN    1
390         u8 pf_index;
391         u8 reserved[2];
392         __le32 count;
393         __le32 addr_high;
394         __le32 addr_low;
395 };
396
397 I40E_CHECK_CMD_LENGTH(i40e_aqc_list_capabilites);
398
399 struct i40e_aqc_list_capabilities_element_resp {
400         __le16  id;
401         u8      major_rev;
402         u8      minor_rev;
403         __le32  number;
404         __le32  logical_id;
405         __le32  phys_id;
406         u8      reserved[16];
407 };
408
409 /* list of caps */
410
411 #define I40E_AQ_CAP_ID_SWITCH_MODE      0x0001
412 #define I40E_AQ_CAP_ID_MNG_MODE         0x0002
413 #define I40E_AQ_CAP_ID_NPAR_ACTIVE      0x0003
414 #define I40E_AQ_CAP_ID_OS2BMC_CAP       0x0004
415 #define I40E_AQ_CAP_ID_FUNCTIONS_VALID  0x0005
416 #define I40E_AQ_CAP_ID_ALTERNATE_RAM    0x0006
417 #define I40E_AQ_CAP_ID_WOL_AND_PROXY    0x0008
418 #define I40E_AQ_CAP_ID_SRIOV            0x0012
419 #define I40E_AQ_CAP_ID_VF               0x0013
420 #define I40E_AQ_CAP_ID_VMDQ             0x0014
421 #define I40E_AQ_CAP_ID_8021QBG          0x0015
422 #define I40E_AQ_CAP_ID_8021QBR          0x0016
423 #define I40E_AQ_CAP_ID_VSI              0x0017
424 #define I40E_AQ_CAP_ID_DCB              0x0018
425 #define I40E_AQ_CAP_ID_FCOE             0x0021
426 #define I40E_AQ_CAP_ID_ISCSI            0x0022
427 #define I40E_AQ_CAP_ID_RSS              0x0040
428 #define I40E_AQ_CAP_ID_RXQ              0x0041
429 #define I40E_AQ_CAP_ID_TXQ              0x0042
430 #define I40E_AQ_CAP_ID_MSIX             0x0043
431 #define I40E_AQ_CAP_ID_VF_MSIX          0x0044
432 #define I40E_AQ_CAP_ID_FLOW_DIRECTOR    0x0045
433 #define I40E_AQ_CAP_ID_1588             0x0046
434 #define I40E_AQ_CAP_ID_IWARP            0x0051
435 #define I40E_AQ_CAP_ID_LED              0x0061
436 #define I40E_AQ_CAP_ID_SDP              0x0062
437 #define I40E_AQ_CAP_ID_MDIO             0x0063
438 #define I40E_AQ_CAP_ID_WSR_PROT         0x0064
439 #define I40E_AQ_CAP_ID_NVM_MGMT         0x0080
440 #define I40E_AQ_CAP_ID_FLEX10           0x00F1
441 #define I40E_AQ_CAP_ID_CEM              0x00F2
442
443 /* Set CPPM Configuration (direct 0x0103) */
444 struct i40e_aqc_cppm_configuration {
445         __le16  command_flags;
446 #define I40E_AQ_CPPM_EN_LTRC    0x0800
447 #define I40E_AQ_CPPM_EN_DMCTH   0x1000
448 #define I40E_AQ_CPPM_EN_DMCTLX  0x2000
449 #define I40E_AQ_CPPM_EN_HPTC    0x4000
450 #define I40E_AQ_CPPM_EN_DMARC   0x8000
451         __le16  ttlx;
452         __le32  dmacr;
453         __le16  dmcth;
454         u8      hptc;
455         u8      reserved;
456         __le32  pfltrc;
457 };
458
459 I40E_CHECK_CMD_LENGTH(i40e_aqc_cppm_configuration);
460
461 /* Set ARP Proxy command / response (indirect 0x0104) */
462 struct i40e_aqc_arp_proxy_data {
463         __le16  command_flags;
464 #define I40E_AQ_ARP_INIT_IPV4   0x0800
465 #define I40E_AQ_ARP_UNSUP_CTL   0x1000
466 #define I40E_AQ_ARP_ENA         0x2000
467 #define I40E_AQ_ARP_ADD_IPV4    0x4000
468 #define I40E_AQ_ARP_DEL_IPV4    0x8000
469         __le16  table_id;
470         __le32  enabled_offloads;
471 #define I40E_AQ_ARP_DIRECTED_OFFLOAD_ENABLE     0x00000020
472 #define I40E_AQ_ARP_OFFLOAD_ENABLE              0x00000800
473         __le32  ip_addr;
474         u8      mac_addr[6];
475         u8      reserved[2];
476 };
477
478 I40E_CHECK_STRUCT_LEN(0x14, i40e_aqc_arp_proxy_data);
479
480 /* Set NS Proxy Table Entry Command (indirect 0x0105) */
481 struct i40e_aqc_ns_proxy_data {
482         __le16  table_idx_mac_addr_0;
483         __le16  table_idx_mac_addr_1;
484         __le16  table_idx_ipv6_0;
485         __le16  table_idx_ipv6_1;
486         __le16  control;
487 #define I40E_AQ_NS_PROXY_ADD_0          0x0001
488 #define I40E_AQ_NS_PROXY_DEL_0          0x0002
489 #define I40E_AQ_NS_PROXY_ADD_1          0x0004
490 #define I40E_AQ_NS_PROXY_DEL_1          0x0008
491 #define I40E_AQ_NS_PROXY_ADD_IPV6_0     0x0010
492 #define I40E_AQ_NS_PROXY_DEL_IPV6_0     0x0020
493 #define I40E_AQ_NS_PROXY_ADD_IPV6_1     0x0040
494 #define I40E_AQ_NS_PROXY_DEL_IPV6_1     0x0080
495 #define I40E_AQ_NS_PROXY_COMMAND_SEQ    0x0100
496 #define I40E_AQ_NS_PROXY_INIT_IPV6_TBL  0x0200
497 #define I40E_AQ_NS_PROXY_INIT_MAC_TBL   0x0400
498 #define I40E_AQ_NS_PROXY_OFFLOAD_ENABLE 0x0800
499 #define I40E_AQ_NS_PROXY_DIRECTED_OFFLOAD_ENABLE        0x1000
500         u8      mac_addr_0[6];
501         u8      mac_addr_1[6];
502         u8      local_mac_addr[6];
503         u8      ipv6_addr_0[16]; /* Warning! spec specifies BE byte order */
504         u8      ipv6_addr_1[16];
505 };
506
507 I40E_CHECK_STRUCT_LEN(0x3c, i40e_aqc_ns_proxy_data);
508
509 /* Manage LAA Command (0x0106) - obsolete */
510 struct i40e_aqc_mng_laa {
511         __le16  command_flags;
512 #define I40E_AQ_LAA_FLAG_WR     0x8000
513         u8      reserved[2];
514         __le32  sal;
515         __le16  sah;
516         u8      reserved2[6];
517 };
518
519 I40E_CHECK_CMD_LENGTH(i40e_aqc_mng_laa);
520
521 /* Manage MAC Address Read Command (indirect 0x0107) */
522 struct i40e_aqc_mac_address_read {
523         __le16  command_flags;
524 #define I40E_AQC_LAN_ADDR_VALID         0x10
525 #define I40E_AQC_SAN_ADDR_VALID         0x20
526 #define I40E_AQC_PORT_ADDR_VALID        0x40
527 #define I40E_AQC_WOL_ADDR_VALID         0x80
528 #define I40E_AQC_MC_MAG_EN_VALID        0x100
529 #define I40E_AQC_WOL_PRESERVE_STATUS    0x200
530 #define I40E_AQC_ADDR_VALID_MASK        0x3F0
531         u8      reserved[6];
532         __le32  addr_high;
533         __le32  addr_low;
534 };
535
536 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_read);
537
538 struct i40e_aqc_mac_address_read_data {
539         u8 pf_lan_mac[6];
540         u8 pf_san_mac[6];
541         u8 port_mac[6];
542         u8 pf_wol_mac[6];
543 };
544
545 I40E_CHECK_STRUCT_LEN(24, i40e_aqc_mac_address_read_data);
546
547 /* Manage MAC Address Write Command (0x0108) */
548 struct i40e_aqc_mac_address_write {
549         __le16  command_flags;
550 #define I40E_AQC_MC_MAG_EN              0x0100
551 #define I40E_AQC_WOL_PRESERVE_ON_PFR    0x0200
552 #define I40E_AQC_WRITE_TYPE_LAA_ONLY    0x0000
553 #define I40E_AQC_WRITE_TYPE_LAA_WOL     0x4000
554 #define I40E_AQC_WRITE_TYPE_PORT        0x8000
555 #define I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG       0xC000
556 #define I40E_AQC_WRITE_TYPE_MASK        0xC000
557
558         __le16  mac_sah;
559         __le32  mac_sal;
560         u8      reserved[8];
561 };
562
563 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_write);
564
565 /* PXE commands (0x011x) */
566
567 /* Clear PXE Command and response  (direct 0x0110) */
568 struct i40e_aqc_clear_pxe {
569         u8      rx_cnt;
570         u8      reserved[15];
571 };
572
573 I40E_CHECK_CMD_LENGTH(i40e_aqc_clear_pxe);
574
575 /* Set WoL Filter (0x0120) */
576
577 struct i40e_aqc_set_wol_filter {
578         __le16 filter_index;
579 #define I40E_AQC_MAX_NUM_WOL_FILTERS    8
580 #define I40E_AQC_SET_WOL_FILTER_TYPE_MAGIC_SHIFT        15
581 #define I40E_AQC_SET_WOL_FILTER_TYPE_MAGIC_MASK (0x1 << \
582                 I40E_AQC_SET_WOL_FILTER_TYPE_MAGIC_SHIFT)
583
584 #define I40E_AQC_SET_WOL_FILTER_INDEX_SHIFT             0
585 #define I40E_AQC_SET_WOL_FILTER_INDEX_MASK      (0x7 << \
586                 I40E_AQC_SET_WOL_FILTER_INDEX_SHIFT)
587         __le16 cmd_flags;
588 #define I40E_AQC_SET_WOL_FILTER                         0x8000
589 #define I40E_AQC_SET_WOL_FILTER_NO_TCO_WOL              0x4000
590 #define I40E_AQC_SET_WOL_FILTER_WOL_PRESERVE_ON_PFR     0x2000
591 #define I40E_AQC_SET_WOL_FILTER_ACTION_CLEAR            0
592 #define I40E_AQC_SET_WOL_FILTER_ACTION_SET              1
593         __le16 valid_flags;
594 #define I40E_AQC_SET_WOL_FILTER_ACTION_VALID            0x8000
595 #define I40E_AQC_SET_WOL_FILTER_NO_TCO_ACTION_VALID     0x4000
596         u8 reserved[2];
597         __le32  address_high;
598         __le32  address_low;
599 };
600
601 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_wol_filter);
602
603 struct i40e_aqc_set_wol_filter_data {
604         u8 filter[128];
605         u8 mask[16];
606 };
607
608 I40E_CHECK_STRUCT_LEN(0x90, i40e_aqc_set_wol_filter_data);
609
610 /* Get Wake Reason (0x0121) */
611
612 struct i40e_aqc_get_wake_reason_completion {
613         u8 reserved_1[2];
614         __le16 wake_reason;
615 #define I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_MATCHED_INDEX_SHIFT      0
616 #define I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_MATCHED_INDEX_MASK (0xFF << \
617                 I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_MATCHED_INDEX_SHIFT)
618 #define I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_RESERVED_SHIFT   8
619 #define I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_RESERVED_MASK    (0xFF << \
620                 I40E_AQC_GET_WAKE_UP_REASON_WOL_REASON_RESERVED_SHIFT)
621         u8 reserved_2[12];
622 };
623
624 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_wake_reason_completion);
625
626 /* Switch configuration commands (0x02xx) */
627
628 /* Used by many indirect commands that only pass an seid and a buffer in the
629  * command
630  */
631 struct i40e_aqc_switch_seid {
632         __le16  seid;
633         u8      reserved[6];
634         __le32  addr_high;
635         __le32  addr_low;
636 };
637
638 I40E_CHECK_CMD_LENGTH(i40e_aqc_switch_seid);
639
640 /* Get Switch Configuration command (indirect 0x0200)
641  * uses i40e_aqc_switch_seid for the descriptor
642  */
643 struct i40e_aqc_get_switch_config_header_resp {
644         __le16  num_reported;
645         __le16  num_total;
646         u8      reserved[12];
647 };
648
649 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_config_header_resp);
650
651 struct i40e_aqc_switch_config_element_resp {
652         u8      element_type;
653 #define I40E_AQ_SW_ELEM_TYPE_MAC        1
654 #define I40E_AQ_SW_ELEM_TYPE_PF         2
655 #define I40E_AQ_SW_ELEM_TYPE_VF         3
656 #define I40E_AQ_SW_ELEM_TYPE_EMP        4
657 #define I40E_AQ_SW_ELEM_TYPE_BMC        5
658 #define I40E_AQ_SW_ELEM_TYPE_PV         16
659 #define I40E_AQ_SW_ELEM_TYPE_VEB        17
660 #define I40E_AQ_SW_ELEM_TYPE_PA         18
661 #define I40E_AQ_SW_ELEM_TYPE_VSI        19
662         u8      revision;
663 #define I40E_AQ_SW_ELEM_REV_1           1
664         __le16  seid;
665         __le16  uplink_seid;
666         __le16  downlink_seid;
667         u8      reserved[3];
668         u8      connection_type;
669 #define I40E_AQ_CONN_TYPE_REGULAR       0x1
670 #define I40E_AQ_CONN_TYPE_DEFAULT       0x2
671 #define I40E_AQ_CONN_TYPE_CASCADED      0x3
672         __le16  scheduler_id;
673         __le16  element_info;
674 };
675
676 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_config_element_resp);
677
678 /* Get Switch Configuration (indirect 0x0200)
679  *    an array of elements are returned in the response buffer
680  *    the first in the array is the header, remainder are elements
681  */
682 struct i40e_aqc_get_switch_config_resp {
683         struct i40e_aqc_get_switch_config_header_resp   header;
684         struct i40e_aqc_switch_config_element_resp      element[1];
685 };
686
687 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_switch_config_resp);
688
689 /* Add Statistics (direct 0x0201)
690  * Remove Statistics (direct 0x0202)
691  */
692 struct i40e_aqc_add_remove_statistics {
693         __le16  seid;
694         __le16  vlan;
695         __le16  stat_index;
696         u8      reserved[10];
697 };
698
699 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_statistics);
700
701 /* Set Port Parameters command (direct 0x0203) */
702 struct i40e_aqc_set_port_parameters {
703         __le16  command_flags;
704 #define I40E_AQ_SET_P_PARAMS_SAVE_BAD_PACKETS   1
705 #define I40E_AQ_SET_P_PARAMS_PAD_SHORT_PACKETS  2 /* must set! */
706 #define I40E_AQ_SET_P_PARAMS_DOUBLE_VLAN_ENA    4
707         __le16  bad_frame_vsi;
708 #define I40E_AQ_SET_P_PARAMS_BFRAME_SEID_SHIFT  0x0
709 #define I40E_AQ_SET_P_PARAMS_BFRAME_SEID_MASK   0x3FF
710         __le16  default_seid;        /* reserved for command */
711         u8      reserved[10];
712 };
713
714 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_port_parameters);
715
716 /* Get Switch Resource Allocation (indirect 0x0204) */
717 struct i40e_aqc_get_switch_resource_alloc {
718         u8      num_entries;         /* reserved for command */
719         u8      reserved[7];
720         __le32  addr_high;
721         __le32  addr_low;
722 };
723
724 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_resource_alloc);
725
726 /* expect an array of these structs in the response buffer */
727 struct i40e_aqc_switch_resource_alloc_element_resp {
728         u8      resource_type;
729 #define I40E_AQ_RESOURCE_TYPE_VEB               0x0
730 #define I40E_AQ_RESOURCE_TYPE_VSI               0x1
731 #define I40E_AQ_RESOURCE_TYPE_MACADDR           0x2
732 #define I40E_AQ_RESOURCE_TYPE_STAG              0x3
733 #define I40E_AQ_RESOURCE_TYPE_ETAG              0x4
734 #define I40E_AQ_RESOURCE_TYPE_MULTICAST_HASH    0x5
735 #define I40E_AQ_RESOURCE_TYPE_UNICAST_HASH      0x6
736 #define I40E_AQ_RESOURCE_TYPE_VLAN              0x7
737 #define I40E_AQ_RESOURCE_TYPE_VSI_LIST_ENTRY    0x8
738 #define I40E_AQ_RESOURCE_TYPE_ETAG_LIST_ENTRY   0x9
739 #define I40E_AQ_RESOURCE_TYPE_VLAN_STAT_POOL    0xA
740 #define I40E_AQ_RESOURCE_TYPE_MIRROR_RULE       0xB
741 #define I40E_AQ_RESOURCE_TYPE_QUEUE_SETS        0xC
742 #define I40E_AQ_RESOURCE_TYPE_VLAN_FILTERS      0xD
743 #define I40E_AQ_RESOURCE_TYPE_INNER_MAC_FILTERS 0xF
744 #define I40E_AQ_RESOURCE_TYPE_IP_FILTERS        0x10
745 #define I40E_AQ_RESOURCE_TYPE_GRE_VN_KEYS       0x11
746 #define I40E_AQ_RESOURCE_TYPE_VN2_KEYS          0x12
747 #define I40E_AQ_RESOURCE_TYPE_TUNNEL_PORTS      0x13
748         u8      reserved1;
749         __le16  guaranteed;
750         __le16  total;
751         __le16  used;
752         __le16  total_unalloced;
753         u8      reserved2[6];
754 };
755
756 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_resource_alloc_element_resp);
757
758 /* Set Switch Configuration (direct 0x0205) */
759 struct i40e_aqc_set_switch_config {
760         __le16  flags;
761 /* flags used for both fields below */
762 #define I40E_AQ_SET_SWITCH_CFG_PROMISC          0x0001
763 #define I40E_AQ_SET_SWITCH_CFG_L2_FILTER        0x0002
764 #define I40E_AQ_SET_SWITCH_CFG_HW_ATR_EVICT     0x0004
765         __le16  valid_flags;
766         /* The ethertype in switch_tag is dropped on ingress and used
767          * internally by the switch. Set this to zero for the default
768          * of 0x88a8 (802.1ad). Should be zero for firmware API
769          * versions lower than 1.7.
770          */
771         __le16  switch_tag;
772         /* The ethertypes in first_tag and second_tag are used to
773          * match the outer and inner VLAN tags (respectively) when HW
774          * double VLAN tagging is enabled via the set port parameters
775          * AQ command. Otherwise these are both ignored. Set them to
776          * zero for their defaults of 0x8100 (802.1Q). Should be zero
777          * for firmware API versions lower than 1.7.
778          */
779         __le16  first_tag;
780         __le16  second_tag;
781         /* Next byte is split into following:
782          * Bit 7    : 0 : No action, 1: Switch to mode defined by bits 6:0
783          * Bit 6    : 0 : Destination Port, 1: source port
784          * Bit 5..4 : L4 type
785          * 0: rsvd
786          * 1: TCP
787          * 2: UDP
788          * 3: Both TCP and UDP
789          * Bits 3:0 Mode
790          * 0: default mode
791          * 1: L4 port only mode
792          * 2: non-tunneled mode
793          * 3: tunneled mode
794          */
795 #define I40E_AQ_SET_SWITCH_BIT7_VALID           0x80
796
797 #define I40E_AQ_SET_SWITCH_L4_SRC_PORT          0x40
798
799 #define I40E_AQ_SET_SWITCH_L4_TYPE_RSVD         0x00
800 #define I40E_AQ_SET_SWITCH_L4_TYPE_TCP          0x10
801 #define I40E_AQ_SET_SWITCH_L4_TYPE_UDP          0x20
802 #define I40E_AQ_SET_SWITCH_L4_TYPE_BOTH         0x30
803
804 #define I40E_AQ_SET_SWITCH_MODE_DEFAULT         0x00
805 #define I40E_AQ_SET_SWITCH_MODE_L4_PORT         0x01
806 #define I40E_AQ_SET_SWITCH_MODE_NON_TUNNEL      0x02
807 #define I40E_AQ_SET_SWITCH_MODE_TUNNEL          0x03
808         u8      mode;
809         u8      rsvd5[5];
810 };
811
812 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_switch_config);
813
814 /* Read Receive control registers  (direct 0x0206)
815  * Write Receive control registers (direct 0x0207)
816  *     used for accessing Rx control registers that can be
817  *     slow and need special handling when under high Rx load
818  */
819 struct i40e_aqc_rx_ctl_reg_read_write {
820         __le32 reserved1;
821         __le32 address;
822         __le32 reserved2;
823         __le32 value;
824 };
825
826 I40E_CHECK_CMD_LENGTH(i40e_aqc_rx_ctl_reg_read_write);
827
828 /* Add VSI (indirect 0x0210)
829  *    this indirect command uses struct i40e_aqc_vsi_properties_data
830  *    as the indirect buffer (128 bytes)
831  *
832  * Update VSI (indirect 0x211)
833  *     uses the same data structure as Add VSI
834  *
835  * Get VSI (indirect 0x0212)
836  *     uses the same completion and data structure as Add VSI
837  */
838 struct i40e_aqc_add_get_update_vsi {
839         __le16  uplink_seid;
840         u8      connection_type;
841 #define I40E_AQ_VSI_CONN_TYPE_NORMAL    0x1
842 #define I40E_AQ_VSI_CONN_TYPE_DEFAULT   0x2
843 #define I40E_AQ_VSI_CONN_TYPE_CASCADED  0x3
844         u8      reserved1;
845         u8      vf_id;
846         u8      reserved2;
847         __le16  vsi_flags;
848 #define I40E_AQ_VSI_TYPE_SHIFT          0x0
849 #define I40E_AQ_VSI_TYPE_MASK           (0x3 << I40E_AQ_VSI_TYPE_SHIFT)
850 #define I40E_AQ_VSI_TYPE_VF             0x0
851 #define I40E_AQ_VSI_TYPE_VMDQ2          0x1
852 #define I40E_AQ_VSI_TYPE_PF             0x2
853 #define I40E_AQ_VSI_TYPE_EMP_MNG        0x3
854 #define I40E_AQ_VSI_FLAG_CASCADED_PV    0x4
855         __le32  addr_high;
856         __le32  addr_low;
857 };
858
859 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi);
860
861 struct i40e_aqc_add_get_update_vsi_completion {
862         __le16 seid;
863         __le16 vsi_number;
864         __le16 vsi_used;
865         __le16 vsi_free;
866         __le32 addr_high;
867         __le32 addr_low;
868 };
869
870 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi_completion);
871
872 struct i40e_aqc_vsi_properties_data {
873         /* first 96 byte are written by SW */
874         __le16  valid_sections;
875 #define I40E_AQ_VSI_PROP_SWITCH_VALID           0x0001
876 #define I40E_AQ_VSI_PROP_SECURITY_VALID         0x0002
877 #define I40E_AQ_VSI_PROP_VLAN_VALID             0x0004
878 #define I40E_AQ_VSI_PROP_CAS_PV_VALID           0x0008
879 #define I40E_AQ_VSI_PROP_INGRESS_UP_VALID       0x0010
880 #define I40E_AQ_VSI_PROP_EGRESS_UP_VALID        0x0020
881 #define I40E_AQ_VSI_PROP_QUEUE_MAP_VALID        0x0040
882 #define I40E_AQ_VSI_PROP_QUEUE_OPT_VALID        0x0080
883 #define I40E_AQ_VSI_PROP_OUTER_UP_VALID         0x0100
884 #define I40E_AQ_VSI_PROP_SCHED_VALID            0x0200
885         /* switch section */
886         __le16  switch_id; /* 12bit id combined with flags below */
887 #define I40E_AQ_VSI_SW_ID_SHIFT         0x0000
888 #define I40E_AQ_VSI_SW_ID_MASK          (0xFFF << I40E_AQ_VSI_SW_ID_SHIFT)
889 #define I40E_AQ_VSI_SW_ID_FLAG_NOT_STAG 0x1000
890 #define I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB 0x2000
891 #define I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB 0x4000
892         u8      sw_reserved[2];
893         /* security section */
894         u8      sec_flags;
895 #define I40E_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD    0x01
896 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK    0x02
897 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK     0x04
898         u8      sec_reserved;
899         /* VLAN section */
900         __le16  pvid; /* VLANS include priority bits */
901         __le16  fcoe_pvid;
902         u8      port_vlan_flags;
903 #define I40E_AQ_VSI_PVLAN_MODE_SHIFT    0x00
904 #define I40E_AQ_VSI_PVLAN_MODE_MASK     (0x03 << \
905                                          I40E_AQ_VSI_PVLAN_MODE_SHIFT)
906 #define I40E_AQ_VSI_PVLAN_MODE_TAGGED   0x01
907 #define I40E_AQ_VSI_PVLAN_MODE_UNTAGGED 0x02
908 #define I40E_AQ_VSI_PVLAN_MODE_ALL      0x03
909 #define I40E_AQ_VSI_PVLAN_INSERT_PVID   0x04
910 #define I40E_AQ_VSI_PVLAN_EMOD_SHIFT    0x03
911 #define I40E_AQ_VSI_PVLAN_EMOD_MASK     (0x3 << \
912                                          I40E_AQ_VSI_PVLAN_EMOD_SHIFT)
913 #define I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH 0x0
914 #define I40E_AQ_VSI_PVLAN_EMOD_STR_UP   0x08
915 #define I40E_AQ_VSI_PVLAN_EMOD_STR      0x10
916 #define I40E_AQ_VSI_PVLAN_EMOD_NOTHING  0x18
917         u8      pvlan_reserved[3];
918         /* ingress egress up sections */
919         __le32  ingress_table; /* bitmap, 3 bits per up */
920 #define I40E_AQ_VSI_UP_TABLE_UP0_SHIFT  0
921 #define I40E_AQ_VSI_UP_TABLE_UP0_MASK   (0x7 << \
922                                          I40E_AQ_VSI_UP_TABLE_UP0_SHIFT)
923 #define I40E_AQ_VSI_UP_TABLE_UP1_SHIFT  3
924 #define I40E_AQ_VSI_UP_TABLE_UP1_MASK   (0x7 << \
925                                          I40E_AQ_VSI_UP_TABLE_UP1_SHIFT)
926 #define I40E_AQ_VSI_UP_TABLE_UP2_SHIFT  6
927 #define I40E_AQ_VSI_UP_TABLE_UP2_MASK   (0x7 << \
928                                          I40E_AQ_VSI_UP_TABLE_UP2_SHIFT)
929 #define I40E_AQ_VSI_UP_TABLE_UP3_SHIFT  9
930 #define I40E_AQ_VSI_UP_TABLE_UP3_MASK   (0x7 << \
931                                          I40E_AQ_VSI_UP_TABLE_UP3_SHIFT)
932 #define I40E_AQ_VSI_UP_TABLE_UP4_SHIFT  12
933 #define I40E_AQ_VSI_UP_TABLE_UP4_MASK   (0x7 << \
934                                          I40E_AQ_VSI_UP_TABLE_UP4_SHIFT)
935 #define I40E_AQ_VSI_UP_TABLE_UP5_SHIFT  15
936 #define I40E_AQ_VSI_UP_TABLE_UP5_MASK   (0x7 << \
937                                          I40E_AQ_VSI_UP_TABLE_UP5_SHIFT)
938 #define I40E_AQ_VSI_UP_TABLE_UP6_SHIFT  18
939 #define I40E_AQ_VSI_UP_TABLE_UP6_MASK   (0x7 << \
940                                          I40E_AQ_VSI_UP_TABLE_UP6_SHIFT)
941 #define I40E_AQ_VSI_UP_TABLE_UP7_SHIFT  21
942 #define I40E_AQ_VSI_UP_TABLE_UP7_MASK   (0x7 << \
943                                          I40E_AQ_VSI_UP_TABLE_UP7_SHIFT)
944         __le32  egress_table;   /* same defines as for ingress table */
945         /* cascaded PV section */
946         __le16  cas_pv_tag;
947         u8      cas_pv_flags;
948 #define I40E_AQ_VSI_CAS_PV_TAGX_SHIFT           0x00
949 #define I40E_AQ_VSI_CAS_PV_TAGX_MASK            (0x03 << \
950                                                  I40E_AQ_VSI_CAS_PV_TAGX_SHIFT)
951 #define I40E_AQ_VSI_CAS_PV_TAGX_LEAVE           0x00
952 #define I40E_AQ_VSI_CAS_PV_TAGX_REMOVE          0x01
953 #define I40E_AQ_VSI_CAS_PV_TAGX_COPY            0x02
954 #define I40E_AQ_VSI_CAS_PV_INSERT_TAG           0x10
955 #define I40E_AQ_VSI_CAS_PV_ETAG_PRUNE           0x20
956 #define I40E_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG      0x40
957         u8      cas_pv_reserved;
958         /* queue mapping section */
959         __le16  mapping_flags;
960 #define I40E_AQ_VSI_QUE_MAP_CONTIG      0x0
961 #define I40E_AQ_VSI_QUE_MAP_NONCONTIG   0x1
962         __le16  queue_mapping[16];
963 #define I40E_AQ_VSI_QUEUE_SHIFT         0x0
964 #define I40E_AQ_VSI_QUEUE_MASK          (0x7FF << I40E_AQ_VSI_QUEUE_SHIFT)
965         __le16  tc_mapping[8];
966 #define I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT 0
967 #define I40E_AQ_VSI_TC_QUE_OFFSET_MASK  (0x1FF << \
968                                          I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT)
969 #define I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT 9
970 #define I40E_AQ_VSI_TC_QUE_NUMBER_MASK  (0x7 << \
971                                          I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT)
972         /* queueing option section */
973         u8      queueing_opt_flags;
974 #define I40E_AQ_VSI_QUE_OPT_MULTICAST_UDP_ENA   0x04
975 #define I40E_AQ_VSI_QUE_OPT_UNICAST_UDP_ENA     0x08
976 #define I40E_AQ_VSI_QUE_OPT_TCP_ENA     0x10
977 #define I40E_AQ_VSI_QUE_OPT_FCOE_ENA    0x20
978 #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_PF  0x00
979 #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI 0x40
980         u8      queueing_opt_reserved[3];
981         /* scheduler section */
982         u8      up_enable_bits;
983         u8      sched_reserved;
984         /* outer up section */
985         __le32  outer_up_table; /* same structure and defines as ingress tbl */
986         u8      cmd_reserved[8];
987         /* last 32 bytes are written by FW */
988         __le16  qs_handle[8];
989 #define I40E_AQ_VSI_QS_HANDLE_INVALID   0xFFFF
990         __le16  stat_counter_idx;
991         __le16  sched_id;
992         u8      resp_reserved[12];
993 };
994
995 I40E_CHECK_STRUCT_LEN(128, i40e_aqc_vsi_properties_data);
996
997 /* Add Port Virtualizer (direct 0x0220)
998  * also used for update PV (direct 0x0221) but only flags are used
999  * (IS_CTRL_PORT only works on add PV)
1000  */
1001 struct i40e_aqc_add_update_pv {
1002         __le16  command_flags;
1003 #define I40E_AQC_PV_FLAG_PV_TYPE                0x1
1004 #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_STAG_EN    0x2
1005 #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_ETAG_EN    0x4
1006 #define I40E_AQC_PV_FLAG_IS_CTRL_PORT           0x8
1007         __le16  uplink_seid;
1008         __le16  connected_seid;
1009         u8      reserved[10];
1010 };
1011
1012 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv);
1013
1014 struct i40e_aqc_add_update_pv_completion {
1015         /* reserved for update; for add also encodes error if rc == ENOSPC */
1016         __le16  pv_seid;
1017 #define I40E_AQC_PV_ERR_FLAG_NO_PV      0x1
1018 #define I40E_AQC_PV_ERR_FLAG_NO_SCHED   0x2
1019 #define I40E_AQC_PV_ERR_FLAG_NO_COUNTER 0x4
1020 #define I40E_AQC_PV_ERR_FLAG_NO_ENTRY   0x8
1021         u8      reserved[14];
1022 };
1023
1024 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv_completion);
1025
1026 /* Get PV Params (direct 0x0222)
1027  * uses i40e_aqc_switch_seid for the descriptor
1028  */
1029
1030 struct i40e_aqc_get_pv_params_completion {
1031         __le16  seid;
1032         __le16  default_stag;
1033         __le16  pv_flags; /* same flags as add_pv */
1034 #define I40E_AQC_GET_PV_PV_TYPE                 0x1
1035 #define I40E_AQC_GET_PV_FRWD_UNKNOWN_STAG       0x2
1036 #define I40E_AQC_GET_PV_FRWD_UNKNOWN_ETAG       0x4
1037         u8      reserved[8];
1038         __le16  default_port_seid;
1039 };
1040
1041 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_pv_params_completion);
1042
1043 /* Add VEB (direct 0x0230) */
1044 struct i40e_aqc_add_veb {
1045         __le16  uplink_seid;
1046         __le16  downlink_seid;
1047         __le16  veb_flags;
1048 #define I40E_AQC_ADD_VEB_FLOATING               0x1
1049 #define I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT        1
1050 #define I40E_AQC_ADD_VEB_PORT_TYPE_MASK         (0x3 << \
1051                                         I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT)
1052 #define I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT      0x2
1053 #define I40E_AQC_ADD_VEB_PORT_TYPE_DATA         0x4
1054 #define I40E_AQC_ADD_VEB_ENABLE_L2_FILTER       0x8     /* deprecated */
1055 #define I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS   0x10
1056         u8      enable_tcs;
1057         u8      reserved[9];
1058 };
1059
1060 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb);
1061
1062 struct i40e_aqc_add_veb_completion {
1063         u8      reserved[6];
1064         __le16  switch_seid;
1065         /* also encodes error if rc == ENOSPC; codes are the same as add_pv */
1066         __le16  veb_seid;
1067 #define I40E_AQC_VEB_ERR_FLAG_NO_VEB            0x1
1068 #define I40E_AQC_VEB_ERR_FLAG_NO_SCHED          0x2
1069 #define I40E_AQC_VEB_ERR_FLAG_NO_COUNTER        0x4
1070 #define I40E_AQC_VEB_ERR_FLAG_NO_ENTRY          0x8
1071         __le16  statistic_index;
1072         __le16  vebs_used;
1073         __le16  vebs_free;
1074 };
1075
1076 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb_completion);
1077
1078 /* Get VEB Parameters (direct 0x0232)
1079  * uses i40e_aqc_switch_seid for the descriptor
1080  */
1081 struct i40e_aqc_get_veb_parameters_completion {
1082         __le16  seid;
1083         __le16  switch_id;
1084         __le16  veb_flags; /* only the first/last flags from 0x0230 is valid */
1085         __le16  statistic_index;
1086         __le16  vebs_used;
1087         __le16  vebs_free;
1088         u8      reserved[4];
1089 };
1090
1091 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_veb_parameters_completion);
1092
1093 /* Delete Element (direct 0x0243)
1094  * uses the generic i40e_aqc_switch_seid
1095  */
1096
1097 /* Add MAC-VLAN (indirect 0x0250) */
1098
1099 /* used for the command for most vlan commands */
1100 struct i40e_aqc_macvlan {
1101         __le16  num_addresses;
1102         __le16  seid[3];
1103 #define I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT     0
1104 #define I40E_AQC_MACVLAN_CMD_SEID_NUM_MASK      (0x3FF << \
1105                                         I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
1106 #define I40E_AQC_MACVLAN_CMD_SEID_VALID         0x8000
1107         __le32  addr_high;
1108         __le32  addr_low;
1109 };
1110
1111 I40E_CHECK_CMD_LENGTH(i40e_aqc_macvlan);
1112
1113 /* indirect data for command and response */
1114 struct i40e_aqc_add_macvlan_element_data {
1115         u8      mac_addr[6];
1116         __le16  vlan_tag;
1117         __le16  flags;
1118 #define I40E_AQC_MACVLAN_ADD_PERFECT_MATCH      0x0001
1119 #define I40E_AQC_MACVLAN_ADD_HASH_MATCH         0x0002
1120 #define I40E_AQC_MACVLAN_ADD_IGNORE_VLAN        0x0004
1121 #define I40E_AQC_MACVLAN_ADD_TO_QUEUE           0x0008
1122 #define I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC     0x0010
1123         __le16  queue_number;
1124 #define I40E_AQC_MACVLAN_CMD_QUEUE_SHIFT        0
1125 #define I40E_AQC_MACVLAN_CMD_QUEUE_MASK         (0x7FF << \
1126                                         I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
1127         /* response section */
1128         u8      match_method;
1129 #define I40E_AQC_MM_PERFECT_MATCH       0x01
1130 #define I40E_AQC_MM_HASH_MATCH          0x02
1131 #define I40E_AQC_MM_ERR_NO_RES          0xFF
1132         u8      reserved1[3];
1133 };
1134
1135 struct i40e_aqc_add_remove_macvlan_completion {
1136         __le16 perfect_mac_used;
1137         __le16 perfect_mac_free;
1138         __le16 unicast_hash_free;
1139         __le16 multicast_hash_free;
1140         __le32 addr_high;
1141         __le32 addr_low;
1142 };
1143
1144 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_macvlan_completion);
1145
1146 /* Remove MAC-VLAN (indirect 0x0251)
1147  * uses i40e_aqc_macvlan for the descriptor
1148  * data points to an array of num_addresses of elements
1149  */
1150
1151 struct i40e_aqc_remove_macvlan_element_data {
1152         u8      mac_addr[6];
1153         __le16  vlan_tag;
1154         u8      flags;
1155 #define I40E_AQC_MACVLAN_DEL_PERFECT_MATCH      0x01
1156 #define I40E_AQC_MACVLAN_DEL_HASH_MATCH         0x02
1157 #define I40E_AQC_MACVLAN_DEL_IGNORE_VLAN        0x08
1158 #define I40E_AQC_MACVLAN_DEL_ALL_VSIS           0x10
1159         u8      reserved[3];
1160         /* reply section */
1161         u8      error_code;
1162 #define I40E_AQC_REMOVE_MACVLAN_SUCCESS         0x0
1163 #define I40E_AQC_REMOVE_MACVLAN_FAIL            0xFF
1164         u8      reply_reserved[3];
1165 };
1166
1167 /* Add VLAN (indirect 0x0252)
1168  * Remove VLAN (indirect 0x0253)
1169  * use the generic i40e_aqc_macvlan for the command
1170  */
1171 struct i40e_aqc_add_remove_vlan_element_data {
1172         __le16  vlan_tag;
1173         u8      vlan_flags;
1174 /* flags for add VLAN */
1175 #define I40E_AQC_ADD_VLAN_LOCAL                 0x1
1176 #define I40E_AQC_ADD_PVLAN_TYPE_SHIFT           1
1177 #define I40E_AQC_ADD_PVLAN_TYPE_MASK    (0x3 << I40E_AQC_ADD_PVLAN_TYPE_SHIFT)
1178 #define I40E_AQC_ADD_PVLAN_TYPE_REGULAR         0x0
1179 #define I40E_AQC_ADD_PVLAN_TYPE_PRIMARY         0x2
1180 #define I40E_AQC_ADD_PVLAN_TYPE_SECONDARY       0x4
1181 #define I40E_AQC_VLAN_PTYPE_SHIFT               3
1182 #define I40E_AQC_VLAN_PTYPE_MASK        (0x3 << I40E_AQC_VLAN_PTYPE_SHIFT)
1183 #define I40E_AQC_VLAN_PTYPE_REGULAR_VSI         0x0
1184 #define I40E_AQC_VLAN_PTYPE_PROMISC_VSI         0x8
1185 #define I40E_AQC_VLAN_PTYPE_COMMUNITY_VSI       0x10
1186 #define I40E_AQC_VLAN_PTYPE_ISOLATED_VSI        0x18
1187 /* flags for remove VLAN */
1188 #define I40E_AQC_REMOVE_VLAN_ALL        0x1
1189         u8      reserved;
1190         u8      result;
1191 /* flags for add VLAN */
1192 #define I40E_AQC_ADD_VLAN_SUCCESS       0x0
1193 #define I40E_AQC_ADD_VLAN_FAIL_REQUEST  0xFE
1194 #define I40E_AQC_ADD_VLAN_FAIL_RESOURCE 0xFF
1195 /* flags for remove VLAN */
1196 #define I40E_AQC_REMOVE_VLAN_SUCCESS    0x0
1197 #define I40E_AQC_REMOVE_VLAN_FAIL       0xFF
1198         u8      reserved1[3];
1199 };
1200
1201 struct i40e_aqc_add_remove_vlan_completion {
1202         u8      reserved[4];
1203         __le16  vlans_used;
1204         __le16  vlans_free;
1205         __le32  addr_high;
1206         __le32  addr_low;
1207 };
1208
1209 /* Set VSI Promiscuous Modes (direct 0x0254) */
1210 struct i40e_aqc_set_vsi_promiscuous_modes {
1211         __le16  promiscuous_flags;
1212         __le16  valid_flags;
1213 /* flags used for both fields above */
1214 #define I40E_AQC_SET_VSI_PROMISC_UNICAST        0x01
1215 #define I40E_AQC_SET_VSI_PROMISC_MULTICAST      0x02
1216 #define I40E_AQC_SET_VSI_PROMISC_BROADCAST      0x04
1217 #define I40E_AQC_SET_VSI_DEFAULT                0x08
1218 #define I40E_AQC_SET_VSI_PROMISC_VLAN           0x10
1219 #define I40E_AQC_SET_VSI_PROMISC_TX             0x8000
1220         __le16  seid;
1221 #define I40E_AQC_VSI_PROM_CMD_SEID_MASK         0x3FF
1222         __le16  vlan_tag;
1223 #define I40E_AQC_SET_VSI_VLAN_MASK              0x0FFF
1224 #define I40E_AQC_SET_VSI_VLAN_VALID             0x8000
1225         u8      reserved[8];
1226 };
1227
1228 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
1229
1230 /* Add S/E-tag command (direct 0x0255)
1231  * Uses generic i40e_aqc_add_remove_tag_completion for completion
1232  */
1233 struct i40e_aqc_add_tag {
1234         __le16  flags;
1235 #define I40E_AQC_ADD_TAG_FLAG_TO_QUEUE          0x0001
1236         __le16  seid;
1237 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT     0
1238 #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_MASK      (0x3FF << \
1239                                         I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT)
1240         __le16  tag;
1241         __le16  queue_number;
1242         u8      reserved[8];
1243 };
1244
1245 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
1246
1247 struct i40e_aqc_add_remove_tag_completion {
1248         u8      reserved[12];
1249         __le16  tags_used;
1250         __le16  tags_free;
1251 };
1252
1253 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
1254
1255 /* Remove S/E-tag command (direct 0x0256)
1256  * Uses generic i40e_aqc_add_remove_tag_completion for completion
1257  */
1258 struct i40e_aqc_remove_tag {
1259         __le16  seid;
1260 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT  0
1261 #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_MASK   (0x3FF << \
1262                                         I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT)
1263         __le16  tag;
1264         u8      reserved[12];
1265 };
1266
1267 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
1268
1269 /* Add multicast E-Tag (direct 0x0257)
1270  * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
1271  * and no external data
1272  */
1273 struct i40e_aqc_add_remove_mcast_etag {
1274         __le16  pv_seid;
1275         __le16  etag;
1276         u8      num_unicast_etags;
1277         u8      reserved[3];
1278         __le32  addr_high;          /* address of array of 2-byte s-tags */
1279         __le32  addr_low;
1280 };
1281
1282 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
1283
1284 struct i40e_aqc_add_remove_mcast_etag_completion {
1285         u8      reserved[4];
1286         __le16  mcast_etags_used;
1287         __le16  mcast_etags_free;
1288         __le32  addr_high;
1289         __le32  addr_low;
1290
1291 };
1292
1293 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
1294
1295 /* Update S/E-Tag (direct 0x0259) */
1296 struct i40e_aqc_update_tag {
1297         __le16  seid;
1298 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT  0
1299 #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_MASK   (0x3FF << \
1300                                         I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT)
1301         __le16  old_tag;
1302         __le16  new_tag;
1303         u8      reserved[10];
1304 };
1305
1306 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
1307
1308 struct i40e_aqc_update_tag_completion {
1309         u8      reserved[12];
1310         __le16  tags_used;
1311         __le16  tags_free;
1312 };
1313
1314 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
1315
1316 /* Add Control Packet filter (direct 0x025A)
1317  * Remove Control Packet filter (direct 0x025B)
1318  * uses the i40e_aqc_add_oveb_cloud,
1319  * and the generic direct completion structure
1320  */
1321 struct i40e_aqc_add_remove_control_packet_filter {
1322         u8      mac[6];
1323         __le16  etype;
1324         __le16  flags;
1325 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC    0x0001
1326 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP          0x0002
1327 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE      0x0004
1328 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX            0x0008
1329 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX            0x0000
1330         __le16  seid;
1331 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT  0
1332 #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_MASK   (0x3FF << \
1333                                 I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT)
1334         __le16  queue;
1335         u8      reserved[2];
1336 };
1337
1338 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
1339
1340 struct i40e_aqc_add_remove_control_packet_filter_completion {
1341         __le16  mac_etype_used;
1342         __le16  etype_used;
1343         __le16  mac_etype_free;
1344         __le16  etype_free;
1345         u8      reserved[8];
1346 };
1347
1348 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
1349
1350 /* Add Cloud filters (indirect 0x025C)
1351  * Remove Cloud filters (indirect 0x025D)
1352  * uses the i40e_aqc_add_remove_cloud_filters,
1353  * and the generic indirect completion structure
1354  */
1355 struct i40e_aqc_add_remove_cloud_filters {
1356         u8      num_filters;
1357         u8      reserved;
1358         __le16  seid;
1359 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT   0
1360 #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_MASK    (0x3FF << \
1361                                         I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT)
1362         u8      big_buffer_flag;
1363 #define I40E_AQC_ADD_REM_CLOUD_CMD_BIG_BUFFER   1
1364 #define I40E_AQC_ADD_CLOUD_CMD_BB               1
1365         u8      reserved2[3];
1366         __le32  addr_high;
1367         __le32  addr_low;
1368 };
1369
1370 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
1371
1372 struct i40e_aqc_cloud_filters_element_data {
1373         u8      outer_mac[6];
1374         u8      inner_mac[6];
1375         __le16  inner_vlan;
1376         union {
1377                 struct {
1378                         u8 reserved[12];
1379                         u8 data[4];
1380                 } v4;
1381                 struct {
1382                         u8 data[16];
1383                 } v6;
1384                 struct {
1385                         __le16 data[8];
1386                 } raw_v6;
1387         } ipaddr;
1388         __le16  flags;
1389 #define I40E_AQC_ADD_CLOUD_FILTER_SHIFT                 0
1390 #define I40E_AQC_ADD_CLOUD_FILTER_MASK  (0x3F << \
1391                                         I40E_AQC_ADD_CLOUD_FILTER_SHIFT)
1392 /* 0x0000 reserved */
1393 #define I40E_AQC_ADD_CLOUD_FILTER_OIP                   0x0001
1394 /* 0x0002 reserved */
1395 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN            0x0003
1396 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID     0x0004
1397 /* 0x0005 reserved */
1398 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID           0x0006
1399 /* 0x0007 reserved */
1400 /* 0x0008 reserved */
1401 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC                  0x0009
1402 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC                  0x000A
1403 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC      0x000B
1404 #define I40E_AQC_ADD_CLOUD_FILTER_IIP                   0x000C
1405 /* 0x0010 to 0x0017 is for custom filters */
1406 #define I40E_AQC_ADD_CLOUD_FILTER_IP_PORT               0x0010 /* Dest IP + L4 Port */
1407 #define I40E_AQC_ADD_CLOUD_FILTER_MAC_PORT              0x0011 /* Dest MAC + L4 Port */
1408 #define I40E_AQC_ADD_CLOUD_FILTER_MAC_VLAN_PORT         0x0012 /* Dest MAC + VLAN + L4 Port */
1409
1410 #define I40E_AQC_ADD_CLOUD_FLAGS_TO_QUEUE               0x0080
1411 #define I40E_AQC_ADD_CLOUD_VNK_SHIFT                    6
1412 #define I40E_AQC_ADD_CLOUD_VNK_MASK                     0x00C0
1413 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV4                   0
1414 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV6                   0x0100
1415
1416 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT               9
1417 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK                0x1E00
1418 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN               0
1419 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC          1
1420 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE              2
1421 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_IP                  3
1422 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_RESERVED            4
1423 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_VXLAN_GPE           5
1424
1425 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_MAC       0x2000
1426 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_INNER_MAC       0x4000
1427 #define I40E_AQC_ADD_CLOUD_FLAGS_SHARED_OUTER_IP        0x8000
1428
1429         __le32  tenant_id;
1430         u8      reserved[4];
1431         __le16  queue_number;
1432 #define I40E_AQC_ADD_CLOUD_QUEUE_SHIFT          0
1433 #define I40E_AQC_ADD_CLOUD_QUEUE_MASK           (0x7FF << \
1434                                                  I40E_AQC_ADD_CLOUD_QUEUE_SHIFT)
1435         u8      reserved2[14];
1436         /* response section */
1437         u8      allocation_result;
1438 #define I40E_AQC_ADD_CLOUD_FILTER_SUCCESS       0x0
1439 #define I40E_AQC_ADD_CLOUD_FILTER_FAIL          0xFF
1440         u8      response_reserved[7];
1441 };
1442
1443 /* i40e_aqc_add_rm_cloud_filt_elem_ext is used when
1444  * I40E_AQC_ADD_REM_CLOUD_CMD_BIG_BUFFER flag is set.
1445  */
1446 struct i40e_aqc_add_rm_cloud_filt_elem_ext {
1447         struct i40e_aqc_cloud_filters_element_data element;
1448         u16     general_fields[32];
1449 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD0    0
1450 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD1    1
1451 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD2    2
1452 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD0    3
1453 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD1    4
1454 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD2    5
1455 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD0    6
1456 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD1    7
1457 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD2    8
1458 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD0    9
1459 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD1    10
1460 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD2    11
1461 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD0    12
1462 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD1    13
1463 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD2    14
1464 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD0    15
1465 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD1    16
1466 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD2    17
1467 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD3    18
1468 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD4    19
1469 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD5    20
1470 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD6    21
1471 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD7    22
1472 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD0    23
1473 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD1    24
1474 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD2    25
1475 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD3    26
1476 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD4    27
1477 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD5    28
1478 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD6    29
1479 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD7    30
1480 };
1481
1482 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_cloud_filters_element_data);
1483
1484 /* i40e_aqc_cloud_filters_element_bb is used when
1485  * I40E_AQC_CLOUD_CMD_BB flag is set.
1486  */
1487 struct i40e_aqc_cloud_filters_element_bb {
1488         struct i40e_aqc_cloud_filters_element_data element;
1489         u16     general_fields[32];
1490 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD0    0
1491 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD1    1
1492 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X10_WORD2    2
1493 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD0    3
1494 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD1    4
1495 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X11_WORD2    5
1496 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD0    6
1497 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD1    7
1498 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X12_WORD2    8
1499 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD0    9
1500 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD1    10
1501 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X13_WORD2    11
1502 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD0    12
1503 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD1    13
1504 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X14_WORD2    14
1505 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD0    15
1506 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD1    16
1507 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD2    17
1508 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD3    18
1509 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD4    19
1510 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD5    20
1511 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD6    21
1512 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD7    22
1513 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD0    23
1514 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD1    24
1515 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD2    25
1516 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD3    26
1517 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD4    27
1518 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD5    28
1519 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD6    29
1520 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X17_WORD7    30
1521 };
1522
1523 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_cloud_filters_element_bb);
1524
1525 struct i40e_aqc_remove_cloud_filters_completion {
1526         __le16 perfect_ovlan_used;
1527         __le16 perfect_ovlan_free;
1528         __le16 vlan_used;
1529         __le16 vlan_free;
1530         __le32 addr_high;
1531         __le32 addr_low;
1532 };
1533
1534 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
1535
1536 /* Replace filter Command 0x025F
1537  * uses the i40e_aqc_replace_cloud_filters,
1538  * and the generic indirect completion structure
1539  */
1540 struct i40e_filter_data {
1541         u8 filter_type;
1542         u8 input[3];
1543 };
1544
1545 I40E_CHECK_STRUCT_LEN(4, i40e_filter_data);
1546
1547 struct i40e_aqc_replace_cloud_filters_cmd {
1548         u8      valid_flags;
1549 #define I40E_AQC_REPLACE_L1_FILTER              0x0
1550 #define I40E_AQC_REPLACE_CLOUD_FILTER           0x1
1551 #define I40E_AQC_GET_CLOUD_FILTERS              0x2
1552 #define I40E_AQC_MIRROR_CLOUD_FILTER            0x4
1553 #define I40E_AQC_HIGH_PRIORITY_CLOUD_FILTER     0x8
1554         u8      old_filter_type;
1555         u8      new_filter_type;
1556         u8      tr_bit;
1557         u8      tr_bit2;
1558         u8      reserved[3];
1559         __le32 addr_high;
1560         __le32 addr_low;
1561 };
1562
1563 I40E_CHECK_CMD_LENGTH(i40e_aqc_replace_cloud_filters_cmd);
1564
1565 struct i40e_aqc_replace_cloud_filters_cmd_buf {
1566         u8      data[32];
1567 /* Filter type INPUT codes*/
1568 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_ENTRIES_MAX    3
1569 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_VALIDATED      (1 << 7UL)
1570
1571 /* Field Vector offsets */
1572 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_MAC_DA              0
1573 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_STAG_ETH            6
1574 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_STAG                7
1575 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_VLAN                8
1576 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_STAG_OVLAN          9
1577 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_STAG_IVLAN          10
1578 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_TUNNLE_KEY          11
1579 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_IMAC                12
1580 /* big FLU */
1581 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_IP_DA               14
1582 /* big FLU */
1583 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_OIP_DA              15
1584
1585 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_INNER_VLAN          37
1586         struct i40e_filter_data filters[8];
1587 };
1588
1589 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_replace_cloud_filters_cmd_buf);
1590
1591 /* Add Mirror Rule (indirect or direct 0x0260)
1592  * Delete Mirror Rule (indirect or direct 0x0261)
1593  * note: some rule types (4,5) do not use an external buffer.
1594  *       take care to set the flags correctly.
1595  */
1596 struct i40e_aqc_add_delete_mirror_rule {
1597         __le16 seid;
1598         __le16 rule_type;
1599 #define I40E_AQC_MIRROR_RULE_TYPE_SHIFT         0
1600 #define I40E_AQC_MIRROR_RULE_TYPE_MASK          (0x7 << \
1601                                                 I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
1602 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_INGRESS 1
1603 #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_EGRESS  2
1604 #define I40E_AQC_MIRROR_RULE_TYPE_VLAN          3
1605 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS   4
1606 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS    5
1607         __le16 num_entries;
1608         __le16 destination;  /* VSI for add, rule id for delete */
1609         __le32 addr_high;    /* address of array of 2-byte VSI or VLAN ids */
1610         __le32 addr_low;
1611 };
1612
1613 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
1614
1615 struct i40e_aqc_add_delete_mirror_rule_completion {
1616         u8      reserved[2];
1617         __le16  rule_id;  /* only used on add */
1618         __le16  mirror_rules_used;
1619         __le16  mirror_rules_free;
1620         __le32  addr_high;
1621         __le32  addr_low;
1622 };
1623
1624 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
1625
1626 /* Dynamic Device Personalization */
1627 struct i40e_aqc_write_personalization_profile {
1628         u8      flags;
1629         u8      reserved[3];
1630         __le32  profile_track_id;
1631         __le32  addr_high;
1632         __le32  addr_low;
1633 };
1634
1635 I40E_CHECK_CMD_LENGTH(i40e_aqc_write_personalization_profile);
1636
1637 struct i40e_aqc_write_ddp_resp {
1638         __le32 error_offset;
1639         __le32 error_info;
1640         __le32 addr_high;
1641         __le32 addr_low;
1642 };
1643
1644 struct i40e_aqc_get_applied_profiles {
1645         u8      flags;
1646 #define I40E_AQC_GET_DDP_GET_CONF       0x1
1647 #define I40E_AQC_GET_DDP_GET_RDPU_CONF  0x2
1648         u8      rsv[3];
1649         __le32  reserved;
1650         __le32  addr_high;
1651         __le32  addr_low;
1652 };
1653
1654 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_applied_profiles);
1655
1656 /* DCB 0x03xx*/
1657
1658 /* PFC Ignore (direct 0x0301)
1659  *    the command and response use the same descriptor structure
1660  */
1661 struct i40e_aqc_pfc_ignore {
1662         u8      tc_bitmap;
1663         u8      command_flags; /* unused on response */
1664 #define I40E_AQC_PFC_IGNORE_SET         0x80
1665 #define I40E_AQC_PFC_IGNORE_CLEAR       0x0
1666         u8      reserved[14];
1667 };
1668
1669 I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
1670
1671 /* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
1672  * with no parameters
1673  */
1674
1675 /* TX scheduler 0x04xx */
1676
1677 /* Almost all the indirect commands use
1678  * this generic struct to pass the SEID in param0
1679  */
1680 struct i40e_aqc_tx_sched_ind {
1681         __le16  vsi_seid;
1682         u8      reserved[6];
1683         __le32  addr_high;
1684         __le32  addr_low;
1685 };
1686
1687 I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
1688
1689 /* Several commands respond with a set of queue set handles */
1690 struct i40e_aqc_qs_handles_resp {
1691         __le16 qs_handles[8];
1692 };
1693
1694 /* Configure VSI BW limits (direct 0x0400) */
1695 struct i40e_aqc_configure_vsi_bw_limit {
1696         __le16  vsi_seid;
1697         u8      reserved[2];
1698         __le16  credit;
1699         u8      reserved1[2];
1700         u8      max_credit; /* 0-3, limit = 2^max */
1701         u8      reserved2[7];
1702 };
1703
1704 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
1705
1706 /* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
1707  *    responds with i40e_aqc_qs_handles_resp
1708  */
1709 struct i40e_aqc_configure_vsi_ets_sla_bw_data {
1710         u8      tc_valid_bits;
1711         u8      reserved[15];
1712         __le16  tc_bw_credits[8]; /* FW writesback QS handles here */
1713
1714         /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1715         __le16  tc_bw_max[2];
1716         u8      reserved1[28];
1717 };
1718
1719 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
1720
1721 /* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
1722  *    responds with i40e_aqc_qs_handles_resp
1723  */
1724 struct i40e_aqc_configure_vsi_tc_bw_data {
1725         u8      tc_valid_bits;
1726         u8      reserved[3];
1727         u8      tc_bw_credits[8];
1728         u8      reserved1[4];
1729         __le16  qs_handles[8];
1730 };
1731
1732 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
1733
1734 /* Query vsi bw configuration (indirect 0x0408) */
1735 struct i40e_aqc_query_vsi_bw_config_resp {
1736         u8      tc_valid_bits;
1737         u8      tc_suspended_bits;
1738         u8      reserved[14];
1739         __le16  qs_handles[8];
1740         u8      reserved1[4];
1741         __le16  port_bw_limit;
1742         u8      reserved2[2];
1743         u8      max_bw; /* 0-3, limit = 2^max */
1744         u8      reserved3[23];
1745 };
1746
1747 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
1748
1749 /* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
1750 struct i40e_aqc_query_vsi_ets_sla_config_resp {
1751         u8      tc_valid_bits;
1752         u8      reserved[3];
1753         u8      share_credits[8];
1754         __le16  credits[8];
1755
1756         /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1757         __le16  tc_bw_max[2];
1758 };
1759
1760 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
1761
1762 /* Configure Switching Component Bandwidth Limit (direct 0x0410) */
1763 struct i40e_aqc_configure_switching_comp_bw_limit {
1764         __le16  seid;
1765         u8      reserved[2];
1766         __le16  credit;
1767         u8      reserved1[2];
1768         u8      max_bw; /* 0-3, limit = 2^max */
1769         u8      reserved2[7];
1770 };
1771
1772 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
1773
1774 /* Enable  Physical Port ETS (indirect 0x0413)
1775  * Modify  Physical Port ETS (indirect 0x0414)
1776  * Disable Physical Port ETS (indirect 0x0415)
1777  */
1778 struct i40e_aqc_configure_switching_comp_ets_data {
1779         u8      reserved[4];
1780         u8      tc_valid_bits;
1781         u8      seepage;
1782 #define I40E_AQ_ETS_SEEPAGE_EN_MASK     0x1
1783         u8      tc_strict_priority_flags;
1784         u8      reserved1[17];
1785         u8      tc_bw_share_credits[8];
1786         u8      reserved2[96];
1787 };
1788
1789 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
1790
1791 /* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
1792 struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
1793         u8      tc_valid_bits;
1794         u8      reserved[15];
1795         __le16  tc_bw_credit[8];
1796
1797         /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1798         __le16  tc_bw_max[2];
1799         u8      reserved1[28];
1800 };
1801
1802 I40E_CHECK_STRUCT_LEN(0x40,
1803                       i40e_aqc_configure_switching_comp_ets_bw_limit_data);
1804
1805 /* Configure Switching Component Bandwidth Allocation per Tc
1806  * (indirect 0x0417)
1807  */
1808 struct i40e_aqc_configure_switching_comp_bw_config_data {
1809         u8      tc_valid_bits;
1810         u8      reserved[2];
1811         u8      absolute_credits; /* bool */
1812         u8      tc_bw_share_credits[8];
1813         u8      reserved1[20];
1814 };
1815
1816 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
1817
1818 /* Query Switching Component Configuration (indirect 0x0418) */
1819 struct i40e_aqc_query_switching_comp_ets_config_resp {
1820         u8      tc_valid_bits;
1821         u8      reserved[35];
1822         __le16  port_bw_limit;
1823         u8      reserved1[2];
1824         u8      tc_bw_max; /* 0-3, limit = 2^max */
1825         u8      reserved2[23];
1826 };
1827
1828 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
1829
1830 /* Query PhysicalPort ETS Configuration (indirect 0x0419) */
1831 struct i40e_aqc_query_port_ets_config_resp {
1832         u8      reserved[4];
1833         u8      tc_valid_bits;
1834         u8      reserved1;
1835         u8      tc_strict_priority_bits;
1836         u8      reserved2;
1837         u8      tc_bw_share_credits[8];
1838         __le16  tc_bw_limits[8];
1839
1840         /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
1841         __le16  tc_bw_max[2];
1842         u8      reserved3[32];
1843 };
1844
1845 I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
1846
1847 /* Query Switching Component Bandwidth Allocation per Traffic Type
1848  * (indirect 0x041A)
1849  */
1850 struct i40e_aqc_query_switching_comp_bw_config_resp {
1851         u8      tc_valid_bits;
1852         u8      reserved[2];
1853         u8      absolute_credits_enable; /* bool */
1854         u8      tc_bw_share_credits[8];
1855         __le16  tc_bw_limits[8];
1856
1857         /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1858         __le16  tc_bw_max[2];
1859 };
1860
1861 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
1862
1863 /* Suspend/resume port TX traffic
1864  * (direct 0x041B and 0x041C) uses the generic SEID struct
1865  */
1866
1867 /* Configure partition BW
1868  * (indirect 0x041D)
1869  */
1870 struct i40e_aqc_configure_partition_bw_data {
1871         __le16  pf_valid_bits;
1872         u8      min_bw[16];      /* guaranteed bandwidth */
1873         u8      max_bw[16];      /* bandwidth limit */
1874 };
1875
1876 I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
1877
1878 /* Get and set the active HMC resource profile and status.
1879  * (direct 0x0500) and (direct 0x0501)
1880  */
1881 struct i40e_aq_get_set_hmc_resource_profile {
1882         u8      pm_profile;
1883         u8      pe_vf_enabled;
1884         u8      reserved[14];
1885 };
1886
1887 I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
1888
1889 enum i40e_aq_hmc_profile {
1890         /* I40E_HMC_PROFILE_NO_CHANGE   = 0, reserved */
1891         I40E_HMC_PROFILE_DEFAULT        = 1,
1892         I40E_HMC_PROFILE_FAVOR_VF       = 2,
1893         I40E_HMC_PROFILE_EQUAL          = 3,
1894 };
1895
1896 /* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
1897
1898 /* set in param0 for get phy abilities to report qualified modules */
1899 #define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES    0x0001
1900 #define I40E_AQ_PHY_REPORT_INITIAL_VALUES       0x0002
1901
1902 enum i40e_aq_phy_type {
1903         I40E_PHY_TYPE_SGMII                     = 0x0,
1904         I40E_PHY_TYPE_1000BASE_KX               = 0x1,
1905         I40E_PHY_TYPE_10GBASE_KX4               = 0x2,
1906         I40E_PHY_TYPE_10GBASE_KR                = 0x3,
1907         I40E_PHY_TYPE_40GBASE_KR4               = 0x4,
1908         I40E_PHY_TYPE_XAUI                      = 0x5,
1909         I40E_PHY_TYPE_XFI                       = 0x6,
1910         I40E_PHY_TYPE_SFI                       = 0x7,
1911         I40E_PHY_TYPE_XLAUI                     = 0x8,
1912         I40E_PHY_TYPE_XLPPI                     = 0x9,
1913         I40E_PHY_TYPE_40GBASE_CR4_CU            = 0xA,
1914         I40E_PHY_TYPE_10GBASE_CR1_CU            = 0xB,
1915         I40E_PHY_TYPE_10GBASE_AOC               = 0xC,
1916         I40E_PHY_TYPE_40GBASE_AOC               = 0xD,
1917         I40E_PHY_TYPE_UNRECOGNIZED              = 0xE,
1918         I40E_PHY_TYPE_UNSUPPORTED               = 0xF,
1919         I40E_PHY_TYPE_100BASE_TX                = 0x11,
1920         I40E_PHY_TYPE_1000BASE_T                = 0x12,
1921         I40E_PHY_TYPE_10GBASE_T                 = 0x13,
1922         I40E_PHY_TYPE_10GBASE_SR                = 0x14,
1923         I40E_PHY_TYPE_10GBASE_LR                = 0x15,
1924         I40E_PHY_TYPE_10GBASE_SFPP_CU           = 0x16,
1925         I40E_PHY_TYPE_10GBASE_CR1               = 0x17,
1926         I40E_PHY_TYPE_40GBASE_CR4               = 0x18,
1927         I40E_PHY_TYPE_40GBASE_SR4               = 0x19,
1928         I40E_PHY_TYPE_40GBASE_LR4               = 0x1A,
1929         I40E_PHY_TYPE_1000BASE_SX               = 0x1B,
1930         I40E_PHY_TYPE_1000BASE_LX               = 0x1C,
1931         I40E_PHY_TYPE_1000BASE_T_OPTICAL        = 0x1D,
1932         I40E_PHY_TYPE_20GBASE_KR2               = 0x1E,
1933         I40E_PHY_TYPE_25GBASE_KR                = 0x1F,
1934         I40E_PHY_TYPE_25GBASE_CR                = 0x20,
1935         I40E_PHY_TYPE_25GBASE_SR                = 0x21,
1936         I40E_PHY_TYPE_25GBASE_LR                = 0x22,
1937         I40E_PHY_TYPE_25GBASE_AOC               = 0x23,
1938         I40E_PHY_TYPE_25GBASE_ACC               = 0x24,
1939         I40E_PHY_TYPE_2_5GBASE_T                = 0x30,
1940         I40E_PHY_TYPE_5GBASE_T                  = 0x31,
1941         I40E_PHY_TYPE_MAX,
1942         I40E_PHY_TYPE_NOT_SUPPORTED_HIGH_TEMP   = 0xFD,
1943         I40E_PHY_TYPE_EMPTY                     = 0xFE,
1944         I40E_PHY_TYPE_DEFAULT                   = 0xFF,
1945 };
1946
1947 #define I40E_PHY_TYPES_BITMASK (BIT_ULL(I40E_PHY_TYPE_SGMII) | \
1948                                 BIT_ULL(I40E_PHY_TYPE_1000BASE_KX) | \
1949                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_KX4) | \
1950                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_KR) | \
1951                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_KR4) | \
1952                                 BIT_ULL(I40E_PHY_TYPE_XAUI) | \
1953                                 BIT_ULL(I40E_PHY_TYPE_XFI) | \
1954                                 BIT_ULL(I40E_PHY_TYPE_SFI) | \
1955                                 BIT_ULL(I40E_PHY_TYPE_XLAUI) | \
1956                                 BIT_ULL(I40E_PHY_TYPE_XLPPI) | \
1957                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_CR4_CU) | \
1958                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_CR1_CU) | \
1959                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_AOC) | \
1960                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_AOC) | \
1961                                 BIT_ULL(I40E_PHY_TYPE_UNRECOGNIZED) | \
1962                                 BIT_ULL(I40E_PHY_TYPE_UNSUPPORTED) | \
1963                                 BIT_ULL(I40E_PHY_TYPE_100BASE_TX) | \
1964                                 BIT_ULL(I40E_PHY_TYPE_1000BASE_T) | \
1965                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_T) | \
1966                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_SR) | \
1967                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_LR) | \
1968                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_SFPP_CU) | \
1969                                 BIT_ULL(I40E_PHY_TYPE_10GBASE_CR1) | \
1970                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_CR4) | \
1971                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_SR4) | \
1972                                 BIT_ULL(I40E_PHY_TYPE_40GBASE_LR4) | \
1973                                 BIT_ULL(I40E_PHY_TYPE_1000BASE_SX) | \
1974                                 BIT_ULL(I40E_PHY_TYPE_1000BASE_LX) | \
1975                                 BIT_ULL(I40E_PHY_TYPE_1000BASE_T_OPTICAL) | \
1976                                 BIT_ULL(I40E_PHY_TYPE_20GBASE_KR2) | \
1977                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_KR) | \
1978                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_CR) | \
1979                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_SR) | \
1980                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_LR) | \
1981                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_AOC) | \
1982                                 BIT_ULL(I40E_PHY_TYPE_25GBASE_ACC) | \
1983                                 BIT_ULL(I40E_PHY_TYPE_2_5GBASE_T) | \
1984                                 BIT_ULL(I40E_PHY_TYPE_5GBASE_T))
1985
1986 #define I40E_LINK_SPEED_2_5GB_SHIFT     0x0
1987 #define I40E_LINK_SPEED_100MB_SHIFT     0x1
1988 #define I40E_LINK_SPEED_1000MB_SHIFT    0x2
1989 #define I40E_LINK_SPEED_10GB_SHIFT      0x3
1990 #define I40E_LINK_SPEED_40GB_SHIFT      0x4
1991 #define I40E_LINK_SPEED_20GB_SHIFT      0x5
1992 #define I40E_LINK_SPEED_25GB_SHIFT      0x6
1993 #define I40E_LINK_SPEED_5GB_SHIFT       0x7
1994
1995 enum i40e_aq_link_speed {
1996         I40E_LINK_SPEED_UNKNOWN = 0,
1997         I40E_LINK_SPEED_100MB   = (1 << I40E_LINK_SPEED_100MB_SHIFT),
1998         I40E_LINK_SPEED_1GB     = (1 << I40E_LINK_SPEED_1000MB_SHIFT),
1999         I40E_LINK_SPEED_2_5GB   = (1 << I40E_LINK_SPEED_2_5GB_SHIFT),
2000         I40E_LINK_SPEED_5GB     = (1 << I40E_LINK_SPEED_5GB_SHIFT),
2001         I40E_LINK_SPEED_10GB    = (1 << I40E_LINK_SPEED_10GB_SHIFT),
2002         I40E_LINK_SPEED_40GB    = (1 << I40E_LINK_SPEED_40GB_SHIFT),
2003         I40E_LINK_SPEED_20GB    = (1 << I40E_LINK_SPEED_20GB_SHIFT),
2004         I40E_LINK_SPEED_25GB    = (1 << I40E_LINK_SPEED_25GB_SHIFT),
2005 };
2006
2007 struct i40e_aqc_module_desc {
2008         u8 oui[3];
2009         u8 reserved1;
2010         u8 part_number[16];
2011         u8 revision[4];
2012         u8 reserved2[8];
2013 };
2014
2015 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
2016
2017 struct i40e_aq_get_phy_abilities_resp {
2018         __le32  phy_type;       /* bitmap using the above enum for offsets */
2019         u8      link_speed;     /* bitmap using the above enum bit patterns */
2020         u8      abilities;
2021 #define I40E_AQ_PHY_FLAG_PAUSE_TX       0x01
2022 #define I40E_AQ_PHY_FLAG_PAUSE_RX       0x02
2023 #define I40E_AQ_PHY_FLAG_LOW_POWER      0x04
2024 #define I40E_AQ_PHY_LINK_ENABLED        0x08
2025 #define I40E_AQ_PHY_AN_ENABLED          0x10
2026 #define I40E_AQ_PHY_FLAG_MODULE_QUAL    0x20
2027 #define I40E_AQ_PHY_FEC_ABILITY_KR      0x40
2028 #define I40E_AQ_PHY_FEC_ABILITY_RS      0x80
2029         __le16  eee_capability;
2030 #define I40E_AQ_EEE_100BASE_TX          0x0002
2031 #define I40E_AQ_EEE_1000BASE_T          0x0004
2032 #define I40E_AQ_EEE_10GBASE_T           0x0008
2033 #define I40E_AQ_EEE_1000BASE_KX         0x0010
2034 #define I40E_AQ_EEE_10GBASE_KX4         0x0020
2035 #define I40E_AQ_EEE_10GBASE_KR          0x0040
2036         __le32  eeer_val;
2037         u8      d3_lpan;
2038 #define I40E_AQ_SET_PHY_D3_LPAN_ENA     0x01
2039         u8      phy_type_ext;
2040 #define I40E_AQ_PHY_TYPE_EXT_25G_KR     0x01
2041 #define I40E_AQ_PHY_TYPE_EXT_25G_CR     0x02
2042 #define I40E_AQ_PHY_TYPE_EXT_25G_SR     0x04
2043 #define I40E_AQ_PHY_TYPE_EXT_25G_LR     0x08
2044 #define I40E_AQ_PHY_TYPE_EXT_25G_AOC    0x10
2045 #define I40E_AQ_PHY_TYPE_EXT_25G_ACC    0x20
2046 #define I40E_AQ_PHY_TYPE_EXT_2_5GBASE_T 0x40
2047 #define I40E_AQ_PHY_TYPE_EXT_5GBASE_T   0x80
2048         u8      fec_cfg_curr_mod_ext_info;
2049 #define I40E_AQ_ENABLE_FEC_KR           0x01
2050 #define I40E_AQ_ENABLE_FEC_RS           0x02
2051 #define I40E_AQ_REQUEST_FEC_KR          0x04
2052 #define I40E_AQ_REQUEST_FEC_RS          0x08
2053 #define I40E_AQ_ENABLE_FEC_AUTO         0x10
2054 #define I40E_AQ_FEC
2055 #define I40E_AQ_MODULE_TYPE_EXT_MASK    0xE0
2056 #define I40E_AQ_MODULE_TYPE_EXT_SHIFT   5
2057
2058         u8      ext_comp_code;
2059         u8      phy_id[4];
2060         u8      module_type[3];
2061         u8      qualified_module_count;
2062 #define I40E_AQ_PHY_MAX_QMS             16
2063         struct i40e_aqc_module_desc     qualified_module[I40E_AQ_PHY_MAX_QMS];
2064 };
2065
2066 I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
2067
2068 /* Set PHY Config (direct 0x0601) */
2069 struct i40e_aq_set_phy_config { /* same bits as above in all */
2070         __le32  phy_type;
2071         u8      link_speed;
2072         u8      abilities;
2073 /* bits 0-2 use the values from get_phy_abilities_resp */
2074 #define I40E_AQ_PHY_ENABLE_LINK         0x08
2075 #define I40E_AQ_PHY_ENABLE_AN           0x10
2076 #define I40E_AQ_PHY_ENABLE_ATOMIC_LINK  0x20
2077         __le16  eee_capability;
2078         __le32  eeer;
2079         u8      low_power_ctrl;
2080         u8      phy_type_ext;
2081         u8      fec_config;
2082 #define I40E_AQ_SET_FEC_ABILITY_KR      BIT(0)
2083 #define I40E_AQ_SET_FEC_ABILITY_RS      BIT(1)
2084 #define I40E_AQ_SET_FEC_REQUEST_KR      BIT(2)
2085 #define I40E_AQ_SET_FEC_REQUEST_RS      BIT(3)
2086 #define I40E_AQ_SET_FEC_AUTO            BIT(4)
2087 #define I40E_AQ_PHY_FEC_CONFIG_SHIFT    0x0
2088 #define I40E_AQ_PHY_FEC_CONFIG_MASK     (0x1F << I40E_AQ_PHY_FEC_CONFIG_SHIFT)
2089         u8      reserved;
2090 };
2091
2092 I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
2093
2094 /* Set MAC Config command data structure (direct 0x0603) */
2095 struct i40e_aq_set_mac_config {
2096         __le16  max_frame_size;
2097         u8      params;
2098 #define I40E_AQ_SET_MAC_CONFIG_CRC_EN           0x04
2099 #define I40E_AQ_SET_MAC_CONFIG_PACING_MASK      0x78
2100 #define I40E_AQ_SET_MAC_CONFIG_PACING_SHIFT     3
2101 #define I40E_AQ_SET_MAC_CONFIG_PACING_NONE      0x0
2102 #define I40E_AQ_SET_MAC_CONFIG_PACING_1B_13TX   0xF
2103 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_9TX   0x9
2104 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_4TX   0x8
2105 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_7TX   0x7
2106 #define I40E_AQ_SET_MAC_CONFIG_PACING_2DW_3TX   0x6
2107 #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_1TX   0x5
2108 #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_2TX   0x4
2109 #define I40E_AQ_SET_MAC_CONFIG_PACING_7DW_3TX   0x3
2110 #define I40E_AQ_SET_MAC_CONFIG_PACING_4DW_1TX   0x2
2111 #define I40E_AQ_SET_MAC_CONFIG_PACING_9DW_1TX   0x1
2112         u8      tx_timer_priority; /* bitmap */
2113         __le16  tx_timer_value;
2114         __le16  fc_refresh_threshold;
2115         u8      reserved[8];
2116 };
2117
2118 I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
2119
2120 /* Restart Auto-Negotiation (direct 0x605) */
2121 struct i40e_aqc_set_link_restart_an {
2122         u8      command;
2123 #define I40E_AQ_PHY_RESTART_AN  0x02
2124 #define I40E_AQ_PHY_LINK_ENABLE 0x04
2125         u8      reserved[15];
2126 };
2127
2128 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
2129
2130 /* Get Link Status cmd & response data structure (direct 0x0607) */
2131 struct i40e_aqc_get_link_status {
2132         __le16  command_flags; /* only field set on command */
2133 #define I40E_AQ_LSE_MASK                0x3
2134 #define I40E_AQ_LSE_NOP                 0x0
2135 #define I40E_AQ_LSE_DISABLE             0x2
2136 #define I40E_AQ_LSE_ENABLE              0x3
2137 /* only response uses this flag */
2138 #define I40E_AQ_LSE_IS_ENABLED          0x1
2139         u8      phy_type;    /* i40e_aq_phy_type   */
2140         u8      link_speed;  /* i40e_aq_link_speed */
2141         u8      link_info;
2142 #define I40E_AQ_LINK_UP                 0x01    /* obsolete */
2143 #define I40E_AQ_LINK_UP_FUNCTION        0x01
2144 #define I40E_AQ_LINK_FAULT              0x02
2145 #define I40E_AQ_LINK_FAULT_TX           0x04
2146 #define I40E_AQ_LINK_FAULT_RX           0x08
2147 #define I40E_AQ_LINK_FAULT_REMOTE       0x10
2148 #define I40E_AQ_LINK_UP_PORT            0x20
2149 #define I40E_AQ_MEDIA_AVAILABLE         0x40
2150 #define I40E_AQ_SIGNAL_DETECT           0x80
2151         u8      an_info;
2152 #define I40E_AQ_AN_COMPLETED            0x01
2153 #define I40E_AQ_LP_AN_ABILITY           0x02
2154 #define I40E_AQ_PD_FAULT                0x04
2155 #define I40E_AQ_FEC_EN                  0x08
2156 #define I40E_AQ_PHY_LOW_POWER           0x10
2157 #define I40E_AQ_LINK_PAUSE_TX           0x20
2158 #define I40E_AQ_LINK_PAUSE_RX           0x40
2159 #define I40E_AQ_QUALIFIED_MODULE        0x80
2160         u8      ext_info;
2161 #define I40E_AQ_LINK_PHY_TEMP_ALARM     0x01
2162 #define I40E_AQ_LINK_XCESSIVE_ERRORS    0x02
2163 #define I40E_AQ_LINK_TX_SHIFT           0x02
2164 #define I40E_AQ_LINK_TX_MASK            (0x03 << I40E_AQ_LINK_TX_SHIFT)
2165 #define I40E_AQ_LINK_TX_ACTIVE          0x00
2166 #define I40E_AQ_LINK_TX_DRAINED         0x01
2167 #define I40E_AQ_LINK_TX_FLUSHED         0x03
2168 #define I40E_AQ_LINK_FORCED_40G         0x10
2169 /* 25G Error Codes */
2170 #define I40E_AQ_25G_NO_ERR              0X00
2171 #define I40E_AQ_25G_NOT_PRESENT         0X01
2172 #define I40E_AQ_25G_NVM_CRC_ERR         0X02
2173 #define I40E_AQ_25G_SBUS_UCODE_ERR      0X03
2174 #define I40E_AQ_25G_SERDES_UCODE_ERR    0X04
2175 #define I40E_AQ_25G_NIMB_UCODE_ERR      0X05
2176         u8      loopback; /* use defines from i40e_aqc_set_lb_mode */
2177 /* Since firmware API 1.7 loopback field keeps power class info as well */
2178 #define I40E_AQ_LOOPBACK_MASK           0x07
2179 #define I40E_AQ_PWR_CLASS_SHIFT_LB      6
2180 #define I40E_AQ_PWR_CLASS_MASK_LB       (0x03 << I40E_AQ_PWR_CLASS_SHIFT_LB)
2181         __le16  max_frame_size;
2182         u8      config;
2183 #define I40E_AQ_CONFIG_FEC_KR_ENA       0x01
2184 #define I40E_AQ_CONFIG_FEC_RS_ENA       0x02
2185 #define I40E_AQ_CONFIG_CRC_ENA          0x04
2186 #define I40E_AQ_CONFIG_PACING_MASK      0x78
2187         union {
2188                 struct {
2189                         u8      power_desc;
2190 #define I40E_AQ_LINK_POWER_CLASS_1      0x00
2191 #define I40E_AQ_LINK_POWER_CLASS_2      0x01
2192 #define I40E_AQ_LINK_POWER_CLASS_3      0x02
2193 #define I40E_AQ_LINK_POWER_CLASS_4      0x03
2194 #define I40E_AQ_PWR_CLASS_MASK          0x03
2195                         u8      reserved[4];
2196                 };
2197                 struct {
2198                         u8      link_type[4];
2199                         u8      link_type_ext;
2200                 };
2201         };
2202 };
2203
2204 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
2205
2206 /* Set event mask command (direct 0x613) */
2207 struct i40e_aqc_set_phy_int_mask {
2208         u8      reserved[8];
2209         __le16  event_mask;
2210 #define I40E_AQ_EVENT_LINK_UPDOWN       0x0002
2211 #define I40E_AQ_EVENT_MEDIA_NA          0x0004
2212 #define I40E_AQ_EVENT_LINK_FAULT        0x0008
2213 #define I40E_AQ_EVENT_PHY_TEMP_ALARM    0x0010
2214 #define I40E_AQ_EVENT_EXCESSIVE_ERRORS  0x0020
2215 #define I40E_AQ_EVENT_SIGNAL_DETECT     0x0040
2216 #define I40E_AQ_EVENT_AN_COMPLETED      0x0080
2217 #define I40E_AQ_EVENT_MODULE_QUAL_FAIL  0x0100
2218 #define I40E_AQ_EVENT_PORT_TX_SUSPENDED 0x0200
2219         u8      reserved1[6];
2220 };
2221
2222 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
2223
2224 /* Get Local AN advt register (direct 0x0614)
2225  * Set Local AN advt register (direct 0x0615)
2226  * Get Link Partner AN advt register (direct 0x0616)
2227  */
2228 struct i40e_aqc_an_advt_reg {
2229         __le32  local_an_reg0;
2230         __le16  local_an_reg1;
2231         u8      reserved[10];
2232 };
2233
2234 I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
2235
2236 /* Set Loopback mode (0x0618) */
2237 struct i40e_aqc_set_lb_mode {
2238         __le16  lb_mode;
2239 #define I40E_AQ_LB_PHY_LOCAL    0x01
2240 #define I40E_AQ_LB_PHY_REMOTE   0x02
2241 #define I40E_AQ_LB_MAC_LOCAL    0x04
2242         u8      reserved[14];
2243 };
2244
2245 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
2246
2247 /* Set PHY Debug command (0x0622) */
2248 struct i40e_aqc_set_phy_debug {
2249         u8      command_flags;
2250 #define I40E_AQ_PHY_DEBUG_RESET_INTERNAL        0x02
2251 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT  2
2252 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_MASK   (0x03 << \
2253                                         I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT)
2254 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_NONE   0x00
2255 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_HARD   0x01
2256 #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SOFT   0x02
2257 /* Disable link manageability on a single port */
2258 #define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW       0x10
2259 /* Disable link manageability on all ports needs both bits 4 and 5 */
2260 #define I40E_AQ_PHY_DEBUG_DISABLE_ALL_LINK_FW   0x20
2261         u8      reserved[15];
2262 };
2263
2264 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
2265
2266 enum i40e_aq_phy_reg_type {
2267         I40E_AQC_PHY_REG_INTERNAL       = 0x1,
2268         I40E_AQC_PHY_REG_EXERNAL_BASET  = 0x2,
2269         I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
2270 };
2271
2272 /* Run PHY Activity (0x0626) */
2273 struct i40e_aqc_run_phy_activity {
2274         __le16  activity_id;
2275         u8      flags;
2276         u8      reserved1;
2277         __le32  control;
2278         __le32  data;
2279         u8      reserved2[4];
2280 };
2281
2282 I40E_CHECK_CMD_LENGTH(i40e_aqc_run_phy_activity);
2283
2284 /* Set PHY Register command (0x0628) */
2285 /* Get PHY Register command (0x0629) */
2286 struct i40e_aqc_phy_register_access {
2287         u8      phy_interface;
2288 #define I40E_AQ_PHY_REG_ACCESS_INTERNAL 0
2289 #define I40E_AQ_PHY_REG_ACCESS_EXTERNAL 1
2290 #define I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE  2
2291         u8      dev_addres;
2292         u8      cmd_flags;
2293 #define I40E_AQ_PHY_REG_ACCESS_DONT_CHANGE_QSFP_PAGE    1
2294         u8      reserved1;
2295         __le32  reg_address;
2296         __le32  reg_value;
2297         u8      reserved2[4];
2298 };
2299
2300 I40E_CHECK_CMD_LENGTH(i40e_aqc_phy_register_access);
2301
2302 /* NVM Read command (indirect 0x0701)
2303  * NVM Erase commands (direct 0x0702)
2304  * NVM Update commands (indirect 0x0703)
2305  */
2306 struct i40e_aqc_nvm_update {
2307         u8      command_flags;
2308 #define I40E_AQ_NVM_LAST_CMD                    0x01
2309 #define I40E_AQ_NVM_REARRANGE_TO_FLAT           0x20
2310 #define I40E_AQ_NVM_REARRANGE_TO_STRUCT         0x40
2311 #define I40E_AQ_NVM_FLASH_ONLY                  0x80
2312 #define I40E_AQ_NVM_PRESERVATION_FLAGS_SHIFT    1
2313 #define I40E_AQ_NVM_PRESERVATION_FLAGS_MASK     0x03
2314 #define I40E_AQ_NVM_PRESERVATION_FLAGS_SELECTED 0x03
2315 #define I40E_AQ_NVM_PRESERVATION_FLAGS_ALL      0x01
2316         u8      module_pointer;
2317         __le16  length;
2318         __le32  offset;
2319         __le32  addr_high;
2320         __le32  addr_low;
2321 };
2322
2323 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
2324
2325 /* NVM Config Read (indirect 0x0704) */
2326 struct i40e_aqc_nvm_config_read {
2327         __le16  cmd_flags;
2328 #define I40E_AQ_ANVM_SINGLE_OR_MULTIPLE_FEATURES_MASK   1
2329 #define I40E_AQ_ANVM_READ_SINGLE_FEATURE                0
2330 #define I40E_AQ_ANVM_READ_MULTIPLE_FEATURES             1
2331         __le16  element_count;
2332         __le16  element_id;     /* Feature/field ID */
2333         __le16  element_id_msw; /* MSWord of field ID */
2334         __le32  address_high;
2335         __le32  address_low;
2336 };
2337
2338 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
2339
2340 /* NVM Config Write (indirect 0x0705) */
2341 struct i40e_aqc_nvm_config_write {
2342         __le16  cmd_flags;
2343         __le16  element_count;
2344         u8      reserved[4];
2345         __le32  address_high;
2346         __le32  address_low;
2347 };
2348
2349 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
2350
2351 /* Used for 0x0704 as well as for 0x0705 commands */
2352 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT         1
2353 #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK \
2354                                 (1 << I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT)
2355 #define I40E_AQ_ANVM_FEATURE            0
2356 #define I40E_AQ_ANVM_IMMEDIATE_FIELD    (1 << FEATURE_OR_IMMEDIATE_SHIFT)
2357 struct i40e_aqc_nvm_config_data_feature {
2358         __le16 feature_id;
2359 #define I40E_AQ_ANVM_FEATURE_OPTION_OEM_ONLY            0x01
2360 #define I40E_AQ_ANVM_FEATURE_OPTION_DWORD_MAP           0x08
2361 #define I40E_AQ_ANVM_FEATURE_OPTION_POR_CSR             0x10
2362         __le16 feature_options;
2363         __le16 feature_selection;
2364 };
2365
2366 I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
2367
2368 struct i40e_aqc_nvm_config_data_immediate_field {
2369         __le32 field_id;
2370         __le32 field_value;
2371         __le16 field_options;
2372         __le16 reserved;
2373 };
2374
2375 I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
2376
2377 /* OEM Post Update (indirect 0x0720)
2378  * no command data struct used
2379  */
2380 struct i40e_aqc_nvm_oem_post_update {
2381 #define I40E_AQ_NVM_OEM_POST_UPDATE_EXTERNAL_DATA       0x01
2382         u8 sel_data;
2383         u8 reserved[7];
2384 };
2385
2386 I40E_CHECK_STRUCT_LEN(0x8, i40e_aqc_nvm_oem_post_update);
2387
2388 struct i40e_aqc_nvm_oem_post_update_buffer {
2389         u8 str_len;
2390         u8 dev_addr;
2391         __le16 eeprom_addr;
2392         u8 data[36];
2393 };
2394
2395 I40E_CHECK_STRUCT_LEN(0x28, i40e_aqc_nvm_oem_post_update_buffer);
2396
2397 /* Thermal Sensor (indirect 0x0721)
2398  *     read or set thermal sensor configs and values
2399  *     takes a sensor and command specific data buffer, not detailed here
2400  */
2401 struct i40e_aqc_thermal_sensor {
2402         u8 sensor_action;
2403 #define I40E_AQ_THERMAL_SENSOR_READ_CONFIG      0
2404 #define I40E_AQ_THERMAL_SENSOR_SET_CONFIG       1
2405 #define I40E_AQ_THERMAL_SENSOR_READ_TEMP        2
2406         u8 reserved[7];
2407         __le32  addr_high;
2408         __le32  addr_low;
2409 };
2410
2411 I40E_CHECK_CMD_LENGTH(i40e_aqc_thermal_sensor);
2412
2413 /* Send to PF command (indirect 0x0801) id is only used by PF
2414  * Send to VF command (indirect 0x0802) id is only used by PF
2415  * Send to Peer PF command (indirect 0x0803)
2416  */
2417 struct i40e_aqc_pf_vf_message {
2418         __le32  id;
2419         u8      reserved[4];
2420         __le32  addr_high;
2421         __le32  addr_low;
2422 };
2423
2424 I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
2425
2426 /* Alternate structure */
2427
2428 /* Direct write (direct 0x0900)
2429  * Direct read (direct 0x0902)
2430  */
2431 struct i40e_aqc_alternate_write {
2432         __le32 address0;
2433         __le32 data0;
2434         __le32 address1;
2435         __le32 data1;
2436 };
2437
2438 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
2439
2440 /* Indirect write (indirect 0x0901)
2441  * Indirect read (indirect 0x0903)
2442  */
2443
2444 struct i40e_aqc_alternate_ind_write {
2445         __le32 address;
2446         __le32 length;
2447         __le32 addr_high;
2448         __le32 addr_low;
2449 };
2450
2451 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
2452
2453 /* Done alternate write (direct 0x0904)
2454  * uses i40e_aq_desc
2455  */
2456 struct i40e_aqc_alternate_write_done {
2457         __le16  cmd_flags;
2458 #define I40E_AQ_ALTERNATE_MODE_BIOS_MASK        1
2459 #define I40E_AQ_ALTERNATE_MODE_BIOS_LEGACY      0
2460 #define I40E_AQ_ALTERNATE_MODE_BIOS_UEFI        1
2461 #define I40E_AQ_ALTERNATE_RESET_NEEDED          2
2462         u8      reserved[14];
2463 };
2464
2465 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
2466
2467 /* Set OEM mode (direct 0x0905) */
2468 struct i40e_aqc_alternate_set_mode {
2469         __le32  mode;
2470 #define I40E_AQ_ALTERNATE_MODE_NONE     0
2471 #define I40E_AQ_ALTERNATE_MODE_OEM      1
2472         u8      reserved[12];
2473 };
2474
2475 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
2476
2477 /* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
2478
2479 /* async events 0x10xx */
2480
2481 /* Lan Queue Overflow Event (direct, 0x1001) */
2482 struct i40e_aqc_lan_overflow {
2483         __le32  prtdcb_rupto;
2484         __le32  otx_ctl;
2485         u8      reserved[8];
2486 };
2487
2488 I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
2489
2490 /* Get LLDP MIB (indirect 0x0A00) */
2491 struct i40e_aqc_lldp_get_mib {
2492         u8      type;
2493         u8      reserved1;
2494 #define I40E_AQ_LLDP_MIB_TYPE_MASK              0x3
2495 #define I40E_AQ_LLDP_MIB_LOCAL                  0x0
2496 #define I40E_AQ_LLDP_MIB_REMOTE                 0x1
2497 #define I40E_AQ_LLDP_MIB_LOCAL_AND_REMOTE       0x2
2498 #define I40E_AQ_LLDP_BRIDGE_TYPE_MASK           0xC
2499 #define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT          0x2
2500 #define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
2501 #define I40E_AQ_LLDP_BRIDGE_TYPE_NON_TPMR       0x1
2502 #define I40E_AQ_LLDP_TX_SHIFT                   0x4
2503 #define I40E_AQ_LLDP_TX_MASK                    (0x03 << I40E_AQ_LLDP_TX_SHIFT)
2504 /* TX pause flags use I40E_AQ_LINK_TX_* above */
2505         __le16  local_len;
2506         __le16  remote_len;
2507         u8      reserved2[2];
2508         __le32  addr_high;
2509         __le32  addr_low;
2510 };
2511
2512 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
2513
2514 /* Configure LLDP MIB Change Event (direct 0x0A01)
2515  * also used for the event (with type in the command field)
2516  */
2517 struct i40e_aqc_lldp_update_mib {
2518         u8      command;
2519 #define I40E_AQ_LLDP_MIB_UPDATE_ENABLE  0x0
2520 #define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
2521         u8      reserved[7];
2522         __le32  addr_high;
2523         __le32  addr_low;
2524 };
2525
2526 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
2527
2528 /* Add LLDP TLV (indirect 0x0A02)
2529  * Delete LLDP TLV (indirect 0x0A04)
2530  */
2531 struct i40e_aqc_lldp_add_tlv {
2532         u8      type; /* only nearest bridge and non-TPMR from 0x0A00 */
2533         u8      reserved1[1];
2534         __le16  len;
2535         u8      reserved2[4];
2536         __le32  addr_high;
2537         __le32  addr_low;
2538 };
2539
2540 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
2541
2542 /* Update LLDP TLV (indirect 0x0A03) */
2543 struct i40e_aqc_lldp_update_tlv {
2544         u8      type; /* only nearest bridge and non-TPMR from 0x0A00 */
2545         u8      reserved;
2546         __le16  old_len;
2547         __le16  new_offset;
2548         __le16  new_len;
2549         __le32  addr_high;
2550         __le32  addr_low;
2551 };
2552
2553 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
2554
2555 /* Stop LLDP (direct 0x0A05) */
2556 struct i40e_aqc_lldp_stop {
2557         u8      command;
2558 #define I40E_AQ_LLDP_AGENT_STOP                 0x0
2559 #define I40E_AQ_LLDP_AGENT_SHUTDOWN             0x1
2560 #define I40E_AQ_LLDP_AGENT_STOP_PERSIST         0x2
2561         u8      reserved[15];
2562 };
2563
2564 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
2565
2566 /* Start LLDP (direct 0x0A06) */
2567
2568 struct i40e_aqc_lldp_start {
2569         u8      command;
2570 #define I40E_AQ_LLDP_AGENT_START                0x1
2571 #define I40E_AQ_LLDP_AGENT_START_PERSIST        0x2
2572         u8      reserved[15];
2573 };
2574
2575 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
2576
2577 /* Set DCB (direct 0x0303) */
2578 struct i40e_aqc_set_dcb_parameters {
2579         u8 command;
2580 #define I40E_AQ_DCB_SET_AGENT   0x1
2581 #define I40E_DCB_VALID          0x1
2582         u8 valid_flags;
2583         u8 reserved[14];
2584 };
2585
2586 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_dcb_parameters);
2587
2588 /* Get CEE DCBX Oper Config (0x0A07)
2589  * uses the generic descriptor struct
2590  * returns below as indirect response
2591  */
2592
2593 #define I40E_AQC_CEE_APP_FCOE_SHIFT     0x0
2594 #define I40E_AQC_CEE_APP_FCOE_MASK      (0x7 << I40E_AQC_CEE_APP_FCOE_SHIFT)
2595 #define I40E_AQC_CEE_APP_ISCSI_SHIFT    0x3
2596 #define I40E_AQC_CEE_APP_ISCSI_MASK     (0x7 << I40E_AQC_CEE_APP_ISCSI_SHIFT)
2597 #define I40E_AQC_CEE_APP_FIP_SHIFT      0x8
2598 #define I40E_AQC_CEE_APP_FIP_MASK       (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
2599
2600 #define I40E_AQC_CEE_PG_STATUS_SHIFT    0x0
2601 #define I40E_AQC_CEE_PG_STATUS_MASK     (0x7 << I40E_AQC_CEE_PG_STATUS_SHIFT)
2602 #define I40E_AQC_CEE_PFC_STATUS_SHIFT   0x3
2603 #define I40E_AQC_CEE_PFC_STATUS_MASK    (0x7 << I40E_AQC_CEE_PFC_STATUS_SHIFT)
2604 #define I40E_AQC_CEE_APP_STATUS_SHIFT   0x8
2605 #define I40E_AQC_CEE_APP_STATUS_MASK    (0x7 << I40E_AQC_CEE_APP_STATUS_SHIFT)
2606 #define I40E_AQC_CEE_FCOE_STATUS_SHIFT  0x8
2607 #define I40E_AQC_CEE_FCOE_STATUS_MASK   (0x7 << I40E_AQC_CEE_FCOE_STATUS_SHIFT)
2608 #define I40E_AQC_CEE_ISCSI_STATUS_SHIFT 0xB
2609 #define I40E_AQC_CEE_ISCSI_STATUS_MASK  (0x7 << I40E_AQC_CEE_ISCSI_STATUS_SHIFT)
2610 #define I40E_AQC_CEE_FIP_STATUS_SHIFT   0x10
2611 #define I40E_AQC_CEE_FIP_STATUS_MASK    (0x7 << I40E_AQC_CEE_FIP_STATUS_SHIFT)
2612
2613 /* struct i40e_aqc_get_cee_dcb_cfg_v1_resp was originally defined with
2614  * word boundary layout issues, which the Linux compilers silently deal
2615  * with by adding padding, making the actual struct larger than designed.
2616  * However, the FW compiler for the NIC is less lenient and complains
2617  * about the struct.  Hence, the struct defined here has an extra byte in
2618  * fields reserved3 and reserved4 to directly acknowledge that padding,
2619  * and the new length is used in the length check macro.
2620  */
2621 struct i40e_aqc_get_cee_dcb_cfg_v1_resp {
2622         u8      reserved1;
2623         u8      oper_num_tc;
2624         u8      oper_prio_tc[4];
2625         u8      reserved2;
2626         u8      oper_tc_bw[8];
2627         u8      oper_pfc_en;
2628         u8      reserved3[2];
2629         __le16  oper_app_prio;
2630         u8      reserved4[2];
2631         __le16  tlv_status;
2632 };
2633
2634 I40E_CHECK_STRUCT_LEN(0x18, i40e_aqc_get_cee_dcb_cfg_v1_resp);
2635
2636 struct i40e_aqc_get_cee_dcb_cfg_resp {
2637         u8      oper_num_tc;
2638         u8      oper_prio_tc[4];
2639         u8      oper_tc_bw[8];
2640         u8      oper_pfc_en;
2641         __le16  oper_app_prio;
2642         __le32  tlv_status;
2643         u8      reserved[12];
2644 };
2645
2646 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_cee_dcb_cfg_resp);
2647
2648 /*      Set Local LLDP MIB (indirect 0x0A08)
2649  *      Used to replace the local MIB of a given LLDP agent. e.g. DCBx
2650  */
2651 struct i40e_aqc_lldp_set_local_mib {
2652 #define SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT        0
2653 #define SET_LOCAL_MIB_AC_TYPE_DCBX_MASK (1 << \
2654                                         SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT)
2655 #define SET_LOCAL_MIB_AC_TYPE_LOCAL_MIB 0x0
2656 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT    (1)
2657 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_MASK     (1 << \
2658                                 SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT)
2659 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS          0x1
2660         u8      type;
2661         u8      reserved0;
2662         __le16  length;
2663         u8      reserved1[4];
2664         __le32  address_high;
2665         __le32  address_low;
2666 };
2667
2668 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_set_local_mib);
2669
2670 struct i40e_aqc_lldp_set_local_mib_resp {
2671 #define SET_LOCAL_MIB_RESP_EVENT_TRIGGERED_MASK      0x01
2672         u8  status;
2673         u8  reserved[15];
2674 };
2675
2676 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_lldp_set_local_mib_resp);
2677
2678 /*      Stop/Start LLDP Agent (direct 0x0A09)
2679  *      Used for stopping/starting specific LLDP agent. e.g. DCBx
2680  */
2681 struct i40e_aqc_lldp_stop_start_specific_agent {
2682 #define I40E_AQC_START_SPECIFIC_AGENT_SHIFT     0
2683 #define I40E_AQC_START_SPECIFIC_AGENT_MASK \
2684                                 (1 << I40E_AQC_START_SPECIFIC_AGENT_SHIFT)
2685         u8      command;
2686         u8      reserved[15];
2687 };
2688
2689 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop_start_specific_agent);
2690
2691 /* Restore LLDP Agent factory settings (direct 0x0A0A) */
2692 struct i40e_aqc_lldp_restore {
2693         u8      command;
2694 #define I40E_AQ_LLDP_AGENT_RESTORE_NOT          0x0
2695 #define I40E_AQ_LLDP_AGENT_RESTORE              0x1
2696         u8      reserved[15];
2697 };
2698
2699 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_restore);
2700
2701 /* Add Udp Tunnel command and completion (direct 0x0B00) */
2702 struct i40e_aqc_add_udp_tunnel {
2703         __le16  udp_port;
2704         u8      reserved0[3];
2705         u8      protocol_type;
2706 #define I40E_AQC_TUNNEL_TYPE_VXLAN      0x00
2707 #define I40E_AQC_TUNNEL_TYPE_NGE        0x01
2708 #define I40E_AQC_TUNNEL_TYPE_TEREDO     0x10
2709 #define I40E_AQC_TUNNEL_TYPE_VXLAN_GPE  0x11
2710         u8      reserved1[10];
2711 };
2712
2713 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
2714
2715 struct i40e_aqc_add_udp_tunnel_completion {
2716         __le16  udp_port;
2717         u8      filter_entry_index;
2718         u8      multiple_pfs;
2719 #define I40E_AQC_SINGLE_PF              0x0
2720 #define I40E_AQC_MULTIPLE_PFS           0x1
2721         u8      total_filters;
2722         u8      reserved[11];
2723 };
2724
2725 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
2726
2727 /* remove UDP Tunnel command (0x0B01) */
2728 struct i40e_aqc_remove_udp_tunnel {
2729         u8      reserved[2];
2730         u8      index; /* 0 to 15 */
2731         u8      reserved2[13];
2732 };
2733
2734 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
2735
2736 struct i40e_aqc_del_udp_tunnel_completion {
2737         __le16  udp_port;
2738         u8      index; /* 0 to 15 */
2739         u8      multiple_pfs;
2740         u8      total_filters_used;
2741         u8      reserved1[11];
2742 };
2743
2744 I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
2745
2746 struct i40e_aqc_get_set_rss_key {
2747 #define I40E_AQC_SET_RSS_KEY_VSI_VALID          (0x1 << 15)
2748 #define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT       0
2749 #define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK        (0x3FF << \
2750                                         I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
2751         __le16  vsi_id;
2752         u8      reserved[6];
2753         __le32  addr_high;
2754         __le32  addr_low;
2755 };
2756
2757 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
2758
2759 struct i40e_aqc_get_set_rss_key_data {
2760         u8 standard_rss_key[0x28];
2761         u8 extended_hash_key[0xc];
2762 };
2763
2764 I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
2765
2766 struct  i40e_aqc_get_set_rss_lut {
2767 #define I40E_AQC_SET_RSS_LUT_VSI_VALID          (0x1 << 15)
2768 #define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT       0
2769 #define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK        (0x3FF << \
2770                                         I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
2771         __le16  vsi_id;
2772 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT   0
2773 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK    (0x1 << \
2774                                         I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
2775
2776 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI     0
2777 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF      1
2778         __le16  flags;
2779         u8      reserved[4];
2780         __le32  addr_high;
2781         __le32  addr_low;
2782 };
2783
2784 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
2785
2786 /* tunnel key structure 0x0B10 */
2787
2788 struct i40e_aqc_tunnel_key_structure {
2789         u8      key1_off;
2790         u8      key2_off;
2791         u8      key1_len;  /* 0 to 15 */
2792         u8      key2_len;  /* 0 to 15 */
2793         u8      flags;
2794 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE     0x01
2795 /* response flags */
2796 #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS      0x01
2797 #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED     0x02
2798 #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN   0x03
2799         u8      network_key_index;
2800 #define I40E_AQC_NETWORK_KEY_INDEX_VXLAN                0x0
2801 #define I40E_AQC_NETWORK_KEY_INDEX_NGE                  0x1
2802 #define I40E_AQC_NETWORK_KEY_INDEX_FLEX_MAC_IN_UDP      0x2
2803 #define I40E_AQC_NETWORK_KEY_INDEX_GRE                  0x3
2804         u8      reserved[10];
2805 };
2806
2807 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
2808
2809 /* OEM mode commands (direct 0xFE0x) */
2810 struct i40e_aqc_oem_param_change {
2811         __le32  param_type;
2812 #define I40E_AQ_OEM_PARAM_TYPE_PF_CTL   0
2813 #define I40E_AQ_OEM_PARAM_TYPE_BW_CTL   1
2814 #define I40E_AQ_OEM_PARAM_MAC           2
2815         __le32  param_value1;
2816         __le16  param_value2;
2817         u8      reserved[6];
2818 };
2819
2820 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
2821
2822 struct i40e_aqc_oem_state_change {
2823         __le32  state;
2824 #define I40E_AQ_OEM_STATE_LINK_DOWN     0x0
2825 #define I40E_AQ_OEM_STATE_LINK_UP       0x1
2826         u8      reserved[12];
2827 };
2828
2829 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
2830
2831 /* Initialize OCSD (0xFE02, direct) */
2832 struct i40e_aqc_opc_oem_ocsd_initialize {
2833         u8 type_status;
2834         u8 reserved1[3];
2835         __le32 ocsd_memory_block_addr_high;
2836         __le32 ocsd_memory_block_addr_low;
2837         __le32 requested_update_interval;
2838 };
2839
2840 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
2841
2842 /* Initialize OCBB  (0xFE03, direct) */
2843 struct i40e_aqc_opc_oem_ocbb_initialize {
2844         u8 type_status;
2845         u8 reserved1[3];
2846         __le32 ocbb_memory_block_addr_high;
2847         __le32 ocbb_memory_block_addr_low;
2848         u8 reserved2[4];
2849 };
2850
2851 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
2852
2853 /* debug commands */
2854
2855 /* get device id (0xFF00) uses the generic structure */
2856
2857 /* set test more (0xFF01, internal) */
2858
2859 struct i40e_acq_set_test_mode {
2860         u8      mode;
2861 #define I40E_AQ_TEST_PARTIAL    0
2862 #define I40E_AQ_TEST_FULL       1
2863 #define I40E_AQ_TEST_NVM        2
2864         u8      reserved[3];
2865         u8      command;
2866 #define I40E_AQ_TEST_OPEN       0
2867 #define I40E_AQ_TEST_CLOSE      1
2868 #define I40E_AQ_TEST_INC        2
2869         u8      reserved2[3];
2870         __le32  address_high;
2871         __le32  address_low;
2872 };
2873
2874 I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
2875
2876 /* Debug Read Register command (0xFF03)
2877  * Debug Write Register command (0xFF04)
2878  */
2879 struct i40e_aqc_debug_reg_read_write {
2880         __le32 reserved;
2881         __le32 address;
2882         __le32 value_high;
2883         __le32 value_low;
2884 };
2885
2886 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
2887
2888 /* Scatter/gather Reg Read  (indirect 0xFF05)
2889  * Scatter/gather Reg Write (indirect 0xFF06)
2890  */
2891
2892 /* i40e_aq_desc is used for the command */
2893 struct i40e_aqc_debug_reg_sg_element_data {
2894         __le32 address;
2895         __le32 value;
2896 };
2897
2898 /* Debug Modify register (direct 0xFF07) */
2899 struct i40e_aqc_debug_modify_reg {
2900         __le32 address;
2901         __le32 value;
2902         __le32 clear_mask;
2903         __le32 set_mask;
2904 };
2905
2906 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
2907
2908 /* dump internal data (0xFF08, indirect) */
2909
2910 #define I40E_AQ_CLUSTER_ID_AUX          0
2911 #define I40E_AQ_CLUSTER_ID_SWITCH_FLU   1
2912 #define I40E_AQ_CLUSTER_ID_TXSCHED      2
2913 #define I40E_AQ_CLUSTER_ID_HMC          3
2914 #define I40E_AQ_CLUSTER_ID_MAC0         4
2915 #define I40E_AQ_CLUSTER_ID_MAC1         5
2916 #define I40E_AQ_CLUSTER_ID_MAC2         6
2917 #define I40E_AQ_CLUSTER_ID_MAC3         7
2918 #define I40E_AQ_CLUSTER_ID_DCB          8
2919 #define I40E_AQ_CLUSTER_ID_EMP_MEM      9
2920 #define I40E_AQ_CLUSTER_ID_PKT_BUF      10
2921 #define I40E_AQ_CLUSTER_ID_ALTRAM       11
2922
2923 struct i40e_aqc_debug_dump_internals {
2924         u8      cluster_id;
2925         u8      table_id;
2926         __le16  data_size;
2927         __le32  idx;
2928         __le32  address_high;
2929         __le32  address_low;
2930 };
2931
2932 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
2933
2934 struct i40e_aqc_debug_modify_internals {
2935         u8      cluster_id;
2936         u8      cluster_specific_params[7];
2937         __le32  address_high;
2938         __le32  address_low;
2939 };
2940
2941 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
2942
2943 #endif /* _I40E_ADMINQ_CMD_H_ */