96970860c9150853570f89268095c25b6d04b2ba
[platform/kernel/linux-rpi.git] / drivers / net / ethernet / emulex / benet / be_cmds.h
1 /*
2  * Copyright (C) 2005 - 2011 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            (1 << 31)
48 #define CQE_FLAGS_ASYNC_MASK            (1 << 30)
49 #define CQE_FLAGS_COMPLETED_MASK        (1 << 28)
50 #define CQE_FLAGS_CONSUMED_MASK         (1 << 27)
51
52 /* Completion Status */
53 enum {
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 };
62
63 #define CQE_STATUS_COMPL_MASK           0xFFFF
64 #define CQE_STATUS_COMPL_SHIFT          0       /* bits 0 - 15 */
65 #define CQE_STATUS_EXTD_MASK            0xFFFF
66 #define CQE_STATUS_EXTD_SHIFT           16      /* bits 16 - 31 */
67
68 struct be_mcc_compl {
69         u32 status;             /* dword 0 */
70         u32 tag0;               /* dword 1 */
71         u32 tag1;               /* dword 2 */
72         u32 flags;              /* dword 3 */
73 };
74
75 /* When the async bit of mcc_compl is set, the last 4 bytes of
76  * mcc_compl is interpreted as follows:
77  */
78 #define ASYNC_TRAILER_EVENT_CODE_SHIFT  8       /* bits 8 - 15 */
79 #define ASYNC_TRAILER_EVENT_CODE_MASK   0xFF
80 #define ASYNC_TRAILER_EVENT_TYPE_SHIFT  16
81 #define ASYNC_TRAILER_EVENT_TYPE_MASK   0xFF
82 #define ASYNC_EVENT_CODE_LINK_STATE     0x1
83 #define ASYNC_EVENT_CODE_GRP_5          0x5
84 #define ASYNC_EVENT_QOS_SPEED           0x1
85 #define ASYNC_EVENT_COS_PRIORITY        0x2
86 #define ASYNC_EVENT_PVID_STATE          0x3
87 struct be_async_event_trailer {
88         u32 code;
89 };
90
91 enum {
92         LINK_DOWN       = 0x0,
93         LINK_UP         = 0x1
94 };
95 #define LINK_STATUS_MASK                        0x1
96 #define LOGICAL_LINK_STATUS_MASK                0x2
97
98 /* When the event code of an async trailer is link-state, the mcc_compl
99  * must be interpreted as follows
100  */
101 struct be_async_event_link_state {
102         u8 physical_port;
103         u8 port_link_status;
104         u8 port_duplex;
105         u8 port_speed;
106         u8 port_fault;
107         u8 rsvd0[7];
108         struct be_async_event_trailer trailer;
109 } __packed;
110
111 /* When the event code of an async trailer is GRP-5 and event_type is QOS_SPEED
112  * the mcc_compl must be interpreted as follows
113  */
114 struct be_async_event_grp5_qos_link_speed {
115         u8 physical_port;
116         u8 rsvd[5];
117         u16 qos_link_speed;
118         u32 event_tag;
119         struct be_async_event_trailer trailer;
120 } __packed;
121
122 /* When the event code of an async trailer is GRP5 and event type is
123  * CoS-Priority, the mcc_compl must be interpreted as follows
124  */
125 struct be_async_event_grp5_cos_priority {
126         u8 physical_port;
127         u8 available_priority_bmap;
128         u8 reco_default_priority;
129         u8 valid;
130         u8 rsvd0;
131         u8 event_tag;
132         struct be_async_event_trailer trailer;
133 } __packed;
134
135 /* When the event code of an async trailer is GRP5 and event type is
136  * PVID state, the mcc_compl must be interpreted as follows
137  */
138 struct be_async_event_grp5_pvid_state {
139         u8 enabled;
140         u8 rsvd0;
141         u16 tag;
142         u32 event_tag;
143         u32 rsvd1;
144         struct be_async_event_trailer trailer;
145 } __packed;
146
147 struct be_mcc_mailbox {
148         struct be_mcc_wrb wrb;
149         struct be_mcc_compl compl;
150 };
151
152 #define CMD_SUBSYSTEM_COMMON    0x1
153 #define CMD_SUBSYSTEM_ETH       0x3
154 #define CMD_SUBSYSTEM_LOWLEVEL  0xb
155
156 #define OPCODE_COMMON_NTWK_MAC_QUERY                    1
157 #define OPCODE_COMMON_NTWK_MAC_SET                      2
158 #define OPCODE_COMMON_NTWK_MULTICAST_SET                3
159 #define OPCODE_COMMON_NTWK_VLAN_CONFIG                  4
160 #define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY            5
161 #define OPCODE_COMMON_READ_FLASHROM                     6
162 #define OPCODE_COMMON_WRITE_FLASHROM                    7
163 #define OPCODE_COMMON_CQ_CREATE                         12
164 #define OPCODE_COMMON_EQ_CREATE                         13
165 #define OPCODE_COMMON_MCC_CREATE                        21
166 #define OPCODE_COMMON_SET_QOS                           28
167 #define OPCODE_COMMON_MCC_CREATE_EXT                    90
168 #define OPCODE_COMMON_SEEPROM_READ                      30
169 #define OPCODE_COMMON_GET_CNTL_ATTRIBUTES               32
170 #define OPCODE_COMMON_NTWK_RX_FILTER                    34
171 #define OPCODE_COMMON_GET_FW_VERSION                    35
172 #define OPCODE_COMMON_SET_FLOW_CONTROL                  36
173 #define OPCODE_COMMON_GET_FLOW_CONTROL                  37
174 #define OPCODE_COMMON_SET_FRAME_SIZE                    39
175 #define OPCODE_COMMON_MODIFY_EQ_DELAY                   41
176 #define OPCODE_COMMON_FIRMWARE_CONFIG                   42
177 #define OPCODE_COMMON_NTWK_INTERFACE_CREATE             50
178 #define OPCODE_COMMON_NTWK_INTERFACE_DESTROY            51
179 #define OPCODE_COMMON_MCC_DESTROY                       53
180 #define OPCODE_COMMON_CQ_DESTROY                        54
181 #define OPCODE_COMMON_EQ_DESTROY                        55
182 #define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG             58
183 #define OPCODE_COMMON_NTWK_PMAC_ADD                     59
184 #define OPCODE_COMMON_NTWK_PMAC_DEL                     60
185 #define OPCODE_COMMON_FUNCTION_RESET                    61
186 #define OPCODE_COMMON_MANAGE_FAT                        68
187 #define OPCODE_COMMON_ENABLE_DISABLE_BEACON             69
188 #define OPCODE_COMMON_GET_BEACON_STATE                  70
189 #define OPCODE_COMMON_READ_TRANSRECV_DATA               73
190 #define OPCODE_COMMON_GET_PORT_NAME                     77
191 #define OPCODE_COMMON_GET_PHY_DETAILS                   102
192 #define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP           103
193 #define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES    121
194 #define OPCODE_COMMON_GET_EXT_FAT_CAPABILITES           125
195 #define OPCODE_COMMON_SET_EXT_FAT_CAPABILITES           126
196 #define OPCODE_COMMON_GET_MAC_LIST                      147
197 #define OPCODE_COMMON_SET_MAC_LIST                      148
198 #define OPCODE_COMMON_GET_HSW_CONFIG                    152
199 #define OPCODE_COMMON_GET_FUNC_CONFIG                   160
200 #define OPCODE_COMMON_GET_PROFILE_CONFIG                164
201 #define OPCODE_COMMON_SET_PROFILE_CONFIG                165
202 #define OPCODE_COMMON_SET_HSW_CONFIG                    153
203 #define OPCODE_COMMON_GET_FN_PRIVILEGES                 170
204 #define OPCODE_COMMON_READ_OBJECT                       171
205 #define OPCODE_COMMON_WRITE_OBJECT                      172
206 #define OPCODE_COMMON_GET_IFACE_LIST                    194
207 #define OPCODE_COMMON_ENABLE_DISABLE_VF                 196
208
209 #define OPCODE_ETH_RSS_CONFIG                           1
210 #define OPCODE_ETH_ACPI_CONFIG                          2
211 #define OPCODE_ETH_PROMISCUOUS                          3
212 #define OPCODE_ETH_GET_STATISTICS                       4
213 #define OPCODE_ETH_TX_CREATE                            7
214 #define OPCODE_ETH_RX_CREATE                            8
215 #define OPCODE_ETH_TX_DESTROY                           9
216 #define OPCODE_ETH_RX_DESTROY                           10
217 #define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG                12
218 #define OPCODE_ETH_GET_PPORT_STATS                      18
219
220 #define OPCODE_LOWLEVEL_HOST_DDR_DMA                    17
221 #define OPCODE_LOWLEVEL_LOOPBACK_TEST                   18
222 #define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE               19
223
224 struct be_cmd_req_hdr {
225         u8 opcode;              /* dword 0 */
226         u8 subsystem;           /* dword 0 */
227         u8 port_number;         /* dword 0 */
228         u8 domain;              /* dword 0 */
229         u32 timeout;            /* dword 1 */
230         u32 request_length;     /* dword 2 */
231         u8 version;             /* dword 3 */
232         u8 rsvd[3];             /* dword 3 */
233 };
234
235 #define RESP_HDR_INFO_OPCODE_SHIFT      0       /* bits 0 - 7 */
236 #define RESP_HDR_INFO_SUBSYS_SHIFT      8       /* bits 8 - 15 */
237 struct be_cmd_resp_hdr {
238         u8 opcode;              /* dword 0 */
239         u8 subsystem;           /* dword 0 */
240         u8 rsvd[2];             /* dword 0 */
241         u8 status;              /* dword 1 */
242         u8 add_status;          /* dword 1 */
243         u8 rsvd1[2];            /* dword 1 */
244         u32 response_length;    /* dword 2 */
245         u32 actual_resp_len;    /* dword 3 */
246 };
247
248 struct phys_addr {
249         u32 lo;
250         u32 hi;
251 };
252
253 /**************************
254  * BE Command definitions *
255  **************************/
256
257 /* Pseudo amap definition in which each bit of the actual structure is defined
258  * as a byte: used to calculate offset/shift/mask of each field */
259 struct amap_eq_context {
260         u8 cidx[13];            /* dword 0*/
261         u8 rsvd0[3];            /* dword 0*/
262         u8 epidx[13];           /* dword 0*/
263         u8 valid;               /* dword 0*/
264         u8 rsvd1;               /* dword 0*/
265         u8 size;                /* dword 0*/
266         u8 pidx[13];            /* dword 1*/
267         u8 rsvd2[3];            /* dword 1*/
268         u8 pd[10];              /* dword 1*/
269         u8 count[3];            /* dword 1*/
270         u8 solevent;            /* dword 1*/
271         u8 stalled;             /* dword 1*/
272         u8 armed;               /* dword 1*/
273         u8 rsvd3[4];            /* dword 2*/
274         u8 func[8];             /* dword 2*/
275         u8 rsvd4;               /* dword 2*/
276         u8 delaymult[10];       /* dword 2*/
277         u8 rsvd5[2];            /* dword 2*/
278         u8 phase[2];            /* dword 2*/
279         u8 nodelay;             /* dword 2*/
280         u8 rsvd6[4];            /* dword 2*/
281         u8 rsvd7[32];           /* dword 3*/
282 } __packed;
283
284 struct be_cmd_req_eq_create {
285         struct be_cmd_req_hdr hdr;
286         u16 num_pages;          /* sword */
287         u16 rsvd0;              /* sword */
288         u8 context[sizeof(struct amap_eq_context) / 8];
289         struct phys_addr pages[8];
290 } __packed;
291
292 struct be_cmd_resp_eq_create {
293         struct be_cmd_resp_hdr resp_hdr;
294         u16 eq_id;              /* sword */
295         u16 rsvd0;              /* sword */
296 } __packed;
297
298 /******************** Mac query ***************************/
299 enum {
300         MAC_ADDRESS_TYPE_STORAGE = 0x0,
301         MAC_ADDRESS_TYPE_NETWORK = 0x1,
302         MAC_ADDRESS_TYPE_PD = 0x2,
303         MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
304 };
305
306 struct mac_addr {
307         u16 size_of_struct;
308         u8 addr[ETH_ALEN];
309 } __packed;
310
311 struct be_cmd_req_mac_query {
312         struct be_cmd_req_hdr hdr;
313         u8 type;
314         u8 permanent;
315         u16 if_id;
316         u32 pmac_id;
317 } __packed;
318
319 struct be_cmd_resp_mac_query {
320         struct be_cmd_resp_hdr hdr;
321         struct mac_addr mac;
322 };
323
324 /******************** PMac Add ***************************/
325 struct be_cmd_req_pmac_add {
326         struct be_cmd_req_hdr hdr;
327         u32 if_id;
328         u8 mac_address[ETH_ALEN];
329         u8 rsvd0[2];
330 } __packed;
331
332 struct be_cmd_resp_pmac_add {
333         struct be_cmd_resp_hdr hdr;
334         u32 pmac_id;
335 };
336
337 /******************** PMac Del ***************************/
338 struct be_cmd_req_pmac_del {
339         struct be_cmd_req_hdr hdr;
340         u32 if_id;
341         u32 pmac_id;
342 };
343
344 /******************** Create CQ ***************************/
345 /* Pseudo amap definition in which each bit of the actual structure is defined
346  * as a byte: used to calculate offset/shift/mask of each field */
347 struct amap_cq_context_be {
348         u8 cidx[11];            /* dword 0*/
349         u8 rsvd0;               /* dword 0*/
350         u8 coalescwm[2];        /* dword 0*/
351         u8 nodelay;             /* dword 0*/
352         u8 epidx[11];           /* dword 0*/
353         u8 rsvd1;               /* dword 0*/
354         u8 count[2];            /* dword 0*/
355         u8 valid;               /* dword 0*/
356         u8 solevent;            /* dword 0*/
357         u8 eventable;           /* dword 0*/
358         u8 pidx[11];            /* dword 1*/
359         u8 rsvd2;               /* dword 1*/
360         u8 pd[10];              /* dword 1*/
361         u8 eqid[8];             /* dword 1*/
362         u8 stalled;             /* dword 1*/
363         u8 armed;               /* dword 1*/
364         u8 rsvd3[4];            /* dword 2*/
365         u8 func[8];             /* dword 2*/
366         u8 rsvd4[20];           /* dword 2*/
367         u8 rsvd5[32];           /* dword 3*/
368 } __packed;
369
370 struct amap_cq_context_lancer {
371         u8 rsvd0[12];           /* dword 0*/
372         u8 coalescwm[2];        /* dword 0*/
373         u8 nodelay;             /* dword 0*/
374         u8 rsvd1[12];           /* dword 0*/
375         u8 count[2];            /* dword 0*/
376         u8 valid;               /* dword 0*/
377         u8 rsvd2;               /* dword 0*/
378         u8 eventable;           /* dword 0*/
379         u8 eqid[16];            /* dword 1*/
380         u8 rsvd3[15];           /* dword 1*/
381         u8 armed;               /* dword 1*/
382         u8 rsvd4[32];           /* dword 2*/
383         u8 rsvd5[32];           /* dword 3*/
384 } __packed;
385
386 struct be_cmd_req_cq_create {
387         struct be_cmd_req_hdr hdr;
388         u16 num_pages;
389         u8 page_size;
390         u8 rsvd0;
391         u8 context[sizeof(struct amap_cq_context_be) / 8];
392         struct phys_addr pages[8];
393 } __packed;
394
395
396 struct be_cmd_resp_cq_create {
397         struct be_cmd_resp_hdr hdr;
398         u16 cq_id;
399         u16 rsvd0;
400 } __packed;
401
402 struct be_cmd_req_get_fat {
403         struct be_cmd_req_hdr hdr;
404         u32 fat_operation;
405         u32 read_log_offset;
406         u32 read_log_length;
407         u32 data_buffer_size;
408         u32 data_buffer[1];
409 } __packed;
410
411 struct be_cmd_resp_get_fat {
412         struct be_cmd_resp_hdr hdr;
413         u32 log_size;
414         u32 read_log_length;
415         u32 rsvd[2];
416         u32 data_buffer[1];
417 } __packed;
418
419
420 /******************** Create MCCQ ***************************/
421 /* Pseudo amap definition in which each bit of the actual structure is defined
422  * as a byte: used to calculate offset/shift/mask of each field */
423 struct amap_mcc_context_be {
424         u8 con_index[14];
425         u8 rsvd0[2];
426         u8 ring_size[4];
427         u8 fetch_wrb;
428         u8 fetch_r2t;
429         u8 cq_id[10];
430         u8 prod_index[14];
431         u8 fid[8];
432         u8 pdid[9];
433         u8 valid;
434         u8 rsvd1[32];
435         u8 rsvd2[32];
436 } __packed;
437
438 struct amap_mcc_context_lancer {
439         u8 async_cq_id[16];
440         u8 ring_size[4];
441         u8 rsvd0[12];
442         u8 rsvd1[31];
443         u8 valid;
444         u8 async_cq_valid[1];
445         u8 rsvd2[31];
446         u8 rsvd3[32];
447 } __packed;
448
449 struct be_cmd_req_mcc_create {
450         struct be_cmd_req_hdr hdr;
451         u16 num_pages;
452         u16 cq_id;
453         u8 context[sizeof(struct amap_mcc_context_be) / 8];
454         struct phys_addr pages[8];
455 } __packed;
456
457 struct be_cmd_req_mcc_ext_create {
458         struct be_cmd_req_hdr hdr;
459         u16 num_pages;
460         u16 cq_id;
461         u32 async_event_bitmap[1];
462         u8 context[sizeof(struct amap_mcc_context_be) / 8];
463         struct phys_addr pages[8];
464 } __packed;
465
466 struct be_cmd_resp_mcc_create {
467         struct be_cmd_resp_hdr hdr;
468         u16 id;
469         u16 rsvd0;
470 } __packed;
471
472 /******************** Create TxQ ***************************/
473 #define BE_ETH_TX_RING_TYPE_STANDARD            2
474 #define BE_ULP1_NUM                             1
475
476 /* Pseudo amap definition in which each bit of the actual structure is defined
477  * as a byte: used to calculate offset/shift/mask of each field */
478 struct amap_tx_context {
479         u8 if_id[16];           /* dword 0 */
480         u8 tx_ring_size[4];     /* dword 0 */
481         u8 rsvd1[26];           /* dword 0 */
482         u8 pci_func_id[8];      /* dword 1 */
483         u8 rsvd2[9];            /* dword 1 */
484         u8 ctx_valid;           /* dword 1 */
485         u8 cq_id_send[16];      /* dword 2 */
486         u8 rsvd3[16];           /* dword 2 */
487         u8 rsvd4[32];           /* dword 3 */
488         u8 rsvd5[32];           /* dword 4 */
489         u8 rsvd6[32];           /* dword 5 */
490         u8 rsvd7[32];           /* dword 6 */
491         u8 rsvd8[32];           /* dword 7 */
492         u8 rsvd9[32];           /* dword 8 */
493         u8 rsvd10[32];          /* dword 9 */
494         u8 rsvd11[32];          /* dword 10 */
495         u8 rsvd12[32];          /* dword 11 */
496         u8 rsvd13[32];          /* dword 12 */
497         u8 rsvd14[32];          /* dword 13 */
498         u8 rsvd15[32];          /* dword 14 */
499         u8 rsvd16[32];          /* dword 15 */
500 } __packed;
501
502 struct be_cmd_req_eth_tx_create {
503         struct be_cmd_req_hdr hdr;
504         u8 num_pages;
505         u8 ulp_num;
506         u8 type;
507         u8 bound_port;
508         u8 context[sizeof(struct amap_tx_context) / 8];
509         struct phys_addr pages[8];
510 } __packed;
511
512 struct be_cmd_resp_eth_tx_create {
513         struct be_cmd_resp_hdr hdr;
514         u16 cid;
515         u16 rsvd0;
516 } __packed;
517
518 /******************** Create RxQ ***************************/
519 struct be_cmd_req_eth_rx_create {
520         struct be_cmd_req_hdr hdr;
521         u16 cq_id;
522         u8 frag_size;
523         u8 num_pages;
524         struct phys_addr pages[2];
525         u32 interface_id;
526         u16 max_frame_size;
527         u16 rsvd0;
528         u32 rss_queue;
529 } __packed;
530
531 struct be_cmd_resp_eth_rx_create {
532         struct be_cmd_resp_hdr hdr;
533         u16 id;
534         u8 rss_id;
535         u8 rsvd0;
536 } __packed;
537
538 /******************** Q Destroy  ***************************/
539 /* Type of Queue to be destroyed */
540 enum {
541         QTYPE_EQ = 1,
542         QTYPE_CQ,
543         QTYPE_TXQ,
544         QTYPE_RXQ,
545         QTYPE_MCCQ
546 };
547
548 struct be_cmd_req_q_destroy {
549         struct be_cmd_req_hdr hdr;
550         u16 id;
551         u16 bypass_flush;       /* valid only for rx q destroy */
552 } __packed;
553
554 /************ I/f Create (it's actually I/f Config Create)**********/
555
556 /* Capability flags for the i/f */
557 enum be_if_flags {
558         BE_IF_FLAGS_RSS = 0x4,
559         BE_IF_FLAGS_PROMISCUOUS = 0x8,
560         BE_IF_FLAGS_BROADCAST = 0x10,
561         BE_IF_FLAGS_UNTAGGED = 0x20,
562         BE_IF_FLAGS_ULP = 0x40,
563         BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
564         BE_IF_FLAGS_VLAN = 0x100,
565         BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
566         BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
567         BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
568         BE_IF_FLAGS_MULTICAST = 0x1000
569 };
570
571 /* An RX interface is an object with one or more MAC addresses and
572  * filtering capabilities. */
573 struct be_cmd_req_if_create {
574         struct be_cmd_req_hdr hdr;
575         u32 version;            /* ignore currently */
576         u32 capability_flags;
577         u32 enable_flags;
578         u8 mac_addr[ETH_ALEN];
579         u8 rsvd0;
580         u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
581         u32 vlan_tag;    /* not used currently */
582 } __packed;
583
584 struct be_cmd_resp_if_create {
585         struct be_cmd_resp_hdr hdr;
586         u32 interface_id;
587         u32 pmac_id;
588 };
589
590 /****** I/f Destroy(it's actually I/f Config Destroy )**********/
591 struct be_cmd_req_if_destroy {
592         struct be_cmd_req_hdr hdr;
593         u32 interface_id;
594 };
595
596 /*************** HW Stats Get **********************************/
597 struct be_port_rxf_stats_v0 {
598         u32 rx_bytes_lsd;       /* dword 0*/
599         u32 rx_bytes_msd;       /* dword 1*/
600         u32 rx_total_frames;    /* dword 2*/
601         u32 rx_unicast_frames;  /* dword 3*/
602         u32 rx_multicast_frames;        /* dword 4*/
603         u32 rx_broadcast_frames;        /* dword 5*/
604         u32 rx_crc_errors;      /* dword 6*/
605         u32 rx_alignment_symbol_errors; /* dword 7*/
606         u32 rx_pause_frames;    /* dword 8*/
607         u32 rx_control_frames;  /* dword 9*/
608         u32 rx_in_range_errors; /* dword 10*/
609         u32 rx_out_range_errors;        /* dword 11*/
610         u32 rx_frame_too_long;  /* dword 12*/
611         u32 rx_address_mismatch_drops;  /* dword 13*/
612         u32 rx_vlan_mismatch_drops;     /* dword 14*/
613         u32 rx_dropped_too_small;       /* dword 15*/
614         u32 rx_dropped_too_short;       /* dword 16*/
615         u32 rx_dropped_header_too_small;        /* dword 17*/
616         u32 rx_dropped_tcp_length;      /* dword 18*/
617         u32 rx_dropped_runt;    /* dword 19*/
618         u32 rx_64_byte_packets; /* dword 20*/
619         u32 rx_65_127_byte_packets;     /* dword 21*/
620         u32 rx_128_256_byte_packets;    /* dword 22*/
621         u32 rx_256_511_byte_packets;    /* dword 23*/
622         u32 rx_512_1023_byte_packets;   /* dword 24*/
623         u32 rx_1024_1518_byte_packets;  /* dword 25*/
624         u32 rx_1519_2047_byte_packets;  /* dword 26*/
625         u32 rx_2048_4095_byte_packets;  /* dword 27*/
626         u32 rx_4096_8191_byte_packets;  /* dword 28*/
627         u32 rx_8192_9216_byte_packets;  /* dword 29*/
628         u32 rx_ip_checksum_errs;        /* dword 30*/
629         u32 rx_tcp_checksum_errs;       /* dword 31*/
630         u32 rx_udp_checksum_errs;       /* dword 32*/
631         u32 rx_non_rss_packets; /* dword 33*/
632         u32 rx_ipv4_packets;    /* dword 34*/
633         u32 rx_ipv6_packets;    /* dword 35*/
634         u32 rx_ipv4_bytes_lsd;  /* dword 36*/
635         u32 rx_ipv4_bytes_msd;  /* dword 37*/
636         u32 rx_ipv6_bytes_lsd;  /* dword 38*/
637         u32 rx_ipv6_bytes_msd;  /* dword 39*/
638         u32 rx_chute1_packets;  /* dword 40*/
639         u32 rx_chute2_packets;  /* dword 41*/
640         u32 rx_chute3_packets;  /* dword 42*/
641         u32 rx_management_packets;      /* dword 43*/
642         u32 rx_switched_unicast_packets;        /* dword 44*/
643         u32 rx_switched_multicast_packets;      /* dword 45*/
644         u32 rx_switched_broadcast_packets;      /* dword 46*/
645         u32 tx_bytes_lsd;       /* dword 47*/
646         u32 tx_bytes_msd;       /* dword 48*/
647         u32 tx_unicastframes;   /* dword 49*/
648         u32 tx_multicastframes; /* dword 50*/
649         u32 tx_broadcastframes; /* dword 51*/
650         u32 tx_pauseframes;     /* dword 52*/
651         u32 tx_controlframes;   /* dword 53*/
652         u32 tx_64_byte_packets; /* dword 54*/
653         u32 tx_65_127_byte_packets;     /* dword 55*/
654         u32 tx_128_256_byte_packets;    /* dword 56*/
655         u32 tx_256_511_byte_packets;    /* dword 57*/
656         u32 tx_512_1023_byte_packets;   /* dword 58*/
657         u32 tx_1024_1518_byte_packets;  /* dword 59*/
658         u32 tx_1519_2047_byte_packets;  /* dword 60*/
659         u32 tx_2048_4095_byte_packets;  /* dword 61*/
660         u32 tx_4096_8191_byte_packets;  /* dword 62*/
661         u32 tx_8192_9216_byte_packets;  /* dword 63*/
662         u32 rx_fifo_overflow;   /* dword 64*/
663         u32 rx_input_fifo_overflow;     /* dword 65*/
664 };
665
666 struct be_rxf_stats_v0 {
667         struct be_port_rxf_stats_v0 port[2];
668         u32 rx_drops_no_pbuf;   /* dword 132*/
669         u32 rx_drops_no_txpb;   /* dword 133*/
670         u32 rx_drops_no_erx_descr;      /* dword 134*/
671         u32 rx_drops_no_tpre_descr;     /* dword 135*/
672         u32 management_rx_port_packets; /* dword 136*/
673         u32 management_rx_port_bytes;   /* dword 137*/
674         u32 management_rx_port_pause_frames;    /* dword 138*/
675         u32 management_rx_port_errors;  /* dword 139*/
676         u32 management_tx_port_packets; /* dword 140*/
677         u32 management_tx_port_bytes;   /* dword 141*/
678         u32 management_tx_port_pause;   /* dword 142*/
679         u32 management_rx_port_rxfifo_overflow; /* dword 143*/
680         u32 rx_drops_too_many_frags;    /* dword 144*/
681         u32 rx_drops_invalid_ring;      /* dword 145*/
682         u32 forwarded_packets;  /* dword 146*/
683         u32 rx_drops_mtu;       /* dword 147*/
684         u32 rsvd0[7];
685         u32 port0_jabber_events;
686         u32 port1_jabber_events;
687         u32 rsvd1[6];
688 };
689
690 struct be_erx_stats_v0 {
691         u32 rx_drops_no_fragments[44];     /* dwordS 0 to 43*/
692         u32 rsvd[4];
693 };
694
695 struct be_pmem_stats {
696         u32 eth_red_drops;
697         u32 rsvd[5];
698 };
699
700 struct be_hw_stats_v0 {
701         struct be_rxf_stats_v0 rxf;
702         u32 rsvd[48];
703         struct be_erx_stats_v0 erx;
704         struct be_pmem_stats pmem;
705 };
706
707 struct be_cmd_req_get_stats_v0 {
708         struct be_cmd_req_hdr hdr;
709         u8 rsvd[sizeof(struct be_hw_stats_v0)];
710 };
711
712 struct be_cmd_resp_get_stats_v0 {
713         struct be_cmd_resp_hdr hdr;
714         struct be_hw_stats_v0 hw_stats;
715 };
716
717 struct lancer_pport_stats {
718         u32 tx_packets_lo;
719         u32 tx_packets_hi;
720         u32 tx_unicast_packets_lo;
721         u32 tx_unicast_packets_hi;
722         u32 tx_multicast_packets_lo;
723         u32 tx_multicast_packets_hi;
724         u32 tx_broadcast_packets_lo;
725         u32 tx_broadcast_packets_hi;
726         u32 tx_bytes_lo;
727         u32 tx_bytes_hi;
728         u32 tx_unicast_bytes_lo;
729         u32 tx_unicast_bytes_hi;
730         u32 tx_multicast_bytes_lo;
731         u32 tx_multicast_bytes_hi;
732         u32 tx_broadcast_bytes_lo;
733         u32 tx_broadcast_bytes_hi;
734         u32 tx_discards_lo;
735         u32 tx_discards_hi;
736         u32 tx_errors_lo;
737         u32 tx_errors_hi;
738         u32 tx_pause_frames_lo;
739         u32 tx_pause_frames_hi;
740         u32 tx_pause_on_frames_lo;
741         u32 tx_pause_on_frames_hi;
742         u32 tx_pause_off_frames_lo;
743         u32 tx_pause_off_frames_hi;
744         u32 tx_internal_mac_errors_lo;
745         u32 tx_internal_mac_errors_hi;
746         u32 tx_control_frames_lo;
747         u32 tx_control_frames_hi;
748         u32 tx_packets_64_bytes_lo;
749         u32 tx_packets_64_bytes_hi;
750         u32 tx_packets_65_to_127_bytes_lo;
751         u32 tx_packets_65_to_127_bytes_hi;
752         u32 tx_packets_128_to_255_bytes_lo;
753         u32 tx_packets_128_to_255_bytes_hi;
754         u32 tx_packets_256_to_511_bytes_lo;
755         u32 tx_packets_256_to_511_bytes_hi;
756         u32 tx_packets_512_to_1023_bytes_lo;
757         u32 tx_packets_512_to_1023_bytes_hi;
758         u32 tx_packets_1024_to_1518_bytes_lo;
759         u32 tx_packets_1024_to_1518_bytes_hi;
760         u32 tx_packets_1519_to_2047_bytes_lo;
761         u32 tx_packets_1519_to_2047_bytes_hi;
762         u32 tx_packets_2048_to_4095_bytes_lo;
763         u32 tx_packets_2048_to_4095_bytes_hi;
764         u32 tx_packets_4096_to_8191_bytes_lo;
765         u32 tx_packets_4096_to_8191_bytes_hi;
766         u32 tx_packets_8192_to_9216_bytes_lo;
767         u32 tx_packets_8192_to_9216_bytes_hi;
768         u32 tx_lso_packets_lo;
769         u32 tx_lso_packets_hi;
770         u32 rx_packets_lo;
771         u32 rx_packets_hi;
772         u32 rx_unicast_packets_lo;
773         u32 rx_unicast_packets_hi;
774         u32 rx_multicast_packets_lo;
775         u32 rx_multicast_packets_hi;
776         u32 rx_broadcast_packets_lo;
777         u32 rx_broadcast_packets_hi;
778         u32 rx_bytes_lo;
779         u32 rx_bytes_hi;
780         u32 rx_unicast_bytes_lo;
781         u32 rx_unicast_bytes_hi;
782         u32 rx_multicast_bytes_lo;
783         u32 rx_multicast_bytes_hi;
784         u32 rx_broadcast_bytes_lo;
785         u32 rx_broadcast_bytes_hi;
786         u32 rx_unknown_protos;
787         u32 rsvd_69; /* Word 69 is reserved */
788         u32 rx_discards_lo;
789         u32 rx_discards_hi;
790         u32 rx_errors_lo;
791         u32 rx_errors_hi;
792         u32 rx_crc_errors_lo;
793         u32 rx_crc_errors_hi;
794         u32 rx_alignment_errors_lo;
795         u32 rx_alignment_errors_hi;
796         u32 rx_symbol_errors_lo;
797         u32 rx_symbol_errors_hi;
798         u32 rx_pause_frames_lo;
799         u32 rx_pause_frames_hi;
800         u32 rx_pause_on_frames_lo;
801         u32 rx_pause_on_frames_hi;
802         u32 rx_pause_off_frames_lo;
803         u32 rx_pause_off_frames_hi;
804         u32 rx_frames_too_long_lo;
805         u32 rx_frames_too_long_hi;
806         u32 rx_internal_mac_errors_lo;
807         u32 rx_internal_mac_errors_hi;
808         u32 rx_undersize_packets;
809         u32 rx_oversize_packets;
810         u32 rx_fragment_packets;
811         u32 rx_jabbers;
812         u32 rx_control_frames_lo;
813         u32 rx_control_frames_hi;
814         u32 rx_control_frames_unknown_opcode_lo;
815         u32 rx_control_frames_unknown_opcode_hi;
816         u32 rx_in_range_errors;
817         u32 rx_out_of_range_errors;
818         u32 rx_address_mismatch_drops;
819         u32 rx_vlan_mismatch_drops;
820         u32 rx_dropped_too_small;
821         u32 rx_dropped_too_short;
822         u32 rx_dropped_header_too_small;
823         u32 rx_dropped_invalid_tcp_length;
824         u32 rx_dropped_runt;
825         u32 rx_ip_checksum_errors;
826         u32 rx_tcp_checksum_errors;
827         u32 rx_udp_checksum_errors;
828         u32 rx_non_rss_packets;
829         u32 rsvd_111;
830         u32 rx_ipv4_packets_lo;
831         u32 rx_ipv4_packets_hi;
832         u32 rx_ipv6_packets_lo;
833         u32 rx_ipv6_packets_hi;
834         u32 rx_ipv4_bytes_lo;
835         u32 rx_ipv4_bytes_hi;
836         u32 rx_ipv6_bytes_lo;
837         u32 rx_ipv6_bytes_hi;
838         u32 rx_nic_packets_lo;
839         u32 rx_nic_packets_hi;
840         u32 rx_tcp_packets_lo;
841         u32 rx_tcp_packets_hi;
842         u32 rx_iscsi_packets_lo;
843         u32 rx_iscsi_packets_hi;
844         u32 rx_management_packets_lo;
845         u32 rx_management_packets_hi;
846         u32 rx_switched_unicast_packets_lo;
847         u32 rx_switched_unicast_packets_hi;
848         u32 rx_switched_multicast_packets_lo;
849         u32 rx_switched_multicast_packets_hi;
850         u32 rx_switched_broadcast_packets_lo;
851         u32 rx_switched_broadcast_packets_hi;
852         u32 num_forwards_lo;
853         u32 num_forwards_hi;
854         u32 rx_fifo_overflow;
855         u32 rx_input_fifo_overflow;
856         u32 rx_drops_too_many_frags_lo;
857         u32 rx_drops_too_many_frags_hi;
858         u32 rx_drops_invalid_queue;
859         u32 rsvd_141;
860         u32 rx_drops_mtu_lo;
861         u32 rx_drops_mtu_hi;
862         u32 rx_packets_64_bytes_lo;
863         u32 rx_packets_64_bytes_hi;
864         u32 rx_packets_65_to_127_bytes_lo;
865         u32 rx_packets_65_to_127_bytes_hi;
866         u32 rx_packets_128_to_255_bytes_lo;
867         u32 rx_packets_128_to_255_bytes_hi;
868         u32 rx_packets_256_to_511_bytes_lo;
869         u32 rx_packets_256_to_511_bytes_hi;
870         u32 rx_packets_512_to_1023_bytes_lo;
871         u32 rx_packets_512_to_1023_bytes_hi;
872         u32 rx_packets_1024_to_1518_bytes_lo;
873         u32 rx_packets_1024_to_1518_bytes_hi;
874         u32 rx_packets_1519_to_2047_bytes_lo;
875         u32 rx_packets_1519_to_2047_bytes_hi;
876         u32 rx_packets_2048_to_4095_bytes_lo;
877         u32 rx_packets_2048_to_4095_bytes_hi;
878         u32 rx_packets_4096_to_8191_bytes_lo;
879         u32 rx_packets_4096_to_8191_bytes_hi;
880         u32 rx_packets_8192_to_9216_bytes_lo;
881         u32 rx_packets_8192_to_9216_bytes_hi;
882 };
883
884 struct pport_stats_params {
885         u16 pport_num;
886         u8 rsvd;
887         u8 reset_stats;
888 };
889
890 struct lancer_cmd_req_pport_stats {
891         struct be_cmd_req_hdr hdr;
892         union {
893                 struct pport_stats_params params;
894                 u8 rsvd[sizeof(struct lancer_pport_stats)];
895         } cmd_params;
896 };
897
898 struct lancer_cmd_resp_pport_stats {
899         struct be_cmd_resp_hdr hdr;
900         struct lancer_pport_stats pport_stats;
901 };
902
903 static inline struct lancer_pport_stats*
904         pport_stats_from_cmd(struct be_adapter *adapter)
905 {
906         struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
907         return &cmd->pport_stats;
908 }
909
910 struct be_cmd_req_get_cntl_addnl_attribs {
911         struct be_cmd_req_hdr hdr;
912         u8 rsvd[8];
913 };
914
915 struct be_cmd_resp_get_cntl_addnl_attribs {
916         struct be_cmd_resp_hdr hdr;
917         u16 ipl_file_number;
918         u8 ipl_file_version;
919         u8 rsvd0;
920         u8 on_die_temperature; /* in degrees centigrade*/
921         u8 rsvd1[3];
922 };
923
924 struct be_cmd_req_vlan_config {
925         struct be_cmd_req_hdr hdr;
926         u8 interface_id;
927         u8 promiscuous;
928         u8 untagged;
929         u8 num_vlan;
930         u16 normal_vlan[64];
931 } __packed;
932
933 /******************* RX FILTER ******************************/
934 #define BE_MAX_MC               64 /* set mcast promisc if > 64 */
935 struct macaddr {
936         u8 byte[ETH_ALEN];
937 };
938
939 struct be_cmd_req_rx_filter {
940         struct be_cmd_req_hdr hdr;
941         u32 global_flags_mask;
942         u32 global_flags;
943         u32 if_flags_mask;
944         u32 if_flags;
945         u32 if_id;
946         u32 mcast_num;
947         struct macaddr mcast_mac[BE_MAX_MC];
948 };
949
950 /******************** Link Status Query *******************/
951 struct be_cmd_req_link_status {
952         struct be_cmd_req_hdr hdr;
953         u32 rsvd;
954 };
955
956 enum {
957         PHY_LINK_DUPLEX_NONE = 0x0,
958         PHY_LINK_DUPLEX_HALF = 0x1,
959         PHY_LINK_DUPLEX_FULL = 0x2
960 };
961
962 enum {
963         PHY_LINK_SPEED_ZERO = 0x0,      /* => No link */
964         PHY_LINK_SPEED_10MBPS = 0x1,
965         PHY_LINK_SPEED_100MBPS = 0x2,
966         PHY_LINK_SPEED_1GBPS = 0x3,
967         PHY_LINK_SPEED_10GBPS = 0x4
968 };
969
970 struct be_cmd_resp_link_status {
971         struct be_cmd_resp_hdr hdr;
972         u8 physical_port;
973         u8 mac_duplex;
974         u8 mac_speed;
975         u8 mac_fault;
976         u8 mgmt_mac_duplex;
977         u8 mgmt_mac_speed;
978         u16 link_speed;
979         u8 logical_link_status;
980         u8 rsvd1[3];
981 } __packed;
982
983 /******************** Port Identification ***************************/
984 /*    Identifies the type of port attached to NIC     */
985 struct be_cmd_req_port_type {
986         struct be_cmd_req_hdr hdr;
987         u32 page_num;
988         u32 port;
989 };
990
991 enum {
992         TR_PAGE_A0 = 0xa0,
993         TR_PAGE_A2 = 0xa2
994 };
995
996 struct be_cmd_resp_port_type {
997         struct be_cmd_resp_hdr hdr;
998         u32 page_num;
999         u32 port;
1000         struct data {
1001                 u8 identifier;
1002                 u8 identifier_ext;
1003                 u8 connector;
1004                 u8 transceiver[8];
1005                 u8 rsvd0[3];
1006                 u8 length_km;
1007                 u8 length_hm;
1008                 u8 length_om1;
1009                 u8 length_om2;
1010                 u8 length_cu;
1011                 u8 length_cu_m;
1012                 u8 vendor_name[16];
1013                 u8 rsvd;
1014                 u8 vendor_oui[3];
1015                 u8 vendor_pn[16];
1016                 u8 vendor_rev[4];
1017         } data;
1018 };
1019
1020 /******************** Get FW Version *******************/
1021 struct be_cmd_req_get_fw_version {
1022         struct be_cmd_req_hdr hdr;
1023         u8 rsvd0[FW_VER_LEN];
1024         u8 rsvd1[FW_VER_LEN];
1025 } __packed;
1026
1027 struct be_cmd_resp_get_fw_version {
1028         struct be_cmd_resp_hdr hdr;
1029         u8 firmware_version_string[FW_VER_LEN];
1030         u8 fw_on_flash_version_string[FW_VER_LEN];
1031 } __packed;
1032
1033 /******************** Set Flow Contrl *******************/
1034 struct be_cmd_req_set_flow_control {
1035         struct be_cmd_req_hdr hdr;
1036         u16 tx_flow_control;
1037         u16 rx_flow_control;
1038 } __packed;
1039
1040 /******************** Get Flow Contrl *******************/
1041 struct be_cmd_req_get_flow_control {
1042         struct be_cmd_req_hdr hdr;
1043         u32 rsvd;
1044 };
1045
1046 struct be_cmd_resp_get_flow_control {
1047         struct be_cmd_resp_hdr hdr;
1048         u16 tx_flow_control;
1049         u16 rx_flow_control;
1050 } __packed;
1051
1052 /******************** Modify EQ Delay *******************/
1053 struct be_cmd_req_modify_eq_delay {
1054         struct be_cmd_req_hdr hdr;
1055         u32 num_eq;
1056         struct {
1057                 u32 eq_id;
1058                 u32 phase;
1059                 u32 delay_multiplier;
1060         } delay[8];
1061 } __packed;
1062
1063 struct be_cmd_resp_modify_eq_delay {
1064         struct be_cmd_resp_hdr hdr;
1065         u32 rsvd0;
1066 } __packed;
1067
1068 /******************** Get FW Config *******************/
1069 #define BE_FUNCTION_CAPS_RSS                    0x2
1070 /* The HW can come up in either of the following multi-channel modes
1071  * based on the skew/IPL.
1072  */
1073 #define RDMA_ENABLED                            0x4
1074 #define FLEX10_MODE                             0x400
1075 #define VNIC_MODE                               0x20000
1076 #define UMC_ENABLED                             0x1000000
1077 struct be_cmd_req_query_fw_cfg {
1078         struct be_cmd_req_hdr hdr;
1079         u32 rsvd[31];
1080 };
1081
1082 struct be_cmd_resp_query_fw_cfg {
1083         struct be_cmd_resp_hdr hdr;
1084         u32 be_config_number;
1085         u32 asic_revision;
1086         u32 phys_port;
1087         u32 function_mode;
1088         u32 rsvd[26];
1089         u32 function_caps;
1090 };
1091
1092 /******************** RSS Config ****************************************/
1093 /* RSS type             Input parameters used to compute RX hash
1094  * RSS_ENABLE_IPV4      SRC IPv4, DST IPv4
1095  * RSS_ENABLE_TCP_IPV4  SRC IPv4, DST IPv4, TCP SRC PORT, TCP DST PORT
1096  * RSS_ENABLE_IPV6      SRC IPv6, DST IPv6
1097  * RSS_ENABLE_TCP_IPV6  SRC IPv6, DST IPv6, TCP SRC PORT, TCP DST PORT
1098  * RSS_ENABLE_UDP_IPV4  SRC IPv4, DST IPv4, UDP SRC PORT, UDP DST PORT
1099  * RSS_ENABLE_UDP_IPV6  SRC IPv6, DST IPv6, UDP SRC PORT, UDP DST PORT
1100  *
1101  * When multiple RSS types are enabled, HW picks the best hash policy
1102  * based on the type of the received packet.
1103  */
1104 #define RSS_ENABLE_NONE                         0x0
1105 #define RSS_ENABLE_IPV4                         0x1
1106 #define RSS_ENABLE_TCP_IPV4                     0x2
1107 #define RSS_ENABLE_IPV6                         0x4
1108 #define RSS_ENABLE_TCP_IPV6                     0x8
1109 #define RSS_ENABLE_UDP_IPV4                     0x10
1110 #define RSS_ENABLE_UDP_IPV6                     0x20
1111
1112 struct be_cmd_req_rss_config {
1113         struct be_cmd_req_hdr hdr;
1114         u32 if_id;
1115         u16 enable_rss;
1116         u16 cpu_table_size_log2;
1117         u32 hash[10];
1118         u8 cpu_table[128];
1119         u8 flush;
1120         u8 rsvd0[3];
1121 };
1122
1123 /******************** Port Beacon ***************************/
1124
1125 #define BEACON_STATE_ENABLED            0x1
1126 #define BEACON_STATE_DISABLED           0x0
1127
1128 struct be_cmd_req_enable_disable_beacon {
1129         struct be_cmd_req_hdr hdr;
1130         u8  port_num;
1131         u8  beacon_state;
1132         u8  beacon_duration;
1133         u8  status_duration;
1134 } __packed;
1135
1136 struct be_cmd_resp_enable_disable_beacon {
1137         struct be_cmd_resp_hdr resp_hdr;
1138         u32 rsvd0;
1139 } __packed;
1140
1141 struct be_cmd_req_get_beacon_state {
1142         struct be_cmd_req_hdr hdr;
1143         u8  port_num;
1144         u8  rsvd0;
1145         u16 rsvd1;
1146 } __packed;
1147
1148 struct be_cmd_resp_get_beacon_state {
1149         struct be_cmd_resp_hdr resp_hdr;
1150         u8 beacon_state;
1151         u8 rsvd0[3];
1152 } __packed;
1153
1154 /****************** Firmware Flash ******************/
1155 struct flashrom_params {
1156         u32 op_code;
1157         u32 op_type;
1158         u32 data_buf_size;
1159         u32 offset;
1160 };
1161
1162 struct be_cmd_write_flashrom {
1163         struct be_cmd_req_hdr hdr;
1164         struct flashrom_params params;
1165         u8 data_buf[32768];
1166         u8 rsvd[4];
1167 } __packed;
1168
1169 /* cmd to read flash crc */
1170 struct be_cmd_read_flash_crc {
1171         struct be_cmd_req_hdr hdr;
1172         struct flashrom_params params;
1173         u8 crc[4];
1174         u8 rsvd[4];
1175 };
1176 /**************** Lancer Firmware Flash ************/
1177 struct amap_lancer_write_obj_context {
1178         u8 write_length[24];
1179         u8 reserved1[7];
1180         u8 eof;
1181 } __packed;
1182
1183 struct lancer_cmd_req_write_object {
1184         struct be_cmd_req_hdr hdr;
1185         u8 context[sizeof(struct amap_lancer_write_obj_context) / 8];
1186         u32 write_offset;
1187         u8 object_name[104];
1188         u32 descriptor_count;
1189         u32 buf_len;
1190         u32 addr_low;
1191         u32 addr_high;
1192 };
1193
1194 #define LANCER_NO_RESET_NEEDED          0x00
1195 #define LANCER_FW_RESET_NEEDED          0x02
1196 struct lancer_cmd_resp_write_object {
1197         u8 opcode;
1198         u8 subsystem;
1199         u8 rsvd1[2];
1200         u8 status;
1201         u8 additional_status;
1202         u8 rsvd2[2];
1203         u32 resp_len;
1204         u32 actual_resp_len;
1205         u32 actual_write_len;
1206         u8 change_status;
1207         u8 rsvd3[3];
1208 };
1209
1210 /************************ Lancer Read FW info **************/
1211 #define LANCER_READ_FILE_CHUNK                  (32*1024)
1212 #define LANCER_READ_FILE_EOF_MASK               0x80000000
1213
1214 #define LANCER_FW_DUMP_FILE                     "/dbg/dump.bin"
1215 #define LANCER_VPD_PF_FILE                      "/vpd/ntr_pf.vpd"
1216 #define LANCER_VPD_VF_FILE                      "/vpd/ntr_vf.vpd"
1217
1218 struct lancer_cmd_req_read_object {
1219         struct be_cmd_req_hdr hdr;
1220         u32 desired_read_len;
1221         u32 read_offset;
1222         u8 object_name[104];
1223         u32 descriptor_count;
1224         u32 buf_len;
1225         u32 addr_low;
1226         u32 addr_high;
1227 };
1228
1229 struct lancer_cmd_resp_read_object {
1230         u8 opcode;
1231         u8 subsystem;
1232         u8 rsvd1[2];
1233         u8 status;
1234         u8 additional_status;
1235         u8 rsvd2[2];
1236         u32 resp_len;
1237         u32 actual_resp_len;
1238         u32 actual_read_len;
1239         u32 eof;
1240 };
1241
1242 /************************ WOL *******************************/
1243 struct be_cmd_req_acpi_wol_magic_config{
1244         struct be_cmd_req_hdr hdr;
1245         u32 rsvd0[145];
1246         u8 magic_mac[6];
1247         u8 rsvd2[2];
1248 } __packed;
1249
1250 struct be_cmd_req_acpi_wol_magic_config_v1 {
1251         struct be_cmd_req_hdr hdr;
1252         u8 rsvd0[2];
1253         u8 query_options;
1254         u8 rsvd1[5];
1255         u32 rsvd2[288];
1256         u8 magic_mac[6];
1257         u8 rsvd3[22];
1258 } __packed;
1259
1260 struct be_cmd_resp_acpi_wol_magic_config_v1 {
1261         struct be_cmd_resp_hdr hdr;
1262         u8 rsvd0[2];
1263         u8 wol_settings;
1264         u8 rsvd1[5];
1265         u32 rsvd2[295];
1266 } __packed;
1267
1268 #define BE_GET_WOL_CAP                  2
1269
1270 #define BE_WOL_CAP                      0x1
1271 #define BE_PME_D0_CAP                   0x8
1272 #define BE_PME_D1_CAP                   0x10
1273 #define BE_PME_D2_CAP                   0x20
1274 #define BE_PME_D3HOT_CAP                0x40
1275 #define BE_PME_D3COLD_CAP               0x80
1276
1277 /********************** LoopBack test *********************/
1278 struct be_cmd_req_loopback_test {
1279         struct be_cmd_req_hdr hdr;
1280         u32 loopback_type;
1281         u32 num_pkts;
1282         u64 pattern;
1283         u32 src_port;
1284         u32 dest_port;
1285         u32 pkt_size;
1286 };
1287
1288 struct be_cmd_resp_loopback_test {
1289         struct be_cmd_resp_hdr resp_hdr;
1290         u32    status;
1291         u32    num_txfer;
1292         u32    num_rx;
1293         u32    miscomp_off;
1294         u32    ticks_compl;
1295 };
1296
1297 struct be_cmd_req_set_lmode {
1298         struct be_cmd_req_hdr hdr;
1299         u8 src_port;
1300         u8 dest_port;
1301         u8 loopback_type;
1302         u8 loopback_state;
1303 };
1304
1305 struct be_cmd_resp_set_lmode {
1306         struct be_cmd_resp_hdr resp_hdr;
1307         u8 rsvd0[4];
1308 };
1309
1310 /********************** DDR DMA test *********************/
1311 struct be_cmd_req_ddrdma_test {
1312         struct be_cmd_req_hdr hdr;
1313         u64 pattern;
1314         u32 byte_count;
1315         u32 rsvd0;
1316         u8  snd_buff[4096];
1317         u8  rsvd1[4096];
1318 };
1319
1320 struct be_cmd_resp_ddrdma_test {
1321         struct be_cmd_resp_hdr hdr;
1322         u64 pattern;
1323         u32 byte_cnt;
1324         u32 snd_err;
1325         u8  rsvd0[4096];
1326         u8  rcv_buff[4096];
1327 };
1328
1329 /*********************** SEEPROM Read ***********************/
1330
1331 #define BE_READ_SEEPROM_LEN 1024
1332 struct be_cmd_req_seeprom_read {
1333         struct be_cmd_req_hdr hdr;
1334         u8 rsvd0[BE_READ_SEEPROM_LEN];
1335 };
1336
1337 struct be_cmd_resp_seeprom_read {
1338         struct be_cmd_req_hdr hdr;
1339         u8 seeprom_data[BE_READ_SEEPROM_LEN];
1340 };
1341
1342 enum {
1343         PHY_TYPE_CX4_10GB = 0,
1344         PHY_TYPE_XFP_10GB,
1345         PHY_TYPE_SFP_1GB,
1346         PHY_TYPE_SFP_PLUS_10GB,
1347         PHY_TYPE_KR_10GB,
1348         PHY_TYPE_KX4_10GB,
1349         PHY_TYPE_BASET_10GB,
1350         PHY_TYPE_BASET_1GB,
1351         PHY_TYPE_BASEX_1GB,
1352         PHY_TYPE_SGMII,
1353         PHY_TYPE_DISABLED = 255
1354 };
1355
1356 #define BE_SUPPORTED_SPEED_NONE         0
1357 #define BE_SUPPORTED_SPEED_10MBPS       1
1358 #define BE_SUPPORTED_SPEED_100MBPS      2
1359 #define BE_SUPPORTED_SPEED_1GBPS        4
1360 #define BE_SUPPORTED_SPEED_10GBPS       8
1361
1362 #define BE_AN_EN                        0x2
1363 #define BE_PAUSE_SYM_EN                 0x80
1364
1365 /* MAC speed valid values */
1366 #define SPEED_DEFAULT  0x0
1367 #define SPEED_FORCED_10GB  0x1
1368 #define SPEED_FORCED_1GB  0x2
1369 #define SPEED_AUTONEG_10GB  0x3
1370 #define SPEED_AUTONEG_1GB  0x4
1371 #define SPEED_AUTONEG_100MB  0x5
1372 #define SPEED_AUTONEG_10GB_1GB 0x6
1373 #define SPEED_AUTONEG_10GB_1GB_100MB 0x7
1374 #define SPEED_AUTONEG_1GB_100MB  0x8
1375 #define SPEED_AUTONEG_10MB  0x9
1376 #define SPEED_AUTONEG_1GB_100MB_10MB 0xa
1377 #define SPEED_AUTONEG_100MB_10MB 0xb
1378 #define SPEED_FORCED_100MB  0xc
1379 #define SPEED_FORCED_10MB  0xd
1380
1381 struct be_cmd_req_get_phy_info {
1382         struct be_cmd_req_hdr hdr;
1383         u8 rsvd0[24];
1384 };
1385
1386 struct be_phy_info {
1387         u16 phy_type;
1388         u16 interface_type;
1389         u32 misc_params;
1390         u16 ext_phy_details;
1391         u16 rsvd;
1392         u16 auto_speeds_supported;
1393         u16 fixed_speeds_supported;
1394         u32 future_use[2];
1395 };
1396
1397 struct be_cmd_resp_get_phy_info {
1398         struct be_cmd_req_hdr hdr;
1399         struct be_phy_info phy_info;
1400 };
1401
1402 /*********************** Set QOS ***********************/
1403
1404 #define BE_QOS_BITS_NIC                         1
1405
1406 struct be_cmd_req_set_qos {
1407         struct be_cmd_req_hdr hdr;
1408         u32 valid_bits;
1409         u32 max_bps_nic;
1410         u32 rsvd[7];
1411 };
1412
1413 struct be_cmd_resp_set_qos {
1414         struct be_cmd_resp_hdr hdr;
1415         u32 rsvd;
1416 };
1417
1418 /*********************** Controller Attributes ***********************/
1419 struct be_cmd_req_cntl_attribs {
1420         struct be_cmd_req_hdr hdr;
1421 };
1422
1423 struct be_cmd_resp_cntl_attribs {
1424         struct be_cmd_resp_hdr hdr;
1425         struct mgmt_controller_attrib attribs;
1426 };
1427
1428 /*********************** Set driver function ***********************/
1429 #define CAPABILITY_SW_TIMESTAMPS        2
1430 #define CAPABILITY_BE3_NATIVE_ERX_API   4
1431
1432 struct be_cmd_req_set_func_cap {
1433         struct be_cmd_req_hdr hdr;
1434         u32 valid_cap_flags;
1435         u32 cap_flags;
1436         u8 rsvd[212];
1437 };
1438
1439 struct be_cmd_resp_set_func_cap {
1440         struct be_cmd_resp_hdr hdr;
1441         u32 valid_cap_flags;
1442         u32 cap_flags;
1443         u8 rsvd[212];
1444 };
1445
1446 /*********************** Function Privileges ***********************/
1447 enum {
1448         BE_PRIV_DEFAULT = 0x1,
1449         BE_PRIV_LNKQUERY = 0x2,
1450         BE_PRIV_LNKSTATS = 0x4,
1451         BE_PRIV_LNKMGMT = 0x8,
1452         BE_PRIV_LNKDIAG = 0x10,
1453         BE_PRIV_UTILQUERY = 0x20,
1454         BE_PRIV_FILTMGMT = 0x40,
1455         BE_PRIV_IFACEMGMT = 0x80,
1456         BE_PRIV_VHADM = 0x100,
1457         BE_PRIV_DEVCFG = 0x200,
1458         BE_PRIV_DEVSEC = 0x400
1459 };
1460 #define MAX_PRIVILEGES          (BE_PRIV_VHADM | BE_PRIV_DEVCFG | \
1461                                  BE_PRIV_DEVSEC)
1462 #define MIN_PRIVILEGES          BE_PRIV_DEFAULT
1463
1464 struct be_cmd_priv_map {
1465         u8 opcode;
1466         u8 subsystem;
1467         u32 priv_mask;
1468 };
1469
1470 struct be_cmd_req_get_fn_privileges {
1471         struct be_cmd_req_hdr hdr;
1472         u32 rsvd;
1473 };
1474
1475 struct be_cmd_resp_get_fn_privileges {
1476         struct be_cmd_resp_hdr hdr;
1477         u32 privilege_mask;
1478 };
1479
1480
1481 /******************** GET/SET_MACLIST  **************************/
1482 #define BE_MAX_MAC                      64
1483 struct be_cmd_req_get_mac_list {
1484         struct be_cmd_req_hdr hdr;
1485         u8 mac_type;
1486         u8 perm_override;
1487         u16 iface_id;
1488         u32 mac_id;
1489         u32 rsvd[3];
1490 } __packed;
1491
1492 struct get_list_macaddr {
1493         u16 mac_addr_size;
1494         union {
1495                 u8 macaddr[6];
1496                 struct {
1497                         u8 rsvd[2];
1498                         u32 mac_id;
1499                 } __packed s_mac_id;
1500         } __packed mac_addr_id;
1501 } __packed;
1502
1503 struct be_cmd_resp_get_mac_list {
1504         struct be_cmd_resp_hdr hdr;
1505         struct get_list_macaddr fd_macaddr; /* Factory default mac */
1506         struct get_list_macaddr macid_macaddr; /* soft mac */
1507         u8 true_mac_count;
1508         u8 pseudo_mac_count;
1509         u8 mac_list_size;
1510         u8 rsvd;
1511         /* perm override mac */
1512         struct get_list_macaddr macaddr_list[BE_MAX_MAC];
1513 } __packed;
1514
1515 struct be_cmd_req_set_mac_list {
1516         struct be_cmd_req_hdr hdr;
1517         u8 mac_count;
1518         u8 rsvd1;
1519         u16 rsvd2;
1520         struct macaddr mac[BE_MAX_MAC];
1521 } __packed;
1522
1523 /*********************** HSW Config ***********************/
1524 struct amap_set_hsw_context {
1525         u8 interface_id[16];
1526         u8 rsvd0[14];
1527         u8 pvid_valid;
1528         u8 rsvd1;
1529         u8 rsvd2[16];
1530         u8 pvid[16];
1531         u8 rsvd3[32];
1532         u8 rsvd4[32];
1533         u8 rsvd5[32];
1534 } __packed;
1535
1536 struct be_cmd_req_set_hsw_config {
1537         struct be_cmd_req_hdr hdr;
1538         u8 context[sizeof(struct amap_set_hsw_context) / 8];
1539 } __packed;
1540
1541 struct be_cmd_resp_set_hsw_config {
1542         struct be_cmd_resp_hdr hdr;
1543         u32 rsvd;
1544 };
1545
1546 struct amap_get_hsw_req_context {
1547         u8 interface_id[16];
1548         u8 rsvd0[14];
1549         u8 pvid_valid;
1550         u8 pport;
1551 } __packed;
1552
1553 struct amap_get_hsw_resp_context {
1554         u8 rsvd1[16];
1555         u8 pvid[16];
1556         u8 rsvd2[32];
1557         u8 rsvd3[32];
1558         u8 rsvd4[32];
1559 } __packed;
1560
1561 struct be_cmd_req_get_hsw_config {
1562         struct be_cmd_req_hdr hdr;
1563         u8 context[sizeof(struct amap_get_hsw_req_context) / 8];
1564 } __packed;
1565
1566 struct be_cmd_resp_get_hsw_config {
1567         struct be_cmd_resp_hdr hdr;
1568         u8 context[sizeof(struct amap_get_hsw_resp_context) / 8];
1569         u32 rsvd;
1570 };
1571
1572 /******************* get port names ***************/
1573 struct be_cmd_req_get_port_name {
1574         struct be_cmd_req_hdr hdr;
1575         u32 rsvd0;
1576 };
1577
1578 struct be_cmd_resp_get_port_name {
1579         struct be_cmd_req_hdr hdr;
1580         u8 port_name[4];
1581 };
1582
1583 /*************** HW Stats Get v1 **********************************/
1584 #define BE_TXP_SW_SZ                    48
1585 struct be_port_rxf_stats_v1 {
1586         u32 rsvd0[12];
1587         u32 rx_crc_errors;
1588         u32 rx_alignment_symbol_errors;
1589         u32 rx_pause_frames;
1590         u32 rx_priority_pause_frames;
1591         u32 rx_control_frames;
1592         u32 rx_in_range_errors;
1593         u32 rx_out_range_errors;
1594         u32 rx_frame_too_long;
1595         u32 rx_address_mismatch_drops;
1596         u32 rx_dropped_too_small;
1597         u32 rx_dropped_too_short;
1598         u32 rx_dropped_header_too_small;
1599         u32 rx_dropped_tcp_length;
1600         u32 rx_dropped_runt;
1601         u32 rsvd1[10];
1602         u32 rx_ip_checksum_errs;
1603         u32 rx_tcp_checksum_errs;
1604         u32 rx_udp_checksum_errs;
1605         u32 rsvd2[7];
1606         u32 rx_switched_unicast_packets;
1607         u32 rx_switched_multicast_packets;
1608         u32 rx_switched_broadcast_packets;
1609         u32 rsvd3[3];
1610         u32 tx_pauseframes;
1611         u32 tx_priority_pauseframes;
1612         u32 tx_controlframes;
1613         u32 rsvd4[10];
1614         u32 rxpp_fifo_overflow_drop;
1615         u32 rx_input_fifo_overflow_drop;
1616         u32 pmem_fifo_overflow_drop;
1617         u32 jabber_events;
1618         u32 rsvd5[3];
1619 };
1620
1621
1622 struct be_rxf_stats_v1 {
1623         struct be_port_rxf_stats_v1 port[4];
1624         u32 rsvd0[2];
1625         u32 rx_drops_no_pbuf;
1626         u32 rx_drops_no_txpb;
1627         u32 rx_drops_no_erx_descr;
1628         u32 rx_drops_no_tpre_descr;
1629         u32 rsvd1[6];
1630         u32 rx_drops_too_many_frags;
1631         u32 rx_drops_invalid_ring;
1632         u32 forwarded_packets;
1633         u32 rx_drops_mtu;
1634         u32 rsvd2[14];
1635 };
1636
1637 struct be_erx_stats_v1 {
1638         u32 rx_drops_no_fragments[68];     /* dwordS 0 to 67*/
1639         u32 rsvd[4];
1640 };
1641
1642 struct be_hw_stats_v1 {
1643         struct be_rxf_stats_v1 rxf;
1644         u32 rsvd0[BE_TXP_SW_SZ];
1645         struct be_erx_stats_v1 erx;
1646         struct be_pmem_stats pmem;
1647         u32 rsvd1[18];
1648 };
1649
1650 struct be_cmd_req_get_stats_v1 {
1651         struct be_cmd_req_hdr hdr;
1652         u8 rsvd[sizeof(struct be_hw_stats_v1)];
1653 };
1654
1655 struct be_cmd_resp_get_stats_v1 {
1656         struct be_cmd_resp_hdr hdr;
1657         struct be_hw_stats_v1 hw_stats;
1658 };
1659
1660 /************** get fat capabilites *******************/
1661 #define MAX_MODULES 27
1662 #define MAX_MODES 4
1663 #define MODE_UART 0
1664 #define FW_LOG_LEVEL_DEFAULT 48
1665 #define FW_LOG_LEVEL_FATAL 64
1666
1667 struct ext_fat_mode {
1668         u8 mode;
1669         u8 rsvd0;
1670         u16 port_mask;
1671         u32 dbg_lvl;
1672         u64 fun_mask;
1673 } __packed;
1674
1675 struct ext_fat_modules {
1676         u8 modules_str[32];
1677         u32 modules_id;
1678         u32 num_modes;
1679         struct ext_fat_mode trace_lvl[MAX_MODES];
1680 } __packed;
1681
1682 struct be_fat_conf_params {
1683         u32 max_log_entries;
1684         u32 log_entry_size;
1685         u8 log_type;
1686         u8 max_log_funs;
1687         u8 max_log_ports;
1688         u8 rsvd0;
1689         u32 supp_modes;
1690         u32 num_modules;
1691         struct ext_fat_modules module[MAX_MODULES];
1692 } __packed;
1693
1694 struct be_cmd_req_get_ext_fat_caps {
1695         struct be_cmd_req_hdr hdr;
1696         u32 parameter_type;
1697 };
1698
1699 struct be_cmd_resp_get_ext_fat_caps {
1700         struct be_cmd_resp_hdr hdr;
1701         struct be_fat_conf_params get_params;
1702 };
1703
1704 struct be_cmd_req_set_ext_fat_caps {
1705         struct be_cmd_req_hdr hdr;
1706         struct be_fat_conf_params set_params;
1707 };
1708
1709 #define RESOURCE_DESC_SIZE                      72
1710 #define NIC_RESOURCE_DESC_TYPE_ID               0x41
1711 #define MAX_RESOURCE_DESC                       4
1712
1713 /* QOS unit number */
1714 #define QUN                                     4
1715 /* Immediate */
1716 #define IMM                                     6
1717 /* No save */
1718 #define NOSV                                    7
1719
1720 struct be_nic_resource_desc {
1721         u8 desc_type;
1722         u8 desc_len;
1723         u8 rsvd1;
1724         u8 flags;
1725         u8 vf_num;
1726         u8 rsvd2;
1727         u8 pf_num;
1728         u8 rsvd3;
1729         u16 unicast_mac_count;
1730         u8 rsvd4[6];
1731         u16 mcc_count;
1732         u16 vlan_count;
1733         u16 mcast_mac_count;
1734         u16 txq_count;
1735         u16 rq_count;
1736         u16 rssq_count;
1737         u16 lro_count;
1738         u16 cq_count;
1739         u16 toe_conn_count;
1740         u16 eq_count;
1741         u32 rsvd5;
1742         u32 cap_flags;
1743         u8 link_param;
1744         u8 rsvd6[3];
1745         u32 bw_min;
1746         u32 bw_max;
1747         u8 acpi_params;
1748         u8 wol_param;
1749         u16 rsvd7;
1750         u32 rsvd8[3];
1751 };
1752
1753 struct be_cmd_req_get_func_config {
1754         struct be_cmd_req_hdr hdr;
1755 };
1756
1757 struct be_cmd_resp_get_func_config {
1758         struct be_cmd_req_hdr hdr;
1759         u32 desc_count;
1760         u8 func_param[MAX_RESOURCE_DESC * RESOURCE_DESC_SIZE];
1761 };
1762
1763 #define ACTIVE_PROFILE_TYPE                     0x2
1764 struct be_cmd_req_get_profile_config {
1765         struct be_cmd_req_hdr hdr;
1766         u8 rsvd;
1767         u8 type;
1768         u16 rsvd1;
1769 };
1770
1771 struct be_cmd_resp_get_profile_config {
1772         struct be_cmd_req_hdr hdr;
1773         u32 desc_count;
1774         u8 func_param[MAX_RESOURCE_DESC * RESOURCE_DESC_SIZE];
1775 };
1776
1777 struct be_cmd_req_set_profile_config {
1778         struct be_cmd_req_hdr hdr;
1779         u32 rsvd;
1780         u32 desc_count;
1781         struct be_nic_resource_desc nic_desc;
1782 };
1783
1784 struct be_cmd_resp_set_profile_config {
1785         struct be_cmd_req_hdr hdr;
1786 };
1787
1788 struct be_cmd_enable_disable_vf {
1789         struct be_cmd_req_hdr hdr;
1790         u8 enable;
1791         u8 rsvd[3];
1792 };
1793
1794 static inline bool check_privilege(struct be_adapter *adapter, u32 flags)
1795 {
1796         return flags & adapter->cmd_privileges ? true : false;
1797 }
1798
1799 /************** Get IFACE LIST *******************/
1800 struct be_if_desc {
1801         u32 if_id;
1802         u32 cap_flags;
1803         u32 en_flags;
1804 };
1805
1806 struct be_cmd_req_get_iface_list {
1807         struct be_cmd_req_hdr hdr;
1808 };
1809
1810 struct be_cmd_resp_get_iface_list {
1811         struct be_cmd_req_hdr hdr;
1812         u32 if_cnt;
1813         struct be_if_desc if_desc;
1814 };
1815
1816 extern int be_pci_fnum_get(struct be_adapter *adapter);
1817 extern int be_fw_wait_ready(struct be_adapter *adapter);
1818 extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
1819                                  bool permanent, u32 if_handle, u32 pmac_id);
1820 extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
1821                         u32 if_id, u32 *pmac_id, u32 domain);
1822 extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
1823                         int pmac_id, u32 domain);
1824 extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
1825                             u32 en_flags, u32 *if_handle, u32 domain);
1826 extern int be_cmd_if_destroy(struct be_adapter *adapter, int if_handle,
1827                         u32 domain);
1828 extern int be_cmd_eq_create(struct be_adapter *adapter,
1829                         struct be_queue_info *eq, int eq_delay);
1830 extern int be_cmd_cq_create(struct be_adapter *adapter,
1831                         struct be_queue_info *cq, struct be_queue_info *eq,
1832                         bool no_delay, int num_cqe_dma_coalesce);
1833 extern int be_cmd_mccq_create(struct be_adapter *adapter,
1834                         struct be_queue_info *mccq,
1835                         struct be_queue_info *cq);
1836 extern int be_cmd_txq_create(struct be_adapter *adapter,
1837                         struct be_queue_info *txq,
1838                         struct be_queue_info *cq);
1839 extern int be_cmd_rxq_create(struct be_adapter *adapter,
1840                         struct be_queue_info *rxq, u16 cq_id,
1841                         u16 frag_size, u32 if_id, u32 rss, u8 *rss_id);
1842 extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
1843                         int type);
1844 extern int be_cmd_rxq_destroy(struct be_adapter *adapter,
1845                         struct be_queue_info *q);
1846 extern int be_cmd_link_status_query(struct be_adapter *adapter, u16 *link_speed,
1847                                     u8 *link_status, u32 dom);
1848 extern int be_cmd_reset(struct be_adapter *adapter);
1849 extern int be_cmd_get_stats(struct be_adapter *adapter,
1850                         struct be_dma_mem *nonemb_cmd);
1851 extern int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1852                         struct be_dma_mem *nonemb_cmd);
1853 extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver,
1854                 char *fw_on_flash);
1855
1856 extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
1857 extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
1858                         u16 *vtag_array, u32 num, bool untagged,
1859                         bool promiscuous);
1860 extern int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 status);
1861 extern int be_cmd_set_flow_control(struct be_adapter *adapter,
1862                         u32 tx_fc, u32 rx_fc);
1863 extern int be_cmd_get_flow_control(struct be_adapter *adapter,
1864                         u32 *tx_fc, u32 *rx_fc);
1865 extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
1866                         u32 *port_num, u32 *function_mode, u32 *function_caps);
1867 extern int be_cmd_reset_function(struct be_adapter *adapter);
1868 extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
1869                         u16 table_size);
1870 extern int be_process_mcc(struct be_adapter *adapter);
1871 extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
1872                         u8 port_num, u8 beacon, u8 status, u8 state);
1873 extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
1874                         u8 port_num, u32 *state);
1875 extern int be_cmd_write_flashrom(struct be_adapter *adapter,
1876                         struct be_dma_mem *cmd, u32 flash_oper,
1877                         u32 flash_opcode, u32 buf_size);
1878 extern int lancer_cmd_write_object(struct be_adapter *adapter,
1879                                    struct be_dma_mem *cmd,
1880                                    u32 data_size, u32 data_offset,
1881                                    const char *obj_name,
1882                                    u32 *data_written, u8 *change_status,
1883                                    u8 *addn_status);
1884 int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
1885                 u32 data_size, u32 data_offset, const char *obj_name,
1886                 u32 *data_read, u32 *eof, u8 *addn_status);
1887 int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
1888                                 int offset);
1889 extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
1890                                 struct be_dma_mem *nonemb_cmd);
1891 extern int be_cmd_fw_init(struct be_adapter *adapter);
1892 extern int be_cmd_fw_clean(struct be_adapter *adapter);
1893 extern void be_async_mcc_enable(struct be_adapter *adapter);
1894 extern void be_async_mcc_disable(struct be_adapter *adapter);
1895 extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
1896                                 u32 loopback_type, u32 pkt_size,
1897                                 u32 num_pkts, u64 pattern);
1898 extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
1899                         u32 byte_cnt, struct be_dma_mem *cmd);
1900 extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
1901                                 struct be_dma_mem *nonemb_cmd);
1902 extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
1903                                 u8 loopback_type, u8 enable);
1904 extern int be_cmd_get_phy_info(struct be_adapter *adapter);
1905 extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
1906 extern void be_detect_error(struct be_adapter *adapter);
1907 extern int be_cmd_get_die_temperature(struct be_adapter *adapter);
1908 extern int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
1909 extern int be_cmd_req_native_mode(struct be_adapter *adapter);
1910 extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size);
1911 extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf);
1912 extern int be_cmd_get_fn_privileges(struct be_adapter *adapter,
1913                                     u32 *privilege, u32 domain);
1914 extern int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
1915                                     bool *pmac_id_active, u32 *pmac_id,
1916                                     u8 domain);
1917 extern int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array,
1918                                                 u8 mac_count, u32 domain);
1919 extern int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid,
1920                         u32 domain, u16 intf_id);
1921 extern int be_cmd_get_hsw_config(struct be_adapter *adapter, u16 *pvid,
1922                         u32 domain, u16 intf_id);
1923 extern int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter);
1924 extern int be_cmd_get_ext_fat_capabilites(struct be_adapter *adapter,
1925                                           struct be_dma_mem *cmd);
1926 extern int be_cmd_set_ext_fat_capabilites(struct be_adapter *adapter,
1927                                           struct be_dma_mem *cmd,
1928                                           struct be_fat_conf_params *cfgs);
1929 extern int lancer_wait_ready(struct be_adapter *adapter);
1930 extern int lancer_test_and_set_rdy_state(struct be_adapter *adapter);
1931 extern int be_cmd_query_port_name(struct be_adapter *adapter, u8 *port_name);
1932 extern int be_cmd_get_func_config(struct be_adapter *adapter);
1933 extern int be_cmd_get_profile_config(struct be_adapter *adapter, u32 *cap_flags,
1934                                      u8 domain);
1935
1936 extern int be_cmd_set_profile_config(struct be_adapter *adapter, u32 bps,
1937                                      u8 domain);
1938 extern int be_cmd_get_if_id(struct be_adapter *adapter,
1939                             struct be_vf_cfg *vf_cfg, int vf_num);
1940 extern int be_cmd_enable_vf(struct be_adapter *adapter, u8 domain);