blob: 8148cc66cbe90350e358d468f40aabcced9e3f9a [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 Perlaa8f447bd2009-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 Perlaa8f447bd2009-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 Perlaa8f447bd2009-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 Koturcc4ce022010-10-21 07:11:14 -0700437 u32 async_event_bitmap[1];
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000438 u8 context[sizeof(struct amap_mcc_context_be) / 8];
Sathya Perla5fb379e2009-06-18 00:02:59 +0000439 struct phys_addr pages[8];
440} __packed;
441
442struct be_cmd_resp_mcc_create {
443 struct be_cmd_resp_hdr hdr;
444 u16 id;
445 u16 rsvd0;
446} __packed;
447
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700448/******************** Create TxQ ***************************/
449#define BE_ETH_TX_RING_TYPE_STANDARD 2
450#define BE_ULP1_NUM 1
451
452/* Pseudo amap definition in which each bit of the actual structure is defined
453 * as a byte: used to calculate offset/shift/mask of each field */
454struct amap_tx_context {
Padmanabh Ratnakar8b7756c2011-03-07 03:08:52 +0000455 u8 if_id[16]; /* dword 0 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700456 u8 tx_ring_size[4]; /* dword 0 */
457 u8 rsvd1[26]; /* dword 0 */
458 u8 pci_func_id[8]; /* dword 1 */
459 u8 rsvd2[9]; /* dword 1 */
460 u8 ctx_valid; /* dword 1 */
461 u8 cq_id_send[16]; /* dword 2 */
462 u8 rsvd3[16]; /* dword 2 */
463 u8 rsvd4[32]; /* dword 3 */
464 u8 rsvd5[32]; /* dword 4 */
465 u8 rsvd6[32]; /* dword 5 */
466 u8 rsvd7[32]; /* dword 6 */
467 u8 rsvd8[32]; /* dword 7 */
468 u8 rsvd9[32]; /* dword 8 */
469 u8 rsvd10[32]; /* dword 9 */
470 u8 rsvd11[32]; /* dword 10 */
471 u8 rsvd12[32]; /* dword 11 */
472 u8 rsvd13[32]; /* dword 12 */
473 u8 rsvd14[32]; /* dword 13 */
474 u8 rsvd15[32]; /* dword 14 */
475 u8 rsvd16[32]; /* dword 15 */
476} __packed;
477
478struct be_cmd_req_eth_tx_create {
479 struct be_cmd_req_hdr hdr;
480 u8 num_pages;
481 u8 ulp_num;
482 u8 type;
483 u8 bound_port;
484 u8 context[sizeof(struct amap_tx_context) / 8];
485 struct phys_addr pages[8];
486} __packed;
487
488struct be_cmd_resp_eth_tx_create {
489 struct be_cmd_resp_hdr hdr;
490 u16 cid;
491 u16 rsvd0;
492} __packed;
493
494/******************** Create RxQ ***************************/
495struct be_cmd_req_eth_rx_create {
496 struct be_cmd_req_hdr hdr;
497 u16 cq_id;
498 u8 frag_size;
499 u8 num_pages;
500 struct phys_addr pages[2];
501 u32 interface_id;
502 u16 max_frame_size;
503 u16 rsvd0;
504 u32 rss_queue;
505} __packed;
506
507struct be_cmd_resp_eth_rx_create {
508 struct be_cmd_resp_hdr hdr;
509 u16 id;
Sathya Perla3abcded2010-10-03 22:12:27 -0700510 u8 rss_id;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700511 u8 rsvd0;
512} __packed;
513
514/******************** Q Destroy ***************************/
515/* Type of Queue to be destroyed */
516enum {
517 QTYPE_EQ = 1,
518 QTYPE_CQ,
519 QTYPE_TXQ,
Sathya Perla5fb379e2009-06-18 00:02:59 +0000520 QTYPE_RXQ,
521 QTYPE_MCCQ
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700522};
523
524struct be_cmd_req_q_destroy {
525 struct be_cmd_req_hdr hdr;
526 u16 id;
527 u16 bypass_flush; /* valid only for rx q destroy */
528} __packed;
529
530/************ I/f Create (it's actually I/f Config Create)**********/
531
532/* Capability flags for the i/f */
533enum be_if_flags {
534 BE_IF_FLAGS_RSS = 0x4,
535 BE_IF_FLAGS_PROMISCUOUS = 0x8,
536 BE_IF_FLAGS_BROADCAST = 0x10,
537 BE_IF_FLAGS_UNTAGGED = 0x20,
538 BE_IF_FLAGS_ULP = 0x40,
539 BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
540 BE_IF_FLAGS_VLAN = 0x100,
541 BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
542 BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
Padmanabh Ratnakarf21b5382011-03-07 03:09:36 +0000543 BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
544 BE_IF_FLAGS_MULTICAST = 0x1000
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700545};
546
547/* An RX interface is an object with one or more MAC addresses and
548 * filtering capabilities. */
549struct be_cmd_req_if_create {
550 struct be_cmd_req_hdr hdr;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200551 u32 version; /* ignore currently */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700552 u32 capability_flags;
553 u32 enable_flags;
554 u8 mac_addr[ETH_ALEN];
555 u8 rsvd0;
556 u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
557 u32 vlan_tag; /* not used currently */
558} __packed;
559
560struct be_cmd_resp_if_create {
561 struct be_cmd_resp_hdr hdr;
562 u32 interface_id;
563 u32 pmac_id;
564};
565
566/****** I/f Destroy(it's actually I/f Config Destroy )**********/
567struct be_cmd_req_if_destroy {
568 struct be_cmd_req_hdr hdr;
569 u32 interface_id;
570};
571
572/*************** HW Stats Get **********************************/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000573struct be_port_rxf_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700574 u32 rx_bytes_lsd; /* dword 0*/
575 u32 rx_bytes_msd; /* dword 1*/
576 u32 rx_total_frames; /* dword 2*/
577 u32 rx_unicast_frames; /* dword 3*/
578 u32 rx_multicast_frames; /* dword 4*/
579 u32 rx_broadcast_frames; /* dword 5*/
580 u32 rx_crc_errors; /* dword 6*/
581 u32 rx_alignment_symbol_errors; /* dword 7*/
582 u32 rx_pause_frames; /* dword 8*/
583 u32 rx_control_frames; /* dword 9*/
584 u32 rx_in_range_errors; /* dword 10*/
585 u32 rx_out_range_errors; /* dword 11*/
586 u32 rx_frame_too_long; /* dword 12*/
587 u32 rx_address_match_errors; /* dword 13*/
588 u32 rx_vlan_mismatch; /* dword 14*/
589 u32 rx_dropped_too_small; /* dword 15*/
590 u32 rx_dropped_too_short; /* dword 16*/
591 u32 rx_dropped_header_too_small; /* dword 17*/
592 u32 rx_dropped_tcp_length; /* dword 18*/
593 u32 rx_dropped_runt; /* dword 19*/
594 u32 rx_64_byte_packets; /* dword 20*/
595 u32 rx_65_127_byte_packets; /* dword 21*/
596 u32 rx_128_256_byte_packets; /* dword 22*/
597 u32 rx_256_511_byte_packets; /* dword 23*/
598 u32 rx_512_1023_byte_packets; /* dword 24*/
599 u32 rx_1024_1518_byte_packets; /* dword 25*/
600 u32 rx_1519_2047_byte_packets; /* dword 26*/
601 u32 rx_2048_4095_byte_packets; /* dword 27*/
602 u32 rx_4096_8191_byte_packets; /* dword 28*/
603 u32 rx_8192_9216_byte_packets; /* dword 29*/
604 u32 rx_ip_checksum_errs; /* dword 30*/
605 u32 rx_tcp_checksum_errs; /* dword 31*/
606 u32 rx_udp_checksum_errs; /* dword 32*/
607 u32 rx_non_rss_packets; /* dword 33*/
608 u32 rx_ipv4_packets; /* dword 34*/
609 u32 rx_ipv6_packets; /* dword 35*/
610 u32 rx_ipv4_bytes_lsd; /* dword 36*/
611 u32 rx_ipv4_bytes_msd; /* dword 37*/
612 u32 rx_ipv6_bytes_lsd; /* dword 38*/
613 u32 rx_ipv6_bytes_msd; /* dword 39*/
614 u32 rx_chute1_packets; /* dword 40*/
615 u32 rx_chute2_packets; /* dword 41*/
616 u32 rx_chute3_packets; /* dword 42*/
617 u32 rx_management_packets; /* dword 43*/
618 u32 rx_switched_unicast_packets; /* dword 44*/
619 u32 rx_switched_multicast_packets; /* dword 45*/
620 u32 rx_switched_broadcast_packets; /* dword 46*/
621 u32 tx_bytes_lsd; /* dword 47*/
622 u32 tx_bytes_msd; /* dword 48*/
623 u32 tx_unicastframes; /* dword 49*/
624 u32 tx_multicastframes; /* dword 50*/
625 u32 tx_broadcastframes; /* dword 51*/
626 u32 tx_pauseframes; /* dword 52*/
627 u32 tx_controlframes; /* dword 53*/
628 u32 tx_64_byte_packets; /* dword 54*/
629 u32 tx_65_127_byte_packets; /* dword 55*/
630 u32 tx_128_256_byte_packets; /* dword 56*/
631 u32 tx_256_511_byte_packets; /* dword 57*/
632 u32 tx_512_1023_byte_packets; /* dword 58*/
633 u32 tx_1024_1518_byte_packets; /* dword 59*/
634 u32 tx_1519_2047_byte_packets; /* dword 60*/
635 u32 tx_2048_4095_byte_packets; /* dword 61*/
636 u32 tx_4096_8191_byte_packets; /* dword 62*/
637 u32 tx_8192_9216_byte_packets; /* dword 63*/
638 u32 rx_fifo_overflow; /* dword 64*/
639 u32 rx_input_fifo_overflow; /* dword 65*/
640};
641
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000642struct be_rxf_stats_v0 {
643 struct be_port_rxf_stats_v0 port[2];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700644 u32 rx_drops_no_pbuf; /* dword 132*/
645 u32 rx_drops_no_txpb; /* dword 133*/
646 u32 rx_drops_no_erx_descr; /* dword 134*/
647 u32 rx_drops_no_tpre_descr; /* dword 135*/
648 u32 management_rx_port_packets; /* dword 136*/
649 u32 management_rx_port_bytes; /* dword 137*/
650 u32 management_rx_port_pause_frames; /* dword 138*/
651 u32 management_rx_port_errors; /* dword 139*/
652 u32 management_tx_port_packets; /* dword 140*/
653 u32 management_tx_port_bytes; /* dword 141*/
654 u32 management_tx_port_pause; /* dword 142*/
655 u32 management_rx_port_rxfifo_overflow; /* dword 143*/
656 u32 rx_drops_too_many_frags; /* dword 144*/
657 u32 rx_drops_invalid_ring; /* dword 145*/
658 u32 forwarded_packets; /* dword 146*/
659 u32 rx_drops_mtu; /* dword 147*/
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000660 u32 rsvd0[7];
661 u32 port0_jabber_events;
662 u32 port1_jabber_events;
663 u32 rsvd1[6];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700664};
665
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000666struct be_erx_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700667 u32 rx_drops_no_fragments[44]; /* dwordS 0 to 43*/
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000668 u32 rsvd[4];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700669};
670
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000671struct be_pmem_stats {
672 u32 eth_red_drops;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000673 u32 rsvd[5];
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000674};
675
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000676struct be_hw_stats_v0 {
677 struct be_rxf_stats_v0 rxf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700678 u32 rsvd[48];
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000679 struct be_erx_stats_v0 erx;
Ajit Khapardef6c4bf32011-02-20 11:41:04 +0000680 struct be_pmem_stats pmem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700681};
682
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000683struct be_cmd_req_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700684 struct be_cmd_req_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000685 u8 rsvd[sizeof(struct be_hw_stats_v0)];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700686};
687
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000688struct be_cmd_resp_get_stats_v0 {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700689 struct be_cmd_resp_hdr hdr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000690 struct be_hw_stats_v0 hw_stats;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700691};
692
Selvin Xavier005d5692011-05-16 07:36:35 +0000693#define make_64bit_val(hi_32, lo_32) (((u64)hi_32<<32) | lo_32)
694struct lancer_cmd_pport_stats {
695 u32 tx_packets_lo;
696 u32 tx_packets_hi;
697 u32 tx_unicast_packets_lo;
698 u32 tx_unicast_packets_hi;
699 u32 tx_multicast_packets_lo;
700 u32 tx_multicast_packets_hi;
701 u32 tx_broadcast_packets_lo;
702 u32 tx_broadcast_packets_hi;
703 u32 tx_bytes_lo;
704 u32 tx_bytes_hi;
705 u32 tx_unicast_bytes_lo;
706 u32 tx_unicast_bytes_hi;
707 u32 tx_multicast_bytes_lo;
708 u32 tx_multicast_bytes_hi;
709 u32 tx_broadcast_bytes_lo;
710 u32 tx_broadcast_bytes_hi;
711 u32 tx_discards_lo;
712 u32 tx_discards_hi;
713 u32 tx_errors_lo;
714 u32 tx_errors_hi;
715 u32 tx_pause_frames_lo;
716 u32 tx_pause_frames_hi;
717 u32 tx_pause_on_frames_lo;
718 u32 tx_pause_on_frames_hi;
719 u32 tx_pause_off_frames_lo;
720 u32 tx_pause_off_frames_hi;
721 u32 tx_internal_mac_errors_lo;
722 u32 tx_internal_mac_errors_hi;
723 u32 tx_control_frames_lo;
724 u32 tx_control_frames_hi;
725 u32 tx_packets_64_bytes_lo;
726 u32 tx_packets_64_bytes_hi;
727 u32 tx_packets_65_to_127_bytes_lo;
728 u32 tx_packets_65_to_127_bytes_hi;
729 u32 tx_packets_128_to_255_bytes_lo;
730 u32 tx_packets_128_to_255_bytes_hi;
731 u32 tx_packets_256_to_511_bytes_lo;
732 u32 tx_packets_256_to_511_bytes_hi;
733 u32 tx_packets_512_to_1023_bytes_lo;
734 u32 tx_packets_512_to_1023_bytes_hi;
735 u32 tx_packets_1024_to_1518_bytes_lo;
736 u32 tx_packets_1024_to_1518_bytes_hi;
737 u32 tx_packets_1519_to_2047_bytes_lo;
738 u32 tx_packets_1519_to_2047_bytes_hi;
739 u32 tx_packets_2048_to_4095_bytes_lo;
740 u32 tx_packets_2048_to_4095_bytes_hi;
741 u32 tx_packets_4096_to_8191_bytes_lo;
742 u32 tx_packets_4096_to_8191_bytes_hi;
743 u32 tx_packets_8192_to_9216_bytes_lo;
744 u32 tx_packets_8192_to_9216_bytes_hi;
745 u32 tx_lso_packets_lo;
746 u32 tx_lso_packets_hi;
747 u32 rx_packets_lo;
748 u32 rx_packets_hi;
749 u32 rx_unicast_packets_lo;
750 u32 rx_unicast_packets_hi;
751 u32 rx_multicast_packets_lo;
752 u32 rx_multicast_packets_hi;
753 u32 rx_broadcast_packets_lo;
754 u32 rx_broadcast_packets_hi;
755 u32 rx_bytes_lo;
756 u32 rx_bytes_hi;
757 u32 rx_unicast_bytes_lo;
758 u32 rx_unicast_bytes_hi;
759 u32 rx_multicast_bytes_lo;
760 u32 rx_multicast_bytes_hi;
761 u32 rx_broadcast_bytes_lo;
762 u32 rx_broadcast_bytes_hi;
763 u32 rx_unknown_protos;
764 u32 rsvd_69; /* Word 69 is reserved */
765 u32 rx_discards_lo;
766 u32 rx_discards_hi;
767 u32 rx_errors_lo;
768 u32 rx_errors_hi;
769 u32 rx_crc_errors_lo;
770 u32 rx_crc_errors_hi;
771 u32 rx_alignment_errors_lo;
772 u32 rx_alignment_errors_hi;
773 u32 rx_symbol_errors_lo;
774 u32 rx_symbol_errors_hi;
775 u32 rx_pause_frames_lo;
776 u32 rx_pause_frames_hi;
777 u32 rx_pause_on_frames_lo;
778 u32 rx_pause_on_frames_hi;
779 u32 rx_pause_off_frames_lo;
780 u32 rx_pause_off_frames_hi;
781 u32 rx_frames_too_long_lo;
782 u32 rx_frames_too_long_hi;
783 u32 rx_internal_mac_errors_lo;
784 u32 rx_internal_mac_errors_hi;
785 u32 rx_undersize_packets;
786 u32 rx_oversize_packets;
787 u32 rx_fragment_packets;
788 u32 rx_jabbers;
789 u32 rx_control_frames_lo;
790 u32 rx_control_frames_hi;
791 u32 rx_control_frames_unknown_opcode_lo;
792 u32 rx_control_frames_unknown_opcode_hi;
793 u32 rx_in_range_errors;
794 u32 rx_out_of_range_errors;
795 u32 rx_address_match_errors;
796 u32 rx_vlan_mismatch_errors;
797 u32 rx_dropped_too_small;
798 u32 rx_dropped_too_short;
799 u32 rx_dropped_header_too_small;
800 u32 rx_dropped_invalid_tcp_length;
801 u32 rx_dropped_runt;
802 u32 rx_ip_checksum_errors;
803 u32 rx_tcp_checksum_errors;
804 u32 rx_udp_checksum_errors;
805 u32 rx_non_rss_packets;
806 u32 rsvd_111;
807 u32 rx_ipv4_packets_lo;
808 u32 rx_ipv4_packets_hi;
809 u32 rx_ipv6_packets_lo;
810 u32 rx_ipv6_packets_hi;
811 u32 rx_ipv4_bytes_lo;
812 u32 rx_ipv4_bytes_hi;
813 u32 rx_ipv6_bytes_lo;
814 u32 rx_ipv6_bytes_hi;
815 u32 rx_nic_packets_lo;
816 u32 rx_nic_packets_hi;
817 u32 rx_tcp_packets_lo;
818 u32 rx_tcp_packets_hi;
819 u32 rx_iscsi_packets_lo;
820 u32 rx_iscsi_packets_hi;
821 u32 rx_management_packets_lo;
822 u32 rx_management_packets_hi;
823 u32 rx_switched_unicast_packets_lo;
824 u32 rx_switched_unicast_packets_hi;
825 u32 rx_switched_multicast_packets_lo;
826 u32 rx_switched_multicast_packets_hi;
827 u32 rx_switched_broadcast_packets_lo;
828 u32 rx_switched_broadcast_packets_hi;
829 u32 num_forwards_lo;
830 u32 num_forwards_hi;
831 u32 rx_fifo_overflow;
832 u32 rx_input_fifo_overflow;
833 u32 rx_drops_too_many_frags_lo;
834 u32 rx_drops_too_many_frags_hi;
835 u32 rx_drops_invalid_queue;
836 u32 rsvd_141;
837 u32 rx_drops_mtu_lo;
838 u32 rx_drops_mtu_hi;
839 u32 rx_packets_64_bytes_lo;
840 u32 rx_packets_64_bytes_hi;
841 u32 rx_packets_65_to_127_bytes_lo;
842 u32 rx_packets_65_to_127_bytes_hi;
843 u32 rx_packets_128_to_255_bytes_lo;
844 u32 rx_packets_128_to_255_bytes_hi;
845 u32 rx_packets_256_to_511_bytes_lo;
846 u32 rx_packets_256_to_511_bytes_hi;
847 u32 rx_packets_512_to_1023_bytes_lo;
848 u32 rx_packets_512_to_1023_bytes_hi;
849 u32 rx_packets_1024_to_1518_bytes_lo;
850 u32 rx_packets_1024_to_1518_bytes_hi;
851 u32 rx_packets_1519_to_2047_bytes_lo;
852 u32 rx_packets_1519_to_2047_bytes_hi;
853 u32 rx_packets_2048_to_4095_bytes_lo;
854 u32 rx_packets_2048_to_4095_bytes_hi;
855 u32 rx_packets_4096_to_8191_bytes_lo;
856 u32 rx_packets_4096_to_8191_bytes_hi;
857 u32 rx_packets_8192_to_9216_bytes_lo;
858 u32 rx_packets_8192_to_9216_bytes_hi;
859};
860
861struct pport_stats_params {
862 u16 pport_num;
863 u8 rsvd;
864 u8 reset_stats;
865};
866
867struct lancer_cmd_req_pport_stats {
868 struct be_cmd_req_hdr hdr;
869 union {
870 struct pport_stats_params params;
871 u8 rsvd[sizeof(struct lancer_cmd_pport_stats)];
872 } cmd_params;
873};
874
875struct lancer_cmd_resp_pport_stats {
876 struct be_cmd_resp_hdr hdr;
877 struct lancer_cmd_pport_stats pport_stats;
878};
879
880static inline struct lancer_cmd_pport_stats*
881 pport_stats_from_cmd(struct be_adapter *adapter)
882{
883 struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
884 return &cmd->pport_stats;
885}
886
Ajit Khaparde609ff3b2011-02-20 11:42:07 +0000887struct be_cmd_req_get_cntl_addnl_attribs {
888 struct be_cmd_req_hdr hdr;
889 u8 rsvd[8];
890};
891
892struct be_cmd_resp_get_cntl_addnl_attribs {
893 struct be_cmd_resp_hdr hdr;
894 u16 ipl_file_number;
895 u8 ipl_file_version;
896 u8 rsvd0;
897 u8 on_die_temperature; /* in degrees centigrade*/
898 u8 rsvd1[3];
899};
900
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700901struct be_cmd_req_vlan_config {
902 struct be_cmd_req_hdr hdr;
903 u8 interface_id;
904 u8 promiscuous;
905 u8 untagged;
906 u8 num_vlan;
907 u16 normal_vlan[64];
908} __packed;
909
Sathya Perlae7b909a2009-11-22 22:01:10 +0000910/******************** Multicast MAC Config *******************/
911#define BE_MAX_MC 64 /* set mcast promisc if > 64 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700912struct macaddr {
913 u8 byte[ETH_ALEN];
914};
915
916struct be_cmd_req_mcast_mac_config {
917 struct be_cmd_req_hdr hdr;
918 u16 num_mac;
919 u8 promiscuous;
920 u8 interface_id;
Sathya Perlae7b909a2009-11-22 22:01:10 +0000921 struct macaddr mac[BE_MAX_MC];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700922} __packed;
923
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +0000924/******************* RX FILTER ******************************/
925struct be_cmd_req_rx_filter {
926 struct be_cmd_req_hdr hdr;
927 u32 global_flags_mask;
928 u32 global_flags;
929 u32 if_flags_mask;
930 u32 if_flags;
931 u32 if_id;
932 u32 multicast_num;
933 struct macaddr mac[BE_MAX_MC];
934};
935
936
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700937/******************** Link Status Query *******************/
938struct be_cmd_req_link_status {
939 struct be_cmd_req_hdr hdr;
940 u32 rsvd;
941};
942
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700943enum {
944 PHY_LINK_DUPLEX_NONE = 0x0,
945 PHY_LINK_DUPLEX_HALF = 0x1,
946 PHY_LINK_DUPLEX_FULL = 0x2
947};
948
949enum {
950 PHY_LINK_SPEED_ZERO = 0x0, /* => No link */
951 PHY_LINK_SPEED_10MBPS = 0x1,
952 PHY_LINK_SPEED_100MBPS = 0x2,
953 PHY_LINK_SPEED_1GBPS = 0x3,
954 PHY_LINK_SPEED_10GBPS = 0x4
955};
956
957struct be_cmd_resp_link_status {
958 struct be_cmd_resp_hdr hdr;
959 u8 physical_port;
960 u8 mac_duplex;
961 u8 mac_speed;
962 u8 mac_fault;
963 u8 mgmt_mac_duplex;
964 u8 mgmt_mac_speed;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700965 u16 link_speed;
966 u32 rsvd0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700967} __packed;
968
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700969/******************** Port Identification ***************************/
970/* Identifies the type of port attached to NIC */
971struct be_cmd_req_port_type {
972 struct be_cmd_req_hdr hdr;
973 u32 page_num;
974 u32 port;
975};
976
977enum {
978 TR_PAGE_A0 = 0xa0,
979 TR_PAGE_A2 = 0xa2
980};
981
982struct be_cmd_resp_port_type {
983 struct be_cmd_resp_hdr hdr;
984 u32 page_num;
985 u32 port;
986 struct data {
987 u8 identifier;
988 u8 identifier_ext;
989 u8 connector;
990 u8 transceiver[8];
991 u8 rsvd0[3];
992 u8 length_km;
993 u8 length_hm;
994 u8 length_om1;
995 u8 length_om2;
996 u8 length_cu;
997 u8 length_cu_m;
998 u8 vendor_name[16];
999 u8 rsvd;
1000 u8 vendor_oui[3];
1001 u8 vendor_pn[16];
1002 u8 vendor_rev[4];
1003 } data;
1004};
1005
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001006/******************** Get FW Version *******************/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001007struct be_cmd_req_get_fw_version {
1008 struct be_cmd_req_hdr hdr;
1009 u8 rsvd0[FW_VER_LEN];
1010 u8 rsvd1[FW_VER_LEN];
1011} __packed;
1012
1013struct be_cmd_resp_get_fw_version {
1014 struct be_cmd_resp_hdr hdr;
1015 u8 firmware_version_string[FW_VER_LEN];
1016 u8 fw_on_flash_version_string[FW_VER_LEN];
1017} __packed;
1018
1019/******************** Set Flow Contrl *******************/
1020struct be_cmd_req_set_flow_control {
1021 struct be_cmd_req_hdr hdr;
1022 u16 tx_flow_control;
1023 u16 rx_flow_control;
1024} __packed;
1025
1026/******************** Get Flow Contrl *******************/
1027struct be_cmd_req_get_flow_control {
1028 struct be_cmd_req_hdr hdr;
1029 u32 rsvd;
1030};
1031
1032struct be_cmd_resp_get_flow_control {
1033 struct be_cmd_resp_hdr hdr;
1034 u16 tx_flow_control;
1035 u16 rx_flow_control;
1036} __packed;
1037
1038/******************** Modify EQ Delay *******************/
1039struct be_cmd_req_modify_eq_delay {
1040 struct be_cmd_req_hdr hdr;
1041 u32 num_eq;
1042 struct {
1043 u32 eq_id;
1044 u32 phase;
1045 u32 delay_multiplier;
1046 } delay[8];
1047} __packed;
1048
1049struct be_cmd_resp_modify_eq_delay {
1050 struct be_cmd_resp_hdr hdr;
1051 u32 rsvd0;
1052} __packed;
1053
1054/******************** Get FW Config *******************/
Sathya Perla3abcded2010-10-03 22:12:27 -07001055#define BE_FUNCTION_CAPS_RSS 0x2
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
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001165/************************ WOL *******************************/
1166struct be_cmd_req_acpi_wol_magic_config{
1167 struct be_cmd_req_hdr hdr;
1168 u32 rsvd0[145];
1169 u8 magic_mac[6];
1170 u8 rsvd2[2];
1171} __packed;
1172
Suresh Rff33a6e2009-12-03 16:15:52 -08001173/********************** LoopBack test *********************/
1174struct be_cmd_req_loopback_test {
1175 struct be_cmd_req_hdr hdr;
1176 u32 loopback_type;
1177 u32 num_pkts;
1178 u64 pattern;
1179 u32 src_port;
1180 u32 dest_port;
1181 u32 pkt_size;
1182};
1183
1184struct be_cmd_resp_loopback_test {
1185 struct be_cmd_resp_hdr resp_hdr;
1186 u32 status;
1187 u32 num_txfer;
1188 u32 num_rx;
1189 u32 miscomp_off;
1190 u32 ticks_compl;
1191};
1192
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001193struct be_cmd_req_set_lmode {
1194 struct be_cmd_req_hdr hdr;
1195 u8 src_port;
1196 u8 dest_port;
1197 u8 loopback_type;
1198 u8 loopback_state;
1199};
1200
1201struct be_cmd_resp_set_lmode {
1202 struct be_cmd_resp_hdr resp_hdr;
1203 u8 rsvd0[4];
1204};
1205
Suresh Rff33a6e2009-12-03 16:15:52 -08001206/********************** DDR DMA test *********************/
1207struct be_cmd_req_ddrdma_test {
1208 struct be_cmd_req_hdr hdr;
1209 u64 pattern;
1210 u32 byte_count;
1211 u32 rsvd0;
1212 u8 snd_buff[4096];
1213 u8 rsvd1[4096];
1214};
1215
1216struct be_cmd_resp_ddrdma_test {
1217 struct be_cmd_resp_hdr hdr;
1218 u64 pattern;
1219 u32 byte_cnt;
1220 u32 snd_err;
1221 u8 rsvd0[4096];
1222 u8 rcv_buff[4096];
1223};
1224
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001225/*********************** SEEPROM Read ***********************/
1226
1227#define BE_READ_SEEPROM_LEN 1024
1228struct be_cmd_req_seeprom_read {
1229 struct be_cmd_req_hdr hdr;
1230 u8 rsvd0[BE_READ_SEEPROM_LEN];
1231};
1232
1233struct be_cmd_resp_seeprom_read {
1234 struct be_cmd_req_hdr hdr;
1235 u8 seeprom_data[BE_READ_SEEPROM_LEN];
1236};
1237
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001238enum {
1239 PHY_TYPE_CX4_10GB = 0,
1240 PHY_TYPE_XFP_10GB,
1241 PHY_TYPE_SFP_1GB,
1242 PHY_TYPE_SFP_PLUS_10GB,
1243 PHY_TYPE_KR_10GB,
1244 PHY_TYPE_KX4_10GB,
1245 PHY_TYPE_BASET_10GB,
1246 PHY_TYPE_BASET_1GB,
1247 PHY_TYPE_DISABLED = 255
1248};
1249
1250struct be_cmd_req_get_phy_info {
1251 struct be_cmd_req_hdr hdr;
1252 u8 rsvd0[24];
1253};
1254struct be_cmd_resp_get_phy_info {
1255 struct be_cmd_req_hdr hdr;
1256 u16 phy_type;
1257 u16 interface_type;
1258 u32 misc_params;
1259 u32 future_use[4];
1260};
1261
Ajit Khapardee1d18732010-07-23 01:52:13 +00001262/*********************** Set QOS ***********************/
1263
1264#define BE_QOS_BITS_NIC 1
1265
1266struct be_cmd_req_set_qos {
1267 struct be_cmd_req_hdr hdr;
1268 u32 valid_bits;
1269 u32 max_bps_nic;
1270 u32 rsvd[7];
1271};
1272
1273struct be_cmd_resp_set_qos {
1274 struct be_cmd_resp_hdr hdr;
1275 u32 rsvd;
1276};
1277
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001278/*********************** Controller Attributes ***********************/
1279struct be_cmd_req_cntl_attribs {
1280 struct be_cmd_req_hdr hdr;
1281};
1282
1283struct be_cmd_resp_cntl_attribs {
1284 struct be_cmd_resp_hdr hdr;
1285 struct mgmt_controller_attrib attribs;
1286};
1287
Sathya Perla2e588f82011-03-11 02:49:26 +00001288/*********************** Set driver function ***********************/
1289#define CAPABILITY_SW_TIMESTAMPS 2
1290#define CAPABILITY_BE3_NATIVE_ERX_API 4
1291
1292struct be_cmd_req_set_func_cap {
1293 struct be_cmd_req_hdr hdr;
1294 u32 valid_cap_flags;
1295 u32 cap_flags;
1296 u8 rsvd[212];
1297};
1298
1299struct be_cmd_resp_set_func_cap {
1300 struct be_cmd_resp_hdr hdr;
1301 u32 valid_cap_flags;
1302 u32 cap_flags;
1303 u8 rsvd[212];
1304};
1305
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00001306/*************** HW Stats Get v1 **********************************/
1307#define BE_TXP_SW_SZ 48
1308struct be_port_rxf_stats_v1 {
1309 u32 rsvd0[12];
1310 u32 rx_crc_errors;
1311 u32 rx_alignment_symbol_errors;
1312 u32 rx_pause_frames;
1313 u32 rx_priority_pause_frames;
1314 u32 rx_control_frames;
1315 u32 rx_in_range_errors;
1316 u32 rx_out_range_errors;
1317 u32 rx_frame_too_long;
1318 u32 rx_address_match_errors;
1319 u32 rx_dropped_too_small;
1320 u32 rx_dropped_too_short;
1321 u32 rx_dropped_header_too_small;
1322 u32 rx_dropped_tcp_length;
1323 u32 rx_dropped_runt;
1324 u32 rsvd1[10];
1325 u32 rx_ip_checksum_errs;
1326 u32 rx_tcp_checksum_errs;
1327 u32 rx_udp_checksum_errs;
1328 u32 rsvd2[7];
1329 u32 rx_switched_unicast_packets;
1330 u32 rx_switched_multicast_packets;
1331 u32 rx_switched_broadcast_packets;
1332 u32 rsvd3[3];
1333 u32 tx_pauseframes;
1334 u32 tx_priority_pauseframes;
1335 u32 tx_controlframes;
1336 u32 rsvd4[10];
1337 u32 rxpp_fifo_overflow_drop;
1338 u32 rx_input_fifo_overflow_drop;
1339 u32 pmem_fifo_overflow_drop;
1340 u32 jabber_events;
1341 u32 rsvd5[3];
1342};
1343
1344
1345struct be_rxf_stats_v1 {
1346 struct be_port_rxf_stats_v1 port[4];
1347 u32 rsvd0[2];
1348 u32 rx_drops_no_pbuf;
1349 u32 rx_drops_no_txpb;
1350 u32 rx_drops_no_erx_descr;
1351 u32 rx_drops_no_tpre_descr;
1352 u32 rsvd1[6];
1353 u32 rx_drops_too_many_frags;
1354 u32 rx_drops_invalid_ring;
1355 u32 forwarded_packets;
1356 u32 rx_drops_mtu;
1357 u32 rsvd2[14];
1358};
1359
1360struct be_erx_stats_v1 {
1361 u32 rx_drops_no_fragments[68]; /* dwordS 0 to 67*/
1362 u32 rsvd[4];
1363};
1364
1365struct be_hw_stats_v1 {
1366 struct be_rxf_stats_v1 rxf;
1367 u32 rsvd0[BE_TXP_SW_SZ];
1368 struct be_erx_stats_v1 erx;
1369 struct be_pmem_stats pmem;
1370 u32 rsvd1[3];
1371};
1372
1373struct be_cmd_req_get_stats_v1 {
1374 struct be_cmd_req_hdr hdr;
1375 u8 rsvd[sizeof(struct be_hw_stats_v1)];
1376};
1377
1378struct be_cmd_resp_get_stats_v1 {
1379 struct be_cmd_resp_hdr hdr;
1380 struct be_hw_stats_v1 hw_stats;
1381};
1382
1383static inline void *
1384hw_stats_from_cmd(struct be_adapter *adapter)
1385{
1386 if (adapter->generation == BE_GEN3) {
1387 struct be_cmd_resp_get_stats_v1 *cmd = adapter->stats_cmd.va;
1388
1389 return &cmd->hw_stats;
1390 } else {
1391 struct be_cmd_resp_get_stats_v0 *cmd = adapter->stats_cmd.va;
1392
1393 return &cmd->hw_stats;
1394 }
1395}
1396
1397static inline void *be_port_rxf_stats_from_cmd(struct be_adapter *adapter)
1398{
1399 if (adapter->generation == BE_GEN3) {
1400 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1401 struct be_rxf_stats_v1 *rxf_stats = &hw_stats->rxf;
1402
1403 return &rxf_stats->port[adapter->port_num];
1404 } else {
1405 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1406 struct be_rxf_stats_v0 *rxf_stats = &hw_stats->rxf;
1407
1408 return &rxf_stats->port[adapter->port_num];
1409 }
1410}
1411
1412static inline void *be_rxf_stats_from_cmd(struct be_adapter *adapter)
1413{
1414 if (adapter->generation == BE_GEN3) {
1415 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1416
1417 return &hw_stats->rxf;
1418 } else {
1419 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1420
1421 return &hw_stats->rxf;
1422 }
1423}
1424
1425static inline void *be_erx_stats_from_cmd(struct be_adapter *adapter)
1426{
1427 if (adapter->generation == BE_GEN3) {
1428 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1429
1430 return &hw_stats->erx;
1431 } else {
1432 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1433
1434 return &hw_stats->erx;
1435 }
1436}
1437
1438static inline void *be_pmem_stats_from_cmd(struct be_adapter *adapter)
1439{
1440 if (adapter->generation == BE_GEN3) {
1441 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
1442
1443 return &hw_stats->pmem;
1444 } else {
1445 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
1446
1447 return &hw_stats->pmem;
1448 }
1449}
1450
Sathya Perla8788fdc2009-07-27 22:52:03 +00001451extern int be_pci_fnum_get(struct be_adapter *adapter);
1452extern int be_cmd_POST(struct be_adapter *adapter);
1453extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001454 u8 type, bool permanent, u32 if_handle);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001455extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
Ajit Khapardef8617e02011-02-11 13:36:37 +00001456 u32 if_id, u32 *pmac_id, u32 domain);
1457extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
1458 u32 pmac_id, u32 domain);
Sathya Perla73d540f2009-10-14 20:20:42 +00001459extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
1460 u32 en_flags, u8 *mac, bool pmac_invalid,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001461 u32 *if_handle, u32 *pmac_id, u32 domain);
Ajit Khaparde658681f2011-02-11 13:34:46 +00001462extern int be_cmd_if_destroy(struct be_adapter *adapter, u32 if_handle,
1463 u32 domain);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001464extern int be_cmd_eq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001465 struct be_queue_info *eq, int eq_delay);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001466extern int be_cmd_cq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001467 struct be_queue_info *cq, struct be_queue_info *eq,
1468 bool sol_evts, bool no_delay,
1469 int num_cqe_dma_coalesce);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001470extern int be_cmd_mccq_create(struct be_adapter *adapter,
Sathya Perla5fb379e2009-06-18 00:02:59 +00001471 struct be_queue_info *mccq,
1472 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001473extern int be_cmd_txq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001474 struct be_queue_info *txq,
1475 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001476extern int be_cmd_rxq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001477 struct be_queue_info *rxq, u16 cq_id,
1478 u16 frag_size, u16 max_frame_size, u32 if_id,
Sathya Perla3abcded2010-10-03 22:12:27 -07001479 u32 rss, u8 *rss_id);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001480extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001481 int type);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001482extern int be_cmd_link_status_query(struct be_adapter *adapter,
Ajit Khaparde187e8752011-04-19 12:11:46 +00001483 bool *link_up, u8 *mac_speed, u16 *link_speed, u32 dom);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001484extern int be_cmd_reset(struct be_adapter *adapter);
1485extern int be_cmd_get_stats(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001486 struct be_dma_mem *nonemb_cmd);
Selvin Xavier005d5692011-05-16 07:36:35 +00001487extern int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1488 struct be_dma_mem *nonemb_cmd);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001489extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001490
Sathya Perla8788fdc2009-07-27 22:52:03 +00001491extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
1492extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001493 u16 *vtag_array, u32 num, bool untagged,
1494 bool promiscuous);
Padmanabh Ratnakarecd0bf02011-05-10 05:13:26 +00001495extern int be_cmd_promiscuous_config(struct be_adapter *adapter, bool en);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001496extern int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id,
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001497 struct net_device *netdev, struct be_dma_mem *mem);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001498extern int be_cmd_set_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001499 u32 tx_fc, u32 rx_fc);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001500extern int be_cmd_get_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001501 u32 *tx_fc, u32 *rx_fc);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001502extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001503 u32 *port_num, u32 *function_mode, u32 *function_caps);
sarveshwarb14074ea2009-08-05 13:05:24 -07001504extern int be_cmd_reset_function(struct be_adapter *adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07001505extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
1506 u16 table_size);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001507extern int be_process_mcc(struct be_adapter *adapter, int *status);
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001508extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
1509 u8 port_num, u8 beacon, u8 status, u8 state);
1510extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
1511 u8 port_num, u32 *state);
Ajit Khaparde84517482009-09-04 03:12:16 +00001512extern int be_cmd_write_flashrom(struct be_adapter *adapter,
1513 struct be_dma_mem *cmd, u32 flash_oper,
1514 u32 flash_opcode, u32 buf_size);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00001515extern int lancer_cmd_write_object(struct be_adapter *adapter,
1516 struct be_dma_mem *cmd,
1517 u32 data_size, u32 data_offset,
1518 const char *obj_name,
1519 u32 *data_written, u8 *addn_status);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00001520int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
1521 int offset);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001522extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
1523 struct be_dma_mem *nonemb_cmd);
Sathya Perla2243e2e2009-11-22 22:02:03 +00001524extern int be_cmd_fw_init(struct be_adapter *adapter);
1525extern int be_cmd_fw_clean(struct be_adapter *adapter);
Sathya Perla7a1e9b22010-02-17 01:35:11 +00001526extern void be_async_mcc_enable(struct be_adapter *adapter);
1527extern void be_async_mcc_disable(struct be_adapter *adapter);
Suresh Rff33a6e2009-12-03 16:15:52 -08001528extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
1529 u32 loopback_type, u32 pkt_size,
1530 u32 num_pkts, u64 pattern);
1531extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
1532 u32 byte_cnt, struct be_dma_mem *cmd);
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001533extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
1534 struct be_dma_mem *nonemb_cmd);
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001535extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
1536 u8 loopback_type, u8 enable);
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001537extern int be_cmd_get_phy_info(struct be_adapter *adapter,
1538 struct be_dma_mem *cmd);
Ajit Khapardee1d18732010-07-23 01:52:13 +00001539extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
Ajit Khaparded053de92010-09-03 06:23:30 +00001540extern void be_detect_dump_ue(struct be_adapter *adapter);
Ajit Khaparde609ff3b2011-02-20 11:42:07 +00001541extern int be_cmd_get_die_temperature(struct be_adapter *adapter);
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00001542extern int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
Sathya Perla2e588f82011-03-11 02:49:26 +00001543extern int be_cmd_check_native_mode(struct be_adapter *adapter);
Somnath Kotur311fddc2011-03-16 21:22:43 +00001544extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size);
1545extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf);
David S. Millerd4a66e72010-01-10 22:55:03 -08001546