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