net/ice/base: add interface to support configuring VLAN mode
[dpdk.git] / drivers / net / ice / base / ice_adminq_cmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2020 Intel Corporation
3  */
4
5 #ifndef _ICE_ADMINQ_CMD_H_
6 #define _ICE_ADMINQ_CMD_H_
7
8 /* This header file defines the Admin Queue commands, error codes and
9  * descriptor format. It is shared between Firmware and Software.
10  */
11
12 #define ICE_MAX_VSI                     768
13 #define ICE_AQC_TOPO_MAX_LEVEL_NUM      0x9
14 #define ICE_AQ_SET_MAC_FRAME_SIZE_MAX   9728
15
16 struct ice_aqc_generic {
17         __le32 param0;
18         __le32 param1;
19         __le32 addr_high;
20         __le32 addr_low;
21 };
22
23 /* Get version (direct 0x0001) */
24 struct ice_aqc_get_ver {
25         __le32 rom_ver;
26         __le32 fw_build;
27         u8 fw_branch;
28         u8 fw_major;
29         u8 fw_minor;
30         u8 fw_patch;
31         u8 api_branch;
32         u8 api_major;
33         u8 api_minor;
34         u8 api_patch;
35 };
36
37 /* Send driver version (indirect 0x0002) */
38 struct ice_aqc_driver_ver {
39         u8 major_ver;
40         u8 minor_ver;
41         u8 build_ver;
42         u8 subbuild_ver;
43         u8 reserved[4];
44         __le32 addr_high;
45         __le32 addr_low;
46 };
47
48 /* Queue Shutdown (direct 0x0003) */
49 struct ice_aqc_q_shutdown {
50         u8 driver_unloading;
51 #define ICE_AQC_DRIVER_UNLOADING        BIT(0)
52         u8 reserved[15];
53 };
54
55 /* Request resource ownership (direct 0x0008)
56  * Release resource ownership (direct 0x0009)
57  */
58 struct ice_aqc_req_res {
59         __le16 res_id;
60 #define ICE_AQC_RES_ID_NVM              1
61 #define ICE_AQC_RES_ID_SDP              2
62 #define ICE_AQC_RES_ID_CHNG_LOCK        3
63 #define ICE_AQC_RES_ID_GLBL_LOCK        4
64         __le16 access_type;
65 #define ICE_AQC_RES_ACCESS_READ         1
66 #define ICE_AQC_RES_ACCESS_WRITE        2
67
68         /* Upon successful completion, FW writes this value and driver is
69          * expected to release resource before timeout. This value is provided
70          * in milliseconds.
71          */
72         __le32 timeout;
73 #define ICE_AQ_RES_NVM_READ_DFLT_TIMEOUT_MS     3000
74 #define ICE_AQ_RES_NVM_WRITE_DFLT_TIMEOUT_MS    180000
75 #define ICE_AQ_RES_CHNG_LOCK_DFLT_TIMEOUT_MS    1000
76 #define ICE_AQ_RES_GLBL_LOCK_DFLT_TIMEOUT_MS    3000
77         /* For SDP: pin ID of the SDP */
78         __le32 res_number;
79         /* Status is only used for ICE_AQC_RES_ID_GLBL_LOCK */
80         __le16 status;
81 #define ICE_AQ_RES_GLBL_SUCCESS         0
82 #define ICE_AQ_RES_GLBL_IN_PROG         1
83 #define ICE_AQ_RES_GLBL_DONE            2
84         u8 reserved[2];
85 };
86
87 /* Get function capabilities (indirect 0x000A)
88  * Get device capabilities (indirect 0x000B)
89  */
90 struct ice_aqc_list_caps {
91         u8 cmd_flags;
92         u8 pf_index;
93         u8 reserved[2];
94         __le32 count;
95         __le32 addr_high;
96         __le32 addr_low;
97 };
98
99 /* Device/Function buffer entry, repeated per reported capability */
100 struct ice_aqc_list_caps_elem {
101         __le16 cap;
102 #define ICE_AQC_CAPS_VALID_FUNCTIONS                    0x0005
103 #define ICE_AQC_MAX_VALID_FUNCTIONS                     0x8
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_MAX_MTU                            0x0047
112 #define ICE_AQC_CAPS_IWARP                              0x0051
113 #define ICE_AQC_CAPS_PCIE_RESET_AVOIDANCE               0x0076
114 #define ICE_AQC_CAPS_NVM_MGMT                           0x0080
115
116         u8 major_ver;
117         u8 minor_ver;
118         /* Number of resources described by this capability */
119         __le32 number;
120         /* Only meaningful for some types of resources */
121         __le32 logical_id;
122         /* Only meaningful for some types of resources */
123         __le32 phys_id;
124         __le64 rsvd1;
125         __le64 rsvd2;
126 };
127
128 /* Manage MAC address, read command - indirect (0x0107)
129  * This struct is also used for the response
130  */
131 struct ice_aqc_manage_mac_read {
132         __le16 flags; /* Zeroed by device driver */
133 #define ICE_AQC_MAN_MAC_LAN_ADDR_VALID          BIT(4)
134 #define ICE_AQC_MAN_MAC_SAN_ADDR_VALID          BIT(5)
135 #define ICE_AQC_MAN_MAC_PORT_ADDR_VALID         BIT(6)
136 #define ICE_AQC_MAN_MAC_WOL_ADDR_VALID          BIT(7)
137 #define ICE_AQC_MAN_MAC_MC_MAG_EN               BIT(8)
138 #define ICE_AQC_MAN_MAC_WOL_PRESERVE_ON_PFR     BIT(9)
139 #define ICE_AQC_MAN_MAC_READ_S                  4
140 #define ICE_AQC_MAN_MAC_READ_M                  (0xF << ICE_AQC_MAN_MAC_READ_S)
141         u8 rsvd[2];
142         u8 num_addr; /* Used in response */
143         u8 rsvd1[3];
144         __le32 addr_high;
145         __le32 addr_low;
146 };
147
148 /* Response buffer format for manage MAC read command */
149 struct ice_aqc_manage_mac_read_resp {
150         u8 lport_num;
151         u8 addr_type;
152 #define ICE_AQC_MAN_MAC_ADDR_TYPE_LAN           0
153 #define ICE_AQC_MAN_MAC_ADDR_TYPE_WOL           1
154         u8 mac_addr[ETH_ALEN];
155 };
156
157 /* Manage MAC address, write command - direct (0x0108) */
158 struct ice_aqc_manage_mac_write {
159         u8 rsvd;
160         u8 flags;
161 #define ICE_AQC_MAN_MAC_WR_MC_MAG_EN            BIT(0)
162 #define ICE_AQC_MAN_MAC_WR_WOL_LAA_PFR_KEEP     BIT(1)
163 #define ICE_AQC_MAN_MAC_WR_S            6
164 #define ICE_AQC_MAN_MAC_WR_M            MAKEMASK(3, ICE_AQC_MAN_MAC_WR_S)
165 #define ICE_AQC_MAN_MAC_UPDATE_LAA      0
166 #define ICE_AQC_MAN_MAC_UPDATE_LAA_WOL  BIT(ICE_AQC_MAN_MAC_WR_S)
167         /* byte stream in network order */
168         u8 mac_addr[ETH_ALEN];
169         __le32 addr_high;
170         __le32 addr_low;
171 };
172
173 /* Clear PXE Command and response (direct 0x0110) */
174 struct ice_aqc_clear_pxe {
175         u8 rx_cnt;
176 #define ICE_AQC_CLEAR_PXE_RX_CNT                0x2
177         u8 reserved[15];
178 };
179
180 /* Configure No-Drop Policy Command (direct 0x0112) */
181 struct ice_aqc_config_no_drop_policy {
182         u8 opts;
183 #define ICE_AQC_FORCE_NO_DROP                   BIT(0)
184         u8 rsvd[15];
185 };
186
187 /* Get switch configuration (0x0200) */
188 struct ice_aqc_get_sw_cfg {
189         /* Reserved for command and copy of request flags for response */
190         __le16 flags;
191         /* First desc in case of command and next_elem in case of response
192          * In case of response, if it is not zero, means all the configuration
193          * was not returned and new command shall be sent with this value in
194          * the 'first desc' field
195          */
196         __le16 element;
197         /* Reserved for command, only used for response */
198         __le16 num_elems;
199         __le16 rsvd;
200         __le32 addr_high;
201         __le32 addr_low;
202 };
203
204 /* Each entry in the response buffer is of the following type: */
205 struct ice_aqc_get_sw_cfg_resp_elem {
206         /* VSI/Port Number */
207         __le16 vsi_port_num;
208 #define ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_S 0
209 #define ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_M \
210                         (0x3FF << ICE_AQC_GET_SW_CONF_RESP_VSI_PORT_NUM_S)
211 #define ICE_AQC_GET_SW_CONF_RESP_TYPE_S 14
212 #define ICE_AQC_GET_SW_CONF_RESP_TYPE_M (0x3 << ICE_AQC_GET_SW_CONF_RESP_TYPE_S)
213 #define ICE_AQC_GET_SW_CONF_RESP_PHYS_PORT      0
214 #define ICE_AQC_GET_SW_CONF_RESP_VIRT_PORT      1
215 #define ICE_AQC_GET_SW_CONF_RESP_VSI            2
216
217         /* SWID VSI/Port belongs to */
218         __le16 swid;
219
220         /* Bit 14..0 : PF/VF number VSI belongs to
221          * Bit 15 : VF indication bit
222          */
223         __le16 pf_vf_num;
224 #define ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_S     0
225 #define ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_M     \
226                                 (0x7FFF << ICE_AQC_GET_SW_CONF_RESP_FUNC_NUM_S)
227 #define ICE_AQC_GET_SW_CONF_RESP_IS_VF          BIT(15)
228 };
229
230 /* Set Port parameters, (direct, 0x0203) */
231 struct ice_aqc_set_port_params {
232         __le16 cmd_flags;
233 #define ICE_AQC_SET_P_PARAMS_SAVE_BAD_PACKETS   BIT(0)
234 #define ICE_AQC_SET_P_PARAMS_PAD_SHORT_PACKETS  BIT(1)
235 #define ICE_AQC_SET_P_PARAMS_DOUBLE_VLAN_ENA    BIT(2)
236         __le16 bad_frame_vsi;
237 #define ICE_AQC_SET_P_PARAMS_VSI_S      0
238 #define ICE_AQC_SET_P_PARAMS_VSI_M      (0x3FF << ICE_AQC_SET_P_PARAMS_VSI_S)
239 #define ICE_AQC_SET_P_PARAMS_VSI_VALID  BIT(15)
240         __le16 swid;
241 #define ICE_AQC_SET_P_PARAMS_SWID_S     0
242 #define ICE_AQC_SET_P_PARAMS_SWID_M     (0xFF << ICE_AQC_SET_P_PARAMS_SWID_S)
243 #define ICE_AQC_SET_P_PARAMS_LOGI_PORT_ID_S     8
244 #define ICE_AQC_SET_P_PARAMS_LOGI_PORT_ID_M     \
245                                 (0x3F << ICE_AQC_SET_P_PARAMS_LOGI_PORT_ID_S)
246 #define ICE_AQC_SET_P_PARAMS_IS_LOGI_PORT       BIT(14)
247 #define ICE_AQC_SET_P_PARAMS_SWID_VALID         BIT(15)
248         u8 reserved[10];
249 };
250
251 /* These resource type defines are used for all switch resource
252  * commands where a resource type is required, such as:
253  * Get Resource Allocation command (indirect 0x0204)
254  * Allocate Resources command (indirect 0x0208)
255  * Free Resources command (indirect 0x0209)
256  * Get Allocated Resource Descriptors Command (indirect 0x020A)
257  */
258 #define ICE_AQC_RES_TYPE_VEB_COUNTER                    0x00
259 #define ICE_AQC_RES_TYPE_VLAN_COUNTER                   0x01
260 #define ICE_AQC_RES_TYPE_MIRROR_RULE                    0x02
261 #define ICE_AQC_RES_TYPE_VSI_LIST_REP                   0x03
262 #define ICE_AQC_RES_TYPE_VSI_LIST_PRUNE                 0x04
263 #define ICE_AQC_RES_TYPE_RECIPE                         0x05
264 #define ICE_AQC_RES_TYPE_PROFILE                        0x06
265 #define ICE_AQC_RES_TYPE_SWID                           0x07
266 #define ICE_AQC_RES_TYPE_VSI                            0x08
267 #define ICE_AQC_RES_TYPE_FLU                            0x09
268 #define ICE_AQC_RES_TYPE_WIDE_TABLE_1                   0x0A
269 #define ICE_AQC_RES_TYPE_WIDE_TABLE_2                   0x0B
270 #define ICE_AQC_RES_TYPE_WIDE_TABLE_4                   0x0C
271 #define ICE_AQC_RES_TYPE_GLOBAL_RSS_HASH                0x20
272 #define ICE_AQC_RES_TYPE_FDIR_COUNTER_BLOCK             0x21
273 #define ICE_AQC_RES_TYPE_FDIR_GUARANTEED_ENTRIES        0x22
274 #define ICE_AQC_RES_TYPE_FDIR_SHARED_ENTRIES            0x23
275 #define ICE_AQC_RES_TYPE_FLEX_DESC_PROG                 0x30
276 #define ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_PROFID        0x48
277 #define ICE_AQC_RES_TYPE_SWITCH_PROF_BLDR_TCAM          0x49
278 #define ICE_AQC_RES_TYPE_ACL_PROF_BLDR_PROFID           0x50
279 #define ICE_AQC_RES_TYPE_ACL_PROF_BLDR_TCAM             0x51
280 #define ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID            0x58
281 #define ICE_AQC_RES_TYPE_FD_PROF_BLDR_TCAM              0x59
282 #define ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID          0x60
283 #define ICE_AQC_RES_TYPE_HASH_PROF_BLDR_TCAM            0x61
284 /* Resource types 0x62-67 are reserved for Hash profile builder */
285 #define ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_PROFID         0x68
286 #define ICE_AQC_RES_TYPE_QHASH_PROF_BLDR_TCAM           0x69
287
288 #define ICE_AQC_RES_TYPE_FLAG_SHARED                    BIT(7)
289 #define ICE_AQC_RES_TYPE_FLAG_SCAN_BOTTOM               BIT(12)
290 #define ICE_AQC_RES_TYPE_FLAG_IGNORE_INDEX              BIT(13)
291
292 #define ICE_AQC_RES_TYPE_FLAG_DEDICATED                 0x00
293
294 #define ICE_AQC_RES_TYPE_S      0
295 #define ICE_AQC_RES_TYPE_M      (0x07F << ICE_AQC_RES_TYPE_S)
296
297 /* Get Resource Allocation command (indirect 0x0204) */
298 struct ice_aqc_get_res_alloc {
299         __le16 resp_elem_num; /* Used in response, reserved in command */
300         u8 reserved[6];
301         __le32 addr_high;
302         __le32 addr_low;
303 };
304
305 /* Get Resource Allocation Response Buffer per response */
306 struct ice_aqc_get_res_resp_elem {
307         __le16 res_type; /* Types defined above cmd 0x0204 */
308         __le16 total_capacity; /* Resources available to all PF's */
309         __le16 total_function; /* Resources allocated for a PF */
310         __le16 total_shared; /* Resources allocated as shared */
311         __le16 total_free; /* Resources un-allocated/not reserved by any PF */
312 };
313
314 /* Allocate Resources command (indirect 0x0208)
315  * Free Resources command (indirect 0x0209)
316  */
317 struct ice_aqc_alloc_free_res_cmd {
318         __le16 num_entries; /* Number of Resource entries */
319         u8 reserved[6];
320         __le32 addr_high;
321         __le32 addr_low;
322 };
323
324 /* Resource descriptor */
325 struct ice_aqc_res_elem {
326         union {
327                 __le16 sw_resp;
328                 __le16 flu_resp;
329         } e;
330 };
331
332 /* Buffer for Allocate/Free Resources commands */
333 struct ice_aqc_alloc_free_res_elem {
334         __le16 res_type; /* Types defined above cmd 0x0204 */
335 #define ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_S       8
336 #define ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_M       \
337                                 (0xF << ICE_AQC_RES_TYPE_VSI_PRUNE_LIST_S)
338         __le16 num_elems;
339         struct ice_aqc_res_elem elem[STRUCT_HACK_VAR_LEN];
340 };
341
342 /* Get Allocated Resource Descriptors Command (indirect 0x020A) */
343 struct ice_aqc_get_allocd_res_desc {
344         union {
345                 struct {
346                         __le16 res; /* Types defined above cmd 0x0204 */
347                         __le16 first_desc;
348                         __le32 reserved;
349                 } cmd;
350                 struct {
351                         __le16 res;
352                         __le16 next_desc;
353                         __le16 num_desc;
354                         __le16 reserved;
355                 } resp;
356         } ops;
357         __le32 addr_high;
358         __le32 addr_low;
359 };
360
361 /* Add VSI (indirect 0x0210)
362  * Update VSI (indirect 0x0211)
363  * Get VSI (indirect 0x0212)
364  * Free VSI (indirect 0x0213)
365  */
366 struct ice_aqc_add_get_update_free_vsi {
367         __le16 vsi_num;
368 #define ICE_AQ_VSI_NUM_S        0
369 #define ICE_AQ_VSI_NUM_M        (0x03FF << ICE_AQ_VSI_NUM_S)
370 #define ICE_AQ_VSI_IS_VALID     BIT(15)
371         __le16 cmd_flags;
372 #define ICE_AQ_VSI_KEEP_ALLOC   0x1
373         u8 vf_id;
374         u8 reserved;
375         __le16 vsi_flags;
376 #define ICE_AQ_VSI_TYPE_S       0
377 #define ICE_AQ_VSI_TYPE_M       (0x3 << ICE_AQ_VSI_TYPE_S)
378 #define ICE_AQ_VSI_TYPE_VF      0x0
379 #define ICE_AQ_VSI_TYPE_VMDQ2   0x1
380 #define ICE_AQ_VSI_TYPE_PF      0x2
381 #define ICE_AQ_VSI_TYPE_EMP_MNG 0x3
382         __le32 addr_high;
383         __le32 addr_low;
384 };
385
386 /* Response descriptor for:
387  * Add VSI (indirect 0x0210)
388  * Update VSI (indirect 0x0211)
389  * Free VSI (indirect 0x0213)
390  */
391 struct ice_aqc_add_update_free_vsi_resp {
392         __le16 vsi_num;
393         __le16 ext_status;
394         __le16 vsi_used;
395         __le16 vsi_free;
396         __le32 addr_high;
397         __le32 addr_low;
398 };
399
400 struct ice_aqc_get_vsi_resp {
401         __le16 vsi_num;
402         u8 vf_id;
403         /* The vsi_flags field uses the ICE_AQ_VSI_TYPE_* defines for values.
404          * These are found above in struct ice_aqc_add_get_update_free_vsi.
405          */
406         u8 vsi_flags;
407         __le16 vsi_used;
408         __le16 vsi_free;
409         __le32 addr_high;
410         __le32 addr_low;
411 };
412
413 struct ice_aqc_vsi_props {
414         __le16 valid_sections;
415 #define ICE_AQ_VSI_PROP_SW_VALID                BIT(0)
416 #define ICE_AQ_VSI_PROP_SECURITY_VALID          BIT(1)
417 #define ICE_AQ_VSI_PROP_VLAN_VALID              BIT(2)
418 #define ICE_AQ_VSI_PROP_OUTER_TAG_VALID         BIT(3)
419 #define ICE_AQ_VSI_PROP_INGRESS_UP_VALID        BIT(4)
420 #define ICE_AQ_VSI_PROP_EGRESS_UP_VALID         BIT(5)
421 #define ICE_AQ_VSI_PROP_RXQ_MAP_VALID           BIT(6)
422 #define ICE_AQ_VSI_PROP_Q_OPT_VALID             BIT(7)
423 #define ICE_AQ_VSI_PROP_OUTER_UP_VALID          BIT(8)
424 #define ICE_AQ_VSI_PROP_ACL_VALID               BIT(10)
425 #define ICE_AQ_VSI_PROP_FLOW_DIR_VALID          BIT(11)
426 #define ICE_AQ_VSI_PROP_PASID_VALID             BIT(12)
427         /* switch section */
428         u8 sw_id;
429         u8 sw_flags;
430 #define ICE_AQ_VSI_SW_FLAG_ALLOW_LB             BIT(5)
431 #define ICE_AQ_VSI_SW_FLAG_LOCAL_LB             BIT(6)
432 #define ICE_AQ_VSI_SW_FLAG_SRC_PRUNE            BIT(7)
433         u8 sw_flags2;
434 #define ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_S        0
435 #define ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_M        \
436                                 (0xF << ICE_AQ_VSI_SW_FLAG_RX_PRUNE_EN_S)
437 #define ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA    BIT(0)
438 #define ICE_AQ_VSI_SW_FLAG_LAN_ENA              BIT(4)
439         u8 veb_stat_id;
440 #define ICE_AQ_VSI_SW_VEB_STAT_ID_S             0
441 #define ICE_AQ_VSI_SW_VEB_STAT_ID_M     (0x1F << ICE_AQ_VSI_SW_VEB_STAT_ID_S)
442 #define ICE_AQ_VSI_SW_VEB_STAT_ID_VALID         BIT(5)
443         /* security section */
444         u8 sec_flags;
445 #define ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD     BIT(0)
446 #define ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF  BIT(2)
447 #define ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S   4
448 #define ICE_AQ_VSI_SEC_TX_PRUNE_ENA_M   (0xF << ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S)
449 #define ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA        BIT(0)
450         u8 sec_reserved;
451         /* VLAN section */
452         __le16 pvid; /* VLANS include priority bits */
453         u8 pvlan_reserved[2];
454         u8 vlan_flags;
455 #define ICE_AQ_VSI_VLAN_MODE_S  0
456 #define ICE_AQ_VSI_VLAN_MODE_M  (0x3 << ICE_AQ_VSI_VLAN_MODE_S)
457 #define ICE_AQ_VSI_VLAN_MODE_UNTAGGED   0x1
458 #define ICE_AQ_VSI_VLAN_MODE_TAGGED     0x2
459 #define ICE_AQ_VSI_VLAN_MODE_ALL        0x3
460 #define ICE_AQ_VSI_PVLAN_INSERT_PVID    BIT(2)
461 #define ICE_AQ_VSI_VLAN_EMOD_S          3
462 #define ICE_AQ_VSI_VLAN_EMOD_M          (0x3 << ICE_AQ_VSI_VLAN_EMOD_S)
463 #define ICE_AQ_VSI_VLAN_EMOD_STR_BOTH   (0x0 << ICE_AQ_VSI_VLAN_EMOD_S)
464 #define ICE_AQ_VSI_VLAN_EMOD_STR_UP     (0x1 << ICE_AQ_VSI_VLAN_EMOD_S)
465 #define ICE_AQ_VSI_VLAN_EMOD_STR        (0x2 << ICE_AQ_VSI_VLAN_EMOD_S)
466 #define ICE_AQ_VSI_VLAN_EMOD_NOTHING    (0x3 << ICE_AQ_VSI_VLAN_EMOD_S)
467         u8 pvlan_reserved2[3];
468         /* ingress egress up sections */
469         __le32 ingress_table; /* bitmap, 3 bits per up */
470 #define ICE_AQ_VSI_UP_TABLE_UP0_S       0
471 #define ICE_AQ_VSI_UP_TABLE_UP0_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP0_S)
472 #define ICE_AQ_VSI_UP_TABLE_UP1_S       3
473 #define ICE_AQ_VSI_UP_TABLE_UP1_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP1_S)
474 #define ICE_AQ_VSI_UP_TABLE_UP2_S       6
475 #define ICE_AQ_VSI_UP_TABLE_UP2_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP2_S)
476 #define ICE_AQ_VSI_UP_TABLE_UP3_S       9
477 #define ICE_AQ_VSI_UP_TABLE_UP3_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP3_S)
478 #define ICE_AQ_VSI_UP_TABLE_UP4_S       12
479 #define ICE_AQ_VSI_UP_TABLE_UP4_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP4_S)
480 #define ICE_AQ_VSI_UP_TABLE_UP5_S       15
481 #define ICE_AQ_VSI_UP_TABLE_UP5_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP5_S)
482 #define ICE_AQ_VSI_UP_TABLE_UP6_S       18
483 #define ICE_AQ_VSI_UP_TABLE_UP6_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP6_S)
484 #define ICE_AQ_VSI_UP_TABLE_UP7_S       21
485 #define ICE_AQ_VSI_UP_TABLE_UP7_M       (0x7 << ICE_AQ_VSI_UP_TABLE_UP7_S)
486         __le32 egress_table;   /* same defines as for ingress table */
487         /* outer tags section */
488         __le16 outer_tag;
489         u8 outer_tag_flags;
490 #define ICE_AQ_VSI_OUTER_TAG_MODE_S     0
491 #define ICE_AQ_VSI_OUTER_TAG_MODE_M     (0x3 << ICE_AQ_VSI_OUTER_TAG_MODE_S)
492 #define ICE_AQ_VSI_OUTER_TAG_NOTHING    0x0
493 #define ICE_AQ_VSI_OUTER_TAG_REMOVE     0x1
494 #define ICE_AQ_VSI_OUTER_TAG_COPY       0x2
495 #define ICE_AQ_VSI_OUTER_TAG_TYPE_S     2
496 #define ICE_AQ_VSI_OUTER_TAG_TYPE_M     (0x3 << ICE_AQ_VSI_OUTER_TAG_TYPE_S)
497 #define ICE_AQ_VSI_OUTER_TAG_NONE       0x0
498 #define ICE_AQ_VSI_OUTER_TAG_STAG       0x1
499 #define ICE_AQ_VSI_OUTER_TAG_VLAN_8100  0x2
500 #define ICE_AQ_VSI_OUTER_TAG_VLAN_9100  0x3
501 #define ICE_AQ_VSI_OUTER_TAG_INSERT     BIT(4)
502 #define ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST BIT(6)
503         u8 outer_tag_reserved;
504         /* queue mapping section */
505         __le16 mapping_flags;
506 #define ICE_AQ_VSI_Q_MAP_CONTIG 0x0
507 #define ICE_AQ_VSI_Q_MAP_NONCONTIG      BIT(0)
508         __le16 q_mapping[16];
509 #define ICE_AQ_VSI_Q_S          0
510 #define ICE_AQ_VSI_Q_M          (0x7FF << ICE_AQ_VSI_Q_S)
511         __le16 tc_mapping[8];
512 #define ICE_AQ_VSI_TC_Q_OFFSET_S        0
513 #define ICE_AQ_VSI_TC_Q_OFFSET_M        (0x7FF << ICE_AQ_VSI_TC_Q_OFFSET_S)
514 #define ICE_AQ_VSI_TC_Q_NUM_S           11
515 #define ICE_AQ_VSI_TC_Q_NUM_M           (0xF << ICE_AQ_VSI_TC_Q_NUM_S)
516         /* queueing option section */
517         u8 q_opt_rss;
518 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_S      0
519 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_M      (0x3 << ICE_AQ_VSI_Q_OPT_RSS_LUT_S)
520 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI    0x0
521 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_PF     0x2
522 #define ICE_AQ_VSI_Q_OPT_RSS_LUT_GBL    0x3
523 #define ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_S  2
524 #define ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_M  (0xF << ICE_AQ_VSI_Q_OPT_RSS_GBL_LUT_S)
525 #define ICE_AQ_VSI_Q_OPT_RSS_HASH_S     6
526 #define ICE_AQ_VSI_Q_OPT_RSS_HASH_M     (0x3 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
527 #define ICE_AQ_VSI_Q_OPT_RSS_TPLZ       (0x0 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
528 #define ICE_AQ_VSI_Q_OPT_RSS_SYM_TPLZ   (0x1 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
529 #define ICE_AQ_VSI_Q_OPT_RSS_XOR        (0x2 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
530 #define ICE_AQ_VSI_Q_OPT_RSS_JHASH      (0x3 << ICE_AQ_VSI_Q_OPT_RSS_HASH_S)
531         u8 q_opt_tc;
532 #define ICE_AQ_VSI_Q_OPT_TC_OVR_S       0
533 #define ICE_AQ_VSI_Q_OPT_TC_OVR_M       (0x1F << ICE_AQ_VSI_Q_OPT_TC_OVR_S)
534 #define ICE_AQ_VSI_Q_OPT_PROF_TC_OVR    BIT(7)
535         u8 q_opt_flags;
536 #define ICE_AQ_VSI_Q_OPT_PE_FLTR_EN     BIT(0)
537         u8 q_opt_reserved[3];
538         /* outer up section */
539         __le32 outer_up_table; /* same structure and defines as ingress tbl */
540         /* ACL section */
541         __le16 acl_def_act;
542 #define ICE_AQ_VSI_ACL_DEF_RX_PROF_S    0
543 #define ICE_AQ_VSI_ACL_DEF_RX_PROF_M    (0xF << ICE_AQ_VSI_ACL_DEF_RX_PROF_S)
544 #define ICE_AQ_VSI_ACL_DEF_RX_TABLE_S   4
545 #define ICE_AQ_VSI_ACL_DEF_RX_TABLE_M   (0xF << ICE_AQ_VSI_ACL_DEF_RX_TABLE_S)
546 #define ICE_AQ_VSI_ACL_DEF_TX_PROF_S    8
547 #define ICE_AQ_VSI_ACL_DEF_TX_PROF_M    (0xF << ICE_AQ_VSI_ACL_DEF_TX_PROF_S)
548 #define ICE_AQ_VSI_ACL_DEF_TX_TABLE_S   12
549 #define ICE_AQ_VSI_ACL_DEF_TX_TABLE_M   (0xF << ICE_AQ_VSI_ACL_DEF_TX_TABLE_S)
550         /* flow director section */
551         __le16 fd_options;
552 #define ICE_AQ_VSI_FD_ENABLE            BIT(0)
553 #define ICE_AQ_VSI_FD_TX_AUTO_ENABLE    BIT(1)
554 #define ICE_AQ_VSI_FD_PROG_ENABLE       BIT(3)
555         __le16 max_fd_fltr_dedicated;
556         __le16 max_fd_fltr_shared;
557         __le16 fd_def_q;
558 #define ICE_AQ_VSI_FD_DEF_Q_S           0
559 #define ICE_AQ_VSI_FD_DEF_Q_M           (0x7FF << ICE_AQ_VSI_FD_DEF_Q_S)
560 #define ICE_AQ_VSI_FD_DEF_GRP_S 12
561 #define ICE_AQ_VSI_FD_DEF_GRP_M (0x7 << ICE_AQ_VSI_FD_DEF_GRP_S)
562         __le16 fd_report_opt;
563 #define ICE_AQ_VSI_FD_REPORT_Q_S        0
564 #define ICE_AQ_VSI_FD_REPORT_Q_M        (0x7FF << ICE_AQ_VSI_FD_REPORT_Q_S)
565 #define ICE_AQ_VSI_FD_DEF_PRIORITY_S    12
566 #define ICE_AQ_VSI_FD_DEF_PRIORITY_M    (0x7 << ICE_AQ_VSI_FD_DEF_PRIORITY_S)
567 #define ICE_AQ_VSI_FD_DEF_DROP          BIT(15)
568         /* PASID section */
569         __le32 pasid_id;
570 #define ICE_AQ_VSI_PASID_ID_S           0
571 #define ICE_AQ_VSI_PASID_ID_M           (0xFFFFF << ICE_AQ_VSI_PASID_ID_S)
572 #define ICE_AQ_VSI_PASID_ID_VALID       BIT(31)
573         u8 reserved[24];
574 };
575
576 /* Add/update mirror rule - direct (0x0260) */
577 #define ICE_AQC_RULE_ID_VALID_S         7
578 #define ICE_AQC_RULE_ID_VALID_M         (0x1 << ICE_AQC_RULE_ID_VALID_S)
579 #define ICE_AQC_RULE_ID_S               0
580 #define ICE_AQC_RULE_ID_M               (0x3F << ICE_AQC_RULE_ID_S)
581
582 /* Following defines to be used while processing caller specified mirror list
583  * of VSI indexes.
584  */
585 /* Action: Byte.bit (1.7)
586  *      0 = Remove VSI from mirror rule
587  *      1 = Add VSI to mirror rule
588  */
589 #define ICE_AQC_RULE_ACT_S      15
590 #define ICE_AQC_RULE_ACT_M      (0x1 << ICE_AQC_RULE_ACT_S)
591 /* Action: 1.2:0.0 = Mirrored VSI */
592 #define ICE_AQC_RULE_MIRRORED_VSI_S     0
593 #define ICE_AQC_RULE_MIRRORED_VSI_M     (0x7FF << ICE_AQC_RULE_MIRRORED_VSI_S)
594
595 /* This is to be used by add/update mirror rule Admin Queue command.
596  * In case of add mirror rule - if rule ID is specified as
597  * INVAL_MIRROR_RULE_ID, new rule ID is allocated from shared pool.
598  * If specified rule_id is valid, then it is used. If specified rule_id
599  * is in use then new mirroring rule is added.
600  */
601 #define ICE_INVAL_MIRROR_RULE_ID        0xFFFF
602
603 struct ice_aqc_add_update_mir_rule {
604         __le16 rule_id;
605
606         __le16 rule_type;
607 #define ICE_AQC_RULE_TYPE_S             0
608 #define ICE_AQC_RULE_TYPE_M             (0x7 << ICE_AQC_RULE_TYPE_S)
609         /* VPORT ingress/egress */
610 #define ICE_AQC_RULE_TYPE_VPORT_INGRESS 0x1
611 #define ICE_AQC_RULE_TYPE_VPORT_EGRESS  0x2
612         /* Physical port ingress mirroring.
613          * All traffic received by this port
614          */
615 #define ICE_AQC_RULE_TYPE_PPORT_INGRESS 0x6
616         /* Physical port egress mirroring. All traffic sent by this port */
617 #define ICE_AQC_RULE_TYPE_PPORT_EGRESS  0x7
618
619         /* Number of mirrored entries.
620          * The values are in the command buffer
621          */
622         __le16 num_entries;
623
624         /* Destination VSI */
625         __le16 dest;
626         __le32 addr_high;
627         __le32 addr_low;
628 };
629
630 /* Delete mirror rule - direct(0x0261) */
631 struct ice_aqc_delete_mir_rule {
632         __le16 rule_id;
633         __le16 rsvd;
634
635         /* Byte.bit: 20.0 = Keep allocation. If set VSI stays part of
636          * the PF allocated resources, otherwise it is returned to the
637          * shared pool
638          */
639 #define ICE_AQC_FLAG_KEEP_ALLOCD_S      0
640 #define ICE_AQC_FLAG_KEEP_ALLOCD_M      (0x1 << ICE_AQC_FLAG_KEEP_ALLOCD_S)
641         __le16 flags;
642
643         u8 reserved[10];
644 };
645
646 /* Set/Get storm config - (direct 0x0280, 0x0281) */
647 /* This structure holds get storm configuration response and same structure
648  * is used to perform set_storm_cfg
649  */
650 struct ice_aqc_storm_cfg {
651         __le32 bcast_thresh_size;
652         __le32 mcast_thresh_size;
653         /* Bit 18:0 - Traffic upper threshold size
654          * Bit 31:19 - Reserved
655          */
656 #define ICE_AQ_THRESHOLD_S      0
657 #define ICE_AQ_THRESHOLD_M      (0x7FFFF << ICE_AQ_THRESHOLD_S)
658
659         __le32 storm_ctrl_ctrl;
660         /* Bit 0: MDIPW - Drop Multicast packets in previous window
661          * Bit 1: MDICW - Drop multicast packets in current window
662          * Bit 2: BDIPW - Drop broadcast packets in previous window
663          * Bit 3: BDICW - Drop broadcast packets in current window
664          */
665 #define ICE_AQ_STORM_CTRL_MDIPW_DROP_MULTICAST  BIT(0)
666 #define ICE_AQ_STORM_CTRL_MDICW_DROP_MULTICAST  BIT(1)
667 #define ICE_AQ_STORM_CTRL_BDIPW_DROP_MULTICAST  BIT(2)
668 #define ICE_AQ_STORM_CTRL_BDICW_DROP_MULTICAST  BIT(3)
669         /* Bit 7:5 : Reserved */
670         /* Bit 27:8 : Interval - BSC/MSC Time-interval specification: The
671          * interval size for applying ingress broadcast or multicast storm
672          * control.
673          */
674 #define ICE_AQ_STORM_BSC_MSC_TIME_INTERVAL_S    8
675 #define ICE_AQ_STORM_BSC_MSC_TIME_INTERVAL_M    \
676                         (0xFFFFF << ICE_AQ_STORM_BSC_MSC_TIME_INTERVAL_S)
677         __le32 reserved;
678 };
679
680 #define ICE_MAX_NUM_RECIPES 64
681
682 /* Add/Get Recipe (indirect 0x0290/0x0292) */
683 struct ice_aqc_add_get_recipe {
684         __le16 num_sub_recipes; /* Input in Add cmd, Output in Get cmd */
685         __le16 return_index;    /* Input, used for Get cmd only */
686         u8 reserved[4];
687         __le32 addr_high;
688         __le32 addr_low;
689 };
690
691 struct ice_aqc_recipe_content {
692         u8 rid;
693 #define ICE_AQ_RECIPE_ID_S              0
694 #define ICE_AQ_RECIPE_ID_M              (0x3F << ICE_AQ_RECIPE_ID_S)
695 #define ICE_AQ_RECIPE_ID_IS_ROOT        BIT(7)
696 #define ICE_AQ_SW_ID_LKUP_IDX           0
697         u8 lkup_indx[5];
698 #define ICE_AQ_RECIPE_LKUP_DATA_S       0
699 #define ICE_AQ_RECIPE_LKUP_DATA_M       (0x3F << ICE_AQ_RECIPE_LKUP_DATA_S)
700 #define ICE_AQ_RECIPE_LKUP_IGNORE       BIT(7)
701 #define ICE_AQ_SW_ID_LKUP_MASK          0x00FF
702         __le16 mask[5];
703         u8 result_indx;
704 #define ICE_AQ_RECIPE_RESULT_DATA_S     0
705 #define ICE_AQ_RECIPE_RESULT_DATA_M     (0x3F << ICE_AQ_RECIPE_RESULT_DATA_S)
706 #define ICE_AQ_RECIPE_RESULT_EN         BIT(7)
707         u8 rsvd0[3];
708         u8 act_ctrl_join_priority;
709         u8 act_ctrl_fwd_priority;
710 #define ICE_AQ_RECIPE_FWD_PRIORITY_S    0
711 #define ICE_AQ_RECIPE_FWD_PRIORITY_M    (0xF << ICE_AQ_RECIPE_FWD_PRIORITY_S)
712         u8 act_ctrl;
713 #define ICE_AQ_RECIPE_ACT_NEED_PASS_L2  BIT(0)
714 #define ICE_AQ_RECIPE_ACT_ALLOW_PASS_L2 BIT(1)
715 #define ICE_AQ_RECIPE_ACT_INV_ACT       BIT(2)
716 #define ICE_AQ_RECIPE_ACT_PRUNE_INDX_S  4
717 #define ICE_AQ_RECIPE_ACT_PRUNE_INDX_M  (0x3 << ICE_AQ_RECIPE_ACT_PRUNE_INDX_S)
718         u8 rsvd1;
719         __le32 dflt_act;
720 #define ICE_AQ_RECIPE_DFLT_ACT_S        0
721 #define ICE_AQ_RECIPE_DFLT_ACT_M        (0x7FFFF << ICE_AQ_RECIPE_DFLT_ACT_S)
722 #define ICE_AQ_RECIPE_DFLT_ACT_VALID    BIT(31)
723 };
724
725 struct ice_aqc_recipe_data_elem {
726         u8 recipe_indx;
727         u8 resp_bits;
728 #define ICE_AQ_RECIPE_WAS_UPDATED       BIT(0)
729         u8 rsvd0[2];
730         u8 recipe_bitmap[8];
731         u8 rsvd1[4];
732         struct ice_aqc_recipe_content content;
733         u8 rsvd2[20];
734 };
735
736 /* Set/Get Recipes to Profile Association (direct 0x0291/0x0293) */
737 struct ice_aqc_recipe_to_profile {
738         __le16 profile_id;
739         u8 rsvd[6];
740         ice_declare_bitmap(recipe_assoc, ICE_MAX_NUM_RECIPES);
741 };
742
743 /* Add/Update/Remove/Get switch rules (indirect 0x02A0, 0x02A1, 0x02A2, 0x02A3)
744  */
745 struct ice_aqc_sw_rules {
746         /* ops: add switch rules, referring the number of rules.
747          * ops: update switch rules, referring the number of filters
748          * ops: remove switch rules, referring the entry index.
749          * ops: get switch rules, referring to the number of filters.
750          */
751         __le16 num_rules_fltr_entry_index;
752         u8 reserved[6];
753         __le32 addr_high;
754         __le32 addr_low;
755 };
756
757 /* Add/Update/Get/Remove lookup Rx/Tx command/response entry
758  * This structures describes the lookup rules and associated actions. "index"
759  * is returned as part of a response to a successful Add command, and can be
760  * used to identify the rule for Update/Get/Remove commands.
761  */
762 struct ice_sw_rule_lkup_rx_tx {
763         __le16 recipe_id;
764 #define ICE_SW_RECIPE_LOGICAL_PORT_FWD          10
765         /* Source port for LOOKUP_RX and source VSI in case of LOOKUP_TX */
766         __le16 src;
767         __le32 act;
768
769         /* Bit 0:1 - Action type */
770 #define ICE_SINGLE_ACT_TYPE_S   0x00
771 #define ICE_SINGLE_ACT_TYPE_M   (0x3 << ICE_SINGLE_ACT_TYPE_S)
772
773         /* Bit 2 - Loop back enable
774          * Bit 3 - LAN enable
775          */
776 #define ICE_SINGLE_ACT_LB_ENABLE        BIT(2)
777 #define ICE_SINGLE_ACT_LAN_ENABLE       BIT(3)
778
779         /* Action type = 0 - Forward to VSI or VSI list */
780 #define ICE_SINGLE_ACT_VSI_FORWARDING   0x0
781
782 #define ICE_SINGLE_ACT_VSI_ID_S         4
783 #define ICE_SINGLE_ACT_VSI_ID_M         (0x3FF << ICE_SINGLE_ACT_VSI_ID_S)
784 #define ICE_SINGLE_ACT_VSI_LIST_ID_S    4
785 #define ICE_SINGLE_ACT_VSI_LIST_ID_M    (0x3FF << ICE_SINGLE_ACT_VSI_LIST_ID_S)
786         /* This bit needs to be set if action is forward to VSI list */
787 #define ICE_SINGLE_ACT_VSI_LIST         BIT(14)
788 #define ICE_SINGLE_ACT_VALID_BIT        BIT(17)
789 #define ICE_SINGLE_ACT_DROP             BIT(18)
790
791         /* Action type = 1 - Forward to Queue of Queue group */
792 #define ICE_SINGLE_ACT_TO_Q             0x1
793 #define ICE_SINGLE_ACT_Q_INDEX_S        4
794 #define ICE_SINGLE_ACT_Q_INDEX_M        (0x7FF << ICE_SINGLE_ACT_Q_INDEX_S)
795 #define ICE_SINGLE_ACT_Q_REGION_S       15
796 #define ICE_SINGLE_ACT_Q_REGION_M       (0x7 << ICE_SINGLE_ACT_Q_REGION_S)
797 #define ICE_SINGLE_ACT_Q_PRIORITY       BIT(18)
798
799         /* Action type = 2 - Prune */
800 #define ICE_SINGLE_ACT_PRUNE            0x2
801 #define ICE_SINGLE_ACT_EGRESS           BIT(15)
802 #define ICE_SINGLE_ACT_INGRESS          BIT(16)
803 #define ICE_SINGLE_ACT_PRUNET           BIT(17)
804         /* Bit 18 should be set to 0 for this action */
805
806         /* Action type = 2 - Pointer */
807 #define ICE_SINGLE_ACT_PTR              0x2
808 #define ICE_SINGLE_ACT_PTR_VAL_S        4
809 #define ICE_SINGLE_ACT_PTR_VAL_M        (0x1FFF << ICE_SINGLE_ACT_PTR_VAL_S)
810         /* Bit 18 should be set to 1 */
811 #define ICE_SINGLE_ACT_PTR_BIT          BIT(18)
812
813         /* Action type = 3 - Other actions. Last two bits
814          * are other action identifier
815          */
816 #define ICE_SINGLE_ACT_OTHER_ACTS               0x3
817 #define ICE_SINGLE_OTHER_ACT_IDENTIFIER_S       17
818 #define ICE_SINGLE_OTHER_ACT_IDENTIFIER_M       \
819                                 (0x3 << ICE_SINGLE_OTHER_ACT_IDENTIFIER_S)
820
821         /* Bit 17:18 - Defines other actions */
822         /* Other action = 0 - Mirror VSI */
823 #define ICE_SINGLE_OTHER_ACT_MIRROR             0
824 #define ICE_SINGLE_ACT_MIRROR_VSI_ID_S  4
825 #define ICE_SINGLE_ACT_MIRROR_VSI_ID_M  \
826                                 (0x3FF << ICE_SINGLE_ACT_MIRROR_VSI_ID_S)
827
828         /* Other action = 3 - Set Stat count */
829 #define ICE_SINGLE_OTHER_ACT_STAT_COUNT         3
830 #define ICE_SINGLE_ACT_STAT_COUNT_INDEX_S       4
831 #define ICE_SINGLE_ACT_STAT_COUNT_INDEX_M       \
832                                 (0x7F << ICE_SINGLE_ACT_STAT_COUNT_INDEX_S)
833
834         __le16 index; /* The index of the rule in the lookup table */
835         /* Length and values of the header to be matched per recipe or
836          * lookup-type
837          */
838         __le16 hdr_len;
839         u8 hdr[STRUCT_HACK_VAR_LEN];
840 };
841
842 /* Add/Update/Remove large action command/response entry
843  * "index" is returned as part of a response to a successful Add command, and
844  * can be used to identify the action for Update/Get/Remove commands.
845  */
846 struct ice_sw_rule_lg_act {
847         __le16 index; /* Index in large action table */
848         __le16 size;
849         /* Max number of large actions */
850 #define ICE_MAX_LG_ACT  4
851         /* Bit 0:1 - Action type */
852 #define ICE_LG_ACT_TYPE_S       0
853 #define ICE_LG_ACT_TYPE_M       (0x7 << ICE_LG_ACT_TYPE_S)
854
855         /* Action type = 0 - Forward to VSI or VSI list */
856 #define ICE_LG_ACT_VSI_FORWARDING       0
857 #define ICE_LG_ACT_VSI_ID_S             3
858 #define ICE_LG_ACT_VSI_ID_M             (0x3FF << ICE_LG_ACT_VSI_ID_S)
859 #define ICE_LG_ACT_VSI_LIST_ID_S        3
860 #define ICE_LG_ACT_VSI_LIST_ID_M        (0x3FF << ICE_LG_ACT_VSI_LIST_ID_S)
861         /* This bit needs to be set if action is forward to VSI list */
862 #define ICE_LG_ACT_VSI_LIST             BIT(13)
863
864 #define ICE_LG_ACT_VALID_BIT            BIT(16)
865
866         /* Action type = 1 - Forward to Queue of Queue group */
867 #define ICE_LG_ACT_TO_Q                 0x1
868 #define ICE_LG_ACT_Q_INDEX_S            3
869 #define ICE_LG_ACT_Q_INDEX_M            (0x7FF << ICE_LG_ACT_Q_INDEX_S)
870 #define ICE_LG_ACT_Q_REGION_S           14
871 #define ICE_LG_ACT_Q_REGION_M           (0x7 << ICE_LG_ACT_Q_REGION_S)
872 #define ICE_LG_ACT_Q_PRIORITY_SET       BIT(17)
873
874         /* Action type = 2 - Prune */
875 #define ICE_LG_ACT_PRUNE                0x2
876 #define ICE_LG_ACT_EGRESS               BIT(14)
877 #define ICE_LG_ACT_INGRESS              BIT(15)
878 #define ICE_LG_ACT_PRUNET               BIT(16)
879
880         /* Action type = 3 - Mirror VSI */
881 #define ICE_LG_OTHER_ACT_MIRROR         0x3
882 #define ICE_LG_ACT_MIRROR_VSI_ID_S      3
883 #define ICE_LG_ACT_MIRROR_VSI_ID_M      (0x3FF << ICE_LG_ACT_MIRROR_VSI_ID_S)
884
885         /* Action type = 5 - Generic Value */
886 #define ICE_LG_ACT_GENERIC              0x5
887 #define ICE_LG_ACT_GENERIC_VALUE_S      3
888 #define ICE_LG_ACT_GENERIC_VALUE_M      (0xFFFF << ICE_LG_ACT_GENERIC_VALUE_S)
889 #define ICE_LG_ACT_GENERIC_OFFSET_S     19
890 #define ICE_LG_ACT_GENERIC_OFFSET_M     (0x7 << ICE_LG_ACT_GENERIC_OFFSET_S)
891 #define ICE_LG_ACT_GENERIC_PRIORITY_S   22
892 #define ICE_LG_ACT_GENERIC_PRIORITY_M   (0x7 << ICE_LG_ACT_GENERIC_PRIORITY_S)
893 #define ICE_LG_ACT_GENERIC_OFF_RX_DESC_PROF_IDX 7
894
895         /* Action = 7 - Set Stat count */
896 #define ICE_LG_ACT_STAT_COUNT           0x7
897 #define ICE_LG_ACT_STAT_COUNT_S         3
898 #define ICE_LG_ACT_STAT_COUNT_M         (0x7F << ICE_LG_ACT_STAT_COUNT_S)
899         __le32 act[STRUCT_HACK_VAR_LEN]; /* array of size for actions */
900 };
901
902 /* Add/Update/Remove VSI list command/response entry
903  * "index" is returned as part of a response to a successful Add command, and
904  * can be used to identify the VSI list for Update/Get/Remove commands.
905  */
906 struct ice_sw_rule_vsi_list {
907         __le16 index; /* Index of VSI/Prune list */
908         __le16 number_vsi;
909         __le16 vsi[STRUCT_HACK_VAR_LEN]; /* Array of number_vsi VSI numbers */
910 };
911
912 #pragma pack(1)
913 /* Query VSI list command/response entry */
914 struct ice_sw_rule_vsi_list_query {
915         __le16 index;
916         ice_declare_bitmap(vsi_list, ICE_MAX_VSI);
917 };
918 #pragma pack()
919
920 #pragma pack(1)
921 /* Add switch rule response:
922  * Content of return buffer is same as the input buffer. The status field and
923  * LUT index are updated as part of the response
924  */
925 struct ice_aqc_sw_rules_elem {
926         __le16 type; /* Switch rule type, one of T_... */
927 #define ICE_AQC_SW_RULES_T_LKUP_RX              0x0
928 #define ICE_AQC_SW_RULES_T_LKUP_TX              0x1
929 #define ICE_AQC_SW_RULES_T_LG_ACT               0x2
930 #define ICE_AQC_SW_RULES_T_VSI_LIST_SET         0x3
931 #define ICE_AQC_SW_RULES_T_VSI_LIST_CLEAR       0x4
932 #define ICE_AQC_SW_RULES_T_PRUNE_LIST_SET       0x5
933 #define ICE_AQC_SW_RULES_T_PRUNE_LIST_CLEAR     0x6
934         __le16 status;
935         union {
936                 struct ice_sw_rule_lkup_rx_tx lkup_tx_rx;
937                 struct ice_sw_rule_lg_act lg_act;
938                 struct ice_sw_rule_vsi_list vsi_list;
939                 struct ice_sw_rule_vsi_list_query vsi_list_query;
940         } pdata;
941 };
942
943 #pragma pack()
944
945 /* PFC Ignore (direct 0x0301)
946  * The command and response use the same descriptor structure
947  */
948 struct ice_aqc_pfc_ignore {
949         u8      tc_bitmap;
950         u8      cmd_flags; /* unused in response */
951 #define ICE_AQC_PFC_IGNORE_SET          BIT(7)
952 #define ICE_AQC_PFC_IGNORE_CLEAR        0
953         u8      reserved[14];
954 };
955
956 /* Set PFC Mode (direct 0x0303)
957  * Query PFC Mode (direct 0x0302)
958  */
959 struct ice_aqc_set_query_pfc_mode {
960         u8      pfc_mode;
961 /* For Set Command response, reserved in all other cases */
962 #define ICE_AQC_PFC_NOT_CONFIGURED      0
963 /* For Query Command response, reserved in all other cases */
964 #define ICE_AQC_DCB_DIS         0
965 #define ICE_AQC_PFC_VLAN_BASED_PFC      1
966 #define ICE_AQC_PFC_DSCP_BASED_PFC      2
967         u8      rsvd[15];
968 };
969
970 /* Set DCB Parameters (direct 0x0306) */
971 struct ice_aqc_set_dcb_params {
972         u8 cmd_flags; /* unused in response */
973 #define ICE_AQC_LINK_UP_DCB_CFG    BIT(0)
974 #define ICE_AQC_PERSIST_DCB_CFG    BIT(1)
975         u8 valid_flags; /* unused in response */
976 #define ICE_AQC_LINK_UP_DCB_CFG_VALID    BIT(0)
977 #define ICE_AQC_PERSIST_DCB_CFG_VALID    BIT(1)
978         u8 rsvd[14];
979 };
980
981 /* Get Default Topology (indirect 0x0400) */
982 struct ice_aqc_get_topo {
983         u8 port_num;
984         u8 num_branches;
985         __le16 reserved1;
986         __le32 reserved2;
987         __le32 addr_high;
988         __le32 addr_low;
989 };
990
991 /* Update TSE (indirect 0x0403)
992  * Get TSE (indirect 0x0404)
993  * Add TSE (indirect 0x0401)
994  * Delete TSE (indirect 0x040F)
995  * Move TSE (indirect 0x0408)
996  * Suspend Nodes (indirect 0x0409)
997  * Resume Nodes (indirect 0x040A)
998  */
999 struct ice_aqc_sched_elem_cmd {
1000         __le16 num_elem_req;    /* Used by commands */
1001         __le16 num_elem_resp;   /* Used by responses */
1002         __le32 reserved;
1003         __le32 addr_high;
1004         __le32 addr_low;
1005 };
1006
1007 struct ice_aqc_txsched_move_grp_info_hdr {
1008         __le32 src_parent_teid;
1009         __le32 dest_parent_teid;
1010         __le16 num_elems;
1011         __le16 reserved;
1012 };
1013
1014 struct ice_aqc_move_elem {
1015         struct ice_aqc_txsched_move_grp_info_hdr hdr;
1016         __le32 teid[STRUCT_HACK_VAR_LEN];
1017 };
1018
1019 struct ice_aqc_elem_info_bw {
1020         __le16 bw_profile_idx;
1021         __le16 bw_alloc;
1022 };
1023
1024 struct ice_aqc_txsched_elem {
1025         u8 elem_type; /* Special field, reserved for some aq calls */
1026 #define ICE_AQC_ELEM_TYPE_UNDEFINED             0x0
1027 #define ICE_AQC_ELEM_TYPE_ROOT_PORT             0x1
1028 #define ICE_AQC_ELEM_TYPE_TC                    0x2
1029 #define ICE_AQC_ELEM_TYPE_SE_GENERIC            0x3
1030 #define ICE_AQC_ELEM_TYPE_ENTRY_POINT           0x4
1031 #define ICE_AQC_ELEM_TYPE_LEAF                  0x5
1032 #define ICE_AQC_ELEM_TYPE_SE_PADDED             0x6
1033         u8 valid_sections;
1034 #define ICE_AQC_ELEM_VALID_GENERIC              BIT(0)
1035 #define ICE_AQC_ELEM_VALID_CIR                  BIT(1)
1036 #define ICE_AQC_ELEM_VALID_EIR                  BIT(2)
1037 #define ICE_AQC_ELEM_VALID_SHARED               BIT(3)
1038         u8 generic;
1039 #define ICE_AQC_ELEM_GENERIC_MODE_M             0x1
1040 #define ICE_AQC_ELEM_GENERIC_PRIO_S             0x1
1041 #define ICE_AQC_ELEM_GENERIC_PRIO_M     (0x7 << ICE_AQC_ELEM_GENERIC_PRIO_S)
1042 #define ICE_AQC_ELEM_GENERIC_SP_S               0x4
1043 #define ICE_AQC_ELEM_GENERIC_SP_M       (0x1 << ICE_AQC_ELEM_GENERIC_SP_S)
1044 #define ICE_AQC_ELEM_GENERIC_ADJUST_VAL_S       0x5
1045 #define ICE_AQC_ELEM_GENERIC_ADJUST_VAL_M       \
1046         (0x3 << ICE_AQC_ELEM_GENERIC_ADJUST_VAL_S)
1047         u8 flags; /* Special field, reserved for some aq calls */
1048 #define ICE_AQC_ELEM_FLAG_SUSPEND_M             0x1
1049         struct ice_aqc_elem_info_bw cir_bw;
1050         struct ice_aqc_elem_info_bw eir_bw;
1051         __le16 srl_id;
1052         __le16 reserved2;
1053 };
1054
1055 struct ice_aqc_txsched_elem_data {
1056         __le32 parent_teid;
1057         __le32 node_teid;
1058         struct ice_aqc_txsched_elem data;
1059 };
1060
1061 struct ice_aqc_txsched_topo_grp_info_hdr {
1062         __le32 parent_teid;
1063         __le16 num_elems;
1064         __le16 reserved2;
1065 };
1066
1067 struct ice_aqc_add_elem {
1068         struct ice_aqc_txsched_topo_grp_info_hdr hdr;
1069         struct ice_aqc_txsched_elem_data generic[STRUCT_HACK_VAR_LEN];
1070 };
1071
1072 struct ice_aqc_get_topo_elem {
1073         struct ice_aqc_txsched_topo_grp_info_hdr hdr;
1074         struct ice_aqc_txsched_elem_data
1075                 generic[ICE_AQC_TOPO_MAX_LEVEL_NUM];
1076 };
1077
1078 struct ice_aqc_delete_elem {
1079         struct ice_aqc_txsched_topo_grp_info_hdr hdr;
1080         __le32 teid[STRUCT_HACK_VAR_LEN];
1081 };
1082
1083 /* Query Port ETS (indirect 0x040E)
1084  *
1085  * This indirect command is used to query port TC node configuration.
1086  */
1087 struct ice_aqc_query_port_ets {
1088         __le32 port_teid;
1089         __le32 reserved;
1090         __le32 addr_high;
1091         __le32 addr_low;
1092 };
1093
1094 struct ice_aqc_port_ets_elem {
1095         u8 tc_valid_bits;
1096         u8 reserved[3];
1097         /* 3 bits for UP per TC 0-7, 4th byte reserved */
1098         __le32 up2tc;
1099         u8 tc_bw_share[8];
1100         __le32 port_eir_prof_id;
1101         __le32 port_cir_prof_id;
1102         /* 3 bits per Node priority to TC 0-7, 4th byte reserved */
1103         __le32 tc_node_prio;
1104 #define ICE_TC_NODE_PRIO_S      0x4
1105         u8 reserved1[4];
1106         __le32 tc_node_teid[8]; /* Used for response, reserved in command */
1107 };
1108
1109 /* Rate limiting profile for
1110  * Add RL profile (indirect 0x0410)
1111  * Query RL profile (indirect 0x0411)
1112  * Remove RL profile (indirect 0x0415)
1113  * These indirect commands acts on single or multiple
1114  * RL profiles with specified data.
1115  */
1116 struct ice_aqc_rl_profile {
1117         __le16 num_profiles;
1118         __le16 num_processed; /* Only for response. Reserved in Command. */
1119         u8 reserved[4];
1120         __le32 addr_high;
1121         __le32 addr_low;
1122 };
1123
1124 struct ice_aqc_rl_profile_elem {
1125         u8 level;
1126         u8 flags;
1127 #define ICE_AQC_RL_PROFILE_TYPE_S       0x0
1128 #define ICE_AQC_RL_PROFILE_TYPE_M       (0x3 << ICE_AQC_RL_PROFILE_TYPE_S)
1129 #define ICE_AQC_RL_PROFILE_TYPE_CIR     0
1130 #define ICE_AQC_RL_PROFILE_TYPE_EIR     1
1131 #define ICE_AQC_RL_PROFILE_TYPE_SRL     2
1132 /* The following flag is used for Query RL Profile Data */
1133 #define ICE_AQC_RL_PROFILE_INVAL_S      0x7
1134 #define ICE_AQC_RL_PROFILE_INVAL_M      (0x1 << ICE_AQC_RL_PROFILE_INVAL_S)
1135
1136         __le16 profile_id;
1137         __le16 max_burst_size;
1138         __le16 rl_multiply;
1139         __le16 wake_up_calc;
1140         __le16 rl_encode;
1141 };
1142
1143 /* Configure L2 Node CGD (indirect 0x0414)
1144  * This indirect command allows configuring a congestion domain for given L2
1145  * node TEIDs in the scheduler topology.
1146  */
1147 struct ice_aqc_cfg_l2_node_cgd {
1148         __le16 num_l2_nodes;
1149         u8 reserved[6];
1150         __le32 addr_high;
1151         __le32 addr_low;
1152 };
1153
1154 struct ice_aqc_cfg_l2_node_cgd_elem {
1155         __le32 node_teid;
1156         u8 cgd;
1157         u8 reserved[3];
1158 };
1159
1160 /* Query Scheduler Resource Allocation (indirect 0x0412)
1161  * This indirect command retrieves the scheduler resources allocated by
1162  * EMP Firmware to the given PF.
1163  */
1164 struct ice_aqc_query_txsched_res {
1165         u8 reserved[8];
1166         __le32 addr_high;
1167         __le32 addr_low;
1168 };
1169
1170 struct ice_aqc_generic_sched_props {
1171         __le16 phys_levels;
1172         __le16 logical_levels;
1173         u8 flattening_bitmap;
1174         u8 max_device_cgds;
1175         u8 max_pf_cgds;
1176         u8 rsvd0;
1177         __le16 rdma_qsets;
1178         u8 rsvd1[22];
1179 };
1180
1181 struct ice_aqc_layer_props {
1182         u8 logical_layer;
1183         u8 chunk_size;
1184         __le16 max_device_nodes;
1185         __le16 max_pf_nodes;
1186         u8 rsvd0[4];
1187         __le16 max_sibl_grp_sz;
1188         __le16 max_cir_rl_profiles;
1189         __le16 max_eir_rl_profiles;
1190         __le16 max_srl_profiles;
1191         u8 rsvd1[14];
1192 };
1193
1194 struct ice_aqc_query_txsched_res_resp {
1195         struct ice_aqc_generic_sched_props sched_props;
1196         struct ice_aqc_layer_props layer_props[ICE_AQC_TOPO_MAX_LEVEL_NUM];
1197 };
1198
1199 /* Query Node to Root Topology (indirect 0x0413)
1200  * This command uses ice_aqc_get_elem as its data buffer.
1201  */
1202 struct ice_aqc_query_node_to_root {
1203         __le32 teid;
1204         __le32 num_nodes; /* Response only */
1205         __le32 addr_high;
1206         __le32 addr_low;
1207 };
1208
1209 /* Get PHY capabilities (indirect 0x0600) */
1210 struct ice_aqc_get_phy_caps {
1211         u8 lport_num;
1212         u8 reserved;
1213         __le16 param0;
1214         /* 18.0 - Report qualified modules */
1215 #define ICE_AQC_GET_PHY_RQM             BIT(0)
1216         /* 18.1 - 18.2 : Report mode
1217          * 00b - Report NVM capabilities
1218          * 01b - Report topology capabilities
1219          * 10b - Report SW configured
1220          */
1221 #define ICE_AQC_REPORT_MODE_S           1
1222 #define ICE_AQC_REPORT_MODE_M           (3 << ICE_AQC_REPORT_MODE_S)
1223 #define ICE_AQC_REPORT_NVM_CAP          0
1224 #define ICE_AQC_REPORT_TOPO_CAP         BIT(1)
1225 #define ICE_AQC_REPORT_SW_CFG           BIT(2)
1226         __le32 reserved1;
1227         __le32 addr_high;
1228         __le32 addr_low;
1229 };
1230
1231 /* This is #define of PHY type (Extended):
1232  * The first set of defines is for phy_type_low.
1233  */
1234 #define ICE_PHY_TYPE_LOW_100BASE_TX             BIT_ULL(0)
1235 #define ICE_PHY_TYPE_LOW_100M_SGMII             BIT_ULL(1)
1236 #define ICE_PHY_TYPE_LOW_1000BASE_T             BIT_ULL(2)
1237 #define ICE_PHY_TYPE_LOW_1000BASE_SX            BIT_ULL(3)
1238 #define ICE_PHY_TYPE_LOW_1000BASE_LX            BIT_ULL(4)
1239 #define ICE_PHY_TYPE_LOW_1000BASE_KX            BIT_ULL(5)
1240 #define ICE_PHY_TYPE_LOW_1G_SGMII               BIT_ULL(6)
1241 #define ICE_PHY_TYPE_LOW_2500BASE_T             BIT_ULL(7)
1242 #define ICE_PHY_TYPE_LOW_2500BASE_X             BIT_ULL(8)
1243 #define ICE_PHY_TYPE_LOW_2500BASE_KX            BIT_ULL(9)
1244 #define ICE_PHY_TYPE_LOW_5GBASE_T               BIT_ULL(10)
1245 #define ICE_PHY_TYPE_LOW_5GBASE_KR              BIT_ULL(11)
1246 #define ICE_PHY_TYPE_LOW_10GBASE_T              BIT_ULL(12)
1247 #define ICE_PHY_TYPE_LOW_10G_SFI_DA             BIT_ULL(13)
1248 #define ICE_PHY_TYPE_LOW_10GBASE_SR             BIT_ULL(14)
1249 #define ICE_PHY_TYPE_LOW_10GBASE_LR             BIT_ULL(15)
1250 #define ICE_PHY_TYPE_LOW_10GBASE_KR_CR1         BIT_ULL(16)
1251 #define ICE_PHY_TYPE_LOW_10G_SFI_AOC_ACC        BIT_ULL(17)
1252 #define ICE_PHY_TYPE_LOW_10G_SFI_C2C            BIT_ULL(18)
1253 #define ICE_PHY_TYPE_LOW_25GBASE_T              BIT_ULL(19)
1254 #define ICE_PHY_TYPE_LOW_25GBASE_CR             BIT_ULL(20)
1255 #define ICE_PHY_TYPE_LOW_25GBASE_CR_S           BIT_ULL(21)
1256 #define ICE_PHY_TYPE_LOW_25GBASE_CR1            BIT_ULL(22)
1257 #define ICE_PHY_TYPE_LOW_25GBASE_SR             BIT_ULL(23)
1258 #define ICE_PHY_TYPE_LOW_25GBASE_LR             BIT_ULL(24)
1259 #define ICE_PHY_TYPE_LOW_25GBASE_KR             BIT_ULL(25)
1260 #define ICE_PHY_TYPE_LOW_25GBASE_KR_S           BIT_ULL(26)
1261 #define ICE_PHY_TYPE_LOW_25GBASE_KR1            BIT_ULL(27)
1262 #define ICE_PHY_TYPE_LOW_25G_AUI_AOC_ACC        BIT_ULL(28)
1263 #define ICE_PHY_TYPE_LOW_25G_AUI_C2C            BIT_ULL(29)
1264 #define ICE_PHY_TYPE_LOW_40GBASE_CR4            BIT_ULL(30)
1265 #define ICE_PHY_TYPE_LOW_40GBASE_SR4            BIT_ULL(31)
1266 #define ICE_PHY_TYPE_LOW_40GBASE_LR4            BIT_ULL(32)
1267 #define ICE_PHY_TYPE_LOW_40GBASE_KR4            BIT_ULL(33)
1268 #define ICE_PHY_TYPE_LOW_40G_XLAUI_AOC_ACC      BIT_ULL(34)
1269 #define ICE_PHY_TYPE_LOW_40G_XLAUI              BIT_ULL(35)
1270 #define ICE_PHY_TYPE_LOW_50GBASE_CR2            BIT_ULL(36)
1271 #define ICE_PHY_TYPE_LOW_50GBASE_SR2            BIT_ULL(37)
1272 #define ICE_PHY_TYPE_LOW_50GBASE_LR2            BIT_ULL(38)
1273 #define ICE_PHY_TYPE_LOW_50GBASE_KR2            BIT_ULL(39)
1274 #define ICE_PHY_TYPE_LOW_50G_LAUI2_AOC_ACC      BIT_ULL(40)
1275 #define ICE_PHY_TYPE_LOW_50G_LAUI2              BIT_ULL(41)
1276 #define ICE_PHY_TYPE_LOW_50G_AUI2_AOC_ACC       BIT_ULL(42)
1277 #define ICE_PHY_TYPE_LOW_50G_AUI2               BIT_ULL(43)
1278 #define ICE_PHY_TYPE_LOW_50GBASE_CP             BIT_ULL(44)
1279 #define ICE_PHY_TYPE_LOW_50GBASE_SR             BIT_ULL(45)
1280 #define ICE_PHY_TYPE_LOW_50GBASE_FR             BIT_ULL(46)
1281 #define ICE_PHY_TYPE_LOW_50GBASE_LR             BIT_ULL(47)
1282 #define ICE_PHY_TYPE_LOW_50GBASE_KR_PAM4        BIT_ULL(48)
1283 #define ICE_PHY_TYPE_LOW_50G_AUI1_AOC_ACC       BIT_ULL(49)
1284 #define ICE_PHY_TYPE_LOW_50G_AUI1               BIT_ULL(50)
1285 #define ICE_PHY_TYPE_LOW_100GBASE_CR4           BIT_ULL(51)
1286 #define ICE_PHY_TYPE_LOW_100GBASE_SR4           BIT_ULL(52)
1287 #define ICE_PHY_TYPE_LOW_100GBASE_LR4           BIT_ULL(53)
1288 #define ICE_PHY_TYPE_LOW_100GBASE_KR4           BIT_ULL(54)
1289 #define ICE_PHY_TYPE_LOW_100G_CAUI4_AOC_ACC     BIT_ULL(55)
1290 #define ICE_PHY_TYPE_LOW_100G_CAUI4             BIT_ULL(56)
1291 #define ICE_PHY_TYPE_LOW_100G_AUI4_AOC_ACC      BIT_ULL(57)
1292 #define ICE_PHY_TYPE_LOW_100G_AUI4              BIT_ULL(58)
1293 #define ICE_PHY_TYPE_LOW_100GBASE_CR_PAM4       BIT_ULL(59)
1294 #define ICE_PHY_TYPE_LOW_100GBASE_KR_PAM4       BIT_ULL(60)
1295 #define ICE_PHY_TYPE_LOW_100GBASE_CP2           BIT_ULL(61)
1296 #define ICE_PHY_TYPE_LOW_100GBASE_SR2           BIT_ULL(62)
1297 #define ICE_PHY_TYPE_LOW_100GBASE_DR            BIT_ULL(63)
1298 #define ICE_PHY_TYPE_LOW_MAX_INDEX              63
1299 /* The second set of defines is for phy_type_high. */
1300 #define ICE_PHY_TYPE_HIGH_100GBASE_KR2_PAM4     BIT_ULL(0)
1301 #define ICE_PHY_TYPE_HIGH_100G_CAUI2_AOC_ACC    BIT_ULL(1)
1302 #define ICE_PHY_TYPE_HIGH_100G_CAUI2            BIT_ULL(2)
1303 #define ICE_PHY_TYPE_HIGH_100G_AUI2_AOC_ACC     BIT_ULL(3)
1304 #define ICE_PHY_TYPE_HIGH_100G_AUI2             BIT_ULL(4)
1305 #define ICE_PHY_TYPE_HIGH_MAX_INDEX             5
1306
1307 struct ice_aqc_get_phy_caps_data {
1308         __le64 phy_type_low; /* Use values from ICE_PHY_TYPE_LOW_* */
1309         __le64 phy_type_high; /* Use values from ICE_PHY_TYPE_HIGH_* */
1310         u8 caps;
1311 #define ICE_AQC_PHY_EN_TX_LINK_PAUSE                    BIT(0)
1312 #define ICE_AQC_PHY_EN_RX_LINK_PAUSE                    BIT(1)
1313 #define ICE_AQC_PHY_LOW_POWER_MODE                      BIT(2)
1314 #define ICE_AQC_PHY_EN_LINK                             BIT(3)
1315 #define ICE_AQC_PHY_AN_MODE                             BIT(4)
1316 #define ICE_AQC_PHY_EN_MOD_QUAL                         BIT(5)
1317 #define ICE_AQC_PHY_EN_LESM                             BIT(6)
1318 #define ICE_AQC_PHY_EN_AUTO_FEC                         BIT(7)
1319 #define ICE_AQC_PHY_CAPS_MASK                           MAKEMASK(0xff, 0)
1320         u8 low_power_ctrl_an;
1321 #define ICE_AQC_PHY_EN_D3COLD_LOW_POWER_AUTONEG         BIT(0)
1322 #define ICE_AQC_PHY_AN_EN_CLAUSE28                      BIT(1)
1323 #define ICE_AQC_PHY_AN_EN_CLAUSE73                      BIT(2)
1324 #define ICE_AQC_PHY_AN_EN_CLAUSE37                      BIT(3)
1325         __le16 eee_cap;
1326 #define ICE_AQC_PHY_EEE_EN_100BASE_TX                   BIT(0)
1327 #define ICE_AQC_PHY_EEE_EN_1000BASE_T                   BIT(1)
1328 #define ICE_AQC_PHY_EEE_EN_10GBASE_T                    BIT(2)
1329 #define ICE_AQC_PHY_EEE_EN_1000BASE_KX                  BIT(3)
1330 #define ICE_AQC_PHY_EEE_EN_10GBASE_KR                   BIT(4)
1331 #define ICE_AQC_PHY_EEE_EN_25GBASE_KR                   BIT(5)
1332 #define ICE_AQC_PHY_EEE_EN_40GBASE_KR4                  BIT(6)
1333 #define ICE_AQC_PHY_EEE_EN_50GBASE_KR2                  BIT(7)
1334 #define ICE_AQC_PHY_EEE_EN_50GBASE_KR_PAM4              BIT(8)
1335 #define ICE_AQC_PHY_EEE_EN_100GBASE_KR4                 BIT(9)
1336 #define ICE_AQC_PHY_EEE_EN_100GBASE_KR2_PAM4            BIT(10)
1337         __le16 eeer_value;
1338         u8 phy_id_oui[4]; /* PHY/Module ID connected on the port */
1339         u8 phy_fw_ver[8];
1340         u8 link_fec_options;
1341 #define ICE_AQC_PHY_FEC_10G_KR_40G_KR4_EN               BIT(0)
1342 #define ICE_AQC_PHY_FEC_10G_KR_40G_KR4_REQ              BIT(1)
1343 #define ICE_AQC_PHY_FEC_25G_RS_528_REQ                  BIT(2)
1344 #define ICE_AQC_PHY_FEC_25G_KR_REQ                      BIT(3)
1345 #define ICE_AQC_PHY_FEC_25G_RS_544_REQ                  BIT(4)
1346 #define ICE_AQC_PHY_FEC_25G_RS_CLAUSE91_EN              BIT(6)
1347 #define ICE_AQC_PHY_FEC_25G_KR_CLAUSE74_EN              BIT(7)
1348 #define ICE_AQC_PHY_FEC_MASK                            MAKEMASK(0xdf, 0)
1349         u8 module_compliance_enforcement;
1350 #define ICE_AQC_MOD_ENFORCE_STRICT_MODE                 BIT(0)
1351         u8 extended_compliance_code;
1352 #define ICE_MODULE_TYPE_TOTAL_BYTE                      3
1353         u8 module_type[ICE_MODULE_TYPE_TOTAL_BYTE];
1354 #define ICE_AQC_MOD_TYPE_BYTE0_SFP_PLUS                 0xA0
1355 #define ICE_AQC_MOD_TYPE_BYTE0_QSFP_PLUS                0x80
1356 #define ICE_AQC_MOD_TYPE_IDENT                          1
1357 #define ICE_AQC_MOD_TYPE_BYTE1_SFP_PLUS_CU_PASSIVE      BIT(0)
1358 #define ICE_AQC_MOD_TYPE_BYTE1_SFP_PLUS_CU_ACTIVE       BIT(1)
1359 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_SR              BIT(4)
1360 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_LR              BIT(5)
1361 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_LRM             BIT(6)
1362 #define ICE_AQC_MOD_TYPE_BYTE1_10G_BASE_ER              BIT(7)
1363 #define ICE_AQC_MOD_TYPE_BYTE2_SFP_PLUS                 0xA0
1364 #define ICE_AQC_MOD_TYPE_BYTE2_QSFP_PLUS                0x86
1365         u8 qualified_module_count;
1366         u8 rsvd2[7];    /* Bytes 47:41 reserved */
1367 #define ICE_AQC_QUAL_MOD_COUNT_MAX                      16
1368         struct {
1369                 u8 v_oui[3];
1370                 u8 rsvd3;
1371                 u8 v_part[16];
1372                 __le32 v_rev;
1373                 __le64 rsvd4;
1374         } qual_modules[ICE_AQC_QUAL_MOD_COUNT_MAX];
1375 };
1376
1377 /* Set PHY capabilities (direct 0x0601)
1378  * NOTE: This command must be followed by setup link and restart auto-neg
1379  */
1380 struct ice_aqc_set_phy_cfg {
1381         u8 lport_num;
1382         u8 reserved[7];
1383         __le32 addr_high;
1384         __le32 addr_low;
1385 };
1386
1387 /* Set PHY config command data structure */
1388 struct ice_aqc_set_phy_cfg_data {
1389         __le64 phy_type_low; /* Use values from ICE_PHY_TYPE_LOW_* */
1390         __le64 phy_type_high; /* Use values from ICE_PHY_TYPE_HIGH_* */
1391         u8 caps;
1392 #define ICE_AQ_PHY_ENA_VALID_MASK       MAKEMASK(0xef, 0)
1393 #define ICE_AQ_PHY_ENA_TX_PAUSE_ABILITY BIT(0)
1394 #define ICE_AQ_PHY_ENA_RX_PAUSE_ABILITY BIT(1)
1395 #define ICE_AQ_PHY_ENA_LOW_POWER        BIT(2)
1396 #define ICE_AQ_PHY_ENA_LINK             BIT(3)
1397 #define ICE_AQ_PHY_ENA_AUTO_LINK_UPDT   BIT(5)
1398 #define ICE_AQ_PHY_ENA_LESM             BIT(6)
1399 #define ICE_AQ_PHY_ENA_AUTO_FEC         BIT(7)
1400         u8 low_power_ctrl_an;
1401         __le16 eee_cap; /* Value from ice_aqc_get_phy_caps */
1402         __le16 eeer_value;
1403         u8 link_fec_opt; /* Use defines from ice_aqc_get_phy_caps */
1404         u8 module_compliance_enforcement;
1405 };
1406
1407 /* Set MAC Config command data structure (direct 0x0603) */
1408 struct ice_aqc_set_mac_cfg {
1409         __le16 max_frame_size;
1410         u8 params;
1411 #define ICE_AQ_SET_MAC_PACE_S           3
1412 #define ICE_AQ_SET_MAC_PACE_M           (0xF << ICE_AQ_SET_MAC_PACE_S)
1413 #define ICE_AQ_SET_MAC_PACE_TYPE_M      BIT(7)
1414 #define ICE_AQ_SET_MAC_PACE_TYPE_RATE   0
1415 #define ICE_AQ_SET_MAC_PACE_TYPE_FIXED  ICE_AQ_SET_MAC_PACE_TYPE_M
1416         u8 tx_tmr_priority;
1417         __le16 tx_tmr_value;
1418         __le16 fc_refresh_threshold;
1419         u8 drop_opts;
1420 #define ICE_AQ_SET_MAC_AUTO_DROP_MASK           BIT(0)
1421 #define ICE_AQ_SET_MAC_AUTO_DROP_NONE           0
1422 #define ICE_AQ_SET_MAC_AUTO_DROP_BLOCKING_PKTS  BIT(0)
1423         u8 reserved[7];
1424 };
1425
1426 /* Restart AN command data structure (direct 0x0605)
1427  * Also used for response, with only the lport_num field present.
1428  */
1429 struct ice_aqc_restart_an {
1430         u8 lport_num;
1431         u8 reserved;
1432         u8 cmd_flags;
1433 #define ICE_AQC_RESTART_AN_LINK_RESTART BIT(1)
1434 #define ICE_AQC_RESTART_AN_LINK_ENABLE  BIT(2)
1435         u8 reserved2[13];
1436 };
1437
1438 /* Get link status (indirect 0x0607), also used for Link Status Event */
1439 struct ice_aqc_get_link_status {
1440         u8 lport_num;
1441         u8 reserved;
1442         __le16 cmd_flags;
1443 #define ICE_AQ_LSE_M                    0x3
1444 #define ICE_AQ_LSE_NOP                  0x0
1445 #define ICE_AQ_LSE_DIS                  0x2
1446 #define ICE_AQ_LSE_ENA                  0x3
1447         /* only response uses this flag */
1448 #define ICE_AQ_LSE_IS_ENABLED           0x1
1449         __le32 reserved2;
1450         __le32 addr_high;
1451         __le32 addr_low;
1452 };
1453
1454 /* Get link status response data structure, also used for Link Status Event */
1455 struct ice_aqc_get_link_status_data {
1456         u8 topo_media_conflict;
1457 #define ICE_AQ_LINK_TOPO_CONFLICT       BIT(0)
1458 #define ICE_AQ_LINK_MEDIA_CONFLICT      BIT(1)
1459 #define ICE_AQ_LINK_TOPO_CORRUPT        BIT(2)
1460 #define ICE_AQ_LINK_TOPO_UNREACH_PRT    BIT(4)
1461 #define ICE_AQ_LINK_TOPO_UNDRUTIL_PRT   BIT(5)
1462 #define ICE_AQ_LINK_TOPO_UNDRUTIL_MEDIA BIT(6)
1463 #define ICE_AQ_LINK_TOPO_UNSUPP_MEDIA   BIT(7)
1464         u8 link_cfg_err;
1465 #define ICE_AQ_LINK_CFG_ERR             BIT(0)
1466 #define ICE_AQ_LINK_ACT_PORT_OPT_INVAL  BIT(2)
1467 #define ICE_AQ_LINK_FEAT_ID_OR_CONFIG_ID_INVAL  BIT(3)
1468 #define ICE_AQ_LINK_TOPO_CRITICAL_SDP_ERR       BIT(4)
1469 #define ICE_AQ_LINK_MODULE_POWER_UNSUPPORTED    BIT(5)
1470         u8 link_info;
1471 #define ICE_AQ_LINK_UP                  BIT(0)  /* Link Status */
1472 #define ICE_AQ_LINK_FAULT               BIT(1)
1473 #define ICE_AQ_LINK_FAULT_TX            BIT(2)
1474 #define ICE_AQ_LINK_FAULT_RX            BIT(3)
1475 #define ICE_AQ_LINK_FAULT_REMOTE        BIT(4)
1476 #define ICE_AQ_LINK_UP_PORT             BIT(5)  /* External Port Link Status */
1477 #define ICE_AQ_MEDIA_AVAILABLE          BIT(6)
1478 #define ICE_AQ_SIGNAL_DETECT            BIT(7)
1479         u8 an_info;
1480 #define ICE_AQ_AN_COMPLETED             BIT(0)
1481 #define ICE_AQ_LP_AN_ABILITY            BIT(1)
1482 #define ICE_AQ_PD_FAULT                 BIT(2)  /* Parallel Detection Fault */
1483 #define ICE_AQ_FEC_EN                   BIT(3)
1484 #define ICE_AQ_PHY_LOW_POWER            BIT(4)  /* Low Power State */
1485 #define ICE_AQ_LINK_PAUSE_TX            BIT(5)
1486 #define ICE_AQ_LINK_PAUSE_RX            BIT(6)
1487 #define ICE_AQ_QUALIFIED_MODULE         BIT(7)
1488         u8 ext_info;
1489 #define ICE_AQ_LINK_PHY_TEMP_ALARM      BIT(0)
1490 #define ICE_AQ_LINK_EXCESSIVE_ERRORS    BIT(1)  /* Excessive Link Errors */
1491         /* Port Tx Suspended */
1492 #define ICE_AQ_LINK_TX_S                2
1493 #define ICE_AQ_LINK_TX_M                (0x03 << ICE_AQ_LINK_TX_S)
1494 #define ICE_AQ_LINK_TX_ACTIVE           0
1495 #define ICE_AQ_LINK_TX_DRAINED          1
1496 #define ICE_AQ_LINK_TX_FLUSHED          3
1497         u8 lb_status;
1498 #define ICE_AQ_LINK_LB_PHY_LCL          BIT(0)
1499 #define ICE_AQ_LINK_LB_PHY_RMT          BIT(1)
1500 #define ICE_AQ_LINK_LB_MAC_LCL          BIT(2)
1501 #define ICE_AQ_LINK_LB_PHY_IDX_S        3
1502 #define ICE_AQ_LINK_LB_PHY_IDX_M        (0x7 << ICE_AQ_LB_PHY_IDX_S)
1503         __le16 max_frame_size;
1504         u8 cfg;
1505 #define ICE_AQ_LINK_25G_KR_FEC_EN       BIT(0)
1506 #define ICE_AQ_LINK_25G_RS_528_FEC_EN   BIT(1)
1507 #define ICE_AQ_LINK_25G_RS_544_FEC_EN   BIT(2)
1508 #define ICE_AQ_FEC_MASK                 MAKEMASK(0x7, 0)
1509         /* Pacing Config */
1510 #define ICE_AQ_CFG_PACING_S             3
1511 #define ICE_AQ_CFG_PACING_M             (0xF << ICE_AQ_CFG_PACING_S)
1512 #define ICE_AQ_CFG_PACING_TYPE_M        BIT(7)
1513 #define ICE_AQ_CFG_PACING_TYPE_AVG      0
1514 #define ICE_AQ_CFG_PACING_TYPE_FIXED    ICE_AQ_CFG_PACING_TYPE_M
1515         /* External Device Power Ability */
1516         u8 power_desc;
1517 #define ICE_AQ_PWR_CLASS_M              0x3F
1518 #define ICE_AQ_LINK_PWR_BASET_LOW_HIGH  0
1519 #define ICE_AQ_LINK_PWR_BASET_HIGH      1
1520 #define ICE_AQ_LINK_PWR_QSFP_CLASS_1    0
1521 #define ICE_AQ_LINK_PWR_QSFP_CLASS_2    1
1522 #define ICE_AQ_LINK_PWR_QSFP_CLASS_3    2
1523 #define ICE_AQ_LINK_PWR_QSFP_CLASS_4    3
1524         __le16 link_speed;
1525 #define ICE_AQ_LINK_SPEED_M             0x7FF
1526 #define ICE_AQ_LINK_SPEED_10MB          BIT(0)
1527 #define ICE_AQ_LINK_SPEED_100MB         BIT(1)
1528 #define ICE_AQ_LINK_SPEED_1000MB        BIT(2)
1529 #define ICE_AQ_LINK_SPEED_2500MB        BIT(3)
1530 #define ICE_AQ_LINK_SPEED_5GB           BIT(4)
1531 #define ICE_AQ_LINK_SPEED_10GB          BIT(5)
1532 #define ICE_AQ_LINK_SPEED_20GB          BIT(6)
1533 #define ICE_AQ_LINK_SPEED_25GB          BIT(7)
1534 #define ICE_AQ_LINK_SPEED_40GB          BIT(8)
1535 #define ICE_AQ_LINK_SPEED_50GB          BIT(9)
1536 #define ICE_AQ_LINK_SPEED_100GB         BIT(10)
1537 #define ICE_AQ_LINK_SPEED_UNKNOWN       BIT(15)
1538         __le32 reserved3; /* Aligns next field to 8-byte boundary */
1539         __le64 phy_type_low; /* Use values from ICE_PHY_TYPE_LOW_* */
1540         __le64 phy_type_high; /* Use values from ICE_PHY_TYPE_HIGH_* */
1541 };
1542
1543 /* Set event mask command (direct 0x0613) */
1544 struct ice_aqc_set_event_mask {
1545         u8      lport_num;
1546         u8      reserved[7];
1547         __le16  event_mask;
1548 #define ICE_AQ_LINK_EVENT_UPDOWN                BIT(1)
1549 #define ICE_AQ_LINK_EVENT_MEDIA_NA              BIT(2)
1550 #define ICE_AQ_LINK_EVENT_LINK_FAULT            BIT(3)
1551 #define ICE_AQ_LINK_EVENT_PHY_TEMP_ALARM        BIT(4)
1552 #define ICE_AQ_LINK_EVENT_EXCESSIVE_ERRORS      BIT(5)
1553 #define ICE_AQ_LINK_EVENT_SIGNAL_DETECT         BIT(6)
1554 #define ICE_AQ_LINK_EVENT_AN_COMPLETED          BIT(7)
1555 #define ICE_AQ_LINK_EVENT_MODULE_QUAL_FAIL      BIT(8)
1556 #define ICE_AQ_LINK_EVENT_PORT_TX_SUSPENDED     BIT(9)
1557 #define ICE_AQ_LINK_EVENT_TOPO_CONFLICT         BIT(10)
1558 #define ICE_AQ_LINK_EVENT_MEDIA_CONFLICT        BIT(11)
1559         u8      reserved1[6];
1560 };
1561
1562 /* Set MAC Loopback command (direct 0x0620) */
1563 struct ice_aqc_set_mac_lb {
1564         u8 lb_mode;
1565 #define ICE_AQ_MAC_LB_EN                BIT(0)
1566 #define ICE_AQ_MAC_LB_OSC_CLK           BIT(1)
1567         u8 reserved[15];
1568 };
1569
1570 struct ice_aqc_link_topo_addr {
1571         u8 lport_num;
1572         u8 lport_num_valid;
1573 #define ICE_AQC_LINK_TOPO_PORT_NUM_VALID        BIT(0)
1574         u8 node_type_ctx;
1575 #define ICE_AQC_LINK_TOPO_NODE_TYPE_S           0
1576 #define ICE_AQC_LINK_TOPO_NODE_TYPE_M   (0xF << ICE_AQC_LINK_TOPO_NODE_TYPE_S)
1577 #define ICE_AQC_LINK_TOPO_NODE_TYPE_PHY         0
1578 #define ICE_AQC_LINK_TOPO_NODE_TYPE_GPIO_CTRL   1
1579 #define ICE_AQC_LINK_TOPO_NODE_TYPE_MUX_CTRL    2
1580 #define ICE_AQC_LINK_TOPO_NODE_TYPE_LED_CTRL    3
1581 #define ICE_AQC_LINK_TOPO_NODE_TYPE_LED         4
1582 #define ICE_AQC_LINK_TOPO_NODE_TYPE_THERMAL     5
1583 #define ICE_AQC_LINK_TOPO_NODE_TYPE_CAGE        6
1584 #define ICE_AQC_LINK_TOPO_NODE_TYPE_MEZZ        7
1585 #define ICE_AQC_LINK_TOPO_NODE_TYPE_ID_EEPROM   8
1586 #define ICE_AQC_LINK_TOPO_NODE_CTX_S            4
1587 #define ICE_AQC_LINK_TOPO_NODE_CTX_M            \
1588                                 (0xF << ICE_AQC_LINK_TOPO_NODE_CTX_S)
1589 #define ICE_AQC_LINK_TOPO_NODE_CTX_GLOBAL       0
1590 #define ICE_AQC_LINK_TOPO_NODE_CTX_BOARD        1
1591 #define ICE_AQC_LINK_TOPO_NODE_CTX_PORT         2
1592 #define ICE_AQC_LINK_TOPO_NODE_CTX_NODE         3
1593 #define ICE_AQC_LINK_TOPO_NODE_CTX_PROVIDED     4
1594 #define ICE_AQC_LINK_TOPO_NODE_CTX_OVERRIDE     5
1595         u8 index;
1596         __le16 handle;
1597 #define ICE_AQC_LINK_TOPO_HANDLE_S      0
1598 #define ICE_AQC_LINK_TOPO_HANDLE_M      (0x3FF << ICE_AQC_LINK_TOPO_HANDLE_S)
1599 /* Used to decode the handle field */
1600 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_M     BIT(9)
1601 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_LOM   BIT(9)
1602 #define ICE_AQC_LINK_TOPO_HANDLE_BRD_TYPE_MEZZ  0
1603 #define ICE_AQC_LINK_TOPO_HANDLE_NODE_S         0
1604 /* In case of a Mezzanine type */
1605 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_NODE_M    \
1606                                 (0x3F << ICE_AQC_LINK_TOPO_HANDLE_NODE_S)
1607 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_S 6
1608 #define ICE_AQC_LINK_TOPO_HANDLE_MEZZ_M (0x7 << ICE_AQC_LINK_TOPO_HANDLE_MEZZ_S)
1609 /* In case of a LOM type */
1610 #define ICE_AQC_LINK_TOPO_HANDLE_LOM_NODE_M     \
1611                                 (0x1FF << ICE_AQC_LINK_TOPO_HANDLE_NODE_S)
1612 };
1613
1614 /* Get Link Topology Handle (direct, 0x06E0) */
1615 struct ice_aqc_get_link_topo {
1616         struct ice_aqc_link_topo_addr addr;
1617         u8 node_part_num;
1618         u8 rsvd[9];
1619 };
1620
1621 /* Set Port Identification LED (direct, 0x06E9) */
1622 struct ice_aqc_set_port_id_led {
1623         u8 lport_num;
1624         u8 lport_num_valid;
1625 #define ICE_AQC_PORT_ID_PORT_NUM_VALID  BIT(0)
1626         u8 ident_mode;
1627 #define ICE_AQC_PORT_IDENT_LED_BLINK    BIT(0)
1628 #define ICE_AQC_PORT_IDENT_LED_ORIG     0
1629         u8 rsvd[13];
1630 };
1631
1632 /* Read/Write SFF EEPROM command (indirect 0x06EE) */
1633 struct ice_aqc_sff_eeprom {
1634         u8 lport_num;
1635         u8 lport_num_valid;
1636 #define ICE_AQC_SFF_PORT_NUM_VALID      BIT(0)
1637         __le16 i2c_bus_addr;
1638 #define ICE_AQC_SFF_I2CBUS_7BIT_M       0x7F
1639 #define ICE_AQC_SFF_I2CBUS_10BIT_M      0x3FF
1640 #define ICE_AQC_SFF_I2CBUS_TYPE_M       BIT(10)
1641 #define ICE_AQC_SFF_I2CBUS_TYPE_7BIT    0
1642 #define ICE_AQC_SFF_I2CBUS_TYPE_10BIT   ICE_AQC_SFF_I2CBUS_TYPE_M
1643 #define ICE_AQC_SFF_SET_EEPROM_PAGE_S   11
1644 #define ICE_AQC_SFF_SET_EEPROM_PAGE_M   (0x3 << ICE_AQC_SFF_SET_EEPROM_PAGE_S)
1645 #define ICE_AQC_SFF_NO_PAGE_CHANGE      0
1646 #define ICE_AQC_SFF_SET_23_ON_MISMATCH  1
1647 #define ICE_AQC_SFF_SET_22_ON_MISMATCH  2
1648 #define ICE_AQC_SFF_IS_WRITE            BIT(15)
1649         __le16 i2c_mem_addr;
1650         __le16 eeprom_page;
1651 #define  ICE_AQC_SFF_EEPROM_BANK_S 0
1652 #define  ICE_AQC_SFF_EEPROM_BANK_M (0xFF << ICE_AQC_SFF_EEPROM_BANK_S)
1653 #define  ICE_AQC_SFF_EEPROM_PAGE_S 8
1654 #define  ICE_AQC_SFF_EEPROM_PAGE_M (0xFF << ICE_AQC_SFF_EEPROM_PAGE_S)
1655         __le32 addr_high;
1656         __le32 addr_low;
1657 };
1658
1659 /* SW Set GPIO command (indirect 0x6EF)
1660  * SW Get GPIO command (indirect 0x6F0)
1661  */
1662 struct ice_aqc_sw_gpio {
1663         __le16 gpio_ctrl_handle;
1664 #define ICE_AQC_SW_GPIO_CONTROLLER_HANDLE_S     0
1665 #define ICE_AQC_SW_GPIO_CONTROLLER_HANDLE_M     (0x3FF << ICE_AQC_SW_GPIO_CONTROLLER_HANDLE_S)
1666         u8 gpio_num;
1667 #define ICE_AQC_SW_GPIO_NUMBER_S        0
1668 #define ICE_AQC_SW_GPIO_NUMBER_M        (0x1F << ICE_AQC_SW_GPIO_NUMBER_S)
1669         u8 gpio_params;
1670 #define ICE_AQC_SW_GPIO_PARAMS_DIRECTION    BIT(1)
1671 #define ICE_AQC_SW_GPIO_PARAMS_VALUE        BIT(0)
1672         u8 rsvd[12];
1673 };
1674
1675 /* NVM Read command (indirect 0x0701)
1676  * NVM Erase commands (direct 0x0702)
1677  * NVM Write commands (indirect 0x0703)
1678  * NVM Write Activate commands (direct 0x0707)
1679  * NVM Shadow RAM Dump commands (direct 0x0707)
1680  */
1681 struct ice_aqc_nvm {
1682 #define ICE_AQC_NVM_MAX_OFFSET          0xFFFFFF
1683         __le16 offset_low;
1684         u8 offset_high; /* For Write Activate offset_high is used as flags2 */
1685         u8 cmd_flags;
1686 #define ICE_AQC_NVM_LAST_CMD            BIT(0)
1687 #define ICE_AQC_NVM_PCIR_REQ            BIT(0)  /* Used by NVM Write reply */
1688 #define ICE_AQC_NVM_PRESERVATION_S      1 /* Used by NVM Write Activate only */
1689 #define ICE_AQC_NVM_PRESERVATION_M      (3 << ICE_AQC_NVM_PRESERVATION_S)
1690 #define ICE_AQC_NVM_NO_PRESERVATION     (0 << ICE_AQC_NVM_PRESERVATION_S)
1691 #define ICE_AQC_NVM_PRESERVE_ALL        BIT(1)
1692 #define ICE_AQC_NVM_FACTORY_DEFAULT     (2 << ICE_AQC_NVM_PRESERVATION_S)
1693 #define ICE_AQC_NVM_PRESERVE_SELECTED   (3 << ICE_AQC_NVM_PRESERVATION_S)
1694 #define ICE_AQC_NVM_ACTIV_SEL_NVM       BIT(3) /* Write Activate/SR Dump only */
1695 #define ICE_AQC_NVM_ACTIV_SEL_OROM      BIT(4)
1696 #define ICE_AQC_NVM_ACTIV_SEL_NETLIST   BIT(5)
1697 #define ICE_AQC_NVM_SPECIAL_UPDATE      BIT(6)
1698 #define ICE_AQC_NVM_REVERT_LAST_ACTIV   BIT(6) /* Write Activate only */
1699 #define ICE_AQC_NVM_ACTIV_SEL_MASK      MAKEMASK(0x7, 3)
1700 #define ICE_AQC_NVM_FLASH_ONLY          BIT(7)
1701 #define ICE_AQC_NVM_POR_FLAG    0       /* Used by NVM Write completion on ARQ */
1702 #define ICE_AQC_NVM_PERST_FLAG  1
1703 #define ICE_AQC_NVM_EMPR_FLAG   2
1704         __le16 module_typeid;
1705         __le16 length;
1706 #define ICE_AQC_NVM_ERASE_LEN   0xFFFF
1707         __le32 addr_high;
1708         __le32 addr_low;
1709 };
1710
1711 /* NVM Module_Type ID, needed offset and read_len for struct ice_aqc_nvm. */
1712 #define ICE_AQC_NVM_SECTOR_UNIT                 4096 /* In Bytes */
1713 #define ICE_AQC_NVM_WORD_UNIT                   2 /* In Bytes */
1714
1715 #define ICE_AQC_NVM_START_POINT                 0
1716 #define ICE_AQC_NVM_EMP_SR_PTR_OFFSET           0x90
1717 #define ICE_AQC_NVM_EMP_SR_PTR_RD_LEN           2 /* In Bytes */
1718 #define ICE_AQC_NVM_EMP_SR_PTR_M                MAKEMASK(0x7FFF, 0)
1719 #define ICE_AQC_NVM_EMP_SR_PTR_TYPE_S           15
1720 #define ICE_AQC_NVM_EMP_SR_PTR_TYPE_M           BIT(15)
1721 #define ICE_AQC_NVM_EMP_SR_PTR_TYPE_SECTOR      1
1722
1723 #define ICE_AQC_NVM_LLDP_CFG_PTR_OFFSET         0x46
1724 #define ICE_AQC_NVM_LLDP_CFG_HEADER_LEN         2 /* In Bytes */
1725 #define ICE_AQC_NVM_LLDP_CFG_PTR_RD_LEN         2 /* In Bytes */
1726
1727 #define ICE_AQC_NVM_LLDP_PRESERVED_MOD_ID       0x129
1728 #define ICE_AQC_NVM_CUR_LLDP_PERSIST_RD_OFFSET  2 /* In Bytes */
1729 #define ICE_AQC_NVM_LLDP_STATUS_M               MAKEMASK(0xF, 0)
1730 #define ICE_AQC_NVM_LLDP_STATUS_M_LEN           4 /* In Bits */
1731 #define ICE_AQC_NVM_LLDP_STATUS_RD_LEN          4 /* In Bytes */
1732
1733 /* Used for 0x0704 as well as for 0x0705 commands */
1734 struct ice_aqc_nvm_cfg {
1735         u8      cmd_flags;
1736 #define ICE_AQC_ANVM_MULTIPLE_ELEMS     BIT(0)
1737 #define ICE_AQC_ANVM_IMMEDIATE_FIELD    BIT(1)
1738 #define ICE_AQC_ANVM_NEW_CFG            BIT(2)
1739         u8      reserved;
1740         __le16 count;
1741         __le16 id;
1742         u8 reserved1[2];
1743         __le32 addr_high;
1744         __le32 addr_low;
1745 };
1746
1747 struct ice_aqc_nvm_cfg_data {
1748         __le16 field_id;
1749         __le16 field_options;
1750         __le16 field_value;
1751 };
1752
1753 /* NVM Checksum Command (direct, 0x0706) */
1754 struct ice_aqc_nvm_checksum {
1755         u8 flags;
1756 #define ICE_AQC_NVM_CHECKSUM_VERIFY     BIT(0)
1757 #define ICE_AQC_NVM_CHECKSUM_RECALC     BIT(1)
1758         u8 rsvd;
1759         __le16 checksum; /* Used only by response */
1760 #define ICE_AQC_NVM_CHECKSUM_CORRECT    0xBABA
1761         u8 rsvd2[12];
1762 };
1763
1764 /* Get LLDP MIB (indirect 0x0A00)
1765  * Note: This is also used by the LLDP MIB Change Event (0x0A01)
1766  * as the format is the same.
1767  */
1768 struct ice_aqc_lldp_get_mib {
1769         u8 type;
1770 #define ICE_AQ_LLDP_MIB_TYPE_S                  0
1771 #define ICE_AQ_LLDP_MIB_TYPE_M                  (0x3 << ICE_AQ_LLDP_MIB_TYPE_S)
1772 #define ICE_AQ_LLDP_MIB_LOCAL                   0
1773 #define ICE_AQ_LLDP_MIB_REMOTE                  1
1774 #define ICE_AQ_LLDP_MIB_LOCAL_AND_REMOTE        2
1775 #define ICE_AQ_LLDP_BRID_TYPE_S                 2
1776 #define ICE_AQ_LLDP_BRID_TYPE_M                 (0x3 << ICE_AQ_LLDP_BRID_TYPE_S)
1777 #define ICE_AQ_LLDP_BRID_TYPE_NEAREST_BRID      0
1778 #define ICE_AQ_LLDP_BRID_TYPE_NON_TPMR          1
1779 /* Tx pause flags in the 0xA01 event use ICE_AQ_LLDP_TX_* */
1780 #define ICE_AQ_LLDP_TX_S                        0x4
1781 #define ICE_AQ_LLDP_TX_M                        (0x03 << ICE_AQ_LLDP_TX_S)
1782 #define ICE_AQ_LLDP_TX_ACTIVE                   0
1783 #define ICE_AQ_LLDP_TX_SUSPENDED                1
1784 #define ICE_AQ_LLDP_TX_FLUSHED                  3
1785 /* The following bytes are reserved for the Get LLDP MIB command (0x0A00)
1786  * and in the LLDP MIB Change Event (0x0A01). They are valid for the
1787  * Get LLDP MIB (0x0A00) response only.
1788  */
1789         u8 reserved1;
1790         __le16 local_len;
1791         __le16 remote_len;
1792         u8 reserved2[2];
1793         __le32 addr_high;
1794         __le32 addr_low;
1795 };
1796
1797 /* Configure LLDP MIB Change Event (direct 0x0A01) */
1798 /* For MIB Change Event use ice_aqc_lldp_get_mib structure above */
1799 struct ice_aqc_lldp_set_mib_change {
1800         u8 command;
1801 #define ICE_AQ_LLDP_MIB_UPDATE_ENABLE           0x0
1802 #define ICE_AQ_LLDP_MIB_UPDATE_DIS              0x1
1803         u8 reserved[15];
1804 };
1805
1806 /* Add LLDP TLV (indirect 0x0A02)
1807  * Delete LLDP TLV (indirect 0x0A04)
1808  */
1809 struct ice_aqc_lldp_add_delete_tlv {
1810         u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
1811         u8 reserved1[1];
1812         __le16 len;
1813         u8 reserved2[4];
1814         __le32 addr_high;
1815         __le32 addr_low;
1816 };
1817
1818 /* Update LLDP TLV (indirect 0x0A03) */
1819 struct ice_aqc_lldp_update_tlv {
1820         u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
1821         u8 reserved;
1822         __le16 old_len;
1823         __le16 new_offset;
1824         __le16 new_len;
1825         __le32 addr_high;
1826         __le32 addr_low;
1827 };
1828
1829 /* Stop LLDP (direct 0x0A05) */
1830 struct ice_aqc_lldp_stop {
1831         u8 command;
1832 #define ICE_AQ_LLDP_AGENT_STATE_MASK    BIT(0)
1833 #define ICE_AQ_LLDP_AGENT_STOP          0x0
1834 #define ICE_AQ_LLDP_AGENT_SHUTDOWN      ICE_AQ_LLDP_AGENT_STATE_MASK
1835 #define ICE_AQ_LLDP_AGENT_PERSIST_DIS   BIT(1)
1836         u8 reserved[15];
1837 };
1838
1839 /* Start LLDP (direct 0x0A06) */
1840 struct ice_aqc_lldp_start {
1841         u8 command;
1842 #define ICE_AQ_LLDP_AGENT_START         BIT(0)
1843 #define ICE_AQ_LLDP_AGENT_PERSIST_ENA   BIT(1)
1844         u8 reserved[15];
1845 };
1846
1847 /* Get CEE DCBX Oper Config (0x0A07)
1848  * The command uses the generic descriptor struct and
1849  * returns the struct below as an indirect response.
1850  */
1851 struct ice_aqc_get_cee_dcb_cfg_resp {
1852         u8 oper_num_tc;
1853         u8 oper_prio_tc[4];
1854         u8 oper_tc_bw[8];
1855         u8 oper_pfc_en;
1856         __le16 oper_app_prio;
1857 #define ICE_AQC_CEE_APP_FCOE_S          0
1858 #define ICE_AQC_CEE_APP_FCOE_M          (0x7 << ICE_AQC_CEE_APP_FCOE_S)
1859 #define ICE_AQC_CEE_APP_ISCSI_S         3
1860 #define ICE_AQC_CEE_APP_ISCSI_M         (0x7 << ICE_AQC_CEE_APP_ISCSI_S)
1861 #define ICE_AQC_CEE_APP_FIP_S           8
1862 #define ICE_AQC_CEE_APP_FIP_M           (0x7 << ICE_AQC_CEE_APP_FIP_S)
1863         __le32 tlv_status;
1864 #define ICE_AQC_CEE_PG_STATUS_S         0
1865 #define ICE_AQC_CEE_PG_STATUS_M         (0x7 << ICE_AQC_CEE_PG_STATUS_S)
1866 #define ICE_AQC_CEE_PFC_STATUS_S        3
1867 #define ICE_AQC_CEE_PFC_STATUS_M        (0x7 << ICE_AQC_CEE_PFC_STATUS_S)
1868 #define ICE_AQC_CEE_FCOE_STATUS_S       8
1869 #define ICE_AQC_CEE_FCOE_STATUS_M       (0x7 << ICE_AQC_CEE_FCOE_STATUS_S)
1870 #define ICE_AQC_CEE_ISCSI_STATUS_S      11
1871 #define ICE_AQC_CEE_ISCSI_STATUS_M      (0x7 << ICE_AQC_CEE_ISCSI_STATUS_S)
1872 #define ICE_AQC_CEE_FIP_STATUS_S        16
1873 #define ICE_AQC_CEE_FIP_STATUS_M        (0x7 << ICE_AQC_CEE_FIP_STATUS_S)
1874         u8 reserved[12];
1875 };
1876
1877 /* Set Local LLDP MIB (indirect 0x0A08)
1878  * Used to replace the local MIB of a given LLDP agent. e.g. DCBX
1879  */
1880 struct ice_aqc_lldp_set_local_mib {
1881         u8 type;
1882 #define SET_LOCAL_MIB_TYPE_DCBX_M               BIT(0)
1883 #define SET_LOCAL_MIB_TYPE_LOCAL_MIB            0
1884 #define SET_LOCAL_MIB_TYPE_CEE_M                BIT(1)
1885 #define SET_LOCAL_MIB_TYPE_CEE_WILLING          0
1886 #define SET_LOCAL_MIB_TYPE_CEE_NON_WILLING      SET_LOCAL_MIB_TYPE_CEE_M
1887         u8 reserved0;
1888         __le16 length;
1889         u8 reserved1[4];
1890         __le32 addr_high;
1891         __le32 addr_low;
1892 };
1893
1894 struct ice_aqc_lldp_set_local_mib_resp {
1895         u8 status;
1896 #define SET_LOCAL_MIB_RESP_EVENT_M              BIT(0)
1897 #define SET_LOCAL_MIB_RESP_MIB_CHANGE_SILENT    0
1898 #define SET_LOCAL_MIB_RESP_MIB_CHANGE_EVENT     SET_LOCAL_MIB_RESP_EVENT_M
1899         u8 reserved[15];
1900 };
1901
1902 /* Stop/Start LLDP Agent (direct 0x0A09)
1903  * Used for stopping/starting specific LLDP agent. e.g. DCBX.
1904  * The same structure is used for the response, with the command field
1905  * being used as the status field.
1906  */
1907 struct ice_aqc_lldp_stop_start_specific_agent {
1908         u8 command;
1909 #define ICE_AQC_START_STOP_AGENT_M              BIT(0)
1910 #define ICE_AQC_START_STOP_AGENT_STOP_DCBX      0
1911 #define ICE_AQC_START_STOP_AGENT_START_DCBX     ICE_AQC_START_STOP_AGENT_M
1912         u8 reserved[15];
1913 };
1914
1915 /* LLDP Filter Control (direct 0x0A0A) */
1916 struct ice_aqc_lldp_filter_ctrl {
1917         u8 cmd_flags;
1918 #define ICE_AQC_LLDP_FILTER_ACTION_M            MAKEMASK(3, 0)
1919 #define ICE_AQC_LLDP_FILTER_ACTION_ADD          0x0
1920 #define ICE_AQC_LLDP_FILTER_ACTION_DELETE       0x1
1921 #define ICE_AQC_LLDP_FILTER_ACTION_UPDATE       0x2
1922         u8 reserved1;
1923         __le16 vsi_num;
1924         u8 reserved2[12];
1925 };
1926
1927 /* Get/Set RSS key (indirect 0x0B04/0x0B02) */
1928 struct ice_aqc_get_set_rss_key {
1929 #define ICE_AQC_GSET_RSS_KEY_VSI_VALID  BIT(15)
1930 #define ICE_AQC_GSET_RSS_KEY_VSI_ID_S   0
1931 #define ICE_AQC_GSET_RSS_KEY_VSI_ID_M   (0x3FF << ICE_AQC_GSET_RSS_KEY_VSI_ID_S)
1932         __le16 vsi_id;
1933         u8 reserved[6];
1934         __le32 addr_high;
1935         __le32 addr_low;
1936 };
1937
1938 #define ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE       0x28
1939 #define ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE      0xC
1940 #define ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE \
1941                                 (ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE + \
1942                                  ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE)
1943
1944 /**
1945  * struct ice_aqc_get_set_rss_keys - Get/Set RSS hash key command buffer
1946  * @standard_rss_key: 40 most significant bytes of hash key
1947  * @extended_hash_key: 12 least significant bytes of hash key
1948  *
1949  * Set/Get 40 byte hash key using standard_rss_key field, and set
1950  * extended_hash_key field to zero. Set/Get 52 byte hash key using
1951  * standard_rss_key field for 40 most significant bytes and the
1952  * extended_hash_key field for the 12 least significant bytes of hash key.
1953  */
1954 struct ice_aqc_get_set_rss_keys {
1955         u8 standard_rss_key[ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE];
1956         u8 extended_hash_key[ICE_AQC_GET_SET_RSS_KEY_DATA_HASH_KEY_SIZE];
1957 };
1958
1959 /* Get/Set RSS LUT (indirect 0x0B05/0x0B03) */
1960 struct ice_aqc_get_set_rss_lut {
1961 #define ICE_AQC_GSET_RSS_LUT_VSI_VALID  BIT(15)
1962 #define ICE_AQC_GSET_RSS_LUT_VSI_ID_S   0
1963 #define ICE_AQC_GSET_RSS_LUT_VSI_ID_M   (0x3FF << ICE_AQC_GSET_RSS_LUT_VSI_ID_S)
1964         __le16 vsi_id;
1965 #define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_S       0
1966 #define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_M       \
1967                                 (0x3 << ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_S)
1968
1969 #define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_VSI      0
1970 #define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF       1
1971 #define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_GLOBAL   2
1972
1973 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_S        2
1974 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_M        \
1975                                 (0x3 << ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_S)
1976
1977 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_128      128
1978 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_128_FLAG 0
1979 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_512      512
1980 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_512_FLAG 1
1981 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_2K       2048
1982 #define ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_2K_FLAG  2
1983
1984 #define ICE_AQC_GSET_RSS_LUT_GLOBAL_IDX_S        4
1985 #define ICE_AQC_GSET_RSS_LUT_GLOBAL_IDX_M        \
1986                                 (0xF << ICE_AQC_GSET_RSS_LUT_GLOBAL_IDX_S)
1987
1988         __le16 flags;
1989         __le32 reserved;
1990         __le32 addr_high;
1991         __le32 addr_low;
1992 };
1993
1994 /* Clear FD Table Command (direct, 0x0B06) */
1995 struct ice_aqc_clear_fd_table {
1996         u8 clear_type;
1997 #define CL_FD_VM_VF_TYPE_VSI_IDX        1
1998 #define CL_FD_VM_VF_TYPE_PF_IDX         2
1999         u8 rsvd;
2000         __le16 vsi_index;
2001         u8 reserved[12];
2002 };
2003
2004 /* Allocate ACL table (indirect 0x0C10) */
2005 #define ICE_AQC_ACL_KEY_WIDTH           40
2006 #define ICE_AQC_ACL_KEY_WIDTH_BYTES     5
2007 #define ICE_AQC_ACL_TCAM_DEPTH          512
2008 #define ICE_ACL_ENTRY_ALLOC_UNIT        64
2009 #define ICE_AQC_MAX_CONCURRENT_ACL_TBL  15
2010 #define ICE_AQC_MAX_ACTION_MEMORIES     20
2011 #define ICE_AQC_MAX_ACTION_ENTRIES      512
2012 #define ICE_AQC_ACL_SLICES              16
2013 #define ICE_AQC_ALLOC_ID_LESS_THAN_4K   0x1000
2014 /* The ACL block supports up to 8 actions per a single output. */
2015 #define ICE_AQC_TBL_MAX_ACTION_PAIRS    4
2016
2017 #define ICE_AQC_MAX_TCAM_ALLOC_UNITS    (ICE_AQC_ACL_TCAM_DEPTH / \
2018                                          ICE_ACL_ENTRY_ALLOC_UNIT)
2019 #define ICE_AQC_ACL_ALLOC_UNITS         (ICE_AQC_ACL_SLICES * \
2020                                          ICE_AQC_MAX_TCAM_ALLOC_UNITS)
2021
2022 struct ice_aqc_acl_alloc_table {
2023         __le16 table_width;
2024         __le16 table_depth;
2025         u8 act_pairs_per_entry;
2026         /* For non-concurrent table allocation, this field needs
2027          * to be set to zero(0) otherwise it shall specify the
2028          * amount of concurrent tables whose AllocIDs are
2029          * specified in buffer. Thus the newly allocated table
2030          * is concurrent with table IDs specified in AllocIDs.
2031          */
2032 #define ICE_AQC_ACL_ALLOC_TABLE_TYPE_NONCONCURR 0
2033         u8 table_type;
2034         __le16 reserved;
2035         __le32 addr_high;
2036         __le32 addr_low;
2037 };
2038
2039 /* Allocate ACL table command buffer format */
2040 struct ice_aqc_acl_alloc_table_data {
2041         /* Dependent table AllocIDs. Each word in this 15 word array specifies
2042          * a dependent table AllocID according to the amount specified in the
2043          * "table_type" field. All unused words shall be set to 0xFFFF
2044          */
2045 #define ICE_AQC_CONCURR_ID_INVALID      0xffff
2046         __le16 alloc_ids[ICE_AQC_MAX_CONCURRENT_ACL_TBL];
2047 };
2048
2049 /* Deallocate ACL table (indirect 0x0C11)
2050  * Allocate ACL action-pair (indirect 0x0C12)
2051  * Deallocate ACL action-pair (indirect 0x0C13)
2052  */
2053
2054 /* Following structure is common and used in case of deallocation
2055  * of ACL table and action-pair
2056  */
2057 struct ice_aqc_acl_tbl_actpair {
2058         /* Alloc ID of the table being released */
2059         __le16 alloc_id;
2060         u8 reserved[6];
2061         __le32 addr_high;
2062         __le32 addr_low;
2063 };
2064
2065 /* This response structure is same in case of alloc/dealloc table,
2066  * alloc/dealloc action-pair
2067  */
2068 struct ice_aqc_acl_generic {
2069         /* if alloc_id is below 0x1000 then alllocation failed due to
2070          * unavailable resources, else this is set by FW to identify
2071          * table allocation
2072          */
2073         __le16 alloc_id;
2074
2075         union {
2076                 /* to be used only in case of alloc/dealloc table */
2077                 struct {
2078                         /* Index of the first TCAM block, otherwise set to 0xFF
2079                          * for a failed allocation
2080                          */
2081                         u8 first_tcam;
2082                         /* Index of the last TCAM block. This index shall be
2083                          * set to the value of first_tcam for single TCAM block
2084                          * allocation, otherwise set to 0xFF for a failed
2085                          * allocation
2086                          */
2087                         u8 last_tcam;
2088                 } table;
2089                 /* reserved in case of alloc/dealloc action-pair */
2090                 struct {
2091                         __le16 reserved;
2092                 } act_pair;
2093         } ops;
2094
2095         /* index of first entry (in both TCAM and action memories),
2096          * otherwise set to 0xFF for a failed allocation
2097          */
2098         __le16 first_entry;
2099         /* index of last entry (in both TCAM and action memories),
2100          * otherwise set to 0xFF for a failed allocation
2101          */
2102         __le16 last_entry;
2103
2104         /* Each act_mem element specifies the order of the memory
2105          * otherwise 0xFF
2106          */
2107         u8 act_mem[ICE_AQC_MAX_ACTION_MEMORIES];
2108 };
2109
2110 /* Allocate ACL scenario (indirect 0x0C14). This command doesn't have separate
2111  * response buffer since original command buffer gets updated with
2112  * 'scen_id' in case of success
2113  */
2114 struct ice_aqc_acl_alloc_scen {
2115         union {
2116                 struct {
2117                         u8 reserved[8];
2118                 } cmd;
2119                 struct {
2120                         __le16 scen_id;
2121                         u8 reserved[6];
2122                 } resp;
2123         } ops;
2124         __le32 addr_high;
2125         __le32 addr_low;
2126 };
2127
2128 /* De-allocate ACL scenario (direct 0x0C15). This command doesn't need
2129  * separate response buffer since nothing to be returned as a response
2130  * except status.
2131  */
2132 struct ice_aqc_acl_dealloc_scen {
2133         __le16 scen_id;
2134         u8 reserved[14];
2135 };
2136
2137 /* Update ACL scenario (direct 0x0C1B)
2138  * Query ACL scenario (direct 0x0C23)
2139  */
2140 struct ice_aqc_acl_update_query_scen {
2141         __le16 scen_id;
2142         u8 reserved[6];
2143         __le32 addr_high;
2144         __le32 addr_low;
2145 };
2146
2147 /* Input buffer format in case allocate/update ACL scenario and same format
2148  * is used for response buffer in case of query ACL scenario.
2149  * NOTE: de-allocate ACL scenario is direct command and doesn't require
2150  * "buffer", hence no buffer format.
2151  */
2152 struct ice_aqc_acl_scen {
2153         struct {
2154                 /* Byte [x] selection for the TCAM key. This value must be
2155                  * set to 0x0 for unusued TCAM.
2156                  * Only Bit 6..0 is used in each byte and MSB is reserved
2157                  */
2158 #define ICE_AQC_ACL_ALLOC_SCE_SELECT_M          0x7F
2159 #define ICE_AQC_ACL_BYTE_SEL_BASE               0x20
2160 #define ICE_AQC_ACL_BYTE_SEL_BASE_PID           0x3E
2161 #define ICE_AQC_ACL_BYTE_SEL_BASE_PKT_DIR       ICE_AQC_ACL_BYTE_SEL_BASE
2162 #define ICE_AQC_ACL_BYTE_SEL_BASE_RNG_CHK       0x3F
2163                 u8 tcam_select[5];
2164                 /* TCAM Block entry masking. This value should be set to 0x0 for
2165                  * unused TCAM
2166                  */
2167                 u8 chnk_msk;
2168                 /* Bit 0 : masks TCAM entries 0-63
2169                  * Bit 1 : masks TCAM entries 64-127
2170                  * Bit 2 to 7 : follow the pattern of bit 0 and 1
2171                  */
2172 #define ICE_AQC_ACL_ALLOC_SCE_START_CMP         BIT(0)
2173 #define ICE_AQC_ACL_ALLOC_SCE_START_SET         BIT(1)
2174                 u8 start_cmp_set;
2175
2176         } tcam_cfg[ICE_AQC_ACL_SLICES];
2177
2178         /* Each byte, Bit 6..0: Action memory association to a TCAM block,
2179          * otherwise it shall be set to 0x0 for disabled memory action.
2180          * Bit 7 : Action memory enable for this scenario
2181          */
2182 #define ICE_AQC_ACL_SCE_ACT_MEM_TCAM_ASSOC_M    0x7F
2183 #define ICE_AQC_ACL_SCE_ACT_MEM_EN              BIT(7)
2184         u8 act_mem_cfg[ICE_AQC_MAX_ACTION_MEMORIES];
2185 };
2186
2187 /* Allocate ACL counters (indirect 0x0C16) */
2188 struct ice_aqc_acl_alloc_counters {
2189         /* Amount of contiguous counters requested. Min value is 1 and
2190          * max value is 255
2191          */
2192 #define ICE_AQC_ACL_ALLOC_CNT_MIN_AMT   0x1
2193 #define ICE_AQC_ACL_ALLOC_CNT_MAX_AMT   0xFF
2194         u8 counter_amount;
2195
2196         /* Counter type: 'single counter' which can be configured to count
2197          * either bytes or packets
2198          */
2199 #define ICE_AQC_ACL_CNT_TYPE_SINGLE     0x0
2200
2201         /* Counter type: 'counter pair' which counts number of bytes and number
2202          * of packets.
2203          */
2204 #define ICE_AQC_ACL_CNT_TYPE_DUAL       0x1
2205         /* requested counter type, single/dual */
2206         u8 counters_type;
2207
2208         /* counter bank allocation shall be 0-3 for 'byte or packet counter' */
2209 #define ICE_AQC_ACL_MAX_CNT_SINGLE      0x3
2210 /* counter bank allocation shall be 0-1 for 'byte and packet counter dual' */
2211 #define ICE_AQC_ACL_MAX_CNT_DUAL        0x1
2212         /* requested counter bank allocation */
2213         u8 bank_alloc;
2214
2215         u8 reserved;
2216
2217         union {
2218                 /* Applicable only in case of command */
2219                 struct {
2220                         u8 reserved[12];
2221                 } cmd;
2222                 /* Applicable only in case of response */
2223 #define ICE_AQC_ACL_ALLOC_CNT_INVAL     0xFFFF
2224                 struct {
2225                         /* Index of first allocated counter. 0xFFFF in case
2226                          * of unsuccessful allocation
2227                          */
2228                         __le16 first_counter;
2229                         /* Index of last allocated counter. 0xFFFF in case
2230                          * of unsuccessful allocation
2231                          */
2232                         __le16 last_counter;
2233                         u8 rsvd[8];
2234                 } resp;
2235         } ops;
2236 };
2237
2238 /* De-allocate ACL counters (direct 0x0C17) */
2239 struct ice_aqc_acl_dealloc_counters {
2240         /* first counter being released */
2241         __le16 first_counter;
2242         /* last counter being released */
2243         __le16 last_counter;
2244         /* requested counter type, single/dual */
2245         u8 counters_type;
2246         /* requested counter bank allocation */
2247         u8 bank_alloc;
2248         u8 reserved[10];
2249 };
2250
2251 /* De-allocate ACL resources (direct 0x0C1A). Used by SW to release all the
2252  * resources allocated for it using a single command
2253  */
2254 struct ice_aqc_acl_dealloc_res {
2255         u8 reserved[16];
2256 };
2257
2258 /* Program ACL actionpair (indirect 0x0C1C)
2259  * Query ACL actionpair (indirect 0x0C25)
2260  */
2261 struct ice_aqc_acl_actpair {
2262         /* action mem index to program/update */
2263         u8 act_mem_index;
2264         u8 reserved;
2265         /* The entry index in action memory to be programmed/updated */
2266         __le16 act_entry_index;
2267         __le32 reserved2;
2268         __le32 addr_high;
2269         __le32 addr_low;
2270 };
2271
2272 /* Input buffer format for program/query action-pair admin command */
2273 struct ice_acl_act_entry {
2274         /* Action priority, values must be between 0..7 */
2275 #define ICE_AQC_ACT_PRIO_VALID_MAX      7
2276 #define ICE_AQC_ACT_PRIO_MSK            MAKEMASK(0xff, 0)
2277         u8 prio;
2278         /* Action meta-data identifier. This field should be set to 0x0
2279          * for a NOP action
2280          */
2281 #define ICE_AQC_ACT_MDID_S              8
2282 #define ICE_AQC_ACT_MDID_MSK            MAKEMASK(0xff00, ICE_AQC_ACT_MDID_S)
2283         u8 mdid;
2284         /* Action value */
2285 #define ICE_AQC_ACT_VALUE_S             16
2286 #define ICE_AQC_ACT_VALUE_MSK           MAKEMASK(0xffff0000, 16)
2287         __le16 value;
2288 };
2289
2290 #define ICE_ACL_NUM_ACT_PER_ACT_PAIR 2
2291 struct ice_aqc_actpair {
2292         struct ice_acl_act_entry act[ICE_ACL_NUM_ACT_PER_ACT_PAIR];
2293 };
2294
2295 /* Generic format used to describe either input or response buffer
2296  * for admin commands related to ACL profile
2297  */
2298 struct ice_aqc_acl_prof_generic_frmt {
2299         /* The first byte of the byte selection base is reserved to keep the
2300          * first byte of the field vector where the packet direction info is
2301          * available. Thus we should start at index 1 of the field vector to
2302          * map its entries to the byte selection base.
2303          */
2304 #define ICE_AQC_ACL_PROF_BYTE_SEL_START_IDX     1
2305         /* In each byte:
2306          * Bit 0..5 = Byte selection for the byte selection base from the
2307          * extracted fields (expressed as byte offset in extracted fields).
2308          * Applicable values are 0..63
2309          * Bit 6..7 = Reserved
2310          */
2311 #define ICE_AQC_ACL_PROF_BYTE_SEL_ELEMS         30
2312         u8 byte_selection[ICE_AQC_ACL_PROF_BYTE_SEL_ELEMS];
2313         /* In each byte:
2314          * Bit 0..4 = Word selection for the word selection base from the
2315          * extracted fields (expressed as word offset in extracted fields).
2316          * Applicable values are 0..31
2317          * Bit 5..7 = Reserved
2318          */
2319 #define ICE_AQC_ACL_PROF_WORD_SEL_ELEMS         32
2320         u8 word_selection[ICE_AQC_ACL_PROF_WORD_SEL_ELEMS];
2321         /* In each byte:
2322          * Bit 0..3 = Double word selection for the double-word selection base
2323          * from the extracted fields (expressed as double-word offset in
2324          * extracted fields).
2325          * Applicable values are 0..15
2326          * Bit 4..7 = Reserved
2327          */
2328 #define ICE_AQC_ACL_PROF_DWORD_SEL_ELEMS        15
2329         u8 dword_selection[ICE_AQC_ACL_PROF_DWORD_SEL_ELEMS];
2330         /* Scenario numbers for individual Physical Function's */
2331 #define ICE_AQC_ACL_PROF_PF_SCEN_NUM_ELEMS      8
2332         u8 pf_scenario_num[ICE_AQC_ACL_PROF_PF_SCEN_NUM_ELEMS];
2333 };
2334
2335 /* Program ACL profile extraction (indirect 0x0C1D)
2336  * Program ACL profile ranges (indirect 0x0C1E)
2337  * Query ACL profile (indirect 0x0C21)
2338  * Query ACL profile ranges (indirect 0x0C22)
2339  */
2340 struct ice_aqc_acl_profile {
2341         u8 profile_id; /* Programmed/Updated profile ID */
2342         u8 reserved[7];
2343         __le32 addr_high;
2344         __le32 addr_low;
2345 };
2346
2347 /* Input buffer format for program profile extraction admin command and
2348  * response buffer format for query profile admin command is as defined
2349  * in struct ice_aqc_acl_prof_generic_frmt
2350  */
2351
2352 /* Input buffer format for program profile ranges and query profile ranges
2353  * admin commands. Same format is used for response buffer in case of query
2354  * profile ranges command
2355  */
2356 struct ice_acl_rng_data {
2357         /* The range checker output shall be sent when the value
2358          * related to this range checker is lower than low boundary
2359          */
2360         __be16 low_boundary;
2361         /* The range checker output shall be sent when the value
2362          * related to this range checker is higher than high boundary
2363          */
2364         __be16 high_boundary;
2365         /* A value of '0' in bit shall clear the relevant bit input
2366          * to the range checker
2367          */
2368         __be16 mask;
2369 };
2370
2371 struct ice_aqc_acl_profile_ranges {
2372 #define ICE_AQC_ACL_PROF_RANGES_NUM_CFG 8
2373         struct ice_acl_rng_data checker_cfg[ICE_AQC_ACL_PROF_RANGES_NUM_CFG];
2374 };
2375
2376 /* Program ACL entry (indirect 0x0C20)
2377  * Query ACL entry (indirect 0x0C24)
2378  */
2379 struct ice_aqc_acl_entry {
2380         u8 tcam_index; /* Updated TCAM block index */
2381         u8 reserved;
2382         __le16 entry_index; /* Updated entry index */
2383         __le32 reserved2;
2384         __le32 addr_high;
2385         __le32 addr_low;
2386 };
2387
2388 /* Input buffer format in case of program ACL entry and response buffer format
2389  * in case of query ACL entry
2390  */
2391 struct ice_aqc_acl_data {
2392         /* Entry key and entry key invert are 40 bits wide.
2393          * Byte 0..4 : entry key and Byte 5..7 are reserved
2394          * Byte 8..12: entry key invert and Byte 13..15 are reserved
2395          */
2396         struct {
2397                 u8 val[5];
2398                 u8 reserved[3];
2399         } entry_key, entry_key_invert;
2400 };
2401
2402 /* Query ACL counter (direct 0x0C27) */
2403 struct ice_aqc_acl_query_counter {
2404         /* Queried counter index */
2405         __le16 counter_index;
2406         /* Queried counter bank */
2407         u8 counter_bank;
2408         union {
2409                 struct {
2410                         u8 reserved[13];
2411                 } cmd;
2412                 struct {
2413                         /* Holds counter value/packet counter value */
2414                         u8 val[5];
2415                         u8 reserved[8];
2416                 } resp;
2417         } ops;
2418 };
2419
2420 /* Add Tx LAN Queues (indirect 0x0C30) */
2421 struct ice_aqc_add_txqs {
2422         u8 num_qgrps;
2423         u8 reserved[3];
2424         __le32 reserved1;
2425         __le32 addr_high;
2426         __le32 addr_low;
2427 };
2428
2429 /* This is the descriptor of each queue entry for the Add Tx LAN Queues
2430  * command (0x0C30). Only used within struct ice_aqc_add_tx_qgrp.
2431  */
2432 struct ice_aqc_add_txqs_perq {
2433         __le16 txq_id;
2434         u8 rsvd[2];
2435         __le32 q_teid;
2436         u8 txq_ctx[22];
2437         u8 rsvd2[2];
2438         struct ice_aqc_txsched_elem info;
2439 };
2440
2441 /* The format of the command buffer for Add Tx LAN Queues (0x0C30)
2442  * is an array of the following structs. Please note that the length of
2443  * each struct ice_aqc_add_tx_qgrp is variable due
2444  * to the variable number of queues in each group!
2445  */
2446 struct ice_aqc_add_tx_qgrp {
2447         __le32 parent_teid;
2448         u8 num_txqs;
2449         u8 rsvd[3];
2450         struct ice_aqc_add_txqs_perq txqs[STRUCT_HACK_VAR_LEN];
2451 };
2452
2453 /* Disable Tx LAN Queues (indirect 0x0C31) */
2454 struct ice_aqc_dis_txqs {
2455         u8 cmd_type;
2456 #define ICE_AQC_Q_DIS_CMD_S             0
2457 #define ICE_AQC_Q_DIS_CMD_M             (0x3 << ICE_AQC_Q_DIS_CMD_S)
2458 #define ICE_AQC_Q_DIS_CMD_NO_FUNC_RESET (0 << ICE_AQC_Q_DIS_CMD_S)
2459 #define ICE_AQC_Q_DIS_CMD_VM_RESET      BIT(ICE_AQC_Q_DIS_CMD_S)
2460 #define ICE_AQC_Q_DIS_CMD_VF_RESET      (2 << ICE_AQC_Q_DIS_CMD_S)
2461 #define ICE_AQC_Q_DIS_CMD_PF_RESET      (3 << ICE_AQC_Q_DIS_CMD_S)
2462 #define ICE_AQC_Q_DIS_CMD_SUBSEQ_CALL   BIT(2)
2463 #define ICE_AQC_Q_DIS_CMD_FLUSH_PIPE    BIT(3)
2464         u8 num_entries;
2465         __le16 vmvf_and_timeout;
2466 #define ICE_AQC_Q_DIS_VMVF_NUM_S        0
2467 #define ICE_AQC_Q_DIS_VMVF_NUM_M        (0x3FF << ICE_AQC_Q_DIS_VMVF_NUM_S)
2468 #define ICE_AQC_Q_DIS_TIMEOUT_S         10
2469 #define ICE_AQC_Q_DIS_TIMEOUT_M         (0x3F << ICE_AQC_Q_DIS_TIMEOUT_S)
2470         __le32 blocked_cgds;
2471         __le32 addr_high;
2472         __le32 addr_low;
2473 };
2474
2475 /* The buffer for Disable Tx LAN Queues (indirect 0x0C31)
2476  * contains the following structures, arrayed one after the
2477  * other.
2478  * Note: Since the q_id is 16 bits wide, if the
2479  * number of queues is even, then 2 bytes of alignment MUST be
2480  * added before the start of the next group, to allow correct
2481  * alignment of the parent_teid field.
2482  */
2483 #pragma pack(1)
2484 struct ice_aqc_dis_txq_item {
2485         __le32 parent_teid;
2486         u8 num_qs;
2487         u8 rsvd;
2488         /* The length of the q_id array varies according to num_qs */
2489 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S           15
2490 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_LAN_Q       \
2491                         (0 << ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S)
2492 #define ICE_AQC_Q_DIS_BUF_ELEM_TYPE_RDMA_QSET   \
2493                         (1 << ICE_AQC_Q_DIS_BUF_ELEM_TYPE_S)
2494         __le16 q_id[STRUCT_HACK_VAR_LEN];
2495 };
2496
2497 #pragma pack()
2498
2499 /* Tx LAN Queues Cleanup Event (0x0C31) */
2500 struct ice_aqc_txqs_cleanup {
2501         __le16 caller_opc;
2502         __le16 cmd_tag;
2503         u8 reserved[12];
2504 };
2505
2506 /* Move / Reconfigure Tx Queues (indirect 0x0C32) */
2507 struct ice_aqc_move_txqs {
2508         u8 cmd_type;
2509 #define ICE_AQC_Q_CMD_TYPE_S            0
2510 #define ICE_AQC_Q_CMD_TYPE_M            (0x3 << ICE_AQC_Q_CMD_TYPE_S)
2511 #define ICE_AQC_Q_CMD_TYPE_MOVE         1
2512 #define ICE_AQC_Q_CMD_TYPE_TC_CHANGE    2
2513 #define ICE_AQC_Q_CMD_TYPE_MOVE_AND_TC  3
2514 #define ICE_AQC_Q_CMD_SUBSEQ_CALL       BIT(2)
2515 #define ICE_AQC_Q_CMD_FLUSH_PIPE        BIT(3)
2516         u8 num_qs;
2517         u8 rsvd;
2518         u8 timeout;
2519 #define ICE_AQC_Q_CMD_TIMEOUT_S         2
2520 #define ICE_AQC_Q_CMD_TIMEOUT_M         (0x3F << ICE_AQC_Q_CMD_TIMEOUT_S)
2521         __le32 blocked_cgds;
2522         __le32 addr_high;
2523         __le32 addr_low;
2524 };
2525
2526 /* Per-queue data buffer for the Move Tx LAN Queues command/response */
2527 struct ice_aqc_move_txqs_elem {
2528         __le16 txq_id;
2529         u8 q_cgd;
2530         u8 rsvd;
2531         __le32 q_teid;
2532 };
2533
2534 /* Indirect data buffer for the Move Tx LAN Queues command/response */
2535 struct ice_aqc_move_txqs_data {
2536         __le32 src_teid;
2537         __le32 dest_teid;
2538         struct ice_aqc_move_txqs_elem txqs[STRUCT_HACK_VAR_LEN];
2539 };
2540
2541 /* Download Package (indirect 0x0C40) */
2542 /* Also used for Update Package (indirect 0x0C42 and 0x0C41) */
2543 struct ice_aqc_download_pkg {
2544         u8 flags;
2545 #define ICE_AQC_DOWNLOAD_PKG_LAST_BUF   0x01
2546         u8 reserved[3];
2547         __le32 reserved1;
2548         __le32 addr_high;
2549         __le32 addr_low;
2550 };
2551
2552 struct ice_aqc_download_pkg_resp {
2553         __le32 error_offset;
2554         __le32 error_info;
2555         __le32 addr_high;
2556         __le32 addr_low;
2557 };
2558
2559 /* Get Package Info List (indirect 0x0C43) */
2560 struct ice_aqc_get_pkg_info_list {
2561         __le32 reserved1;
2562         __le32 reserved2;
2563         __le32 addr_high;
2564         __le32 addr_low;
2565 };
2566
2567 /* Version format for packages */
2568 struct ice_pkg_ver {
2569         u8 major;
2570         u8 minor;
2571         u8 update;
2572         u8 draft;
2573 };
2574
2575 #define ICE_PKG_NAME_SIZE       32
2576 #define ICE_SEG_ID_SIZE 28
2577 #define ICE_SEG_NAME_SIZE       28
2578
2579 struct ice_aqc_get_pkg_info {
2580         struct ice_pkg_ver ver;
2581         char name[ICE_SEG_NAME_SIZE];
2582         __le32 track_id;
2583         u8 is_in_nvm;
2584         u8 is_active;
2585         u8 is_active_at_boot;
2586         u8 is_modified;
2587 };
2588
2589 /* Get Package Info List response buffer format (0x0C43) */
2590 struct ice_aqc_get_pkg_info_resp {
2591         __le32 count;
2592         struct ice_aqc_get_pkg_info pkg_info[STRUCT_HACK_VAR_LEN];
2593 };
2594
2595 /* Driver Shared Parameters (direct, 0x0C90) */
2596 struct ice_aqc_driver_shared_params {
2597         u8 set_or_get_op;
2598 #define ICE_AQC_DRIVER_PARAM_OP_MASK            BIT(0)
2599 #define ICE_AQC_DRIVER_PARAM_SET                0
2600 #define ICE_AQC_DRIVER_PARAM_GET                1
2601         u8 param_indx;
2602 #define ICE_AQC_DRIVER_PARAM_MAX_IDX            15
2603         u8 rsvd[2];
2604         __le32 param_val;
2605         __le32 addr_high;
2606         __le32 addr_low;
2607 };
2608
2609 /* Lan Queue Overflow Event (direct, 0x1001) */
2610 struct ice_aqc_event_lan_overflow {
2611         __le32 prtdcb_ruptq;
2612         __le32 qtx_ctl;
2613         u8 reserved[8];
2614 };
2615
2616 /* Set Health Status (direct 0xFF20) */
2617 struct ice_aqc_set_health_status_config {
2618         u8 event_source;
2619 #define ICE_AQC_HEALTH_STATUS_SET_PF_SPECIFIC_MASK      BIT(0)
2620 #define ICE_AQC_HEALTH_STATUS_SET_ALL_PF_MASK           BIT(1)
2621 #define ICE_AQC_HEALTH_STATUS_SET_GLOBAL_MASK           BIT(2)
2622         u8 reserved[15];
2623 };
2624
2625 #define ICE_AQC_HEALTH_STATUS_ERR_UNKNOWN_MOD_STRICT            0x101
2626 #define ICE_AQC_HEALTH_STATUS_ERR_MOD_TYPE                      0x102
2627 #define ICE_AQC_HEALTH_STATUS_ERR_MOD_QUAL                      0x103
2628 #define ICE_AQC_HEALTH_STATUS_ERR_MOD_COMM                      0x104
2629 #define ICE_AQC_HEALTH_STATUS_ERR_MOD_CONFLICT                  0x105
2630 #define ICE_AQC_HEALTH_STATUS_ERR_MOD_NOT_PRESENT               0x106
2631 #define ICE_AQC_HEALTH_STATUS_INFO_MOD_UNDERUTILIZED            0x107
2632 #define ICE_AQC_HEALTH_STATUS_ERR_UNKNOWN_MOD_LENIENT           0x108
2633 #define ICE_AQC_HEALTH_STATUS_ERR_INVALID_LINK_CFG              0x10B
2634 #define ICE_AQC_HEALTH_STATUS_ERR_PORT_ACCESS                   0x10C
2635 #define ICE_AQC_HEALTH_STATUS_ERR_PORT_UNREACHABLE              0x10D
2636 #define ICE_AQC_HEALTH_STATUS_INFO_PORT_SPEED_MOD_LIMITED       0x10F
2637 #define ICE_AQC_HEALTH_STATUS_ERR_PARALLEL_FAULT                0x110
2638 #define ICE_AQC_HEALTH_STATUS_INFO_PORT_SPEED_PHY_LIMITED       0x111
2639 #define ICE_AQC_HEALTH_STATUS_ERR_NETLIST_TOPO                  0x112
2640 #define ICE_AQC_HEALTH_STATUS_ERR_NETLIST                       0x113
2641 #define ICE_AQC_HEALTH_STATUS_ERR_TOPO_CONFLICT                 0x114
2642 #define ICE_AQC_HEALTH_STATUS_ERR_LINK_HW_ACCESS                0x115
2643 #define ICE_AQC_HEALTH_STATUS_ERR_LINK_RUNTIME                  0x116
2644 #define ICE_AQC_HEALTH_STATUS_ERR_DNL_INIT                      0x117
2645 #define ICE_AQC_HEALTH_STATUS_INFO_RECOVERY                     0x500
2646 #define ICE_AQC_HEALTH_STATUS_ERR_FLASH_ACCESS                  0x501
2647 #define ICE_AQC_HEALTH_STATUS_ERR_NVM_AUTH                      0x502
2648 #define ICE_AQC_HEALTH_STATUS_ERR_OROM_AUTH                     0x503
2649 #define ICE_AQC_HEALTH_STATUS_ERR_DDP_AUTH                      0x504
2650 #define ICE_AQC_HEALTH_STATUS_ERR_NVM_COMPAT                    0x505
2651 #define ICE_AQC_HEALTH_STATUS_ERR_OROM_COMPAT                   0x506
2652 #define ICE_AQC_HEALTH_STATUS_ERR_DCB_MIB                       0x509
2653
2654 /* Get Health Status codes (indirect 0xFF21) */
2655 struct ice_aqc_get_supported_health_status_codes {
2656         __le16 health_code_count;
2657         u8 reserved[6];
2658         __le32 addr_high;
2659         __le32 addr_low;
2660 };
2661
2662 /* Get Health Status (indirect 0xFF22) */
2663 struct ice_aqc_get_health_status {
2664         __le16 health_status_count;
2665         u8 reserved[6];
2666         __le32 addr_high;
2667         __le32 addr_low;
2668 };
2669
2670 /* Get Health Status event buffer entry, (0xFF22)
2671  * repeated per reported health status
2672  */
2673 struct ice_aqc_health_status_elem {
2674         __le16 health_status_code;
2675         __le16 event_source;
2676 #define ICE_AQC_HEALTH_STATUS_PF                        (0x1)
2677 #define ICE_AQC_HEALTH_STATUS_PORT                      (0x2)
2678 #define ICE_AQC_HEALTH_STATUS_GLOBAL                    (0x3)
2679         __le32 internal_data1;
2680 #define ICE_AQC_HEALTH_STATUS_UNDEFINED_DATA    (0xDEADBEEF)
2681         __le32 internal_data2;
2682 };
2683
2684 /* Clear Health Status (direct 0xFF23) */
2685 struct ice_aqc_clear_health_status {
2686         __le32 reserved[4];
2687 };
2688
2689 /**
2690  * struct ice_aq_desc - Admin Queue (AQ) descriptor
2691  * @flags: ICE_AQ_FLAG_* flags
2692  * @opcode: AQ command opcode
2693  * @datalen: length in bytes of indirect/external data buffer
2694  * @retval: return value from firmware
2695  * @cookie_high: opaque data high-half
2696  * @cookie_low: opaque data low-half
2697  * @params: command-specific parameters
2698  *
2699  * Descriptor format for commands the driver posts on the Admin Transmit Queue
2700  * (ATQ). The firmware writes back onto the command descriptor and returns
2701  * the result of the command. Asynchronous events that are not an immediate
2702  * result of the command are written to the Admin Receive Queue (ARQ) using
2703  * the same descriptor format. Descriptors are in little-endian notation with
2704  * 32-bit words.
2705  */
2706 struct ice_aq_desc {
2707         __le16 flags;
2708         __le16 opcode;
2709         __le16 datalen;
2710         __le16 retval;
2711         __le32 cookie_high;
2712         __le32 cookie_low;
2713         union {
2714                 u8 raw[16];
2715                 struct ice_aqc_generic generic;
2716                 struct ice_aqc_get_ver get_ver;
2717                 struct ice_aqc_driver_ver driver_ver;
2718                 struct ice_aqc_q_shutdown q_shutdown;
2719                 struct ice_aqc_req_res res_owner;
2720                 struct ice_aqc_manage_mac_read mac_read;
2721                 struct ice_aqc_manage_mac_write mac_write;
2722                 struct ice_aqc_clear_pxe clear_pxe;
2723                 struct ice_aqc_config_no_drop_policy no_drop;
2724                 struct ice_aqc_add_update_mir_rule add_update_rule;
2725                 struct ice_aqc_delete_mir_rule del_rule;
2726                 struct ice_aqc_list_caps get_cap;
2727                 struct ice_aqc_get_phy_caps get_phy;
2728                 struct ice_aqc_set_phy_cfg set_phy;
2729                 struct ice_aqc_restart_an restart_an;
2730                 struct ice_aqc_sff_eeprom read_write_sff_param;
2731                 struct ice_aqc_set_port_id_led set_port_id_led;
2732                 struct ice_aqc_get_sw_cfg get_sw_conf;
2733                 struct ice_aqc_set_port_params set_port_params;
2734                 struct ice_aqc_sw_rules sw_rules;
2735                 struct ice_aqc_storm_cfg storm_conf;
2736                 struct ice_aqc_add_get_recipe add_get_recipe;
2737                 struct ice_aqc_recipe_to_profile recipe_to_profile;
2738                 struct ice_aqc_get_topo get_topo;
2739                 struct ice_aqc_sched_elem_cmd sched_elem_cmd;
2740                 struct ice_aqc_query_txsched_res query_sched_res;
2741                 struct ice_aqc_query_node_to_root query_node_to_root;
2742                 struct ice_aqc_cfg_l2_node_cgd cfg_l2_node_cgd;
2743                 struct ice_aqc_query_port_ets port_ets;
2744                 struct ice_aqc_rl_profile rl_profile;
2745                 struct ice_aqc_nvm nvm;
2746                 struct ice_aqc_nvm_cfg nvm_cfg;
2747                 struct ice_aqc_nvm_checksum nvm_checksum;
2748                 struct ice_aqc_pfc_ignore pfc_ignore;
2749                 struct ice_aqc_set_query_pfc_mode set_query_pfc_mode;
2750                 struct ice_aqc_set_dcb_params set_dcb_params;
2751                 struct ice_aqc_lldp_get_mib lldp_get_mib;
2752                 struct ice_aqc_lldp_set_mib_change lldp_set_event;
2753                 struct ice_aqc_lldp_add_delete_tlv lldp_add_delete_tlv;
2754                 struct ice_aqc_lldp_update_tlv lldp_update_tlv;
2755                 struct ice_aqc_lldp_stop lldp_stop;
2756                 struct ice_aqc_lldp_start lldp_start;
2757                 struct ice_aqc_lldp_set_local_mib lldp_set_mib;
2758                 struct ice_aqc_lldp_stop_start_specific_agent lldp_agent_ctrl;
2759                 struct ice_aqc_lldp_filter_ctrl lldp_filter_ctrl;
2760                 struct ice_aqc_get_set_rss_lut get_set_rss_lut;
2761                 struct ice_aqc_get_set_rss_key get_set_rss_key;
2762                 struct ice_aqc_clear_fd_table clear_fd_table;
2763                 struct ice_aqc_acl_alloc_table alloc_table;
2764                 struct ice_aqc_acl_tbl_actpair tbl_actpair;
2765                 struct ice_aqc_acl_alloc_scen alloc_scen;
2766                 struct ice_aqc_acl_dealloc_scen dealloc_scen;
2767                 struct ice_aqc_acl_update_query_scen update_query_scen;
2768                 struct ice_aqc_acl_alloc_counters alloc_counters;
2769                 struct ice_aqc_acl_dealloc_counters dealloc_counters;
2770                 struct ice_aqc_acl_dealloc_res dealloc_res;
2771                 struct ice_aqc_acl_entry program_query_entry;
2772                 struct ice_aqc_acl_actpair program_query_actpair;
2773                 struct ice_aqc_acl_profile profile;
2774                 struct ice_aqc_acl_query_counter query_counter;
2775                 struct ice_aqc_add_txqs add_txqs;
2776                 struct ice_aqc_dis_txqs dis_txqs;
2777                 struct ice_aqc_move_txqs move_txqs;
2778                 struct ice_aqc_txqs_cleanup txqs_cleanup;
2779                 struct ice_aqc_add_get_update_free_vsi vsi_cmd;
2780                 struct ice_aqc_add_update_free_vsi_resp add_update_free_vsi_res;
2781                 struct ice_aqc_get_vsi_resp get_vsi_resp;
2782                 struct ice_aqc_download_pkg download_pkg;
2783                 struct ice_aqc_get_pkg_info_list get_pkg_info_list;
2784                 struct ice_aqc_driver_shared_params drv_shared_params;
2785                 struct ice_aqc_set_mac_lb set_mac_lb;
2786                 struct ice_aqc_alloc_free_res_cmd sw_res_ctrl;
2787                 struct ice_aqc_get_res_alloc get_res;
2788                 struct ice_aqc_get_allocd_res_desc get_res_desc;
2789                 struct ice_aqc_set_mac_cfg set_mac_cfg;
2790                 struct ice_aqc_set_event_mask set_event_mask;
2791                 struct ice_aqc_get_link_status get_link_status;
2792                 struct ice_aqc_event_lan_overflow lan_overflow;
2793                 struct ice_aqc_get_link_topo get_link_topo;
2794                 struct ice_aqc_set_health_status_config
2795                         set_health_status_config;
2796                 struct ice_aqc_get_supported_health_status_codes
2797                         get_supported_health_status_codes;
2798                 struct ice_aqc_get_health_status get_health_status;
2799                 struct ice_aqc_clear_health_status clear_health_status;
2800         } params;
2801 };
2802
2803 /* FW defined boundary for a large buffer, 4k >= Large buffer > 512 bytes */
2804 #define ICE_AQ_LG_BUF   512
2805
2806 /* Flags sub-structure
2807  * |0  |1  |2  |3  |4  |5  |6  |7  |8  |9  |10 |11 |12 |13 |14 |15 |
2808  * |DD |CMP|ERR|VFE| * *  RESERVED * * |LB |RD |VFC|BUF|SI |EI |FE |
2809  */
2810
2811 /* command flags and offsets */
2812 #define ICE_AQ_FLAG_DD_S        0
2813 #define ICE_AQ_FLAG_CMP_S       1
2814 #define ICE_AQ_FLAG_ERR_S       2
2815 #define ICE_AQ_FLAG_VFE_S       3
2816 #define ICE_AQ_FLAG_LB_S        9
2817 #define ICE_AQ_FLAG_RD_S        10
2818 #define ICE_AQ_FLAG_VFC_S       11
2819 #define ICE_AQ_FLAG_BUF_S       12
2820 #define ICE_AQ_FLAG_SI_S        13
2821 #define ICE_AQ_FLAG_EI_S        14
2822 #define ICE_AQ_FLAG_FE_S        15
2823
2824 #define ICE_AQ_FLAG_DD          BIT(ICE_AQ_FLAG_DD_S)  /* 0x1    */
2825 #define ICE_AQ_FLAG_CMP         BIT(ICE_AQ_FLAG_CMP_S) /* 0x2    */
2826 #define ICE_AQ_FLAG_ERR         BIT(ICE_AQ_FLAG_ERR_S) /* 0x4    */
2827 #define ICE_AQ_FLAG_VFE         BIT(ICE_AQ_FLAG_VFE_S) /* 0x8    */
2828 #define ICE_AQ_FLAG_LB          BIT(ICE_AQ_FLAG_LB_S)  /* 0x200  */
2829 #define ICE_AQ_FLAG_RD          BIT(ICE_AQ_FLAG_RD_S)  /* 0x400  */
2830 #define ICE_AQ_FLAG_VFC         BIT(ICE_AQ_FLAG_VFC_S) /* 0x800  */
2831 #define ICE_AQ_FLAG_BUF         BIT(ICE_AQ_FLAG_BUF_S) /* 0x1000 */
2832 #define ICE_AQ_FLAG_SI          BIT(ICE_AQ_FLAG_SI_S)  /* 0x2000 */
2833 #define ICE_AQ_FLAG_EI          BIT(ICE_AQ_FLAG_EI_S)  /* 0x4000 */
2834 #define ICE_AQ_FLAG_FE          BIT(ICE_AQ_FLAG_FE_S)  /* 0x8000 */
2835
2836 /* error codes */
2837 enum ice_aq_err {
2838         ICE_AQ_RC_OK            = 0,  /* Success */
2839         ICE_AQ_RC_EPERM         = 1,  /* Operation not permitted */
2840         ICE_AQ_RC_ENOENT        = 2,  /* No such element */
2841         ICE_AQ_RC_ESRCH         = 3,  /* Bad opcode */
2842         ICE_AQ_RC_EINTR         = 4,  /* Operation interrupted */
2843         ICE_AQ_RC_EIO           = 5,  /* I/O error */
2844         ICE_AQ_RC_ENXIO         = 6,  /* No such resource */
2845         ICE_AQ_RC_E2BIG         = 7,  /* Arg too long */
2846         ICE_AQ_RC_EAGAIN        = 8,  /* Try again */
2847         ICE_AQ_RC_ENOMEM        = 9,  /* Out of memory */
2848         ICE_AQ_RC_EACCES        = 10, /* Permission denied */
2849         ICE_AQ_RC_EFAULT        = 11, /* Bad address */
2850         ICE_AQ_RC_EBUSY         = 12, /* Device or resource busy */
2851         ICE_AQ_RC_EEXIST        = 13, /* Object already exists */
2852         ICE_AQ_RC_EINVAL        = 14, /* Invalid argument */
2853         ICE_AQ_RC_ENOTTY        = 15, /* Not a typewriter */
2854         ICE_AQ_RC_ENOSPC        = 16, /* No space left or allocation failure */
2855         ICE_AQ_RC_ENOSYS        = 17, /* Function not implemented */
2856         ICE_AQ_RC_ERANGE        = 18, /* Parameter out of range */
2857         ICE_AQ_RC_EFLUSHED      = 19, /* Cmd flushed due to prev cmd error */
2858         ICE_AQ_RC_BAD_ADDR      = 20, /* Descriptor contains a bad pointer */
2859         ICE_AQ_RC_EMODE         = 21, /* Op not allowed in current dev mode */
2860         ICE_AQ_RC_EFBIG         = 22, /* File too big */
2861         ICE_AQ_RC_ESBCOMP       = 23, /* SB-IOSF completion unsuccessful */
2862         ICE_AQ_RC_ENOSEC        = 24, /* Missing security manifest */
2863         ICE_AQ_RC_EBADSIG       = 25, /* Bad RSA signature */
2864         ICE_AQ_RC_ESVN          = 26, /* SVN number prohibits this package */
2865         ICE_AQ_RC_EBADMAN       = 27, /* Manifest hash mismatch */
2866         ICE_AQ_RC_EBADBUF       = 28, /* Buffer hash mismatches manifest */
2867         ICE_AQ_RC_EACCES_BMCU   = 29, /* BMC Update in progress */
2868 };
2869
2870 /* Admin Queue command opcodes */
2871 enum ice_adminq_opc {
2872         /* AQ commands */
2873         ice_aqc_opc_get_ver                             = 0x0001,
2874         ice_aqc_opc_driver_ver                          = 0x0002,
2875         ice_aqc_opc_q_shutdown                          = 0x0003,
2876         ice_aqc_opc_get_exp_err                         = 0x0005,
2877
2878         /* resource ownership */
2879         ice_aqc_opc_req_res                             = 0x0008,
2880         ice_aqc_opc_release_res                         = 0x0009,
2881
2882         /* device/function capabilities */
2883         ice_aqc_opc_list_func_caps                      = 0x000A,
2884         ice_aqc_opc_list_dev_caps                       = 0x000B,
2885
2886         /* manage MAC address */
2887         ice_aqc_opc_manage_mac_read                     = 0x0107,
2888         ice_aqc_opc_manage_mac_write                    = 0x0108,
2889
2890         /* PXE */
2891         ice_aqc_opc_clear_pxe_mode                      = 0x0110,
2892
2893         ice_aqc_opc_config_no_drop_policy               = 0x0112,
2894
2895         /* internal switch commands */
2896         ice_aqc_opc_get_sw_cfg                          = 0x0200,
2897         ice_aqc_opc_set_port_params                     = 0x0203,
2898
2899         /* Alloc/Free/Get Resources */
2900         ice_aqc_opc_get_res_alloc                       = 0x0204,
2901         ice_aqc_opc_alloc_res                           = 0x0208,
2902         ice_aqc_opc_free_res                            = 0x0209,
2903         ice_aqc_opc_get_allocd_res_desc                 = 0x020A,
2904
2905         /* VSI commands */
2906         ice_aqc_opc_add_vsi                             = 0x0210,
2907         ice_aqc_opc_update_vsi                          = 0x0211,
2908         ice_aqc_opc_get_vsi_params                      = 0x0212,
2909         ice_aqc_opc_free_vsi                            = 0x0213,
2910
2911         /* Mirroring rules - add/update, delete */
2912         ice_aqc_opc_add_update_mir_rule                 = 0x0260,
2913         ice_aqc_opc_del_mir_rule                        = 0x0261,
2914
2915         /* storm configuration */
2916         ice_aqc_opc_set_storm_cfg                       = 0x0280,
2917         ice_aqc_opc_get_storm_cfg                       = 0x0281,
2918
2919         /* recipe commands */
2920         ice_aqc_opc_add_recipe                          = 0x0290,
2921         ice_aqc_opc_recipe_to_profile                   = 0x0291,
2922         ice_aqc_opc_get_recipe                          = 0x0292,
2923         ice_aqc_opc_get_recipe_to_profile               = 0x0293,
2924
2925         /* switch rules population commands */
2926         ice_aqc_opc_add_sw_rules                        = 0x02A0,
2927         ice_aqc_opc_update_sw_rules                     = 0x02A1,
2928         ice_aqc_opc_remove_sw_rules                     = 0x02A2,
2929         ice_aqc_opc_get_sw_rules                        = 0x02A3,
2930         ice_aqc_opc_clear_pf_cfg                        = 0x02A4,
2931
2932         /* DCB commands */
2933         ice_aqc_opc_pfc_ignore                          = 0x0301,
2934         ice_aqc_opc_query_pfc_mode                      = 0x0302,
2935         ice_aqc_opc_set_pfc_mode                        = 0x0303,
2936         ice_aqc_opc_set_dcb_params                      = 0x0306,
2937
2938         /* transmit scheduler commands */
2939         ice_aqc_opc_get_dflt_topo                       = 0x0400,
2940         ice_aqc_opc_add_sched_elems                     = 0x0401,
2941         ice_aqc_opc_cfg_sched_elems                     = 0x0403,
2942         ice_aqc_opc_get_sched_elems                     = 0x0404,
2943         ice_aqc_opc_move_sched_elems                    = 0x0408,
2944         ice_aqc_opc_suspend_sched_elems                 = 0x0409,
2945         ice_aqc_opc_resume_sched_elems                  = 0x040A,
2946         ice_aqc_opc_query_port_ets                      = 0x040E,
2947         ice_aqc_opc_delete_sched_elems                  = 0x040F,
2948         ice_aqc_opc_add_rl_profiles                     = 0x0410,
2949         ice_aqc_opc_query_rl_profiles                   = 0x0411,
2950         ice_aqc_opc_query_sched_res                     = 0x0412,
2951         ice_aqc_opc_query_node_to_root                  = 0x0413,
2952         ice_aqc_opc_cfg_l2_node_cgd                     = 0x0414,
2953         ice_aqc_opc_remove_rl_profiles                  = 0x0415,
2954
2955         /* PHY commands */
2956         ice_aqc_opc_get_phy_caps                        = 0x0600,
2957         ice_aqc_opc_set_phy_cfg                         = 0x0601,
2958         ice_aqc_opc_set_mac_cfg                         = 0x0603,
2959         ice_aqc_opc_restart_an                          = 0x0605,
2960         ice_aqc_opc_get_link_status                     = 0x0607,
2961         ice_aqc_opc_set_event_mask                      = 0x0613,
2962         ice_aqc_opc_set_mac_lb                          = 0x0620,
2963         ice_aqc_opc_get_link_topo                       = 0x06E0,
2964         ice_aqc_opc_set_port_id_led                     = 0x06E9,
2965         ice_aqc_opc_get_port_options                    = 0x06EA,
2966         ice_aqc_opc_set_port_option                     = 0x06EB,
2967         ice_aqc_opc_set_gpio                            = 0x06EC,
2968         ice_aqc_opc_get_gpio                            = 0x06ED,
2969         ice_aqc_opc_sff_eeprom                          = 0x06EE,
2970         ice_aqc_opc_sw_set_gpio                         = 0x06EF,
2971         ice_aqc_opc_sw_get_gpio                         = 0x06F0,
2972
2973         /* NVM commands */
2974         ice_aqc_opc_nvm_read                            = 0x0701,
2975         ice_aqc_opc_nvm_erase                           = 0x0702,
2976         ice_aqc_opc_nvm_write                           = 0x0703,
2977         ice_aqc_opc_nvm_cfg_read                        = 0x0704,
2978         ice_aqc_opc_nvm_cfg_write                       = 0x0705,
2979         ice_aqc_opc_nvm_checksum                        = 0x0706,
2980         ice_aqc_opc_nvm_write_activate                  = 0x0707,
2981         ice_aqc_opc_nvm_sr_dump                         = 0x0707,
2982         ice_aqc_opc_nvm_save_factory_settings           = 0x0708,
2983         ice_aqc_opc_nvm_update_empr                     = 0x0709,
2984
2985         /* LLDP commands */
2986         ice_aqc_opc_lldp_get_mib                        = 0x0A00,
2987         ice_aqc_opc_lldp_set_mib_change                 = 0x0A01,
2988         ice_aqc_opc_lldp_add_tlv                        = 0x0A02,
2989         ice_aqc_opc_lldp_update_tlv                     = 0x0A03,
2990         ice_aqc_opc_lldp_delete_tlv                     = 0x0A04,
2991         ice_aqc_opc_lldp_stop                           = 0x0A05,
2992         ice_aqc_opc_lldp_start                          = 0x0A06,
2993         ice_aqc_opc_get_cee_dcb_cfg                     = 0x0A07,
2994         ice_aqc_opc_lldp_set_local_mib                  = 0x0A08,
2995         ice_aqc_opc_lldp_stop_start_specific_agent      = 0x0A09,
2996         ice_aqc_opc_lldp_filter_ctrl                    = 0x0A0A,
2997
2998         /* RSS commands */
2999         ice_aqc_opc_set_rss_key                         = 0x0B02,
3000         ice_aqc_opc_set_rss_lut                         = 0x0B03,
3001         ice_aqc_opc_get_rss_key                         = 0x0B04,
3002         ice_aqc_opc_get_rss_lut                         = 0x0B05,
3003         ice_aqc_opc_clear_fd_table                      = 0x0B06,
3004         /* ACL commands */
3005         ice_aqc_opc_alloc_acl_tbl                       = 0x0C10,
3006         ice_aqc_opc_dealloc_acl_tbl                     = 0x0C11,
3007         ice_aqc_opc_alloc_acl_actpair                   = 0x0C12,
3008         ice_aqc_opc_dealloc_acl_actpair                 = 0x0C13,
3009         ice_aqc_opc_alloc_acl_scen                      = 0x0C14,
3010         ice_aqc_opc_dealloc_acl_scen                    = 0x0C15,
3011         ice_aqc_opc_alloc_acl_counters                  = 0x0C16,
3012         ice_aqc_opc_dealloc_acl_counters                = 0x0C17,
3013         ice_aqc_opc_dealloc_acl_res                     = 0x0C1A,
3014         ice_aqc_opc_update_acl_scen                     = 0x0C1B,
3015         ice_aqc_opc_program_acl_actpair                 = 0x0C1C,
3016         ice_aqc_opc_program_acl_prof_extraction         = 0x0C1D,
3017         ice_aqc_opc_program_acl_prof_ranges             = 0x0C1E,
3018         ice_aqc_opc_program_acl_entry                   = 0x0C20,
3019         ice_aqc_opc_query_acl_prof                      = 0x0C21,
3020         ice_aqc_opc_query_acl_prof_ranges               = 0x0C22,
3021         ice_aqc_opc_query_acl_scen                      = 0x0C23,
3022         ice_aqc_opc_query_acl_entry                     = 0x0C24,
3023         ice_aqc_opc_query_acl_actpair                   = 0x0C25,
3024         ice_aqc_opc_query_acl_counter                   = 0x0C27,
3025
3026         /* Tx queue handling commands/events */
3027         ice_aqc_opc_add_txqs                            = 0x0C30,
3028         ice_aqc_opc_dis_txqs                            = 0x0C31,
3029         ice_aqc_opc_txqs_cleanup                        = 0x0C31,
3030         ice_aqc_opc_move_recfg_txqs                     = 0x0C32,
3031
3032         /* package commands */
3033         ice_aqc_opc_download_pkg                        = 0x0C40,
3034         ice_aqc_opc_upload_section                      = 0x0C41,
3035         ice_aqc_opc_update_pkg                          = 0x0C42,
3036         ice_aqc_opc_get_pkg_info_list                   = 0x0C43,
3037
3038         ice_aqc_opc_driver_shared_params                = 0x0C90,
3039
3040         /* Standalone Commands/Events */
3041         ice_aqc_opc_event_lan_overflow                  = 0x1001,
3042
3043         /* SystemDiagnostic commands */
3044         ice_aqc_opc_set_health_status_config            = 0xFF20,
3045         ice_aqc_opc_get_supported_health_status_codes   = 0xFF21,
3046         ice_aqc_opc_get_health_status                   = 0xFF22,
3047         ice_aqc_opc_clear_health_status                 = 0xFF23
3048 };
3049
3050 #endif /* _ICE_ADMINQ_CMD_H_ */