blob: 91c5d2b09aa1fb261c5d94f94edceb465bd8b76b [file] [log] [blame]
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001/*
Ajit Khaparde294aedc2010-02-19 13:54:58 +00002 * Copyright (C) 2005 - 2010 ServerEngines
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:
11 * linux-drivers@serverengines.com
12 *
13 * ServerEngines
14 * 209 N. Fair Oaks Ave
15 * Sunnyvale, CA 94085
16 */
17
18/*
19 * The driver sends configuration and managements command requests to the
20 * firmware in the BE. These requests are communicated to the processor
21 * using Work Request Blocks (WRBs) submitted to the MCC-WRB ring or via one
22 * WRB inside a MAILBOX.
23 * The commands are serviced by the ARM processor in the BladeEngine's MPU.
24 */
25
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
Sathya Perlaa8f447bd2009-06-18 00:10:27 +000091struct be_async_event_trailer {
92 u32 code;
93};
94
95enum {
96 ASYNC_EVENT_LINK_DOWN = 0x0,
97 ASYNC_EVENT_LINK_UP = 0x1
98};
99
100/* When the event code of an async trailer is link-state, the mcc_compl
101 * must be interpreted as follows
102 */
103struct be_async_event_link_state {
104 u8 physical_port;
105 u8 port_link_status;
106 u8 port_duplex;
107 u8 port_speed;
108 u8 port_fault;
109 u8 rsvd0[7];
110 struct be_async_event_trailer trailer;
111} __packed;
112
Somnath Koturcc4ce022010-10-21 07:11:14 -0700113/* When the event code of an async trailer is GRP-5 and event_type is QOS_SPEED
114 * the mcc_compl must be interpreted as follows
115 */
116struct be_async_event_grp5_qos_link_speed {
117 u8 physical_port;
118 u8 rsvd[5];
119 u16 qos_link_speed;
120 u32 event_tag;
121 struct be_async_event_trailer trailer;
122} __packed;
123
124/* When the event code of an async trailer is GRP5 and event type is
125 * CoS-Priority, the mcc_compl must be interpreted as follows
126 */
127struct be_async_event_grp5_cos_priority {
128 u8 physical_port;
129 u8 available_priority_bmap;
130 u8 reco_default_priority;
131 u8 valid;
132 u8 rsvd0;
133 u8 event_tag;
134 struct be_async_event_trailer trailer;
135} __packed;
136
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700137struct be_mcc_mailbox {
138 struct be_mcc_wrb wrb;
Sathya Perlaefd2e402009-07-27 22:53:10 +0000139 struct be_mcc_compl compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700140};
141
142#define CMD_SUBSYSTEM_COMMON 0x1
143#define CMD_SUBSYSTEM_ETH 0x3
Suresh Rff33a6e2009-12-03 16:15:52 -0800144#define CMD_SUBSYSTEM_LOWLEVEL 0xb
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700145
146#define OPCODE_COMMON_NTWK_MAC_QUERY 1
147#define OPCODE_COMMON_NTWK_MAC_SET 2
148#define OPCODE_COMMON_NTWK_MULTICAST_SET 3
149#define OPCODE_COMMON_NTWK_VLAN_CONFIG 4
150#define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY 5
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -0800151#define OPCODE_COMMON_READ_FLASHROM 6
Ajit Khaparde84517482009-09-04 03:12:16 +0000152#define OPCODE_COMMON_WRITE_FLASHROM 7
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700153#define OPCODE_COMMON_CQ_CREATE 12
154#define OPCODE_COMMON_EQ_CREATE 13
Somnath Koturcc4ce022010-10-21 07:11:14 -0700155#define OPCODE_COMMON_MCC_CREATE 21
Ajit Khapardee1d18732010-07-23 01:52:13 +0000156#define OPCODE_COMMON_SET_QOS 28
Somnath Koturcc4ce022010-10-21 07:11:14 -0700157#define OPCODE_COMMON_MCC_CREATE_EXT 90
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -0800158#define OPCODE_COMMON_SEEPROM_READ 30
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700159#define OPCODE_COMMON_NTWK_RX_FILTER 34
160#define OPCODE_COMMON_GET_FW_VERSION 35
161#define OPCODE_COMMON_SET_FLOW_CONTROL 36
162#define OPCODE_COMMON_GET_FLOW_CONTROL 37
163#define OPCODE_COMMON_SET_FRAME_SIZE 39
164#define OPCODE_COMMON_MODIFY_EQ_DELAY 41
165#define OPCODE_COMMON_FIRMWARE_CONFIG 42
166#define OPCODE_COMMON_NTWK_INTERFACE_CREATE 50
167#define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 51
Sathya Perla5fb379e2009-06-18 00:02:59 +0000168#define OPCODE_COMMON_MCC_DESTROY 53
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700169#define OPCODE_COMMON_CQ_DESTROY 54
170#define OPCODE_COMMON_EQ_DESTROY 55
171#define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG 58
172#define OPCODE_COMMON_NTWK_PMAC_ADD 59
173#define OPCODE_COMMON_NTWK_PMAC_DEL 60
sarveshwarb14074ea2009-08-05 13:05:24 -0700174#define OPCODE_COMMON_FUNCTION_RESET 61
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -0700175#define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
176#define OPCODE_COMMON_GET_BEACON_STATE 70
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700177#define OPCODE_COMMON_READ_TRANSRECV_DATA 73
Ajit Khapardeee3cb622010-07-01 03:51:00 +0000178#define OPCODE_COMMON_GET_PHY_DETAILS 102
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700179
Sathya Perla3abcded2010-10-03 22:12:27 -0700180#define OPCODE_ETH_RSS_CONFIG 1
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700181#define OPCODE_ETH_ACPI_CONFIG 2
182#define OPCODE_ETH_PROMISCUOUS 3
183#define OPCODE_ETH_GET_STATISTICS 4
184#define OPCODE_ETH_TX_CREATE 7
185#define OPCODE_ETH_RX_CREATE 8
186#define OPCODE_ETH_TX_DESTROY 9
187#define OPCODE_ETH_RX_DESTROY 10
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +0000188#define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700189
Suresh Rff33a6e2009-12-03 16:15:52 -0800190#define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
191#define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
Sarveshwar Bandifced9992009-12-23 04:41:44 +0000192#define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
Suresh Rff33a6e2009-12-03 16:15:52 -0800193
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700194struct be_cmd_req_hdr {
195 u8 opcode; /* dword 0 */
196 u8 subsystem; /* dword 0 */
197 u8 port_number; /* dword 0 */
198 u8 domain; /* dword 0 */
199 u32 timeout; /* dword 1 */
200 u32 request_length; /* dword 2 */
Ajit Khaparde7b139c82010-01-27 21:56:44 +0000201 u8 version; /* dword 3 */
202 u8 rsvd[3]; /* dword 3 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700203};
204
205#define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
206#define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
207struct be_cmd_resp_hdr {
208 u32 info; /* dword 0 */
209 u32 status; /* dword 1 */
210 u32 response_length; /* dword 2 */
211 u32 actual_resp_len; /* dword 3 */
212};
213
214struct phys_addr {
215 u32 lo;
216 u32 hi;
217};
218
219/**************************
220 * BE Command definitions *
221 **************************/
222
223/* Pseudo amap definition in which each bit of the actual structure is defined
224 * as a byte: used to calculate offset/shift/mask of each field */
225struct amap_eq_context {
226 u8 cidx[13]; /* dword 0*/
227 u8 rsvd0[3]; /* dword 0*/
228 u8 epidx[13]; /* dword 0*/
229 u8 valid; /* dword 0*/
230 u8 rsvd1; /* dword 0*/
231 u8 size; /* dword 0*/
232 u8 pidx[13]; /* dword 1*/
233 u8 rsvd2[3]; /* dword 1*/
234 u8 pd[10]; /* dword 1*/
235 u8 count[3]; /* dword 1*/
236 u8 solevent; /* dword 1*/
237 u8 stalled; /* dword 1*/
238 u8 armed; /* dword 1*/
239 u8 rsvd3[4]; /* dword 2*/
240 u8 func[8]; /* dword 2*/
241 u8 rsvd4; /* dword 2*/
242 u8 delaymult[10]; /* dword 2*/
243 u8 rsvd5[2]; /* dword 2*/
244 u8 phase[2]; /* dword 2*/
245 u8 nodelay; /* dword 2*/
246 u8 rsvd6[4]; /* dword 2*/
247 u8 rsvd7[32]; /* dword 3*/
248} __packed;
249
250struct be_cmd_req_eq_create {
251 struct be_cmd_req_hdr hdr;
252 u16 num_pages; /* sword */
253 u16 rsvd0; /* sword */
254 u8 context[sizeof(struct amap_eq_context) / 8];
255 struct phys_addr pages[8];
256} __packed;
257
258struct be_cmd_resp_eq_create {
259 struct be_cmd_resp_hdr resp_hdr;
260 u16 eq_id; /* sword */
261 u16 rsvd0; /* sword */
262} __packed;
263
264/******************** Mac query ***************************/
265enum {
266 MAC_ADDRESS_TYPE_STORAGE = 0x0,
267 MAC_ADDRESS_TYPE_NETWORK = 0x1,
268 MAC_ADDRESS_TYPE_PD = 0x2,
269 MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
270};
271
272struct mac_addr {
273 u16 size_of_struct;
274 u8 addr[ETH_ALEN];
275} __packed;
276
277struct be_cmd_req_mac_query {
278 struct be_cmd_req_hdr hdr;
279 u8 type;
280 u8 permanent;
281 u16 if_id;
282} __packed;
283
284struct be_cmd_resp_mac_query {
285 struct be_cmd_resp_hdr hdr;
286 struct mac_addr mac;
287};
288
289/******************** PMac Add ***************************/
290struct be_cmd_req_pmac_add {
291 struct be_cmd_req_hdr hdr;
292 u32 if_id;
293 u8 mac_address[ETH_ALEN];
294 u8 rsvd0[2];
295} __packed;
296
297struct be_cmd_resp_pmac_add {
298 struct be_cmd_resp_hdr hdr;
299 u32 pmac_id;
300};
301
302/******************** PMac Del ***************************/
303struct be_cmd_req_pmac_del {
304 struct be_cmd_req_hdr hdr;
305 u32 if_id;
306 u32 pmac_id;
307};
308
309/******************** Create CQ ***************************/
310/* Pseudo amap definition in which each bit of the actual structure is defined
311 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000312struct amap_cq_context_be {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700313 u8 cidx[11]; /* dword 0*/
314 u8 rsvd0; /* dword 0*/
315 u8 coalescwm[2]; /* dword 0*/
316 u8 nodelay; /* dword 0*/
317 u8 epidx[11]; /* dword 0*/
318 u8 rsvd1; /* dword 0*/
319 u8 count[2]; /* dword 0*/
320 u8 valid; /* dword 0*/
321 u8 solevent; /* dword 0*/
322 u8 eventable; /* dword 0*/
323 u8 pidx[11]; /* dword 1*/
324 u8 rsvd2; /* dword 1*/
325 u8 pd[10]; /* dword 1*/
326 u8 eqid[8]; /* dword 1*/
327 u8 stalled; /* dword 1*/
328 u8 armed; /* dword 1*/
329 u8 rsvd3[4]; /* dword 2*/
330 u8 func[8]; /* dword 2*/
331 u8 rsvd4[20]; /* dword 2*/
332 u8 rsvd5[32]; /* dword 3*/
333} __packed;
334
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000335struct amap_cq_context_lancer {
336 u8 rsvd0[12]; /* dword 0*/
337 u8 coalescwm[2]; /* dword 0*/
338 u8 nodelay; /* dword 0*/
339 u8 rsvd1[12]; /* dword 0*/
340 u8 count[2]; /* dword 0*/
341 u8 valid; /* dword 0*/
342 u8 rsvd2; /* dword 0*/
343 u8 eventable; /* dword 0*/
344 u8 eqid[16]; /* dword 1*/
345 u8 rsvd3[15]; /* dword 1*/
346 u8 armed; /* dword 1*/
347 u8 rsvd4[32]; /* dword 2*/
348 u8 rsvd5[32]; /* dword 3*/
349} __packed;
350
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700351struct be_cmd_req_cq_create {
352 struct be_cmd_req_hdr hdr;
353 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000354 u8 page_size;
355 u8 rsvd0;
356 u8 context[sizeof(struct amap_cq_context_be) / 8];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700357 struct phys_addr pages[8];
358} __packed;
359
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000360
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700361struct be_cmd_resp_cq_create {
362 struct be_cmd_resp_hdr hdr;
363 u16 cq_id;
364 u16 rsvd0;
365} __packed;
366
Sathya Perla5fb379e2009-06-18 00:02:59 +0000367/******************** Create MCCQ ***************************/
368/* Pseudo amap definition in which each bit of the actual structure is defined
369 * as a byte: used to calculate offset/shift/mask of each field */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000370struct amap_mcc_context_be {
Sathya Perla5fb379e2009-06-18 00:02:59 +0000371 u8 con_index[14];
372 u8 rsvd0[2];
373 u8 ring_size[4];
374 u8 fetch_wrb;
375 u8 fetch_r2t;
376 u8 cq_id[10];
377 u8 prod_index[14];
378 u8 fid[8];
379 u8 pdid[9];
380 u8 valid;
381 u8 rsvd1[32];
382 u8 rsvd2[32];
383} __packed;
384
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000385struct amap_mcc_context_lancer {
386 u8 async_cq_id[16];
387 u8 ring_size[4];
388 u8 rsvd0[12];
389 u8 rsvd1[31];
390 u8 valid;
391 u8 async_cq_valid[1];
392 u8 rsvd2[31];
393 u8 rsvd3[32];
394} __packed;
395
Sathya Perla5fb379e2009-06-18 00:02:59 +0000396struct be_cmd_req_mcc_create {
397 struct be_cmd_req_hdr hdr;
398 u16 num_pages;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000399 u16 cq_id;
Somnath Koturcc4ce022010-10-21 07:11:14 -0700400 u32 async_event_bitmap[1];
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000401 u8 context[sizeof(struct amap_mcc_context_be) / 8];
Sathya Perla5fb379e2009-06-18 00:02:59 +0000402 struct phys_addr pages[8];
403} __packed;
404
405struct be_cmd_resp_mcc_create {
406 struct be_cmd_resp_hdr hdr;
407 u16 id;
408 u16 rsvd0;
409} __packed;
410
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700411/******************** Create TxQ ***************************/
412#define BE_ETH_TX_RING_TYPE_STANDARD 2
413#define BE_ULP1_NUM 1
414
415/* Pseudo amap definition in which each bit of the actual structure is defined
416 * as a byte: used to calculate offset/shift/mask of each field */
417struct amap_tx_context {
418 u8 rsvd0[16]; /* dword 0 */
419 u8 tx_ring_size[4]; /* dword 0 */
420 u8 rsvd1[26]; /* dword 0 */
421 u8 pci_func_id[8]; /* dword 1 */
422 u8 rsvd2[9]; /* dword 1 */
423 u8 ctx_valid; /* dword 1 */
424 u8 cq_id_send[16]; /* dword 2 */
425 u8 rsvd3[16]; /* dword 2 */
426 u8 rsvd4[32]; /* dword 3 */
427 u8 rsvd5[32]; /* dword 4 */
428 u8 rsvd6[32]; /* dword 5 */
429 u8 rsvd7[32]; /* dword 6 */
430 u8 rsvd8[32]; /* dword 7 */
431 u8 rsvd9[32]; /* dword 8 */
432 u8 rsvd10[32]; /* dword 9 */
433 u8 rsvd11[32]; /* dword 10 */
434 u8 rsvd12[32]; /* dword 11 */
435 u8 rsvd13[32]; /* dword 12 */
436 u8 rsvd14[32]; /* dword 13 */
437 u8 rsvd15[32]; /* dword 14 */
438 u8 rsvd16[32]; /* dword 15 */
439} __packed;
440
441struct be_cmd_req_eth_tx_create {
442 struct be_cmd_req_hdr hdr;
443 u8 num_pages;
444 u8 ulp_num;
445 u8 type;
446 u8 bound_port;
447 u8 context[sizeof(struct amap_tx_context) / 8];
448 struct phys_addr pages[8];
449} __packed;
450
451struct be_cmd_resp_eth_tx_create {
452 struct be_cmd_resp_hdr hdr;
453 u16 cid;
454 u16 rsvd0;
455} __packed;
456
457/******************** Create RxQ ***************************/
458struct be_cmd_req_eth_rx_create {
459 struct be_cmd_req_hdr hdr;
460 u16 cq_id;
461 u8 frag_size;
462 u8 num_pages;
463 struct phys_addr pages[2];
464 u32 interface_id;
465 u16 max_frame_size;
466 u16 rsvd0;
467 u32 rss_queue;
468} __packed;
469
470struct be_cmd_resp_eth_rx_create {
471 struct be_cmd_resp_hdr hdr;
472 u16 id;
Sathya Perla3abcded2010-10-03 22:12:27 -0700473 u8 rss_id;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700474 u8 rsvd0;
475} __packed;
476
477/******************** Q Destroy ***************************/
478/* Type of Queue to be destroyed */
479enum {
480 QTYPE_EQ = 1,
481 QTYPE_CQ,
482 QTYPE_TXQ,
Sathya Perla5fb379e2009-06-18 00:02:59 +0000483 QTYPE_RXQ,
484 QTYPE_MCCQ
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700485};
486
487struct be_cmd_req_q_destroy {
488 struct be_cmd_req_hdr hdr;
489 u16 id;
490 u16 bypass_flush; /* valid only for rx q destroy */
491} __packed;
492
493/************ I/f Create (it's actually I/f Config Create)**********/
494
495/* Capability flags for the i/f */
496enum be_if_flags {
497 BE_IF_FLAGS_RSS = 0x4,
498 BE_IF_FLAGS_PROMISCUOUS = 0x8,
499 BE_IF_FLAGS_BROADCAST = 0x10,
500 BE_IF_FLAGS_UNTAGGED = 0x20,
501 BE_IF_FLAGS_ULP = 0x40,
502 BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
503 BE_IF_FLAGS_VLAN = 0x100,
504 BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
505 BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
506 BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800
507};
508
509/* An RX interface is an object with one or more MAC addresses and
510 * filtering capabilities. */
511struct be_cmd_req_if_create {
512 struct be_cmd_req_hdr hdr;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200513 u32 version; /* ignore currently */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700514 u32 capability_flags;
515 u32 enable_flags;
516 u8 mac_addr[ETH_ALEN];
517 u8 rsvd0;
518 u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
519 u32 vlan_tag; /* not used currently */
520} __packed;
521
522struct be_cmd_resp_if_create {
523 struct be_cmd_resp_hdr hdr;
524 u32 interface_id;
525 u32 pmac_id;
526};
527
528/****** I/f Destroy(it's actually I/f Config Destroy )**********/
529struct be_cmd_req_if_destroy {
530 struct be_cmd_req_hdr hdr;
531 u32 interface_id;
532};
533
534/*************** HW Stats Get **********************************/
535struct be_port_rxf_stats {
536 u32 rx_bytes_lsd; /* dword 0*/
537 u32 rx_bytes_msd; /* dword 1*/
538 u32 rx_total_frames; /* dword 2*/
539 u32 rx_unicast_frames; /* dword 3*/
540 u32 rx_multicast_frames; /* dword 4*/
541 u32 rx_broadcast_frames; /* dword 5*/
542 u32 rx_crc_errors; /* dword 6*/
543 u32 rx_alignment_symbol_errors; /* dword 7*/
544 u32 rx_pause_frames; /* dword 8*/
545 u32 rx_control_frames; /* dword 9*/
546 u32 rx_in_range_errors; /* dword 10*/
547 u32 rx_out_range_errors; /* dword 11*/
548 u32 rx_frame_too_long; /* dword 12*/
549 u32 rx_address_match_errors; /* dword 13*/
550 u32 rx_vlan_mismatch; /* dword 14*/
551 u32 rx_dropped_too_small; /* dword 15*/
552 u32 rx_dropped_too_short; /* dword 16*/
553 u32 rx_dropped_header_too_small; /* dword 17*/
554 u32 rx_dropped_tcp_length; /* dword 18*/
555 u32 rx_dropped_runt; /* dword 19*/
556 u32 rx_64_byte_packets; /* dword 20*/
557 u32 rx_65_127_byte_packets; /* dword 21*/
558 u32 rx_128_256_byte_packets; /* dword 22*/
559 u32 rx_256_511_byte_packets; /* dword 23*/
560 u32 rx_512_1023_byte_packets; /* dword 24*/
561 u32 rx_1024_1518_byte_packets; /* dword 25*/
562 u32 rx_1519_2047_byte_packets; /* dword 26*/
563 u32 rx_2048_4095_byte_packets; /* dword 27*/
564 u32 rx_4096_8191_byte_packets; /* dword 28*/
565 u32 rx_8192_9216_byte_packets; /* dword 29*/
566 u32 rx_ip_checksum_errs; /* dword 30*/
567 u32 rx_tcp_checksum_errs; /* dword 31*/
568 u32 rx_udp_checksum_errs; /* dword 32*/
569 u32 rx_non_rss_packets; /* dword 33*/
570 u32 rx_ipv4_packets; /* dword 34*/
571 u32 rx_ipv6_packets; /* dword 35*/
572 u32 rx_ipv4_bytes_lsd; /* dword 36*/
573 u32 rx_ipv4_bytes_msd; /* dword 37*/
574 u32 rx_ipv6_bytes_lsd; /* dword 38*/
575 u32 rx_ipv6_bytes_msd; /* dword 39*/
576 u32 rx_chute1_packets; /* dword 40*/
577 u32 rx_chute2_packets; /* dword 41*/
578 u32 rx_chute3_packets; /* dword 42*/
579 u32 rx_management_packets; /* dword 43*/
580 u32 rx_switched_unicast_packets; /* dword 44*/
581 u32 rx_switched_multicast_packets; /* dword 45*/
582 u32 rx_switched_broadcast_packets; /* dword 46*/
583 u32 tx_bytes_lsd; /* dword 47*/
584 u32 tx_bytes_msd; /* dword 48*/
585 u32 tx_unicastframes; /* dword 49*/
586 u32 tx_multicastframes; /* dword 50*/
587 u32 tx_broadcastframes; /* dword 51*/
588 u32 tx_pauseframes; /* dword 52*/
589 u32 tx_controlframes; /* dword 53*/
590 u32 tx_64_byte_packets; /* dword 54*/
591 u32 tx_65_127_byte_packets; /* dword 55*/
592 u32 tx_128_256_byte_packets; /* dword 56*/
593 u32 tx_256_511_byte_packets; /* dword 57*/
594 u32 tx_512_1023_byte_packets; /* dword 58*/
595 u32 tx_1024_1518_byte_packets; /* dword 59*/
596 u32 tx_1519_2047_byte_packets; /* dword 60*/
597 u32 tx_2048_4095_byte_packets; /* dword 61*/
598 u32 tx_4096_8191_byte_packets; /* dword 62*/
599 u32 tx_8192_9216_byte_packets; /* dword 63*/
600 u32 rx_fifo_overflow; /* dword 64*/
601 u32 rx_input_fifo_overflow; /* dword 65*/
602};
603
604struct be_rxf_stats {
605 struct be_port_rxf_stats port[2];
606 u32 rx_drops_no_pbuf; /* dword 132*/
607 u32 rx_drops_no_txpb; /* dword 133*/
608 u32 rx_drops_no_erx_descr; /* dword 134*/
609 u32 rx_drops_no_tpre_descr; /* dword 135*/
610 u32 management_rx_port_packets; /* dword 136*/
611 u32 management_rx_port_bytes; /* dword 137*/
612 u32 management_rx_port_pause_frames; /* dword 138*/
613 u32 management_rx_port_errors; /* dword 139*/
614 u32 management_tx_port_packets; /* dword 140*/
615 u32 management_tx_port_bytes; /* dword 141*/
616 u32 management_tx_port_pause; /* dword 142*/
617 u32 management_rx_port_rxfifo_overflow; /* dword 143*/
618 u32 rx_drops_too_many_frags; /* dword 144*/
619 u32 rx_drops_invalid_ring; /* dword 145*/
620 u32 forwarded_packets; /* dword 146*/
621 u32 rx_drops_mtu; /* dword 147*/
622 u32 rsvd0[15];
623};
624
625struct be_erx_stats {
626 u32 rx_drops_no_fragments[44]; /* dwordS 0 to 43*/
627 u32 debug_wdma_sent_hold; /* dword 44*/
628 u32 debug_wdma_pbfree_sent_hold; /* dword 45*/
629 u32 debug_wdma_zerobyte_pbfree_sent_hold; /* dword 46*/
630 u32 debug_pmem_pbuf_dealloc; /* dword 47*/
631};
632
633struct be_hw_stats {
634 struct be_rxf_stats rxf;
635 u32 rsvd[48];
636 struct be_erx_stats erx;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000637 u32 rsvd1[6];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700638};
639
640struct be_cmd_req_get_stats {
641 struct be_cmd_req_hdr hdr;
642 u8 rsvd[sizeof(struct be_hw_stats)];
643};
644
645struct be_cmd_resp_get_stats {
646 struct be_cmd_resp_hdr hdr;
647 struct be_hw_stats hw_stats;
648};
649
650struct be_cmd_req_vlan_config {
651 struct be_cmd_req_hdr hdr;
652 u8 interface_id;
653 u8 promiscuous;
654 u8 untagged;
655 u8 num_vlan;
656 u16 normal_vlan[64];
657} __packed;
658
659struct be_cmd_req_promiscuous_config {
660 struct be_cmd_req_hdr hdr;
661 u8 port0_promiscuous;
662 u8 port1_promiscuous;
663 u16 rsvd0;
664} __packed;
665
Sathya Perlae7b909a2009-11-22 22:01:10 +0000666/******************** Multicast MAC Config *******************/
667#define BE_MAX_MC 64 /* set mcast promisc if > 64 */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700668struct macaddr {
669 u8 byte[ETH_ALEN];
670};
671
672struct be_cmd_req_mcast_mac_config {
673 struct be_cmd_req_hdr hdr;
674 u16 num_mac;
675 u8 promiscuous;
676 u8 interface_id;
Sathya Perlae7b909a2009-11-22 22:01:10 +0000677 struct macaddr mac[BE_MAX_MC];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700678} __packed;
679
680static inline struct be_hw_stats *
681hw_stats_from_cmd(struct be_cmd_resp_get_stats *cmd)
682{
683 return &cmd->hw_stats;
684}
685
686/******************** Link Status Query *******************/
687struct be_cmd_req_link_status {
688 struct be_cmd_req_hdr hdr;
689 u32 rsvd;
690};
691
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700692enum {
693 PHY_LINK_DUPLEX_NONE = 0x0,
694 PHY_LINK_DUPLEX_HALF = 0x1,
695 PHY_LINK_DUPLEX_FULL = 0x2
696};
697
698enum {
699 PHY_LINK_SPEED_ZERO = 0x0, /* => No link */
700 PHY_LINK_SPEED_10MBPS = 0x1,
701 PHY_LINK_SPEED_100MBPS = 0x2,
702 PHY_LINK_SPEED_1GBPS = 0x3,
703 PHY_LINK_SPEED_10GBPS = 0x4
704};
705
706struct be_cmd_resp_link_status {
707 struct be_cmd_resp_hdr hdr;
708 u8 physical_port;
709 u8 mac_duplex;
710 u8 mac_speed;
711 u8 mac_fault;
712 u8 mgmt_mac_duplex;
713 u8 mgmt_mac_speed;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700714 u16 link_speed;
715 u32 rsvd0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700716} __packed;
717
Sarveshwar Bandi0388f252009-10-28 04:15:20 -0700718/******************** Port Identification ***************************/
719/* Identifies the type of port attached to NIC */
720struct be_cmd_req_port_type {
721 struct be_cmd_req_hdr hdr;
722 u32 page_num;
723 u32 port;
724};
725
726enum {
727 TR_PAGE_A0 = 0xa0,
728 TR_PAGE_A2 = 0xa2
729};
730
731struct be_cmd_resp_port_type {
732 struct be_cmd_resp_hdr hdr;
733 u32 page_num;
734 u32 port;
735 struct data {
736 u8 identifier;
737 u8 identifier_ext;
738 u8 connector;
739 u8 transceiver[8];
740 u8 rsvd0[3];
741 u8 length_km;
742 u8 length_hm;
743 u8 length_om1;
744 u8 length_om2;
745 u8 length_cu;
746 u8 length_cu_m;
747 u8 vendor_name[16];
748 u8 rsvd;
749 u8 vendor_oui[3];
750 u8 vendor_pn[16];
751 u8 vendor_rev[4];
752 } data;
753};
754
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700755/******************** Get FW Version *******************/
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700756struct be_cmd_req_get_fw_version {
757 struct be_cmd_req_hdr hdr;
758 u8 rsvd0[FW_VER_LEN];
759 u8 rsvd1[FW_VER_LEN];
760} __packed;
761
762struct be_cmd_resp_get_fw_version {
763 struct be_cmd_resp_hdr hdr;
764 u8 firmware_version_string[FW_VER_LEN];
765 u8 fw_on_flash_version_string[FW_VER_LEN];
766} __packed;
767
768/******************** Set Flow Contrl *******************/
769struct be_cmd_req_set_flow_control {
770 struct be_cmd_req_hdr hdr;
771 u16 tx_flow_control;
772 u16 rx_flow_control;
773} __packed;
774
775/******************** Get Flow Contrl *******************/
776struct be_cmd_req_get_flow_control {
777 struct be_cmd_req_hdr hdr;
778 u32 rsvd;
779};
780
781struct be_cmd_resp_get_flow_control {
782 struct be_cmd_resp_hdr hdr;
783 u16 tx_flow_control;
784 u16 rx_flow_control;
785} __packed;
786
787/******************** Modify EQ Delay *******************/
788struct be_cmd_req_modify_eq_delay {
789 struct be_cmd_req_hdr hdr;
790 u32 num_eq;
791 struct {
792 u32 eq_id;
793 u32 phase;
794 u32 delay_multiplier;
795 } delay[8];
796} __packed;
797
798struct be_cmd_resp_modify_eq_delay {
799 struct be_cmd_resp_hdr hdr;
800 u32 rsvd0;
801} __packed;
802
803/******************** Get FW Config *******************/
Sathya Perla3abcded2010-10-03 22:12:27 -0700804#define BE_FUNCTION_CAPS_RSS 0x2
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700805struct be_cmd_req_query_fw_cfg {
806 struct be_cmd_req_hdr hdr;
Sathya Perla3abcded2010-10-03 22:12:27 -0700807 u32 rsvd[31];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700808};
809
810struct be_cmd_resp_query_fw_cfg {
811 struct be_cmd_resp_hdr hdr;
812 u32 be_config_number;
813 u32 asic_revision;
814 u32 phys_port;
Ajit Khaparde3486be22010-07-23 02:04:54 +0000815 u32 function_mode;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700816 u32 rsvd[26];
Sathya Perla3abcded2010-10-03 22:12:27 -0700817 u32 function_caps;
818};
819
820/******************** RSS Config *******************/
821/* RSS types */
822#define RSS_ENABLE_NONE 0x0
823#define RSS_ENABLE_IPV4 0x1
824#define RSS_ENABLE_TCP_IPV4 0x2
825#define RSS_ENABLE_IPV6 0x4
826#define RSS_ENABLE_TCP_IPV6 0x8
827
828struct be_cmd_req_rss_config {
829 struct be_cmd_req_hdr hdr;
830 u32 if_id;
831 u16 enable_rss;
832 u16 cpu_table_size_log2;
833 u32 hash[10];
834 u8 cpu_table[128];
835 u8 flush;
836 u8 rsvd0[3];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700837};
838
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -0700839/******************** Port Beacon ***************************/
840
841#define BEACON_STATE_ENABLED 0x1
842#define BEACON_STATE_DISABLED 0x0
843
844struct be_cmd_req_enable_disable_beacon {
845 struct be_cmd_req_hdr hdr;
846 u8 port_num;
847 u8 beacon_state;
848 u8 beacon_duration;
849 u8 status_duration;
850} __packed;
851
852struct be_cmd_resp_enable_disable_beacon {
853 struct be_cmd_resp_hdr resp_hdr;
854 u32 rsvd0;
855} __packed;
856
857struct be_cmd_req_get_beacon_state {
858 struct be_cmd_req_hdr hdr;
859 u8 port_num;
860 u8 rsvd0;
861 u16 rsvd1;
862} __packed;
863
864struct be_cmd_resp_get_beacon_state {
865 struct be_cmd_resp_hdr resp_hdr;
866 u8 beacon_state;
867 u8 rsvd0[3];
868} __packed;
869
Ajit Khaparde84517482009-09-04 03:12:16 +0000870/****************** Firmware Flash ******************/
871struct flashrom_params {
872 u32 op_code;
873 u32 op_type;
874 u32 data_buf_size;
875 u32 offset;
876 u8 data_buf[4];
877};
878
879struct be_cmd_write_flashrom {
880 struct be_cmd_req_hdr hdr;
881 struct flashrom_params params;
882};
883
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +0000884/************************ WOL *******************************/
885struct be_cmd_req_acpi_wol_magic_config{
886 struct be_cmd_req_hdr hdr;
887 u32 rsvd0[145];
888 u8 magic_mac[6];
889 u8 rsvd2[2];
890} __packed;
891
Suresh Rff33a6e2009-12-03 16:15:52 -0800892/********************** LoopBack test *********************/
893struct be_cmd_req_loopback_test {
894 struct be_cmd_req_hdr hdr;
895 u32 loopback_type;
896 u32 num_pkts;
897 u64 pattern;
898 u32 src_port;
899 u32 dest_port;
900 u32 pkt_size;
901};
902
903struct be_cmd_resp_loopback_test {
904 struct be_cmd_resp_hdr resp_hdr;
905 u32 status;
906 u32 num_txfer;
907 u32 num_rx;
908 u32 miscomp_off;
909 u32 ticks_compl;
910};
911
Sarveshwar Bandifced9992009-12-23 04:41:44 +0000912struct be_cmd_req_set_lmode {
913 struct be_cmd_req_hdr hdr;
914 u8 src_port;
915 u8 dest_port;
916 u8 loopback_type;
917 u8 loopback_state;
918};
919
920struct be_cmd_resp_set_lmode {
921 struct be_cmd_resp_hdr resp_hdr;
922 u8 rsvd0[4];
923};
924
Suresh Rff33a6e2009-12-03 16:15:52 -0800925/********************** DDR DMA test *********************/
926struct be_cmd_req_ddrdma_test {
927 struct be_cmd_req_hdr hdr;
928 u64 pattern;
929 u32 byte_count;
930 u32 rsvd0;
931 u8 snd_buff[4096];
932 u8 rsvd1[4096];
933};
934
935struct be_cmd_resp_ddrdma_test {
936 struct be_cmd_resp_hdr hdr;
937 u64 pattern;
938 u32 byte_cnt;
939 u32 snd_err;
940 u8 rsvd0[4096];
941 u8 rcv_buff[4096];
942};
943
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -0800944/*********************** SEEPROM Read ***********************/
945
946#define BE_READ_SEEPROM_LEN 1024
947struct be_cmd_req_seeprom_read {
948 struct be_cmd_req_hdr hdr;
949 u8 rsvd0[BE_READ_SEEPROM_LEN];
950};
951
952struct be_cmd_resp_seeprom_read {
953 struct be_cmd_req_hdr hdr;
954 u8 seeprom_data[BE_READ_SEEPROM_LEN];
955};
956
Ajit Khapardeee3cb622010-07-01 03:51:00 +0000957enum {
958 PHY_TYPE_CX4_10GB = 0,
959 PHY_TYPE_XFP_10GB,
960 PHY_TYPE_SFP_1GB,
961 PHY_TYPE_SFP_PLUS_10GB,
962 PHY_TYPE_KR_10GB,
963 PHY_TYPE_KX4_10GB,
964 PHY_TYPE_BASET_10GB,
965 PHY_TYPE_BASET_1GB,
966 PHY_TYPE_DISABLED = 255
967};
968
969struct be_cmd_req_get_phy_info {
970 struct be_cmd_req_hdr hdr;
971 u8 rsvd0[24];
972};
973struct be_cmd_resp_get_phy_info {
974 struct be_cmd_req_hdr hdr;
975 u16 phy_type;
976 u16 interface_type;
977 u32 misc_params;
978 u32 future_use[4];
979};
980
Ajit Khapardee1d18732010-07-23 01:52:13 +0000981/*********************** Set QOS ***********************/
982
983#define BE_QOS_BITS_NIC 1
984
985struct be_cmd_req_set_qos {
986 struct be_cmd_req_hdr hdr;
987 u32 valid_bits;
988 u32 max_bps_nic;
989 u32 rsvd[7];
990};
991
992struct be_cmd_resp_set_qos {
993 struct be_cmd_resp_hdr hdr;
994 u32 rsvd;
995};
996
Sathya Perla8788fdc2009-07-27 22:52:03 +0000997extern int be_pci_fnum_get(struct be_adapter *adapter);
998extern int be_cmd_POST(struct be_adapter *adapter);
999extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001000 u8 type, bool permanent, u32 if_handle);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001001extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
Ajit Khapardef8617e02011-02-11 13:36:37 +00001002 u32 if_id, u32 *pmac_id, u32 domain);
1003extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
1004 u32 pmac_id, u32 domain);
Sathya Perla73d540f2009-10-14 20:20:42 +00001005extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
1006 u32 en_flags, u8 *mac, bool pmac_invalid,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001007 u32 *if_handle, u32 *pmac_id, u32 domain);
Ajit Khaparde658681f2011-02-11 13:34:46 +00001008extern int be_cmd_if_destroy(struct be_adapter *adapter, u32 if_handle,
1009 u32 domain);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001010extern int be_cmd_eq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001011 struct be_queue_info *eq, int eq_delay);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001012extern int be_cmd_cq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001013 struct be_queue_info *cq, struct be_queue_info *eq,
1014 bool sol_evts, bool no_delay,
1015 int num_cqe_dma_coalesce);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001016extern int be_cmd_mccq_create(struct be_adapter *adapter,
Sathya Perla5fb379e2009-06-18 00:02:59 +00001017 struct be_queue_info *mccq,
1018 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001019extern int be_cmd_txq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001020 struct be_queue_info *txq,
1021 struct be_queue_info *cq);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001022extern int be_cmd_rxq_create(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001023 struct be_queue_info *rxq, u16 cq_id,
1024 u16 frag_size, u16 max_frame_size, u32 if_id,
Sathya Perla3abcded2010-10-03 22:12:27 -07001025 u32 rss, u8 *rss_id);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001026extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001027 int type);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001028extern int be_cmd_link_status_query(struct be_adapter *adapter,
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07001029 bool *link_up, u8 *mac_speed, u16 *link_speed);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001030extern int be_cmd_reset(struct be_adapter *adapter);
1031extern int be_cmd_get_stats(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001032 struct be_dma_mem *nonemb_cmd);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001033extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001034
Sathya Perla8788fdc2009-07-27 22:52:03 +00001035extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
1036extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001037 u16 *vtag_array, u32 num, bool untagged,
1038 bool promiscuous);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001039extern int be_cmd_promiscuous_config(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001040 u8 port_num, bool en);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001041extern int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id,
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001042 struct net_device *netdev, struct be_dma_mem *mem);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001043extern int be_cmd_set_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001044 u32 tx_fc, u32 rx_fc);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001045extern int be_cmd_get_flow_control(struct be_adapter *adapter,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001046 u32 *tx_fc, u32 *rx_fc);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001047extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001048 u32 *port_num, u32 *function_mode, u32 *function_caps);
sarveshwarb14074ea2009-08-05 13:05:24 -07001049extern int be_cmd_reset_function(struct be_adapter *adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07001050extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
1051 u16 table_size);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001052extern int be_process_mcc(struct be_adapter *adapter, int *status);
Sarveshwar Bandifad9ab22009-10-12 04:23:15 -07001053extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
1054 u8 port_num, u8 beacon, u8 status, u8 state);
1055extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
1056 u8 port_num, u32 *state);
Ajit Khaparde84517482009-09-04 03:12:16 +00001057extern int be_cmd_write_flashrom(struct be_adapter *adapter,
1058 struct be_dma_mem *cmd, u32 flash_oper,
1059 u32 flash_opcode, u32 buf_size);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00001060int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
1061 int offset);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00001062extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
1063 struct be_dma_mem *nonemb_cmd);
Sathya Perla2243e2e2009-11-22 22:02:03 +00001064extern int be_cmd_fw_init(struct be_adapter *adapter);
1065extern int be_cmd_fw_clean(struct be_adapter *adapter);
Sathya Perla7a1e9b22010-02-17 01:35:11 +00001066extern void be_async_mcc_enable(struct be_adapter *adapter);
1067extern void be_async_mcc_disable(struct be_adapter *adapter);
Suresh Rff33a6e2009-12-03 16:15:52 -08001068extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
1069 u32 loopback_type, u32 pkt_size,
1070 u32 num_pkts, u64 pattern);
1071extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
1072 u32 byte_cnt, struct be_dma_mem *cmd);
Sarveshwar Bandi368c0ca2010-01-08 00:07:27 -08001073extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
1074 struct be_dma_mem *nonemb_cmd);
Sarveshwar Bandifced9992009-12-23 04:41:44 +00001075extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
1076 u8 loopback_type, u8 enable);
Ajit Khapardeee3cb622010-07-01 03:51:00 +00001077extern int be_cmd_get_phy_info(struct be_adapter *adapter,
1078 struct be_dma_mem *cmd);
Ajit Khapardee1d18732010-07-23 01:52:13 +00001079extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
Ajit Khaparded053de92010-09-03 06:23:30 +00001080extern void be_detect_dump_ue(struct be_adapter *adapter);
David S. Millerd4a66e72010-01-10 22:55:03 -08001081