1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2005 - 2016 Broadcom
7 * linux-drivers@emulex.com
11 * Costa Mesa, CA 92626
15 * The driver sends configuration and managements command requests to the
16 * firmware in the BE. These requests are communicated to the processor
17 * using Work Request Blocks (WRBs) submitted to the MCC-WRB ring or via one
18 * WRB inside a MAILBOX.
19 * The commands are serviced by the ARM processor in the BladeEngine's MPU.
28 #define MCC_WRB_EMBEDDED_MASK 1 /* bit 0 of dword 0*/
29 #define MCC_WRB_SGE_CNT_SHIFT 3 /* bits 3 - 7 of dword 0 */
30 #define MCC_WRB_SGE_CNT_MASK 0x1F /* bits 3 - 7 of dword 0 */
32 u32 embedded
; /* dword 0 */
33 u32 payload_length
; /* dword 1 */
34 u32 tag0
; /* dword 2 */
35 u32 tag1
; /* dword 3 */
36 u32 rsvd
; /* dword 4 */
38 u8 embedded_payload
[236]; /* used by embedded cmds */
39 struct be_sge sgl
[19]; /* used by non-embedded cmds */
43 #define CQE_FLAGS_VALID_MASK BIT(31)
44 #define CQE_FLAGS_ASYNC_MASK BIT(30)
45 #define CQE_FLAGS_COMPLETED_MASK BIT(28)
46 #define CQE_FLAGS_CONSUMED_MASK BIT(27)
48 /* Completion Status */
49 enum mcc_base_status
{
50 MCC_STATUS_SUCCESS
= 0,
51 MCC_STATUS_FAILED
= 1,
52 MCC_STATUS_ILLEGAL_REQUEST
= 2,
53 MCC_STATUS_ILLEGAL_FIELD
= 3,
54 MCC_STATUS_INSUFFICIENT_BUFFER
= 4,
55 MCC_STATUS_UNAUTHORIZED_REQUEST
= 5,
56 MCC_STATUS_NOT_SUPPORTED
= 66,
57 MCC_STATUS_FEATURE_NOT_SUPPORTED
= 68,
58 MCC_STATUS_INVALID_LENGTH
= 116
61 /* Additional status */
62 enum mcc_addl_status
{
63 MCC_ADDL_STATUS_INSUFFICIENT_RESOURCES
= 0x16,
64 MCC_ADDL_STATUS_FLASH_IMAGE_CRC_MISMATCH
= 0x4d,
65 MCC_ADDL_STATUS_TOO_MANY_INTERFACES
= 0x4a,
66 MCC_ADDL_STATUS_INSUFFICIENT_VLANS
= 0xab,
67 MCC_ADDL_STATUS_INVALID_SIGNATURE
= 0x56,
68 MCC_ADDL_STATUS_MISSING_SIGNATURE
= 0x57,
69 MCC_ADDL_STATUS_INSUFFICIENT_PRIVILEGES
= 0x60
72 #define CQE_BASE_STATUS_MASK 0xFFFF
73 #define CQE_BASE_STATUS_SHIFT 0 /* bits 0 - 15 */
74 #define CQE_ADDL_STATUS_MASK 0xFF
75 #define CQE_ADDL_STATUS_SHIFT 16 /* bits 16 - 31 */
77 #define base_status(status) \
78 ((enum mcc_base_status) \
79 (status > 0 ? (status & CQE_BASE_STATUS_MASK) : 0))
80 #define addl_status(status) \
81 ((enum mcc_addl_status) \
82 (status > 0 ? (status >> CQE_ADDL_STATUS_SHIFT) & \
83 CQE_ADDL_STATUS_MASK : 0))
86 u32 status
; /* dword 0 */
87 u32 tag0
; /* dword 1 */
88 u32 tag1
; /* dword 2 */
89 u32 flags
; /* dword 3 */
92 /* When the async bit of mcc_compl flags is set, flags
93 * is interpreted as follows:
95 #define ASYNC_EVENT_CODE_SHIFT 8 /* bits 8 - 15 */
96 #define ASYNC_EVENT_CODE_MASK 0xFF
97 #define ASYNC_EVENT_TYPE_SHIFT 16
98 #define ASYNC_EVENT_TYPE_MASK 0xFF
99 #define ASYNC_EVENT_CODE_LINK_STATE 0x1
100 #define ASYNC_EVENT_CODE_GRP_5 0x5
101 #define ASYNC_EVENT_QOS_SPEED 0x1
102 #define ASYNC_EVENT_COS_PRIORITY 0x2
103 #define ASYNC_EVENT_PVID_STATE 0x3
104 #define ASYNC_EVENT_CODE_QNQ 0x6
105 #define ASYNC_DEBUG_EVENT_TYPE_QNQ 1
106 #define ASYNC_EVENT_CODE_SLIPORT 0x11
107 #define ASYNC_EVENT_PORT_MISCONFIG 0x9
108 #define ASYNC_EVENT_FW_CONTROL 0x5
114 #define LINK_STATUS_MASK 0x1
115 #define LOGICAL_LINK_STATUS_MASK 0x2
117 /* When the event code of compl->flags is link-state, the mcc_compl
118 * must be interpreted as follows
120 struct be_async_event_link_state
{
130 /* When the event code of compl->flags is GRP-5 and event_type is QOS_SPEED
131 * the mcc_compl must be interpreted as follows
133 struct be_async_event_grp5_qos_link_speed
{
141 /* When the event code of compl->flags is GRP5 and event type is
142 * CoS-Priority, the mcc_compl must be interpreted as follows
144 struct be_async_event_grp5_cos_priority
{
146 u8 available_priority_bmap
;
147 u8 reco_default_priority
;
154 /* When the event code of compl->flags is GRP5 and event type is
155 * PVID state, the mcc_compl must be interpreted as follows
157 struct be_async_event_grp5_pvid_state
{
166 /* async event indicating outer VLAN tag in QnQ */
167 struct be_async_event_qnq
{
168 u8 valid
; /* Indicates if outer VLAN is valid */
177 BE_PHY_FUNCTIONAL
= 0,
178 BE_PHY_NOT_PRESENT
= 1,
179 BE_PHY_DIFF_MEDIA
= 2,
180 BE_PHY_INCOMPATIBLE
= 3,
181 BE_PHY_UNQUALIFIED
= 4,
182 BE_PHY_UNCERTIFIED
= 5
185 #define PHY_STATE_MSG_SEVERITY 0x6
186 #define PHY_STATE_OPER 0x1
187 #define PHY_STATE_INFO_VALID 0x80
188 #define PHY_STATE_OPER_MSG_NONE 0x2
189 #define DEFAULT_MSG_SEVERITY 0x1
191 #define be_phy_state_unknown(phy_state) (phy_state > BE_PHY_UNCERTIFIED)
192 #define be_phy_unqualified(phy_state) \
193 (phy_state == BE_PHY_UNQUALIFIED || \
194 phy_state == BE_PHY_UNCERTIFIED)
195 #define be_phy_misconfigured(phy_state) \
196 (phy_state == BE_PHY_INCOMPATIBLE || \
197 phy_state == BE_PHY_UNQUALIFIED || \
198 phy_state == BE_PHY_UNCERTIFIED)
200 extern const char * const be_misconfig_evt_port_state
[];
202 /* async event indicating misconfigured port */
203 struct be_async_event_misconfig_port
{
205 * phy state of port 0: bits 7 - 0
206 * phy state of port 1: bits 15 - 8
207 * phy state of port 2: bits 23 - 16
208 * phy state of port 3: bits 31 - 24
210 u32 event_data_word1
;
212 * phy state info of port 0: bits 7 - 0
213 * phy state info of port 1: bits 15 - 8
214 * phy state info of port 2: bits 23 - 16
215 * phy state info of port 3: bits 31 - 24
218 * Link operability :bit 0
219 * Message severity :bit 2 - 1
221 * phy state info valid :bit 7
223 u32 event_data_word2
;
228 #define BMC_FILT_BROADCAST_ARP BIT(0)
229 #define BMC_FILT_BROADCAST_DHCP_CLIENT BIT(1)
230 #define BMC_FILT_BROADCAST_DHCP_SERVER BIT(2)
231 #define BMC_FILT_BROADCAST_NET_BIOS BIT(3)
232 #define BMC_FILT_BROADCAST BIT(7)
233 #define BMC_FILT_MULTICAST_IPV6_NEIGH_ADVER BIT(8)
234 #define BMC_FILT_MULTICAST_IPV6_RA BIT(9)
235 #define BMC_FILT_MULTICAST_IPV6_RAS BIT(10)
236 #define BMC_FILT_MULTICAST BIT(15)
237 struct be_async_fw_control
{
238 u32 event_data_word1
;
239 u32 event_data_word2
;
241 u32 event_data_word4
;
244 struct be_mcc_mailbox
{
245 struct be_mcc_wrb wrb
;
246 struct be_mcc_compl
compl;
249 #define CMD_SUBSYSTEM_COMMON 0x1
250 #define CMD_SUBSYSTEM_ETH 0x3
251 #define CMD_SUBSYSTEM_LOWLEVEL 0xb
253 #define OPCODE_COMMON_NTWK_MAC_QUERY 1
254 #define OPCODE_COMMON_NTWK_MAC_SET 2
255 #define OPCODE_COMMON_NTWK_MULTICAST_SET 3
256 #define OPCODE_COMMON_NTWK_VLAN_CONFIG 4
257 #define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY 5
258 #define OPCODE_COMMON_READ_FLASHROM 6
259 #define OPCODE_COMMON_WRITE_FLASHROM 7
260 #define OPCODE_COMMON_CQ_CREATE 12
261 #define OPCODE_COMMON_EQ_CREATE 13
262 #define OPCODE_COMMON_MCC_CREATE 21
263 #define OPCODE_COMMON_SET_QOS 28
264 #define OPCODE_COMMON_MCC_CREATE_EXT 90
265 #define OPCODE_COMMON_SEEPROM_READ 30
266 #define OPCODE_COMMON_GET_CNTL_ATTRIBUTES 32
267 #define OPCODE_COMMON_NTWK_RX_FILTER 34
268 #define OPCODE_COMMON_GET_FW_VERSION 35
269 #define OPCODE_COMMON_SET_FLOW_CONTROL 36
270 #define OPCODE_COMMON_GET_FLOW_CONTROL 37
271 #define OPCODE_COMMON_SET_FRAME_SIZE 39
272 #define OPCODE_COMMON_MODIFY_EQ_DELAY 41
273 #define OPCODE_COMMON_FIRMWARE_CONFIG 42
274 #define OPCODE_COMMON_NTWK_INTERFACE_CREATE 50
275 #define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 51
276 #define OPCODE_COMMON_MCC_DESTROY 53
277 #define OPCODE_COMMON_CQ_DESTROY 54
278 #define OPCODE_COMMON_EQ_DESTROY 55
279 #define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG 58
280 #define OPCODE_COMMON_NTWK_PMAC_ADD 59
281 #define OPCODE_COMMON_NTWK_PMAC_DEL 60
282 #define OPCODE_COMMON_FUNCTION_RESET 61
283 #define OPCODE_COMMON_MANAGE_FAT 68
284 #define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
285 #define OPCODE_COMMON_GET_BEACON_STATE 70
286 #define OPCODE_COMMON_READ_TRANSRECV_DATA 73
287 #define OPCODE_COMMON_GET_PORT_NAME 77
288 #define OPCODE_COMMON_SET_LOGICAL_LINK_CONFIG 80
289 #define OPCODE_COMMON_SET_INTERRUPT_ENABLE 89
290 #define OPCODE_COMMON_SET_FN_PRIVILEGES 100
291 #define OPCODE_COMMON_GET_PHY_DETAILS 102
292 #define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP 103
293 #define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES 121
294 #define OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES 125
295 #define OPCODE_COMMON_SET_EXT_FAT_CAPABILITIES 126
296 #define OPCODE_COMMON_GET_MAC_LIST 147
297 #define OPCODE_COMMON_SET_MAC_LIST 148
298 #define OPCODE_COMMON_GET_HSW_CONFIG 152
299 #define OPCODE_COMMON_GET_FUNC_CONFIG 160
300 #define OPCODE_COMMON_GET_PROFILE_CONFIG 164
301 #define OPCODE_COMMON_SET_PROFILE_CONFIG 165
302 #define OPCODE_COMMON_GET_ACTIVE_PROFILE 167
303 #define OPCODE_COMMON_SET_HSW_CONFIG 153
304 #define OPCODE_COMMON_GET_FN_PRIVILEGES 170
305 #define OPCODE_COMMON_READ_OBJECT 171
306 #define OPCODE_COMMON_WRITE_OBJECT 172
307 #define OPCODE_COMMON_DELETE_OBJECT 174
308 #define OPCODE_COMMON_SET_FEATURES 191
309 #define OPCODE_COMMON_MANAGE_IFACE_FILTERS 193
310 #define OPCODE_COMMON_GET_IFACE_LIST 194
311 #define OPCODE_COMMON_ENABLE_DISABLE_VF 196
313 #define OPCODE_ETH_RSS_CONFIG 1
314 #define OPCODE_ETH_ACPI_CONFIG 2
315 #define OPCODE_ETH_PROMISCUOUS 3
316 #define OPCODE_ETH_GET_STATISTICS 4
317 #define OPCODE_ETH_TX_CREATE 7
318 #define OPCODE_ETH_RX_CREATE 8
319 #define OPCODE_ETH_TX_DESTROY 9
320 #define OPCODE_ETH_RX_DESTROY 10
321 #define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
322 #define OPCODE_ETH_GET_PPORT_STATS 18
324 #define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
325 #define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
326 #define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
328 struct be_cmd_req_hdr
{
329 u8 opcode
; /* dword 0 */
330 u8 subsystem
; /* dword 0 */
331 u8 port_number
; /* dword 0 */
332 u8 domain
; /* dword 0 */
333 u32 timeout
; /* dword 1 */
334 u32 request_length
; /* dword 2 */
335 u8 version
; /* dword 3 */
336 u8 rsvd
[3]; /* dword 3 */
339 #define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
340 #define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
341 struct be_cmd_resp_hdr
{
342 u8 opcode
; /* dword 0 */
343 u8 subsystem
; /* dword 0 */
344 u8 rsvd
[2]; /* dword 0 */
345 u8 base_status
; /* dword 1 */
346 u8 addl_status
; /* dword 1 */
347 u8 rsvd1
[2]; /* dword 1 */
348 u32 response_length
; /* dword 2 */
349 u32 actual_resp_len
; /* dword 3 */
357 /**************************
358 * BE Command definitions *
359 **************************/
361 /* Pseudo amap definition in which each bit of the actual structure is defined
362 * as a byte: used to calculate offset/shift/mask of each field */
363 struct amap_eq_context
{
364 u8 cidx
[13]; /* dword 0*/
365 u8 rsvd0
[3]; /* dword 0*/
366 u8 epidx
[13]; /* dword 0*/
367 u8 valid
; /* dword 0*/
368 u8 rsvd1
; /* dword 0*/
369 u8 size
; /* dword 0*/
370 u8 pidx
[13]; /* dword 1*/
371 u8 rsvd2
[3]; /* dword 1*/
372 u8 pd
[10]; /* dword 1*/
373 u8 count
[3]; /* dword 1*/
374 u8 solevent
; /* dword 1*/
375 u8 stalled
; /* dword 1*/
376 u8 armed
; /* dword 1*/
377 u8 rsvd3
[4]; /* dword 2*/
378 u8 func
[8]; /* dword 2*/
379 u8 rsvd4
; /* dword 2*/
380 u8 delaymult
[10]; /* dword 2*/
381 u8 rsvd5
[2]; /* dword 2*/
382 u8 phase
[2]; /* dword 2*/
383 u8 nodelay
; /* dword 2*/
384 u8 rsvd6
[4]; /* dword 2*/
385 u8 rsvd7
[32]; /* dword 3*/
388 struct be_cmd_req_eq_create
{
389 struct be_cmd_req_hdr hdr
;
390 u16 num_pages
; /* sword */
391 u16 rsvd0
; /* sword */
392 u8 context
[sizeof(struct amap_eq_context
) / 8];
393 struct phys_addr pages
[8];
396 struct be_cmd_resp_eq_create
{
397 struct be_cmd_resp_hdr resp_hdr
;
398 u16 eq_id
; /* sword */
399 u16 msix_idx
; /* available only in v2 */
402 /******************** Mac query ***************************/
404 MAC_ADDRESS_TYPE_STORAGE
= 0x0,
405 MAC_ADDRESS_TYPE_NETWORK
= 0x1,
406 MAC_ADDRESS_TYPE_PD
= 0x2,
407 MAC_ADDRESS_TYPE_MANAGEMENT
= 0x3
415 struct be_cmd_req_mac_query
{
416 struct be_cmd_req_hdr hdr
;
423 struct be_cmd_resp_mac_query
{
424 struct be_cmd_resp_hdr hdr
;
428 /******************** PMac Add ***************************/
429 struct be_cmd_req_pmac_add
{
430 struct be_cmd_req_hdr hdr
;
432 u8 mac_address
[ETH_ALEN
];
436 struct be_cmd_resp_pmac_add
{
437 struct be_cmd_resp_hdr hdr
;
441 /******************** PMac Del ***************************/
442 struct be_cmd_req_pmac_del
{
443 struct be_cmd_req_hdr hdr
;
448 /******************** Create CQ ***************************/
449 /* Pseudo amap definition in which each bit of the actual structure is defined
450 * as a byte: used to calculate offset/shift/mask of each field */
451 struct amap_cq_context_be
{
452 u8 cidx
[11]; /* dword 0*/
453 u8 rsvd0
; /* dword 0*/
454 u8 coalescwm
[2]; /* dword 0*/
455 u8 nodelay
; /* dword 0*/
456 u8 epidx
[11]; /* dword 0*/
457 u8 rsvd1
; /* dword 0*/
458 u8 count
[2]; /* dword 0*/
459 u8 valid
; /* dword 0*/
460 u8 solevent
; /* dword 0*/
461 u8 eventable
; /* dword 0*/
462 u8 pidx
[11]; /* dword 1*/
463 u8 rsvd2
; /* dword 1*/
464 u8 pd
[10]; /* dword 1*/
465 u8 eqid
[8]; /* dword 1*/
466 u8 stalled
; /* dword 1*/
467 u8 armed
; /* dword 1*/
468 u8 rsvd3
[4]; /* dword 2*/
469 u8 func
[8]; /* dword 2*/
470 u8 rsvd4
[20]; /* dword 2*/
471 u8 rsvd5
[32]; /* dword 3*/
474 struct amap_cq_context_v2
{
475 u8 rsvd0
[12]; /* dword 0*/
476 u8 coalescwm
[2]; /* dword 0*/
477 u8 nodelay
; /* dword 0*/
478 u8 rsvd1
[12]; /* dword 0*/
479 u8 count
[2]; /* dword 0*/
480 u8 valid
; /* dword 0*/
481 u8 rsvd2
; /* dword 0*/
482 u8 eventable
; /* dword 0*/
483 u8 eqid
[16]; /* dword 1*/
484 u8 rsvd3
[15]; /* dword 1*/
485 u8 armed
; /* dword 1*/
486 u8 rsvd4
[32]; /* dword 2*/
487 u8 rsvd5
[32]; /* dword 3*/
490 struct be_cmd_req_cq_create
{
491 struct be_cmd_req_hdr hdr
;
495 u8 context
[sizeof(struct amap_cq_context_be
) / 8];
496 struct phys_addr pages
[8];
500 struct be_cmd_resp_cq_create
{
501 struct be_cmd_resp_hdr hdr
;
506 struct be_cmd_req_get_fat
{
507 struct be_cmd_req_hdr hdr
;
511 u32 data_buffer_size
;
515 struct be_cmd_resp_get_fat
{
516 struct be_cmd_resp_hdr hdr
;
524 /******************** Create MCCQ ***************************/
525 /* Pseudo amap definition in which each bit of the actual structure is defined
526 * as a byte: used to calculate offset/shift/mask of each field */
527 struct amap_mcc_context_be
{
542 struct amap_mcc_context_v1
{
548 u8 async_cq_valid
[1];
553 struct be_cmd_req_mcc_create
{
554 struct be_cmd_req_hdr hdr
;
557 u8 context
[sizeof(struct amap_mcc_context_be
) / 8];
558 struct phys_addr pages
[8];
561 struct be_cmd_req_mcc_ext_create
{
562 struct be_cmd_req_hdr hdr
;
565 u32 async_event_bitmap
[1];
566 u8 context
[sizeof(struct amap_mcc_context_v1
) / 8];
567 struct phys_addr pages
[8];
570 struct be_cmd_resp_mcc_create
{
571 struct be_cmd_resp_hdr hdr
;
576 /******************** Create TxQ ***************************/
577 #define BE_ETH_TX_RING_TYPE_STANDARD 2
578 #define BE_ULP1_NUM 1
580 struct be_cmd_req_eth_tx_create
{
581 struct be_cmd_req_hdr hdr
;
592 struct phys_addr pages
[8];
595 struct be_cmd_resp_eth_tx_create
{
596 struct be_cmd_resp_hdr hdr
;
603 /******************** Create RxQ ***************************/
604 struct be_cmd_req_eth_rx_create
{
605 struct be_cmd_req_hdr hdr
;
609 struct phys_addr pages
[2];
616 struct be_cmd_resp_eth_rx_create
{
617 struct be_cmd_resp_hdr hdr
;
623 /******************** Q Destroy ***************************/
624 /* Type of Queue to be destroyed */
633 struct be_cmd_req_q_destroy
{
634 struct be_cmd_req_hdr hdr
;
636 u16 bypass_flush
; /* valid only for rx q destroy */
639 /************ I/f Create (it's actually I/f Config Create)**********/
641 /* Capability flags for the i/f */
643 BE_IF_FLAGS_RSS
= 0x4,
644 BE_IF_FLAGS_PROMISCUOUS
= 0x8,
645 BE_IF_FLAGS_BROADCAST
= 0x10,
646 BE_IF_FLAGS_UNTAGGED
= 0x20,
647 BE_IF_FLAGS_ULP
= 0x40,
648 BE_IF_FLAGS_VLAN_PROMISCUOUS
= 0x80,
649 BE_IF_FLAGS_VLAN
= 0x100,
650 BE_IF_FLAGS_MCAST_PROMISCUOUS
= 0x200,
651 BE_IF_FLAGS_PASS_L2_ERRORS
= 0x400,
652 BE_IF_FLAGS_PASS_L3L4_ERRORS
= 0x800,
653 BE_IF_FLAGS_MULTICAST
= 0x1000,
654 BE_IF_FLAGS_DEFQ_RSS
= 0x1000000
657 #define BE_IF_CAP_FLAGS_WANT (BE_IF_FLAGS_RSS | BE_IF_FLAGS_PROMISCUOUS |\
658 BE_IF_FLAGS_BROADCAST | BE_IF_FLAGS_VLAN_PROMISCUOUS |\
659 BE_IF_FLAGS_VLAN | BE_IF_FLAGS_MCAST_PROMISCUOUS |\
660 BE_IF_FLAGS_PASS_L3L4_ERRORS | BE_IF_FLAGS_MULTICAST |\
661 BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_DEFQ_RSS)
663 #define BE_IF_FLAGS_ALL_PROMISCUOUS (BE_IF_FLAGS_PROMISCUOUS | \
664 BE_IF_FLAGS_VLAN_PROMISCUOUS |\
665 BE_IF_FLAGS_MCAST_PROMISCUOUS)
667 #define BE_IF_FILT_FLAGS_BASIC (BE_IF_FLAGS_BROADCAST | \
668 BE_IF_FLAGS_PASS_L3L4_ERRORS | \
669 BE_IF_FLAGS_UNTAGGED)
671 #define BE_IF_ALL_FILT_FLAGS (BE_IF_FILT_FLAGS_BASIC | \
672 BE_IF_FLAGS_MULTICAST | \
673 BE_IF_FLAGS_ALL_PROMISCUOUS)
675 /* An RX interface is an object with one or more MAC addresses and
676 * filtering capabilities. */
677 struct be_cmd_req_if_create
{
678 struct be_cmd_req_hdr hdr
;
679 u32 version
; /* ignore currently */
680 u32 capability_flags
;
682 u8 mac_addr
[ETH_ALEN
];
684 u8 pmac_invalid
; /* if set, don't attach the mac addr to the i/f */
685 u32 vlan_tag
; /* not used currently */
688 struct be_cmd_resp_if_create
{
689 struct be_cmd_resp_hdr hdr
;
694 /****** I/f Destroy(it's actually I/f Config Destroy )**********/
695 struct be_cmd_req_if_destroy
{
696 struct be_cmd_req_hdr hdr
;
700 /*************** HW Stats Get **********************************/
701 struct be_port_rxf_stats_v0
{
702 u32 rx_bytes_lsd
; /* dword 0*/
703 u32 rx_bytes_msd
; /* dword 1*/
704 u32 rx_total_frames
; /* dword 2*/
705 u32 rx_unicast_frames
; /* dword 3*/
706 u32 rx_multicast_frames
; /* dword 4*/
707 u32 rx_broadcast_frames
; /* dword 5*/
708 u32 rx_crc_errors
; /* dword 6*/
709 u32 rx_alignment_symbol_errors
; /* dword 7*/
710 u32 rx_pause_frames
; /* dword 8*/
711 u32 rx_control_frames
; /* dword 9*/
712 u32 rx_in_range_errors
; /* dword 10*/
713 u32 rx_out_range_errors
; /* dword 11*/
714 u32 rx_frame_too_long
; /* dword 12*/
715 u32 rx_address_filtered
; /* dword 13*/
716 u32 rx_vlan_filtered
; /* dword 14*/
717 u32 rx_dropped_too_small
; /* dword 15*/
718 u32 rx_dropped_too_short
; /* dword 16*/
719 u32 rx_dropped_header_too_small
; /* dword 17*/
720 u32 rx_dropped_tcp_length
; /* dword 18*/
721 u32 rx_dropped_runt
; /* dword 19*/
722 u32 rx_64_byte_packets
; /* dword 20*/
723 u32 rx_65_127_byte_packets
; /* dword 21*/
724 u32 rx_128_256_byte_packets
; /* dword 22*/
725 u32 rx_256_511_byte_packets
; /* dword 23*/
726 u32 rx_512_1023_byte_packets
; /* dword 24*/
727 u32 rx_1024_1518_byte_packets
; /* dword 25*/
728 u32 rx_1519_2047_byte_packets
; /* dword 26*/
729 u32 rx_2048_4095_byte_packets
; /* dword 27*/
730 u32 rx_4096_8191_byte_packets
; /* dword 28*/
731 u32 rx_8192_9216_byte_packets
; /* dword 29*/
732 u32 rx_ip_checksum_errs
; /* dword 30*/
733 u32 rx_tcp_checksum_errs
; /* dword 31*/
734 u32 rx_udp_checksum_errs
; /* dword 32*/
735 u32 rx_non_rss_packets
; /* dword 33*/
736 u32 rx_ipv4_packets
; /* dword 34*/
737 u32 rx_ipv6_packets
; /* dword 35*/
738 u32 rx_ipv4_bytes_lsd
; /* dword 36*/
739 u32 rx_ipv4_bytes_msd
; /* dword 37*/
740 u32 rx_ipv6_bytes_lsd
; /* dword 38*/
741 u32 rx_ipv6_bytes_msd
; /* dword 39*/
742 u32 rx_chute1_packets
; /* dword 40*/
743 u32 rx_chute2_packets
; /* dword 41*/
744 u32 rx_chute3_packets
; /* dword 42*/
745 u32 rx_management_packets
; /* dword 43*/
746 u32 rx_switched_unicast_packets
; /* dword 44*/
747 u32 rx_switched_multicast_packets
; /* dword 45*/
748 u32 rx_switched_broadcast_packets
; /* dword 46*/
749 u32 tx_bytes_lsd
; /* dword 47*/
750 u32 tx_bytes_msd
; /* dword 48*/
751 u32 tx_unicastframes
; /* dword 49*/
752 u32 tx_multicastframes
; /* dword 50*/
753 u32 tx_broadcastframes
; /* dword 51*/
754 u32 tx_pauseframes
; /* dword 52*/
755 u32 tx_controlframes
; /* dword 53*/
756 u32 tx_64_byte_packets
; /* dword 54*/
757 u32 tx_65_127_byte_packets
; /* dword 55*/
758 u32 tx_128_256_byte_packets
; /* dword 56*/
759 u32 tx_256_511_byte_packets
; /* dword 57*/
760 u32 tx_512_1023_byte_packets
; /* dword 58*/
761 u32 tx_1024_1518_byte_packets
; /* dword 59*/
762 u32 tx_1519_2047_byte_packets
; /* dword 60*/
763 u32 tx_2048_4095_byte_packets
; /* dword 61*/
764 u32 tx_4096_8191_byte_packets
; /* dword 62*/
765 u32 tx_8192_9216_byte_packets
; /* dword 63*/
766 u32 rx_fifo_overflow
; /* dword 64*/
767 u32 rx_input_fifo_overflow
; /* dword 65*/
770 struct be_rxf_stats_v0
{
771 struct be_port_rxf_stats_v0 port
[2];
772 u32 rx_drops_no_pbuf
; /* dword 132*/
773 u32 rx_drops_no_txpb
; /* dword 133*/
774 u32 rx_drops_no_erx_descr
; /* dword 134*/
775 u32 rx_drops_no_tpre_descr
; /* dword 135*/
776 u32 management_rx_port_packets
; /* dword 136*/
777 u32 management_rx_port_bytes
; /* dword 137*/
778 u32 management_rx_port_pause_frames
; /* dword 138*/
779 u32 management_rx_port_errors
; /* dword 139*/
780 u32 management_tx_port_packets
; /* dword 140*/
781 u32 management_tx_port_bytes
; /* dword 141*/
782 u32 management_tx_port_pause
; /* dword 142*/
783 u32 management_rx_port_rxfifo_overflow
; /* dword 143*/
784 u32 rx_drops_too_many_frags
; /* dword 144*/
785 u32 rx_drops_invalid_ring
; /* dword 145*/
786 u32 forwarded_packets
; /* dword 146*/
787 u32 rx_drops_mtu
; /* dword 147*/
789 u32 port0_jabber_events
;
790 u32 port1_jabber_events
;
794 struct be_erx_stats_v0
{
795 u32 rx_drops_no_fragments
[44]; /* dwordS 0 to 43*/
799 struct be_pmem_stats
{
804 struct be_hw_stats_v0
{
805 struct be_rxf_stats_v0 rxf
;
807 struct be_erx_stats_v0 erx
;
808 struct be_pmem_stats pmem
;
811 struct be_cmd_req_get_stats_v0
{
812 struct be_cmd_req_hdr hdr
;
813 u8 rsvd
[sizeof(struct be_hw_stats_v0
)];
816 struct be_cmd_resp_get_stats_v0
{
817 struct be_cmd_resp_hdr hdr
;
818 struct be_hw_stats_v0 hw_stats
;
821 struct lancer_pport_stats
{
824 u32 tx_unicast_packets_lo
;
825 u32 tx_unicast_packets_hi
;
826 u32 tx_multicast_packets_lo
;
827 u32 tx_multicast_packets_hi
;
828 u32 tx_broadcast_packets_lo
;
829 u32 tx_broadcast_packets_hi
;
832 u32 tx_unicast_bytes_lo
;
833 u32 tx_unicast_bytes_hi
;
834 u32 tx_multicast_bytes_lo
;
835 u32 tx_multicast_bytes_hi
;
836 u32 tx_broadcast_bytes_lo
;
837 u32 tx_broadcast_bytes_hi
;
842 u32 tx_pause_frames_lo
;
843 u32 tx_pause_frames_hi
;
844 u32 tx_pause_on_frames_lo
;
845 u32 tx_pause_on_frames_hi
;
846 u32 tx_pause_off_frames_lo
;
847 u32 tx_pause_off_frames_hi
;
848 u32 tx_internal_mac_errors_lo
;
849 u32 tx_internal_mac_errors_hi
;
850 u32 tx_control_frames_lo
;
851 u32 tx_control_frames_hi
;
852 u32 tx_packets_64_bytes_lo
;
853 u32 tx_packets_64_bytes_hi
;
854 u32 tx_packets_65_to_127_bytes_lo
;
855 u32 tx_packets_65_to_127_bytes_hi
;
856 u32 tx_packets_128_to_255_bytes_lo
;
857 u32 tx_packets_128_to_255_bytes_hi
;
858 u32 tx_packets_256_to_511_bytes_lo
;
859 u32 tx_packets_256_to_511_bytes_hi
;
860 u32 tx_packets_512_to_1023_bytes_lo
;
861 u32 tx_packets_512_to_1023_bytes_hi
;
862 u32 tx_packets_1024_to_1518_bytes_lo
;
863 u32 tx_packets_1024_to_1518_bytes_hi
;
864 u32 tx_packets_1519_to_2047_bytes_lo
;
865 u32 tx_packets_1519_to_2047_bytes_hi
;
866 u32 tx_packets_2048_to_4095_bytes_lo
;
867 u32 tx_packets_2048_to_4095_bytes_hi
;
868 u32 tx_packets_4096_to_8191_bytes_lo
;
869 u32 tx_packets_4096_to_8191_bytes_hi
;
870 u32 tx_packets_8192_to_9216_bytes_lo
;
871 u32 tx_packets_8192_to_9216_bytes_hi
;
872 u32 tx_lso_packets_lo
;
873 u32 tx_lso_packets_hi
;
876 u32 rx_unicast_packets_lo
;
877 u32 rx_unicast_packets_hi
;
878 u32 rx_multicast_packets_lo
;
879 u32 rx_multicast_packets_hi
;
880 u32 rx_broadcast_packets_lo
;
881 u32 rx_broadcast_packets_hi
;
884 u32 rx_unicast_bytes_lo
;
885 u32 rx_unicast_bytes_hi
;
886 u32 rx_multicast_bytes_lo
;
887 u32 rx_multicast_bytes_hi
;
888 u32 rx_broadcast_bytes_lo
;
889 u32 rx_broadcast_bytes_hi
;
890 u32 rx_unknown_protos
;
891 u32 rsvd_69
; /* Word 69 is reserved */
896 u32 rx_crc_errors_lo
;
897 u32 rx_crc_errors_hi
;
898 u32 rx_alignment_errors_lo
;
899 u32 rx_alignment_errors_hi
;
900 u32 rx_symbol_errors_lo
;
901 u32 rx_symbol_errors_hi
;
902 u32 rx_pause_frames_lo
;
903 u32 rx_pause_frames_hi
;
904 u32 rx_pause_on_frames_lo
;
905 u32 rx_pause_on_frames_hi
;
906 u32 rx_pause_off_frames_lo
;
907 u32 rx_pause_off_frames_hi
;
908 u32 rx_frames_too_long_lo
;
909 u32 rx_frames_too_long_hi
;
910 u32 rx_internal_mac_errors_lo
;
911 u32 rx_internal_mac_errors_hi
;
912 u32 rx_undersize_packets
;
913 u32 rx_oversize_packets
;
914 u32 rx_fragment_packets
;
916 u32 rx_control_frames_lo
;
917 u32 rx_control_frames_hi
;
918 u32 rx_control_frames_unknown_opcode_lo
;
919 u32 rx_control_frames_unknown_opcode_hi
;
920 u32 rx_in_range_errors
;
921 u32 rx_out_of_range_errors
;
922 u32 rx_address_filtered
;
923 u32 rx_vlan_filtered
;
924 u32 rx_dropped_too_small
;
925 u32 rx_dropped_too_short
;
926 u32 rx_dropped_header_too_small
;
927 u32 rx_dropped_invalid_tcp_length
;
929 u32 rx_ip_checksum_errors
;
930 u32 rx_tcp_checksum_errors
;
931 u32 rx_udp_checksum_errors
;
932 u32 rx_non_rss_packets
;
934 u32 rx_ipv4_packets_lo
;
935 u32 rx_ipv4_packets_hi
;
936 u32 rx_ipv6_packets_lo
;
937 u32 rx_ipv6_packets_hi
;
938 u32 rx_ipv4_bytes_lo
;
939 u32 rx_ipv4_bytes_hi
;
940 u32 rx_ipv6_bytes_lo
;
941 u32 rx_ipv6_bytes_hi
;
942 u32 rx_nic_packets_lo
;
943 u32 rx_nic_packets_hi
;
944 u32 rx_tcp_packets_lo
;
945 u32 rx_tcp_packets_hi
;
946 u32 rx_iscsi_packets_lo
;
947 u32 rx_iscsi_packets_hi
;
948 u32 rx_management_packets_lo
;
949 u32 rx_management_packets_hi
;
950 u32 rx_switched_unicast_packets_lo
;
951 u32 rx_switched_unicast_packets_hi
;
952 u32 rx_switched_multicast_packets_lo
;
953 u32 rx_switched_multicast_packets_hi
;
954 u32 rx_switched_broadcast_packets_lo
;
955 u32 rx_switched_broadcast_packets_hi
;
958 u32 rx_fifo_overflow
;
959 u32 rx_input_fifo_overflow
;
960 u32 rx_drops_too_many_frags_lo
;
961 u32 rx_drops_too_many_frags_hi
;
962 u32 rx_drops_invalid_queue
;
966 u32 rx_packets_64_bytes_lo
;
967 u32 rx_packets_64_bytes_hi
;
968 u32 rx_packets_65_to_127_bytes_lo
;
969 u32 rx_packets_65_to_127_bytes_hi
;
970 u32 rx_packets_128_to_255_bytes_lo
;
971 u32 rx_packets_128_to_255_bytes_hi
;
972 u32 rx_packets_256_to_511_bytes_lo
;
973 u32 rx_packets_256_to_511_bytes_hi
;
974 u32 rx_packets_512_to_1023_bytes_lo
;
975 u32 rx_packets_512_to_1023_bytes_hi
;
976 u32 rx_packets_1024_to_1518_bytes_lo
;
977 u32 rx_packets_1024_to_1518_bytes_hi
;
978 u32 rx_packets_1519_to_2047_bytes_lo
;
979 u32 rx_packets_1519_to_2047_bytes_hi
;
980 u32 rx_packets_2048_to_4095_bytes_lo
;
981 u32 rx_packets_2048_to_4095_bytes_hi
;
982 u32 rx_packets_4096_to_8191_bytes_lo
;
983 u32 rx_packets_4096_to_8191_bytes_hi
;
984 u32 rx_packets_8192_to_9216_bytes_lo
;
985 u32 rx_packets_8192_to_9216_bytes_hi
;
988 struct pport_stats_params
{
994 struct lancer_cmd_req_pport_stats
{
995 struct be_cmd_req_hdr hdr
;
997 struct pport_stats_params params
;
998 u8 rsvd
[sizeof(struct lancer_pport_stats
)];
1002 struct lancer_cmd_resp_pport_stats
{
1003 struct be_cmd_resp_hdr hdr
;
1004 struct lancer_pport_stats pport_stats
;
1007 static inline struct lancer_pport_stats
*
1008 pport_stats_from_cmd(struct be_adapter
*adapter
)
1010 struct lancer_cmd_resp_pport_stats
*cmd
= adapter
->stats_cmd
.va
;
1011 return &cmd
->pport_stats
;
1014 struct be_cmd_req_get_cntl_addnl_attribs
{
1015 struct be_cmd_req_hdr hdr
;
1019 struct be_cmd_resp_get_cntl_addnl_attribs
{
1020 struct be_cmd_resp_hdr hdr
;
1021 u16 ipl_file_number
;
1022 u8 ipl_file_version
;
1024 u8 on_die_temperature
; /* in degrees centigrade*/
1028 struct be_cmd_req_vlan_config
{
1029 struct be_cmd_req_hdr hdr
;
1034 u16 normal_vlan
[64];
1037 /******************* RX FILTER ******************************/
1038 #define BE_MAX_MC 64 /* set mcast promisc if > 64 */
1043 struct be_cmd_req_rx_filter
{
1044 struct be_cmd_req_hdr hdr
;
1045 u32 global_flags_mask
;
1051 struct macaddr mcast_mac
[BE_MAX_MC
];
1054 /******************** Link Status Query *******************/
1055 struct be_cmd_req_link_status
{
1056 struct be_cmd_req_hdr hdr
;
1061 PHY_LINK_DUPLEX_NONE
= 0x0,
1062 PHY_LINK_DUPLEX_HALF
= 0x1,
1063 PHY_LINK_DUPLEX_FULL
= 0x2
1067 PHY_LINK_SPEED_ZERO
= 0x0, /* => No link */
1068 PHY_LINK_SPEED_10MBPS
= 0x1,
1069 PHY_LINK_SPEED_100MBPS
= 0x2,
1070 PHY_LINK_SPEED_1GBPS
= 0x3,
1071 PHY_LINK_SPEED_10GBPS
= 0x4,
1072 PHY_LINK_SPEED_20GBPS
= 0x5,
1073 PHY_LINK_SPEED_25GBPS
= 0x6,
1074 PHY_LINK_SPEED_40GBPS
= 0x7
1077 struct be_cmd_resp_link_status
{
1078 struct be_cmd_resp_hdr hdr
;
1086 u8 logical_link_status
;
1090 /******************** Port Identification ***************************/
1091 /* Identifies the type of port attached to NIC */
1092 struct be_cmd_req_port_type
{
1093 struct be_cmd_req_hdr hdr
;
1103 /* From SFF-8436 QSFP+ spec */
1104 #define QSFP_PLUS_CABLE_TYPE_OFFSET 0x83
1105 #define QSFP_PLUS_CR4_CABLE 0x8
1106 #define QSFP_PLUS_SR4_CABLE 0x4
1107 #define QSFP_PLUS_LR4_CABLE 0x2
1109 /* From SFF-8472 spec */
1110 #define SFP_PLUS_SFF_8472_COMP 0x5E
1111 #define SFP_PLUS_CABLE_TYPE_OFFSET 0x8
1112 #define SFP_PLUS_COPPER_CABLE 0x4
1113 #define SFP_VENDOR_NAME_OFFSET 0x14
1114 #define SFP_VENDOR_PN_OFFSET 0x28
1116 #define PAGE_DATA_LEN 256
1117 struct be_cmd_resp_port_type
{
1118 struct be_cmd_resp_hdr hdr
;
1121 u8 page_data
[PAGE_DATA_LEN
];
1124 /******************** Get FW Version *******************/
1125 struct be_cmd_req_get_fw_version
{
1126 struct be_cmd_req_hdr hdr
;
1127 u8 rsvd0
[FW_VER_LEN
];
1128 u8 rsvd1
[FW_VER_LEN
];
1131 struct be_cmd_resp_get_fw_version
{
1132 struct be_cmd_resp_hdr hdr
;
1133 u8 firmware_version_string
[FW_VER_LEN
];
1134 u8 fw_on_flash_version_string
[FW_VER_LEN
];
1137 /******************** Set Flow Contrl *******************/
1138 struct be_cmd_req_set_flow_control
{
1139 struct be_cmd_req_hdr hdr
;
1140 u16 tx_flow_control
;
1141 u16 rx_flow_control
;
1144 /******************** Get Flow Contrl *******************/
1145 struct be_cmd_req_get_flow_control
{
1146 struct be_cmd_req_hdr hdr
;
1150 struct be_cmd_resp_get_flow_control
{
1151 struct be_cmd_resp_hdr hdr
;
1152 u16 tx_flow_control
;
1153 u16 rx_flow_control
;
1156 /******************** Modify EQ Delay *******************/
1160 u32 delay_multiplier
;
1163 struct be_cmd_req_modify_eq_delay
{
1164 struct be_cmd_req_hdr hdr
;
1166 struct be_set_eqd set_eqd
[MAX_EVT_QS
];
1169 /******************** Get FW Config *******************/
1170 /* The HW can come up in either of the following multi-channel modes
1171 * based on the skew/IPL.
1173 #define RDMA_ENABLED 0x4
1174 #define QNQ_MODE 0x400
1175 #define VNIC_MODE 0x20000
1176 #define UMC_ENABLED 0x1000000
1177 struct be_cmd_req_query_fw_cfg
{
1178 struct be_cmd_req_hdr hdr
;
1182 struct be_cmd_resp_query_fw_cfg
{
1183 struct be_cmd_resp_hdr hdr
;
1184 u32 be_config_number
;
1192 /******************** RSS Config ****************************************/
1193 /* RSS type Input parameters used to compute RX hash
1194 * RSS_ENABLE_IPV4 SRC IPv4, DST IPv4
1195 * RSS_ENABLE_TCP_IPV4 SRC IPv4, DST IPv4, TCP SRC PORT, TCP DST PORT
1196 * RSS_ENABLE_IPV6 SRC IPv6, DST IPv6
1197 * RSS_ENABLE_TCP_IPV6 SRC IPv6, DST IPv6, TCP SRC PORT, TCP DST PORT
1198 * RSS_ENABLE_UDP_IPV4 SRC IPv4, DST IPv4, UDP SRC PORT, UDP DST PORT
1199 * RSS_ENABLE_UDP_IPV6 SRC IPv6, DST IPv6, UDP SRC PORT, UDP DST PORT
1201 * When multiple RSS types are enabled, HW picks the best hash policy
1202 * based on the type of the received packet.
1204 #define RSS_ENABLE_NONE 0x0
1205 #define RSS_ENABLE_IPV4 0x1
1206 #define RSS_ENABLE_TCP_IPV4 0x2
1207 #define RSS_ENABLE_IPV6 0x4
1208 #define RSS_ENABLE_TCP_IPV6 0x8
1209 #define RSS_ENABLE_UDP_IPV4 0x10
1210 #define RSS_ENABLE_UDP_IPV6 0x20
1212 #define L3_RSS_FLAGS (RXH_IP_DST | RXH_IP_SRC)
1213 #define L4_RSS_FLAGS (RXH_L4_B_0_1 | RXH_L4_B_2_3)
1215 struct be_cmd_req_rss_config
{
1216 struct be_cmd_req_hdr hdr
;
1219 u16 cpu_table_size_log2
;
1226 /******************** Port Beacon ***************************/
1228 #define BEACON_STATE_ENABLED 0x1
1229 #define BEACON_STATE_DISABLED 0x0
1231 struct be_cmd_req_enable_disable_beacon
{
1232 struct be_cmd_req_hdr hdr
;
1239 struct be_cmd_req_get_beacon_state
{
1240 struct be_cmd_req_hdr hdr
;
1246 struct be_cmd_resp_get_beacon_state
{
1247 struct be_cmd_resp_hdr resp_hdr
;
1252 /* Flashrom related descriptors */
1253 #define MAX_FLASH_COMP 32
1255 /* Optypes of each component in the UFI */
1257 OPTYPE_ISCSI_ACTIVE
= 0,
1260 OPTYPE_PXE_BIOS
= 3,
1261 OPTYPE_OFFSET_SPECIFIED
= 7,
1262 OPTYPE_FCOE_BIOS
= 8,
1263 OPTYPE_ISCSI_BACKUP
= 9,
1264 OPTYPE_FCOE_FW_ACTIVE
= 10,
1265 OPTYPE_FCOE_FW_BACKUP
= 11,
1266 OPTYPE_NCSI_FW
= 13,
1267 OPTYPE_REDBOOT_DIR
= 18,
1268 OPTYPE_REDBOOT_CONFIG
= 19,
1269 OPTYPE_SH_PHY_FW
= 21,
1270 OPTYPE_FLASHISM_JUMPVECTOR
= 22,
1271 OPTYPE_UFI_DIR
= 23,
1275 /* Maximum sizes of components in BE2 FW UFI */
1277 BE2_BIOS_COMP_MAX_SIZE
= 0x40000,
1278 BE2_REDBOOT_COMP_MAX_SIZE
= 0x40000,
1279 BE2_COMP_MAX_SIZE
= 0x140000
1282 /* Maximum sizes of components in BE3 FW UFI */
1284 BE3_NCSI_COMP_MAX_SIZE
= 0x40000,
1285 BE3_PHY_FW_COMP_MAX_SIZE
= 0x40000,
1286 BE3_BIOS_COMP_MAX_SIZE
= 0x80000,
1287 BE3_REDBOOT_COMP_MAX_SIZE
= 0x100000,
1288 BE3_COMP_MAX_SIZE
= 0x200000
1291 /* Offsets for components in BE2 FW UFI */
1293 BE2_REDBOOT_START
= 0x8000,
1294 BE2_FCOE_BIOS_START
= 0x80000,
1295 BE2_ISCSI_PRIMARY_IMAGE_START
= 0x100000,
1296 BE2_ISCSI_BACKUP_IMAGE_START
= 0x240000,
1297 BE2_FCOE_PRIMARY_IMAGE_START
= 0x380000,
1298 BE2_FCOE_BACKUP_IMAGE_START
= 0x4c0000,
1299 BE2_ISCSI_BIOS_START
= 0x700000,
1300 BE2_PXE_BIOS_START
= 0x780000
1303 /* Offsets for components in BE3 FW UFI */
1305 BE3_REDBOOT_START
= 0x40000,
1306 BE3_PHY_FW_START
= 0x140000,
1307 BE3_ISCSI_PRIMARY_IMAGE_START
= 0x200000,
1308 BE3_ISCSI_BACKUP_IMAGE_START
= 0x400000,
1309 BE3_FCOE_PRIMARY_IMAGE_START
= 0x600000,
1310 BE3_FCOE_BACKUP_IMAGE_START
= 0x800000,
1311 BE3_ISCSI_BIOS_START
= 0xc00000,
1312 BE3_PXE_BIOS_START
= 0xc80000,
1313 BE3_FCOE_BIOS_START
= 0xd00000,
1314 BE3_NCSI_START
= 0xf40000
1317 /* Component entry types */
1320 IMAGE_OPTION_ROM_PXE
= 0x20,
1321 IMAGE_OPTION_ROM_FCOE
= 0x21,
1322 IMAGE_OPTION_ROM_ISCSI
= 0x22,
1323 IMAGE_FLASHISM_JUMPVECTOR
= 0x30,
1324 IMAGE_FIRMWARE_ISCSI
= 0xa0,
1325 IMAGE_FIRMWARE_FCOE
= 0xa2,
1326 IMAGE_FIRMWARE_BACKUP_ISCSI
= 0xb0,
1327 IMAGE_FIRMWARE_BACKUP_FCOE
= 0xb2,
1328 IMAGE_FIRMWARE_PHY
= 0xc0,
1329 IMAGE_REDBOOT_DIR
= 0xd0,
1330 IMAGE_REDBOOT_CONFIG
= 0xd1,
1331 IMAGE_UFI_DIR
= 0xd2,
1332 IMAGE_BOOT_CODE
= 0xe2
1335 struct controller_id
{
1343 unsigned long offset
;
1354 u8 image_version
[32];
1357 struct flash_file_hdr_g2
{
1361 struct controller_id cont_id
;
1369 /* First letter of the build version of the image */
1370 #define BLD_STR_UFI_TYPE_BE2 '2'
1371 #define BLD_STR_UFI_TYPE_BE3 '3'
1372 #define BLD_STR_UFI_TYPE_SH '4'
1374 struct flash_file_hdr_g3
{
1386 struct flash_section_hdr
{
1395 struct flash_section_hdr_g2
{
1404 struct flash_section_entry
{
1417 struct flash_section_info
{
1419 struct flash_section_hdr fsec_hdr
;
1420 struct flash_section_entry fsec_entry
[32];
1423 struct flash_section_info_g2
{
1425 struct flash_section_hdr_g2 fsec_hdr
;
1426 struct flash_section_entry fsec_entry
[32];
1429 /****************** Firmware Flash ******************/
1430 #define FLASHROM_OPER_FLASH 1
1431 #define FLASHROM_OPER_SAVE 2
1432 #define FLASHROM_OPER_REPORT 4
1433 #define FLASHROM_OPER_PHY_FLASH 9
1434 #define FLASHROM_OPER_PHY_SAVE 10
1436 struct flashrom_params
{
1443 struct be_cmd_write_flashrom
{
1444 struct be_cmd_req_hdr hdr
;
1445 struct flashrom_params params
;
1450 /* cmd to read flash crc */
1451 struct be_cmd_read_flash_crc
{
1452 struct be_cmd_req_hdr hdr
;
1453 struct flashrom_params params
;
1458 /**************** Lancer Firmware Flash ************/
1459 #define LANCER_FW_DOWNLOAD_CHUNK (32 * 1024)
1460 #define LANCER_FW_DOWNLOAD_LOCATION "/prg"
1462 struct amap_lancer_write_obj_context
{
1463 u8 write_length
[24];
1468 struct lancer_cmd_req_write_object
{
1469 struct be_cmd_req_hdr hdr
;
1470 u8 context
[sizeof(struct amap_lancer_write_obj_context
) / 8];
1472 u8 object_name
[104];
1473 u32 descriptor_count
;
1479 #define LANCER_NO_RESET_NEEDED 0x00
1480 #define LANCER_FW_RESET_NEEDED 0x02
1481 struct lancer_cmd_resp_write_object
{
1486 u8 additional_status
;
1489 u32 actual_resp_len
;
1490 u32 actual_write_len
;
1495 /************************ Lancer Read FW info **************/
1496 #define LANCER_READ_FILE_CHUNK (32*1024)
1497 #define LANCER_READ_FILE_EOF_MASK 0x80000000
1499 #define LANCER_FW_DUMP_FILE "/dbg/dump.bin"
1500 #define LANCER_VPD_PF_FILE "/vpd/ntr_pf.vpd"
1501 #define LANCER_VPD_VF_FILE "/vpd/ntr_vf.vpd"
1503 struct lancer_cmd_req_read_object
{
1504 struct be_cmd_req_hdr hdr
;
1505 u32 desired_read_len
;
1507 u8 object_name
[104];
1508 u32 descriptor_count
;
1514 struct lancer_cmd_resp_read_object
{
1519 u8 additional_status
;
1522 u32 actual_resp_len
;
1523 u32 actual_read_len
;
1527 struct lancer_cmd_req_delete_object
{
1528 struct be_cmd_req_hdr hdr
;
1531 u8 object_name
[104];
1534 /************************ WOL *******************************/
1535 struct be_cmd_req_acpi_wol_magic_config
{
1536 struct be_cmd_req_hdr hdr
;
1542 struct be_cmd_req_acpi_wol_magic_config_v1
{
1543 struct be_cmd_req_hdr hdr
;
1552 struct be_cmd_resp_acpi_wol_magic_config_v1
{
1553 struct be_cmd_resp_hdr hdr
;
1562 #define BE_GET_WOL_CAP 2
1564 #define BE_WOL_CAP 0x1
1565 #define BE_PME_D0_CAP 0x8
1566 #define BE_PME_D1_CAP 0x10
1567 #define BE_PME_D2_CAP 0x20
1568 #define BE_PME_D3HOT_CAP 0x40
1569 #define BE_PME_D3COLD_CAP 0x80
1571 /********************** LoopBack test *********************/
1572 #define SET_LB_MODE_TIMEOUT 12000
1574 struct be_cmd_req_loopback_test
{
1575 struct be_cmd_req_hdr hdr
;
1584 struct be_cmd_resp_loopback_test
{
1585 struct be_cmd_resp_hdr resp_hdr
;
1593 struct be_cmd_req_set_lmode
{
1594 struct be_cmd_req_hdr hdr
;
1601 /********************** DDR DMA test *********************/
1602 struct be_cmd_req_ddrdma_test
{
1603 struct be_cmd_req_hdr hdr
;
1611 struct be_cmd_resp_ddrdma_test
{
1612 struct be_cmd_resp_hdr hdr
;
1620 /*********************** SEEPROM Read ***********************/
1622 #define BE_READ_SEEPROM_LEN 1024
1623 struct be_cmd_req_seeprom_read
{
1624 struct be_cmd_req_hdr hdr
;
1625 u8 rsvd0
[BE_READ_SEEPROM_LEN
];
1628 struct be_cmd_resp_seeprom_read
{
1629 struct be_cmd_req_hdr hdr
;
1630 u8 seeprom_data
[BE_READ_SEEPROM_LEN
];
1634 PHY_TYPE_CX4_10GB
= 0,
1637 PHY_TYPE_SFP_PLUS_10GB
,
1640 PHY_TYPE_BASET_10GB
,
1648 PHY_TYPE_DISABLED
= 255
1651 #define BE_SUPPORTED_SPEED_NONE 0
1652 #define BE_SUPPORTED_SPEED_10MBPS 1
1653 #define BE_SUPPORTED_SPEED_100MBPS 2
1654 #define BE_SUPPORTED_SPEED_1GBPS 4
1655 #define BE_SUPPORTED_SPEED_10GBPS 8
1656 #define BE_SUPPORTED_SPEED_20GBPS 0x10
1657 #define BE_SUPPORTED_SPEED_40GBPS 0x20
1659 #define BE_AN_EN 0x2
1660 #define BE_PAUSE_SYM_EN 0x80
1662 /* MAC speed valid values */
1663 #define SPEED_DEFAULT 0x0
1664 #define SPEED_FORCED_10GB 0x1
1665 #define SPEED_FORCED_1GB 0x2
1666 #define SPEED_AUTONEG_10GB 0x3
1667 #define SPEED_AUTONEG_1GB 0x4
1668 #define SPEED_AUTONEG_100MB 0x5
1669 #define SPEED_AUTONEG_10GB_1GB 0x6
1670 #define SPEED_AUTONEG_10GB_1GB_100MB 0x7
1671 #define SPEED_AUTONEG_1GB_100MB 0x8
1672 #define SPEED_AUTONEG_10MB 0x9
1673 #define SPEED_AUTONEG_1GB_100MB_10MB 0xa
1674 #define SPEED_AUTONEG_100MB_10MB 0xb
1675 #define SPEED_FORCED_100MB 0xc
1676 #define SPEED_FORCED_10MB 0xd
1678 struct be_cmd_req_get_phy_info
{
1679 struct be_cmd_req_hdr hdr
;
1683 struct be_phy_info
{
1687 u16 ext_phy_details
;
1689 u16 auto_speeds_supported
;
1690 u16 fixed_speeds_supported
;
1694 struct be_cmd_resp_get_phy_info
{
1695 struct be_cmd_req_hdr hdr
;
1696 struct be_phy_info phy_info
;
1699 /*********************** Set QOS ***********************/
1701 #define BE_QOS_BITS_NIC 1
1703 struct be_cmd_req_set_qos
{
1704 struct be_cmd_req_hdr hdr
;
1710 /*********************** Controller Attributes ***********************/
1711 struct mgmt_hba_attribs
{
1713 u8 controller_model_number
[32];
1715 u32 controller_serial_number
[8];
1726 struct mgmt_controller_attrib
{
1727 struct mgmt_hba_attribs hba_attribs
;
1731 struct be_cmd_req_cntl_attribs
{
1732 struct be_cmd_req_hdr hdr
;
1735 struct be_cmd_resp_cntl_attribs
{
1736 struct be_cmd_resp_hdr hdr
;
1737 struct mgmt_controller_attrib attribs
;
1740 /*********************** Set driver function ***********************/
1741 #define CAPABILITY_SW_TIMESTAMPS 2
1742 #define CAPABILITY_BE3_NATIVE_ERX_API 4
1744 struct be_cmd_req_set_func_cap
{
1745 struct be_cmd_req_hdr hdr
;
1746 u32 valid_cap_flags
;
1751 struct be_cmd_resp_set_func_cap
{
1752 struct be_cmd_resp_hdr hdr
;
1753 u32 valid_cap_flags
;
1758 /*********************** Function Privileges ***********************/
1760 BE_PRIV_DEFAULT
= 0x1,
1761 BE_PRIV_LNKQUERY
= 0x2,
1762 BE_PRIV_LNKSTATS
= 0x4,
1763 BE_PRIV_LNKMGMT
= 0x8,
1764 BE_PRIV_LNKDIAG
= 0x10,
1765 BE_PRIV_UTILQUERY
= 0x20,
1766 BE_PRIV_FILTMGMT
= 0x40,
1767 BE_PRIV_IFACEMGMT
= 0x80,
1768 BE_PRIV_VHADM
= 0x100,
1769 BE_PRIV_DEVCFG
= 0x200,
1770 BE_PRIV_DEVSEC
= 0x400
1772 #define MAX_PRIVILEGES (BE_PRIV_VHADM | BE_PRIV_DEVCFG | \
1774 #define MIN_PRIVILEGES BE_PRIV_DEFAULT
1776 struct be_cmd_priv_map
{
1782 struct be_cmd_req_get_fn_privileges
{
1783 struct be_cmd_req_hdr hdr
;
1787 struct be_cmd_resp_get_fn_privileges
{
1788 struct be_cmd_resp_hdr hdr
;
1792 struct be_cmd_req_set_fn_privileges
{
1793 struct be_cmd_req_hdr hdr
;
1794 u32 privileges
; /* Used by BE3, SH-R */
1795 u32 privileges_lancer
; /* Used by Lancer */
1798 /******************** GET/SET_MACLIST **************************/
1799 #define BE_MAX_MAC 64
1800 struct be_cmd_req_get_mac_list
{
1801 struct be_cmd_req_hdr hdr
;
1809 struct get_list_macaddr
{
1816 } __packed s_mac_id
;
1817 } __packed mac_addr_id
;
1820 struct be_cmd_resp_get_mac_list
{
1821 struct be_cmd_resp_hdr hdr
;
1822 struct get_list_macaddr fd_macaddr
; /* Factory default mac */
1823 struct get_list_macaddr macid_macaddr
; /* soft mac */
1825 u8 pseudo_mac_count
;
1828 /* perm override mac */
1829 struct get_list_macaddr macaddr_list
[BE_MAX_MAC
];
1832 struct be_cmd_req_set_mac_list
{
1833 struct be_cmd_req_hdr hdr
;
1837 struct macaddr mac
[BE_MAX_MAC
];
1840 /*********************** HSW Config ***********************/
1841 #define PORT_FWD_TYPE_VEPA 0x3
1842 #define PORT_FWD_TYPE_VEB 0x2
1843 #define PORT_FWD_TYPE_PASSTHRU 0x1
1845 #define ENABLE_MAC_SPOOFCHK 0x2
1846 #define DISABLE_MAC_SPOOFCHK 0x3
1848 struct amap_set_hsw_context
{
1849 u8 interface_id
[16];
1856 u8 port_fwd_type
[3];
1858 u8 vlan_spoofchk
[2];
1865 struct be_cmd_req_set_hsw_config
{
1866 struct be_cmd_req_hdr hdr
;
1867 u8 context
[sizeof(struct amap_set_hsw_context
) / 8];
1870 struct amap_get_hsw_req_context
{
1871 u8 interface_id
[16];
1877 struct amap_get_hsw_resp_context
{
1879 u8 port_fwd_type
[3];
1889 struct be_cmd_req_get_hsw_config
{
1890 struct be_cmd_req_hdr hdr
;
1891 u8 context
[sizeof(struct amap_get_hsw_req_context
) / 8];
1894 struct be_cmd_resp_get_hsw_config
{
1895 struct be_cmd_resp_hdr hdr
;
1896 u8 context
[sizeof(struct amap_get_hsw_resp_context
) / 8];
1900 /******************* get port names ***************/
1901 struct be_cmd_req_get_port_name
{
1902 struct be_cmd_req_hdr hdr
;
1906 struct be_cmd_resp_get_port_name
{
1907 struct be_cmd_req_hdr hdr
;
1911 /*************** HW Stats Get v1 **********************************/
1912 #define BE_TXP_SW_SZ 48
1913 struct be_port_rxf_stats_v1
{
1916 u32 rx_alignment_symbol_errors
;
1917 u32 rx_pause_frames
;
1918 u32 rx_priority_pause_frames
;
1919 u32 rx_control_frames
;
1920 u32 rx_in_range_errors
;
1921 u32 rx_out_range_errors
;
1922 u32 rx_frame_too_long
;
1923 u32 rx_address_filtered
;
1924 u32 rx_dropped_too_small
;
1925 u32 rx_dropped_too_short
;
1926 u32 rx_dropped_header_too_small
;
1927 u32 rx_dropped_tcp_length
;
1928 u32 rx_dropped_runt
;
1930 u32 rx_ip_checksum_errs
;
1931 u32 rx_tcp_checksum_errs
;
1932 u32 rx_udp_checksum_errs
;
1934 u32 rx_switched_unicast_packets
;
1935 u32 rx_switched_multicast_packets
;
1936 u32 rx_switched_broadcast_packets
;
1939 u32 tx_priority_pauseframes
;
1940 u32 tx_controlframes
;
1942 u32 rxpp_fifo_overflow_drop
;
1943 u32 rx_input_fifo_overflow_drop
;
1944 u32 pmem_fifo_overflow_drop
;
1950 struct be_rxf_stats_v1
{
1951 struct be_port_rxf_stats_v1 port
[4];
1953 u32 rx_drops_no_pbuf
;
1954 u32 rx_drops_no_txpb
;
1955 u32 rx_drops_no_erx_descr
;
1956 u32 rx_drops_no_tpre_descr
;
1958 u32 rx_drops_too_many_frags
;
1959 u32 rx_drops_invalid_ring
;
1960 u32 forwarded_packets
;
1965 struct be_erx_stats_v1
{
1966 u32 rx_drops_no_fragments
[68]; /* dwordS 0 to 67*/
1970 struct be_port_rxf_stats_v2
{
1972 u32 roce_bytes_received_lsd
;
1973 u32 roce_bytes_received_msd
;
1975 u32 roce_frames_received
;
1977 u32 rx_alignment_symbol_errors
;
1978 u32 rx_pause_frames
;
1979 u32 rx_priority_pause_frames
;
1980 u32 rx_control_frames
;
1981 u32 rx_in_range_errors
;
1982 u32 rx_out_range_errors
;
1983 u32 rx_frame_too_long
;
1984 u32 rx_address_filtered
;
1985 u32 rx_dropped_too_small
;
1986 u32 rx_dropped_too_short
;
1987 u32 rx_dropped_header_too_small
;
1988 u32 rx_dropped_tcp_length
;
1989 u32 rx_dropped_runt
;
1991 u32 rx_ip_checksum_errs
;
1992 u32 rx_tcp_checksum_errs
;
1993 u32 rx_udp_checksum_errs
;
1995 u32 rx_switched_unicast_packets
;
1996 u32 rx_switched_multicast_packets
;
1997 u32 rx_switched_broadcast_packets
;
2000 u32 tx_priority_pauseframes
;
2001 u32 tx_controlframes
;
2003 u32 rxpp_fifo_overflow_drop
;
2004 u32 rx_input_fifo_overflow_drop
;
2005 u32 pmem_fifo_overflow_drop
;
2008 u32 rx_drops_payload_size
;
2009 u32 rx_drops_clipped_header
;
2011 u32 roce_drops_payload_len
;
2016 struct be_rxf_stats_v2
{
2017 struct be_port_rxf_stats_v2 port
[4];
2019 u32 rx_drops_no_pbuf
;
2020 u32 rx_drops_no_txpb
;
2021 u32 rx_drops_no_erx_descr
;
2022 u32 rx_drops_no_tpre_descr
;
2024 u32 rx_drops_too_many_frags
;
2025 u32 rx_drops_invalid_ring
;
2026 u32 forwarded_packets
;
2031 struct be_hw_stats_v1
{
2032 struct be_rxf_stats_v1 rxf
;
2033 u32 rsvd0
[BE_TXP_SW_SZ
];
2034 struct be_erx_stats_v1 erx
;
2035 struct be_pmem_stats pmem
;
2039 struct be_cmd_req_get_stats_v1
{
2040 struct be_cmd_req_hdr hdr
;
2041 u8 rsvd
[sizeof(struct be_hw_stats_v1
)];
2044 struct be_cmd_resp_get_stats_v1
{
2045 struct be_cmd_resp_hdr hdr
;
2046 struct be_hw_stats_v1 hw_stats
;
2049 struct be_erx_stats_v2
{
2050 u32 rx_drops_no_fragments
[136]; /* dwordS 0 to 135*/
2054 struct be_hw_stats_v2
{
2055 struct be_rxf_stats_v2 rxf
;
2056 u32 rsvd0
[BE_TXP_SW_SZ
];
2057 struct be_erx_stats_v2 erx
;
2058 struct be_pmem_stats pmem
;
2062 struct be_cmd_req_get_stats_v2
{
2063 struct be_cmd_req_hdr hdr
;
2064 u8 rsvd
[sizeof(struct be_hw_stats_v2
)];
2067 struct be_cmd_resp_get_stats_v2
{
2068 struct be_cmd_resp_hdr hdr
;
2069 struct be_hw_stats_v2 hw_stats
;
2072 /************** get fat capabilites *******************/
2073 #define MAX_MODULES 27
2076 #define FW_LOG_LEVEL_DEFAULT 48
2077 #define FW_LOG_LEVEL_FATAL 64
2079 struct ext_fat_mode
{
2087 struct ext_fat_modules
{
2091 struct ext_fat_mode trace_lvl
[MAX_MODES
];
2094 struct be_fat_conf_params
{
2095 u32 max_log_entries
;
2103 struct ext_fat_modules module
[MAX_MODULES
];
2106 struct be_cmd_req_get_ext_fat_caps
{
2107 struct be_cmd_req_hdr hdr
;
2111 struct be_cmd_resp_get_ext_fat_caps
{
2112 struct be_cmd_resp_hdr hdr
;
2113 struct be_fat_conf_params get_params
;
2116 struct be_cmd_req_set_ext_fat_caps
{
2117 struct be_cmd_req_hdr hdr
;
2118 struct be_fat_conf_params set_params
;
2121 #define RESOURCE_DESC_SIZE_V0 72
2122 #define RESOURCE_DESC_SIZE_V1 88
2123 #define PCIE_RESOURCE_DESC_TYPE_V0 0x40
2124 #define NIC_RESOURCE_DESC_TYPE_V0 0x41
2125 #define PCIE_RESOURCE_DESC_TYPE_V1 0x50
2126 #define NIC_RESOURCE_DESC_TYPE_V1 0x51
2127 #define PORT_RESOURCE_DESC_TYPE_V1 0x55
2128 #define MAX_RESOURCE_DESC 264
2130 #define IF_CAPS_FLAGS_VALID_SHIFT 0 /* IF caps valid */
2131 #define VFT_SHIFT 3 /* VF template */
2132 #define IMM_SHIFT 6 /* Immediate */
2133 #define NOSV_SHIFT 7 /* No save */
2135 #define MISSION_NIC 1
2136 #define MISSION_RDMA 8
2138 struct be_res_desc_hdr
{
2143 struct be_port_res_desc
{
2144 struct be_res_desc_hdr hdr
;
2151 #define NV_TYPE_MASK 0x3 /* bits 0-1 */
2152 #define NV_TYPE_DISABLED 1
2153 #define NV_TYPE_VXLAN 3
2154 #define SOCVID_SHIFT 2 /* Strip outer vlan */
2155 #define RCVID_SHIFT 4 /* Report vlan */
2156 #define PF_NUM_IGNORE 255
2159 __le16 nv_port
; /* vxlan/gre port */
2163 struct be_pcie_res_desc
{
2164 struct be_res_desc_hdr hdr
;
2180 struct be_nic_res_desc
{
2181 struct be_res_desc_hdr hdr
;
2184 #define QUN_SHIFT 4 /* QoS is in absolute units */
2190 u16 unicast_mac_count
;
2194 u16 mcast_mac_count
;
2207 u16 channel_id_param
;
2213 u16 tunnel_iface_count
;
2214 u16 direct_tenant_iface_count
;
2218 /************ Multi-Channel type ***********/
2229 /* Is BE in a multi-channel mode */
2230 static inline bool be_is_mc(struct be_adapter
*adapter
)
2232 return adapter
->mc_type
> MC_NONE
;
2235 struct be_cmd_req_get_func_config
{
2236 struct be_cmd_req_hdr hdr
;
2239 struct be_cmd_resp_get_func_config
{
2240 struct be_cmd_resp_hdr hdr
;
2242 u8 func_param
[MAX_RESOURCE_DESC
* RESOURCE_DESC_SIZE_V1
];
2250 struct be_cmd_req_get_profile_config
{
2251 struct be_cmd_req_hdr hdr
;
2253 #define ACTIVE_PROFILE_TYPE 0x2
2254 #define SAVED_PROFILE_TYPE 0x0
2255 #define QUERY_MODIFIABLE_FIELDS_TYPE BIT(3)
2260 struct be_cmd_resp_get_profile_config
{
2261 struct be_cmd_resp_hdr hdr
;
2264 u8 func_param
[MAX_RESOURCE_DESC
* RESOURCE_DESC_SIZE_V1
];
2267 #define FIELD_MODIFIABLE 0xFFFF
2268 struct be_cmd_req_set_profile_config
{
2269 struct be_cmd_req_hdr hdr
;
2272 u8 desc
[2 * RESOURCE_DESC_SIZE_V1
];
2275 struct be_cmd_req_get_active_profile
{
2276 struct be_cmd_req_hdr hdr
;
2280 struct be_cmd_resp_get_active_profile
{
2281 struct be_cmd_resp_hdr hdr
;
2282 u16 active_profile_id
;
2283 u16 next_profile_id
;
2286 struct be_cmd_enable_disable_vf
{
2287 struct be_cmd_req_hdr hdr
;
2292 struct be_cmd_req_intr_set
{
2293 struct be_cmd_req_hdr hdr
;
2298 static inline bool check_privilege(struct be_adapter
*adapter
, u32 flags
)
2300 return flags
& adapter
->cmd_privileges
? true : false;
2303 /************** Get IFACE LIST *******************/
2310 struct be_cmd_req_get_iface_list
{
2311 struct be_cmd_req_hdr hdr
;
2314 struct be_cmd_resp_get_iface_list
{
2315 struct be_cmd_req_hdr hdr
;
2317 struct be_if_desc if_desc
;
2320 /************** Set Features *******************/
2321 #define BE_FEATURE_UE_RECOVERY 0x10
2322 #define BE_UE_RECOVERY_UER_MASK 0x1
2324 struct be_req_ue_recovery
{
2329 struct be_cmd_req_set_features
{
2330 struct be_cmd_req_hdr hdr
;
2334 struct be_req_ue_recovery req
;
2339 struct be_resp_ue_recovery
{
2345 struct be_cmd_resp_set_features
{
2346 struct be_cmd_resp_hdr hdr
;
2350 struct be_resp_ue_recovery resp
;
2355 /*************** Set logical link ********************/
2356 #define PLINK_ENABLE BIT(0)
2357 #define PLINK_TRACK BIT(8)
2358 struct be_cmd_req_set_ll_link
{
2359 struct be_cmd_req_hdr hdr
;
2360 u32 link_config
; /* Bit 0: UP_DOWN, Bit 9: PLINK */
2363 /************** Manage IFACE Filters *******************/
2364 #define OP_CONVERT_NORMAL_TO_TUNNEL 0
2365 #define OP_CONVERT_TUNNEL_TO_NORMAL 1
2367 struct be_cmd_req_manage_iface_filters
{
2368 struct be_cmd_req_hdr hdr
;
2373 u32 tunnel_iface_id
;
2374 u32 target_iface_id
;
2380 u32 cap_control_flags
;
2383 u16
be_POST_stage_get(struct be_adapter
*adapter
);
2384 int be_pci_fnum_get(struct be_adapter
*adapter
);
2385 int be_fw_wait_ready(struct be_adapter
*adapter
);
2386 int be_cmd_mac_addr_query(struct be_adapter
*adapter
, u8
*mac_addr
,
2387 bool permanent
, u32 if_handle
, u32 pmac_id
);
2388 int be_cmd_pmac_add(struct be_adapter
*adapter
, u8
*mac_addr
, u32 if_id
,
2389 u32
*pmac_id
, u32 domain
);
2390 int be_cmd_pmac_del(struct be_adapter
*adapter
, u32 if_id
, int pmac_id
,
2392 int be_cmd_if_create(struct be_adapter
*adapter
, u32 cap_flags
, u32 en_flags
,
2393 u32
*if_handle
, u32 domain
);
2394 int be_cmd_if_destroy(struct be_adapter
*adapter
, int if_handle
, u32 domain
);
2395 int be_cmd_eq_create(struct be_adapter
*adapter
, struct be_eq_obj
*eqo
);
2396 int be_cmd_cq_create(struct be_adapter
*adapter
, struct be_queue_info
*cq
,
2397 struct be_queue_info
*eq
, bool no_delay
,
2398 int num_cqe_dma_coalesce
);
2399 int be_cmd_mccq_create(struct be_adapter
*adapter
, struct be_queue_info
*mccq
,
2400 struct be_queue_info
*cq
);
2401 int be_cmd_txq_create(struct be_adapter
*adapter
, struct be_tx_obj
*txo
);
2402 int be_cmd_rxq_create(struct be_adapter
*adapter
, struct be_queue_info
*rxq
,
2403 u16 cq_id
, u16 frag_size
, u32 if_id
, u32 rss
, u8
*rss_id
);
2404 int be_cmd_q_destroy(struct be_adapter
*adapter
, struct be_queue_info
*q
,
2406 int be_cmd_rxq_destroy(struct be_adapter
*adapter
, struct be_queue_info
*q
);
2407 int be_cmd_link_status_query(struct be_adapter
*adapter
, u16
*link_speed
,
2408 u8
*link_status
, u32 dom
);
2409 int be_cmd_reset(struct be_adapter
*adapter
);
2410 int be_cmd_get_stats(struct be_adapter
*adapter
, struct be_dma_mem
*nonemb_cmd
);
2411 int lancer_cmd_get_pport_stats(struct be_adapter
*adapter
,
2412 struct be_dma_mem
*nonemb_cmd
);
2413 int be_cmd_get_fw_ver(struct be_adapter
*adapter
);
2414 int be_cmd_modify_eqd(struct be_adapter
*adapter
, struct be_set_eqd
*, int num
);
2415 int be_cmd_vlan_config(struct be_adapter
*adapter
, u32 if_id
, u16
*vtag_array
,
2416 u32 num
, u32 domain
);
2417 int be_cmd_rx_filter(struct be_adapter
*adapter
, u32 flags
, u32 status
);
2418 int be_cmd_set_flow_control(struct be_adapter
*adapter
, u32 tx_fc
, u32 rx_fc
);
2419 int be_cmd_get_flow_control(struct be_adapter
*adapter
, u32
*tx_fc
, u32
*rx_fc
);
2420 int be_cmd_query_fw_cfg(struct be_adapter
*adapter
);
2421 int be_cmd_reset_function(struct be_adapter
*adapter
);
2422 int be_cmd_rss_config(struct be_adapter
*adapter
, u8
*rsstable
,
2423 u32 rss_hash_opts
, u16 table_size
, const u8
*rss_hkey
);
2424 int be_process_mcc(struct be_adapter
*adapter
);
2425 int be_cmd_set_beacon_state(struct be_adapter
*adapter
, u8 port_num
, u8 beacon
,
2426 u8 status
, u8 state
);
2427 int be_cmd_get_beacon_state(struct be_adapter
*adapter
, u8 port_num
,
2429 int be_cmd_read_port_transceiver_data(struct be_adapter
*adapter
,
2430 u8 page_num
, u8
*data
);
2431 int be_cmd_query_cable_type(struct be_adapter
*adapter
);
2432 int be_cmd_query_sfp_info(struct be_adapter
*adapter
);
2433 int lancer_cmd_read_object(struct be_adapter
*adapter
, struct be_dma_mem
*cmd
,
2434 u32 data_size
, u32 data_offset
, const char *obj_name
,
2435 u32
*data_read
, u32
*eof
, u8
*addn_status
);
2436 int lancer_fw_download(struct be_adapter
*adapter
, const struct firmware
*fw
);
2437 int be_fw_download(struct be_adapter
*adapter
, const struct firmware
*fw
);
2438 int be_cmd_enable_magic_wol(struct be_adapter
*adapter
, u8
*mac
,
2439 struct be_dma_mem
*nonemb_cmd
);
2440 int be_cmd_fw_init(struct be_adapter
*adapter
);
2441 int be_cmd_fw_clean(struct be_adapter
*adapter
);
2442 void be_async_mcc_enable(struct be_adapter
*adapter
);
2443 void be_async_mcc_disable(struct be_adapter
*adapter
);
2444 int be_cmd_loopback_test(struct be_adapter
*adapter
, u32 port_num
,
2445 u32 loopback_type
, u32 pkt_size
, u32 num_pkts
,
2447 int be_cmd_ddr_dma_test(struct be_adapter
*adapter
, u64 pattern
, u32 byte_cnt
,
2448 struct be_dma_mem
*cmd
);
2449 int be_cmd_get_seeprom_data(struct be_adapter
*adapter
,
2450 struct be_dma_mem
*nonemb_cmd
);
2451 int be_cmd_set_loopback(struct be_adapter
*adapter
, u8 port_num
,
2452 u8 loopback_type
, u8 enable
);
2453 int be_cmd_get_phy_info(struct be_adapter
*adapter
);
2454 int be_cmd_config_qos(struct be_adapter
*adapter
, u32 max_rate
,
2455 u16 link_speed
, u8 domain
);
2456 void be_detect_error(struct be_adapter
*adapter
);
2457 int be_cmd_get_die_temperature(struct be_adapter
*adapter
);
2458 int be_cmd_get_cntl_attributes(struct be_adapter
*adapter
);
2459 int be_cmd_get_fat_dump_len(struct be_adapter
*adapter
, u32
*dump_size
);
2460 int be_cmd_get_fat_dump(struct be_adapter
*adapter
, u32 buf_len
, void *buf
);
2461 int be_cmd_req_native_mode(struct be_adapter
*adapter
);
2462 int be_cmd_get_fn_privileges(struct be_adapter
*adapter
, u32
*privilege
,
2464 int be_cmd_set_fn_privileges(struct be_adapter
*adapter
, u32 privileges
,
2466 int be_cmd_get_mac_from_list(struct be_adapter
*adapter
, u8
*mac
,
2467 bool *pmac_id_active
, u32
*pmac_id
,
2468 u32 if_handle
, u8 domain
);
2469 int be_cmd_get_active_mac(struct be_adapter
*adapter
, u32 pmac_id
, u8
*mac
,
2470 u32 if_handle
, bool active
, u32 domain
);
2471 int be_cmd_get_perm_mac(struct be_adapter
*adapter
, u8
*mac
);
2472 int be_cmd_set_mac_list(struct be_adapter
*adapter
, u8
*mac_array
, u8 mac_count
,
2474 int be_cmd_set_mac(struct be_adapter
*adapter
, u8
*mac
, int if_id
, u32 dom
);
2475 int be_cmd_set_hsw_config(struct be_adapter
*adapter
, u16 pvid
, u32 domain
,
2476 u16 intf_id
, u16 hsw_mode
, u8 spoofchk
);
2477 int be_cmd_get_hsw_config(struct be_adapter
*adapter
, u16
*pvid
, u32 domain
,
2478 u16 intf_id
, u8
*mode
, bool *spoofchk
);
2479 int be_cmd_get_acpi_wol_cap(struct be_adapter
*adapter
);
2480 int be_cmd_set_fw_log_level(struct be_adapter
*adapter
, u32 level
);
2481 int be_cmd_get_fw_log_level(struct be_adapter
*adapter
);
2482 int be_cmd_get_ext_fat_capabilites(struct be_adapter
*adapter
,
2483 struct be_dma_mem
*cmd
);
2484 int be_cmd_set_ext_fat_capabilites(struct be_adapter
*adapter
,
2485 struct be_dma_mem
*cmd
,
2486 struct be_fat_conf_params
*cfgs
);
2487 int lancer_physdev_ctrl(struct be_adapter
*adapter
, u32 mask
);
2488 int lancer_initiate_dump(struct be_adapter
*adapter
);
2489 int lancer_delete_dump(struct be_adapter
*adapter
);
2490 bool dump_present(struct be_adapter
*adapter
);
2491 int lancer_test_and_set_rdy_state(struct be_adapter
*adapter
);
2492 int be_cmd_query_port_name(struct be_adapter
*adapter
);
2493 int be_cmd_get_func_config(struct be_adapter
*adapter
,
2494 struct be_resources
*res
);
2495 int be_cmd_get_profile_config(struct be_adapter
*adapter
,
2496 struct be_resources
*res
,
2497 struct be_port_resources
*port_res
,
2498 u8 profile_type
, u8 query
, u8 domain
);
2499 int be_cmd_get_active_profile(struct be_adapter
*adapter
, u16
*profile
);
2500 int be_cmd_get_if_id(struct be_adapter
*adapter
, struct be_vf_cfg
*vf_cfg
,
2502 int be_cmd_enable_vf(struct be_adapter
*adapter
, u8 domain
);
2503 int be_cmd_intr_set(struct be_adapter
*adapter
, bool intr_enable
);
2504 int be_cmd_set_logical_link_config(struct be_adapter
*adapter
,
2505 int link_state
, u8 domain
);
2506 int be_cmd_set_vxlan_port(struct be_adapter
*adapter
, __be16 port
);
2507 int be_cmd_manage_iface(struct be_adapter
*adapter
, u32 iface
, u8 op
);
2508 int be_cmd_set_sriov_config(struct be_adapter
*adapter
,
2509 struct be_resources res
, u16 num_vfs
,
2510 struct be_resources
*vft_res
);
2511 int be_cmd_set_features(struct be_adapter
*adapter
);