xref: /linux/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h (revision 16e5ac127d8d18adf85fe5ba847d77b58d1ed418)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018, Intel Corporation. */
3 
4 #ifndef _ICE_ADMINQ_CMD_H_
5 #define _ICE_ADMINQ_CMD_H_
6 
7 /* This header file defines the Admin Queue commands, error codes and
8  * descriptor format. It is shared between Firmware and Software.
9  */
10 
11 #define ICE_MAX_VSI			768
12 #define ICE_AQC_TOPO_MAX_LEVEL_NUM	0x9
13 #define ICE_AQ_SET_MAC_FRAME_SIZE_MAX	9728
14 
15 struct ice_aqc_generic {
16 	__le32 param0;
17 	__le32 param1;
18 	__le32 addr_high;
19 	__le32 addr_low;
20 };
21 
22 /* Get version (direct 0x0001) */
23 struct ice_aqc_get_ver {
24 	__le32 rom_ver;
25 	__le32 fw_build;
26 	u8 fw_branch;
27 	u8 fw_major;
28 	u8 fw_minor;
29 	u8 fw_patch;
30 	u8 api_branch;
31 	u8 api_major;
32 	u8 api_minor;
33 	u8 api_patch;
34 };
35 
36 /* Send driver version (indirect 0x0002) */
37 struct ice_aqc_driver_ver {
38 	u8 major_ver;
39 	u8 minor_ver;
40 	u8 build_ver;
41 	u8 subbuild_ver;
42 	u8 reserved[4];
43 	__le32 addr_high;
44 	__le32 addr_low;
45 };
46 
47 /* Queue Shutdown (direct 0x0003) */
48 struct ice_aqc_q_shutdown {
49 	u8 driver_unloading;
50 #define ICE_AQC_DRIVER_UNLOADING	BIT(0)
51 	u8 reserved[15];
52 };
53 
54 /* Request resource ownership (direct 0x0008)
55  * Release resource ownership (direct 0x0009)
56  */
57 struct ice_aqc_req_res {
58 	__le16 res_id;
59 #define ICE_AQC_RES_ID_NVM		1
60 #define ICE_AQC_RES_ID_SDP		2
61 #define ICE_AQC_RES_ID_CHNG_LOCK	3
62 #define ICE_AQC_RES_ID_GLBL_LOCK	4
63 	__le16 access_type;
64 #define ICE_AQC_RES_ACCESS_READ		1
65 #define ICE_AQC_RES_ACCESS_WRITE	2
66 
67 	/* Upon successful completion, FW writes this value and driver is
68 	 * expected to release resource before timeout. This value is provided
69 	 * in milliseconds.
70 	 */
71 	__le32 timeout;
72 #define ICE_AQ_RES_NVM_READ_DFLT_TIMEOUT_MS	3000
73 #define ICE_AQ_RES_NVM_WRITE_DFLT_TIMEOUT_MS	180000
74 #define ICE_AQ_RES_CHNG_LOCK_DFLT_TIMEOUT_MS	1000
75 #define ICE_AQ_RES_GLBL_LOCK_DFLT_TIMEOUT_MS	3000
76 	/* For SDP: pin ID of the SDP */
77 	__le32 res_number;
78 	/* Status is only used for ICE_AQC_RES_ID_GLBL_LOCK */
79 	__le16 status;
80 #define ICE_AQ_RES_GLBL_SUCCESS		0
81 #define ICE_AQ_RES_GLBL_IN_PROG		1
82 #define ICE_AQ_RES_GLBL_DONE		2
83 	u8 reserved[2];
84 };
85 
86 /* Get function capabilities (indirect 0x000A)
87  * Get device capabilities (indirect 0x000B)
88  */
89 struct ice_aqc_list_caps {
90 	u8 cmd_flags;
91 	u8 pf_index;
92 	u8 reserved[2];
93 	__le32 count;
94 	__le32 addr_high;
95 	__le32 addr_low;
96 };
97 
98 /* Device/Function buffer entry, repeated per reported capability */
99 struct ice_aqc_list_caps_elem {
100 	__le16 cap;
101 #define ICE_AQC_CAPS_VALID_FUNCTIONS			0x0005
102 #define ICE_AQC_CAPS_SRIOV				0x0012
103 #define ICE_AQC_CAPS_VF					0x0013
104 #define ICE_AQC_CAPS_VSI				0x0017
105 #define ICE_AQC_CAPS_DCB				0x0018
106 #define ICE_AQC_CAPS_RSS				0x0040
107 #define ICE_AQC_CAPS_RXQS				0x0041
108 #define ICE_AQC_CAPS_TXQS				0x0042
109 #define ICE_AQC_CAPS_MSIX				0x0043
110 #define ICE_AQC_CAPS_FD					0x0045
111 #define ICE_AQC_CAPS_1588				0x0046
112 #define ICE_AQC_CAPS_MAX_MTU				0x0047
113 #define ICE_AQC_CAPS_NVM_VER				0x0048
114 #define ICE_AQC_CAPS_PENDING_NVM_VER			0x0049
115 #define ICE_AQC_CAPS_OROM_VER				0x004A
116 #define ICE_AQC_CAPS_PENDING_OROM_VER			0x004B
117 #define ICE_AQC_CAPS_NET_VER				0x004C
118 #define ICE_AQC_CAPS_PENDING_NET_VER			0x004D
119 #define ICE_AQC_CAPS_RDMA				0x0051
120 #define ICE_AQC_CAPS_PCIE_RESET_AVOIDANCE		0x0076
121 #define ICE_AQC_CAPS_POST_UPDATE_RESET_RESTRICT		0x0077
122 #define ICE_AQC_CAPS_NVM_MGMT				0x0080
123 #define ICE_AQC_CAPS_FW_LAG_SUPPORT			0x0092
124 #define ICE_AQC_BIT_ROCEV2_LAG				0x01
125 #define ICE_AQC_BIT_SRIOV_LAG				0x02
126 
127 	u8 major_ver;
128 	u8 minor_ver;
129 	/* Number of resources described by this capability */
130 	__le32 number;
131 	/* Only meaningful for some types of resources */
132 	__le32 logical_id;
133 	/* Only meaningful for some types of resources */
134 	__le32 phys_id;
135 	__le64 rsvd1;
136 	__le64 rsvd2;
137 };
138 
139 /* Manage MAC address, read command - indirect (0x0107)
140  * This struct is also used for the response
141  */
142 struct ice_aqc_manage_mac_read {
143 	__le16 flags; /* Zeroed by device driver */
144 #define ICE_AQC_MAN_MAC_LAN_ADDR_VALID		BIT(4)
145 #define ICE_AQC_MAN_MAC_SAN_ADDR_VALID		BIT(5)
146 #define ICE_AQC_MAN_MAC_PORT_ADDR_VALID		BIT(6)
147 #define ICE_AQC_MAN_MAC_WOL_ADDR_VALID		BIT(7)
148 #define ICE_AQC_MAN_MAC_READ_S			4
149 #define ICE_AQC_MAN_MAC_READ_M			(0xF << ICE_AQC_MAN_MAC_READ_S)
150 	u8 rsvd[2];
151 	u8 num_addr; /* Used in response */
152 	u8 rsvd1[3];
153 	__le32 addr_high;
154 	__le32 addr_low;
155 };
156 
157 /* Response buffer format for manage MAC read command */
158 struct ice_aqc_manage_mac_read_resp {
159 	u8 lport_num;
160 	u8 addr_type;
161 #define ICE_AQC_MAN_MAC_ADDR_TYPE_LAN		0
162 #define ICE_AQC_MAN_MAC_ADDR_TYPE_WOL		1
163 	u8 mac_addr[ETH_ALEN];
164 };
165 
166 /* Manage MAC address, write command - direct (0x0108) */
167 struct ice_aqc_manage_mac_write {
168 	u8 rsvd;
169 	u8 flags;
170 #define ICE_AQC_MAN_MAC_WR_MC_MAG_EN		BIT(0)
171 #define ICE_AQC_MAN_MAC_WR_WOL_LAA_PFR_KEEP	BIT(1)
172 #define ICE_AQC_MAN_MAC_WR_S		6
173 #define ICE_AQC_MAN_MAC_WR_M		ICE_M(3, ICE_AQC_MAN_MAC_WR_S)
174 #define ICE_AQC_MAN_MAC_UPDATE_LAA	0
175 #define ICE_AQC_MAN_MAC_UPDATE_LAA_WOL	BIT(ICE_AQC_MAN_MAC_WR_S)
176 	/* byte stream in network order */
177 	u8 mac_addr[ETH_ALEN];
178 	__le32 addr_high;
179 	__le32 addr_low;
180 };
181 
182 /* Clear PXE Command and response (direct 0x0110) */
183 struct ice_aqc_clear_pxe {
184 	u8 rx_cnt;
185 #define ICE_AQC_CLEAR_PXE_RX_CNT		0x2
186 	u8 reserved[15];
187 };
188 
189 /* Get switch configuration (0x0200) */
190 struct ice_aqc_get_sw_cfg {
191 	/* Reserved for command and copy of request flags for response */
192 	__le16 flags;
193 	/* First desc in case of command and next_elem in case of response
194 	 * In case of response, if it is not zero, means all the configuration
195 	 * was not returned and new command shall be sent with this value in
196 	 * the 'first desc' field
197 	 */
198 	__le16 element;
199 	/* Reserved for command, only used for response */
200 	__le16 num_elems;
201 	__le16 rsvd;
202 	__le32 addr_high;
203 	__le32 addr_low;
204 };
205 
206 /* Each entry in the response buffer is of the following type: */
207 struct ice_aqc_get_sw_cfg_resp_elem {
208 	/* VSI/Port Number */
209 	__le16 vsi_port_num;
210 #define ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_S	0
211 #define ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_M	\
212 			(0x3FF << ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_S)
213 #define ICE_AQC_GET_SW_CONF_RESP_TYPE_S	14
214 #define ICE_AQC_GET_SW_CONF_RESP_TYPE_M	(0x3 << ICE_AQC_GET_SW_CONF_RESP_TYPE_S)
215 #define ICE_AQC_GET_SW_CONF_RESP_PHYS_PORT	0
216 #define ICE_AQC_GET_SW_CONF_RESP_VIRT_PORT	1
217 #define ICE_AQC_GET_SW_CONF_RESP_VSI		2
218 
219 	/* SWID VSI/Port belongs to */
220 	__le16 swid;
221 
222 	/* Bit 14..0 : PF/VF number VSI belongs to
223 	 * Bit 15 : VF indication bit
224 	 */
225 	__le16 pf_vf_num;
226 #define ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_S	0
227 #define ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_M	\
228 				(0x7FFF << ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_S)
229 #define ICE_AQC_GET_SW_CONF_RESP_IS_VF		BIT(15)
230 };
231 
232 /* Set Port parameters, (direct, 0x0203) */
233 struct ice_aqc_set_port_params {
234 	__le16 cmd_flags;
235 #define ICE_AQC_SET_P_PARAMS_DOUBLE_VLAN_ENA	BIT(2)
236 	__le16 bad_frame_vsi;
237 	__le16 swid;
238 #define ICE_AQC_PORT_SWID_VALID			BIT(15)
239 #define ICE_AQC_PORT_SWID_M			0xFF
240 	u8 reserved[10];
241 };
242 
243 /* These resource type defines are used for all switch resource
244  * commands where a resource type is required, such as:
245  * Get Resource Allocation command (indirect 0x0204)
246  * Allocate Resources command (indirect 0x0208)
247  * Free Resources command (indirect 0x0209)
248  * Get Allocated Resource Descriptors Command (indirect 0x020A)
249  * Share Resource command (indirect 0x020B)
250  */
251 #define ICE_AQC_RES_TYPE_VSI_LIST_REP			0x03
252 #define ICE_AQC_RES_TYPE_VSI_LIST_PRUNE			0x04
253 #define ICE_AQC_RES_TYPE_RECIPE				0x05
254 #define ICE_AQC_RES_TYPE_SWID				0x07
255 #define ICE_AQC_RES_TYPE_FDIR_COUNTER_BLOCK		0x21
256 #define ICE_AQC_RES_TYPE_FDIR_GUARANTEED_ENTRIES	0x22
257 #define ICE_AQC_RES_TYPE_FDIR_SHARED_ENTRIES		0x23
258 #define ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID		0x58
259 #define ICE_AQC_RES_TYPE_FD_PROF_BLDR_TCAM		0x59
260 #define ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID		0x60
261 #define ICE_AQC_RES_TYPE_HASH_PROF_BLDR_TCAM		0x61
262 
263 #define ICE_AQC_RES_TYPE_FLAG_SHARED			BIT(7)
264 #define ICE_AQC_RES_TYPE_FLAG_SCAN_BOTTOM		BIT(12)
265 #define ICE_AQC_RES_TYPE_FLAG_IGNORE_INDEX		BIT(13)
266 
267 #define ICE_AQC_RES_TYPE_FLAG_DEDICATED			0x00
268 
269 #define ICE_AQC_RES_TYPE_S	0
270 #define ICE_AQC_RES_TYPE_M	(0x07F << ICE_AQC_RES_TYPE_S)
271 
272 /* Allocate Resources command (indirect 0x0208)
273  * Free Resources command (indirect 0x0209)
274  * Share Resource command (indirect 0x020B)
275  */
276 struct ice_aqc_alloc_free_res_cmd {
277 	__le16 num_entries; /* Number of Resource entries */
278 	u8 reserved[6];
279 	__le32 addr_high;
280 	__le32 addr_low;
281 };
282 
283 /* Resource descriptor */
284 struct ice_aqc_res_elem {
285 	union {
286 		__le16 sw_resp;
287 		__le16 flu_resp;
288 	} e;
289 };
290 
291 /* Buffer for Allocate/Free Resources commands */
292 struct ice_aqc_alloc_free_res_elem {
293 	__le16 res_type; /* Types defined above cmd 0x0204 */
294 #define ICE_AQC_RES_TYPE_SHARED_S	7
295 #define ICE_AQC_RES_TYPE_SHARED_M	(0x1 << ICE_AQC_RES_TYPE_SHARED_S)
296 #define ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_S	8
297 #define ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_M	\
298 				(0xF << ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_S)
299 	__le16 num_elems;
300 	struct ice_aqc_res_elem elem[];
301 };
302 
303 /* Request buffer for Set VLAN Mode AQ command (indirect 0x020C) */
304 struct ice_aqc_set_vlan_mode {
305 	u8 reserved;
306 	u8 l2tag_prio_tagging;
307 #define ICE_AQ_VLAN_PRIO_TAG_S			0
308 #define ICE_AQ_VLAN_PRIO_TAG_M			(0x7 << ICE_AQ_VLAN_PRIO_TAG_S)
309 #define ICE_AQ_VLAN_PRIO_TAG_NOT_SUPPORTED	0x0
310 #define ICE_AQ_VLAN_PRIO_TAG_STAG		0x1
311 #define ICE_AQ_VLAN_PRIO_TAG_OUTER_CTAG		0x2
312 #define ICE_AQ_VLAN_PRIO_TAG_OUTER_VLAN		0x3
313 #define ICE_AQ_VLAN_PRIO_TAG_INNER_CTAG		0x4
314 #define ICE_AQ_VLAN_PRIO_TAG_MAX		0x4
315 #define ICE_AQ_VLAN_PRIO_TAG_ERROR		0x7
316 	u8 l2tag_reserved[64];
317 	u8 rdma_packet;
318 #define ICE_AQ_VLAN_RDMA_TAG_S			0
319 #define ICE_AQ_VLAN_RDMA_TAG_M			(0x3F << ICE_AQ_VLAN_RDMA_TAG_S)
320 #define ICE_AQ_SVM_VLAN_RDMA_PKT_FLAG_SETTING	0x10
321 #define ICE_AQ_DVM_VLAN_RDMA_PKT_FLAG_SETTING	0x1A
322 	u8 rdma_reserved[2];
323 	u8 mng_vlan_prot_id;
324 #define ICE_AQ_VLAN_MNG_PROTOCOL_ID_OUTER	0x10
325 #define ICE_AQ_VLAN_MNG_PROTOCOL_ID_INNER	0x11
326 	u8 prot_id_reserved[30];
327 };
328 
329 /* Response buffer for Get VLAN Mode AQ command (indirect 0x020D) */
330 struct ice_aqc_get_vlan_mode {
331 	u8 vlan_mode;
332 #define ICE_AQ_VLAN_MODE_DVM_ENA	BIT(0)
333 	u8 l2tag_prio_tagging;
334 	u8 reserved[98];
335 };
336 
337 /* Add VSI (indirect 0x0210)
338  * Update VSI (indirect 0x0211)
339  * Get VSI (indirect 0x0212)
340  * Free VSI (indirect 0x0213)
341  */
342 struct ice_aqc_add_get_update_free_vsi {
343 	__le16 vsi_num;
344 #define ICE_AQ_VSI_NUM_S	0
345 #define ICE_AQ_VSI_NUM_M	(0x03FF << ICE_AQ_VSI_NUM_S)
346 #define ICE_AQ_VSI_IS_VALID	BIT(15)
347 	__le16 cmd_flags;
348 #define ICE_AQ_VSI_KEEP_ALLOC	0x1
349 	u8 vf_id;
350 	u8 reserved;
351 	__le16 vsi_flags;
352 #define ICE_AQ_VSI_TYPE_S	0
353 #define ICE_AQ_VSI_TYPE_M	(0x3 << ICE_AQ_VSI_TYPE_S)
354 #define ICE_AQ_VSI_TYPE_VF	0x0
355 #define ICE_AQ_VSI_TYPE_VMDQ2	0x1
356 #define ICE_AQ_VSI_TYPE_PF	0x2
357 #define ICE_AQ_VSI_TYPE_EMP_MNG	0x3
358 	__le32 addr_high;
359 	__le32 addr_low;
360 };
361 
362 /* Response descriptor for:
363  * Add VSI (indirect 0x0210)
364  * Update VSI (indirect 0x0211)
365  * Free VSI (indirect 0x0213)
366  */
367 struct ice_aqc_add_update_free_vsi_resp {
368 	__le16 vsi_num;
369 	__le16 ext_status;
370 	__le16 vsi_used;
371 	__le16 vsi_free;
372 	__le32 addr_high;
373 	__le32 addr_low;
374 };
375 
376 struct ice_aqc_vsi_props {
377 	__le16 valid_sections;
378 #define ICE_AQ_VSI_PROP_SW_VALID		BIT(0)
379 #define ICE_AQ_VSI_PROP_SECURITY_VALID		BIT(1)
380 #define ICE_AQ_VSI_PROP_VLAN_VALID		BIT(2)
381 #define ICE_AQ_VSI_PROP_OUTER_TAG_VALID		BIT(3)
382 #define ICE_AQ_VSI_PROP_INGRESS_UP_VALID	BIT(4)
383 #define ICE_AQ_VSI_PROP_EGRESS_UP_VALID		BIT(5)
384 #define ICE_AQ_VSI_PROP_RXQ_MAP_VALID		BIT(6)
385 #define ICE_AQ_VSI_PROP_Q_OPT_VALID		BIT(7)
386 #define ICE_AQ_VSI_PROP_OUTER_UP_VALID		BIT(8)
387 #define ICE_AQ_VSI_PROP_FLOW_DIR_VALID		BIT(11)
388 #define ICE_AQ_VSI_PROP_PASID_VALID		BIT(12)
389 	/* switch section */
390 	u8 sw_id;
391 	u8 sw_flags;
392 #define ICE_AQ_VSI_SW_FLAG_ALLOW_LB		BIT(5)
393 #define ICE_AQ_VSI_SW_FLAG_LOCAL_LB		BIT(6)
394 #define ICE_AQ_VSI_SW_FLAG_SRC_PRUNE		BIT(7)
395 	u8 sw_flags2;
396 #define ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_S	0
397 #define ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_M	(0xF << ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_S)
398 #define ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA	BIT(0)
399 #define ICE_AQ_VSI_SW_FLAG_LAN_ENA		BIT(4)
400 	u8 veb_stat_id;
401 #define ICE_AQ_VSI_SW_VEB_STAT_ID_S		0
402 #define ICE_AQ_VSI_SW_VEB_STAT_ID_M		(0x1F << ICE_AQ_VSI_SW_VEB_STAT_ID_S)
403 #define ICE_AQ_VSI_SW_VEB_STAT_ID_VALID		BIT(5)
404 	/* security section */
405 	u8 sec_flags;
406 #define ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD	BIT(0)
407 #define ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF	BIT(2)
408 #define ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S		4
409 #define ICE_AQ_VSI_SEC_TX_PRUNE_ENA_M		(0xF << ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S)
410 #define ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA	BIT(0)
411 	u8 sec_reserved;
412 	/* VLAN section */
413 	__le16 port_based_inner_vlan; /* VLANS include priority bits */
414 	u8 inner_vlan_reserved[2];
415 	u8 inner_vlan_flags;
416 #define ICE_AQ_VSI_INNER_VLAN_TX_MODE_S		0
417 #define ICE_AQ_VSI_INNER_VLAN_TX_MODE_M		(0x3 << ICE_AQ_VSI_INNER_VLAN_TX_MODE_S)
418 #define ICE_AQ_VSI_INNER_VLAN_TX_MODE_ACCEPTUNTAGGED	0x1
419 #define ICE_AQ_VSI_INNER_VLAN_TX_MODE_ACCEPTTAGGED	0x2
420 #define ICE_AQ_VSI_INNER_VLAN_TX_MODE_ALL	0x3
421 #define ICE_AQ_VSI_INNER_VLAN_INSERT_PVID	BIT(2)
422 #define ICE_AQ_VSI_INNER_VLAN_EMODE_S		3
423 #define ICE_AQ_VSI_INNER_VLAN_EMODE_M		(0x3 << ICE_AQ_VSI_INNER_VLAN_EMODE_S)
424 #define ICE_AQ_VSI_INNER_VLAN_EMODE_STR_BOTH	(0x0 << ICE_AQ_VSI_INNER_VLAN_EMODE_S)
425 #define ICE_AQ_VSI_INNER_VLAN_EMODE_STR_UP	(0x1 << ICE_AQ_VSI_INNER_VLAN_EMODE_S)
426 #define ICE_AQ_VSI_INNER_VLAN_EMODE_STR		(0x2 << ICE_AQ_VSI_INNER_VLAN_EMODE_S)
427 #define ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING	(0x3 << ICE_AQ_VSI_INNER_VLAN_EMODE_S)
428 	u8 inner_vlan_reserved2[3];
429 	/* ingress egress up sections */
430 	__le32 ingress_table; /* bitmap, 3 bits per up */
431 #define ICE_AQ_VSI_UP_TABLE_UP0_S		0
432 #define ICE_AQ_VSI_UP_TABLE_UP0_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP0_S)
433 #define ICE_AQ_VSI_UP_TABLE_UP1_S		3
434 #define ICE_AQ_VSI_UP_TABLE_UP1_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP1_S)
435 #define ICE_AQ_VSI_UP_TABLE_UP2_S		6
436 #define ICE_AQ_VSI_UP_TABLE_UP2_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP2_S)
437 #define ICE_AQ_VSI_UP_TABLE_UP3_S		9
438 #define ICE_AQ_VSI_UP_TABLE_UP3_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP3_S)
439 #define ICE_AQ_VSI_UP_TABLE_UP4_S		12
440 #define ICE_AQ_VSI_UP_TABLE_UP4_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP4_S)
441 #define ICE_AQ_VSI_UP_TABLE_UP5_S		15
442 #define ICE_AQ_VSI_UP_TABLE_UP5_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP5_S)
443 #define ICE_AQ_VSI_UP_TABLE_UP6_S		18
444 #define ICE_AQ_VSI_UP_TABLE_UP6_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP6_S)
445 #define ICE_AQ_VSI_UP_TABLE_UP7_S		21
446 #define ICE_AQ_VSI_UP_TABLE_UP7_M		(0x7 << ICE_AQ_VSI_UP_TABLE_UP7_S)
447 	__le32 egress_table;   /* same defines as for ingress table */
448 	/* outer tags section */
449 	__le16 port_based_outer_vlan;
450 	u8 outer_vlan_flags;
451 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_S		0
452 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_M		(0x3 << ICE_AQ_VSI_OUTER_VLAN_EMODE_S)
453 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW_BOTH	0x0
454 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW_UP	0x1
455 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW	0x2
456 #define ICE_AQ_VSI_OUTER_VLAN_EMODE_NOTHING	0x3
457 #define ICE_AQ_VSI_OUTER_TAG_TYPE_S		2
458 #define ICE_AQ_VSI_OUTER_TAG_TYPE_M		(0x3 << ICE_AQ_VSI_OUTER_TAG_TYPE_S)
459 #define ICE_AQ_VSI_OUTER_TAG_NONE		0x0
460 #define ICE_AQ_VSI_OUTER_TAG_STAG		0x1
461 #define ICE_AQ_VSI_OUTER_TAG_VLAN_8100		0x2
462 #define ICE_AQ_VSI_OUTER_TAG_VLAN_9100		0x3
463 #define ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_INSERT		BIT(4)
464 #define ICE_AQ_VSI_OUTER_VLAN_TX_MODE_S			5
465 #define ICE_AQ_VSI_OUTER_VLAN_TX_MODE_M			(0x3 << ICE_AQ_VSI_OUTER_VLAN_TX_MODE_S)
466 #define ICE_AQ_VSI_OUTER_VLAN_TX_MODE_ACCEPTUNTAGGED	0x1
467 #define ICE_AQ_VSI_OUTER_VLAN_TX_MODE_ACCEPTTAGGED	0x2
468 #define ICE_AQ_VSI_OUTER_VLAN_TX_MODE_ALL		0x3
469 #define ICE_AQ_VSI_OUTER_VLAN_BLOCK_TX_DESC		BIT(7)
470 	u8 outer_vlan_reserved;
471 	/* queue mapping section */
472 	__le16 mapping_flags;
473 #define ICE_AQ_VSI_Q_MAP_CONTIG			0x0
474 #define ICE_AQ_VSI_Q_MAP_NONCONTIG		BIT(0)
475 	__le16 q_mapping[16];
476 #define ICE_AQ_VSI_Q_S				0
477 #define ICE_AQ_VSI_Q_M				(0x7FF << ICE_AQ_VSI_Q_S)
478 	__le16 tc_mapping[8];
479 #define ICE_AQ_VSI_TC_Q_OFFSET_S		0
480 #define ICE_AQ_VSI_TC_Q_OFFSET_M		(0x7FF << ICE_AQ_VSI_TC_Q_OFFSET_S)
481 #define ICE_AQ_VSI_TC_Q_NUM_S			11
482 #define ICE_AQ_VSI_TC_Q_NUM_M			(0xF << ICE_AQ_VSI_TC_Q_NUM_S)
483 	/* queueing option section */
484 	u8 q_opt_rss;
485 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_S		0
486 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_M		(0x3 << ICE_AQ_VSI_Q_OPT_RSS_LUT_S)
487 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI		0x0
488 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_PF		0x2
489 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_GBL		0x3
490 #define ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_S		2
491 #define ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_M		(0xF << ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_S)
492 #define ICE_AQ_VSI_Q_OPT_RSS_HASH_S		6
493 #define ICE_AQ_VSI_Q_OPT_RSS_HASH_M		(0x3 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
494 #define ICE_AQ_VSI_Q_OPT_RSS_TPLZ		(0x0 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
495 #define ICE_AQ_VSI_Q_OPT_RSS_SYM_TPLZ		(0x1 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
496 #define ICE_AQ_VSI_Q_OPT_RSS_XOR		(0x2 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
497 #define ICE_AQ_VSI_Q_OPT_RSS_JHASH		(0x3 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
498 	u8 q_opt_tc;
499 #define ICE_AQ_VSI_Q_OPT_TC_OVR_S		0
500 #define ICE_AQ_VSI_Q_OPT_TC_OVR_M		(0x1F << ICE_AQ_VSI_Q_OPT_TC_OVR_S)
501 #define ICE_AQ_VSI_Q_OPT_PROF_TC_OVR		BIT(7)
502 	u8 q_opt_flags;
503 #define ICE_AQ_VSI_Q_OPT_PE_FLTR_EN		BIT(0)
504 	u8 q_opt_reserved[3];
505 	/* outer up section */
506 	__le32 outer_up_table; /* same structure and defines as ingress tbl */
507 	/* section 10 */
508 	__le16 sect_10_reserved;
509 	/* flow director section */
510 	__le16 fd_options;
511 #define ICE_AQ_VSI_FD_ENABLE			BIT(0)
512 #define ICE_AQ_VSI_FD_TX_AUTO_ENABLE		BIT(1)
513 #define ICE_AQ_VSI_FD_PROG_ENABLE		BIT(3)
514 	__le16 max_fd_fltr_dedicated;
515 	__le16 max_fd_fltr_shared;
516 	__le16 fd_def_q;
517 #define ICE_AQ_VSI_FD_DEF_Q_S			0
518 #define ICE_AQ_VSI_FD_DEF_Q_M			(0x7FF << ICE_AQ_VSI_FD_DEF_Q_S)
519 #define ICE_AQ_VSI_FD_DEF_GRP_S			12
520 #define ICE_AQ_VSI_FD_DEF_GRP_M			(0x7 << ICE_AQ_VSI_FD_DEF_GRP_S)
521 	__le16 fd_report_opt;
522 #define ICE_AQ_VSI_FD_REPORT_Q_S		0
523 #define ICE_AQ_VSI_FD_REPORT_Q_M		(0x7FF << ICE_AQ_VSI_FD_REPORT_Q_S)
524 #define ICE_AQ_VSI_FD_DEF_PRIORITY_S		12
525 #define ICE_AQ_VSI_FD_DEF_PRIORITY_M		(0x7 << ICE_AQ_VSI_FD_DEF_PRIORITY_S)
526 #define ICE_AQ_VSI_FD_DEF_DROP			BIT(15)
527 	/* PASID section */
528 	__le32 pasid_id;
529 #define ICE_AQ_VSI_PASID_ID_S			0
530 #define ICE_AQ_VSI_PASID_ID_M			(0xFFFFF << ICE_AQ_VSI_PASID_ID_S)
531 #define ICE_AQ_VSI_PASID_ID_VALID		BIT(31)
532 	u8 reserved[24];
533 };
534 
535 #define ICE_MAX_NUM_RECIPES 64
536 
537 /* Add/Get Recipe (indirect 0x0290/0x0292) */
538 struct ice_aqc_add_get_recipe {
539 	__le16 num_sub_recipes;	/* Input in Add cmd, Output in Get cmd */
540 	__le16 return_index;	/* Input, used for Get cmd only */
541 	u8 reserved[4];
542 	__le32 addr_high;
543 	__le32 addr_low;
544 };
545 
546 struct ice_aqc_recipe_content {
547 	u8 rid;
548 #define ICE_AQ_RECIPE_ID_S		0
549 #define ICE_AQ_RECIPE_ID_M		(0x3F << ICE_AQ_RECIPE_ID_S)
550 #define ICE_AQ_RECIPE_ID_IS_ROOT	BIT(7)
551 #define ICE_AQ_SW_ID_LKUP_IDX		0
552 	u8 lkup_indx[5];
553 #define ICE_AQ_RECIPE_LKUP_DATA_S	0
554 #define ICE_AQ_RECIPE_LKUP_DATA_M	(0x3F << ICE_AQ_RECIPE_LKUP_DATA_S)
555 #define ICE_AQ_RECIPE_LKUP_IGNORE	BIT(7)
556 #define ICE_AQ_SW_ID_LKUP_MASK		0x00FF
557 	__le16 mask[5];
558 	u8 result_indx;
559 #define ICE_AQ_RECIPE_RESULT_DATA_S	0
560 #define ICE_AQ_RECIPE_RESULT_DATA_M	(0x3F << ICE_AQ_RECIPE_RESULT_DATA_S)
561 #define ICE_AQ_RECIPE_RESULT_EN		BIT(7)
562 	u8 rsvd0[3];
563 	u8 act_ctrl_join_priority;
564 	u8 act_ctrl_fwd_priority;
565 #define ICE_AQ_RECIPE_FWD_PRIORITY_S	0
566 #define ICE_AQ_RECIPE_FWD_PRIORITY_M	(0xF << ICE_AQ_RECIPE_FWD_PRIORITY_S)
567 	u8 act_ctrl;
568 #define ICE_AQ_RECIPE_ACT_NEED_PASS_L2	BIT(0)
569 #define ICE_AQ_RECIPE_ACT_ALLOW_PASS_L2	BIT(1)
570 #define ICE_AQ_RECIPE_ACT_INV_ACT	BIT(2)
571 #define ICE_AQ_RECIPE_ACT_PRUNE_INDX_S	4
572 #define ICE_AQ_RECIPE_ACT_PRUNE_INDX_M	(0x3 << ICE_AQ_RECIPE_ACT_PRUNE_INDX_S)
573 	u8 rsvd1;
574 	__le32 dflt_act;
575 #define ICE_AQ_RECIPE_DFLT_ACT_S	0
576 #define ICE_AQ_RECIPE_DFLT_ACT_M	(0x7FFFF << ICE_AQ_RECIPE_DFLT_ACT_S)
577 #define ICE_AQ_RECIPE_DFLT_ACT_VALID	BIT(31)
578 };
579 
580 struct ice_aqc_recipe_data_elem {
581 	u8 recipe_indx;
582 	u8 resp_bits;
583 #define ICE_AQ_RECIPE_WAS_UPDATED	BIT(0)
584 	u8 rsvd0[2];
585 	u8 recipe_bitmap[8];
586 	u8 rsvd1[4];
587 	struct ice_aqc_recipe_content content;
588 	u8 rsvd2[20];
589 };
590 
591 /* Set/Get Recipes to Profile Association (direct 0x0291/0x0293) */
592 struct ice_aqc_recipe_to_profile {
593 	__le16 profile_id;
594 	u8 rsvd[6];
595 	DECLARE_BITMAP(recipe_assoc, ICE_MAX_NUM_RECIPES);
596 };
597 
598 /* Add/Update/Remove/Get switch rules (indirect 0x02A0, 0x02A1, 0x02A2, 0x02A3)
599  */
600 struct ice_aqc_sw_rules {
601 	/* ops: add switch rules, referring the number of rules.
602 	 * ops: update switch rules, referring the number of filters
603 	 * ops: remove switch rules, referring the entry index.
604 	 * ops: get switch rules, referring to the number of filters.
605 	 */
606 	__le16 num_rules_fltr_entry_index;
607 	u8 reserved[6];
608 	__le32 addr_high;
609 	__le32 addr_low;
610 };
611 
612 /* Add switch rule response:
613  * Content of return buffer is same as the input buffer. The status field and
614  * LUT index are updated as part of the response
615  */
616 struct ice_aqc_sw_rules_elem_hdr {
617 	__le16 type; /* Switch rule type, one of T_... */
618 #define ICE_AQC_SW_RULES_T_LKUP_RX		0x0
619 #define ICE_AQC_SW_RULES_T_LKUP_TX		0x1
620 #define ICE_AQC_SW_RULES_T_LG_ACT		0x2
621 #define ICE_AQC_SW_RULES_T_VSI_LIST_SET		0x3
622 #define ICE_AQC_SW_RULES_T_VSI_LIST_CLEAR	0x4
623 #define ICE_AQC_SW_RULES_T_PRUNE_LIST_SET	0x5
624 #define ICE_AQC_SW_RULES_T_PRUNE_LIST_CLEAR	0x6
625 	__le16 status;
626 } __packed __aligned(sizeof(__le16));
627 
628 /* Add/Update/Get/Remove lookup Rx/Tx command/response entry
629  * This structures describes the lookup rules and associated actions. "index"
630  * is returned as part of a response to a successful Add command, and can be
631  * used to identify the rule for Update/Get/Remove commands.
632  */
633 struct ice_sw_rule_lkup_rx_tx {
634 	struct ice_aqc_sw_rules_elem_hdr hdr;
635 
636 	__le16 recipe_id;
637 #define ICE_SW_RECIPE_LOGICAL_PORT_FWD		10
638 	/* Source port for LOOKUP_RX and source VSI in case of LOOKUP_TX */
639 	__le16 src;
640 	__le32 act;
641 
642 	/* Bit 0:1 - Action type */
643 #define ICE_SINGLE_ACT_TYPE_S	0x00
644 #define ICE_SINGLE_ACT_TYPE_M	(0x3 << ICE_SINGLE_ACT_TYPE_S)
645 
646 	/* Bit 2 - Loop back enable
647 	 * Bit 3 - LAN enable
648 	 */
649 #define ICE_SINGLE_ACT_LB_ENABLE	BIT(2)
650 #define ICE_SINGLE_ACT_LAN_ENABLE	BIT(3)
651 
652 	/* Action type = 0 - Forward to VSI or VSI list */
653 #define ICE_SINGLE_ACT_VSI_FORWARDING	0x0
654 
655 #define ICE_SINGLE_ACT_VSI_ID_S		4
656 #define ICE_SINGLE_ACT_VSI_ID_M		(0x3FF << ICE_SINGLE_ACT_VSI_ID_S)
657 #define ICE_SINGLE_ACT_VSI_LIST_ID_S	4
658 #define ICE_SINGLE_ACT_VSI_LIST_ID_M	(0x3FF << ICE_SINGLE_ACT_VSI_LIST_ID_S)
659 	/* This bit needs to be set if action is forward to VSI list */
660 #define ICE_SINGLE_ACT_VSI_LIST		BIT(14)
661 #define ICE_SINGLE_ACT_VALID_BIT	BIT(17)
662 #define ICE_SINGLE_ACT_DROP		BIT(18)
663 
664 	/* Action type = 1 - Forward to Queue of Queue group */
665 #define ICE_SINGLE_ACT_TO_Q		0x1
666 #define ICE_SINGLE_ACT_Q_INDEX_S	4
667 #define ICE_SINGLE_ACT_Q_INDEX_M	(0x7FF << ICE_SINGLE_ACT_Q_INDEX_S)
668 #define ICE_SINGLE_ACT_Q_REGION_S	15
669 #define ICE_SINGLE_ACT_Q_REGION_M	(0x7 << ICE_SINGLE_ACT_Q_REGION_S)
670 #define ICE_SINGLE_ACT_Q_PRIORITY	BIT(18)
671 
672 	/* Action type = 2 - Prune */
673 #define ICE_SINGLE_ACT_PRUNE		0x2
674 #define ICE_SINGLE_ACT_EGRESS		BIT(15)
675 #define ICE_SINGLE_ACT_INGRESS		BIT(16)
676 #define ICE_SINGLE_ACT_PRUNET		BIT(17)
677 	/* Bit 18 should be set to 0 for this action */
678 
679 	/* Action type = 2 - Pointer */
680 #define ICE_SINGLE_ACT_PTR		0x2
681 #define ICE_SINGLE_ACT_PTR_VAL_S	4
682 #define ICE_SINGLE_ACT_PTR_VAL_M	(0x1FFF << ICE_SINGLE_ACT_PTR_VAL_S)
683 	/* Bit 18 should be set to 1 */
684 #define ICE_SINGLE_ACT_PTR_BIT		BIT(18)
685 
686 	/* Action type = 3 - Other actions. Last two bits
687 	 * are other action identifier
688 	 */
689 #define ICE_SINGLE_ACT_OTHER_ACTS		0x3
690 #define ICE_SINGLE_OTHER_ACT_IDENTIFIER_S	17
691 #define ICE_SINGLE_OTHER_ACT_IDENTIFIER_M	\
692 				(0x3 << ICE_SINGLE_OTHER_ACT_IDENTIFIER_S)
693 
694 	/* Bit 17:18 - Defines other actions */
695 	/* Other action = 0 - Mirror VSI */
696 #define ICE_SINGLE_OTHER_ACT_MIRROR		0
697 #define ICE_SINGLE_ACT_MIRROR_VSI_ID_S	4
698 #define ICE_SINGLE_ACT_MIRROR_VSI_ID_M	\
699 				(0x3FF << ICE_SINGLE_ACT_MIRROR_VSI_ID_S)
700 
701 	/* Other action = 3 - Set Stat count */
702 #define ICE_SINGLE_OTHER_ACT_STAT_COUNT		3
703 #define ICE_SINGLE_ACT_STAT_COUNT_INDEX_S	4
704 #define ICE_SINGLE_ACT_STAT_COUNT_INDEX_M	\
705 				(0x7F << ICE_SINGLE_ACT_STAT_COUNT_INDEX_S)
706 
707 	__le16 index; /* The index of the rule in the lookup table */
708 	/* Length and values of the header to be matched per recipe or
709 	 * lookup-type
710 	 */
711 	__le16 hdr_len;
712 	u8 hdr_data[];
713 } __packed __aligned(sizeof(__le16));
714 
715 /* Add/Update/Remove large action command/response entry
716  * "index" is returned as part of a response to a successful Add command, and
717  * can be used to identify the action for Update/Get/Remove commands.
718  */
719 struct ice_sw_rule_lg_act {
720 	struct ice_aqc_sw_rules_elem_hdr hdr;
721 
722 	__le16 index; /* Index in large action table */
723 	__le16 size;
724 	/* Max number of large actions */
725 #define ICE_MAX_LG_ACT	4
726 	/* Bit 0:1 - Action type */
727 #define ICE_LG_ACT_TYPE_S	0
728 #define ICE_LG_ACT_TYPE_M	(0x7 << ICE_LG_ACT_TYPE_S)
729 
730 	/* Action type = 0 - Forward to VSI or VSI list */
731 #define ICE_LG_ACT_VSI_FORWARDING	0
732 #define ICE_LG_ACT_VSI_ID_S		3
733 #define ICE_LG_ACT_VSI_ID_M		(0x3FF << ICE_LG_ACT_VSI_ID_S)
734 #define ICE_LG_ACT_VSI_LIST_ID_S	3
735 #define ICE_LG_ACT_VSI_LIST_ID_M	(0x3FF << ICE_LG_ACT_VSI_LIST_ID_S)
736 	/* This bit needs to be set if action is forward to VSI list */
737 #define ICE_LG_ACT_VSI_LIST		BIT(13)
738 
739 #define ICE_LG_ACT_VALID_BIT		BIT(16)
740 
741 	/* Action type = 1 - Forward to Queue of Queue group */
742 #define ICE_LG_ACT_TO_Q			0x1
743 #define ICE_LG_ACT_Q_INDEX_S		3
744 #define ICE_LG_ACT_Q_INDEX_M		(0x7FF << ICE_LG_ACT_Q_INDEX_S)
745 #define ICE_LG_ACT_Q_REGION_S		14
746 #define ICE_LG_ACT_Q_REGION_M		(0x7 << ICE_LG_ACT_Q_REGION_S)
747 #define ICE_LG_ACT_Q_PRIORITY_SET	BIT(17)
748 
749 	/* Action type = 2 - Prune */
750 #define ICE_LG_ACT_PRUNE		0x2
751 #define ICE_LG_ACT_EGRESS		BIT(14)
752 #define ICE_LG_ACT_INGRESS		BIT(15)
753 #define ICE_LG_ACT_PRUNET		BIT(16)
754 
755 	/* Action type = 3 - Mirror VSI */
756 #define ICE_LG_OTHER_ACT_MIRROR		0x3
757 #define ICE_LG_ACT_MIRROR_VSI_ID_S	3
758 #define ICE_LG_ACT_MIRROR_VSI_ID_M	(0x3FF << ICE_LG_ACT_MIRROR_VSI_ID_S)
759 
760 	/* Action type = 5 - Generic Value */
761 #define ICE_LG_ACT_GENERIC		0x5
762 #define ICE_LG_ACT_GENERIC_VALUE_S	3
763 #define ICE_LG_ACT_GENERIC_VALUE_M	(0xFFFF << ICE_LG_ACT_GENERIC_VALUE_S)
764 #define ICE_LG_ACT_GENERIC_OFFSET_S	19
765 #define ICE_LG_ACT_GENERIC_OFFSET_M	(0x7 << ICE_LG_ACT_GENERIC_OFFSET_S)
766 #define ICE_LG_ACT_GENERIC_PRIORITY_S	22
767 #define ICE_LG_ACT_GENERIC_PRIORITY_M	(0x7 << ICE_LG_ACT_GENERIC_PRIORITY_S)
768 #define ICE_LG_ACT_GENERIC_OFF_RX_DESC_PROF_IDX	7
769 
770 	/* Action = 7 - Set Stat count */
771 #define ICE_LG_ACT_STAT_COUNT		0x7
772 #define ICE_LG_ACT_STAT_COUNT_S		3
773 #define ICE_LG_ACT_STAT_COUNT_M		(0x7F << ICE_LG_ACT_STAT_COUNT_S)
774 	__le32 act[]; /* array of size for actions */
775 } __packed __aligned(sizeof(__le16));
776 
777 /* Add/Update/Remove VSI list command/response entry
778  * "index" is returned as part of a response to a successful Add command, and
779  * can be used to identify the VSI list for Update/Get/Remove commands.
780  */
781 struct ice_sw_rule_vsi_list {
782 	struct ice_aqc_sw_rules_elem_hdr hdr;
783 
784 	__le16 index; /* Index of VSI/Prune list */
785 	__le16 number_vsi;
786 	__le16 vsi[]; /* Array of number_vsi VSI numbers */
787 } __packed __aligned(sizeof(__le16));
788 
789 /* Query PFC Mode (direct 0x0302)
790  * Set PFC Mode (direct 0x0303)
791  */
792 struct ice_aqc_set_query_pfc_mode {
793 	u8	pfc_mode;
794 /* For Query Command response, reserved in all other cases */
795 #define ICE_AQC_PFC_VLAN_BASED_PFC	1
796 #define ICE_AQC_PFC_DSCP_BASED_PFC	2
797 	u8	rsvd[15];
798 };
799 /* Get Default Topology (indirect 0x0400) */
800 struct ice_aqc_get_topo {
801 	u8 port_num;
802 	u8 num_branches;
803 	__le16 reserved1;
804 	__le32 reserved2;
805 	__le32 addr_high;
806 	__le32 addr_low;
807 };
808 
809 /* Update TSE (indirect 0x0403)
810  * Get TSE (indirect 0x0404)
811  * Add TSE (indirect 0x0401)
812  * Delete TSE (indirect 0x040F)
813  * Move TSE (indirect 0x0408)
814  * Suspend Nodes (indirect 0x0409)
815  * Resume Nodes (indirect 0x040A)
816  */
817 struct ice_aqc_sched_elem_cmd {
818 	__le16 num_elem_req;	/* Used by commands */
819 	__le16 num_elem_resp;	/* Used by responses */
820 	__le32 reserved;
821 	__le32 addr_high;
822 	__le32 addr_low;
823 };
824 
825 struct ice_aqc_txsched_move_grp_info_hdr {
826 	__le32 src_parent_teid;
827 	__le32 dest_parent_teid;
828 	__le16 num_elems;
829 	u8 mode;
830 #define ICE_AQC_MOVE_ELEM_MODE_SAME_PF		0x0
831 #define ICE_AQC_MOVE_ELEM_MODE_GIVE_OWN		0x1
832 #define ICE_AQC_MOVE_ELEM_MODE_KEEP_OWN		0x2
833 	u8 reserved;
834 };
835 
836 struct ice_aqc_move_elem {
837 	struct ice_aqc_txsched_move_grp_info_hdr hdr;
838 	__le32 teid[];
839 };
840 
841 struct ice_aqc_elem_info_bw {
842 	__le16 bw_profile_idx;
843 	__le16 bw_alloc;
844 };
845 
846 struct ice_aqc_txsched_elem {
847 	u8 elem_type; /* Special field, reserved for some aq calls */
848 #define ICE_AQC_ELEM_TYPE_UNDEFINED		0x0
849 #define ICE_AQC_ELEM_TYPE_ROOT_PORT		0x1
850 #define ICE_AQC_ELEM_TYPE_TC			0x2
851 #define ICE_AQC_ELEM_TYPE_SE_GENERIC		0x3
852 #define ICE_AQC_ELEM_TYPE_ENTRY_POINT		0x4
853 #define ICE_AQC_ELEM_TYPE_LEAF			0x5
854 #define ICE_AQC_ELEM_TYPE_SE_PADDED		0x6
855 	u8 valid_sections;
856 #define ICE_AQC_ELEM_VALID_GENERIC		BIT(0)
857 #define ICE_AQC_ELEM_VALID_CIR			BIT(1)
858 #define ICE_AQC_ELEM_VALID_EIR			BIT(2)
859 #define ICE_AQC_ELEM_VALID_SHARED		BIT(3)
860 	u8 generic;
861 #define ICE_AQC_ELEM_GENERIC_MODE_M		0x1
862 #define ICE_AQC_ELEM_GENERIC_PRIO_S		0x1
863 #define ICE_AQC_ELEM_GENERIC_PRIO_M	        GENMASK(3, 1)
864 #define ICE_AQC_ELEM_GENERIC_SP_S		0x4
865 #define ICE_AQC_ELEM_GENERIC_SP_M	        GENMASK(4, 4)
866 #define ICE_AQC_ELEM_GENERIC_ADJUST_VAL_S	0x5
867 #define ICE_AQC_ELEM_GENERIC_ADJUST_VAL_M	\
868 	(0x3 << ICE_AQC_ELEM_GENERIC_ADJUST_VAL_S)
869 	u8 flags; /* Special field, reserved for some aq calls */
870 #define ICE_AQC_ELEM_FLAG_SUSPEND_M		0x1
871 	struct ice_aqc_elem_info_bw cir_bw;
872 	struct ice_aqc_elem_info_bw eir_bw;
873 	__le16 srl_id;
874 	__le16 reserved2;
875 };
876 
877 struct ice_aqc_txsched_elem_data {
878 	__le32 parent_teid;
879 	__le32 node_teid;
880 	struct ice_aqc_txsched_elem data;
881 };
882 
883 struct ice_aqc_txsched_topo_grp_info_hdr {
884 	__le32 parent_teid;
885 	__le16 num_elems;
886 	__le16 reserved2;
887 };
888 
889 struct ice_aqc_add_elem {
890 	struct ice_aqc_txsched_topo_grp_info_hdr hdr;
891 	struct ice_aqc_txsched_elem_data generic[];
892 };
893 
894 struct ice_aqc_get_topo_elem {
895 	struct ice_aqc_txsched_topo_grp_info_hdr hdr;
896 	struct ice_aqc_txsched_elem_data
897 		generic[ICE_AQC_TOPO_MAX_LEVEL_NUM];
898 };
899 
900 struct ice_aqc_delete_elem {
901 	struct ice_aqc_txsched_topo_grp_info_hdr hdr;
902 	__le32 teid[];
903 };
904 
905 /* Query Port ETS (indirect 0x040E)
906  *
907  * This indirect command is used to query port TC node configuration.
908  */
909 struct ice_aqc_query_port_ets {
910 	__le32 port_teid;
911 	__le32 reserved;
912 	__le32 addr_high;
913 	__le32 addr_low;
914 };
915 
916 struct ice_aqc_port_ets_elem {
917 	u8 tc_valid_bits;
918 	u8 reserved[3];
919 	/* 3 bits for UP per TC 0-7, 4th byte reserved */
920 	__le32 up2tc;
921 	u8 tc_bw_share[8];
922 	__le32 port_eir_prof_id;
923 	__le32 port_cir_prof_id;
924 	/* 3 bits per Node priority to TC 0-7, 4th byte reserved */
925 	__le32 tc_node_prio;
926 #define ICE_TC_NODE_PRIO_S	0x4
927 	u8 reserved1[4];
928 	__le32 tc_node_teid[8]; /* Used for response, reserved in command */
929 };
930 
931 /* Rate limiting profile for
932  * Add RL profile (indirect 0x0410)
933  * Query RL profile (indirect 0x0411)
934  * Remove RL profile (indirect 0x0415)
935  * These indirect commands acts on single or multiple
936  * RL profiles with specified data.
937  */
938 struct ice_aqc_rl_profile {
939 	__le16 num_profiles;
940 	__le16 num_processed; /* Only for response. Reserved in Command. */
941 	u8 reserved[4];
942 	__le32 addr_high;
943 	__le32 addr_low;
944 };
945 
946 struct ice_aqc_rl_profile_elem {
947 	u8 level;
948 	u8 flags;
949 #define ICE_AQC_RL_PROFILE_TYPE_S	0x0
950 #define ICE_AQC_RL_PROFILE_TYPE_M	(0x3 << ICE_AQC_RL_PROFILE_TYPE_S)
951 #define ICE_AQC_RL_PROFILE_TYPE_CIR	0
952 #define ICE_AQC_RL_PROFILE_TYPE_EIR	1
953 #define ICE_AQC_RL_PROFILE_TYPE_SRL	2
954 /* The following flag is used for Query RL Profile Data */
955 #define ICE_AQC_RL_PROFILE_INVAL_S	0x7
956 #define ICE_AQC_RL_PROFILE_INVAL_M	(0x1 << ICE_AQC_RL_PROFILE_INVAL_S)
957 
958 	__le16 profile_id;
959 	__le16 max_burst_size;
960 	__le16 rl_multiply;
961 	__le16 wake_up_calc;
962 	__le16 rl_encode;
963 };
964 
965 /* Query Scheduler Resource Allocation (indirect 0x0412)
966  * This indirect command retrieves the scheduler resources allocated by
967  * EMP Firmware to the given PF.
968  */
969 struct ice_aqc_query_txsched_res {
970 	u8 reserved[8];
971 	__le32 addr_high;
972 	__le32 addr_low;
973 };
974 
975 struct ice_aqc_generic_sched_props {
976 	__le16 phys_levels;
977 	__le16 logical_levels;
978 	u8 flattening_bitmap;
979 	u8 max_device_cgds;
980 	u8 max_pf_cgds;
981 	u8 rsvd0;
982 	__le16 rdma_qsets;
983 	u8 rsvd1[22];
984 };
985 
986 struct ice_aqc_layer_props {
987 	u8 logical_layer;
988 	u8 chunk_size;
989 	__le16 max_device_nodes;
990 	__le16 max_pf_nodes;
991 	u8 rsvd0[4];
992 	__le16 max_sibl_grp_sz;
993 	__le16 max_cir_rl_profiles;
994 	__le16 max_eir_rl_profiles;
995 	__le16 max_srl_profiles;
996 	u8 rsvd1[14];
997 };
998 
999 struct ice_aqc_query_txsched_res_resp {
1000 	struct ice_aqc_generic_sched_props sched_props;
1001 	struct ice_aqc_layer_props layer_props[ICE_AQC_TOPO_MAX_LEVEL_NUM];
1002 };
1003 
1004 /* Get PHY capabilities (indirect 0x0600) */
1005 struct ice_aqc_get_phy_caps {
1006 	u8 lport_num;
1007 	u8 reserved;
1008 	__le16 param0;
1009 	/* 18.0 - Report qualified modules */
1010 #define ICE_AQC_GET_PHY_RQM		BIT(0)
1011 	/* 18.1 - 18.3 : Report mode
1012 	 * 000b - Report NVM capabilities
1013 	 * 001b - Report topology capabilities
1014 	 * 010b - Report SW configured
1015 	 * 100b - Report default capabilities
1016 	 */
1017 #define ICE_AQC_REPORT_MODE_S			1
1018 #define ICE_AQC_REPORT_MODE_M			(7 << ICE_AQC_REPORT_MODE_S)
1019 #define ICE_AQC_REPORT_TOPO_CAP_NO_MEDIA	0
1020 #define ICE_AQC_REPORT_TOPO_CAP_MEDIA		BIT(1)
1021 #define ICE_AQC_REPORT_ACTIVE_CFG		BIT(2)
1022 #define ICE_AQC_REPORT_DFLT_CFG		BIT(3)
1023 	__le32 reserved1;
1024 	__le32 addr_high;
1025 	__le32 addr_low;
1026 };
1027 
1028 /* This is #define of PHY type (Extended):
1029  * The first set of defines is for phy_type_low.
1030  */
1031 #define ICE_PHY_TYPE_LOW_100BASE_TX		BIT_ULL(0)
1032 #define ICE_PHY_TYPE_LOW_100M_SGMII		BIT_ULL(1)
1033 #define ICE_PHY_TYPE_LOW_1000BASE_T		BIT_ULL(2)
1034 #define ICE_PHY_TYPE_LOW_1000BASE_SX		BIT_ULL(3)
1035 #define ICE_PHY_TYPE_LOW_1000BASE_LX		BIT_ULL(4)
1036 #define ICE_PHY_TYPE_LOW_1000BASE_KX		BIT_ULL(5)
1037 #define ICE_PHY_TYPE_LOW_1G_SGMII		BIT_ULL(6)
1038 #define ICE_PHY_TYPE_LOW_2500BASE_T		BIT_ULL(7)
1039 #define ICE_PHY_TYPE_LOW_2500BASE_X		BIT_ULL(8)
1040 #define ICE_PHY_TYPE_LOW_2500BASE_KX		BIT_ULL(9)
1041 #define ICE_PHY_TYPE_LOW_5GBASE_T		BIT_ULL(10)
1042 #define ICE_PHY_TYPE_LOW_5GBASE_KR		BIT_ULL(11)
1043 #define ICE_PHY_TYPE_LOW_10GBASE_T		BIT_ULL(12)
1044 #define ICE_PHY_TYPE_LOW_10G_SFI_DA		BIT_ULL(13)
1045 #define ICE_PHY_TYPE_LOW_10GBASE_SR		BIT_ULL(14)
1046 #define ICE_PHY_TYPE_LOW_10GBASE_LR		BIT_ULL(15)
1047 #define ICE_PHY_TYPE_LOW_10GBASE_KR_CR1		BIT_ULL(16)
1048 #define ICE_PHY_TYPE_LOW_10G_SFI_AOC_ACC	BIT_ULL(17)
1049 #define ICE_PHY_TYPE_LOW_10G_SFI_C2C		BIT_ULL(18)
1050 #define ICE_PHY_TYPE_LOW_25GBASE_T		BIT_ULL(19)
1051 #define ICE_PHY_TYPE_LOW_25GBASE_CR		BIT_ULL(20)
1052 #define ICE_PHY_TYPE_LOW_25GBASE_CR_S		BIT_ULL(21)
1053 #define ICE_PHY_TYPE_LOW_25GBASE_CR1		BIT_ULL(22)
1054 #define ICE_PHY_TYPE_LOW_25GBASE_SR		BIT_ULL(23)
1055 #define ICE_PHY_TYPE_LOW_25GBASE_LR		BIT_ULL(24)
1056 #define ICE_PHY_TYPE_LOW_25GBASE_KR		BIT_ULL(25)
1057 #define ICE_PHY_TYPE_LOW_25GBASE_KR_S		BIT_ULL(26)
1058 #define ICE_PHY_TYPE_LOW_25GBASE_KR1		BIT_ULL(27)
1059 #define ICE_PHY_TYPE_LOW_25G_AUI_AOC_ACC	BIT_ULL(28)
1060 #define ICE_PHY_TYPE_LOW_25G_AUI_C2C		BIT_ULL(29)
1061 #define ICE_PHY_TYPE_LOW_40GBASE_CR4		BIT_ULL(30)
1062 #define ICE_PHY_TYPE_LOW_40GBASE_SR4		BIT_ULL(31)
1063 #define ICE_PHY_TYPE_LOW_40GBASE_LR4		BIT_ULL(32)
1064 #define ICE_PHY_TYPE_LOW_40GBASE_KR4		BIT_ULL(33)
1065 #define ICE_PHY_TYPE_LOW_40G_XLAUI_AOC_ACC	BIT_ULL(34)
1066 #define ICE_PHY_TYPE_LOW_40G_XLAUI		BIT_ULL(35)
1067 #define ICE_PHY_TYPE_LOW_50GBASE_CR2		BIT_ULL(36)
1068 #define ICE_PHY_TYPE_LOW_50GBASE_SR2		BIT_ULL(37)
1069 #define ICE_PHY_TYPE_LOW_50GBASE_LR2		BIT_ULL(38)
1070 #define ICE_PHY_TYPE_LOW_50GBASE_KR2		BIT_ULL(39)
1071 #define ICE_PHY_TYPE_LOW_50G_LAUI2_AOC_ACC	BIT_ULL(40)
1072 #define ICE_PHY_TYPE_LOW_50G_LAUI2		BIT_ULL(41)
1073 #define ICE_PHY_TYPE_LOW_50G_AUI2_AOC_ACC	BIT_ULL(42)
1074 #define ICE_PHY_TYPE_LOW_50G_AUI2		BIT_ULL(43)
1075 #define ICE_PHY_TYPE_LOW_50GBASE_CP		BIT_ULL(44)
1076 #define ICE_PHY_TYPE_LOW_50GBASE_SR		BIT_ULL(45)
1077 #define ICE_PHY_TYPE_LOW_50GBASE_FR		BIT_ULL(46)
1078 #define ICE_PHY_TYPE_LOW_50GBASE_LR		BIT_ULL(47)
1079 #define ICE_PHY_TYPE_LOW_50GBASE_KR_PAM4	BIT_ULL(48)
1080 #define ICE_PHY_TYPE_LOW_50G_AUI1_AOC_ACC	BIT_ULL(49)
1081 #define ICE_PHY_TYPE_LOW_50G_AUI1		BIT_ULL(50)
1082 #define ICE_PHY_TYPE_LOW_100GBASE_CR4		BIT_ULL(51)
1083 #define ICE_PHY_TYPE_LOW_100GBASE_SR4		BIT_ULL(52)
1084 #define ICE_PHY_TYPE_LOW_100GBASE_LR4		BIT_ULL(53)
1085 #define ICE_PHY_TYPE_LOW_100GBASE_KR4		BIT_ULL(54)
1086 #define ICE_PHY_TYPE_LOW_100G_CAUI4_AOC_ACC	BIT_ULL(55)
1087 #define ICE_PHY_TYPE_LOW_100G_CAUI4		BIT_ULL(56)
1088 #define ICE_PHY_TYPE_LOW_100G_AUI4_AOC_ACC	BIT_ULL(57)
1089 #define ICE_PHY_TYPE_LOW_100G_AUI4		BIT_ULL(58)
1090 #define ICE_PHY_TYPE_LOW_100GBASE_CR_PAM4	BIT_ULL(59)
1091 #define ICE_PHY_TYPE_LOW_100GBASE_KR_PAM4	BIT_ULL(60)
1092 #define ICE_PHY_TYPE_LOW_100GBASE_CP2		BIT_ULL(61)
1093 #define ICE_PHY_TYPE_LOW_100GBASE_SR2		BIT_ULL(62)
1094 #define ICE_PHY_TYPE_LOW_100GBASE_DR		BIT_ULL(63)
1095 #define ICE_PHY_TYPE_LOW_MAX_INDEX		63
1096 /* The second set of defines is for phy_type_high. */
1097 #define ICE_PHY_TYPE_HIGH_100GBASE_KR2_PAM4	BIT_ULL(0)
1098 #define ICE_PHY_TYPE_HIGH_100G_CAUI2_AOC_ACC	BIT_ULL(1)
1099 #define ICE_PHY_TYPE_HIGH_100G_CAUI2		BIT_ULL(2)
1100 #define ICE_PHY_TYPE_HIGH_100G_AUI2_AOC_ACC	BIT_ULL(3)
1101 #define ICE_PHY_TYPE_HIGH_100G_AUI2		BIT_ULL(4)
1102 #define ICE_PHY_TYPE_HIGH_200G_CR4_PAM4		BIT_ULL(5)
1103 #define ICE_PHY_TYPE_HIGH_200G_SR4		BIT_ULL(6)
1104 #define ICE_PHY_TYPE_HIGH_200G_FR4		BIT_ULL(7)
1105 #define ICE_PHY_TYPE_HIGH_200G_LR4		BIT_ULL(8)
1106 #define ICE_PHY_TYPE_HIGH_200G_DR4		BIT_ULL(9)
1107 #define ICE_PHY_TYPE_HIGH_200G_KR4_PAM4		BIT_ULL(10)
1108 #define ICE_PHY_TYPE_HIGH_200G_AUI4_AOC_ACC	BIT_ULL(11)
1109 #define ICE_PHY_TYPE_HIGH_200G_AUI4		BIT_ULL(12)
1110 #define ICE_PHY_TYPE_HIGH_MAX_INDEX		12
1111 
1112 struct ice_aqc_get_phy_caps_data {
1113 	__le64 phy_type_low; /* Use values from ICE_PHY_TYPE_LOW_* */
1114 	__le64 phy_type_high; /* Use values from ICE_PHY_TYPE_HIGH_* */
1115 	u8 caps;
1116 #define ICE_AQC_PHY_EN_TX_LINK_PAUSE			BIT(0)
1117 #define ICE_AQC_PHY_EN_RX_LINK_PAUSE			BIT(1)
1118 #define ICE_AQC_PHY_LOW_POWER_MODE			BIT(2)
1119 #define ICE_AQC_PHY_EN_LINK				BIT(3)
1120 #define ICE_AQC_PHY_AN_MODE				BIT(4)
1121 #define ICE_AQC_GET_PHY_EN_MOD_QUAL			BIT(5)
1122 #define ICE_AQC_PHY_EN_AUTO_FEC				BIT(7)
1123 #define ICE_AQC_PHY_CAPS_MASK				ICE_M(0xff, 0)
1124 	u8 low_power_ctrl_an;
1125 #define ICE_AQC_PHY_EN_D3COLD_LOW_POWER_AUTONEG		BIT(0)
1126 #define ICE_AQC_PHY_AN_EN_CLAUSE28			BIT(1)
1127 #define ICE_AQC_PHY_AN_EN_CLAUSE73			BIT(2)
1128 #define ICE_AQC_PHY_AN_EN_CLAUSE37			BIT(3)
1129 	__le16 eee_cap;
1130 #define ICE_AQC_PHY_EEE_EN_100BASE_TX			BIT(0)
1131 #define ICE_AQC_PHY_EEE_EN_1000BASE_T			BIT(1)
1132 #define ICE_AQC_PHY_EEE_EN_10GBASE_T			BIT(2)
1133 #define ICE_AQC_PHY_EEE_EN_1000BASE_KX			BIT(3)
1134 #define ICE_AQC_PHY_EEE_EN_10GBASE_KR			BIT(4)
1135 #define ICE_AQC_PHY_EEE_EN_25GBASE_KR			BIT(5)
1136 #define ICE_AQC_PHY_EEE_EN_40GBASE_KR4			BIT(6)
1137 	__le16 eeer_value;
1138 	u8 phy_id_oui[4]; /* PHY/Module ID connected on the port */
1139 	u8 phy_fw_ver[8];
1140 	u8 link_fec_options;
1141 #define ICE_AQC_PHY_FEC_10G_KR_40G_KR4_EN		BIT(0)
1142 #define ICE_AQC_PHY_FEC_10G_KR_40G_KR4_REQ		BIT(1)
1143 #define ICE_AQC_PHY_FEC_25G_RS_528_REQ			BIT(2)
1144 #define ICE_AQC_PHY_FEC_25G_KR_REQ			BIT(3)
1145 #define ICE_AQC_PHY_FEC_25G_RS_544_REQ			BIT(4)
1146 #define ICE_AQC_PHY_FEC_25G_RS_CLAUSE91_EN		BIT(6)
1147 #define ICE_AQC_PHY_FEC_25G_KR_CLAUSE74_EN		BIT(7)
1148 #define ICE_AQC_PHY_FEC_MASK				ICE_M(0xdf, 0)
1149 	u8 module_compliance_enforcement;
1150 #define ICE_AQC_MOD_ENFORCE_STRICT_MODE			BIT(0)
1151 	u8 extended_compliance_code;
1152 #define ICE_MODULE_TYPE_TOTAL_BYTE			3
1153 	u8 module_type[ICE_MODULE_TYPE_TOTAL_BYTE];
1154 #define ICE_AQC_MOD_TYPE_BYTE0_SFP_PLUS			0xA0
1155 #define ICE_AQC_MOD_TYPE_BYTE0_QSFP_PLUS		0x80
1156 #define ICE_AQC_MOD_TYPE_IDENT				1
1157 #define ICE_AQC_MOD_TYPE_BYTE1_SFP_PLUS_CU_PASSIVE	BIT(0)
1158 #define ICE_AQC_MOD_TYPE_BYTE1_SFP_PLUS_CU_ACTIVE	BIT(1)
1159 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_SR		BIT(4)
1160 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_LR		BIT(5)
1161 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_LRM		BIT(6)
1162 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_ER		BIT(7)
1163 #define ICE_AQC_MOD_TYPE_BYTE2_SFP_PLUS			0xA0
1164 #define ICE_AQC_MOD_TYPE_BYTE2_QSFP_PLUS		0x86
1165 	u8 qualified_module_count;
1166 	u8 rsvd2[7];	/* Bytes 47:41 reserved */
1167 #define ICE_AQC_QUAL_MOD_COUNT_MAX			16
1168 	struct {
1169 		u8 v_oui[3];
1170 		u8 rsvd3;
1171 		u8 v_part[16];
1172 		__le32 v_rev;
1173 		__le64 rsvd4;
1174 	} qual_modules[ICE_AQC_QUAL_MOD_COUNT_MAX];
1175 };
1176 
1177 /* Set PHY capabilities (direct 0x0601)
1178  * NOTE: This command must be followed by setup link and restart auto-neg
1179  */
1180 struct ice_aqc_set_phy_cfg {
1181 	u8 lport_num;
1182 	u8 reserved[7];
1183 	__le32 addr_high;
1184 	__le32 addr_low;
1185 };
1186 
1187 /* Set PHY config command data structure */
1188 struct ice_aqc_set_phy_cfg_data {
1189 	__le64 phy_type_low; /* Use values from ICE_PHY_TYPE_LOW_* */
1190 	__le64 phy_type_high; /* Use values from ICE_PHY_TYPE_HIGH_* */
1191 	u8 caps;
1192 #define ICE_AQ_PHY_ENA_VALID_MASK	ICE_M(0xef, 0)
1193 #define ICE_AQ_PHY_ENA_TX_PAUSE_ABILITY	BIT(0)
1194 #define ICE_AQ_PHY_ENA_RX_PAUSE_ABILITY	BIT(1)
1195 #define ICE_AQ_PHY_ENA_LOW_POWER	BIT(2)
1196 #define ICE_AQ_PHY_ENA_LINK		BIT(3)
1197 #define ICE_AQ_PHY_ENA_AUTO_LINK_UPDT	BIT(5)
1198 #define ICE_AQ_PHY_ENA_LESM		BIT(6)
1199 #define ICE_AQ_PHY_ENA_AUTO_FEC		BIT(7)
1200 	u8 low_power_ctrl_an;
1201 	__le16 eee_cap; /* Value from ice_aqc_get_phy_caps */
1202 	__le16 eeer_value;
1203 	u8 link_fec_opt; /* Use defines from ice_aqc_get_phy_caps */
1204 	u8 module_compliance_enforcement;
1205 };
1206 
1207 /* Set MAC Config command data structure (direct 0x0603) */
1208 struct ice_aqc_set_mac_cfg {
1209 	__le16 max_frame_size;
1210 	u8 params;
1211 #define ICE_AQ_SET_MAC_PACE_S		3
1212 #define ICE_AQ_SET_MAC_PACE_M		(0xF << ICE_AQ_SET_MAC_PACE_S)
1213 #define ICE_AQ_SET_MAC_PACE_TYPE_M	BIT(7)
1214 #define ICE_AQ_SET_MAC_PACE_TYPE_RATE	0
1215 #define ICE_AQ_SET_MAC_PACE_TYPE_FIXED	ICE_AQ_SET_MAC_PACE_TYPE_M
1216 	u8 tx_tmr_priority;
1217 	__le16 tx_tmr_value;
1218 	__le16 fc_refresh_threshold;
1219 	u8 drop_opts;
1220 #define ICE_AQ_SET_MAC_AUTO_DROP_MASK		BIT(0)
1221 #define ICE_AQ_SET_MAC_AUTO_DROP_NONE		0
1222 #define ICE_AQ_SET_MAC_AUTO_DROP_BLOCKING_PKTS	BIT(0)
1223 	u8 reserved[7];
1224 };
1225 
1226 /* Restart AN command data structure (direct 0x0605)
1227  * Also used for response, with only the lport_num field present.
1228  */
1229 struct ice_aqc_restart_an {
1230 	u8 lport_num;
1231 	u8 reserved;
1232 	u8 cmd_flags;
1233 #define ICE_AQC_RESTART_AN_LINK_RESTART	BIT(1)
1234 #define ICE_AQC_RESTART_AN_LINK_ENABLE	BIT(2)
1235 	u8 reserved2[13];
1236 };
1237 
1238 /* Get link status (indirect 0x0607), also used for Link Status Event */
1239 struct ice_aqc_get_link_status {
1240 	u8 lport_num;
1241 	u8 reserved;
1242 	__le16 cmd_flags;
1243 #define ICE_AQ_LSE_M			0x3
1244 #define ICE_AQ_LSE_NOP			0x0
1245 #define ICE_AQ_LSE_DIS			0x2
1246 #define ICE_AQ_LSE_ENA			0x3
1247 	/* only response uses this flag */
1248 #define ICE_AQ_LSE_IS_ENABLED		0x1
1249 	__le32 reserved2;
1250 	__le32 addr_high;
1251 	__le32 addr_low;
1252 };
1253 
1254 /* Get link status response data structure, also used for Link Status Event */
1255 struct ice_aqc_get_link_status_data {
1256 	u8 topo_media_conflict;
1257 #define ICE_AQ_LINK_TOPO_CONFLICT	BIT(0)
1258 #define ICE_AQ_LINK_MEDIA_CONFLICT	BIT(1)
1259 #define ICE_AQ_LINK_TOPO_CORRUPT	BIT(2)
1260 #define ICE_AQ_LINK_TOPO_UNREACH_PRT	BIT(4)
1261 #define ICE_AQ_LINK_TOPO_UNDRUTIL_PRT	BIT(5)
1262 #define ICE_AQ_LINK_TOPO_UNDRUTIL_MEDIA	BIT(6)
1263 #define ICE_AQ_LINK_TOPO_UNSUPP_MEDIA	BIT(7)
1264 	u8 link_cfg_err;
1265 #define ICE_AQ_LINK_MODULE_POWER_UNSUPPORTED	BIT(5)
1266 #define ICE_AQ_LINK_EXTERNAL_PHY_LOAD_FAILURE	BIT(6)
1267 #define ICE_AQ_LINK_INVAL_MAX_POWER_LIMIT	BIT(7)
1268 	u8 link_info;
1269 #define ICE_AQ_LINK_UP			BIT(0)	/* Link Status */
1270 #define ICE_AQ_LINK_FAULT		BIT(1)
1271 #define ICE_AQ_LINK_FAULT_TX		BIT(2)
1272 #define ICE_AQ_LINK_FAULT_RX		BIT(3)
1273 #define ICE_AQ_LINK_FAULT_REMOTE	BIT(4)
1274 #define ICE_AQ_LINK_UP_PORT		BIT(5)	/* External Port Link Status */
1275 #define ICE_AQ_MEDIA_AVAILABLE		BIT(6)
1276 #define ICE_AQ_SIGNAL_DETECT		BIT(7)
1277 	u8 an_info;
1278 #define ICE_AQ_AN_COMPLETED		BIT(0)
1279 #define ICE_AQ_LP_AN_ABILITY		BIT(1)
1280 #define ICE_AQ_PD_FAULT			BIT(2)	/* Parallel Detection Fault */
1281 #define ICE_AQ_FEC_EN			BIT(3)
1282 #define ICE_AQ_PHY_LOW_POWER		BIT(4)	/* Low Power State */
1283 #define ICE_AQ_LINK_PAUSE_TX		BIT(5)
1284 #define ICE_AQ_LINK_PAUSE_RX		BIT(6)
1285 #define ICE_AQ_QUALIFIED_MODULE		BIT(7)
1286 	u8 ext_info;
1287 #define ICE_AQ_LINK_PHY_TEMP_ALARM	BIT(0)
1288 #define ICE_AQ_LINK_EXCESSIVE_ERRORS	BIT(1)	/* Excessive Link Errors */
1289 	/* Port Tx Suspended */
1290 #define ICE_AQ_LINK_TX_S		2
1291 #define ICE_AQ_LINK_TX_M		(0x03 << ICE_AQ_LINK_TX_S)
1292 #define ICE_AQ_LINK_TX_ACTIVE		0
1293 #define ICE_AQ_LINK_TX_DRAINED		1
1294 #define ICE_AQ_LINK_TX_FLUSHED		3
1295 	u8 reserved2;
1296 	__le16 max_frame_size;
1297 	u8 cfg;
1298 #define ICE_AQ_LINK_25G_KR_FEC_EN	BIT(0)
1299 #define ICE_AQ_LINK_25G_RS_528_FEC_EN	BIT(1)
1300 #define ICE_AQ_LINK_25G_RS_544_FEC_EN	BIT(2)
1301 #define ICE_AQ_FEC_MASK			ICE_M(0x7, 0)
1302 	/* Pacing Config */
1303 #define ICE_AQ_CFG_PACING_S		3
1304 #define ICE_AQ_CFG_PACING_M		(0xF << ICE_AQ_CFG_PACING_S)
1305 #define ICE_AQ_CFG_PACING_TYPE_M	BIT(7)
1306 #define ICE_AQ_CFG_PACING_TYPE_AVG	0
1307 #define ICE_AQ_CFG_PACING_TYPE_FIXED	ICE_AQ_CFG_PACING_TYPE_M
1308 	/* External Device Power Ability */
1309 	u8 power_desc;
1310 #define ICE_AQ_PWR_CLASS_M		0x3F
1311 #define ICE_AQ_LINK_PWR_BASET_LOW_HIGH	0
1312 #define ICE_AQ_LINK_PWR_BASET_HIGH	1
1313 #define ICE_AQ_LINK_PWR_QSFP_CLASS_1	0
1314 #define ICE_AQ_LINK_PWR_QSFP_CLASS_2	1
1315 #define ICE_AQ_LINK_PWR_QSFP_CLASS_3	2
1316 #define ICE_AQ_LINK_PWR_QSFP_CLASS_4	3
1317 	__le16 link_speed;
1318 #define ICE_AQ_LINK_SPEED_M		0x7FF
1319 #define ICE_AQ_LINK_SPEED_10MB		BIT(0)
1320 #define ICE_AQ_LINK_SPEED_100MB		BIT(1)
1321 #define ICE_AQ_LINK_SPEED_1000MB	BIT(2)
1322 #define ICE_AQ_LINK_SPEED_2500MB	BIT(3)
1323 #define ICE_AQ_LINK_SPEED_5GB		BIT(4)
1324 #define ICE_AQ_LINK_SPEED_10GB		BIT(5)
1325 #define ICE_AQ_LINK_SPEED_20GB		BIT(6)
1326 #define ICE_AQ_LINK_SPEED_25GB		BIT(7)
1327 #define ICE_AQ_LINK_SPEED_40GB		BIT(8)
1328 #define ICE_AQ_LINK_SPEED_50GB		BIT(9)
1329 #define ICE_AQ_LINK_SPEED_100GB		BIT(10)
1330 #define ICE_AQ_LINK_SPEED_200GB		BIT(11)
1331 #define ICE_AQ_LINK_SPEED_UNKNOWN	BIT(15)
1332 	/* Aligns next field to 8-byte boundary */
1333 	__le16 reserved3;
1334 	u8 ext_fec_status;
1335 	/* RS 272 FEC enabled */
1336 #define ICE_AQ_LINK_RS_272_FEC_EN      BIT(0)
1337 	u8 reserved4;
1338 	/* Use values from ICE_PHY_TYPE_LOW_* */
1339 	__le64 phy_type_low;
1340 	/* Use values from ICE_PHY_TYPE_HIGH_* */
1341 	__le64 phy_type_high;
1342 #define ICE_AQC_LS_DATA_SIZE_V1 \
1343 	offsetofend(struct ice_aqc_get_link_status_data, phy_type_high)
1344 	/* Get link status v2 link partner data */
1345 	__le64 lp_phy_type_low;
1346 	__le64 lp_phy_type_high;
1347 	u8 lp_fec_adv;
1348 #define ICE_AQ_LINK_LP_10G_KR_FEC_CAP  BIT(0)
1349 #define ICE_AQ_LINK_LP_25G_KR_FEC_CAP  BIT(1)
1350 #define ICE_AQ_LINK_LP_RS_528_FEC_CAP  BIT(2)
1351 #define ICE_AQ_LINK_LP_50G_KR_272_FEC_CAP BIT(3)
1352 #define ICE_AQ_LINK_LP_100G_KR_272_FEC_CAP BIT(4)
1353 #define ICE_AQ_LINK_LP_200G_KR_272_FEC_CAP BIT(5)
1354 	u8 lp_fec_req;
1355 #define ICE_AQ_LINK_LP_10G_KR_FEC_REQ  BIT(0)
1356 #define ICE_AQ_LINK_LP_25G_KR_FEC_REQ  BIT(1)
1357 #define ICE_AQ_LINK_LP_RS_528_FEC_REQ  BIT(2)
1358 #define ICE_AQ_LINK_LP_KR_272_FEC_REQ  BIT(3)
1359 	u8 lp_flowcontrol;
1360 #define ICE_AQ_LINK_LP_PAUSE_ADV       BIT(0)
1361 #define ICE_AQ_LINK_LP_ASM_DIR_ADV     BIT(1)
1362 #define ICE_AQC_LS_DATA_SIZE_V2 \
1363 	offsetofend(struct ice_aqc_get_link_status_data, lp_flowcontrol)
1364 } __packed;
1365 
1366 /* Set event mask command (direct 0x0613) */
1367 struct ice_aqc_set_event_mask {
1368 	u8	lport_num;
1369 	u8	reserved[7];
1370 	__le16	event_mask;
1371 #define ICE_AQ_LINK_EVENT_UPDOWN		BIT(1)
1372 #define ICE_AQ_LINK_EVENT_MEDIA_NA		BIT(2)
1373 #define ICE_AQ_LINK_EVENT_LINK_FAULT		BIT(3)
1374 #define ICE_AQ_LINK_EVENT_PHY_TEMP_ALARM	BIT(4)
1375 #define ICE_AQ_LINK_EVENT_EXCESSIVE_ERRORS	BIT(5)
1376 #define ICE_AQ_LINK_EVENT_SIGNAL_DETECT		BIT(6)
1377 #define ICE_AQ_LINK_EVENT_AN_COMPLETED		BIT(7)
1378 #define ICE_AQ_LINK_EVENT_MODULE_QUAL_FAIL	BIT(8)
1379 #define ICE_AQ_LINK_EVENT_PORT_TX_SUSPENDED	BIT(9)
1380 #define ICE_AQ_LINK_EVENT_PHY_FW_LOAD_FAIL	BIT(12)
1381 	u8	reserved1[6];
1382 };
1383 
1384 /* Set MAC Loopback command (direct 0x0620) */
1385 struct ice_aqc_set_mac_lb {
1386 	u8 lb_mode;
1387 #define ICE_AQ_MAC_LB_EN		BIT(0)
1388 #define ICE_AQ_MAC_LB_OSC_CLK		BIT(1)
1389 	u8 reserved[15];
1390 };
1391 
1392 /* Set PHY recovered clock output (direct 0x0630) */
1393 struct ice_aqc_set_phy_rec_clk_out {
1394 	u8 phy_output;
1395 	u8 port_num;
1396 #define ICE_AQC_SET_PHY_REC_CLK_OUT_CURR_PORT	0xFF
1397 	u8 flags;
1398 #define ICE_AQC_SET_PHY_REC_CLK_OUT_OUT_EN	BIT(0)
1399 	u8 rsvd;
1400 	__le32 freq;
1401 	u8 rsvd2[6];
1402 	__le16 node_handle;
1403 };
1404 
1405 /* Get PHY recovered clock output (direct 0x0631) */
1406 struct ice_aqc_get_phy_rec_clk_out {
1407 	u8 phy_output;
1408 	u8 port_num;
1409 #define ICE_AQC_GET_PHY_REC_CLK_OUT_CURR_PORT	0xFF
1410 	u8 flags;
1411 #define ICE_AQC_GET_PHY_REC_CLK_OUT_OUT_EN	BIT(0)
1412 	u8 rsvd[11];
1413 	__le16 node_handle;
1414 };
1415 
1416 struct ice_aqc_link_topo_params {
1417 	u8 lport_num;
1418 	u8 lport_num_valid;
1419 #define ICE_AQC_LINK_TOPO_PORT_NUM_VALID	BIT(0)
1420 	u8 node_type_ctx;
1421 #define ICE_AQC_LINK_TOPO_NODE_TYPE_S		0
1422 #define ICE_AQC_LINK_TOPO_NODE_TYPE_M	(0xF << ICE_AQC_LINK_TOPO_NODE_TYPE_S)
1423 #define ICE_AQC_LINK_TOPO_NODE_TYPE_PHY		0
1424 #define ICE_AQC_LINK_TOPO_NODE_TYPE_GPIO_CTRL	1
1425 #define ICE_AQC_LINK_TOPO_NODE_TYPE_MUX_CTRL	2
1426 #define ICE_AQC_LINK_TOPO_NODE_TYPE_LED_CTRL	3
1427 #define ICE_AQC_LINK_TOPO_NODE_TYPE_LED		4
1428 #define ICE_AQC_LINK_TOPO_NODE_TYPE_THERMAL	5
1429 #define ICE_AQC_LINK_TOPO_NODE_TYPE_CAGE	6
1430 #define ICE_AQC_LINK_TOPO_NODE_TYPE_MEZZ	7
1431 #define ICE_AQC_LINK_TOPO_NODE_TYPE_ID_EEPROM	8
1432 #define ICE_AQC_LINK_TOPO_NODE_TYPE_CLK_CTRL	9
1433 #define ICE_AQC_LINK_TOPO_NODE_TYPE_CLK_MUX	10
1434 #define ICE_AQC_LINK_TOPO_NODE_TYPE_GPS		11
1435 #define ICE_AQC_LINK_TOPO_NODE_CTX_S		4
1436 #define ICE_AQC_LINK_TOPO_NODE_CTX_M		\
1437 				(0xF << ICE_AQC_LINK_TOPO_NODE_CTX_S)
1438 #define ICE_AQC_LINK_TOPO_NODE_CTX_GLOBAL	0
1439 #define ICE_AQC_LINK_TOPO_NODE_CTX_BOARD	1
1440 #define ICE_AQC_LINK_TOPO_NODE_CTX_PORT		2
1441 #define ICE_AQC_LINK_TOPO_NODE_CTX_NODE		3
1442 #define ICE_AQC_LINK_TOPO_NODE_CTX_PROVIDED	4
1443 #define ICE_AQC_LINK_TOPO_NODE_CTX_OVERRIDE	5
1444 	u8 index;
1445 };
1446 
1447 struct ice_aqc_link_topo_addr {
1448 	struct ice_aqc_link_topo_params topo_params;
1449 	__le16 handle;
1450 #define ICE_AQC_LINK_TOPO_HANDLE_S	0
1451 #define ICE_AQC_LINK_TOPO_HANDLE_M	(0x3FF << ICE_AQC_LINK_TOPO_HANDLE_S)
1452 /* Used to decode the handle field */
1453 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_M	BIT(9)
1454 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_LOM	BIT(9)
1455 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_MEZZ	0
1456 #define ICE_AQC_LINK_TOPO_HANDLE_NODE_S		0
1457 /* In case of a Mezzanine type */
1458 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_NODE_M	\
1459 				(0x3F << ICE_AQC_LINK_TOPO_HANDLE_NODE_S)
1460 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_S	6
1461 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_M	(0x7 << ICE_AQC_LINK_TOPO_HANDLE_MEZZ_S)
1462 /* In case of a LOM type */
1463 #define ICE_AQC_LINK_TOPO_HANDLE_LOM_NODE_M	\
1464 				(0x1FF << ICE_AQC_LINK_TOPO_HANDLE_NODE_S)
1465 };
1466 
1467 /* Get Link Topology Handle (direct, 0x06E0) */
1468 struct ice_aqc_get_link_topo {
1469 	struct ice_aqc_link_topo_addr addr;
1470 	u8 node_part_num;
1471 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_PCA9575		0x21
1472 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_ZL30632_80032	0x24
1473 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_SI5383_5384	0x25
1474 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_E822_PHY		0x30
1475 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_C827		0x31
1476 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_GEN_CLK_MUX	0x47
1477 #define ICE_AQC_GET_LINK_TOPO_NODE_NR_GEN_GPS		0x48
1478 	u8 rsvd[9];
1479 };
1480 
1481 /* Read/Write I2C (direct, 0x06E2/0x06E3) */
1482 struct ice_aqc_i2c {
1483 	struct ice_aqc_link_topo_addr topo_addr;
1484 	__le16 i2c_addr;
1485 	u8 i2c_params;
1486 #define ICE_AQC_I2C_DATA_SIZE_M		GENMASK(3, 0)
1487 #define ICE_AQC_I2C_USE_REPEATED_START	BIT(7)
1488 
1489 	u8 rsvd;
1490 	__le16 i2c_bus_addr;
1491 	u8 i2c_data[4]; /* Used only by write command, reserved in read. */
1492 };
1493 
1494 /* Read I2C Response (direct, 0x06E2) */
1495 struct ice_aqc_read_i2c_resp {
1496 	u8 i2c_data[16];
1497 };
1498 
1499 /* Set Port Identification LED (direct, 0x06E9) */
1500 struct ice_aqc_set_port_id_led {
1501 	u8 lport_num;
1502 	u8 lport_num_valid;
1503 	u8 ident_mode;
1504 #define ICE_AQC_PORT_IDENT_LED_BLINK	BIT(0)
1505 #define ICE_AQC_PORT_IDENT_LED_ORIG	0
1506 	u8 rsvd[13];
1507 };
1508 
1509 /* Get Port Options (indirect, 0x06EA) */
1510 struct ice_aqc_get_port_options {
1511 	u8 lport_num;
1512 	u8 lport_num_valid;
1513 	u8 port_options_count;
1514 #define ICE_AQC_PORT_OPT_COUNT_M	GENMASK(3, 0)
1515 #define ICE_AQC_PORT_OPT_MAX		16
1516 
1517 	u8 innermost_phy_index;
1518 	u8 port_options;
1519 #define ICE_AQC_PORT_OPT_ACTIVE_M	GENMASK(3, 0)
1520 #define ICE_AQC_PORT_OPT_VALID		BIT(7)
1521 
1522 	u8 pending_port_option_status;
1523 #define ICE_AQC_PENDING_PORT_OPT_IDX_M	GENMASK(3, 0)
1524 #define ICE_AQC_PENDING_PORT_OPT_VALID	BIT(7)
1525 
1526 	u8 rsvd[2];
1527 	__le32 addr_high;
1528 	__le32 addr_low;
1529 };
1530 
1531 struct ice_aqc_get_port_options_elem {
1532 	u8 pmd;
1533 #define ICE_AQC_PORT_OPT_PMD_COUNT_M	GENMASK(3, 0)
1534 
1535 	u8 max_lane_speed;
1536 #define ICE_AQC_PORT_OPT_MAX_LANE_M	GENMASK(3, 0)
1537 #define ICE_AQC_PORT_OPT_MAX_LANE_100M	0
1538 #define ICE_AQC_PORT_OPT_MAX_LANE_1G	1
1539 #define ICE_AQC_PORT_OPT_MAX_LANE_2500M	2
1540 #define ICE_AQC_PORT_OPT_MAX_LANE_5G	3
1541 #define ICE_AQC_PORT_OPT_MAX_LANE_10G	4
1542 #define ICE_AQC_PORT_OPT_MAX_LANE_25G	5
1543 #define ICE_AQC_PORT_OPT_MAX_LANE_50G	6
1544 #define ICE_AQC_PORT_OPT_MAX_LANE_100G	7
1545 
1546 	u8 global_scid[2];
1547 	u8 phy_scid[2];
1548 	u8 pf2port_cid[2];
1549 };
1550 
1551 /* Set Port Option (direct, 0x06EB) */
1552 struct ice_aqc_set_port_option {
1553 	u8 lport_num;
1554 	u8 lport_num_valid;
1555 	u8 selected_port_option;
1556 	u8 rsvd[13];
1557 };
1558 
1559 /* Set/Get GPIO (direct, 0x06EC/0x06ED) */
1560 struct ice_aqc_gpio {
1561 	__le16 gpio_ctrl_handle;
1562 #define ICE_AQC_GPIO_HANDLE_S	0
1563 #define ICE_AQC_GPIO_HANDLE_M	(0x3FF << ICE_AQC_GPIO_HANDLE_S)
1564 	u8 gpio_num;
1565 	u8 gpio_val;
1566 	u8 rsvd[12];
1567 };
1568 
1569 /* Read/Write SFF EEPROM command (indirect 0x06EE) */
1570 struct ice_aqc_sff_eeprom {
1571 	u8 lport_num;
1572 	u8 lport_num_valid;
1573 #define ICE_AQC_SFF_PORT_NUM_VALID	BIT(0)
1574 	__le16 i2c_bus_addr;
1575 #define ICE_AQC_SFF_I2CBUS_7BIT_M	0x7F
1576 #define ICE_AQC_SFF_I2CBUS_10BIT_M	0x3FF
1577 #define ICE_AQC_SFF_I2CBUS_TYPE_M	BIT(10)
1578 #define ICE_AQC_SFF_I2CBUS_TYPE_7BIT	0
1579 #define ICE_AQC_SFF_I2CBUS_TYPE_10BIT	ICE_AQC_SFF_I2CBUS_TYPE_M
1580 #define ICE_AQC_SFF_SET_EEPROM_PAGE_S	11
1581 #define ICE_AQC_SFF_SET_EEPROM_PAGE_M	(0x3 << ICE_AQC_SFF_SET_EEPROM_PAGE_S)
1582 #define ICE_AQC_SFF_NO_PAGE_CHANGE	0
1583 #define ICE_AQC_SFF_SET_23_ON_MISMATCH	1
1584 #define ICE_AQC_SFF_SET_22_ON_MISMATCH	2
1585 #define ICE_AQC_SFF_IS_WRITE		BIT(15)
1586 	__le16 i2c_mem_addr;
1587 	__le16 eeprom_page;
1588 #define  ICE_AQC_SFF_EEPROM_BANK_S 0
1589 #define  ICE_AQC_SFF_EEPROM_BANK_M (0xFF << ICE_AQC_SFF_EEPROM_BANK_S)
1590 #define  ICE_AQC_SFF_EEPROM_PAGE_S 8
1591 #define  ICE_AQC_SFF_EEPROM_PAGE_M (0xFF << ICE_AQC_SFF_EEPROM_PAGE_S)
1592 	__le32 addr_high;
1593 	__le32 addr_low;
1594 };
1595 
1596 /* NVM Read command (indirect 0x0701)
1597  * NVM Erase commands (direct 0x0702)
1598  * NVM Update commands (indirect 0x0703)
1599  */
1600 struct ice_aqc_nvm {
1601 #define ICE_AQC_NVM_MAX_OFFSET		0xFFFFFF
1602 	__le16 offset_low;
1603 	u8 offset_high;
1604 	u8 cmd_flags;
1605 #define ICE_AQC_NVM_LAST_CMD		BIT(0)
1606 #define ICE_AQC_NVM_PCIR_REQ		BIT(0)	/* Used by NVM Update reply */
1607 #define ICE_AQC_NVM_PRESERVATION_S	1
1608 #define ICE_AQC_NVM_PRESERVATION_M	(3 << ICE_AQC_NVM_PRESERVATION_S)
1609 #define ICE_AQC_NVM_NO_PRESERVATION	(0 << ICE_AQC_NVM_PRESERVATION_S)
1610 #define ICE_AQC_NVM_PRESERVE_ALL	BIT(1)
1611 #define ICE_AQC_NVM_FACTORY_DEFAULT	(2 << ICE_AQC_NVM_PRESERVATION_S)
1612 #define ICE_AQC_NVM_PRESERVE_SELECTED	(3 << ICE_AQC_NVM_PRESERVATION_S)
1613 #define ICE_AQC_NVM_ACTIV_SEL_NVM	BIT(3) /* Write Activate/SR Dump only */
1614 #define ICE_AQC_NVM_ACTIV_SEL_OROM	BIT(4)
1615 #define ICE_AQC_NVM_ACTIV_SEL_NETLIST	BIT(5)
1616 #define ICE_AQC_NVM_SPECIAL_UPDATE	BIT(6)
1617 #define ICE_AQC_NVM_REVERT_LAST_ACTIV	BIT(6) /* Write Activate only */
1618 #define ICE_AQC_NVM_ACTIV_SEL_MASK	ICE_M(0x7, 3)
1619 #define ICE_AQC_NVM_FLASH_ONLY		BIT(7)
1620 #define ICE_AQC_NVM_RESET_LVL_M		ICE_M(0x3, 0) /* Write reply only */
1621 #define ICE_AQC_NVM_POR_FLAG		0
1622 #define ICE_AQC_NVM_PERST_FLAG		1
1623 #define ICE_AQC_NVM_EMPR_FLAG		2
1624 #define ICE_AQC_NVM_EMPR_ENA		BIT(0) /* Write Activate reply only */
1625 	/* For Write Activate, several flags are sent as part of a separate
1626 	 * flags2 field using a separate byte. For simplicity of the software
1627 	 * interface, we pass the flags as a 16 bit value so these flags are
1628 	 * all offset by 8 bits
1629 	 */
1630 #define ICE_AQC_NVM_ACTIV_REQ_EMPR	BIT(8) /* NVM Write Activate only */
1631 	__le16 module_typeid;
1632 	__le16 length;
1633 #define ICE_AQC_NVM_ERASE_LEN	0xFFFF
1634 	__le32 addr_high;
1635 	__le32 addr_low;
1636 };
1637 
1638 #define ICE_AQC_NVM_START_POINT			0
1639 
1640 /* NVM Checksum Command (direct, 0x0706) */
1641 struct ice_aqc_nvm_checksum {
1642 	u8 flags;
1643 #define ICE_AQC_NVM_CHECKSUM_VERIFY	BIT(0)
1644 #define ICE_AQC_NVM_CHECKSUM_RECALC	BIT(1)
1645 	u8 rsvd;
1646 	__le16 checksum; /* Used only by response */
1647 #define ICE_AQC_NVM_CHECKSUM_CORRECT	0xBABA
1648 	u8 rsvd2[12];
1649 };
1650 
1651 /* Used for NVM Set Package Data command - 0x070A */
1652 struct ice_aqc_nvm_pkg_data {
1653 	u8 reserved[3];
1654 	u8 cmd_flags;
1655 #define ICE_AQC_NVM_PKG_DELETE		BIT(0) /* used for command call */
1656 #define ICE_AQC_NVM_PKG_SKIPPED		BIT(0) /* used for command response */
1657 
1658 	u32 reserved1;
1659 	__le32 addr_high;
1660 	__le32 addr_low;
1661 };
1662 
1663 /* Used for Pass Component Table command - 0x070B */
1664 struct ice_aqc_nvm_pass_comp_tbl {
1665 	u8 component_response; /* Response only */
1666 #define ICE_AQ_NVM_PASS_COMP_CAN_BE_UPDATED		0x0
1667 #define ICE_AQ_NVM_PASS_COMP_CAN_MAY_BE_UPDATEABLE	0x1
1668 #define ICE_AQ_NVM_PASS_COMP_CAN_NOT_BE_UPDATED		0x2
1669 	u8 component_response_code; /* Response only */
1670 #define ICE_AQ_NVM_PASS_COMP_CAN_BE_UPDATED_CODE	0x0
1671 #define ICE_AQ_NVM_PASS_COMP_STAMP_IDENTICAL_CODE	0x1
1672 #define ICE_AQ_NVM_PASS_COMP_STAMP_LOWER		0x2
1673 #define ICE_AQ_NVM_PASS_COMP_INVALID_STAMP_CODE		0x3
1674 #define ICE_AQ_NVM_PASS_COMP_CONFLICT_CODE		0x4
1675 #define ICE_AQ_NVM_PASS_COMP_PRE_REQ_NOT_MET_CODE	0x5
1676 #define ICE_AQ_NVM_PASS_COMP_NOT_SUPPORTED_CODE		0x6
1677 #define ICE_AQ_NVM_PASS_COMP_CANNOT_DOWNGRADE_CODE	0x7
1678 #define ICE_AQ_NVM_PASS_COMP_INCOMPLETE_IMAGE_CODE	0x8
1679 #define ICE_AQ_NVM_PASS_COMP_VER_STR_IDENTICAL_CODE	0xA
1680 #define ICE_AQ_NVM_PASS_COMP_VER_STR_LOWER_CODE		0xB
1681 	u8 reserved;
1682 	u8 transfer_flag;
1683 #define ICE_AQ_NVM_PASS_COMP_TBL_START			0x1
1684 #define ICE_AQ_NVM_PASS_COMP_TBL_MIDDLE			0x2
1685 #define ICE_AQ_NVM_PASS_COMP_TBL_END			0x4
1686 #define ICE_AQ_NVM_PASS_COMP_TBL_START_AND_END		0x5
1687 	__le32 reserved1;
1688 	__le32 addr_high;
1689 	__le32 addr_low;
1690 };
1691 
1692 struct ice_aqc_nvm_comp_tbl {
1693 	__le16 comp_class;
1694 #define NVM_COMP_CLASS_ALL_FW	0x000A
1695 
1696 	__le16 comp_id;
1697 #define NVM_COMP_ID_OROM	0x5
1698 #define NVM_COMP_ID_NVM		0x6
1699 #define NVM_COMP_ID_NETLIST	0x8
1700 
1701 	u8 comp_class_idx;
1702 #define FWU_COMP_CLASS_IDX_NOT_USE 0x0
1703 
1704 	__le32 comp_cmp_stamp;
1705 	u8 cvs_type;
1706 #define NVM_CVS_TYPE_ASCII	0x1
1707 
1708 	u8 cvs_len;
1709 	u8 cvs[]; /* Component Version String */
1710 } __packed;
1711 
1712 /* Send to PF command (indirect 0x0801) ID is only used by PF
1713  *
1714  * Send to VF command (indirect 0x0802) ID is only used by PF
1715  *
1716  */
1717 struct ice_aqc_pf_vf_msg {
1718 	__le32 id;
1719 	u32 reserved;
1720 	__le32 addr_high;
1721 	__le32 addr_low;
1722 };
1723 
1724 /* Get LLDP MIB (indirect 0x0A00)
1725  * Note: This is also used by the LLDP MIB Change Event (0x0A01)
1726  * as the format is the same.
1727  */
1728 struct ice_aqc_lldp_get_mib {
1729 	u8 type;
1730 #define ICE_AQ_LLDP_MIB_TYPE_S			0
1731 #define ICE_AQ_LLDP_MIB_TYPE_M			(0x3 << ICE_AQ_LLDP_MIB_TYPE_S)
1732 #define ICE_AQ_LLDP_MIB_LOCAL			0
1733 #define ICE_AQ_LLDP_MIB_REMOTE			1
1734 #define ICE_AQ_LLDP_MIB_LOCAL_AND_REMOTE	2
1735 #define ICE_AQ_LLDP_BRID_TYPE_S			2
1736 #define ICE_AQ_LLDP_BRID_TYPE_M			(0x3 << ICE_AQ_LLDP_BRID_TYPE_S)
1737 #define ICE_AQ_LLDP_BRID_TYPE_NEAREST_BRID	0
1738 #define ICE_AQ_LLDP_BRID_TYPE_NON_TPMR		1
1739 /* Tx pause flags in the 0xA01 event use ICE_AQ_LLDP_TX_* */
1740 #define ICE_AQ_LLDP_TX_S			0x4
1741 #define ICE_AQ_LLDP_TX_M			(0x03 << ICE_AQ_LLDP_TX_S)
1742 #define ICE_AQ_LLDP_TX_ACTIVE			0
1743 #define ICE_AQ_LLDP_TX_SUSPENDED		1
1744 #define ICE_AQ_LLDP_TX_FLUSHED			3
1745 /* DCBX mode */
1746 #define ICE_AQ_LLDP_DCBX_M			GENMASK(7, 6)
1747 #define ICE_AQ_LLDP_DCBX_NA			0
1748 #define ICE_AQ_LLDP_DCBX_CEE			1
1749 #define ICE_AQ_LLDP_DCBX_IEEE			2
1750 
1751 	u8 state;
1752 #define ICE_AQ_LLDP_MIB_CHANGE_STATE_M		BIT(0)
1753 #define ICE_AQ_LLDP_MIB_CHANGE_EXECUTED		0
1754 #define ICE_AQ_LLDP_MIB_CHANGE_PENDING		1
1755 
1756 /* The following bytes are reserved for the Get LLDP MIB command (0x0A00)
1757  * and in the LLDP MIB Change Event (0x0A01). They are valid for the
1758  * Get LLDP MIB (0x0A00) response only.
1759  */
1760 	__le16 local_len;
1761 	__le16 remote_len;
1762 	u8 reserved[2];
1763 	__le32 addr_high;
1764 	__le32 addr_low;
1765 };
1766 
1767 /* Configure LLDP MIB Change Event (direct 0x0A01) */
1768 /* For MIB Change Event use ice_aqc_lldp_get_mib structure above */
1769 struct ice_aqc_lldp_set_mib_change {
1770 	u8 command;
1771 #define ICE_AQ_LLDP_MIB_UPDATE_ENABLE		0x0
1772 #define ICE_AQ_LLDP_MIB_UPDATE_DIS		0x1
1773 #define ICE_AQ_LLDP_MIB_PENDING_M		BIT(1)
1774 #define ICE_AQ_LLDP_MIB_PENDING_DISABLE		0
1775 #define ICE_AQ_LLDP_MIB_PENDING_ENABLE		1
1776 	u8 reserved[15];
1777 };
1778 
1779 /* Stop LLDP (direct 0x0A05) */
1780 struct ice_aqc_lldp_stop {
1781 	u8 command;
1782 #define ICE_AQ_LLDP_AGENT_STATE_MASK	BIT(0)
1783 #define ICE_AQ_LLDP_AGENT_STOP		0x0
1784 #define ICE_AQ_LLDP_AGENT_SHUTDOWN	ICE_AQ_LLDP_AGENT_STATE_MASK
1785 #define ICE_AQ_LLDP_AGENT_PERSIST_DIS	BIT(1)
1786 	u8 reserved[15];
1787 };
1788 
1789 /* Start LLDP (direct 0x0A06) */
1790 struct ice_aqc_lldp_start {
1791 	u8 command;
1792 #define ICE_AQ_LLDP_AGENT_START		BIT(0)
1793 #define ICE_AQ_LLDP_AGENT_PERSIST_ENA	BIT(1)
1794 	u8 reserved[15];
1795 };
1796 
1797 /* Get CEE DCBX Oper Config (0x0A07)
1798  * The command uses the generic descriptor struct and
1799  * returns the struct below as an indirect response.
1800  */
1801 struct ice_aqc_get_cee_dcb_cfg_resp {
1802 	u8 oper_num_tc;
1803 	u8 oper_prio_tc[4];
1804 	u8 oper_tc_bw[8];
1805 	u8 oper_pfc_en;
1806 	__le16 oper_app_prio;
1807 #define ICE_AQC_CEE_APP_FCOE_S		0
1808 #define ICE_AQC_CEE_APP_FCOE_M		(0x7 << ICE_AQC_CEE_APP_FCOE_S)
1809 #define ICE_AQC_CEE_APP_ISCSI_S		3
1810 #define ICE_AQC_CEE_APP_ISCSI_M		(0x7 << ICE_AQC_CEE_APP_ISCSI_S)
1811 #define ICE_AQC_CEE_APP_FIP_S		8
1812 #define ICE_AQC_CEE_APP_FIP_M		(0x7 << ICE_AQC_CEE_APP_FIP_S)
1813 	__le32 tlv_status;
1814 #define ICE_AQC_CEE_PG_STATUS_S		0
1815 #define ICE_AQC_CEE_PG_STATUS_M		(0x7 << ICE_AQC_CEE_PG_STATUS_S)
1816 #define ICE_AQC_CEE_PFC_STATUS_S	3
1817 #define ICE_AQC_CEE_PFC_STATUS_M	(0x7 << ICE_AQC_CEE_PFC_STATUS_S)
1818 #define ICE_AQC_CEE_FCOE_STATUS_S	8
1819 #define ICE_AQC_CEE_FCOE_STATUS_M	(0x7 << ICE_AQC_CEE_FCOE_STATUS_S)
1820 #define ICE_AQC_CEE_ISCSI_STATUS_S	11
1821 #define ICE_AQC_CEE_ISCSI_STATUS_M	(0x7 << ICE_AQC_CEE_ISCSI_STATUS_S)
1822 #define ICE_AQC_CEE_FIP_STATUS_S	16
1823 #define ICE_AQC_CEE_FIP_STATUS_M	(0x7 << ICE_AQC_CEE_FIP_STATUS_S)
1824 	u8 reserved[12];
1825 };
1826 
1827 /* Set Local LLDP MIB (indirect 0x0A08)
1828  * Used to replace the local MIB of a given LLDP agent. e.g. DCBX
1829  */
1830 struct ice_aqc_lldp_set_local_mib {
1831 	u8 type;
1832 #define SET_LOCAL_MIB_TYPE_DCBX_M		BIT(0)
1833 #define SET_LOCAL_MIB_TYPE_LOCAL_MIB		0
1834 #define SET_LOCAL_MIB_TYPE_CEE_M		BIT(1)
1835 #define SET_LOCAL_MIB_TYPE_CEE_WILLING		0
1836 #define SET_LOCAL_MIB_TYPE_CEE_NON_WILLING	SET_LOCAL_MIB_TYPE_CEE_M
1837 	u8 reserved0;
1838 	__le16 length;
1839 	u8 reserved1[4];
1840 	__le32 addr_high;
1841 	__le32 addr_low;
1842 };
1843 
1844 /* Stop/Start LLDP Agent (direct 0x0A09)
1845  * Used for stopping/starting specific LLDP agent. e.g. DCBX.
1846  * The same structure is used for the response, with the command field
1847  * being used as the status field.
1848  */
1849 struct ice_aqc_lldp_stop_start_specific_agent {
1850 	u8 command;
1851 #define ICE_AQC_START_STOP_AGENT_M		BIT(0)
1852 #define ICE_AQC_START_STOP_AGENT_STOP_DCBX	0
1853 #define ICE_AQC_START_STOP_AGENT_START_DCBX	ICE_AQC_START_STOP_AGENT_M
1854 	u8 reserved[15];
1855 };
1856 
1857 /* LLDP Filter Control (direct 0x0A0A) */
1858 struct ice_aqc_lldp_filter_ctrl {
1859 	u8 cmd_flags;
1860 #define ICE_AQC_LLDP_FILTER_ACTION_ADD		0x0
1861 #define ICE_AQC_LLDP_FILTER_ACTION_DELETE	0x1
1862 	u8 reserved1;
1863 	__le16 vsi_num;
1864 	u8 reserved2[12];
1865 };
1866 
1867 #define ICE_AQC_RSS_VSI_VALID BIT(15)
1868 
1869 /* Get/Set RSS key (indirect 0x0B04/0x0B02) */
1870 struct ice_aqc_get_set_rss_key {
1871 	__le16 vsi_id;
1872 	u8 reserved[6];
1873 	__le32 addr_high;
1874 	__le32 addr_low;
1875 };
1876 
1877 #define ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE	0x28
1878 #define ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE	0xC
1879 #define ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE \
1880 				(ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE + \
1881 				 ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE)
1882 
1883 struct ice_aqc_get_set_rss_keys {
1884 	u8 standard_rss_key[ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE];
1885 	u8 extended_hash_key[ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE];
1886 };
1887 
1888 enum ice_lut_type {
1889 	ICE_LUT_VSI = 0,
1890 	ICE_LUT_PF = 1,
1891 	ICE_LUT_GLOBAL = 2,
1892 };
1893 
1894 enum ice_lut_size {
1895 	ICE_LUT_VSI_SIZE = 64,
1896 	ICE_LUT_GLOBAL_SIZE = 512,
1897 	ICE_LUT_PF_SIZE = 2048,
1898 };
1899 
1900 /* enum ice_aqc_lut_flags combines constants used to fill
1901  * &ice_aqc_get_set_rss_lut ::flags, which is an amalgamation of global LUT ID,
1902  * LUT size and LUT type, last of which does not need neither shift nor mask.
1903  */
1904 enum ice_aqc_lut_flags {
1905 	ICE_AQC_LUT_SIZE_SMALL = 0, /* size = 64 or 128 */
1906 	ICE_AQC_LUT_SIZE_512 = BIT(2),
1907 	ICE_AQC_LUT_SIZE_2K = BIT(3),
1908 
1909 	ICE_AQC_LUT_GLOBAL_IDX = GENMASK(7, 4),
1910 };
1911 
1912 /* Get/Set RSS LUT (indirect 0x0B05/0x0B03) */
1913 struct ice_aqc_get_set_rss_lut {
1914 	__le16 vsi_id;
1915 	__le16 flags;
1916 	__le32 reserved;
1917 	__le32 addr_high;
1918 	__le32 addr_low;
1919 };
1920 
1921 /* Sideband Control Interface Commands */
1922 /* Neighbor Device Request (indirect 0x0C00); also used for the response. */
1923 struct ice_aqc_neigh_dev_req {
1924 	__le16 sb_data_len;
1925 	u8 reserved[6];
1926 	__le32 addr_high;
1927 	__le32 addr_low;
1928 };
1929 
1930 /* Add Tx LAN Queues (indirect 0x0C30) */
1931 struct ice_aqc_add_txqs {
1932 	u8 num_qgrps;
1933 	u8 reserved[3];
1934 	__le32 reserved1;
1935 	__le32 addr_high;
1936 	__le32 addr_low;
1937 };
1938 
1939 /* This is the descriptor of each queue entry for the Add Tx LAN Queues
1940  * command (0x0C30). Only used within struct ice_aqc_add_tx_qgrp.
1941  */
1942 struct ice_aqc_add_txqs_perq {
1943 	__le16 txq_id;
1944 	u8 rsvd[2];
1945 	__le32 q_teid;
1946 	u8 txq_ctx[22];
1947 	u8 rsvd2[2];
1948 	struct ice_aqc_txsched_elem info;
1949 };
1950 
1951 /* The format of the command buffer for Add Tx LAN Queues (0x0C30)
1952  * is an array of the following structs. Please note that the length of
1953  * each struct ice_aqc_add_tx_qgrp is variable due
1954  * to the variable number of queues in each group!
1955  */
1956 struct ice_aqc_add_tx_qgrp {
1957 	__le32 parent_teid;
1958 	u8 num_txqs;
1959 	u8 rsvd[3];
1960 	struct ice_aqc_add_txqs_perq txqs[];
1961 };
1962 
1963 /* Disable Tx LAN Queues (indirect 0x0C31) */
1964 struct ice_aqc_dis_txqs {
1965 	u8 cmd_type;
1966 #define ICE_AQC_Q_DIS_CMD_S		0
1967 #define ICE_AQC_Q_DIS_CMD_M		(0x3 << ICE_AQC_Q_DIS_CMD_S)
1968 #define ICE_AQC_Q_DIS_CMD_NO_FUNC_RESET	(0 << ICE_AQC_Q_DIS_CMD_S)
1969 #define ICE_AQC_Q_DIS_CMD_VM_RESET	BIT(ICE_AQC_Q_DIS_CMD_S)
1970 #define ICE_AQC_Q_DIS_CMD_VF_RESET	(2 << ICE_AQC_Q_DIS_CMD_S)
1971 #define ICE_AQC_Q_DIS_CMD_PF_RESET	(3 << ICE_AQC_Q_DIS_CMD_S)
1972 #define ICE_AQC_Q_DIS_CMD_SUBSEQ_CALL	BIT(2)
1973 #define ICE_AQC_Q_DIS_CMD_FLUSH_PIPE	BIT(3)
1974 	u8 num_entries;
1975 	__le16 vmvf_and_timeout;
1976 #define ICE_AQC_Q_DIS_VMVF_NUM_S	0
1977 #define ICE_AQC_Q_DIS_VMVF_NUM_M	(0x3FF << ICE_AQC_Q_DIS_VMVF_NUM_S)
1978 #define ICE_AQC_Q_DIS_TIMEOUT_S		10
1979 #define ICE_AQC_Q_DIS_TIMEOUT_M		(0x3F << ICE_AQC_Q_DIS_TIMEOUT_S)
1980 	__le32 blocked_cgds;
1981 	__le32 addr_high;
1982 	__le32 addr_low;
1983 };
1984 
1985 /* The buffer for Disable Tx LAN Queues (indirect 0x0C31)
1986  * contains the following structures, arrayed one after the
1987  * other.
1988  * Note: Since the q_id is 16 bits wide, if the
1989  * number of queues is even, then 2 bytes of alignment MUST be
1990  * added before the start of the next group, to allow correct
1991  * alignment of the parent_teid field.
1992  */
1993 struct ice_aqc_dis_txq_item {
1994 	__le32 parent_teid;
1995 	u8 num_qs;
1996 	u8 rsvd;
1997 	/* The length of the q_id array varies according to num_qs */
1998 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S		15
1999 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_LAN_Q	\
2000 			(0 << ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S)
2001 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_RDMA_QSET	\
2002 			(1 << ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S)
2003 	__le16 q_id[];
2004 } __packed;
2005 
2006 /* Move/Reconfigure Tx queue (indirect 0x0C32) */
2007 struct ice_aqc_cfg_txqs {
2008 	u8 cmd_type;
2009 #define ICE_AQC_Q_CFG_MOVE_NODE		0x1
2010 #define ICE_AQC_Q_CFG_TC_CHNG		0x2
2011 #define ICE_AQC_Q_CFG_MOVE_TC_CHNG	0x3
2012 #define ICE_AQC_Q_CFG_SUBSEQ_CALL	BIT(2)
2013 #define ICE_AQC_Q_CFG_FLUSH		BIT(3)
2014 	u8 num_qs;
2015 	u8 port_num_chng;
2016 #define ICE_AQC_Q_CFG_SRC_PRT_M		0x7
2017 #define ICE_AQC_Q_CFG_DST_PRT_S		3
2018 #define ICE_AQC_Q_CFG_DST_PRT_M		(0x7 << ICE_AQC_Q_CFG_DST_PRT_S)
2019 	u8 time_out;
2020 #define ICE_AQC_Q_CFG_TIMEOUT_S		2
2021 #define ICE_AQC_Q_CFG_TIMEOUT_M		(0x1F << ICE_AQC_Q_CFG_TIMEOUT_S)
2022 	__le32 blocked_cgds;
2023 	__le32 addr_high;
2024 	__le32 addr_low;
2025 };
2026 
2027 /* Per Q struct for Move/Reconfigure Tx LAN Queues (indirect 0x0C32) */
2028 struct ice_aqc_cfg_txq_perq {
2029 	__le16 q_handle;
2030 	u8 tc;
2031 	u8 rsvd;
2032 	__le32 q_teid;
2033 };
2034 
2035 /* The buffer for Move/Reconfigure Tx LAN Queues (indirect 0x0C32) */
2036 struct ice_aqc_cfg_txqs_buf {
2037 	__le32 src_parent_teid;
2038 	__le32 dst_parent_teid;
2039 	struct ice_aqc_cfg_txq_perq queue_info[];
2040 };
2041 
2042 /* Add Tx RDMA Queue Set (indirect 0x0C33) */
2043 struct ice_aqc_add_rdma_qset {
2044 	u8 num_qset_grps;
2045 	u8 reserved[7];
2046 	__le32 addr_high;
2047 	__le32 addr_low;
2048 };
2049 
2050 /* This is the descriptor of each Qset entry for the Add Tx RDMA Queue Set
2051  * command (0x0C33). Only used within struct ice_aqc_add_rdma_qset.
2052  */
2053 struct ice_aqc_add_tx_rdma_qset_entry {
2054 	__le16 tx_qset_id;
2055 	u8 rsvd[2];
2056 	__le32 qset_teid;
2057 	struct ice_aqc_txsched_elem info;
2058 };
2059 
2060 /* The format of the command buffer for Add Tx RDMA Queue Set(0x0C33)
2061  * is an array of the following structs. Please note that the length of
2062  * each struct ice_aqc_add_rdma_qset is variable due to the variable
2063  * number of queues in each group!
2064  */
2065 struct ice_aqc_add_rdma_qset_data {
2066 	__le32 parent_teid;
2067 	__le16 num_qsets;
2068 	u8 rsvd[2];
2069 	struct ice_aqc_add_tx_rdma_qset_entry rdma_qsets[];
2070 };
2071 
2072 /* Configure Firmware Logging Command (indirect 0xFF09)
2073  * Logging Information Read Response (indirect 0xFF10)
2074  * Note: The 0xFF10 command has no input parameters.
2075  */
2076 struct ice_aqc_fw_logging {
2077 	u8 log_ctrl;
2078 #define ICE_AQC_FW_LOG_AQ_EN		BIT(0)
2079 #define ICE_AQC_FW_LOG_UART_EN		BIT(1)
2080 	u8 rsvd0;
2081 	u8 log_ctrl_valid; /* Not used by 0xFF10 Response */
2082 #define ICE_AQC_FW_LOG_AQ_VALID		BIT(0)
2083 #define ICE_AQC_FW_LOG_UART_VALID	BIT(1)
2084 	u8 rsvd1[5];
2085 	__le32 addr_high;
2086 	__le32 addr_low;
2087 };
2088 
2089 enum ice_aqc_fw_logging_mod {
2090 	ICE_AQC_FW_LOG_ID_GENERAL = 0,
2091 	ICE_AQC_FW_LOG_ID_CTRL,
2092 	ICE_AQC_FW_LOG_ID_LINK,
2093 	ICE_AQC_FW_LOG_ID_LINK_TOPO,
2094 	ICE_AQC_FW_LOG_ID_DNL,
2095 	ICE_AQC_FW_LOG_ID_I2C,
2096 	ICE_AQC_FW_LOG_ID_SDP,
2097 	ICE_AQC_FW_LOG_ID_MDIO,
2098 	ICE_AQC_FW_LOG_ID_ADMINQ,
2099 	ICE_AQC_FW_LOG_ID_HDMA,
2100 	ICE_AQC_FW_LOG_ID_LLDP,
2101 	ICE_AQC_FW_LOG_ID_DCBX,
2102 	ICE_AQC_FW_LOG_ID_DCB,
2103 	ICE_AQC_FW_LOG_ID_NETPROXY,
2104 	ICE_AQC_FW_LOG_ID_NVM,
2105 	ICE_AQC_FW_LOG_ID_AUTH,
2106 	ICE_AQC_FW_LOG_ID_VPD,
2107 	ICE_AQC_FW_LOG_ID_IOSF,
2108 	ICE_AQC_FW_LOG_ID_PARSER,
2109 	ICE_AQC_FW_LOG_ID_SW,
2110 	ICE_AQC_FW_LOG_ID_SCHEDULER,
2111 	ICE_AQC_FW_LOG_ID_TXQ,
2112 	ICE_AQC_FW_LOG_ID_RSVD,
2113 	ICE_AQC_FW_LOG_ID_POST,
2114 	ICE_AQC_FW_LOG_ID_WATCHDOG,
2115 	ICE_AQC_FW_LOG_ID_TASK_DISPATCH,
2116 	ICE_AQC_FW_LOG_ID_MNG,
2117 	ICE_AQC_FW_LOG_ID_MAX,
2118 };
2119 
2120 /* Defines for both above FW logging command/response buffers */
2121 #define ICE_AQC_FW_LOG_ID_S		0
2122 #define ICE_AQC_FW_LOG_ID_M		(0xFFF << ICE_AQC_FW_LOG_ID_S)
2123 
2124 #define ICE_AQC_FW_LOG_CONF_SUCCESS	0	/* Used by response */
2125 #define ICE_AQC_FW_LOG_CONF_BAD_INDX	BIT(12)	/* Used by response */
2126 
2127 #define ICE_AQC_FW_LOG_EN_S		12
2128 #define ICE_AQC_FW_LOG_EN_M		(0xF << ICE_AQC_FW_LOG_EN_S)
2129 #define ICE_AQC_FW_LOG_INFO_EN		BIT(12)	/* Used by command */
2130 #define ICE_AQC_FW_LOG_INIT_EN		BIT(13)	/* Used by command */
2131 #define ICE_AQC_FW_LOG_FLOW_EN		BIT(14)	/* Used by command */
2132 #define ICE_AQC_FW_LOG_ERR_EN		BIT(15)	/* Used by command */
2133 
2134 /* Get/Clear FW Log (indirect 0xFF11) */
2135 struct ice_aqc_get_clear_fw_log {
2136 	u8 flags;
2137 #define ICE_AQC_FW_LOG_CLEAR		BIT(0)
2138 #define ICE_AQC_FW_LOG_MORE_DATA_AVAIL	BIT(1)
2139 	u8 rsvd1[7];
2140 	__le32 addr_high;
2141 	__le32 addr_low;
2142 };
2143 
2144 /* Download Package (indirect 0x0C40) */
2145 /* Also used for Update Package (indirect 0x0C41 and 0x0C42) */
2146 struct ice_aqc_download_pkg {
2147 	u8 flags;
2148 #define ICE_AQC_DOWNLOAD_PKG_LAST_BUF	0x01
2149 	u8 reserved[3];
2150 	__le32 reserved1;
2151 	__le32 addr_high;
2152 	__le32 addr_low;
2153 };
2154 
2155 struct ice_aqc_download_pkg_resp {
2156 	__le32 error_offset;
2157 	__le32 error_info;
2158 	__le32 addr_high;
2159 	__le32 addr_low;
2160 };
2161 
2162 /* Get Package Info List (indirect 0x0C43) */
2163 struct ice_aqc_get_pkg_info_list {
2164 	__le32 reserved1;
2165 	__le32 reserved2;
2166 	__le32 addr_high;
2167 	__le32 addr_low;
2168 };
2169 
2170 /* Version format for packages */
2171 struct ice_pkg_ver {
2172 	u8 major;
2173 	u8 minor;
2174 	u8 update;
2175 	u8 draft;
2176 };
2177 
2178 #define ICE_PKG_NAME_SIZE	32
2179 #define ICE_SEG_ID_SIZE		28
2180 #define ICE_SEG_NAME_SIZE	28
2181 
2182 struct ice_aqc_get_pkg_info {
2183 	struct ice_pkg_ver ver;
2184 	char name[ICE_SEG_NAME_SIZE];
2185 	__le32 track_id;
2186 	u8 is_in_nvm;
2187 	u8 is_active;
2188 	u8 is_active_at_boot;
2189 	u8 is_modified;
2190 };
2191 
2192 /* Get Package Info List response buffer format (0x0C43) */
2193 struct ice_aqc_get_pkg_info_resp {
2194 	__le32 count;
2195 	struct ice_aqc_get_pkg_info pkg_info[];
2196 };
2197 
2198 /* Get CGU abilities command response data structure (indirect 0x0C61) */
2199 struct ice_aqc_get_cgu_abilities {
2200 	u8 num_inputs;
2201 	u8 num_outputs;
2202 	u8 pps_dpll_idx;
2203 	u8 eec_dpll_idx;
2204 	__le32 max_in_freq;
2205 	__le32 max_in_phase_adj;
2206 	__le32 max_out_freq;
2207 	__le32 max_out_phase_adj;
2208 	u8 cgu_part_num;
2209 	u8 rsvd[3];
2210 };
2211 
2212 /* Set CGU input config (direct 0x0C62) */
2213 struct ice_aqc_set_cgu_input_config {
2214 	u8 input_idx;
2215 	u8 flags1;
2216 #define ICE_AQC_SET_CGU_IN_CFG_FLG1_UPDATE_FREQ		BIT(6)
2217 #define ICE_AQC_SET_CGU_IN_CFG_FLG1_UPDATE_DELAY	BIT(7)
2218 	u8 flags2;
2219 #define ICE_AQC_SET_CGU_IN_CFG_FLG2_INPUT_EN		BIT(5)
2220 #define ICE_AQC_SET_CGU_IN_CFG_FLG2_ESYNC_EN		BIT(6)
2221 	u8 rsvd;
2222 	__le32 freq;
2223 	__le32 phase_delay;
2224 	u8 rsvd2[2];
2225 	__le16 node_handle;
2226 };
2227 
2228 /* Get CGU input config response descriptor structure (direct 0x0C63) */
2229 struct ice_aqc_get_cgu_input_config {
2230 	u8 input_idx;
2231 	u8 status;
2232 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_LOS		BIT(0)
2233 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_SCM_FAIL		BIT(1)
2234 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_CFM_FAIL		BIT(2)
2235 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_GST_FAIL		BIT(3)
2236 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_PFM_FAIL		BIT(4)
2237 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_ESYNC_FAIL	BIT(6)
2238 #define ICE_AQC_GET_CGU_IN_CFG_STATUS_ESYNC_CAP		BIT(7)
2239 	u8 type;
2240 #define ICE_AQC_GET_CGU_IN_CFG_TYPE_READ_ONLY		BIT(0)
2241 #define ICE_AQC_GET_CGU_IN_CFG_TYPE_GPS			BIT(4)
2242 #define ICE_AQC_GET_CGU_IN_CFG_TYPE_EXTERNAL		BIT(5)
2243 #define ICE_AQC_GET_CGU_IN_CFG_TYPE_PHY			BIT(6)
2244 	u8 flags1;
2245 #define ICE_AQC_GET_CGU_IN_CFG_FLG1_PHASE_DELAY_SUPP	BIT(0)
2246 #define ICE_AQC_GET_CGU_IN_CFG_FLG1_1PPS_SUPP		BIT(2)
2247 #define ICE_AQC_GET_CGU_IN_CFG_FLG1_10MHZ_SUPP		BIT(3)
2248 #define ICE_AQC_GET_CGU_IN_CFG_FLG1_ANYFREQ		BIT(7)
2249 	__le32 freq;
2250 	__le32 phase_delay;
2251 	u8 flags2;
2252 #define ICE_AQC_GET_CGU_IN_CFG_FLG2_INPUT_EN		BIT(5)
2253 #define ICE_AQC_GET_CGU_IN_CFG_FLG2_ESYNC_EN		BIT(6)
2254 	u8 rsvd[1];
2255 	__le16 node_handle;
2256 };
2257 
2258 /* Set CGU output config (direct 0x0C64) */
2259 struct ice_aqc_set_cgu_output_config {
2260 	u8 output_idx;
2261 	u8 flags;
2262 #define ICE_AQC_SET_CGU_OUT_CFG_OUT_EN		BIT(0)
2263 #define ICE_AQC_SET_CGU_OUT_CFG_ESYNC_EN	BIT(1)
2264 #define ICE_AQC_SET_CGU_OUT_CFG_UPDATE_FREQ     BIT(2)
2265 #define ICE_AQC_SET_CGU_OUT_CFG_UPDATE_PHASE    BIT(3)
2266 #define ICE_AQC_SET_CGU_OUT_CFG_UPDATE_SRC_SEL  BIT(4)
2267 	u8 src_sel;
2268 #define ICE_AQC_SET_CGU_OUT_CFG_DPLL_SRC_SEL    ICE_M(0x1F, 0)
2269 	u8 rsvd;
2270 	__le32 freq;
2271 	__le32 phase_delay;
2272 	u8 rsvd2[2];
2273 	__le16 node_handle;
2274 };
2275 
2276 /* Get CGU output config (direct 0x0C65) */
2277 struct ice_aqc_get_cgu_output_config {
2278 	u8 output_idx;
2279 	u8 flags;
2280 #define ICE_AQC_GET_CGU_OUT_CFG_OUT_EN		BIT(0)
2281 #define ICE_AQC_GET_CGU_OUT_CFG_ESYNC_EN	BIT(1)
2282 #define ICE_AQC_GET_CGU_OUT_CFG_ESYNC_ABILITY	BIT(2)
2283 	u8 src_sel;
2284 #define ICE_AQC_GET_CGU_OUT_CFG_DPLL_SRC_SEL_SHIFT	0
2285 #define ICE_AQC_GET_CGU_OUT_CFG_DPLL_SRC_SEL \
2286 	ICE_M(0x1F, ICE_AQC_GET_CGU_OUT_CFG_DPLL_SRC_SEL_SHIFT)
2287 #define ICE_AQC_GET_CGU_OUT_CFG_DPLL_MODE_SHIFT		5
2288 #define ICE_AQC_GET_CGU_OUT_CFG_DPLL_MODE \
2289 	ICE_M(0x7, ICE_AQC_GET_CGU_OUT_CFG_DPLL_MODE_SHIFT)
2290 	u8 rsvd;
2291 	__le32 freq;
2292 	__le32 src_freq;
2293 	u8 rsvd2[2];
2294 	__le16 node_handle;
2295 };
2296 
2297 /* Get CGU DPLL status (direct 0x0C66) */
2298 struct ice_aqc_get_cgu_dpll_status {
2299 	u8 dpll_num;
2300 	u8 ref_state;
2301 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_LOS		BIT(0)
2302 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_SCM		BIT(1)
2303 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_CFM		BIT(2)
2304 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_GST		BIT(3)
2305 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_PFM		BIT(4)
2306 #define ICE_AQC_GET_CGU_DPLL_STATUS_FAST_LOCK_EN	BIT(5)
2307 #define ICE_AQC_GET_CGU_DPLL_STATUS_REF_SW_ESYNC	BIT(6)
2308 	u8 dpll_state;
2309 #define ICE_AQC_GET_CGU_DPLL_STATUS_STATE_LOCK		BIT(0)
2310 #define ICE_AQC_GET_CGU_DPLL_STATUS_STATE_HO		BIT(1)
2311 #define ICE_AQC_GET_CGU_DPLL_STATUS_STATE_HO_READY	BIT(2)
2312 #define ICE_AQC_GET_CGU_DPLL_STATUS_STATE_FLHIT		BIT(5)
2313 #define ICE_AQC_GET_CGU_DPLL_STATUS_STATE_PSLHIT	BIT(7)
2314 	u8 config;
2315 #define ICE_AQC_GET_CGU_DPLL_CONFIG_CLK_REF_SEL		ICE_M(0x1F, 0)
2316 #define ICE_AQC_GET_CGU_DPLL_CONFIG_MODE_SHIFT		5
2317 #define ICE_AQC_GET_CGU_DPLL_CONFIG_MODE		\
2318 	ICE_M(0x7, ICE_AQC_GET_CGU_DPLL_CONFIG_MODE_SHIFT)
2319 #define ICE_AQC_GET_CGU_DPLL_CONFIG_MODE_FREERUN	0
2320 #define ICE_AQC_GET_CGU_DPLL_CONFIG_MODE_AUTOMATIC	\
2321 	ICE_M(0x3, ICE_AQC_GET_CGU_DPLL_CONFIG_MODE_SHIFT)
2322 	__le32 phase_offset_h;
2323 	__le32 phase_offset_l;
2324 	u8 eec_mode;
2325 #define ICE_AQC_GET_CGU_DPLL_STATUS_EEC_MODE_1		0xA
2326 #define ICE_AQC_GET_CGU_DPLL_STATUS_EEC_MODE_2		0xB
2327 #define ICE_AQC_GET_CGU_DPLL_STATUS_EEC_MODE_UNKNOWN	0xF
2328 	u8 rsvd[1];
2329 	__le16 node_handle;
2330 };
2331 
2332 /* Set CGU DPLL config (direct 0x0C67) */
2333 struct ice_aqc_set_cgu_dpll_config {
2334 	u8 dpll_num;
2335 	u8 ref_state;
2336 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_LOS		BIT(0)
2337 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_SCM		BIT(1)
2338 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_CFM		BIT(2)
2339 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_GST		BIT(3)
2340 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_PFM		BIT(4)
2341 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_FLOCK_EN	BIT(5)
2342 #define ICE_AQC_SET_CGU_DPLL_CONFIG_REF_SW_ESYNC	BIT(6)
2343 	u8 rsvd;
2344 	u8 config;
2345 #define ICE_AQC_SET_CGU_DPLL_CONFIG_CLK_REF_SEL		ICE_M(0x1F, 0)
2346 #define ICE_AQC_SET_CGU_DPLL_CONFIG_MODE_SHIFT		5
2347 #define ICE_AQC_SET_CGU_DPLL_CONFIG_MODE		\
2348 	ICE_M(0x7, ICE_AQC_SET_CGU_DPLL_CONFIG_MODE_SHIFT)
2349 #define ICE_AQC_SET_CGU_DPLL_CONFIG_MODE_FREERUN	0
2350 #define ICE_AQC_SET_CGU_DPLL_CONFIG_MODE_AUTOMATIC	\
2351 	ICE_M(0x3, ICE_AQC_SET_CGU_DPLL_CONFIG_MODE_SHIFT)
2352 	u8 rsvd2[8];
2353 	u8 eec_mode;
2354 	u8 rsvd3[1];
2355 	__le16 node_handle;
2356 };
2357 
2358 /* Set CGU reference priority (direct 0x0C68) */
2359 struct ice_aqc_set_cgu_ref_prio {
2360 	u8 dpll_num;
2361 	u8 ref_idx;
2362 	u8 ref_priority;
2363 	u8 rsvd[11];
2364 	__le16 node_handle;
2365 };
2366 
2367 /* Get CGU reference priority (direct 0x0C69) */
2368 struct ice_aqc_get_cgu_ref_prio {
2369 	u8 dpll_num;
2370 	u8 ref_idx;
2371 	u8 ref_priority; /* Valid only in response */
2372 	u8 rsvd[13];
2373 };
2374 
2375 /* Get CGU info (direct 0x0C6A) */
2376 struct ice_aqc_get_cgu_info {
2377 	__le32 cgu_id;
2378 	__le32 cgu_cfg_ver;
2379 	__le32 cgu_fw_ver;
2380 	u8 node_part_num;
2381 	u8 dev_rev;
2382 	__le16 node_handle;
2383 };
2384 
2385 /* Driver Shared Parameters (direct, 0x0C90) */
2386 struct ice_aqc_driver_shared_params {
2387 	u8 set_or_get_op;
2388 #define ICE_AQC_DRIVER_PARAM_OP_MASK		BIT(0)
2389 #define ICE_AQC_DRIVER_PARAM_SET		0
2390 #define ICE_AQC_DRIVER_PARAM_GET		1
2391 	u8 param_indx;
2392 #define ICE_AQC_DRIVER_PARAM_MAX_IDX		15
2393 	u8 rsvd[2];
2394 	__le32 param_val;
2395 	__le32 addr_high;
2396 	__le32 addr_low;
2397 };
2398 
2399 /* Lan Queue Overflow Event (direct, 0x1001) */
2400 struct ice_aqc_event_lan_overflow {
2401 	__le32 prtdcb_ruptq;
2402 	__le32 qtx_ctl;
2403 	u8 reserved[8];
2404 };
2405 
2406 /**
2407  * struct ice_aq_desc - Admin Queue (AQ) descriptor
2408  * @flags: ICE_AQ_FLAG_* flags
2409  * @opcode: AQ command opcode
2410  * @datalen: length in bytes of indirect/external data buffer
2411  * @retval: return value from firmware
2412  * @cookie_high: opaque data high-half
2413  * @cookie_low: opaque data low-half
2414  * @params: command-specific parameters
2415  *
2416  * Descriptor format for commands the driver posts on the Admin Transmit Queue
2417  * (ATQ). The firmware writes back onto the command descriptor and returns
2418  * the result of the command. Asynchronous events that are not an immediate
2419  * result of the command are written to the Admin Receive Queue (ARQ) using
2420  * the same descriptor format. Descriptors are in little-endian notation with
2421  * 32-bit words.
2422  */
2423 struct ice_aq_desc {
2424 	__le16 flags;
2425 	__le16 opcode;
2426 	__le16 datalen;
2427 	__le16 retval;
2428 	__le32 cookie_high;
2429 	__le32 cookie_low;
2430 	union {
2431 		u8 raw[16];
2432 		struct ice_aqc_generic generic;
2433 		struct ice_aqc_get_ver get_ver;
2434 		struct ice_aqc_driver_ver driver_ver;
2435 		struct ice_aqc_q_shutdown q_shutdown;
2436 		struct ice_aqc_req_res res_owner;
2437 		struct ice_aqc_manage_mac_read mac_read;
2438 		struct ice_aqc_manage_mac_write mac_write;
2439 		struct ice_aqc_clear_pxe clear_pxe;
2440 		struct ice_aqc_list_caps get_cap;
2441 		struct ice_aqc_get_phy_caps get_phy;
2442 		struct ice_aqc_set_phy_cfg set_phy;
2443 		struct ice_aqc_restart_an restart_an;
2444 		struct ice_aqc_set_phy_rec_clk_out set_phy_rec_clk_out;
2445 		struct ice_aqc_get_phy_rec_clk_out get_phy_rec_clk_out;
2446 		struct ice_aqc_gpio read_write_gpio;
2447 		struct ice_aqc_sff_eeprom read_write_sff_param;
2448 		struct ice_aqc_set_port_id_led set_port_id_led;
2449 		struct ice_aqc_get_port_options get_port_options;
2450 		struct ice_aqc_set_port_option set_port_option;
2451 		struct ice_aqc_get_sw_cfg get_sw_conf;
2452 		struct ice_aqc_set_port_params set_port_params;
2453 		struct ice_aqc_sw_rules sw_rules;
2454 		struct ice_aqc_add_get_recipe add_get_recipe;
2455 		struct ice_aqc_recipe_to_profile recipe_to_profile;
2456 		struct ice_aqc_get_topo get_topo;
2457 		struct ice_aqc_sched_elem_cmd sched_elem_cmd;
2458 		struct ice_aqc_query_txsched_res query_sched_res;
2459 		struct ice_aqc_query_port_ets port_ets;
2460 		struct ice_aqc_rl_profile rl_profile;
2461 		struct ice_aqc_nvm nvm;
2462 		struct ice_aqc_nvm_checksum nvm_checksum;
2463 		struct ice_aqc_nvm_pkg_data pkg_data;
2464 		struct ice_aqc_nvm_pass_comp_tbl pass_comp_tbl;
2465 		struct ice_aqc_pf_vf_msg virt;
2466 		struct ice_aqc_set_query_pfc_mode set_query_pfc_mode;
2467 		struct ice_aqc_lldp_get_mib lldp_get_mib;
2468 		struct ice_aqc_lldp_set_mib_change lldp_set_event;
2469 		struct ice_aqc_lldp_stop lldp_stop;
2470 		struct ice_aqc_lldp_start lldp_start;
2471 		struct ice_aqc_lldp_set_local_mib lldp_set_mib;
2472 		struct ice_aqc_lldp_stop_start_specific_agent lldp_agent_ctrl;
2473 		struct ice_aqc_lldp_filter_ctrl lldp_filter_ctrl;
2474 		struct ice_aqc_get_set_rss_lut get_set_rss_lut;
2475 		struct ice_aqc_get_set_rss_key get_set_rss_key;
2476 		struct ice_aqc_neigh_dev_req neigh_dev;
2477 		struct ice_aqc_add_txqs add_txqs;
2478 		struct ice_aqc_dis_txqs dis_txqs;
2479 		struct ice_aqc_cfg_txqs cfg_txqs;
2480 		struct ice_aqc_add_rdma_qset add_rdma_qset;
2481 		struct ice_aqc_add_get_update_free_vsi vsi_cmd;
2482 		struct ice_aqc_add_update_free_vsi_resp add_update_free_vsi_res;
2483 		struct ice_aqc_fw_logging fw_logging;
2484 		struct ice_aqc_get_clear_fw_log get_clear_fw_log;
2485 		struct ice_aqc_download_pkg download_pkg;
2486 		struct ice_aqc_set_cgu_input_config set_cgu_input_config;
2487 		struct ice_aqc_get_cgu_input_config get_cgu_input_config;
2488 		struct ice_aqc_set_cgu_output_config set_cgu_output_config;
2489 		struct ice_aqc_get_cgu_output_config get_cgu_output_config;
2490 		struct ice_aqc_get_cgu_dpll_status get_cgu_dpll_status;
2491 		struct ice_aqc_set_cgu_dpll_config set_cgu_dpll_config;
2492 		struct ice_aqc_set_cgu_ref_prio set_cgu_ref_prio;
2493 		struct ice_aqc_get_cgu_ref_prio get_cgu_ref_prio;
2494 		struct ice_aqc_get_cgu_info get_cgu_info;
2495 		struct ice_aqc_driver_shared_params drv_shared_params;
2496 		struct ice_aqc_set_mac_lb set_mac_lb;
2497 		struct ice_aqc_alloc_free_res_cmd sw_res_ctrl;
2498 		struct ice_aqc_set_mac_cfg set_mac_cfg;
2499 		struct ice_aqc_set_event_mask set_event_mask;
2500 		struct ice_aqc_get_link_status get_link_status;
2501 		struct ice_aqc_event_lan_overflow lan_overflow;
2502 		struct ice_aqc_get_link_topo get_link_topo;
2503 		struct ice_aqc_i2c read_write_i2c;
2504 		struct ice_aqc_read_i2c_resp read_i2c_resp;
2505 	} params;
2506 };
2507 
2508 /* FW defined boundary for a large buffer, 4k >= Large buffer > 512 bytes */
2509 #define ICE_AQ_LG_BUF	512
2510 
2511 #define ICE_AQ_FLAG_ERR_S	2
2512 #define ICE_AQ_FLAG_LB_S	9
2513 #define ICE_AQ_FLAG_RD_S	10
2514 #define ICE_AQ_FLAG_BUF_S	12
2515 #define ICE_AQ_FLAG_SI_S	13
2516 
2517 #define ICE_AQ_FLAG_ERR		BIT(ICE_AQ_FLAG_ERR_S) /* 0x4    */
2518 #define ICE_AQ_FLAG_LB		BIT(ICE_AQ_FLAG_LB_S)  /* 0x200  */
2519 #define ICE_AQ_FLAG_RD		BIT(ICE_AQ_FLAG_RD_S)  /* 0x400  */
2520 #define ICE_AQ_FLAG_BUF		BIT(ICE_AQ_FLAG_BUF_S) /* 0x1000 */
2521 #define ICE_AQ_FLAG_SI		BIT(ICE_AQ_FLAG_SI_S)  /* 0x2000 */
2522 
2523 /* error codes */
2524 enum ice_aq_err {
2525 	ICE_AQ_RC_OK		= 0,  /* Success */
2526 	ICE_AQ_RC_EPERM		= 1,  /* Operation not permitted */
2527 	ICE_AQ_RC_ENOENT	= 2,  /* No such element */
2528 	ICE_AQ_RC_ENOMEM	= 9,  /* Out of memory */
2529 	ICE_AQ_RC_EBUSY		= 12, /* Device or resource busy */
2530 	ICE_AQ_RC_EEXIST	= 13, /* Object already exists */
2531 	ICE_AQ_RC_EINVAL	= 14, /* Invalid argument */
2532 	ICE_AQ_RC_ENOSPC	= 16, /* No space left or allocation failure */
2533 	ICE_AQ_RC_ENOSYS	= 17, /* Function not implemented */
2534 	ICE_AQ_RC_EMODE		= 21, /* Op not allowed in current dev mode */
2535 	ICE_AQ_RC_ENOSEC	= 24, /* Missing security manifest */
2536 	ICE_AQ_RC_EBADSIG	= 25, /* Bad RSA signature */
2537 	ICE_AQ_RC_ESVN		= 26, /* SVN number prohibits this package */
2538 	ICE_AQ_RC_EBADMAN	= 27, /* Manifest hash mismatch */
2539 	ICE_AQ_RC_EBADBUF	= 28, /* Buffer hash mismatches manifest */
2540 };
2541 
2542 /* Admin Queue command opcodes */
2543 enum ice_adminq_opc {
2544 	/* AQ commands */
2545 	ice_aqc_opc_get_ver				= 0x0001,
2546 	ice_aqc_opc_driver_ver				= 0x0002,
2547 	ice_aqc_opc_q_shutdown				= 0x0003,
2548 
2549 	/* resource ownership */
2550 	ice_aqc_opc_req_res				= 0x0008,
2551 	ice_aqc_opc_release_res				= 0x0009,
2552 
2553 	/* device/function capabilities */
2554 	ice_aqc_opc_list_func_caps			= 0x000A,
2555 	ice_aqc_opc_list_dev_caps			= 0x000B,
2556 
2557 	/* manage MAC address */
2558 	ice_aqc_opc_manage_mac_read			= 0x0107,
2559 	ice_aqc_opc_manage_mac_write			= 0x0108,
2560 
2561 	/* PXE */
2562 	ice_aqc_opc_clear_pxe_mode			= 0x0110,
2563 
2564 	/* internal switch commands */
2565 	ice_aqc_opc_get_sw_cfg				= 0x0200,
2566 	ice_aqc_opc_set_port_params			= 0x0203,
2567 
2568 	/* Alloc/Free/Get Resources */
2569 	ice_aqc_opc_alloc_res				= 0x0208,
2570 	ice_aqc_opc_free_res				= 0x0209,
2571 	ice_aqc_opc_share_res				= 0x020B,
2572 	ice_aqc_opc_set_vlan_mode_parameters		= 0x020C,
2573 	ice_aqc_opc_get_vlan_mode_parameters		= 0x020D,
2574 
2575 	/* VSI commands */
2576 	ice_aqc_opc_add_vsi				= 0x0210,
2577 	ice_aqc_opc_update_vsi				= 0x0211,
2578 	ice_aqc_opc_free_vsi				= 0x0213,
2579 
2580 	/* recipe commands */
2581 	ice_aqc_opc_add_recipe				= 0x0290,
2582 	ice_aqc_opc_recipe_to_profile			= 0x0291,
2583 	ice_aqc_opc_get_recipe				= 0x0292,
2584 	ice_aqc_opc_get_recipe_to_profile		= 0x0293,
2585 
2586 	/* switch rules population commands */
2587 	ice_aqc_opc_add_sw_rules			= 0x02A0,
2588 	ice_aqc_opc_update_sw_rules			= 0x02A1,
2589 	ice_aqc_opc_remove_sw_rules			= 0x02A2,
2590 
2591 	ice_aqc_opc_clear_pf_cfg			= 0x02A4,
2592 
2593 	/* DCB commands */
2594 	ice_aqc_opc_query_pfc_mode			= 0x0302,
2595 	ice_aqc_opc_set_pfc_mode			= 0x0303,
2596 
2597 	/* transmit scheduler commands */
2598 	ice_aqc_opc_get_dflt_topo			= 0x0400,
2599 	ice_aqc_opc_add_sched_elems			= 0x0401,
2600 	ice_aqc_opc_cfg_sched_elems			= 0x0403,
2601 	ice_aqc_opc_get_sched_elems			= 0x0404,
2602 	ice_aqc_opc_move_sched_elems			= 0x0408,
2603 	ice_aqc_opc_suspend_sched_elems			= 0x0409,
2604 	ice_aqc_opc_resume_sched_elems			= 0x040A,
2605 	ice_aqc_opc_query_port_ets			= 0x040E,
2606 	ice_aqc_opc_delete_sched_elems			= 0x040F,
2607 	ice_aqc_opc_add_rl_profiles			= 0x0410,
2608 	ice_aqc_opc_query_sched_res			= 0x0412,
2609 	ice_aqc_opc_remove_rl_profiles			= 0x0415,
2610 
2611 	/* PHY commands */
2612 	ice_aqc_opc_get_phy_caps			= 0x0600,
2613 	ice_aqc_opc_set_phy_cfg				= 0x0601,
2614 	ice_aqc_opc_set_mac_cfg				= 0x0603,
2615 	ice_aqc_opc_restart_an				= 0x0605,
2616 	ice_aqc_opc_get_link_status			= 0x0607,
2617 	ice_aqc_opc_set_event_mask			= 0x0613,
2618 	ice_aqc_opc_set_mac_lb				= 0x0620,
2619 	ice_aqc_opc_set_phy_rec_clk_out			= 0x0630,
2620 	ice_aqc_opc_get_phy_rec_clk_out			= 0x0631,
2621 	ice_aqc_opc_get_link_topo			= 0x06E0,
2622 	ice_aqc_opc_read_i2c				= 0x06E2,
2623 	ice_aqc_opc_write_i2c				= 0x06E3,
2624 	ice_aqc_opc_set_port_id_led			= 0x06E9,
2625 	ice_aqc_opc_get_port_options			= 0x06EA,
2626 	ice_aqc_opc_set_port_option			= 0x06EB,
2627 	ice_aqc_opc_set_gpio				= 0x06EC,
2628 	ice_aqc_opc_get_gpio				= 0x06ED,
2629 	ice_aqc_opc_sff_eeprom				= 0x06EE,
2630 
2631 	/* NVM commands */
2632 	ice_aqc_opc_nvm_read				= 0x0701,
2633 	ice_aqc_opc_nvm_erase				= 0x0702,
2634 	ice_aqc_opc_nvm_write				= 0x0703,
2635 	ice_aqc_opc_nvm_checksum			= 0x0706,
2636 	ice_aqc_opc_nvm_write_activate			= 0x0707,
2637 	ice_aqc_opc_nvm_update_empr			= 0x0709,
2638 	ice_aqc_opc_nvm_pkg_data			= 0x070A,
2639 	ice_aqc_opc_nvm_pass_component_tbl		= 0x070B,
2640 
2641 	/* PF/VF mailbox commands */
2642 	ice_mbx_opc_send_msg_to_pf			= 0x0801,
2643 	ice_mbx_opc_send_msg_to_vf			= 0x0802,
2644 	/* LLDP commands */
2645 	ice_aqc_opc_lldp_get_mib			= 0x0A00,
2646 	ice_aqc_opc_lldp_set_mib_change			= 0x0A01,
2647 	ice_aqc_opc_lldp_stop				= 0x0A05,
2648 	ice_aqc_opc_lldp_start				= 0x0A06,
2649 	ice_aqc_opc_get_cee_dcb_cfg			= 0x0A07,
2650 	ice_aqc_opc_lldp_set_local_mib			= 0x0A08,
2651 	ice_aqc_opc_lldp_stop_start_specific_agent	= 0x0A09,
2652 	ice_aqc_opc_lldp_filter_ctrl			= 0x0A0A,
2653 	ice_aqc_opc_lldp_execute_pending_mib		= 0x0A0B,
2654 
2655 	/* RSS commands */
2656 	ice_aqc_opc_set_rss_key				= 0x0B02,
2657 	ice_aqc_opc_set_rss_lut				= 0x0B03,
2658 	ice_aqc_opc_get_rss_key				= 0x0B04,
2659 	ice_aqc_opc_get_rss_lut				= 0x0B05,
2660 
2661 	/* Sideband Control Interface commands */
2662 	ice_aqc_opc_neighbour_device_request		= 0x0C00,
2663 
2664 	/* Tx queue handling commands/events */
2665 	ice_aqc_opc_add_txqs				= 0x0C30,
2666 	ice_aqc_opc_dis_txqs				= 0x0C31,
2667 	ice_aqc_opc_cfg_txqs				= 0x0C32,
2668 	ice_aqc_opc_add_rdma_qset			= 0x0C33,
2669 
2670 	/* package commands */
2671 	ice_aqc_opc_download_pkg			= 0x0C40,
2672 	ice_aqc_opc_upload_section			= 0x0C41,
2673 	ice_aqc_opc_update_pkg				= 0x0C42,
2674 	ice_aqc_opc_get_pkg_info_list			= 0x0C43,
2675 
2676 	/* 1588/SyncE commands/events */
2677 	ice_aqc_opc_get_cgu_abilities			= 0x0C61,
2678 	ice_aqc_opc_set_cgu_input_config		= 0x0C62,
2679 	ice_aqc_opc_get_cgu_input_config		= 0x0C63,
2680 	ice_aqc_opc_set_cgu_output_config		= 0x0C64,
2681 	ice_aqc_opc_get_cgu_output_config		= 0x0C65,
2682 	ice_aqc_opc_get_cgu_dpll_status			= 0x0C66,
2683 	ice_aqc_opc_set_cgu_dpll_config			= 0x0C67,
2684 	ice_aqc_opc_set_cgu_ref_prio			= 0x0C68,
2685 	ice_aqc_opc_get_cgu_ref_prio			= 0x0C69,
2686 	ice_aqc_opc_get_cgu_info			= 0x0C6A,
2687 
2688 	ice_aqc_opc_driver_shared_params		= 0x0C90,
2689 
2690 	/* Standalone Commands/Events */
2691 	ice_aqc_opc_event_lan_overflow			= 0x1001,
2692 
2693 	/* debug commands */
2694 	ice_aqc_opc_fw_logging				= 0xFF09,
2695 	ice_aqc_opc_fw_logging_info			= 0xFF10,
2696 };
2697 
2698 #endif /* _ICE_ADMINQ_CMD_H_ */
2699