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