blob: ac112465e71901c21b30105aecc83f39be551272 [file] [log] [blame]
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001/*
Ajit Khaparded2145cd2011-03-16 08:20:46 +00002 * Copyright (C) 2005 - 2011 Emulex
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003 * 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:
Ajit Khaparded2145cd2011-03-16 08:20:46 +000011 * linux-drivers@emulex.com
Sathya Perla6b7c5b92009-03-11 23:32:03 -070012 *
Ajit Khaparded2145cd2011-03-16 08:20:46 +000013 * Emulex
14 * 3333 Susan Street
15 * Costa Mesa, CA 92626
Sathya Perla6b7c5b92009-03-11 23:32:03 -070016 */
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
26struct 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 */
35struct 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 */
53enum {
Sathya Perla2b3f2912011-06-29 23:32:56 +000054 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,
Ajit Khaparde49643842009-10-05 02:22:05 +000060 MCC_STATUS_NOT_SUPPORTED = 66
Sathya Perla6b7c5b92009-03-11 23:32:03 -070061};
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
Sathya Perlaf5209b42009-11-06 00:31:01 -080066#define CQE_STATUS_EXTD_SHIFT 16 /* bits 16 - 31 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -070067
Sathya Perlaefd2e402009-07-27 22:53:10 +000068struct be_mcc_compl {
Sathya Perla6b7c5b92009-03-11 23:32:03 -070069 u32 status; /* dword 0 */
70 u32 tag0; /* dword 1 */
71 u32 tag1; /* dword 2 */
72 u32 flags; /* dword 3 */
73};
74
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000075/* 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
Somnath Koturcc4ce022010-10-21 07:11:14 -070080#define ASYNC_TRAILER_EVENT_TYPE_SHIFT 16
81#define ASYNC_TRAILER_EVENT_TYPE_MASK 0xFF
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000082#define ASYNC_EVENT_CODE_LINK_STATE 0x1
Somnath Koturcc4ce022010-10-21 07:11:14 -070083#define ASYNC_EVENT_CODE_GRP_5 0x5
84#define ASYNC_EVENT_QOS_SPEED 0x1
85#define ASYNC_EVENT_COS_PRIORITY 0x2
Ajit Khaparde3968fa12011-02-20 11:41:53 +000086#define ASYNC_EVENT_PVID_STATE 0x3
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000087struct be_async_event_trailer {
88 u32 code;
89};
90
91enum {
Sathya Perlaea172a02011-08-02 19:57:42 +000092 LINK_DOWN = 0x0,
93 LINK_UP = 0x1
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000094};
Sathya Perlaea172a02011-08-02 19:57:42 +000095#define LINK_STATUS_MASK 0x1
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000096
97/* When the event code of an async trailer is link-state, the mcc_compl
98 * must be interpreted as follows
99 */
100struct be_async_event_link_state {
101 u8 physical_port;
102 u8 port_link_status;
103 u8 port_duplex;
104 u8 port_speed;
105 u8 port_fault;
106 u8 rsvd0[7];
107 struct be_async_event_trailer trailer;
108} __packed;
109
Somnath Koturcc4ce022010-10-21 07:11:14 -0700110/* When the event code of an async trailer is GRP-5 and event_type is QOS_SPEED
111 * the mcc_compl must be interpreted as follows
112 */
113struct be_async_event_grp5_qos_link_speed {
114 u8 physical_port;
115 u8 rsvd[5];
116 u16 qos_link_speed;
117 u32 event_tag;
118 struct be_async_event_trailer trailer;
119} __packed;
120
121/* When the event code of an async trailer is GRP5 and event type is
122 * CoS-Priority, the mcc_compl must be interpreted as follows
123 */
124struct be_async_event_grp5_cos_priority {
125 u8 physical_port;
126 u8 available_priority_bmap;
127 u8 reco_default_priority;
128 u8 valid;
129 u8 rsvd0;
130 u8 event_tag;
131 struct be_async_event_trailer trailer;
132} __packed;
133
Ajit Khaparde3968fa12011-02-20 11:41:53 +0000134/* When the event code of an async trailer is GRP5 and event type is
135 * PVID state, the mcc_compl must be interpreted as follows
136 */
137struct be_async_event_grp5_pvid_state {
138 u8 enabled;
139 u8 rsvd0;
140 u16 tag;
141 u32 event_tag;
142 u32 rsvd1;
143 struct be_async_event_trailer trailer;
144} __packed;
145
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700146struct be_mcc_mailbox {
147 struct be_mcc_wrb wrb;
Sathya Perlaefd2e402009-07-27 22:53:10 +0000148 struct be_mcc_compl compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700149};
150
151#define CMD_SUBSYSTEM_COMMON 0x1
152#define CMD_SUBSYSTEM_ETH 0x3
Suresh Rff33a6e2009-12-03 16:15:52 -0800153#define CMD_SUBSYSTEM_LOWLEVEL 0xb
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700154
155#define OPCODE_COMMON_NTWK_MAC_QUERY 1
156#define OPCODE_COMMON_NTWK_MAC_SET 2
157#define OPCODE_COMMON_NTWK_MULTICAST_SET 3
158#define OPCODE_COMMON_NTWK_VLAN_CONFIG 4
159#define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY 5
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -0800160#define OPCODE_COMMON_READ_FLASHROM 6
Ajit Khaparde84517482009-09-04 03:12:16 +0000161#define OPCODE_COMMON_WRITE_FLASHROM 7
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700162#define OPCODE_COMMON_CQ_CREATE 12
163#define OPCODE_COMMON_EQ_CREATE 13
Somnath Koturcc4ce022010-10-21 07:11:14 -0700164#define OPCODE_COMMON_MCC_CREATE 21
Ajit Khapardee1d18732010-07-23 01:52:13 +0000165#define OPCODE_COMMON_SET_QOS 28
Somnath Koturcc4ce022010-10-21 07:11:14 -0700166#define OPCODE_COMMON_MCC_CREATE_EXT 90
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -0800167#define OPCODE_COMMON_SEEPROM_READ 30
Ajit Khaparde9e1453c2011-02-20 11:42:22 +0000168#define OPCODE_COMMON_GET_CNTL_ATTRIBUTES 32
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700169#define OPCODE_COMMON_NTWK_RX_FILTER 34
170#define OPCODE_COMMON_GET_FW_VERSION 35
171#define OPCODE_COMMON_SET_FLOW_CONTROL 36
172#define OPCODE_COMMON_GET_FLOW_CONTROL 37
173#define OPCODE_COMMON_SET_FRAME_SIZE 39
174#define OPCODE_COMMON_MODIFY_EQ_DELAY 41
175#define OPCODE_COMMON_FIRMWARE_CONFIG 42
176#define OPCODE_COMMON_NTWK_INTERFACE_CREATE 50
177#define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 51
Sathya Perla5fb379e2009-06-18 00:02:59 +0000178#define OPCODE_COMMON_MCC_DESTROY 53
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700179#define OPCODE_COMMON_CQ_DESTROY 54
180#define OPCODE_COMMON_EQ_DESTROY 55
181#define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG 58
182#define OPCODE_COMMON_NTWK_PMAC_ADD 59
183#define OPCODE_COMMON_NTWK_PMAC_DEL 60
sarveshwarb14074ea2009-08-05 13:05:24 -0700184#define OPCODE_COMMON_FUNCTION_RESET 61
Somnath Kotur311fddc2011-03-16 21:22:43 +0000185#define OPCODE_COMMON_MANAGE_FAT 68
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -0700186#define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
187#define OPCODE_COMMON_GET_BEACON_STATE 70
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700188#define OPCODE_COMMON_READ_TRANSRECV_DATA 73
Ajit Khapardeee3cb622010-07-01 03:51:00 +0000189#define OPCODE_COMMON_GET_PHY_DETAILS 102
Sathya Perla2e588f82011-03-11 02:49:26 +0000190#define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP 103
Ajit Khaparde609ff3b2011-02-20 11:42:07 +0000191#define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES 121
Padmanabh Ratnakarde49bd52011-11-16 02:02:43 +0000192#define OPCODE_COMMON_READ_OBJECT 171
Shripad Nunjundarao485bf562011-05-16 07:36:59 +0000193#define OPCODE_COMMON_WRITE_OBJECT 172
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700194
Sathya Perla3abcded2010-10-03 22:12:27 -0700195#define OPCODE_ETH_RSS_CONFIG 1
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700196#define OPCODE_ETH_ACPI_CONFIG 2
197#define OPCODE_ETH_PROMISCUOUS 3
198#define OPCODE_ETH_GET_STATISTICS 4
199#define OPCODE_ETH_TX_CREATE 7
200#define OPCODE_ETH_RX_CREATE 8
201#define OPCODE_ETH_TX_DESTROY 9
202#define OPCODE_ETH_RX_DESTROY 10
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +0000203#define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
Selvin Xavier005d5692011-05-16 07:36:35 +0000204#define OPCODE_ETH_GET_PPORT_STATS 18
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700205
Suresh Rff33a6e2009-12-03 16:15:52 -0800206#define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
207#define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
Sarveshwar Bandifced9992009-12-23 04:41:44 +0000208#define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
Suresh Rff33a6e2009-12-03 16:15:52 -0800209
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700210struct be_cmd_req_hdr {
211 u8 opcode; /* dword 0 */
212 u8 subsystem; /* dword 0 */
213 u8 port_number; /* dword 0 */
214 u8 domain; /* dword 0 */
215 u32 timeout; /* dword 1 */
216 u32 request_length; /* dword 2 */
Ajit Khaparde7b139c82010-01-27 21:56:44 +0000217 u8 version; /* dword 3 */
218 u8 rsvd[3]; /* dword 3 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700219};
220
221#define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
222#define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
223struct be_cmd_resp_hdr {
224 u32 info; /* dword 0 */
225 u32 status; /* dword 1 */
226 u32 response_length; /* dword 2 */
227 u32 actual_resp_len; /* dword 3 */
228};
229
230struct phys_addr {
231 u32 lo;
232 u32 hi;
233};
234
235/**************************
236 * BE Command definitions *
237 **************************/
238
239/* Pseudo amap definition in which each bit of the actual structure is defined
240 * as a byte: used to calculate offset/shift/mask of each field */
241struct amap_eq_context {
242 u8 cidx[13]; /* dword 0*/
243 u8 rsvd0[3]; /* dword 0*/
244 u8 epidx[13]; /* dword 0*/
245 u8 valid; /* dword 0*/
246 u8 rsvd1; /* dword 0*/
247 u8 size; /* dword 0*/
248 u8 pidx[13]; /* dword 1*/
249 u8 rsvd2[3]; /* dword 1*/
250 u8 pd[10]; /* dword 1*/
251 u8 count[3]; /* dword 1*/
252 u8 solevent; /* dword 1*/
253 u8 stalled; /* dword 1*/
254 u8 armed; /* dword 1*/
255 u8 rsvd3[4]; /* dword 2*/
256 u8 func[8]; /* dword 2*/
257 u8 rsvd4; /* dword 2*/
258 u8 delaymult[10]; /* dword 2*/
259 u8 rsvd5[2]; /* dword 2*/
260 u8 phase[2]; /* dword 2*/
261 u8 nodelay; /* dword 2*/
262 u8 rsvd6[4]; /* dword 2*/
263 u8 rsvd7[32]; /* dword 3*/
264} __packed;
265
266struct be_cmd_req_eq_create {
267 struct be_cmd_req_hdr hdr;
268 u16 num_pages; /* sword */
269 u16 rsvd0; /* sword */
270 u8 context[sizeof(struct amap_eq_context) / 8];
271 struct phys_addr pages[8];
272} __packed;
273
274struct be_cmd_resp_eq_create {
275 struct be_cmd_resp_hdr resp_hdr;
276 u16 eq_id; /* sword */
277 u16 rsvd0; /* sword */
278} __packed;
279
280/******************** Mac query ***************************/
281enum {
282 MAC_ADDRESS_TYPE_STORAGE = 0x0,
283 MAC_ADDRESS_TYPE_NETWORK = 0x1,
284 MAC_ADDRESS_TYPE_PD = 0x2,
285 MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
286};
287
288struct mac_addr {
289 u16 size_of_struct;
290 u8 addr[ETH_ALEN];
291} __packed;
292
293struct be_cmd_req_mac_query {
294 struct be_cmd_req_hdr hdr;
295 u8 type;
296 u8 permanent;
297 u16 if_id;
298} __packed;
299
300struct be_cmd_resp_mac_query {
301 struct be_cmd_resp_hdr hdr;
302 struct mac_addr mac;
303};
304
305/******************** PMac Add ***************************/
306struct be_cmd_req_pmac_add {
307 struct be_cmd_req_hdr hdr;
308 u32 if_id;
309 u8 mac_address[ETH_ALEN];
310 u8 rsvd0[2];
311} __packed;
312
313struct be_cmd_resp_pmac_add {
314 struct be_cmd_resp_hdr hdr;
315 u32 pmac_id;
316};
317
318/******************** PMac Del ***************************/
319struct be_cmd_req_pmac_del {
320 struct be_cmd_req_hdr hdr;
321 u32 if_id;
322 u32 pmac_id;
323};
324
325/******************** Create CQ ***************************/
326/* Pseudo amap definition in which each bit of the actual structure is defined
327 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000328struct amap_cq_context_be {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700329 u8 cidx[11]; /* dword 0*/
330 u8 rsvd0; /* dword 0*/
331 u8 coalescwm[2]; /* dword 0*/
332 u8 nodelay; /* dword 0*/
333 u8 epidx[11]; /* dword 0*/
334 u8 rsvd1; /* dword 0*/
335 u8 count[2]; /* dword 0*/
336 u8 valid; /* dword 0*/
337 u8 solevent; /* dword 0*/
338 u8 eventable; /* dword 0*/
339 u8 pidx[11]; /* dword 1*/
340 u8 rsvd2; /* dword 1*/
341 u8 pd[10]; /* dword 1*/
342 u8 eqid[8]; /* dword 1*/
343 u8 stalled; /* dword 1*/
344 u8 armed; /* dword 1*/
345 u8 rsvd3[4]; /* dword 2*/
346 u8 func[8]; /* dword 2*/
347 u8 rsvd4[20]; /* dword 2*/
348 u8 rsvd5[32]; /* dword 3*/
349} __packed;
350
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000351struct amap_cq_context_lancer {
352 u8 rsvd0[12]; /* dword 0*/
353 u8 coalescwm[2]; /* dword 0*/
354 u8 nodelay; /* dword 0*/
355 u8 rsvd1[12]; /* dword 0*/
356 u8 count[2]; /* dword 0*/
357 u8 valid; /* dword 0*/
358 u8 rsvd2; /* dword 0*/
359 u8 eventable; /* dword 0*/
360 u8 eqid[16]; /* dword 1*/
361 u8 rsvd3[15]; /* dword 1*/
362 u8 armed; /* dword 1*/
363 u8 rsvd4[32]; /* dword 2*/
364 u8 rsvd5[32]; /* dword 3*/
365} __packed;
366
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700367struct be_cmd_req_cq_create {
368 struct be_cmd_req_hdr hdr;
369 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000370 u8 page_size;
371 u8 rsvd0;
372 u8 context[sizeof(struct amap_cq_context_be) / 8];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700373 struct phys_addr pages[8];
374} __packed;
375
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000376
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700377struct be_cmd_resp_cq_create {
378 struct be_cmd_resp_hdr hdr;
379 u16 cq_id;
380 u16 rsvd0;
381} __packed;
382
Somnath Kotur311fddc2011-03-16 21:22:43 +0000383struct be_cmd_req_get_fat {
384 struct be_cmd_req_hdr hdr;
385 u32 fat_operation;
386 u32 read_log_offset;
387 u32 read_log_length;
388 u32 data_buffer_size;
389 u32 data_buffer[1];
390} __packed;
391
392struct be_cmd_resp_get_fat {
393 struct be_cmd_resp_hdr hdr;
394 u32 log_size;
395 u32 read_log_length;
396 u32 rsvd[2];
397 u32 data_buffer[1];
398} __packed;
399
400
Sathya Perla5fb379e2009-06-18 00:02:59 +0000401/******************** Create MCCQ ***************************/
402/* Pseudo amap definition in which each bit of the actual structure is defined
403 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000404struct amap_mcc_context_be {
Sathya Perla5fb379e2009-06-18 00:02:59 +0000405 u8 con_index[14];
406 u8 rsvd0[2];
407 u8 ring_size[4];
408 u8 fetch_wrb;
409 u8 fetch_r2t;
410 u8 cq_id[10];
411 u8 prod_index[14];
412 u8 fid[8];
413 u8 pdid[9];
414 u8 valid;
415 u8 rsvd1[32];
416 u8 rsvd2[32];
417} __packed;
418
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000419struct amap_mcc_context_lancer {
420 u8 async_cq_id[16];
421 u8 ring_size[4];
422 u8 rsvd0[12];
423 u8 rsvd1[31];
424 u8 valid;
425 u8 async_cq_valid[1];
426 u8 rsvd2[31];
427 u8 rsvd3[32];
428} __packed;
429
Sathya Perla5fb379e2009-06-18 00:02:59 +0000430struct be_cmd_req_mcc_create {
431 struct be_cmd_req_hdr hdr;
432 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000433 u16 cq_id;
Somnath Kotur34b1ef02011-06-01 00:33:22 +0000434 u8 context[sizeof(struct amap_mcc_context_be) / 8];
435 struct phys_addr pages[8];
436} __packed;
437
438struct be_cmd_req_mcc_ext_create {
439 struct be_cmd_req_hdr hdr;
440 u16 num_pages;
441 u16 cq_id;
Somnath Koturcc4ce022010-10-21 07:11:14 -0700442 u32 async_event_bitmap[1];
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000443 u8 context[sizeof(struct amap_mcc_context_be) / 8];
Sathya Perla5fb379e2009-06-18 00:02:59 +0000444 struct phys_addr pages[8];
445} __packed;
446
447struct be_cmd_resp_mcc_create {
448 struct be_cmd_resp_hdr hdr;
449 u16 id;
450 u16 rsvd0;
451} __packed;
452
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700453/******************** Create TxQ ***************************/
454#define BE_ETH_TX_RING_TYPE_STANDARD 2
455#define BE_ULP1_NUM 1
456
457/* Pseudo amap definition in which each bit of the actual structure is defined
458 * as a byte: used to calculate offset/shift/mask of each field */
459struct amap_tx_context {
Padmanabh Ratnakar8b7756c2011-03-07 03:08:52 +0000460 u8 if_id[16]; /* dword 0 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700461 u8 tx_ring_size[4]; /* dword 0 */
462 u8 rsvd1[26]; /* dword 0 */
463 u8 pci_func_id[8]; /* dword 1 */
464 u8 rsvd2[9]; /* dword 1 */
465 u8 ctx_valid; /* dword 1 */
466 u8 cq_id_send[16]; /* dword 2 */
467 u8 rsvd3[16]; /* dword 2 */
468 u8 rsvd4[32]; /* dword 3 */
469 u8 rsvd5[32]; /* dword 4 */
470 u8 rsvd6[32]; /* dword 5 */
471 u8 rsvd7[32]; /* dword 6 */
472 u8 rsvd8[32]; /* dword 7 */
473 u8 rsvd9[32]; /* dword 8 */
474 u8 rsvd10[32]; /* dword 9 */
475 u8 rsvd11[32]; /* dword 10 */
476 u8 rsvd12[32]; /* dword 11 */
477 u8 rsvd13[32]; /* dword 12 */
478 u8 rsvd14[32]; /* dword 13 */
479 u8 rsvd15[32]; /* dword 14 */
480 u8 rsvd16[32]; /* dword 15 */
481} __packed;
482
483struct be_cmd_req_eth_tx_create {
484 struct be_cmd_req_hdr hdr;
485 u8 num_pages;
486 u8 ulp_num;
487 u8 type;
488 u8 bound_port;
489 u8 context[sizeof(struct amap_tx_context) / 8];
490 struct phys_addr pages[8];
491} __packed;
492
493struct be_cmd_resp_eth_tx_create {
494 struct be_cmd_resp_hdr hdr;
495 u16 cid;
496 u16 rsvd0;
497} __packed;
498
499/******************** Create RxQ ***************************/
500struct be_cmd_req_eth_rx_create {
501 struct be_cmd_req_hdr hdr;
502 u16 cq_id;
503 u8 frag_size;
504 u8 num_pages;
505 struct phys_addr pages[2];
506 u32 interface_id;
507 u16 max_frame_size;
508 u16 rsvd0;
509 u32 rss_queue;
510} __packed;
511
512struct be_cmd_resp_eth_rx_create {
513 struct be_cmd_resp_hdr hdr;
514 u16 id;
Sathya Perla3abcded2010-10-03 22:12:27 -0700515 u8 rss_id;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700516 u8 rsvd0;
517} __packed;
518
519/******************** Q Destroy ***************************/
520/* Type of Queue to be destroyed */
521enum {
522 QTYPE_EQ = 1,
523 QTYPE_CQ,
524 QTYPE_TXQ,
Sathya Perla5fb379e2009-06-18 00:02:59 +0000525 QTYPE_RXQ,
526 QTYPE_MCCQ
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700527};
528
529struct be_cmd_req_q_destroy {
530 struct be_cmd_req_hdr hdr;
531 u16 id;
532 u16 bypass_flush; /* valid only for rx q destroy */
533} __packed;
534
535/************ I/f Create (it's actually I/f Config Create)**********/
536
537/* Capability flags for the i/f */
538enum be_if_flags {
539 BE_IF_FLAGS_RSS = 0x4,
540 BE_IF_FLAGS_PROMISCUOUS = 0x8,
541 BE_IF_FLAGS_BROADCAST = 0x10,
542 BE_IF_FLAGS_UNTAGGED = 0x20,
543 BE_IF_FLAGS_ULP = 0x40,
544 BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
545 BE_IF_FLAGS_VLAN = 0x100,
546 BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
547 BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
Padmanabh Ratnakarf21b5382011-03-07 03:09:36 +0000548 BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
549 BE_IF_FLAGS_MULTICAST = 0x1000
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700550};
551
552/* An RX interface is an object with one or more MAC addresses and
553 * filtering capabilities. */
554struct be_cmd_req_if_create {
555 struct be_cmd_req_hdr hdr;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200556 u32 version; /* ignore currently */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700557 u32 capability_flags;
558 u32 enable_flags;
559 u8 mac_addr[ETH_ALEN];
560 u8 rsvd0;
561 u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
562 u32 vlan_tag; /* not used currently */
563} __packed;
564
565struct be_cmd_resp_if_create {
566 struct be_cmd_resp_hdr hdr;
567 u32 interface_id;
568 u32 pmac_id;
569};
570
571/****** I/f Destroy(it's actually I/f Config Destroy )**********/
572struct be_cmd_req_if_destroy {
573 struct be_cmd_req_hdr hdr;
574 u32 interface_id;
575};
576
577/*************** HW Stats Get **********************************/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000578struct be_port_rxf_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700579 u32 rx_bytes_lsd; /* dword 0*/
580 u32 rx_bytes_msd; /* dword 1*/
581 u32 rx_total_frames; /* dword 2*/
582 u32 rx_unicast_frames; /* dword 3*/
583 u32 rx_multicast_frames; /* dword 4*/
584 u32 rx_broadcast_frames; /* dword 5*/
585 u32 rx_crc_errors; /* dword 6*/
586 u32 rx_alignment_symbol_errors; /* dword 7*/
587 u32 rx_pause_frames; /* dword 8*/
588 u32 rx_control_frames; /* dword 9*/
589 u32 rx_in_range_errors; /* dword 10*/
590 u32 rx_out_range_errors; /* dword 11*/
591 u32 rx_frame_too_long; /* dword 12*/
592 u32 rx_address_match_errors; /* dword 13*/
593 u32 rx_vlan_mismatch; /* dword 14*/
594 u32 rx_dropped_too_small; /* dword 15*/
595 u32 rx_dropped_too_short; /* dword 16*/
596 u32 rx_dropped_header_too_small; /* dword 17*/
597 u32 rx_dropped_tcp_length; /* dword 18*/
598 u32 rx_dropped_runt; /* dword 19*/
599 u32 rx_64_byte_packets; /* dword 20*/
600 u32 rx_65_127_byte_packets; /* dword 21*/
601 u32 rx_128_256_byte_packets; /* dword 22*/
602 u32 rx_256_511_byte_packets; /* dword 23*/
603 u32 rx_512_1023_byte_packets; /* dword 24*/
604 u32 rx_1024_1518_byte_packets; /* dword 25*/
605 u32 rx_1519_2047_byte_packets; /* dword 26*/
606 u32 rx_2048_4095_byte_packets; /* dword 27*/
607 u32 rx_4096_8191_byte_packets; /* dword 28*/
608 u32 rx_8192_9216_byte_packets; /* dword 29*/
609 u32 rx_ip_checksum_errs; /* dword 30*/
610 u32 rx_tcp_checksum_errs; /* dword 31*/
611 u32 rx_udp_checksum_errs; /* dword 32*/
612 u32 rx_non_rss_packets; /* dword 33*/
613 u32 rx_ipv4_packets; /* dword 34*/
614 u32 rx_ipv6_packets; /* dword 35*/
615 u32 rx_ipv4_bytes_lsd; /* dword 36*/
616 u32 rx_ipv4_bytes_msd; /* dword 37*/
617 u32 rx_ipv6_bytes_lsd; /* dword 38*/
618 u32 rx_ipv6_bytes_msd; /* dword 39*/
619 u32 rx_chute1_packets; /* dword 40*/
620 u32 rx_chute2_packets; /* dword 41*/
621 u32 rx_chute3_packets; /* dword 42*/
622 u32 rx_management_packets; /* dword 43*/
623 u32 rx_switched_unicast_packets; /* dword 44*/
624 u32 rx_switched_multicast_packets; /* dword 45*/
625 u32 rx_switched_broadcast_packets; /* dword 46*/
626 u32 tx_bytes_lsd; /* dword 47*/
627 u32 tx_bytes_msd; /* dword 48*/
628 u32 tx_unicastframes; /* dword 49*/
629 u32 tx_multicastframes; /* dword 50*/
630 u32 tx_broadcastframes; /* dword 51*/
631 u32 tx_pauseframes; /* dword 52*/
632 u32 tx_controlframes; /* dword 53*/
633 u32 tx_64_byte_packets; /* dword 54*/
634 u32 tx_65_127_byte_packets; /* dword 55*/
635 u32 tx_128_256_byte_packets; /* dword 56*/
636 u32 tx_256_511_byte_packets; /* dword 57*/
637 u32 tx_512_1023_byte_packets; /* dword 58*/
638 u32 tx_1024_1518_byte_packets; /* dword 59*/
639 u32 tx_1519_2047_byte_packets; /* dword 60*/
640 u32 tx_2048_4095_byte_packets; /* dword 61*/
641 u32 tx_4096_8191_byte_packets; /* dword 62*/
642 u32 tx_8192_9216_byte_packets; /* dword 63*/
643 u32 rx_fifo_overflow; /* dword 64*/
644 u32 rx_input_fifo_overflow; /* dword 65*/
645};
646
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000647struct be_rxf_stats_v0 {
648 struct be_port_rxf_stats_v0 port[2];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700649 u32 rx_drops_no_pbuf; /* dword 132*/
650 u32 rx_drops_no_txpb; /* dword 133*/
651 u32 rx_drops_no_erx_descr; /* dword 134*/
652 u32 rx_drops_no_tpre_descr; /* dword 135*/
653 u32 management_rx_port_packets; /* dword 136*/
654 u32 management_rx_port_bytes; /* dword 137*/
655 u32 management_rx_port_pause_frames; /* dword 138*/
656 u32 management_rx_port_errors; /* dword 139*/
657 u32 management_tx_port_packets; /* dword 140*/
658 u32 management_tx_port_bytes; /* dword 141*/
659 u32 management_tx_port_pause; /* dword 142*/
660 u32 management_rx_port_rxfifo_overflow; /* dword 143*/
661 u32 rx_drops_too_many_frags; /* dword 144*/
662 u32 rx_drops_invalid_ring; /* dword 145*/
663 u32 forwarded_packets; /* dword 146*/
664 u32 rx_drops_mtu; /* dword 147*/
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000665 u32 rsvd0[7];
666 u32 port0_jabber_events;
667 u32 port1_jabber_events;
668 u32 rsvd1[6];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700669};
670
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000671struct be_erx_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700672 u32 rx_drops_no_fragments[44]; /* dwordS 0 to 43*/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000673 u32 rsvd[4];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700674};
675
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000676struct be_pmem_stats {
677 u32 eth_red_drops;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000678 u32 rsvd[5];
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000679};
680
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000681struct be_hw_stats_v0 {
682 struct be_rxf_stats_v0 rxf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700683 u32 rsvd[48];
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000684 struct be_erx_stats_v0 erx;
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000685 struct be_pmem_stats pmem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700686};
687
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000688struct be_cmd_req_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700689 struct be_cmd_req_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000690 u8 rsvd[sizeof(struct be_hw_stats_v0)];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700691};
692
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000693struct be_cmd_resp_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700694 struct be_cmd_resp_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000695 struct be_hw_stats_v0 hw_stats;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700696};
697
Sathya Perlaac124ff2011-07-25 19:10:14 +0000698struct lancer_pport_stats {
Selvin Xavier005d5692011-05-16 07:36:35 +0000699 u32 tx_packets_lo;
700 u32 tx_packets_hi;
701 u32 tx_unicast_packets_lo;
702 u32 tx_unicast_packets_hi;
703 u32 tx_multicast_packets_lo;
704 u32 tx_multicast_packets_hi;
705 u32 tx_broadcast_packets_lo;
706 u32 tx_broadcast_packets_hi;
707 u32 tx_bytes_lo;
708 u32 tx_bytes_hi;
709 u32 tx_unicast_bytes_lo;
710 u32 tx_unicast_bytes_hi;
711 u32 tx_multicast_bytes_lo;
712 u32 tx_multicast_bytes_hi;
713 u32 tx_broadcast_bytes_lo;
714 u32 tx_broadcast_bytes_hi;
715 u32 tx_discards_lo;
716 u32 tx_discards_hi;
717 u32 tx_errors_lo;
718 u32 tx_errors_hi;
719 u32 tx_pause_frames_lo;
720 u32 tx_pause_frames_hi;
721 u32 tx_pause_on_frames_lo;
722 u32 tx_pause_on_frames_hi;
723 u32 tx_pause_off_frames_lo;
724 u32 tx_pause_off_frames_hi;
725 u32 tx_internal_mac_errors_lo;
726 u32 tx_internal_mac_errors_hi;
727 u32 tx_control_frames_lo;
728 u32 tx_control_frames_hi;
729 u32 tx_packets_64_bytes_lo;
730 u32 tx_packets_64_bytes_hi;
731 u32 tx_packets_65_to_127_bytes_lo;
732 u32 tx_packets_65_to_127_bytes_hi;
733 u32 tx_packets_128_to_255_bytes_lo;
734 u32 tx_packets_128_to_255_bytes_hi;
735 u32 tx_packets_256_to_511_bytes_lo;
736 u32 tx_packets_256_to_511_bytes_hi;
737 u32 tx_packets_512_to_1023_bytes_lo;
738 u32 tx_packets_512_to_1023_bytes_hi;
739 u32 tx_packets_1024_to_1518_bytes_lo;
740 u32 tx_packets_1024_to_1518_bytes_hi;
741 u32 tx_packets_1519_to_2047_bytes_lo;
742 u32 tx_packets_1519_to_2047_bytes_hi;
743 u32 tx_packets_2048_to_4095_bytes_lo;
744 u32 tx_packets_2048_to_4095_bytes_hi;
745 u32 tx_packets_4096_to_8191_bytes_lo;
746 u32 tx_packets_4096_to_8191_bytes_hi;
747 u32 tx_packets_8192_to_9216_bytes_lo;
748 u32 tx_packets_8192_to_9216_bytes_hi;
749 u32 tx_lso_packets_lo;
750 u32 tx_lso_packets_hi;
751 u32 rx_packets_lo;
752 u32 rx_packets_hi;
753 u32 rx_unicast_packets_lo;
754 u32 rx_unicast_packets_hi;
755 u32 rx_multicast_packets_lo;
756 u32 rx_multicast_packets_hi;
757 u32 rx_broadcast_packets_lo;
758 u32 rx_broadcast_packets_hi;
759 u32 rx_bytes_lo;
760 u32 rx_bytes_hi;
761 u32 rx_unicast_bytes_lo;
762 u32 rx_unicast_bytes_hi;
763 u32 rx_multicast_bytes_lo;
764 u32 rx_multicast_bytes_hi;
765 u32 rx_broadcast_bytes_lo;
766 u32 rx_broadcast_bytes_hi;
767 u32 rx_unknown_protos;
768 u32 rsvd_69; /* Word 69 is reserved */
769 u32 rx_discards_lo;
770 u32 rx_discards_hi;
771 u32 rx_errors_lo;
772 u32 rx_errors_hi;
773 u32 rx_crc_errors_lo;
774 u32 rx_crc_errors_hi;
775 u32 rx_alignment_errors_lo;
776 u32 rx_alignment_errors_hi;
777 u32 rx_symbol_errors_lo;
778 u32 rx_symbol_errors_hi;
779 u32 rx_pause_frames_lo;
780 u32 rx_pause_frames_hi;
781 u32 rx_pause_on_frames_lo;
782 u32 rx_pause_on_frames_hi;
783 u32 rx_pause_off_frames_lo;
784 u32 rx_pause_off_frames_hi;
785 u32 rx_frames_too_long_lo;
786 u32 rx_frames_too_long_hi;
787 u32 rx_internal_mac_errors_lo;
788 u32 rx_internal_mac_errors_hi;
789 u32 rx_undersize_packets;
790 u32 rx_oversize_packets;
791 u32 rx_fragment_packets;
792 u32 rx_jabbers;
793 u32 rx_control_frames_lo;
794 u32 rx_control_frames_hi;
795 u32 rx_control_frames_unknown_opcode_lo;
796 u32 rx_control_frames_unknown_opcode_hi;
797 u32 rx_in_range_errors;
798 u32 rx_out_of_range_errors;
799 u32 rx_address_match_errors;
800 u32 rx_vlan_mismatch_errors;
801 u32 rx_dropped_too_small;
802 u32 rx_dropped_too_short;
803 u32 rx_dropped_header_too_small;
804 u32 rx_dropped_invalid_tcp_length;
805 u32 rx_dropped_runt;
806 u32 rx_ip_checksum_errors;
807 u32 rx_tcp_checksum_errors;
808 u32 rx_udp_checksum_errors;
809 u32 rx_non_rss_packets;
810 u32 rsvd_111;
811 u32 rx_ipv4_packets_lo;
812 u32 rx_ipv4_packets_hi;
813 u32 rx_ipv6_packets_lo;
814 u32 rx_ipv6_packets_hi;
815 u32 rx_ipv4_bytes_lo;
816 u32 rx_ipv4_bytes_hi;
817 u32 rx_ipv6_bytes_lo;
818 u32 rx_ipv6_bytes_hi;
819 u32 rx_nic_packets_lo;
820 u32 rx_nic_packets_hi;
821 u32 rx_tcp_packets_lo;
822 u32 rx_tcp_packets_hi;
823 u32 rx_iscsi_packets_lo;
824 u32 rx_iscsi_packets_hi;
825 u32 rx_management_packets_lo;
826 u32 rx_management_packets_hi;
827 u32 rx_switched_unicast_packets_lo;
828 u32 rx_switched_unicast_packets_hi;
829 u32 rx_switched_multicast_packets_lo;
830 u32 rx_switched_multicast_packets_hi;
831 u32 rx_switched_broadcast_packets_lo;
832 u32 rx_switched_broadcast_packets_hi;
833 u32 num_forwards_lo;
834 u32 num_forwards_hi;
835 u32 rx_fifo_overflow;
836 u32 rx_input_fifo_overflow;
837 u32 rx_drops_too_many_frags_lo;
838 u32 rx_drops_too_many_frags_hi;
839 u32 rx_drops_invalid_queue;
840 u32 rsvd_141;
841 u32 rx_drops_mtu_lo;
842 u32 rx_drops_mtu_hi;
843 u32 rx_packets_64_bytes_lo;
844 u32 rx_packets_64_bytes_hi;
845 u32 rx_packets_65_to_127_bytes_lo;
846 u32 rx_packets_65_to_127_bytes_hi;
847 u32 rx_packets_128_to_255_bytes_lo;
848 u32 rx_packets_128_to_255_bytes_hi;
849 u32 rx_packets_256_to_511_bytes_lo;
850 u32 rx_packets_256_to_511_bytes_hi;
851 u32 rx_packets_512_to_1023_bytes_lo;
852 u32 rx_packets_512_to_1023_bytes_hi;
853 u32 rx_packets_1024_to_1518_bytes_lo;
854 u32 rx_packets_1024_to_1518_bytes_hi;
855 u32 rx_packets_1519_to_2047_bytes_lo;
856 u32 rx_packets_1519_to_2047_bytes_hi;
857 u32 rx_packets_2048_to_4095_bytes_lo;
858 u32 rx_packets_2048_to_4095_bytes_hi;
859 u32 rx_packets_4096_to_8191_bytes_lo;
860 u32 rx_packets_4096_to_8191_bytes_hi;
861 u32 rx_packets_8192_to_9216_bytes_lo;
862 u32 rx_packets_8192_to_9216_bytes_hi;
863};
864
865struct pport_stats_params {
866 u16 pport_num;
867 u8 rsvd;
868 u8 reset_stats;
869};
870
871struct lancer_cmd_req_pport_stats {
872 struct be_cmd_req_hdr hdr;
873 union {
874 struct pport_stats_params params;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000875 u8 rsvd[sizeof(struct lancer_pport_stats)];
Selvin Xavier005d5692011-05-16 07:36:35 +0000876 } cmd_params;
877};
878
879struct lancer_cmd_resp_pport_stats {
880 struct be_cmd_resp_hdr hdr;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000881 struct lancer_pport_stats pport_stats;
Selvin Xavier005d5692011-05-16 07:36:35 +0000882};
883
Sathya Perlaac124ff2011-07-25 19:10:14 +0000884static inline struct lancer_pport_stats*
Selvin Xavier005d5692011-05-16 07:36:35 +0000885 pport_stats_from_cmd(struct be_adapter *adapter)
886{
887 struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
888 return &cmd->pport_stats;
889}
890
Ajit Khaparde609ff3b2011-02-20 11:42:07 +0000891struct be_cmd_req_get_cntl_addnl_attribs {
892 struct be_cmd_req_hdr hdr;
893 u8 rsvd[8];
894};
895
896struct be_cmd_resp_get_cntl_addnl_attribs {
897 struct be_cmd_resp_hdr hdr;
898 u16 ipl_file_number;
899 u8 ipl_file_version;
900 u8 rsvd0;
901 u8 on_die_temperature; /* in degrees centigrade*/
902 u8 rsvd1[3];
903};
904
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700905struct be_cmd_req_vlan_config {
906 struct be_cmd_req_hdr hdr;
907 u8 interface_id;
908 u8 promiscuous;
909 u8 untagged;
910 u8 num_vlan;
911 u16 normal_vlan[64];
912} __packed;
913
Sathya Perla5b8821b2011-08-02 19:57:44 +0000914/******************* RX FILTER ******************************/
Sathya Perlae7b909a2009-11-22 22:01:10 +0000915#define BE_MAX_MC 64 /* set mcast promisc if > 64 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700916struct macaddr {
917 u8 byte[ETH_ALEN];
918};
919
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +0000920struct be_cmd_req_rx_filter {
921 struct be_cmd_req_hdr hdr;
922 u32 global_flags_mask;
923 u32 global_flags;
924 u32 if_flags_mask;
925 u32 if_flags;
926 u32 if_id;
Sathya Perla5b8821b2011-08-02 19:57:44 +0000927 u32 mcast_num;
928 struct macaddr mcast_mac[BE_MAX_MC];
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +0000929};
930
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700931/******************** Link Status Query *******************/
932struct be_cmd_req_link_status {
933 struct be_cmd_req_hdr hdr;
934 u32 rsvd;
935};
936
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700937enum {
938 PHY_LINK_DUPLEX_NONE = 0x0,
939 PHY_LINK_DUPLEX_HALF = 0x1,
940 PHY_LINK_DUPLEX_FULL = 0x2
941};
942
943enum {
944 PHY_LINK_SPEED_ZERO = 0x0, /* => No link */
945 PHY_LINK_SPEED_10MBPS = 0x1,
946 PHY_LINK_SPEED_100MBPS = 0x2,
947 PHY_LINK_SPEED_1GBPS = 0x3,
948 PHY_LINK_SPEED_10GBPS = 0x4
949};
950
951struct be_cmd_resp_link_status {
952 struct be_cmd_resp_hdr hdr;
953 u8 physical_port;
954 u8 mac_duplex;
955 u8 mac_speed;
956 u8 mac_fault;
957 u8 mgmt_mac_duplex;
958 u8 mgmt_mac_speed;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700959 u16 link_speed;
960 u32 rsvd0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700961} __packed;
962
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700963/******************** Port Identification ***************************/
964/* Identifies the type of port attached to NIC */
965struct be_cmd_req_port_type {
966 struct be_cmd_req_hdr hdr;
967 u32 page_num;
968 u32 port;
969};
970
971enum {
972 TR_PAGE_A0 = 0xa0,
973 TR_PAGE_A2 = 0xa2
974};
975
976struct be_cmd_resp_port_type {
977 struct be_cmd_resp_hdr hdr;
978 u32 page_num;
979 u32 port;
980 struct data {
981 u8 identifier;
982 u8 identifier_ext;
983 u8 connector;
984 u8 transceiver[8];
985 u8 rsvd0[3];
986 u8 length_km;
987 u8 length_hm;
988 u8 length_om1;
989 u8 length_om2;
990 u8 length_cu;
991 u8 length_cu_m;
992 u8 vendor_name[16];
993 u8 rsvd;
994 u8 vendor_oui[3];
995 u8 vendor_pn[16];
996 u8 vendor_rev[4];
997 } data;
998};
999
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001000/******************** Get FW Version *******************/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001001struct be_cmd_req_get_fw_version {
1002 struct be_cmd_req_hdr hdr;
1003 u8 rsvd0[FW_VER_LEN];
1004 u8 rsvd1[FW_VER_LEN];
1005} __packed;
1006
1007struct be_cmd_resp_get_fw_version {
1008 struct be_cmd_resp_hdr hdr;
1009 u8 firmware_version_string[FW_VER_LEN];
1010 u8 fw_on_flash_version_string[FW_VER_LEN];
1011} __packed;
1012
1013/******************** Set Flow Contrl *******************/
1014struct be_cmd_req_set_flow_control {
1015 struct be_cmd_req_hdr hdr;
1016 u16 tx_flow_control;
1017 u16 rx_flow_control;
1018} __packed;
1019
1020/******************** Get Flow Contrl *******************/
1021struct be_cmd_req_get_flow_control {
1022 struct be_cmd_req_hdr hdr;
1023 u32 rsvd;
1024};
1025
1026struct be_cmd_resp_get_flow_control {
1027 struct be_cmd_resp_hdr hdr;
1028 u16 tx_flow_control;
1029 u16 rx_flow_control;
1030} __packed;
1031
1032/******************** Modify EQ Delay *******************/
1033struct be_cmd_req_modify_eq_delay {
1034 struct be_cmd_req_hdr hdr;
1035 u32 num_eq;
1036 struct {
1037 u32 eq_id;
1038 u32 phase;
1039 u32 delay_multiplier;
1040 } delay[8];
1041} __packed;
1042
1043struct be_cmd_resp_modify_eq_delay {
1044 struct be_cmd_resp_hdr hdr;
1045 u32 rsvd0;
1046} __packed;
1047
1048/******************** Get FW Config *******************/
Sathya Perla3abcded2010-10-03 22:12:27 -07001049#define BE_FUNCTION_CAPS_RSS 0x2
Sathya Perla752961a2011-10-24 02:45:03 +00001050/* The HW can come up in either of the following multi-channel modes
1051 * based on the skew/IPL.
1052 */
1053#define FLEX10_MODE 0x400
1054#define VNIC_MODE 0x20000
1055#define UMC_ENABLED 0x1000000
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001056struct be_cmd_req_query_fw_cfg {
1057 struct be_cmd_req_hdr hdr;
Sathya Perla3abcded2010-10-03 22:12:27 -07001058 u32 rsvd[31];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001059};
1060
1061struct be_cmd_resp_query_fw_cfg {
1062 struct be_cmd_resp_hdr hdr;
1063 u32 be_config_number;
1064 u32 asic_revision;
1065 u32 phys_port;
Ajit Khaparde3486be22010-07-23 02:04:54 +00001066 u32 function_mode;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001067 u32 rsvd[26];
Sathya Perla3abcded2010-10-03 22:12:27 -07001068 u32 function_caps;
1069};
1070
1071/******************** RSS Config *******************/
1072/* RSS types */
1073#define RSS_ENABLE_NONE 0x0
1074#define RSS_ENABLE_IPV4 0x1
1075#define RSS_ENABLE_TCP_IPV4 0x2
1076#define RSS_ENABLE_IPV6 0x4
1077#define RSS_ENABLE_TCP_IPV6 0x8
1078
1079struct be_cmd_req_rss_config {
1080 struct be_cmd_req_hdr hdr;
1081 u32 if_id;
1082 u16 enable_rss;
1083 u16 cpu_table_size_log2;
1084 u32 hash[10];
1085 u8 cpu_table[128];
1086 u8 flush;
1087 u8 rsvd0[3];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001088};
1089
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001090/******************** Port Beacon ***************************/
1091
1092#define BEACON_STATE_ENABLED 0x1
1093#define BEACON_STATE_DISABLED 0x0
1094
1095struct be_cmd_req_enable_disable_beacon {
1096 struct be_cmd_req_hdr hdr;
1097 u8 port_num;
1098 u8 beacon_state;
1099 u8 beacon_duration;
1100 u8 status_duration;
1101} __packed;
1102
1103struct be_cmd_resp_enable_disable_beacon {
1104 struct be_cmd_resp_hdr resp_hdr;
1105 u32 rsvd0;
1106} __packed;
1107
1108struct be_cmd_req_get_beacon_state {
1109 struct be_cmd_req_hdr hdr;
1110 u8 port_num;
1111 u8 rsvd0;
1112 u16 rsvd1;
1113} __packed;
1114
1115struct be_cmd_resp_get_beacon_state {
1116 struct be_cmd_resp_hdr resp_hdr;
1117 u8 beacon_state;
1118 u8 rsvd0[3];
1119} __packed;
1120
Ajit Khaparde84517482009-09-04 03:12:16 +00001121/****************** Firmware Flash ******************/
1122struct flashrom_params {
1123 u32 op_code;
1124 u32 op_type;
1125 u32 data_buf_size;
1126 u32 offset;
1127 u8 data_buf[4];
1128};
1129
1130struct be_cmd_write_flashrom {
1131 struct be_cmd_req_hdr hdr;
1132 struct flashrom_params params;
1133};
1134
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00001135/**************** Lancer Firmware Flash ************/
1136struct amap_lancer_write_obj_context {
1137 u8 write_length[24];
1138 u8 reserved1[7];
1139 u8 eof;
1140} __packed;
1141
1142struct lancer_cmd_req_write_object {
1143 struct be_cmd_req_hdr hdr;
1144 u8 context[sizeof(struct amap_lancer_write_obj_context) / 8];
1145 u32 write_offset;
1146 u8 object_name[104];
1147 u32 descriptor_count;
1148 u32 buf_len;
1149 u32 addr_low;
1150 u32 addr_high;
1151};
1152
1153struct lancer_cmd_resp_write_object {
1154 u8 opcode;
1155 u8 subsystem;
1156 u8 rsvd1[2];
1157 u8 status;
1158 u8 additional_status;
1159 u8 rsvd2[2];
1160 u32 resp_len;
1161 u32 actual_resp_len;
1162 u32 actual_write_len;
1163};
1164
Padmanabh Ratnakarde49bd52011-11-16 02:02:43 +00001165/************************ Lancer Read FW info **************/
1166#define LANCER_READ_FILE_CHUNK (32*1024)
1167#define LANCER_READ_FILE_EOF_MASK 0x80000000
1168
1169#define LANCER_FW_DUMP_FILE "/dbg/dump.bin"
Padmanabh Ratnakaraf5875b2011-11-16 02:03:07 +00001170#define LANCER_VPD_PF_FILE "/vpd/ntr_pf.vpd"
1171#define LANCER_VPD_VF_FILE "/vpd/ntr_vf.vpd"
Padmanabh Ratnakarde49bd52011-11-16 02:02:43 +00001172
1173struct lancer_cmd_req_read_object {
1174 struct be_cmd_req_hdr hdr;
1175 u32 desired_read_len;
1176 u32 read_offset;
1177 u8 object_name[104];
1178 u32 descriptor_count;
1179 u32 buf_len;
1180 u32 addr_low;
1181 u32 addr_high;
1182};
1183
1184struct lancer_cmd_resp_read_object {
1185 u8 opcode;
1186 u8 subsystem;
1187 u8 rsvd1[2];
1188 u8 status;
1189 u8 additional_status;
1190 u8 rsvd2[2];
1191 u32 resp_len;
1192 u32 actual_resp_len;
1193 u32 actual_read_len;
1194 u32 eof;
1195};
1196
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001197/************************ WOL *******************************/
1198struct be_cmd_req_acpi_wol_magic_config{
1199 struct be_cmd_req_hdr hdr;
1200 u32 rsvd0[145];
1201 u8 magic_mac[6];
1202 u8 rsvd2[2];
1203} __packed;
1204
Suresh Rff33a6e2009-12-03 16:15:52 -08001205/********************** LoopBack test *********************/
1206struct be_cmd_req_loopback_test {
1207 struct be_cmd_req_hdr hdr;
1208 u32 loopback_type;
1209 u32 num_pkts;
1210 u64 pattern;
1211 u32 src_port;
1212 u32 dest_port;
1213 u32 pkt_size;
1214};
1215
1216struct be_cmd_resp_loopback_test {
1217 struct be_cmd_resp_hdr resp_hdr;
1218 u32 status;
1219 u32 num_txfer;
1220 u32 num_rx;
1221 u32 miscomp_off;
1222 u32 ticks_compl;
1223};
1224
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001225struct be_cmd_req_set_lmode {
1226 struct be_cmd_req_hdr hdr;
1227 u8 src_port;
1228 u8 dest_port;
1229 u8 loopback_type;
1230 u8 loopback_state;
1231};
1232
1233struct be_cmd_resp_set_lmode {
1234 struct be_cmd_resp_hdr resp_hdr;
1235 u8 rsvd0[4];
1236};
1237
Suresh Rff33a6e2009-12-03 16:15:52 -08001238/********************** DDR DMA test *********************/
1239struct be_cmd_req_ddrdma_test {
1240 struct be_cmd_req_hdr hdr;
1241 u64 pattern;
1242 u32 byte_count;
1243 u32 rsvd0;
1244 u8 snd_buff[4096];
1245 u8 rsvd1[4096];
1246};
1247
1248struct be_cmd_resp_ddrdma_test {
1249 struct be_cmd_resp_hdr hdr;
1250 u64 pattern;
1251 u32 byte_cnt;
1252 u32 snd_err;
1253 u8 rsvd0[4096];
1254 u8 rcv_buff[4096];
1255};
1256
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001257/*********************** SEEPROM Read ***********************/
1258
1259#define BE_READ_SEEPROM_LEN 1024
1260struct be_cmd_req_seeprom_read {
1261 struct be_cmd_req_hdr hdr;
1262 u8 rsvd0[BE_READ_SEEPROM_LEN];
1263};
1264
1265struct be_cmd_resp_seeprom_read {
1266 struct be_cmd_req_hdr hdr;
1267 u8 seeprom_data[BE_READ_SEEPROM_LEN];
1268};
1269
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001270enum {
1271 PHY_TYPE_CX4_10GB = 0,
1272 PHY_TYPE_XFP_10GB,
1273 PHY_TYPE_SFP_1GB,
1274 PHY_TYPE_SFP_PLUS_10GB,
1275 PHY_TYPE_KR_10GB,
1276 PHY_TYPE_KX4_10GB,
1277 PHY_TYPE_BASET_10GB,
1278 PHY_TYPE_BASET_1GB,
1279 PHY_TYPE_DISABLED = 255
1280};
1281
1282struct be_cmd_req_get_phy_info {
1283 struct be_cmd_req_hdr hdr;
1284 u8 rsvd0[24];
1285};
Sathya Perla306f1342011-08-02 19:57:45 +00001286
1287struct be_phy_info {
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001288 u16 phy_type;
1289 u16 interface_type;
1290 u32 misc_params;
1291 u32 future_use[4];
1292};
1293
Sathya Perla306f1342011-08-02 19:57:45 +00001294struct be_cmd_resp_get_phy_info {
1295 struct be_cmd_req_hdr hdr;
1296 struct be_phy_info phy_info;
1297};
1298
Ajit Khapardee1d18732010-07-23 01:52:13 +00001299/*********************** Set QOS ***********************/
1300
1301#define BE_QOS_BITS_NIC 1
1302
1303struct be_cmd_req_set_qos {
1304 struct be_cmd_req_hdr hdr;
1305 u32 valid_bits;
1306 u32 max_bps_nic;
1307 u32 rsvd[7];
1308};
1309
1310struct be_cmd_resp_set_qos {
1311 struct be_cmd_resp_hdr hdr;
1312 u32 rsvd;
1313};
1314
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001315/*********************** Controller Attributes ***********************/
1316struct be_cmd_req_cntl_attribs {
1317 struct be_cmd_req_hdr hdr;
1318};
1319
1320struct be_cmd_resp_cntl_attribs {
1321 struct be_cmd_resp_hdr hdr;
1322 struct mgmt_controller_attrib attribs;
1323};
1324
Sathya Perla2e588f82011-03-11 02:49:26 +00001325/*********************** Set driver function ***********************/
1326#define CAPABILITY_SW_TIMESTAMPS 2
1327#define CAPABILITY_BE3_NATIVE_ERX_API 4
1328
1329struct be_cmd_req_set_func_cap {
1330 struct be_cmd_req_hdr hdr;
1331 u32 valid_cap_flags;
1332 u32 cap_flags;
1333 u8 rsvd[212];
1334};
1335
1336struct be_cmd_resp_set_func_cap {
1337 struct be_cmd_resp_hdr hdr;
1338 u32 valid_cap_flags;
1339 u32 cap_flags;
1340 u8 rsvd[212];
1341};
1342
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00001343/*************** HW Stats Get v1 **********************************/
1344#define BE_TXP_SW_SZ 48
1345struct be_port_rxf_stats_v1 {
1346 u32 rsvd0[12];
1347 u32 rx_crc_errors;
1348 u32 rx_alignment_symbol_errors;
1349 u32 rx_pause_frames;
1350 u32 rx_priority_pause_frames;
1351 u32 rx_control_frames;
1352 u32 rx_in_range_errors;
1353 u32 rx_out_range_errors;
1354 u32 rx_frame_too_long;
1355 u32 rx_address_match_errors;
1356 u32 rx_dropped_too_small;
1357 u32 rx_dropped_too_short;
1358 u32 rx_dropped_header_too_small;
1359 u32 rx_dropped_tcp_length;
1360 u32 rx_dropped_runt;
1361 u32 rsvd1[10];
1362 u32 rx_ip_checksum_errs;
1363 u32 rx_tcp_checksum_errs;
1364 u32 rx_udp_checksum_errs;
1365 u32 rsvd2[7];
1366 u32 rx_switched_unicast_packets;
1367 u32 rx_switched_multicast_packets;
1368 u32 rx_switched_broadcast_packets;
1369 u32 rsvd3[3];
1370 u32 tx_pauseframes;
1371 u32 tx_priority_pauseframes;
1372 u32 tx_controlframes;
1373 u32 rsvd4[10];
1374 u32 rxpp_fifo_overflow_drop;
1375 u32 rx_input_fifo_overflow_drop;
1376 u32 pmem_fifo_overflow_drop;
1377 u32 jabber_events;
1378 u32 rsvd5[3];
1379};
1380
1381
1382struct be_rxf_stats_v1 {
1383 struct be_port_rxf_stats_v1 port[4];
1384 u32 rsvd0[2];
1385 u32 rx_drops_no_pbuf;
1386 u32 rx_drops_no_txpb;
1387 u32 rx_drops_no_erx_descr;
1388 u32 rx_drops_no_tpre_descr;
1389 u32 rsvd1[6];
1390 u32 rx_drops_too_many_frags;
1391 u32 rx_drops_invalid_ring;
1392 u32 forwarded_packets;
1393 u32 rx_drops_mtu;
1394 u32 rsvd2[14];
1395};
1396
1397struct be_erx_stats_v1 {
1398 u32 rx_drops_no_fragments[68]; /* dwordS 0 to 67*/
1399 u32 rsvd[4];
1400};
1401
1402struct be_hw_stats_v1 {
1403 struct be_rxf_stats_v1 rxf;
1404 u32 rsvd0[BE_TXP_SW_SZ];
1405 struct be_erx_stats_v1 erx;
1406 struct be_pmem_stats pmem;
1407 u32 rsvd1[3];
1408};
1409
1410struct be_cmd_req_get_stats_v1 {
1411 struct be_cmd_req_hdr hdr;
1412 u8 rsvd[sizeof(struct be_hw_stats_v1)];
1413};
1414
1415struct be_cmd_resp_get_stats_v1 {
1416 struct be_cmd_resp_hdr hdr;
1417 struct be_hw_stats_v1 hw_stats;
1418};
1419
Sathya Perlaac124ff2011-07-25 19:10:14 +00001420static inline void *hw_stats_from_cmd(struct be_adapter *adapter)
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00001421{
1422 if (adapter->generation == BE_GEN3) {
1423 struct be_cmd_resp_get_stats_v1 *cmd = adapter->stats_cmd.va;
1424
1425 return &cmd->hw_stats;
1426 } else {
1427 struct be_cmd_resp_get_stats_v0 *cmd = adapter->stats_cmd.va;
1428
1429 return &cmd->hw_stats;
1430 }
1431}
1432
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00001433static inline void *be_erx_stats_from_cmd(struct be_adapter *adapter)
1434{
1435 if (adapter->generation == BE_GEN3) {
1436 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1437
1438 return &hw_stats->erx;
1439 } else {
1440 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1441
1442 return &hw_stats->erx;
1443 }
1444}
1445
Sathya Perla8788fdc2009-07-27 22:52:03 +00001446extern int be_pci_fnum_get(struct be_adapter *adapter);
1447extern int be_cmd_POST(struct be_adapter *adapter);
1448extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001449 u8 type, bool permanent, u32 if_handle);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001450extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
Ajit Khapardef8617e02011-02-11 13:36:37 +00001451 u32 if_id, u32 *pmac_id, u32 domain);
1452extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
Sathya Perla30128032011-11-10 19:17:57 +00001453 int pmac_id, u32 domain);
Sathya Perla73d540f2009-10-14 20:20:42 +00001454extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
Sathya Perlaf9449ab2011-10-24 02:45:01 +00001455 u32 en_flags, u8 *mac, u32 *if_handle, u32 *pmac_id,
1456 u32 domain);
Sathya Perla30128032011-11-10 19:17:57 +00001457extern int be_cmd_if_destroy(struct be_adapter *adapter, int if_handle,
Ajit Khaparde658681f2011-02-11 13:34:46 +00001458 u32 domain);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001459extern int be_cmd_eq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001460 struct be_queue_info *eq, int eq_delay);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001461extern int be_cmd_cq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001462 struct be_queue_info *cq, struct be_queue_info *eq,
1463 bool sol_evts, bool no_delay,
1464 int num_cqe_dma_coalesce);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001465extern int be_cmd_mccq_create(struct be_adapter *adapter,
Sathya Perla5fb379e2009-06-18 00:02:59 +00001466 struct be_queue_info *mccq,
1467 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001468extern int be_cmd_txq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001469 struct be_queue_info *txq,
1470 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001471extern int be_cmd_rxq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001472 struct be_queue_info *rxq, u16 cq_id,
1473 u16 frag_size, u16 max_frame_size, u32 if_id,
Sathya Perla3abcded2010-10-03 22:12:27 -07001474 u32 rss, u8 *rss_id);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001475extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001476 int type);
Sathya Perla482c9e72011-06-29 23:33:17 +00001477extern int be_cmd_rxq_destroy(struct be_adapter *adapter,
1478 struct be_queue_info *q);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001479extern int be_cmd_link_status_query(struct be_adapter *adapter,
Sathya Perlaea172a02011-08-02 19:57:42 +00001480 u8 *mac_speed, u16 *link_speed, u32 dom);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001481extern int be_cmd_reset(struct be_adapter *adapter);
1482extern int be_cmd_get_stats(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001483 struct be_dma_mem *nonemb_cmd);
Selvin Xavier005d5692011-05-16 07:36:35 +00001484extern int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1485 struct be_dma_mem *nonemb_cmd);
Sathya Perla04b71172011-09-27 13:30:27 -04001486extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver,
1487 char *fw_on_flash);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001488
Sathya Perla8788fdc2009-07-27 22:52:03 +00001489extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
1490extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001491 u16 *vtag_array, u32 num, bool untagged,
1492 bool promiscuous);
Sathya Perla5b8821b2011-08-02 19:57:44 +00001493extern int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 status);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001494extern int be_cmd_set_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001495 u32 tx_fc, u32 rx_fc);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001496extern int be_cmd_get_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001497 u32 *tx_fc, u32 *rx_fc);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001498extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001499 u32 *port_num, u32 *function_mode, u32 *function_caps);
sarveshwarb14074ea2009-08-05 13:05:24 -07001500extern int be_cmd_reset_function(struct be_adapter *adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07001501extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
1502 u16 table_size);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001503extern int be_process_mcc(struct be_adapter *adapter, int *status);
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001504extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
1505 u8 port_num, u8 beacon, u8 status, u8 state);
1506extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
1507 u8 port_num, u32 *state);
Ajit Khaparde84517482009-09-04 03:12:16 +00001508extern int be_cmd_write_flashrom(struct be_adapter *adapter,
1509 struct be_dma_mem *cmd, u32 flash_oper,
1510 u32 flash_opcode, u32 buf_size);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00001511extern int lancer_cmd_write_object(struct be_adapter *adapter,
1512 struct be_dma_mem *cmd,
1513 u32 data_size, u32 data_offset,
1514 const char *obj_name,
1515 u32 *data_written, u8 *addn_status);
Padmanabh Ratnakarde49bd52011-11-16 02:02:43 +00001516int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
1517 u32 data_size, u32 data_offset, const char *obj_name,
1518 u32 *data_read, u32 *eof, u8 *addn_status);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00001519int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
1520 int offset);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001521extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
1522 struct be_dma_mem *nonemb_cmd);
Sathya Perla2243e2e2009-11-22 22:02:03 +00001523extern int be_cmd_fw_init(struct be_adapter *adapter);
1524extern int be_cmd_fw_clean(struct be_adapter *adapter);
Sathya Perla7a1e9b22010-02-17 01:35:11 +00001525extern void be_async_mcc_enable(struct be_adapter *adapter);
1526extern void be_async_mcc_disable(struct be_adapter *adapter);
Suresh Rff33a6e2009-12-03 16:15:52 -08001527extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
1528 u32 loopback_type, u32 pkt_size,
1529 u32 num_pkts, u64 pattern);
1530extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
1531 u32 byte_cnt, struct be_dma_mem *cmd);
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001532extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
1533 struct be_dma_mem *nonemb_cmd);
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001534extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
1535 u8 loopback_type, u8 enable);
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001536extern int be_cmd_get_phy_info(struct be_adapter *adapter,
Sathya Perla306f1342011-08-02 19:57:45 +00001537 struct be_phy_info *phy_info);
Ajit Khapardee1d18732010-07-23 01:52:13 +00001538extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
Ajit Khaparded053de92010-09-03 06:23:30 +00001539extern void be_detect_dump_ue(struct be_adapter *adapter);
Ajit Khaparde609ff3b2011-02-20 11:42:07 +00001540extern int be_cmd_get_die_temperature(struct be_adapter *adapter);
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001541extern int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
Sathya Perla2dc1deb2011-07-19 19:52:33 +00001542extern int be_cmd_req_native_mode(struct be_adapter *adapter);
Somnath Kotur311fddc2011-03-16 21:22:43 +00001543extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size);
1544extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf);
David S. Millerd4a66e72010-01-10 22:55:03 -08001545