2 * Copyright (C) 2005 - 2010 ServerEngines
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.
10 * Contact Information:
11 * linux-drivers@serverengines.com
14 * 209 N. Fair Oaks Ave
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.
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 */
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 */
42 u8 embedded_payload
[236]; /* used by embedded cmds */
43 struct be_sge sgl
[19]; /* used by non-embedded cmds */
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)
52 /* Completion Status */
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 */
64 MCC_STATUS_DMA_FAILED
= 0x5,
65 MCC_STATUS_NOT_SUPPORTED
= 66
68 #define CQE_STATUS_COMPL_MASK 0xFFFF
69 #define CQE_STATUS_COMPL_SHIFT 0 /* bits 0 - 15 */
70 #define CQE_STATUS_EXTD_MASK 0xFFFF
71 #define CQE_STATUS_EXTD_SHIFT 16 /* bits 16 - 31 */
74 u32 status
; /* dword 0 */
75 u32 tag0
; /* dword 1 */
76 u32 tag1
; /* dword 2 */
77 u32 flags
; /* dword 3 */
80 /* When the async bit of mcc_compl is set, the last 4 bytes of
81 * mcc_compl is interpreted as follows:
83 #define ASYNC_TRAILER_EVENT_CODE_SHIFT 8 /* bits 8 - 15 */
84 #define ASYNC_TRAILER_EVENT_CODE_MASK 0xFF
85 #define ASYNC_TRAILER_EVENT_TYPE_SHIFT 16
86 #define ASYNC_TRAILER_EVENT_TYPE_MASK 0xFF
87 #define ASYNC_EVENT_CODE_LINK_STATE 0x1
88 #define ASYNC_EVENT_CODE_GRP_5 0x5
89 #define ASYNC_EVENT_QOS_SPEED 0x1
90 #define ASYNC_EVENT_COS_PRIORITY 0x2
91 struct be_async_event_trailer
{
96 ASYNC_EVENT_LINK_DOWN
= 0x0,
97 ASYNC_EVENT_LINK_UP
= 0x1
100 /* When the event code of an async trailer is link-state, the mcc_compl
101 * must be interpreted as follows
103 struct be_async_event_link_state
{
110 struct be_async_event_trailer trailer
;
113 /* 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
116 struct be_async_event_grp5_qos_link_speed
{
121 struct be_async_event_trailer trailer
;
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
127 struct be_async_event_grp5_cos_priority
{
129 u8 available_priority_bmap
;
130 u8 reco_default_priority
;
134 struct be_async_event_trailer trailer
;
137 struct be_mcc_mailbox
{
138 struct be_mcc_wrb wrb
;
139 struct be_mcc_compl
compl;
142 #define CMD_SUBSYSTEM_COMMON 0x1
143 #define CMD_SUBSYSTEM_ETH 0x3
144 #define CMD_SUBSYSTEM_LOWLEVEL 0xb
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
151 #define OPCODE_COMMON_READ_FLASHROM 6
152 #define OPCODE_COMMON_WRITE_FLASHROM 7
153 #define OPCODE_COMMON_CQ_CREATE 12
154 #define OPCODE_COMMON_EQ_CREATE 13
155 #define OPCODE_COMMON_MCC_CREATE 21
156 #define OPCODE_COMMON_SET_QOS 28
157 #define OPCODE_COMMON_MCC_CREATE_EXT 90
158 #define OPCODE_COMMON_SEEPROM_READ 30
159 #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
168 #define OPCODE_COMMON_MCC_DESTROY 53
169 #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
174 #define OPCODE_COMMON_FUNCTION_RESET 61
175 #define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
176 #define OPCODE_COMMON_GET_BEACON_STATE 70
177 #define OPCODE_COMMON_READ_TRANSRECV_DATA 73
178 #define OPCODE_COMMON_GET_PHY_DETAILS 102
180 #define OPCODE_ETH_RSS_CONFIG 1
181 #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
188 #define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
190 #define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
191 #define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
192 #define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
194 struct 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 */
201 u8 version
; /* dword 3 */
202 u8 rsvd
[3]; /* dword 3 */
205 #define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
206 #define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
207 struct 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 */
219 /**************************
220 * BE Command definitions *
221 **************************/
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 */
225 struct 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*/
250 struct 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];
258 struct be_cmd_resp_eq_create
{
259 struct be_cmd_resp_hdr resp_hdr
;
260 u16 eq_id
; /* sword */
261 u16 rsvd0
; /* sword */
264 /******************** Mac query ***************************/
266 MAC_ADDRESS_TYPE_STORAGE
= 0x0,
267 MAC_ADDRESS_TYPE_NETWORK
= 0x1,
268 MAC_ADDRESS_TYPE_PD
= 0x2,
269 MAC_ADDRESS_TYPE_MANAGEMENT
= 0x3
277 struct be_cmd_req_mac_query
{
278 struct be_cmd_req_hdr hdr
;
284 struct be_cmd_resp_mac_query
{
285 struct be_cmd_resp_hdr hdr
;
289 /******************** PMac Add ***************************/
290 struct be_cmd_req_pmac_add
{
291 struct be_cmd_req_hdr hdr
;
293 u8 mac_address
[ETH_ALEN
];
297 struct be_cmd_resp_pmac_add
{
298 struct be_cmd_resp_hdr hdr
;
302 /******************** PMac Del ***************************/
303 struct be_cmd_req_pmac_del
{
304 struct be_cmd_req_hdr hdr
;
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 */
312 struct amap_cq_context_be
{
313 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*/
335 struct 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*/
351 struct be_cmd_req_cq_create
{
352 struct be_cmd_req_hdr hdr
;
356 u8 context
[sizeof(struct amap_cq_context_be
) / 8];
357 struct phys_addr pages
[8];
361 struct be_cmd_resp_cq_create
{
362 struct be_cmd_resp_hdr hdr
;
367 /******************** 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 */
370 struct amap_mcc_context_be
{
385 struct amap_mcc_context_lancer
{
391 u8 async_cq_valid
[1];
396 struct be_cmd_req_mcc_create
{
397 struct be_cmd_req_hdr hdr
;
400 u32 async_event_bitmap
[1];
401 u8 context
[sizeof(struct amap_mcc_context_be
) / 8];
402 struct phys_addr pages
[8];
405 struct be_cmd_resp_mcc_create
{
406 struct be_cmd_resp_hdr hdr
;
411 /******************** Create TxQ ***************************/
412 #define BE_ETH_TX_RING_TYPE_STANDARD 2
413 #define BE_ULP1_NUM 1
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 */
417 struct 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 */
441 struct be_cmd_req_eth_tx_create
{
442 struct be_cmd_req_hdr hdr
;
447 u8 context
[sizeof(struct amap_tx_context
) / 8];
448 struct phys_addr pages
[8];
451 struct be_cmd_resp_eth_tx_create
{
452 struct be_cmd_resp_hdr hdr
;
457 /******************** Create RxQ ***************************/
458 struct be_cmd_req_eth_rx_create
{
459 struct be_cmd_req_hdr hdr
;
463 struct phys_addr pages
[2];
470 struct be_cmd_resp_eth_rx_create
{
471 struct be_cmd_resp_hdr hdr
;
477 /******************** Q Destroy ***************************/
478 /* Type of Queue to be destroyed */
487 struct be_cmd_req_q_destroy
{
488 struct be_cmd_req_hdr hdr
;
490 u16 bypass_flush
; /* valid only for rx q destroy */
493 /************ I/f Create (it's actually I/f Config Create)**********/
495 /* Capability flags for the i/f */
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
509 /* An RX interface is an object with one or more MAC addresses and
510 * filtering capabilities. */
511 struct be_cmd_req_if_create
{
512 struct be_cmd_req_hdr hdr
;
513 u32 version
; /* ignore currently */
514 u32 capability_flags
;
516 u8 mac_addr
[ETH_ALEN
];
518 u8 pmac_invalid
; /* if set, don't attach the mac addr to the i/f */
519 u32 vlan_tag
; /* not used currently */
522 struct be_cmd_resp_if_create
{
523 struct be_cmd_resp_hdr hdr
;
528 /****** I/f Destroy(it's actually I/f Config Destroy )**********/
529 struct be_cmd_req_if_destroy
{
530 struct be_cmd_req_hdr hdr
;
534 /*************** HW Stats Get **********************************/
535 struct 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*/
604 struct 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*/
625 struct 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*/
634 struct be_rxf_stats rxf
;
636 struct be_erx_stats erx
;
640 struct be_cmd_req_get_stats
{
641 struct be_cmd_req_hdr hdr
;
642 u8 rsvd
[sizeof(struct be_hw_stats
)];
645 struct be_cmd_resp_get_stats
{
646 struct be_cmd_resp_hdr hdr
;
647 struct be_hw_stats hw_stats
;
650 struct be_cmd_req_vlan_config
{
651 struct be_cmd_req_hdr hdr
;
659 struct be_cmd_req_promiscuous_config
{
660 struct be_cmd_req_hdr hdr
;
661 u8 port0_promiscuous
;
662 u8 port1_promiscuous
;
666 /******************** Multicast MAC Config *******************/
667 #define BE_MAX_MC 64 /* set mcast promisc if > 64 */
672 struct be_cmd_req_mcast_mac_config
{
673 struct be_cmd_req_hdr hdr
;
677 struct macaddr mac
[BE_MAX_MC
];
680 static inline struct be_hw_stats
*
681 hw_stats_from_cmd(struct be_cmd_resp_get_stats
*cmd
)
683 return &cmd
->hw_stats
;
686 /******************** Link Status Query *******************/
687 struct be_cmd_req_link_status
{
688 struct be_cmd_req_hdr hdr
;
693 PHY_LINK_DUPLEX_NONE
= 0x0,
694 PHY_LINK_DUPLEX_HALF
= 0x1,
695 PHY_LINK_DUPLEX_FULL
= 0x2
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
706 struct be_cmd_resp_link_status
{
707 struct be_cmd_resp_hdr hdr
;
718 /******************** Port Identification ***************************/
719 /* Identifies the type of port attached to NIC */
720 struct be_cmd_req_port_type
{
721 struct be_cmd_req_hdr hdr
;
731 struct be_cmd_resp_port_type
{
732 struct be_cmd_resp_hdr hdr
;
755 /******************** Get FW Version *******************/
756 struct 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
];
762 struct 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
];
768 /******************** Set Flow Contrl *******************/
769 struct be_cmd_req_set_flow_control
{
770 struct be_cmd_req_hdr hdr
;
775 /******************** Get Flow Contrl *******************/
776 struct be_cmd_req_get_flow_control
{
777 struct be_cmd_req_hdr hdr
;
781 struct be_cmd_resp_get_flow_control
{
782 struct be_cmd_resp_hdr hdr
;
787 /******************** Modify EQ Delay *******************/
788 struct be_cmd_req_modify_eq_delay
{
789 struct be_cmd_req_hdr hdr
;
794 u32 delay_multiplier
;
798 struct be_cmd_resp_modify_eq_delay
{
799 struct be_cmd_resp_hdr hdr
;
803 /******************** Get FW Config *******************/
804 #define BE_FUNCTION_CAPS_RSS 0x2
805 struct be_cmd_req_query_fw_cfg
{
806 struct be_cmd_req_hdr hdr
;
810 struct be_cmd_resp_query_fw_cfg
{
811 struct be_cmd_resp_hdr hdr
;
812 u32 be_config_number
;
820 /******************** RSS Config *******************/
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
828 struct be_cmd_req_rss_config
{
829 struct be_cmd_req_hdr hdr
;
832 u16 cpu_table_size_log2
;
839 /******************** Port Beacon ***************************/
841 #define BEACON_STATE_ENABLED 0x1
842 #define BEACON_STATE_DISABLED 0x0
844 struct be_cmd_req_enable_disable_beacon
{
845 struct be_cmd_req_hdr hdr
;
852 struct be_cmd_resp_enable_disable_beacon
{
853 struct be_cmd_resp_hdr resp_hdr
;
857 struct be_cmd_req_get_beacon_state
{
858 struct be_cmd_req_hdr hdr
;
864 struct be_cmd_resp_get_beacon_state
{
865 struct be_cmd_resp_hdr resp_hdr
;
870 /****************** Firmware Flash ******************/
871 struct flashrom_params
{
879 struct be_cmd_write_flashrom
{
880 struct be_cmd_req_hdr hdr
;
881 struct flashrom_params params
;
884 /************************ WOL *******************************/
885 struct be_cmd_req_acpi_wol_magic_config
{
886 struct be_cmd_req_hdr hdr
;
892 /********************** LoopBack test *********************/
893 struct be_cmd_req_loopback_test
{
894 struct be_cmd_req_hdr hdr
;
903 struct be_cmd_resp_loopback_test
{
904 struct be_cmd_resp_hdr resp_hdr
;
912 struct be_cmd_req_set_lmode
{
913 struct be_cmd_req_hdr hdr
;
920 struct be_cmd_resp_set_lmode
{
921 struct be_cmd_resp_hdr resp_hdr
;
925 /********************** DDR DMA test *********************/
926 struct be_cmd_req_ddrdma_test
{
927 struct be_cmd_req_hdr hdr
;
935 struct be_cmd_resp_ddrdma_test
{
936 struct be_cmd_resp_hdr hdr
;
944 /*********************** SEEPROM Read ***********************/
946 #define BE_READ_SEEPROM_LEN 1024
947 struct be_cmd_req_seeprom_read
{
948 struct be_cmd_req_hdr hdr
;
949 u8 rsvd0
[BE_READ_SEEPROM_LEN
];
952 struct be_cmd_resp_seeprom_read
{
953 struct be_cmd_req_hdr hdr
;
954 u8 seeprom_data
[BE_READ_SEEPROM_LEN
];
958 PHY_TYPE_CX4_10GB
= 0,
961 PHY_TYPE_SFP_PLUS_10GB
,
966 PHY_TYPE_DISABLED
= 255
969 struct be_cmd_req_get_phy_info
{
970 struct be_cmd_req_hdr hdr
;
973 struct be_cmd_resp_get_phy_info
{
974 struct be_cmd_req_hdr hdr
;
981 /*********************** Set QOS ***********************/
983 #define BE_QOS_BITS_NIC 1
985 struct be_cmd_req_set_qos
{
986 struct be_cmd_req_hdr hdr
;
992 struct be_cmd_resp_set_qos
{
993 struct be_cmd_resp_hdr hdr
;
997 extern int be_pci_fnum_get(struct be_adapter
*adapter
);
998 extern int be_cmd_POST(struct be_adapter
*adapter
);
999 extern int be_cmd_mac_addr_query(struct be_adapter
*adapter
, u8
*mac_addr
,
1000 u8 type
, bool permanent
, u32 if_handle
);
1001 extern int be_cmd_pmac_add(struct be_adapter
*adapter
, u8
*mac_addr
,
1002 u32 if_id
, u32
*pmac_id
);
1003 extern int be_cmd_pmac_del(struct be_adapter
*adapter
, u32 if_id
, u32 pmac_id
);
1004 extern int be_cmd_if_create(struct be_adapter
*adapter
, u32 cap_flags
,
1005 u32 en_flags
, u8
*mac
, bool pmac_invalid
,
1006 u32
*if_handle
, u32
*pmac_id
, u32 domain
);
1007 extern int be_cmd_if_destroy(struct be_adapter
*adapter
, u32 if_handle
);
1008 extern int be_cmd_eq_create(struct be_adapter
*adapter
,
1009 struct be_queue_info
*eq
, int eq_delay
);
1010 extern int be_cmd_cq_create(struct be_adapter
*adapter
,
1011 struct be_queue_info
*cq
, struct be_queue_info
*eq
,
1012 bool sol_evts
, bool no_delay
,
1013 int num_cqe_dma_coalesce
);
1014 extern int be_cmd_mccq_create(struct be_adapter
*adapter
,
1015 struct be_queue_info
*mccq
,
1016 struct be_queue_info
*cq
);
1017 extern int be_cmd_txq_create(struct be_adapter
*adapter
,
1018 struct be_queue_info
*txq
,
1019 struct be_queue_info
*cq
);
1020 extern int be_cmd_rxq_create(struct be_adapter
*adapter
,
1021 struct be_queue_info
*rxq
, u16 cq_id
,
1022 u16 frag_size
, u16 max_frame_size
, u32 if_id
,
1023 u32 rss
, u8
*rss_id
);
1024 extern int be_cmd_q_destroy(struct be_adapter
*adapter
, struct be_queue_info
*q
,
1026 extern int be_cmd_link_status_query(struct be_adapter
*adapter
,
1027 bool *link_up
, u8
*mac_speed
, u16
*link_speed
);
1028 extern int be_cmd_reset(struct be_adapter
*adapter
);
1029 extern int be_cmd_get_stats(struct be_adapter
*adapter
,
1030 struct be_dma_mem
*nonemb_cmd
);
1031 extern int be_cmd_get_fw_ver(struct be_adapter
*adapter
, char *fw_ver
);
1033 extern int be_cmd_modify_eqd(struct be_adapter
*adapter
, u32 eq_id
, u32 eqd
);
1034 extern int be_cmd_vlan_config(struct be_adapter
*adapter
, u32 if_id
,
1035 u16
*vtag_array
, u32 num
, bool untagged
,
1037 extern int be_cmd_promiscuous_config(struct be_adapter
*adapter
,
1038 u8 port_num
, bool en
);
1039 extern int be_cmd_multicast_set(struct be_adapter
*adapter
, u32 if_id
,
1040 struct net_device
*netdev
, struct be_dma_mem
*mem
);
1041 extern int be_cmd_set_flow_control(struct be_adapter
*adapter
,
1042 u32 tx_fc
, u32 rx_fc
);
1043 extern int be_cmd_get_flow_control(struct be_adapter
*adapter
,
1044 u32
*tx_fc
, u32
*rx_fc
);
1045 extern int be_cmd_query_fw_cfg(struct be_adapter
*adapter
,
1046 u32
*port_num
, u32
*function_mode
, u32
*function_caps
);
1047 extern int be_cmd_reset_function(struct be_adapter
*adapter
);
1048 extern int be_cmd_rss_config(struct be_adapter
*adapter
, u8
*rsstable
,
1050 extern int be_process_mcc(struct be_adapter
*adapter
, int *status
);
1051 extern int be_cmd_set_beacon_state(struct be_adapter
*adapter
,
1052 u8 port_num
, u8 beacon
, u8 status
, u8 state
);
1053 extern int be_cmd_get_beacon_state(struct be_adapter
*adapter
,
1054 u8 port_num
, u32
*state
);
1055 extern int be_cmd_write_flashrom(struct be_adapter
*adapter
,
1056 struct be_dma_mem
*cmd
, u32 flash_oper
,
1057 u32 flash_opcode
, u32 buf_size
);
1058 int be_cmd_get_flash_crc(struct be_adapter
*adapter
, u8
*flashed_crc
,
1060 extern int be_cmd_enable_magic_wol(struct be_adapter
*adapter
, u8
*mac
,
1061 struct be_dma_mem
*nonemb_cmd
);
1062 extern int be_cmd_fw_init(struct be_adapter
*adapter
);
1063 extern int be_cmd_fw_clean(struct be_adapter
*adapter
);
1064 extern void be_async_mcc_enable(struct be_adapter
*adapter
);
1065 extern void be_async_mcc_disable(struct be_adapter
*adapter
);
1066 extern int be_cmd_loopback_test(struct be_adapter
*adapter
, u32 port_num
,
1067 u32 loopback_type
, u32 pkt_size
,
1068 u32 num_pkts
, u64 pattern
);
1069 extern int be_cmd_ddr_dma_test(struct be_adapter
*adapter
, u64 pattern
,
1070 u32 byte_cnt
, struct be_dma_mem
*cmd
);
1071 extern int be_cmd_get_seeprom_data(struct be_adapter
*adapter
,
1072 struct be_dma_mem
*nonemb_cmd
);
1073 extern int be_cmd_set_loopback(struct be_adapter
*adapter
, u8 port_num
,
1074 u8 loopback_type
, u8 enable
);
1075 extern int be_cmd_get_phy_info(struct be_adapter
*adapter
,
1076 struct be_dma_mem
*cmd
);
1077 extern int be_cmd_set_qos(struct be_adapter
*adapter
, u32 bps
, u32 domain
);
1078 extern void be_detect_dump_ue(struct be_adapter
*adapter
);