xref: /linux/drivers/net/ethernet/emulex/benet/be_cmds.h (revision 3f2fb9a834cb1fcddbae22deca7fde136944dc89)
1 /*
2  * Copyright (C) 2005 - 2015 Emulex
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation.  The full GNU General
8  * Public License is included in this distribution in the file called COPYING.
9  *
10  * Contact Information:
11  * linux-drivers@emulex.com
12  *
13  * Emulex
14  * 3333 Susan Street
15  * Costa Mesa, CA 92626
16  */
17 
18 /*
19  * The driver sends configuration and managements command requests to the
20  * firmware in the BE. These requests are communicated to the processor
21  * using Work Request Blocks (WRBs) submitted to the MCC-WRB ring or via one
22  * WRB inside a MAILBOX.
23  * The commands are serviced by the ARM processor in the BladeEngine's MPU.
24  */
25 
26 struct be_sge {
27 	u32 pa_lo;
28 	u32 pa_hi;
29 	u32 len;
30 };
31 
32 #define MCC_WRB_EMBEDDED_MASK	1 	/* bit 0 of dword 0*/
33 #define MCC_WRB_SGE_CNT_SHIFT	3	/* bits 3 - 7 of dword 0 */
34 #define MCC_WRB_SGE_CNT_MASK	0x1F	/* bits 3 - 7 of dword 0 */
35 struct be_mcc_wrb {
36 	u32 embedded;		/* dword 0 */
37 	u32 payload_length;	/* dword 1 */
38 	u32 tag0;		/* dword 2 */
39 	u32 tag1;		/* dword 3 */
40 	u32 rsvd;		/* dword 4 */
41 	union {
42 		u8 embedded_payload[236]; /* used by embedded cmds */
43 		struct be_sge sgl[19];    /* used by non-embedded cmds */
44 	} payload;
45 };
46 
47 #define CQE_FLAGS_VALID_MASK		BIT(31)
48 #define CQE_FLAGS_ASYNC_MASK		BIT(30)
49 #define CQE_FLAGS_COMPLETED_MASK	BIT(28)
50 #define CQE_FLAGS_CONSUMED_MASK		BIT(27)
51 
52 /* Completion Status */
53 enum mcc_base_status {
54 	MCC_STATUS_SUCCESS = 0,
55 	MCC_STATUS_FAILED = 1,
56 	MCC_STATUS_ILLEGAL_REQUEST = 2,
57 	MCC_STATUS_ILLEGAL_FIELD = 3,
58 	MCC_STATUS_INSUFFICIENT_BUFFER = 4,
59 	MCC_STATUS_UNAUTHORIZED_REQUEST = 5,
60 	MCC_STATUS_NOT_SUPPORTED = 66,
61 	MCC_STATUS_FEATURE_NOT_SUPPORTED = 68
62 };
63 
64 /* Additional status */
65 enum mcc_addl_status {
66 	MCC_ADDL_STATUS_INSUFFICIENT_RESOURCES = 0x16,
67 	MCC_ADDL_STATUS_FLASH_IMAGE_CRC_MISMATCH = 0x4d,
68 	MCC_ADDL_STATUS_TOO_MANY_INTERFACES = 0x4a,
69 	MCC_ADDL_STATUS_INSUFFICIENT_VLANS = 0xab,
70 	MCC_ADDL_STATUS_INVALID_SIGNATURE = 0x56,
71 	MCC_ADDL_STATUS_MISSING_SIGNATURE = 0x57,
72 	MCC_ADDL_STATUS_INSUFFICIENT_PRIVILEGES = 0x60
73 };
74 
75 #define CQE_BASE_STATUS_MASK		0xFFFF
76 #define CQE_BASE_STATUS_SHIFT		0	/* bits 0 - 15 */
77 #define CQE_ADDL_STATUS_MASK		0xFF
78 #define CQE_ADDL_STATUS_SHIFT		16	/* bits 16 - 31 */
79 
80 #define base_status(status)		\
81 		((enum mcc_base_status)	\
82 			(status > 0 ? (status & CQE_BASE_STATUS_MASK) : 0))
83 #define addl_status(status)		\
84 		((enum mcc_addl_status)	\
85 			(status > 0 ? (status >> CQE_ADDL_STATUS_SHIFT) & \
86 					CQE_ADDL_STATUS_MASK : 0))
87 
88 struct be_mcc_compl {
89 	u32 status;		/* dword 0 */
90 	u32 tag0;		/* dword 1 */
91 	u32 tag1;		/* dword 2 */
92 	u32 flags;		/* dword 3 */
93 };
94 
95 /* When the async bit of mcc_compl flags is set, flags
96  * is interpreted as follows:
97  */
98 #define ASYNC_EVENT_CODE_SHIFT		8	/* bits 8 - 15 */
99 #define ASYNC_EVENT_CODE_MASK		0xFF
100 #define ASYNC_EVENT_TYPE_SHIFT		16
101 #define ASYNC_EVENT_TYPE_MASK		0xFF
102 #define ASYNC_EVENT_CODE_LINK_STATE	0x1
103 #define ASYNC_EVENT_CODE_GRP_5		0x5
104 #define ASYNC_EVENT_QOS_SPEED		0x1
105 #define ASYNC_EVENT_COS_PRIORITY	0x2
106 #define ASYNC_EVENT_PVID_STATE		0x3
107 #define ASYNC_EVENT_CODE_QNQ		0x6
108 #define ASYNC_DEBUG_EVENT_TYPE_QNQ	1
109 #define ASYNC_EVENT_CODE_SLIPORT	0x11
110 #define ASYNC_EVENT_PORT_MISCONFIG	0x9
111 #define ASYNC_EVENT_FW_CONTROL		0x5
112 
113 enum {
114 	LINK_DOWN	= 0x0,
115 	LINK_UP		= 0x1
116 };
117 #define LINK_STATUS_MASK			0x1
118 #define LOGICAL_LINK_STATUS_MASK		0x2
119 
120 /* When the event code of compl->flags is link-state, the mcc_compl
121  * must be interpreted as follows
122  */
123 struct be_async_event_link_state {
124 	u8 physical_port;
125 	u8 port_link_status;
126 	u8 port_duplex;
127 	u8 port_speed;
128 	u8 port_fault;
129 	u8 rsvd0[7];
130 	u32 flags;
131 } __packed;
132 
133 /* When the event code of compl->flags is GRP-5 and event_type is QOS_SPEED
134  * the mcc_compl must be interpreted as follows
135  */
136 struct be_async_event_grp5_qos_link_speed {
137 	u8 physical_port;
138 	u8 rsvd[5];
139 	u16 qos_link_speed;
140 	u32 event_tag;
141 	u32 flags;
142 } __packed;
143 
144 /* When the event code of compl->flags is GRP5 and event type is
145  * CoS-Priority, the mcc_compl must be interpreted as follows
146  */
147 struct be_async_event_grp5_cos_priority {
148 	u8 physical_port;
149 	u8 available_priority_bmap;
150 	u8 reco_default_priority;
151 	u8 valid;
152 	u8 rsvd0;
153 	u8 event_tag;
154 	u32 flags;
155 } __packed;
156 
157 /* When the event code of compl->flags is GRP5 and event type is
158  * PVID state, the mcc_compl must be interpreted as follows
159  */
160 struct be_async_event_grp5_pvid_state {
161 	u8 enabled;
162 	u8 rsvd0;
163 	u16 tag;
164 	u32 event_tag;
165 	u32 rsvd1;
166 	u32 flags;
167 } __packed;
168 
169 /* async event indicating outer VLAN tag in QnQ */
170 struct be_async_event_qnq {
171 	u8 valid;	/* Indicates if outer VLAN is valid */
172 	u8 rsvd0;
173 	u16 vlan_tag;
174 	u32 event_tag;
175 	u8 rsvd1[4];
176 	u32 flags;
177 } __packed;
178 
179 enum {
180 	BE_PHY_FUNCTIONAL	= 0,
181 	BE_PHY_NOT_PRESENT	= 1,
182 	BE_PHY_DIFF_MEDIA	= 2,
183 	BE_PHY_INCOMPATIBLE	= 3,
184 	BE_PHY_UNQUALIFIED	= 4,
185 	BE_PHY_UNCERTIFIED	= 5
186 };
187 
188 #define PHY_STATE_MSG_SEVERITY		0x6
189 #define PHY_STATE_OPER			0x1
190 #define PHY_STATE_INFO_VALID		0x80
191 #define	PHY_STATE_OPER_MSG_NONE		0x2
192 #define DEFAULT_MSG_SEVERITY		0x1
193 
194 #define be_phy_state_unknown(phy_state) (phy_state > BE_PHY_UNCERTIFIED)
195 #define be_phy_unqualified(phy_state)				\
196 			(phy_state == BE_PHY_UNQUALIFIED ||	\
197 			 phy_state == BE_PHY_UNCERTIFIED)
198 #define be_phy_misconfigured(phy_state)				\
199 			(phy_state == BE_PHY_INCOMPATIBLE ||	\
200 			 phy_state == BE_PHY_UNQUALIFIED ||	\
201 			 phy_state == BE_PHY_UNCERTIFIED)
202 
203 extern  char *be_misconfig_evt_port_state[];
204 
205 /* async event indicating misconfigured port */
206 struct be_async_event_misconfig_port {
207  /* DATA_WORD1:
208   * phy state of port 0: bits 7 - 0
209   * phy state of port 1: bits 15 - 8
210   * phy state of port 2: bits 23 - 16
211   * phy state of port 3: bits 31 - 24
212   */
213 	u32 event_data_word1;
214  /* DATA_WORD2:
215   * phy state info of port 0: bits 7 - 0
216   * phy state info of port 1: bits 15 - 8
217   * phy state info of port 2: bits 23 - 16
218   * phy state info of port 3: bits 31 - 24
219   *
220   * PHY STATE INFO:
221   * Link operability	 :bit 0
222   * Message severity	 :bit 2 - 1
223   * Rsvd			 :bits 6 - 3
224   * phy state info valid	 :bit 7
225   */
226 	u32 event_data_word2;
227 	u32 rsvd0;
228 	u32 flags;
229 } __packed;
230 
231 #define BMC_FILT_BROADCAST_ARP				BIT(0)
232 #define BMC_FILT_BROADCAST_DHCP_CLIENT			BIT(1)
233 #define BMC_FILT_BROADCAST_DHCP_SERVER			BIT(2)
234 #define BMC_FILT_BROADCAST_NET_BIOS			BIT(3)
235 #define BMC_FILT_BROADCAST				BIT(7)
236 #define BMC_FILT_MULTICAST_IPV6_NEIGH_ADVER		BIT(8)
237 #define BMC_FILT_MULTICAST_IPV6_RA			BIT(9)
238 #define BMC_FILT_MULTICAST_IPV6_RAS			BIT(10)
239 #define BMC_FILT_MULTICAST				BIT(15)
240 struct be_async_fw_control {
241 	u32 event_data_word1;
242 	u32 event_data_word2;
243 	u32 evt_tag;
244 	u32 event_data_word4;
245 } __packed;
246 
247 struct be_mcc_mailbox {
248 	struct be_mcc_wrb wrb;
249 	struct be_mcc_compl compl;
250 };
251 
252 #define CMD_SUBSYSTEM_COMMON	0x1
253 #define CMD_SUBSYSTEM_ETH 	0x3
254 #define CMD_SUBSYSTEM_LOWLEVEL  0xb
255 
256 #define OPCODE_COMMON_NTWK_MAC_QUERY			1
257 #define OPCODE_COMMON_NTWK_MAC_SET			2
258 #define OPCODE_COMMON_NTWK_MULTICAST_SET		3
259 #define OPCODE_COMMON_NTWK_VLAN_CONFIG  		4
260 #define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY		5
261 #define OPCODE_COMMON_READ_FLASHROM			6
262 #define OPCODE_COMMON_WRITE_FLASHROM			7
263 #define OPCODE_COMMON_CQ_CREATE				12
264 #define OPCODE_COMMON_EQ_CREATE				13
265 #define OPCODE_COMMON_MCC_CREATE			21
266 #define OPCODE_COMMON_SET_QOS				28
267 #define OPCODE_COMMON_MCC_CREATE_EXT			90
268 #define OPCODE_COMMON_SEEPROM_READ			30
269 #define OPCODE_COMMON_GET_CNTL_ATTRIBUTES               32
270 #define OPCODE_COMMON_NTWK_RX_FILTER    		34
271 #define OPCODE_COMMON_GET_FW_VERSION			35
272 #define OPCODE_COMMON_SET_FLOW_CONTROL			36
273 #define OPCODE_COMMON_GET_FLOW_CONTROL			37
274 #define OPCODE_COMMON_SET_FRAME_SIZE			39
275 #define OPCODE_COMMON_MODIFY_EQ_DELAY			41
276 #define OPCODE_COMMON_FIRMWARE_CONFIG			42
277 #define OPCODE_COMMON_NTWK_INTERFACE_CREATE 		50
278 #define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 		51
279 #define OPCODE_COMMON_MCC_DESTROY        		53
280 #define OPCODE_COMMON_CQ_DESTROY        		54
281 #define OPCODE_COMMON_EQ_DESTROY        		55
282 #define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG		58
283 #define OPCODE_COMMON_NTWK_PMAC_ADD			59
284 #define OPCODE_COMMON_NTWK_PMAC_DEL			60
285 #define OPCODE_COMMON_FUNCTION_RESET			61
286 #define OPCODE_COMMON_MANAGE_FAT			68
287 #define OPCODE_COMMON_ENABLE_DISABLE_BEACON		69
288 #define OPCODE_COMMON_GET_BEACON_STATE			70
289 #define OPCODE_COMMON_READ_TRANSRECV_DATA		73
290 #define OPCODE_COMMON_GET_PORT_NAME			77
291 #define OPCODE_COMMON_SET_LOGICAL_LINK_CONFIG		80
292 #define OPCODE_COMMON_SET_INTERRUPT_ENABLE		89
293 #define OPCODE_COMMON_SET_FN_PRIVILEGES			100
294 #define OPCODE_COMMON_GET_PHY_DETAILS			102
295 #define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP		103
296 #define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES	121
297 #define OPCODE_COMMON_GET_EXT_FAT_CAPABILITES		125
298 #define OPCODE_COMMON_SET_EXT_FAT_CAPABILITES		126
299 #define OPCODE_COMMON_GET_MAC_LIST			147
300 #define OPCODE_COMMON_SET_MAC_LIST			148
301 #define OPCODE_COMMON_GET_HSW_CONFIG			152
302 #define OPCODE_COMMON_GET_FUNC_CONFIG			160
303 #define OPCODE_COMMON_GET_PROFILE_CONFIG		164
304 #define OPCODE_COMMON_SET_PROFILE_CONFIG		165
305 #define OPCODE_COMMON_GET_ACTIVE_PROFILE		167
306 #define OPCODE_COMMON_SET_HSW_CONFIG			153
307 #define OPCODE_COMMON_GET_FN_PRIVILEGES			170
308 #define OPCODE_COMMON_READ_OBJECT			171
309 #define OPCODE_COMMON_WRITE_OBJECT			172
310 #define OPCODE_COMMON_DELETE_OBJECT			174
311 #define OPCODE_COMMON_MANAGE_IFACE_FILTERS		193
312 #define OPCODE_COMMON_GET_IFACE_LIST			194
313 #define OPCODE_COMMON_ENABLE_DISABLE_VF			196
314 
315 #define OPCODE_ETH_RSS_CONFIG				1
316 #define OPCODE_ETH_ACPI_CONFIG				2
317 #define OPCODE_ETH_PROMISCUOUS				3
318 #define OPCODE_ETH_GET_STATISTICS			4
319 #define OPCODE_ETH_TX_CREATE				7
320 #define OPCODE_ETH_RX_CREATE            		8
321 #define OPCODE_ETH_TX_DESTROY           		9
322 #define OPCODE_ETH_RX_DESTROY           		10
323 #define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG		12
324 #define OPCODE_ETH_GET_PPORT_STATS			18
325 
326 #define OPCODE_LOWLEVEL_HOST_DDR_DMA                    17
327 #define OPCODE_LOWLEVEL_LOOPBACK_TEST                   18
328 #define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE		19
329 
330 struct be_cmd_req_hdr {
331 	u8 opcode;		/* dword 0 */
332 	u8 subsystem;		/* dword 0 */
333 	u8 port_number;		/* dword 0 */
334 	u8 domain;		/* dword 0 */
335 	u32 timeout;		/* dword 1 */
336 	u32 request_length;	/* dword 2 */
337 	u8 version;		/* dword 3 */
338 	u8 rsvd[3];		/* dword 3 */
339 };
340 
341 #define RESP_HDR_INFO_OPCODE_SHIFT	0	/* bits 0 - 7 */
342 #define RESP_HDR_INFO_SUBSYS_SHIFT	8 	/* bits 8 - 15 */
343 struct be_cmd_resp_hdr {
344 	u8 opcode;		/* dword 0 */
345 	u8 subsystem;		/* dword 0 */
346 	u8 rsvd[2];		/* dword 0 */
347 	u8 base_status;		/* dword 1 */
348 	u8 addl_status;		/* dword 1 */
349 	u8 rsvd1[2];		/* dword 1 */
350 	u32 response_length;	/* dword 2 */
351 	u32 actual_resp_len;	/* dword 3 */
352 };
353 
354 struct phys_addr {
355 	u32 lo;
356 	u32 hi;
357 };
358 
359 /**************************
360  * BE Command definitions *
361  **************************/
362 
363 /* Pseudo amap definition in which each bit of the actual structure is defined
364  * as a byte: used to calculate offset/shift/mask of each field */
365 struct amap_eq_context {
366 	u8 cidx[13];		/* dword 0*/
367 	u8 rsvd0[3];		/* dword 0*/
368 	u8 epidx[13];		/* dword 0*/
369 	u8 valid;		/* dword 0*/
370 	u8 rsvd1;		/* dword 0*/
371 	u8 size;		/* dword 0*/
372 	u8 pidx[13];		/* dword 1*/
373 	u8 rsvd2[3];		/* dword 1*/
374 	u8 pd[10];		/* dword 1*/
375 	u8 count[3];		/* dword 1*/
376 	u8 solevent;		/* dword 1*/
377 	u8 stalled;		/* dword 1*/
378 	u8 armed;		/* dword 1*/
379 	u8 rsvd3[4];		/* dword 2*/
380 	u8 func[8];		/* dword 2*/
381 	u8 rsvd4;		/* dword 2*/
382 	u8 delaymult[10];	/* dword 2*/
383 	u8 rsvd5[2];		/* dword 2*/
384 	u8 phase[2];		/* dword 2*/
385 	u8 nodelay;		/* dword 2*/
386 	u8 rsvd6[4];		/* dword 2*/
387 	u8 rsvd7[32];		/* dword 3*/
388 } __packed;
389 
390 struct be_cmd_req_eq_create {
391 	struct be_cmd_req_hdr hdr;
392 	u16 num_pages;		/* sword */
393 	u16 rsvd0;		/* sword */
394 	u8 context[sizeof(struct amap_eq_context) / 8];
395 	struct phys_addr pages[8];
396 } __packed;
397 
398 struct be_cmd_resp_eq_create {
399 	struct be_cmd_resp_hdr resp_hdr;
400 	u16 eq_id;		/* sword */
401 	u16 msix_idx;		/* available only in v2 */
402 } __packed;
403 
404 /******************** Mac query ***************************/
405 enum {
406 	MAC_ADDRESS_TYPE_STORAGE = 0x0,
407 	MAC_ADDRESS_TYPE_NETWORK = 0x1,
408 	MAC_ADDRESS_TYPE_PD = 0x2,
409 	MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
410 };
411 
412 struct mac_addr {
413 	u16 size_of_struct;
414 	u8 addr[ETH_ALEN];
415 } __packed;
416 
417 struct be_cmd_req_mac_query {
418 	struct be_cmd_req_hdr hdr;
419 	u8 type;
420 	u8 permanent;
421 	u16 if_id;
422 	u32 pmac_id;
423 } __packed;
424 
425 struct be_cmd_resp_mac_query {
426 	struct be_cmd_resp_hdr hdr;
427 	struct mac_addr mac;
428 };
429 
430 /******************** PMac Add ***************************/
431 struct be_cmd_req_pmac_add {
432 	struct be_cmd_req_hdr hdr;
433 	u32 if_id;
434 	u8 mac_address[ETH_ALEN];
435 	u8 rsvd0[2];
436 } __packed;
437 
438 struct be_cmd_resp_pmac_add {
439 	struct be_cmd_resp_hdr hdr;
440 	u32 pmac_id;
441 };
442 
443 /******************** PMac Del ***************************/
444 struct be_cmd_req_pmac_del {
445 	struct be_cmd_req_hdr hdr;
446 	u32 if_id;
447 	u32 pmac_id;
448 };
449 
450 /******************** Create CQ ***************************/
451 /* Pseudo amap definition in which each bit of the actual structure is defined
452  * as a byte: used to calculate offset/shift/mask of each field */
453 struct amap_cq_context_be {
454 	u8 cidx[11];		/* dword 0*/
455 	u8 rsvd0;		/* dword 0*/
456 	u8 coalescwm[2];	/* dword 0*/
457 	u8 nodelay;		/* dword 0*/
458 	u8 epidx[11];		/* dword 0*/
459 	u8 rsvd1;		/* dword 0*/
460 	u8 count[2];		/* dword 0*/
461 	u8 valid;		/* dword 0*/
462 	u8 solevent;		/* dword 0*/
463 	u8 eventable;		/* dword 0*/
464 	u8 pidx[11];		/* dword 1*/
465 	u8 rsvd2;		/* dword 1*/
466 	u8 pd[10];		/* dword 1*/
467 	u8 eqid[8];		/* dword 1*/
468 	u8 stalled;		/* dword 1*/
469 	u8 armed;		/* dword 1*/
470 	u8 rsvd3[4];		/* dword 2*/
471 	u8 func[8];		/* dword 2*/
472 	u8 rsvd4[20];		/* dword 2*/
473 	u8 rsvd5[32];		/* dword 3*/
474 } __packed;
475 
476 struct amap_cq_context_v2 {
477 	u8 rsvd0[12];		/* dword 0*/
478 	u8 coalescwm[2];	/* dword 0*/
479 	u8 nodelay;		/* dword 0*/
480 	u8 rsvd1[12];		/* dword 0*/
481 	u8 count[2];		/* dword 0*/
482 	u8 valid;		/* dword 0*/
483 	u8 rsvd2;		/* dword 0*/
484 	u8 eventable;		/* dword 0*/
485 	u8 eqid[16];		/* dword 1*/
486 	u8 rsvd3[15];		/* dword 1*/
487 	u8 armed;		/* dword 1*/
488 	u8 rsvd4[32];		/* dword 2*/
489 	u8 rsvd5[32];		/* dword 3*/
490 } __packed;
491 
492 struct be_cmd_req_cq_create {
493 	struct be_cmd_req_hdr hdr;
494 	u16 num_pages;
495 	u8 page_size;
496 	u8 rsvd0;
497 	u8 context[sizeof(struct amap_cq_context_be) / 8];
498 	struct phys_addr pages[8];
499 } __packed;
500 
501 
502 struct be_cmd_resp_cq_create {
503 	struct be_cmd_resp_hdr hdr;
504 	u16 cq_id;
505 	u16 rsvd0;
506 } __packed;
507 
508 struct be_cmd_req_get_fat {
509 	struct be_cmd_req_hdr hdr;
510 	u32 fat_operation;
511 	u32 read_log_offset;
512 	u32 read_log_length;
513 	u32 data_buffer_size;
514 	u32 data_buffer[1];
515 } __packed;
516 
517 struct be_cmd_resp_get_fat {
518 	struct be_cmd_resp_hdr hdr;
519 	u32 log_size;
520 	u32 read_log_length;
521 	u32 rsvd[2];
522 	u32 data_buffer[1];
523 } __packed;
524 
525 
526 /******************** Create MCCQ ***************************/
527 /* Pseudo amap definition in which each bit of the actual structure is defined
528  * as a byte: used to calculate offset/shift/mask of each field */
529 struct amap_mcc_context_be {
530 	u8 con_index[14];
531 	u8 rsvd0[2];
532 	u8 ring_size[4];
533 	u8 fetch_wrb;
534 	u8 fetch_r2t;
535 	u8 cq_id[10];
536 	u8 prod_index[14];
537 	u8 fid[8];
538 	u8 pdid[9];
539 	u8 valid;
540 	u8 rsvd1[32];
541 	u8 rsvd2[32];
542 } __packed;
543 
544 struct amap_mcc_context_v1 {
545 	u8 async_cq_id[16];
546 	u8 ring_size[4];
547 	u8 rsvd0[12];
548 	u8 rsvd1[31];
549 	u8 valid;
550 	u8 async_cq_valid[1];
551 	u8 rsvd2[31];
552 	u8 rsvd3[32];
553 } __packed;
554 
555 struct be_cmd_req_mcc_create {
556 	struct be_cmd_req_hdr hdr;
557 	u16 num_pages;
558 	u16 cq_id;
559 	u8 context[sizeof(struct amap_mcc_context_be) / 8];
560 	struct phys_addr pages[8];
561 } __packed;
562 
563 struct be_cmd_req_mcc_ext_create {
564 	struct be_cmd_req_hdr hdr;
565 	u16 num_pages;
566 	u16 cq_id;
567 	u32 async_event_bitmap[1];
568 	u8 context[sizeof(struct amap_mcc_context_v1) / 8];
569 	struct phys_addr pages[8];
570 } __packed;
571 
572 struct be_cmd_resp_mcc_create {
573 	struct be_cmd_resp_hdr hdr;
574 	u16 id;
575 	u16 rsvd0;
576 } __packed;
577 
578 /******************** Create TxQ ***************************/
579 #define BE_ETH_TX_RING_TYPE_STANDARD    	2
580 #define BE_ULP1_NUM				1
581 
582 struct be_cmd_req_eth_tx_create {
583 	struct be_cmd_req_hdr hdr;
584 	u8 num_pages;
585 	u8 ulp_num;
586 	u16 type;
587 	u16 if_id;
588 	u8 queue_size;
589 	u8 rsvd0;
590 	u32 rsvd1;
591 	u16 cq_id;
592 	u16 rsvd2;
593 	u32 rsvd3[13];
594 	struct phys_addr pages[8];
595 } __packed;
596 
597 struct be_cmd_resp_eth_tx_create {
598 	struct be_cmd_resp_hdr hdr;
599 	u16 cid;
600 	u16 rid;
601 	u32 db_offset;
602 	u32 rsvd0[4];
603 } __packed;
604 
605 /******************** Create RxQ ***************************/
606 struct be_cmd_req_eth_rx_create {
607 	struct be_cmd_req_hdr hdr;
608 	u16 cq_id;
609 	u8 frag_size;
610 	u8 num_pages;
611 	struct phys_addr pages[2];
612 	u32 interface_id;
613 	u16 max_frame_size;
614 	u16 rsvd0;
615 	u32 rss_queue;
616 } __packed;
617 
618 struct be_cmd_resp_eth_rx_create {
619 	struct be_cmd_resp_hdr hdr;
620 	u16 id;
621 	u8 rss_id;
622 	u8 rsvd0;
623 } __packed;
624 
625 /******************** Q Destroy  ***************************/
626 /* Type of Queue to be destroyed */
627 enum {
628 	QTYPE_EQ = 1,
629 	QTYPE_CQ,
630 	QTYPE_TXQ,
631 	QTYPE_RXQ,
632 	QTYPE_MCCQ
633 };
634 
635 struct be_cmd_req_q_destroy {
636 	struct be_cmd_req_hdr hdr;
637 	u16 id;
638 	u16 bypass_flush;	/* valid only for rx q destroy */
639 } __packed;
640 
641 /************ I/f Create (it's actually I/f Config Create)**********/
642 
643 /* Capability flags for the i/f */
644 enum be_if_flags {
645 	BE_IF_FLAGS_RSS = 0x4,
646 	BE_IF_FLAGS_PROMISCUOUS = 0x8,
647 	BE_IF_FLAGS_BROADCAST = 0x10,
648 	BE_IF_FLAGS_UNTAGGED = 0x20,
649 	BE_IF_FLAGS_ULP = 0x40,
650 	BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
651 	BE_IF_FLAGS_VLAN = 0x100,
652 	BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
653 	BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
654 	BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
655 	BE_IF_FLAGS_MULTICAST = 0x1000,
656 	BE_IF_FLAGS_DEFQ_RSS = 0x1000000
657 };
658 
659 #define BE_IF_CAP_FLAGS_WANT (BE_IF_FLAGS_RSS | BE_IF_FLAGS_PROMISCUOUS |\
660 			 BE_IF_FLAGS_BROADCAST | BE_IF_FLAGS_VLAN_PROMISCUOUS |\
661 			 BE_IF_FLAGS_VLAN | BE_IF_FLAGS_MCAST_PROMISCUOUS |\
662 			 BE_IF_FLAGS_PASS_L3L4_ERRORS | BE_IF_FLAGS_MULTICAST |\
663 			 BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_DEFQ_RSS)
664 
665 #define BE_IF_FLAGS_ALL_PROMISCUOUS	(BE_IF_FLAGS_PROMISCUOUS | \
666 					 BE_IF_FLAGS_VLAN_PROMISCUOUS |\
667 					 BE_IF_FLAGS_MCAST_PROMISCUOUS)
668 
669 #define BE_IF_EN_FLAGS	(BE_IF_FLAGS_BROADCAST | BE_IF_FLAGS_PASS_L3L4_ERRORS |\
670 			BE_IF_FLAGS_MULTICAST | BE_IF_FLAGS_UNTAGGED)
671 
672 #define BE_IF_ALL_FILT_FLAGS	(BE_IF_EN_FLAGS | BE_IF_FLAGS_ALL_PROMISCUOUS)
673 
674 /* An RX interface is an object with one or more MAC addresses and
675  * filtering capabilities. */
676 struct be_cmd_req_if_create {
677 	struct be_cmd_req_hdr hdr;
678 	u32 version;		/* ignore currently */
679 	u32 capability_flags;
680 	u32 enable_flags;
681 	u8 mac_addr[ETH_ALEN];
682 	u8 rsvd0;
683 	u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
684 	u32 vlan_tag;	 /* not used currently */
685 } __packed;
686 
687 struct be_cmd_resp_if_create {
688 	struct be_cmd_resp_hdr hdr;
689 	u32 interface_id;
690 	u32 pmac_id;
691 };
692 
693 /****** I/f Destroy(it's actually I/f Config Destroy )**********/
694 struct be_cmd_req_if_destroy {
695 	struct be_cmd_req_hdr hdr;
696 	u32 interface_id;
697 };
698 
699 /*************** HW Stats Get **********************************/
700 struct be_port_rxf_stats_v0 {
701 	u32 rx_bytes_lsd;	/* dword 0*/
702 	u32 rx_bytes_msd;	/* dword 1*/
703 	u32 rx_total_frames;	/* dword 2*/
704 	u32 rx_unicast_frames;	/* dword 3*/
705 	u32 rx_multicast_frames;	/* dword 4*/
706 	u32 rx_broadcast_frames;	/* dword 5*/
707 	u32 rx_crc_errors;	/* dword 6*/
708 	u32 rx_alignment_symbol_errors;	/* dword 7*/
709 	u32 rx_pause_frames;	/* dword 8*/
710 	u32 rx_control_frames;	/* dword 9*/
711 	u32 rx_in_range_errors;	/* dword 10*/
712 	u32 rx_out_range_errors;	/* dword 11*/
713 	u32 rx_frame_too_long;	/* dword 12*/
714 	u32 rx_address_filtered;	/* dword 13*/
715 	u32 rx_vlan_filtered;	/* dword 14*/
716 	u32 rx_dropped_too_small;	/* dword 15*/
717 	u32 rx_dropped_too_short;	/* dword 16*/
718 	u32 rx_dropped_header_too_small;	/* dword 17*/
719 	u32 rx_dropped_tcp_length;	/* dword 18*/
720 	u32 rx_dropped_runt;	/* dword 19*/
721 	u32 rx_64_byte_packets;	/* dword 20*/
722 	u32 rx_65_127_byte_packets;	/* dword 21*/
723 	u32 rx_128_256_byte_packets;	/* dword 22*/
724 	u32 rx_256_511_byte_packets;	/* dword 23*/
725 	u32 rx_512_1023_byte_packets;	/* dword 24*/
726 	u32 rx_1024_1518_byte_packets;	/* dword 25*/
727 	u32 rx_1519_2047_byte_packets;	/* dword 26*/
728 	u32 rx_2048_4095_byte_packets;	/* dword 27*/
729 	u32 rx_4096_8191_byte_packets;	/* dword 28*/
730 	u32 rx_8192_9216_byte_packets;	/* dword 29*/
731 	u32 rx_ip_checksum_errs;	/* dword 30*/
732 	u32 rx_tcp_checksum_errs;	/* dword 31*/
733 	u32 rx_udp_checksum_errs;	/* dword 32*/
734 	u32 rx_non_rss_packets;	/* dword 33*/
735 	u32 rx_ipv4_packets;	/* dword 34*/
736 	u32 rx_ipv6_packets;	/* dword 35*/
737 	u32 rx_ipv4_bytes_lsd;	/* dword 36*/
738 	u32 rx_ipv4_bytes_msd;	/* dword 37*/
739 	u32 rx_ipv6_bytes_lsd;	/* dword 38*/
740 	u32 rx_ipv6_bytes_msd;	/* dword 39*/
741 	u32 rx_chute1_packets;	/* dword 40*/
742 	u32 rx_chute2_packets;	/* dword 41*/
743 	u32 rx_chute3_packets;	/* dword 42*/
744 	u32 rx_management_packets;	/* dword 43*/
745 	u32 rx_switched_unicast_packets;	/* dword 44*/
746 	u32 rx_switched_multicast_packets;	/* dword 45*/
747 	u32 rx_switched_broadcast_packets;	/* dword 46*/
748 	u32 tx_bytes_lsd;	/* dword 47*/
749 	u32 tx_bytes_msd;	/* dword 48*/
750 	u32 tx_unicastframes;	/* dword 49*/
751 	u32 tx_multicastframes;	/* dword 50*/
752 	u32 tx_broadcastframes;	/* dword 51*/
753 	u32 tx_pauseframes;	/* dword 52*/
754 	u32 tx_controlframes;	/* dword 53*/
755 	u32 tx_64_byte_packets;	/* dword 54*/
756 	u32 tx_65_127_byte_packets;	/* dword 55*/
757 	u32 tx_128_256_byte_packets;	/* dword 56*/
758 	u32 tx_256_511_byte_packets;	/* dword 57*/
759 	u32 tx_512_1023_byte_packets;	/* dword 58*/
760 	u32 tx_1024_1518_byte_packets;	/* dword 59*/
761 	u32 tx_1519_2047_byte_packets;	/* dword 60*/
762 	u32 tx_2048_4095_byte_packets;	/* dword 61*/
763 	u32 tx_4096_8191_byte_packets;	/* dword 62*/
764 	u32 tx_8192_9216_byte_packets;	/* dword 63*/
765 	u32 rx_fifo_overflow;	/* dword 64*/
766 	u32 rx_input_fifo_overflow;	/* dword 65*/
767 };
768 
769 struct be_rxf_stats_v0 {
770 	struct be_port_rxf_stats_v0 port[2];
771 	u32 rx_drops_no_pbuf;	/* dword 132*/
772 	u32 rx_drops_no_txpb;	/* dword 133*/
773 	u32 rx_drops_no_erx_descr;	/* dword 134*/
774 	u32 rx_drops_no_tpre_descr;	/* dword 135*/
775 	u32 management_rx_port_packets;	/* dword 136*/
776 	u32 management_rx_port_bytes;	/* dword 137*/
777 	u32 management_rx_port_pause_frames;	/* dword 138*/
778 	u32 management_rx_port_errors;	/* dword 139*/
779 	u32 management_tx_port_packets;	/* dword 140*/
780 	u32 management_tx_port_bytes;	/* dword 141*/
781 	u32 management_tx_port_pause;	/* dword 142*/
782 	u32 management_rx_port_rxfifo_overflow;	/* dword 143*/
783 	u32 rx_drops_too_many_frags;	/* dword 144*/
784 	u32 rx_drops_invalid_ring;	/* dword 145*/
785 	u32 forwarded_packets;	/* dword 146*/
786 	u32 rx_drops_mtu;	/* dword 147*/
787 	u32 rsvd0[7];
788 	u32 port0_jabber_events;
789 	u32 port1_jabber_events;
790 	u32 rsvd1[6];
791 };
792 
793 struct be_erx_stats_v0 {
794 	u32 rx_drops_no_fragments[44];     /* dwordS 0 to 43*/
795 	u32 rsvd[4];
796 };
797 
798 struct be_pmem_stats {
799 	u32 eth_red_drops;
800 	u32 rsvd[5];
801 };
802 
803 struct be_hw_stats_v0 {
804 	struct be_rxf_stats_v0 rxf;
805 	u32 rsvd[48];
806 	struct be_erx_stats_v0 erx;
807 	struct be_pmem_stats pmem;
808 };
809 
810 struct be_cmd_req_get_stats_v0 {
811 	struct be_cmd_req_hdr hdr;
812 	u8 rsvd[sizeof(struct be_hw_stats_v0)];
813 };
814 
815 struct be_cmd_resp_get_stats_v0 {
816 	struct be_cmd_resp_hdr hdr;
817 	struct be_hw_stats_v0 hw_stats;
818 };
819 
820 struct lancer_pport_stats {
821 	u32 tx_packets_lo;
822 	u32 tx_packets_hi;
823 	u32 tx_unicast_packets_lo;
824 	u32 tx_unicast_packets_hi;
825 	u32 tx_multicast_packets_lo;
826 	u32 tx_multicast_packets_hi;
827 	u32 tx_broadcast_packets_lo;
828 	u32 tx_broadcast_packets_hi;
829 	u32 tx_bytes_lo;
830 	u32 tx_bytes_hi;
831 	u32 tx_unicast_bytes_lo;
832 	u32 tx_unicast_bytes_hi;
833 	u32 tx_multicast_bytes_lo;
834 	u32 tx_multicast_bytes_hi;
835 	u32 tx_broadcast_bytes_lo;
836 	u32 tx_broadcast_bytes_hi;
837 	u32 tx_discards_lo;
838 	u32 tx_discards_hi;
839 	u32 tx_errors_lo;
840 	u32 tx_errors_hi;
841 	u32 tx_pause_frames_lo;
842 	u32 tx_pause_frames_hi;
843 	u32 tx_pause_on_frames_lo;
844 	u32 tx_pause_on_frames_hi;
845 	u32 tx_pause_off_frames_lo;
846 	u32 tx_pause_off_frames_hi;
847 	u32 tx_internal_mac_errors_lo;
848 	u32 tx_internal_mac_errors_hi;
849 	u32 tx_control_frames_lo;
850 	u32 tx_control_frames_hi;
851 	u32 tx_packets_64_bytes_lo;
852 	u32 tx_packets_64_bytes_hi;
853 	u32 tx_packets_65_to_127_bytes_lo;
854 	u32 tx_packets_65_to_127_bytes_hi;
855 	u32 tx_packets_128_to_255_bytes_lo;
856 	u32 tx_packets_128_to_255_bytes_hi;
857 	u32 tx_packets_256_to_511_bytes_lo;
858 	u32 tx_packets_256_to_511_bytes_hi;
859 	u32 tx_packets_512_to_1023_bytes_lo;
860 	u32 tx_packets_512_to_1023_bytes_hi;
861 	u32 tx_packets_1024_to_1518_bytes_lo;
862 	u32 tx_packets_1024_to_1518_bytes_hi;
863 	u32 tx_packets_1519_to_2047_bytes_lo;
864 	u32 tx_packets_1519_to_2047_bytes_hi;
865 	u32 tx_packets_2048_to_4095_bytes_lo;
866 	u32 tx_packets_2048_to_4095_bytes_hi;
867 	u32 tx_packets_4096_to_8191_bytes_lo;
868 	u32 tx_packets_4096_to_8191_bytes_hi;
869 	u32 tx_packets_8192_to_9216_bytes_lo;
870 	u32 tx_packets_8192_to_9216_bytes_hi;
871 	u32 tx_lso_packets_lo;
872 	u32 tx_lso_packets_hi;
873 	u32 rx_packets_lo;
874 	u32 rx_packets_hi;
875 	u32 rx_unicast_packets_lo;
876 	u32 rx_unicast_packets_hi;
877 	u32 rx_multicast_packets_lo;
878 	u32 rx_multicast_packets_hi;
879 	u32 rx_broadcast_packets_lo;
880 	u32 rx_broadcast_packets_hi;
881 	u32 rx_bytes_lo;
882 	u32 rx_bytes_hi;
883 	u32 rx_unicast_bytes_lo;
884 	u32 rx_unicast_bytes_hi;
885 	u32 rx_multicast_bytes_lo;
886 	u32 rx_multicast_bytes_hi;
887 	u32 rx_broadcast_bytes_lo;
888 	u32 rx_broadcast_bytes_hi;
889 	u32 rx_unknown_protos;
890 	u32 rsvd_69; /* Word 69 is reserved */
891 	u32 rx_discards_lo;
892 	u32 rx_discards_hi;
893 	u32 rx_errors_lo;
894 	u32 rx_errors_hi;
895 	u32 rx_crc_errors_lo;
896 	u32 rx_crc_errors_hi;
897 	u32 rx_alignment_errors_lo;
898 	u32 rx_alignment_errors_hi;
899 	u32 rx_symbol_errors_lo;
900 	u32 rx_symbol_errors_hi;
901 	u32 rx_pause_frames_lo;
902 	u32 rx_pause_frames_hi;
903 	u32 rx_pause_on_frames_lo;
904 	u32 rx_pause_on_frames_hi;
905 	u32 rx_pause_off_frames_lo;
906 	u32 rx_pause_off_frames_hi;
907 	u32 rx_frames_too_long_lo;
908 	u32 rx_frames_too_long_hi;
909 	u32 rx_internal_mac_errors_lo;
910 	u32 rx_internal_mac_errors_hi;
911 	u32 rx_undersize_packets;
912 	u32 rx_oversize_packets;
913 	u32 rx_fragment_packets;
914 	u32 rx_jabbers;
915 	u32 rx_control_frames_lo;
916 	u32 rx_control_frames_hi;
917 	u32 rx_control_frames_unknown_opcode_lo;
918 	u32 rx_control_frames_unknown_opcode_hi;
919 	u32 rx_in_range_errors;
920 	u32 rx_out_of_range_errors;
921 	u32 rx_address_filtered;
922 	u32 rx_vlan_filtered;
923 	u32 rx_dropped_too_small;
924 	u32 rx_dropped_too_short;
925 	u32 rx_dropped_header_too_small;
926 	u32 rx_dropped_invalid_tcp_length;
927 	u32 rx_dropped_runt;
928 	u32 rx_ip_checksum_errors;
929 	u32 rx_tcp_checksum_errors;
930 	u32 rx_udp_checksum_errors;
931 	u32 rx_non_rss_packets;
932 	u32 rsvd_111;
933 	u32 rx_ipv4_packets_lo;
934 	u32 rx_ipv4_packets_hi;
935 	u32 rx_ipv6_packets_lo;
936 	u32 rx_ipv6_packets_hi;
937 	u32 rx_ipv4_bytes_lo;
938 	u32 rx_ipv4_bytes_hi;
939 	u32 rx_ipv6_bytes_lo;
940 	u32 rx_ipv6_bytes_hi;
941 	u32 rx_nic_packets_lo;
942 	u32 rx_nic_packets_hi;
943 	u32 rx_tcp_packets_lo;
944 	u32 rx_tcp_packets_hi;
945 	u32 rx_iscsi_packets_lo;
946 	u32 rx_iscsi_packets_hi;
947 	u32 rx_management_packets_lo;
948 	u32 rx_management_packets_hi;
949 	u32 rx_switched_unicast_packets_lo;
950 	u32 rx_switched_unicast_packets_hi;
951 	u32 rx_switched_multicast_packets_lo;
952 	u32 rx_switched_multicast_packets_hi;
953 	u32 rx_switched_broadcast_packets_lo;
954 	u32 rx_switched_broadcast_packets_hi;
955 	u32 num_forwards_lo;
956 	u32 num_forwards_hi;
957 	u32 rx_fifo_overflow;
958 	u32 rx_input_fifo_overflow;
959 	u32 rx_drops_too_many_frags_lo;
960 	u32 rx_drops_too_many_frags_hi;
961 	u32 rx_drops_invalid_queue;
962 	u32 rsvd_141;
963 	u32 rx_drops_mtu_lo;
964 	u32 rx_drops_mtu_hi;
965 	u32 rx_packets_64_bytes_lo;
966 	u32 rx_packets_64_bytes_hi;
967 	u32 rx_packets_65_to_127_bytes_lo;
968 	u32 rx_packets_65_to_127_bytes_hi;
969 	u32 rx_packets_128_to_255_bytes_lo;
970 	u32 rx_packets_128_to_255_bytes_hi;
971 	u32 rx_packets_256_to_511_bytes_lo;
972 	u32 rx_packets_256_to_511_bytes_hi;
973 	u32 rx_packets_512_to_1023_bytes_lo;
974 	u32 rx_packets_512_to_1023_bytes_hi;
975 	u32 rx_packets_1024_to_1518_bytes_lo;
976 	u32 rx_packets_1024_to_1518_bytes_hi;
977 	u32 rx_packets_1519_to_2047_bytes_lo;
978 	u32 rx_packets_1519_to_2047_bytes_hi;
979 	u32 rx_packets_2048_to_4095_bytes_lo;
980 	u32 rx_packets_2048_to_4095_bytes_hi;
981 	u32 rx_packets_4096_to_8191_bytes_lo;
982 	u32 rx_packets_4096_to_8191_bytes_hi;
983 	u32 rx_packets_8192_to_9216_bytes_lo;
984 	u32 rx_packets_8192_to_9216_bytes_hi;
985 };
986 
987 struct pport_stats_params {
988 	u16 pport_num;
989 	u8 rsvd;
990 	u8 reset_stats;
991 };
992 
993 struct lancer_cmd_req_pport_stats {
994 	struct be_cmd_req_hdr hdr;
995 	union {
996 		struct pport_stats_params params;
997 		u8 rsvd[sizeof(struct lancer_pport_stats)];
998 	} cmd_params;
999 };
1000 
1001 struct lancer_cmd_resp_pport_stats {
1002 	struct be_cmd_resp_hdr hdr;
1003 	struct lancer_pport_stats pport_stats;
1004 };
1005 
1006 static inline struct lancer_pport_stats*
1007 	pport_stats_from_cmd(struct be_adapter *adapter)
1008 {
1009 	struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
1010 	return &cmd->pport_stats;
1011 }
1012 
1013 struct be_cmd_req_get_cntl_addnl_attribs {
1014 	struct be_cmd_req_hdr hdr;
1015 	u8 rsvd[8];
1016 };
1017 
1018 struct be_cmd_resp_get_cntl_addnl_attribs {
1019 	struct be_cmd_resp_hdr hdr;
1020 	u16 ipl_file_number;
1021 	u8 ipl_file_version;
1022 	u8 rsvd0;
1023 	u8 on_die_temperature; /* in degrees centigrade*/
1024 	u8 rsvd1[3];
1025 };
1026 
1027 struct be_cmd_req_vlan_config {
1028 	struct be_cmd_req_hdr hdr;
1029 	u8 interface_id;
1030 	u8 promiscuous;
1031 	u8 untagged;
1032 	u8 num_vlan;
1033 	u16 normal_vlan[64];
1034 } __packed;
1035 
1036 /******************* RX FILTER ******************************/
1037 #define BE_MAX_MC		64 /* set mcast promisc if > 64 */
1038 struct macaddr {
1039 	u8 byte[ETH_ALEN];
1040 };
1041 
1042 struct be_cmd_req_rx_filter {
1043 	struct be_cmd_req_hdr hdr;
1044 	u32 global_flags_mask;
1045 	u32 global_flags;
1046 	u32 if_flags_mask;
1047 	u32 if_flags;
1048 	u32 if_id;
1049 	u32 mcast_num;
1050 	struct macaddr mcast_mac[BE_MAX_MC];
1051 };
1052 
1053 /******************** Link Status Query *******************/
1054 struct be_cmd_req_link_status {
1055 	struct be_cmd_req_hdr hdr;
1056 	u32 rsvd;
1057 };
1058 
1059 enum {
1060 	PHY_LINK_DUPLEX_NONE = 0x0,
1061 	PHY_LINK_DUPLEX_HALF = 0x1,
1062 	PHY_LINK_DUPLEX_FULL = 0x2
1063 };
1064 
1065 enum {
1066 	PHY_LINK_SPEED_ZERO = 0x0, 	/* => No link */
1067 	PHY_LINK_SPEED_10MBPS = 0x1,
1068 	PHY_LINK_SPEED_100MBPS = 0x2,
1069 	PHY_LINK_SPEED_1GBPS = 0x3,
1070 	PHY_LINK_SPEED_10GBPS = 0x4,
1071 	PHY_LINK_SPEED_20GBPS = 0x5,
1072 	PHY_LINK_SPEED_25GBPS = 0x6,
1073 	PHY_LINK_SPEED_40GBPS = 0x7
1074 };
1075 
1076 struct be_cmd_resp_link_status {
1077 	struct be_cmd_resp_hdr hdr;
1078 	u8 physical_port;
1079 	u8 mac_duplex;
1080 	u8 mac_speed;
1081 	u8 mac_fault;
1082 	u8 mgmt_mac_duplex;
1083 	u8 mgmt_mac_speed;
1084 	u16 link_speed;
1085 	u8 logical_link_status;
1086 	u8 rsvd1[3];
1087 } __packed;
1088 
1089 /******************** Port Identification ***************************/
1090 /*    Identifies the type of port attached to NIC     */
1091 struct be_cmd_req_port_type {
1092 	struct be_cmd_req_hdr hdr;
1093 	__le32 page_num;
1094 	__le32 port;
1095 };
1096 
1097 enum {
1098 	TR_PAGE_A0 = 0xa0,
1099 	TR_PAGE_A2 = 0xa2
1100 };
1101 
1102 /* From SFF-8436 QSFP+ spec */
1103 #define	QSFP_PLUS_CABLE_TYPE_OFFSET	0x83
1104 #define	QSFP_PLUS_CR4_CABLE		0x8
1105 #define	QSFP_PLUS_SR4_CABLE		0x4
1106 #define	QSFP_PLUS_LR4_CABLE		0x2
1107 
1108 /* From SFF-8472 spec */
1109 #define	SFP_PLUS_SFF_8472_COMP		0x5E
1110 #define	SFP_PLUS_CABLE_TYPE_OFFSET	0x8
1111 #define	SFP_PLUS_COPPER_CABLE		0x4
1112 #define SFP_VENDOR_NAME_OFFSET		0x14
1113 #define SFP_VENDOR_PN_OFFSET		0x28
1114 
1115 #define PAGE_DATA_LEN   256
1116 struct be_cmd_resp_port_type {
1117 	struct be_cmd_resp_hdr hdr;
1118 	u32 page_num;
1119 	u32 port;
1120 	u8  page_data[PAGE_DATA_LEN];
1121 };
1122 
1123 /******************** Get FW Version *******************/
1124 struct be_cmd_req_get_fw_version {
1125 	struct be_cmd_req_hdr hdr;
1126 	u8 rsvd0[FW_VER_LEN];
1127 	u8 rsvd1[FW_VER_LEN];
1128 } __packed;
1129 
1130 struct be_cmd_resp_get_fw_version {
1131 	struct be_cmd_resp_hdr hdr;
1132 	u8 firmware_version_string[FW_VER_LEN];
1133 	u8 fw_on_flash_version_string[FW_VER_LEN];
1134 } __packed;
1135 
1136 /******************** Set Flow Contrl *******************/
1137 struct be_cmd_req_set_flow_control {
1138 	struct be_cmd_req_hdr hdr;
1139 	u16 tx_flow_control;
1140 	u16 rx_flow_control;
1141 } __packed;
1142 
1143 /******************** Get Flow Contrl *******************/
1144 struct be_cmd_req_get_flow_control {
1145 	struct be_cmd_req_hdr hdr;
1146 	u32 rsvd;
1147 };
1148 
1149 struct be_cmd_resp_get_flow_control {
1150 	struct be_cmd_resp_hdr hdr;
1151 	u16 tx_flow_control;
1152 	u16 rx_flow_control;
1153 } __packed;
1154 
1155 /******************** Modify EQ Delay *******************/
1156 struct be_set_eqd {
1157 	u32 eq_id;
1158 	u32 phase;
1159 	u32 delay_multiplier;
1160 };
1161 
1162 struct be_cmd_req_modify_eq_delay {
1163 	struct be_cmd_req_hdr hdr;
1164 	u32 num_eq;
1165 	struct be_set_eqd set_eqd[MAX_EVT_QS];
1166 } __packed;
1167 
1168 /******************** Get FW Config *******************/
1169 /* The HW can come up in either of the following multi-channel modes
1170  * based on the skew/IPL.
1171  */
1172 #define RDMA_ENABLED				0x4
1173 #define QNQ_MODE				0x400
1174 #define VNIC_MODE				0x20000
1175 #define UMC_ENABLED				0x1000000
1176 struct be_cmd_req_query_fw_cfg {
1177 	struct be_cmd_req_hdr hdr;
1178 	u32 rsvd[31];
1179 };
1180 
1181 struct be_cmd_resp_query_fw_cfg {
1182 	struct be_cmd_resp_hdr hdr;
1183 	u32 be_config_number;
1184 	u32 asic_revision;
1185 	u32 phys_port;
1186 	u32 function_mode;
1187 	u32 rsvd[26];
1188 	u32 function_caps;
1189 };
1190 
1191 /******************** RSS Config ****************************************/
1192 /* RSS type		Input parameters used to compute RX hash
1193  * RSS_ENABLE_IPV4	SRC IPv4, DST IPv4
1194  * RSS_ENABLE_TCP_IPV4	SRC IPv4, DST IPv4, TCP SRC PORT, TCP DST PORT
1195  * RSS_ENABLE_IPV6	SRC IPv6, DST IPv6
1196  * RSS_ENABLE_TCP_IPV6	SRC IPv6, DST IPv6, TCP SRC PORT, TCP DST PORT
1197  * RSS_ENABLE_UDP_IPV4	SRC IPv4, DST IPv4, UDP SRC PORT, UDP DST PORT
1198  * RSS_ENABLE_UDP_IPV6	SRC IPv6, DST IPv6, UDP SRC PORT, UDP DST PORT
1199  *
1200  * When multiple RSS types are enabled, HW picks the best hash policy
1201  * based on the type of the received packet.
1202  */
1203 #define RSS_ENABLE_NONE				0x0
1204 #define RSS_ENABLE_IPV4				0x1
1205 #define RSS_ENABLE_TCP_IPV4			0x2
1206 #define RSS_ENABLE_IPV6				0x4
1207 #define RSS_ENABLE_TCP_IPV6			0x8
1208 #define RSS_ENABLE_UDP_IPV4			0x10
1209 #define RSS_ENABLE_UDP_IPV6			0x20
1210 
1211 #define L3_RSS_FLAGS				(RXH_IP_DST | RXH_IP_SRC)
1212 #define L4_RSS_FLAGS				(RXH_L4_B_0_1 | RXH_L4_B_2_3)
1213 
1214 struct be_cmd_req_rss_config {
1215 	struct be_cmd_req_hdr hdr;
1216 	u32 if_id;
1217 	u16 enable_rss;
1218 	u16 cpu_table_size_log2;
1219 	u32 hash[10];
1220 	u8 cpu_table[128];
1221 	u8 flush;
1222 	u8 rsvd0[3];
1223 };
1224 
1225 /******************** Port Beacon ***************************/
1226 
1227 #define BEACON_STATE_ENABLED		0x1
1228 #define BEACON_STATE_DISABLED		0x0
1229 
1230 struct be_cmd_req_enable_disable_beacon {
1231 	struct be_cmd_req_hdr hdr;
1232 	u8  port_num;
1233 	u8  beacon_state;
1234 	u8  beacon_duration;
1235 	u8  status_duration;
1236 } __packed;
1237 
1238 struct be_cmd_req_get_beacon_state {
1239 	struct be_cmd_req_hdr hdr;
1240 	u8  port_num;
1241 	u8  rsvd0;
1242 	u16 rsvd1;
1243 } __packed;
1244 
1245 struct be_cmd_resp_get_beacon_state {
1246 	struct be_cmd_resp_hdr resp_hdr;
1247 	u8 beacon_state;
1248 	u8 rsvd0[3];
1249 } __packed;
1250 
1251 /* Flashrom related descriptors */
1252 #define MAX_FLASH_COMP			32
1253 
1254 /* Optypes of each component in the UFI */
1255 enum {
1256 	OPTYPE_ISCSI_ACTIVE = 0,
1257 	OPTYPE_REDBOOT = 1,
1258 	OPTYPE_BIOS = 2,
1259 	OPTYPE_PXE_BIOS = 3,
1260 	OPTYPE_OFFSET_SPECIFIED = 7,
1261 	OPTYPE_FCOE_BIOS = 8,
1262 	OPTYPE_ISCSI_BACKUP = 9,
1263 	OPTYPE_FCOE_FW_ACTIVE = 10,
1264 	OPTYPE_FCOE_FW_BACKUP = 11,
1265 	OPTYPE_NCSI_FW = 13,
1266 	OPTYPE_REDBOOT_DIR = 18,
1267 	OPTYPE_REDBOOT_CONFIG = 19,
1268 	OPTYPE_SH_PHY_FW = 21,
1269 	OPTYPE_FLASHISM_JUMPVECTOR = 22,
1270 	OPTYPE_UFI_DIR = 23,
1271 	OPTYPE_PHY_FW = 99
1272 };
1273 
1274 /* Maximum sizes of components in BE2 FW UFI */
1275 enum {
1276 	BE2_BIOS_COMP_MAX_SIZE = 0x40000,
1277 	BE2_REDBOOT_COMP_MAX_SIZE = 0x40000,
1278 	BE2_COMP_MAX_SIZE = 0x140000
1279 };
1280 
1281 /* Maximum sizes of components in BE3 FW UFI */
1282 enum {
1283 	BE3_NCSI_COMP_MAX_SIZE = 0x40000,
1284 	BE3_PHY_FW_COMP_MAX_SIZE = 0x40000,
1285 	BE3_BIOS_COMP_MAX_SIZE = 0x80000,
1286 	BE3_REDBOOT_COMP_MAX_SIZE = 0x100000,
1287 	BE3_COMP_MAX_SIZE = 0x200000
1288 };
1289 
1290 /* Offsets for components in BE2 FW UFI */
1291 enum {
1292 	BE2_REDBOOT_START = 0x8000,
1293 	BE2_FCOE_BIOS_START = 0x80000,
1294 	BE2_ISCSI_PRIMARY_IMAGE_START = 0x100000,
1295 	BE2_ISCSI_BACKUP_IMAGE_START = 0x240000,
1296 	BE2_FCOE_PRIMARY_IMAGE_START = 0x380000,
1297 	BE2_FCOE_BACKUP_IMAGE_START = 0x4c0000,
1298 	BE2_ISCSI_BIOS_START = 0x700000,
1299 	BE2_PXE_BIOS_START = 0x780000
1300 };
1301 
1302 /* Offsets for components in BE3 FW UFI */
1303 enum {
1304 	BE3_REDBOOT_START = 0x40000,
1305 	BE3_PHY_FW_START = 0x140000,
1306 	BE3_ISCSI_PRIMARY_IMAGE_START = 0x200000,
1307 	BE3_ISCSI_BACKUP_IMAGE_START = 0x400000,
1308 	BE3_FCOE_PRIMARY_IMAGE_START = 0x600000,
1309 	BE3_FCOE_BACKUP_IMAGE_START = 0x800000,
1310 	BE3_ISCSI_BIOS_START = 0xc00000,
1311 	BE3_PXE_BIOS_START = 0xc80000,
1312 	BE3_FCOE_BIOS_START = 0xd00000,
1313 	BE3_NCSI_START = 0xf40000
1314 };
1315 
1316 /* Component entry types */
1317 enum {
1318 	IMAGE_NCSI = 0x10,
1319 	IMAGE_OPTION_ROM_PXE = 0x20,
1320 	IMAGE_OPTION_ROM_FCOE = 0x21,
1321 	IMAGE_OPTION_ROM_ISCSI = 0x22,
1322 	IMAGE_FLASHISM_JUMPVECTOR = 0x30,
1323 	IMAGE_FIRMWARE_ISCSI = 0xa0,
1324 	IMAGE_FIRMWARE_FCOE = 0xa2,
1325 	IMAGE_FIRMWARE_BACKUP_ISCSI = 0xb0,
1326 	IMAGE_FIRMWARE_BACKUP_FCOE = 0xb2,
1327 	IMAGE_FIRMWARE_PHY = 0xc0,
1328 	IMAGE_REDBOOT_DIR = 0xd0,
1329 	IMAGE_REDBOOT_CONFIG = 0xd1,
1330 	IMAGE_UFI_DIR = 0xd2,
1331 	IMAGE_BOOT_CODE = 0xe2
1332 };
1333 
1334 struct controller_id {
1335 	u32 vendor;
1336 	u32 device;
1337 	u32 subvendor;
1338 	u32 subdevice;
1339 };
1340 
1341 struct flash_comp {
1342 	unsigned long offset;
1343 	int optype;
1344 	int size;
1345 	int img_type;
1346 };
1347 
1348 struct image_hdr {
1349 	u32 imageid;
1350 	u32 imageoffset;
1351 	u32 imagelength;
1352 	u32 image_checksum;
1353 	u8 image_version[32];
1354 };
1355 
1356 struct flash_file_hdr_g2 {
1357 	u8 sign[32];
1358 	u32 cksum;
1359 	u32 antidote;
1360 	struct controller_id cont_id;
1361 	u32 file_len;
1362 	u32 chunk_num;
1363 	u32 total_chunks;
1364 	u32 num_imgs;
1365 	u8 build[24];
1366 };
1367 
1368 /* First letter of the build version of the image */
1369 #define BLD_STR_UFI_TYPE_BE2	'2'
1370 #define BLD_STR_UFI_TYPE_BE3	'3'
1371 #define BLD_STR_UFI_TYPE_SH	'4'
1372 
1373 struct flash_file_hdr_g3 {
1374 	u8 sign[52];
1375 	u8 ufi_version[4];
1376 	u32 file_len;
1377 	u32 cksum;
1378 	u32 antidote;
1379 	u32 num_imgs;
1380 	u8 build[24];
1381 	u8 asic_type_rev;
1382 	u8 rsvd[31];
1383 };
1384 
1385 struct flash_section_hdr {
1386 	u32 format_rev;
1387 	u32 cksum;
1388 	u32 antidote;
1389 	u32 num_images;
1390 	u8 id_string[128];
1391 	u32 rsvd[4];
1392 } __packed;
1393 
1394 struct flash_section_hdr_g2 {
1395 	u32 format_rev;
1396 	u32 cksum;
1397 	u32 antidote;
1398 	u32 build_num;
1399 	u8 id_string[128];
1400 	u32 rsvd[8];
1401 } __packed;
1402 
1403 struct flash_section_entry {
1404 	u32 type;
1405 	u32 offset;
1406 	u32 pad_size;
1407 	u32 image_size;
1408 	u32 cksum;
1409 	u32 entry_point;
1410 	u16 optype;
1411 	u16 rsvd0;
1412 	u32 rsvd1;
1413 	u8 ver_data[32];
1414 } __packed;
1415 
1416 struct flash_section_info {
1417 	u8 cookie[32];
1418 	struct flash_section_hdr fsec_hdr;
1419 	struct flash_section_entry fsec_entry[32];
1420 } __packed;
1421 
1422 struct flash_section_info_g2 {
1423 	u8 cookie[32];
1424 	struct flash_section_hdr_g2 fsec_hdr;
1425 	struct flash_section_entry fsec_entry[32];
1426 } __packed;
1427 
1428 /****************** Firmware Flash ******************/
1429 #define FLASHROM_OPER_FLASH		1
1430 #define FLASHROM_OPER_SAVE		2
1431 #define FLASHROM_OPER_REPORT		4
1432 #define FLASHROM_OPER_PHY_FLASH		9
1433 #define FLASHROM_OPER_PHY_SAVE		10
1434 
1435 struct flashrom_params {
1436 	u32 op_code;
1437 	u32 op_type;
1438 	u32 data_buf_size;
1439 	u32 offset;
1440 };
1441 
1442 struct be_cmd_write_flashrom {
1443 	struct be_cmd_req_hdr hdr;
1444 	struct flashrom_params params;
1445 	u8 data_buf[32768];
1446 	u8 rsvd[4];
1447 } __packed;
1448 
1449 /* cmd to read flash crc */
1450 struct be_cmd_read_flash_crc {
1451 	struct be_cmd_req_hdr hdr;
1452 	struct flashrom_params params;
1453 	u8 crc[4];
1454 	u8 rsvd[4];
1455 } __packed;
1456 
1457 /**************** Lancer Firmware Flash ************/
1458 #define LANCER_FW_DOWNLOAD_CHUNK      (32 * 1024)
1459 #define LANCER_FW_DOWNLOAD_LOCATION   "/prg"
1460 
1461 struct amap_lancer_write_obj_context {
1462 	u8 write_length[24];
1463 	u8 reserved1[7];
1464 	u8 eof;
1465 } __packed;
1466 
1467 struct lancer_cmd_req_write_object {
1468 	struct be_cmd_req_hdr hdr;
1469 	u8 context[sizeof(struct amap_lancer_write_obj_context) / 8];
1470 	u32 write_offset;
1471 	u8 object_name[104];
1472 	u32 descriptor_count;
1473 	u32 buf_len;
1474 	u32 addr_low;
1475 	u32 addr_high;
1476 };
1477 
1478 #define LANCER_NO_RESET_NEEDED		0x00
1479 #define LANCER_FW_RESET_NEEDED		0x02
1480 struct lancer_cmd_resp_write_object {
1481 	u8 opcode;
1482 	u8 subsystem;
1483 	u8 rsvd1[2];
1484 	u8 status;
1485 	u8 additional_status;
1486 	u8 rsvd2[2];
1487 	u32 resp_len;
1488 	u32 actual_resp_len;
1489 	u32 actual_write_len;
1490 	u8 change_status;
1491 	u8 rsvd3[3];
1492 };
1493 
1494 /************************ Lancer Read FW info **************/
1495 #define LANCER_READ_FILE_CHUNK			(32*1024)
1496 #define LANCER_READ_FILE_EOF_MASK		0x80000000
1497 
1498 #define LANCER_FW_DUMP_FILE			"/dbg/dump.bin"
1499 #define LANCER_VPD_PF_FILE			"/vpd/ntr_pf.vpd"
1500 #define LANCER_VPD_VF_FILE			"/vpd/ntr_vf.vpd"
1501 
1502 struct lancer_cmd_req_read_object {
1503 	struct be_cmd_req_hdr hdr;
1504 	u32 desired_read_len;
1505 	u32 read_offset;
1506 	u8 object_name[104];
1507 	u32 descriptor_count;
1508 	u32 buf_len;
1509 	u32 addr_low;
1510 	u32 addr_high;
1511 };
1512 
1513 struct lancer_cmd_resp_read_object {
1514 	u8 opcode;
1515 	u8 subsystem;
1516 	u8 rsvd1[2];
1517 	u8 status;
1518 	u8 additional_status;
1519 	u8 rsvd2[2];
1520 	u32 resp_len;
1521 	u32 actual_resp_len;
1522 	u32 actual_read_len;
1523 	u32 eof;
1524 };
1525 
1526 struct lancer_cmd_req_delete_object {
1527 	struct be_cmd_req_hdr hdr;
1528 	u32 rsvd1;
1529 	u32 rsvd2;
1530 	u8 object_name[104];
1531 };
1532 
1533 /************************ WOL *******************************/
1534 struct be_cmd_req_acpi_wol_magic_config{
1535 	struct be_cmd_req_hdr hdr;
1536 	u32 rsvd0[145];
1537 	u8 magic_mac[6];
1538 	u8 rsvd2[2];
1539 } __packed;
1540 
1541 struct be_cmd_req_acpi_wol_magic_config_v1 {
1542 	struct be_cmd_req_hdr hdr;
1543 	u8 rsvd0[2];
1544 	u8 query_options;
1545 	u8 rsvd1[5];
1546 	u32 rsvd2[288];
1547 	u8 magic_mac[6];
1548 	u8 rsvd3[22];
1549 } __packed;
1550 
1551 struct be_cmd_resp_acpi_wol_magic_config_v1 {
1552 	struct be_cmd_resp_hdr hdr;
1553 	u8 rsvd0[2];
1554 	u8 wol_settings;
1555 	u8 rsvd1[5];
1556 	u32 rsvd2[295];
1557 } __packed;
1558 
1559 #define BE_GET_WOL_CAP			2
1560 
1561 #define BE_WOL_CAP			0x1
1562 #define BE_PME_D0_CAP			0x8
1563 #define BE_PME_D1_CAP			0x10
1564 #define BE_PME_D2_CAP			0x20
1565 #define BE_PME_D3HOT_CAP		0x40
1566 #define BE_PME_D3COLD_CAP		0x80
1567 
1568 /********************** LoopBack test *********************/
1569 #define SET_LB_MODE_TIMEOUT		12000
1570 
1571 struct be_cmd_req_loopback_test {
1572 	struct be_cmd_req_hdr hdr;
1573 	u32 loopback_type;
1574 	u32 num_pkts;
1575 	u64 pattern;
1576 	u32 src_port;
1577 	u32 dest_port;
1578 	u32 pkt_size;
1579 };
1580 
1581 struct be_cmd_resp_loopback_test {
1582 	struct be_cmd_resp_hdr resp_hdr;
1583 	u32    status;
1584 	u32    num_txfer;
1585 	u32    num_rx;
1586 	u32    miscomp_off;
1587 	u32    ticks_compl;
1588 };
1589 
1590 struct be_cmd_req_set_lmode {
1591 	struct be_cmd_req_hdr hdr;
1592 	u8 src_port;
1593 	u8 dest_port;
1594 	u8 loopback_type;
1595 	u8 loopback_state;
1596 };
1597 
1598 /********************** DDR DMA test *********************/
1599 struct be_cmd_req_ddrdma_test {
1600 	struct be_cmd_req_hdr hdr;
1601 	u64 pattern;
1602 	u32 byte_count;
1603 	u32 rsvd0;
1604 	u8  snd_buff[4096];
1605 	u8  rsvd1[4096];
1606 };
1607 
1608 struct be_cmd_resp_ddrdma_test {
1609 	struct be_cmd_resp_hdr hdr;
1610 	u64 pattern;
1611 	u32 byte_cnt;
1612 	u32 snd_err;
1613 	u8  rsvd0[4096];
1614 	u8  rcv_buff[4096];
1615 };
1616 
1617 /*********************** SEEPROM Read ***********************/
1618 
1619 #define BE_READ_SEEPROM_LEN 1024
1620 struct be_cmd_req_seeprom_read {
1621 	struct be_cmd_req_hdr hdr;
1622 	u8 rsvd0[BE_READ_SEEPROM_LEN];
1623 };
1624 
1625 struct be_cmd_resp_seeprom_read {
1626 	struct be_cmd_req_hdr hdr;
1627 	u8 seeprom_data[BE_READ_SEEPROM_LEN];
1628 };
1629 
1630 enum {
1631 	PHY_TYPE_CX4_10GB = 0,
1632 	PHY_TYPE_XFP_10GB,
1633 	PHY_TYPE_SFP_1GB,
1634 	PHY_TYPE_SFP_PLUS_10GB,
1635 	PHY_TYPE_KR_10GB,
1636 	PHY_TYPE_KX4_10GB,
1637 	PHY_TYPE_BASET_10GB,
1638 	PHY_TYPE_BASET_1GB,
1639 	PHY_TYPE_BASEX_1GB,
1640 	PHY_TYPE_SGMII,
1641 	PHY_TYPE_QSFP,
1642 	PHY_TYPE_KR4_40GB,
1643 	PHY_TYPE_KR2_20GB,
1644 	PHY_TYPE_TN_8022,
1645 	PHY_TYPE_DISABLED = 255
1646 };
1647 
1648 #define BE_SUPPORTED_SPEED_NONE		0
1649 #define BE_SUPPORTED_SPEED_10MBPS	1
1650 #define BE_SUPPORTED_SPEED_100MBPS	2
1651 #define BE_SUPPORTED_SPEED_1GBPS	4
1652 #define BE_SUPPORTED_SPEED_10GBPS	8
1653 #define BE_SUPPORTED_SPEED_20GBPS	0x10
1654 #define BE_SUPPORTED_SPEED_40GBPS	0x20
1655 
1656 #define BE_AN_EN			0x2
1657 #define BE_PAUSE_SYM_EN			0x80
1658 
1659 /* MAC speed valid values */
1660 #define SPEED_DEFAULT  0x0
1661 #define SPEED_FORCED_10GB  0x1
1662 #define SPEED_FORCED_1GB  0x2
1663 #define SPEED_AUTONEG_10GB  0x3
1664 #define SPEED_AUTONEG_1GB  0x4
1665 #define SPEED_AUTONEG_100MB  0x5
1666 #define SPEED_AUTONEG_10GB_1GB 0x6
1667 #define SPEED_AUTONEG_10GB_1GB_100MB 0x7
1668 #define SPEED_AUTONEG_1GB_100MB  0x8
1669 #define SPEED_AUTONEG_10MB  0x9
1670 #define SPEED_AUTONEG_1GB_100MB_10MB 0xa
1671 #define SPEED_AUTONEG_100MB_10MB 0xb
1672 #define SPEED_FORCED_100MB  0xc
1673 #define SPEED_FORCED_10MB  0xd
1674 
1675 struct be_cmd_req_get_phy_info {
1676 	struct be_cmd_req_hdr hdr;
1677 	u8 rsvd0[24];
1678 };
1679 
1680 struct be_phy_info {
1681 	u16 phy_type;
1682 	u16 interface_type;
1683 	u32 misc_params;
1684 	u16 ext_phy_details;
1685 	u16 rsvd;
1686 	u16 auto_speeds_supported;
1687 	u16 fixed_speeds_supported;
1688 	u32 future_use[2];
1689 };
1690 
1691 struct be_cmd_resp_get_phy_info {
1692 	struct be_cmd_req_hdr hdr;
1693 	struct be_phy_info phy_info;
1694 };
1695 
1696 /*********************** Set QOS ***********************/
1697 
1698 #define BE_QOS_BITS_NIC				1
1699 
1700 struct be_cmd_req_set_qos {
1701 	struct be_cmd_req_hdr hdr;
1702 	u32 valid_bits;
1703 	u32 max_bps_nic;
1704 	u32 rsvd[7];
1705 };
1706 
1707 /*********************** Controller Attributes ***********************/
1708 struct mgmt_hba_attribs {
1709 	u32 rsvd0[24];
1710 	u8 controller_model_number[32];
1711 	u32 rsvd1[16];
1712 	u32 controller_serial_number[8];
1713 	u32 rsvd2[55];
1714 	u8 rsvd3[3];
1715 	u8 phy_port;
1716 	u32 rsvd4[13];
1717 } __packed;
1718 
1719 struct mgmt_controller_attrib {
1720 	struct mgmt_hba_attribs hba_attribs;
1721 	u32 rsvd0[10];
1722 } __packed;
1723 
1724 struct be_cmd_req_cntl_attribs {
1725 	struct be_cmd_req_hdr hdr;
1726 };
1727 
1728 struct be_cmd_resp_cntl_attribs {
1729 	struct be_cmd_resp_hdr hdr;
1730 	struct mgmt_controller_attrib attribs;
1731 };
1732 
1733 /*********************** Set driver function ***********************/
1734 #define CAPABILITY_SW_TIMESTAMPS	2
1735 #define CAPABILITY_BE3_NATIVE_ERX_API	4
1736 
1737 struct be_cmd_req_set_func_cap {
1738 	struct be_cmd_req_hdr hdr;
1739 	u32 valid_cap_flags;
1740 	u32 cap_flags;
1741 	u8 rsvd[212];
1742 };
1743 
1744 struct be_cmd_resp_set_func_cap {
1745 	struct be_cmd_resp_hdr hdr;
1746 	u32 valid_cap_flags;
1747 	u32 cap_flags;
1748 	u8 rsvd[212];
1749 };
1750 
1751 /*********************** Function Privileges ***********************/
1752 enum {
1753 	BE_PRIV_DEFAULT = 0x1,
1754 	BE_PRIV_LNKQUERY = 0x2,
1755 	BE_PRIV_LNKSTATS = 0x4,
1756 	BE_PRIV_LNKMGMT = 0x8,
1757 	BE_PRIV_LNKDIAG = 0x10,
1758 	BE_PRIV_UTILQUERY = 0x20,
1759 	BE_PRIV_FILTMGMT = 0x40,
1760 	BE_PRIV_IFACEMGMT = 0x80,
1761 	BE_PRIV_VHADM = 0x100,
1762 	BE_PRIV_DEVCFG = 0x200,
1763 	BE_PRIV_DEVSEC = 0x400
1764 };
1765 #define MAX_PRIVILEGES		(BE_PRIV_VHADM | BE_PRIV_DEVCFG | \
1766 				 BE_PRIV_DEVSEC)
1767 #define MIN_PRIVILEGES		BE_PRIV_DEFAULT
1768 
1769 struct be_cmd_priv_map {
1770 	u8 opcode;
1771 	u8 subsystem;
1772 	u32 priv_mask;
1773 };
1774 
1775 struct be_cmd_req_get_fn_privileges {
1776 	struct be_cmd_req_hdr hdr;
1777 	u32 rsvd;
1778 };
1779 
1780 struct be_cmd_resp_get_fn_privileges {
1781 	struct be_cmd_resp_hdr hdr;
1782 	u32 privilege_mask;
1783 };
1784 
1785 struct be_cmd_req_set_fn_privileges {
1786 	struct be_cmd_req_hdr hdr;
1787 	u32 privileges;		/* Used by BE3, SH-R */
1788 	u32 privileges_lancer;	/* Used by Lancer */
1789 };
1790 
1791 /******************** GET/SET_MACLIST  **************************/
1792 #define BE_MAX_MAC			64
1793 struct be_cmd_req_get_mac_list {
1794 	struct be_cmd_req_hdr hdr;
1795 	u8 mac_type;
1796 	u8 perm_override;
1797 	u16 iface_id;
1798 	u32 mac_id;
1799 	u32 rsvd[3];
1800 } __packed;
1801 
1802 struct get_list_macaddr {
1803 	u16 mac_addr_size;
1804 	union {
1805 		u8 macaddr[6];
1806 		struct {
1807 			u8 rsvd[2];
1808 			u32 mac_id;
1809 		} __packed s_mac_id;
1810 	} __packed mac_addr_id;
1811 } __packed;
1812 
1813 struct be_cmd_resp_get_mac_list {
1814 	struct be_cmd_resp_hdr hdr;
1815 	struct get_list_macaddr fd_macaddr; /* Factory default mac */
1816 	struct get_list_macaddr macid_macaddr; /* soft mac */
1817 	u8 true_mac_count;
1818 	u8 pseudo_mac_count;
1819 	u8 mac_list_size;
1820 	u8 rsvd;
1821 	/* perm override mac */
1822 	struct get_list_macaddr macaddr_list[BE_MAX_MAC];
1823 } __packed;
1824 
1825 struct be_cmd_req_set_mac_list {
1826 	struct be_cmd_req_hdr hdr;
1827 	u8 mac_count;
1828 	u8 rsvd1;
1829 	u16 rsvd2;
1830 	struct macaddr mac[BE_MAX_MAC];
1831 } __packed;
1832 
1833 /*********************** HSW Config ***********************/
1834 #define PORT_FWD_TYPE_VEPA		0x3
1835 #define PORT_FWD_TYPE_VEB		0x2
1836 #define PORT_FWD_TYPE_PASSTHRU		0x1
1837 
1838 #define ENABLE_MAC_SPOOFCHK		0x2
1839 #define DISABLE_MAC_SPOOFCHK		0x3
1840 
1841 struct amap_set_hsw_context {
1842 	u8 interface_id[16];
1843 	u8 rsvd0[8];
1844 	u8 mac_spoofchk[2];
1845 	u8 rsvd1[4];
1846 	u8 pvid_valid;
1847 	u8 pport;
1848 	u8 rsvd2[6];
1849 	u8 port_fwd_type[3];
1850 	u8 rsvd3[5];
1851 	u8 vlan_spoofchk[2];
1852 	u8 pvid[16];
1853 	u8 rsvd4[32];
1854 	u8 rsvd5[32];
1855 	u8 rsvd6[32];
1856 } __packed;
1857 
1858 struct be_cmd_req_set_hsw_config {
1859 	struct be_cmd_req_hdr hdr;
1860 	u8 context[sizeof(struct amap_set_hsw_context) / 8];
1861 } __packed;
1862 
1863 struct amap_get_hsw_req_context {
1864 	u8 interface_id[16];
1865 	u8 rsvd0[14];
1866 	u8 pvid_valid;
1867 	u8 pport;
1868 } __packed;
1869 
1870 struct amap_get_hsw_resp_context {
1871 	u8 rsvd0[6];
1872 	u8 port_fwd_type[3];
1873 	u8 rsvd1[5];
1874 	u8 spoofchk;
1875 	u8 rsvd2;
1876 	u8 pvid[16];
1877 	u8 rsvd3[32];
1878 	u8 rsvd4[32];
1879 	u8 rsvd5[32];
1880 } __packed;
1881 
1882 struct be_cmd_req_get_hsw_config {
1883 	struct be_cmd_req_hdr hdr;
1884 	u8 context[sizeof(struct amap_get_hsw_req_context) / 8];
1885 } __packed;
1886 
1887 struct be_cmd_resp_get_hsw_config {
1888 	struct be_cmd_resp_hdr hdr;
1889 	u8 context[sizeof(struct amap_get_hsw_resp_context) / 8];
1890 	u32 rsvd;
1891 };
1892 
1893 /******************* get port names ***************/
1894 struct be_cmd_req_get_port_name {
1895 	struct be_cmd_req_hdr hdr;
1896 	u32 rsvd0;
1897 };
1898 
1899 struct be_cmd_resp_get_port_name {
1900 	struct be_cmd_req_hdr hdr;
1901 	u8 port_name[4];
1902 };
1903 
1904 /*************** HW Stats Get v1 **********************************/
1905 #define BE_TXP_SW_SZ			48
1906 struct be_port_rxf_stats_v1 {
1907 	u32 rsvd0[12];
1908 	u32 rx_crc_errors;
1909 	u32 rx_alignment_symbol_errors;
1910 	u32 rx_pause_frames;
1911 	u32 rx_priority_pause_frames;
1912 	u32 rx_control_frames;
1913 	u32 rx_in_range_errors;
1914 	u32 rx_out_range_errors;
1915 	u32 rx_frame_too_long;
1916 	u32 rx_address_filtered;
1917 	u32 rx_dropped_too_small;
1918 	u32 rx_dropped_too_short;
1919 	u32 rx_dropped_header_too_small;
1920 	u32 rx_dropped_tcp_length;
1921 	u32 rx_dropped_runt;
1922 	u32 rsvd1[10];
1923 	u32 rx_ip_checksum_errs;
1924 	u32 rx_tcp_checksum_errs;
1925 	u32 rx_udp_checksum_errs;
1926 	u32 rsvd2[7];
1927 	u32 rx_switched_unicast_packets;
1928 	u32 rx_switched_multicast_packets;
1929 	u32 rx_switched_broadcast_packets;
1930 	u32 rsvd3[3];
1931 	u32 tx_pauseframes;
1932 	u32 tx_priority_pauseframes;
1933 	u32 tx_controlframes;
1934 	u32 rsvd4[10];
1935 	u32 rxpp_fifo_overflow_drop;
1936 	u32 rx_input_fifo_overflow_drop;
1937 	u32 pmem_fifo_overflow_drop;
1938 	u32 jabber_events;
1939 	u32 rsvd5[3];
1940 };
1941 
1942 
1943 struct be_rxf_stats_v1 {
1944 	struct be_port_rxf_stats_v1 port[4];
1945 	u32 rsvd0[2];
1946 	u32 rx_drops_no_pbuf;
1947 	u32 rx_drops_no_txpb;
1948 	u32 rx_drops_no_erx_descr;
1949 	u32 rx_drops_no_tpre_descr;
1950 	u32 rsvd1[6];
1951 	u32 rx_drops_too_many_frags;
1952 	u32 rx_drops_invalid_ring;
1953 	u32 forwarded_packets;
1954 	u32 rx_drops_mtu;
1955 	u32 rsvd2[14];
1956 };
1957 
1958 struct be_erx_stats_v1 {
1959 	u32 rx_drops_no_fragments[68];     /* dwordS 0 to 67*/
1960 	u32 rsvd[4];
1961 };
1962 
1963 struct be_port_rxf_stats_v2 {
1964 	u32 rsvd0[10];
1965 	u32 roce_bytes_received_lsd;
1966 	u32 roce_bytes_received_msd;
1967 	u32 rsvd1[5];
1968 	u32 roce_frames_received;
1969 	u32 rx_crc_errors;
1970 	u32 rx_alignment_symbol_errors;
1971 	u32 rx_pause_frames;
1972 	u32 rx_priority_pause_frames;
1973 	u32 rx_control_frames;
1974 	u32 rx_in_range_errors;
1975 	u32 rx_out_range_errors;
1976 	u32 rx_frame_too_long;
1977 	u32 rx_address_filtered;
1978 	u32 rx_dropped_too_small;
1979 	u32 rx_dropped_too_short;
1980 	u32 rx_dropped_header_too_small;
1981 	u32 rx_dropped_tcp_length;
1982 	u32 rx_dropped_runt;
1983 	u32 rsvd2[10];
1984 	u32 rx_ip_checksum_errs;
1985 	u32 rx_tcp_checksum_errs;
1986 	u32 rx_udp_checksum_errs;
1987 	u32 rsvd3[7];
1988 	u32 rx_switched_unicast_packets;
1989 	u32 rx_switched_multicast_packets;
1990 	u32 rx_switched_broadcast_packets;
1991 	u32 rsvd4[3];
1992 	u32 tx_pauseframes;
1993 	u32 tx_priority_pauseframes;
1994 	u32 tx_controlframes;
1995 	u32 rsvd5[10];
1996 	u32 rxpp_fifo_overflow_drop;
1997 	u32 rx_input_fifo_overflow_drop;
1998 	u32 pmem_fifo_overflow_drop;
1999 	u32 jabber_events;
2000 	u32 rsvd6[3];
2001 	u32 rx_drops_payload_size;
2002 	u32 rx_drops_clipped_header;
2003 	u32 rx_drops_crc;
2004 	u32 roce_drops_payload_len;
2005 	u32 roce_drops_crc;
2006 	u32 rsvd7[19];
2007 };
2008 
2009 struct be_rxf_stats_v2 {
2010 	struct be_port_rxf_stats_v2 port[4];
2011 	u32 rsvd0[2];
2012 	u32 rx_drops_no_pbuf;
2013 	u32 rx_drops_no_txpb;
2014 	u32 rx_drops_no_erx_descr;
2015 	u32 rx_drops_no_tpre_descr;
2016 	u32 rsvd1[6];
2017 	u32 rx_drops_too_many_frags;
2018 	u32 rx_drops_invalid_ring;
2019 	u32 forwarded_packets;
2020 	u32 rx_drops_mtu;
2021 	u32 rsvd2[35];
2022 };
2023 
2024 struct be_hw_stats_v1 {
2025 	struct be_rxf_stats_v1 rxf;
2026 	u32 rsvd0[BE_TXP_SW_SZ];
2027 	struct be_erx_stats_v1 erx;
2028 	struct be_pmem_stats pmem;
2029 	u32 rsvd1[18];
2030 };
2031 
2032 struct be_cmd_req_get_stats_v1 {
2033 	struct be_cmd_req_hdr hdr;
2034 	u8 rsvd[sizeof(struct be_hw_stats_v1)];
2035 };
2036 
2037 struct be_cmd_resp_get_stats_v1 {
2038 	struct be_cmd_resp_hdr hdr;
2039 	struct be_hw_stats_v1 hw_stats;
2040 };
2041 
2042 struct be_erx_stats_v2 {
2043 	u32 rx_drops_no_fragments[136];     /* dwordS 0 to 135*/
2044 	u32 rsvd[3];
2045 };
2046 
2047 struct be_hw_stats_v2 {
2048 	struct be_rxf_stats_v2 rxf;
2049 	u32 rsvd0[BE_TXP_SW_SZ];
2050 	struct be_erx_stats_v2 erx;
2051 	struct be_pmem_stats pmem;
2052 	u32 rsvd1[18];
2053 };
2054 
2055 struct be_cmd_req_get_stats_v2 {
2056 	struct be_cmd_req_hdr hdr;
2057 	u8 rsvd[sizeof(struct be_hw_stats_v2)];
2058 };
2059 
2060 struct be_cmd_resp_get_stats_v2 {
2061 	struct be_cmd_resp_hdr hdr;
2062 	struct be_hw_stats_v2 hw_stats;
2063 };
2064 
2065 /************** get fat capabilites *******************/
2066 #define MAX_MODULES 27
2067 #define MAX_MODES 4
2068 #define MODE_UART 0
2069 #define FW_LOG_LEVEL_DEFAULT 48
2070 #define FW_LOG_LEVEL_FATAL 64
2071 
2072 struct ext_fat_mode {
2073 	u8 mode;
2074 	u8 rsvd0;
2075 	u16 port_mask;
2076 	u32 dbg_lvl;
2077 	u64 fun_mask;
2078 } __packed;
2079 
2080 struct ext_fat_modules {
2081 	u8 modules_str[32];
2082 	u32 modules_id;
2083 	u32 num_modes;
2084 	struct ext_fat_mode trace_lvl[MAX_MODES];
2085 } __packed;
2086 
2087 struct be_fat_conf_params {
2088 	u32 max_log_entries;
2089 	u32 log_entry_size;
2090 	u8 log_type;
2091 	u8 max_log_funs;
2092 	u8 max_log_ports;
2093 	u8 rsvd0;
2094 	u32 supp_modes;
2095 	u32 num_modules;
2096 	struct ext_fat_modules module[MAX_MODULES];
2097 } __packed;
2098 
2099 struct be_cmd_req_get_ext_fat_caps {
2100 	struct be_cmd_req_hdr hdr;
2101 	u32 parameter_type;
2102 };
2103 
2104 struct be_cmd_resp_get_ext_fat_caps {
2105 	struct be_cmd_resp_hdr hdr;
2106 	struct be_fat_conf_params get_params;
2107 };
2108 
2109 struct be_cmd_req_set_ext_fat_caps {
2110 	struct be_cmd_req_hdr hdr;
2111 	struct be_fat_conf_params set_params;
2112 };
2113 
2114 #define RESOURCE_DESC_SIZE_V0			72
2115 #define RESOURCE_DESC_SIZE_V1			88
2116 #define PCIE_RESOURCE_DESC_TYPE_V0		0x40
2117 #define NIC_RESOURCE_DESC_TYPE_V0		0x41
2118 #define PCIE_RESOURCE_DESC_TYPE_V1		0x50
2119 #define NIC_RESOURCE_DESC_TYPE_V1		0x51
2120 #define PORT_RESOURCE_DESC_TYPE_V1		0x55
2121 #define MAX_RESOURCE_DESC			264
2122 
2123 #define IF_CAPS_FLAGS_VALID_SHIFT		0	/* IF caps valid */
2124 #define VFT_SHIFT				3	/* VF template */
2125 #define IMM_SHIFT				6	/* Immediate */
2126 #define NOSV_SHIFT				7	/* No save */
2127 
2128 struct be_res_desc_hdr {
2129 	u8 desc_type;
2130 	u8 desc_len;
2131 } __packed;
2132 
2133 struct be_port_res_desc {
2134 	struct be_res_desc_hdr hdr;
2135 	u8 rsvd0;
2136 	u8 flags;
2137 	u8 link_num;
2138 	u8 mc_type;
2139 	u16 rsvd1;
2140 
2141 #define NV_TYPE_MASK				0x3	/* bits 0-1 */
2142 #define NV_TYPE_DISABLED			1
2143 #define NV_TYPE_VXLAN				3
2144 #define SOCVID_SHIFT				2	/* Strip outer vlan */
2145 #define RCVID_SHIFT				4	/* Report vlan */
2146 #define PF_NUM_IGNORE				255
2147 	u8 nv_flags;
2148 	u8 rsvd2;
2149 	__le16 nv_port;					/* vxlan/gre port */
2150 	u32 rsvd3[19];
2151 } __packed;
2152 
2153 struct be_pcie_res_desc {
2154 	struct be_res_desc_hdr hdr;
2155 	u8 rsvd0;
2156 	u8 flags;
2157 	u16 rsvd1;
2158 	u8 pf_num;
2159 	u8 rsvd2;
2160 	u32 rsvd3;
2161 	u8 sriov_state;
2162 	u8 pf_state;
2163 	u8 pf_type;
2164 	u8 rsvd4;
2165 	u16 num_vfs;
2166 	u16 rsvd5;
2167 	u32 rsvd6[17];
2168 } __packed;
2169 
2170 struct be_nic_res_desc {
2171 	struct be_res_desc_hdr hdr;
2172 	u8 rsvd1;
2173 
2174 #define QUN_SHIFT				4 /* QoS is in absolute units */
2175 	u8 flags;
2176 	u8 vf_num;
2177 	u8 rsvd2;
2178 	u8 pf_num;
2179 	u8 rsvd3;
2180 	u16 unicast_mac_count;
2181 	u8 rsvd4[6];
2182 	u16 mcc_count;
2183 	u16 vlan_count;
2184 	u16 mcast_mac_count;
2185 	u16 txq_count;
2186 	u16 rq_count;
2187 	u16 rssq_count;
2188 	u16 lro_count;
2189 	u16 cq_count;
2190 	u16 toe_conn_count;
2191 	u16 eq_count;
2192 	u16 vlan_id;
2193 	u16 iface_count;
2194 	u32 cap_flags;
2195 	u8 link_param;
2196 	u8 rsvd6;
2197 	u16 channel_id_param;
2198 	u32 bw_min;
2199 	u32 bw_max;
2200 	u8 acpi_params;
2201 	u8 wol_param;
2202 	u16 rsvd7;
2203 	u16 tunnel_iface_count;
2204 	u16 direct_tenant_iface_count;
2205 	u32 rsvd8[6];
2206 } __packed;
2207 
2208 /************ Multi-Channel type ***********/
2209 enum mc_type {
2210 	MC_NONE = 0x01,
2211 	UMC = 0x02,
2212 	FLEX10 = 0x03,
2213 	vNIC1 = 0x04,
2214 	nPAR = 0x05,
2215 	UFP = 0x06,
2216 	vNIC2 = 0x07
2217 };
2218 
2219 /* Is BE in a multi-channel mode */
2220 static inline bool be_is_mc(struct be_adapter *adapter)
2221 {
2222 	return adapter->mc_type > MC_NONE;
2223 }
2224 
2225 struct be_cmd_req_get_func_config {
2226 	struct be_cmd_req_hdr hdr;
2227 };
2228 
2229 struct be_cmd_resp_get_func_config {
2230 	struct be_cmd_resp_hdr hdr;
2231 	u32 desc_count;
2232 	u8 func_param[MAX_RESOURCE_DESC * RESOURCE_DESC_SIZE_V1];
2233 };
2234 
2235 enum {
2236 	RESOURCE_LIMITS,
2237 	RESOURCE_MODIFIABLE
2238 };
2239 
2240 struct be_cmd_req_get_profile_config {
2241 	struct be_cmd_req_hdr hdr;
2242 	u8 rsvd;
2243 #define ACTIVE_PROFILE_TYPE			0x2
2244 #define QUERY_MODIFIABLE_FIELDS_TYPE		BIT(3)
2245 	u8 type;
2246 	u16 rsvd1;
2247 };
2248 
2249 struct be_cmd_resp_get_profile_config {
2250 	struct be_cmd_resp_hdr hdr;
2251 	__le16 desc_count;
2252 	u16 rsvd;
2253 	u8 func_param[MAX_RESOURCE_DESC * RESOURCE_DESC_SIZE_V1];
2254 };
2255 
2256 #define FIELD_MODIFIABLE			0xFFFF
2257 struct be_cmd_req_set_profile_config {
2258 	struct be_cmd_req_hdr hdr;
2259 	u32 rsvd;
2260 	u32 desc_count;
2261 	u8 desc[2 * RESOURCE_DESC_SIZE_V1];
2262 } __packed;
2263 
2264 struct be_cmd_req_get_active_profile {
2265 	struct be_cmd_req_hdr hdr;
2266 	u32 rsvd;
2267 } __packed;
2268 
2269 struct be_cmd_resp_get_active_profile {
2270 	struct be_cmd_resp_hdr hdr;
2271 	u16 active_profile_id;
2272 	u16 next_profile_id;
2273 } __packed;
2274 
2275 struct be_cmd_enable_disable_vf {
2276 	struct be_cmd_req_hdr hdr;
2277 	u8 enable;
2278 	u8 rsvd[3];
2279 };
2280 
2281 struct be_cmd_req_intr_set {
2282 	struct be_cmd_req_hdr hdr;
2283 	u8 intr_enabled;
2284 	u8 rsvd[3];
2285 };
2286 
2287 static inline bool check_privilege(struct be_adapter *adapter, u32 flags)
2288 {
2289 	return flags & adapter->cmd_privileges ? true : false;
2290 }
2291 
2292 /************** Get IFACE LIST *******************/
2293 struct be_if_desc {
2294 	u32 if_id;
2295 	u32 cap_flags;
2296 	u32 en_flags;
2297 };
2298 
2299 struct be_cmd_req_get_iface_list {
2300 	struct be_cmd_req_hdr hdr;
2301 };
2302 
2303 struct be_cmd_resp_get_iface_list {
2304 	struct be_cmd_req_hdr hdr;
2305 	u32 if_cnt;
2306 	struct be_if_desc if_desc;
2307 };
2308 
2309 /*************** Set logical link ********************/
2310 #define PLINK_ENABLE            BIT(0)
2311 #define PLINK_TRACK             BIT(8)
2312 struct be_cmd_req_set_ll_link {
2313 	struct be_cmd_req_hdr hdr;
2314 	u32 link_config; /* Bit 0: UP_DOWN, Bit 9: PLINK */
2315 };
2316 
2317 /************** Manage IFACE Filters *******************/
2318 #define OP_CONVERT_NORMAL_TO_TUNNEL		0
2319 #define OP_CONVERT_TUNNEL_TO_NORMAL		1
2320 
2321 struct be_cmd_req_manage_iface_filters {
2322 	struct be_cmd_req_hdr hdr;
2323 	u8  op;
2324 	u8  rsvd0;
2325 	u8  flags;
2326 	u8  rsvd1;
2327 	u32 tunnel_iface_id;
2328 	u32 target_iface_id;
2329 	u8  mac[6];
2330 	u16 vlan_tag;
2331 	u32 tenant_id;
2332 	u32 filter_id;
2333 	u32 cap_flags;
2334 	u32 cap_control_flags;
2335 } __packed;
2336 
2337 int be_pci_fnum_get(struct be_adapter *adapter);
2338 int be_fw_wait_ready(struct be_adapter *adapter);
2339 int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
2340 			  bool permanent, u32 if_handle, u32 pmac_id);
2341 int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, u32 if_id,
2342 		    u32 *pmac_id, u32 domain);
2343 int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id,
2344 		    u32 domain);
2345 int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags,
2346 		     u32 *if_handle, u32 domain);
2347 int be_cmd_if_destroy(struct be_adapter *adapter, int if_handle, u32 domain);
2348 int be_cmd_eq_create(struct be_adapter *adapter, struct be_eq_obj *eqo);
2349 int be_cmd_cq_create(struct be_adapter *adapter, struct be_queue_info *cq,
2350 		     struct be_queue_info *eq, bool no_delay,
2351 		     int num_cqe_dma_coalesce);
2352 int be_cmd_mccq_create(struct be_adapter *adapter, struct be_queue_info *mccq,
2353 		       struct be_queue_info *cq);
2354 int be_cmd_txq_create(struct be_adapter *adapter, struct be_tx_obj *txo);
2355 int be_cmd_rxq_create(struct be_adapter *adapter, struct be_queue_info *rxq,
2356 		      u16 cq_id, u16 frag_size, u32 if_id, u32 rss, u8 *rss_id);
2357 int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
2358 		     int type);
2359 int be_cmd_rxq_destroy(struct be_adapter *adapter, struct be_queue_info *q);
2360 int be_cmd_link_status_query(struct be_adapter *adapter, u16 *link_speed,
2361 			     u8 *link_status, u32 dom);
2362 int be_cmd_reset(struct be_adapter *adapter);
2363 int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd);
2364 int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
2365 			       struct be_dma_mem *nonemb_cmd);
2366 int be_cmd_get_fw_ver(struct be_adapter *adapter);
2367 int be_cmd_modify_eqd(struct be_adapter *adapter, struct be_set_eqd *, int num);
2368 int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array,
2369 		       u32 num, u32 domain);
2370 int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 status);
2371 int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc);
2372 int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc);
2373 int be_cmd_query_fw_cfg(struct be_adapter *adapter);
2374 int be_cmd_reset_function(struct be_adapter *adapter);
2375 int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
2376 		      u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey);
2377 int be_process_mcc(struct be_adapter *adapter);
2378 int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num, u8 beacon,
2379 			    u8 status, u8 state);
2380 int be_cmd_get_beacon_state(struct be_adapter *adapter, u8 port_num,
2381 			    u32 *state);
2382 int be_cmd_read_port_transceiver_data(struct be_adapter *adapter,
2383 				      u8 page_num, u8 *data);
2384 int be_cmd_query_cable_type(struct be_adapter *adapter);
2385 int be_cmd_query_sfp_info(struct be_adapter *adapter);
2386 int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
2387 			   u32 data_size, u32 data_offset, const char *obj_name,
2388 			   u32 *data_read, u32 *eof, u8 *addn_status);
2389 int lancer_fw_download(struct be_adapter *adapter, const struct firmware *fw);
2390 int be_fw_download(struct be_adapter *adapter, const struct firmware *fw);
2391 int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
2392 			    struct be_dma_mem *nonemb_cmd);
2393 int be_cmd_fw_init(struct be_adapter *adapter);
2394 int be_cmd_fw_clean(struct be_adapter *adapter);
2395 void be_async_mcc_enable(struct be_adapter *adapter);
2396 void be_async_mcc_disable(struct be_adapter *adapter);
2397 int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
2398 			 u32 loopback_type, u32 pkt_size, u32 num_pkts,
2399 			 u64 pattern);
2400 int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern, u32 byte_cnt,
2401 			struct be_dma_mem *cmd);
2402 int be_cmd_get_seeprom_data(struct be_adapter *adapter,
2403 			    struct be_dma_mem *nonemb_cmd);
2404 int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
2405 			u8 loopback_type, u8 enable);
2406 int be_cmd_get_phy_info(struct be_adapter *adapter);
2407 int be_cmd_config_qos(struct be_adapter *adapter, u32 max_rate,
2408 		      u16 link_speed, u8 domain);
2409 void be_detect_error(struct be_adapter *adapter);
2410 int be_cmd_get_die_temperature(struct be_adapter *adapter);
2411 int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
2412 int be_cmd_get_fat_dump_len(struct be_adapter *adapter, u32 *dump_size);
2413 int be_cmd_get_fat_dump(struct be_adapter *adapter, u32 buf_len, void *buf);
2414 int be_cmd_req_native_mode(struct be_adapter *adapter);
2415 int be_cmd_get_fn_privileges(struct be_adapter *adapter, u32 *privilege,
2416 			     u32 domain);
2417 int be_cmd_set_fn_privileges(struct be_adapter *adapter, u32 privileges,
2418 			     u32 vf_num);
2419 int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
2420 			     bool *pmac_id_active, u32 *pmac_id,
2421 			     u32 if_handle, u8 domain);
2422 int be_cmd_get_active_mac(struct be_adapter *adapter, u32 pmac_id, u8 *mac,
2423 			  u32 if_handle, bool active, u32 domain);
2424 int be_cmd_get_perm_mac(struct be_adapter *adapter, u8 *mac);
2425 int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array, u8 mac_count,
2426 			u32 domain);
2427 int be_cmd_set_mac(struct be_adapter *adapter, u8 *mac, int if_id, u32 dom);
2428 int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid, u32 domain,
2429 			  u16 intf_id, u16 hsw_mode, u8 spoofchk);
2430 int be_cmd_get_hsw_config(struct be_adapter *adapter, u16 *pvid, u32 domain,
2431 			  u16 intf_id, u8 *mode, bool *spoofchk);
2432 int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter);
2433 int be_cmd_set_fw_log_level(struct be_adapter *adapter, u32 level);
2434 int be_cmd_get_fw_log_level(struct be_adapter *adapter);
2435 int be_cmd_get_ext_fat_capabilites(struct be_adapter *adapter,
2436 				   struct be_dma_mem *cmd);
2437 int be_cmd_set_ext_fat_capabilites(struct be_adapter *adapter,
2438 				   struct be_dma_mem *cmd,
2439 				   struct be_fat_conf_params *cfgs);
2440 int lancer_physdev_ctrl(struct be_adapter *adapter, u32 mask);
2441 int lancer_initiate_dump(struct be_adapter *adapter);
2442 int lancer_delete_dump(struct be_adapter *adapter);
2443 bool dump_present(struct be_adapter *adapter);
2444 int lancer_test_and_set_rdy_state(struct be_adapter *adapter);
2445 int be_cmd_query_port_name(struct be_adapter *adapter);
2446 int be_cmd_get_func_config(struct be_adapter *adapter,
2447 			   struct be_resources *res);
2448 int be_cmd_get_profile_config(struct be_adapter *adapter,
2449 			      struct be_resources *res, u8 query, u8 domain);
2450 int be_cmd_get_active_profile(struct be_adapter *adapter, u16 *profile);
2451 int be_cmd_get_if_id(struct be_adapter *adapter, struct be_vf_cfg *vf_cfg,
2452 		     int vf_num);
2453 int be_cmd_enable_vf(struct be_adapter *adapter, u8 domain);
2454 int be_cmd_intr_set(struct be_adapter *adapter, bool intr_enable);
2455 int be_cmd_set_logical_link_config(struct be_adapter *adapter,
2456 					  int link_state, u8 domain);
2457 int be_cmd_set_vxlan_port(struct be_adapter *adapter, __be16 port);
2458 int be_cmd_manage_iface(struct be_adapter *adapter, u32 iface, u8 op);
2459 int be_cmd_set_sriov_config(struct be_adapter *adapter,
2460 			    struct be_resources res, u16 num_vfs,
2461 			    u16 num_vf_qs);
2462