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