1 /* bnx2x_main.c: Broadcom Everest network driver.
3 * Copyright (c) 2007-2011 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
11 * Based on code from Michael Chan's bnx2 driver
12 * UDP CSUM errata workaround by Arik Gendelman
13 * Slowpath and fastpath rework by Vladislav Zolotarov
14 * Statistics and Link management by Yitchak Gertner
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/kernel.h>
21 #include <linux/device.h> /* for dev_info() */
22 #include <linux/timer.h>
23 #include <linux/errno.h>
24 #include <linux/ioport.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
27 #include <linux/pci.h>
28 #include <linux/init.h>
29 #include <linux/netdevice.h>
30 #include <linux/etherdevice.h>
31 #include <linux/skbuff.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/bitops.h>
34 #include <linux/irq.h>
35 #include <linux/delay.h>
36 #include <asm/byteorder.h>
37 #include <linux/time.h>
38 #include <linux/ethtool.h>
39 #include <linux/mii.h>
40 #include <linux/if_vlan.h>
43 #include <net/checksum.h>
44 #include <net/ip6_checksum.h>
45 #include <linux/workqueue.h>
46 #include <linux/crc32.h>
47 #include <linux/crc32c.h>
48 #include <linux/prefetch.h>
49 #include <linux/zlib.h>
51 #include <linux/stringify.h>
55 #include "bnx2x_init.h"
56 #include "bnx2x_init_ops.h"
57 #include "bnx2x_cmn.h"
58 #include "bnx2x_dcb.h"
60 #include <linux/firmware.h>
61 #include "bnx2x_fw_file_hdr.h"
63 #define FW_FILE_VERSION \
64 __stringify(BCM_5710_FW_MAJOR_VERSION) "." \
65 __stringify(BCM_5710_FW_MINOR_VERSION) "." \
66 __stringify(BCM_5710_FW_REVISION_VERSION) "." \
67 __stringify(BCM_5710_FW_ENGINEERING_VERSION)
68 #define FW_FILE_NAME_E1 "bnx2x/bnx2x-e1-" FW_FILE_VERSION ".fw"
69 #define FW_FILE_NAME_E1H "bnx2x/bnx2x-e1h-" FW_FILE_VERSION ".fw"
70 #define FW_FILE_NAME_E2 "bnx2x/bnx2x-e2-" FW_FILE_VERSION ".fw"
72 /* Time in jiffies before concluding the transmitter is hung */
73 #define TX_TIMEOUT (5*HZ)
75 static char version
[] __devinitdata
=
76 "Broadcom NetXtreme II 5771x 10Gigabit Ethernet Driver "
77 DRV_MODULE_NAME
" " DRV_MODULE_VERSION
" (" DRV_MODULE_RELDATE
")\n";
79 MODULE_AUTHOR("Eliezer Tamir");
80 MODULE_DESCRIPTION("Broadcom NetXtreme II "
81 "BCM57710/57711/57711E/57712/57712E Driver");
82 MODULE_LICENSE("GPL");
83 MODULE_VERSION(DRV_MODULE_VERSION
);
84 MODULE_FIRMWARE(FW_FILE_NAME_E1
);
85 MODULE_FIRMWARE(FW_FILE_NAME_E1H
);
86 MODULE_FIRMWARE(FW_FILE_NAME_E2
);
88 static int multi_mode
= 1;
89 module_param(multi_mode
, int, 0);
90 MODULE_PARM_DESC(multi_mode
, " Multi queue mode "
91 "(0 Disable; 1 Enable (default))");
94 module_param(num_queues
, int, 0);
95 MODULE_PARM_DESC(num_queues
, " Number of queues for multi_mode=1"
96 " (default is as a number of CPUs)");
98 static int disable_tpa
;
99 module_param(disable_tpa
, int, 0);
100 MODULE_PARM_DESC(disable_tpa
, " Disable the TPA (LRO) feature");
103 module_param(int_mode
, int, 0);
104 MODULE_PARM_DESC(int_mode
, " Force interrupt mode other then MSI-X "
107 static int dropless_fc
;
108 module_param(dropless_fc
, int, 0);
109 MODULE_PARM_DESC(dropless_fc
, " Pause on exhausted host ring");
112 module_param(poll
, int, 0);
113 MODULE_PARM_DESC(poll
, " Use polling (for debug)");
115 static int mrrs
= -1;
116 module_param(mrrs
, int, 0);
117 MODULE_PARM_DESC(mrrs
, " Force Max Read Req Size (0..3) (for debug)");
120 module_param(debug
, int, 0);
121 MODULE_PARM_DESC(debug
, " Default debug msglevel");
123 static struct workqueue_struct
*bnx2x_wq
;
126 static u8 ALL_ENODE_MACS
[] = {0x01, 0x10, 0x18, 0x01, 0x00, 0x01};
129 enum bnx2x_board_type
{
137 /* indexed by board_type, above */
140 } board_info
[] __devinitdata
= {
141 { "Broadcom NetXtreme II BCM57710 XGb" },
142 { "Broadcom NetXtreme II BCM57711 XGb" },
143 { "Broadcom NetXtreme II BCM57711E XGb" },
144 { "Broadcom NetXtreme II BCM57712 XGb" },
145 { "Broadcom NetXtreme II BCM57712E XGb" }
148 static DEFINE_PCI_DEVICE_TABLE(bnx2x_pci_tbl
) = {
149 { PCI_VDEVICE(BROADCOM
, PCI_DEVICE_ID_NX2_57710
), BCM57710
},
150 { PCI_VDEVICE(BROADCOM
, PCI_DEVICE_ID_NX2_57711
), BCM57711
},
151 { PCI_VDEVICE(BROADCOM
, PCI_DEVICE_ID_NX2_57711E
), BCM57711E
},
152 { PCI_VDEVICE(BROADCOM
, PCI_DEVICE_ID_NX2_57712
), BCM57712
},
153 { PCI_VDEVICE(BROADCOM
, PCI_DEVICE_ID_NX2_57712E
), BCM57712E
},
157 MODULE_DEVICE_TABLE(pci
, bnx2x_pci_tbl
);
159 /****************************************************************************
160 * General service functions
161 ****************************************************************************/
163 static inline void __storm_memset_dma_mapping(struct bnx2x
*bp
,
164 u32 addr
, dma_addr_t mapping
)
166 REG_WR(bp
, addr
, U64_LO(mapping
));
167 REG_WR(bp
, addr
+ 4, U64_HI(mapping
));
170 static inline void __storm_memset_fill(struct bnx2x
*bp
,
171 u32 addr
, size_t size
, u32 val
)
174 for (i
= 0; i
< size
/4; i
++)
175 REG_WR(bp
, addr
+ (i
* 4), val
);
178 static inline void storm_memset_ustats_zero(struct bnx2x
*bp
,
179 u8 port
, u16 stat_id
)
181 size_t size
= sizeof(struct ustorm_per_client_stats
);
183 u32 addr
= BAR_USTRORM_INTMEM
+
184 USTORM_PER_COUNTER_ID_STATS_OFFSET(port
, stat_id
);
186 __storm_memset_fill(bp
, addr
, size
, 0);
189 static inline void storm_memset_tstats_zero(struct bnx2x
*bp
,
190 u8 port
, u16 stat_id
)
192 size_t size
= sizeof(struct tstorm_per_client_stats
);
194 u32 addr
= BAR_TSTRORM_INTMEM
+
195 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port
, stat_id
);
197 __storm_memset_fill(bp
, addr
, size
, 0);
200 static inline void storm_memset_xstats_zero(struct bnx2x
*bp
,
201 u8 port
, u16 stat_id
)
203 size_t size
= sizeof(struct xstorm_per_client_stats
);
205 u32 addr
= BAR_XSTRORM_INTMEM
+
206 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port
, stat_id
);
208 __storm_memset_fill(bp
, addr
, size
, 0);
212 static inline void storm_memset_spq_addr(struct bnx2x
*bp
,
213 dma_addr_t mapping
, u16 abs_fid
)
215 u32 addr
= XSEM_REG_FAST_MEMORY
+
216 XSTORM_SPQ_PAGE_BASE_OFFSET(abs_fid
);
218 __storm_memset_dma_mapping(bp
, addr
, mapping
);
221 static inline void storm_memset_ov(struct bnx2x
*bp
, u16 ov
, u16 abs_fid
)
223 REG_WR16(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_E1HOV_OFFSET(abs_fid
), ov
);
226 static inline void storm_memset_func_cfg(struct bnx2x
*bp
,
227 struct tstorm_eth_function_common_config
*tcfg
,
230 size_t size
= sizeof(struct tstorm_eth_function_common_config
);
232 u32 addr
= BAR_TSTRORM_INTMEM
+
233 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid
);
235 __storm_memset_struct(bp
, addr
, size
, (u32
*)tcfg
);
238 static inline void storm_memset_xstats_flags(struct bnx2x
*bp
,
239 struct stats_indication_flags
*flags
,
242 size_t size
= sizeof(struct stats_indication_flags
);
244 u32 addr
= BAR_XSTRORM_INTMEM
+ XSTORM_STATS_FLAGS_OFFSET(abs_fid
);
246 __storm_memset_struct(bp
, addr
, size
, (u32
*)flags
);
249 static inline void storm_memset_tstats_flags(struct bnx2x
*bp
,
250 struct stats_indication_flags
*flags
,
253 size_t size
= sizeof(struct stats_indication_flags
);
255 u32 addr
= BAR_TSTRORM_INTMEM
+ TSTORM_STATS_FLAGS_OFFSET(abs_fid
);
257 __storm_memset_struct(bp
, addr
, size
, (u32
*)flags
);
260 static inline void storm_memset_ustats_flags(struct bnx2x
*bp
,
261 struct stats_indication_flags
*flags
,
264 size_t size
= sizeof(struct stats_indication_flags
);
266 u32 addr
= BAR_USTRORM_INTMEM
+ USTORM_STATS_FLAGS_OFFSET(abs_fid
);
268 __storm_memset_struct(bp
, addr
, size
, (u32
*)flags
);
271 static inline void storm_memset_cstats_flags(struct bnx2x
*bp
,
272 struct stats_indication_flags
*flags
,
275 size_t size
= sizeof(struct stats_indication_flags
);
277 u32 addr
= BAR_CSTRORM_INTMEM
+ CSTORM_STATS_FLAGS_OFFSET(abs_fid
);
279 __storm_memset_struct(bp
, addr
, size
, (u32
*)flags
);
282 static inline void storm_memset_xstats_addr(struct bnx2x
*bp
,
283 dma_addr_t mapping
, u16 abs_fid
)
285 u32 addr
= BAR_XSTRORM_INTMEM
+
286 XSTORM_ETH_STATS_QUERY_ADDR_OFFSET(abs_fid
);
288 __storm_memset_dma_mapping(bp
, addr
, mapping
);
291 static inline void storm_memset_tstats_addr(struct bnx2x
*bp
,
292 dma_addr_t mapping
, u16 abs_fid
)
294 u32 addr
= BAR_TSTRORM_INTMEM
+
295 TSTORM_ETH_STATS_QUERY_ADDR_OFFSET(abs_fid
);
297 __storm_memset_dma_mapping(bp
, addr
, mapping
);
300 static inline void storm_memset_ustats_addr(struct bnx2x
*bp
,
301 dma_addr_t mapping
, u16 abs_fid
)
303 u32 addr
= BAR_USTRORM_INTMEM
+
304 USTORM_ETH_STATS_QUERY_ADDR_OFFSET(abs_fid
);
306 __storm_memset_dma_mapping(bp
, addr
, mapping
);
309 static inline void storm_memset_cstats_addr(struct bnx2x
*bp
,
310 dma_addr_t mapping
, u16 abs_fid
)
312 u32 addr
= BAR_CSTRORM_INTMEM
+
313 CSTORM_ETH_STATS_QUERY_ADDR_OFFSET(abs_fid
);
315 __storm_memset_dma_mapping(bp
, addr
, mapping
);
318 static inline void storm_memset_vf_to_pf(struct bnx2x
*bp
, u16 abs_fid
,
321 REG_WR8(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_VF_TO_PF_OFFSET(abs_fid
),
323 REG_WR8(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_VF_TO_PF_OFFSET(abs_fid
),
325 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+ TSTORM_VF_TO_PF_OFFSET(abs_fid
),
327 REG_WR8(bp
, BAR_USTRORM_INTMEM
+ USTORM_VF_TO_PF_OFFSET(abs_fid
),
331 static inline void storm_memset_func_en(struct bnx2x
*bp
, u16 abs_fid
,
334 REG_WR8(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_FUNC_EN_OFFSET(abs_fid
),
336 REG_WR8(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_FUNC_EN_OFFSET(abs_fid
),
338 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+ TSTORM_FUNC_EN_OFFSET(abs_fid
),
340 REG_WR8(bp
, BAR_USTRORM_INTMEM
+ USTORM_FUNC_EN_OFFSET(abs_fid
),
344 static inline void storm_memset_eq_data(struct bnx2x
*bp
,
345 struct event_ring_data
*eq_data
,
348 size_t size
= sizeof(struct event_ring_data
);
350 u32 addr
= BAR_CSTRORM_INTMEM
+ CSTORM_EVENT_RING_DATA_OFFSET(pfid
);
352 __storm_memset_struct(bp
, addr
, size
, (u32
*)eq_data
);
355 static inline void storm_memset_eq_prod(struct bnx2x
*bp
, u16 eq_prod
,
358 u32 addr
= BAR_CSTRORM_INTMEM
+ CSTORM_EVENT_RING_PROD_OFFSET(pfid
);
359 REG_WR16(bp
, addr
, eq_prod
);
362 static inline void storm_memset_hc_timeout(struct bnx2x
*bp
, u8 port
,
363 u16 fw_sb_id
, u8 sb_index
,
367 int index_offset
= CHIP_IS_E2(bp
) ?
368 offsetof(struct hc_status_block_data_e2
, index_data
) :
369 offsetof(struct hc_status_block_data_e1x
, index_data
);
370 u32 addr
= BAR_CSTRORM_INTMEM
+
371 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id
) +
373 sizeof(struct hc_index_data
)*sb_index
+
374 offsetof(struct hc_index_data
, timeout
);
375 REG_WR8(bp
, addr
, ticks
);
376 DP(NETIF_MSG_HW
, "port %x fw_sb_id %d sb_index %d ticks %d\n",
377 port
, fw_sb_id
, sb_index
, ticks
);
379 static inline void storm_memset_hc_disable(struct bnx2x
*bp
, u8 port
,
380 u16 fw_sb_id
, u8 sb_index
,
383 u32 enable_flag
= disable
? 0 : (1 << HC_INDEX_DATA_HC_ENABLED_SHIFT
);
384 int index_offset
= CHIP_IS_E2(bp
) ?
385 offsetof(struct hc_status_block_data_e2
, index_data
) :
386 offsetof(struct hc_status_block_data_e1x
, index_data
);
387 u32 addr
= BAR_CSTRORM_INTMEM
+
388 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id
) +
390 sizeof(struct hc_index_data
)*sb_index
+
391 offsetof(struct hc_index_data
, flags
);
392 u16 flags
= REG_RD16(bp
, addr
);
394 flags
&= ~HC_INDEX_DATA_HC_ENABLED
;
395 flags
|= enable_flag
;
396 REG_WR16(bp
, addr
, flags
);
397 DP(NETIF_MSG_HW
, "port %x fw_sb_id %d sb_index %d disable %d\n",
398 port
, fw_sb_id
, sb_index
, disable
);
402 * locking is done by mcp
404 static void bnx2x_reg_wr_ind(struct bnx2x
*bp
, u32 addr
, u32 val
)
406 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_ADDRESS
, addr
);
407 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_DATA
, val
);
408 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_ADDRESS
,
409 PCICFG_VENDOR_ID_OFFSET
);
412 static u32
bnx2x_reg_rd_ind(struct bnx2x
*bp
, u32 addr
)
416 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_ADDRESS
, addr
);
417 pci_read_config_dword(bp
->pdev
, PCICFG_GRC_DATA
, &val
);
418 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_ADDRESS
,
419 PCICFG_VENDOR_ID_OFFSET
);
424 #define DMAE_DP_SRC_GRC "grc src_addr [%08x]"
425 #define DMAE_DP_SRC_PCI "pci src_addr [%x:%08x]"
426 #define DMAE_DP_DST_GRC "grc dst_addr [%08x]"
427 #define DMAE_DP_DST_PCI "pci dst_addr [%x:%08x]"
428 #define DMAE_DP_DST_NONE "dst_addr [none]"
430 static void bnx2x_dp_dmae(struct bnx2x
*bp
, struct dmae_command
*dmae
,
433 u32 src_type
= dmae
->opcode
& DMAE_COMMAND_SRC
;
435 switch (dmae
->opcode
& DMAE_COMMAND_DST
) {
436 case DMAE_CMD_DST_PCI
:
437 if (src_type
== DMAE_CMD_SRC_PCI
)
438 DP(msglvl
, "DMAE: opcode 0x%08x\n"
439 "src [%x:%08x], len [%d*4], dst [%x:%08x]\n"
440 "comp_addr [%x:%08x], comp_val 0x%08x\n",
441 dmae
->opcode
, dmae
->src_addr_hi
, dmae
->src_addr_lo
,
442 dmae
->len
, dmae
->dst_addr_hi
, dmae
->dst_addr_lo
,
443 dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
446 DP(msglvl
, "DMAE: opcode 0x%08x\n"
447 "src [%08x], len [%d*4], dst [%x:%08x]\n"
448 "comp_addr [%x:%08x], comp_val 0x%08x\n",
449 dmae
->opcode
, dmae
->src_addr_lo
>> 2,
450 dmae
->len
, dmae
->dst_addr_hi
, dmae
->dst_addr_lo
,
451 dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
454 case DMAE_CMD_DST_GRC
:
455 if (src_type
== DMAE_CMD_SRC_PCI
)
456 DP(msglvl
, "DMAE: opcode 0x%08x\n"
457 "src [%x:%08x], len [%d*4], dst_addr [%08x]\n"
458 "comp_addr [%x:%08x], comp_val 0x%08x\n",
459 dmae
->opcode
, dmae
->src_addr_hi
, dmae
->src_addr_lo
,
460 dmae
->len
, dmae
->dst_addr_lo
>> 2,
461 dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
464 DP(msglvl
, "DMAE: opcode 0x%08x\n"
465 "src [%08x], len [%d*4], dst [%08x]\n"
466 "comp_addr [%x:%08x], comp_val 0x%08x\n",
467 dmae
->opcode
, dmae
->src_addr_lo
>> 2,
468 dmae
->len
, dmae
->dst_addr_lo
>> 2,
469 dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
473 if (src_type
== DMAE_CMD_SRC_PCI
)
474 DP(msglvl
, "DMAE: opcode 0x%08x\n"
475 DP_LEVEL
"src_addr [%x:%08x] len [%d * 4] "
477 DP_LEVEL
"comp_addr [%x:%08x] comp_val 0x%08x\n",
478 dmae
->opcode
, dmae
->src_addr_hi
, dmae
->src_addr_lo
,
479 dmae
->len
, dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
482 DP(msglvl
, "DMAE: opcode 0x%08x\n"
483 DP_LEVEL
"src_addr [%08x] len [%d * 4] "
485 DP_LEVEL
"comp_addr [%x:%08x] comp_val 0x%08x\n",
486 dmae
->opcode
, dmae
->src_addr_lo
>> 2,
487 dmae
->len
, dmae
->comp_addr_hi
, dmae
->comp_addr_lo
,
494 const u32 dmae_reg_go_c
[] = {
495 DMAE_REG_GO_C0
, DMAE_REG_GO_C1
, DMAE_REG_GO_C2
, DMAE_REG_GO_C3
,
496 DMAE_REG_GO_C4
, DMAE_REG_GO_C5
, DMAE_REG_GO_C6
, DMAE_REG_GO_C7
,
497 DMAE_REG_GO_C8
, DMAE_REG_GO_C9
, DMAE_REG_GO_C10
, DMAE_REG_GO_C11
,
498 DMAE_REG_GO_C12
, DMAE_REG_GO_C13
, DMAE_REG_GO_C14
, DMAE_REG_GO_C15
501 /* copy command into DMAE command memory and set DMAE command go */
502 void bnx2x_post_dmae(struct bnx2x
*bp
, struct dmae_command
*dmae
, int idx
)
507 cmd_offset
= (DMAE_REG_CMD_MEM
+ sizeof(struct dmae_command
) * idx
);
508 for (i
= 0; i
< (sizeof(struct dmae_command
)/4); i
++) {
509 REG_WR(bp
, cmd_offset
+ i
*4, *(((u32
*)dmae
) + i
));
511 DP(BNX2X_MSG_OFF
, "DMAE cmd[%d].%d (0x%08x) : 0x%08x\n",
512 idx
, i
, cmd_offset
+ i
*4, *(((u32
*)dmae
) + i
));
514 REG_WR(bp
, dmae_reg_go_c
[idx
], 1);
517 u32
bnx2x_dmae_opcode_add_comp(u32 opcode
, u8 comp_type
)
519 return opcode
| ((comp_type
<< DMAE_COMMAND_C_DST_SHIFT
) |
523 u32
bnx2x_dmae_opcode_clr_src_reset(u32 opcode
)
525 return opcode
& ~DMAE_CMD_SRC_RESET
;
528 u32
bnx2x_dmae_opcode(struct bnx2x
*bp
, u8 src_type
, u8 dst_type
,
529 bool with_comp
, u8 comp_type
)
533 opcode
|= ((src_type
<< DMAE_COMMAND_SRC_SHIFT
) |
534 (dst_type
<< DMAE_COMMAND_DST_SHIFT
));
536 opcode
|= (DMAE_CMD_SRC_RESET
| DMAE_CMD_DST_RESET
);
538 opcode
|= (BP_PORT(bp
) ? DMAE_CMD_PORT_1
: DMAE_CMD_PORT_0
);
539 opcode
|= ((BP_E1HVN(bp
) << DMAE_CMD_E1HVN_SHIFT
) |
540 (BP_E1HVN(bp
) << DMAE_COMMAND_DST_VN_SHIFT
));
541 opcode
|= (DMAE_COM_SET_ERR
<< DMAE_COMMAND_ERR_POLICY_SHIFT
);
544 opcode
|= DMAE_CMD_ENDIANITY_B_DW_SWAP
;
546 opcode
|= DMAE_CMD_ENDIANITY_DW_SWAP
;
549 opcode
= bnx2x_dmae_opcode_add_comp(opcode
, comp_type
);
553 static void bnx2x_prep_dmae_with_comp(struct bnx2x
*bp
,
554 struct dmae_command
*dmae
,
555 u8 src_type
, u8 dst_type
)
557 memset(dmae
, 0, sizeof(struct dmae_command
));
560 dmae
->opcode
= bnx2x_dmae_opcode(bp
, src_type
, dst_type
,
561 true, DMAE_COMP_PCI
);
563 /* fill in the completion parameters */
564 dmae
->comp_addr_lo
= U64_LO(bnx2x_sp_mapping(bp
, wb_comp
));
565 dmae
->comp_addr_hi
= U64_HI(bnx2x_sp_mapping(bp
, wb_comp
));
566 dmae
->comp_val
= DMAE_COMP_VAL
;
569 /* issue a dmae command over the init-channel and wailt for completion */
570 static int bnx2x_issue_dmae_with_comp(struct bnx2x
*bp
,
571 struct dmae_command
*dmae
)
573 u32
*wb_comp
= bnx2x_sp(bp
, wb_comp
);
574 int cnt
= CHIP_REV_IS_SLOW(bp
) ? (400000) : 40;
577 DP(BNX2X_MSG_OFF
, "data before [0x%08x 0x%08x 0x%08x 0x%08x]\n",
578 bp
->slowpath
->wb_data
[0], bp
->slowpath
->wb_data
[1],
579 bp
->slowpath
->wb_data
[2], bp
->slowpath
->wb_data
[3]);
581 /* lock the dmae channel */
582 spin_lock_bh(&bp
->dmae_lock
);
584 /* reset completion */
587 /* post the command on the channel used for initializations */
588 bnx2x_post_dmae(bp
, dmae
, INIT_DMAE_C(bp
));
590 /* wait for completion */
592 while ((*wb_comp
& ~DMAE_PCI_ERR_FLAG
) != DMAE_COMP_VAL
) {
593 DP(BNX2X_MSG_OFF
, "wb_comp 0x%08x\n", *wb_comp
);
596 BNX2X_ERR("DMAE timeout!\n");
603 if (*wb_comp
& DMAE_PCI_ERR_FLAG
) {
604 BNX2X_ERR("DMAE PCI error!\n");
608 DP(BNX2X_MSG_OFF
, "data after [0x%08x 0x%08x 0x%08x 0x%08x]\n",
609 bp
->slowpath
->wb_data
[0], bp
->slowpath
->wb_data
[1],
610 bp
->slowpath
->wb_data
[2], bp
->slowpath
->wb_data
[3]);
613 spin_unlock_bh(&bp
->dmae_lock
);
617 void bnx2x_write_dmae(struct bnx2x
*bp
, dma_addr_t dma_addr
, u32 dst_addr
,
620 struct dmae_command dmae
;
622 if (!bp
->dmae_ready
) {
623 u32
*data
= bnx2x_sp(bp
, wb_data
[0]);
625 DP(BNX2X_MSG_OFF
, "DMAE is not ready (dst_addr %08x len32 %d)"
626 " using indirect\n", dst_addr
, len32
);
627 bnx2x_init_ind_wr(bp
, dst_addr
, data
, len32
);
631 /* set opcode and fixed command fields */
632 bnx2x_prep_dmae_with_comp(bp
, &dmae
, DMAE_SRC_PCI
, DMAE_DST_GRC
);
634 /* fill in addresses and len */
635 dmae
.src_addr_lo
= U64_LO(dma_addr
);
636 dmae
.src_addr_hi
= U64_HI(dma_addr
);
637 dmae
.dst_addr_lo
= dst_addr
>> 2;
638 dmae
.dst_addr_hi
= 0;
641 bnx2x_dp_dmae(bp
, &dmae
, BNX2X_MSG_OFF
);
643 /* issue the command and wait for completion */
644 bnx2x_issue_dmae_with_comp(bp
, &dmae
);
647 void bnx2x_read_dmae(struct bnx2x
*bp
, u32 src_addr
, u32 len32
)
649 struct dmae_command dmae
;
651 if (!bp
->dmae_ready
) {
652 u32
*data
= bnx2x_sp(bp
, wb_data
[0]);
655 DP(BNX2X_MSG_OFF
, "DMAE is not ready (src_addr %08x len32 %d)"
656 " using indirect\n", src_addr
, len32
);
657 for (i
= 0; i
< len32
; i
++)
658 data
[i
] = bnx2x_reg_rd_ind(bp
, src_addr
+ i
*4);
662 /* set opcode and fixed command fields */
663 bnx2x_prep_dmae_with_comp(bp
, &dmae
, DMAE_SRC_GRC
, DMAE_DST_PCI
);
665 /* fill in addresses and len */
666 dmae
.src_addr_lo
= src_addr
>> 2;
667 dmae
.src_addr_hi
= 0;
668 dmae
.dst_addr_lo
= U64_LO(bnx2x_sp_mapping(bp
, wb_data
));
669 dmae
.dst_addr_hi
= U64_HI(bnx2x_sp_mapping(bp
, wb_data
));
672 bnx2x_dp_dmae(bp
, &dmae
, BNX2X_MSG_OFF
);
674 /* issue the command and wait for completion */
675 bnx2x_issue_dmae_with_comp(bp
, &dmae
);
678 static void bnx2x_write_dmae_phys_len(struct bnx2x
*bp
, dma_addr_t phys_addr
,
681 int dmae_wr_max
= DMAE_LEN32_WR_MAX(bp
);
684 while (len
> dmae_wr_max
) {
685 bnx2x_write_dmae(bp
, phys_addr
+ offset
,
686 addr
+ offset
, dmae_wr_max
);
687 offset
+= dmae_wr_max
* 4;
691 bnx2x_write_dmae(bp
, phys_addr
+ offset
, addr
+ offset
, len
);
694 /* used only for slowpath so not inlined */
695 static void bnx2x_wb_wr(struct bnx2x
*bp
, int reg
, u32 val_hi
, u32 val_lo
)
699 wb_write
[0] = val_hi
;
700 wb_write
[1] = val_lo
;
701 REG_WR_DMAE(bp
, reg
, wb_write
, 2);
705 static u64
bnx2x_wb_rd(struct bnx2x
*bp
, int reg
)
709 REG_RD_DMAE(bp
, reg
, wb_data
, 2);
711 return HILO_U64(wb_data
[0], wb_data
[1]);
715 static int bnx2x_mc_assert(struct bnx2x
*bp
)
719 u32 row0
, row1
, row2
, row3
;
722 last_idx
= REG_RD8(bp
, BAR_XSTRORM_INTMEM
+
723 XSTORM_ASSERT_LIST_INDEX_OFFSET
);
725 BNX2X_ERR("XSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx
);
727 /* print the asserts */
728 for (i
= 0; i
< STROM_ASSERT_ARRAY_SIZE
; i
++) {
730 row0
= REG_RD(bp
, BAR_XSTRORM_INTMEM
+
731 XSTORM_ASSERT_LIST_OFFSET(i
));
732 row1
= REG_RD(bp
, BAR_XSTRORM_INTMEM
+
733 XSTORM_ASSERT_LIST_OFFSET(i
) + 4);
734 row2
= REG_RD(bp
, BAR_XSTRORM_INTMEM
+
735 XSTORM_ASSERT_LIST_OFFSET(i
) + 8);
736 row3
= REG_RD(bp
, BAR_XSTRORM_INTMEM
+
737 XSTORM_ASSERT_LIST_OFFSET(i
) + 12);
739 if (row0
!= COMMON_ASM_INVALID_ASSERT_OPCODE
) {
740 BNX2X_ERR("XSTORM_ASSERT_INDEX 0x%x = 0x%08x"
741 " 0x%08x 0x%08x 0x%08x\n",
742 i
, row3
, row2
, row1
, row0
);
750 last_idx
= REG_RD8(bp
, BAR_TSTRORM_INTMEM
+
751 TSTORM_ASSERT_LIST_INDEX_OFFSET
);
753 BNX2X_ERR("TSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx
);
755 /* print the asserts */
756 for (i
= 0; i
< STROM_ASSERT_ARRAY_SIZE
; i
++) {
758 row0
= REG_RD(bp
, BAR_TSTRORM_INTMEM
+
759 TSTORM_ASSERT_LIST_OFFSET(i
));
760 row1
= REG_RD(bp
, BAR_TSTRORM_INTMEM
+
761 TSTORM_ASSERT_LIST_OFFSET(i
) + 4);
762 row2
= REG_RD(bp
, BAR_TSTRORM_INTMEM
+
763 TSTORM_ASSERT_LIST_OFFSET(i
) + 8);
764 row3
= REG_RD(bp
, BAR_TSTRORM_INTMEM
+
765 TSTORM_ASSERT_LIST_OFFSET(i
) + 12);
767 if (row0
!= COMMON_ASM_INVALID_ASSERT_OPCODE
) {
768 BNX2X_ERR("TSTORM_ASSERT_INDEX 0x%x = 0x%08x"
769 " 0x%08x 0x%08x 0x%08x\n",
770 i
, row3
, row2
, row1
, row0
);
778 last_idx
= REG_RD8(bp
, BAR_CSTRORM_INTMEM
+
779 CSTORM_ASSERT_LIST_INDEX_OFFSET
);
781 BNX2X_ERR("CSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx
);
783 /* print the asserts */
784 for (i
= 0; i
< STROM_ASSERT_ARRAY_SIZE
; i
++) {
786 row0
= REG_RD(bp
, BAR_CSTRORM_INTMEM
+
787 CSTORM_ASSERT_LIST_OFFSET(i
));
788 row1
= REG_RD(bp
, BAR_CSTRORM_INTMEM
+
789 CSTORM_ASSERT_LIST_OFFSET(i
) + 4);
790 row2
= REG_RD(bp
, BAR_CSTRORM_INTMEM
+
791 CSTORM_ASSERT_LIST_OFFSET(i
) + 8);
792 row3
= REG_RD(bp
, BAR_CSTRORM_INTMEM
+
793 CSTORM_ASSERT_LIST_OFFSET(i
) + 12);
795 if (row0
!= COMMON_ASM_INVALID_ASSERT_OPCODE
) {
796 BNX2X_ERR("CSTORM_ASSERT_INDEX 0x%x = 0x%08x"
797 " 0x%08x 0x%08x 0x%08x\n",
798 i
, row3
, row2
, row1
, row0
);
806 last_idx
= REG_RD8(bp
, BAR_USTRORM_INTMEM
+
807 USTORM_ASSERT_LIST_INDEX_OFFSET
);
809 BNX2X_ERR("USTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx
);
811 /* print the asserts */
812 for (i
= 0; i
< STROM_ASSERT_ARRAY_SIZE
; i
++) {
814 row0
= REG_RD(bp
, BAR_USTRORM_INTMEM
+
815 USTORM_ASSERT_LIST_OFFSET(i
));
816 row1
= REG_RD(bp
, BAR_USTRORM_INTMEM
+
817 USTORM_ASSERT_LIST_OFFSET(i
) + 4);
818 row2
= REG_RD(bp
, BAR_USTRORM_INTMEM
+
819 USTORM_ASSERT_LIST_OFFSET(i
) + 8);
820 row3
= REG_RD(bp
, BAR_USTRORM_INTMEM
+
821 USTORM_ASSERT_LIST_OFFSET(i
) + 12);
823 if (row0
!= COMMON_ASM_INVALID_ASSERT_OPCODE
) {
824 BNX2X_ERR("USTORM_ASSERT_INDEX 0x%x = 0x%08x"
825 " 0x%08x 0x%08x 0x%08x\n",
826 i
, row3
, row2
, row1
, row0
);
836 static void bnx2x_fw_dump(struct bnx2x
*bp
)
842 u32 trace_shmem_base
;
844 BNX2X_ERR("NO MCP - can not dump\n");
848 if (BP_PATH(bp
) == 0)
849 trace_shmem_base
= bp
->common
.shmem_base
;
851 trace_shmem_base
= SHMEM2_RD(bp
, other_shmem_base_addr
);
852 addr
= trace_shmem_base
- 0x0800 + 4;
853 mark
= REG_RD(bp
, addr
);
854 mark
= (CHIP_IS_E1x(bp
) ? MCP_REG_MCPR_SCRATCH
: MCP_A_REG_MCPR_SCRATCH
)
855 + ((mark
+ 0x3) & ~0x3) - 0x08000000;
856 pr_err("begin fw dump (mark 0x%x)\n", mark
);
859 for (offset
= mark
; offset
<= trace_shmem_base
; offset
+= 0x8*4) {
860 for (word
= 0; word
< 8; word
++)
861 data
[word
] = htonl(REG_RD(bp
, offset
+ 4*word
));
863 pr_cont("%s", (char *)data
);
865 for (offset
= addr
+ 4; offset
<= mark
; offset
+= 0x8*4) {
866 for (word
= 0; word
< 8; word
++)
867 data
[word
] = htonl(REG_RD(bp
, offset
+ 4*word
));
869 pr_cont("%s", (char *)data
);
871 pr_err("end of fw dump\n");
874 void bnx2x_panic_dump(struct bnx2x
*bp
)
878 struct hc_sp_status_block_data sp_sb_data
;
879 int func
= BP_FUNC(bp
);
880 #ifdef BNX2X_STOP_ON_ERROR
881 u16 start
= 0, end
= 0;
884 bp
->stats_state
= STATS_STATE_DISABLED
;
885 DP(BNX2X_MSG_STATS
, "stats_state - DISABLED\n");
887 BNX2X_ERR("begin crash dump -----------------\n");
891 BNX2X_ERR("def_idx(0x%x) def_att_idx(0x%x) attn_state(0x%x)"
892 " spq_prod_idx(0x%x)\n",
893 bp
->def_idx
, bp
->def_att_idx
,
894 bp
->attn_state
, bp
->spq_prod_idx
);
895 BNX2X_ERR("DSB: attn bits(0x%x) ack(0x%x) id(0x%x) idx(0x%x)\n",
896 bp
->def_status_blk
->atten_status_block
.attn_bits
,
897 bp
->def_status_blk
->atten_status_block
.attn_bits_ack
,
898 bp
->def_status_blk
->atten_status_block
.status_block_id
,
899 bp
->def_status_blk
->atten_status_block
.attn_bits_index
);
901 for (i
= 0; i
< HC_SP_SB_MAX_INDICES
; i
++)
903 bp
->def_status_blk
->sp_sb
.index_values
[i
],
904 (i
== HC_SP_SB_MAX_INDICES
- 1) ? ") " : " ");
906 for (i
= 0; i
< sizeof(struct hc_sp_status_block_data
)/sizeof(u32
); i
++)
907 *((u32
*)&sp_sb_data
+ i
) = REG_RD(bp
, BAR_CSTRORM_INTMEM
+
908 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func
) +
911 pr_cont("igu_sb_id(0x%x) igu_seg_id (0x%x) "
912 "pf_id(0x%x) vnic_id(0x%x) "
913 "vf_id(0x%x) vf_valid (0x%x)\n",
914 sp_sb_data
.igu_sb_id
,
915 sp_sb_data
.igu_seg_id
,
916 sp_sb_data
.p_func
.pf_id
,
917 sp_sb_data
.p_func
.vnic_id
,
918 sp_sb_data
.p_func
.vf_id
,
919 sp_sb_data
.p_func
.vf_valid
);
922 for_each_eth_queue(bp
, i
) {
923 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
925 struct hc_status_block_data_e2 sb_data_e2
;
926 struct hc_status_block_data_e1x sb_data_e1x
;
927 struct hc_status_block_sm
*hc_sm_p
=
929 sb_data_e2
.common
.state_machine
:
930 sb_data_e1x
.common
.state_machine
;
931 struct hc_index_data
*hc_index_p
=
933 sb_data_e2
.index_data
:
934 sb_data_e1x
.index_data
;
939 BNX2X_ERR("fp%d: rx_bd_prod(0x%x) rx_bd_cons(0x%x)"
940 " rx_comp_prod(0x%x)"
941 " rx_comp_cons(0x%x) *rx_cons_sb(0x%x)\n",
942 i
, fp
->rx_bd_prod
, fp
->rx_bd_cons
,
944 fp
->rx_comp_cons
, le16_to_cpu(*fp
->rx_cons_sb
));
945 BNX2X_ERR(" rx_sge_prod(0x%x) last_max_sge(0x%x)"
946 " fp_hc_idx(0x%x)\n",
947 fp
->rx_sge_prod
, fp
->last_max_sge
,
948 le16_to_cpu(fp
->fp_hc_idx
));
951 BNX2X_ERR("fp%d: tx_pkt_prod(0x%x) tx_pkt_cons(0x%x)"
952 " tx_bd_prod(0x%x) tx_bd_cons(0x%x)"
953 " *tx_cons_sb(0x%x)\n",
954 i
, fp
->tx_pkt_prod
, fp
->tx_pkt_cons
, fp
->tx_bd_prod
,
955 fp
->tx_bd_cons
, le16_to_cpu(*fp
->tx_cons_sb
));
957 loop
= CHIP_IS_E2(bp
) ?
958 HC_SB_MAX_INDICES_E2
: HC_SB_MAX_INDICES_E1X
;
966 BNX2X_ERR(" run indexes (");
967 for (j
= 0; j
< HC_SB_MAX_SM
; j
++)
969 fp
->sb_running_index
[j
],
970 (j
== HC_SB_MAX_SM
- 1) ? ")" : " ");
972 BNX2X_ERR(" indexes (");
973 for (j
= 0; j
< loop
; j
++)
975 fp
->sb_index_values
[j
],
976 (j
== loop
- 1) ? ")" : " ");
978 data_size
= CHIP_IS_E2(bp
) ?
979 sizeof(struct hc_status_block_data_e2
) :
980 sizeof(struct hc_status_block_data_e1x
);
981 data_size
/= sizeof(u32
);
982 sb_data_p
= CHIP_IS_E2(bp
) ?
985 /* copy sb data in here */
986 for (j
= 0; j
< data_size
; j
++)
987 *(sb_data_p
+ j
) = REG_RD(bp
, BAR_CSTRORM_INTMEM
+
988 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp
->fw_sb_id
) +
991 if (CHIP_IS_E2(bp
)) {
992 pr_cont("pf_id(0x%x) vf_id (0x%x) vf_valid(0x%x) "
993 "vnic_id(0x%x) same_igu_sb_1b(0x%x)\n",
994 sb_data_e2
.common
.p_func
.pf_id
,
995 sb_data_e2
.common
.p_func
.vf_id
,
996 sb_data_e2
.common
.p_func
.vf_valid
,
997 sb_data_e2
.common
.p_func
.vnic_id
,
998 sb_data_e2
.common
.same_igu_sb_1b
);
1000 pr_cont("pf_id(0x%x) vf_id (0x%x) vf_valid(0x%x) "
1001 "vnic_id(0x%x) same_igu_sb_1b(0x%x)\n",
1002 sb_data_e1x
.common
.p_func
.pf_id
,
1003 sb_data_e1x
.common
.p_func
.vf_id
,
1004 sb_data_e1x
.common
.p_func
.vf_valid
,
1005 sb_data_e1x
.common
.p_func
.vnic_id
,
1006 sb_data_e1x
.common
.same_igu_sb_1b
);
1010 for (j
= 0; j
< HC_SB_MAX_SM
; j
++) {
1011 pr_cont("SM[%d] __flags (0x%x) "
1012 "igu_sb_id (0x%x) igu_seg_id(0x%x) "
1013 "time_to_expire (0x%x) "
1014 "timer_value(0x%x)\n", j
,
1016 hc_sm_p
[j
].igu_sb_id
,
1017 hc_sm_p
[j
].igu_seg_id
,
1018 hc_sm_p
[j
].time_to_expire
,
1019 hc_sm_p
[j
].timer_value
);
1023 for (j
= 0; j
< loop
; j
++) {
1024 pr_cont("INDEX[%d] flags (0x%x) "
1025 "timeout (0x%x)\n", j
,
1026 hc_index_p
[j
].flags
,
1027 hc_index_p
[j
].timeout
);
1031 #ifdef BNX2X_STOP_ON_ERROR
1034 for_each_rx_queue(bp
, i
) {
1035 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
1037 start
= RX_BD(le16_to_cpu(*fp
->rx_cons_sb
) - 10);
1038 end
= RX_BD(le16_to_cpu(*fp
->rx_cons_sb
) + 503);
1039 for (j
= start
; j
!= end
; j
= RX_BD(j
+ 1)) {
1040 u32
*rx_bd
= (u32
*)&fp
->rx_desc_ring
[j
];
1041 struct sw_rx_bd
*sw_bd
= &fp
->rx_buf_ring
[j
];
1043 BNX2X_ERR("fp%d: rx_bd[%x]=[%x:%x] sw_bd=[%p]\n",
1044 i
, j
, rx_bd
[1], rx_bd
[0], sw_bd
->skb
);
1047 start
= RX_SGE(fp
->rx_sge_prod
);
1048 end
= RX_SGE(fp
->last_max_sge
);
1049 for (j
= start
; j
!= end
; j
= RX_SGE(j
+ 1)) {
1050 u32
*rx_sge
= (u32
*)&fp
->rx_sge_ring
[j
];
1051 struct sw_rx_page
*sw_page
= &fp
->rx_page_ring
[j
];
1053 BNX2X_ERR("fp%d: rx_sge[%x]=[%x:%x] sw_page=[%p]\n",
1054 i
, j
, rx_sge
[1], rx_sge
[0], sw_page
->page
);
1057 start
= RCQ_BD(fp
->rx_comp_cons
- 10);
1058 end
= RCQ_BD(fp
->rx_comp_cons
+ 503);
1059 for (j
= start
; j
!= end
; j
= RCQ_BD(j
+ 1)) {
1060 u32
*cqe
= (u32
*)&fp
->rx_comp_ring
[j
];
1062 BNX2X_ERR("fp%d: cqe[%x]=[%x:%x:%x:%x]\n",
1063 i
, j
, cqe
[0], cqe
[1], cqe
[2], cqe
[3]);
1068 for_each_tx_queue(bp
, i
) {
1069 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
1071 start
= TX_BD(le16_to_cpu(*fp
->tx_cons_sb
) - 10);
1072 end
= TX_BD(le16_to_cpu(*fp
->tx_cons_sb
) + 245);
1073 for (j
= start
; j
!= end
; j
= TX_BD(j
+ 1)) {
1074 struct sw_tx_bd
*sw_bd
= &fp
->tx_buf_ring
[j
];
1076 BNX2X_ERR("fp%d: packet[%x]=[%p,%x]\n",
1077 i
, j
, sw_bd
->skb
, sw_bd
->first_bd
);
1080 start
= TX_BD(fp
->tx_bd_cons
- 10);
1081 end
= TX_BD(fp
->tx_bd_cons
+ 254);
1082 for (j
= start
; j
!= end
; j
= TX_BD(j
+ 1)) {
1083 u32
*tx_bd
= (u32
*)&fp
->tx_desc_ring
[j
];
1085 BNX2X_ERR("fp%d: tx_bd[%x]=[%x:%x:%x:%x]\n",
1086 i
, j
, tx_bd
[0], tx_bd
[1], tx_bd
[2], tx_bd
[3]);
1091 bnx2x_mc_assert(bp
);
1092 BNX2X_ERR("end crash dump -----------------\n");
1095 static void bnx2x_hc_int_enable(struct bnx2x
*bp
)
1097 int port
= BP_PORT(bp
);
1098 u32 addr
= port
? HC_REG_CONFIG_1
: HC_REG_CONFIG_0
;
1099 u32 val
= REG_RD(bp
, addr
);
1100 int msix
= (bp
->flags
& USING_MSIX_FLAG
) ? 1 : 0;
1101 int msi
= (bp
->flags
& USING_MSI_FLAG
) ? 1 : 0;
1104 val
&= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0
|
1105 HC_CONFIG_0_REG_INT_LINE_EN_0
);
1106 val
|= (HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0
|
1107 HC_CONFIG_0_REG_ATTN_BIT_EN_0
);
1109 val
&= ~HC_CONFIG_0_REG_INT_LINE_EN_0
;
1110 val
|= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0
|
1111 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0
|
1112 HC_CONFIG_0_REG_ATTN_BIT_EN_0
);
1114 val
|= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0
|
1115 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0
|
1116 HC_CONFIG_0_REG_INT_LINE_EN_0
|
1117 HC_CONFIG_0_REG_ATTN_BIT_EN_0
);
1119 if (!CHIP_IS_E1(bp
)) {
1120 DP(NETIF_MSG_INTR
, "write %x to HC %d (addr 0x%x)\n",
1123 REG_WR(bp
, addr
, val
);
1125 val
&= ~HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0
;
1130 REG_WR(bp
, HC_REG_INT_MASK
+ port
*4, 0x1FFFF);
1132 DP(NETIF_MSG_INTR
, "write %x to HC %d (addr 0x%x) mode %s\n",
1133 val
, port
, addr
, (msix
? "MSI-X" : (msi
? "MSI" : "INTx")));
1135 REG_WR(bp
, addr
, val
);
1137 * Ensure that HC_CONFIG is written before leading/trailing edge config
1142 if (!CHIP_IS_E1(bp
)) {
1143 /* init leading/trailing edge */
1145 val
= (0xee0f | (1 << (BP_E1HVN(bp
) + 4)));
1147 /* enable nig and gpio3 attention */
1152 REG_WR(bp
, HC_REG_TRAILING_EDGE_0
+ port
*8, val
);
1153 REG_WR(bp
, HC_REG_LEADING_EDGE_0
+ port
*8, val
);
1156 /* Make sure that interrupts are indeed enabled from here on */
1160 static void bnx2x_igu_int_enable(struct bnx2x
*bp
)
1163 int msix
= (bp
->flags
& USING_MSIX_FLAG
) ? 1 : 0;
1164 int msi
= (bp
->flags
& USING_MSI_FLAG
) ? 1 : 0;
1166 val
= REG_RD(bp
, IGU_REG_PF_CONFIGURATION
);
1169 val
&= ~(IGU_PF_CONF_INT_LINE_EN
|
1170 IGU_PF_CONF_SINGLE_ISR_EN
);
1171 val
|= (IGU_PF_CONF_FUNC_EN
|
1172 IGU_PF_CONF_MSI_MSIX_EN
|
1173 IGU_PF_CONF_ATTN_BIT_EN
);
1175 val
&= ~IGU_PF_CONF_INT_LINE_EN
;
1176 val
|= (IGU_PF_CONF_FUNC_EN
|
1177 IGU_PF_CONF_MSI_MSIX_EN
|
1178 IGU_PF_CONF_ATTN_BIT_EN
|
1179 IGU_PF_CONF_SINGLE_ISR_EN
);
1181 val
&= ~IGU_PF_CONF_MSI_MSIX_EN
;
1182 val
|= (IGU_PF_CONF_FUNC_EN
|
1183 IGU_PF_CONF_INT_LINE_EN
|
1184 IGU_PF_CONF_ATTN_BIT_EN
|
1185 IGU_PF_CONF_SINGLE_ISR_EN
);
1188 DP(NETIF_MSG_INTR
, "write 0x%x to IGU mode %s\n",
1189 val
, (msix
? "MSI-X" : (msi
? "MSI" : "INTx")));
1191 REG_WR(bp
, IGU_REG_PF_CONFIGURATION
, val
);
1195 /* init leading/trailing edge */
1197 val
= (0xee0f | (1 << (BP_E1HVN(bp
) + 4)));
1199 /* enable nig and gpio3 attention */
1204 REG_WR(bp
, IGU_REG_TRAILING_EDGE_LATCH
, val
);
1205 REG_WR(bp
, IGU_REG_LEADING_EDGE_LATCH
, val
);
1207 /* Make sure that interrupts are indeed enabled from here on */
1211 void bnx2x_int_enable(struct bnx2x
*bp
)
1213 if (bp
->common
.int_block
== INT_BLOCK_HC
)
1214 bnx2x_hc_int_enable(bp
);
1216 bnx2x_igu_int_enable(bp
);
1219 static void bnx2x_hc_int_disable(struct bnx2x
*bp
)
1221 int port
= BP_PORT(bp
);
1222 u32 addr
= port
? HC_REG_CONFIG_1
: HC_REG_CONFIG_0
;
1223 u32 val
= REG_RD(bp
, addr
);
1226 * in E1 we must use only PCI configuration space to disable
1227 * MSI/MSIX capablility
1228 * It's forbitten to disable IGU_PF_CONF_MSI_MSIX_EN in HC block
1230 if (CHIP_IS_E1(bp
)) {
1231 /* Since IGU_PF_CONF_MSI_MSIX_EN still always on
1232 * Use mask register to prevent from HC sending interrupts
1233 * after we exit the function
1235 REG_WR(bp
, HC_REG_INT_MASK
+ port
*4, 0);
1237 val
&= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0
|
1238 HC_CONFIG_0_REG_INT_LINE_EN_0
|
1239 HC_CONFIG_0_REG_ATTN_BIT_EN_0
);
1241 val
&= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0
|
1242 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0
|
1243 HC_CONFIG_0_REG_INT_LINE_EN_0
|
1244 HC_CONFIG_0_REG_ATTN_BIT_EN_0
);
1246 DP(NETIF_MSG_INTR
, "write %x to HC %d (addr 0x%x)\n",
1249 /* flush all outstanding writes */
1252 REG_WR(bp
, addr
, val
);
1253 if (REG_RD(bp
, addr
) != val
)
1254 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1257 static void bnx2x_igu_int_disable(struct bnx2x
*bp
)
1259 u32 val
= REG_RD(bp
, IGU_REG_PF_CONFIGURATION
);
1261 val
&= ~(IGU_PF_CONF_MSI_MSIX_EN
|
1262 IGU_PF_CONF_INT_LINE_EN
|
1263 IGU_PF_CONF_ATTN_BIT_EN
);
1265 DP(NETIF_MSG_INTR
, "write %x to IGU\n", val
);
1267 /* flush all outstanding writes */
1270 REG_WR(bp
, IGU_REG_PF_CONFIGURATION
, val
);
1271 if (REG_RD(bp
, IGU_REG_PF_CONFIGURATION
) != val
)
1272 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1275 static void bnx2x_int_disable(struct bnx2x
*bp
)
1277 if (bp
->common
.int_block
== INT_BLOCK_HC
)
1278 bnx2x_hc_int_disable(bp
);
1280 bnx2x_igu_int_disable(bp
);
1283 void bnx2x_int_disable_sync(struct bnx2x
*bp
, int disable_hw
)
1285 int msix
= (bp
->flags
& USING_MSIX_FLAG
) ? 1 : 0;
1288 /* disable interrupt handling */
1289 atomic_inc(&bp
->intr_sem
);
1290 smp_wmb(); /* Ensure that bp->intr_sem update is SMP-safe */
1293 /* prevent the HW from sending interrupts */
1294 bnx2x_int_disable(bp
);
1296 /* make sure all ISRs are done */
1298 synchronize_irq(bp
->msix_table
[0].vector
);
1303 for_each_eth_queue(bp
, i
)
1304 synchronize_irq(bp
->msix_table
[i
+ offset
].vector
);
1306 synchronize_irq(bp
->pdev
->irq
);
1308 /* make sure sp_task is not running */
1309 cancel_delayed_work(&bp
->sp_task
);
1310 flush_workqueue(bnx2x_wq
);
1316 * General service functions
1319 /* Return true if succeeded to acquire the lock */
1320 static bool bnx2x_trylock_hw_lock(struct bnx2x
*bp
, u32 resource
)
1323 u32 resource_bit
= (1 << resource
);
1324 int func
= BP_FUNC(bp
);
1325 u32 hw_lock_control_reg
;
1327 DP(NETIF_MSG_HW
, "Trying to take a lock on resource %d\n", resource
);
1329 /* Validating that the resource is within range */
1330 if (resource
> HW_LOCK_MAX_RESOURCE_VALUE
) {
1332 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1333 resource
, HW_LOCK_MAX_RESOURCE_VALUE
);
1338 hw_lock_control_reg
= (MISC_REG_DRIVER_CONTROL_1
+ func
*8);
1340 hw_lock_control_reg
=
1341 (MISC_REG_DRIVER_CONTROL_7
+ (func
- 6)*8);
1343 /* Try to acquire the lock */
1344 REG_WR(bp
, hw_lock_control_reg
+ 4, resource_bit
);
1345 lock_status
= REG_RD(bp
, hw_lock_control_reg
);
1346 if (lock_status
& resource_bit
)
1349 DP(NETIF_MSG_HW
, "Failed to get a lock on resource %d\n", resource
);
1354 static void bnx2x_cnic_cfc_comp(struct bnx2x
*bp
, int cid
);
1357 void bnx2x_sp_event(struct bnx2x_fastpath
*fp
,
1358 union eth_rx_cqe
*rr_cqe
)
1360 struct bnx2x
*bp
= fp
->bp
;
1361 int cid
= SW_CID(rr_cqe
->ramrod_cqe
.conn_and_cmd_data
);
1362 int command
= CQE_CMD(rr_cqe
->ramrod_cqe
.conn_and_cmd_data
);
1365 "fp %d cid %d got ramrod #%d state is %x type is %d\n",
1366 fp
->index
, cid
, command
, bp
->state
,
1367 rr_cqe
->ramrod_cqe
.ramrod_type
);
1369 switch (command
| fp
->state
) {
1370 case (RAMROD_CMD_ID_ETH_CLIENT_SETUP
| BNX2X_FP_STATE_OPENING
):
1371 DP(NETIF_MSG_IFUP
, "got MULTI[%d] setup ramrod\n", cid
);
1372 fp
->state
= BNX2X_FP_STATE_OPEN
;
1375 case (RAMROD_CMD_ID_ETH_HALT
| BNX2X_FP_STATE_HALTING
):
1376 DP(NETIF_MSG_IFDOWN
, "got MULTI[%d] halt ramrod\n", cid
);
1377 fp
->state
= BNX2X_FP_STATE_HALTED
;
1380 case (RAMROD_CMD_ID_ETH_TERMINATE
| BNX2X_FP_STATE_TERMINATING
):
1381 DP(NETIF_MSG_IFDOWN
, "got MULTI[%d] teminate ramrod\n", cid
);
1382 fp
->state
= BNX2X_FP_STATE_TERMINATED
;
1386 BNX2X_ERR("unexpected MC reply (%d) "
1387 "fp[%d] state is %x\n",
1388 command
, fp
->index
, fp
->state
);
1392 smp_mb__before_atomic_inc();
1393 atomic_inc(&bp
->cq_spq_left
);
1394 /* push the change in fp->state and towards the memory */
1400 irqreturn_t
bnx2x_interrupt(int irq
, void *dev_instance
)
1402 struct bnx2x
*bp
= netdev_priv(dev_instance
);
1403 u16 status
= bnx2x_ack_int(bp
);
1407 /* Return here if interrupt is shared and it's not for us */
1408 if (unlikely(status
== 0)) {
1409 DP(NETIF_MSG_INTR
, "not our interrupt!\n");
1412 DP(NETIF_MSG_INTR
, "got an interrupt status 0x%x\n", status
);
1414 /* Return here if interrupt is disabled */
1415 if (unlikely(atomic_read(&bp
->intr_sem
) != 0)) {
1416 DP(NETIF_MSG_INTR
, "called but intr_sem not 0, returning\n");
1420 #ifdef BNX2X_STOP_ON_ERROR
1421 if (unlikely(bp
->panic
))
1425 for_each_eth_queue(bp
, i
) {
1426 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
1428 mask
= 0x2 << (fp
->index
+ CNIC_CONTEXT_USE
);
1429 if (status
& mask
) {
1430 /* Handle Rx and Tx according to SB id */
1431 prefetch(fp
->rx_cons_sb
);
1432 prefetch(fp
->tx_cons_sb
);
1433 prefetch(&fp
->sb_running_index
[SM_RX_ID
]);
1434 napi_schedule(&bnx2x_fp(bp
, fp
->index
, napi
));
1441 if (status
& (mask
| 0x1)) {
1442 struct cnic_ops
*c_ops
= NULL
;
1445 c_ops
= rcu_dereference(bp
->cnic_ops
);
1447 c_ops
->cnic_handler(bp
->cnic_data
, NULL
);
1454 if (unlikely(status
& 0x1)) {
1455 queue_delayed_work(bnx2x_wq
, &bp
->sp_task
, 0);
1462 if (unlikely(status
))
1463 DP(NETIF_MSG_INTR
, "got an unknown interrupt! (status 0x%x)\n",
1469 /* end of fast path */
1475 * General service functions
1478 int bnx2x_acquire_hw_lock(struct bnx2x
*bp
, u32 resource
)
1481 u32 resource_bit
= (1 << resource
);
1482 int func
= BP_FUNC(bp
);
1483 u32 hw_lock_control_reg
;
1486 /* Validating that the resource is within range */
1487 if (resource
> HW_LOCK_MAX_RESOURCE_VALUE
) {
1489 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1490 resource
, HW_LOCK_MAX_RESOURCE_VALUE
);
1495 hw_lock_control_reg
= (MISC_REG_DRIVER_CONTROL_1
+ func
*8);
1497 hw_lock_control_reg
=
1498 (MISC_REG_DRIVER_CONTROL_7
+ (func
- 6)*8);
1501 /* Validating that the resource is not already taken */
1502 lock_status
= REG_RD(bp
, hw_lock_control_reg
);
1503 if (lock_status
& resource_bit
) {
1504 DP(NETIF_MSG_HW
, "lock_status 0x%x resource_bit 0x%x\n",
1505 lock_status
, resource_bit
);
1509 /* Try for 5 second every 5ms */
1510 for (cnt
= 0; cnt
< 1000; cnt
++) {
1511 /* Try to acquire the lock */
1512 REG_WR(bp
, hw_lock_control_reg
+ 4, resource_bit
);
1513 lock_status
= REG_RD(bp
, hw_lock_control_reg
);
1514 if (lock_status
& resource_bit
)
1519 DP(NETIF_MSG_HW
, "Timeout\n");
1523 int bnx2x_release_hw_lock(struct bnx2x
*bp
, u32 resource
)
1526 u32 resource_bit
= (1 << resource
);
1527 int func
= BP_FUNC(bp
);
1528 u32 hw_lock_control_reg
;
1530 DP(NETIF_MSG_HW
, "Releasing a lock on resource %d\n", resource
);
1532 /* Validating that the resource is within range */
1533 if (resource
> HW_LOCK_MAX_RESOURCE_VALUE
) {
1535 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1536 resource
, HW_LOCK_MAX_RESOURCE_VALUE
);
1541 hw_lock_control_reg
= (MISC_REG_DRIVER_CONTROL_1
+ func
*8);
1543 hw_lock_control_reg
=
1544 (MISC_REG_DRIVER_CONTROL_7
+ (func
- 6)*8);
1547 /* Validating that the resource is currently taken */
1548 lock_status
= REG_RD(bp
, hw_lock_control_reg
);
1549 if (!(lock_status
& resource_bit
)) {
1550 DP(NETIF_MSG_HW
, "lock_status 0x%x resource_bit 0x%x\n",
1551 lock_status
, resource_bit
);
1555 REG_WR(bp
, hw_lock_control_reg
, resource_bit
);
1560 int bnx2x_get_gpio(struct bnx2x
*bp
, int gpio_num
, u8 port
)
1562 /* The GPIO should be swapped if swap register is set and active */
1563 int gpio_port
= (REG_RD(bp
, NIG_REG_PORT_SWAP
) &&
1564 REG_RD(bp
, NIG_REG_STRAP_OVERRIDE
)) ^ port
;
1565 int gpio_shift
= gpio_num
+
1566 (gpio_port
? MISC_REGISTERS_GPIO_PORT_SHIFT
: 0);
1567 u32 gpio_mask
= (1 << gpio_shift
);
1571 if (gpio_num
> MISC_REGISTERS_GPIO_3
) {
1572 BNX2X_ERR("Invalid GPIO %d\n", gpio_num
);
1576 /* read GPIO value */
1577 gpio_reg
= REG_RD(bp
, MISC_REG_GPIO
);
1579 /* get the requested pin value */
1580 if ((gpio_reg
& gpio_mask
) == gpio_mask
)
1585 DP(NETIF_MSG_LINK
, "pin %d value 0x%x\n", gpio_num
, value
);
1590 int bnx2x_set_gpio(struct bnx2x
*bp
, int gpio_num
, u32 mode
, u8 port
)
1592 /* The GPIO should be swapped if swap register is set and active */
1593 int gpio_port
= (REG_RD(bp
, NIG_REG_PORT_SWAP
) &&
1594 REG_RD(bp
, NIG_REG_STRAP_OVERRIDE
)) ^ port
;
1595 int gpio_shift
= gpio_num
+
1596 (gpio_port
? MISC_REGISTERS_GPIO_PORT_SHIFT
: 0);
1597 u32 gpio_mask
= (1 << gpio_shift
);
1600 if (gpio_num
> MISC_REGISTERS_GPIO_3
) {
1601 BNX2X_ERR("Invalid GPIO %d\n", gpio_num
);
1605 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_GPIO
);
1606 /* read GPIO and mask except the float bits */
1607 gpio_reg
= (REG_RD(bp
, MISC_REG_GPIO
) & MISC_REGISTERS_GPIO_FLOAT
);
1610 case MISC_REGISTERS_GPIO_OUTPUT_LOW
:
1611 DP(NETIF_MSG_LINK
, "Set GPIO %d (shift %d) -> output low\n",
1612 gpio_num
, gpio_shift
);
1613 /* clear FLOAT and set CLR */
1614 gpio_reg
&= ~(gpio_mask
<< MISC_REGISTERS_GPIO_FLOAT_POS
);
1615 gpio_reg
|= (gpio_mask
<< MISC_REGISTERS_GPIO_CLR_POS
);
1618 case MISC_REGISTERS_GPIO_OUTPUT_HIGH
:
1619 DP(NETIF_MSG_LINK
, "Set GPIO %d (shift %d) -> output high\n",
1620 gpio_num
, gpio_shift
);
1621 /* clear FLOAT and set SET */
1622 gpio_reg
&= ~(gpio_mask
<< MISC_REGISTERS_GPIO_FLOAT_POS
);
1623 gpio_reg
|= (gpio_mask
<< MISC_REGISTERS_GPIO_SET_POS
);
1626 case MISC_REGISTERS_GPIO_INPUT_HI_Z
:
1627 DP(NETIF_MSG_LINK
, "Set GPIO %d (shift %d) -> input\n",
1628 gpio_num
, gpio_shift
);
1630 gpio_reg
|= (gpio_mask
<< MISC_REGISTERS_GPIO_FLOAT_POS
);
1637 REG_WR(bp
, MISC_REG_GPIO
, gpio_reg
);
1638 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_GPIO
);
1643 int bnx2x_set_gpio_int(struct bnx2x
*bp
, int gpio_num
, u32 mode
, u8 port
)
1645 /* The GPIO should be swapped if swap register is set and active */
1646 int gpio_port
= (REG_RD(bp
, NIG_REG_PORT_SWAP
) &&
1647 REG_RD(bp
, NIG_REG_STRAP_OVERRIDE
)) ^ port
;
1648 int gpio_shift
= gpio_num
+
1649 (gpio_port
? MISC_REGISTERS_GPIO_PORT_SHIFT
: 0);
1650 u32 gpio_mask
= (1 << gpio_shift
);
1653 if (gpio_num
> MISC_REGISTERS_GPIO_3
) {
1654 BNX2X_ERR("Invalid GPIO %d\n", gpio_num
);
1658 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_GPIO
);
1660 gpio_reg
= REG_RD(bp
, MISC_REG_GPIO_INT
);
1663 case MISC_REGISTERS_GPIO_INT_OUTPUT_CLR
:
1664 DP(NETIF_MSG_LINK
, "Clear GPIO INT %d (shift %d) -> "
1665 "output low\n", gpio_num
, gpio_shift
);
1666 /* clear SET and set CLR */
1667 gpio_reg
&= ~(gpio_mask
<< MISC_REGISTERS_GPIO_INT_SET_POS
);
1668 gpio_reg
|= (gpio_mask
<< MISC_REGISTERS_GPIO_INT_CLR_POS
);
1671 case MISC_REGISTERS_GPIO_INT_OUTPUT_SET
:
1672 DP(NETIF_MSG_LINK
, "Set GPIO INT %d (shift %d) -> "
1673 "output high\n", gpio_num
, gpio_shift
);
1674 /* clear CLR and set SET */
1675 gpio_reg
&= ~(gpio_mask
<< MISC_REGISTERS_GPIO_INT_CLR_POS
);
1676 gpio_reg
|= (gpio_mask
<< MISC_REGISTERS_GPIO_INT_SET_POS
);
1683 REG_WR(bp
, MISC_REG_GPIO_INT
, gpio_reg
);
1684 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_GPIO
);
1689 static int bnx2x_set_spio(struct bnx2x
*bp
, int spio_num
, u32 mode
)
1691 u32 spio_mask
= (1 << spio_num
);
1694 if ((spio_num
< MISC_REGISTERS_SPIO_4
) ||
1695 (spio_num
> MISC_REGISTERS_SPIO_7
)) {
1696 BNX2X_ERR("Invalid SPIO %d\n", spio_num
);
1700 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_SPIO
);
1701 /* read SPIO and mask except the float bits */
1702 spio_reg
= (REG_RD(bp
, MISC_REG_SPIO
) & MISC_REGISTERS_SPIO_FLOAT
);
1705 case MISC_REGISTERS_SPIO_OUTPUT_LOW
:
1706 DP(NETIF_MSG_LINK
, "Set SPIO %d -> output low\n", spio_num
);
1707 /* clear FLOAT and set CLR */
1708 spio_reg
&= ~(spio_mask
<< MISC_REGISTERS_SPIO_FLOAT_POS
);
1709 spio_reg
|= (spio_mask
<< MISC_REGISTERS_SPIO_CLR_POS
);
1712 case MISC_REGISTERS_SPIO_OUTPUT_HIGH
:
1713 DP(NETIF_MSG_LINK
, "Set SPIO %d -> output high\n", spio_num
);
1714 /* clear FLOAT and set SET */
1715 spio_reg
&= ~(spio_mask
<< MISC_REGISTERS_SPIO_FLOAT_POS
);
1716 spio_reg
|= (spio_mask
<< MISC_REGISTERS_SPIO_SET_POS
);
1719 case MISC_REGISTERS_SPIO_INPUT_HI_Z
:
1720 DP(NETIF_MSG_LINK
, "Set SPIO %d -> input\n", spio_num
);
1722 spio_reg
|= (spio_mask
<< MISC_REGISTERS_SPIO_FLOAT_POS
);
1729 REG_WR(bp
, MISC_REG_SPIO
, spio_reg
);
1730 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_SPIO
);
1735 int bnx2x_get_link_cfg_idx(struct bnx2x
*bp
)
1737 u32 sel_phy_idx
= 0;
1738 if (bp
->link_vars
.link_up
) {
1739 sel_phy_idx
= EXT_PHY1
;
1740 /* In case link is SERDES, check if the EXT_PHY2 is the one */
1741 if ((bp
->link_vars
.link_status
& LINK_STATUS_SERDES_LINK
) &&
1742 (bp
->link_params
.phy
[EXT_PHY2
].supported
& SUPPORTED_FIBRE
))
1743 sel_phy_idx
= EXT_PHY2
;
1746 switch (bnx2x_phy_selection(&bp
->link_params
)) {
1747 case PORT_HW_CFG_PHY_SELECTION_HARDWARE_DEFAULT
:
1748 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY
:
1749 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY_PRIORITY
:
1750 sel_phy_idx
= EXT_PHY1
;
1752 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY
:
1753 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY_PRIORITY
:
1754 sel_phy_idx
= EXT_PHY2
;
1759 * The selected actived PHY is always after swapping (in case PHY
1760 * swapping is enabled). So when swapping is enabled, we need to reverse
1764 if (bp
->link_params
.multi_phy_config
&
1765 PORT_HW_CFG_PHY_SWAPPED_ENABLED
) {
1766 if (sel_phy_idx
== EXT_PHY1
)
1767 sel_phy_idx
= EXT_PHY2
;
1768 else if (sel_phy_idx
== EXT_PHY2
)
1769 sel_phy_idx
= EXT_PHY1
;
1771 return LINK_CONFIG_IDX(sel_phy_idx
);
1774 void bnx2x_calc_fc_adv(struct bnx2x
*bp
)
1776 u8 cfg_idx
= bnx2x_get_link_cfg_idx(bp
);
1777 switch (bp
->link_vars
.ieee_fc
&
1778 MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK
) {
1779 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_NONE
:
1780 bp
->port
.advertising
[cfg_idx
] &= ~(ADVERTISED_Asym_Pause
|
1784 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH
:
1785 bp
->port
.advertising
[cfg_idx
] |= (ADVERTISED_Asym_Pause
|
1789 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC
:
1790 bp
->port
.advertising
[cfg_idx
] |= ADVERTISED_Asym_Pause
;
1794 bp
->port
.advertising
[cfg_idx
] &= ~(ADVERTISED_Asym_Pause
|
1800 u8
bnx2x_initial_phy_init(struct bnx2x
*bp
, int load_mode
)
1802 if (!BP_NOMCP(bp
)) {
1804 int cfx_idx
= bnx2x_get_link_cfg_idx(bp
);
1805 u16 req_line_speed
= bp
->link_params
.req_line_speed
[cfx_idx
];
1806 /* Initialize link parameters structure variables */
1807 /* It is recommended to turn off RX FC for jumbo frames
1808 for better performance */
1809 if ((CHIP_IS_E1x(bp
)) && (bp
->dev
->mtu
> 5000))
1810 bp
->link_params
.req_fc_auto_adv
= BNX2X_FLOW_CTRL_TX
;
1812 bp
->link_params
.req_fc_auto_adv
= BNX2X_FLOW_CTRL_BOTH
;
1814 bnx2x_acquire_phy_lock(bp
);
1816 if (load_mode
== LOAD_DIAG
) {
1817 bp
->link_params
.loopback_mode
= LOOPBACK_XGXS
;
1818 bp
->link_params
.req_line_speed
[cfx_idx
] = SPEED_10000
;
1821 rc
= bnx2x_phy_init(&bp
->link_params
, &bp
->link_vars
);
1823 bnx2x_release_phy_lock(bp
);
1825 bnx2x_calc_fc_adv(bp
);
1827 if (CHIP_REV_IS_SLOW(bp
) && bp
->link_vars
.link_up
) {
1828 bnx2x_stats_handle(bp
, STATS_EVENT_LINK_UP
);
1829 bnx2x_link_report(bp
);
1831 bp
->link_params
.req_line_speed
[cfx_idx
] = req_line_speed
;
1834 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
1838 void bnx2x_link_set(struct bnx2x
*bp
)
1840 if (!BP_NOMCP(bp
)) {
1841 bnx2x_acquire_phy_lock(bp
);
1842 bnx2x_link_reset(&bp
->link_params
, &bp
->link_vars
, 1);
1843 bnx2x_phy_init(&bp
->link_params
, &bp
->link_vars
);
1844 bnx2x_release_phy_lock(bp
);
1846 bnx2x_calc_fc_adv(bp
);
1848 BNX2X_ERR("Bootcode is missing - can not set link\n");
1851 static void bnx2x__link_reset(struct bnx2x
*bp
)
1853 if (!BP_NOMCP(bp
)) {
1854 bnx2x_acquire_phy_lock(bp
);
1855 bnx2x_link_reset(&bp
->link_params
, &bp
->link_vars
, 1);
1856 bnx2x_release_phy_lock(bp
);
1858 BNX2X_ERR("Bootcode is missing - can not reset link\n");
1861 u8
bnx2x_link_test(struct bnx2x
*bp
, u8 is_serdes
)
1865 if (!BP_NOMCP(bp
)) {
1866 bnx2x_acquire_phy_lock(bp
);
1867 rc
= bnx2x_test_link(&bp
->link_params
, &bp
->link_vars
,
1869 bnx2x_release_phy_lock(bp
);
1871 BNX2X_ERR("Bootcode is missing - can not test link\n");
1876 static void bnx2x_init_port_minmax(struct bnx2x
*bp
)
1878 u32 r_param
= bp
->link_vars
.line_speed
/ 8;
1879 u32 fair_periodic_timeout_usec
;
1882 memset(&(bp
->cmng
.rs_vars
), 0,
1883 sizeof(struct rate_shaping_vars_per_port
));
1884 memset(&(bp
->cmng
.fair_vars
), 0, sizeof(struct fairness_vars_per_port
));
1886 /* 100 usec in SDM ticks = 25 since each tick is 4 usec */
1887 bp
->cmng
.rs_vars
.rs_periodic_timeout
= RS_PERIODIC_TIMEOUT_USEC
/ 4;
1889 /* this is the threshold below which no timer arming will occur
1890 1.25 coefficient is for the threshold to be a little bigger
1891 than the real time, to compensate for timer in-accuracy */
1892 bp
->cmng
.rs_vars
.rs_threshold
=
1893 (RS_PERIODIC_TIMEOUT_USEC
* r_param
* 5) / 4;
1895 /* resolution of fairness timer */
1896 fair_periodic_timeout_usec
= QM_ARB_BYTES
/ r_param
;
1897 /* for 10G it is 1000usec. for 1G it is 10000usec. */
1898 t_fair
= T_FAIR_COEF
/ bp
->link_vars
.line_speed
;
1900 /* this is the threshold below which we won't arm the timer anymore */
1901 bp
->cmng
.fair_vars
.fair_threshold
= QM_ARB_BYTES
;
1903 /* we multiply by 1e3/8 to get bytes/msec.
1904 We don't want the credits to pass a credit
1905 of the t_fair*FAIR_MEM (algorithm resolution) */
1906 bp
->cmng
.fair_vars
.upper_bound
= r_param
* t_fair
* FAIR_MEM
;
1907 /* since each tick is 4 usec */
1908 bp
->cmng
.fair_vars
.fairness_timeout
= fair_periodic_timeout_usec
/ 4;
1911 /* Calculates the sum of vn_min_rates.
1912 It's needed for further normalizing of the min_rates.
1914 sum of vn_min_rates.
1916 0 - if all the min_rates are 0.
1917 In the later case fainess algorithm should be deactivated.
1918 If not all min_rates are zero then those that are zeroes will be set to 1.
1920 static void bnx2x_calc_vn_weight_sum(struct bnx2x
*bp
)
1925 bp
->vn_weight_sum
= 0;
1926 for (vn
= VN_0
; vn
< E1HVN_MAX
; vn
++) {
1927 u32 vn_cfg
= bp
->mf_config
[vn
];
1928 u32 vn_min_rate
= ((vn_cfg
& FUNC_MF_CFG_MIN_BW_MASK
) >>
1929 FUNC_MF_CFG_MIN_BW_SHIFT
) * 100;
1931 /* Skip hidden vns */
1932 if (vn_cfg
& FUNC_MF_CFG_FUNC_HIDE
)
1935 /* If min rate is zero - set it to 1 */
1937 vn_min_rate
= DEF_MIN_RATE
;
1941 bp
->vn_weight_sum
+= vn_min_rate
;
1944 /* ... only if all min rates are zeros - disable fairness */
1946 bp
->cmng
.flags
.cmng_enables
&=
1947 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN
;
1948 DP(NETIF_MSG_IFUP
, "All MIN values are zeroes"
1949 " fairness will be disabled\n");
1951 bp
->cmng
.flags
.cmng_enables
|=
1952 CMNG_FLAGS_PER_PORT_FAIRNESS_VN
;
1955 static void bnx2x_init_vn_minmax(struct bnx2x
*bp
, int vn
)
1957 struct rate_shaping_vars_per_vn m_rs_vn
;
1958 struct fairness_vars_per_vn m_fair_vn
;
1959 u32 vn_cfg
= bp
->mf_config
[vn
];
1960 int func
= 2*vn
+ BP_PORT(bp
);
1961 u16 vn_min_rate
, vn_max_rate
;
1964 /* If function is hidden - set min and max to zeroes */
1965 if (vn_cfg
& FUNC_MF_CFG_FUNC_HIDE
) {
1970 u32 maxCfg
= bnx2x_extract_max_cfg(bp
, vn_cfg
);
1972 vn_min_rate
= ((vn_cfg
& FUNC_MF_CFG_MIN_BW_MASK
) >>
1973 FUNC_MF_CFG_MIN_BW_SHIFT
) * 100;
1974 /* If fairness is enabled (not all min rates are zeroes) and
1975 if current min rate is zero - set it to 1.
1976 This is a requirement of the algorithm. */
1977 if (bp
->vn_weight_sum
&& (vn_min_rate
== 0))
1978 vn_min_rate
= DEF_MIN_RATE
;
1981 /* maxCfg in percents of linkspeed */
1982 vn_max_rate
= (bp
->link_vars
.line_speed
* maxCfg
) / 100;
1984 /* maxCfg is absolute in 100Mb units */
1985 vn_max_rate
= maxCfg
* 100;
1989 "func %d: vn_min_rate %d vn_max_rate %d vn_weight_sum %d\n",
1990 func
, vn_min_rate
, vn_max_rate
, bp
->vn_weight_sum
);
1992 memset(&m_rs_vn
, 0, sizeof(struct rate_shaping_vars_per_vn
));
1993 memset(&m_fair_vn
, 0, sizeof(struct fairness_vars_per_vn
));
1995 /* global vn counter - maximal Mbps for this vn */
1996 m_rs_vn
.vn_counter
.rate
= vn_max_rate
;
1998 /* quota - number of bytes transmitted in this period */
1999 m_rs_vn
.vn_counter
.quota
=
2000 (vn_max_rate
* RS_PERIODIC_TIMEOUT_USEC
) / 8;
2002 if (bp
->vn_weight_sum
) {
2003 /* credit for each period of the fairness algorithm:
2004 number of bytes in T_FAIR (the vn share the port rate).
2005 vn_weight_sum should not be larger than 10000, thus
2006 T_FAIR_COEF / (8 * vn_weight_sum) will always be greater
2008 m_fair_vn
.vn_credit_delta
=
2009 max_t(u32
, (vn_min_rate
* (T_FAIR_COEF
/
2010 (8 * bp
->vn_weight_sum
))),
2011 (bp
->cmng
.fair_vars
.fair_threshold
+
2013 DP(NETIF_MSG_IFUP
, "m_fair_vn.vn_credit_delta %d\n",
2014 m_fair_vn
.vn_credit_delta
);
2017 /* Store it to internal memory */
2018 for (i
= 0; i
< sizeof(struct rate_shaping_vars_per_vn
)/4; i
++)
2019 REG_WR(bp
, BAR_XSTRORM_INTMEM
+
2020 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(func
) + i
* 4,
2021 ((u32
*)(&m_rs_vn
))[i
]);
2023 for (i
= 0; i
< sizeof(struct fairness_vars_per_vn
)/4; i
++)
2024 REG_WR(bp
, BAR_XSTRORM_INTMEM
+
2025 XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(func
) + i
* 4,
2026 ((u32
*)(&m_fair_vn
))[i
]);
2029 static int bnx2x_get_cmng_fns_mode(struct bnx2x
*bp
)
2031 if (CHIP_REV_IS_SLOW(bp
))
2032 return CMNG_FNS_NONE
;
2034 return CMNG_FNS_MINMAX
;
2036 return CMNG_FNS_NONE
;
2039 void bnx2x_read_mf_cfg(struct bnx2x
*bp
)
2041 int vn
, n
= (CHIP_MODE_IS_4_PORT(bp
) ? 2 : 1);
2044 return; /* what should be the default bvalue in this case */
2046 /* For 2 port configuration the absolute function number formula
2048 * abs_func = 2 * vn + BP_PORT + BP_PATH
2050 * and there are 4 functions per port
2052 * For 4 port configuration it is
2053 * abs_func = 4 * vn + 2 * BP_PORT + BP_PATH
2055 * and there are 2 functions per port
2057 for (vn
= VN_0
; vn
< E1HVN_MAX
; vn
++) {
2058 int /*abs*/func
= n
* (2 * vn
+ BP_PORT(bp
)) + BP_PATH(bp
);
2060 if (func
>= E1H_FUNC_MAX
)
2064 MF_CFG_RD(bp
, func_mf_config
[func
].config
);
2068 static void bnx2x_cmng_fns_init(struct bnx2x
*bp
, u8 read_cfg
, u8 cmng_type
)
2071 if (cmng_type
== CMNG_FNS_MINMAX
) {
2074 /* clear cmng_enables */
2075 bp
->cmng
.flags
.cmng_enables
= 0;
2077 /* read mf conf from shmem */
2079 bnx2x_read_mf_cfg(bp
);
2081 /* Init rate shaping and fairness contexts */
2082 bnx2x_init_port_minmax(bp
);
2084 /* vn_weight_sum and enable fairness if not 0 */
2085 bnx2x_calc_vn_weight_sum(bp
);
2087 /* calculate and set min-max rate for each vn */
2089 for (vn
= VN_0
; vn
< E1HVN_MAX
; vn
++)
2090 bnx2x_init_vn_minmax(bp
, vn
);
2092 /* always enable rate shaping and fairness */
2093 bp
->cmng
.flags
.cmng_enables
|=
2094 CMNG_FLAGS_PER_PORT_RATE_SHAPING_VN
;
2095 if (!bp
->vn_weight_sum
)
2096 DP(NETIF_MSG_IFUP
, "All MIN values are zeroes"
2097 " fairness will be disabled\n");
2101 /* rate shaping and fairness are disabled */
2103 "rate shaping and fairness are disabled\n");
2106 static inline void bnx2x_link_sync_notify(struct bnx2x
*bp
)
2108 int port
= BP_PORT(bp
);
2112 /* Set the attention towards other drivers on the same port */
2113 for (vn
= VN_0
; vn
< E1HVN_MAX
; vn
++) {
2114 if (vn
== BP_E1HVN(bp
))
2117 func
= ((vn
<< 1) | port
);
2118 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_0
+
2119 (LINK_SYNC_ATTENTION_BIT_FUNC_0
+ func
)*4, 1);
2123 /* This function is called upon link interrupt */
2124 static void bnx2x_link_attn(struct bnx2x
*bp
)
2126 /* Make sure that we are synced with the current statistics */
2127 bnx2x_stats_handle(bp
, STATS_EVENT_STOP
);
2129 bnx2x_link_update(&bp
->link_params
, &bp
->link_vars
);
2131 if (bp
->link_vars
.link_up
) {
2133 /* dropless flow control */
2134 if (!CHIP_IS_E1(bp
) && bp
->dropless_fc
) {
2135 int port
= BP_PORT(bp
);
2136 u32 pause_enabled
= 0;
2138 if (bp
->link_vars
.flow_ctrl
& BNX2X_FLOW_CTRL_TX
)
2141 REG_WR(bp
, BAR_USTRORM_INTMEM
+
2142 USTORM_ETH_PAUSE_ENABLED_OFFSET(port
),
2146 if (bp
->link_vars
.mac_type
== MAC_TYPE_BMAC
) {
2147 struct host_port_stats
*pstats
;
2149 pstats
= bnx2x_sp(bp
, port_stats
);
2150 /* reset old bmac stats */
2151 memset(&(pstats
->mac_stx
[0]), 0,
2152 sizeof(struct mac_stx
));
2154 if (bp
->state
== BNX2X_STATE_OPEN
)
2155 bnx2x_stats_handle(bp
, STATS_EVENT_LINK_UP
);
2158 if (bp
->link_vars
.link_up
&& bp
->link_vars
.line_speed
) {
2159 int cmng_fns
= bnx2x_get_cmng_fns_mode(bp
);
2161 if (cmng_fns
!= CMNG_FNS_NONE
) {
2162 bnx2x_cmng_fns_init(bp
, false, cmng_fns
);
2163 storm_memset_cmng(bp
, &bp
->cmng
, BP_PORT(bp
));
2165 /* rate shaping and fairness are disabled */
2167 "single function mode without fairness\n");
2170 __bnx2x_link_report(bp
);
2173 bnx2x_link_sync_notify(bp
);
2176 void bnx2x__link_status_update(struct bnx2x
*bp
)
2178 if (bp
->state
!= BNX2X_STATE_OPEN
)
2181 bnx2x_link_status_update(&bp
->link_params
, &bp
->link_vars
);
2183 if (bp
->link_vars
.link_up
)
2184 bnx2x_stats_handle(bp
, STATS_EVENT_LINK_UP
);
2186 bnx2x_stats_handle(bp
, STATS_EVENT_STOP
);
2188 /* indicate link status */
2189 bnx2x_link_report(bp
);
2192 static void bnx2x_pmf_update(struct bnx2x
*bp
)
2194 int port
= BP_PORT(bp
);
2198 DP(NETIF_MSG_LINK
, "pmf %d\n", bp
->port
.pmf
);
2200 /* enable nig attention */
2201 val
= (0xff0f | (1 << (BP_E1HVN(bp
) + 4)));
2202 if (bp
->common
.int_block
== INT_BLOCK_HC
) {
2203 REG_WR(bp
, HC_REG_TRAILING_EDGE_0
+ port
*8, val
);
2204 REG_WR(bp
, HC_REG_LEADING_EDGE_0
+ port
*8, val
);
2205 } else if (CHIP_IS_E2(bp
)) {
2206 REG_WR(bp
, IGU_REG_TRAILING_EDGE_LATCH
, val
);
2207 REG_WR(bp
, IGU_REG_LEADING_EDGE_LATCH
, val
);
2210 bnx2x_stats_handle(bp
, STATS_EVENT_PMF
);
2218 * General service functions
2221 /* send the MCP a request, block until there is a reply */
2222 u32
bnx2x_fw_command(struct bnx2x
*bp
, u32 command
, u32 param
)
2224 int mb_idx
= BP_FW_MB_IDX(bp
);
2225 u32 seq
= ++bp
->fw_seq
;
2228 u8 delay
= CHIP_REV_IS_SLOW(bp
) ? 100 : 10;
2230 mutex_lock(&bp
->fw_mb_mutex
);
2231 SHMEM_WR(bp
, func_mb
[mb_idx
].drv_mb_param
, param
);
2232 SHMEM_WR(bp
, func_mb
[mb_idx
].drv_mb_header
, (command
| seq
));
2234 DP(BNX2X_MSG_MCP
, "wrote command (%x) to FW MB\n", (command
| seq
));
2237 /* let the FW do it's magic ... */
2240 rc
= SHMEM_RD(bp
, func_mb
[mb_idx
].fw_mb_header
);
2242 /* Give the FW up to 5 second (500*10ms) */
2243 } while ((seq
!= (rc
& FW_MSG_SEQ_NUMBER_MASK
)) && (cnt
++ < 500));
2245 DP(BNX2X_MSG_MCP
, "[after %d ms] read (%x) seq is (%x) from FW MB\n",
2246 cnt
*delay
, rc
, seq
);
2248 /* is this a reply to our command? */
2249 if (seq
== (rc
& FW_MSG_SEQ_NUMBER_MASK
))
2250 rc
&= FW_MSG_CODE_MASK
;
2253 BNX2X_ERR("FW failed to respond!\n");
2257 mutex_unlock(&bp
->fw_mb_mutex
);
2262 static u8
stat_counter_valid(struct bnx2x
*bp
, struct bnx2x_fastpath
*fp
)
2265 if (IS_FCOE_FP(fp
) && IS_MF(bp
))
2271 /* must be called under rtnl_lock */
2272 static void bnx2x_rxq_set_mac_filters(struct bnx2x
*bp
, u16 cl_id
, u32 filters
)
2274 u32 mask
= (1 << cl_id
);
2276 /* initial seeting is BNX2X_ACCEPT_NONE */
2277 u8 drop_all_ucast
= 1, drop_all_bcast
= 1, drop_all_mcast
= 1;
2278 u8 accp_all_ucast
= 0, accp_all_bcast
= 0, accp_all_mcast
= 0;
2279 u8 unmatched_unicast
= 0;
2281 if (filters
& BNX2X_ACCEPT_UNMATCHED_UCAST
)
2282 unmatched_unicast
= 1;
2284 if (filters
& BNX2X_PROMISCUOUS_MODE
) {
2285 /* promiscious - accept all, drop none */
2286 drop_all_ucast
= drop_all_bcast
= drop_all_mcast
= 0;
2287 accp_all_ucast
= accp_all_bcast
= accp_all_mcast
= 1;
2290 * SI mode defines to accept in promiscuos mode
2291 * only unmatched packets
2293 unmatched_unicast
= 1;
2297 if (filters
& BNX2X_ACCEPT_UNICAST
) {
2298 /* accept matched ucast */
2301 if (filters
& BNX2X_ACCEPT_MULTICAST
)
2302 /* accept matched mcast */
2305 if (filters
& BNX2X_ACCEPT_ALL_UNICAST
) {
2306 /* accept all mcast */
2310 if (filters
& BNX2X_ACCEPT_ALL_MULTICAST
) {
2311 /* accept all mcast */
2315 if (filters
& BNX2X_ACCEPT_BROADCAST
) {
2316 /* accept (all) bcast */
2321 bp
->mac_filters
.ucast_drop_all
= drop_all_ucast
?
2322 bp
->mac_filters
.ucast_drop_all
| mask
:
2323 bp
->mac_filters
.ucast_drop_all
& ~mask
;
2325 bp
->mac_filters
.mcast_drop_all
= drop_all_mcast
?
2326 bp
->mac_filters
.mcast_drop_all
| mask
:
2327 bp
->mac_filters
.mcast_drop_all
& ~mask
;
2329 bp
->mac_filters
.bcast_drop_all
= drop_all_bcast
?
2330 bp
->mac_filters
.bcast_drop_all
| mask
:
2331 bp
->mac_filters
.bcast_drop_all
& ~mask
;
2333 bp
->mac_filters
.ucast_accept_all
= accp_all_ucast
?
2334 bp
->mac_filters
.ucast_accept_all
| mask
:
2335 bp
->mac_filters
.ucast_accept_all
& ~mask
;
2337 bp
->mac_filters
.mcast_accept_all
= accp_all_mcast
?
2338 bp
->mac_filters
.mcast_accept_all
| mask
:
2339 bp
->mac_filters
.mcast_accept_all
& ~mask
;
2341 bp
->mac_filters
.bcast_accept_all
= accp_all_bcast
?
2342 bp
->mac_filters
.bcast_accept_all
| mask
:
2343 bp
->mac_filters
.bcast_accept_all
& ~mask
;
2345 bp
->mac_filters
.unmatched_unicast
= unmatched_unicast
?
2346 bp
->mac_filters
.unmatched_unicast
| mask
:
2347 bp
->mac_filters
.unmatched_unicast
& ~mask
;
2350 static void bnx2x_func_init(struct bnx2x
*bp
, struct bnx2x_func_init_params
*p
)
2352 struct tstorm_eth_function_common_config tcfg
= {0};
2356 if (p
->func_flgs
& FUNC_FLG_TPA
)
2357 tcfg
.config_flags
|=
2358 TSTORM_ETH_FUNCTION_COMMON_CONFIG_ENABLE_TPA
;
2361 rss_flgs
= (p
->rss
->mode
<<
2362 TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_MODE_SHIFT
);
2364 if (p
->rss
->cap
& RSS_IPV4_CAP
)
2365 rss_flgs
|= RSS_IPV4_CAP_MASK
;
2366 if (p
->rss
->cap
& RSS_IPV4_TCP_CAP
)
2367 rss_flgs
|= RSS_IPV4_TCP_CAP_MASK
;
2368 if (p
->rss
->cap
& RSS_IPV6_CAP
)
2369 rss_flgs
|= RSS_IPV6_CAP_MASK
;
2370 if (p
->rss
->cap
& RSS_IPV6_TCP_CAP
)
2371 rss_flgs
|= RSS_IPV6_TCP_CAP_MASK
;
2373 tcfg
.config_flags
|= rss_flgs
;
2374 tcfg
.rss_result_mask
= p
->rss
->result_mask
;
2376 storm_memset_func_cfg(bp
, &tcfg
, p
->func_id
);
2378 /* Enable the function in the FW */
2379 storm_memset_vf_to_pf(bp
, p
->func_id
, p
->pf_id
);
2380 storm_memset_func_en(bp
, p
->func_id
, 1);
2383 if (p
->func_flgs
& FUNC_FLG_STATS
) {
2384 struct stats_indication_flags stats_flags
= {0};
2385 stats_flags
.collect_eth
= 1;
2387 storm_memset_xstats_flags(bp
, &stats_flags
, p
->func_id
);
2388 storm_memset_xstats_addr(bp
, p
->fw_stat_map
, p
->func_id
);
2390 storm_memset_tstats_flags(bp
, &stats_flags
, p
->func_id
);
2391 storm_memset_tstats_addr(bp
, p
->fw_stat_map
, p
->func_id
);
2393 storm_memset_ustats_flags(bp
, &stats_flags
, p
->func_id
);
2394 storm_memset_ustats_addr(bp
, p
->fw_stat_map
, p
->func_id
);
2396 storm_memset_cstats_flags(bp
, &stats_flags
, p
->func_id
);
2397 storm_memset_cstats_addr(bp
, p
->fw_stat_map
, p
->func_id
);
2401 if (p
->func_flgs
& FUNC_FLG_SPQ
) {
2402 storm_memset_spq_addr(bp
, p
->spq_map
, p
->func_id
);
2403 REG_WR(bp
, XSEM_REG_FAST_MEMORY
+
2404 XSTORM_SPQ_PROD_OFFSET(p
->func_id
), p
->spq_prod
);
2408 static inline u16
bnx2x_get_cl_flags(struct bnx2x
*bp
,
2409 struct bnx2x_fastpath
*fp
)
2413 /* calculate queue flags */
2414 flags
|= QUEUE_FLG_CACHE_ALIGN
;
2415 flags
|= QUEUE_FLG_HC
;
2416 flags
|= IS_MF_SD(bp
) ? QUEUE_FLG_OV
: 0;
2418 flags
|= QUEUE_FLG_VLAN
;
2419 DP(NETIF_MSG_IFUP
, "vlan removal enabled\n");
2421 if (!fp
->disable_tpa
)
2422 flags
|= QUEUE_FLG_TPA
;
2424 flags
= stat_counter_valid(bp
, fp
) ?
2425 (flags
| QUEUE_FLG_STATS
) : (flags
& ~QUEUE_FLG_STATS
);
2430 static void bnx2x_pf_rx_cl_prep(struct bnx2x
*bp
,
2431 struct bnx2x_fastpath
*fp
, struct rxq_pause_params
*pause
,
2432 struct bnx2x_rxq_init_params
*rxq_init
)
2436 u16 tpa_agg_size
= 0;
2438 /* calculate queue flags */
2439 u16 flags
= bnx2x_get_cl_flags(bp
, fp
);
2441 if (!fp
->disable_tpa
) {
2442 pause
->sge_th_hi
= 250;
2443 pause
->sge_th_lo
= 150;
2444 tpa_agg_size
= min_t(u32
,
2445 (min_t(u32
, 8, MAX_SKB_FRAGS
) *
2446 SGE_PAGE_SIZE
* PAGES_PER_SGE
), 0xffff);
2447 max_sge
= SGE_PAGE_ALIGN(bp
->dev
->mtu
) >>
2449 max_sge
= ((max_sge
+ PAGES_PER_SGE
- 1) &
2450 (~(PAGES_PER_SGE
-1))) >> PAGES_PER_SGE_SHIFT
;
2451 sge_sz
= (u16
)min_t(u32
, SGE_PAGE_SIZE
* PAGES_PER_SGE
,
2455 /* pause - not for e1 */
2456 if (!CHIP_IS_E1(bp
)) {
2457 pause
->bd_th_hi
= 350;
2458 pause
->bd_th_lo
= 250;
2459 pause
->rcq_th_hi
= 350;
2460 pause
->rcq_th_lo
= 250;
2461 pause
->sge_th_hi
= 0;
2462 pause
->sge_th_lo
= 0;
2467 rxq_init
->flags
= flags
;
2468 rxq_init
->cxt
= &bp
->context
.vcxt
[fp
->cid
].eth
;
2469 rxq_init
->dscr_map
= fp
->rx_desc_mapping
;
2470 rxq_init
->sge_map
= fp
->rx_sge_mapping
;
2471 rxq_init
->rcq_map
= fp
->rx_comp_mapping
;
2472 rxq_init
->rcq_np_map
= fp
->rx_comp_mapping
+ BCM_PAGE_SIZE
;
2474 /* Always use mini-jumbo MTU for FCoE L2 ring */
2476 rxq_init
->mtu
= BNX2X_FCOE_MINI_JUMBO_MTU
;
2478 rxq_init
->mtu
= bp
->dev
->mtu
;
2480 rxq_init
->buf_sz
= fp
->rx_buf_size
;
2481 rxq_init
->cl_qzone_id
= fp
->cl_qzone_id
;
2482 rxq_init
->cl_id
= fp
->cl_id
;
2483 rxq_init
->spcl_id
= fp
->cl_id
;
2484 rxq_init
->stat_id
= fp
->cl_id
;
2485 rxq_init
->tpa_agg_sz
= tpa_agg_size
;
2486 rxq_init
->sge_buf_sz
= sge_sz
;
2487 rxq_init
->max_sges_pkt
= max_sge
;
2488 rxq_init
->cache_line_log
= BNX2X_RX_ALIGN_SHIFT
;
2489 rxq_init
->fw_sb_id
= fp
->fw_sb_id
;
2492 rxq_init
->sb_cq_index
= HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS
;
2494 rxq_init
->sb_cq_index
= U_SB_ETH_RX_CQ_INDEX
;
2496 rxq_init
->cid
= HW_CID(bp
, fp
->cid
);
2498 rxq_init
->hc_rate
= bp
->rx_ticks
? (1000000 / bp
->rx_ticks
) : 0;
2501 static void bnx2x_pf_tx_cl_prep(struct bnx2x
*bp
,
2502 struct bnx2x_fastpath
*fp
, struct bnx2x_txq_init_params
*txq_init
)
2504 u16 flags
= bnx2x_get_cl_flags(bp
, fp
);
2506 txq_init
->flags
= flags
;
2507 txq_init
->cxt
= &bp
->context
.vcxt
[fp
->cid
].eth
;
2508 txq_init
->dscr_map
= fp
->tx_desc_mapping
;
2509 txq_init
->stat_id
= fp
->cl_id
;
2510 txq_init
->cid
= HW_CID(bp
, fp
->cid
);
2511 txq_init
->sb_cq_index
= C_SB_ETH_TX_CQ_INDEX
;
2512 txq_init
->traffic_type
= LLFC_TRAFFIC_TYPE_NW
;
2513 txq_init
->fw_sb_id
= fp
->fw_sb_id
;
2515 if (IS_FCOE_FP(fp
)) {
2516 txq_init
->sb_cq_index
= HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS
;
2517 txq_init
->traffic_type
= LLFC_TRAFFIC_TYPE_FCOE
;
2520 txq_init
->hc_rate
= bp
->tx_ticks
? (1000000 / bp
->tx_ticks
) : 0;
2523 static void bnx2x_pf_init(struct bnx2x
*bp
)
2525 struct bnx2x_func_init_params func_init
= {0};
2526 struct bnx2x_rss_params rss
= {0};
2527 struct event_ring_data eq_data
= { {0} };
2530 /* pf specific setups */
2531 if (!CHIP_IS_E1(bp
))
2532 storm_memset_ov(bp
, bp
->mf_ov
, BP_FUNC(bp
));
2534 if (CHIP_IS_E2(bp
)) {
2535 /* reset IGU PF statistics: MSIX + ATTN */
2537 REG_WR(bp
, IGU_REG_STATISTIC_NUM_MESSAGE_SENT
+
2538 BNX2X_IGU_STAS_MSG_VF_CNT
*4 +
2539 (CHIP_MODE_IS_4_PORT(bp
) ?
2540 BP_FUNC(bp
) : BP_VN(bp
))*4, 0);
2542 REG_WR(bp
, IGU_REG_STATISTIC_NUM_MESSAGE_SENT
+
2543 BNX2X_IGU_STAS_MSG_VF_CNT
*4 +
2544 BNX2X_IGU_STAS_MSG_PF_CNT
*4 +
2545 (CHIP_MODE_IS_4_PORT(bp
) ?
2546 BP_FUNC(bp
) : BP_VN(bp
))*4, 0);
2549 /* function setup flags */
2550 flags
= (FUNC_FLG_STATS
| FUNC_FLG_LEADING
| FUNC_FLG_SPQ
);
2552 if (CHIP_IS_E1x(bp
))
2553 flags
|= (bp
->flags
& TPA_ENABLE_FLAG
) ? FUNC_FLG_TPA
: 0;
2555 flags
|= FUNC_FLG_TPA
;
2557 /* function setup */
2560 * Although RSS is meaningless when there is a single HW queue we
2561 * still need it enabled in order to have HW Rx hash generated.
2563 rss
.cap
= (RSS_IPV4_CAP
| RSS_IPV4_TCP_CAP
|
2564 RSS_IPV6_CAP
| RSS_IPV6_TCP_CAP
);
2565 rss
.mode
= bp
->multi_mode
;
2566 rss
.result_mask
= MULTI_MASK
;
2567 func_init
.rss
= &rss
;
2569 func_init
.func_flgs
= flags
;
2570 func_init
.pf_id
= BP_FUNC(bp
);
2571 func_init
.func_id
= BP_FUNC(bp
);
2572 func_init
.fw_stat_map
= bnx2x_sp_mapping(bp
, fw_stats
);
2573 func_init
.spq_map
= bp
->spq_mapping
;
2574 func_init
.spq_prod
= bp
->spq_prod_idx
;
2576 bnx2x_func_init(bp
, &func_init
);
2578 memset(&(bp
->cmng
), 0, sizeof(struct cmng_struct_per_port
));
2581 Congestion management values depend on the link rate
2582 There is no active link so initial link rate is set to 10 Gbps.
2583 When the link comes up The congestion management values are
2584 re-calculated according to the actual link rate.
2586 bp
->link_vars
.line_speed
= SPEED_10000
;
2587 bnx2x_cmng_fns_init(bp
, true, bnx2x_get_cmng_fns_mode(bp
));
2589 /* Only the PMF sets the HW */
2591 storm_memset_cmng(bp
, &bp
->cmng
, BP_PORT(bp
));
2593 /* no rx until link is up */
2594 bp
->rx_mode
= BNX2X_RX_MODE_NONE
;
2595 bnx2x_set_storm_rx_mode(bp
);
2597 /* init Event Queue */
2598 eq_data
.base_addr
.hi
= U64_HI(bp
->eq_mapping
);
2599 eq_data
.base_addr
.lo
= U64_LO(bp
->eq_mapping
);
2600 eq_data
.producer
= bp
->eq_prod
;
2601 eq_data
.index_id
= HC_SP_INDEX_EQ_CONS
;
2602 eq_data
.sb_id
= DEF_SB_ID
;
2603 storm_memset_eq_data(bp
, &eq_data
, BP_FUNC(bp
));
2607 static void bnx2x_e1h_disable(struct bnx2x
*bp
)
2609 int port
= BP_PORT(bp
);
2611 netif_tx_disable(bp
->dev
);
2613 REG_WR(bp
, NIG_REG_LLH0_FUNC_EN
+ port
*8, 0);
2615 netif_carrier_off(bp
->dev
);
2618 static void bnx2x_e1h_enable(struct bnx2x
*bp
)
2620 int port
= BP_PORT(bp
);
2622 REG_WR(bp
, NIG_REG_LLH0_FUNC_EN
+ port
*8, 1);
2624 /* Tx queue should be only reenabled */
2625 netif_tx_wake_all_queues(bp
->dev
);
2628 * Should not call netif_carrier_on since it will be called if the link
2629 * is up when checking for link state
2633 /* called due to MCP event (on pmf):
2634 * reread new bandwidth configuration
2636 * notify others function about the change
2638 static inline void bnx2x_config_mf_bw(struct bnx2x
*bp
)
2640 if (bp
->link_vars
.link_up
) {
2641 bnx2x_cmng_fns_init(bp
, true, CMNG_FNS_MINMAX
);
2642 bnx2x_link_sync_notify(bp
);
2644 storm_memset_cmng(bp
, &bp
->cmng
, BP_PORT(bp
));
2647 static inline void bnx2x_set_mf_bw(struct bnx2x
*bp
)
2649 bnx2x_config_mf_bw(bp
);
2650 bnx2x_fw_command(bp
, DRV_MSG_CODE_SET_MF_BW_ACK
, 0);
2653 static void bnx2x_dcc_event(struct bnx2x
*bp
, u32 dcc_event
)
2655 DP(BNX2X_MSG_MCP
, "dcc_event 0x%x\n", dcc_event
);
2657 if (dcc_event
& DRV_STATUS_DCC_DISABLE_ENABLE_PF
) {
2660 * This is the only place besides the function initialization
2661 * where the bp->flags can change so it is done without any
2664 if (bp
->mf_config
[BP_VN(bp
)] & FUNC_MF_CFG_FUNC_DISABLED
) {
2665 DP(NETIF_MSG_IFDOWN
, "mf_cfg function disabled\n");
2666 bp
->flags
|= MF_FUNC_DIS
;
2668 bnx2x_e1h_disable(bp
);
2670 DP(NETIF_MSG_IFUP
, "mf_cfg function enabled\n");
2671 bp
->flags
&= ~MF_FUNC_DIS
;
2673 bnx2x_e1h_enable(bp
);
2675 dcc_event
&= ~DRV_STATUS_DCC_DISABLE_ENABLE_PF
;
2677 if (dcc_event
& DRV_STATUS_DCC_BANDWIDTH_ALLOCATION
) {
2678 bnx2x_config_mf_bw(bp
);
2679 dcc_event
&= ~DRV_STATUS_DCC_BANDWIDTH_ALLOCATION
;
2682 /* Report results to MCP */
2684 bnx2x_fw_command(bp
, DRV_MSG_CODE_DCC_FAILURE
, 0);
2686 bnx2x_fw_command(bp
, DRV_MSG_CODE_DCC_OK
, 0);
2689 /* must be called under the spq lock */
2690 static inline struct eth_spe
*bnx2x_sp_get_next(struct bnx2x
*bp
)
2692 struct eth_spe
*next_spe
= bp
->spq_prod_bd
;
2694 if (bp
->spq_prod_bd
== bp
->spq_last_bd
) {
2695 bp
->spq_prod_bd
= bp
->spq
;
2696 bp
->spq_prod_idx
= 0;
2697 DP(NETIF_MSG_TIMER
, "end of spq\n");
2705 /* must be called under the spq lock */
2706 static inline void bnx2x_sp_prod_update(struct bnx2x
*bp
)
2708 int func
= BP_FUNC(bp
);
2710 /* Make sure that BD data is updated before writing the producer */
2713 REG_WR16(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_SPQ_PROD_OFFSET(func
),
2718 /* the slow path queue is odd since completions arrive on the fastpath ring */
2719 int bnx2x_sp_post(struct bnx2x
*bp
, int command
, int cid
,
2720 u32 data_hi
, u32 data_lo
, int common
)
2722 struct eth_spe
*spe
;
2725 #ifdef BNX2X_STOP_ON_ERROR
2726 if (unlikely(bp
->panic
))
2730 spin_lock_bh(&bp
->spq_lock
);
2733 if (!atomic_read(&bp
->eq_spq_left
)) {
2734 BNX2X_ERR("BUG! EQ ring full!\n");
2735 spin_unlock_bh(&bp
->spq_lock
);
2739 } else if (!atomic_read(&bp
->cq_spq_left
)) {
2740 BNX2X_ERR("BUG! SPQ ring full!\n");
2741 spin_unlock_bh(&bp
->spq_lock
);
2746 spe
= bnx2x_sp_get_next(bp
);
2748 /* CID needs port number to be encoded int it */
2749 spe
->hdr
.conn_and_cmd_data
=
2750 cpu_to_le32((command
<< SPE_HDR_CMD_ID_SHIFT
) |
2755 * FUNC_START, FUNC_STOP, CFC_DEL, STATS, SET_MAC
2756 * TRAFFIC_STOP, TRAFFIC_START
2758 type
= (NONE_CONNECTION_TYPE
<< SPE_HDR_CONN_TYPE_SHIFT
)
2759 & SPE_HDR_CONN_TYPE
;
2761 /* ETH ramrods: SETUP, HALT */
2762 type
= (ETH_CONNECTION_TYPE
<< SPE_HDR_CONN_TYPE_SHIFT
)
2763 & SPE_HDR_CONN_TYPE
;
2765 type
|= ((BP_FUNC(bp
) << SPE_HDR_FUNCTION_ID_SHIFT
) &
2766 SPE_HDR_FUNCTION_ID
);
2768 spe
->hdr
.type
= cpu_to_le16(type
);
2770 spe
->data
.update_data_addr
.hi
= cpu_to_le32(data_hi
);
2771 spe
->data
.update_data_addr
.lo
= cpu_to_le32(data_lo
);
2773 /* stats ramrod has it's own slot on the spq */
2774 if (command
!= RAMROD_CMD_ID_COMMON_STAT_QUERY
) {
2775 /* It's ok if the actual decrement is issued towards the memory
2776 * somewhere between the spin_lock and spin_unlock. Thus no
2777 * more explict memory barrier is needed.
2780 atomic_dec(&bp
->eq_spq_left
);
2782 atomic_dec(&bp
->cq_spq_left
);
2786 DP(BNX2X_MSG_SP
/*NETIF_MSG_TIMER*/,
2787 "SPQE[%x] (%x:%x) command %d hw_cid %x data (%x:%x) "
2788 "type(0x%x) left (ETH, COMMON) (%x,%x)\n",
2789 bp
->spq_prod_idx
, (u32
)U64_HI(bp
->spq_mapping
),
2790 (u32
)(U64_LO(bp
->spq_mapping
) +
2791 (void *)bp
->spq_prod_bd
- (void *)bp
->spq
), command
,
2792 HW_CID(bp
, cid
), data_hi
, data_lo
, type
,
2793 atomic_read(&bp
->cq_spq_left
), atomic_read(&bp
->eq_spq_left
));
2795 bnx2x_sp_prod_update(bp
);
2796 spin_unlock_bh(&bp
->spq_lock
);
2800 /* acquire split MCP access lock register */
2801 static int bnx2x_acquire_alr(struct bnx2x
*bp
)
2807 for (j
= 0; j
< 1000; j
++) {
2809 REG_WR(bp
, GRCBASE_MCP
+ 0x9c, val
);
2810 val
= REG_RD(bp
, GRCBASE_MCP
+ 0x9c);
2811 if (val
& (1L << 31))
2816 if (!(val
& (1L << 31))) {
2817 BNX2X_ERR("Cannot acquire MCP access lock register\n");
2824 /* release split MCP access lock register */
2825 static void bnx2x_release_alr(struct bnx2x
*bp
)
2827 REG_WR(bp
, GRCBASE_MCP
+ 0x9c, 0);
2830 #define BNX2X_DEF_SB_ATT_IDX 0x0001
2831 #define BNX2X_DEF_SB_IDX 0x0002
2833 static inline u16
bnx2x_update_dsb_idx(struct bnx2x
*bp
)
2835 struct host_sp_status_block
*def_sb
= bp
->def_status_blk
;
2838 barrier(); /* status block is written to by the chip */
2839 if (bp
->def_att_idx
!= def_sb
->atten_status_block
.attn_bits_index
) {
2840 bp
->def_att_idx
= def_sb
->atten_status_block
.attn_bits_index
;
2841 rc
|= BNX2X_DEF_SB_ATT_IDX
;
2844 if (bp
->def_idx
!= def_sb
->sp_sb
.running_index
) {
2845 bp
->def_idx
= def_sb
->sp_sb
.running_index
;
2846 rc
|= BNX2X_DEF_SB_IDX
;
2849 /* Do not reorder: indecies reading should complete before handling */
2855 * slow path service functions
2858 static void bnx2x_attn_int_asserted(struct bnx2x
*bp
, u32 asserted
)
2860 int port
= BP_PORT(bp
);
2861 u32 aeu_addr
= port
? MISC_REG_AEU_MASK_ATTN_FUNC_1
:
2862 MISC_REG_AEU_MASK_ATTN_FUNC_0
;
2863 u32 nig_int_mask_addr
= port
? NIG_REG_MASK_INTERRUPT_PORT1
:
2864 NIG_REG_MASK_INTERRUPT_PORT0
;
2869 if (bp
->attn_state
& asserted
)
2870 BNX2X_ERR("IGU ERROR\n");
2872 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_PORT0_ATT_MASK
+ port
);
2873 aeu_mask
= REG_RD(bp
, aeu_addr
);
2875 DP(NETIF_MSG_HW
, "aeu_mask %x newly asserted %x\n",
2876 aeu_mask
, asserted
);
2877 aeu_mask
&= ~(asserted
& 0x3ff);
2878 DP(NETIF_MSG_HW
, "new mask %x\n", aeu_mask
);
2880 REG_WR(bp
, aeu_addr
, aeu_mask
);
2881 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_PORT0_ATT_MASK
+ port
);
2883 DP(NETIF_MSG_HW
, "attn_state %x\n", bp
->attn_state
);
2884 bp
->attn_state
|= asserted
;
2885 DP(NETIF_MSG_HW
, "new state %x\n", bp
->attn_state
);
2887 if (asserted
& ATTN_HARD_WIRED_MASK
) {
2888 if (asserted
& ATTN_NIG_FOR_FUNC
) {
2890 bnx2x_acquire_phy_lock(bp
);
2892 /* save nig interrupt mask */
2893 nig_mask
= REG_RD(bp
, nig_int_mask_addr
);
2894 REG_WR(bp
, nig_int_mask_addr
, 0);
2896 bnx2x_link_attn(bp
);
2898 /* handle unicore attn? */
2900 if (asserted
& ATTN_SW_TIMER_4_FUNC
)
2901 DP(NETIF_MSG_HW
, "ATTN_SW_TIMER_4_FUNC!\n");
2903 if (asserted
& GPIO_2_FUNC
)
2904 DP(NETIF_MSG_HW
, "GPIO_2_FUNC!\n");
2906 if (asserted
& GPIO_3_FUNC
)
2907 DP(NETIF_MSG_HW
, "GPIO_3_FUNC!\n");
2909 if (asserted
& GPIO_4_FUNC
)
2910 DP(NETIF_MSG_HW
, "GPIO_4_FUNC!\n");
2913 if (asserted
& ATTN_GENERAL_ATTN_1
) {
2914 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_1!\n");
2915 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_1
, 0x0);
2917 if (asserted
& ATTN_GENERAL_ATTN_2
) {
2918 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_2!\n");
2919 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_2
, 0x0);
2921 if (asserted
& ATTN_GENERAL_ATTN_3
) {
2922 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_3!\n");
2923 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_3
, 0x0);
2926 if (asserted
& ATTN_GENERAL_ATTN_4
) {
2927 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_4!\n");
2928 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_4
, 0x0);
2930 if (asserted
& ATTN_GENERAL_ATTN_5
) {
2931 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_5!\n");
2932 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_5
, 0x0);
2934 if (asserted
& ATTN_GENERAL_ATTN_6
) {
2935 DP(NETIF_MSG_HW
, "ATTN_GENERAL_ATTN_6!\n");
2936 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_6
, 0x0);
2940 } /* if hardwired */
2942 if (bp
->common
.int_block
== INT_BLOCK_HC
)
2943 reg_addr
= (HC_REG_COMMAND_REG
+ port
*32 +
2944 COMMAND_REG_ATTN_BITS_SET
);
2946 reg_addr
= (BAR_IGU_INTMEM
+ IGU_CMD_ATTN_BIT_SET_UPPER
*8);
2948 DP(NETIF_MSG_HW
, "about to mask 0x%08x at %s addr 0x%x\n", asserted
,
2949 (bp
->common
.int_block
== INT_BLOCK_HC
) ? "HC" : "IGU", reg_addr
);
2950 REG_WR(bp
, reg_addr
, asserted
);
2952 /* now set back the mask */
2953 if (asserted
& ATTN_NIG_FOR_FUNC
) {
2954 REG_WR(bp
, nig_int_mask_addr
, nig_mask
);
2955 bnx2x_release_phy_lock(bp
);
2959 static inline void bnx2x_fan_failure(struct bnx2x
*bp
)
2961 int port
= BP_PORT(bp
);
2963 /* mark the failure */
2966 dev_info
.port_hw_config
[port
].external_phy_config
);
2968 ext_phy_config
&= ~PORT_HW_CFG_XGXS_EXT_PHY_TYPE_MASK
;
2969 ext_phy_config
|= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE
;
2970 SHMEM_WR(bp
, dev_info
.port_hw_config
[port
].external_phy_config
,
2973 /* log the failure */
2974 netdev_err(bp
->dev
, "Fan Failure on Network Controller has caused"
2975 " the driver to shutdown the card to prevent permanent"
2976 " damage. Please contact OEM Support for assistance\n");
2979 static inline void bnx2x_attn_int_deasserted0(struct bnx2x
*bp
, u32 attn
)
2981 int port
= BP_PORT(bp
);
2985 reg_offset
= (port
? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0
:
2986 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0
);
2988 if (attn
& AEU_INPUTS_ATTN_BITS_SPIO5
) {
2990 val
= REG_RD(bp
, reg_offset
);
2991 val
&= ~AEU_INPUTS_ATTN_BITS_SPIO5
;
2992 REG_WR(bp
, reg_offset
, val
);
2994 BNX2X_ERR("SPIO5 hw attention\n");
2996 /* Fan failure attention */
2997 bnx2x_hw_reset_phy(&bp
->link_params
);
2998 bnx2x_fan_failure(bp
);
3001 if (attn
& (AEU_INPUTS_ATTN_BITS_GPIO3_FUNCTION_0
|
3002 AEU_INPUTS_ATTN_BITS_GPIO3_FUNCTION_1
)) {
3003 bnx2x_acquire_phy_lock(bp
);
3004 bnx2x_handle_module_detect_int(&bp
->link_params
);
3005 bnx2x_release_phy_lock(bp
);
3008 if (attn
& HW_INTERRUT_ASSERT_SET_0
) {
3010 val
= REG_RD(bp
, reg_offset
);
3011 val
&= ~(attn
& HW_INTERRUT_ASSERT_SET_0
);
3012 REG_WR(bp
, reg_offset
, val
);
3014 BNX2X_ERR("FATAL HW block attention set0 0x%x\n",
3015 (u32
)(attn
& HW_INTERRUT_ASSERT_SET_0
));
3020 static inline void bnx2x_attn_int_deasserted1(struct bnx2x
*bp
, u32 attn
)
3024 if (attn
& AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT
) {
3026 val
= REG_RD(bp
, DORQ_REG_DORQ_INT_STS_CLR
);
3027 BNX2X_ERR("DB hw attention 0x%x\n", val
);
3028 /* DORQ discard attention */
3030 BNX2X_ERR("FATAL error from DORQ\n");
3033 if (attn
& HW_INTERRUT_ASSERT_SET_1
) {
3035 int port
= BP_PORT(bp
);
3038 reg_offset
= (port
? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1
:
3039 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1
);
3041 val
= REG_RD(bp
, reg_offset
);
3042 val
&= ~(attn
& HW_INTERRUT_ASSERT_SET_1
);
3043 REG_WR(bp
, reg_offset
, val
);
3045 BNX2X_ERR("FATAL HW block attention set1 0x%x\n",
3046 (u32
)(attn
& HW_INTERRUT_ASSERT_SET_1
));
3051 static inline void bnx2x_attn_int_deasserted2(struct bnx2x
*bp
, u32 attn
)
3055 if (attn
& AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT
) {
3057 val
= REG_RD(bp
, CFC_REG_CFC_INT_STS_CLR
);
3058 BNX2X_ERR("CFC hw attention 0x%x\n", val
);
3059 /* CFC error attention */
3061 BNX2X_ERR("FATAL error from CFC\n");
3064 if (attn
& AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT
) {
3066 val
= REG_RD(bp
, PXP_REG_PXP_INT_STS_CLR_0
);
3067 BNX2X_ERR("PXP hw attention 0x%x\n", val
);
3068 /* RQ_USDMDP_FIFO_OVERFLOW */
3070 BNX2X_ERR("FATAL error from PXP\n");
3071 if (CHIP_IS_E2(bp
)) {
3072 val
= REG_RD(bp
, PXP_REG_PXP_INT_STS_CLR_1
);
3073 BNX2X_ERR("PXP hw attention-1 0x%x\n", val
);
3077 if (attn
& HW_INTERRUT_ASSERT_SET_2
) {
3079 int port
= BP_PORT(bp
);
3082 reg_offset
= (port
? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2
:
3083 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2
);
3085 val
= REG_RD(bp
, reg_offset
);
3086 val
&= ~(attn
& HW_INTERRUT_ASSERT_SET_2
);
3087 REG_WR(bp
, reg_offset
, val
);
3089 BNX2X_ERR("FATAL HW block attention set2 0x%x\n",
3090 (u32
)(attn
& HW_INTERRUT_ASSERT_SET_2
));
3095 static inline void bnx2x_attn_int_deasserted3(struct bnx2x
*bp
, u32 attn
)
3099 if (attn
& EVEREST_GEN_ATTN_IN_USE_MASK
) {
3101 if (attn
& BNX2X_PMF_LINK_ASSERT
) {
3102 int func
= BP_FUNC(bp
);
3104 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_12
+ func
*4, 0);
3105 bp
->mf_config
[BP_VN(bp
)] = MF_CFG_RD(bp
,
3106 func_mf_config
[BP_ABS_FUNC(bp
)].config
);
3108 func_mb
[BP_FW_MB_IDX(bp
)].drv_status
);
3109 if (val
& DRV_STATUS_DCC_EVENT_MASK
)
3111 (val
& DRV_STATUS_DCC_EVENT_MASK
));
3113 if (val
& DRV_STATUS_SET_MF_BW
)
3114 bnx2x_set_mf_bw(bp
);
3116 if ((bp
->port
.pmf
== 0) && (val
& DRV_STATUS_PMF
))
3117 bnx2x_pmf_update(bp
);
3119 /* Always call it here: bnx2x_link_report() will
3120 * prevent the link indication duplication.
3122 bnx2x__link_status_update(bp
);
3125 (val
& DRV_STATUS_DCBX_NEGOTIATION_RESULTS
) &&
3126 bp
->dcbx_enabled
> 0)
3127 /* start dcbx state machine */
3128 bnx2x_dcbx_set_params(bp
,
3129 BNX2X_DCBX_STATE_NEG_RECEIVED
);
3130 } else if (attn
& BNX2X_MC_ASSERT_BITS
) {
3132 BNX2X_ERR("MC assert!\n");
3133 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_10
, 0);
3134 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_9
, 0);
3135 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_8
, 0);
3136 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_7
, 0);
3139 } else if (attn
& BNX2X_MCP_ASSERT
) {
3141 BNX2X_ERR("MCP assert!\n");
3142 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_11
, 0);
3146 BNX2X_ERR("Unknown HW assert! (attn 0x%x)\n", attn
);
3149 if (attn
& EVEREST_LATCHED_ATTN_IN_USE_MASK
) {
3150 BNX2X_ERR("LATCHED attention 0x%08x (masked)\n", attn
);
3151 if (attn
& BNX2X_GRC_TIMEOUT
) {
3152 val
= CHIP_IS_E1(bp
) ? 0 :
3153 REG_RD(bp
, MISC_REG_GRC_TIMEOUT_ATTN
);
3154 BNX2X_ERR("GRC time-out 0x%08x\n", val
);
3156 if (attn
& BNX2X_GRC_RSV
) {
3157 val
= CHIP_IS_E1(bp
) ? 0 :
3158 REG_RD(bp
, MISC_REG_GRC_RSV_ATTN
);
3159 BNX2X_ERR("GRC reserved 0x%08x\n", val
);
3161 REG_WR(bp
, MISC_REG_AEU_CLR_LATCH_SIGNAL
, 0x7ff);
3165 #define BNX2X_MISC_GEN_REG MISC_REG_GENERIC_POR_1
3166 #define LOAD_COUNTER_BITS 16 /* Number of bits for load counter */
3167 #define LOAD_COUNTER_MASK (((u32)0x1 << LOAD_COUNTER_BITS) - 1)
3168 #define RESET_DONE_FLAG_MASK (~LOAD_COUNTER_MASK)
3169 #define RESET_DONE_FLAG_SHIFT LOAD_COUNTER_BITS
3172 * should be run under rtnl lock
3174 static inline void bnx2x_set_reset_done(struct bnx2x
*bp
)
3176 u32 val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3177 val
&= ~(1 << RESET_DONE_FLAG_SHIFT
);
3178 REG_WR(bp
, BNX2X_MISC_GEN_REG
, val
);
3184 * should be run under rtnl lock
3186 static inline void bnx2x_set_reset_in_progress(struct bnx2x
*bp
)
3188 u32 val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3190 REG_WR(bp
, BNX2X_MISC_GEN_REG
, val
);
3196 * should be run under rtnl lock
3198 bool bnx2x_reset_is_done(struct bnx2x
*bp
)
3200 u32 val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3201 DP(NETIF_MSG_HW
, "GEN_REG_VAL=0x%08x\n", val
);
3202 return (val
& RESET_DONE_FLAG_MASK
) ? false : true;
3206 * should be run under rtnl lock
3208 inline void bnx2x_inc_load_cnt(struct bnx2x
*bp
)
3210 u32 val1
, val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3212 DP(NETIF_MSG_HW
, "Old GEN_REG_VAL=0x%08x\n", val
);
3214 val1
= ((val
& LOAD_COUNTER_MASK
) + 1) & LOAD_COUNTER_MASK
;
3215 REG_WR(bp
, BNX2X_MISC_GEN_REG
, (val
& RESET_DONE_FLAG_MASK
) | val1
);
3221 * should be run under rtnl lock
3223 u32
bnx2x_dec_load_cnt(struct bnx2x
*bp
)
3225 u32 val1
, val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3227 DP(NETIF_MSG_HW
, "Old GEN_REG_VAL=0x%08x\n", val
);
3229 val1
= ((val
& LOAD_COUNTER_MASK
) - 1) & LOAD_COUNTER_MASK
;
3230 REG_WR(bp
, BNX2X_MISC_GEN_REG
, (val
& RESET_DONE_FLAG_MASK
) | val1
);
3238 * should be run under rtnl lock
3240 static inline u32
bnx2x_get_load_cnt(struct bnx2x
*bp
)
3242 return REG_RD(bp
, BNX2X_MISC_GEN_REG
) & LOAD_COUNTER_MASK
;
3245 static inline void bnx2x_clear_load_cnt(struct bnx2x
*bp
)
3247 u32 val
= REG_RD(bp
, BNX2X_MISC_GEN_REG
);
3248 REG_WR(bp
, BNX2X_MISC_GEN_REG
, val
& (~LOAD_COUNTER_MASK
));
3251 static inline void _print_next_block(int idx
, const char *blk
)
3258 static inline int bnx2x_print_blocks_with_parity0(u32 sig
, int par_num
)
3262 for (i
= 0; sig
; i
++) {
3263 cur_bit
= ((u32
)0x1 << i
);
3264 if (sig
& cur_bit
) {
3266 case AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR
:
3267 _print_next_block(par_num
++, "BRB");
3269 case AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR
:
3270 _print_next_block(par_num
++, "PARSER");
3272 case AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR
:
3273 _print_next_block(par_num
++, "TSDM");
3275 case AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR
:
3276 _print_next_block(par_num
++, "SEARCHER");
3278 case AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR
:
3279 _print_next_block(par_num
++, "TSEMI");
3291 static inline int bnx2x_print_blocks_with_parity1(u32 sig
, int par_num
)
3295 for (i
= 0; sig
; i
++) {
3296 cur_bit
= ((u32
)0x1 << i
);
3297 if (sig
& cur_bit
) {
3299 case AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR
:
3300 _print_next_block(par_num
++, "PBCLIENT");
3302 case AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR
:
3303 _print_next_block(par_num
++, "QM");
3305 case AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR
:
3306 _print_next_block(par_num
++, "XSDM");
3308 case AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR
:
3309 _print_next_block(par_num
++, "XSEMI");
3311 case AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR
:
3312 _print_next_block(par_num
++, "DOORBELLQ");
3314 case AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR
:
3315 _print_next_block(par_num
++, "VAUX PCI CORE");
3317 case AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR
:
3318 _print_next_block(par_num
++, "DEBUG");
3320 case AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR
:
3321 _print_next_block(par_num
++, "USDM");
3323 case AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR
:
3324 _print_next_block(par_num
++, "USEMI");
3326 case AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR
:
3327 _print_next_block(par_num
++, "UPB");
3329 case AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR
:
3330 _print_next_block(par_num
++, "CSDM");
3342 static inline int bnx2x_print_blocks_with_parity2(u32 sig
, int par_num
)
3346 for (i
= 0; sig
; i
++) {
3347 cur_bit
= ((u32
)0x1 << i
);
3348 if (sig
& cur_bit
) {
3350 case AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR
:
3351 _print_next_block(par_num
++, "CSEMI");
3353 case AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR
:
3354 _print_next_block(par_num
++, "PXP");
3356 case AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR
:
3357 _print_next_block(par_num
++,
3358 "PXPPCICLOCKCLIENT");
3360 case AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR
:
3361 _print_next_block(par_num
++, "CFC");
3363 case AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR
:
3364 _print_next_block(par_num
++, "CDU");
3366 case AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR
:
3367 _print_next_block(par_num
++, "IGU");
3369 case AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR
:
3370 _print_next_block(par_num
++, "MISC");
3382 static inline int bnx2x_print_blocks_with_parity3(u32 sig
, int par_num
)
3386 for (i
= 0; sig
; i
++) {
3387 cur_bit
= ((u32
)0x1 << i
);
3388 if (sig
& cur_bit
) {
3390 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY
:
3391 _print_next_block(par_num
++, "MCP ROM");
3393 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY
:
3394 _print_next_block(par_num
++, "MCP UMP RX");
3396 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY
:
3397 _print_next_block(par_num
++, "MCP UMP TX");
3399 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY
:
3400 _print_next_block(par_num
++, "MCP SCPAD");
3412 static inline bool bnx2x_parity_attn(struct bnx2x
*bp
, u32 sig0
, u32 sig1
,
3415 if ((sig0
& HW_PRTY_ASSERT_SET_0
) || (sig1
& HW_PRTY_ASSERT_SET_1
) ||
3416 (sig2
& HW_PRTY_ASSERT_SET_2
) || (sig3
& HW_PRTY_ASSERT_SET_3
)) {
3418 DP(NETIF_MSG_HW
, "Was parity error: HW block parity attention: "
3419 "[0]:0x%08x [1]:0x%08x "
3420 "[2]:0x%08x [3]:0x%08x\n",
3421 sig0
& HW_PRTY_ASSERT_SET_0
,
3422 sig1
& HW_PRTY_ASSERT_SET_1
,
3423 sig2
& HW_PRTY_ASSERT_SET_2
,
3424 sig3
& HW_PRTY_ASSERT_SET_3
);
3425 printk(KERN_ERR
"%s: Parity errors detected in blocks: ",
3427 par_num
= bnx2x_print_blocks_with_parity0(
3428 sig0
& HW_PRTY_ASSERT_SET_0
, par_num
);
3429 par_num
= bnx2x_print_blocks_with_parity1(
3430 sig1
& HW_PRTY_ASSERT_SET_1
, par_num
);
3431 par_num
= bnx2x_print_blocks_with_parity2(
3432 sig2
& HW_PRTY_ASSERT_SET_2
, par_num
);
3433 par_num
= bnx2x_print_blocks_with_parity3(
3434 sig3
& HW_PRTY_ASSERT_SET_3
, par_num
);
3441 bool bnx2x_chk_parity_attn(struct bnx2x
*bp
)
3443 struct attn_route attn
;
3444 int port
= BP_PORT(bp
);
3446 attn
.sig
[0] = REG_RD(bp
,
3447 MISC_REG_AEU_AFTER_INVERT_1_FUNC_0
+
3449 attn
.sig
[1] = REG_RD(bp
,
3450 MISC_REG_AEU_AFTER_INVERT_2_FUNC_0
+
3452 attn
.sig
[2] = REG_RD(bp
,
3453 MISC_REG_AEU_AFTER_INVERT_3_FUNC_0
+
3455 attn
.sig
[3] = REG_RD(bp
,
3456 MISC_REG_AEU_AFTER_INVERT_4_FUNC_0
+
3459 return bnx2x_parity_attn(bp
, attn
.sig
[0], attn
.sig
[1], attn
.sig
[2],
3464 static inline void bnx2x_attn_int_deasserted4(struct bnx2x
*bp
, u32 attn
)
3467 if (attn
& AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT
) {
3469 val
= REG_RD(bp
, PGLUE_B_REG_PGLUE_B_INT_STS_CLR
);
3470 BNX2X_ERR("PGLUE hw attention 0x%x\n", val
);
3471 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR
)
3472 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3474 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR
)
3475 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3476 "INCORRECT_RCV_BEHAVIOR\n");
3477 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN
)
3478 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3479 "WAS_ERROR_ATTN\n");
3480 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN
)
3481 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3482 "VF_LENGTH_VIOLATION_ATTN\n");
3484 PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN
)
3485 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3486 "VF_GRC_SPACE_VIOLATION_ATTN\n");
3488 PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN
)
3489 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3490 "VF_MSIX_BAR_VIOLATION_ATTN\n");
3491 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN
)
3492 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3493 "TCPL_ERROR_ATTN\n");
3494 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN
)
3495 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3496 "TCPL_IN_TWO_RCBS_ATTN\n");
3497 if (val
& PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW
)
3498 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_"
3499 "CSSNOOP_FIFO_OVERFLOW\n");
3501 if (attn
& AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT
) {
3502 val
= REG_RD(bp
, ATC_REG_ATC_INT_STS_CLR
);
3503 BNX2X_ERR("ATC hw attention 0x%x\n", val
);
3504 if (val
& ATC_ATC_INT_STS_REG_ADDRESS_ERROR
)
3505 BNX2X_ERR("ATC_ATC_INT_STS_REG_ADDRESS_ERROR\n");
3506 if (val
& ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND
)
3507 BNX2X_ERR("ATC_ATC_INT_STS_REG"
3508 "_ATC_TCPL_TO_NOT_PEND\n");
3509 if (val
& ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS
)
3510 BNX2X_ERR("ATC_ATC_INT_STS_REG_"
3511 "ATC_GPA_MULTIPLE_HITS\n");
3512 if (val
& ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT
)
3513 BNX2X_ERR("ATC_ATC_INT_STS_REG_"
3514 "ATC_RCPL_TO_EMPTY_CNT\n");
3515 if (val
& ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR
)
3516 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR\n");
3517 if (val
& ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU
)
3518 BNX2X_ERR("ATC_ATC_INT_STS_REG_"
3519 "ATC_IREQ_LESS_THAN_STU\n");
3522 if (attn
& (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR
|
3523 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR
)) {
3524 BNX2X_ERR("FATAL parity attention set4 0x%x\n",
3525 (u32
)(attn
& (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR
|
3526 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR
)));
3531 static void bnx2x_attn_int_deasserted(struct bnx2x
*bp
, u32 deasserted
)
3533 struct attn_route attn
, *group_mask
;
3534 int port
= BP_PORT(bp
);
3540 /* need to take HW lock because MCP or other port might also
3541 try to handle this event */
3542 bnx2x_acquire_alr(bp
);
3544 if (CHIP_PARITY_ENABLED(bp
) && bnx2x_chk_parity_attn(bp
)) {
3545 bp
->recovery_state
= BNX2X_RECOVERY_INIT
;
3546 bnx2x_set_reset_in_progress(bp
);
3547 schedule_delayed_work(&bp
->reset_task
, 0);
3548 /* Disable HW interrupts */
3549 bnx2x_int_disable(bp
);
3550 bnx2x_release_alr(bp
);
3551 /* In case of parity errors don't handle attentions so that
3552 * other function would "see" parity errors.
3557 attn
.sig
[0] = REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0
+ port
*4);
3558 attn
.sig
[1] = REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_2_FUNC_0
+ port
*4);
3559 attn
.sig
[2] = REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_3_FUNC_0
+ port
*4);
3560 attn
.sig
[3] = REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_4_FUNC_0
+ port
*4);
3563 REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_5_FUNC_0
+ port
*4);
3567 DP(NETIF_MSG_HW
, "attn: %08x %08x %08x %08x %08x\n",
3568 attn
.sig
[0], attn
.sig
[1], attn
.sig
[2], attn
.sig
[3], attn
.sig
[4]);
3570 for (index
= 0; index
< MAX_DYNAMIC_ATTN_GRPS
; index
++) {
3571 if (deasserted
& (1 << index
)) {
3572 group_mask
= &bp
->attn_group
[index
];
3574 DP(NETIF_MSG_HW
, "group[%d]: %08x %08x "
3577 group_mask
->sig
[0], group_mask
->sig
[1],
3578 group_mask
->sig
[2], group_mask
->sig
[3],
3579 group_mask
->sig
[4]);
3581 bnx2x_attn_int_deasserted4(bp
,
3582 attn
.sig
[4] & group_mask
->sig
[4]);
3583 bnx2x_attn_int_deasserted3(bp
,
3584 attn
.sig
[3] & group_mask
->sig
[3]);
3585 bnx2x_attn_int_deasserted1(bp
,
3586 attn
.sig
[1] & group_mask
->sig
[1]);
3587 bnx2x_attn_int_deasserted2(bp
,
3588 attn
.sig
[2] & group_mask
->sig
[2]);
3589 bnx2x_attn_int_deasserted0(bp
,
3590 attn
.sig
[0] & group_mask
->sig
[0]);
3594 bnx2x_release_alr(bp
);
3596 if (bp
->common
.int_block
== INT_BLOCK_HC
)
3597 reg_addr
= (HC_REG_COMMAND_REG
+ port
*32 +
3598 COMMAND_REG_ATTN_BITS_CLR
);
3600 reg_addr
= (BAR_IGU_INTMEM
+ IGU_CMD_ATTN_BIT_CLR_UPPER
*8);
3603 DP(NETIF_MSG_HW
, "about to mask 0x%08x at %s addr 0x%x\n", val
,
3604 (bp
->common
.int_block
== INT_BLOCK_HC
) ? "HC" : "IGU", reg_addr
);
3605 REG_WR(bp
, reg_addr
, val
);
3607 if (~bp
->attn_state
& deasserted
)
3608 BNX2X_ERR("IGU ERROR\n");
3610 reg_addr
= port
? MISC_REG_AEU_MASK_ATTN_FUNC_1
:
3611 MISC_REG_AEU_MASK_ATTN_FUNC_0
;
3613 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_PORT0_ATT_MASK
+ port
);
3614 aeu_mask
= REG_RD(bp
, reg_addr
);
3616 DP(NETIF_MSG_HW
, "aeu_mask %x newly deasserted %x\n",
3617 aeu_mask
, deasserted
);
3618 aeu_mask
|= (deasserted
& 0x3ff);
3619 DP(NETIF_MSG_HW
, "new mask %x\n", aeu_mask
);
3621 REG_WR(bp
, reg_addr
, aeu_mask
);
3622 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_PORT0_ATT_MASK
+ port
);
3624 DP(NETIF_MSG_HW
, "attn_state %x\n", bp
->attn_state
);
3625 bp
->attn_state
&= ~deasserted
;
3626 DP(NETIF_MSG_HW
, "new state %x\n", bp
->attn_state
);
3629 static void bnx2x_attn_int(struct bnx2x
*bp
)
3631 /* read local copy of bits */
3632 u32 attn_bits
= le32_to_cpu(bp
->def_status_blk
->atten_status_block
.
3634 u32 attn_ack
= le32_to_cpu(bp
->def_status_blk
->atten_status_block
.
3636 u32 attn_state
= bp
->attn_state
;
3638 /* look for changed bits */
3639 u32 asserted
= attn_bits
& ~attn_ack
& ~attn_state
;
3640 u32 deasserted
= ~attn_bits
& attn_ack
& attn_state
;
3643 "attn_bits %x attn_ack %x asserted %x deasserted %x\n",
3644 attn_bits
, attn_ack
, asserted
, deasserted
);
3646 if (~(attn_bits
^ attn_ack
) & (attn_bits
^ attn_state
))
3647 BNX2X_ERR("BAD attention state\n");
3649 /* handle bits that were raised */
3651 bnx2x_attn_int_asserted(bp
, asserted
);
3654 bnx2x_attn_int_deasserted(bp
, deasserted
);
3657 static inline void bnx2x_update_eq_prod(struct bnx2x
*bp
, u16 prod
)
3659 /* No memory barriers */
3660 storm_memset_eq_prod(bp
, prod
, BP_FUNC(bp
));
3661 mmiowb(); /* keep prod updates ordered */
3665 static int bnx2x_cnic_handle_cfc_del(struct bnx2x
*bp
, u32 cid
,
3666 union event_ring_elem
*elem
)
3668 if (!bp
->cnic_eth_dev
.starting_cid
||
3669 cid
< bp
->cnic_eth_dev
.starting_cid
)
3672 DP(BNX2X_MSG_SP
, "got delete ramrod for CNIC CID %d\n", cid
);
3674 if (unlikely(elem
->message
.data
.cfc_del_event
.error
)) {
3675 BNX2X_ERR("got delete ramrod for CNIC CID %d with error!\n",
3677 bnx2x_panic_dump(bp
);
3679 bnx2x_cnic_cfc_comp(bp
, cid
);
3684 static void bnx2x_eq_int(struct bnx2x
*bp
)
3686 u16 hw_cons
, sw_cons
, sw_prod
;
3687 union event_ring_elem
*elem
;
3692 hw_cons
= le16_to_cpu(*bp
->eq_cons_sb
);
3694 /* The hw_cos range is 1-255, 257 - the sw_cons range is 0-254, 256.
3695 * when we get the the next-page we nned to adjust so the loop
3696 * condition below will be met. The next element is the size of a
3697 * regular element and hence incrementing by 1
3699 if ((hw_cons
& EQ_DESC_MAX_PAGE
) == EQ_DESC_MAX_PAGE
)
3702 /* This function may never run in parallel with itself for a
3703 * specific bp, thus there is no need in "paired" read memory
3706 sw_cons
= bp
->eq_cons
;
3707 sw_prod
= bp
->eq_prod
;
3709 DP(BNX2X_MSG_SP
, "EQ: hw_cons %u sw_cons %u bp->cq_spq_left %u\n",
3710 hw_cons
, sw_cons
, atomic_read(&bp
->eq_spq_left
));
3712 for (; sw_cons
!= hw_cons
;
3713 sw_prod
= NEXT_EQ_IDX(sw_prod
), sw_cons
= NEXT_EQ_IDX(sw_cons
)) {
3716 elem
= &bp
->eq_ring
[EQ_DESC(sw_cons
)];
3718 cid
= SW_CID(elem
->message
.data
.cfc_del_event
.cid
);
3719 opcode
= elem
->message
.opcode
;
3722 /* handle eq element */
3724 case EVENT_RING_OPCODE_STAT_QUERY
:
3725 DP(NETIF_MSG_TIMER
, "got statistics comp event\n");
3726 /* nothing to do with stats comp */
3729 case EVENT_RING_OPCODE_CFC_DEL
:
3730 /* handle according to cid range */
3732 * we may want to verify here that the bp state is
3735 DP(NETIF_MSG_IFDOWN
,
3736 "got delete ramrod for MULTI[%d]\n", cid
);
3738 if (!bnx2x_cnic_handle_cfc_del(bp
, cid
, elem
))
3740 if (cid
== BNX2X_FCOE_ETH_CID
)
3741 bnx2x_fcoe(bp
, state
) = BNX2X_FP_STATE_CLOSED
;
3744 bnx2x_fp(bp
, cid
, state
) =
3745 BNX2X_FP_STATE_CLOSED
;
3749 case EVENT_RING_OPCODE_STOP_TRAFFIC
:
3750 DP(NETIF_MSG_IFUP
, "got STOP TRAFFIC\n");
3751 bnx2x_dcbx_set_params(bp
, BNX2X_DCBX_STATE_TX_PAUSED
);
3753 case EVENT_RING_OPCODE_START_TRAFFIC
:
3754 DP(NETIF_MSG_IFUP
, "got START TRAFFIC\n");
3755 bnx2x_dcbx_set_params(bp
, BNX2X_DCBX_STATE_TX_RELEASED
);
3759 switch (opcode
| bp
->state
) {
3760 case (EVENT_RING_OPCODE_FUNCTION_START
|
3761 BNX2X_STATE_OPENING_WAIT4_PORT
):
3762 DP(NETIF_MSG_IFUP
, "got setup ramrod\n");
3763 bp
->state
= BNX2X_STATE_FUNC_STARTED
;
3766 case (EVENT_RING_OPCODE_FUNCTION_STOP
|
3767 BNX2X_STATE_CLOSING_WAIT4_HALT
):
3768 DP(NETIF_MSG_IFDOWN
, "got halt ramrod\n");
3769 bp
->state
= BNX2X_STATE_CLOSING_WAIT4_UNLOAD
;
3772 case (EVENT_RING_OPCODE_SET_MAC
| BNX2X_STATE_OPEN
):
3773 case (EVENT_RING_OPCODE_SET_MAC
| BNX2X_STATE_DIAG
):
3774 DP(NETIF_MSG_IFUP
, "got set mac ramrod\n");
3775 if (elem
->message
.data
.set_mac_event
.echo
)
3776 bp
->set_mac_pending
= 0;
3779 case (EVENT_RING_OPCODE_SET_MAC
|
3780 BNX2X_STATE_CLOSING_WAIT4_HALT
):
3781 DP(NETIF_MSG_IFDOWN
, "got (un)set mac ramrod\n");
3782 if (elem
->message
.data
.set_mac_event
.echo
)
3783 bp
->set_mac_pending
= 0;
3786 /* unknown event log error and continue */
3787 BNX2X_ERR("Unknown EQ event %d\n",
3788 elem
->message
.opcode
);
3794 smp_mb__before_atomic_inc();
3795 atomic_add(spqe_cnt
, &bp
->eq_spq_left
);
3797 bp
->eq_cons
= sw_cons
;
3798 bp
->eq_prod
= sw_prod
;
3799 /* Make sure that above mem writes were issued towards the memory */
3802 /* update producer */
3803 bnx2x_update_eq_prod(bp
, bp
->eq_prod
);
3806 static void bnx2x_sp_task(struct work_struct
*work
)
3808 struct bnx2x
*bp
= container_of(work
, struct bnx2x
, sp_task
.work
);
3811 /* Return here if interrupt is disabled */
3812 if (unlikely(atomic_read(&bp
->intr_sem
) != 0)) {
3813 DP(NETIF_MSG_INTR
, "called but intr_sem not 0, returning\n");
3817 status
= bnx2x_update_dsb_idx(bp
);
3818 /* if (status == 0) */
3819 /* BNX2X_ERR("spurious slowpath interrupt!\n"); */
3821 DP(NETIF_MSG_INTR
, "got a slowpath interrupt (status 0x%x)\n", status
);
3824 if (status
& BNX2X_DEF_SB_ATT_IDX
) {
3826 status
&= ~BNX2X_DEF_SB_ATT_IDX
;
3829 /* SP events: STAT_QUERY and others */
3830 if (status
& BNX2X_DEF_SB_IDX
) {
3832 struct bnx2x_fastpath
*fp
= bnx2x_fcoe_fp(bp
);
3834 if ((!NO_FCOE(bp
)) &&
3835 (bnx2x_has_rx_work(fp
) || bnx2x_has_tx_work(fp
)))
3836 napi_schedule(&bnx2x_fcoe(bp
, napi
));
3838 /* Handle EQ completions */
3841 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
, USTORM_ID
,
3842 le16_to_cpu(bp
->def_idx
), IGU_INT_NOP
, 1);
3844 status
&= ~BNX2X_DEF_SB_IDX
;
3847 if (unlikely(status
))
3848 DP(NETIF_MSG_INTR
, "got an unknown interrupt! (status 0x%x)\n",
3851 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
, ATTENTION_ID
,
3852 le16_to_cpu(bp
->def_att_idx
), IGU_INT_ENABLE
, 1);
3855 irqreturn_t
bnx2x_msix_sp_int(int irq
, void *dev_instance
)
3857 struct net_device
*dev
= dev_instance
;
3858 struct bnx2x
*bp
= netdev_priv(dev
);
3860 /* Return here if interrupt is disabled */
3861 if (unlikely(atomic_read(&bp
->intr_sem
) != 0)) {
3862 DP(NETIF_MSG_INTR
, "called but intr_sem not 0, returning\n");
3866 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
, USTORM_ID
, 0,
3867 IGU_INT_DISABLE
, 0);
3869 #ifdef BNX2X_STOP_ON_ERROR
3870 if (unlikely(bp
->panic
))
3876 struct cnic_ops
*c_ops
;
3879 c_ops
= rcu_dereference(bp
->cnic_ops
);
3881 c_ops
->cnic_handler(bp
->cnic_data
, NULL
);
3885 queue_delayed_work(bnx2x_wq
, &bp
->sp_task
, 0);
3890 /* end of slow path */
3892 static void bnx2x_timer(unsigned long data
)
3894 struct bnx2x
*bp
= (struct bnx2x
*) data
;
3896 if (!netif_running(bp
->dev
))
3899 if (atomic_read(&bp
->intr_sem
) != 0)
3903 struct bnx2x_fastpath
*fp
= &bp
->fp
[0];
3906 bnx2x_rx_int(fp
, 1000);
3909 if (!BP_NOMCP(bp
)) {
3910 int mb_idx
= BP_FW_MB_IDX(bp
);
3914 ++bp
->fw_drv_pulse_wr_seq
;
3915 bp
->fw_drv_pulse_wr_seq
&= DRV_PULSE_SEQ_MASK
;
3916 /* TBD - add SYSTEM_TIME */
3917 drv_pulse
= bp
->fw_drv_pulse_wr_seq
;
3918 SHMEM_WR(bp
, func_mb
[mb_idx
].drv_pulse_mb
, drv_pulse
);
3920 mcp_pulse
= (SHMEM_RD(bp
, func_mb
[mb_idx
].mcp_pulse_mb
) &
3921 MCP_PULSE_SEQ_MASK
);
3922 /* The delta between driver pulse and mcp response
3923 * should be 1 (before mcp response) or 0 (after mcp response)
3925 if ((drv_pulse
!= mcp_pulse
) &&
3926 (drv_pulse
!= ((mcp_pulse
+ 1) & MCP_PULSE_SEQ_MASK
))) {
3927 /* someone lost a heartbeat... */
3928 BNX2X_ERR("drv_pulse (0x%x) != mcp_pulse (0x%x)\n",
3929 drv_pulse
, mcp_pulse
);
3933 if (bp
->state
== BNX2X_STATE_OPEN
)
3934 bnx2x_stats_handle(bp
, STATS_EVENT_UPDATE
);
3937 mod_timer(&bp
->timer
, jiffies
+ bp
->current_interval
);
3940 /* end of Statistics */
3945 * nic init service functions
3948 static inline void bnx2x_fill(struct bnx2x
*bp
, u32 addr
, int fill
, u32 len
)
3951 if (!(len
%4) && !(addr
%4))
3952 for (i
= 0; i
< len
; i
+= 4)
3953 REG_WR(bp
, addr
+ i
, fill
);
3955 for (i
= 0; i
< len
; i
++)
3956 REG_WR8(bp
, addr
+ i
, fill
);
3960 /* helper: writes FP SP data to FW - data_size in dwords */
3961 static inline void bnx2x_wr_fp_sb_data(struct bnx2x
*bp
,
3967 for (index
= 0; index
< data_size
; index
++)
3968 REG_WR(bp
, BAR_CSTRORM_INTMEM
+
3969 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id
) +
3971 *(sb_data_p
+ index
));
3974 static inline void bnx2x_zero_fp_sb(struct bnx2x
*bp
, int fw_sb_id
)
3978 struct hc_status_block_data_e2 sb_data_e2
;
3979 struct hc_status_block_data_e1x sb_data_e1x
;
3981 /* disable the function first */
3982 if (CHIP_IS_E2(bp
)) {
3983 memset(&sb_data_e2
, 0, sizeof(struct hc_status_block_data_e2
));
3984 sb_data_e2
.common
.p_func
.pf_id
= HC_FUNCTION_DISABLED
;
3985 sb_data_e2
.common
.p_func
.vf_id
= HC_FUNCTION_DISABLED
;
3986 sb_data_e2
.common
.p_func
.vf_valid
= false;
3987 sb_data_p
= (u32
*)&sb_data_e2
;
3988 data_size
= sizeof(struct hc_status_block_data_e2
)/sizeof(u32
);
3990 memset(&sb_data_e1x
, 0,
3991 sizeof(struct hc_status_block_data_e1x
));
3992 sb_data_e1x
.common
.p_func
.pf_id
= HC_FUNCTION_DISABLED
;
3993 sb_data_e1x
.common
.p_func
.vf_id
= HC_FUNCTION_DISABLED
;
3994 sb_data_e1x
.common
.p_func
.vf_valid
= false;
3995 sb_data_p
= (u32
*)&sb_data_e1x
;
3996 data_size
= sizeof(struct hc_status_block_data_e1x
)/sizeof(u32
);
3998 bnx2x_wr_fp_sb_data(bp
, fw_sb_id
, sb_data_p
, data_size
);
4000 bnx2x_fill(bp
, BAR_CSTRORM_INTMEM
+
4001 CSTORM_STATUS_BLOCK_OFFSET(fw_sb_id
), 0,
4002 CSTORM_STATUS_BLOCK_SIZE
);
4003 bnx2x_fill(bp
, BAR_CSTRORM_INTMEM
+
4004 CSTORM_SYNC_BLOCK_OFFSET(fw_sb_id
), 0,
4005 CSTORM_SYNC_BLOCK_SIZE
);
4008 /* helper: writes SP SB data to FW */
4009 static inline void bnx2x_wr_sp_sb_data(struct bnx2x
*bp
,
4010 struct hc_sp_status_block_data
*sp_sb_data
)
4012 int func
= BP_FUNC(bp
);
4014 for (i
= 0; i
< sizeof(struct hc_sp_status_block_data
)/sizeof(u32
); i
++)
4015 REG_WR(bp
, BAR_CSTRORM_INTMEM
+
4016 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func
) +
4018 *((u32
*)sp_sb_data
+ i
));
4021 static inline void bnx2x_zero_sp_sb(struct bnx2x
*bp
)
4023 int func
= BP_FUNC(bp
);
4024 struct hc_sp_status_block_data sp_sb_data
;
4025 memset(&sp_sb_data
, 0, sizeof(struct hc_sp_status_block_data
));
4027 sp_sb_data
.p_func
.pf_id
= HC_FUNCTION_DISABLED
;
4028 sp_sb_data
.p_func
.vf_id
= HC_FUNCTION_DISABLED
;
4029 sp_sb_data
.p_func
.vf_valid
= false;
4031 bnx2x_wr_sp_sb_data(bp
, &sp_sb_data
);
4033 bnx2x_fill(bp
, BAR_CSTRORM_INTMEM
+
4034 CSTORM_SP_STATUS_BLOCK_OFFSET(func
), 0,
4035 CSTORM_SP_STATUS_BLOCK_SIZE
);
4036 bnx2x_fill(bp
, BAR_CSTRORM_INTMEM
+
4037 CSTORM_SP_SYNC_BLOCK_OFFSET(func
), 0,
4038 CSTORM_SP_SYNC_BLOCK_SIZE
);
4044 void bnx2x_setup_ndsb_state_machine(struct hc_status_block_sm
*hc_sm
,
4045 int igu_sb_id
, int igu_seg_id
)
4047 hc_sm
->igu_sb_id
= igu_sb_id
;
4048 hc_sm
->igu_seg_id
= igu_seg_id
;
4049 hc_sm
->timer_value
= 0xFF;
4050 hc_sm
->time_to_expire
= 0xFFFFFFFF;
4053 static void bnx2x_init_sb(struct bnx2x
*bp
, dma_addr_t mapping
, int vfid
,
4054 u8 vf_valid
, int fw_sb_id
, int igu_sb_id
)
4058 struct hc_status_block_data_e2 sb_data_e2
;
4059 struct hc_status_block_data_e1x sb_data_e1x
;
4060 struct hc_status_block_sm
*hc_sm_p
;
4064 if (CHIP_INT_MODE_IS_BC(bp
))
4065 igu_seg_id
= HC_SEG_ACCESS_NORM
;
4067 igu_seg_id
= IGU_SEG_ACCESS_NORM
;
4069 bnx2x_zero_fp_sb(bp
, fw_sb_id
);
4071 if (CHIP_IS_E2(bp
)) {
4072 memset(&sb_data_e2
, 0, sizeof(struct hc_status_block_data_e2
));
4073 sb_data_e2
.common
.p_func
.pf_id
= BP_FUNC(bp
);
4074 sb_data_e2
.common
.p_func
.vf_id
= vfid
;
4075 sb_data_e2
.common
.p_func
.vf_valid
= vf_valid
;
4076 sb_data_e2
.common
.p_func
.vnic_id
= BP_VN(bp
);
4077 sb_data_e2
.common
.same_igu_sb_1b
= true;
4078 sb_data_e2
.common
.host_sb_addr
.hi
= U64_HI(mapping
);
4079 sb_data_e2
.common
.host_sb_addr
.lo
= U64_LO(mapping
);
4080 hc_sm_p
= sb_data_e2
.common
.state_machine
;
4081 sb_data_p
= (u32
*)&sb_data_e2
;
4082 data_size
= sizeof(struct hc_status_block_data_e2
)/sizeof(u32
);
4084 memset(&sb_data_e1x
, 0,
4085 sizeof(struct hc_status_block_data_e1x
));
4086 sb_data_e1x
.common
.p_func
.pf_id
= BP_FUNC(bp
);
4087 sb_data_e1x
.common
.p_func
.vf_id
= 0xff;
4088 sb_data_e1x
.common
.p_func
.vf_valid
= false;
4089 sb_data_e1x
.common
.p_func
.vnic_id
= BP_VN(bp
);
4090 sb_data_e1x
.common
.same_igu_sb_1b
= true;
4091 sb_data_e1x
.common
.host_sb_addr
.hi
= U64_HI(mapping
);
4092 sb_data_e1x
.common
.host_sb_addr
.lo
= U64_LO(mapping
);
4093 hc_sm_p
= sb_data_e1x
.common
.state_machine
;
4094 sb_data_p
= (u32
*)&sb_data_e1x
;
4095 data_size
= sizeof(struct hc_status_block_data_e1x
)/sizeof(u32
);
4098 bnx2x_setup_ndsb_state_machine(&hc_sm_p
[SM_RX_ID
],
4099 igu_sb_id
, igu_seg_id
);
4100 bnx2x_setup_ndsb_state_machine(&hc_sm_p
[SM_TX_ID
],
4101 igu_sb_id
, igu_seg_id
);
4103 DP(NETIF_MSG_HW
, "Init FW SB %d\n", fw_sb_id
);
4105 /* write indecies to HW */
4106 bnx2x_wr_fp_sb_data(bp
, fw_sb_id
, sb_data_p
, data_size
);
4109 static void bnx2x_update_coalesce_sb_index(struct bnx2x
*bp
, u16 fw_sb_id
,
4110 u8 sb_index
, u8 disable
, u16 usec
)
4112 int port
= BP_PORT(bp
);
4113 u8 ticks
= usec
/ BNX2X_BTR
;
4115 storm_memset_hc_timeout(bp
, port
, fw_sb_id
, sb_index
, ticks
);
4117 disable
= disable
? 1 : (usec
? 0 : 1);
4118 storm_memset_hc_disable(bp
, port
, fw_sb_id
, sb_index
, disable
);
4121 static void bnx2x_update_coalesce_sb(struct bnx2x
*bp
, u16 fw_sb_id
,
4122 u16 tx_usec
, u16 rx_usec
)
4124 bnx2x_update_coalesce_sb_index(bp
, fw_sb_id
, U_SB_ETH_RX_CQ_INDEX
,
4126 bnx2x_update_coalesce_sb_index(bp
, fw_sb_id
, C_SB_ETH_TX_CQ_INDEX
,
4130 static void bnx2x_init_def_sb(struct bnx2x
*bp
)
4132 struct host_sp_status_block
*def_sb
= bp
->def_status_blk
;
4133 dma_addr_t mapping
= bp
->def_status_blk_mapping
;
4134 int igu_sp_sb_index
;
4136 int port
= BP_PORT(bp
);
4137 int func
= BP_FUNC(bp
);
4141 struct hc_sp_status_block_data sp_sb_data
;
4142 memset(&sp_sb_data
, 0, sizeof(struct hc_sp_status_block_data
));
4144 if (CHIP_INT_MODE_IS_BC(bp
)) {
4145 igu_sp_sb_index
= DEF_SB_IGU_ID
;
4146 igu_seg_id
= HC_SEG_ACCESS_DEF
;
4148 igu_sp_sb_index
= bp
->igu_dsb_id
;
4149 igu_seg_id
= IGU_SEG_ACCESS_DEF
;
4153 section
= ((u64
)mapping
) + offsetof(struct host_sp_status_block
,
4154 atten_status_block
);
4155 def_sb
->atten_status_block
.status_block_id
= igu_sp_sb_index
;
4159 reg_offset
= (port
? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0
:
4160 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0
);
4161 for (index
= 0; index
< MAX_DYNAMIC_ATTN_GRPS
; index
++) {
4163 /* take care of sig[0]..sig[4] */
4164 for (sindex
= 0; sindex
< 4; sindex
++)
4165 bp
->attn_group
[index
].sig
[sindex
] =
4166 REG_RD(bp
, reg_offset
+ sindex
*0x4 + 0x10*index
);
4170 * enable5 is separate from the rest of the registers,
4171 * and therefore the address skip is 4
4172 * and not 16 between the different groups
4174 bp
->attn_group
[index
].sig
[4] = REG_RD(bp
,
4175 reg_offset
+ 0x10 + 0x4*index
);
4177 bp
->attn_group
[index
].sig
[4] = 0;
4180 if (bp
->common
.int_block
== INT_BLOCK_HC
) {
4181 reg_offset
= (port
? HC_REG_ATTN_MSG1_ADDR_L
:
4182 HC_REG_ATTN_MSG0_ADDR_L
);
4184 REG_WR(bp
, reg_offset
, U64_LO(section
));
4185 REG_WR(bp
, reg_offset
+ 4, U64_HI(section
));
4186 } else if (CHIP_IS_E2(bp
)) {
4187 REG_WR(bp
, IGU_REG_ATTN_MSG_ADDR_L
, U64_LO(section
));
4188 REG_WR(bp
, IGU_REG_ATTN_MSG_ADDR_H
, U64_HI(section
));
4191 section
= ((u64
)mapping
) + offsetof(struct host_sp_status_block
,
4194 bnx2x_zero_sp_sb(bp
);
4196 sp_sb_data
.host_sb_addr
.lo
= U64_LO(section
);
4197 sp_sb_data
.host_sb_addr
.hi
= U64_HI(section
);
4198 sp_sb_data
.igu_sb_id
= igu_sp_sb_index
;
4199 sp_sb_data
.igu_seg_id
= igu_seg_id
;
4200 sp_sb_data
.p_func
.pf_id
= func
;
4201 sp_sb_data
.p_func
.vnic_id
= BP_VN(bp
);
4202 sp_sb_data
.p_func
.vf_id
= 0xff;
4204 bnx2x_wr_sp_sb_data(bp
, &sp_sb_data
);
4206 bp
->stats_pending
= 0;
4207 bp
->set_mac_pending
= 0;
4209 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
, USTORM_ID
, 0, IGU_INT_ENABLE
, 0);
4212 void bnx2x_update_coalesce(struct bnx2x
*bp
)
4216 for_each_eth_queue(bp
, i
)
4217 bnx2x_update_coalesce_sb(bp
, bp
->fp
[i
].fw_sb_id
,
4218 bp
->tx_ticks
, bp
->rx_ticks
);
4221 static void bnx2x_init_sp_ring(struct bnx2x
*bp
)
4223 spin_lock_init(&bp
->spq_lock
);
4224 atomic_set(&bp
->cq_spq_left
, MAX_SPQ_PENDING
);
4226 bp
->spq_prod_idx
= 0;
4227 bp
->dsb_sp_prod
= BNX2X_SP_DSB_INDEX
;
4228 bp
->spq_prod_bd
= bp
->spq
;
4229 bp
->spq_last_bd
= bp
->spq_prod_bd
+ MAX_SP_DESC_CNT
;
4232 static void bnx2x_init_eq_ring(struct bnx2x
*bp
)
4235 for (i
= 1; i
<= NUM_EQ_PAGES
; i
++) {
4236 union event_ring_elem
*elem
=
4237 &bp
->eq_ring
[EQ_DESC_CNT_PAGE
* i
- 1];
4239 elem
->next_page
.addr
.hi
=
4240 cpu_to_le32(U64_HI(bp
->eq_mapping
+
4241 BCM_PAGE_SIZE
* (i
% NUM_EQ_PAGES
)));
4242 elem
->next_page
.addr
.lo
=
4243 cpu_to_le32(U64_LO(bp
->eq_mapping
+
4244 BCM_PAGE_SIZE
*(i
% NUM_EQ_PAGES
)));
4247 bp
->eq_prod
= NUM_EQ_DESC
;
4248 bp
->eq_cons_sb
= BNX2X_EQ_INDEX
;
4249 /* we want a warning message before it gets rought... */
4250 atomic_set(&bp
->eq_spq_left
,
4251 min_t(int, MAX_SP_DESC_CNT
- MAX_SPQ_PENDING
, NUM_EQ_DESC
) - 1);
4254 void bnx2x_push_indir_table(struct bnx2x
*bp
)
4256 int func
= BP_FUNC(bp
);
4259 if (bp
->multi_mode
== ETH_RSS_MODE_DISABLED
)
4262 for (i
= 0; i
< TSTORM_INDIRECTION_TABLE_SIZE
; i
++)
4263 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+
4264 TSTORM_INDIRECTION_TABLE_OFFSET(func
) + i
,
4265 bp
->fp
->cl_id
+ bp
->rx_indir_table
[i
]);
4268 static void bnx2x_init_ind_table(struct bnx2x
*bp
)
4272 for (i
= 0; i
< TSTORM_INDIRECTION_TABLE_SIZE
; i
++)
4273 bp
->rx_indir_table
[i
] = i
% BNX2X_NUM_ETH_QUEUES(bp
);
4275 bnx2x_push_indir_table(bp
);
4278 void bnx2x_set_storm_rx_mode(struct bnx2x
*bp
)
4280 int mode
= bp
->rx_mode
;
4281 int port
= BP_PORT(bp
);
4283 u32 def_q_filters
= 0;
4285 /* All but management unicast packets should pass to the host as well */
4287 NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_BRCST
|
4288 NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_MLCST
|
4289 NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_VLAN
|
4290 NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_NO_VLAN
;
4293 case BNX2X_RX_MODE_NONE
: /* no Rx */
4294 def_q_filters
= BNX2X_ACCEPT_NONE
;
4297 cl_id
= bnx2x_fcoe(bp
, cl_id
);
4298 bnx2x_rxq_set_mac_filters(bp
, cl_id
, BNX2X_ACCEPT_NONE
);
4303 case BNX2X_RX_MODE_NORMAL
:
4304 def_q_filters
|= BNX2X_ACCEPT_UNICAST
| BNX2X_ACCEPT_BROADCAST
|
4305 BNX2X_ACCEPT_MULTICAST
;
4308 cl_id
= bnx2x_fcoe(bp
, cl_id
);
4309 bnx2x_rxq_set_mac_filters(bp
, cl_id
,
4310 BNX2X_ACCEPT_UNICAST
|
4311 BNX2X_ACCEPT_MULTICAST
);
4316 case BNX2X_RX_MODE_ALLMULTI
:
4317 def_q_filters
|= BNX2X_ACCEPT_UNICAST
| BNX2X_ACCEPT_BROADCAST
|
4318 BNX2X_ACCEPT_ALL_MULTICAST
;
4321 * Prevent duplication of multicast packets by configuring FCoE
4322 * L2 Client to receive only matched unicast frames.
4325 cl_id
= bnx2x_fcoe(bp
, cl_id
);
4326 bnx2x_rxq_set_mac_filters(bp
, cl_id
,
4327 BNX2X_ACCEPT_UNICAST
);
4332 case BNX2X_RX_MODE_PROMISC
:
4333 def_q_filters
|= BNX2X_PROMISCUOUS_MODE
;
4336 * Prevent packets duplication by configuring DROP_ALL for FCoE
4340 cl_id
= bnx2x_fcoe(bp
, cl_id
);
4341 bnx2x_rxq_set_mac_filters(bp
, cl_id
, BNX2X_ACCEPT_NONE
);
4344 /* pass management unicast packets as well */
4345 llh_mask
|= NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_UNCST
;
4349 BNX2X_ERR("BAD rx mode (%d)\n", mode
);
4353 cl_id
= BP_L_ID(bp
);
4354 bnx2x_rxq_set_mac_filters(bp
, cl_id
, def_q_filters
);
4357 (port
? NIG_REG_LLH1_BRB1_DRV_MASK
:
4358 NIG_REG_LLH0_BRB1_DRV_MASK
), llh_mask
);
4360 DP(NETIF_MSG_IFUP
, "rx mode %d\n"
4361 "drop_ucast 0x%x\ndrop_mcast 0x%x\ndrop_bcast 0x%x\n"
4362 "accp_ucast 0x%x\naccp_mcast 0x%x\naccp_bcast 0x%x\n"
4363 "unmatched_ucast 0x%x\n", mode
,
4364 bp
->mac_filters
.ucast_drop_all
,
4365 bp
->mac_filters
.mcast_drop_all
,
4366 bp
->mac_filters
.bcast_drop_all
,
4367 bp
->mac_filters
.ucast_accept_all
,
4368 bp
->mac_filters
.mcast_accept_all
,
4369 bp
->mac_filters
.bcast_accept_all
,
4370 bp
->mac_filters
.unmatched_unicast
4373 storm_memset_mac_filters(bp
, &bp
->mac_filters
, BP_FUNC(bp
));
4376 static void bnx2x_init_internal_common(struct bnx2x
*bp
)
4380 if (!CHIP_IS_E1(bp
)) {
4382 /* xstorm needs to know whether to add ovlan to packets or not,
4383 * in switch-independent we'll write 0 to here... */
4384 REG_WR8(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_FUNCTION_MODE_OFFSET
,
4386 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+ TSTORM_FUNCTION_MODE_OFFSET
,
4388 REG_WR8(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_FUNCTION_MODE_OFFSET
,
4390 REG_WR8(bp
, BAR_USTRORM_INTMEM
+ USTORM_FUNCTION_MODE_OFFSET
,
4396 * In switch independent mode, the TSTORM needs to accept
4397 * packets that failed classification, since approximate match
4398 * mac addresses aren't written to NIG LLH
4400 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+
4401 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET
, 2);
4403 /* Zero this manually as its initialization is
4404 currently missing in the initTool */
4405 for (i
= 0; i
< (USTORM_AGG_DATA_SIZE
>> 2); i
++)
4406 REG_WR(bp
, BAR_USTRORM_INTMEM
+
4407 USTORM_AGG_DATA_OFFSET
+ i
* 4, 0);
4408 if (CHIP_IS_E2(bp
)) {
4409 REG_WR8(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_IGU_MODE_OFFSET
,
4410 CHIP_INT_MODE_IS_BC(bp
) ?
4411 HC_IGU_BC_MODE
: HC_IGU_NBC_MODE
);
4415 static void bnx2x_init_internal_port(struct bnx2x
*bp
)
4418 bnx2x_dcb_init_intmem_pfc(bp
);
4421 static void bnx2x_init_internal(struct bnx2x
*bp
, u32 load_code
)
4423 switch (load_code
) {
4424 case FW_MSG_CODE_DRV_LOAD_COMMON
:
4425 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
:
4426 bnx2x_init_internal_common(bp
);
4429 case FW_MSG_CODE_DRV_LOAD_PORT
:
4430 bnx2x_init_internal_port(bp
);
4433 case FW_MSG_CODE_DRV_LOAD_FUNCTION
:
4434 /* internal memory per function is
4435 initialized inside bnx2x_pf_init */
4439 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code
);
4444 static void bnx2x_init_fp_sb(struct bnx2x
*bp
, int fp_idx
)
4446 struct bnx2x_fastpath
*fp
= &bp
->fp
[fp_idx
];
4448 fp
->state
= BNX2X_FP_STATE_CLOSED
;
4451 fp
->cl_id
= BP_L_ID(bp
) + fp_idx
;
4452 fp
->fw_sb_id
= bp
->base_fw_ndsb
+ fp
->cl_id
+ CNIC_CONTEXT_USE
;
4453 fp
->igu_sb_id
= bp
->igu_base_sb
+ fp_idx
+ CNIC_CONTEXT_USE
;
4454 /* qZone id equals to FW (per path) client id */
4455 fp
->cl_qzone_id
= fp
->cl_id
+
4456 BP_PORT(bp
)*(CHIP_IS_E2(bp
) ? ETH_MAX_RX_CLIENTS_E2
:
4457 ETH_MAX_RX_CLIENTS_E1H
);
4459 fp
->ustorm_rx_prods_offset
= CHIP_IS_E2(bp
) ?
4460 USTORM_RX_PRODS_E2_OFFSET(fp
->cl_qzone_id
) :
4461 USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp
), fp
->cl_id
);
4462 /* Setup SB indicies */
4463 fp
->rx_cons_sb
= BNX2X_RX_SB_INDEX
;
4464 fp
->tx_cons_sb
= BNX2X_TX_SB_INDEX
;
4466 DP(NETIF_MSG_IFUP
, "queue[%d]: bnx2x_init_sb(%p,%p) "
4467 "cl_id %d fw_sb %d igu_sb %d\n",
4468 fp_idx
, bp
, fp
->status_blk
.e1x_sb
, fp
->cl_id
, fp
->fw_sb_id
,
4470 bnx2x_init_sb(bp
, fp
->status_blk_mapping
, BNX2X_VF_ID_INVALID
, false,
4471 fp
->fw_sb_id
, fp
->igu_sb_id
);
4473 bnx2x_update_fpsb_idx(fp
);
4476 void bnx2x_nic_init(struct bnx2x
*bp
, u32 load_code
)
4480 for_each_eth_queue(bp
, i
)
4481 bnx2x_init_fp_sb(bp
, i
);
4484 bnx2x_init_fcoe_fp(bp
);
4486 bnx2x_init_sb(bp
, bp
->cnic_sb_mapping
,
4487 BNX2X_VF_ID_INVALID
, false,
4488 CNIC_SB_ID(bp
), CNIC_IGU_SB_ID(bp
));
4492 /* ensure status block indices were read */
4495 bnx2x_init_def_sb(bp
);
4496 bnx2x_update_dsb_idx(bp
);
4497 bnx2x_init_rx_rings(bp
);
4498 bnx2x_init_tx_rings(bp
);
4499 bnx2x_init_sp_ring(bp
);
4500 bnx2x_init_eq_ring(bp
);
4501 bnx2x_init_internal(bp
, load_code
);
4503 bnx2x_init_ind_table(bp
);
4504 bnx2x_stats_init(bp
);
4506 /* At this point, we are ready for interrupts */
4507 atomic_set(&bp
->intr_sem
, 0);
4509 /* flush all before enabling interrupts */
4513 bnx2x_int_enable(bp
);
4515 /* Check for SPIO5 */
4516 bnx2x_attn_int_deasserted0(bp
,
4517 REG_RD(bp
, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0
+ BP_PORT(bp
)*4) &
4518 AEU_INPUTS_ATTN_BITS_SPIO5
);
4521 /* end of nic init */
4524 * gzip service functions
4527 static int bnx2x_gunzip_init(struct bnx2x
*bp
)
4529 bp
->gunzip_buf
= dma_alloc_coherent(&bp
->pdev
->dev
, FW_BUF_SIZE
,
4530 &bp
->gunzip_mapping
, GFP_KERNEL
);
4531 if (bp
->gunzip_buf
== NULL
)
4534 bp
->strm
= kmalloc(sizeof(*bp
->strm
), GFP_KERNEL
);
4535 if (bp
->strm
== NULL
)
4538 bp
->strm
->workspace
= kmalloc(zlib_inflate_workspacesize(),
4540 if (bp
->strm
->workspace
== NULL
)
4550 dma_free_coherent(&bp
->pdev
->dev
, FW_BUF_SIZE
, bp
->gunzip_buf
,
4551 bp
->gunzip_mapping
);
4552 bp
->gunzip_buf
= NULL
;
4555 netdev_err(bp
->dev
, "Cannot allocate firmware buffer for"
4556 " un-compression\n");
4560 static void bnx2x_gunzip_end(struct bnx2x
*bp
)
4563 kfree(bp
->strm
->workspace
);
4568 if (bp
->gunzip_buf
) {
4569 dma_free_coherent(&bp
->pdev
->dev
, FW_BUF_SIZE
, bp
->gunzip_buf
,
4570 bp
->gunzip_mapping
);
4571 bp
->gunzip_buf
= NULL
;
4575 static int bnx2x_gunzip(struct bnx2x
*bp
, const u8
*zbuf
, int len
)
4579 /* check gzip header */
4580 if ((zbuf
[0] != 0x1f) || (zbuf
[1] != 0x8b) || (zbuf
[2] != Z_DEFLATED
)) {
4581 BNX2X_ERR("Bad gzip header\n");
4589 if (zbuf
[3] & FNAME
)
4590 while ((zbuf
[n
++] != 0) && (n
< len
));
4592 bp
->strm
->next_in
= (typeof(bp
->strm
->next_in
))zbuf
+ n
;
4593 bp
->strm
->avail_in
= len
- n
;
4594 bp
->strm
->next_out
= bp
->gunzip_buf
;
4595 bp
->strm
->avail_out
= FW_BUF_SIZE
;
4597 rc
= zlib_inflateInit2(bp
->strm
, -MAX_WBITS
);
4601 rc
= zlib_inflate(bp
->strm
, Z_FINISH
);
4602 if ((rc
!= Z_OK
) && (rc
!= Z_STREAM_END
))
4603 netdev_err(bp
->dev
, "Firmware decompression error: %s\n",
4606 bp
->gunzip_outlen
= (FW_BUF_SIZE
- bp
->strm
->avail_out
);
4607 if (bp
->gunzip_outlen
& 0x3)
4608 netdev_err(bp
->dev
, "Firmware decompression error:"
4609 " gunzip_outlen (%d) not aligned\n",
4611 bp
->gunzip_outlen
>>= 2;
4613 zlib_inflateEnd(bp
->strm
);
4615 if (rc
== Z_STREAM_END
)
4621 /* nic load/unload */
4624 * General service functions
4627 /* send a NIG loopback debug packet */
4628 static void bnx2x_lb_pckt(struct bnx2x
*bp
)
4632 /* Ethernet source and destination addresses */
4633 wb_write
[0] = 0x55555555;
4634 wb_write
[1] = 0x55555555;
4635 wb_write
[2] = 0x20; /* SOP */
4636 REG_WR_DMAE(bp
, NIG_REG_DEBUG_PACKET_LB
, wb_write
, 3);
4638 /* NON-IP protocol */
4639 wb_write
[0] = 0x09000000;
4640 wb_write
[1] = 0x55555555;
4641 wb_write
[2] = 0x10; /* EOP, eop_bvalid = 0 */
4642 REG_WR_DMAE(bp
, NIG_REG_DEBUG_PACKET_LB
, wb_write
, 3);
4645 /* some of the internal memories
4646 * are not directly readable from the driver
4647 * to test them we send debug packets
4649 static int bnx2x_int_mem_test(struct bnx2x
*bp
)
4655 if (CHIP_REV_IS_FPGA(bp
))
4657 else if (CHIP_REV_IS_EMUL(bp
))
4662 /* Disable inputs of parser neighbor blocks */
4663 REG_WR(bp
, TSDM_REG_ENABLE_IN1
, 0x0);
4664 REG_WR(bp
, TCM_REG_PRS_IFEN
, 0x0);
4665 REG_WR(bp
, CFC_REG_DEBUG0
, 0x1);
4666 REG_WR(bp
, NIG_REG_PRS_REQ_IN_EN
, 0x0);
4668 /* Write 0 to parser credits for CFC search request */
4669 REG_WR(bp
, PRS_REG_CFC_SEARCH_INITIAL_CREDIT
, 0x0);
4671 /* send Ethernet packet */
4674 /* TODO do i reset NIG statistic? */
4675 /* Wait until NIG register shows 1 packet of size 0x10 */
4676 count
= 1000 * factor
;
4679 bnx2x_read_dmae(bp
, NIG_REG_STAT2_BRB_OCTET
, 2);
4680 val
= *bnx2x_sp(bp
, wb_data
[0]);
4688 BNX2X_ERR("NIG timeout val = 0x%x\n", val
);
4692 /* Wait until PRS register shows 1 packet */
4693 count
= 1000 * factor
;
4695 val
= REG_RD(bp
, PRS_REG_NUM_OF_PACKETS
);
4703 BNX2X_ERR("PRS timeout val = 0x%x\n", val
);
4707 /* Reset and init BRB, PRS */
4708 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
, 0x03);
4710 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
, 0x03);
4712 bnx2x_init_block(bp
, BRB1_BLOCK
, COMMON_STAGE
);
4713 bnx2x_init_block(bp
, PRS_BLOCK
, COMMON_STAGE
);
4715 DP(NETIF_MSG_HW
, "part2\n");
4717 /* Disable inputs of parser neighbor blocks */
4718 REG_WR(bp
, TSDM_REG_ENABLE_IN1
, 0x0);
4719 REG_WR(bp
, TCM_REG_PRS_IFEN
, 0x0);
4720 REG_WR(bp
, CFC_REG_DEBUG0
, 0x1);
4721 REG_WR(bp
, NIG_REG_PRS_REQ_IN_EN
, 0x0);
4723 /* Write 0 to parser credits for CFC search request */
4724 REG_WR(bp
, PRS_REG_CFC_SEARCH_INITIAL_CREDIT
, 0x0);
4726 /* send 10 Ethernet packets */
4727 for (i
= 0; i
< 10; i
++)
4730 /* Wait until NIG register shows 10 + 1
4731 packets of size 11*0x10 = 0xb0 */
4732 count
= 1000 * factor
;
4735 bnx2x_read_dmae(bp
, NIG_REG_STAT2_BRB_OCTET
, 2);
4736 val
= *bnx2x_sp(bp
, wb_data
[0]);
4744 BNX2X_ERR("NIG timeout val = 0x%x\n", val
);
4748 /* Wait until PRS register shows 2 packets */
4749 val
= REG_RD(bp
, PRS_REG_NUM_OF_PACKETS
);
4751 BNX2X_ERR("PRS timeout val = 0x%x\n", val
);
4753 /* Write 1 to parser credits for CFC search request */
4754 REG_WR(bp
, PRS_REG_CFC_SEARCH_INITIAL_CREDIT
, 0x1);
4756 /* Wait until PRS register shows 3 packets */
4757 msleep(10 * factor
);
4758 /* Wait until NIG register shows 1 packet of size 0x10 */
4759 val
= REG_RD(bp
, PRS_REG_NUM_OF_PACKETS
);
4761 BNX2X_ERR("PRS timeout val = 0x%x\n", val
);
4763 /* clear NIG EOP FIFO */
4764 for (i
= 0; i
< 11; i
++)
4765 REG_RD(bp
, NIG_REG_INGRESS_EOP_LB_FIFO
);
4766 val
= REG_RD(bp
, NIG_REG_INGRESS_EOP_LB_EMPTY
);
4768 BNX2X_ERR("clear of NIG failed\n");
4772 /* Reset and init BRB, PRS, NIG */
4773 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
, 0x03);
4775 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
, 0x03);
4777 bnx2x_init_block(bp
, BRB1_BLOCK
, COMMON_STAGE
);
4778 bnx2x_init_block(bp
, PRS_BLOCK
, COMMON_STAGE
);
4781 REG_WR(bp
, PRS_REG_NIC_MODE
, 1);
4784 /* Enable inputs of parser neighbor blocks */
4785 REG_WR(bp
, TSDM_REG_ENABLE_IN1
, 0x7fffffff);
4786 REG_WR(bp
, TCM_REG_PRS_IFEN
, 0x1);
4787 REG_WR(bp
, CFC_REG_DEBUG0
, 0x0);
4788 REG_WR(bp
, NIG_REG_PRS_REQ_IN_EN
, 0x1);
4790 DP(NETIF_MSG_HW
, "done\n");
4795 static void bnx2x_enable_blocks_attention(struct bnx2x
*bp
)
4797 REG_WR(bp
, PXP_REG_PXP_INT_MASK_0
, 0);
4799 REG_WR(bp
, PXP_REG_PXP_INT_MASK_1
, 0x40);
4801 REG_WR(bp
, PXP_REG_PXP_INT_MASK_1
, 0);
4802 REG_WR(bp
, DORQ_REG_DORQ_INT_MASK
, 0);
4803 REG_WR(bp
, CFC_REG_CFC_INT_MASK
, 0);
4805 * mask read length error interrupts in brb for parser
4806 * (parsing unit and 'checksum and crc' unit)
4807 * these errors are legal (PU reads fixed length and CAC can cause
4808 * read length error on truncated packets)
4810 REG_WR(bp
, BRB1_REG_BRB1_INT_MASK
, 0xFC00);
4811 REG_WR(bp
, QM_REG_QM_INT_MASK
, 0);
4812 REG_WR(bp
, TM_REG_TM_INT_MASK
, 0);
4813 REG_WR(bp
, XSDM_REG_XSDM_INT_MASK_0
, 0);
4814 REG_WR(bp
, XSDM_REG_XSDM_INT_MASK_1
, 0);
4815 REG_WR(bp
, XCM_REG_XCM_INT_MASK
, 0);
4816 /* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_0, 0); */
4817 /* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_1, 0); */
4818 REG_WR(bp
, USDM_REG_USDM_INT_MASK_0
, 0);
4819 REG_WR(bp
, USDM_REG_USDM_INT_MASK_1
, 0);
4820 REG_WR(bp
, UCM_REG_UCM_INT_MASK
, 0);
4821 /* REG_WR(bp, USEM_REG_USEM_INT_MASK_0, 0); */
4822 /* REG_WR(bp, USEM_REG_USEM_INT_MASK_1, 0); */
4823 REG_WR(bp
, GRCBASE_UPB
+ PB_REG_PB_INT_MASK
, 0);
4824 REG_WR(bp
, CSDM_REG_CSDM_INT_MASK_0
, 0);
4825 REG_WR(bp
, CSDM_REG_CSDM_INT_MASK_1
, 0);
4826 REG_WR(bp
, CCM_REG_CCM_INT_MASK
, 0);
4827 /* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_0, 0); */
4828 /* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_1, 0); */
4830 if (CHIP_REV_IS_FPGA(bp
))
4831 REG_WR(bp
, PXP2_REG_PXP2_INT_MASK_0
, 0x580000);
4832 else if (CHIP_IS_E2(bp
))
4833 REG_WR(bp
, PXP2_REG_PXP2_INT_MASK_0
,
4834 (PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF
4835 | PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT
4836 | PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN
4837 | PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED
4838 | PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED
));
4840 REG_WR(bp
, PXP2_REG_PXP2_INT_MASK_0
, 0x480000);
4841 REG_WR(bp
, TSDM_REG_TSDM_INT_MASK_0
, 0);
4842 REG_WR(bp
, TSDM_REG_TSDM_INT_MASK_1
, 0);
4843 REG_WR(bp
, TCM_REG_TCM_INT_MASK
, 0);
4844 /* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_0, 0); */
4845 /* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_1, 0); */
4846 REG_WR(bp
, CDU_REG_CDU_INT_MASK
, 0);
4847 REG_WR(bp
, DMAE_REG_DMAE_INT_MASK
, 0);
4848 /* REG_WR(bp, MISC_REG_MISC_INT_MASK, 0); */
4849 REG_WR(bp
, PBF_REG_PBF_INT_MASK
, 0x18); /* bit 3,4 masked */
4852 static void bnx2x_reset_common(struct bnx2x
*bp
)
4855 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
,
4857 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_2_CLEAR
, 0x1403);
4860 static void bnx2x_init_pxp(struct bnx2x
*bp
)
4863 int r_order
, w_order
;
4865 pci_read_config_word(bp
->pdev
,
4866 bp
->pcie_cap
+ PCI_EXP_DEVCTL
, &devctl
);
4867 DP(NETIF_MSG_HW
, "read 0x%x from devctl\n", devctl
);
4868 w_order
= ((devctl
& PCI_EXP_DEVCTL_PAYLOAD
) >> 5);
4870 r_order
= ((devctl
& PCI_EXP_DEVCTL_READRQ
) >> 12);
4872 DP(NETIF_MSG_HW
, "force read order to %d\n", bp
->mrrs
);
4876 bnx2x_init_pxp_arb(bp
, r_order
, w_order
);
4879 static void bnx2x_setup_fan_failure_detection(struct bnx2x
*bp
)
4889 val
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.config2
) &
4890 SHARED_HW_CFG_FAN_FAILURE_MASK
;
4892 if (val
== SHARED_HW_CFG_FAN_FAILURE_ENABLED
)
4896 * The fan failure mechanism is usually related to the PHY type since
4897 * the power consumption of the board is affected by the PHY. Currently,
4898 * fan is required for most designs with SFX7101, BCM8727 and BCM8481.
4900 else if (val
== SHARED_HW_CFG_FAN_FAILURE_PHY_TYPE
)
4901 for (port
= PORT_0
; port
< PORT_MAX
; port
++) {
4903 bnx2x_fan_failure_det_req(
4905 bp
->common
.shmem_base
,
4906 bp
->common
.shmem2_base
,
4910 DP(NETIF_MSG_HW
, "fan detection setting: %d\n", is_required
);
4912 if (is_required
== 0)
4915 /* Fan failure is indicated by SPIO 5 */
4916 bnx2x_set_spio(bp
, MISC_REGISTERS_SPIO_5
,
4917 MISC_REGISTERS_SPIO_INPUT_HI_Z
);
4919 /* set to active low mode */
4920 val
= REG_RD(bp
, MISC_REG_SPIO_INT
);
4921 val
|= ((1 << MISC_REGISTERS_SPIO_5
) <<
4922 MISC_REGISTERS_SPIO_INT_OLD_SET_POS
);
4923 REG_WR(bp
, MISC_REG_SPIO_INT
, val
);
4925 /* enable interrupt to signal the IGU */
4926 val
= REG_RD(bp
, MISC_REG_SPIO_EVENT_EN
);
4927 val
|= (1 << MISC_REGISTERS_SPIO_5
);
4928 REG_WR(bp
, MISC_REG_SPIO_EVENT_EN
, val
);
4931 static void bnx2x_pretend_func(struct bnx2x
*bp
, u8 pretend_func_num
)
4937 if (CHIP_IS_E1H(bp
) && (pretend_func_num
>= E1H_FUNC_MAX
))
4940 switch (BP_ABS_FUNC(bp
)) {
4942 offset
= PXP2_REG_PGL_PRETEND_FUNC_F0
;
4945 offset
= PXP2_REG_PGL_PRETEND_FUNC_F1
;
4948 offset
= PXP2_REG_PGL_PRETEND_FUNC_F2
;
4951 offset
= PXP2_REG_PGL_PRETEND_FUNC_F3
;
4954 offset
= PXP2_REG_PGL_PRETEND_FUNC_F4
;
4957 offset
= PXP2_REG_PGL_PRETEND_FUNC_F5
;
4960 offset
= PXP2_REG_PGL_PRETEND_FUNC_F6
;
4963 offset
= PXP2_REG_PGL_PRETEND_FUNC_F7
;
4969 REG_WR(bp
, offset
, pretend_func_num
);
4971 DP(NETIF_MSG_HW
, "Pretending to func %d\n", pretend_func_num
);
4974 static void bnx2x_pf_disable(struct bnx2x
*bp
)
4976 u32 val
= REG_RD(bp
, IGU_REG_PF_CONFIGURATION
);
4977 val
&= ~IGU_PF_CONF_FUNC_EN
;
4979 REG_WR(bp
, IGU_REG_PF_CONFIGURATION
, val
);
4980 REG_WR(bp
, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
, 0);
4981 REG_WR(bp
, CFC_REG_WEAK_ENABLE_PF
, 0);
4984 static int bnx2x_init_hw_common(struct bnx2x
*bp
, u32 load_code
)
4988 DP(BNX2X_MSG_MCP
, "starting common init func %d\n", BP_ABS_FUNC(bp
));
4990 bnx2x_reset_common(bp
);
4991 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
, 0xffffffff);
4992 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_2_SET
, 0xfffc);
4994 bnx2x_init_block(bp
, MISC_BLOCK
, COMMON_STAGE
);
4995 if (!CHIP_IS_E1(bp
))
4996 REG_WR(bp
, MISC_REG_E1HMF_MODE
, IS_MF(bp
));
4998 if (CHIP_IS_E2(bp
)) {
5002 * 4-port mode or 2-port mode we need to turn of master-enable
5003 * for everyone, after that, turn it back on for self.
5004 * so, we disregard multi-function or not, and always disable
5005 * for all functions on the given path, this means 0,2,4,6 for
5006 * path 0 and 1,3,5,7 for path 1
5008 for (fid
= BP_PATH(bp
); fid
< E2_FUNC_MAX
*2; fid
+= 2) {
5009 if (fid
== BP_ABS_FUNC(bp
)) {
5011 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
,
5016 bnx2x_pretend_func(bp
, fid
);
5017 /* clear pf enable */
5018 bnx2x_pf_disable(bp
);
5019 bnx2x_pretend_func(bp
, BP_ABS_FUNC(bp
));
5023 bnx2x_init_block(bp
, PXP_BLOCK
, COMMON_STAGE
);
5024 if (CHIP_IS_E1(bp
)) {
5025 /* enable HW interrupt from PXP on USDM overflow
5026 bit 16 on INT_MASK_0 */
5027 REG_WR(bp
, PXP_REG_PXP_INT_MASK_0
, 0);
5030 bnx2x_init_block(bp
, PXP2_BLOCK
, COMMON_STAGE
);
5034 REG_WR(bp
, PXP2_REG_RQ_QM_ENDIAN_M
, 1);
5035 REG_WR(bp
, PXP2_REG_RQ_TM_ENDIAN_M
, 1);
5036 REG_WR(bp
, PXP2_REG_RQ_SRC_ENDIAN_M
, 1);
5037 REG_WR(bp
, PXP2_REG_RQ_CDU_ENDIAN_M
, 1);
5038 REG_WR(bp
, PXP2_REG_RQ_DBG_ENDIAN_M
, 1);
5039 /* make sure this value is 0 */
5040 REG_WR(bp
, PXP2_REG_RQ_HC_ENDIAN_M
, 0);
5042 /* REG_WR(bp, PXP2_REG_RD_PBF_SWAP_MODE, 1); */
5043 REG_WR(bp
, PXP2_REG_RD_QM_SWAP_MODE
, 1);
5044 REG_WR(bp
, PXP2_REG_RD_TM_SWAP_MODE
, 1);
5045 REG_WR(bp
, PXP2_REG_RD_SRC_SWAP_MODE
, 1);
5046 REG_WR(bp
, PXP2_REG_RD_CDURD_SWAP_MODE
, 1);
5049 bnx2x_ilt_init_page_size(bp
, INITOP_SET
);
5051 if (CHIP_REV_IS_FPGA(bp
) && CHIP_IS_E1H(bp
))
5052 REG_WR(bp
, PXP2_REG_PGL_TAGS_LIMIT
, 0x1);
5054 /* let the HW do it's magic ... */
5056 /* finish PXP init */
5057 val
= REG_RD(bp
, PXP2_REG_RQ_CFG_DONE
);
5059 BNX2X_ERR("PXP2 CFG failed\n");
5062 val
= REG_RD(bp
, PXP2_REG_RD_INIT_DONE
);
5064 BNX2X_ERR("PXP2 RD_INIT failed\n");
5068 /* Timers bug workaround E2 only. We need to set the entire ILT to
5069 * have entries with value "0" and valid bit on.
5070 * This needs to be done by the first PF that is loaded in a path
5071 * (i.e. common phase)
5073 if (CHIP_IS_E2(bp
)) {
5074 struct ilt_client_info ilt_cli
;
5075 struct bnx2x_ilt ilt
;
5076 memset(&ilt_cli
, 0, sizeof(struct ilt_client_info
));
5077 memset(&ilt
, 0, sizeof(struct bnx2x_ilt
));
5079 /* initialize dummy TM client */
5081 ilt_cli
.end
= ILT_NUM_PAGE_ENTRIES
- 1;
5082 ilt_cli
.client_num
= ILT_CLIENT_TM
;
5084 /* Step 1: set zeroes to all ilt page entries with valid bit on
5085 * Step 2: set the timers first/last ilt entry to point
5086 * to the entire range to prevent ILT range error for 3rd/4th
5087 * vnic (this code assumes existence of the vnic)
5089 * both steps performed by call to bnx2x_ilt_client_init_op()
5090 * with dummy TM client
5092 * we must use pretend since PXP2_REG_RQ_##blk##_FIRST_ILT
5093 * and his brother are split registers
5095 bnx2x_pretend_func(bp
, (BP_PATH(bp
) + 6));
5096 bnx2x_ilt_client_init_op_ilt(bp
, &ilt
, &ilt_cli
, INITOP_CLEAR
);
5097 bnx2x_pretend_func(bp
, BP_ABS_FUNC(bp
));
5099 REG_WR(bp
, PXP2_REG_RQ_DRAM_ALIGN
, BNX2X_PXP_DRAM_ALIGN
);
5100 REG_WR(bp
, PXP2_REG_RQ_DRAM_ALIGN_RD
, BNX2X_PXP_DRAM_ALIGN
);
5101 REG_WR(bp
, PXP2_REG_RQ_DRAM_ALIGN_SEL
, 1);
5105 REG_WR(bp
, PXP2_REG_RQ_DISABLE_INPUTS
, 0);
5106 REG_WR(bp
, PXP2_REG_RD_DISABLE_INPUTS
, 0);
5108 if (CHIP_IS_E2(bp
)) {
5109 int factor
= CHIP_REV_IS_EMUL(bp
) ? 1000 :
5110 (CHIP_REV_IS_FPGA(bp
) ? 400 : 0);
5111 bnx2x_init_block(bp
, PGLUE_B_BLOCK
, COMMON_STAGE
);
5113 bnx2x_init_block(bp
, ATC_BLOCK
, COMMON_STAGE
);
5115 /* let the HW do it's magic ... */
5118 val
= REG_RD(bp
, ATC_REG_ATC_INIT_DONE
);
5119 } while (factor
-- && (val
!= 1));
5122 BNX2X_ERR("ATC_INIT failed\n");
5127 bnx2x_init_block(bp
, DMAE_BLOCK
, COMMON_STAGE
);
5129 /* clean the DMAE memory */
5131 bnx2x_init_fill(bp
, TSEM_REG_PRAM
, 0, 8);
5133 bnx2x_init_block(bp
, TCM_BLOCK
, COMMON_STAGE
);
5134 bnx2x_init_block(bp
, UCM_BLOCK
, COMMON_STAGE
);
5135 bnx2x_init_block(bp
, CCM_BLOCK
, COMMON_STAGE
);
5136 bnx2x_init_block(bp
, XCM_BLOCK
, COMMON_STAGE
);
5138 bnx2x_read_dmae(bp
, XSEM_REG_PASSIVE_BUFFER
, 3);
5139 bnx2x_read_dmae(bp
, CSEM_REG_PASSIVE_BUFFER
, 3);
5140 bnx2x_read_dmae(bp
, TSEM_REG_PASSIVE_BUFFER
, 3);
5141 bnx2x_read_dmae(bp
, USEM_REG_PASSIVE_BUFFER
, 3);
5143 bnx2x_init_block(bp
, QM_BLOCK
, COMMON_STAGE
);
5145 if (CHIP_MODE_IS_4_PORT(bp
))
5146 bnx2x_init_block(bp
, QM_4PORT_BLOCK
, COMMON_STAGE
);
5148 /* QM queues pointers table */
5149 bnx2x_qm_init_ptr_table(bp
, bp
->qm_cid_count
, INITOP_SET
);
5151 /* soft reset pulse */
5152 REG_WR(bp
, QM_REG_SOFT_RESET
, 1);
5153 REG_WR(bp
, QM_REG_SOFT_RESET
, 0);
5156 bnx2x_init_block(bp
, TIMERS_BLOCK
, COMMON_STAGE
);
5159 bnx2x_init_block(bp
, DQ_BLOCK
, COMMON_STAGE
);
5160 REG_WR(bp
, DORQ_REG_DPM_CID_OFST
, BNX2X_DB_SHIFT
);
5162 if (!CHIP_REV_IS_SLOW(bp
)) {
5163 /* enable hw interrupt from doorbell Q */
5164 REG_WR(bp
, DORQ_REG_DORQ_INT_MASK
, 0);
5167 bnx2x_init_block(bp
, BRB1_BLOCK
, COMMON_STAGE
);
5168 if (CHIP_MODE_IS_4_PORT(bp
)) {
5169 REG_WR(bp
, BRB1_REG_FULL_LB_XOFF_THRESHOLD
, 248);
5170 REG_WR(bp
, BRB1_REG_FULL_LB_XON_THRESHOLD
, 328);
5173 bnx2x_init_block(bp
, PRS_BLOCK
, COMMON_STAGE
);
5174 REG_WR(bp
, PRS_REG_A_PRSU_20
, 0xf);
5177 REG_WR(bp
, PRS_REG_NIC_MODE
, 1);
5179 if (!CHIP_IS_E1(bp
))
5180 REG_WR(bp
, PRS_REG_E1HOV_MODE
, IS_MF_SD(bp
));
5182 if (CHIP_IS_E2(bp
)) {
5183 /* Bit-map indicating which L2 hdrs may appear after the
5184 basic Ethernet header */
5185 int has_ovlan
= IS_MF_SD(bp
);
5186 REG_WR(bp
, PRS_REG_HDRS_AFTER_BASIC
, (has_ovlan
? 7 : 6));
5187 REG_WR(bp
, PRS_REG_MUST_HAVE_HDRS
, (has_ovlan
? 1 : 0));
5190 bnx2x_init_block(bp
, TSDM_BLOCK
, COMMON_STAGE
);
5191 bnx2x_init_block(bp
, CSDM_BLOCK
, COMMON_STAGE
);
5192 bnx2x_init_block(bp
, USDM_BLOCK
, COMMON_STAGE
);
5193 bnx2x_init_block(bp
, XSDM_BLOCK
, COMMON_STAGE
);
5195 bnx2x_init_fill(bp
, TSEM_REG_FAST_MEMORY
, 0, STORM_INTMEM_SIZE(bp
));
5196 bnx2x_init_fill(bp
, USEM_REG_FAST_MEMORY
, 0, STORM_INTMEM_SIZE(bp
));
5197 bnx2x_init_fill(bp
, CSEM_REG_FAST_MEMORY
, 0, STORM_INTMEM_SIZE(bp
));
5198 bnx2x_init_fill(bp
, XSEM_REG_FAST_MEMORY
, 0, STORM_INTMEM_SIZE(bp
));
5200 bnx2x_init_block(bp
, TSEM_BLOCK
, COMMON_STAGE
);
5201 bnx2x_init_block(bp
, USEM_BLOCK
, COMMON_STAGE
);
5202 bnx2x_init_block(bp
, CSEM_BLOCK
, COMMON_STAGE
);
5203 bnx2x_init_block(bp
, XSEM_BLOCK
, COMMON_STAGE
);
5205 if (CHIP_MODE_IS_4_PORT(bp
))
5206 bnx2x_init_block(bp
, XSEM_4PORT_BLOCK
, COMMON_STAGE
);
5209 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
,
5211 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
,
5214 bnx2x_init_block(bp
, UPB_BLOCK
, COMMON_STAGE
);
5215 bnx2x_init_block(bp
, XPB_BLOCK
, COMMON_STAGE
);
5216 bnx2x_init_block(bp
, PBF_BLOCK
, COMMON_STAGE
);
5218 if (CHIP_IS_E2(bp
)) {
5219 int has_ovlan
= IS_MF_SD(bp
);
5220 REG_WR(bp
, PBF_REG_HDRS_AFTER_BASIC
, (has_ovlan
? 7 : 6));
5221 REG_WR(bp
, PBF_REG_MUST_HAVE_HDRS
, (has_ovlan
? 1 : 0));
5224 REG_WR(bp
, SRC_REG_SOFT_RST
, 1);
5225 for (i
= SRC_REG_KEYRSS0_0
; i
<= SRC_REG_KEYRSS1_9
; i
+= 4)
5226 REG_WR(bp
, i
, random32());
5228 bnx2x_init_block(bp
, SRCH_BLOCK
, COMMON_STAGE
);
5230 REG_WR(bp
, SRC_REG_KEYSEARCH_0
, 0x63285672);
5231 REG_WR(bp
, SRC_REG_KEYSEARCH_1
, 0x24b8f2cc);
5232 REG_WR(bp
, SRC_REG_KEYSEARCH_2
, 0x223aef9b);
5233 REG_WR(bp
, SRC_REG_KEYSEARCH_3
, 0x26001e3a);
5234 REG_WR(bp
, SRC_REG_KEYSEARCH_4
, 0x7ae91116);
5235 REG_WR(bp
, SRC_REG_KEYSEARCH_5
, 0x5ce5230b);
5236 REG_WR(bp
, SRC_REG_KEYSEARCH_6
, 0x298d8adf);
5237 REG_WR(bp
, SRC_REG_KEYSEARCH_7
, 0x6eb0ff09);
5238 REG_WR(bp
, SRC_REG_KEYSEARCH_8
, 0x1830f82f);
5239 REG_WR(bp
, SRC_REG_KEYSEARCH_9
, 0x01e46be7);
5241 REG_WR(bp
, SRC_REG_SOFT_RST
, 0);
5243 if (sizeof(union cdu_context
) != 1024)
5244 /* we currently assume that a context is 1024 bytes */
5245 dev_alert(&bp
->pdev
->dev
, "please adjust the size "
5246 "of cdu_context(%ld)\n",
5247 (long)sizeof(union cdu_context
));
5249 bnx2x_init_block(bp
, CDU_BLOCK
, COMMON_STAGE
);
5250 val
= (4 << 24) + (0 << 12) + 1024;
5251 REG_WR(bp
, CDU_REG_CDU_GLOBAL_PARAMS
, val
);
5253 bnx2x_init_block(bp
, CFC_BLOCK
, COMMON_STAGE
);
5254 REG_WR(bp
, CFC_REG_INIT_REG
, 0x7FF);
5255 /* enable context validation interrupt from CFC */
5256 REG_WR(bp
, CFC_REG_CFC_INT_MASK
, 0);
5258 /* set the thresholds to prevent CFC/CDU race */
5259 REG_WR(bp
, CFC_REG_DEBUG0
, 0x20020000);
5261 bnx2x_init_block(bp
, HC_BLOCK
, COMMON_STAGE
);
5263 if (CHIP_IS_E2(bp
) && BP_NOMCP(bp
))
5264 REG_WR(bp
, IGU_REG_RESET_MEMORIES
, 0x36);
5266 bnx2x_init_block(bp
, IGU_BLOCK
, COMMON_STAGE
);
5267 bnx2x_init_block(bp
, MISC_AEU_BLOCK
, COMMON_STAGE
);
5269 bnx2x_init_block(bp
, PXPCS_BLOCK
, COMMON_STAGE
);
5270 /* Reset PCIE errors for debug */
5271 REG_WR(bp
, 0x2814, 0xffffffff);
5272 REG_WR(bp
, 0x3820, 0xffffffff);
5274 if (CHIP_IS_E2(bp
)) {
5275 REG_WR(bp
, PCICFG_OFFSET
+ PXPCS_TL_CONTROL_5
,
5276 (PXPCS_TL_CONTROL_5_ERR_UNSPPORT1
|
5277 PXPCS_TL_CONTROL_5_ERR_UNSPPORT
));
5278 REG_WR(bp
, PCICFG_OFFSET
+ PXPCS_TL_FUNC345_STAT
,
5279 (PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4
|
5280 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3
|
5281 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2
));
5282 REG_WR(bp
, PCICFG_OFFSET
+ PXPCS_TL_FUNC678_STAT
,
5283 (PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7
|
5284 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6
|
5285 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5
));
5288 bnx2x_init_block(bp
, EMAC0_BLOCK
, COMMON_STAGE
);
5289 bnx2x_init_block(bp
, EMAC1_BLOCK
, COMMON_STAGE
);
5290 bnx2x_init_block(bp
, DBU_BLOCK
, COMMON_STAGE
);
5291 bnx2x_init_block(bp
, DBG_BLOCK
, COMMON_STAGE
);
5293 bnx2x_init_block(bp
, NIG_BLOCK
, COMMON_STAGE
);
5294 if (!CHIP_IS_E1(bp
)) {
5295 REG_WR(bp
, NIG_REG_LLH_MF_MODE
, IS_MF(bp
));
5296 REG_WR(bp
, NIG_REG_LLH_E1HOV_MODE
, IS_MF_SD(bp
));
5298 if (CHIP_IS_E2(bp
)) {
5299 /* Bit-map indicating which L2 hdrs may appear after the
5300 basic Ethernet header */
5301 REG_WR(bp
, NIG_REG_P0_HDRS_AFTER_BASIC
, (IS_MF_SD(bp
) ? 7 : 6));
5304 if (CHIP_REV_IS_SLOW(bp
))
5307 /* finish CFC init */
5308 val
= reg_poll(bp
, CFC_REG_LL_INIT_DONE
, 1, 100, 10);
5310 BNX2X_ERR("CFC LL_INIT failed\n");
5313 val
= reg_poll(bp
, CFC_REG_AC_INIT_DONE
, 1, 100, 10);
5315 BNX2X_ERR("CFC AC_INIT failed\n");
5318 val
= reg_poll(bp
, CFC_REG_CAM_INIT_DONE
, 1, 100, 10);
5320 BNX2X_ERR("CFC CAM_INIT failed\n");
5323 REG_WR(bp
, CFC_REG_DEBUG0
, 0);
5325 if (CHIP_IS_E1(bp
)) {
5326 /* read NIG statistic
5327 to see if this is our first up since powerup */
5328 bnx2x_read_dmae(bp
, NIG_REG_STAT2_BRB_OCTET
, 2);
5329 val
= *bnx2x_sp(bp
, wb_data
[0]);
5331 /* do internal memory self test */
5332 if ((val
== 0) && bnx2x_int_mem_test(bp
)) {
5333 BNX2X_ERR("internal mem self test failed\n");
5338 bnx2x_setup_fan_failure_detection(bp
);
5340 /* clear PXP2 attentions */
5341 REG_RD(bp
, PXP2_REG_PXP2_INT_STS_CLR_0
);
5343 bnx2x_enable_blocks_attention(bp
);
5344 if (CHIP_PARITY_ENABLED(bp
))
5345 bnx2x_enable_blocks_parity(bp
);
5347 if (!BP_NOMCP(bp
)) {
5348 /* In E2 2-PORT mode, same ext phy is used for the two paths */
5349 if ((load_code
== FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
) ||
5351 u32 shmem_base
[2], shmem2_base
[2];
5352 shmem_base
[0] = bp
->common
.shmem_base
;
5353 shmem2_base
[0] = bp
->common
.shmem2_base
;
5354 if (CHIP_IS_E2(bp
)) {
5356 SHMEM2_RD(bp
, other_shmem_base_addr
);
5358 SHMEM2_RD(bp
, other_shmem2_base_addr
);
5360 bnx2x_acquire_phy_lock(bp
);
5361 bnx2x_common_init_phy(bp
, shmem_base
, shmem2_base
,
5362 bp
->common
.chip_id
);
5363 bnx2x_release_phy_lock(bp
);
5366 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
5371 static int bnx2x_init_hw_port(struct bnx2x
*bp
)
5373 int port
= BP_PORT(bp
);
5374 int init_stage
= port
? PORT1_STAGE
: PORT0_STAGE
;
5378 DP(BNX2X_MSG_MCP
, "starting port init port %d\n", port
);
5380 REG_WR(bp
, NIG_REG_MASK_INTERRUPT_PORT0
+ port
*4, 0);
5382 bnx2x_init_block(bp
, PXP_BLOCK
, init_stage
);
5383 bnx2x_init_block(bp
, PXP2_BLOCK
, init_stage
);
5385 /* Timers bug workaround: disables the pf_master bit in pglue at
5386 * common phase, we need to enable it here before any dmae access are
5387 * attempted. Therefore we manually added the enable-master to the
5388 * port phase (it also happens in the function phase)
5391 REG_WR(bp
, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
, 1);
5393 bnx2x_init_block(bp
, TCM_BLOCK
, init_stage
);
5394 bnx2x_init_block(bp
, UCM_BLOCK
, init_stage
);
5395 bnx2x_init_block(bp
, CCM_BLOCK
, init_stage
);
5396 bnx2x_init_block(bp
, XCM_BLOCK
, init_stage
);
5398 /* QM cid (connection) count */
5399 bnx2x_qm_init_cid_count(bp
, bp
->qm_cid_count
, INITOP_SET
);
5402 bnx2x_init_block(bp
, TIMERS_BLOCK
, init_stage
);
5403 REG_WR(bp
, TM_REG_LIN0_SCAN_TIME
+ port
*4, 20);
5404 REG_WR(bp
, TM_REG_LIN0_MAX_ACTIVE_CID
+ port
*4, 31);
5407 bnx2x_init_block(bp
, DQ_BLOCK
, init_stage
);
5409 if (CHIP_MODE_IS_4_PORT(bp
))
5410 bnx2x_init_block(bp
, QM_4PORT_BLOCK
, init_stage
);
5412 if (CHIP_IS_E1(bp
) || CHIP_IS_E1H(bp
)) {
5413 bnx2x_init_block(bp
, BRB1_BLOCK
, init_stage
);
5414 if (CHIP_REV_IS_SLOW(bp
) && CHIP_IS_E1(bp
)) {
5415 /* no pause for emulation and FPGA */
5420 low
= ((bp
->flags
& ONE_PORT_FLAG
) ? 160 : 246);
5421 else if (bp
->dev
->mtu
> 4096) {
5422 if (bp
->flags
& ONE_PORT_FLAG
)
5426 /* (24*1024 + val*4)/256 */
5427 low
= 96 + (val
/64) +
5428 ((val
% 64) ? 1 : 0);
5431 low
= ((bp
->flags
& ONE_PORT_FLAG
) ? 80 : 160);
5432 high
= low
+ 56; /* 14*1024/256 */
5434 REG_WR(bp
, BRB1_REG_PAUSE_LOW_THRESHOLD_0
+ port
*4, low
);
5435 REG_WR(bp
, BRB1_REG_PAUSE_HIGH_THRESHOLD_0
+ port
*4, high
);
5438 if (CHIP_MODE_IS_4_PORT(bp
)) {
5439 REG_WR(bp
, BRB1_REG_PAUSE_0_XOFF_THRESHOLD_0
+ port
*8, 248);
5440 REG_WR(bp
, BRB1_REG_PAUSE_0_XON_THRESHOLD_0
+ port
*8, 328);
5441 REG_WR(bp
, (BP_PORT(bp
) ? BRB1_REG_MAC_GUARANTIED_1
:
5442 BRB1_REG_MAC_GUARANTIED_0
), 40);
5445 bnx2x_init_block(bp
, PRS_BLOCK
, init_stage
);
5447 bnx2x_init_block(bp
, TSDM_BLOCK
, init_stage
);
5448 bnx2x_init_block(bp
, CSDM_BLOCK
, init_stage
);
5449 bnx2x_init_block(bp
, USDM_BLOCK
, init_stage
);
5450 bnx2x_init_block(bp
, XSDM_BLOCK
, init_stage
);
5452 bnx2x_init_block(bp
, TSEM_BLOCK
, init_stage
);
5453 bnx2x_init_block(bp
, USEM_BLOCK
, init_stage
);
5454 bnx2x_init_block(bp
, CSEM_BLOCK
, init_stage
);
5455 bnx2x_init_block(bp
, XSEM_BLOCK
, init_stage
);
5456 if (CHIP_MODE_IS_4_PORT(bp
))
5457 bnx2x_init_block(bp
, XSEM_4PORT_BLOCK
, init_stage
);
5459 bnx2x_init_block(bp
, UPB_BLOCK
, init_stage
);
5460 bnx2x_init_block(bp
, XPB_BLOCK
, init_stage
);
5462 bnx2x_init_block(bp
, PBF_BLOCK
, init_stage
);
5464 if (!CHIP_IS_E2(bp
)) {
5465 /* configure PBF to work without PAUSE mtu 9000 */
5466 REG_WR(bp
, PBF_REG_P0_PAUSE_ENABLE
+ port
*4, 0);
5468 /* update threshold */
5469 REG_WR(bp
, PBF_REG_P0_ARB_THRSH
+ port
*4, (9040/16));
5470 /* update init credit */
5471 REG_WR(bp
, PBF_REG_P0_INIT_CRD
+ port
*4, (9040/16) + 553 - 22);
5474 REG_WR(bp
, PBF_REG_INIT_P0
+ port
*4, 1);
5476 REG_WR(bp
, PBF_REG_INIT_P0
+ port
*4, 0);
5480 bnx2x_init_block(bp
, SRCH_BLOCK
, init_stage
);
5482 bnx2x_init_block(bp
, CDU_BLOCK
, init_stage
);
5483 bnx2x_init_block(bp
, CFC_BLOCK
, init_stage
);
5485 if (CHIP_IS_E1(bp
)) {
5486 REG_WR(bp
, HC_REG_LEADING_EDGE_0
+ port
*8, 0);
5487 REG_WR(bp
, HC_REG_TRAILING_EDGE_0
+ port
*8, 0);
5489 bnx2x_init_block(bp
, HC_BLOCK
, init_stage
);
5491 bnx2x_init_block(bp
, IGU_BLOCK
, init_stage
);
5493 bnx2x_init_block(bp
, MISC_AEU_BLOCK
, init_stage
);
5494 /* init aeu_mask_attn_func_0/1:
5495 * - SF mode: bits 3-7 are masked. only bits 0-2 are in use
5496 * - MF mode: bit 3 is masked. bits 0-2 are in use as in SF
5497 * bits 4-7 are used for "per vn group attention" */
5498 val
= IS_MF(bp
) ? 0xF7 : 0x7;
5499 /* Enable DCBX attention for all but E1 */
5500 val
|= CHIP_IS_E1(bp
) ? 0 : 0x10;
5501 REG_WR(bp
, MISC_REG_AEU_MASK_ATTN_FUNC_0
+ port
*4, val
);
5503 bnx2x_init_block(bp
, PXPCS_BLOCK
, init_stage
);
5504 bnx2x_init_block(bp
, EMAC0_BLOCK
, init_stage
);
5505 bnx2x_init_block(bp
, EMAC1_BLOCK
, init_stage
);
5506 bnx2x_init_block(bp
, DBU_BLOCK
, init_stage
);
5507 bnx2x_init_block(bp
, DBG_BLOCK
, init_stage
);
5509 bnx2x_init_block(bp
, NIG_BLOCK
, init_stage
);
5511 REG_WR(bp
, NIG_REG_XGXS_SERDES0_MODE_SEL
+ port
*4, 1);
5513 if (!CHIP_IS_E1(bp
)) {
5514 /* 0x2 disable mf_ov, 0x1 enable */
5515 REG_WR(bp
, NIG_REG_LLH0_BRB1_DRV_MASK_MF
+ port
*4,
5516 (IS_MF_SD(bp
) ? 0x1 : 0x2));
5518 if (CHIP_IS_E2(bp
)) {
5520 switch (bp
->mf_mode
) {
5521 case MULTI_FUNCTION_SD
:
5524 case MULTI_FUNCTION_SI
:
5529 REG_WR(bp
, (BP_PORT(bp
) ? NIG_REG_LLH1_CLS_TYPE
:
5530 NIG_REG_LLH0_CLS_TYPE
), val
);
5533 REG_WR(bp
, NIG_REG_LLFC_ENABLE_0
+ port
*4, 0);
5534 REG_WR(bp
, NIG_REG_LLFC_OUT_EN_0
+ port
*4, 0);
5535 REG_WR(bp
, NIG_REG_PAUSE_ENABLE_0
+ port
*4, 1);
5539 bnx2x_init_block(bp
, MCP_BLOCK
, init_stage
);
5540 bnx2x_init_block(bp
, DMAE_BLOCK
, init_stage
);
5541 if (bnx2x_fan_failure_det_req(bp
, bp
->common
.shmem_base
,
5542 bp
->common
.shmem2_base
, port
)) {
5543 u32 reg_addr
= (port
? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0
:
5544 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0
);
5545 val
= REG_RD(bp
, reg_addr
);
5546 val
|= AEU_INPUTS_ATTN_BITS_SPIO5
;
5547 REG_WR(bp
, reg_addr
, val
);
5549 bnx2x__link_reset(bp
);
5554 static void bnx2x_ilt_wr(struct bnx2x
*bp
, u32 index
, dma_addr_t addr
)
5559 reg
= PXP2_REG_RQ_ONCHIP_AT
+ index
*8;
5561 reg
= PXP2_REG_RQ_ONCHIP_AT_B0
+ index
*8;
5563 bnx2x_wb_wr(bp
, reg
, ONCHIP_ADDR1(addr
), ONCHIP_ADDR2(addr
));
5566 static inline void bnx2x_igu_clear_sb(struct bnx2x
*bp
, u8 idu_sb_id
)
5568 bnx2x_igu_clear_sb_gen(bp
, idu_sb_id
, true /*PF*/);
5571 static inline void bnx2x_clear_func_ilt(struct bnx2x
*bp
, u32 func
)
5573 u32 i
, base
= FUNC_ILT_BASE(func
);
5574 for (i
= base
; i
< base
+ ILT_PER_FUNC
; i
++)
5575 bnx2x_ilt_wr(bp
, i
, 0);
5578 static int bnx2x_init_hw_func(struct bnx2x
*bp
)
5580 int port
= BP_PORT(bp
);
5581 int func
= BP_FUNC(bp
);
5582 struct bnx2x_ilt
*ilt
= BP_ILT(bp
);
5585 u32 main_mem_base
, main_mem_size
, main_mem_prty_clr
;
5586 int i
, main_mem_width
;
5588 DP(BNX2X_MSG_MCP
, "starting func init func %d\n", func
);
5590 /* set MSI reconfigure capability */
5591 if (bp
->common
.int_block
== INT_BLOCK_HC
) {
5592 addr
= (port
? HC_REG_CONFIG_1
: HC_REG_CONFIG_0
);
5593 val
= REG_RD(bp
, addr
);
5594 val
|= HC_CONFIG_0_REG_MSI_ATTN_EN_0
;
5595 REG_WR(bp
, addr
, val
);
5599 cdu_ilt_start
= ilt
->clients
[ILT_CLIENT_CDU
].start
;
5601 for (i
= 0; i
< L2_ILT_LINES(bp
); i
++) {
5602 ilt
->lines
[cdu_ilt_start
+ i
].page
=
5603 bp
->context
.vcxt
+ (ILT_PAGE_CIDS
* i
);
5604 ilt
->lines
[cdu_ilt_start
+ i
].page_mapping
=
5605 bp
->context
.cxt_mapping
+ (CDU_ILT_PAGE_SZ
* i
);
5606 /* cdu ilt pages are allocated manually so there's no need to
5609 bnx2x_ilt_init_op(bp
, INITOP_SET
);
5612 bnx2x_src_init_t2(bp
, bp
->t2
, bp
->t2_mapping
, SRC_CONN_NUM
);
5614 /* T1 hash bits value determines the T1 number of entries */
5615 REG_WR(bp
, SRC_REG_NUMBER_HASH_BITS0
+ port
*4, SRC_HASH_BITS
);
5620 REG_WR(bp
, PRS_REG_NIC_MODE
, 1);
5621 #endif /* BCM_CNIC */
5623 if (CHIP_IS_E2(bp
)) {
5624 u32 pf_conf
= IGU_PF_CONF_FUNC_EN
;
5626 /* Turn on a single ISR mode in IGU if driver is going to use
5629 if (!(bp
->flags
& USING_MSIX_FLAG
))
5630 pf_conf
|= IGU_PF_CONF_SINGLE_ISR_EN
;
5632 * Timers workaround bug: function init part.
5633 * Need to wait 20msec after initializing ILT,
5634 * needed to make sure there are no requests in
5635 * one of the PXP internal queues with "old" ILT addresses
5639 * Master enable - Due to WB DMAE writes performed before this
5640 * register is re-initialized as part of the regular function
5643 REG_WR(bp
, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
, 1);
5644 /* Enable the function in IGU */
5645 REG_WR(bp
, IGU_REG_PF_CONFIGURATION
, pf_conf
);
5650 bnx2x_init_block(bp
, PGLUE_B_BLOCK
, FUNC0_STAGE
+ func
);
5653 REG_WR(bp
, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR
, func
);
5655 bnx2x_init_block(bp
, MISC_BLOCK
, FUNC0_STAGE
+ func
);
5656 bnx2x_init_block(bp
, TCM_BLOCK
, FUNC0_STAGE
+ func
);
5657 bnx2x_init_block(bp
, UCM_BLOCK
, FUNC0_STAGE
+ func
);
5658 bnx2x_init_block(bp
, CCM_BLOCK
, FUNC0_STAGE
+ func
);
5659 bnx2x_init_block(bp
, XCM_BLOCK
, FUNC0_STAGE
+ func
);
5660 bnx2x_init_block(bp
, TSEM_BLOCK
, FUNC0_STAGE
+ func
);
5661 bnx2x_init_block(bp
, USEM_BLOCK
, FUNC0_STAGE
+ func
);
5662 bnx2x_init_block(bp
, CSEM_BLOCK
, FUNC0_STAGE
+ func
);
5663 bnx2x_init_block(bp
, XSEM_BLOCK
, FUNC0_STAGE
+ func
);
5665 if (CHIP_IS_E2(bp
)) {
5666 REG_WR(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_PATH_ID_OFFSET
,
5668 REG_WR(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_PATH_ID_OFFSET
,
5672 if (CHIP_MODE_IS_4_PORT(bp
))
5673 bnx2x_init_block(bp
, XSEM_4PORT_BLOCK
, FUNC0_STAGE
+ func
);
5676 REG_WR(bp
, QM_REG_PF_EN
, 1);
5678 bnx2x_init_block(bp
, QM_BLOCK
, FUNC0_STAGE
+ func
);
5680 if (CHIP_MODE_IS_4_PORT(bp
))
5681 bnx2x_init_block(bp
, QM_4PORT_BLOCK
, FUNC0_STAGE
+ func
);
5683 bnx2x_init_block(bp
, TIMERS_BLOCK
, FUNC0_STAGE
+ func
);
5684 bnx2x_init_block(bp
, DQ_BLOCK
, FUNC0_STAGE
+ func
);
5685 bnx2x_init_block(bp
, BRB1_BLOCK
, FUNC0_STAGE
+ func
);
5686 bnx2x_init_block(bp
, PRS_BLOCK
, FUNC0_STAGE
+ func
);
5687 bnx2x_init_block(bp
, TSDM_BLOCK
, FUNC0_STAGE
+ func
);
5688 bnx2x_init_block(bp
, CSDM_BLOCK
, FUNC0_STAGE
+ func
);
5689 bnx2x_init_block(bp
, USDM_BLOCK
, FUNC0_STAGE
+ func
);
5690 bnx2x_init_block(bp
, XSDM_BLOCK
, FUNC0_STAGE
+ func
);
5691 bnx2x_init_block(bp
, UPB_BLOCK
, FUNC0_STAGE
+ func
);
5692 bnx2x_init_block(bp
, XPB_BLOCK
, FUNC0_STAGE
+ func
);
5693 bnx2x_init_block(bp
, PBF_BLOCK
, FUNC0_STAGE
+ func
);
5695 REG_WR(bp
, PBF_REG_DISABLE_PF
, 0);
5697 bnx2x_init_block(bp
, CDU_BLOCK
, FUNC0_STAGE
+ func
);
5699 bnx2x_init_block(bp
, CFC_BLOCK
, FUNC0_STAGE
+ func
);
5702 REG_WR(bp
, CFC_REG_WEAK_ENABLE_PF
, 1);
5705 REG_WR(bp
, NIG_REG_LLH0_FUNC_EN
+ port
*8, 1);
5706 REG_WR(bp
, NIG_REG_LLH0_FUNC_VLAN_ID
+ port
*8, bp
->mf_ov
);
5709 bnx2x_init_block(bp
, MISC_AEU_BLOCK
, FUNC0_STAGE
+ func
);
5711 /* HC init per function */
5712 if (bp
->common
.int_block
== INT_BLOCK_HC
) {
5713 if (CHIP_IS_E1H(bp
)) {
5714 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_12
+ func
*4, 0);
5716 REG_WR(bp
, HC_REG_LEADING_EDGE_0
+ port
*8, 0);
5717 REG_WR(bp
, HC_REG_TRAILING_EDGE_0
+ port
*8, 0);
5719 bnx2x_init_block(bp
, HC_BLOCK
, FUNC0_STAGE
+ func
);
5722 int num_segs
, sb_idx
, prod_offset
;
5724 REG_WR(bp
, MISC_REG_AEU_GENERAL_ATTN_12
+ func
*4, 0);
5726 if (CHIP_IS_E2(bp
)) {
5727 REG_WR(bp
, IGU_REG_LEADING_EDGE_LATCH
, 0);
5728 REG_WR(bp
, IGU_REG_TRAILING_EDGE_LATCH
, 0);
5731 bnx2x_init_block(bp
, IGU_BLOCK
, FUNC0_STAGE
+ func
);
5733 if (CHIP_IS_E2(bp
)) {
5737 * E2 mode: address 0-135 match to the mapping memory;
5738 * 136 - PF0 default prod; 137 - PF1 default prod;
5739 * 138 - PF2 default prod; 139 - PF3 default prod;
5740 * 140 - PF0 attn prod; 141 - PF1 attn prod;
5741 * 142 - PF2 attn prod; 143 - PF3 attn prod;
5744 * E1.5 mode - In backward compatible mode;
5745 * for non default SB; each even line in the memory
5746 * holds the U producer and each odd line hold
5747 * the C producer. The first 128 producers are for
5748 * NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The last 20
5749 * producers are for the DSB for each PF.
5750 * Each PF has five segments: (the order inside each
5751 * segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
5752 * 132-135 C prods; 136-139 X prods; 140-143 T prods;
5753 * 144-147 attn prods;
5755 /* non-default-status-blocks */
5756 num_segs
= CHIP_INT_MODE_IS_BC(bp
) ?
5757 IGU_BC_NDSB_NUM_SEGS
: IGU_NORM_NDSB_NUM_SEGS
;
5758 for (sb_idx
= 0; sb_idx
< bp
->igu_sb_cnt
; sb_idx
++) {
5759 prod_offset
= (bp
->igu_base_sb
+ sb_idx
) *
5762 for (i
= 0; i
< num_segs
; i
++) {
5763 addr
= IGU_REG_PROD_CONS_MEMORY
+
5764 (prod_offset
+ i
) * 4;
5765 REG_WR(bp
, addr
, 0);
5767 /* send consumer update with value 0 */
5768 bnx2x_ack_sb(bp
, bp
->igu_base_sb
+ sb_idx
,
5769 USTORM_ID
, 0, IGU_INT_NOP
, 1);
5770 bnx2x_igu_clear_sb(bp
,
5771 bp
->igu_base_sb
+ sb_idx
);
5774 /* default-status-blocks */
5775 num_segs
= CHIP_INT_MODE_IS_BC(bp
) ?
5776 IGU_BC_DSB_NUM_SEGS
: IGU_NORM_DSB_NUM_SEGS
;
5778 if (CHIP_MODE_IS_4_PORT(bp
))
5779 dsb_idx
= BP_FUNC(bp
);
5781 dsb_idx
= BP_E1HVN(bp
);
5783 prod_offset
= (CHIP_INT_MODE_IS_BC(bp
) ?
5784 IGU_BC_BASE_DSB_PROD
+ dsb_idx
:
5785 IGU_NORM_BASE_DSB_PROD
+ dsb_idx
);
5787 for (i
= 0; i
< (num_segs
* E1HVN_MAX
);
5789 addr
= IGU_REG_PROD_CONS_MEMORY
+
5790 (prod_offset
+ i
)*4;
5791 REG_WR(bp
, addr
, 0);
5793 /* send consumer update with 0 */
5794 if (CHIP_INT_MODE_IS_BC(bp
)) {
5795 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5796 USTORM_ID
, 0, IGU_INT_NOP
, 1);
5797 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5798 CSTORM_ID
, 0, IGU_INT_NOP
, 1);
5799 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5800 XSTORM_ID
, 0, IGU_INT_NOP
, 1);
5801 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5802 TSTORM_ID
, 0, IGU_INT_NOP
, 1);
5803 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5804 ATTENTION_ID
, 0, IGU_INT_NOP
, 1);
5806 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5807 USTORM_ID
, 0, IGU_INT_NOP
, 1);
5808 bnx2x_ack_sb(bp
, bp
->igu_dsb_id
,
5809 ATTENTION_ID
, 0, IGU_INT_NOP
, 1);
5811 bnx2x_igu_clear_sb(bp
, bp
->igu_dsb_id
);
5813 /* !!! these should become driver const once
5814 rf-tool supports split-68 const */
5815 REG_WR(bp
, IGU_REG_SB_INT_BEFORE_MASK_LSB
, 0);
5816 REG_WR(bp
, IGU_REG_SB_INT_BEFORE_MASK_MSB
, 0);
5817 REG_WR(bp
, IGU_REG_SB_MASK_LSB
, 0);
5818 REG_WR(bp
, IGU_REG_SB_MASK_MSB
, 0);
5819 REG_WR(bp
, IGU_REG_PBA_STATUS_LSB
, 0);
5820 REG_WR(bp
, IGU_REG_PBA_STATUS_MSB
, 0);
5824 /* Reset PCIE errors for debug */
5825 REG_WR(bp
, 0x2114, 0xffffffff);
5826 REG_WR(bp
, 0x2120, 0xffffffff);
5828 bnx2x_init_block(bp
, EMAC0_BLOCK
, FUNC0_STAGE
+ func
);
5829 bnx2x_init_block(bp
, EMAC1_BLOCK
, FUNC0_STAGE
+ func
);
5830 bnx2x_init_block(bp
, DBU_BLOCK
, FUNC0_STAGE
+ func
);
5831 bnx2x_init_block(bp
, DBG_BLOCK
, FUNC0_STAGE
+ func
);
5832 bnx2x_init_block(bp
, MCP_BLOCK
, FUNC0_STAGE
+ func
);
5833 bnx2x_init_block(bp
, DMAE_BLOCK
, FUNC0_STAGE
+ func
);
5835 if (CHIP_IS_E1x(bp
)) {
5836 main_mem_size
= HC_REG_MAIN_MEMORY_SIZE
/ 2; /*dwords*/
5837 main_mem_base
= HC_REG_MAIN_MEMORY
+
5838 BP_PORT(bp
) * (main_mem_size
* 4);
5839 main_mem_prty_clr
= HC_REG_HC_PRTY_STS_CLR
;
5842 val
= REG_RD(bp
, main_mem_prty_clr
);
5844 DP(BNX2X_MSG_MCP
, "Hmmm... Parity errors in HC "
5846 "function init (0x%x)!\n", val
);
5848 /* Clear "false" parity errors in MSI-X table */
5849 for (i
= main_mem_base
;
5850 i
< main_mem_base
+ main_mem_size
* 4;
5851 i
+= main_mem_width
) {
5852 bnx2x_read_dmae(bp
, i
, main_mem_width
/ 4);
5853 bnx2x_write_dmae(bp
, bnx2x_sp_mapping(bp
, wb_data
),
5854 i
, main_mem_width
/ 4);
5856 /* Clear HC parity attention */
5857 REG_RD(bp
, main_mem_prty_clr
);
5860 bnx2x_phy_probe(&bp
->link_params
);
5865 int bnx2x_init_hw(struct bnx2x
*bp
, u32 load_code
)
5869 DP(BNX2X_MSG_MCP
, "function %d load_code %x\n",
5870 BP_ABS_FUNC(bp
), load_code
);
5873 spin_lock_init(&bp
->dmae_lock
);
5875 switch (load_code
) {
5876 case FW_MSG_CODE_DRV_LOAD_COMMON
:
5877 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
:
5878 rc
= bnx2x_init_hw_common(bp
, load_code
);
5883 case FW_MSG_CODE_DRV_LOAD_PORT
:
5884 rc
= bnx2x_init_hw_port(bp
);
5889 case FW_MSG_CODE_DRV_LOAD_FUNCTION
:
5890 rc
= bnx2x_init_hw_func(bp
);
5896 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code
);
5900 if (!BP_NOMCP(bp
)) {
5901 int mb_idx
= BP_FW_MB_IDX(bp
);
5903 bp
->fw_drv_pulse_wr_seq
=
5904 (SHMEM_RD(bp
, func_mb
[mb_idx
].drv_pulse_mb
) &
5905 DRV_PULSE_SEQ_MASK
);
5906 DP(BNX2X_MSG_MCP
, "drv_pulse 0x%x\n", bp
->fw_drv_pulse_wr_seq
);
5910 bnx2x_gunzip_end(bp
);
5915 void bnx2x_free_mem(struct bnx2x
*bp
)
5917 bnx2x_gunzip_end(bp
);
5920 bnx2x_free_fp_mem(bp
);
5921 /* end of fastpath */
5923 BNX2X_PCI_FREE(bp
->def_status_blk
, bp
->def_status_blk_mapping
,
5924 sizeof(struct host_sp_status_block
));
5926 BNX2X_PCI_FREE(bp
->slowpath
, bp
->slowpath_mapping
,
5927 sizeof(struct bnx2x_slowpath
));
5929 BNX2X_PCI_FREE(bp
->context
.vcxt
, bp
->context
.cxt_mapping
,
5932 bnx2x_ilt_mem_op(bp
, ILT_MEMOP_FREE
);
5934 BNX2X_FREE(bp
->ilt
->lines
);
5938 BNX2X_PCI_FREE(bp
->cnic_sb
.e2_sb
, bp
->cnic_sb_mapping
,
5939 sizeof(struct host_hc_status_block_e2
));
5941 BNX2X_PCI_FREE(bp
->cnic_sb
.e1x_sb
, bp
->cnic_sb_mapping
,
5942 sizeof(struct host_hc_status_block_e1x
));
5944 BNX2X_PCI_FREE(bp
->t2
, bp
->t2_mapping
, SRC_T2_SZ
);
5947 BNX2X_PCI_FREE(bp
->spq
, bp
->spq_mapping
, BCM_PAGE_SIZE
);
5949 BNX2X_PCI_FREE(bp
->eq_ring
, bp
->eq_mapping
,
5950 BCM_PAGE_SIZE
* NUM_EQ_PAGES
);
5952 BNX2X_FREE(bp
->rx_indir_table
);
5956 int bnx2x_alloc_mem(struct bnx2x
*bp
)
5958 if (bnx2x_gunzip_init(bp
))
5963 BNX2X_PCI_ALLOC(bp
->cnic_sb
.e2_sb
, &bp
->cnic_sb_mapping
,
5964 sizeof(struct host_hc_status_block_e2
));
5966 BNX2X_PCI_ALLOC(bp
->cnic_sb
.e1x_sb
, &bp
->cnic_sb_mapping
,
5967 sizeof(struct host_hc_status_block_e1x
));
5969 /* allocate searcher T2 table */
5970 BNX2X_PCI_ALLOC(bp
->t2
, &bp
->t2_mapping
, SRC_T2_SZ
);
5974 BNX2X_PCI_ALLOC(bp
->def_status_blk
, &bp
->def_status_blk_mapping
,
5975 sizeof(struct host_sp_status_block
));
5977 BNX2X_PCI_ALLOC(bp
->slowpath
, &bp
->slowpath_mapping
,
5978 sizeof(struct bnx2x_slowpath
));
5980 bp
->context
.size
= sizeof(union cdu_context
) * bp
->l2_cid_count
;
5982 BNX2X_PCI_ALLOC(bp
->context
.vcxt
, &bp
->context
.cxt_mapping
,
5985 BNX2X_ALLOC(bp
->ilt
->lines
, sizeof(struct ilt_line
) * ILT_MAX_LINES
);
5987 if (bnx2x_ilt_mem_op(bp
, ILT_MEMOP_ALLOC
))
5990 /* Slow path ring */
5991 BNX2X_PCI_ALLOC(bp
->spq
, &bp
->spq_mapping
, BCM_PAGE_SIZE
);
5994 BNX2X_PCI_ALLOC(bp
->eq_ring
, &bp
->eq_mapping
,
5995 BCM_PAGE_SIZE
* NUM_EQ_PAGES
);
5997 BNX2X_ALLOC(bp
->rx_indir_table
, sizeof(bp
->rx_indir_table
[0]) *
5998 TSTORM_INDIRECTION_TABLE_SIZE
);
6001 /* need to be done at the end, since it's self adjusting to amount
6002 * of memory available for RSS queues
6004 if (bnx2x_alloc_fp_mem(bp
))
6014 * Init service functions
6016 static int bnx2x_wait_ramrod(struct bnx2x
*bp
, int state
, int idx
,
6017 int *state_p
, int flags
);
6019 int bnx2x_func_start(struct bnx2x
*bp
)
6021 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_START
, 0, 0, 0, 1);
6023 /* Wait for completion */
6024 return bnx2x_wait_ramrod(bp
, BNX2X_STATE_FUNC_STARTED
, 0, &(bp
->state
),
6025 WAIT_RAMROD_COMMON
);
6028 static int bnx2x_func_stop(struct bnx2x
*bp
)
6030 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_STOP
, 0, 0, 0, 1);
6032 /* Wait for completion */
6033 return bnx2x_wait_ramrod(bp
, BNX2X_STATE_CLOSING_WAIT4_UNLOAD
,
6034 0, &(bp
->state
), WAIT_RAMROD_COMMON
);
6038 * bnx2x_set_mac_addr_gen - set a MAC in a CAM for a few L2 Clients for E1x chips
6040 * @bp: driver handle
6041 * @set: set or clear an entry (1 or 0)
6042 * @mac: pointer to a buffer containing a MAC
6043 * @cl_bit_vec: bit vector of clients to register a MAC for
6044 * @cam_offset: offset in a CAM to use
6045 * @is_bcast: is the set MAC a broadcast address (for E1 only)
6047 static void bnx2x_set_mac_addr_gen(struct bnx2x
*bp
, int set
, const u8
*mac
,
6048 u32 cl_bit_vec
, u8 cam_offset
,
6051 struct mac_configuration_cmd
*config
=
6052 (struct mac_configuration_cmd
*)bnx2x_sp(bp
, mac_config
);
6053 int ramrod_flags
= WAIT_RAMROD_COMMON
;
6055 bp
->set_mac_pending
= 1;
6057 config
->hdr
.length
= 1;
6058 config
->hdr
.offset
= cam_offset
;
6059 config
->hdr
.client_id
= 0xff;
6060 /* Mark the single MAC configuration ramrod as opposed to a
6061 * UC/MC list configuration).
6063 config
->hdr
.echo
= 1;
6066 config
->config_table
[0].msb_mac_addr
=
6067 swab16(*(u16
*)&mac
[0]);
6068 config
->config_table
[0].middle_mac_addr
=
6069 swab16(*(u16
*)&mac
[2]);
6070 config
->config_table
[0].lsb_mac_addr
=
6071 swab16(*(u16
*)&mac
[4]);
6072 config
->config_table
[0].clients_bit_vector
=
6073 cpu_to_le32(cl_bit_vec
);
6074 config
->config_table
[0].vlan_id
= 0;
6075 config
->config_table
[0].pf_id
= BP_FUNC(bp
);
6077 SET_FLAG(config
->config_table
[0].flags
,
6078 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
6079 T_ETH_MAC_COMMAND_SET
);
6081 SET_FLAG(config
->config_table
[0].flags
,
6082 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
6083 T_ETH_MAC_COMMAND_INVALIDATE
);
6086 SET_FLAG(config
->config_table
[0].flags
,
6087 MAC_CONFIGURATION_ENTRY_BROADCAST
, 1);
6089 DP(NETIF_MSG_IFUP
, "%s MAC (%04x:%04x:%04x) PF_ID %d CLID mask %d\n",
6090 (set
? "setting" : "clearing"),
6091 config
->config_table
[0].msb_mac_addr
,
6092 config
->config_table
[0].middle_mac_addr
,
6093 config
->config_table
[0].lsb_mac_addr
, BP_FUNC(bp
), cl_bit_vec
);
6097 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_MAC
, 0,
6098 U64_HI(bnx2x_sp_mapping(bp
, mac_config
)),
6099 U64_LO(bnx2x_sp_mapping(bp
, mac_config
)), 1);
6101 /* Wait for a completion */
6102 bnx2x_wait_ramrod(bp
, 0, 0, &bp
->set_mac_pending
, ramrod_flags
);
6105 static int bnx2x_wait_ramrod(struct bnx2x
*bp
, int state
, int idx
,
6106 int *state_p
, int flags
)
6108 /* can take a while if any port is running */
6110 u8 poll
= flags
& WAIT_RAMROD_POLL
;
6111 u8 common
= flags
& WAIT_RAMROD_COMMON
;
6113 DP(NETIF_MSG_IFUP
, "%s for state to become %x on IDX [%d]\n",
6114 poll
? "polling" : "waiting", state
, idx
);
6122 bnx2x_rx_int(bp
->fp
, 10);
6123 /* if index is different from 0
6124 * the reply for some commands will
6125 * be on the non default queue
6128 bnx2x_rx_int(&bp
->fp
[idx
], 10);
6132 mb(); /* state is changed by bnx2x_sp_event() */
6133 if (*state_p
== state
) {
6134 #ifdef BNX2X_STOP_ON_ERROR
6135 DP(NETIF_MSG_IFUP
, "exit (cnt %d)\n", 5000 - cnt
);
6147 BNX2X_ERR("timeout %s for state %x on IDX [%d]\n",
6148 poll
? "polling" : "waiting", state
, idx
);
6149 #ifdef BNX2X_STOP_ON_ERROR
6156 static u8
bnx2x_e1h_cam_offset(struct bnx2x
*bp
, u8 rel_offset
)
6158 if (CHIP_IS_E1H(bp
))
6159 return E1H_FUNC_MAX
* rel_offset
+ BP_FUNC(bp
);
6160 else if (CHIP_MODE_IS_4_PORT(bp
))
6161 return E2_FUNC_MAX
* rel_offset
+ BP_FUNC(bp
);
6163 return E2_FUNC_MAX
* rel_offset
+ BP_VN(bp
);
6167 * LLH CAM line allocations: currently only iSCSI and ETH macs are
6168 * relevant. In addition, current implementation is tuned for a
6172 LLH_CAM_ISCSI_ETH_LINE
= 0,
6174 LLH_CAM_MAX_PF_LINE
= NIG_REG_LLH1_FUNC_MEM_SIZE
6177 static void bnx2x_set_mac_in_nig(struct bnx2x
*bp
,
6179 unsigned char *dev_addr
,
6183 u32 mem_offset
, ena_offset
, mem_index
;
6186 * 0..7 - goes to MEM
6187 * 8..15 - goes to MEM2
6190 if (!IS_MF_SI(bp
) || index
> LLH_CAM_MAX_PF_LINE
)
6193 /* calculate memory start offset according to the mapping
6194 * and index in the memory */
6195 if (index
< NIG_LLH_FUNC_MEM_MAX_OFFSET
) {
6196 mem_offset
= BP_PORT(bp
) ? NIG_REG_LLH1_FUNC_MEM
:
6197 NIG_REG_LLH0_FUNC_MEM
;
6198 ena_offset
= BP_PORT(bp
) ? NIG_REG_LLH1_FUNC_MEM_ENABLE
:
6199 NIG_REG_LLH0_FUNC_MEM_ENABLE
;
6202 mem_offset
= BP_PORT(bp
) ? NIG_REG_P1_LLH_FUNC_MEM2
:
6203 NIG_REG_P0_LLH_FUNC_MEM2
;
6204 ena_offset
= BP_PORT(bp
) ? NIG_REG_P1_LLH_FUNC_MEM2_ENABLE
:
6205 NIG_REG_P0_LLH_FUNC_MEM2_ENABLE
;
6206 mem_index
= index
- NIG_LLH_FUNC_MEM_MAX_OFFSET
;
6210 /* LLH_FUNC_MEM is a u64 WB register */
6211 mem_offset
+= 8*mem_index
;
6213 wb_data
[0] = ((dev_addr
[2] << 24) | (dev_addr
[3] << 16) |
6214 (dev_addr
[4] << 8) | dev_addr
[5]);
6215 wb_data
[1] = ((dev_addr
[0] << 8) | dev_addr
[1]);
6217 REG_WR_DMAE(bp
, mem_offset
, wb_data
, 2);
6220 /* enable/disable the entry */
6221 REG_WR(bp
, ena_offset
+ 4*mem_index
, set
);
6225 void bnx2x_set_eth_mac(struct bnx2x
*bp
, int set
)
6227 u8 cam_offset
= (CHIP_IS_E1(bp
) ? (BP_PORT(bp
) ? 32 : 0) :
6228 bnx2x_e1h_cam_offset(bp
, CAM_ETH_LINE
));
6230 /* networking MAC */
6231 bnx2x_set_mac_addr_gen(bp
, set
, bp
->dev
->dev_addr
,
6232 (1 << bp
->fp
->cl_id
), cam_offset
, 0);
6234 bnx2x_set_mac_in_nig(bp
, set
, bp
->dev
->dev_addr
, LLH_CAM_ETH_LINE
);
6236 if (CHIP_IS_E1(bp
)) {
6238 static const u8 bcast
[ETH_ALEN
] = {
6239 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
6241 bnx2x_set_mac_addr_gen(bp
, set
, bcast
, 0, cam_offset
+ 1, 1);
6245 static inline u8
bnx2x_e1_cam_mc_offset(struct bnx2x
*bp
)
6247 return CHIP_REV_IS_SLOW(bp
) ?
6248 (BNX2X_MAX_EMUL_MULTI
* (1 + BP_PORT(bp
))) :
6249 (BNX2X_MAX_MULTICAST
* (1 + BP_PORT(bp
)));
6252 /* set mc list, do not wait as wait implies sleep and
6253 * set_rx_mode can be invoked from non-sleepable context.
6255 * Instead we use the same ramrod data buffer each time we need
6256 * to configure a list of addresses, and use the fact that the
6257 * list of MACs is changed in an incremental way and that the
6258 * function is called under the netif_addr_lock. A temporary
6259 * inconsistent CAM configuration (possible in case of a very fast
6260 * sequence of add/del/add on the host side) will shortly be
6261 * restored by the handler of the last ramrod.
6263 static int bnx2x_set_e1_mc_list(struct bnx2x
*bp
)
6266 struct net_device
*dev
= bp
->dev
;
6267 u8 offset
= bnx2x_e1_cam_mc_offset(bp
);
6268 struct netdev_hw_addr
*ha
;
6269 struct mac_configuration_cmd
*config_cmd
= bnx2x_sp(bp
, mcast_config
);
6270 dma_addr_t config_cmd_map
= bnx2x_sp_mapping(bp
, mcast_config
);
6272 if (netdev_mc_count(dev
) > BNX2X_MAX_MULTICAST
)
6275 netdev_for_each_mc_addr(ha
, dev
) {
6277 config_cmd
->config_table
[i
].msb_mac_addr
=
6278 swab16(*(u16
*)&bnx2x_mc_addr(ha
)[0]);
6279 config_cmd
->config_table
[i
].middle_mac_addr
=
6280 swab16(*(u16
*)&bnx2x_mc_addr(ha
)[2]);
6281 config_cmd
->config_table
[i
].lsb_mac_addr
=
6282 swab16(*(u16
*)&bnx2x_mc_addr(ha
)[4]);
6284 config_cmd
->config_table
[i
].vlan_id
= 0;
6285 config_cmd
->config_table
[i
].pf_id
= BP_FUNC(bp
);
6286 config_cmd
->config_table
[i
].clients_bit_vector
=
6287 cpu_to_le32(1 << BP_L_ID(bp
));
6289 SET_FLAG(config_cmd
->config_table
[i
].flags
,
6290 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
6291 T_ETH_MAC_COMMAND_SET
);
6294 "setting MCAST[%d] (%04x:%04x:%04x)\n", i
,
6295 config_cmd
->config_table
[i
].msb_mac_addr
,
6296 config_cmd
->config_table
[i
].middle_mac_addr
,
6297 config_cmd
->config_table
[i
].lsb_mac_addr
);
6300 old
= config_cmd
->hdr
.length
;
6302 for (; i
< old
; i
++) {
6303 if (CAM_IS_INVALID(config_cmd
->
6305 /* already invalidated */
6309 SET_FLAG(config_cmd
->config_table
[i
].flags
,
6310 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
6311 T_ETH_MAC_COMMAND_INVALIDATE
);
6317 config_cmd
->hdr
.length
= i
;
6318 config_cmd
->hdr
.offset
= offset
;
6319 config_cmd
->hdr
.client_id
= 0xff;
6320 /* Mark that this ramrod doesn't use bp->set_mac_pending for
6323 config_cmd
->hdr
.echo
= 0;
6327 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_MAC
, 0,
6328 U64_HI(config_cmd_map
), U64_LO(config_cmd_map
), 1);
6331 void bnx2x_invalidate_e1_mc_list(struct bnx2x
*bp
)
6334 struct mac_configuration_cmd
*config_cmd
= bnx2x_sp(bp
, mcast_config
);
6335 dma_addr_t config_cmd_map
= bnx2x_sp_mapping(bp
, mcast_config
);
6336 int ramrod_flags
= WAIT_RAMROD_COMMON
;
6337 u8 offset
= bnx2x_e1_cam_mc_offset(bp
);
6339 for (i
= 0; i
< BNX2X_MAX_MULTICAST
; i
++)
6340 SET_FLAG(config_cmd
->config_table
[i
].flags
,
6341 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
6342 T_ETH_MAC_COMMAND_INVALIDATE
);
6346 config_cmd
->hdr
.length
= BNX2X_MAX_MULTICAST
;
6347 config_cmd
->hdr
.offset
= offset
;
6348 config_cmd
->hdr
.client_id
= 0xff;
6349 /* We'll wait for a completion this time... */
6350 config_cmd
->hdr
.echo
= 1;
6352 bp
->set_mac_pending
= 1;
6356 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_MAC
, 0,
6357 U64_HI(config_cmd_map
), U64_LO(config_cmd_map
), 1);
6359 /* Wait for a completion */
6360 bnx2x_wait_ramrod(bp
, 0, 0, &bp
->set_mac_pending
,
6365 /* Accept one or more multicasts */
6366 static int bnx2x_set_e1h_mc_list(struct bnx2x
*bp
)
6368 struct net_device
*dev
= bp
->dev
;
6369 struct netdev_hw_addr
*ha
;
6370 u32 mc_filter
[MC_HASH_SIZE
];
6371 u32 crc
, bit
, regidx
;
6374 memset(mc_filter
, 0, 4 * MC_HASH_SIZE
);
6376 netdev_for_each_mc_addr(ha
, dev
) {
6377 DP(NETIF_MSG_IFUP
, "Adding mcast MAC: %pM\n",
6380 crc
= crc32c_le(0, bnx2x_mc_addr(ha
),
6382 bit
= (crc
>> 24) & 0xff;
6385 mc_filter
[regidx
] |= (1 << bit
);
6388 for (i
= 0; i
< MC_HASH_SIZE
; i
++)
6389 REG_WR(bp
, MC_HASH_OFFSET(bp
, i
),
6395 void bnx2x_invalidate_e1h_mc_list(struct bnx2x
*bp
)
6399 for (i
= 0; i
< MC_HASH_SIZE
; i
++)
6400 REG_WR(bp
, MC_HASH_OFFSET(bp
, i
), 0);
6405 * bnx2x_set_iscsi_eth_mac_addr - set iSCSI MAC(s).
6407 * @bp: driver handle
6408 * @set: set or clear the CAM entry
6410 * This function will wait until the ramdord completion returns.
6411 * Return 0 if success, -ENODEV if ramrod doesn't return.
6413 static int bnx2x_set_iscsi_eth_mac_addr(struct bnx2x
*bp
, int set
)
6415 u8 cam_offset
= (CHIP_IS_E1(bp
) ? ((BP_PORT(bp
) ? 32 : 0) + 2) :
6416 bnx2x_e1h_cam_offset(bp
, CAM_ISCSI_ETH_LINE
));
6417 u32 iscsi_l2_cl_id
= BNX2X_ISCSI_ETH_CL_ID
+
6418 BP_E1HVN(bp
) * NONE_ETH_CONTEXT_USE
;
6419 u32 cl_bit_vec
= (1 << iscsi_l2_cl_id
);
6420 u8
*iscsi_mac
= bp
->cnic_eth_dev
.iscsi_mac
;
6422 /* Send a SET_MAC ramrod */
6423 bnx2x_set_mac_addr_gen(bp
, set
, iscsi_mac
, cl_bit_vec
,
6426 bnx2x_set_mac_in_nig(bp
, set
, iscsi_mac
, LLH_CAM_ISCSI_ETH_LINE
);
6432 * bnx2x_set_fip_eth_mac_addr - set FCoE L2 MAC(s)
6434 * @bp: driver handle
6435 * @set: set or clear the CAM entry
6437 * This function will wait until the ramrod completion returns.
6438 * Returns 0 if success, -ENODEV if ramrod doesn't return.
6440 int bnx2x_set_fip_eth_mac_addr(struct bnx2x
*bp
, int set
)
6442 u32 cl_bit_vec
= (1 << bnx2x_fcoe(bp
, cl_id
));
6444 * CAM allocation for E1H
6445 * eth unicasts: by func number
6446 * iscsi: by func number
6447 * fip unicast: by func number
6448 * fip multicast: by func number
6450 bnx2x_set_mac_addr_gen(bp
, set
, bp
->fip_mac
,
6451 cl_bit_vec
, bnx2x_e1h_cam_offset(bp
, CAM_FIP_ETH_LINE
), 0);
6456 int bnx2x_set_all_enode_macs(struct bnx2x
*bp
, int set
)
6458 u32 cl_bit_vec
= (1 << bnx2x_fcoe(bp
, cl_id
));
6461 * CAM allocation for E1H
6462 * eth unicasts: by func number
6463 * iscsi: by func number
6464 * fip unicast: by func number
6465 * fip multicast: by func number
6467 bnx2x_set_mac_addr_gen(bp
, set
, ALL_ENODE_MACS
, cl_bit_vec
,
6468 bnx2x_e1h_cam_offset(bp
, CAM_FIP_MCAST_LINE
), 0);
6474 static void bnx2x_fill_cl_init_data(struct bnx2x
*bp
,
6475 struct bnx2x_client_init_params
*params
,
6477 struct client_init_ramrod_data
*data
)
6479 /* Clear the buffer */
6480 memset(data
, 0, sizeof(*data
));
6483 data
->general
.client_id
= params
->rxq_params
.cl_id
;
6484 data
->general
.statistics_counter_id
= params
->rxq_params
.stat_id
;
6485 data
->general
.statistics_en_flg
=
6486 (params
->rxq_params
.flags
& QUEUE_FLG_STATS
) ? 1 : 0;
6487 data
->general
.is_fcoe_flg
=
6488 (params
->ramrod_params
.flags
& CLIENT_IS_FCOE
) ? 1 : 0;
6489 data
->general
.activate_flg
= activate
;
6490 data
->general
.sp_client_id
= params
->rxq_params
.spcl_id
;
6493 data
->rx
.tpa_en_flg
=
6494 (params
->rxq_params
.flags
& QUEUE_FLG_TPA
) ? 1 : 0;
6495 data
->rx
.vmqueue_mode_en_flg
= 0;
6496 data
->rx
.cache_line_alignment_log_size
=
6497 params
->rxq_params
.cache_line_log
;
6498 data
->rx
.enable_dynamic_hc
=
6499 (params
->rxq_params
.flags
& QUEUE_FLG_DHC
) ? 1 : 0;
6500 data
->rx
.max_sges_for_packet
= params
->rxq_params
.max_sges_pkt
;
6501 data
->rx
.client_qzone_id
= params
->rxq_params
.cl_qzone_id
;
6502 data
->rx
.max_agg_size
= params
->rxq_params
.tpa_agg_sz
;
6504 /* We don't set drop flags */
6505 data
->rx
.drop_ip_cs_err_flg
= 0;
6506 data
->rx
.drop_tcp_cs_err_flg
= 0;
6507 data
->rx
.drop_ttl0_flg
= 0;
6508 data
->rx
.drop_udp_cs_err_flg
= 0;
6510 data
->rx
.inner_vlan_removal_enable_flg
=
6511 (params
->rxq_params
.flags
& QUEUE_FLG_VLAN
) ? 1 : 0;
6512 data
->rx
.outer_vlan_removal_enable_flg
=
6513 (params
->rxq_params
.flags
& QUEUE_FLG_OV
) ? 1 : 0;
6514 data
->rx
.status_block_id
= params
->rxq_params
.fw_sb_id
;
6515 data
->rx
.rx_sb_index_number
= params
->rxq_params
.sb_cq_index
;
6516 data
->rx
.bd_buff_size
= cpu_to_le16(params
->rxq_params
.buf_sz
);
6517 data
->rx
.sge_buff_size
= cpu_to_le16(params
->rxq_params
.sge_buf_sz
);
6518 data
->rx
.mtu
= cpu_to_le16(params
->rxq_params
.mtu
);
6519 data
->rx
.bd_page_base
.lo
=
6520 cpu_to_le32(U64_LO(params
->rxq_params
.dscr_map
));
6521 data
->rx
.bd_page_base
.hi
=
6522 cpu_to_le32(U64_HI(params
->rxq_params
.dscr_map
));
6523 data
->rx
.sge_page_base
.lo
=
6524 cpu_to_le32(U64_LO(params
->rxq_params
.sge_map
));
6525 data
->rx
.sge_page_base
.hi
=
6526 cpu_to_le32(U64_HI(params
->rxq_params
.sge_map
));
6527 data
->rx
.cqe_page_base
.lo
=
6528 cpu_to_le32(U64_LO(params
->rxq_params
.rcq_map
));
6529 data
->rx
.cqe_page_base
.hi
=
6530 cpu_to_le32(U64_HI(params
->rxq_params
.rcq_map
));
6531 data
->rx
.is_leading_rss
=
6532 (params
->ramrod_params
.flags
& CLIENT_IS_LEADING_RSS
) ? 1 : 0;
6533 data
->rx
.is_approx_mcast
= data
->rx
.is_leading_rss
;
6536 data
->tx
.enforce_security_flg
= 0; /* VF specific */
6537 data
->tx
.tx_status_block_id
= params
->txq_params
.fw_sb_id
;
6538 data
->tx
.tx_sb_index_number
= params
->txq_params
.sb_cq_index
;
6539 data
->tx
.mtu
= 0; /* VF specific */
6540 data
->tx
.tx_bd_page_base
.lo
=
6541 cpu_to_le32(U64_LO(params
->txq_params
.dscr_map
));
6542 data
->tx
.tx_bd_page_base
.hi
=
6543 cpu_to_le32(U64_HI(params
->txq_params
.dscr_map
));
6545 /* flow control data */
6546 data
->fc
.cqe_pause_thr_low
= cpu_to_le16(params
->pause
.rcq_th_lo
);
6547 data
->fc
.cqe_pause_thr_high
= cpu_to_le16(params
->pause
.rcq_th_hi
);
6548 data
->fc
.bd_pause_thr_low
= cpu_to_le16(params
->pause
.bd_th_lo
);
6549 data
->fc
.bd_pause_thr_high
= cpu_to_le16(params
->pause
.bd_th_hi
);
6550 data
->fc
.sge_pause_thr_low
= cpu_to_le16(params
->pause
.sge_th_lo
);
6551 data
->fc
.sge_pause_thr_high
= cpu_to_le16(params
->pause
.sge_th_hi
);
6552 data
->fc
.rx_cos_mask
= cpu_to_le16(params
->pause
.pri_map
);
6554 data
->fc
.safc_group_num
= params
->txq_params
.cos
;
6555 data
->fc
.safc_group_en_flg
=
6556 (params
->txq_params
.flags
& QUEUE_FLG_COS
) ? 1 : 0;
6557 data
->fc
.traffic_type
=
6558 (params
->ramrod_params
.flags
& CLIENT_IS_FCOE
) ?
6559 LLFC_TRAFFIC_TYPE_FCOE
: LLFC_TRAFFIC_TYPE_NW
;
6562 static inline void bnx2x_set_ctx_validation(struct eth_context
*cxt
, u32 cid
)
6564 /* ustorm cxt validation */
6565 cxt
->ustorm_ag_context
.cdu_usage
=
6566 CDU_RSRVD_VALUE_TYPE_A(cid
, CDU_REGION_NUMBER_UCM_AG
,
6567 ETH_CONNECTION_TYPE
);
6568 /* xcontext validation */
6569 cxt
->xstorm_ag_context
.cdu_reserved
=
6570 CDU_RSRVD_VALUE_TYPE_A(cid
, CDU_REGION_NUMBER_XCM_AG
,
6571 ETH_CONNECTION_TYPE
);
6574 static int bnx2x_setup_fw_client(struct bnx2x
*bp
,
6575 struct bnx2x_client_init_params
*params
,
6577 struct client_init_ramrod_data
*data
,
6578 dma_addr_t data_mapping
)
6581 int ramrod
= RAMROD_CMD_ID_ETH_CLIENT_SETUP
;
6582 int ramrod_flags
= 0, rc
;
6584 /* HC and context validation values */
6585 hc_usec
= params
->txq_params
.hc_rate
?
6586 1000000 / params
->txq_params
.hc_rate
: 0;
6587 bnx2x_update_coalesce_sb_index(bp
,
6588 params
->txq_params
.fw_sb_id
,
6589 params
->txq_params
.sb_cq_index
,
6590 !(params
->txq_params
.flags
& QUEUE_FLG_HC
),
6593 *(params
->ramrod_params
.pstate
) = BNX2X_FP_STATE_OPENING
;
6595 hc_usec
= params
->rxq_params
.hc_rate
?
6596 1000000 / params
->rxq_params
.hc_rate
: 0;
6597 bnx2x_update_coalesce_sb_index(bp
,
6598 params
->rxq_params
.fw_sb_id
,
6599 params
->rxq_params
.sb_cq_index
,
6600 !(params
->rxq_params
.flags
& QUEUE_FLG_HC
),
6603 bnx2x_set_ctx_validation(params
->rxq_params
.cxt
,
6604 params
->rxq_params
.cid
);
6607 if (params
->txq_params
.flags
& QUEUE_FLG_STATS
)
6608 storm_memset_xstats_zero(bp
, BP_PORT(bp
),
6609 params
->txq_params
.stat_id
);
6611 if (params
->rxq_params
.flags
& QUEUE_FLG_STATS
) {
6612 storm_memset_ustats_zero(bp
, BP_PORT(bp
),
6613 params
->rxq_params
.stat_id
);
6614 storm_memset_tstats_zero(bp
, BP_PORT(bp
),
6615 params
->rxq_params
.stat_id
);
6618 /* Fill the ramrod data */
6619 bnx2x_fill_cl_init_data(bp
, params
, activate
, data
);
6623 * bnx2x_sp_post() takes a spin_lock thus no other explict memory
6624 * barrier except from mmiowb() is needed to impose a
6625 * proper ordering of memory operations.
6630 bnx2x_sp_post(bp
, ramrod
, params
->ramrod_params
.cid
,
6631 U64_HI(data_mapping
), U64_LO(data_mapping
), 0);
6633 /* Wait for completion */
6634 rc
= bnx2x_wait_ramrod(bp
, params
->ramrod_params
.state
,
6635 params
->ramrod_params
.index
,
6636 params
->ramrod_params
.pstate
,
6642 * bnx2x_set_int_mode - configure interrupt mode
6644 * @bp: driver handle
6646 * In case of MSI-X it will also try to enable MSI-X.
6648 static int __devinit
bnx2x_set_int_mode(struct bnx2x
*bp
)
6652 switch (bp
->int_mode
) {
6654 bnx2x_enable_msi(bp
);
6655 /* falling through... */
6657 bp
->num_queues
= 1 + NONE_ETH_CONTEXT_USE
;
6658 DP(NETIF_MSG_IFUP
, "set number of queues to 1\n");
6661 /* Set number of queues according to bp->multi_mode value */
6662 bnx2x_set_num_queues(bp
);
6664 DP(NETIF_MSG_IFUP
, "set number of queues to %d\n",
6667 /* if we can't use MSI-X we only need one fp,
6668 * so try to enable MSI-X with the requested number of fp's
6669 * and fallback to MSI or legacy INTx with one fp
6671 rc
= bnx2x_enable_msix(bp
);
6673 /* failed to enable MSI-X */
6676 "Multi requested but failed to "
6677 "enable MSI-X (%d), "
6678 "set number of queues to %d\n",
6680 1 + NONE_ETH_CONTEXT_USE
);
6681 bp
->num_queues
= 1 + NONE_ETH_CONTEXT_USE
;
6683 if (!(bp
->flags
& DISABLE_MSI_FLAG
))
6684 bnx2x_enable_msi(bp
);
6693 /* must be called prioir to any HW initializations */
6694 static inline u16
bnx2x_cid_ilt_lines(struct bnx2x
*bp
)
6696 return L2_ILT_LINES(bp
);
6699 void bnx2x_ilt_set_info(struct bnx2x
*bp
)
6701 struct ilt_client_info
*ilt_client
;
6702 struct bnx2x_ilt
*ilt
= BP_ILT(bp
);
6705 ilt
->start_line
= FUNC_ILT_BASE(BP_FUNC(bp
));
6706 DP(BNX2X_MSG_SP
, "ilt starts at line %d\n", ilt
->start_line
);
6709 ilt_client
= &ilt
->clients
[ILT_CLIENT_CDU
];
6710 ilt_client
->client_num
= ILT_CLIENT_CDU
;
6711 ilt_client
->page_size
= CDU_ILT_PAGE_SZ
;
6712 ilt_client
->flags
= ILT_CLIENT_SKIP_MEM
;
6713 ilt_client
->start
= line
;
6714 line
+= L2_ILT_LINES(bp
);
6716 line
+= CNIC_ILT_LINES
;
6718 ilt_client
->end
= line
- 1;
6720 DP(BNX2X_MSG_SP
, "ilt client[CDU]: start %d, end %d, psz 0x%x, "
6721 "flags 0x%x, hw psz %d\n",
6724 ilt_client
->page_size
,
6726 ilog2(ilt_client
->page_size
>> 12));
6729 if (QM_INIT(bp
->qm_cid_count
)) {
6730 ilt_client
= &ilt
->clients
[ILT_CLIENT_QM
];
6731 ilt_client
->client_num
= ILT_CLIENT_QM
;
6732 ilt_client
->page_size
= QM_ILT_PAGE_SZ
;
6733 ilt_client
->flags
= 0;
6734 ilt_client
->start
= line
;
6736 /* 4 bytes for each cid */
6737 line
+= DIV_ROUND_UP(bp
->qm_cid_count
* QM_QUEUES_PER_FUNC
* 4,
6740 ilt_client
->end
= line
- 1;
6742 DP(BNX2X_MSG_SP
, "ilt client[QM]: start %d, end %d, psz 0x%x, "
6743 "flags 0x%x, hw psz %d\n",
6746 ilt_client
->page_size
,
6748 ilog2(ilt_client
->page_size
>> 12));
6752 ilt_client
= &ilt
->clients
[ILT_CLIENT_SRC
];
6754 ilt_client
->client_num
= ILT_CLIENT_SRC
;
6755 ilt_client
->page_size
= SRC_ILT_PAGE_SZ
;
6756 ilt_client
->flags
= 0;
6757 ilt_client
->start
= line
;
6758 line
+= SRC_ILT_LINES
;
6759 ilt_client
->end
= line
- 1;
6761 DP(BNX2X_MSG_SP
, "ilt client[SRC]: start %d, end %d, psz 0x%x, "
6762 "flags 0x%x, hw psz %d\n",
6765 ilt_client
->page_size
,
6767 ilog2(ilt_client
->page_size
>> 12));
6770 ilt_client
->flags
= (ILT_CLIENT_SKIP_INIT
| ILT_CLIENT_SKIP_MEM
);
6774 ilt_client
= &ilt
->clients
[ILT_CLIENT_TM
];
6776 ilt_client
->client_num
= ILT_CLIENT_TM
;
6777 ilt_client
->page_size
= TM_ILT_PAGE_SZ
;
6778 ilt_client
->flags
= 0;
6779 ilt_client
->start
= line
;
6780 line
+= TM_ILT_LINES
;
6781 ilt_client
->end
= line
- 1;
6783 DP(BNX2X_MSG_SP
, "ilt client[TM]: start %d, end %d, psz 0x%x, "
6784 "flags 0x%x, hw psz %d\n",
6787 ilt_client
->page_size
,
6789 ilog2(ilt_client
->page_size
>> 12));
6792 ilt_client
->flags
= (ILT_CLIENT_SKIP_INIT
| ILT_CLIENT_SKIP_MEM
);
6796 int bnx2x_setup_client(struct bnx2x
*bp
, struct bnx2x_fastpath
*fp
,
6799 struct bnx2x_client_init_params params
= { {0} };
6802 /* reset IGU state skip FCoE L2 queue */
6803 if (!IS_FCOE_FP(fp
))
6804 bnx2x_ack_sb(bp
, fp
->igu_sb_id
, USTORM_ID
, 0,
6807 params
.ramrod_params
.pstate
= &fp
->state
;
6808 params
.ramrod_params
.state
= BNX2X_FP_STATE_OPEN
;
6809 params
.ramrod_params
.index
= fp
->index
;
6810 params
.ramrod_params
.cid
= fp
->cid
;
6814 params
.ramrod_params
.flags
|= CLIENT_IS_FCOE
;
6819 params
.ramrod_params
.flags
|= CLIENT_IS_LEADING_RSS
;
6821 bnx2x_pf_rx_cl_prep(bp
, fp
, ¶ms
.pause
, ¶ms
.rxq_params
);
6823 bnx2x_pf_tx_cl_prep(bp
, fp
, ¶ms
.txq_params
);
6825 rc
= bnx2x_setup_fw_client(bp
, ¶ms
, 1,
6826 bnx2x_sp(bp
, client_init_data
),
6827 bnx2x_sp_mapping(bp
, client_init_data
));
6831 static int bnx2x_stop_fw_client(struct bnx2x
*bp
,
6832 struct bnx2x_client_ramrod_params
*p
)
6836 int poll_flag
= p
->poll
? WAIT_RAMROD_POLL
: 0;
6838 /* halt the connection */
6839 *p
->pstate
= BNX2X_FP_STATE_HALTING
;
6840 bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_HALT
, p
->cid
, 0,
6843 /* Wait for completion */
6844 rc
= bnx2x_wait_ramrod(bp
, BNX2X_FP_STATE_HALTED
, p
->index
,
6845 p
->pstate
, poll_flag
);
6846 if (rc
) /* timeout */
6849 *p
->pstate
= BNX2X_FP_STATE_TERMINATING
;
6850 bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_TERMINATE
, p
->cid
, 0,
6852 /* Wait for completion */
6853 rc
= bnx2x_wait_ramrod(bp
, BNX2X_FP_STATE_TERMINATED
, p
->index
,
6854 p
->pstate
, poll_flag
);
6855 if (rc
) /* timeout */
6859 /* delete cfc entry */
6860 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_CFC_DEL
, p
->cid
, 0, 0, 1);
6862 /* Wait for completion */
6863 rc
= bnx2x_wait_ramrod(bp
, BNX2X_FP_STATE_CLOSED
, p
->index
,
6864 p
->pstate
, WAIT_RAMROD_COMMON
);
6868 static int bnx2x_stop_client(struct bnx2x
*bp
, int index
)
6870 struct bnx2x_client_ramrod_params client_stop
= {0};
6871 struct bnx2x_fastpath
*fp
= &bp
->fp
[index
];
6873 client_stop
.index
= index
;
6874 client_stop
.cid
= fp
->cid
;
6875 client_stop
.cl_id
= fp
->cl_id
;
6876 client_stop
.pstate
= &(fp
->state
);
6877 client_stop
.poll
= 0;
6879 return bnx2x_stop_fw_client(bp
, &client_stop
);
6883 static void bnx2x_reset_func(struct bnx2x
*bp
)
6885 int port
= BP_PORT(bp
);
6886 int func
= BP_FUNC(bp
);
6888 int pfunc_offset_fp
= offsetof(struct hc_sb_data
, p_func
) +
6890 offsetof(struct hc_status_block_data_e2
, common
) :
6891 offsetof(struct hc_status_block_data_e1x
, common
));
6892 int pfunc_offset_sp
= offsetof(struct hc_sp_status_block_data
, p_func
);
6893 int pfid_offset
= offsetof(struct pci_entity
, pf_id
);
6895 /* Disable the function in the FW */
6896 REG_WR8(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_FUNC_EN_OFFSET(func
), 0);
6897 REG_WR8(bp
, BAR_CSTRORM_INTMEM
+ CSTORM_FUNC_EN_OFFSET(func
), 0);
6898 REG_WR8(bp
, BAR_TSTRORM_INTMEM
+ TSTORM_FUNC_EN_OFFSET(func
), 0);
6899 REG_WR8(bp
, BAR_USTRORM_INTMEM
+ USTORM_FUNC_EN_OFFSET(func
), 0);
6902 for_each_eth_queue(bp
, i
) {
6903 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
6905 BAR_CSTRORM_INTMEM
+
6906 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp
->fw_sb_id
)
6907 + pfunc_offset_fp
+ pfid_offset
,
6908 HC_FUNCTION_DISABLED
);
6913 BAR_CSTRORM_INTMEM
+
6914 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func
) +
6915 pfunc_offset_sp
+ pfid_offset
,
6916 HC_FUNCTION_DISABLED
);
6919 for (i
= 0; i
< XSTORM_SPQ_DATA_SIZE
/ 4; i
++)
6920 REG_WR(bp
, BAR_XSTRORM_INTMEM
+ XSTORM_SPQ_DATA_OFFSET(func
),
6924 if (bp
->common
.int_block
== INT_BLOCK_HC
) {
6925 REG_WR(bp
, HC_REG_LEADING_EDGE_0
+ port
*8, 0);
6926 REG_WR(bp
, HC_REG_TRAILING_EDGE_0
+ port
*8, 0);
6928 REG_WR(bp
, IGU_REG_LEADING_EDGE_LATCH
, 0);
6929 REG_WR(bp
, IGU_REG_TRAILING_EDGE_LATCH
, 0);
6933 /* Disable Timer scan */
6934 REG_WR(bp
, TM_REG_EN_LINEAR0_TIMER
+ port
*4, 0);
6936 * Wait for at least 10ms and up to 2 second for the timers scan to
6939 for (i
= 0; i
< 200; i
++) {
6941 if (!REG_RD(bp
, TM_REG_LIN0_SCAN_ON
+ port
*4))
6946 bnx2x_clear_func_ilt(bp
, func
);
6948 /* Timers workaround bug for E2: if this is vnic-3,
6949 * we need to set the entire ilt range for this timers.
6951 if (CHIP_IS_E2(bp
) && BP_VN(bp
) == 3) {
6952 struct ilt_client_info ilt_cli
;
6953 /* use dummy TM client */
6954 memset(&ilt_cli
, 0, sizeof(struct ilt_client_info
));
6956 ilt_cli
.end
= ILT_NUM_PAGE_ENTRIES
- 1;
6957 ilt_cli
.client_num
= ILT_CLIENT_TM
;
6959 bnx2x_ilt_boundry_init_op(bp
, &ilt_cli
, 0, INITOP_CLEAR
);
6962 /* this assumes that reset_port() called before reset_func()*/
6964 bnx2x_pf_disable(bp
);
6969 static void bnx2x_reset_port(struct bnx2x
*bp
)
6971 int port
= BP_PORT(bp
);
6974 REG_WR(bp
, NIG_REG_MASK_INTERRUPT_PORT0
+ port
*4, 0);
6976 /* Do not rcv packets to BRB */
6977 REG_WR(bp
, NIG_REG_LLH0_BRB1_DRV_MASK
+ port
*4, 0x0);
6978 /* Do not direct rcv packets that are not for MCP to the BRB */
6979 REG_WR(bp
, (port
? NIG_REG_LLH1_BRB1_NOT_MCP
:
6980 NIG_REG_LLH0_BRB1_NOT_MCP
), 0x0);
6983 REG_WR(bp
, MISC_REG_AEU_MASK_ATTN_FUNC_0
+ port
*4, 0);
6986 /* Check for BRB port occupancy */
6987 val
= REG_RD(bp
, BRB1_REG_PORT_NUM_OCC_BLOCKS_0
+ port
*4);
6989 DP(NETIF_MSG_IFDOWN
,
6990 "BRB1 is not empty %d blocks are occupied\n", val
);
6992 /* TODO: Close Doorbell port? */
6995 static void bnx2x_reset_chip(struct bnx2x
*bp
, u32 reset_code
)
6997 DP(BNX2X_MSG_MCP
, "function %d reset_code %x\n",
6998 BP_ABS_FUNC(bp
), reset_code
);
7000 switch (reset_code
) {
7001 case FW_MSG_CODE_DRV_UNLOAD_COMMON
:
7002 bnx2x_reset_port(bp
);
7003 bnx2x_reset_func(bp
);
7004 bnx2x_reset_common(bp
);
7007 case FW_MSG_CODE_DRV_UNLOAD_PORT
:
7008 bnx2x_reset_port(bp
);
7009 bnx2x_reset_func(bp
);
7012 case FW_MSG_CODE_DRV_UNLOAD_FUNCTION
:
7013 bnx2x_reset_func(bp
);
7017 BNX2X_ERR("Unknown reset_code (0x%x) from MCP\n", reset_code
);
7023 static inline void bnx2x_del_fcoe_eth_macs(struct bnx2x
*bp
)
7025 if (bp
->flags
& FCOE_MACS_SET
) {
7027 bnx2x_set_fip_eth_mac_addr(bp
, 0);
7029 bnx2x_set_all_enode_macs(bp
, 0);
7031 bp
->flags
&= ~FCOE_MACS_SET
;
7036 void bnx2x_chip_cleanup(struct bnx2x
*bp
, int unload_mode
)
7038 int port
= BP_PORT(bp
);
7042 /* Wait until tx fastpath tasks complete */
7043 for_each_tx_queue(bp
, i
) {
7044 struct bnx2x_fastpath
*fp
= &bp
->fp
[i
];
7047 while (bnx2x_has_tx_work_unload(fp
)) {
7050 BNX2X_ERR("timeout waiting for queue[%d]\n",
7052 #ifdef BNX2X_STOP_ON_ERROR
7063 /* Give HW time to discard old tx messages */
7066 bnx2x_set_eth_mac(bp
, 0);
7068 bnx2x_invalidate_uc_list(bp
);
7071 bnx2x_invalidate_e1_mc_list(bp
);
7073 bnx2x_invalidate_e1h_mc_list(bp
);
7074 REG_WR(bp
, NIG_REG_LLH0_FUNC_EN
+ port
*8, 0);
7078 bnx2x_del_fcoe_eth_macs(bp
);
7081 if (unload_mode
== UNLOAD_NORMAL
)
7082 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS
;
7084 else if (bp
->flags
& NO_WOL_FLAG
)
7085 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP
;
7088 u32 emac_base
= port
? GRCBASE_EMAC1
: GRCBASE_EMAC0
;
7089 u8
*mac_addr
= bp
->dev
->dev_addr
;
7091 /* The mac address is written to entries 1-4 to
7092 preserve entry 0 which is used by the PMF */
7093 u8 entry
= (BP_E1HVN(bp
) + 1)*8;
7095 val
= (mac_addr
[0] << 8) | mac_addr
[1];
7096 EMAC_WR(bp
, EMAC_REG_EMAC_MAC_MATCH
+ entry
, val
);
7098 val
= (mac_addr
[2] << 24) | (mac_addr
[3] << 16) |
7099 (mac_addr
[4] << 8) | mac_addr
[5];
7100 EMAC_WR(bp
, EMAC_REG_EMAC_MAC_MATCH
+ entry
+ 4, val
);
7102 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_EN
;
7105 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS
;
7107 /* Close multi and leading connections
7108 Completions for ramrods are collected in a synchronous way */
7109 for_each_queue(bp
, i
)
7111 if (bnx2x_stop_client(bp
, i
))
7112 #ifdef BNX2X_STOP_ON_ERROR
7118 rc
= bnx2x_func_stop(bp
);
7120 BNX2X_ERR("Function stop failed!\n");
7121 #ifdef BNX2X_STOP_ON_ERROR
7127 #ifndef BNX2X_STOP_ON_ERROR
7131 reset_code
= bnx2x_fw_command(bp
, reset_code
, 0);
7133 DP(NETIF_MSG_IFDOWN
, "NO MCP - load counts[%d] "
7134 "%d, %d, %d\n", BP_PATH(bp
),
7135 load_count
[BP_PATH(bp
)][0],
7136 load_count
[BP_PATH(bp
)][1],
7137 load_count
[BP_PATH(bp
)][2]);
7138 load_count
[BP_PATH(bp
)][0]--;
7139 load_count
[BP_PATH(bp
)][1 + port
]--;
7140 DP(NETIF_MSG_IFDOWN
, "NO MCP - new load counts[%d] "
7141 "%d, %d, %d\n", BP_PATH(bp
),
7142 load_count
[BP_PATH(bp
)][0], load_count
[BP_PATH(bp
)][1],
7143 load_count
[BP_PATH(bp
)][2]);
7144 if (load_count
[BP_PATH(bp
)][0] == 0)
7145 reset_code
= FW_MSG_CODE_DRV_UNLOAD_COMMON
;
7146 else if (load_count
[BP_PATH(bp
)][1 + port
] == 0)
7147 reset_code
= FW_MSG_CODE_DRV_UNLOAD_PORT
;
7149 reset_code
= FW_MSG_CODE_DRV_UNLOAD_FUNCTION
;
7152 if ((reset_code
== FW_MSG_CODE_DRV_UNLOAD_COMMON
) ||
7153 (reset_code
== FW_MSG_CODE_DRV_UNLOAD_PORT
))
7154 bnx2x__link_reset(bp
);
7156 /* Disable HW interrupts, NAPI */
7157 bnx2x_netif_stop(bp
, 1);
7162 /* Reset the chip */
7163 bnx2x_reset_chip(bp
, reset_code
);
7165 /* Report UNLOAD_DONE to MCP */
7167 bnx2x_fw_command(bp
, DRV_MSG_CODE_UNLOAD_DONE
, 0);
7171 void bnx2x_disable_close_the_gate(struct bnx2x
*bp
)
7175 DP(NETIF_MSG_HW
, "Disabling \"close the gates\"\n");
7177 if (CHIP_IS_E1(bp
)) {
7178 int port
= BP_PORT(bp
);
7179 u32 addr
= port
? MISC_REG_AEU_MASK_ATTN_FUNC_1
:
7180 MISC_REG_AEU_MASK_ATTN_FUNC_0
;
7182 val
= REG_RD(bp
, addr
);
7184 REG_WR(bp
, addr
, val
);
7185 } else if (CHIP_IS_E1H(bp
)) {
7186 val
= REG_RD(bp
, MISC_REG_AEU_GENERAL_MASK
);
7187 val
&= ~(MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK
|
7188 MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK
);
7189 REG_WR(bp
, MISC_REG_AEU_GENERAL_MASK
, val
);
7193 /* Close gates #2, #3 and #4: */
7194 static void bnx2x_set_234_gates(struct bnx2x
*bp
, bool close
)
7198 /* Gates #2 and #4a are closed/opened for "not E1" only */
7199 if (!CHIP_IS_E1(bp
)) {
7201 val
= REG_RD(bp
, PXP_REG_HST_DISCARD_DOORBELLS
);
7202 REG_WR(bp
, PXP_REG_HST_DISCARD_DOORBELLS
,
7203 close
? (val
| 0x1) : (val
& (~(u32
)1)));
7205 val
= REG_RD(bp
, PXP_REG_HST_DISCARD_INTERNAL_WRITES
);
7206 REG_WR(bp
, PXP_REG_HST_DISCARD_INTERNAL_WRITES
,
7207 close
? (val
| 0x1) : (val
& (~(u32
)1)));
7211 addr
= BP_PORT(bp
) ? HC_REG_CONFIG_1
: HC_REG_CONFIG_0
;
7212 val
= REG_RD(bp
, addr
);
7213 REG_WR(bp
, addr
, (!close
) ? (val
| 0x1) : (val
& (~(u32
)1)));
7215 DP(NETIF_MSG_HW
, "%s gates #2, #3 and #4\n",
7216 close
? "closing" : "opening");
7220 #define SHARED_MF_CLP_MAGIC 0x80000000 /* `magic' bit */
7222 static void bnx2x_clp_reset_prep(struct bnx2x
*bp
, u32
*magic_val
)
7224 /* Do some magic... */
7225 u32 val
= MF_CFG_RD(bp
, shared_mf_config
.clp_mb
);
7226 *magic_val
= val
& SHARED_MF_CLP_MAGIC
;
7227 MF_CFG_WR(bp
, shared_mf_config
.clp_mb
, val
| SHARED_MF_CLP_MAGIC
);
7231 * bnx2x_clp_reset_done - restore the value of the `magic' bit.
7233 * @bp: driver handle
7234 * @magic_val: old value of the `magic' bit.
7236 static void bnx2x_clp_reset_done(struct bnx2x
*bp
, u32 magic_val
)
7238 /* Restore the `magic' bit value... */
7239 u32 val
= MF_CFG_RD(bp
, shared_mf_config
.clp_mb
);
7240 MF_CFG_WR(bp
, shared_mf_config
.clp_mb
,
7241 (val
& (~SHARED_MF_CLP_MAGIC
)) | magic_val
);
7245 * bnx2x_reset_mcp_prep - prepare for MCP reset.
7247 * @bp: driver handle
7248 * @magic_val: old value of 'magic' bit.
7250 * Takes care of CLP configurations.
7252 static void bnx2x_reset_mcp_prep(struct bnx2x
*bp
, u32
*magic_val
)
7255 u32 validity_offset
;
7257 DP(NETIF_MSG_HW
, "Starting\n");
7259 /* Set `magic' bit in order to save MF config */
7260 if (!CHIP_IS_E1(bp
))
7261 bnx2x_clp_reset_prep(bp
, magic_val
);
7263 /* Get shmem offset */
7264 shmem
= REG_RD(bp
, MISC_REG_SHARED_MEM_ADDR
);
7265 validity_offset
= offsetof(struct shmem_region
, validity_map
[0]);
7267 /* Clear validity map flags */
7269 REG_WR(bp
, shmem
+ validity_offset
, 0);
7272 #define MCP_TIMEOUT 5000 /* 5 seconds (in ms) */
7273 #define MCP_ONE_TIMEOUT 100 /* 100 ms */
7276 * bnx2x_mcp_wait_one - wait for MCP_ONE_TIMEOUT
7278 * @bp: driver handle
7280 static inline void bnx2x_mcp_wait_one(struct bnx2x
*bp
)
7282 /* special handling for emulation and FPGA,
7283 wait 10 times longer */
7284 if (CHIP_REV_IS_SLOW(bp
))
7285 msleep(MCP_ONE_TIMEOUT
*10);
7287 msleep(MCP_ONE_TIMEOUT
);
7290 static int bnx2x_reset_mcp_comp(struct bnx2x
*bp
, u32 magic_val
)
7292 u32 shmem
, cnt
, validity_offset
, val
;
7297 /* Get shmem offset */
7298 shmem
= REG_RD(bp
, MISC_REG_SHARED_MEM_ADDR
);
7300 BNX2X_ERR("Shmem 0 return failure\n");
7305 validity_offset
= offsetof(struct shmem_region
, validity_map
[0]);
7307 /* Wait for MCP to come up */
7308 for (cnt
= 0; cnt
< (MCP_TIMEOUT
/ MCP_ONE_TIMEOUT
); cnt
++) {
7309 /* TBD: its best to check validity map of last port.
7310 * currently checks on port 0.
7312 val
= REG_RD(bp
, shmem
+ validity_offset
);
7313 DP(NETIF_MSG_HW
, "shmem 0x%x validity map(0x%x)=0x%x\n", shmem
,
7314 shmem
+ validity_offset
, val
);
7316 /* check that shared memory is valid. */
7317 if ((val
& (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
7318 == (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
7321 bnx2x_mcp_wait_one(bp
);
7324 DP(NETIF_MSG_HW
, "Cnt=%d Shmem validity map 0x%x\n", cnt
, val
);
7326 /* Check that shared memory is valid. This indicates that MCP is up. */
7327 if ((val
& (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
)) !=
7328 (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
)) {
7329 BNX2X_ERR("Shmem signature not present. MCP is not up !!\n");
7335 /* Restore the `magic' bit value */
7336 if (!CHIP_IS_E1(bp
))
7337 bnx2x_clp_reset_done(bp
, magic_val
);
7342 static void bnx2x_pxp_prep(struct bnx2x
*bp
)
7344 if (!CHIP_IS_E1(bp
)) {
7345 REG_WR(bp
, PXP2_REG_RD_START_INIT
, 0);
7346 REG_WR(bp
, PXP2_REG_RQ_RBC_DONE
, 0);
7347 REG_WR(bp
, PXP2_REG_RQ_CFG_DONE
, 0);
7353 * Reset the whole chip except for:
7355 * - PCI Glue, PSWHST, PXP/PXP2 RF (all controlled by
7358 * - MISC (including AEU)
7362 static void bnx2x_process_kill_chip_reset(struct bnx2x
*bp
)
7364 u32 not_reset_mask1
, reset_mask1
, not_reset_mask2
, reset_mask2
;
7367 MISC_REGISTERS_RESET_REG_1_RST_HC
|
7368 MISC_REGISTERS_RESET_REG_1_RST_PXPV
|
7369 MISC_REGISTERS_RESET_REG_1_RST_PXP
;
7372 MISC_REGISTERS_RESET_REG_2_RST_MDIO
|
7373 MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE
|
7374 MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE
|
7375 MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE
|
7376 MISC_REGISTERS_RESET_REG_2_RST_RBCN
|
7377 MISC_REGISTERS_RESET_REG_2_RST_GRC
|
7378 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE
|
7379 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B
;
7381 reset_mask1
= 0xffffffff;
7384 reset_mask2
= 0xffff;
7386 reset_mask2
= 0x1ffff;
7388 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
,
7389 reset_mask1
& (~not_reset_mask1
));
7390 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_2_CLEAR
,
7391 reset_mask2
& (~not_reset_mask2
));
7396 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
, reset_mask1
);
7397 REG_WR(bp
, GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_2_SET
, reset_mask2
);
7401 static int bnx2x_process_kill(struct bnx2x
*bp
)
7405 u32 sr_cnt
, blk_cnt
, port_is_idle_0
, port_is_idle_1
, pgl_exp_rom2
;
7408 /* Empty the Tetris buffer, wait for 1s */
7410 sr_cnt
= REG_RD(bp
, PXP2_REG_RD_SR_CNT
);
7411 blk_cnt
= REG_RD(bp
, PXP2_REG_RD_BLK_CNT
);
7412 port_is_idle_0
= REG_RD(bp
, PXP2_REG_RD_PORT_IS_IDLE_0
);
7413 port_is_idle_1
= REG_RD(bp
, PXP2_REG_RD_PORT_IS_IDLE_1
);
7414 pgl_exp_rom2
= REG_RD(bp
, PXP2_REG_PGL_EXP_ROM2
);
7415 if ((sr_cnt
== 0x7e) && (blk_cnt
== 0xa0) &&
7416 ((port_is_idle_0
& 0x1) == 0x1) &&
7417 ((port_is_idle_1
& 0x1) == 0x1) &&
7418 (pgl_exp_rom2
== 0xffffffff))
7421 } while (cnt
-- > 0);
7424 DP(NETIF_MSG_HW
, "Tetris buffer didn't get empty or there"
7426 " outstanding read requests after 1s!\n");
7427 DP(NETIF_MSG_HW
, "sr_cnt=0x%08x, blk_cnt=0x%08x,"
7428 " port_is_idle_0=0x%08x,"
7429 " port_is_idle_1=0x%08x, pgl_exp_rom2=0x%08x\n",
7430 sr_cnt
, blk_cnt
, port_is_idle_0
, port_is_idle_1
,
7437 /* Close gates #2, #3 and #4 */
7438 bnx2x_set_234_gates(bp
, true);
7440 /* TBD: Indicate that "process kill" is in progress to MCP */
7442 /* Clear "unprepared" bit */
7443 REG_WR(bp
, MISC_REG_UNPREPARED
, 0);
7446 /* Make sure all is written to the chip before the reset */
7449 /* Wait for 1ms to empty GLUE and PCI-E core queues,
7450 * PSWHST, GRC and PSWRD Tetris buffer.
7454 /* Prepare to chip reset: */
7456 bnx2x_reset_mcp_prep(bp
, &val
);
7462 /* reset the chip */
7463 bnx2x_process_kill_chip_reset(bp
);
7466 /* Recover after reset: */
7468 if (bnx2x_reset_mcp_comp(bp
, val
))
7474 /* Open the gates #2, #3 and #4 */
7475 bnx2x_set_234_gates(bp
, false);
7477 /* TBD: IGU/AEU preparation bring back the AEU/IGU to a
7478 * reset state, re-enable attentions. */
7483 static int bnx2x_leader_reset(struct bnx2x
*bp
)
7486 /* Try to recover after the failure */
7487 if (bnx2x_process_kill(bp
)) {
7488 printk(KERN_ERR
"%s: Something bad had happen! Aii!\n",
7491 goto exit_leader_reset
;
7494 /* Clear "reset is in progress" bit and update the driver state */
7495 bnx2x_set_reset_done(bp
);
7496 bp
->recovery_state
= BNX2X_RECOVERY_DONE
;
7500 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_RESERVED_08
);
7505 /* Assumption: runs under rtnl lock. This together with the fact
7506 * that it's called only from bnx2x_reset_task() ensure that it
7507 * will never be called when netif_running(bp->dev) is false.
7509 static void bnx2x_parity_recover(struct bnx2x
*bp
)
7511 DP(NETIF_MSG_HW
, "Handling parity\n");
7513 switch (bp
->recovery_state
) {
7514 case BNX2X_RECOVERY_INIT
:
7515 DP(NETIF_MSG_HW
, "State is BNX2X_RECOVERY_INIT\n");
7516 /* Try to get a LEADER_LOCK HW lock */
7517 if (bnx2x_trylock_hw_lock(bp
,
7518 HW_LOCK_RESOURCE_RESERVED_08
))
7521 /* Stop the driver */
7522 /* If interface has been removed - break */
7523 if (bnx2x_nic_unload(bp
, UNLOAD_RECOVERY
))
7526 bp
->recovery_state
= BNX2X_RECOVERY_WAIT
;
7527 /* Ensure "is_leader" and "recovery_state"
7528 * update values are seen on other CPUs
7533 case BNX2X_RECOVERY_WAIT
:
7534 DP(NETIF_MSG_HW
, "State is BNX2X_RECOVERY_WAIT\n");
7535 if (bp
->is_leader
) {
7536 u32 load_counter
= bnx2x_get_load_cnt(bp
);
7538 /* Wait until all other functions get
7541 schedule_delayed_work(&bp
->reset_task
,
7545 /* If all other functions got down -
7546 * try to bring the chip back to
7547 * normal. In any case it's an exit
7548 * point for a leader.
7550 if (bnx2x_leader_reset(bp
) ||
7551 bnx2x_nic_load(bp
, LOAD_NORMAL
)) {
7552 printk(KERN_ERR
"%s: Recovery "
7553 "has failed. Power cycle is "
7554 "needed.\n", bp
->dev
->name
);
7555 /* Disconnect this device */
7556 netif_device_detach(bp
->dev
);
7557 /* Block ifup for all function
7558 * of this ASIC until
7559 * "process kill" or power
7562 bnx2x_set_reset_in_progress(bp
);
7563 /* Shut down the power */
7564 bnx2x_set_power_state(bp
,
7571 } else { /* non-leader */
7572 if (!bnx2x_reset_is_done(bp
)) {
7573 /* Try to get a LEADER_LOCK HW lock as
7574 * long as a former leader may have
7575 * been unloaded by the user or
7576 * released a leadership by another
7579 if (bnx2x_trylock_hw_lock(bp
,
7580 HW_LOCK_RESOURCE_RESERVED_08
)) {
7581 /* I'm a leader now! Restart a
7588 schedule_delayed_work(&bp
->reset_task
,
7592 } else { /* A leader has completed
7593 * the "process kill". It's an exit
7594 * point for a non-leader.
7596 bnx2x_nic_load(bp
, LOAD_NORMAL
);
7597 bp
->recovery_state
=
7598 BNX2X_RECOVERY_DONE
;
7609 /* bnx2x_nic_unload() flushes the bnx2x_wq, thus reset task is
7610 * scheduled on a general queue in order to prevent a dead lock.
7612 static void bnx2x_reset_task(struct work_struct
*work
)
7614 struct bnx2x
*bp
= container_of(work
, struct bnx2x
, reset_task
.work
);
7616 #ifdef BNX2X_STOP_ON_ERROR
7617 BNX2X_ERR("reset task called but STOP_ON_ERROR defined"
7618 " so reset not done to allow debug dump,\n"
7619 KERN_ERR
" you will need to reboot when done\n");
7625 if (!netif_running(bp
->dev
))
7626 goto reset_task_exit
;
7628 if (unlikely(bp
->recovery_state
!= BNX2X_RECOVERY_DONE
))
7629 bnx2x_parity_recover(bp
);
7631 bnx2x_nic_unload(bp
, UNLOAD_NORMAL
);
7632 bnx2x_nic_load(bp
, LOAD_NORMAL
);
7639 /* end of nic load/unload */
7642 * Init service functions
7645 static u32
bnx2x_get_pretend_reg(struct bnx2x
*bp
)
7647 u32 base
= PXP2_REG_PGL_PRETEND_FUNC_F0
;
7648 u32 stride
= PXP2_REG_PGL_PRETEND_FUNC_F1
- base
;
7649 return base
+ (BP_ABS_FUNC(bp
)) * stride
;
7652 static void bnx2x_undi_int_disable_e1h(struct bnx2x
*bp
)
7654 u32 reg
= bnx2x_get_pretend_reg(bp
);
7656 /* Flush all outstanding writes */
7659 /* Pretend to be function 0 */
7661 REG_RD(bp
, reg
); /* Flush the GRC transaction (in the chip) */
7663 /* From now we are in the "like-E1" mode */
7664 bnx2x_int_disable(bp
);
7666 /* Flush all outstanding writes */
7669 /* Restore the original function */
7670 REG_WR(bp
, reg
, BP_ABS_FUNC(bp
));
7674 static inline void bnx2x_undi_int_disable(struct bnx2x
*bp
)
7677 bnx2x_int_disable(bp
);
7679 bnx2x_undi_int_disable_e1h(bp
);
7682 static void __devinit
bnx2x_undi_unload(struct bnx2x
*bp
)
7686 /* Check if there is any driver already loaded */
7687 val
= REG_RD(bp
, MISC_REG_UNPREPARED
);
7689 /* Check if it is the UNDI driver
7690 * UNDI driver initializes CID offset for normal bell to 0x7
7692 bnx2x_acquire_hw_lock(bp
, HW_LOCK_RESOURCE_UNDI
);
7693 val
= REG_RD(bp
, DORQ_REG_NORM_CID_OFST
);
7695 u32 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS
;
7696 /* save our pf_num */
7697 int orig_pf_num
= bp
->pf_num
;
7701 /* clear the UNDI indication */
7702 REG_WR(bp
, DORQ_REG_NORM_CID_OFST
, 0);
7704 BNX2X_DEV_INFO("UNDI is active! reset device\n");
7706 /* try unload UNDI on port 0 */
7709 (SHMEM_RD(bp
, func_mb
[bp
->pf_num
].drv_mb_header
) &
7710 DRV_MSG_SEQ_NUMBER_MASK
);
7711 reset_code
= bnx2x_fw_command(bp
, reset_code
, 0);
7713 /* if UNDI is loaded on the other port */
7714 if (reset_code
!= FW_MSG_CODE_DRV_UNLOAD_COMMON
) {
7716 /* send "DONE" for previous unload */
7717 bnx2x_fw_command(bp
,
7718 DRV_MSG_CODE_UNLOAD_DONE
, 0);
7720 /* unload UNDI on port 1 */
7723 (SHMEM_RD(bp
, func_mb
[bp
->pf_num
].drv_mb_header
) &
7724 DRV_MSG_SEQ_NUMBER_MASK
);
7725 reset_code
= DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS
;
7727 bnx2x_fw_command(bp
, reset_code
, 0);
7730 /* now it's safe to release the lock */
7731 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_UNDI
);
7733 bnx2x_undi_int_disable(bp
);
7735 /* close input traffic and wait for it */
7736 /* Do not rcv packets to BRB */
7738 (BP_PORT(bp
) ? NIG_REG_LLH1_BRB1_DRV_MASK
:
7739 NIG_REG_LLH0_BRB1_DRV_MASK
), 0x0);
7740 /* Do not direct rcv packets that are not for MCP to
7743 (BP_PORT(bp
) ? NIG_REG_LLH1_BRB1_NOT_MCP
:
7744 NIG_REG_LLH0_BRB1_NOT_MCP
), 0x0);
7747 (BP_PORT(bp
) ? MISC_REG_AEU_MASK_ATTN_FUNC_1
:
7748 MISC_REG_AEU_MASK_ATTN_FUNC_0
), 0);
7751 /* save NIG port swap info */
7752 swap_val
= REG_RD(bp
, NIG_REG_PORT_SWAP
);
7753 swap_en
= REG_RD(bp
, NIG_REG_STRAP_OVERRIDE
);
7756 GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_CLEAR
,
7759 GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_2_CLEAR
,
7761 /* take the NIG out of reset and restore swap values */
7763 GRCBASE_MISC
+ MISC_REGISTERS_RESET_REG_1_SET
,
7764 MISC_REGISTERS_RESET_REG_1_RST_NIG
);
7765 REG_WR(bp
, NIG_REG_PORT_SWAP
, swap_val
);
7766 REG_WR(bp
, NIG_REG_STRAP_OVERRIDE
, swap_en
);
7768 /* send unload done to the MCP */
7769 bnx2x_fw_command(bp
, DRV_MSG_CODE_UNLOAD_DONE
, 0);
7771 /* restore our func and fw_seq */
7772 bp
->pf_num
= orig_pf_num
;
7774 (SHMEM_RD(bp
, func_mb
[bp
->pf_num
].drv_mb_header
) &
7775 DRV_MSG_SEQ_NUMBER_MASK
);
7777 bnx2x_release_hw_lock(bp
, HW_LOCK_RESOURCE_UNDI
);
7781 static void __devinit
bnx2x_get_common_hwinfo(struct bnx2x
*bp
)
7783 u32 val
, val2
, val3
, val4
, id
;
7786 /* Get the chip revision id and number. */
7787 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
7788 val
= REG_RD(bp
, MISC_REG_CHIP_NUM
);
7789 id
= ((val
& 0xffff) << 16);
7790 val
= REG_RD(bp
, MISC_REG_CHIP_REV
);
7791 id
|= ((val
& 0xf) << 12);
7792 val
= REG_RD(bp
, MISC_REG_CHIP_METAL
);
7793 id
|= ((val
& 0xff) << 4);
7794 val
= REG_RD(bp
, MISC_REG_BOND_ID
);
7796 bp
->common
.chip_id
= id
;
7798 /* Set doorbell size */
7799 bp
->db_size
= (1 << BNX2X_DB_SHIFT
);
7801 if (CHIP_IS_E2(bp
)) {
7802 val
= REG_RD(bp
, MISC_REG_PORT4MODE_EN_OVWR
);
7804 val
= REG_RD(bp
, MISC_REG_PORT4MODE_EN
);
7806 val
= (val
>> 1) & 1;
7807 BNX2X_DEV_INFO("chip is in %s\n", val
? "4_PORT_MODE" :
7809 bp
->common
.chip_port_mode
= val
? CHIP_4_PORT_MODE
:
7812 if (CHIP_MODE_IS_4_PORT(bp
))
7813 bp
->pfid
= (bp
->pf_num
>> 1); /* 0..3 */
7815 bp
->pfid
= (bp
->pf_num
& 0x6); /* 0, 2, 4, 6 */
7817 bp
->common
.chip_port_mode
= CHIP_PORT_MODE_NONE
; /* N/A */
7818 bp
->pfid
= bp
->pf_num
; /* 0..7 */
7822 * set base FW non-default (fast path) status block id, this value is
7823 * used to initialize the fw_sb_id saved on the fp/queue structure to
7824 * determine the id used by the FW.
7826 if (CHIP_IS_E1x(bp
))
7827 bp
->base_fw_ndsb
= BP_PORT(bp
) * FP_SB_MAX_E1x
;
7829 bp
->base_fw_ndsb
= BP_PORT(bp
) * FP_SB_MAX_E2
;
7831 bp
->link_params
.chip_id
= bp
->common
.chip_id
;
7832 BNX2X_DEV_INFO("chip ID is 0x%x\n", id
);
7834 val
= (REG_RD(bp
, 0x2874) & 0x55);
7835 if ((bp
->common
.chip_id
& 0x1) ||
7836 (CHIP_IS_E1(bp
) && val
) || (CHIP_IS_E1H(bp
) && (val
== 0x55))) {
7837 bp
->flags
|= ONE_PORT_FLAG
;
7838 BNX2X_DEV_INFO("single port device\n");
7841 val
= REG_RD(bp
, MCP_REG_MCPR_NVM_CFG4
);
7842 bp
->common
.flash_size
= (NVRAM_1MB_SIZE
<<
7843 (val
& MCPR_NVM_CFG4_FLASH_SIZE
));
7844 BNX2X_DEV_INFO("flash_size 0x%x (%d)\n",
7845 bp
->common
.flash_size
, bp
->common
.flash_size
);
7847 bp
->common
.shmem_base
= REG_RD(bp
, MISC_REG_SHARED_MEM_ADDR
);
7848 bp
->common
.shmem2_base
= REG_RD(bp
, (BP_PATH(bp
) ?
7849 MISC_REG_GENERIC_CR_1
:
7850 MISC_REG_GENERIC_CR_0
));
7851 bp
->link_params
.shmem_base
= bp
->common
.shmem_base
;
7852 bp
->link_params
.shmem2_base
= bp
->common
.shmem2_base
;
7853 BNX2X_DEV_INFO("shmem offset 0x%x shmem2 offset 0x%x\n",
7854 bp
->common
.shmem_base
, bp
->common
.shmem2_base
);
7856 if (!bp
->common
.shmem_base
) {
7857 BNX2X_DEV_INFO("MCP not active\n");
7858 bp
->flags
|= NO_MCP_FLAG
;
7862 val
= SHMEM_RD(bp
, validity_map
[BP_PORT(bp
)]);
7863 if ((val
& (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
7864 != (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
7865 BNX2X_ERR("BAD MCP validity signature\n");
7867 bp
->common
.hw_config
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.config
);
7868 BNX2X_DEV_INFO("hw_config 0x%08x\n", bp
->common
.hw_config
);
7870 bp
->link_params
.hw_led_mode
= ((bp
->common
.hw_config
&
7871 SHARED_HW_CFG_LED_MODE_MASK
) >>
7872 SHARED_HW_CFG_LED_MODE_SHIFT
);
7874 bp
->link_params
.feature_config_flags
= 0;
7875 val
= SHMEM_RD(bp
, dev_info
.shared_feature_config
.config
);
7876 if (val
& SHARED_FEAT_CFG_OVERRIDE_PREEMPHASIS_CFG_ENABLED
)
7877 bp
->link_params
.feature_config_flags
|=
7878 FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED
;
7880 bp
->link_params
.feature_config_flags
&=
7881 ~FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED
;
7883 val
= SHMEM_RD(bp
, dev_info
.bc_rev
) >> 8;
7884 bp
->common
.bc_ver
= val
;
7885 BNX2X_DEV_INFO("bc_ver %X\n", val
);
7886 if (val
< BNX2X_BC_VER
) {
7887 /* for now only warn
7888 * later we might need to enforce this */
7889 BNX2X_ERR("This driver needs bc_ver %X but found %X, "
7890 "please upgrade BC\n", BNX2X_BC_VER
, val
);
7892 bp
->link_params
.feature_config_flags
|=
7893 (val
>= REQ_BC_VER_4_VRFY_FIRST_PHY_OPT_MDL
) ?
7894 FEATURE_CONFIG_BC_SUPPORTS_OPT_MDL_VRFY
: 0;
7896 bp
->link_params
.feature_config_flags
|=
7897 (val
>= REQ_BC_VER_4_VRFY_SPECIFIC_PHY_OPT_MDL
) ?
7898 FEATURE_CONFIG_BC_SUPPORTS_DUAL_PHY_OPT_MDL_VRFY
: 0;
7900 pci_read_config_word(bp
->pdev
, bp
->pm_cap
+ PCI_PM_PMC
, &pmc
);
7901 bp
->flags
|= (pmc
& PCI_PM_CAP_PME_D3cold
) ? 0 : NO_WOL_FLAG
;
7903 BNX2X_DEV_INFO("%sWoL capable\n",
7904 (bp
->flags
& NO_WOL_FLAG
) ? "not " : "");
7906 val
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.part_num
);
7907 val2
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.part_num
[4]);
7908 val3
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.part_num
[8]);
7909 val4
= SHMEM_RD(bp
, dev_info
.shared_hw_config
.part_num
[12]);
7911 dev_info(&bp
->pdev
->dev
, "part number %X-%X-%X-%X\n",
7912 val
, val2
, val3
, val4
);
7915 #define IGU_FID(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_FID)
7916 #define IGU_VEC(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_VECTOR)
7918 static void __devinit
bnx2x_get_igu_cam_info(struct bnx2x
*bp
)
7920 int pfid
= BP_FUNC(bp
);
7921 int vn
= BP_E1HVN(bp
);
7926 bp
->igu_base_sb
= 0xff;
7928 if (CHIP_INT_MODE_IS_BC(bp
)) {
7929 bp
->igu_sb_cnt
= min_t(u8
, FP_SB_MAX_E1x
,
7930 NUM_IGU_SB_REQUIRED(bp
->l2_cid_count
));
7932 bp
->igu_base_sb
= (CHIP_MODE_IS_4_PORT(bp
) ? pfid
: vn
) *
7935 bp
->igu_dsb_id
= E1HVN_MAX
* FP_SB_MAX_E1x
+
7936 (CHIP_MODE_IS_4_PORT(bp
) ? pfid
: vn
);
7941 /* IGU in normal mode - read CAM */
7942 for (igu_sb_id
= 0; igu_sb_id
< IGU_REG_MAPPING_MEMORY_SIZE
;
7944 val
= REG_RD(bp
, IGU_REG_MAPPING_MEMORY
+ igu_sb_id
* 4);
7945 if (!(val
& IGU_REG_MAPPING_MEMORY_VALID
))
7948 if ((fid
& IGU_FID_ENCODE_IS_PF
)) {
7949 if ((fid
& IGU_FID_PF_NUM_MASK
) != pfid
)
7951 if (IGU_VEC(val
) == 0)
7952 /* default status block */
7953 bp
->igu_dsb_id
= igu_sb_id
;
7955 if (bp
->igu_base_sb
== 0xff)
7956 bp
->igu_base_sb
= igu_sb_id
;
7961 bp
->igu_sb_cnt
= min_t(u8
, bp
->igu_sb_cnt
,
7962 NUM_IGU_SB_REQUIRED(bp
->l2_cid_count
));
7963 if (bp
->igu_sb_cnt
== 0)
7964 BNX2X_ERR("CAM configuration error\n");
7967 static void __devinit
bnx2x_link_settings_supported(struct bnx2x
*bp
,
7970 int cfg_size
= 0, idx
, port
= BP_PORT(bp
);
7972 /* Aggregation of supported attributes of all external phys */
7973 bp
->port
.supported
[0] = 0;
7974 bp
->port
.supported
[1] = 0;
7975 switch (bp
->link_params
.num_phys
) {
7977 bp
->port
.supported
[0] = bp
->link_params
.phy
[INT_PHY
].supported
;
7981 bp
->port
.supported
[0] = bp
->link_params
.phy
[EXT_PHY1
].supported
;
7985 if (bp
->link_params
.multi_phy_config
&
7986 PORT_HW_CFG_PHY_SWAPPED_ENABLED
) {
7987 bp
->port
.supported
[1] =
7988 bp
->link_params
.phy
[EXT_PHY1
].supported
;
7989 bp
->port
.supported
[0] =
7990 bp
->link_params
.phy
[EXT_PHY2
].supported
;
7992 bp
->port
.supported
[0] =
7993 bp
->link_params
.phy
[EXT_PHY1
].supported
;
7994 bp
->port
.supported
[1] =
7995 bp
->link_params
.phy
[EXT_PHY2
].supported
;
8001 if (!(bp
->port
.supported
[0] || bp
->port
.supported
[1])) {
8002 BNX2X_ERR("NVRAM config error. BAD phy config."
8003 "PHY1 config 0x%x, PHY2 config 0x%x\n",
8005 dev_info
.port_hw_config
[port
].external_phy_config
),
8007 dev_info
.port_hw_config
[port
].external_phy_config2
));
8011 switch (switch_cfg
) {
8013 bp
->port
.phy_addr
= REG_RD(bp
, NIG_REG_SERDES0_CTRL_PHY_ADDR
+
8015 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp
->port
.phy_addr
);
8018 case SWITCH_CFG_10G
:
8019 bp
->port
.phy_addr
= REG_RD(bp
, NIG_REG_XGXS0_CTRL_PHY_ADDR
+
8021 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp
->port
.phy_addr
);
8025 BNX2X_ERR("BAD switch_cfg link_config 0x%x\n",
8026 bp
->port
.link_config
[0]);
8029 /* mask what we support according to speed_cap_mask per configuration */
8030 for (idx
= 0; idx
< cfg_size
; idx
++) {
8031 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8032 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF
))
8033 bp
->port
.supported
[idx
] &= ~SUPPORTED_10baseT_Half
;
8035 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8036 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL
))
8037 bp
->port
.supported
[idx
] &= ~SUPPORTED_10baseT_Full
;
8039 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8040 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF
))
8041 bp
->port
.supported
[idx
] &= ~SUPPORTED_100baseT_Half
;
8043 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8044 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL
))
8045 bp
->port
.supported
[idx
] &= ~SUPPORTED_100baseT_Full
;
8047 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8048 PORT_HW_CFG_SPEED_CAPABILITY_D0_1G
))
8049 bp
->port
.supported
[idx
] &= ~(SUPPORTED_1000baseT_Half
|
8050 SUPPORTED_1000baseT_Full
);
8052 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8053 PORT_HW_CFG_SPEED_CAPABILITY_D0_2_5G
))
8054 bp
->port
.supported
[idx
] &= ~SUPPORTED_2500baseX_Full
;
8056 if (!(bp
->link_params
.speed_cap_mask
[idx
] &
8057 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G
))
8058 bp
->port
.supported
[idx
] &= ~SUPPORTED_10000baseT_Full
;
8062 BNX2X_DEV_INFO("supported 0x%x 0x%x\n", bp
->port
.supported
[0],
8063 bp
->port
.supported
[1]);
8066 static void __devinit
bnx2x_link_settings_requested(struct bnx2x
*bp
)
8068 u32 link_config
, idx
, cfg_size
= 0;
8069 bp
->port
.advertising
[0] = 0;
8070 bp
->port
.advertising
[1] = 0;
8071 switch (bp
->link_params
.num_phys
) {
8080 for (idx
= 0; idx
< cfg_size
; idx
++) {
8081 bp
->link_params
.req_duplex
[idx
] = DUPLEX_FULL
;
8082 link_config
= bp
->port
.link_config
[idx
];
8083 switch (link_config
& PORT_FEATURE_LINK_SPEED_MASK
) {
8084 case PORT_FEATURE_LINK_SPEED_AUTO
:
8085 if (bp
->port
.supported
[idx
] & SUPPORTED_Autoneg
) {
8086 bp
->link_params
.req_line_speed
[idx
] =
8088 bp
->port
.advertising
[idx
] |=
8089 bp
->port
.supported
[idx
];
8091 /* force 10G, no AN */
8092 bp
->link_params
.req_line_speed
[idx
] =
8094 bp
->port
.advertising
[idx
] |=
8095 (ADVERTISED_10000baseT_Full
|
8101 case PORT_FEATURE_LINK_SPEED_10M_FULL
:
8102 if (bp
->port
.supported
[idx
] & SUPPORTED_10baseT_Full
) {
8103 bp
->link_params
.req_line_speed
[idx
] =
8105 bp
->port
.advertising
[idx
] |=
8106 (ADVERTISED_10baseT_Full
|
8109 BNX2X_ERROR("NVRAM config error. "
8110 "Invalid link_config 0x%x"
8111 " speed_cap_mask 0x%x\n",
8113 bp
->link_params
.speed_cap_mask
[idx
]);
8118 case PORT_FEATURE_LINK_SPEED_10M_HALF
:
8119 if (bp
->port
.supported
[idx
] & SUPPORTED_10baseT_Half
) {
8120 bp
->link_params
.req_line_speed
[idx
] =
8122 bp
->link_params
.req_duplex
[idx
] =
8124 bp
->port
.advertising
[idx
] |=
8125 (ADVERTISED_10baseT_Half
|
8128 BNX2X_ERROR("NVRAM config error. "
8129 "Invalid link_config 0x%x"
8130 " speed_cap_mask 0x%x\n",
8132 bp
->link_params
.speed_cap_mask
[idx
]);
8137 case PORT_FEATURE_LINK_SPEED_100M_FULL
:
8138 if (bp
->port
.supported
[idx
] &
8139 SUPPORTED_100baseT_Full
) {
8140 bp
->link_params
.req_line_speed
[idx
] =
8142 bp
->port
.advertising
[idx
] |=
8143 (ADVERTISED_100baseT_Full
|
8146 BNX2X_ERROR("NVRAM config error. "
8147 "Invalid link_config 0x%x"
8148 " speed_cap_mask 0x%x\n",
8150 bp
->link_params
.speed_cap_mask
[idx
]);
8155 case PORT_FEATURE_LINK_SPEED_100M_HALF
:
8156 if (bp
->port
.supported
[idx
] &
8157 SUPPORTED_100baseT_Half
) {
8158 bp
->link_params
.req_line_speed
[idx
] =
8160 bp
->link_params
.req_duplex
[idx
] =
8162 bp
->port
.advertising
[idx
] |=
8163 (ADVERTISED_100baseT_Half
|
8166 BNX2X_ERROR("NVRAM config error. "
8167 "Invalid link_config 0x%x"
8168 " speed_cap_mask 0x%x\n",
8170 bp
->link_params
.speed_cap_mask
[idx
]);
8175 case PORT_FEATURE_LINK_SPEED_1G
:
8176 if (bp
->port
.supported
[idx
] &
8177 SUPPORTED_1000baseT_Full
) {
8178 bp
->link_params
.req_line_speed
[idx
] =
8180 bp
->port
.advertising
[idx
] |=
8181 (ADVERTISED_1000baseT_Full
|
8184 BNX2X_ERROR("NVRAM config error. "
8185 "Invalid link_config 0x%x"
8186 " speed_cap_mask 0x%x\n",
8188 bp
->link_params
.speed_cap_mask
[idx
]);
8193 case PORT_FEATURE_LINK_SPEED_2_5G
:
8194 if (bp
->port
.supported
[idx
] &
8195 SUPPORTED_2500baseX_Full
) {
8196 bp
->link_params
.req_line_speed
[idx
] =
8198 bp
->port
.advertising
[idx
] |=
8199 (ADVERTISED_2500baseX_Full
|
8202 BNX2X_ERROR("NVRAM config error. "
8203 "Invalid link_config 0x%x"
8204 " speed_cap_mask 0x%x\n",
8206 bp
->link_params
.speed_cap_mask
[idx
]);
8211 case PORT_FEATURE_LINK_SPEED_10G_CX4
:
8212 case PORT_FEATURE_LINK_SPEED_10G_KX4
:
8213 case PORT_FEATURE_LINK_SPEED_10G_KR
:
8214 if (bp
->port
.supported
[idx
] &
8215 SUPPORTED_10000baseT_Full
) {
8216 bp
->link_params
.req_line_speed
[idx
] =
8218 bp
->port
.advertising
[idx
] |=
8219 (ADVERTISED_10000baseT_Full
|
8222 BNX2X_ERROR("NVRAM config error. "
8223 "Invalid link_config 0x%x"
8224 " speed_cap_mask 0x%x\n",
8226 bp
->link_params
.speed_cap_mask
[idx
]);
8232 BNX2X_ERROR("NVRAM config error. "
8233 "BAD link speed link_config 0x%x\n",
8235 bp
->link_params
.req_line_speed
[idx
] =
8237 bp
->port
.advertising
[idx
] =
8238 bp
->port
.supported
[idx
];
8242 bp
->link_params
.req_flow_ctrl
[idx
] = (link_config
&
8243 PORT_FEATURE_FLOW_CONTROL_MASK
);
8244 if ((bp
->link_params
.req_flow_ctrl
[idx
] ==
8245 BNX2X_FLOW_CTRL_AUTO
) &&
8246 !(bp
->port
.supported
[idx
] & SUPPORTED_Autoneg
)) {
8247 bp
->link_params
.req_flow_ctrl
[idx
] =
8248 BNX2X_FLOW_CTRL_NONE
;
8251 BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl"
8252 " 0x%x advertising 0x%x\n",
8253 bp
->link_params
.req_line_speed
[idx
],
8254 bp
->link_params
.req_duplex
[idx
],
8255 bp
->link_params
.req_flow_ctrl
[idx
],
8256 bp
->port
.advertising
[idx
]);
8260 static void __devinit
bnx2x_set_mac_buf(u8
*mac_buf
, u32 mac_lo
, u16 mac_hi
)
8262 mac_hi
= cpu_to_be16(mac_hi
);
8263 mac_lo
= cpu_to_be32(mac_lo
);
8264 memcpy(mac_buf
, &mac_hi
, sizeof(mac_hi
));
8265 memcpy(mac_buf
+ sizeof(mac_hi
), &mac_lo
, sizeof(mac_lo
));
8268 static void __devinit
bnx2x_get_port_hwinfo(struct bnx2x
*bp
)
8270 int port
= BP_PORT(bp
);
8272 u32 ext_phy_type
, ext_phy_config
;
8274 bp
->link_params
.bp
= bp
;
8275 bp
->link_params
.port
= port
;
8277 bp
->link_params
.lane_config
=
8278 SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].lane_config
);
8280 bp
->link_params
.speed_cap_mask
[0] =
8282 dev_info
.port_hw_config
[port
].speed_capability_mask
);
8283 bp
->link_params
.speed_cap_mask
[1] =
8285 dev_info
.port_hw_config
[port
].speed_capability_mask2
);
8286 bp
->port
.link_config
[0] =
8287 SHMEM_RD(bp
, dev_info
.port_feature_config
[port
].link_config
);
8289 bp
->port
.link_config
[1] =
8290 SHMEM_RD(bp
, dev_info
.port_feature_config
[port
].link_config2
);
8292 bp
->link_params
.multi_phy_config
=
8293 SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].multi_phy_config
);
8294 /* If the device is capable of WoL, set the default state according
8297 config
= SHMEM_RD(bp
, dev_info
.port_feature_config
[port
].config
);
8298 bp
->wol
= (!(bp
->flags
& NO_WOL_FLAG
) &&
8299 (config
& PORT_FEATURE_WOL_ENABLED
));
8301 BNX2X_DEV_INFO("lane_config 0x%08x "
8302 "speed_cap_mask0 0x%08x link_config0 0x%08x\n",
8303 bp
->link_params
.lane_config
,
8304 bp
->link_params
.speed_cap_mask
[0],
8305 bp
->port
.link_config
[0]);
8307 bp
->link_params
.switch_cfg
= (bp
->port
.link_config
[0] &
8308 PORT_FEATURE_CONNECTED_SWITCH_MASK
);
8309 bnx2x_phy_probe(&bp
->link_params
);
8310 bnx2x_link_settings_supported(bp
, bp
->link_params
.switch_cfg
);
8312 bnx2x_link_settings_requested(bp
);
8315 * If connected directly, work with the internal PHY, otherwise, work
8316 * with the external PHY
8320 dev_info
.port_hw_config
[port
].external_phy_config
);
8321 ext_phy_type
= XGXS_EXT_PHY_TYPE(ext_phy_config
);
8322 if (ext_phy_type
== PORT_HW_CFG_XGXS_EXT_PHY_TYPE_DIRECT
)
8323 bp
->mdio
.prtad
= bp
->port
.phy_addr
;
8325 else if ((ext_phy_type
!= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE
) &&
8326 (ext_phy_type
!= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN
))
8328 XGXS_EXT_PHY_ADDR(ext_phy_config
);
8331 * Check if hw lock is required to access MDC/MDIO bus to the PHY(s)
8332 * In MF mode, it is set to cover self test cases
8335 bp
->port
.need_hw_lock
= 1;
8337 bp
->port
.need_hw_lock
= bnx2x_hw_lock_required(bp
,
8338 bp
->common
.shmem_base
,
8339 bp
->common
.shmem2_base
);
8343 static void __devinit
bnx2x_get_cnic_info(struct bnx2x
*bp
)
8345 u32 max_iscsi_conn
= FW_ENCODE_32BIT_PATTERN
^ SHMEM_RD(bp
,
8346 drv_lic_key
[BP_PORT(bp
)].max_iscsi_conn
);
8347 u32 max_fcoe_conn
= FW_ENCODE_32BIT_PATTERN
^ SHMEM_RD(bp
,
8348 drv_lic_key
[BP_PORT(bp
)].max_fcoe_conn
);
8350 /* Get the number of maximum allowed iSCSI and FCoE connections */
8351 bp
->cnic_eth_dev
.max_iscsi_conn
=
8352 (max_iscsi_conn
& BNX2X_MAX_ISCSI_INIT_CONN_MASK
) >>
8353 BNX2X_MAX_ISCSI_INIT_CONN_SHIFT
;
8355 bp
->cnic_eth_dev
.max_fcoe_conn
=
8356 (max_fcoe_conn
& BNX2X_MAX_FCOE_INIT_CONN_MASK
) >>
8357 BNX2X_MAX_FCOE_INIT_CONN_SHIFT
;
8359 BNX2X_DEV_INFO("max_iscsi_conn 0x%x max_fcoe_conn 0x%x\n",
8360 bp
->cnic_eth_dev
.max_iscsi_conn
,
8361 bp
->cnic_eth_dev
.max_fcoe_conn
);
8363 /* If mamimum allowed number of connections is zero -
8364 * disable the feature.
8366 if (!bp
->cnic_eth_dev
.max_iscsi_conn
)
8367 bp
->flags
|= NO_ISCSI_OOO_FLAG
| NO_ISCSI_FLAG
;
8369 if (!bp
->cnic_eth_dev
.max_fcoe_conn
)
8370 bp
->flags
|= NO_FCOE_FLAG
;
8374 static void __devinit
bnx2x_get_mac_hwinfo(struct bnx2x
*bp
)
8377 int func
= BP_ABS_FUNC(bp
);
8378 int port
= BP_PORT(bp
);
8380 u8
*iscsi_mac
= bp
->cnic_eth_dev
.iscsi_mac
;
8381 u8
*fip_mac
= bp
->fip_mac
;
8385 BNX2X_ERROR("warning: random MAC workaround active\n");
8386 random_ether_addr(bp
->dev
->dev_addr
);
8387 } else if (IS_MF(bp
)) {
8388 val2
= MF_CFG_RD(bp
, func_mf_config
[func
].mac_upper
);
8389 val
= MF_CFG_RD(bp
, func_mf_config
[func
].mac_lower
);
8390 if ((val2
!= FUNC_MF_CFG_UPPERMAC_DEFAULT
) &&
8391 (val
!= FUNC_MF_CFG_LOWERMAC_DEFAULT
))
8392 bnx2x_set_mac_buf(bp
->dev
->dev_addr
, val
, val2
);
8395 /* iSCSI and FCoE NPAR MACs: if there is no either iSCSI or
8396 * FCoE MAC then the appropriate feature should be disabled.
8399 u32 cfg
= MF_CFG_RD(bp
, func_ext_config
[func
].func_cfg
);
8400 if (cfg
& MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD
) {
8401 val2
= MF_CFG_RD(bp
, func_ext_config
[func
].
8402 iscsi_mac_addr_upper
);
8403 val
= MF_CFG_RD(bp
, func_ext_config
[func
].
8404 iscsi_mac_addr_lower
);
8405 BNX2X_DEV_INFO("Read iSCSI MAC: "
8406 "0x%x:0x%04x\n", val2
, val
);
8407 bnx2x_set_mac_buf(iscsi_mac
, val
, val2
);
8409 bp
->flags
|= NO_ISCSI_OOO_FLAG
| NO_ISCSI_FLAG
;
8411 if (cfg
& MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD
) {
8412 val2
= MF_CFG_RD(bp
, func_ext_config
[func
].
8413 fcoe_mac_addr_upper
);
8414 val
= MF_CFG_RD(bp
, func_ext_config
[func
].
8415 fcoe_mac_addr_lower
);
8416 BNX2X_DEV_INFO("Read FCoE MAC to "
8417 "0x%x:0x%04x\n", val2
, val
);
8418 bnx2x_set_mac_buf(fip_mac
, val
, val2
);
8421 bp
->flags
|= NO_FCOE_FLAG
;
8425 /* in SF read MACs from port configuration */
8426 val2
= SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].mac_upper
);
8427 val
= SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].mac_lower
);
8428 bnx2x_set_mac_buf(bp
->dev
->dev_addr
, val
, val2
);
8431 val2
= SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].
8433 val
= SHMEM_RD(bp
, dev_info
.port_hw_config
[port
].
8435 bnx2x_set_mac_buf(iscsi_mac
, val
, val2
);
8439 memcpy(bp
->link_params
.mac_addr
, bp
->dev
->dev_addr
, ETH_ALEN
);
8440 memcpy(bp
->dev
->perm_addr
, bp
->dev
->dev_addr
, ETH_ALEN
);
8443 /* Set the FCoE MAC in modes other then MF_SI */
8444 if (!CHIP_IS_E1x(bp
)) {
8446 memcpy(fip_mac
, bp
->dev
->dev_addr
, ETH_ALEN
);
8447 else if (!IS_MF(bp
))
8448 memcpy(fip_mac
, iscsi_mac
, ETH_ALEN
);
8451 /* Disable iSCSI if MAC configuration is
8454 if (!is_valid_ether_addr(iscsi_mac
)) {
8455 bp
->flags
|= NO_ISCSI_FLAG
;
8456 memset(iscsi_mac
, 0, ETH_ALEN
);
8459 /* Disable FCoE if MAC configuration is
8462 if (!is_valid_ether_addr(fip_mac
)) {
8463 bp
->flags
|= NO_FCOE_FLAG
;
8464 memset(bp
->fip_mac
, 0, ETH_ALEN
);
8469 static int __devinit
bnx2x_get_hwinfo(struct bnx2x
*bp
)
8471 int /*abs*/func
= BP_ABS_FUNC(bp
);
8476 bnx2x_get_common_hwinfo(bp
);
8478 if (CHIP_IS_E1x(bp
)) {
8479 bp
->common
.int_block
= INT_BLOCK_HC
;
8481 bp
->igu_dsb_id
= DEF_SB_IGU_ID
;
8482 bp
->igu_base_sb
= 0;
8483 bp
->igu_sb_cnt
= min_t(u8
, FP_SB_MAX_E1x
,
8484 NUM_IGU_SB_REQUIRED(bp
->l2_cid_count
));
8486 bp
->common
.int_block
= INT_BLOCK_IGU
;
8487 val
= REG_RD(bp
, IGU_REG_BLOCK_CONFIGURATION
);
8488 if (val
& IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN
) {
8489 DP(NETIF_MSG_PROBE
, "IGU Backward Compatible Mode\n");
8490 bp
->common
.int_block
|= INT_BLOCK_MODE_BW_COMP
;
8492 DP(NETIF_MSG_PROBE
, "IGU Normal Mode\n");
8494 bnx2x_get_igu_cam_info(bp
);
8497 DP(NETIF_MSG_PROBE
, "igu_dsb_id %d igu_base_sb %d igu_sb_cnt %d\n",
8498 bp
->igu_dsb_id
, bp
->igu_base_sb
, bp
->igu_sb_cnt
);
8501 * Initialize MF configuration
8508 if (!CHIP_IS_E1(bp
) && !BP_NOMCP(bp
)) {
8510 "shmem2base 0x%x, size %d, mfcfg offset %d\n",
8511 bp
->common
.shmem2_base
, SHMEM2_RD(bp
, size
),
8512 (u32
)offsetof(struct shmem2_region
, mf_cfg_addr
));
8513 if (SHMEM2_HAS(bp
, mf_cfg_addr
))
8514 bp
->common
.mf_cfg_base
= SHMEM2_RD(bp
, mf_cfg_addr
);
8516 bp
->common
.mf_cfg_base
= bp
->common
.shmem_base
+
8517 offsetof(struct shmem_region
, func_mb
) +
8518 E1H_FUNC_MAX
* sizeof(struct drv_func_mb
);
8520 * get mf configuration:
8521 * 1. existence of MF configuration
8522 * 2. MAC address must be legal (check only upper bytes)
8523 * for Switch-Independent mode;
8524 * OVLAN must be legal for Switch-Dependent mode
8525 * 3. SF_MODE configures specific MF mode
8527 if (bp
->common
.mf_cfg_base
!= SHMEM_MF_CFG_ADDR_NONE
) {
8528 /* get mf configuration */
8530 dev_info
.shared_feature_config
.config
);
8531 val
&= SHARED_FEAT_CFG_FORCE_SF_MODE_MASK
;
8534 case SHARED_FEAT_CFG_FORCE_SF_MODE_SWITCH_INDEPT
:
8535 val
= MF_CFG_RD(bp
, func_mf_config
[func
].
8537 /* check for legal mac (upper bytes)*/
8538 if (val
!= 0xffff) {
8539 bp
->mf_mode
= MULTI_FUNCTION_SI
;
8540 bp
->mf_config
[vn
] = MF_CFG_RD(bp
,
8541 func_mf_config
[func
].config
);
8543 DP(NETIF_MSG_PROBE
, "illegal MAC "
8544 "address for SI\n");
8546 case SHARED_FEAT_CFG_FORCE_SF_MODE_MF_ALLOWED
:
8547 /* get OV configuration */
8549 func_mf_config
[FUNC_0
].e1hov_tag
);
8550 val
&= FUNC_MF_CFG_E1HOV_TAG_MASK
;
8552 if (val
!= FUNC_MF_CFG_E1HOV_TAG_DEFAULT
) {
8553 bp
->mf_mode
= MULTI_FUNCTION_SD
;
8554 bp
->mf_config
[vn
] = MF_CFG_RD(bp
,
8555 func_mf_config
[func
].config
);
8557 DP(NETIF_MSG_PROBE
, "illegal OV for "
8561 /* Unknown configuration: reset mf_config */
8562 bp
->mf_config
[vn
] = 0;
8563 DP(NETIF_MSG_PROBE
, "Unknown MF mode 0x%x\n",
8568 BNX2X_DEV_INFO("%s function mode\n",
8569 IS_MF(bp
) ? "multi" : "single");
8571 switch (bp
->mf_mode
) {
8572 case MULTI_FUNCTION_SD
:
8573 val
= MF_CFG_RD(bp
, func_mf_config
[func
].e1hov_tag
) &
8574 FUNC_MF_CFG_E1HOV_TAG_MASK
;
8575 if (val
!= FUNC_MF_CFG_E1HOV_TAG_DEFAULT
) {
8577 BNX2X_DEV_INFO("MF OV for func %d is %d"
8578 " (0x%04x)\n", func
,
8579 bp
->mf_ov
, bp
->mf_ov
);
8581 BNX2X_ERR("No valid MF OV for func %d,"
8582 " aborting\n", func
);
8586 case MULTI_FUNCTION_SI
:
8587 BNX2X_DEV_INFO("func %d is in MF "
8588 "switch-independent mode\n", func
);
8592 BNX2X_ERR("VN %d in single function mode,"
8601 /* adjust igu_sb_cnt to MF for E1x */
8602 if (CHIP_IS_E1x(bp
) && IS_MF(bp
))
8603 bp
->igu_sb_cnt
/= E1HVN_MAX
;
8606 * adjust E2 sb count: to be removed when FW will support
8607 * more then 16 L2 clients
8609 #define MAX_L2_CLIENTS 16
8611 bp
->igu_sb_cnt
= min_t(u8
, bp
->igu_sb_cnt
,
8612 MAX_L2_CLIENTS
/ (IS_MF(bp
) ? 4 : 1));
8614 if (!BP_NOMCP(bp
)) {
8615 bnx2x_get_port_hwinfo(bp
);
8618 (SHMEM_RD(bp
, func_mb
[BP_FW_MB_IDX(bp
)].drv_mb_header
) &
8619 DRV_MSG_SEQ_NUMBER_MASK
);
8620 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp
->fw_seq
);
8623 /* Get MAC addresses */
8624 bnx2x_get_mac_hwinfo(bp
);
8627 bnx2x_get_cnic_info(bp
);
8633 static void __devinit
bnx2x_read_fwinfo(struct bnx2x
*bp
)
8635 int cnt
, i
, block_end
, rodi
;
8636 char vpd_data
[BNX2X_VPD_LEN
+1];
8637 char str_id_reg
[VENDOR_ID_LEN
+1];
8638 char str_id_cap
[VENDOR_ID_LEN
+1];
8641 cnt
= pci_read_vpd(bp
->pdev
, 0, BNX2X_VPD_LEN
, vpd_data
);
8642 memset(bp
->fw_ver
, 0, sizeof(bp
->fw_ver
));
8644 if (cnt
< BNX2X_VPD_LEN
)
8647 i
= pci_vpd_find_tag(vpd_data
, 0, BNX2X_VPD_LEN
,
8648 PCI_VPD_LRDT_RO_DATA
);
8653 block_end
= i
+ PCI_VPD_LRDT_TAG_SIZE
+
8654 pci_vpd_lrdt_size(&vpd_data
[i
]);
8656 i
+= PCI_VPD_LRDT_TAG_SIZE
;
8658 if (block_end
> BNX2X_VPD_LEN
)
8661 rodi
= pci_vpd_find_info_keyword(vpd_data
, i
, block_end
,
8662 PCI_VPD_RO_KEYWORD_MFR_ID
);
8666 len
= pci_vpd_info_field_size(&vpd_data
[rodi
]);
8668 if (len
!= VENDOR_ID_LEN
)
8671 rodi
+= PCI_VPD_INFO_FLD_HDR_SIZE
;
8673 /* vendor specific info */
8674 snprintf(str_id_reg
, VENDOR_ID_LEN
+ 1, "%04x", PCI_VENDOR_ID_DELL
);
8675 snprintf(str_id_cap
, VENDOR_ID_LEN
+ 1, "%04X", PCI_VENDOR_ID_DELL
);
8676 if (!strncmp(str_id_reg
, &vpd_data
[rodi
], VENDOR_ID_LEN
) ||
8677 !strncmp(str_id_cap
, &vpd_data
[rodi
], VENDOR_ID_LEN
)) {
8679 rodi
= pci_vpd_find_info_keyword(vpd_data
, i
, block_end
,
8680 PCI_VPD_RO_KEYWORD_VENDOR0
);
8682 len
= pci_vpd_info_field_size(&vpd_data
[rodi
]);
8684 rodi
+= PCI_VPD_INFO_FLD_HDR_SIZE
;
8686 if (len
< 32 && (len
+ rodi
) <= BNX2X_VPD_LEN
) {
8687 memcpy(bp
->fw_ver
, &vpd_data
[rodi
], len
);
8688 bp
->fw_ver
[len
] = ' ';
8697 static int __devinit
bnx2x_init_bp(struct bnx2x
*bp
)
8703 /* Disable interrupt handling until HW is initialized */
8704 atomic_set(&bp
->intr_sem
, 1);
8705 smp_wmb(); /* Ensure that bp->intr_sem update is SMP-safe */
8707 mutex_init(&bp
->port
.phy_mutex
);
8708 mutex_init(&bp
->fw_mb_mutex
);
8709 spin_lock_init(&bp
->stats_lock
);
8711 mutex_init(&bp
->cnic_mutex
);
8714 INIT_DELAYED_WORK(&bp
->sp_task
, bnx2x_sp_task
);
8715 INIT_DELAYED_WORK(&bp
->reset_task
, bnx2x_reset_task
);
8717 rc
= bnx2x_get_hwinfo(bp
);
8720 rc
= bnx2x_alloc_mem_bp(bp
);
8722 bnx2x_read_fwinfo(bp
);
8726 /* need to reset chip if undi was active */
8728 bnx2x_undi_unload(bp
);
8730 if (CHIP_REV_IS_FPGA(bp
))
8731 dev_err(&bp
->pdev
->dev
, "FPGA detected\n");
8733 if (BP_NOMCP(bp
) && (func
== 0))
8734 dev_err(&bp
->pdev
->dev
, "MCP disabled, "
8735 "must load devices in order!\n");
8737 bp
->multi_mode
= multi_mode
;
8738 bp
->int_mode
= int_mode
;
8742 bp
->flags
&= ~TPA_ENABLE_FLAG
;
8743 bp
->dev
->features
&= ~NETIF_F_LRO
;
8745 bp
->flags
|= TPA_ENABLE_FLAG
;
8746 bp
->dev
->features
|= NETIF_F_LRO
;
8748 bp
->disable_tpa
= disable_tpa
;
8751 bp
->dropless_fc
= 0;
8753 bp
->dropless_fc
= dropless_fc
;
8757 bp
->tx_ring_size
= MAX_TX_AVAIL
;
8759 /* make sure that the numbers are in the right granularity */
8760 bp
->tx_ticks
= (50 / BNX2X_BTR
) * BNX2X_BTR
;
8761 bp
->rx_ticks
= (25 / BNX2X_BTR
) * BNX2X_BTR
;
8763 timer_interval
= (CHIP_REV_IS_SLOW(bp
) ? 5*HZ
: HZ
);
8764 bp
->current_interval
= (poll
? poll
: timer_interval
);
8766 init_timer(&bp
->timer
);
8767 bp
->timer
.expires
= jiffies
+ bp
->current_interval
;
8768 bp
->timer
.data
= (unsigned long) bp
;
8769 bp
->timer
.function
= bnx2x_timer
;
8771 bnx2x_dcbx_set_state(bp
, true, BNX2X_DCBX_ENABLED_ON_NEG_ON
);
8772 bnx2x_dcbx_init_params(bp
);
8778 /****************************************************************************
8779 * General service functions
8780 ****************************************************************************/
8782 /* called with rtnl_lock */
8783 static int bnx2x_open(struct net_device
*dev
)
8785 struct bnx2x
*bp
= netdev_priv(dev
);
8787 netif_carrier_off(dev
);
8789 bnx2x_set_power_state(bp
, PCI_D0
);
8791 if (!bnx2x_reset_is_done(bp
)) {
8793 /* Reset MCP mail box sequence if there is on going
8798 /* If it's the first function to load and reset done
8799 * is still not cleared it may mean that. We don't
8800 * check the attention state here because it may have
8801 * already been cleared by a "common" reset but we
8802 * shell proceed with "process kill" anyway.
8804 if ((bnx2x_get_load_cnt(bp
) == 0) &&
8805 bnx2x_trylock_hw_lock(bp
,
8806 HW_LOCK_RESOURCE_RESERVED_08
) &&
8807 (!bnx2x_leader_reset(bp
))) {
8808 DP(NETIF_MSG_HW
, "Recovered in open\n");
8812 bnx2x_set_power_state(bp
, PCI_D3hot
);
8814 printk(KERN_ERR
"%s: Recovery flow hasn't been properly"
8815 " completed yet. Try again later. If u still see this"
8816 " message after a few retries then power cycle is"
8817 " required.\n", bp
->dev
->name
);
8823 bp
->recovery_state
= BNX2X_RECOVERY_DONE
;
8825 return bnx2x_nic_load(bp
, LOAD_OPEN
);
8828 /* called with rtnl_lock */
8829 static int bnx2x_close(struct net_device
*dev
)
8831 struct bnx2x
*bp
= netdev_priv(dev
);
8833 /* Unload the driver, release IRQs */
8834 bnx2x_nic_unload(bp
, UNLOAD_CLOSE
);
8835 bnx2x_set_power_state(bp
, PCI_D3hot
);
8840 #define E1_MAX_UC_LIST 29
8841 #define E1H_MAX_UC_LIST 30
8842 #define E2_MAX_UC_LIST 14
8843 static inline u8
bnx2x_max_uc_list(struct bnx2x
*bp
)
8846 return E1_MAX_UC_LIST
;
8847 else if (CHIP_IS_E1H(bp
))
8848 return E1H_MAX_UC_LIST
;
8850 return E2_MAX_UC_LIST
;
8854 static inline u8
bnx2x_uc_list_cam_offset(struct bnx2x
*bp
)
8857 /* CAM Entries for Port0:
8860 * 2 - iSCSI L2 ring ETH MAC
8863 * Port1 entries are allocated the same way starting from
8866 return 3 + 32 * BP_PORT(bp
);
8867 else if (CHIP_IS_E1H(bp
)) {
8869 * 0-7 - prim ETH MAC for each function
8870 * 8-15 - iSCSI L2 ring ETH MAC for each function
8871 * 16 till 255 UC MAC lists for each function
8873 * Remark: There is no FCoE support for E1H, thus FCoE related
8874 * MACs are not considered.
8876 return E1H_FUNC_MAX
* (CAM_ISCSI_ETH_LINE
+ 1) +
8877 bnx2x_max_uc_list(bp
) * BP_FUNC(bp
);
8879 /* CAM Entries (there is a separate CAM per engine):
8880 * 0-4 - prim ETH MAC for each function
8881 * 4-7 - iSCSI L2 ring ETH MAC for each function
8882 * 8-11 - FIP ucast L2 MAC for each function
8883 * 12-15 - ALL_ENODE_MACS mcast MAC for each function
8884 * 16 till 71 UC MAC lists for each function
8887 (CHIP_MODE_IS_4_PORT(bp
) ? BP_FUNC(bp
) : BP_VN(bp
));
8889 return E2_FUNC_MAX
* (CAM_MAX_PF_LINE
+ 1) +
8890 bnx2x_max_uc_list(bp
) * func_idx
;
8894 /* set uc list, do not wait as wait implies sleep and
8895 * set_rx_mode can be invoked from non-sleepable context.
8897 * Instead we use the same ramrod data buffer each time we need
8898 * to configure a list of addresses, and use the fact that the
8899 * list of MACs is changed in an incremental way and that the
8900 * function is called under the netif_addr_lock. A temporary
8901 * inconsistent CAM configuration (possible in case of very fast
8902 * sequence of add/del/add on the host side) will shortly be
8903 * restored by the handler of the last ramrod.
8905 static int bnx2x_set_uc_list(struct bnx2x
*bp
)
8908 struct net_device
*dev
= bp
->dev
;
8909 u8 offset
= bnx2x_uc_list_cam_offset(bp
);
8910 struct netdev_hw_addr
*ha
;
8911 struct mac_configuration_cmd
*config_cmd
= bnx2x_sp(bp
, uc_mac_config
);
8912 dma_addr_t config_cmd_map
= bnx2x_sp_mapping(bp
, uc_mac_config
);
8914 if (netdev_uc_count(dev
) > bnx2x_max_uc_list(bp
))
8917 netdev_for_each_uc_addr(ha
, dev
) {
8919 config_cmd
->config_table
[i
].msb_mac_addr
=
8920 swab16(*(u16
*)&bnx2x_uc_addr(ha
)[0]);
8921 config_cmd
->config_table
[i
].middle_mac_addr
=
8922 swab16(*(u16
*)&bnx2x_uc_addr(ha
)[2]);
8923 config_cmd
->config_table
[i
].lsb_mac_addr
=
8924 swab16(*(u16
*)&bnx2x_uc_addr(ha
)[4]);
8926 config_cmd
->config_table
[i
].vlan_id
= 0;
8927 config_cmd
->config_table
[i
].pf_id
= BP_FUNC(bp
);
8928 config_cmd
->config_table
[i
].clients_bit_vector
=
8929 cpu_to_le32(1 << BP_L_ID(bp
));
8931 SET_FLAG(config_cmd
->config_table
[i
].flags
,
8932 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
8933 T_ETH_MAC_COMMAND_SET
);
8936 "setting UCAST[%d] (%04x:%04x:%04x)\n", i
,
8937 config_cmd
->config_table
[i
].msb_mac_addr
,
8938 config_cmd
->config_table
[i
].middle_mac_addr
,
8939 config_cmd
->config_table
[i
].lsb_mac_addr
);
8943 /* Set uc MAC in NIG */
8944 bnx2x_set_mac_in_nig(bp
, 1, bnx2x_uc_addr(ha
),
8945 LLH_CAM_ETH_LINE
+ i
);
8947 old
= config_cmd
->hdr
.length
;
8949 for (; i
< old
; i
++) {
8950 if (CAM_IS_INVALID(config_cmd
->
8952 /* already invalidated */
8956 SET_FLAG(config_cmd
->config_table
[i
].flags
,
8957 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
8958 T_ETH_MAC_COMMAND_INVALIDATE
);
8964 config_cmd
->hdr
.length
= i
;
8965 config_cmd
->hdr
.offset
= offset
;
8966 config_cmd
->hdr
.client_id
= 0xff;
8967 /* Mark that this ramrod doesn't use bp->set_mac_pending for
8970 config_cmd
->hdr
.echo
= 0;
8974 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_MAC
, 0,
8975 U64_HI(config_cmd_map
), U64_LO(config_cmd_map
), 1);
8979 void bnx2x_invalidate_uc_list(struct bnx2x
*bp
)
8982 struct mac_configuration_cmd
*config_cmd
= bnx2x_sp(bp
, uc_mac_config
);
8983 dma_addr_t config_cmd_map
= bnx2x_sp_mapping(bp
, uc_mac_config
);
8984 int ramrod_flags
= WAIT_RAMROD_COMMON
;
8985 u8 offset
= bnx2x_uc_list_cam_offset(bp
);
8986 u8 max_list_size
= bnx2x_max_uc_list(bp
);
8988 for (i
= 0; i
< max_list_size
; i
++) {
8989 SET_FLAG(config_cmd
->config_table
[i
].flags
,
8990 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
8991 T_ETH_MAC_COMMAND_INVALIDATE
);
8992 bnx2x_set_mac_in_nig(bp
, 0, NULL
, LLH_CAM_ETH_LINE
+ 1 + i
);
8997 config_cmd
->hdr
.length
= max_list_size
;
8998 config_cmd
->hdr
.offset
= offset
;
8999 config_cmd
->hdr
.client_id
= 0xff;
9000 /* We'll wait for a completion this time... */
9001 config_cmd
->hdr
.echo
= 1;
9003 bp
->set_mac_pending
= 1;
9007 bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_MAC
, 0,
9008 U64_HI(config_cmd_map
), U64_LO(config_cmd_map
), 1);
9010 /* Wait for a completion */
9011 bnx2x_wait_ramrod(bp
, 0, 0, &bp
->set_mac_pending
,
9016 static inline int bnx2x_set_mc_list(struct bnx2x
*bp
)
9018 /* some multicasts */
9019 if (CHIP_IS_E1(bp
)) {
9020 return bnx2x_set_e1_mc_list(bp
);
9021 } else { /* E1H and newer */
9022 return bnx2x_set_e1h_mc_list(bp
);
9026 /* called with netif_tx_lock from dev_mcast.c */
9027 void bnx2x_set_rx_mode(struct net_device
*dev
)
9029 struct bnx2x
*bp
= netdev_priv(dev
);
9030 u32 rx_mode
= BNX2X_RX_MODE_NORMAL
;
9032 if (bp
->state
!= BNX2X_STATE_OPEN
) {
9033 DP(NETIF_MSG_IFUP
, "state is %x, returning\n", bp
->state
);
9037 DP(NETIF_MSG_IFUP
, "dev->flags = %x\n", dev
->flags
);
9039 if (dev
->flags
& IFF_PROMISC
)
9040 rx_mode
= BNX2X_RX_MODE_PROMISC
;
9041 else if (dev
->flags
& IFF_ALLMULTI
)
9042 rx_mode
= BNX2X_RX_MODE_ALLMULTI
;
9044 /* some multicasts */
9045 if (bnx2x_set_mc_list(bp
))
9046 rx_mode
= BNX2X_RX_MODE_ALLMULTI
;
9049 if (bnx2x_set_uc_list(bp
))
9050 rx_mode
= BNX2X_RX_MODE_PROMISC
;
9053 bp
->rx_mode
= rx_mode
;
9054 bnx2x_set_storm_rx_mode(bp
);
9057 /* called with rtnl_lock */
9058 static int bnx2x_mdio_read(struct net_device
*netdev
, int prtad
,
9059 int devad
, u16 addr
)
9061 struct bnx2x
*bp
= netdev_priv(netdev
);
9065 DP(NETIF_MSG_LINK
, "mdio_read: prtad 0x%x, devad 0x%x, addr 0x%x\n",
9066 prtad
, devad
, addr
);
9068 /* The HW expects different devad if CL22 is used */
9069 devad
= (devad
== MDIO_DEVAD_NONE
) ? DEFAULT_PHY_DEV_ADDR
: devad
;
9071 bnx2x_acquire_phy_lock(bp
);
9072 rc
= bnx2x_phy_read(&bp
->link_params
, prtad
, devad
, addr
, &value
);
9073 bnx2x_release_phy_lock(bp
);
9074 DP(NETIF_MSG_LINK
, "mdio_read_val 0x%x rc = 0x%x\n", value
, rc
);
9081 /* called with rtnl_lock */
9082 static int bnx2x_mdio_write(struct net_device
*netdev
, int prtad
, int devad
,
9083 u16 addr
, u16 value
)
9085 struct bnx2x
*bp
= netdev_priv(netdev
);
9088 DP(NETIF_MSG_LINK
, "mdio_write: prtad 0x%x, devad 0x%x, addr 0x%x,"
9089 " value 0x%x\n", prtad
, devad
, addr
, value
);
9091 /* The HW expects different devad if CL22 is used */
9092 devad
= (devad
== MDIO_DEVAD_NONE
) ? DEFAULT_PHY_DEV_ADDR
: devad
;
9094 bnx2x_acquire_phy_lock(bp
);
9095 rc
= bnx2x_phy_write(&bp
->link_params
, prtad
, devad
, addr
, value
);
9096 bnx2x_release_phy_lock(bp
);
9100 /* called with rtnl_lock */
9101 static int bnx2x_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
9103 struct bnx2x
*bp
= netdev_priv(dev
);
9104 struct mii_ioctl_data
*mdio
= if_mii(ifr
);
9106 DP(NETIF_MSG_LINK
, "ioctl: phy id 0x%x, reg 0x%x, val_in 0x%x\n",
9107 mdio
->phy_id
, mdio
->reg_num
, mdio
->val_in
);
9109 if (!netif_running(dev
))
9112 return mdio_mii_ioctl(&bp
->mdio
, mdio
, cmd
);
9115 #ifdef CONFIG_NET_POLL_CONTROLLER
9116 static void poll_bnx2x(struct net_device
*dev
)
9118 struct bnx2x
*bp
= netdev_priv(dev
);
9120 disable_irq(bp
->pdev
->irq
);
9121 bnx2x_interrupt(bp
->pdev
->irq
, dev
);
9122 enable_irq(bp
->pdev
->irq
);
9126 static const struct net_device_ops bnx2x_netdev_ops
= {
9127 .ndo_open
= bnx2x_open
,
9128 .ndo_stop
= bnx2x_close
,
9129 .ndo_start_xmit
= bnx2x_start_xmit
,
9130 .ndo_select_queue
= bnx2x_select_queue
,
9131 .ndo_set_rx_mode
= bnx2x_set_rx_mode
,
9132 .ndo_set_mac_address
= bnx2x_change_mac_addr
,
9133 .ndo_validate_addr
= eth_validate_addr
,
9134 .ndo_do_ioctl
= bnx2x_ioctl
,
9135 .ndo_change_mtu
= bnx2x_change_mtu
,
9136 .ndo_fix_features
= bnx2x_fix_features
,
9137 .ndo_set_features
= bnx2x_set_features
,
9138 .ndo_tx_timeout
= bnx2x_tx_timeout
,
9139 #ifdef CONFIG_NET_POLL_CONTROLLER
9140 .ndo_poll_controller
= poll_bnx2x
,
9144 static int __devinit
bnx2x_init_dev(struct pci_dev
*pdev
,
9145 struct net_device
*dev
)
9150 SET_NETDEV_DEV(dev
, &pdev
->dev
);
9151 bp
= netdev_priv(dev
);
9156 bp
->pf_num
= PCI_FUNC(pdev
->devfn
);
9158 rc
= pci_enable_device(pdev
);
9160 dev_err(&bp
->pdev
->dev
,
9161 "Cannot enable PCI device, aborting\n");
9165 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_MEM
)) {
9166 dev_err(&bp
->pdev
->dev
,
9167 "Cannot find PCI device base address, aborting\n");
9169 goto err_out_disable
;
9172 if (!(pci_resource_flags(pdev
, 2) & IORESOURCE_MEM
)) {
9173 dev_err(&bp
->pdev
->dev
, "Cannot find second PCI device"
9174 " base address, aborting\n");
9176 goto err_out_disable
;
9179 if (atomic_read(&pdev
->enable_cnt
) == 1) {
9180 rc
= pci_request_regions(pdev
, DRV_MODULE_NAME
);
9182 dev_err(&bp
->pdev
->dev
,
9183 "Cannot obtain PCI resources, aborting\n");
9184 goto err_out_disable
;
9187 pci_set_master(pdev
);
9188 pci_save_state(pdev
);
9191 bp
->pm_cap
= pci_find_capability(pdev
, PCI_CAP_ID_PM
);
9192 if (bp
->pm_cap
== 0) {
9193 dev_err(&bp
->pdev
->dev
,
9194 "Cannot find power management capability, aborting\n");
9196 goto err_out_release
;
9199 bp
->pcie_cap
= pci_find_capability(pdev
, PCI_CAP_ID_EXP
);
9200 if (bp
->pcie_cap
== 0) {
9201 dev_err(&bp
->pdev
->dev
,
9202 "Cannot find PCI Express capability, aborting\n");
9204 goto err_out_release
;
9207 if (dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(64)) == 0) {
9208 bp
->flags
|= USING_DAC_FLAG
;
9209 if (dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(64)) != 0) {
9210 dev_err(&bp
->pdev
->dev
, "dma_set_coherent_mask"
9211 " failed, aborting\n");
9213 goto err_out_release
;
9216 } else if (dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32)) != 0) {
9217 dev_err(&bp
->pdev
->dev
,
9218 "System does not support DMA, aborting\n");
9220 goto err_out_release
;
9223 dev
->mem_start
= pci_resource_start(pdev
, 0);
9224 dev
->base_addr
= dev
->mem_start
;
9225 dev
->mem_end
= pci_resource_end(pdev
, 0);
9227 dev
->irq
= pdev
->irq
;
9229 bp
->regview
= pci_ioremap_bar(pdev
, 0);
9231 dev_err(&bp
->pdev
->dev
,
9232 "Cannot map register space, aborting\n");
9234 goto err_out_release
;
9237 bp
->doorbells
= ioremap_nocache(pci_resource_start(pdev
, 2),
9238 min_t(u64
, BNX2X_DB_SIZE(bp
),
9239 pci_resource_len(pdev
, 2)));
9240 if (!bp
->doorbells
) {
9241 dev_err(&bp
->pdev
->dev
,
9242 "Cannot map doorbell space, aborting\n");
9247 bnx2x_set_power_state(bp
, PCI_D0
);
9249 /* clean indirect addresses */
9250 pci_write_config_dword(bp
->pdev
, PCICFG_GRC_ADDRESS
,
9251 PCICFG_VENDOR_ID_OFFSET
);
9252 REG_WR(bp
, PXP2_REG_PGL_ADDR_88_F0
+ BP_PORT(bp
)*16, 0);
9253 REG_WR(bp
, PXP2_REG_PGL_ADDR_8C_F0
+ BP_PORT(bp
)*16, 0);
9254 REG_WR(bp
, PXP2_REG_PGL_ADDR_90_F0
+ BP_PORT(bp
)*16, 0);
9255 REG_WR(bp
, PXP2_REG_PGL_ADDR_94_F0
+ BP_PORT(bp
)*16, 0);
9257 /* Reset the load counter */
9258 bnx2x_clear_load_cnt(bp
);
9260 dev
->watchdog_timeo
= TX_TIMEOUT
;
9262 dev
->netdev_ops
= &bnx2x_netdev_ops
;
9263 bnx2x_set_ethtool_ops(dev
);
9265 dev
->hw_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
|
9266 NETIF_F_TSO
| NETIF_F_TSO_ECN
| NETIF_F_TSO6
|
9267 NETIF_F_RXCSUM
| NETIF_F_LRO
| NETIF_F_HW_VLAN_TX
;
9269 dev
->vlan_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
|
9270 NETIF_F_TSO
| NETIF_F_TSO_ECN
| NETIF_F_TSO6
| NETIF_F_HIGHDMA
;
9272 dev
->features
|= dev
->hw_features
| NETIF_F_HW_VLAN_RX
;
9273 if (bp
->flags
& USING_DAC_FLAG
)
9274 dev
->features
|= NETIF_F_HIGHDMA
;
9276 /* Add Loopback capability to the device */
9277 dev
->hw_features
|= NETIF_F_LOOPBACK
;
9280 dev
->dcbnl_ops
= &bnx2x_dcbnl_ops
;
9283 /* get_port_hwinfo() will set prtad and mmds properly */
9284 bp
->mdio
.prtad
= MDIO_PRTAD_NONE
;
9286 bp
->mdio
.mode_support
= MDIO_SUPPORTS_C45
| MDIO_EMULATE_C22
;
9288 bp
->mdio
.mdio_read
= bnx2x_mdio_read
;
9289 bp
->mdio
.mdio_write
= bnx2x_mdio_write
;
9295 iounmap(bp
->regview
);
9298 if (bp
->doorbells
) {
9299 iounmap(bp
->doorbells
);
9300 bp
->doorbells
= NULL
;
9304 if (atomic_read(&pdev
->enable_cnt
) == 1)
9305 pci_release_regions(pdev
);
9308 pci_disable_device(pdev
);
9309 pci_set_drvdata(pdev
, NULL
);
9315 static void __devinit
bnx2x_get_pcie_width_speed(struct bnx2x
*bp
,
9316 int *width
, int *speed
)
9318 u32 val
= REG_RD(bp
, PCICFG_OFFSET
+ PCICFG_LINK_CONTROL
);
9320 *width
= (val
& PCICFG_LINK_WIDTH
) >> PCICFG_LINK_WIDTH_SHIFT
;
9322 /* return value of 1=2.5GHz 2=5GHz */
9323 *speed
= (val
& PCICFG_LINK_SPEED
) >> PCICFG_LINK_SPEED_SHIFT
;
9326 static int bnx2x_check_firmware(struct bnx2x
*bp
)
9328 const struct firmware
*firmware
= bp
->firmware
;
9329 struct bnx2x_fw_file_hdr
*fw_hdr
;
9330 struct bnx2x_fw_file_section
*sections
;
9331 u32 offset
, len
, num_ops
;
9336 if (firmware
->size
< sizeof(struct bnx2x_fw_file_hdr
))
9339 fw_hdr
= (struct bnx2x_fw_file_hdr
*)firmware
->data
;
9340 sections
= (struct bnx2x_fw_file_section
*)fw_hdr
;
9342 /* Make sure none of the offsets and sizes make us read beyond
9343 * the end of the firmware data */
9344 for (i
= 0; i
< sizeof(*fw_hdr
) / sizeof(*sections
); i
++) {
9345 offset
= be32_to_cpu(sections
[i
].offset
);
9346 len
= be32_to_cpu(sections
[i
].len
);
9347 if (offset
+ len
> firmware
->size
) {
9348 dev_err(&bp
->pdev
->dev
,
9349 "Section %d length is out of bounds\n", i
);
9354 /* Likewise for the init_ops offsets */
9355 offset
= be32_to_cpu(fw_hdr
->init_ops_offsets
.offset
);
9356 ops_offsets
= (u16
*)(firmware
->data
+ offset
);
9357 num_ops
= be32_to_cpu(fw_hdr
->init_ops
.len
) / sizeof(struct raw_op
);
9359 for (i
= 0; i
< be32_to_cpu(fw_hdr
->init_ops_offsets
.len
) / 2; i
++) {
9360 if (be16_to_cpu(ops_offsets
[i
]) > num_ops
) {
9361 dev_err(&bp
->pdev
->dev
,
9362 "Section offset %d is out of bounds\n", i
);
9367 /* Check FW version */
9368 offset
= be32_to_cpu(fw_hdr
->fw_version
.offset
);
9369 fw_ver
= firmware
->data
+ offset
;
9370 if ((fw_ver
[0] != BCM_5710_FW_MAJOR_VERSION
) ||
9371 (fw_ver
[1] != BCM_5710_FW_MINOR_VERSION
) ||
9372 (fw_ver
[2] != BCM_5710_FW_REVISION_VERSION
) ||
9373 (fw_ver
[3] != BCM_5710_FW_ENGINEERING_VERSION
)) {
9374 dev_err(&bp
->pdev
->dev
,
9375 "Bad FW version:%d.%d.%d.%d. Should be %d.%d.%d.%d\n",
9376 fw_ver
[0], fw_ver
[1], fw_ver
[2],
9377 fw_ver
[3], BCM_5710_FW_MAJOR_VERSION
,
9378 BCM_5710_FW_MINOR_VERSION
,
9379 BCM_5710_FW_REVISION_VERSION
,
9380 BCM_5710_FW_ENGINEERING_VERSION
);
9387 static inline void be32_to_cpu_n(const u8
*_source
, u8
*_target
, u32 n
)
9389 const __be32
*source
= (const __be32
*)_source
;
9390 u32
*target
= (u32
*)_target
;
9393 for (i
= 0; i
< n
/4; i
++)
9394 target
[i
] = be32_to_cpu(source
[i
]);
9398 Ops array is stored in the following format:
9399 {op(8bit), offset(24bit, big endian), data(32bit, big endian)}
9401 static inline void bnx2x_prep_ops(const u8
*_source
, u8
*_target
, u32 n
)
9403 const __be32
*source
= (const __be32
*)_source
;
9404 struct raw_op
*target
= (struct raw_op
*)_target
;
9407 for (i
= 0, j
= 0; i
< n
/8; i
++, j
+= 2) {
9408 tmp
= be32_to_cpu(source
[j
]);
9409 target
[i
].op
= (tmp
>> 24) & 0xff;
9410 target
[i
].offset
= tmp
& 0xffffff;
9411 target
[i
].raw_data
= be32_to_cpu(source
[j
+ 1]);
9416 * IRO array is stored in the following format:
9417 * {base(24bit), m1(16bit), m2(16bit), m3(16bit), size(16bit) }
9419 static inline void bnx2x_prep_iro(const u8
*_source
, u8
*_target
, u32 n
)
9421 const __be32
*source
= (const __be32
*)_source
;
9422 struct iro
*target
= (struct iro
*)_target
;
9425 for (i
= 0, j
= 0; i
< n
/sizeof(struct iro
); i
++) {
9426 target
[i
].base
= be32_to_cpu(source
[j
]);
9428 tmp
= be32_to_cpu(source
[j
]);
9429 target
[i
].m1
= (tmp
>> 16) & 0xffff;
9430 target
[i
].m2
= tmp
& 0xffff;
9432 tmp
= be32_to_cpu(source
[j
]);
9433 target
[i
].m3
= (tmp
>> 16) & 0xffff;
9434 target
[i
].size
= tmp
& 0xffff;
9439 static inline void be16_to_cpu_n(const u8
*_source
, u8
*_target
, u32 n
)
9441 const __be16
*source
= (const __be16
*)_source
;
9442 u16
*target
= (u16
*)_target
;
9445 for (i
= 0; i
< n
/2; i
++)
9446 target
[i
] = be16_to_cpu(source
[i
]);
9449 #define BNX2X_ALLOC_AND_SET(arr, lbl, func) \
9451 u32 len = be32_to_cpu(fw_hdr->arr.len); \
9452 bp->arr = kmalloc(len, GFP_KERNEL); \
9454 pr_err("Failed to allocate %d bytes for "#arr"\n", len); \
9457 func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
9458 (u8 *)bp->arr, len); \
9461 int bnx2x_init_firmware(struct bnx2x
*bp
)
9463 const char *fw_file_name
;
9464 struct bnx2x_fw_file_hdr
*fw_hdr
;
9468 fw_file_name
= FW_FILE_NAME_E1
;
9469 else if (CHIP_IS_E1H(bp
))
9470 fw_file_name
= FW_FILE_NAME_E1H
;
9471 else if (CHIP_IS_E2(bp
))
9472 fw_file_name
= FW_FILE_NAME_E2
;
9474 BNX2X_ERR("Unsupported chip revision\n");
9478 BNX2X_DEV_INFO("Loading %s\n", fw_file_name
);
9480 rc
= request_firmware(&bp
->firmware
, fw_file_name
, &bp
->pdev
->dev
);
9482 BNX2X_ERR("Can't load firmware file %s\n", fw_file_name
);
9483 goto request_firmware_exit
;
9486 rc
= bnx2x_check_firmware(bp
);
9488 BNX2X_ERR("Corrupt firmware file %s\n", fw_file_name
);
9489 goto request_firmware_exit
;
9492 fw_hdr
= (struct bnx2x_fw_file_hdr
*)bp
->firmware
->data
;
9494 /* Initialize the pointers to the init arrays */
9496 BNX2X_ALLOC_AND_SET(init_data
, request_firmware_exit
, be32_to_cpu_n
);
9499 BNX2X_ALLOC_AND_SET(init_ops
, init_ops_alloc_err
, bnx2x_prep_ops
);
9502 BNX2X_ALLOC_AND_SET(init_ops_offsets
, init_offsets_alloc_err
,
9505 /* STORMs firmware */
9506 INIT_TSEM_INT_TABLE_DATA(bp
) = bp
->firmware
->data
+
9507 be32_to_cpu(fw_hdr
->tsem_int_table_data
.offset
);
9508 INIT_TSEM_PRAM_DATA(bp
) = bp
->firmware
->data
+
9509 be32_to_cpu(fw_hdr
->tsem_pram_data
.offset
);
9510 INIT_USEM_INT_TABLE_DATA(bp
) = bp
->firmware
->data
+
9511 be32_to_cpu(fw_hdr
->usem_int_table_data
.offset
);
9512 INIT_USEM_PRAM_DATA(bp
) = bp
->firmware
->data
+
9513 be32_to_cpu(fw_hdr
->usem_pram_data
.offset
);
9514 INIT_XSEM_INT_TABLE_DATA(bp
) = bp
->firmware
->data
+
9515 be32_to_cpu(fw_hdr
->xsem_int_table_data
.offset
);
9516 INIT_XSEM_PRAM_DATA(bp
) = bp
->firmware
->data
+
9517 be32_to_cpu(fw_hdr
->xsem_pram_data
.offset
);
9518 INIT_CSEM_INT_TABLE_DATA(bp
) = bp
->firmware
->data
+
9519 be32_to_cpu(fw_hdr
->csem_int_table_data
.offset
);
9520 INIT_CSEM_PRAM_DATA(bp
) = bp
->firmware
->data
+
9521 be32_to_cpu(fw_hdr
->csem_pram_data
.offset
);
9523 BNX2X_ALLOC_AND_SET(iro_arr
, iro_alloc_err
, bnx2x_prep_iro
);
9528 kfree(bp
->init_ops_offsets
);
9529 init_offsets_alloc_err
:
9530 kfree(bp
->init_ops
);
9532 kfree(bp
->init_data
);
9533 request_firmware_exit
:
9534 release_firmware(bp
->firmware
);
9539 static inline int bnx2x_set_qm_cid_count(struct bnx2x
*bp
, int l2_cid_count
)
9541 int cid_count
= L2_FP_COUNT(l2_cid_count
);
9544 cid_count
+= CNIC_CID_MAX
;
9546 return roundup(cid_count
, QM_CID_ROUND
);
9549 static int __devinit
bnx2x_init_one(struct pci_dev
*pdev
,
9550 const struct pci_device_id
*ent
)
9552 struct net_device
*dev
= NULL
;
9554 int pcie_width
, pcie_speed
;
9557 switch (ent
->driver_data
) {
9561 cid_count
= FP_SB_MAX_E1x
;
9566 cid_count
= FP_SB_MAX_E2
;
9570 pr_err("Unknown board_type (%ld), aborting\n",
9575 cid_count
+= NONE_ETH_CONTEXT_USE
+ CNIC_CONTEXT_USE
;
9577 /* dev zeroed in init_etherdev */
9578 dev
= alloc_etherdev_mq(sizeof(*bp
), cid_count
);
9580 dev_err(&pdev
->dev
, "Cannot allocate net device\n");
9584 bp
= netdev_priv(dev
);
9585 bp
->msg_enable
= debug
;
9587 pci_set_drvdata(pdev
, dev
);
9589 bp
->l2_cid_count
= cid_count
;
9591 rc
= bnx2x_init_dev(pdev
, dev
);
9597 rc
= bnx2x_init_bp(bp
);
9601 /* calc qm_cid_count */
9602 bp
->qm_cid_count
= bnx2x_set_qm_cid_count(bp
, cid_count
);
9605 /* disable FCOE L2 queue for E1x*/
9606 if (CHIP_IS_E1x(bp
))
9607 bp
->flags
|= NO_FCOE_FLAG
;
9611 /* Configure interrupt mode: try to enable MSI-X/MSI if
9612 * needed, set bp->num_queues appropriately.
9614 bnx2x_set_int_mode(bp
);
9616 /* Add all NAPI objects */
9617 bnx2x_add_all_napi(bp
);
9619 rc
= register_netdev(dev
);
9621 dev_err(&pdev
->dev
, "Cannot register net device\n");
9627 /* Add storage MAC address */
9629 dev_addr_add(bp
->dev
, bp
->fip_mac
, NETDEV_HW_ADDR_T_SAN
);
9634 bnx2x_get_pcie_width_speed(bp
, &pcie_width
, &pcie_speed
);
9636 netdev_info(dev
, "%s (%c%d) PCI-E x%d %s found at mem %lx,"
9637 " IRQ %d, ", board_info
[ent
->driver_data
].name
,
9638 (CHIP_REV(bp
) >> 12) + 'A', (CHIP_METAL(bp
) >> 4),
9640 ((!CHIP_IS_E2(bp
) && pcie_speed
== 2) ||
9641 (CHIP_IS_E2(bp
) && pcie_speed
== 1)) ?
9642 "5GHz (Gen2)" : "2.5GHz",
9643 dev
->base_addr
, bp
->pdev
->irq
);
9644 pr_cont("node addr %pM\n", dev
->dev_addr
);
9650 iounmap(bp
->regview
);
9653 iounmap(bp
->doorbells
);
9657 if (atomic_read(&pdev
->enable_cnt
) == 1)
9658 pci_release_regions(pdev
);
9660 pci_disable_device(pdev
);
9661 pci_set_drvdata(pdev
, NULL
);
9666 static void __devexit
bnx2x_remove_one(struct pci_dev
*pdev
)
9668 struct net_device
*dev
= pci_get_drvdata(pdev
);
9672 dev_err(&pdev
->dev
, "BAD net device from bnx2x_init_one\n");
9675 bp
= netdev_priv(dev
);
9678 /* Delete storage MAC address */
9681 dev_addr_del(bp
->dev
, bp
->fip_mac
, NETDEV_HW_ADDR_T_SAN
);
9687 /* Delete app tlvs from dcbnl */
9688 bnx2x_dcbnl_update_applist(bp
, true);
9691 unregister_netdev(dev
);
9693 /* Delete all NAPI objects */
9694 bnx2x_del_all_napi(bp
);
9696 /* Power on: we can't let PCI layer write to us while we are in D3 */
9697 bnx2x_set_power_state(bp
, PCI_D0
);
9699 /* Disable MSI/MSI-X */
9700 bnx2x_disable_msi(bp
);
9703 bnx2x_set_power_state(bp
, PCI_D3hot
);
9705 /* Make sure RESET task is not scheduled before continuing */
9706 cancel_delayed_work_sync(&bp
->reset_task
);
9709 iounmap(bp
->regview
);
9712 iounmap(bp
->doorbells
);
9714 bnx2x_free_mem_bp(bp
);
9718 if (atomic_read(&pdev
->enable_cnt
) == 1)
9719 pci_release_regions(pdev
);
9721 pci_disable_device(pdev
);
9722 pci_set_drvdata(pdev
, NULL
);
9725 static int bnx2x_eeh_nic_unload(struct bnx2x
*bp
)
9729 bp
->state
= BNX2X_STATE_ERROR
;
9731 bp
->rx_mode
= BNX2X_RX_MODE_NONE
;
9733 bnx2x_netif_stop(bp
, 0);
9734 netif_carrier_off(bp
->dev
);
9736 del_timer_sync(&bp
->timer
);
9737 bp
->stats_state
= STATS_STATE_DISABLED
;
9738 DP(BNX2X_MSG_STATS
, "stats_state - DISABLED\n");
9743 /* Free SKBs, SGEs, TPA pool and driver internals */
9744 bnx2x_free_skbs(bp
);
9746 for_each_rx_queue(bp
, i
)
9747 bnx2x_free_rx_sge_range(bp
, bp
->fp
+ i
, NUM_RX_SGE
);
9751 bp
->state
= BNX2X_STATE_CLOSED
;
9756 static void bnx2x_eeh_recover(struct bnx2x
*bp
)
9760 mutex_init(&bp
->port
.phy_mutex
);
9762 bp
->common
.shmem_base
= REG_RD(bp
, MISC_REG_SHARED_MEM_ADDR
);
9763 bp
->link_params
.shmem_base
= bp
->common
.shmem_base
;
9764 BNX2X_DEV_INFO("shmem offset is 0x%x\n", bp
->common
.shmem_base
);
9766 if (!bp
->common
.shmem_base
||
9767 (bp
->common
.shmem_base
< 0xA0000) ||
9768 (bp
->common
.shmem_base
>= 0xC0000)) {
9769 BNX2X_DEV_INFO("MCP not active\n");
9770 bp
->flags
|= NO_MCP_FLAG
;
9774 val
= SHMEM_RD(bp
, validity_map
[BP_PORT(bp
)]);
9775 if ((val
& (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
9776 != (SHR_MEM_VALIDITY_DEV_INFO
| SHR_MEM_VALIDITY_MB
))
9777 BNX2X_ERR("BAD MCP validity signature\n");
9779 if (!BP_NOMCP(bp
)) {
9781 (SHMEM_RD(bp
, func_mb
[BP_FW_MB_IDX(bp
)].drv_mb_header
) &
9782 DRV_MSG_SEQ_NUMBER_MASK
);
9783 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp
->fw_seq
);
9788 * bnx2x_io_error_detected - called when PCI error is detected
9789 * @pdev: Pointer to PCI device
9790 * @state: The current pci connection state
9792 * This function is called after a PCI bus error affecting
9793 * this device has been detected.
9795 static pci_ers_result_t
bnx2x_io_error_detected(struct pci_dev
*pdev
,
9796 pci_channel_state_t state
)
9798 struct net_device
*dev
= pci_get_drvdata(pdev
);
9799 struct bnx2x
*bp
= netdev_priv(dev
);
9803 netif_device_detach(dev
);
9805 if (state
== pci_channel_io_perm_failure
) {
9807 return PCI_ERS_RESULT_DISCONNECT
;
9810 if (netif_running(dev
))
9811 bnx2x_eeh_nic_unload(bp
);
9813 pci_disable_device(pdev
);
9817 /* Request a slot reset */
9818 return PCI_ERS_RESULT_NEED_RESET
;
9822 * bnx2x_io_slot_reset - called after the PCI bus has been reset
9823 * @pdev: Pointer to PCI device
9825 * Restart the card from scratch, as if from a cold-boot.
9827 static pci_ers_result_t
bnx2x_io_slot_reset(struct pci_dev
*pdev
)
9829 struct net_device
*dev
= pci_get_drvdata(pdev
);
9830 struct bnx2x
*bp
= netdev_priv(dev
);
9834 if (pci_enable_device(pdev
)) {
9836 "Cannot re-enable PCI device after reset\n");
9838 return PCI_ERS_RESULT_DISCONNECT
;
9841 pci_set_master(pdev
);
9842 pci_restore_state(pdev
);
9844 if (netif_running(dev
))
9845 bnx2x_set_power_state(bp
, PCI_D0
);
9849 return PCI_ERS_RESULT_RECOVERED
;
9853 * bnx2x_io_resume - called when traffic can start flowing again
9854 * @pdev: Pointer to PCI device
9856 * This callback is called when the error recovery driver tells us that
9857 * its OK to resume normal operation.
9859 static void bnx2x_io_resume(struct pci_dev
*pdev
)
9861 struct net_device
*dev
= pci_get_drvdata(pdev
);
9862 struct bnx2x
*bp
= netdev_priv(dev
);
9864 if (bp
->recovery_state
!= BNX2X_RECOVERY_DONE
) {
9865 printk(KERN_ERR
"Handling parity error recovery. "
9866 "Try again later\n");
9872 bnx2x_eeh_recover(bp
);
9874 if (netif_running(dev
))
9875 bnx2x_nic_load(bp
, LOAD_NORMAL
);
9877 netif_device_attach(dev
);
9882 static struct pci_error_handlers bnx2x_err_handler
= {
9883 .error_detected
= bnx2x_io_error_detected
,
9884 .slot_reset
= bnx2x_io_slot_reset
,
9885 .resume
= bnx2x_io_resume
,
9888 static struct pci_driver bnx2x_pci_driver
= {
9889 .name
= DRV_MODULE_NAME
,
9890 .id_table
= bnx2x_pci_tbl
,
9891 .probe
= bnx2x_init_one
,
9892 .remove
= __devexit_p(bnx2x_remove_one
),
9893 .suspend
= bnx2x_suspend
,
9894 .resume
= bnx2x_resume
,
9895 .err_handler
= &bnx2x_err_handler
,
9898 static int __init
bnx2x_init(void)
9902 pr_info("%s", version
);
9904 bnx2x_wq
= create_singlethread_workqueue("bnx2x");
9905 if (bnx2x_wq
== NULL
) {
9906 pr_err("Cannot create workqueue\n");
9910 ret
= pci_register_driver(&bnx2x_pci_driver
);
9912 pr_err("Cannot register driver\n");
9913 destroy_workqueue(bnx2x_wq
);
9918 static void __exit
bnx2x_cleanup(void)
9920 pci_unregister_driver(&bnx2x_pci_driver
);
9922 destroy_workqueue(bnx2x_wq
);
9925 module_init(bnx2x_init
);
9926 module_exit(bnx2x_cleanup
);
9930 /* count denotes the number of new completions we have seen */
9931 static void bnx2x_cnic_sp_post(struct bnx2x
*bp
, int count
)
9933 struct eth_spe
*spe
;
9935 #ifdef BNX2X_STOP_ON_ERROR
9936 if (unlikely(bp
->panic
))
9940 spin_lock_bh(&bp
->spq_lock
);
9941 BUG_ON(bp
->cnic_spq_pending
< count
);
9942 bp
->cnic_spq_pending
-= count
;
9945 for (; bp
->cnic_kwq_pending
; bp
->cnic_kwq_pending
--) {
9946 u16 type
= (le16_to_cpu(bp
->cnic_kwq_cons
->hdr
.type
)
9947 & SPE_HDR_CONN_TYPE
) >>
9948 SPE_HDR_CONN_TYPE_SHIFT
;
9950 /* Set validation for iSCSI L2 client before sending SETUP
9953 if (type
== ETH_CONNECTION_TYPE
) {
9954 u8 cmd
= (le32_to_cpu(bp
->cnic_kwq_cons
->
9955 hdr
.conn_and_cmd_data
) >>
9956 SPE_HDR_CMD_ID_SHIFT
) & 0xff;
9958 if (cmd
== RAMROD_CMD_ID_ETH_CLIENT_SETUP
)
9959 bnx2x_set_ctx_validation(&bp
->context
.
9960 vcxt
[BNX2X_ISCSI_ETH_CID
].eth
,
9961 HW_CID(bp
, BNX2X_ISCSI_ETH_CID
));
9964 /* There may be not more than 8 L2 and not more than 8 L5 SPEs
9965 * We also check that the number of outstanding
9966 * COMMON ramrods is not more than the EQ and SPQ can
9969 if (type
== ETH_CONNECTION_TYPE
) {
9970 if (!atomic_read(&bp
->cq_spq_left
))
9973 atomic_dec(&bp
->cq_spq_left
);
9974 } else if (type
== NONE_CONNECTION_TYPE
) {
9975 if (!atomic_read(&bp
->eq_spq_left
))
9978 atomic_dec(&bp
->eq_spq_left
);
9979 } else if ((type
== ISCSI_CONNECTION_TYPE
) ||
9980 (type
== FCOE_CONNECTION_TYPE
)) {
9981 if (bp
->cnic_spq_pending
>=
9982 bp
->cnic_eth_dev
.max_kwqe_pending
)
9985 bp
->cnic_spq_pending
++;
9987 BNX2X_ERR("Unknown SPE type: %d\n", type
);
9992 spe
= bnx2x_sp_get_next(bp
);
9993 *spe
= *bp
->cnic_kwq_cons
;
9995 DP(NETIF_MSG_TIMER
, "pending on SPQ %d, on KWQ %d count %d\n",
9996 bp
->cnic_spq_pending
, bp
->cnic_kwq_pending
, count
);
9998 if (bp
->cnic_kwq_cons
== bp
->cnic_kwq_last
)
9999 bp
->cnic_kwq_cons
= bp
->cnic_kwq
;
10001 bp
->cnic_kwq_cons
++;
10003 bnx2x_sp_prod_update(bp
);
10004 spin_unlock_bh(&bp
->spq_lock
);
10007 static int bnx2x_cnic_sp_queue(struct net_device
*dev
,
10008 struct kwqe_16
*kwqes
[], u32 count
)
10010 struct bnx2x
*bp
= netdev_priv(dev
);
10013 #ifdef BNX2X_STOP_ON_ERROR
10014 if (unlikely(bp
->panic
))
10018 spin_lock_bh(&bp
->spq_lock
);
10020 for (i
= 0; i
< count
; i
++) {
10021 struct eth_spe
*spe
= (struct eth_spe
*)kwqes
[i
];
10023 if (bp
->cnic_kwq_pending
== MAX_SP_DESC_CNT
)
10026 *bp
->cnic_kwq_prod
= *spe
;
10028 bp
->cnic_kwq_pending
++;
10030 DP(NETIF_MSG_TIMER
, "L5 SPQE %x %x %x:%x pos %d\n",
10031 spe
->hdr
.conn_and_cmd_data
, spe
->hdr
.type
,
10032 spe
->data
.update_data_addr
.hi
,
10033 spe
->data
.update_data_addr
.lo
,
10034 bp
->cnic_kwq_pending
);
10036 if (bp
->cnic_kwq_prod
== bp
->cnic_kwq_last
)
10037 bp
->cnic_kwq_prod
= bp
->cnic_kwq
;
10039 bp
->cnic_kwq_prod
++;
10042 spin_unlock_bh(&bp
->spq_lock
);
10044 if (bp
->cnic_spq_pending
< bp
->cnic_eth_dev
.max_kwqe_pending
)
10045 bnx2x_cnic_sp_post(bp
, 0);
10050 static int bnx2x_cnic_ctl_send(struct bnx2x
*bp
, struct cnic_ctl_info
*ctl
)
10052 struct cnic_ops
*c_ops
;
10055 mutex_lock(&bp
->cnic_mutex
);
10056 c_ops
= rcu_dereference_protected(bp
->cnic_ops
,
10057 lockdep_is_held(&bp
->cnic_mutex
));
10059 rc
= c_ops
->cnic_ctl(bp
->cnic_data
, ctl
);
10060 mutex_unlock(&bp
->cnic_mutex
);
10065 static int bnx2x_cnic_ctl_send_bh(struct bnx2x
*bp
, struct cnic_ctl_info
*ctl
)
10067 struct cnic_ops
*c_ops
;
10071 c_ops
= rcu_dereference(bp
->cnic_ops
);
10073 rc
= c_ops
->cnic_ctl(bp
->cnic_data
, ctl
);
10080 * for commands that have no data
10082 int bnx2x_cnic_notify(struct bnx2x
*bp
, int cmd
)
10084 struct cnic_ctl_info ctl
= {0};
10088 return bnx2x_cnic_ctl_send(bp
, &ctl
);
10091 static void bnx2x_cnic_cfc_comp(struct bnx2x
*bp
, int cid
)
10093 struct cnic_ctl_info ctl
;
10095 /* first we tell CNIC and only then we count this as a completion */
10096 ctl
.cmd
= CNIC_CTL_COMPLETION_CMD
;
10097 ctl
.data
.comp
.cid
= cid
;
10099 bnx2x_cnic_ctl_send_bh(bp
, &ctl
);
10100 bnx2x_cnic_sp_post(bp
, 0);
10103 static int bnx2x_drv_ctl(struct net_device
*dev
, struct drv_ctl_info
*ctl
)
10105 struct bnx2x
*bp
= netdev_priv(dev
);
10108 switch (ctl
->cmd
) {
10109 case DRV_CTL_CTXTBL_WR_CMD
: {
10110 u32 index
= ctl
->data
.io
.offset
;
10111 dma_addr_t addr
= ctl
->data
.io
.dma_addr
;
10113 bnx2x_ilt_wr(bp
, index
, addr
);
10117 case DRV_CTL_RET_L5_SPQ_CREDIT_CMD
: {
10118 int count
= ctl
->data
.credit
.credit_count
;
10120 bnx2x_cnic_sp_post(bp
, count
);
10124 /* rtnl_lock is held. */
10125 case DRV_CTL_START_L2_CMD
: {
10126 u32 cli
= ctl
->data
.ring
.client_id
;
10128 /* Clear FCoE FIP and ALL ENODE MACs addresses first */
10129 bnx2x_del_fcoe_eth_macs(bp
);
10131 /* Set iSCSI MAC address */
10132 bnx2x_set_iscsi_eth_mac_addr(bp
, 1);
10137 /* Start accepting on iSCSI L2 ring. Accept all multicasts
10138 * because it's the only way for UIO Client to accept
10139 * multicasts (in non-promiscuous mode only one Client per
10140 * function will receive multicast packets (leading in our
10143 bnx2x_rxq_set_mac_filters(bp
, cli
,
10144 BNX2X_ACCEPT_UNICAST
|
10145 BNX2X_ACCEPT_BROADCAST
|
10146 BNX2X_ACCEPT_ALL_MULTICAST
);
10147 storm_memset_mac_filters(bp
, &bp
->mac_filters
, BP_FUNC(bp
));
10152 /* rtnl_lock is held. */
10153 case DRV_CTL_STOP_L2_CMD
: {
10154 u32 cli
= ctl
->data
.ring
.client_id
;
10156 /* Stop accepting on iSCSI L2 ring */
10157 bnx2x_rxq_set_mac_filters(bp
, cli
, BNX2X_ACCEPT_NONE
);
10158 storm_memset_mac_filters(bp
, &bp
->mac_filters
, BP_FUNC(bp
));
10163 /* Unset iSCSI L2 MAC */
10164 bnx2x_set_iscsi_eth_mac_addr(bp
, 0);
10167 case DRV_CTL_RET_L2_SPQ_CREDIT_CMD
: {
10168 int count
= ctl
->data
.credit
.credit_count
;
10170 smp_mb__before_atomic_inc();
10171 atomic_add(count
, &bp
->cq_spq_left
);
10172 smp_mb__after_atomic_inc();
10176 case DRV_CTL_ISCSI_STOPPED_CMD
: {
10177 bnx2x_dcbx_set_params(bp
, BNX2X_DCBX_STATE_ISCSI_STOPPED
);
10182 BNX2X_ERR("unknown command %x\n", ctl
->cmd
);
10189 void bnx2x_setup_cnic_irq_info(struct bnx2x
*bp
)
10191 struct cnic_eth_dev
*cp
= &bp
->cnic_eth_dev
;
10193 if (bp
->flags
& USING_MSIX_FLAG
) {
10194 cp
->drv_state
|= CNIC_DRV_STATE_USING_MSIX
;
10195 cp
->irq_arr
[0].irq_flags
|= CNIC_IRQ_FL_MSIX
;
10196 cp
->irq_arr
[0].vector
= bp
->msix_table
[1].vector
;
10198 cp
->drv_state
&= ~CNIC_DRV_STATE_USING_MSIX
;
10199 cp
->irq_arr
[0].irq_flags
&= ~CNIC_IRQ_FL_MSIX
;
10201 if (CHIP_IS_E2(bp
))
10202 cp
->irq_arr
[0].status_blk
= (void *)bp
->cnic_sb
.e2_sb
;
10204 cp
->irq_arr
[0].status_blk
= (void *)bp
->cnic_sb
.e1x_sb
;
10206 cp
->irq_arr
[0].status_blk_num
= CNIC_SB_ID(bp
);
10207 cp
->irq_arr
[0].status_blk_num2
= CNIC_IGU_SB_ID(bp
);
10208 cp
->irq_arr
[1].status_blk
= bp
->def_status_blk
;
10209 cp
->irq_arr
[1].status_blk_num
= DEF_SB_ID
;
10210 cp
->irq_arr
[1].status_blk_num2
= DEF_SB_IGU_ID
;
10215 static int bnx2x_register_cnic(struct net_device
*dev
, struct cnic_ops
*ops
,
10218 struct bnx2x
*bp
= netdev_priv(dev
);
10219 struct cnic_eth_dev
*cp
= &bp
->cnic_eth_dev
;
10224 if (atomic_read(&bp
->intr_sem
) != 0)
10227 bp
->cnic_kwq
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
10231 bp
->cnic_kwq_cons
= bp
->cnic_kwq
;
10232 bp
->cnic_kwq_prod
= bp
->cnic_kwq
;
10233 bp
->cnic_kwq_last
= bp
->cnic_kwq
+ MAX_SP_DESC_CNT
;
10235 bp
->cnic_spq_pending
= 0;
10236 bp
->cnic_kwq_pending
= 0;
10238 bp
->cnic_data
= data
;
10241 cp
->drv_state
= CNIC_DRV_STATE_REGD
;
10242 cp
->iro_arr
= bp
->iro_arr
;
10244 bnx2x_setup_cnic_irq_info(bp
);
10246 rcu_assign_pointer(bp
->cnic_ops
, ops
);
10251 static int bnx2x_unregister_cnic(struct net_device
*dev
)
10253 struct bnx2x
*bp
= netdev_priv(dev
);
10254 struct cnic_eth_dev
*cp
= &bp
->cnic_eth_dev
;
10256 mutex_lock(&bp
->cnic_mutex
);
10258 rcu_assign_pointer(bp
->cnic_ops
, NULL
);
10259 mutex_unlock(&bp
->cnic_mutex
);
10261 kfree(bp
->cnic_kwq
);
10262 bp
->cnic_kwq
= NULL
;
10267 struct cnic_eth_dev
*bnx2x_cnic_probe(struct net_device
*dev
)
10269 struct bnx2x
*bp
= netdev_priv(dev
);
10270 struct cnic_eth_dev
*cp
= &bp
->cnic_eth_dev
;
10272 /* If both iSCSI and FCoE are disabled - return NULL in
10273 * order to indicate CNIC that it should not try to work
10274 * with this device.
10276 if (NO_ISCSI(bp
) && NO_FCOE(bp
))
10279 cp
->drv_owner
= THIS_MODULE
;
10280 cp
->chip_id
= CHIP_ID(bp
);
10281 cp
->pdev
= bp
->pdev
;
10282 cp
->io_base
= bp
->regview
;
10283 cp
->io_base2
= bp
->doorbells
;
10284 cp
->max_kwqe_pending
= 8;
10285 cp
->ctx_blk_size
= CDU_ILT_PAGE_SZ
;
10286 cp
->ctx_tbl_offset
= FUNC_ILT_BASE(BP_FUNC(bp
)) +
10287 bnx2x_cid_ilt_lines(bp
);
10288 cp
->ctx_tbl_len
= CNIC_ILT_LINES
;
10289 cp
->starting_cid
= bnx2x_cid_ilt_lines(bp
) * ILT_PAGE_CIDS
;
10290 cp
->drv_submit_kwqes_16
= bnx2x_cnic_sp_queue
;
10291 cp
->drv_ctl
= bnx2x_drv_ctl
;
10292 cp
->drv_register_cnic
= bnx2x_register_cnic
;
10293 cp
->drv_unregister_cnic
= bnx2x_unregister_cnic
;
10294 cp
->fcoe_init_cid
= BNX2X_FCOE_ETH_CID
;
10295 cp
->iscsi_l2_client_id
= BNX2X_ISCSI_ETH_CL_ID
+
10296 BP_E1HVN(bp
) * NONE_ETH_CONTEXT_USE
;
10297 cp
->iscsi_l2_cid
= BNX2X_ISCSI_ETH_CID
;
10299 if (NO_ISCSI_OOO(bp
))
10300 cp
->drv_state
|= CNIC_DRV_STATE_NO_ISCSI_OOO
;
10303 cp
->drv_state
|= CNIC_DRV_STATE_NO_ISCSI
;
10306 cp
->drv_state
|= CNIC_DRV_STATE_NO_FCOE
;
10308 DP(BNX2X_MSG_SP
, "page_size %d, tbl_offset %d, tbl_lines %d, "
10309 "starting cid %d\n",
10311 cp
->ctx_tbl_offset
,
10316 EXPORT_SYMBOL(bnx2x_cnic_probe
);
10318 #endif /* BCM_CNIC */