blob: d08289e21f61a8f5e113795b7fed86aaed61d455 [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 {
54 MCC_STATUS_SUCCESS = 0x0,
55/* The client does not have sufficient privileges to execute the command */
56 MCC_STATUS_INSUFFICIENT_PRIVILEGES = 0x1,
57/* A parameter in the command was invalid. */
58 MCC_STATUS_INVALID_PARAMETER = 0x2,
59/* There are insufficient chip resources to execute the command */
60 MCC_STATUS_INSUFFICIENT_RESOURCES = 0x3,
61/* The command is completing because the queue was getting flushed */
62 MCC_STATUS_QUEUE_FLUSHING = 0x4,
63/* The command is completing with a DMA error */
Sathya Perlab31c50a2009-09-17 10:30:13 -070064 MCC_STATUS_DMA_FAILED = 0x5,
Ajit Khaparde49643842009-10-05 02:22:05 +000065 MCC_STATUS_NOT_SUPPORTED = 66
Sathya Perla6b7c5b92009-03-11 23:32:03 -070066};
67
68#define CQE_STATUS_COMPL_MASK 0xFFFF
69#define CQE_STATUS_COMPL_SHIFT 0 /* bits 0 - 15 */
70#define CQE_STATUS_EXTD_MASK 0xFFFF
Sathya Perlaf5209b42009-11-06 00:31:01 -080071#define CQE_STATUS_EXTD_SHIFT 16 /* bits 16 - 31 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -070072
Sathya Perlaefd2e402009-07-27 22:53:10 +000073struct be_mcc_compl {
Sathya Perla6b7c5b92009-03-11 23:32:03 -070074 u32 status; /* dword 0 */
75 u32 tag0; /* dword 1 */
76 u32 tag1; /* dword 2 */
77 u32 flags; /* dword 3 */
78};
79
Sathya Perlaa8f447b2009-06-18 00:10:27 +000080/* When the async bit of mcc_compl is set, the last 4 bytes of
81 * mcc_compl is interpreted as follows:
82 */
83#define ASYNC_TRAILER_EVENT_CODE_SHIFT 8 /* bits 8 - 15 */
84#define ASYNC_TRAILER_EVENT_CODE_MASK 0xFF
Somnath Koturcc4ce022010-10-21 07:11:14 -070085#define ASYNC_TRAILER_EVENT_TYPE_SHIFT 16
86#define ASYNC_TRAILER_EVENT_TYPE_MASK 0xFF
Sathya Perlaa8f447b2009-06-18 00:10:27 +000087#define ASYNC_EVENT_CODE_LINK_STATE 0x1
Somnath Koturcc4ce022010-10-21 07:11:14 -070088#define ASYNC_EVENT_CODE_GRP_5 0x5
89#define ASYNC_EVENT_QOS_SPEED 0x1
90#define ASYNC_EVENT_COS_PRIORITY 0x2
Ajit Khaparde3968fa12011-02-20 11:41:53 +000091#define ASYNC_EVENT_PVID_STATE 0x3
Sathya Perlaa8f447b2009-06-18 00:10:27 +000092struct be_async_event_trailer {
93 u32 code;
94};
95
96enum {
97 ASYNC_EVENT_LINK_DOWN = 0x0,
98 ASYNC_EVENT_LINK_UP = 0x1
99};
100
101/* When the event code of an async trailer is link-state, the mcc_compl
102 * must be interpreted as follows
103 */
104struct be_async_event_link_state {
105 u8 physical_port;
106 u8 port_link_status;
107 u8 port_duplex;
108 u8 port_speed;
109 u8 port_fault;
110 u8 rsvd0[7];
111 struct be_async_event_trailer trailer;
112} __packed;
113
Somnath Koturcc4ce022010-10-21 07:11:14 -0700114/* When the event code of an async trailer is GRP-5 and event_type is QOS_SPEED
115 * the mcc_compl must be interpreted as follows
116 */
117struct be_async_event_grp5_qos_link_speed {
118 u8 physical_port;
119 u8 rsvd[5];
120 u16 qos_link_speed;
121 u32 event_tag;
122 struct be_async_event_trailer trailer;
123} __packed;
124
125/* When the event code of an async trailer is GRP5 and event type is
126 * CoS-Priority, the mcc_compl must be interpreted as follows
127 */
128struct be_async_event_grp5_cos_priority {
129 u8 physical_port;
130 u8 available_priority_bmap;
131 u8 reco_default_priority;
132 u8 valid;
133 u8 rsvd0;
134 u8 event_tag;
135 struct be_async_event_trailer trailer;
136} __packed;
137
Ajit Khaparde3968fa12011-02-20 11:41:53 +0000138/* When the event code of an async trailer is GRP5 and event type is
139 * PVID state, the mcc_compl must be interpreted as follows
140 */
141struct be_async_event_grp5_pvid_state {
142 u8 enabled;
143 u8 rsvd0;
144 u16 tag;
145 u32 event_tag;
146 u32 rsvd1;
147 struct be_async_event_trailer trailer;
148} __packed;
149
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700150struct be_mcc_mailbox {
151 struct be_mcc_wrb wrb;
Sathya Perlaefd2e402009-07-27 22:53:10 +0000152 struct be_mcc_compl compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700153};
154
155#define CMD_SUBSYSTEM_COMMON 0x1
156#define CMD_SUBSYSTEM_ETH 0x3
Suresh Rff33a6e2009-12-03 16:15:52 -0800157#define CMD_SUBSYSTEM_LOWLEVEL 0xb
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700158
159#define OPCODE_COMMON_NTWK_MAC_QUERY 1
160#define OPCODE_COMMON_NTWK_MAC_SET 2
161#define OPCODE_COMMON_NTWK_MULTICAST_SET 3
162#define OPCODE_COMMON_NTWK_VLAN_CONFIG 4
163#define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY 5
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -0800164#define OPCODE_COMMON_READ_FLASHROM 6
Ajit Khaparde84517482009-09-04 03:12:16 +0000165#define OPCODE_COMMON_WRITE_FLASHROM 7
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700166#define OPCODE_COMMON_CQ_CREATE 12
167#define OPCODE_COMMON_EQ_CREATE 13
Somnath Koturcc4ce022010-10-21 07:11:14 -0700168#define OPCODE_COMMON_MCC_CREATE 21
Ajit Khapardee1d18732010-07-23 01:52:13 +0000169#define OPCODE_COMMON_SET_QOS 28
Somnath Koturcc4ce022010-10-21 07:11:14 -0700170#define OPCODE_COMMON_MCC_CREATE_EXT 90
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -0800171#define OPCODE_COMMON_SEEPROM_READ 30
Ajit Khaparde9e1453c2011-02-20 11:42:22 +0000172#define OPCODE_COMMON_GET_CNTL_ATTRIBUTES 32
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700173#define OPCODE_COMMON_NTWK_RX_FILTER 34
174#define OPCODE_COMMON_GET_FW_VERSION 35
175#define OPCODE_COMMON_SET_FLOW_CONTROL 36
176#define OPCODE_COMMON_GET_FLOW_CONTROL 37
177#define OPCODE_COMMON_SET_FRAME_SIZE 39
178#define OPCODE_COMMON_MODIFY_EQ_DELAY 41
179#define OPCODE_COMMON_FIRMWARE_CONFIG 42
180#define OPCODE_COMMON_NTWK_INTERFACE_CREATE 50
181#define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 51
Sathya Perla5fb379e2009-06-18 00:02:59 +0000182#define OPCODE_COMMON_MCC_DESTROY 53
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700183#define OPCODE_COMMON_CQ_DESTROY 54
184#define OPCODE_COMMON_EQ_DESTROY 55
185#define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG 58
186#define OPCODE_COMMON_NTWK_PMAC_ADD 59
187#define OPCODE_COMMON_NTWK_PMAC_DEL 60
sarveshwarb14074ea2009-08-05 13:05:24 -0700188#define OPCODE_COMMON_FUNCTION_RESET 61
Somnath Kotur311fddc2011-03-16 21:22:43 +0000189#define OPCODE_COMMON_MANAGE_FAT 68
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -0700190#define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
191#define OPCODE_COMMON_GET_BEACON_STATE 70
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700192#define OPCODE_COMMON_READ_TRANSRECV_DATA 73
Ajit Khapardeee3cb622010-07-01 03:51:00 +0000193#define OPCODE_COMMON_GET_PHY_DETAILS 102
Sathya Perla2e588f82011-03-11 02:49:26 +0000194#define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP 103
Ajit Khaparde609ff3b2011-02-20 11:42:07 +0000195#define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES 121
Shripad Nunjundarao485bf562011-05-16 07:36:59 +0000196#define OPCODE_COMMON_WRITE_OBJECT 172
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700197
Sathya Perla3abcded2010-10-03 22:12:27 -0700198#define OPCODE_ETH_RSS_CONFIG 1
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700199#define OPCODE_ETH_ACPI_CONFIG 2
200#define OPCODE_ETH_PROMISCUOUS 3
201#define OPCODE_ETH_GET_STATISTICS 4
202#define OPCODE_ETH_TX_CREATE 7
203#define OPCODE_ETH_RX_CREATE 8
204#define OPCODE_ETH_TX_DESTROY 9
205#define OPCODE_ETH_RX_DESTROY 10
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +0000206#define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
Selvin Xavier005d5692011-05-16 07:36:35 +0000207#define OPCODE_ETH_GET_PPORT_STATS 18
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700208
Suresh Rff33a6e2009-12-03 16:15:52 -0800209#define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
210#define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
Sarveshwar Bandifced9992009-12-23 04:41:44 +0000211#define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
Suresh Rff33a6e2009-12-03 16:15:52 -0800212
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700213struct be_cmd_req_hdr {
214 u8 opcode; /* dword 0 */
215 u8 subsystem; /* dword 0 */
216 u8 port_number; /* dword 0 */
217 u8 domain; /* dword 0 */
218 u32 timeout; /* dword 1 */
219 u32 request_length; /* dword 2 */
Ajit Khaparde7b139c82010-01-27 21:56:44 +0000220 u8 version; /* dword 3 */
221 u8 rsvd[3]; /* dword 3 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700222};
223
224#define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
225#define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
226struct be_cmd_resp_hdr {
227 u32 info; /* dword 0 */
228 u32 status; /* dword 1 */
229 u32 response_length; /* dword 2 */
230 u32 actual_resp_len; /* dword 3 */
231};
232
233struct phys_addr {
234 u32 lo;
235 u32 hi;
236};
237
238/**************************
239 * BE Command definitions *
240 **************************/
241
242/* Pseudo amap definition in which each bit of the actual structure is defined
243 * as a byte: used to calculate offset/shift/mask of each field */
244struct amap_eq_context {
245 u8 cidx[13]; /* dword 0*/
246 u8 rsvd0[3]; /* dword 0*/
247 u8 epidx[13]; /* dword 0*/
248 u8 valid; /* dword 0*/
249 u8 rsvd1; /* dword 0*/
250 u8 size; /* dword 0*/
251 u8 pidx[13]; /* dword 1*/
252 u8 rsvd2[3]; /* dword 1*/
253 u8 pd[10]; /* dword 1*/
254 u8 count[3]; /* dword 1*/
255 u8 solevent; /* dword 1*/
256 u8 stalled; /* dword 1*/
257 u8 armed; /* dword 1*/
258 u8 rsvd3[4]; /* dword 2*/
259 u8 func[8]; /* dword 2*/
260 u8 rsvd4; /* dword 2*/
261 u8 delaymult[10]; /* dword 2*/
262 u8 rsvd5[2]; /* dword 2*/
263 u8 phase[2]; /* dword 2*/
264 u8 nodelay; /* dword 2*/
265 u8 rsvd6[4]; /* dword 2*/
266 u8 rsvd7[32]; /* dword 3*/
267} __packed;
268
269struct be_cmd_req_eq_create {
270 struct be_cmd_req_hdr hdr;
271 u16 num_pages; /* sword */
272 u16 rsvd0; /* sword */
273 u8 context[sizeof(struct amap_eq_context) / 8];
274 struct phys_addr pages[8];
275} __packed;
276
277struct be_cmd_resp_eq_create {
278 struct be_cmd_resp_hdr resp_hdr;
279 u16 eq_id; /* sword */
280 u16 rsvd0; /* sword */
281} __packed;
282
283/******************** Mac query ***************************/
284enum {
285 MAC_ADDRESS_TYPE_STORAGE = 0x0,
286 MAC_ADDRESS_TYPE_NETWORK = 0x1,
287 MAC_ADDRESS_TYPE_PD = 0x2,
288 MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
289};
290
291struct mac_addr {
292 u16 size_of_struct;
293 u8 addr[ETH_ALEN];
294} __packed;
295
296struct be_cmd_req_mac_query {
297 struct be_cmd_req_hdr hdr;
298 u8 type;
299 u8 permanent;
300 u16 if_id;
301} __packed;
302
303struct be_cmd_resp_mac_query {
304 struct be_cmd_resp_hdr hdr;
305 struct mac_addr mac;
306};
307
308/******************** PMac Add ***************************/
309struct be_cmd_req_pmac_add {
310 struct be_cmd_req_hdr hdr;
311 u32 if_id;
312 u8 mac_address[ETH_ALEN];
313 u8 rsvd0[2];
314} __packed;
315
316struct be_cmd_resp_pmac_add {
317 struct be_cmd_resp_hdr hdr;
318 u32 pmac_id;
319};
320
321/******************** PMac Del ***************************/
322struct be_cmd_req_pmac_del {
323 struct be_cmd_req_hdr hdr;
324 u32 if_id;
325 u32 pmac_id;
326};
327
328/******************** Create CQ ***************************/
329/* Pseudo amap definition in which each bit of the actual structure is defined
330 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000331struct amap_cq_context_be {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700332 u8 cidx[11]; /* dword 0*/
333 u8 rsvd0; /* dword 0*/
334 u8 coalescwm[2]; /* dword 0*/
335 u8 nodelay; /* dword 0*/
336 u8 epidx[11]; /* dword 0*/
337 u8 rsvd1; /* dword 0*/
338 u8 count[2]; /* dword 0*/
339 u8 valid; /* dword 0*/
340 u8 solevent; /* dword 0*/
341 u8 eventable; /* dword 0*/
342 u8 pidx[11]; /* dword 1*/
343 u8 rsvd2; /* dword 1*/
344 u8 pd[10]; /* dword 1*/
345 u8 eqid[8]; /* dword 1*/
346 u8 stalled; /* dword 1*/
347 u8 armed; /* dword 1*/
348 u8 rsvd3[4]; /* dword 2*/
349 u8 func[8]; /* dword 2*/
350 u8 rsvd4[20]; /* dword 2*/
351 u8 rsvd5[32]; /* dword 3*/
352} __packed;
353
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000354struct amap_cq_context_lancer {
355 u8 rsvd0[12]; /* dword 0*/
356 u8 coalescwm[2]; /* dword 0*/
357 u8 nodelay; /* dword 0*/
358 u8 rsvd1[12]; /* dword 0*/
359 u8 count[2]; /* dword 0*/
360 u8 valid; /* dword 0*/
361 u8 rsvd2; /* dword 0*/
362 u8 eventable; /* dword 0*/
363 u8 eqid[16]; /* dword 1*/
364 u8 rsvd3[15]; /* dword 1*/
365 u8 armed; /* dword 1*/
366 u8 rsvd4[32]; /* dword 2*/
367 u8 rsvd5[32]; /* dword 3*/
368} __packed;
369
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700370struct be_cmd_req_cq_create {
371 struct be_cmd_req_hdr hdr;
372 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000373 u8 page_size;
374 u8 rsvd0;
375 u8 context[sizeof(struct amap_cq_context_be) / 8];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700376 struct phys_addr pages[8];
377} __packed;
378
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000379
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700380struct be_cmd_resp_cq_create {
381 struct be_cmd_resp_hdr hdr;
382 u16 cq_id;
383 u16 rsvd0;
384} __packed;
385
Somnath Kotur311fddc2011-03-16 21:22:43 +0000386struct be_cmd_req_get_fat {
387 struct be_cmd_req_hdr hdr;
388 u32 fat_operation;
389 u32 read_log_offset;
390 u32 read_log_length;
391 u32 data_buffer_size;
392 u32 data_buffer[1];
393} __packed;
394
395struct be_cmd_resp_get_fat {
396 struct be_cmd_resp_hdr hdr;
397 u32 log_size;
398 u32 read_log_length;
399 u32 rsvd[2];
400 u32 data_buffer[1];
401} __packed;
402
403
Sathya Perla5fb379e2009-06-18 00:02:59 +0000404/******************** Create MCCQ ***************************/
405/* Pseudo amap definition in which each bit of the actual structure is defined
406 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000407struct amap_mcc_context_be {
Sathya Perla5fb379e2009-06-18 00:02:59 +0000408 u8 con_index[14];
409 u8 rsvd0[2];
410 u8 ring_size[4];
411 u8 fetch_wrb;
412 u8 fetch_r2t;
413 u8 cq_id[10];
414 u8 prod_index[14];
415 u8 fid[8];
416 u8 pdid[9];
417 u8 valid;
418 u8 rsvd1[32];
419 u8 rsvd2[32];
420} __packed;
421
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000422struct amap_mcc_context_lancer {
423 u8 async_cq_id[16];
424 u8 ring_size[4];
425 u8 rsvd0[12];
426 u8 rsvd1[31];
427 u8 valid;
428 u8 async_cq_valid[1];
429 u8 rsvd2[31];
430 u8 rsvd3[32];
431} __packed;
432
Sathya Perla5fb379e2009-06-18 00:02:59 +0000433struct be_cmd_req_mcc_create {
434 struct be_cmd_req_hdr hdr;
435 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000436 u16 cq_id;
Somnath Kotur34b1ef02011-06-01 00:33:22 +0000437 u8 context[sizeof(struct amap_mcc_context_be) / 8];
438 struct phys_addr pages[8];
439} __packed;
440
441struct be_cmd_req_mcc_ext_create {
442 struct be_cmd_req_hdr hdr;
443 u16 num_pages;
444 u16 cq_id;
Somnath Koturcc4ce022010-10-21 07:11:14 -0700445 u32 async_event_bitmap[1];
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000446 u8 context[sizeof(struct amap_mcc_context_be) / 8];
Sathya Perla5fb379e2009-06-18 00:02:59 +0000447 struct phys_addr pages[8];
448} __packed;
449
450struct be_cmd_resp_mcc_create {
451 struct be_cmd_resp_hdr hdr;
452 u16 id;
453 u16 rsvd0;
454} __packed;
455
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700456/******************** Create TxQ ***************************/
457#define BE_ETH_TX_RING_TYPE_STANDARD 2
458#define BE_ULP1_NUM 1
459
460/* Pseudo amap definition in which each bit of the actual structure is defined
461 * as a byte: used to calculate offset/shift/mask of each field */
462struct amap_tx_context {
Padmanabh Ratnakar8b7756c2011-03-07 03:08:52 +0000463 u8 if_id[16]; /* dword 0 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700464 u8 tx_ring_size[4]; /* dword 0 */
465 u8 rsvd1[26]; /* dword 0 */
466 u8 pci_func_id[8]; /* dword 1 */
467 u8 rsvd2[9]; /* dword 1 */
468 u8 ctx_valid; /* dword 1 */
469 u8 cq_id_send[16]; /* dword 2 */
470 u8 rsvd3[16]; /* dword 2 */
471 u8 rsvd4[32]; /* dword 3 */
472 u8 rsvd5[32]; /* dword 4 */
473 u8 rsvd6[32]; /* dword 5 */
474 u8 rsvd7[32]; /* dword 6 */
475 u8 rsvd8[32]; /* dword 7 */
476 u8 rsvd9[32]; /* dword 8 */
477 u8 rsvd10[32]; /* dword 9 */
478 u8 rsvd11[32]; /* dword 10 */
479 u8 rsvd12[32]; /* dword 11 */
480 u8 rsvd13[32]; /* dword 12 */
481 u8 rsvd14[32]; /* dword 13 */
482 u8 rsvd15[32]; /* dword 14 */
483 u8 rsvd16[32]; /* dword 15 */
484} __packed;
485
486struct be_cmd_req_eth_tx_create {
487 struct be_cmd_req_hdr hdr;
488 u8 num_pages;
489 u8 ulp_num;
490 u8 type;
491 u8 bound_port;
492 u8 context[sizeof(struct amap_tx_context) / 8];
493 struct phys_addr pages[8];
494} __packed;
495
496struct be_cmd_resp_eth_tx_create {
497 struct be_cmd_resp_hdr hdr;
498 u16 cid;
499 u16 rsvd0;
500} __packed;
501
502/******************** Create RxQ ***************************/
503struct be_cmd_req_eth_rx_create {
504 struct be_cmd_req_hdr hdr;
505 u16 cq_id;
506 u8 frag_size;
507 u8 num_pages;
508 struct phys_addr pages[2];
509 u32 interface_id;
510 u16 max_frame_size;
511 u16 rsvd0;
512 u32 rss_queue;
513} __packed;
514
515struct be_cmd_resp_eth_rx_create {
516 struct be_cmd_resp_hdr hdr;
517 u16 id;
Sathya Perla3abcded2010-10-03 22:12:27 -0700518 u8 rss_id;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700519 u8 rsvd0;
520} __packed;
521
522/******************** Q Destroy ***************************/
523/* Type of Queue to be destroyed */
524enum {
525 QTYPE_EQ = 1,
526 QTYPE_CQ,
527 QTYPE_TXQ,
Sathya Perla5fb379e2009-06-18 00:02:59 +0000528 QTYPE_RXQ,
529 QTYPE_MCCQ
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700530};
531
532struct be_cmd_req_q_destroy {
533 struct be_cmd_req_hdr hdr;
534 u16 id;
535 u16 bypass_flush; /* valid only for rx q destroy */
536} __packed;
537
538/************ I/f Create (it's actually I/f Config Create)**********/
539
540/* Capability flags for the i/f */
541enum be_if_flags {
542 BE_IF_FLAGS_RSS = 0x4,
543 BE_IF_FLAGS_PROMISCUOUS = 0x8,
544 BE_IF_FLAGS_BROADCAST = 0x10,
545 BE_IF_FLAGS_UNTAGGED = 0x20,
546 BE_IF_FLAGS_ULP = 0x40,
547 BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
548 BE_IF_FLAGS_VLAN = 0x100,
549 BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
550 BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
Padmanabh Ratnakarf21b5382011-03-07 03:09:36 +0000551 BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
552 BE_IF_FLAGS_MULTICAST = 0x1000
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700553};
554
555/* An RX interface is an object with one or more MAC addresses and
556 * filtering capabilities. */
557struct be_cmd_req_if_create {
558 struct be_cmd_req_hdr hdr;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200559 u32 version; /* ignore currently */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700560 u32 capability_flags;
561 u32 enable_flags;
562 u8 mac_addr[ETH_ALEN];
563 u8 rsvd0;
564 u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
565 u32 vlan_tag; /* not used currently */
566} __packed;
567
568struct be_cmd_resp_if_create {
569 struct be_cmd_resp_hdr hdr;
570 u32 interface_id;
571 u32 pmac_id;
572};
573
574/****** I/f Destroy(it's actually I/f Config Destroy )**********/
575struct be_cmd_req_if_destroy {
576 struct be_cmd_req_hdr hdr;
577 u32 interface_id;
578};
579
580/*************** HW Stats Get **********************************/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000581struct be_port_rxf_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700582 u32 rx_bytes_lsd; /* dword 0*/
583 u32 rx_bytes_msd; /* dword 1*/
584 u32 rx_total_frames; /* dword 2*/
585 u32 rx_unicast_frames; /* dword 3*/
586 u32 rx_multicast_frames; /* dword 4*/
587 u32 rx_broadcast_frames; /* dword 5*/
588 u32 rx_crc_errors; /* dword 6*/
589 u32 rx_alignment_symbol_errors; /* dword 7*/
590 u32 rx_pause_frames; /* dword 8*/
591 u32 rx_control_frames; /* dword 9*/
592 u32 rx_in_range_errors; /* dword 10*/
593 u32 rx_out_range_errors; /* dword 11*/
594 u32 rx_frame_too_long; /* dword 12*/
595 u32 rx_address_match_errors; /* dword 13*/
596 u32 rx_vlan_mismatch; /* dword 14*/
597 u32 rx_dropped_too_small; /* dword 15*/
598 u32 rx_dropped_too_short; /* dword 16*/
599 u32 rx_dropped_header_too_small; /* dword 17*/
600 u32 rx_dropped_tcp_length; /* dword 18*/
601 u32 rx_dropped_runt; /* dword 19*/
602 u32 rx_64_byte_packets; /* dword 20*/
603 u32 rx_65_127_byte_packets; /* dword 21*/
604 u32 rx_128_256_byte_packets; /* dword 22*/
605 u32 rx_256_511_byte_packets; /* dword 23*/
606 u32 rx_512_1023_byte_packets; /* dword 24*/
607 u32 rx_1024_1518_byte_packets; /* dword 25*/
608 u32 rx_1519_2047_byte_packets; /* dword 26*/
609 u32 rx_2048_4095_byte_packets; /* dword 27*/
610 u32 rx_4096_8191_byte_packets; /* dword 28*/
611 u32 rx_8192_9216_byte_packets; /* dword 29*/
612 u32 rx_ip_checksum_errs; /* dword 30*/
613 u32 rx_tcp_checksum_errs; /* dword 31*/
614 u32 rx_udp_checksum_errs; /* dword 32*/
615 u32 rx_non_rss_packets; /* dword 33*/
616 u32 rx_ipv4_packets; /* dword 34*/
617 u32 rx_ipv6_packets; /* dword 35*/
618 u32 rx_ipv4_bytes_lsd; /* dword 36*/
619 u32 rx_ipv4_bytes_msd; /* dword 37*/
620 u32 rx_ipv6_bytes_lsd; /* dword 38*/
621 u32 rx_ipv6_bytes_msd; /* dword 39*/
622 u32 rx_chute1_packets; /* dword 40*/
623 u32 rx_chute2_packets; /* dword 41*/
624 u32 rx_chute3_packets; /* dword 42*/
625 u32 rx_management_packets; /* dword 43*/
626 u32 rx_switched_unicast_packets; /* dword 44*/
627 u32 rx_switched_multicast_packets; /* dword 45*/
628 u32 rx_switched_broadcast_packets; /* dword 46*/
629 u32 tx_bytes_lsd; /* dword 47*/
630 u32 tx_bytes_msd; /* dword 48*/
631 u32 tx_unicastframes; /* dword 49*/
632 u32 tx_multicastframes; /* dword 50*/
633 u32 tx_broadcastframes; /* dword 51*/
634 u32 tx_pauseframes; /* dword 52*/
635 u32 tx_controlframes; /* dword 53*/
636 u32 tx_64_byte_packets; /* dword 54*/
637 u32 tx_65_127_byte_packets; /* dword 55*/
638 u32 tx_128_256_byte_packets; /* dword 56*/
639 u32 tx_256_511_byte_packets; /* dword 57*/
640 u32 tx_512_1023_byte_packets; /* dword 58*/
641 u32 tx_1024_1518_byte_packets; /* dword 59*/
642 u32 tx_1519_2047_byte_packets; /* dword 60*/
643 u32 tx_2048_4095_byte_packets; /* dword 61*/
644 u32 tx_4096_8191_byte_packets; /* dword 62*/
645 u32 tx_8192_9216_byte_packets; /* dword 63*/
646 u32 rx_fifo_overflow; /* dword 64*/
647 u32 rx_input_fifo_overflow; /* dword 65*/
648};
649
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000650struct be_rxf_stats_v0 {
651 struct be_port_rxf_stats_v0 port[2];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700652 u32 rx_drops_no_pbuf; /* dword 132*/
653 u32 rx_drops_no_txpb; /* dword 133*/
654 u32 rx_drops_no_erx_descr; /* dword 134*/
655 u32 rx_drops_no_tpre_descr; /* dword 135*/
656 u32 management_rx_port_packets; /* dword 136*/
657 u32 management_rx_port_bytes; /* dword 137*/
658 u32 management_rx_port_pause_frames; /* dword 138*/
659 u32 management_rx_port_errors; /* dword 139*/
660 u32 management_tx_port_packets; /* dword 140*/
661 u32 management_tx_port_bytes; /* dword 141*/
662 u32 management_tx_port_pause; /* dword 142*/
663 u32 management_rx_port_rxfifo_overflow; /* dword 143*/
664 u32 rx_drops_too_many_frags; /* dword 144*/
665 u32 rx_drops_invalid_ring; /* dword 145*/
666 u32 forwarded_packets; /* dword 146*/
667 u32 rx_drops_mtu; /* dword 147*/
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000668 u32 rsvd0[7];
669 u32 port0_jabber_events;
670 u32 port1_jabber_events;
671 u32 rsvd1[6];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700672};
673
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000674struct be_erx_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700675 u32 rx_drops_no_fragments[44]; /* dwordS 0 to 43*/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000676 u32 rsvd[4];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700677};
678
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000679struct be_pmem_stats {
680 u32 eth_red_drops;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000681 u32 rsvd[5];
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000682};
683
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000684struct be_hw_stats_v0 {
685 struct be_rxf_stats_v0 rxf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700686 u32 rsvd[48];
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000687 struct be_erx_stats_v0 erx;
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000688 struct be_pmem_stats pmem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700689};
690
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000691struct be_cmd_req_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700692 struct be_cmd_req_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000693 u8 rsvd[sizeof(struct be_hw_stats_v0)];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700694};
695
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000696struct be_cmd_resp_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700697 struct be_cmd_resp_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000698 struct be_hw_stats_v0 hw_stats;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700699};
700
Selvin Xavier005d5692011-05-16 07:36:35 +0000701#define make_64bit_val(hi_32, lo_32) (((u64)hi_32<<32) | lo_32)
702struct lancer_cmd_pport_stats {
703 u32 tx_packets_lo;
704 u32 tx_packets_hi;
705 u32 tx_unicast_packets_lo;
706 u32 tx_unicast_packets_hi;
707 u32 tx_multicast_packets_lo;
708 u32 tx_multicast_packets_hi;
709 u32 tx_broadcast_packets_lo;
710 u32 tx_broadcast_packets_hi;
711 u32 tx_bytes_lo;
712 u32 tx_bytes_hi;
713 u32 tx_unicast_bytes_lo;
714 u32 tx_unicast_bytes_hi;
715 u32 tx_multicast_bytes_lo;
716 u32 tx_multicast_bytes_hi;
717 u32 tx_broadcast_bytes_lo;
718 u32 tx_broadcast_bytes_hi;
719 u32 tx_discards_lo;
720 u32 tx_discards_hi;
721 u32 tx_errors_lo;
722 u32 tx_errors_hi;
723 u32 tx_pause_frames_lo;
724 u32 tx_pause_frames_hi;
725 u32 tx_pause_on_frames_lo;
726 u32 tx_pause_on_frames_hi;
727 u32 tx_pause_off_frames_lo;
728 u32 tx_pause_off_frames_hi;
729 u32 tx_internal_mac_errors_lo;
730 u32 tx_internal_mac_errors_hi;
731 u32 tx_control_frames_lo;
732 u32 tx_control_frames_hi;
733 u32 tx_packets_64_bytes_lo;
734 u32 tx_packets_64_bytes_hi;
735 u32 tx_packets_65_to_127_bytes_lo;
736 u32 tx_packets_65_to_127_bytes_hi;
737 u32 tx_packets_128_to_255_bytes_lo;
738 u32 tx_packets_128_to_255_bytes_hi;
739 u32 tx_packets_256_to_511_bytes_lo;
740 u32 tx_packets_256_to_511_bytes_hi;
741 u32 tx_packets_512_to_1023_bytes_lo;
742 u32 tx_packets_512_to_1023_bytes_hi;
743 u32 tx_packets_1024_to_1518_bytes_lo;
744 u32 tx_packets_1024_to_1518_bytes_hi;
745 u32 tx_packets_1519_to_2047_bytes_lo;
746 u32 tx_packets_1519_to_2047_bytes_hi;
747 u32 tx_packets_2048_to_4095_bytes_lo;
748 u32 tx_packets_2048_to_4095_bytes_hi;
749 u32 tx_packets_4096_to_8191_bytes_lo;
750 u32 tx_packets_4096_to_8191_bytes_hi;
751 u32 tx_packets_8192_to_9216_bytes_lo;
752 u32 tx_packets_8192_to_9216_bytes_hi;
753 u32 tx_lso_packets_lo;
754 u32 tx_lso_packets_hi;
755 u32 rx_packets_lo;
756 u32 rx_packets_hi;
757 u32 rx_unicast_packets_lo;
758 u32 rx_unicast_packets_hi;
759 u32 rx_multicast_packets_lo;
760 u32 rx_multicast_packets_hi;
761 u32 rx_broadcast_packets_lo;
762 u32 rx_broadcast_packets_hi;
763 u32 rx_bytes_lo;
764 u32 rx_bytes_hi;
765 u32 rx_unicast_bytes_lo;
766 u32 rx_unicast_bytes_hi;
767 u32 rx_multicast_bytes_lo;
768 u32 rx_multicast_bytes_hi;
769 u32 rx_broadcast_bytes_lo;
770 u32 rx_broadcast_bytes_hi;
771 u32 rx_unknown_protos;
772 u32 rsvd_69; /* Word 69 is reserved */
773 u32 rx_discards_lo;
774 u32 rx_discards_hi;
775 u32 rx_errors_lo;
776 u32 rx_errors_hi;
777 u32 rx_crc_errors_lo;
778 u32 rx_crc_errors_hi;
779 u32 rx_alignment_errors_lo;
780 u32 rx_alignment_errors_hi;
781 u32 rx_symbol_errors_lo;
782 u32 rx_symbol_errors_hi;
783 u32 rx_pause_frames_lo;
784 u32 rx_pause_frames_hi;
785 u32 rx_pause_on_frames_lo;
786 u32 rx_pause_on_frames_hi;
787 u32 rx_pause_off_frames_lo;
788 u32 rx_pause_off_frames_hi;
789 u32 rx_frames_too_long_lo;
790 u32 rx_frames_too_long_hi;
791 u32 rx_internal_mac_errors_lo;
792 u32 rx_internal_mac_errors_hi;
793 u32 rx_undersize_packets;
794 u32 rx_oversize_packets;
795 u32 rx_fragment_packets;
796 u32 rx_jabbers;
797 u32 rx_control_frames_lo;
798 u32 rx_control_frames_hi;
799 u32 rx_control_frames_unknown_opcode_lo;
800 u32 rx_control_frames_unknown_opcode_hi;
801 u32 rx_in_range_errors;
802 u32 rx_out_of_range_errors;
803 u32 rx_address_match_errors;
804 u32 rx_vlan_mismatch_errors;
805 u32 rx_dropped_too_small;
806 u32 rx_dropped_too_short;
807 u32 rx_dropped_header_too_small;
808 u32 rx_dropped_invalid_tcp_length;
809 u32 rx_dropped_runt;
810 u32 rx_ip_checksum_errors;
811 u32 rx_tcp_checksum_errors;
812 u32 rx_udp_checksum_errors;
813 u32 rx_non_rss_packets;
814 u32 rsvd_111;
815 u32 rx_ipv4_packets_lo;
816 u32 rx_ipv4_packets_hi;
817 u32 rx_ipv6_packets_lo;
818 u32 rx_ipv6_packets_hi;
819 u32 rx_ipv4_bytes_lo;
820 u32 rx_ipv4_bytes_hi;
821 u32 rx_ipv6_bytes_lo;
822 u32 rx_ipv6_bytes_hi;
823 u32 rx_nic_packets_lo;
824 u32 rx_nic_packets_hi;
825 u32 rx_tcp_packets_lo;
826 u32 rx_tcp_packets_hi;
827 u32 rx_iscsi_packets_lo;
828 u32 rx_iscsi_packets_hi;
829 u32 rx_management_packets_lo;
830 u32 rx_management_packets_hi;
831 u32 rx_switched_unicast_packets_lo;
832 u32 rx_switched_unicast_packets_hi;
833 u32 rx_switched_multicast_packets_lo;
834 u32 rx_switched_multicast_packets_hi;
835 u32 rx_switched_broadcast_packets_lo;
836 u32 rx_switched_broadcast_packets_hi;
837 u32 num_forwards_lo;
838 u32 num_forwards_hi;
839 u32 rx_fifo_overflow;
840 u32 rx_input_fifo_overflow;
841 u32 rx_drops_too_many_frags_lo;
842 u32 rx_drops_too_many_frags_hi;
843 u32 rx_drops_invalid_queue;
844 u32 rsvd_141;
845 u32 rx_drops_mtu_lo;
846 u32 rx_drops_mtu_hi;
847 u32 rx_packets_64_bytes_lo;
848 u32 rx_packets_64_bytes_hi;
849 u32 rx_packets_65_to_127_bytes_lo;
850 u32 rx_packets_65_to_127_bytes_hi;
851 u32 rx_packets_128_to_255_bytes_lo;
852 u32 rx_packets_128_to_255_bytes_hi;
853 u32 rx_packets_256_to_511_bytes_lo;
854 u32 rx_packets_256_to_511_bytes_hi;
855 u32 rx_packets_512_to_1023_bytes_lo;
856 u32 rx_packets_512_to_1023_bytes_hi;
857 u32 rx_packets_1024_to_1518_bytes_lo;
858 u32 rx_packets_1024_to_1518_bytes_hi;
859 u32 rx_packets_1519_to_2047_bytes_lo;
860 u32 rx_packets_1519_to_2047_bytes_hi;
861 u32 rx_packets_2048_to_4095_bytes_lo;
862 u32 rx_packets_2048_to_4095_bytes_hi;
863 u32 rx_packets_4096_to_8191_bytes_lo;
864 u32 rx_packets_4096_to_8191_bytes_hi;
865 u32 rx_packets_8192_to_9216_bytes_lo;
866 u32 rx_packets_8192_to_9216_bytes_hi;
867};
868
869struct pport_stats_params {
870 u16 pport_num;
871 u8 rsvd;
872 u8 reset_stats;
873};
874
875struct lancer_cmd_req_pport_stats {
876 struct be_cmd_req_hdr hdr;
877 union {
878 struct pport_stats_params params;
879 u8 rsvd[sizeof(struct lancer_cmd_pport_stats)];
880 } cmd_params;
881};
882
883struct lancer_cmd_resp_pport_stats {
884 struct be_cmd_resp_hdr hdr;
885 struct lancer_cmd_pport_stats pport_stats;
886};
887
888static inline struct lancer_cmd_pport_stats*
889 pport_stats_from_cmd(struct be_adapter *adapter)
890{
891 struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
892 return &cmd->pport_stats;
893}
894
Ajit Khaparde609ff3b2011-02-20 11:42:07 +0000895struct be_cmd_req_get_cntl_addnl_attribs {
896 struct be_cmd_req_hdr hdr;
897 u8 rsvd[8];
898};
899
900struct be_cmd_resp_get_cntl_addnl_attribs {
901 struct be_cmd_resp_hdr hdr;
902 u16 ipl_file_number;
903 u8 ipl_file_version;
904 u8 rsvd0;
905 u8 on_die_temperature; /* in degrees centigrade*/
906 u8 rsvd1[3];
907};
908
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700909struct be_cmd_req_vlan_config {
910 struct be_cmd_req_hdr hdr;
911 u8 interface_id;
912 u8 promiscuous;
913 u8 untagged;
914 u8 num_vlan;
915 u16 normal_vlan[64];
916} __packed;
917
Sathya Perlae7b909a2009-11-22 22:01:10 +0000918/******************** Multicast MAC Config *******************/
919#define BE_MAX_MC 64 /* set mcast promisc if > 64 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700920struct macaddr {
921 u8 byte[ETH_ALEN];
922};
923
924struct be_cmd_req_mcast_mac_config {
925 struct be_cmd_req_hdr hdr;
926 u16 num_mac;
927 u8 promiscuous;
928 u8 interface_id;
Sathya Perlae7b909a2009-11-22 22:01:10 +0000929 struct macaddr mac[BE_MAX_MC];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700930} __packed;
931
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +0000932/******************* RX FILTER ******************************/
933struct be_cmd_req_rx_filter {
934 struct be_cmd_req_hdr hdr;
935 u32 global_flags_mask;
936 u32 global_flags;
937 u32 if_flags_mask;
938 u32 if_flags;
939 u32 if_id;
940 u32 multicast_num;
941 struct macaddr mac[BE_MAX_MC];
942};
943
944
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700945/******************** Link Status Query *******************/
946struct be_cmd_req_link_status {
947 struct be_cmd_req_hdr hdr;
948 u32 rsvd;
949};
950
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700951enum {
952 PHY_LINK_DUPLEX_NONE = 0x0,
953 PHY_LINK_DUPLEX_HALF = 0x1,
954 PHY_LINK_DUPLEX_FULL = 0x2
955};
956
957enum {
958 PHY_LINK_SPEED_ZERO = 0x0, /* => No link */
959 PHY_LINK_SPEED_10MBPS = 0x1,
960 PHY_LINK_SPEED_100MBPS = 0x2,
961 PHY_LINK_SPEED_1GBPS = 0x3,
962 PHY_LINK_SPEED_10GBPS = 0x4
963};
964
965struct be_cmd_resp_link_status {
966 struct be_cmd_resp_hdr hdr;
967 u8 physical_port;
968 u8 mac_duplex;
969 u8 mac_speed;
970 u8 mac_fault;
971 u8 mgmt_mac_duplex;
972 u8 mgmt_mac_speed;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700973 u16 link_speed;
974 u32 rsvd0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700975} __packed;
976
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700977/******************** Port Identification ***************************/
978/* Identifies the type of port attached to NIC */
979struct be_cmd_req_port_type {
980 struct be_cmd_req_hdr hdr;
981 u32 page_num;
982 u32 port;
983};
984
985enum {
986 TR_PAGE_A0 = 0xa0,
987 TR_PAGE_A2 = 0xa2
988};
989
990struct be_cmd_resp_port_type {
991 struct be_cmd_resp_hdr hdr;
992 u32 page_num;
993 u32 port;
994 struct data {
995 u8 identifier;
996 u8 identifier_ext;
997 u8 connector;
998 u8 transceiver[8];
999 u8 rsvd0[3];
1000 u8 length_km;
1001 u8 length_hm;
1002 u8 length_om1;
1003 u8 length_om2;
1004 u8 length_cu;
1005 u8 length_cu_m;
1006 u8 vendor_name[16];
1007 u8 rsvd;
1008 u8 vendor_oui[3];
1009 u8 vendor_pn[16];
1010 u8 vendor_rev[4];
1011 } data;
1012};
1013
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001014/******************** Get FW Version *******************/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001015struct be_cmd_req_get_fw_version {
1016 struct be_cmd_req_hdr hdr;
1017 u8 rsvd0[FW_VER_LEN];
1018 u8 rsvd1[FW_VER_LEN];
1019} __packed;
1020
1021struct be_cmd_resp_get_fw_version {
1022 struct be_cmd_resp_hdr hdr;
1023 u8 firmware_version_string[FW_VER_LEN];
1024 u8 fw_on_flash_version_string[FW_VER_LEN];
1025} __packed;
1026
1027/******************** Set Flow Contrl *******************/
1028struct be_cmd_req_set_flow_control {
1029 struct be_cmd_req_hdr hdr;
1030 u16 tx_flow_control;
1031 u16 rx_flow_control;
1032} __packed;
1033
1034/******************** Get Flow Contrl *******************/
1035struct be_cmd_req_get_flow_control {
1036 struct be_cmd_req_hdr hdr;
1037 u32 rsvd;
1038};
1039
1040struct be_cmd_resp_get_flow_control {
1041 struct be_cmd_resp_hdr hdr;
1042 u16 tx_flow_control;
1043 u16 rx_flow_control;
1044} __packed;
1045
1046/******************** Modify EQ Delay *******************/
1047struct be_cmd_req_modify_eq_delay {
1048 struct be_cmd_req_hdr hdr;
1049 u32 num_eq;
1050 struct {
1051 u32 eq_id;
1052 u32 phase;
1053 u32 delay_multiplier;
1054 } delay[8];
1055} __packed;
1056
1057struct be_cmd_resp_modify_eq_delay {
1058 struct be_cmd_resp_hdr hdr;
1059 u32 rsvd0;
1060} __packed;
1061
1062/******************** Get FW Config *******************/
Sathya Perla3abcded2010-10-03 22:12:27 -07001063#define BE_FUNCTION_CAPS_RSS 0x2
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001064struct be_cmd_req_query_fw_cfg {
1065 struct be_cmd_req_hdr hdr;
Sathya Perla3abcded2010-10-03 22:12:27 -07001066 u32 rsvd[31];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001067};
1068
1069struct be_cmd_resp_query_fw_cfg {
1070 struct be_cmd_resp_hdr hdr;
1071 u32 be_config_number;
1072 u32 asic_revision;
1073 u32 phys_port;
Ajit Khaparde3486be22010-07-23 02:04:54 +00001074 u32 function_mode;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001075 u32 rsvd[26];
Sathya Perla3abcded2010-10-03 22:12:27 -07001076 u32 function_caps;
1077};
1078
1079/******************** RSS Config *******************/
1080/* RSS types */
1081#define RSS_ENABLE_NONE 0x0
1082#define RSS_ENABLE_IPV4 0x1
1083#define RSS_ENABLE_TCP_IPV4 0x2
1084#define RSS_ENABLE_IPV6 0x4
1085#define RSS_ENABLE_TCP_IPV6 0x8
1086
1087struct be_cmd_req_rss_config {
1088 struct be_cmd_req_hdr hdr;
1089 u32 if_id;
1090 u16 enable_rss;
1091 u16 cpu_table_size_log2;
1092 u32 hash[10];
1093 u8 cpu_table[128];
1094 u8 flush;
1095 u8 rsvd0[3];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001096};
1097
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001098/******************** Port Beacon ***************************/
1099
1100#define BEACON_STATE_ENABLED 0x1
1101#define BEACON_STATE_DISABLED 0x0
1102
1103struct be_cmd_req_enable_disable_beacon {
1104 struct be_cmd_req_hdr hdr;
1105 u8 port_num;
1106 u8 beacon_state;
1107 u8 beacon_duration;
1108 u8 status_duration;
1109} __packed;
1110
1111struct be_cmd_resp_enable_disable_beacon {
1112 struct be_cmd_resp_hdr resp_hdr;
1113 u32 rsvd0;
1114} __packed;
1115
1116struct be_cmd_req_get_beacon_state {
1117 struct be_cmd_req_hdr hdr;
1118 u8 port_num;
1119 u8 rsvd0;
1120 u16 rsvd1;
1121} __packed;
1122
1123struct be_cmd_resp_get_beacon_state {
1124 struct be_cmd_resp_hdr resp_hdr;
1125 u8 beacon_state;
1126 u8 rsvd0[3];
1127} __packed;
1128
Ajit Khaparde84517482009-09-04 03:12:16 +00001129/****************** Firmware Flash ******************/
1130struct flashrom_params {
1131 u32 op_code;
1132 u32 op_type;
1133 u32 data_buf_size;
1134 u32 offset;
1135 u8 data_buf[4];
1136};
1137
1138struct be_cmd_write_flashrom {
1139 struct be_cmd_req_hdr hdr;
1140 struct flashrom_params params;
1141};
1142
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00001143/**************** Lancer Firmware Flash ************/
1144struct amap_lancer_write_obj_context {
1145 u8 write_length[24];
1146 u8 reserved1[7];
1147 u8 eof;
1148} __packed;
1149
1150struct lancer_cmd_req_write_object {
1151 struct be_cmd_req_hdr hdr;
1152 u8 context[sizeof(struct amap_lancer_write_obj_context) / 8];
1153 u32 write_offset;
1154 u8 object_name[104];
1155 u32 descriptor_count;
1156 u32 buf_len;
1157 u32 addr_low;
1158 u32 addr_high;
1159};
1160
1161struct lancer_cmd_resp_write_object {
1162 u8 opcode;
1163 u8 subsystem;
1164 u8 rsvd1[2];
1165 u8 status;
1166 u8 additional_status;
1167 u8 rsvd2[2];
1168 u32 resp_len;
1169 u32 actual_resp_len;
1170 u32 actual_write_len;
1171};
1172
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001173/************************ WOL *******************************/
1174struct be_cmd_req_acpi_wol_magic_config{
1175 struct be_cmd_req_hdr hdr;
1176 u32 rsvd0[145];
1177 u8 magic_mac[6];
1178 u8 rsvd2[2];
1179} __packed;
1180
Suresh Rff33a6e2009-12-03 16:15:52 -08001181/********************** LoopBack test *********************/
1182struct be_cmd_req_loopback_test {
1183 struct be_cmd_req_hdr hdr;
1184 u32 loopback_type;
1185 u32 num_pkts;
1186 u64 pattern;
1187 u32 src_port;
1188 u32 dest_port;
1189 u32 pkt_size;
1190};
1191
1192struct be_cmd_resp_loopback_test {
1193 struct be_cmd_resp_hdr resp_hdr;
1194 u32 status;
1195 u32 num_txfer;
1196 u32 num_rx;
1197 u32 miscomp_off;
1198 u32 ticks_compl;
1199};
1200
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001201struct be_cmd_req_set_lmode {
1202 struct be_cmd_req_hdr hdr;
1203 u8 src_port;
1204 u8 dest_port;
1205 u8 loopback_type;
1206 u8 loopback_state;
1207};
1208
1209struct be_cmd_resp_set_lmode {
1210 struct be_cmd_resp_hdr resp_hdr;
1211 u8 rsvd0[4];
1212};
1213
Suresh Rff33a6e2009-12-03 16:15:52 -08001214/********************** DDR DMA test *********************/
1215struct be_cmd_req_ddrdma_test {
1216 struct be_cmd_req_hdr hdr;
1217 u64 pattern;
1218 u32 byte_count;
1219 u32 rsvd0;
1220 u8 snd_buff[4096];
1221 u8 rsvd1[4096];
1222};
1223
1224struct be_cmd_resp_ddrdma_test {
1225 struct be_cmd_resp_hdr hdr;
1226 u64 pattern;
1227 u32 byte_cnt;
1228 u32 snd_err;
1229 u8 rsvd0[4096];
1230 u8 rcv_buff[4096];
1231};
1232
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001233/*********************** SEEPROM Read ***********************/
1234
1235#define BE_READ_SEEPROM_LEN 1024
1236struct be_cmd_req_seeprom_read {
1237 struct be_cmd_req_hdr hdr;
1238 u8 rsvd0[BE_READ_SEEPROM_LEN];
1239};
1240
1241struct be_cmd_resp_seeprom_read {
1242 struct be_cmd_req_hdr hdr;
1243 u8 seeprom_data[BE_READ_SEEPROM_LEN];
1244};
1245
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001246enum {
1247 PHY_TYPE_CX4_10GB = 0,
1248 PHY_TYPE_XFP_10GB,
1249 PHY_TYPE_SFP_1GB,
1250 PHY_TYPE_SFP_PLUS_10GB,
1251 PHY_TYPE_KR_10GB,
1252 PHY_TYPE_KX4_10GB,
1253 PHY_TYPE_BASET_10GB,
1254 PHY_TYPE_BASET_1GB,
1255 PHY_TYPE_DISABLED = 255
1256};
1257
1258struct be_cmd_req_get_phy_info {
1259 struct be_cmd_req_hdr hdr;
1260 u8 rsvd0[24];
1261};
1262struct be_cmd_resp_get_phy_info {
1263 struct be_cmd_req_hdr hdr;
1264 u16 phy_type;
1265 u16 interface_type;
1266 u32 misc_params;
1267 u32 future_use[4];
1268};
1269
Ajit Khapardee1d18732010-07-23 01:52:13 +00001270/*********************** Set QOS ***********************/
1271
1272#define BE_QOS_BITS_NIC 1
1273
1274struct be_cmd_req_set_qos {
1275 struct be_cmd_req_hdr hdr;
1276 u32 valid_bits;
1277 u32 max_bps_nic;
1278 u32 rsvd[7];
1279};
1280
1281struct be_cmd_resp_set_qos {
1282 struct be_cmd_resp_hdr hdr;
1283 u32 rsvd;
1284};
1285
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001286/*********************** Controller Attributes ***********************/
1287struct be_cmd_req_cntl_attribs {
1288 struct be_cmd_req_hdr hdr;
1289};
1290
1291struct be_cmd_resp_cntl_attribs {
1292 struct be_cmd_resp_hdr hdr;
1293 struct mgmt_controller_attrib attribs;
1294};
1295
Sathya Perla2e588f82011-03-11 02:49:26 +00001296/*********************** Set driver function ***********************/
1297#define CAPABILITY_SW_TIMESTAMPS 2
1298#define CAPABILITY_BE3_NATIVE_ERX_API 4
1299
1300struct be_cmd_req_set_func_cap {
1301 struct be_cmd_req_hdr hdr;
1302 u32 valid_cap_flags;
1303 u32 cap_flags;
1304 u8 rsvd[212];
1305};
1306
1307struct be_cmd_resp_set_func_cap {
1308 struct be_cmd_resp_hdr hdr;
1309 u32 valid_cap_flags;
1310 u32 cap_flags;
1311 u8 rsvd[212];
1312};
1313
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00001314/*************** HW Stats Get v1 **********************************/
1315#define BE_TXP_SW_SZ 48
1316struct be_port_rxf_stats_v1 {
1317 u32 rsvd0[12];
1318 u32 rx_crc_errors;
1319 u32 rx_alignment_symbol_errors;
1320 u32 rx_pause_frames;
1321 u32 rx_priority_pause_frames;
1322 u32 rx_control_frames;
1323 u32 rx_in_range_errors;
1324 u32 rx_out_range_errors;
1325 u32 rx_frame_too_long;
1326 u32 rx_address_match_errors;
1327 u32 rx_dropped_too_small;
1328 u32 rx_dropped_too_short;
1329 u32 rx_dropped_header_too_small;
1330 u32 rx_dropped_tcp_length;
1331 u32 rx_dropped_runt;
1332 u32 rsvd1[10];
1333 u32 rx_ip_checksum_errs;
1334 u32 rx_tcp_checksum_errs;
1335 u32 rx_udp_checksum_errs;
1336 u32 rsvd2[7];
1337 u32 rx_switched_unicast_packets;
1338 u32 rx_switched_multicast_packets;
1339 u32 rx_switched_broadcast_packets;
1340 u32 rsvd3[3];
1341 u32 tx_pauseframes;
1342 u32 tx_priority_pauseframes;
1343 u32 tx_controlframes;
1344 u32 rsvd4[10];
1345 u32 rxpp_fifo_overflow_drop;
1346 u32 rx_input_fifo_overflow_drop;
1347 u32 pmem_fifo_overflow_drop;
1348 u32 jabber_events;
1349 u32 rsvd5[3];
1350};
1351
1352
1353struct be_rxf_stats_v1 {
1354 struct be_port_rxf_stats_v1 port[4];
1355 u32 rsvd0[2];
1356 u32 rx_drops_no_pbuf;
1357 u32 rx_drops_no_txpb;
1358 u32 rx_drops_no_erx_descr;
1359 u32 rx_drops_no_tpre_descr;
1360 u32 rsvd1[6];
1361 u32 rx_drops_too_many_frags;
1362 u32 rx_drops_invalid_ring;
1363 u32 forwarded_packets;
1364 u32 rx_drops_mtu;
1365 u32 rsvd2[14];
1366};
1367
1368struct be_erx_stats_v1 {
1369 u32 rx_drops_no_fragments[68]; /* dwordS 0 to 67*/
1370 u32 rsvd[4];
1371};
1372
1373struct be_hw_stats_v1 {
1374 struct be_rxf_stats_v1 rxf;
1375 u32 rsvd0[BE_TXP_SW_SZ];
1376 struct be_erx_stats_v1 erx;
1377 struct be_pmem_stats pmem;
1378 u32 rsvd1[3];
1379};
1380
1381struct be_cmd_req_get_stats_v1 {
1382 struct be_cmd_req_hdr hdr;
1383 u8 rsvd[sizeof(struct be_hw_stats_v1)];
1384};
1385
1386struct be_cmd_resp_get_stats_v1 {
1387 struct be_cmd_resp_hdr hdr;
1388 struct be_hw_stats_v1 hw_stats;
1389};
1390
1391static inline void *
1392hw_stats_from_cmd(struct be_adapter *adapter)
1393{
1394 if (adapter->generation == BE_GEN3) {
1395 struct be_cmd_resp_get_stats_v1 *cmd = adapter->stats_cmd.va;
1396
1397 return &cmd->hw_stats;
1398 } else {
1399 struct be_cmd_resp_get_stats_v0 *cmd = adapter->stats_cmd.va;
1400
1401 return &cmd->hw_stats;
1402 }
1403}
1404
1405static inline void *be_port_rxf_stats_from_cmd(struct be_adapter *adapter)
1406{
1407 if (adapter->generation == BE_GEN3) {
1408 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1409 struct be_rxf_stats_v1 *rxf_stats = &hw_stats->rxf;
1410
1411 return &rxf_stats->port[adapter->port_num];
1412 } else {
1413 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1414 struct be_rxf_stats_v0 *rxf_stats = &hw_stats->rxf;
1415
1416 return &rxf_stats->port[adapter->port_num];
1417 }
1418}
1419
1420static inline void *be_rxf_stats_from_cmd(struct be_adapter *adapter)
1421{
1422 if (adapter->generation == BE_GEN3) {
1423 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1424
1425 return &hw_stats->rxf;
1426 } else {
1427 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1428
1429 return &hw_stats->rxf;
1430 }
1431}
1432
1433static 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
1446static inline void *be_pmem_stats_from_cmd(struct be_adapter *adapter)
1447{
1448 if (adapter->generation == BE_GEN3) {
1449 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1450
1451 return &hw_stats->pmem;
1452 } else {
1453 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1454
1455 return &hw_stats->pmem;
1456 }
1457}
1458
Sathya Perla8788fdc2009-07-27 22:52:03 +00001459extern int be_pci_fnum_get(struct be_adapter *adapter);
1460extern int be_cmd_POST(struct be_adapter *adapter);
1461extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001462 u8 type, bool permanent, u32 if_handle);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001463extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
Ajit Khapardef8617e02011-02-11 13:36:37 +00001464 u32 if_id, u32 *pmac_id, u32 domain);
1465extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
1466 u32 pmac_id, u32 domain);
Sathya Perla73d540f2009-10-14 20:20:42 +00001467extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
1468 u32 en_flags, u8 *mac, bool pmac_invalid,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001469 u32 *if_handle, u32 *pmac_id, u32 domain);
Ajit Khaparde658681f2011-02-11 13:34:46 +00001470extern int be_cmd_if_destroy(struct be_adapter *adapter, u32 if_handle,
1471 u32 domain);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001472extern int be_cmd_eq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001473 struct be_queue_info *eq, int eq_delay);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001474extern int be_cmd_cq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001475 struct be_queue_info *cq, struct be_queue_info *eq,
1476 bool sol_evts, bool no_delay,
1477 int num_cqe_dma_coalesce);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001478extern int be_cmd_mccq_create(struct be_adapter *adapter,
Sathya Perla5fb379e2009-06-18 00:02:59 +00001479 struct be_queue_info *mccq,
1480 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001481extern int be_cmd_txq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001482 struct be_queue_info *txq,
1483 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001484extern int be_cmd_rxq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001485 struct be_queue_info *rxq, u16 cq_id,
1486 u16 frag_size, u16 max_frame_size, u32 if_id,
Sathya Perla3abcded2010-10-03 22:12:27 -07001487 u32 rss, u8 *rss_id);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001488extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001489 int type);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001490extern int be_cmd_link_status_query(struct be_adapter *adapter,
Ajit Khaparde187e8752011-04-19 12:11:46 +00001491 bool *link_up, u8 *mac_speed, u16 *link_speed, u32 dom);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001492extern int be_cmd_reset(struct be_adapter *adapter);
1493extern int be_cmd_get_stats(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001494 struct be_dma_mem *nonemb_cmd);
Selvin Xavier005d5692011-05-16 07:36:35 +00001495extern int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1496 struct be_dma_mem *nonemb_cmd);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001497extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001498
Sathya Perla8788fdc2009-07-27 22:52:03 +00001499extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
1500extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001501 u16 *vtag_array, u32 num, bool untagged,
1502 bool promiscuous);
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +00001503extern int be_cmd_promiscuous_config(struct be_adapter *adapter, bool en);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001504extern int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id,
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001505 struct net_device *netdev, struct be_dma_mem *mem);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001506extern int be_cmd_set_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001507 u32 tx_fc, u32 rx_fc);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001508extern int be_cmd_get_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001509 u32 *tx_fc, u32 *rx_fc);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001510extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001511 u32 *port_num, u32 *function_mode, u32 *function_caps);
sarveshwarb14074ea2009-08-05 13:05:24 -07001512extern int be_cmd_reset_function(struct be_adapter *adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07001513extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
1514 u16 table_size);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001515extern int be_process_mcc(struct be_adapter *adapter, int *status);
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001516extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
1517 u8 port_num, u8 beacon, u8 status, u8 state);
1518extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
1519 u8 port_num, u32 *state);
Ajit Khaparde84517482009-09-04 03:12:16 +00001520extern int be_cmd_write_flashrom(struct be_adapter *adapter,
1521 struct be_dma_mem *cmd, u32 flash_oper,
1522 u32 flash_opcode, u32 buf_size);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00001523extern int lancer_cmd_write_object(struct be_adapter *adapter,
1524 struct be_dma_mem *cmd,
1525 u32 data_size, u32 data_offset,
1526 const char *obj_name,
1527 u32 *data_written, u8 *addn_status);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00001528int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
1529 int offset);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001530extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
1531 struct be_dma_mem *nonemb_cmd);
Sathya Perla2243e2e2009-11-22 22:02:03 +00001532extern int be_cmd_fw_init(struct be_adapter *adapter);
1533extern int be_cmd_fw_clean(struct be_adapter *adapter);
Sathya Perla7a1e9b22010-02-17 01:35:11 +00001534extern void be_async_mcc_enable(struct be_adapter *adapter);
1535extern void be_async_mcc_disable(struct be_adapter *adapter);
Suresh Rff33a6e2009-12-03 16:15:52 -08001536extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
1537 u32 loopback_type, u32 pkt_size,
1538 u32 num_pkts, u64 pattern);
1539extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
1540 u32 byte_cnt, struct be_dma_mem *cmd);
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001541extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
1542 struct be_dma_mem *nonemb_cmd);
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001543extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
1544 u8 loopback_type, u8 enable);
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001545extern int be_cmd_get_phy_info(struct be_adapter *adapter,
1546 struct be_dma_mem *cmd);
Ajit Khapardee1d18732010-07-23 01:52:13 +00001547extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
Ajit Khaparded053de92010-09-03 06:23:30 +00001548extern void be_detect_dump_ue(struct be_adapter *adapter);
Ajit Khaparde609ff3b2011-02-20 11:42:07 +00001549extern int be_cmd_get_die_temperature(struct be_adapter *adapter);
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001550extern int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
Sathya Perla2e588f82011-03-11 02:49:26 +00001551extern int be_cmd_check_native_mode(struct be_adapter *adapter);
Somnath Kotur311fddc2011-03-16 21:22:43 +00001552extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size);
1553extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf);
David S. Millerd4a66e72010-01-10 22:55:03 -08001554