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