]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
net: phy: smsc: force all capable mode if the phy is started in powerdown mode
[thirdparty/linux.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_main.c
CommitLineData
34f80b04 1/* bnx2x_main.c: Broadcom Everest network driver.
a2fbb9ea 2 *
85b26ea1 3 * Copyright (c) 2007-2012 Broadcom Corporation
a2fbb9ea
ET
4 *
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.
8 *
24e3fcef
EG
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
a2fbb9ea
ET
11 * Based on code from Michael Chan's bnx2 driver
12 * UDP CSUM errata workaround by Arik Gendelman
ca00392c 13 * Slowpath and fastpath rework by Vladislav Zolotarov
c14423fe 14 * Statistics and Link management by Yitchak Gertner
a2fbb9ea
ET
15 *
16 */
17
f1deab50
JP
18#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
a2fbb9ea
ET
20#include <linux/module.h>
21#include <linux/moduleparam.h>
22#include <linux/kernel.h>
23#include <linux/device.h> /* for dev_info() */
24#include <linux/timer.h>
25#include <linux/errno.h>
26#include <linux/ioport.h>
27#include <linux/slab.h>
a2fbb9ea
ET
28#include <linux/interrupt.h>
29#include <linux/pci.h>
30#include <linux/init.h>
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/dma-mapping.h>
35#include <linux/bitops.h>
36#include <linux/irq.h>
37#include <linux/delay.h>
38#include <asm/byteorder.h>
39#include <linux/time.h>
40#include <linux/ethtool.h>
41#include <linux/mii.h>
0c6671b0 42#include <linux/if_vlan.h>
a2fbb9ea 43#include <net/ip.h>
619c5cb6 44#include <net/ipv6.h>
a2fbb9ea
ET
45#include <net/tcp.h>
46#include <net/checksum.h>
34f80b04 47#include <net/ip6_checksum.h>
a2fbb9ea
ET
48#include <linux/workqueue.h>
49#include <linux/crc32.h>
34f80b04 50#include <linux/crc32c.h>
a2fbb9ea
ET
51#include <linux/prefetch.h>
52#include <linux/zlib.h>
a2fbb9ea 53#include <linux/io.h>
452427b0 54#include <linux/semaphore.h>
45229b42 55#include <linux/stringify.h>
7ab24bfd 56#include <linux/vmalloc.h>
a2fbb9ea 57
a2fbb9ea
ET
58#include "bnx2x.h"
59#include "bnx2x_init.h"
94a78b79 60#include "bnx2x_init_ops.h"
9f6c9258 61#include "bnx2x_cmn.h"
e4901dde 62#include "bnx2x_dcb.h"
042181f5 63#include "bnx2x_sp.h"
a2fbb9ea 64
94a78b79
VZ
65#include <linux/firmware.h>
66#include "bnx2x_fw_file_hdr.h"
67/* FW files */
45229b42
BH
68#define FW_FILE_VERSION \
69 __stringify(BCM_5710_FW_MAJOR_VERSION) "." \
70 __stringify(BCM_5710_FW_MINOR_VERSION) "." \
71 __stringify(BCM_5710_FW_REVISION_VERSION) "." \
72 __stringify(BCM_5710_FW_ENGINEERING_VERSION)
560131f3
DK
73#define FW_FILE_NAME_E1 "bnx2x/bnx2x-e1-" FW_FILE_VERSION ".fw"
74#define FW_FILE_NAME_E1H "bnx2x/bnx2x-e1h-" FW_FILE_VERSION ".fw"
f2e0899f 75#define FW_FILE_NAME_E2 "bnx2x/bnx2x-e2-" FW_FILE_VERSION ".fw"
94a78b79 76
2e499d3c
BW
77#define MAC_LEADING_ZERO_CNT (ALIGN(ETH_ALEN, sizeof(u32)) - ETH_ALEN)
78
34f80b04
EG
79/* Time in jiffies before concluding the transmitter is hung */
80#define TX_TIMEOUT (5*HZ)
a2fbb9ea 81
0329aba1 82static char version[] =
619c5cb6 83 "Broadcom NetXtreme II 5771x/578xx 10/20-Gigabit Ethernet Driver "
a2fbb9ea
ET
84 DRV_MODULE_NAME " " DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
85
24e3fcef 86MODULE_AUTHOR("Eliezer Tamir");
f2e0899f 87MODULE_DESCRIPTION("Broadcom NetXtreme II "
619c5cb6
VZ
88 "BCM57710/57711/57711E/"
89 "57712/57712_MF/57800/57800_MF/57810/57810_MF/"
90 "57840/57840_MF Driver");
a2fbb9ea
ET
91MODULE_LICENSE("GPL");
92MODULE_VERSION(DRV_MODULE_VERSION);
45229b42
BH
93MODULE_FIRMWARE(FW_FILE_NAME_E1);
94MODULE_FIRMWARE(FW_FILE_NAME_E1H);
f2e0899f 95MODULE_FIRMWARE(FW_FILE_NAME_E2);
a2fbb9ea 96
ca00392c 97
d6214d7a 98int num_queues;
54b9ddaa 99module_param(num_queues, int, 0);
96305234
DK
100MODULE_PARM_DESC(num_queues,
101 " Set number of queues (default is as a number of CPUs)");
555f6c78 102
19680c48 103static int disable_tpa;
19680c48 104module_param(disable_tpa, int, 0);
9898f86d 105MODULE_PARM_DESC(disable_tpa, " Disable the TPA (LRO) feature");
8badd27a 106
9ee3d37b
DK
107#define INT_MODE_INTx 1
108#define INT_MODE_MSI 2
0e8d2ec5 109int int_mode;
8badd27a 110module_param(int_mode, int, 0);
619c5cb6 111MODULE_PARM_DESC(int_mode, " Force interrupt mode other than MSI-X "
cdaa7cb8 112 "(1 INT#x; 2 MSI)");
8badd27a 113
a18f5128
EG
114static int dropless_fc;
115module_param(dropless_fc, int, 0);
116MODULE_PARM_DESC(dropless_fc, " Pause on exhausted host ring");
117
8d5726c4
EG
118static int mrrs = -1;
119module_param(mrrs, int, 0);
120MODULE_PARM_DESC(mrrs, " Force Max Read Req Size (0..3) (for debug)");
121
9898f86d 122static int debug;
a2fbb9ea 123module_param(debug, int, 0);
9898f86d
EG
124MODULE_PARM_DESC(debug, " Default debug msglevel");
125
a2fbb9ea 126
619c5cb6
VZ
127
128struct workqueue_struct *bnx2x_wq;
ec6ba945 129
a2fbb9ea
ET
130enum bnx2x_board_type {
131 BCM57710 = 0,
619c5cb6
VZ
132 BCM57711,
133 BCM57711E,
134 BCM57712,
135 BCM57712_MF,
136 BCM57800,
137 BCM57800_MF,
138 BCM57810,
139 BCM57810_MF,
c3def943
YM
140 BCM57840_O,
141 BCM57840_4_10,
142 BCM57840_2_20,
143 BCM57840_MFO,
7e8e02df
BW
144 BCM57840_MF,
145 BCM57811,
146 BCM57811_MF
a2fbb9ea
ET
147};
148
34f80b04 149/* indexed by board_type, above */
53a10565 150static struct {
a2fbb9ea 151 char *name;
0329aba1 152} board_info[] = {
619c5cb6
VZ
153 { "Broadcom NetXtreme II BCM57710 10 Gigabit PCIe [Everest]" },
154 { "Broadcom NetXtreme II BCM57711 10 Gigabit PCIe" },
155 { "Broadcom NetXtreme II BCM57711E 10 Gigabit PCIe" },
156 { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet" },
157 { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function" },
158 { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet" },
159 { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet Multi Function" },
160 { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet" },
161 { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet Multi Function" },
162 { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet" },
c3def943
YM
163 { "Broadcom NetXtreme II BCM57840 10 Gigabit Ethernet" },
164 { "Broadcom NetXtreme II BCM57840 20 Gigabit Ethernet" },
165 { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function"},
7e8e02df
BW
166 { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function"},
167 { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet"},
168 { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet Multi Function"},
a2fbb9ea
ET
169};
170
619c5cb6
VZ
171#ifndef PCI_DEVICE_ID_NX2_57710
172#define PCI_DEVICE_ID_NX2_57710 CHIP_NUM_57710
173#endif
174#ifndef PCI_DEVICE_ID_NX2_57711
175#define PCI_DEVICE_ID_NX2_57711 CHIP_NUM_57711
176#endif
177#ifndef PCI_DEVICE_ID_NX2_57711E
178#define PCI_DEVICE_ID_NX2_57711E CHIP_NUM_57711E
179#endif
180#ifndef PCI_DEVICE_ID_NX2_57712
181#define PCI_DEVICE_ID_NX2_57712 CHIP_NUM_57712
182#endif
183#ifndef PCI_DEVICE_ID_NX2_57712_MF
184#define PCI_DEVICE_ID_NX2_57712_MF CHIP_NUM_57712_MF
185#endif
186#ifndef PCI_DEVICE_ID_NX2_57800
187#define PCI_DEVICE_ID_NX2_57800 CHIP_NUM_57800
188#endif
189#ifndef PCI_DEVICE_ID_NX2_57800_MF
190#define PCI_DEVICE_ID_NX2_57800_MF CHIP_NUM_57800_MF
191#endif
192#ifndef PCI_DEVICE_ID_NX2_57810
193#define PCI_DEVICE_ID_NX2_57810 CHIP_NUM_57810
194#endif
195#ifndef PCI_DEVICE_ID_NX2_57810_MF
196#define PCI_DEVICE_ID_NX2_57810_MF CHIP_NUM_57810_MF
197#endif
c3def943
YM
198#ifndef PCI_DEVICE_ID_NX2_57840_O
199#define PCI_DEVICE_ID_NX2_57840_O CHIP_NUM_57840_OBSOLETE
200#endif
201#ifndef PCI_DEVICE_ID_NX2_57840_4_10
202#define PCI_DEVICE_ID_NX2_57840_4_10 CHIP_NUM_57840_4_10
203#endif
204#ifndef PCI_DEVICE_ID_NX2_57840_2_20
205#define PCI_DEVICE_ID_NX2_57840_2_20 CHIP_NUM_57840_2_20
206#endif
207#ifndef PCI_DEVICE_ID_NX2_57840_MFO
208#define PCI_DEVICE_ID_NX2_57840_MFO CHIP_NUM_57840_MF_OBSOLETE
619c5cb6
VZ
209#endif
210#ifndef PCI_DEVICE_ID_NX2_57840_MF
211#define PCI_DEVICE_ID_NX2_57840_MF CHIP_NUM_57840_MF
212#endif
7e8e02df
BW
213#ifndef PCI_DEVICE_ID_NX2_57811
214#define PCI_DEVICE_ID_NX2_57811 CHIP_NUM_57811
215#endif
216#ifndef PCI_DEVICE_ID_NX2_57811_MF
217#define PCI_DEVICE_ID_NX2_57811_MF CHIP_NUM_57811_MF
218#endif
a3aa1884 219static DEFINE_PCI_DEVICE_TABLE(bnx2x_pci_tbl) = {
e4ed7113
EG
220 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57710), BCM57710 },
221 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711), BCM57711 },
222 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711E), BCM57711E },
f2e0899f 223 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712), BCM57712 },
619c5cb6
VZ
224 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712_MF), BCM57712_MF },
225 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800), BCM57800 },
226 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800_MF), BCM57800_MF },
227 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810), BCM57810 },
228 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810_MF), BCM57810_MF },
c3def943
YM
229 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_O), BCM57840_O },
230 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_4_10), BCM57840_4_10 },
231 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_2_20), BCM57840_2_20 },
232 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MFO), BCM57840_MFO },
619c5cb6 233 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MF), BCM57840_MF },
7e8e02df
BW
234 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811), BCM57811 },
235 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811_MF), BCM57811_MF },
a2fbb9ea
ET
236 { 0 }
237};
238
239MODULE_DEVICE_TABLE(pci, bnx2x_pci_tbl);
240
452427b0
YM
241/* Global resources for unloading a previously loaded device */
242#define BNX2X_PREV_WAIT_NEEDED 1
243static DEFINE_SEMAPHORE(bnx2x_prev_sem);
244static LIST_HEAD(bnx2x_prev_list);
a2fbb9ea
ET
245/****************************************************************************
246* General service functions
247****************************************************************************/
248
1191cb83 249static void __storm_memset_dma_mapping(struct bnx2x *bp,
619c5cb6
VZ
250 u32 addr, dma_addr_t mapping)
251{
252 REG_WR(bp, addr, U64_LO(mapping));
253 REG_WR(bp, addr + 4, U64_HI(mapping));
254}
255
1191cb83
ED
256static void storm_memset_spq_addr(struct bnx2x *bp,
257 dma_addr_t mapping, u16 abs_fid)
619c5cb6
VZ
258{
259 u32 addr = XSEM_REG_FAST_MEMORY +
260 XSTORM_SPQ_PAGE_BASE_OFFSET(abs_fid);
261
262 __storm_memset_dma_mapping(bp, addr, mapping);
263}
264
1191cb83
ED
265static void storm_memset_vf_to_pf(struct bnx2x *bp, u16 abs_fid,
266 u16 pf_id)
523224a3 267{
619c5cb6
VZ
268 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_VF_TO_PF_OFFSET(abs_fid),
269 pf_id);
270 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_VF_TO_PF_OFFSET(abs_fid),
271 pf_id);
272 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_VF_TO_PF_OFFSET(abs_fid),
273 pf_id);
274 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_VF_TO_PF_OFFSET(abs_fid),
275 pf_id);
523224a3
DK
276}
277
1191cb83
ED
278static void storm_memset_func_en(struct bnx2x *bp, u16 abs_fid,
279 u8 enable)
619c5cb6
VZ
280{
281 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(abs_fid),
282 enable);
283 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(abs_fid),
284 enable);
285 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(abs_fid),
286 enable);
287 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(abs_fid),
288 enable);
289}
523224a3 290
1191cb83
ED
291static void storm_memset_eq_data(struct bnx2x *bp,
292 struct event_ring_data *eq_data,
523224a3
DK
293 u16 pfid)
294{
295 size_t size = sizeof(struct event_ring_data);
296
297 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_DATA_OFFSET(pfid);
298
299 __storm_memset_struct(bp, addr, size, (u32 *)eq_data);
300}
301
1191cb83
ED
302static void storm_memset_eq_prod(struct bnx2x *bp, u16 eq_prod,
303 u16 pfid)
523224a3
DK
304{
305 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_PROD_OFFSET(pfid);
306 REG_WR16(bp, addr, eq_prod);
307}
308
a2fbb9ea
ET
309/* used only at init
310 * locking is done by mcp
311 */
8d96286a 312static void bnx2x_reg_wr_ind(struct bnx2x *bp, u32 addr, u32 val)
a2fbb9ea
ET
313{
314 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
315 pci_write_config_dword(bp->pdev, PCICFG_GRC_DATA, val);
316 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
317 PCICFG_VENDOR_ID_OFFSET);
318}
319
a2fbb9ea
ET
320static u32 bnx2x_reg_rd_ind(struct bnx2x *bp, u32 addr)
321{
322 u32 val;
323
324 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
325 pci_read_config_dword(bp->pdev, PCICFG_GRC_DATA, &val);
326 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
327 PCICFG_VENDOR_ID_OFFSET);
328
329 return val;
330}
a2fbb9ea 331
f2e0899f
DK
332#define DMAE_DP_SRC_GRC "grc src_addr [%08x]"
333#define DMAE_DP_SRC_PCI "pci src_addr [%x:%08x]"
334#define DMAE_DP_DST_GRC "grc dst_addr [%08x]"
335#define DMAE_DP_DST_PCI "pci dst_addr [%x:%08x]"
336#define DMAE_DP_DST_NONE "dst_addr [none]"
337
f2e0899f 338
a2fbb9ea 339/* copy command into DMAE command memory and set DMAE command go */
6c719d00 340void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx)
a2fbb9ea
ET
341{
342 u32 cmd_offset;
343 int i;
344
345 cmd_offset = (DMAE_REG_CMD_MEM + sizeof(struct dmae_command) * idx);
346 for (i = 0; i < (sizeof(struct dmae_command)/4); i++) {
347 REG_WR(bp, cmd_offset + i*4, *(((u32 *)dmae) + i));
a2fbb9ea
ET
348 }
349 REG_WR(bp, dmae_reg_go_c[idx], 1);
350}
351
f2e0899f 352u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type)
a2fbb9ea 353{
f2e0899f
DK
354 return opcode | ((comp_type << DMAE_COMMAND_C_DST_SHIFT) |
355 DMAE_CMD_C_ENABLE);
356}
ad8d3948 357
f2e0899f
DK
358u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode)
359{
360 return opcode & ~DMAE_CMD_SRC_RESET;
361}
ad8d3948 362
f2e0899f
DK
363u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
364 bool with_comp, u8 comp_type)
365{
366 u32 opcode = 0;
367
368 opcode |= ((src_type << DMAE_COMMAND_SRC_SHIFT) |
369 (dst_type << DMAE_COMMAND_DST_SHIFT));
ad8d3948 370
f2e0899f
DK
371 opcode |= (DMAE_CMD_SRC_RESET | DMAE_CMD_DST_RESET);
372
373 opcode |= (BP_PORT(bp) ? DMAE_CMD_PORT_1 : DMAE_CMD_PORT_0);
3395a033
DK
374 opcode |= ((BP_VN(bp) << DMAE_CMD_E1HVN_SHIFT) |
375 (BP_VN(bp) << DMAE_COMMAND_DST_VN_SHIFT));
f2e0899f 376 opcode |= (DMAE_COM_SET_ERR << DMAE_COMMAND_ERR_POLICY_SHIFT);
a2fbb9ea 377
a2fbb9ea 378#ifdef __BIG_ENDIAN
f2e0899f 379 opcode |= DMAE_CMD_ENDIANITY_B_DW_SWAP;
a2fbb9ea 380#else
f2e0899f 381 opcode |= DMAE_CMD_ENDIANITY_DW_SWAP;
a2fbb9ea 382#endif
f2e0899f
DK
383 if (with_comp)
384 opcode = bnx2x_dmae_opcode_add_comp(opcode, comp_type);
385 return opcode;
386}
387
8d96286a 388static void bnx2x_prep_dmae_with_comp(struct bnx2x *bp,
389 struct dmae_command *dmae,
390 u8 src_type, u8 dst_type)
f2e0899f
DK
391{
392 memset(dmae, 0, sizeof(struct dmae_command));
393
394 /* set the opcode */
395 dmae->opcode = bnx2x_dmae_opcode(bp, src_type, dst_type,
396 true, DMAE_COMP_PCI);
397
398 /* fill in the completion parameters */
399 dmae->comp_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_comp));
400 dmae->comp_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_comp));
401 dmae->comp_val = DMAE_COMP_VAL;
402}
403
404/* issue a dmae command over the init-channel and wailt for completion */
8d96286a 405static int bnx2x_issue_dmae_with_comp(struct bnx2x *bp,
406 struct dmae_command *dmae)
f2e0899f
DK
407{
408 u32 *wb_comp = bnx2x_sp(bp, wb_comp);
5e374b5a 409 int cnt = CHIP_REV_IS_SLOW(bp) ? (400000) : 4000;
f2e0899f
DK
410 int rc = 0;
411
619c5cb6
VZ
412 /*
413 * Lock the dmae channel. Disable BHs to prevent a dead-lock
414 * as long as this code is called both from syscall context and
415 * from ndo_set_rx_mode() flow that may be called from BH.
416 */
6e30dd4e 417 spin_lock_bh(&bp->dmae_lock);
5ff7b6d4 418
f2e0899f 419 /* reset completion */
a2fbb9ea
ET
420 *wb_comp = 0;
421
f2e0899f
DK
422 /* post the command on the channel used for initializations */
423 bnx2x_post_dmae(bp, dmae, INIT_DMAE_C(bp));
a2fbb9ea 424
f2e0899f 425 /* wait for completion */
a2fbb9ea 426 udelay(5);
f2e0899f 427 while ((*wb_comp & ~DMAE_PCI_ERR_FLAG) != DMAE_COMP_VAL) {
ad8d3948 428
95c6c616
AE
429 if (!cnt ||
430 (bp->recovery_state != BNX2X_RECOVERY_DONE &&
431 bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
c3eefaf6 432 BNX2X_ERR("DMAE timeout!\n");
f2e0899f
DK
433 rc = DMAE_TIMEOUT;
434 goto unlock;
a2fbb9ea 435 }
ad8d3948 436 cnt--;
f2e0899f 437 udelay(50);
a2fbb9ea 438 }
f2e0899f
DK
439 if (*wb_comp & DMAE_PCI_ERR_FLAG) {
440 BNX2X_ERR("DMAE PCI error!\n");
441 rc = DMAE_PCI_ERROR;
442 }
443
f2e0899f 444unlock:
6e30dd4e 445 spin_unlock_bh(&bp->dmae_lock);
f2e0899f
DK
446 return rc;
447}
448
449void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
450 u32 len32)
451{
452 struct dmae_command dmae;
453
454 if (!bp->dmae_ready) {
455 u32 *data = bnx2x_sp(bp, wb_data[0]);
456
127a425e
AE
457 if (CHIP_IS_E1(bp))
458 bnx2x_init_ind_wr(bp, dst_addr, data, len32);
459 else
460 bnx2x_init_str_wr(bp, dst_addr, data, len32);
f2e0899f
DK
461 return;
462 }
463
464 /* set opcode and fixed command fields */
465 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_PCI, DMAE_DST_GRC);
466
467 /* fill in addresses and len */
468 dmae.src_addr_lo = U64_LO(dma_addr);
469 dmae.src_addr_hi = U64_HI(dma_addr);
470 dmae.dst_addr_lo = dst_addr >> 2;
471 dmae.dst_addr_hi = 0;
472 dmae.len = len32;
473
f2e0899f
DK
474 /* issue the command and wait for completion */
475 bnx2x_issue_dmae_with_comp(bp, &dmae);
a2fbb9ea
ET
476}
477
c18487ee 478void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32)
a2fbb9ea 479{
5ff7b6d4 480 struct dmae_command dmae;
ad8d3948
EG
481
482 if (!bp->dmae_ready) {
483 u32 *data = bnx2x_sp(bp, wb_data[0]);
484 int i;
485
51c1a580 486 if (CHIP_IS_E1(bp))
127a425e
AE
487 for (i = 0; i < len32; i++)
488 data[i] = bnx2x_reg_rd_ind(bp, src_addr + i*4);
51c1a580 489 else
127a425e
AE
490 for (i = 0; i < len32; i++)
491 data[i] = REG_RD(bp, src_addr + i*4);
492
ad8d3948
EG
493 return;
494 }
495
f2e0899f
DK
496 /* set opcode and fixed command fields */
497 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_GRC, DMAE_DST_PCI);
a2fbb9ea 498
f2e0899f 499 /* fill in addresses and len */
5ff7b6d4
EG
500 dmae.src_addr_lo = src_addr >> 2;
501 dmae.src_addr_hi = 0;
502 dmae.dst_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_data));
503 dmae.dst_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_data));
504 dmae.len = len32;
ad8d3948 505
f2e0899f
DK
506 /* issue the command and wait for completion */
507 bnx2x_issue_dmae_with_comp(bp, &dmae);
ad8d3948
EG
508}
509
8d96286a 510static void bnx2x_write_dmae_phys_len(struct bnx2x *bp, dma_addr_t phys_addr,
511 u32 addr, u32 len)
573f2035 512{
02e3c6cb 513 int dmae_wr_max = DMAE_LEN32_WR_MAX(bp);
573f2035
EG
514 int offset = 0;
515
02e3c6cb 516 while (len > dmae_wr_max) {
573f2035 517 bnx2x_write_dmae(bp, phys_addr + offset,
02e3c6cb
VZ
518 addr + offset, dmae_wr_max);
519 offset += dmae_wr_max * 4;
520 len -= dmae_wr_max;
573f2035
EG
521 }
522
523 bnx2x_write_dmae(bp, phys_addr + offset, addr + offset, len);
524}
525
a2fbb9ea
ET
526static int bnx2x_mc_assert(struct bnx2x *bp)
527{
a2fbb9ea 528 char last_idx;
34f80b04
EG
529 int i, rc = 0;
530 u32 row0, row1, row2, row3;
531
532 /* XSTORM */
533 last_idx = REG_RD8(bp, BAR_XSTRORM_INTMEM +
534 XSTORM_ASSERT_LIST_INDEX_OFFSET);
535 if (last_idx)
536 BNX2X_ERR("XSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
537
538 /* print the asserts */
539 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
540
541 row0 = REG_RD(bp, BAR_XSTRORM_INTMEM +
542 XSTORM_ASSERT_LIST_OFFSET(i));
543 row1 = REG_RD(bp, BAR_XSTRORM_INTMEM +
544 XSTORM_ASSERT_LIST_OFFSET(i) + 4);
545 row2 = REG_RD(bp, BAR_XSTRORM_INTMEM +
546 XSTORM_ASSERT_LIST_OFFSET(i) + 8);
547 row3 = REG_RD(bp, BAR_XSTRORM_INTMEM +
548 XSTORM_ASSERT_LIST_OFFSET(i) + 12);
549
550 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 551 BNX2X_ERR("XSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
552 i, row3, row2, row1, row0);
553 rc++;
554 } else {
555 break;
556 }
557 }
558
559 /* TSTORM */
560 last_idx = REG_RD8(bp, BAR_TSTRORM_INTMEM +
561 TSTORM_ASSERT_LIST_INDEX_OFFSET);
562 if (last_idx)
563 BNX2X_ERR("TSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
564
565 /* print the asserts */
566 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
567
568 row0 = REG_RD(bp, BAR_TSTRORM_INTMEM +
569 TSTORM_ASSERT_LIST_OFFSET(i));
570 row1 = REG_RD(bp, BAR_TSTRORM_INTMEM +
571 TSTORM_ASSERT_LIST_OFFSET(i) + 4);
572 row2 = REG_RD(bp, BAR_TSTRORM_INTMEM +
573 TSTORM_ASSERT_LIST_OFFSET(i) + 8);
574 row3 = REG_RD(bp, BAR_TSTRORM_INTMEM +
575 TSTORM_ASSERT_LIST_OFFSET(i) + 12);
576
577 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 578 BNX2X_ERR("TSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
579 i, row3, row2, row1, row0);
580 rc++;
581 } else {
582 break;
583 }
584 }
585
586 /* CSTORM */
587 last_idx = REG_RD8(bp, BAR_CSTRORM_INTMEM +
588 CSTORM_ASSERT_LIST_INDEX_OFFSET);
589 if (last_idx)
590 BNX2X_ERR("CSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
591
592 /* print the asserts */
593 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
594
595 row0 = REG_RD(bp, BAR_CSTRORM_INTMEM +
596 CSTORM_ASSERT_LIST_OFFSET(i));
597 row1 = REG_RD(bp, BAR_CSTRORM_INTMEM +
598 CSTORM_ASSERT_LIST_OFFSET(i) + 4);
599 row2 = REG_RD(bp, BAR_CSTRORM_INTMEM +
600 CSTORM_ASSERT_LIST_OFFSET(i) + 8);
601 row3 = REG_RD(bp, BAR_CSTRORM_INTMEM +
602 CSTORM_ASSERT_LIST_OFFSET(i) + 12);
603
604 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 605 BNX2X_ERR("CSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
606 i, row3, row2, row1, row0);
607 rc++;
608 } else {
609 break;
610 }
611 }
612
613 /* USTORM */
614 last_idx = REG_RD8(bp, BAR_USTRORM_INTMEM +
615 USTORM_ASSERT_LIST_INDEX_OFFSET);
616 if (last_idx)
617 BNX2X_ERR("USTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
618
619 /* print the asserts */
620 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
621
622 row0 = REG_RD(bp, BAR_USTRORM_INTMEM +
623 USTORM_ASSERT_LIST_OFFSET(i));
624 row1 = REG_RD(bp, BAR_USTRORM_INTMEM +
625 USTORM_ASSERT_LIST_OFFSET(i) + 4);
626 row2 = REG_RD(bp, BAR_USTRORM_INTMEM +
627 USTORM_ASSERT_LIST_OFFSET(i) + 8);
628 row3 = REG_RD(bp, BAR_USTRORM_INTMEM +
629 USTORM_ASSERT_LIST_OFFSET(i) + 12);
630
631 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 632 BNX2X_ERR("USTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
633 i, row3, row2, row1, row0);
634 rc++;
635 } else {
636 break;
a2fbb9ea
ET
637 }
638 }
34f80b04 639
a2fbb9ea
ET
640 return rc;
641}
c14423fe 642
7a25cc73 643void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl)
a2fbb9ea 644{
7a25cc73 645 u32 addr, val;
a2fbb9ea 646 u32 mark, offset;
4781bfad 647 __be32 data[9];
a2fbb9ea 648 int word;
f2e0899f 649 u32 trace_shmem_base;
2145a920
VZ
650 if (BP_NOMCP(bp)) {
651 BNX2X_ERR("NO MCP - can not dump\n");
652 return;
653 }
7a25cc73
DK
654 netdev_printk(lvl, bp->dev, "bc %d.%d.%d\n",
655 (bp->common.bc_ver & 0xff0000) >> 16,
656 (bp->common.bc_ver & 0xff00) >> 8,
657 (bp->common.bc_ver & 0xff));
658
659 val = REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER);
660 if (val == REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER))
51c1a580 661 BNX2X_ERR("%s" "MCP PC at 0x%x\n", lvl, val);
cdaa7cb8 662
f2e0899f
DK
663 if (BP_PATH(bp) == 0)
664 trace_shmem_base = bp->common.shmem_base;
665 else
666 trace_shmem_base = SHMEM2_RD(bp, other_shmem_base_addr);
de128804
DK
667 addr = trace_shmem_base - 0x800;
668
669 /* validate TRCB signature */
670 mark = REG_RD(bp, addr);
671 if (mark != MFW_TRACE_SIGNATURE) {
672 BNX2X_ERR("Trace buffer signature is missing.");
673 return ;
674 }
675
676 /* read cyclic buffer pointer */
677 addr += 4;
cdaa7cb8 678 mark = REG_RD(bp, addr);
f2e0899f
DK
679 mark = (CHIP_IS_E1x(bp) ? MCP_REG_MCPR_SCRATCH : MCP_A_REG_MCPR_SCRATCH)
680 + ((mark + 0x3) & ~0x3) - 0x08000000;
7a25cc73 681 printk("%s" "begin fw dump (mark 0x%x)\n", lvl, mark);
a2fbb9ea 682
7a25cc73 683 printk("%s", lvl);
f2e0899f 684 for (offset = mark; offset <= trace_shmem_base; offset += 0x8*4) {
a2fbb9ea 685 for (word = 0; word < 8; word++)
cdaa7cb8 686 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 687 data[8] = 0x0;
7995c64e 688 pr_cont("%s", (char *)data);
a2fbb9ea 689 }
cdaa7cb8 690 for (offset = addr + 4; offset <= mark; offset += 0x8*4) {
a2fbb9ea 691 for (word = 0; word < 8; word++)
cdaa7cb8 692 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 693 data[8] = 0x0;
7995c64e 694 pr_cont("%s", (char *)data);
a2fbb9ea 695 }
7a25cc73
DK
696 printk("%s" "end of fw dump\n", lvl);
697}
698
1191cb83 699static void bnx2x_fw_dump(struct bnx2x *bp)
7a25cc73
DK
700{
701 bnx2x_fw_dump_lvl(bp, KERN_ERR);
a2fbb9ea
ET
702}
703
6c719d00 704void bnx2x_panic_dump(struct bnx2x *bp)
a2fbb9ea
ET
705{
706 int i;
523224a3
DK
707 u16 j;
708 struct hc_sp_status_block_data sp_sb_data;
709 int func = BP_FUNC(bp);
710#ifdef BNX2X_STOP_ON_ERROR
711 u16 start = 0, end = 0;
6383c0b3 712 u8 cos;
523224a3 713#endif
a2fbb9ea 714
66e855f3 715 bp->stats_state = STATS_STATE_DISABLED;
7a752993 716 bp->eth_stats.unrecoverable_error++;
66e855f3
YG
717 DP(BNX2X_MSG_STATS, "stats_state - DISABLED\n");
718
a2fbb9ea
ET
719 BNX2X_ERR("begin crash dump -----------------\n");
720
8440d2b6
EG
721 /* Indices */
722 /* Common */
51c1a580 723 BNX2X_ERR("def_idx(0x%x) def_att_idx(0x%x) attn_state(0x%x) spq_prod_idx(0x%x) next_stats_cnt(0x%x)\n",
619c5cb6
VZ
724 bp->def_idx, bp->def_att_idx, bp->attn_state,
725 bp->spq_prod_idx, bp->stats_counter);
523224a3
DK
726 BNX2X_ERR("DSB: attn bits(0x%x) ack(0x%x) id(0x%x) idx(0x%x)\n",
727 bp->def_status_blk->atten_status_block.attn_bits,
728 bp->def_status_blk->atten_status_block.attn_bits_ack,
729 bp->def_status_blk->atten_status_block.status_block_id,
730 bp->def_status_blk->atten_status_block.attn_bits_index);
731 BNX2X_ERR(" def (");
732 for (i = 0; i < HC_SP_SB_MAX_INDICES; i++)
733 pr_cont("0x%x%s",
f1deab50
JP
734 bp->def_status_blk->sp_sb.index_values[i],
735 (i == HC_SP_SB_MAX_INDICES - 1) ? ") " : " ");
523224a3
DK
736
737 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
738 *((u32 *)&sp_sb_data + i) = REG_RD(bp, BAR_CSTRORM_INTMEM +
739 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
740 i*sizeof(u32));
741
f1deab50 742 pr_cont("igu_sb_id(0x%x) igu_seg_id(0x%x) pf_id(0x%x) vnic_id(0x%x) vf_id(0x%x) vf_valid (0x%x) state(0x%x)\n",
523224a3
DK
743 sp_sb_data.igu_sb_id,
744 sp_sb_data.igu_seg_id,
745 sp_sb_data.p_func.pf_id,
746 sp_sb_data.p_func.vnic_id,
747 sp_sb_data.p_func.vf_id,
619c5cb6
VZ
748 sp_sb_data.p_func.vf_valid,
749 sp_sb_data.state);
523224a3 750
8440d2b6 751
ec6ba945 752 for_each_eth_queue(bp, i) {
a2fbb9ea 753 struct bnx2x_fastpath *fp = &bp->fp[i];
523224a3 754 int loop;
f2e0899f 755 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
756 struct hc_status_block_data_e1x sb_data_e1x;
757 struct hc_status_block_sm *hc_sm_p =
619c5cb6
VZ
758 CHIP_IS_E1x(bp) ?
759 sb_data_e1x.common.state_machine :
760 sb_data_e2.common.state_machine;
523224a3 761 struct hc_index_data *hc_index_p =
619c5cb6
VZ
762 CHIP_IS_E1x(bp) ?
763 sb_data_e1x.index_data :
764 sb_data_e2.index_data;
6383c0b3 765 u8 data_size, cos;
523224a3 766 u32 *sb_data_p;
6383c0b3 767 struct bnx2x_fp_txdata txdata;
523224a3
DK
768
769 /* Rx */
51c1a580 770 BNX2X_ERR("fp%d: rx_bd_prod(0x%x) rx_bd_cons(0x%x) rx_comp_prod(0x%x) rx_comp_cons(0x%x) *rx_cons_sb(0x%x)\n",
8440d2b6 771 i, fp->rx_bd_prod, fp->rx_bd_cons,
523224a3 772 fp->rx_comp_prod,
66e855f3 773 fp->rx_comp_cons, le16_to_cpu(*fp->rx_cons_sb));
51c1a580 774 BNX2X_ERR(" rx_sge_prod(0x%x) last_max_sge(0x%x) fp_hc_idx(0x%x)\n",
8440d2b6 775 fp->rx_sge_prod, fp->last_max_sge,
523224a3 776 le16_to_cpu(fp->fp_hc_idx));
a2fbb9ea 777
523224a3 778 /* Tx */
6383c0b3
AE
779 for_each_cos_in_tx_queue(fp, cos)
780 {
65565884 781 txdata = *fp->txdata_ptr[cos];
51c1a580 782 BNX2X_ERR("fp%d: tx_pkt_prod(0x%x) tx_pkt_cons(0x%x) tx_bd_prod(0x%x) tx_bd_cons(0x%x) *tx_cons_sb(0x%x)\n",
6383c0b3
AE
783 i, txdata.tx_pkt_prod,
784 txdata.tx_pkt_cons, txdata.tx_bd_prod,
785 txdata.tx_bd_cons,
786 le16_to_cpu(*txdata.tx_cons_sb));
787 }
523224a3 788
619c5cb6
VZ
789 loop = CHIP_IS_E1x(bp) ?
790 HC_SB_MAX_INDICES_E1X : HC_SB_MAX_INDICES_E2;
523224a3
DK
791
792 /* host sb data */
793
ec6ba945
VZ
794 if (IS_FCOE_FP(fp))
795 continue;
55c11941 796
523224a3
DK
797 BNX2X_ERR(" run indexes (");
798 for (j = 0; j < HC_SB_MAX_SM; j++)
799 pr_cont("0x%x%s",
800 fp->sb_running_index[j],
801 (j == HC_SB_MAX_SM - 1) ? ")" : " ");
802
803 BNX2X_ERR(" indexes (");
804 for (j = 0; j < loop; j++)
805 pr_cont("0x%x%s",
806 fp->sb_index_values[j],
807 (j == loop - 1) ? ")" : " ");
808 /* fw sb data */
619c5cb6
VZ
809 data_size = CHIP_IS_E1x(bp) ?
810 sizeof(struct hc_status_block_data_e1x) :
811 sizeof(struct hc_status_block_data_e2);
523224a3 812 data_size /= sizeof(u32);
619c5cb6
VZ
813 sb_data_p = CHIP_IS_E1x(bp) ?
814 (u32 *)&sb_data_e1x :
815 (u32 *)&sb_data_e2;
523224a3
DK
816 /* copy sb data in here */
817 for (j = 0; j < data_size; j++)
818 *(sb_data_p + j) = REG_RD(bp, BAR_CSTRORM_INTMEM +
819 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp->fw_sb_id) +
820 j * sizeof(u32));
821
619c5cb6 822 if (!CHIP_IS_E1x(bp)) {
51c1a580 823 pr_cont("pf_id(0x%x) vf_id(0x%x) vf_valid(0x%x) vnic_id(0x%x) same_igu_sb_1b(0x%x) state(0x%x)\n",
f2e0899f
DK
824 sb_data_e2.common.p_func.pf_id,
825 sb_data_e2.common.p_func.vf_id,
826 sb_data_e2.common.p_func.vf_valid,
827 sb_data_e2.common.p_func.vnic_id,
619c5cb6
VZ
828 sb_data_e2.common.same_igu_sb_1b,
829 sb_data_e2.common.state);
f2e0899f 830 } else {
51c1a580 831 pr_cont("pf_id(0x%x) vf_id(0x%x) vf_valid(0x%x) vnic_id(0x%x) same_igu_sb_1b(0x%x) state(0x%x)\n",
f2e0899f
DK
832 sb_data_e1x.common.p_func.pf_id,
833 sb_data_e1x.common.p_func.vf_id,
834 sb_data_e1x.common.p_func.vf_valid,
835 sb_data_e1x.common.p_func.vnic_id,
619c5cb6
VZ
836 sb_data_e1x.common.same_igu_sb_1b,
837 sb_data_e1x.common.state);
f2e0899f 838 }
523224a3
DK
839
840 /* SB_SMs data */
841 for (j = 0; j < HC_SB_MAX_SM; j++) {
51c1a580
MS
842 pr_cont("SM[%d] __flags (0x%x) igu_sb_id (0x%x) igu_seg_id(0x%x) time_to_expire (0x%x) timer_value(0x%x)\n",
843 j, hc_sm_p[j].__flags,
844 hc_sm_p[j].igu_sb_id,
845 hc_sm_p[j].igu_seg_id,
846 hc_sm_p[j].time_to_expire,
847 hc_sm_p[j].timer_value);
523224a3
DK
848 }
849
850 /* Indecies data */
851 for (j = 0; j < loop; j++) {
51c1a580 852 pr_cont("INDEX[%d] flags (0x%x) timeout (0x%x)\n", j,
523224a3
DK
853 hc_index_p[j].flags,
854 hc_index_p[j].timeout);
855 }
8440d2b6 856 }
a2fbb9ea 857
523224a3 858#ifdef BNX2X_STOP_ON_ERROR
8440d2b6
EG
859 /* Rings */
860 /* Rx */
55c11941 861 for_each_valid_rx_queue(bp, i) {
8440d2b6 862 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea
ET
863
864 start = RX_BD(le16_to_cpu(*fp->rx_cons_sb) - 10);
865 end = RX_BD(le16_to_cpu(*fp->rx_cons_sb) + 503);
8440d2b6 866 for (j = start; j != end; j = RX_BD(j + 1)) {
a2fbb9ea
ET
867 u32 *rx_bd = (u32 *)&fp->rx_desc_ring[j];
868 struct sw_rx_bd *sw_bd = &fp->rx_buf_ring[j];
869
c3eefaf6 870 BNX2X_ERR("fp%d: rx_bd[%x]=[%x:%x] sw_bd=[%p]\n",
44151acb 871 i, j, rx_bd[1], rx_bd[0], sw_bd->data);
a2fbb9ea
ET
872 }
873
3196a88a
EG
874 start = RX_SGE(fp->rx_sge_prod);
875 end = RX_SGE(fp->last_max_sge);
8440d2b6 876 for (j = start; j != end; j = RX_SGE(j + 1)) {
7a9b2557
VZ
877 u32 *rx_sge = (u32 *)&fp->rx_sge_ring[j];
878 struct sw_rx_page *sw_page = &fp->rx_page_ring[j];
879
c3eefaf6
EG
880 BNX2X_ERR("fp%d: rx_sge[%x]=[%x:%x] sw_page=[%p]\n",
881 i, j, rx_sge[1], rx_sge[0], sw_page->page);
7a9b2557
VZ
882 }
883
a2fbb9ea
ET
884 start = RCQ_BD(fp->rx_comp_cons - 10);
885 end = RCQ_BD(fp->rx_comp_cons + 503);
8440d2b6 886 for (j = start; j != end; j = RCQ_BD(j + 1)) {
a2fbb9ea
ET
887 u32 *cqe = (u32 *)&fp->rx_comp_ring[j];
888
c3eefaf6
EG
889 BNX2X_ERR("fp%d: cqe[%x]=[%x:%x:%x:%x]\n",
890 i, j, cqe[0], cqe[1], cqe[2], cqe[3]);
a2fbb9ea
ET
891 }
892 }
893
8440d2b6 894 /* Tx */
55c11941 895 for_each_valid_tx_queue(bp, i) {
8440d2b6 896 struct bnx2x_fastpath *fp = &bp->fp[i];
6383c0b3 897 for_each_cos_in_tx_queue(fp, cos) {
65565884 898 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3
AE
899
900 start = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) - 10);
901 end = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) + 245);
902 for (j = start; j != end; j = TX_BD(j + 1)) {
903 struct sw_tx_bd *sw_bd =
904 &txdata->tx_buf_ring[j];
905
51c1a580 906 BNX2X_ERR("fp%d: txdata %d, packet[%x]=[%p,%x]\n",
6383c0b3
AE
907 i, cos, j, sw_bd->skb,
908 sw_bd->first_bd);
909 }
8440d2b6 910
6383c0b3
AE
911 start = TX_BD(txdata->tx_bd_cons - 10);
912 end = TX_BD(txdata->tx_bd_cons + 254);
913 for (j = start; j != end; j = TX_BD(j + 1)) {
914 u32 *tx_bd = (u32 *)&txdata->tx_desc_ring[j];
8440d2b6 915
51c1a580 916 BNX2X_ERR("fp%d: txdata %d, tx_bd[%x]=[%x:%x:%x:%x]\n",
6383c0b3
AE
917 i, cos, j, tx_bd[0], tx_bd[1],
918 tx_bd[2], tx_bd[3]);
919 }
8440d2b6
EG
920 }
921 }
523224a3 922#endif
34f80b04 923 bnx2x_fw_dump(bp);
a2fbb9ea
ET
924 bnx2x_mc_assert(bp);
925 BNX2X_ERR("end crash dump -----------------\n");
a2fbb9ea
ET
926}
927
619c5cb6
VZ
928/*
929 * FLR Support for E2
930 *
931 * bnx2x_pf_flr_clnup() is called during nic_load in the per function HW
932 * initialization.
933 */
934#define FLR_WAIT_USEC 10000 /* 10 miliseconds */
89db4ad8
AE
935#define FLR_WAIT_INTERVAL 50 /* usec */
936#define FLR_POLL_CNT (FLR_WAIT_USEC/FLR_WAIT_INTERVAL) /* 200 */
619c5cb6
VZ
937
938struct pbf_pN_buf_regs {
939 int pN;
940 u32 init_crd;
941 u32 crd;
942 u32 crd_freed;
943};
944
945struct pbf_pN_cmd_regs {
946 int pN;
947 u32 lines_occup;
948 u32 lines_freed;
949};
950
951static void bnx2x_pbf_pN_buf_flushed(struct bnx2x *bp,
952 struct pbf_pN_buf_regs *regs,
953 u32 poll_count)
954{
955 u32 init_crd, crd, crd_start, crd_freed, crd_freed_start;
956 u32 cur_cnt = poll_count;
957
958 crd_freed = crd_freed_start = REG_RD(bp, regs->crd_freed);
959 crd = crd_start = REG_RD(bp, regs->crd);
960 init_crd = REG_RD(bp, regs->init_crd);
961
962 DP(BNX2X_MSG_SP, "INIT CREDIT[%d] : %x\n", regs->pN, init_crd);
963 DP(BNX2X_MSG_SP, "CREDIT[%d] : s:%x\n", regs->pN, crd);
964 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: s:%x\n", regs->pN, crd_freed);
965
966 while ((crd != init_crd) && ((u32)SUB_S32(crd_freed, crd_freed_start) <
967 (init_crd - crd_start))) {
968 if (cur_cnt--) {
89db4ad8 969 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
970 crd = REG_RD(bp, regs->crd);
971 crd_freed = REG_RD(bp, regs->crd_freed);
972 } else {
973 DP(BNX2X_MSG_SP, "PBF tx buffer[%d] timed out\n",
974 regs->pN);
975 DP(BNX2X_MSG_SP, "CREDIT[%d] : c:%x\n",
976 regs->pN, crd);
977 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: c:%x\n",
978 regs->pN, crd_freed);
979 break;
980 }
981 }
982 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF tx buffer[%d]\n",
89db4ad8 983 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
984}
985
986static void bnx2x_pbf_pN_cmd_flushed(struct bnx2x *bp,
987 struct pbf_pN_cmd_regs *regs,
988 u32 poll_count)
989{
990 u32 occup, to_free, freed, freed_start;
991 u32 cur_cnt = poll_count;
992
993 occup = to_free = REG_RD(bp, regs->lines_occup);
994 freed = freed_start = REG_RD(bp, regs->lines_freed);
995
996 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n", regs->pN, occup);
997 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n", regs->pN, freed);
998
999 while (occup && ((u32)SUB_S32(freed, freed_start) < to_free)) {
1000 if (cur_cnt--) {
89db4ad8 1001 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1002 occup = REG_RD(bp, regs->lines_occup);
1003 freed = REG_RD(bp, regs->lines_freed);
1004 } else {
1005 DP(BNX2X_MSG_SP, "PBF cmd queue[%d] timed out\n",
1006 regs->pN);
1007 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n",
1008 regs->pN, occup);
1009 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n",
1010 regs->pN, freed);
1011 break;
1012 }
1013 }
1014 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF cmd queue[%d]\n",
89db4ad8 1015 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1016}
1017
1191cb83
ED
1018static u32 bnx2x_flr_clnup_reg_poll(struct bnx2x *bp, u32 reg,
1019 u32 expected, u32 poll_count)
619c5cb6
VZ
1020{
1021 u32 cur_cnt = poll_count;
1022 u32 val;
1023
1024 while ((val = REG_RD(bp, reg)) != expected && cur_cnt--)
89db4ad8 1025 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1026
1027 return val;
1028}
1029
1191cb83
ED
1030static int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
1031 char *msg, u32 poll_cnt)
619c5cb6
VZ
1032{
1033 u32 val = bnx2x_flr_clnup_reg_poll(bp, reg, 0, poll_cnt);
1034 if (val != 0) {
1035 BNX2X_ERR("%s usage count=%d\n", msg, val);
1036 return 1;
1037 }
1038 return 0;
1039}
1040
1041static u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp)
1042{
1043 /* adjust polling timeout */
1044 if (CHIP_REV_IS_EMUL(bp))
1045 return FLR_POLL_CNT * 2000;
1046
1047 if (CHIP_REV_IS_FPGA(bp))
1048 return FLR_POLL_CNT * 120;
1049
1050 return FLR_POLL_CNT;
1051}
1052
1053static void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count)
1054{
1055 struct pbf_pN_cmd_regs cmd_regs[] = {
1056 {0, (CHIP_IS_E3B0(bp)) ?
1057 PBF_REG_TQ_OCCUPANCY_Q0 :
1058 PBF_REG_P0_TQ_OCCUPANCY,
1059 (CHIP_IS_E3B0(bp)) ?
1060 PBF_REG_TQ_LINES_FREED_CNT_Q0 :
1061 PBF_REG_P0_TQ_LINES_FREED_CNT},
1062 {1, (CHIP_IS_E3B0(bp)) ?
1063 PBF_REG_TQ_OCCUPANCY_Q1 :
1064 PBF_REG_P1_TQ_OCCUPANCY,
1065 (CHIP_IS_E3B0(bp)) ?
1066 PBF_REG_TQ_LINES_FREED_CNT_Q1 :
1067 PBF_REG_P1_TQ_LINES_FREED_CNT},
1068 {4, (CHIP_IS_E3B0(bp)) ?
1069 PBF_REG_TQ_OCCUPANCY_LB_Q :
1070 PBF_REG_P4_TQ_OCCUPANCY,
1071 (CHIP_IS_E3B0(bp)) ?
1072 PBF_REG_TQ_LINES_FREED_CNT_LB_Q :
1073 PBF_REG_P4_TQ_LINES_FREED_CNT}
1074 };
1075
1076 struct pbf_pN_buf_regs buf_regs[] = {
1077 {0, (CHIP_IS_E3B0(bp)) ?
1078 PBF_REG_INIT_CRD_Q0 :
1079 PBF_REG_P0_INIT_CRD ,
1080 (CHIP_IS_E3B0(bp)) ?
1081 PBF_REG_CREDIT_Q0 :
1082 PBF_REG_P0_CREDIT,
1083 (CHIP_IS_E3B0(bp)) ?
1084 PBF_REG_INTERNAL_CRD_FREED_CNT_Q0 :
1085 PBF_REG_P0_INTERNAL_CRD_FREED_CNT},
1086 {1, (CHIP_IS_E3B0(bp)) ?
1087 PBF_REG_INIT_CRD_Q1 :
1088 PBF_REG_P1_INIT_CRD,
1089 (CHIP_IS_E3B0(bp)) ?
1090 PBF_REG_CREDIT_Q1 :
1091 PBF_REG_P1_CREDIT,
1092 (CHIP_IS_E3B0(bp)) ?
1093 PBF_REG_INTERNAL_CRD_FREED_CNT_Q1 :
1094 PBF_REG_P1_INTERNAL_CRD_FREED_CNT},
1095 {4, (CHIP_IS_E3B0(bp)) ?
1096 PBF_REG_INIT_CRD_LB_Q :
1097 PBF_REG_P4_INIT_CRD,
1098 (CHIP_IS_E3B0(bp)) ?
1099 PBF_REG_CREDIT_LB_Q :
1100 PBF_REG_P4_CREDIT,
1101 (CHIP_IS_E3B0(bp)) ?
1102 PBF_REG_INTERNAL_CRD_FREED_CNT_LB_Q :
1103 PBF_REG_P4_INTERNAL_CRD_FREED_CNT},
1104 };
1105
1106 int i;
1107
1108 /* Verify the command queues are flushed P0, P1, P4 */
1109 for (i = 0; i < ARRAY_SIZE(cmd_regs); i++)
1110 bnx2x_pbf_pN_cmd_flushed(bp, &cmd_regs[i], poll_count);
1111
1112
1113 /* Verify the transmission buffers are flushed P0, P1, P4 */
1114 for (i = 0; i < ARRAY_SIZE(buf_regs); i++)
1115 bnx2x_pbf_pN_buf_flushed(bp, &buf_regs[i], poll_count);
1116}
1117
1118#define OP_GEN_PARAM(param) \
1119 (((param) << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM)
1120
1121#define OP_GEN_TYPE(type) \
1122 (((type) << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE)
1123
1124#define OP_GEN_AGG_VECT(index) \
1125 (((index) << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX)
1126
1127
1191cb83 1128static int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func,
619c5cb6
VZ
1129 u32 poll_cnt)
1130{
1131 struct sdm_op_gen op_gen = {0};
1132
1133 u32 comp_addr = BAR_CSTRORM_INTMEM +
1134 CSTORM_FINAL_CLEANUP_COMPLETE_OFFSET(clnup_func);
1135 int ret = 0;
1136
1137 if (REG_RD(bp, comp_addr)) {
89db4ad8 1138 BNX2X_ERR("Cleanup complete was not 0 before sending\n");
619c5cb6
VZ
1139 return 1;
1140 }
1141
1142 op_gen.command |= OP_GEN_PARAM(XSTORM_AGG_INT_FINAL_CLEANUP_INDEX);
1143 op_gen.command |= OP_GEN_TYPE(XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE);
1144 op_gen.command |= OP_GEN_AGG_VECT(clnup_func);
1145 op_gen.command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
1146
89db4ad8 1147 DP(BNX2X_MSG_SP, "sending FW Final cleanup\n");
619c5cb6
VZ
1148 REG_WR(bp, XSDM_REG_OPERATION_GEN, op_gen.command);
1149
1150 if (bnx2x_flr_clnup_reg_poll(bp, comp_addr, 1, poll_cnt) != 1) {
1151 BNX2X_ERR("FW final cleanup did not succeed\n");
51c1a580
MS
1152 DP(BNX2X_MSG_SP, "At timeout completion address contained %x\n",
1153 (REG_RD(bp, comp_addr)));
619c5cb6
VZ
1154 ret = 1;
1155 }
1156 /* Zero completion for nxt FLR */
1157 REG_WR(bp, comp_addr, 0);
1158
1159 return ret;
1160}
1161
1191cb83 1162static u8 bnx2x_is_pcie_pending(struct pci_dev *dev)
619c5cb6 1163{
619c5cb6
VZ
1164 u16 status;
1165
2a80eebc 1166 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
619c5cb6
VZ
1167 return status & PCI_EXP_DEVSTA_TRPND;
1168}
1169
1170/* PF FLR specific routines
1171*/
1172static int bnx2x_poll_hw_usage_counters(struct bnx2x *bp, u32 poll_cnt)
1173{
1174
1175 /* wait for CFC PF usage-counter to zero (includes all the VFs) */
1176 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1177 CFC_REG_NUM_LCIDS_INSIDE_PF,
1178 "CFC PF usage counter timed out",
1179 poll_cnt))
1180 return 1;
1181
1182
1183 /* Wait for DQ PF usage-counter to zero (until DQ cleanup) */
1184 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1185 DORQ_REG_PF_USAGE_CNT,
1186 "DQ PF usage counter timed out",
1187 poll_cnt))
1188 return 1;
1189
1190 /* Wait for QM PF usage-counter to zero (until DQ cleanup) */
1191 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1192 QM_REG_PF_USG_CNT_0 + 4*BP_FUNC(bp),
1193 "QM PF usage counter timed out",
1194 poll_cnt))
1195 return 1;
1196
1197 /* Wait for Timer PF usage-counters to zero (until DQ cleanup) */
1198 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1199 TM_REG_LIN0_VNIC_UC + 4*BP_PORT(bp),
1200 "Timers VNIC usage counter timed out",
1201 poll_cnt))
1202 return 1;
1203 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1204 TM_REG_LIN0_NUM_SCANS + 4*BP_PORT(bp),
1205 "Timers NUM_SCANS usage counter timed out",
1206 poll_cnt))
1207 return 1;
1208
1209 /* Wait DMAE PF usage counter to zero */
1210 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1211 dmae_reg_go_c[INIT_DMAE_C(bp)],
1212 "DMAE dommand register timed out",
1213 poll_cnt))
1214 return 1;
1215
1216 return 0;
1217}
1218
1219static void bnx2x_hw_enable_status(struct bnx2x *bp)
1220{
1221 u32 val;
1222
1223 val = REG_RD(bp, CFC_REG_WEAK_ENABLE_PF);
1224 DP(BNX2X_MSG_SP, "CFC_REG_WEAK_ENABLE_PF is 0x%x\n", val);
1225
1226 val = REG_RD(bp, PBF_REG_DISABLE_PF);
1227 DP(BNX2X_MSG_SP, "PBF_REG_DISABLE_PF is 0x%x\n", val);
1228
1229 val = REG_RD(bp, IGU_REG_PCI_PF_MSI_EN);
1230 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSI_EN is 0x%x\n", val);
1231
1232 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_EN);
1233 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_EN is 0x%x\n", val);
1234
1235 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_FUNC_MASK);
1236 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_FUNC_MASK is 0x%x\n", val);
1237
1238 val = REG_RD(bp, PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR);
1239 DP(BNX2X_MSG_SP, "PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR is 0x%x\n", val);
1240
1241 val = REG_RD(bp, PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR);
1242 DP(BNX2X_MSG_SP, "PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR is 0x%x\n", val);
1243
1244 val = REG_RD(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
1245 DP(BNX2X_MSG_SP, "PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER is 0x%x\n",
1246 val);
1247}
1248
1249static int bnx2x_pf_flr_clnup(struct bnx2x *bp)
1250{
1251 u32 poll_cnt = bnx2x_flr_clnup_poll_count(bp);
1252
1253 DP(BNX2X_MSG_SP, "Cleanup after FLR PF[%d]\n", BP_ABS_FUNC(bp));
1254
1255 /* Re-enable PF target read access */
1256 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
1257
1258 /* Poll HW usage counters */
89db4ad8 1259 DP(BNX2X_MSG_SP, "Polling usage counters\n");
619c5cb6
VZ
1260 if (bnx2x_poll_hw_usage_counters(bp, poll_cnt))
1261 return -EBUSY;
1262
1263 /* Zero the igu 'trailing edge' and 'leading edge' */
1264
1265 /* Send the FW cleanup command */
1266 if (bnx2x_send_final_clnup(bp, (u8)BP_FUNC(bp), poll_cnt))
1267 return -EBUSY;
1268
1269 /* ATC cleanup */
1270
1271 /* Verify TX hw is flushed */
1272 bnx2x_tx_hw_flushed(bp, poll_cnt);
1273
1274 /* Wait 100ms (not adjusted according to platform) */
1275 msleep(100);
1276
1277 /* Verify no pending pci transactions */
1278 if (bnx2x_is_pcie_pending(bp->pdev))
1279 BNX2X_ERR("PCIE Transactions still pending\n");
1280
1281 /* Debug */
1282 bnx2x_hw_enable_status(bp);
1283
1284 /*
1285 * Master enable - Due to WB DMAE writes performed before this
1286 * register is re-initialized as part of the regular function init
1287 */
1288 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
1289
1290 return 0;
1291}
1292
f2e0899f 1293static void bnx2x_hc_int_enable(struct bnx2x *bp)
a2fbb9ea 1294{
34f80b04 1295 int port = BP_PORT(bp);
a2fbb9ea
ET
1296 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1297 u32 val = REG_RD(bp, addr);
69c326b3
DK
1298 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1299 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1300 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
a2fbb9ea
ET
1301
1302 if (msix) {
8badd27a
EG
1303 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1304 HC_CONFIG_0_REG_INT_LINE_EN_0);
a2fbb9ea
ET
1305 val |= (HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1306 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
69c326b3
DK
1307 if (single_msix)
1308 val |= HC_CONFIG_0_REG_SINGLE_ISR_EN_0;
8badd27a
EG
1309 } else if (msi) {
1310 val &= ~HC_CONFIG_0_REG_INT_LINE_EN_0;
1311 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1312 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1313 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea
ET
1314 } else {
1315 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
615f8fd9 1316 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
a2fbb9ea
ET
1317 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1318 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
615f8fd9 1319
a0fd065c 1320 if (!CHIP_IS_E1(bp)) {
51c1a580
MS
1321 DP(NETIF_MSG_IFUP,
1322 "write %x to HC %d (addr 0x%x)\n", val, port, addr);
615f8fd9 1323
a0fd065c 1324 REG_WR(bp, addr, val);
615f8fd9 1325
a0fd065c
DK
1326 val &= ~HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0;
1327 }
a2fbb9ea
ET
1328 }
1329
a0fd065c
DK
1330 if (CHIP_IS_E1(bp))
1331 REG_WR(bp, HC_REG_INT_MASK + port*4, 0x1FFFF);
1332
51c1a580
MS
1333 DP(NETIF_MSG_IFUP,
1334 "write %x to HC %d (addr 0x%x) mode %s\n", val, port, addr,
1335 (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
a2fbb9ea
ET
1336
1337 REG_WR(bp, addr, val);
37dbbf32
EG
1338 /*
1339 * Ensure that HC_CONFIG is written before leading/trailing edge config
1340 */
1341 mmiowb();
1342 barrier();
34f80b04 1343
f2e0899f 1344 if (!CHIP_IS_E1(bp)) {
34f80b04 1345 /* init leading/trailing edge */
fb3bff17 1346 if (IS_MF(bp)) {
3395a033 1347 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
34f80b04 1348 if (bp->port.pmf)
4acac6a5
EG
1349 /* enable nig and gpio3 attention */
1350 val |= 0x1100;
34f80b04
EG
1351 } else
1352 val = 0xffff;
1353
1354 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
1355 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
1356 }
37dbbf32
EG
1357
1358 /* Make sure that interrupts are indeed enabled from here on */
1359 mmiowb();
a2fbb9ea
ET
1360}
1361
f2e0899f
DK
1362static void bnx2x_igu_int_enable(struct bnx2x *bp)
1363{
1364 u32 val;
30a5de77
DK
1365 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1366 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1367 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
f2e0899f
DK
1368
1369 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1370
1371 if (msix) {
1372 val &= ~(IGU_PF_CONF_INT_LINE_EN |
1373 IGU_PF_CONF_SINGLE_ISR_EN);
1374 val |= (IGU_PF_CONF_FUNC_EN |
1375 IGU_PF_CONF_MSI_MSIX_EN |
1376 IGU_PF_CONF_ATTN_BIT_EN);
30a5de77
DK
1377
1378 if (single_msix)
1379 val |= IGU_PF_CONF_SINGLE_ISR_EN;
f2e0899f
DK
1380 } else if (msi) {
1381 val &= ~IGU_PF_CONF_INT_LINE_EN;
1382 val |= (IGU_PF_CONF_FUNC_EN |
1383 IGU_PF_CONF_MSI_MSIX_EN |
1384 IGU_PF_CONF_ATTN_BIT_EN |
1385 IGU_PF_CONF_SINGLE_ISR_EN);
1386 } else {
1387 val &= ~IGU_PF_CONF_MSI_MSIX_EN;
1388 val |= (IGU_PF_CONF_FUNC_EN |
1389 IGU_PF_CONF_INT_LINE_EN |
1390 IGU_PF_CONF_ATTN_BIT_EN |
1391 IGU_PF_CONF_SINGLE_ISR_EN);
1392 }
1393
51c1a580 1394 DP(NETIF_MSG_IFUP, "write 0x%x to IGU mode %s\n",
f2e0899f
DK
1395 val, (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
1396
1397 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1398
79a8557a
YM
1399 if (val & IGU_PF_CONF_INT_LINE_EN)
1400 pci_intx(bp->pdev, true);
1401
f2e0899f
DK
1402 barrier();
1403
1404 /* init leading/trailing edge */
1405 if (IS_MF(bp)) {
3395a033 1406 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
1407 if (bp->port.pmf)
1408 /* enable nig and gpio3 attention */
1409 val |= 0x1100;
1410 } else
1411 val = 0xffff;
1412
1413 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
1414 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
1415
1416 /* Make sure that interrupts are indeed enabled from here on */
1417 mmiowb();
1418}
1419
1420void bnx2x_int_enable(struct bnx2x *bp)
1421{
1422 if (bp->common.int_block == INT_BLOCK_HC)
1423 bnx2x_hc_int_enable(bp);
1424 else
1425 bnx2x_igu_int_enable(bp);
1426}
1427
1428static void bnx2x_hc_int_disable(struct bnx2x *bp)
a2fbb9ea 1429{
34f80b04 1430 int port = BP_PORT(bp);
a2fbb9ea
ET
1431 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1432 u32 val = REG_RD(bp, addr);
1433
a0fd065c
DK
1434 /*
1435 * in E1 we must use only PCI configuration space to disable
1436 * MSI/MSIX capablility
1437 * It's forbitten to disable IGU_PF_CONF_MSI_MSIX_EN in HC block
1438 */
1439 if (CHIP_IS_E1(bp)) {
1440 /* Since IGU_PF_CONF_MSI_MSIX_EN still always on
1441 * Use mask register to prevent from HC sending interrupts
1442 * after we exit the function
1443 */
1444 REG_WR(bp, HC_REG_INT_MASK + port*4, 0);
1445
1446 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1447 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1448 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
1449 } else
1450 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1451 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1452 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1453 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea 1454
51c1a580
MS
1455 DP(NETIF_MSG_IFDOWN,
1456 "write %x to HC %d (addr 0x%x)\n",
a2fbb9ea
ET
1457 val, port, addr);
1458
8badd27a
EG
1459 /* flush all outstanding writes */
1460 mmiowb();
1461
a2fbb9ea
ET
1462 REG_WR(bp, addr, val);
1463 if (REG_RD(bp, addr) != val)
1464 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1465}
1466
f2e0899f
DK
1467static void bnx2x_igu_int_disable(struct bnx2x *bp)
1468{
1469 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1470
1471 val &= ~(IGU_PF_CONF_MSI_MSIX_EN |
1472 IGU_PF_CONF_INT_LINE_EN |
1473 IGU_PF_CONF_ATTN_BIT_EN);
1474
51c1a580 1475 DP(NETIF_MSG_IFDOWN, "write %x to IGU\n", val);
f2e0899f
DK
1476
1477 /* flush all outstanding writes */
1478 mmiowb();
1479
1480 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1481 if (REG_RD(bp, IGU_REG_PF_CONFIGURATION) != val)
1482 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1483}
1484
910cc727 1485static void bnx2x_int_disable(struct bnx2x *bp)
f2e0899f
DK
1486{
1487 if (bp->common.int_block == INT_BLOCK_HC)
1488 bnx2x_hc_int_disable(bp);
1489 else
1490 bnx2x_igu_int_disable(bp);
1491}
1492
9f6c9258 1493void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw)
a2fbb9ea 1494{
a2fbb9ea 1495 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8badd27a 1496 int i, offset;
a2fbb9ea 1497
f8ef6e44
YG
1498 if (disable_hw)
1499 /* prevent the HW from sending interrupts */
1500 bnx2x_int_disable(bp);
a2fbb9ea
ET
1501
1502 /* make sure all ISRs are done */
1503 if (msix) {
8badd27a
EG
1504 synchronize_irq(bp->msix_table[0].vector);
1505 offset = 1;
55c11941
MS
1506 if (CNIC_SUPPORT(bp))
1507 offset++;
ec6ba945 1508 for_each_eth_queue(bp, i)
754a2f52 1509 synchronize_irq(bp->msix_table[offset++].vector);
a2fbb9ea
ET
1510 } else
1511 synchronize_irq(bp->pdev->irq);
1512
1513 /* make sure sp_task is not running */
1cf167f2 1514 cancel_delayed_work(&bp->sp_task);
3deb8167 1515 cancel_delayed_work(&bp->period_task);
1cf167f2 1516 flush_workqueue(bnx2x_wq);
a2fbb9ea
ET
1517}
1518
34f80b04 1519/* fast path */
a2fbb9ea
ET
1520
1521/*
34f80b04 1522 * General service functions
a2fbb9ea
ET
1523 */
1524
72fd0718
VZ
1525/* Return true if succeeded to acquire the lock */
1526static bool bnx2x_trylock_hw_lock(struct bnx2x *bp, u32 resource)
1527{
1528 u32 lock_status;
1529 u32 resource_bit = (1 << resource);
1530 int func = BP_FUNC(bp);
1531 u32 hw_lock_control_reg;
1532
51c1a580
MS
1533 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1534 "Trying to take a lock on resource %d\n", resource);
72fd0718
VZ
1535
1536 /* Validating that the resource is within range */
1537 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1538 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
72fd0718
VZ
1539 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1540 resource, HW_LOCK_MAX_RESOURCE_VALUE);
0fdf4d09 1541 return false;
72fd0718
VZ
1542 }
1543
1544 if (func <= 5)
1545 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1546 else
1547 hw_lock_control_reg =
1548 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1549
1550 /* Try to acquire the lock */
1551 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1552 lock_status = REG_RD(bp, hw_lock_control_reg);
1553 if (lock_status & resource_bit)
1554 return true;
1555
51c1a580
MS
1556 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1557 "Failed to get a lock on resource %d\n", resource);
72fd0718
VZ
1558 return false;
1559}
1560
c9ee9206
VZ
1561/**
1562 * bnx2x_get_leader_lock_resource - get the recovery leader resource id
1563 *
1564 * @bp: driver handle
1565 *
1566 * Returns the recovery leader resource id according to the engine this function
1567 * belongs to. Currently only only 2 engines is supported.
1568 */
1191cb83 1569static int bnx2x_get_leader_lock_resource(struct bnx2x *bp)
c9ee9206
VZ
1570{
1571 if (BP_PATH(bp))
1572 return HW_LOCK_RESOURCE_RECOVERY_LEADER_1;
1573 else
1574 return HW_LOCK_RESOURCE_RECOVERY_LEADER_0;
1575}
1576
1577/**
1578 * bnx2x_trylock_leader_lock- try to aquire a leader lock.
1579 *
1580 * @bp: driver handle
1581 *
1191cb83 1582 * Tries to aquire a leader lock for current engine.
c9ee9206 1583 */
1191cb83 1584static bool bnx2x_trylock_leader_lock(struct bnx2x *bp)
c9ee9206
VZ
1585{
1586 return bnx2x_trylock_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1587}
1588
619c5cb6 1589static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err);
55c11941 1590
3196a88a 1591
619c5cb6 1592void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe)
a2fbb9ea
ET
1593{
1594 struct bnx2x *bp = fp->bp;
1595 int cid = SW_CID(rr_cqe->ramrod_cqe.conn_and_cmd_data);
1596 int command = CQE_CMD(rr_cqe->ramrod_cqe.conn_and_cmd_data);
619c5cb6 1597 enum bnx2x_queue_cmd drv_cmd = BNX2X_Q_CMD_MAX;
15192a8c 1598 struct bnx2x_queue_sp_obj *q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a2fbb9ea 1599
34f80b04 1600 DP(BNX2X_MSG_SP,
a2fbb9ea 1601 "fp %d cid %d got ramrod #%d state is %x type is %d\n",
0626b899 1602 fp->index, cid, command, bp->state,
34f80b04 1603 rr_cqe->ramrod_cqe.ramrod_type);
a2fbb9ea 1604
619c5cb6
VZ
1605 switch (command) {
1606 case (RAMROD_CMD_ID_ETH_CLIENT_UPDATE):
d6cae238 1607 DP(BNX2X_MSG_SP, "got UPDATE ramrod. CID %d\n", cid);
619c5cb6
VZ
1608 drv_cmd = BNX2X_Q_CMD_UPDATE;
1609 break;
d6cae238 1610
619c5cb6 1611 case (RAMROD_CMD_ID_ETH_CLIENT_SETUP):
d6cae238 1612 DP(BNX2X_MSG_SP, "got MULTI[%d] setup ramrod\n", cid);
619c5cb6 1613 drv_cmd = BNX2X_Q_CMD_SETUP;
a2fbb9ea
ET
1614 break;
1615
6383c0b3 1616 case (RAMROD_CMD_ID_ETH_TX_QUEUE_SETUP):
51c1a580 1617 DP(BNX2X_MSG_SP, "got MULTI[%d] tx-only setup ramrod\n", cid);
6383c0b3
AE
1618 drv_cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
1619 break;
1620
619c5cb6 1621 case (RAMROD_CMD_ID_ETH_HALT):
d6cae238 1622 DP(BNX2X_MSG_SP, "got MULTI[%d] halt ramrod\n", cid);
619c5cb6 1623 drv_cmd = BNX2X_Q_CMD_HALT;
a2fbb9ea
ET
1624 break;
1625
619c5cb6 1626 case (RAMROD_CMD_ID_ETH_TERMINATE):
d6cae238 1627 DP(BNX2X_MSG_SP, "got MULTI[%d] teminate ramrod\n", cid);
619c5cb6 1628 drv_cmd = BNX2X_Q_CMD_TERMINATE;
a2fbb9ea
ET
1629 break;
1630
619c5cb6 1631 case (RAMROD_CMD_ID_ETH_EMPTY):
d6cae238 1632 DP(BNX2X_MSG_SP, "got MULTI[%d] empty ramrod\n", cid);
619c5cb6 1633 drv_cmd = BNX2X_Q_CMD_EMPTY;
993ac7b5 1634 break;
619c5cb6
VZ
1635
1636 default:
1637 BNX2X_ERR("unexpected MC reply (%d) on fp[%d]\n",
1638 command, fp->index);
1639 return;
523224a3 1640 }
3196a88a 1641
619c5cb6
VZ
1642 if ((drv_cmd != BNX2X_Q_CMD_MAX) &&
1643 q_obj->complete_cmd(bp, q_obj, drv_cmd))
1644 /* q_obj->complete_cmd() failure means that this was
1645 * an unexpected completion.
1646 *
1647 * In this case we don't want to increase the bp->spq_left
1648 * because apparently we haven't sent this command the first
1649 * place.
1650 */
1651#ifdef BNX2X_STOP_ON_ERROR
1652 bnx2x_panic();
1653#else
1654 return;
1655#endif
1656
8fe23fbd 1657 smp_mb__before_atomic_inc();
6e30dd4e 1658 atomic_inc(&bp->cq_spq_left);
619c5cb6
VZ
1659 /* push the change in bp->spq_left and towards the memory */
1660 smp_mb__after_atomic_inc();
49d66772 1661
d6cae238
VZ
1662 DP(BNX2X_MSG_SP, "bp->cq_spq_left %x\n", atomic_read(&bp->cq_spq_left));
1663
a3348722
BW
1664 if ((drv_cmd == BNX2X_Q_CMD_UPDATE) && (IS_FCOE_FP(fp)) &&
1665 (!!test_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state))) {
1666 /* if Q update ramrod is completed for last Q in AFEX vif set
1667 * flow, then ACK MCP at the end
1668 *
1669 * mark pending ACK to MCP bit.
1670 * prevent case that both bits are cleared.
1671 * At the end of load/unload driver checks that
1672 * sp_state is cleaerd, and this order prevents
1673 * races
1674 */
1675 smp_mb__before_clear_bit();
1676 set_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK, &bp->sp_state);
1677 wmb();
1678 clear_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
1679 smp_mb__after_clear_bit();
1680
1681 /* schedule workqueue to send ack to MCP */
1682 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
1683 }
1684
523224a3 1685 return;
a2fbb9ea
ET
1686}
1687
619c5cb6
VZ
1688void bnx2x_update_rx_prod(struct bnx2x *bp, struct bnx2x_fastpath *fp,
1689 u16 bd_prod, u16 rx_comp_prod, u16 rx_sge_prod)
1690{
1691 u32 start = BAR_USTRORM_INTMEM + fp->ustorm_rx_prods_offset;
1692
1693 bnx2x_update_rx_prod_gen(bp, fp, bd_prod, rx_comp_prod, rx_sge_prod,
1694 start);
1695}
1696
9f6c9258 1697irqreturn_t bnx2x_interrupt(int irq, void *dev_instance)
a2fbb9ea 1698{
555f6c78 1699 struct bnx2x *bp = netdev_priv(dev_instance);
a2fbb9ea 1700 u16 status = bnx2x_ack_int(bp);
34f80b04 1701 u16 mask;
ca00392c 1702 int i;
6383c0b3 1703 u8 cos;
a2fbb9ea 1704
34f80b04 1705 /* Return here if interrupt is shared and it's not for us */
a2fbb9ea
ET
1706 if (unlikely(status == 0)) {
1707 DP(NETIF_MSG_INTR, "not our interrupt!\n");
1708 return IRQ_NONE;
1709 }
f5372251 1710 DP(NETIF_MSG_INTR, "got an interrupt status 0x%x\n", status);
a2fbb9ea 1711
3196a88a
EG
1712#ifdef BNX2X_STOP_ON_ERROR
1713 if (unlikely(bp->panic))
1714 return IRQ_HANDLED;
1715#endif
1716
ec6ba945 1717 for_each_eth_queue(bp, i) {
ca00392c 1718 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea 1719
55c11941 1720 mask = 0x2 << (fp->index + CNIC_SUPPORT(bp));
ca00392c 1721 if (status & mask) {
619c5cb6 1722 /* Handle Rx or Tx according to SB id */
54b9ddaa 1723 prefetch(fp->rx_cons_sb);
6383c0b3 1724 for_each_cos_in_tx_queue(fp, cos)
65565884 1725 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
523224a3 1726 prefetch(&fp->sb_running_index[SM_RX_ID]);
54b9ddaa 1727 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
ca00392c
EG
1728 status &= ~mask;
1729 }
a2fbb9ea
ET
1730 }
1731
55c11941
MS
1732 if (CNIC_SUPPORT(bp)) {
1733 mask = 0x2;
1734 if (status & (mask | 0x1)) {
1735 struct cnic_ops *c_ops = NULL;
993ac7b5 1736
55c11941
MS
1737 if (likely(bp->state == BNX2X_STATE_OPEN)) {
1738 rcu_read_lock();
1739 c_ops = rcu_dereference(bp->cnic_ops);
1740 if (c_ops)
1741 c_ops->cnic_handler(bp->cnic_data,
1742 NULL);
1743 rcu_read_unlock();
1744 }
993ac7b5 1745
55c11941
MS
1746 status &= ~mask;
1747 }
993ac7b5 1748 }
a2fbb9ea 1749
34f80b04 1750 if (unlikely(status & 0x1)) {
1cf167f2 1751 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
a2fbb9ea
ET
1752
1753 status &= ~0x1;
1754 if (!status)
1755 return IRQ_HANDLED;
1756 }
1757
cdaa7cb8
VZ
1758 if (unlikely(status))
1759 DP(NETIF_MSG_INTR, "got an unknown interrupt! (status 0x%x)\n",
34f80b04 1760 status);
a2fbb9ea 1761
c18487ee 1762 return IRQ_HANDLED;
a2fbb9ea
ET
1763}
1764
c18487ee
YR
1765/* Link */
1766
1767/*
1768 * General service functions
1769 */
a2fbb9ea 1770
9f6c9258 1771int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1772{
1773 u32 lock_status;
1774 u32 resource_bit = (1 << resource);
4a37fb66
YG
1775 int func = BP_FUNC(bp);
1776 u32 hw_lock_control_reg;
c18487ee 1777 int cnt;
a2fbb9ea 1778
c18487ee
YR
1779 /* Validating that the resource is within range */
1780 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1781 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1782 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1783 return -EINVAL;
1784 }
a2fbb9ea 1785
4a37fb66
YG
1786 if (func <= 5) {
1787 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1788 } else {
1789 hw_lock_control_reg =
1790 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1791 }
1792
c18487ee 1793 /* Validating that the resource is not already taken */
4a37fb66 1794 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1795 if (lock_status & resource_bit) {
51c1a580 1796 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x\n",
c18487ee
YR
1797 lock_status, resource_bit);
1798 return -EEXIST;
1799 }
a2fbb9ea 1800
46230476
EG
1801 /* Try for 5 second every 5ms */
1802 for (cnt = 0; cnt < 1000; cnt++) {
c18487ee 1803 /* Try to acquire the lock */
4a37fb66
YG
1804 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1805 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee
YR
1806 if (lock_status & resource_bit)
1807 return 0;
a2fbb9ea 1808
c18487ee 1809 msleep(5);
a2fbb9ea 1810 }
51c1a580 1811 BNX2X_ERR("Timeout\n");
c18487ee
YR
1812 return -EAGAIN;
1813}
a2fbb9ea 1814
c9ee9206
VZ
1815int bnx2x_release_leader_lock(struct bnx2x *bp)
1816{
1817 return bnx2x_release_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1818}
1819
9f6c9258 1820int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1821{
1822 u32 lock_status;
1823 u32 resource_bit = (1 << resource);
4a37fb66
YG
1824 int func = BP_FUNC(bp);
1825 u32 hw_lock_control_reg;
a2fbb9ea 1826
c18487ee
YR
1827 /* Validating that the resource is within range */
1828 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1829 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1830 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1831 return -EINVAL;
1832 }
1833
4a37fb66
YG
1834 if (func <= 5) {
1835 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1836 } else {
1837 hw_lock_control_reg =
1838 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1839 }
1840
c18487ee 1841 /* Validating that the resource is currently taken */
4a37fb66 1842 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1843 if (!(lock_status & resource_bit)) {
51c1a580 1844 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x. unlock was called but lock wasn't taken!\n",
c18487ee
YR
1845 lock_status, resource_bit);
1846 return -EFAULT;
a2fbb9ea
ET
1847 }
1848
9f6c9258
DK
1849 REG_WR(bp, hw_lock_control_reg, resource_bit);
1850 return 0;
c18487ee 1851}
a2fbb9ea 1852
9f6c9258 1853
4acac6a5
EG
1854int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port)
1855{
1856 /* The GPIO should be swapped if swap register is set and active */
1857 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
1858 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
1859 int gpio_shift = gpio_num +
1860 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1861 u32 gpio_mask = (1 << gpio_shift);
1862 u32 gpio_reg;
1863 int value;
1864
1865 if (gpio_num > MISC_REGISTERS_GPIO_3) {
1866 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
1867 return -EINVAL;
1868 }
1869
1870 /* read GPIO value */
1871 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
1872
1873 /* get the requested pin value */
1874 if ((gpio_reg & gpio_mask) == gpio_mask)
1875 value = 1;
1876 else
1877 value = 0;
1878
1879 DP(NETIF_MSG_LINK, "pin %d value 0x%x\n", gpio_num, value);
1880
1881 return value;
1882}
1883
17de50b7 1884int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
c18487ee
YR
1885{
1886 /* The GPIO should be swapped if swap register is set and active */
1887 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
17de50b7 1888 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
c18487ee
YR
1889 int gpio_shift = gpio_num +
1890 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1891 u32 gpio_mask = (1 << gpio_shift);
1892 u32 gpio_reg;
a2fbb9ea 1893
c18487ee
YR
1894 if (gpio_num > MISC_REGISTERS_GPIO_3) {
1895 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
1896 return -EINVAL;
1897 }
a2fbb9ea 1898
4a37fb66 1899 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
c18487ee
YR
1900 /* read GPIO and mask except the float bits */
1901 gpio_reg = (REG_RD(bp, MISC_REG_GPIO) & MISC_REGISTERS_GPIO_FLOAT);
a2fbb9ea 1902
c18487ee
YR
1903 switch (mode) {
1904 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
51c1a580
MS
1905 DP(NETIF_MSG_LINK,
1906 "Set GPIO %d (shift %d) -> output low\n",
c18487ee
YR
1907 gpio_num, gpio_shift);
1908 /* clear FLOAT and set CLR */
1909 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1910 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_CLR_POS);
1911 break;
a2fbb9ea 1912
c18487ee 1913 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
51c1a580
MS
1914 DP(NETIF_MSG_LINK,
1915 "Set GPIO %d (shift %d) -> output high\n",
c18487ee
YR
1916 gpio_num, gpio_shift);
1917 /* clear FLOAT and set SET */
1918 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1919 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_SET_POS);
1920 break;
a2fbb9ea 1921
17de50b7 1922 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
51c1a580
MS
1923 DP(NETIF_MSG_LINK,
1924 "Set GPIO %d (shift %d) -> input\n",
c18487ee
YR
1925 gpio_num, gpio_shift);
1926 /* set FLOAT */
1927 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1928 break;
a2fbb9ea 1929
c18487ee
YR
1930 default:
1931 break;
a2fbb9ea
ET
1932 }
1933
c18487ee 1934 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
4a37fb66 1935 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
f1410647 1936
c18487ee 1937 return 0;
a2fbb9ea
ET
1938}
1939
0d40f0d4
YR
1940int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode)
1941{
1942 u32 gpio_reg = 0;
1943 int rc = 0;
1944
1945 /* Any port swapping should be handled by caller. */
1946
1947 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
1948 /* read GPIO and mask except the float bits */
1949 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
1950 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_FLOAT_POS);
1951 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_CLR_POS);
1952 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_SET_POS);
1953
1954 switch (mode) {
1955 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
1956 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output low\n", pins);
1957 /* set CLR */
1958 gpio_reg |= (pins << MISC_REGISTERS_GPIO_CLR_POS);
1959 break;
1960
1961 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
1962 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output high\n", pins);
1963 /* set SET */
1964 gpio_reg |= (pins << MISC_REGISTERS_GPIO_SET_POS);
1965 break;
1966
1967 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
1968 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> input\n", pins);
1969 /* set FLOAT */
1970 gpio_reg |= (pins << MISC_REGISTERS_GPIO_FLOAT_POS);
1971 break;
1972
1973 default:
1974 BNX2X_ERR("Invalid GPIO mode assignment %d\n", mode);
1975 rc = -EINVAL;
1976 break;
1977 }
1978
1979 if (rc == 0)
1980 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
1981
1982 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
1983
1984 return rc;
1985}
1986
4acac6a5
EG
1987int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
1988{
1989 /* The GPIO should be swapped if swap register is set and active */
1990 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
1991 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
1992 int gpio_shift = gpio_num +
1993 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1994 u32 gpio_mask = (1 << gpio_shift);
1995 u32 gpio_reg;
1996
1997 if (gpio_num > MISC_REGISTERS_GPIO_3) {
1998 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
1999 return -EINVAL;
2000 }
2001
2002 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2003 /* read GPIO int */
2004 gpio_reg = REG_RD(bp, MISC_REG_GPIO_INT);
2005
2006 switch (mode) {
2007 case MISC_REGISTERS_GPIO_INT_OUTPUT_CLR:
51c1a580
MS
2008 DP(NETIF_MSG_LINK,
2009 "Clear GPIO INT %d (shift %d) -> output low\n",
2010 gpio_num, gpio_shift);
4acac6a5
EG
2011 /* clear SET and set CLR */
2012 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2013 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2014 break;
2015
2016 case MISC_REGISTERS_GPIO_INT_OUTPUT_SET:
51c1a580
MS
2017 DP(NETIF_MSG_LINK,
2018 "Set GPIO INT %d (shift %d) -> output high\n",
2019 gpio_num, gpio_shift);
4acac6a5
EG
2020 /* clear CLR and set SET */
2021 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2022 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2023 break;
2024
2025 default:
2026 break;
2027 }
2028
2029 REG_WR(bp, MISC_REG_GPIO_INT, gpio_reg);
2030 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2031
2032 return 0;
2033}
2034
d6d99a3f 2035static int bnx2x_set_spio(struct bnx2x *bp, int spio, u32 mode)
a2fbb9ea 2036{
c18487ee 2037 u32 spio_reg;
a2fbb9ea 2038
d6d99a3f
YM
2039 /* Only 2 SPIOs are configurable */
2040 if ((spio != MISC_SPIO_SPIO4) && (spio != MISC_SPIO_SPIO5)) {
2041 BNX2X_ERR("Invalid SPIO 0x%x\n", spio);
c18487ee 2042 return -EINVAL;
a2fbb9ea
ET
2043 }
2044
4a37fb66 2045 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2046 /* read SPIO and mask except the float bits */
d6d99a3f 2047 spio_reg = (REG_RD(bp, MISC_REG_SPIO) & MISC_SPIO_FLOAT);
a2fbb9ea 2048
c18487ee 2049 switch (mode) {
d6d99a3f
YM
2050 case MISC_SPIO_OUTPUT_LOW:
2051 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output low\n", spio);
c18487ee 2052 /* clear FLOAT and set CLR */
d6d99a3f
YM
2053 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2054 spio_reg |= (spio << MISC_SPIO_CLR_POS);
c18487ee 2055 break;
a2fbb9ea 2056
d6d99a3f
YM
2057 case MISC_SPIO_OUTPUT_HIGH:
2058 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output high\n", spio);
c18487ee 2059 /* clear FLOAT and set SET */
d6d99a3f
YM
2060 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2061 spio_reg |= (spio << MISC_SPIO_SET_POS);
c18487ee 2062 break;
a2fbb9ea 2063
d6d99a3f
YM
2064 case MISC_SPIO_INPUT_HI_Z:
2065 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> input\n", spio);
c18487ee 2066 /* set FLOAT */
d6d99a3f 2067 spio_reg |= (spio << MISC_SPIO_FLOAT_POS);
c18487ee 2068 break;
a2fbb9ea 2069
c18487ee
YR
2070 default:
2071 break;
a2fbb9ea
ET
2072 }
2073
c18487ee 2074 REG_WR(bp, MISC_REG_SPIO, spio_reg);
4a37fb66 2075 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2076
a2fbb9ea
ET
2077 return 0;
2078}
2079
9f6c9258 2080void bnx2x_calc_fc_adv(struct bnx2x *bp)
a2fbb9ea 2081{
a22f0788 2082 u8 cfg_idx = bnx2x_get_link_cfg_idx(bp);
ad33ea3a
EG
2083 switch (bp->link_vars.ieee_fc &
2084 MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK) {
c18487ee 2085 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_NONE:
a22f0788 2086 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2087 ADVERTISED_Pause);
c18487ee 2088 break;
356e2385 2089
c18487ee 2090 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH:
a22f0788 2091 bp->port.advertising[cfg_idx] |= (ADVERTISED_Asym_Pause |
f85582f8 2092 ADVERTISED_Pause);
c18487ee 2093 break;
356e2385 2094
c18487ee 2095 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC:
a22f0788 2096 bp->port.advertising[cfg_idx] |= ADVERTISED_Asym_Pause;
c18487ee 2097 break;
356e2385 2098
c18487ee 2099 default:
a22f0788 2100 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2101 ADVERTISED_Pause);
c18487ee
YR
2102 break;
2103 }
2104}
f1410647 2105
cd1dfce2 2106static void bnx2x_set_requested_fc(struct bnx2x *bp)
c18487ee 2107{
cd1dfce2
YM
2108 /* Initialize link parameters structure variables
2109 * It is recommended to turn off RX FC for jumbo frames
2110 * for better performance
2111 */
2112 if (CHIP_IS_E1x(bp) && (bp->dev->mtu > 5000))
2113 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_TX;
2114 else
2115 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_BOTH;
2116}
a2fbb9ea 2117
cd1dfce2
YM
2118int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode)
2119{
2120 int rc, cfx_idx = bnx2x_get_link_cfg_idx(bp);
2121 u16 req_line_speed = bp->link_params.req_line_speed[cfx_idx];
2122
2123 if (!BP_NOMCP(bp)) {
2124 bnx2x_set_requested_fc(bp);
4a37fb66 2125 bnx2x_acquire_phy_lock(bp);
b5bf9068 2126
a22f0788 2127 if (load_mode == LOAD_DIAG) {
1cb0c788
YR
2128 struct link_params *lp = &bp->link_params;
2129 lp->loopback_mode = LOOPBACK_XGXS;
2130 /* do PHY loopback at 10G speed, if possible */
2131 if (lp->req_line_speed[cfx_idx] < SPEED_10000) {
2132 if (lp->speed_cap_mask[cfx_idx] &
2133 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G)
2134 lp->req_line_speed[cfx_idx] =
2135 SPEED_10000;
2136 else
2137 lp->req_line_speed[cfx_idx] =
2138 SPEED_1000;
2139 }
a22f0788 2140 }
b5bf9068 2141
8970b2e4
MS
2142 if (load_mode == LOAD_LOOPBACK_EXT) {
2143 struct link_params *lp = &bp->link_params;
2144 lp->loopback_mode = LOOPBACK_EXT;
2145 }
2146
19680c48 2147 rc = bnx2x_phy_init(&bp->link_params, &bp->link_vars);
b5bf9068 2148
4a37fb66 2149 bnx2x_release_phy_lock(bp);
a2fbb9ea 2150
3c96c68b
EG
2151 bnx2x_calc_fc_adv(bp);
2152
cd1dfce2 2153 if (bp->link_vars.link_up) {
b5bf9068 2154 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
19680c48 2155 bnx2x_link_report(bp);
cd1dfce2
YM
2156 }
2157 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
a22f0788 2158 bp->link_params.req_line_speed[cfx_idx] = req_line_speed;
19680c48
EG
2159 return rc;
2160 }
f5372251 2161 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
19680c48 2162 return -EINVAL;
a2fbb9ea
ET
2163}
2164
9f6c9258 2165void bnx2x_link_set(struct bnx2x *bp)
a2fbb9ea 2166{
19680c48 2167 if (!BP_NOMCP(bp)) {
4a37fb66 2168 bnx2x_acquire_phy_lock(bp);
19680c48 2169 bnx2x_phy_init(&bp->link_params, &bp->link_vars);
4a37fb66 2170 bnx2x_release_phy_lock(bp);
a2fbb9ea 2171
19680c48
EG
2172 bnx2x_calc_fc_adv(bp);
2173 } else
f5372251 2174 BNX2X_ERR("Bootcode is missing - can not set link\n");
c18487ee 2175}
a2fbb9ea 2176
c18487ee
YR
2177static void bnx2x__link_reset(struct bnx2x *bp)
2178{
19680c48 2179 if (!BP_NOMCP(bp)) {
4a37fb66 2180 bnx2x_acquire_phy_lock(bp);
5d07d868 2181 bnx2x_lfa_reset(&bp->link_params, &bp->link_vars);
4a37fb66 2182 bnx2x_release_phy_lock(bp);
19680c48 2183 } else
f5372251 2184 BNX2X_ERR("Bootcode is missing - can not reset link\n");
c18487ee 2185}
a2fbb9ea 2186
5d07d868
YM
2187void bnx2x_force_link_reset(struct bnx2x *bp)
2188{
2189 bnx2x_acquire_phy_lock(bp);
2190 bnx2x_link_reset(&bp->link_params, &bp->link_vars, 1);
2191 bnx2x_release_phy_lock(bp);
2192}
2193
a22f0788 2194u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes)
c18487ee 2195{
2145a920 2196 u8 rc = 0;
a2fbb9ea 2197
2145a920
VZ
2198 if (!BP_NOMCP(bp)) {
2199 bnx2x_acquire_phy_lock(bp);
a22f0788
YR
2200 rc = bnx2x_test_link(&bp->link_params, &bp->link_vars,
2201 is_serdes);
2145a920
VZ
2202 bnx2x_release_phy_lock(bp);
2203 } else
2204 BNX2X_ERR("Bootcode is missing - can not test link\n");
a2fbb9ea 2205
c18487ee
YR
2206 return rc;
2207}
a2fbb9ea 2208
34f80b04 2209
2691d51d
EG
2210/* Calculates the sum of vn_min_rates.
2211 It's needed for further normalizing of the min_rates.
2212 Returns:
2213 sum of vn_min_rates.
2214 or
2215 0 - if all the min_rates are 0.
2216 In the later case fainess algorithm should be deactivated.
2217 If not all min_rates are zero then those that are zeroes will be set to 1.
2218 */
b475d78f
YM
2219static void bnx2x_calc_vn_min(struct bnx2x *bp,
2220 struct cmng_init_input *input)
2691d51d
EG
2221{
2222 int all_zero = 1;
2691d51d
EG
2223 int vn;
2224
3395a033 2225 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
f2e0899f 2226 u32 vn_cfg = bp->mf_config[vn];
2691d51d
EG
2227 u32 vn_min_rate = ((vn_cfg & FUNC_MF_CFG_MIN_BW_MASK) >>
2228 FUNC_MF_CFG_MIN_BW_SHIFT) * 100;
2229
2230 /* Skip hidden vns */
2231 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
b475d78f 2232 vn_min_rate = 0;
2691d51d 2233 /* If min rate is zero - set it to 1 */
b475d78f 2234 else if (!vn_min_rate)
2691d51d
EG
2235 vn_min_rate = DEF_MIN_RATE;
2236 else
2237 all_zero = 0;
2238
b475d78f 2239 input->vnic_min_rate[vn] = vn_min_rate;
2691d51d
EG
2240 }
2241
30ae438b
DK
2242 /* if ETS or all min rates are zeros - disable fairness */
2243 if (BNX2X_IS_ETS_ENABLED(bp)) {
b475d78f 2244 input->flags.cmng_enables &=
30ae438b
DK
2245 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2246 DP(NETIF_MSG_IFUP, "Fairness will be disabled due to ETS\n");
2247 } else if (all_zero) {
b475d78f 2248 input->flags.cmng_enables &=
b015e3d1 2249 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
b475d78f
YM
2250 DP(NETIF_MSG_IFUP,
2251 "All MIN values are zeroes fairness will be disabled\n");
b015e3d1 2252 } else
b475d78f 2253 input->flags.cmng_enables |=
b015e3d1 2254 CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2691d51d
EG
2255}
2256
b475d78f
YM
2257static void bnx2x_calc_vn_max(struct bnx2x *bp, int vn,
2258 struct cmng_init_input *input)
34f80b04 2259{
b475d78f 2260 u16 vn_max_rate;
f2e0899f 2261 u32 vn_cfg = bp->mf_config[vn];
34f80b04 2262
b475d78f 2263 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
34f80b04 2264 vn_max_rate = 0;
b475d78f 2265 else {
faa6fcbb
DK
2266 u32 maxCfg = bnx2x_extract_max_cfg(bp, vn_cfg);
2267
b475d78f 2268 if (IS_MF_SI(bp)) {
faa6fcbb
DK
2269 /* maxCfg in percents of linkspeed */
2270 vn_max_rate = (bp->link_vars.line_speed * maxCfg) / 100;
b475d78f 2271 } else /* SD modes */
faa6fcbb
DK
2272 /* maxCfg is absolute in 100Mb units */
2273 vn_max_rate = maxCfg * 100;
34f80b04 2274 }
f85582f8 2275
b475d78f 2276 DP(NETIF_MSG_IFUP, "vn %d: vn_max_rate %d\n", vn, vn_max_rate);
34f80b04 2277
b475d78f 2278 input->vnic_max_rate[vn] = vn_max_rate;
34f80b04 2279}
f85582f8 2280
b475d78f 2281
523224a3
DK
2282static int bnx2x_get_cmng_fns_mode(struct bnx2x *bp)
2283{
2284 if (CHIP_REV_IS_SLOW(bp))
2285 return CMNG_FNS_NONE;
fb3bff17 2286 if (IS_MF(bp))
523224a3
DK
2287 return CMNG_FNS_MINMAX;
2288
2289 return CMNG_FNS_NONE;
2290}
2291
2ae17f66 2292void bnx2x_read_mf_cfg(struct bnx2x *bp)
523224a3 2293{
0793f83f 2294 int vn, n = (CHIP_MODE_IS_4_PORT(bp) ? 2 : 1);
523224a3
DK
2295
2296 if (BP_NOMCP(bp))
2297 return; /* what should be the default bvalue in this case */
2298
0793f83f
DK
2299 /* For 2 port configuration the absolute function number formula
2300 * is:
2301 * abs_func = 2 * vn + BP_PORT + BP_PATH
2302 *
2303 * and there are 4 functions per port
2304 *
2305 * For 4 port configuration it is
2306 * abs_func = 4 * vn + 2 * BP_PORT + BP_PATH
2307 *
2308 * and there are 2 functions per port
2309 */
3395a033 2310 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
0793f83f
DK
2311 int /*abs*/func = n * (2 * vn + BP_PORT(bp)) + BP_PATH(bp);
2312
2313 if (func >= E1H_FUNC_MAX)
2314 break;
2315
f2e0899f 2316 bp->mf_config[vn] =
523224a3
DK
2317 MF_CFG_RD(bp, func_mf_config[func].config);
2318 }
a3348722
BW
2319 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
2320 DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n");
2321 bp->flags |= MF_FUNC_DIS;
2322 } else {
2323 DP(NETIF_MSG_IFUP, "mf_cfg function enabled\n");
2324 bp->flags &= ~MF_FUNC_DIS;
2325 }
523224a3
DK
2326}
2327
2328static void bnx2x_cmng_fns_init(struct bnx2x *bp, u8 read_cfg, u8 cmng_type)
2329{
b475d78f
YM
2330 struct cmng_init_input input;
2331 memset(&input, 0, sizeof(struct cmng_init_input));
2332
2333 input.port_rate = bp->link_vars.line_speed;
523224a3
DK
2334
2335 if (cmng_type == CMNG_FNS_MINMAX) {
2336 int vn;
2337
523224a3
DK
2338 /* read mf conf from shmem */
2339 if (read_cfg)
2340 bnx2x_read_mf_cfg(bp);
2341
523224a3 2342 /* vn_weight_sum and enable fairness if not 0 */
b475d78f 2343 bnx2x_calc_vn_min(bp, &input);
523224a3
DK
2344
2345 /* calculate and set min-max rate for each vn */
c4154f25 2346 if (bp->port.pmf)
3395a033 2347 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++)
b475d78f 2348 bnx2x_calc_vn_max(bp, vn, &input);
523224a3
DK
2349
2350 /* always enable rate shaping and fairness */
b475d78f 2351 input.flags.cmng_enables |=
523224a3 2352 CMNG_FLAGS_PER_PORT_RATE_SHAPING_VN;
b475d78f
YM
2353
2354 bnx2x_init_cmng(&input, &bp->cmng);
523224a3
DK
2355 return;
2356 }
2357
2358 /* rate shaping and fairness are disabled */
2359 DP(NETIF_MSG_IFUP,
2360 "rate shaping and fairness are disabled\n");
2361}
34f80b04 2362
1191cb83
ED
2363static void storm_memset_cmng(struct bnx2x *bp,
2364 struct cmng_init *cmng,
2365 u8 port)
2366{
2367 int vn;
2368 size_t size = sizeof(struct cmng_struct_per_port);
2369
2370 u32 addr = BAR_XSTRORM_INTMEM +
2371 XSTORM_CMNG_PER_PORT_VARS_OFFSET(port);
2372
2373 __storm_memset_struct(bp, addr, size, (u32 *)&cmng->port);
2374
2375 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
2376 int func = func_by_vn(bp, vn);
2377
2378 addr = BAR_XSTRORM_INTMEM +
2379 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(func);
2380 size = sizeof(struct rate_shaping_vars_per_vn);
2381 __storm_memset_struct(bp, addr, size,
2382 (u32 *)&cmng->vnic.vnic_max_rate[vn]);
2383
2384 addr = BAR_XSTRORM_INTMEM +
2385 XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(func);
2386 size = sizeof(struct fairness_vars_per_vn);
2387 __storm_memset_struct(bp, addr, size,
2388 (u32 *)&cmng->vnic.vnic_min_rate[vn]);
2389 }
2390}
2391
c18487ee
YR
2392/* This function is called upon link interrupt */
2393static void bnx2x_link_attn(struct bnx2x *bp)
2394{
bb2a0f7a
YG
2395 /* Make sure that we are synced with the current statistics */
2396 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2397
c18487ee 2398 bnx2x_link_update(&bp->link_params, &bp->link_vars);
a2fbb9ea 2399
bb2a0f7a
YG
2400 if (bp->link_vars.link_up) {
2401
1c06328c 2402 /* dropless flow control */
f2e0899f 2403 if (!CHIP_IS_E1(bp) && bp->dropless_fc) {
1c06328c
EG
2404 int port = BP_PORT(bp);
2405 u32 pause_enabled = 0;
2406
2407 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
2408 pause_enabled = 1;
2409
2410 REG_WR(bp, BAR_USTRORM_INTMEM +
ca00392c 2411 USTORM_ETH_PAUSE_ENABLED_OFFSET(port),
1c06328c
EG
2412 pause_enabled);
2413 }
2414
619c5cb6 2415 if (bp->link_vars.mac_type != MAC_TYPE_EMAC) {
bb2a0f7a
YG
2416 struct host_port_stats *pstats;
2417
2418 pstats = bnx2x_sp(bp, port_stats);
619c5cb6 2419 /* reset old mac stats */
bb2a0f7a
YG
2420 memset(&(pstats->mac_stx[0]), 0,
2421 sizeof(struct mac_stx));
2422 }
f34d28ea 2423 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a
YG
2424 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2425 }
2426
f2e0899f
DK
2427 if (bp->link_vars.link_up && bp->link_vars.line_speed) {
2428 int cmng_fns = bnx2x_get_cmng_fns_mode(bp);
8a1c38d1 2429
f2e0899f
DK
2430 if (cmng_fns != CMNG_FNS_NONE) {
2431 bnx2x_cmng_fns_init(bp, false, cmng_fns);
2432 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
2433 } else
2434 /* rate shaping and fairness are disabled */
2435 DP(NETIF_MSG_IFUP,
2436 "single function mode without fairness\n");
34f80b04 2437 }
9fdc3e95 2438
2ae17f66
VZ
2439 __bnx2x_link_report(bp);
2440
9fdc3e95
DK
2441 if (IS_MF(bp))
2442 bnx2x_link_sync_notify(bp);
c18487ee 2443}
a2fbb9ea 2444
9f6c9258 2445void bnx2x__link_status_update(struct bnx2x *bp)
c18487ee 2446{
2ae17f66 2447 if (bp->state != BNX2X_STATE_OPEN)
c18487ee 2448 return;
a2fbb9ea 2449
00253a8c
DK
2450 /* read updated dcb configuration */
2451 bnx2x_dcbx_pmf_update(bp);
2452
c18487ee 2453 bnx2x_link_status_update(&bp->link_params, &bp->link_vars);
a2fbb9ea 2454
bb2a0f7a
YG
2455 if (bp->link_vars.link_up)
2456 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2457 else
2458 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2459
c18487ee
YR
2460 /* indicate link status */
2461 bnx2x_link_report(bp);
a2fbb9ea 2462}
a2fbb9ea 2463
a3348722
BW
2464static int bnx2x_afex_func_update(struct bnx2x *bp, u16 vifid,
2465 u16 vlan_val, u8 allowed_prio)
2466{
2467 struct bnx2x_func_state_params func_params = {0};
2468 struct bnx2x_func_afex_update_params *f_update_params =
2469 &func_params.params.afex_update;
2470
2471 func_params.f_obj = &bp->func_obj;
2472 func_params.cmd = BNX2X_F_CMD_AFEX_UPDATE;
2473
2474 /* no need to wait for RAMROD completion, so don't
2475 * set RAMROD_COMP_WAIT flag
2476 */
2477
2478 f_update_params->vif_id = vifid;
2479 f_update_params->afex_default_vlan = vlan_val;
2480 f_update_params->allowed_priorities = allowed_prio;
2481
2482 /* if ramrod can not be sent, response to MCP immediately */
2483 if (bnx2x_func_state_change(bp, &func_params) < 0)
2484 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
2485
2486 return 0;
2487}
2488
2489static int bnx2x_afex_handle_vif_list_cmd(struct bnx2x *bp, u8 cmd_type,
2490 u16 vif_index, u8 func_bit_map)
2491{
2492 struct bnx2x_func_state_params func_params = {0};
2493 struct bnx2x_func_afex_viflists_params *update_params =
2494 &func_params.params.afex_viflists;
2495 int rc;
2496 u32 drv_msg_code;
2497
2498 /* validate only LIST_SET and LIST_GET are received from switch */
2499 if ((cmd_type != VIF_LIST_RULE_GET) && (cmd_type != VIF_LIST_RULE_SET))
2500 BNX2X_ERR("BUG! afex_handle_vif_list_cmd invalid type 0x%x\n",
2501 cmd_type);
2502
2503 func_params.f_obj = &bp->func_obj;
2504 func_params.cmd = BNX2X_F_CMD_AFEX_VIFLISTS;
2505
2506 /* set parameters according to cmd_type */
2507 update_params->afex_vif_list_command = cmd_type;
2508 update_params->vif_list_index = cpu_to_le16(vif_index);
2509 update_params->func_bit_map =
2510 (cmd_type == VIF_LIST_RULE_GET) ? 0 : func_bit_map;
2511 update_params->func_to_clear = 0;
2512 drv_msg_code =
2513 (cmd_type == VIF_LIST_RULE_GET) ?
2514 DRV_MSG_CODE_AFEX_LISTGET_ACK :
2515 DRV_MSG_CODE_AFEX_LISTSET_ACK;
2516
2517 /* if ramrod can not be sent, respond to MCP immediately for
2518 * SET and GET requests (other are not triggered from MCP)
2519 */
2520 rc = bnx2x_func_state_change(bp, &func_params);
2521 if (rc < 0)
2522 bnx2x_fw_command(bp, drv_msg_code, 0);
2523
2524 return 0;
2525}
2526
2527static void bnx2x_handle_afex_cmd(struct bnx2x *bp, u32 cmd)
2528{
2529 struct afex_stats afex_stats;
2530 u32 func = BP_ABS_FUNC(bp);
2531 u32 mf_config;
2532 u16 vlan_val;
2533 u32 vlan_prio;
2534 u16 vif_id;
2535 u8 allowed_prio;
2536 u8 vlan_mode;
2537 u32 addr_to_write, vifid, addrs, stats_type, i;
2538
2539 if (cmd & DRV_STATUS_AFEX_LISTGET_REQ) {
2540 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2541 DP(BNX2X_MSG_MCP,
2542 "afex: got MCP req LISTGET_REQ for vifid 0x%x\n", vifid);
2543 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_GET, vifid, 0);
2544 }
2545
2546 if (cmd & DRV_STATUS_AFEX_LISTSET_REQ) {
2547 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2548 addrs = SHMEM2_RD(bp, afex_param2_to_driver[BP_FW_MB_IDX(bp)]);
2549 DP(BNX2X_MSG_MCP,
2550 "afex: got MCP req LISTSET_REQ for vifid 0x%x addrs 0x%x\n",
2551 vifid, addrs);
2552 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_SET, vifid,
2553 addrs);
2554 }
2555
2556 if (cmd & DRV_STATUS_AFEX_STATSGET_REQ) {
2557 addr_to_write = SHMEM2_RD(bp,
2558 afex_scratchpad_addr_to_write[BP_FW_MB_IDX(bp)]);
2559 stats_type = SHMEM2_RD(bp,
2560 afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2561
2562 DP(BNX2X_MSG_MCP,
2563 "afex: got MCP req STATSGET_REQ, write to addr 0x%x\n",
2564 addr_to_write);
2565
2566 bnx2x_afex_collect_stats(bp, (void *)&afex_stats, stats_type);
2567
2568 /* write response to scratchpad, for MCP */
2569 for (i = 0; i < (sizeof(struct afex_stats)/sizeof(u32)); i++)
2570 REG_WR(bp, addr_to_write + i*sizeof(u32),
2571 *(((u32 *)(&afex_stats))+i));
2572
2573 /* send ack message to MCP */
2574 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_STATSGET_ACK, 0);
2575 }
2576
2577 if (cmd & DRV_STATUS_AFEX_VIFSET_REQ) {
2578 mf_config = MF_CFG_RD(bp, func_mf_config[func].config);
2579 bp->mf_config[BP_VN(bp)] = mf_config;
2580 DP(BNX2X_MSG_MCP,
2581 "afex: got MCP req VIFSET_REQ, mf_config 0x%x\n",
2582 mf_config);
2583
2584 /* if VIF_SET is "enabled" */
2585 if (!(mf_config & FUNC_MF_CFG_FUNC_DISABLED)) {
2586 /* set rate limit directly to internal RAM */
2587 struct cmng_init_input cmng_input;
2588 struct rate_shaping_vars_per_vn m_rs_vn;
2589 size_t size = sizeof(struct rate_shaping_vars_per_vn);
2590 u32 addr = BAR_XSTRORM_INTMEM +
2591 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(BP_FUNC(bp));
2592
2593 bp->mf_config[BP_VN(bp)] = mf_config;
2594
2595 bnx2x_calc_vn_max(bp, BP_VN(bp), &cmng_input);
2596 m_rs_vn.vn_counter.rate =
2597 cmng_input.vnic_max_rate[BP_VN(bp)];
2598 m_rs_vn.vn_counter.quota =
2599 (m_rs_vn.vn_counter.rate *
2600 RS_PERIODIC_TIMEOUT_USEC) / 8;
2601
2602 __storm_memset_struct(bp, addr, size, (u32 *)&m_rs_vn);
2603
2604 /* read relevant values from mf_cfg struct in shmem */
2605 vif_id =
2606 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2607 FUNC_MF_CFG_E1HOV_TAG_MASK) >>
2608 FUNC_MF_CFG_E1HOV_TAG_SHIFT;
2609 vlan_val =
2610 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2611 FUNC_MF_CFG_AFEX_VLAN_MASK) >>
2612 FUNC_MF_CFG_AFEX_VLAN_SHIFT;
2613 vlan_prio = (mf_config &
2614 FUNC_MF_CFG_TRANSMIT_PRIORITY_MASK) >>
2615 FUNC_MF_CFG_TRANSMIT_PRIORITY_SHIFT;
2616 vlan_val |= (vlan_prio << VLAN_PRIO_SHIFT);
2617 vlan_mode =
2618 (MF_CFG_RD(bp,
2619 func_mf_config[func].afex_config) &
2620 FUNC_MF_CFG_AFEX_VLAN_MODE_MASK) >>
2621 FUNC_MF_CFG_AFEX_VLAN_MODE_SHIFT;
2622 allowed_prio =
2623 (MF_CFG_RD(bp,
2624 func_mf_config[func].afex_config) &
2625 FUNC_MF_CFG_AFEX_COS_FILTER_MASK) >>
2626 FUNC_MF_CFG_AFEX_COS_FILTER_SHIFT;
2627
2628 /* send ramrod to FW, return in case of failure */
2629 if (bnx2x_afex_func_update(bp, vif_id, vlan_val,
2630 allowed_prio))
2631 return;
2632
2633 bp->afex_def_vlan_tag = vlan_val;
2634 bp->afex_vlan_mode = vlan_mode;
2635 } else {
2636 /* notify link down because BP->flags is disabled */
2637 bnx2x_link_report(bp);
2638
2639 /* send INVALID VIF ramrod to FW */
2640 bnx2x_afex_func_update(bp, 0xFFFF, 0, 0);
2641
2642 /* Reset the default afex VLAN */
2643 bp->afex_def_vlan_tag = -1;
2644 }
2645 }
2646}
2647
34f80b04
EG
2648static void bnx2x_pmf_update(struct bnx2x *bp)
2649{
2650 int port = BP_PORT(bp);
2651 u32 val;
2652
2653 bp->port.pmf = 1;
51c1a580 2654 DP(BNX2X_MSG_MCP, "pmf %d\n", bp->port.pmf);
34f80b04 2655
3deb8167
YR
2656 /*
2657 * We need the mb() to ensure the ordering between the writing to
2658 * bp->port.pmf here and reading it from the bnx2x_periodic_task().
2659 */
2660 smp_mb();
2661
2662 /* queue a periodic task */
2663 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
2664
ef01854e
DK
2665 bnx2x_dcbx_pmf_update(bp);
2666
34f80b04 2667 /* enable nig attention */
3395a033 2668 val = (0xff0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
2669 if (bp->common.int_block == INT_BLOCK_HC) {
2670 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
2671 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
619c5cb6 2672 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
2673 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
2674 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
2675 }
bb2a0f7a
YG
2676
2677 bnx2x_stats_handle(bp, STATS_EVENT_PMF);
34f80b04
EG
2678}
2679
c18487ee 2680/* end of Link */
a2fbb9ea
ET
2681
2682/* slow path */
2683
2684/*
2685 * General service functions
2686 */
2687
2691d51d 2688/* send the MCP a request, block until there is a reply */
a22f0788 2689u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param)
2691d51d 2690{
f2e0899f 2691 int mb_idx = BP_FW_MB_IDX(bp);
a5971d43 2692 u32 seq;
2691d51d
EG
2693 u32 rc = 0;
2694 u32 cnt = 1;
2695 u8 delay = CHIP_REV_IS_SLOW(bp) ? 100 : 10;
2696
c4ff7cbf 2697 mutex_lock(&bp->fw_mb_mutex);
a5971d43 2698 seq = ++bp->fw_seq;
f2e0899f
DK
2699 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_param, param);
2700 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_header, (command | seq));
2701
754a2f52
DK
2702 DP(BNX2X_MSG_MCP, "wrote command (%x) to FW MB param 0x%08x\n",
2703 (command | seq), param);
2691d51d
EG
2704
2705 do {
2706 /* let the FW do it's magic ... */
2707 msleep(delay);
2708
f2e0899f 2709 rc = SHMEM_RD(bp, func_mb[mb_idx].fw_mb_header);
2691d51d 2710
c4ff7cbf
EG
2711 /* Give the FW up to 5 second (500*10ms) */
2712 } while ((seq != (rc & FW_MSG_SEQ_NUMBER_MASK)) && (cnt++ < 500));
2691d51d
EG
2713
2714 DP(BNX2X_MSG_MCP, "[after %d ms] read (%x) seq is (%x) from FW MB\n",
2715 cnt*delay, rc, seq);
2716
2717 /* is this a reply to our command? */
2718 if (seq == (rc & FW_MSG_SEQ_NUMBER_MASK))
2719 rc &= FW_MSG_CODE_MASK;
2720 else {
2721 /* FW BUG! */
2722 BNX2X_ERR("FW failed to respond!\n");
2723 bnx2x_fw_dump(bp);
2724 rc = 0;
2725 }
c4ff7cbf 2726 mutex_unlock(&bp->fw_mb_mutex);
2691d51d
EG
2727
2728 return rc;
2729}
2730
ec6ba945 2731
1191cb83
ED
2732static void storm_memset_func_cfg(struct bnx2x *bp,
2733 struct tstorm_eth_function_common_config *tcfg,
2734 u16 abs_fid)
2735{
2736 size_t size = sizeof(struct tstorm_eth_function_common_config);
2737
2738 u32 addr = BAR_TSTRORM_INTMEM +
2739 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid);
2740
2741 __storm_memset_struct(bp, addr, size, (u32 *)tcfg);
2742}
2743
619c5cb6
VZ
2744void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p)
2745{
2746 if (CHIP_IS_E1x(bp)) {
2747 struct tstorm_eth_function_common_config tcfg = {0};
2748
2749 storm_memset_func_cfg(bp, &tcfg, p->func_id);
2750 }
2751
2752 /* Enable the function in the FW */
2753 storm_memset_vf_to_pf(bp, p->func_id, p->pf_id);
2754 storm_memset_func_en(bp, p->func_id, 1);
2755
2756 /* spq */
2757 if (p->func_flgs & FUNC_FLG_SPQ) {
2758 storm_memset_spq_addr(bp, p->spq_map, p->func_id);
2759 REG_WR(bp, XSEM_REG_FAST_MEMORY +
2760 XSTORM_SPQ_PROD_OFFSET(p->func_id), p->spq_prod);
2761 }
2762}
2763
6383c0b3
AE
2764/**
2765 * bnx2x_get_tx_only_flags - Return common flags
2766 *
2767 * @bp device handle
2768 * @fp queue handle
2769 * @zero_stats TRUE if statistics zeroing is needed
2770 *
2771 * Return the flags that are common for the Tx-only and not normal connections.
2772 */
1191cb83
ED
2773static unsigned long bnx2x_get_common_flags(struct bnx2x *bp,
2774 struct bnx2x_fastpath *fp,
2775 bool zero_stats)
28912902 2776{
619c5cb6
VZ
2777 unsigned long flags = 0;
2778
2779 /* PF driver will always initialize the Queue to an ACTIVE state */
2780 __set_bit(BNX2X_Q_FLG_ACTIVE, &flags);
28912902 2781
6383c0b3
AE
2782 /* tx only connections collect statistics (on the same index as the
2783 * parent connection). The statistics are zeroed when the parent
2784 * connection is initialized.
2785 */
50f0a562
BW
2786
2787 __set_bit(BNX2X_Q_FLG_STATS, &flags);
2788 if (zero_stats)
2789 __set_bit(BNX2X_Q_FLG_ZERO_STATS, &flags);
2790
6383c0b3
AE
2791
2792 return flags;
2793}
2794
1191cb83
ED
2795static unsigned long bnx2x_get_q_flags(struct bnx2x *bp,
2796 struct bnx2x_fastpath *fp,
2797 bool leading)
6383c0b3
AE
2798{
2799 unsigned long flags = 0;
2800
619c5cb6
VZ
2801 /* calculate other queue flags */
2802 if (IS_MF_SD(bp))
2803 __set_bit(BNX2X_Q_FLG_OV, &flags);
28912902 2804
a3348722 2805 if (IS_FCOE_FP(fp)) {
619c5cb6 2806 __set_bit(BNX2X_Q_FLG_FCOE, &flags);
a3348722
BW
2807 /* For FCoE - force usage of default priority (for afex) */
2808 __set_bit(BNX2X_Q_FLG_FORCE_DEFAULT_PRI, &flags);
2809 }
523224a3 2810
f5219d8e 2811 if (!fp->disable_tpa) {
619c5cb6 2812 __set_bit(BNX2X_Q_FLG_TPA, &flags);
f5219d8e 2813 __set_bit(BNX2X_Q_FLG_TPA_IPV6, &flags);
621b4d66
DK
2814 if (fp->mode == TPA_MODE_GRO)
2815 __set_bit(BNX2X_Q_FLG_TPA_GRO, &flags);
f5219d8e 2816 }
619c5cb6 2817
619c5cb6
VZ
2818 if (leading) {
2819 __set_bit(BNX2X_Q_FLG_LEADING_RSS, &flags);
2820 __set_bit(BNX2X_Q_FLG_MCAST, &flags);
2821 }
523224a3 2822
619c5cb6
VZ
2823 /* Always set HW VLAN stripping */
2824 __set_bit(BNX2X_Q_FLG_VLAN, &flags);
523224a3 2825
a3348722
BW
2826 /* configure silent vlan removal */
2827 if (IS_MF_AFEX(bp))
2828 __set_bit(BNX2X_Q_FLG_SILENT_VLAN_REM, &flags);
2829
6383c0b3
AE
2830
2831 return flags | bnx2x_get_common_flags(bp, fp, true);
523224a3
DK
2832}
2833
619c5cb6 2834static void bnx2x_pf_q_prep_general(struct bnx2x *bp,
6383c0b3
AE
2835 struct bnx2x_fastpath *fp, struct bnx2x_general_setup_params *gen_init,
2836 u8 cos)
619c5cb6
VZ
2837{
2838 gen_init->stat_id = bnx2x_stats_id(fp);
2839 gen_init->spcl_id = fp->cl_id;
2840
2841 /* Always use mini-jumbo MTU for FCoE L2 ring */
2842 if (IS_FCOE_FP(fp))
2843 gen_init->mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
2844 else
2845 gen_init->mtu = bp->dev->mtu;
6383c0b3
AE
2846
2847 gen_init->cos = cos;
619c5cb6
VZ
2848}
2849
2850static void bnx2x_pf_rx_q_prep(struct bnx2x *bp,
523224a3 2851 struct bnx2x_fastpath *fp, struct rxq_pause_params *pause,
619c5cb6 2852 struct bnx2x_rxq_setup_params *rxq_init)
523224a3 2853{
619c5cb6 2854 u8 max_sge = 0;
523224a3
DK
2855 u16 sge_sz = 0;
2856 u16 tpa_agg_size = 0;
2857
523224a3 2858 if (!fp->disable_tpa) {
dfacf138
DK
2859 pause->sge_th_lo = SGE_TH_LO(bp);
2860 pause->sge_th_hi = SGE_TH_HI(bp);
2861
2862 /* validate SGE ring has enough to cross high threshold */
2863 WARN_ON(bp->dropless_fc &&
2864 pause->sge_th_hi + FW_PREFETCH_CNT >
2865 MAX_RX_SGE_CNT * NUM_RX_SGE_PAGES);
2866
523224a3
DK
2867 tpa_agg_size = min_t(u32,
2868 (min_t(u32, 8, MAX_SKB_FRAGS) *
2869 SGE_PAGE_SIZE * PAGES_PER_SGE), 0xffff);
2870 max_sge = SGE_PAGE_ALIGN(bp->dev->mtu) >>
2871 SGE_PAGE_SHIFT;
2872 max_sge = ((max_sge + PAGES_PER_SGE - 1) &
2873 (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
2874 sge_sz = (u16)min_t(u32, SGE_PAGE_SIZE * PAGES_PER_SGE,
2875 0xffff);
2876 }
2877
2878 /* pause - not for e1 */
2879 if (!CHIP_IS_E1(bp)) {
dfacf138
DK
2880 pause->bd_th_lo = BD_TH_LO(bp);
2881 pause->bd_th_hi = BD_TH_HI(bp);
2882
2883 pause->rcq_th_lo = RCQ_TH_LO(bp);
2884 pause->rcq_th_hi = RCQ_TH_HI(bp);
2885 /*
2886 * validate that rings have enough entries to cross
2887 * high thresholds
2888 */
2889 WARN_ON(bp->dropless_fc &&
2890 pause->bd_th_hi + FW_PREFETCH_CNT >
2891 bp->rx_ring_size);
2892 WARN_ON(bp->dropless_fc &&
2893 pause->rcq_th_hi + FW_PREFETCH_CNT >
2894 NUM_RCQ_RINGS * MAX_RCQ_DESC_CNT);
619c5cb6 2895
523224a3
DK
2896 pause->pri_map = 1;
2897 }
2898
2899 /* rxq setup */
523224a3
DK
2900 rxq_init->dscr_map = fp->rx_desc_mapping;
2901 rxq_init->sge_map = fp->rx_sge_mapping;
2902 rxq_init->rcq_map = fp->rx_comp_mapping;
2903 rxq_init->rcq_np_map = fp->rx_comp_mapping + BCM_PAGE_SIZE;
a8c94b91 2904
619c5cb6
VZ
2905 /* This should be a maximum number of data bytes that may be
2906 * placed on the BD (not including paddings).
2907 */
e52fcb24
ED
2908 rxq_init->buf_sz = fp->rx_buf_size - BNX2X_FW_RX_ALIGN_START -
2909 BNX2X_FW_RX_ALIGN_END - IP_HEADER_ALIGNMENT_PADDING;
a8c94b91 2910
523224a3 2911 rxq_init->cl_qzone_id = fp->cl_qzone_id;
523224a3
DK
2912 rxq_init->tpa_agg_sz = tpa_agg_size;
2913 rxq_init->sge_buf_sz = sge_sz;
2914 rxq_init->max_sges_pkt = max_sge;
619c5cb6 2915 rxq_init->rss_engine_id = BP_FUNC(bp);
259afa1f 2916 rxq_init->mcast_engine_id = BP_FUNC(bp);
619c5cb6
VZ
2917
2918 /* Maximum number or simultaneous TPA aggregation for this Queue.
2919 *
2920 * For PF Clients it should be the maximum avaliable number.
2921 * VF driver(s) may want to define it to a smaller value.
2922 */
dfacf138 2923 rxq_init->max_tpa_queues = MAX_AGG_QS(bp);
619c5cb6 2924
523224a3
DK
2925 rxq_init->cache_line_log = BNX2X_RX_ALIGN_SHIFT;
2926 rxq_init->fw_sb_id = fp->fw_sb_id;
2927
ec6ba945
VZ
2928 if (IS_FCOE_FP(fp))
2929 rxq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS;
2930 else
6383c0b3 2931 rxq_init->sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
a3348722
BW
2932 /* configure silent vlan removal
2933 * if multi function mode is afex, then mask default vlan
2934 */
2935 if (IS_MF_AFEX(bp)) {
2936 rxq_init->silent_removal_value = bp->afex_def_vlan_tag;
2937 rxq_init->silent_removal_mask = VLAN_VID_MASK;
2938 }
523224a3
DK
2939}
2940
619c5cb6 2941static void bnx2x_pf_tx_q_prep(struct bnx2x *bp,
6383c0b3
AE
2942 struct bnx2x_fastpath *fp, struct bnx2x_txq_setup_params *txq_init,
2943 u8 cos)
523224a3 2944{
65565884 2945 txq_init->dscr_map = fp->txdata_ptr[cos]->tx_desc_mapping;
6383c0b3 2946 txq_init->sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS + cos;
523224a3
DK
2947 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_NW;
2948 txq_init->fw_sb_id = fp->fw_sb_id;
ec6ba945 2949
619c5cb6
VZ
2950 /*
2951 * set the tss leading client id for TX classfication ==
2952 * leading RSS client id
2953 */
2954 txq_init->tss_leading_cl_id = bnx2x_fp(bp, 0, cl_id);
2955
ec6ba945
VZ
2956 if (IS_FCOE_FP(fp)) {
2957 txq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS;
2958 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_FCOE;
2959 }
523224a3
DK
2960}
2961
8d96286a 2962static void bnx2x_pf_init(struct bnx2x *bp)
523224a3
DK
2963{
2964 struct bnx2x_func_init_params func_init = {0};
523224a3
DK
2965 struct event_ring_data eq_data = { {0} };
2966 u16 flags;
2967
619c5cb6 2968 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
2969 /* reset IGU PF statistics: MSIX + ATTN */
2970 /* PF */
2971 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
2972 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
2973 (CHIP_MODE_IS_4_PORT(bp) ?
2974 BP_FUNC(bp) : BP_VN(bp))*4, 0);
2975 /* ATTN */
2976 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
2977 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
2978 BNX2X_IGU_STAS_MSG_PF_CNT*4 +
2979 (CHIP_MODE_IS_4_PORT(bp) ?
2980 BP_FUNC(bp) : BP_VN(bp))*4, 0);
2981 }
2982
523224a3
DK
2983 /* function setup flags */
2984 flags = (FUNC_FLG_STATS | FUNC_FLG_LEADING | FUNC_FLG_SPQ);
2985
619c5cb6
VZ
2986 /* This flag is relevant for E1x only.
2987 * E2 doesn't have a TPA configuration in a function level.
523224a3 2988 */
619c5cb6 2989 flags |= (bp->flags & TPA_ENABLE_FLAG) ? FUNC_FLG_TPA : 0;
523224a3
DK
2990
2991 func_init.func_flgs = flags;
2992 func_init.pf_id = BP_FUNC(bp);
2993 func_init.func_id = BP_FUNC(bp);
523224a3
DK
2994 func_init.spq_map = bp->spq_mapping;
2995 func_init.spq_prod = bp->spq_prod_idx;
2996
2997 bnx2x_func_init(bp, &func_init);
2998
2999 memset(&(bp->cmng), 0, sizeof(struct cmng_struct_per_port));
3000
3001 /*
619c5cb6
VZ
3002 * Congestion management values depend on the link rate
3003 * There is no active link so initial link rate is set to 10 Gbps.
3004 * When the link comes up The congestion management values are
3005 * re-calculated according to the actual link rate.
3006 */
523224a3
DK
3007 bp->link_vars.line_speed = SPEED_10000;
3008 bnx2x_cmng_fns_init(bp, true, bnx2x_get_cmng_fns_mode(bp));
3009
3010 /* Only the PMF sets the HW */
3011 if (bp->port.pmf)
3012 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3013
523224a3
DK
3014 /* init Event Queue */
3015 eq_data.base_addr.hi = U64_HI(bp->eq_mapping);
3016 eq_data.base_addr.lo = U64_LO(bp->eq_mapping);
3017 eq_data.producer = bp->eq_prod;
3018 eq_data.index_id = HC_SP_INDEX_EQ_CONS;
3019 eq_data.sb_id = DEF_SB_ID;
3020 storm_memset_eq_data(bp, &eq_data, BP_FUNC(bp));
3021}
3022
3023
3024static void bnx2x_e1h_disable(struct bnx2x *bp)
3025{
3026 int port = BP_PORT(bp);
3027
619c5cb6 3028 bnx2x_tx_disable(bp);
523224a3
DK
3029
3030 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
523224a3
DK
3031}
3032
3033static void bnx2x_e1h_enable(struct bnx2x *bp)
3034{
3035 int port = BP_PORT(bp);
3036
3037 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
3038
3039 /* Tx queue should be only reenabled */
3040 netif_tx_wake_all_queues(bp->dev);
3041
3042 /*
3043 * Should not call netif_carrier_on since it will be called if the link
3044 * is up when checking for link state
3045 */
3046}
3047
1d187b34
BW
3048#define DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED 3
3049
3050static void bnx2x_drv_info_ether_stat(struct bnx2x *bp)
3051{
3052 struct eth_stats_info *ether_stat =
3053 &bp->slowpath->drv_info_to_mcp.ether_stat;
3054
786fdf0b
DC
3055 strlcpy(ether_stat->version, DRV_MODULE_VERSION,
3056 ETH_STAT_INFO_VERSION_LEN);
1d187b34 3057
15192a8c
BW
3058 bp->sp_objs[0].mac_obj.get_n_elements(bp, &bp->sp_objs[0].mac_obj,
3059 DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED,
3060 ether_stat->mac_local);
1d187b34
BW
3061
3062 ether_stat->mtu_size = bp->dev->mtu;
3063
3064 if (bp->dev->features & NETIF_F_RXCSUM)
3065 ether_stat->feature_flags |= FEATURE_ETH_CHKSUM_OFFLOAD_MASK;
3066 if (bp->dev->features & NETIF_F_TSO)
3067 ether_stat->feature_flags |= FEATURE_ETH_LSO_MASK;
3068 ether_stat->feature_flags |= bp->common.boot_mode;
3069
3070 ether_stat->promiscuous_mode = (bp->dev->flags & IFF_PROMISC) ? 1 : 0;
3071
3072 ether_stat->txq_size = bp->tx_ring_size;
3073 ether_stat->rxq_size = bp->rx_ring_size;
3074}
3075
3076static void bnx2x_drv_info_fcoe_stat(struct bnx2x *bp)
3077{
3078 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3079 struct fcoe_stats_info *fcoe_stat =
3080 &bp->slowpath->drv_info_to_mcp.fcoe_stat;
3081
55c11941
MS
3082 if (!CNIC_LOADED(bp))
3083 return;
3084
2e499d3c
BW
3085 memcpy(fcoe_stat->mac_local + MAC_LEADING_ZERO_CNT,
3086 bp->fip_mac, ETH_ALEN);
1d187b34
BW
3087
3088 fcoe_stat->qos_priority =
3089 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_FCOE];
3090
3091 /* insert FCoE stats from ramrod response */
3092 if (!NO_FCOE(bp)) {
3093 struct tstorm_per_queue_stats *fcoe_q_tstorm_stats =
65565884 3094 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3095 tstorm_queue_statistics;
3096
3097 struct xstorm_per_queue_stats *fcoe_q_xstorm_stats =
65565884 3098 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3099 xstorm_queue_statistics;
3100
3101 struct fcoe_statistics_params *fw_fcoe_stat =
3102 &bp->fw_stats_data->fcoe;
3103
3104 ADD_64(fcoe_stat->rx_bytes_hi, 0, fcoe_stat->rx_bytes_lo,
3105 fw_fcoe_stat->rx_stat0.fcoe_rx_byte_cnt);
3106
3107 ADD_64(fcoe_stat->rx_bytes_hi,
3108 fcoe_q_tstorm_stats->rcv_ucast_bytes.hi,
3109 fcoe_stat->rx_bytes_lo,
3110 fcoe_q_tstorm_stats->rcv_ucast_bytes.lo);
3111
3112 ADD_64(fcoe_stat->rx_bytes_hi,
3113 fcoe_q_tstorm_stats->rcv_bcast_bytes.hi,
3114 fcoe_stat->rx_bytes_lo,
3115 fcoe_q_tstorm_stats->rcv_bcast_bytes.lo);
3116
3117 ADD_64(fcoe_stat->rx_bytes_hi,
3118 fcoe_q_tstorm_stats->rcv_mcast_bytes.hi,
3119 fcoe_stat->rx_bytes_lo,
3120 fcoe_q_tstorm_stats->rcv_mcast_bytes.lo);
3121
3122 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3123 fw_fcoe_stat->rx_stat0.fcoe_rx_pkt_cnt);
3124
3125 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3126 fcoe_q_tstorm_stats->rcv_ucast_pkts);
3127
3128 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3129 fcoe_q_tstorm_stats->rcv_bcast_pkts);
3130
3131 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
f33f1fcc 3132 fcoe_q_tstorm_stats->rcv_mcast_pkts);
1d187b34
BW
3133
3134 ADD_64(fcoe_stat->tx_bytes_hi, 0, fcoe_stat->tx_bytes_lo,
3135 fw_fcoe_stat->tx_stat.fcoe_tx_byte_cnt);
3136
3137 ADD_64(fcoe_stat->tx_bytes_hi,
3138 fcoe_q_xstorm_stats->ucast_bytes_sent.hi,
3139 fcoe_stat->tx_bytes_lo,
3140 fcoe_q_xstorm_stats->ucast_bytes_sent.lo);
3141
3142 ADD_64(fcoe_stat->tx_bytes_hi,
3143 fcoe_q_xstorm_stats->bcast_bytes_sent.hi,
3144 fcoe_stat->tx_bytes_lo,
3145 fcoe_q_xstorm_stats->bcast_bytes_sent.lo);
3146
3147 ADD_64(fcoe_stat->tx_bytes_hi,
3148 fcoe_q_xstorm_stats->mcast_bytes_sent.hi,
3149 fcoe_stat->tx_bytes_lo,
3150 fcoe_q_xstorm_stats->mcast_bytes_sent.lo);
3151
3152 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3153 fw_fcoe_stat->tx_stat.fcoe_tx_pkt_cnt);
3154
3155 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3156 fcoe_q_xstorm_stats->ucast_pkts_sent);
3157
3158 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3159 fcoe_q_xstorm_stats->bcast_pkts_sent);
3160
3161 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3162 fcoe_q_xstorm_stats->mcast_pkts_sent);
3163 }
3164
1d187b34
BW
3165 /* ask L5 driver to add data to the struct */
3166 bnx2x_cnic_notify(bp, CNIC_CTL_FCOE_STATS_GET_CMD);
1d187b34
BW
3167}
3168
3169static void bnx2x_drv_info_iscsi_stat(struct bnx2x *bp)
3170{
3171 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3172 struct iscsi_stats_info *iscsi_stat =
3173 &bp->slowpath->drv_info_to_mcp.iscsi_stat;
3174
55c11941
MS
3175 if (!CNIC_LOADED(bp))
3176 return;
3177
2e499d3c
BW
3178 memcpy(iscsi_stat->mac_local + MAC_LEADING_ZERO_CNT,
3179 bp->cnic_eth_dev.iscsi_mac, ETH_ALEN);
1d187b34
BW
3180
3181 iscsi_stat->qos_priority =
3182 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_ISCSI];
3183
1d187b34
BW
3184 /* ask L5 driver to add data to the struct */
3185 bnx2x_cnic_notify(bp, CNIC_CTL_ISCSI_STATS_GET_CMD);
1d187b34
BW
3186}
3187
0793f83f
DK
3188/* called due to MCP event (on pmf):
3189 * reread new bandwidth configuration
3190 * configure FW
3191 * notify others function about the change
3192 */
1191cb83 3193static void bnx2x_config_mf_bw(struct bnx2x *bp)
0793f83f
DK
3194{
3195 if (bp->link_vars.link_up) {
3196 bnx2x_cmng_fns_init(bp, true, CMNG_FNS_MINMAX);
3197 bnx2x_link_sync_notify(bp);
3198 }
3199 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3200}
3201
1191cb83 3202static void bnx2x_set_mf_bw(struct bnx2x *bp)
0793f83f
DK
3203{
3204 bnx2x_config_mf_bw(bp);
3205 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW_ACK, 0);
3206}
3207
c8c60d88
YM
3208static void bnx2x_handle_eee_event(struct bnx2x *bp)
3209{
3210 DP(BNX2X_MSG_MCP, "EEE - LLDP event\n");
3211 bnx2x_fw_command(bp, DRV_MSG_CODE_EEE_RESULTS_ACK, 0);
3212}
3213
1d187b34
BW
3214static void bnx2x_handle_drv_info_req(struct bnx2x *bp)
3215{
3216 enum drv_info_opcode op_code;
3217 u32 drv_info_ctl = SHMEM2_RD(bp, drv_info_control);
3218
3219 /* if drv_info version supported by MFW doesn't match - send NACK */
3220 if ((drv_info_ctl & DRV_INFO_CONTROL_VER_MASK) != DRV_INFO_CUR_VER) {
3221 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3222 return;
3223 }
3224
3225 op_code = (drv_info_ctl & DRV_INFO_CONTROL_OP_CODE_MASK) >>
3226 DRV_INFO_CONTROL_OP_CODE_SHIFT;
3227
3228 memset(&bp->slowpath->drv_info_to_mcp, 0,
3229 sizeof(union drv_info_to_mcp));
3230
3231 switch (op_code) {
3232 case ETH_STATS_OPCODE:
3233 bnx2x_drv_info_ether_stat(bp);
3234 break;
3235 case FCOE_STATS_OPCODE:
3236 bnx2x_drv_info_fcoe_stat(bp);
3237 break;
3238 case ISCSI_STATS_OPCODE:
3239 bnx2x_drv_info_iscsi_stat(bp);
3240 break;
3241 default:
3242 /* if op code isn't supported - send NACK */
3243 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3244 return;
3245 }
3246
3247 /* if we got drv_info attn from MFW then these fields are defined in
3248 * shmem2 for sure
3249 */
3250 SHMEM2_WR(bp, drv_info_host_addr_lo,
3251 U64_LO(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3252 SHMEM2_WR(bp, drv_info_host_addr_hi,
3253 U64_HI(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3254
3255 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_ACK, 0);
3256}
3257
523224a3
DK
3258static void bnx2x_dcc_event(struct bnx2x *bp, u32 dcc_event)
3259{
3260 DP(BNX2X_MSG_MCP, "dcc_event 0x%x\n", dcc_event);
3261
3262 if (dcc_event & DRV_STATUS_DCC_DISABLE_ENABLE_PF) {
3263
3264 /*
3265 * This is the only place besides the function initialization
3266 * where the bp->flags can change so it is done without any
3267 * locks
3268 */
f2e0899f 3269 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
51c1a580 3270 DP(BNX2X_MSG_MCP, "mf_cfg function disabled\n");
523224a3
DK
3271 bp->flags |= MF_FUNC_DIS;
3272
3273 bnx2x_e1h_disable(bp);
3274 } else {
51c1a580 3275 DP(BNX2X_MSG_MCP, "mf_cfg function enabled\n");
523224a3
DK
3276 bp->flags &= ~MF_FUNC_DIS;
3277
3278 bnx2x_e1h_enable(bp);
3279 }
3280 dcc_event &= ~DRV_STATUS_DCC_DISABLE_ENABLE_PF;
3281 }
3282 if (dcc_event & DRV_STATUS_DCC_BANDWIDTH_ALLOCATION) {
0793f83f 3283 bnx2x_config_mf_bw(bp);
523224a3
DK
3284 dcc_event &= ~DRV_STATUS_DCC_BANDWIDTH_ALLOCATION;
3285 }
3286
3287 /* Report results to MCP */
3288 if (dcc_event)
3289 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_FAILURE, 0);
3290 else
3291 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_OK, 0);
3292}
3293
3294/* must be called under the spq lock */
1191cb83 3295static struct eth_spe *bnx2x_sp_get_next(struct bnx2x *bp)
523224a3
DK
3296{
3297 struct eth_spe *next_spe = bp->spq_prod_bd;
3298
3299 if (bp->spq_prod_bd == bp->spq_last_bd) {
3300 bp->spq_prod_bd = bp->spq;
3301 bp->spq_prod_idx = 0;
51c1a580 3302 DP(BNX2X_MSG_SP, "end of spq\n");
523224a3
DK
3303 } else {
3304 bp->spq_prod_bd++;
3305 bp->spq_prod_idx++;
3306 }
3307 return next_spe;
3308}
3309
3310/* must be called under the spq lock */
1191cb83 3311static void bnx2x_sp_prod_update(struct bnx2x *bp)
28912902
MC
3312{
3313 int func = BP_FUNC(bp);
3314
53e51e2f
VZ
3315 /*
3316 * Make sure that BD data is updated before writing the producer:
3317 * BD data is written to the memory, the producer is read from the
3318 * memory, thus we need a full memory barrier to ensure the ordering.
3319 */
3320 mb();
28912902 3321
523224a3 3322 REG_WR16(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_PROD_OFFSET(func),
f85582f8 3323 bp->spq_prod_idx);
28912902
MC
3324 mmiowb();
3325}
3326
619c5cb6
VZ
3327/**
3328 * bnx2x_is_contextless_ramrod - check if the current command ends on EQ
3329 *
3330 * @cmd: command to check
3331 * @cmd_type: command type
3332 */
1191cb83 3333static bool bnx2x_is_contextless_ramrod(int cmd, int cmd_type)
619c5cb6
VZ
3334{
3335 if ((cmd_type == NONE_CONNECTION_TYPE) ||
6383c0b3 3336 (cmd == RAMROD_CMD_ID_ETH_FORWARD_SETUP) ||
619c5cb6
VZ
3337 (cmd == RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES) ||
3338 (cmd == RAMROD_CMD_ID_ETH_FILTER_RULES) ||
3339 (cmd == RAMROD_CMD_ID_ETH_MULTICAST_RULES) ||
3340 (cmd == RAMROD_CMD_ID_ETH_SET_MAC) ||
3341 (cmd == RAMROD_CMD_ID_ETH_RSS_UPDATE))
3342 return true;
3343 else
3344 return false;
3345
3346}
3347
3348
3349/**
3350 * bnx2x_sp_post - place a single command on an SP ring
3351 *
3352 * @bp: driver handle
3353 * @command: command to place (e.g. SETUP, FILTER_RULES, etc.)
3354 * @cid: SW CID the command is related to
3355 * @data_hi: command private data address (high 32 bits)
3356 * @data_lo: command private data address (low 32 bits)
3357 * @cmd_type: command type (e.g. NONE, ETH)
3358 *
3359 * SP data is handled as if it's always an address pair, thus data fields are
3360 * not swapped to little endian in upper functions. Instead this function swaps
3361 * data as if it's two u32 fields.
3362 */
9f6c9258 3363int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
619c5cb6 3364 u32 data_hi, u32 data_lo, int cmd_type)
a2fbb9ea 3365{
28912902 3366 struct eth_spe *spe;
523224a3 3367 u16 type;
619c5cb6 3368 bool common = bnx2x_is_contextless_ramrod(command, cmd_type);
a2fbb9ea 3369
a2fbb9ea 3370#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
3371 if (unlikely(bp->panic)) {
3372 BNX2X_ERR("Can't post SP when there is panic\n");
a2fbb9ea 3373 return -EIO;
51c1a580 3374 }
a2fbb9ea
ET
3375#endif
3376
34f80b04 3377 spin_lock_bh(&bp->spq_lock);
a2fbb9ea 3378
6e30dd4e
VZ
3379 if (common) {
3380 if (!atomic_read(&bp->eq_spq_left)) {
3381 BNX2X_ERR("BUG! EQ ring full!\n");
3382 spin_unlock_bh(&bp->spq_lock);
3383 bnx2x_panic();
3384 return -EBUSY;
3385 }
3386 } else if (!atomic_read(&bp->cq_spq_left)) {
3387 BNX2X_ERR("BUG! SPQ ring full!\n");
3388 spin_unlock_bh(&bp->spq_lock);
3389 bnx2x_panic();
3390 return -EBUSY;
a2fbb9ea 3391 }
f1410647 3392
28912902
MC
3393 spe = bnx2x_sp_get_next(bp);
3394
a2fbb9ea 3395 /* CID needs port number to be encoded int it */
28912902 3396 spe->hdr.conn_and_cmd_data =
cdaa7cb8
VZ
3397 cpu_to_le32((command << SPE_HDR_CMD_ID_SHIFT) |
3398 HW_CID(bp, cid));
523224a3 3399
619c5cb6 3400 type = (cmd_type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
a2fbb9ea 3401
523224a3
DK
3402 type |= ((BP_FUNC(bp) << SPE_HDR_FUNCTION_ID_SHIFT) &
3403 SPE_HDR_FUNCTION_ID);
a2fbb9ea 3404
523224a3
DK
3405 spe->hdr.type = cpu_to_le16(type);
3406
3407 spe->data.update_data_addr.hi = cpu_to_le32(data_hi);
3408 spe->data.update_data_addr.lo = cpu_to_le32(data_lo);
3409
d6cae238
VZ
3410 /*
3411 * It's ok if the actual decrement is issued towards the memory
3412 * somewhere between the spin_lock and spin_unlock. Thus no
3413 * more explict memory barrier is needed.
3414 */
3415 if (common)
3416 atomic_dec(&bp->eq_spq_left);
3417 else
3418 atomic_dec(&bp->cq_spq_left);
6e30dd4e 3419
a2fbb9ea 3420
51c1a580
MS
3421 DP(BNX2X_MSG_SP,
3422 "SPQE[%x] (%x:%x) (cmd, common?) (%d,%d) hw_cid %x data (%x:%x) type(0x%x) left (CQ, EQ) (%x,%x)\n",
cdaa7cb8
VZ
3423 bp->spq_prod_idx, (u32)U64_HI(bp->spq_mapping),
3424 (u32)(U64_LO(bp->spq_mapping) +
d6cae238 3425 (void *)bp->spq_prod_bd - (void *)bp->spq), command, common,
6e30dd4e
VZ
3426 HW_CID(bp, cid), data_hi, data_lo, type,
3427 atomic_read(&bp->cq_spq_left), atomic_read(&bp->eq_spq_left));
cdaa7cb8 3428
28912902 3429 bnx2x_sp_prod_update(bp);
34f80b04 3430 spin_unlock_bh(&bp->spq_lock);
a2fbb9ea
ET
3431 return 0;
3432}
3433
3434/* acquire split MCP access lock register */
4a37fb66 3435static int bnx2x_acquire_alr(struct bnx2x *bp)
a2fbb9ea 3436{
72fd0718 3437 u32 j, val;
34f80b04 3438 int rc = 0;
a2fbb9ea
ET
3439
3440 might_sleep();
72fd0718 3441 for (j = 0; j < 1000; j++) {
a2fbb9ea
ET
3442 val = (1UL << 31);
3443 REG_WR(bp, GRCBASE_MCP + 0x9c, val);
3444 val = REG_RD(bp, GRCBASE_MCP + 0x9c);
3445 if (val & (1L << 31))
3446 break;
3447
3448 msleep(5);
3449 }
a2fbb9ea 3450 if (!(val & (1L << 31))) {
19680c48 3451 BNX2X_ERR("Cannot acquire MCP access lock register\n");
a2fbb9ea
ET
3452 rc = -EBUSY;
3453 }
3454
3455 return rc;
3456}
3457
4a37fb66
YG
3458/* release split MCP access lock register */
3459static void bnx2x_release_alr(struct bnx2x *bp)
a2fbb9ea 3460{
72fd0718 3461 REG_WR(bp, GRCBASE_MCP + 0x9c, 0);
a2fbb9ea
ET
3462}
3463
523224a3
DK
3464#define BNX2X_DEF_SB_ATT_IDX 0x0001
3465#define BNX2X_DEF_SB_IDX 0x0002
3466
1191cb83 3467static u16 bnx2x_update_dsb_idx(struct bnx2x *bp)
a2fbb9ea 3468{
523224a3 3469 struct host_sp_status_block *def_sb = bp->def_status_blk;
a2fbb9ea
ET
3470 u16 rc = 0;
3471
3472 barrier(); /* status block is written to by the chip */
a2fbb9ea
ET
3473 if (bp->def_att_idx != def_sb->atten_status_block.attn_bits_index) {
3474 bp->def_att_idx = def_sb->atten_status_block.attn_bits_index;
523224a3 3475 rc |= BNX2X_DEF_SB_ATT_IDX;
a2fbb9ea 3476 }
523224a3
DK
3477
3478 if (bp->def_idx != def_sb->sp_sb.running_index) {
3479 bp->def_idx = def_sb->sp_sb.running_index;
3480 rc |= BNX2X_DEF_SB_IDX;
a2fbb9ea 3481 }
523224a3
DK
3482
3483 /* Do not reorder: indecies reading should complete before handling */
3484 barrier();
a2fbb9ea
ET
3485 return rc;
3486}
3487
3488/*
3489 * slow path service functions
3490 */
3491
3492static void bnx2x_attn_int_asserted(struct bnx2x *bp, u32 asserted)
3493{
34f80b04 3494 int port = BP_PORT(bp);
a2fbb9ea
ET
3495 u32 aeu_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
3496 MISC_REG_AEU_MASK_ATTN_FUNC_0;
877e9aa4
ET
3497 u32 nig_int_mask_addr = port ? NIG_REG_MASK_INTERRUPT_PORT1 :
3498 NIG_REG_MASK_INTERRUPT_PORT0;
3fcaf2e5 3499 u32 aeu_mask;
87942b46 3500 u32 nig_mask = 0;
f2e0899f 3501 u32 reg_addr;
a2fbb9ea 3502
a2fbb9ea
ET
3503 if (bp->attn_state & asserted)
3504 BNX2X_ERR("IGU ERROR\n");
3505
3fcaf2e5
EG
3506 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
3507 aeu_mask = REG_RD(bp, aeu_addr);
3508
a2fbb9ea 3509 DP(NETIF_MSG_HW, "aeu_mask %x newly asserted %x\n",
3fcaf2e5 3510 aeu_mask, asserted);
72fd0718 3511 aeu_mask &= ~(asserted & 0x3ff);
3fcaf2e5 3512 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 3513
3fcaf2e5
EG
3514 REG_WR(bp, aeu_addr, aeu_mask);
3515 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea 3516
3fcaf2e5 3517 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
a2fbb9ea 3518 bp->attn_state |= asserted;
3fcaf2e5 3519 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
a2fbb9ea
ET
3520
3521 if (asserted & ATTN_HARD_WIRED_MASK) {
3522 if (asserted & ATTN_NIG_FOR_FUNC) {
a2fbb9ea 3523
a5e9a7cf
EG
3524 bnx2x_acquire_phy_lock(bp);
3525
877e9aa4 3526 /* save nig interrupt mask */
87942b46 3527 nig_mask = REG_RD(bp, nig_int_mask_addr);
a2fbb9ea 3528
361c391e
YR
3529 /* If nig_mask is not set, no need to call the update
3530 * function.
3531 */
3532 if (nig_mask) {
3533 REG_WR(bp, nig_int_mask_addr, 0);
3534
3535 bnx2x_link_attn(bp);
3536 }
a2fbb9ea
ET
3537
3538 /* handle unicore attn? */
3539 }
3540 if (asserted & ATTN_SW_TIMER_4_FUNC)
3541 DP(NETIF_MSG_HW, "ATTN_SW_TIMER_4_FUNC!\n");
3542
3543 if (asserted & GPIO_2_FUNC)
3544 DP(NETIF_MSG_HW, "GPIO_2_FUNC!\n");
3545
3546 if (asserted & GPIO_3_FUNC)
3547 DP(NETIF_MSG_HW, "GPIO_3_FUNC!\n");
3548
3549 if (asserted & GPIO_4_FUNC)
3550 DP(NETIF_MSG_HW, "GPIO_4_FUNC!\n");
3551
3552 if (port == 0) {
3553 if (asserted & ATTN_GENERAL_ATTN_1) {
3554 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_1!\n");
3555 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_1, 0x0);
3556 }
3557 if (asserted & ATTN_GENERAL_ATTN_2) {
3558 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_2!\n");
3559 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_2, 0x0);
3560 }
3561 if (asserted & ATTN_GENERAL_ATTN_3) {
3562 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_3!\n");
3563 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_3, 0x0);
3564 }
3565 } else {
3566 if (asserted & ATTN_GENERAL_ATTN_4) {
3567 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_4!\n");
3568 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_4, 0x0);
3569 }
3570 if (asserted & ATTN_GENERAL_ATTN_5) {
3571 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_5!\n");
3572 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_5, 0x0);
3573 }
3574 if (asserted & ATTN_GENERAL_ATTN_6) {
3575 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_6!\n");
3576 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_6, 0x0);
3577 }
3578 }
3579
3580 } /* if hardwired */
3581
f2e0899f
DK
3582 if (bp->common.int_block == INT_BLOCK_HC)
3583 reg_addr = (HC_REG_COMMAND_REG + port*32 +
3584 COMMAND_REG_ATTN_BITS_SET);
3585 else
3586 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_SET_UPPER*8);
3587
3588 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", asserted,
3589 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
3590 REG_WR(bp, reg_addr, asserted);
a2fbb9ea
ET
3591
3592 /* now set back the mask */
a5e9a7cf 3593 if (asserted & ATTN_NIG_FOR_FUNC) {
27c1151c
YR
3594 /* Verify that IGU ack through BAR was written before restoring
3595 * NIG mask. This loop should exit after 2-3 iterations max.
3596 */
3597 if (bp->common.int_block != INT_BLOCK_HC) {
3598 u32 cnt = 0, igu_acked;
3599 do {
3600 igu_acked = REG_RD(bp,
3601 IGU_REG_ATTENTION_ACK_BITS);
3602 } while (((igu_acked & ATTN_NIG_FOR_FUNC) == 0) &&
3603 (++cnt < MAX_IGU_ATTN_ACK_TO));
3604 if (!igu_acked)
3605 DP(NETIF_MSG_HW,
3606 "Failed to verify IGU ack on time\n");
3607 barrier();
3608 }
87942b46 3609 REG_WR(bp, nig_int_mask_addr, nig_mask);
a5e9a7cf
EG
3610 bnx2x_release_phy_lock(bp);
3611 }
a2fbb9ea
ET
3612}
3613
1191cb83 3614static void bnx2x_fan_failure(struct bnx2x *bp)
fd4ef40d
EG
3615{
3616 int port = BP_PORT(bp);
b7737c9b 3617 u32 ext_phy_config;
fd4ef40d 3618 /* mark the failure */
b7737c9b
YR
3619 ext_phy_config =
3620 SHMEM_RD(bp,
3621 dev_info.port_hw_config[port].external_phy_config);
3622
3623 ext_phy_config &= ~PORT_HW_CFG_XGXS_EXT_PHY_TYPE_MASK;
3624 ext_phy_config |= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE;
fd4ef40d 3625 SHMEM_WR(bp, dev_info.port_hw_config[port].external_phy_config,
b7737c9b 3626 ext_phy_config);
fd4ef40d
EG
3627
3628 /* log the failure */
51c1a580
MS
3629 netdev_err(bp->dev, "Fan Failure on Network Controller has caused the driver to shutdown the card to prevent permanent damage.\n"
3630 "Please contact OEM Support for assistance\n");
8304859a
AE
3631
3632 /*
3633 * Scheudle device reset (unload)
3634 * This is due to some boards consuming sufficient power when driver is
3635 * up to overheat if fan fails.
3636 */
3637 smp_mb__before_clear_bit();
3638 set_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state);
3639 smp_mb__after_clear_bit();
3640 schedule_delayed_work(&bp->sp_rtnl_task, 0);
3641
fd4ef40d 3642}
ab6ad5a4 3643
1191cb83 3644static void bnx2x_attn_int_deasserted0(struct bnx2x *bp, u32 attn)
a2fbb9ea 3645{
34f80b04 3646 int port = BP_PORT(bp);
877e9aa4 3647 int reg_offset;
d90d96ba 3648 u32 val;
877e9aa4 3649
34f80b04
EG
3650 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
3651 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
877e9aa4 3652
34f80b04 3653 if (attn & AEU_INPUTS_ATTN_BITS_SPIO5) {
877e9aa4
ET
3654
3655 val = REG_RD(bp, reg_offset);
3656 val &= ~AEU_INPUTS_ATTN_BITS_SPIO5;
3657 REG_WR(bp, reg_offset, val);
3658
3659 BNX2X_ERR("SPIO5 hw attention\n");
3660
fd4ef40d 3661 /* Fan failure attention */
d90d96ba 3662 bnx2x_hw_reset_phy(&bp->link_params);
fd4ef40d 3663 bnx2x_fan_failure(bp);
877e9aa4 3664 }
34f80b04 3665
3deb8167 3666 if ((attn & bp->link_vars.aeu_int_mask) && bp->port.pmf) {
589abe3a
EG
3667 bnx2x_acquire_phy_lock(bp);
3668 bnx2x_handle_module_detect_int(&bp->link_params);
3669 bnx2x_release_phy_lock(bp);
3670 }
3671
34f80b04
EG
3672 if (attn & HW_INTERRUT_ASSERT_SET_0) {
3673
3674 val = REG_RD(bp, reg_offset);
3675 val &= ~(attn & HW_INTERRUT_ASSERT_SET_0);
3676 REG_WR(bp, reg_offset, val);
3677
3678 BNX2X_ERR("FATAL HW block attention set0 0x%x\n",
0fc5d009 3679 (u32)(attn & HW_INTERRUT_ASSERT_SET_0));
34f80b04
EG
3680 bnx2x_panic();
3681 }
877e9aa4
ET
3682}
3683
1191cb83 3684static void bnx2x_attn_int_deasserted1(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3685{
3686 u32 val;
3687
0626b899 3688 if (attn & AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT) {
877e9aa4
ET
3689
3690 val = REG_RD(bp, DORQ_REG_DORQ_INT_STS_CLR);
3691 BNX2X_ERR("DB hw attention 0x%x\n", val);
3692 /* DORQ discard attention */
3693 if (val & 0x2)
3694 BNX2X_ERR("FATAL error from DORQ\n");
3695 }
34f80b04
EG
3696
3697 if (attn & HW_INTERRUT_ASSERT_SET_1) {
3698
3699 int port = BP_PORT(bp);
3700 int reg_offset;
3701
3702 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1 :
3703 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1);
3704
3705 val = REG_RD(bp, reg_offset);
3706 val &= ~(attn & HW_INTERRUT_ASSERT_SET_1);
3707 REG_WR(bp, reg_offset, val);
3708
3709 BNX2X_ERR("FATAL HW block attention set1 0x%x\n",
0fc5d009 3710 (u32)(attn & HW_INTERRUT_ASSERT_SET_1));
34f80b04
EG
3711 bnx2x_panic();
3712 }
877e9aa4
ET
3713}
3714
1191cb83 3715static void bnx2x_attn_int_deasserted2(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3716{
3717 u32 val;
3718
3719 if (attn & AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT) {
3720
3721 val = REG_RD(bp, CFC_REG_CFC_INT_STS_CLR);
3722 BNX2X_ERR("CFC hw attention 0x%x\n", val);
3723 /* CFC error attention */
3724 if (val & 0x2)
3725 BNX2X_ERR("FATAL error from CFC\n");
3726 }
3727
3728 if (attn & AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT) {
877e9aa4 3729 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_0);
619c5cb6 3730 BNX2X_ERR("PXP hw attention-0 0x%x\n", val);
877e9aa4
ET
3731 /* RQ_USDMDP_FIFO_OVERFLOW */
3732 if (val & 0x18000)
3733 BNX2X_ERR("FATAL error from PXP\n");
619c5cb6
VZ
3734
3735 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3736 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_1);
3737 BNX2X_ERR("PXP hw attention-1 0x%x\n", val);
3738 }
877e9aa4 3739 }
34f80b04
EG
3740
3741 if (attn & HW_INTERRUT_ASSERT_SET_2) {
3742
3743 int port = BP_PORT(bp);
3744 int reg_offset;
3745
3746 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2 :
3747 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2);
3748
3749 val = REG_RD(bp, reg_offset);
3750 val &= ~(attn & HW_INTERRUT_ASSERT_SET_2);
3751 REG_WR(bp, reg_offset, val);
3752
3753 BNX2X_ERR("FATAL HW block attention set2 0x%x\n",
0fc5d009 3754 (u32)(attn & HW_INTERRUT_ASSERT_SET_2));
34f80b04
EG
3755 bnx2x_panic();
3756 }
877e9aa4
ET
3757}
3758
1191cb83 3759static void bnx2x_attn_int_deasserted3(struct bnx2x *bp, u32 attn)
877e9aa4 3760{
34f80b04
EG
3761 u32 val;
3762
877e9aa4
ET
3763 if (attn & EVEREST_GEN_ATTN_IN_USE_MASK) {
3764
34f80b04
EG
3765 if (attn & BNX2X_PMF_LINK_ASSERT) {
3766 int func = BP_FUNC(bp);
3767
3768 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
a3348722 3769 bnx2x_read_mf_cfg(bp);
f2e0899f
DK
3770 bp->mf_config[BP_VN(bp)] = MF_CFG_RD(bp,
3771 func_mf_config[BP_ABS_FUNC(bp)].config);
3772 val = SHMEM_RD(bp,
3773 func_mb[BP_FW_MB_IDX(bp)].drv_status);
2691d51d
EG
3774 if (val & DRV_STATUS_DCC_EVENT_MASK)
3775 bnx2x_dcc_event(bp,
3776 (val & DRV_STATUS_DCC_EVENT_MASK));
0793f83f
DK
3777
3778 if (val & DRV_STATUS_SET_MF_BW)
3779 bnx2x_set_mf_bw(bp);
3780
1d187b34
BW
3781 if (val & DRV_STATUS_DRV_INFO_REQ)
3782 bnx2x_handle_drv_info_req(bp);
2691d51d 3783 if ((bp->port.pmf == 0) && (val & DRV_STATUS_PMF))
34f80b04
EG
3784 bnx2x_pmf_update(bp);
3785
e4901dde 3786 if (bp->port.pmf &&
785b9b1a
SR
3787 (val & DRV_STATUS_DCBX_NEGOTIATION_RESULTS) &&
3788 bp->dcbx_enabled > 0)
e4901dde
VZ
3789 /* start dcbx state machine */
3790 bnx2x_dcbx_set_params(bp,
3791 BNX2X_DCBX_STATE_NEG_RECEIVED);
a3348722
BW
3792 if (val & DRV_STATUS_AFEX_EVENT_MASK)
3793 bnx2x_handle_afex_cmd(bp,
3794 val & DRV_STATUS_AFEX_EVENT_MASK);
c8c60d88
YM
3795 if (val & DRV_STATUS_EEE_NEGOTIATION_RESULTS)
3796 bnx2x_handle_eee_event(bp);
3deb8167
YR
3797 if (bp->link_vars.periodic_flags &
3798 PERIODIC_FLAGS_LINK_EVENT) {
3799 /* sync with link */
3800 bnx2x_acquire_phy_lock(bp);
3801 bp->link_vars.periodic_flags &=
3802 ~PERIODIC_FLAGS_LINK_EVENT;
3803 bnx2x_release_phy_lock(bp);
3804 if (IS_MF(bp))
3805 bnx2x_link_sync_notify(bp);
3806 bnx2x_link_report(bp);
3807 }
3808 /* Always call it here: bnx2x_link_report() will
3809 * prevent the link indication duplication.
3810 */
3811 bnx2x__link_status_update(bp);
34f80b04 3812 } else if (attn & BNX2X_MC_ASSERT_BITS) {
877e9aa4
ET
3813
3814 BNX2X_ERR("MC assert!\n");
d6cae238 3815 bnx2x_mc_assert(bp);
877e9aa4
ET
3816 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_10, 0);
3817 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_9, 0);
3818 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_8, 0);
3819 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_7, 0);
3820 bnx2x_panic();
3821
3822 } else if (attn & BNX2X_MCP_ASSERT) {
3823
3824 BNX2X_ERR("MCP assert!\n");
3825 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_11, 0);
34f80b04 3826 bnx2x_fw_dump(bp);
877e9aa4
ET
3827
3828 } else
3829 BNX2X_ERR("Unknown HW assert! (attn 0x%x)\n", attn);
3830 }
3831
3832 if (attn & EVEREST_LATCHED_ATTN_IN_USE_MASK) {
34f80b04
EG
3833 BNX2X_ERR("LATCHED attention 0x%08x (masked)\n", attn);
3834 if (attn & BNX2X_GRC_TIMEOUT) {
f2e0899f
DK
3835 val = CHIP_IS_E1(bp) ? 0 :
3836 REG_RD(bp, MISC_REG_GRC_TIMEOUT_ATTN);
34f80b04
EG
3837 BNX2X_ERR("GRC time-out 0x%08x\n", val);
3838 }
3839 if (attn & BNX2X_GRC_RSV) {
f2e0899f
DK
3840 val = CHIP_IS_E1(bp) ? 0 :
3841 REG_RD(bp, MISC_REG_GRC_RSV_ATTN);
34f80b04
EG
3842 BNX2X_ERR("GRC reserved 0x%08x\n", val);
3843 }
877e9aa4 3844 REG_WR(bp, MISC_REG_AEU_CLR_LATCH_SIGNAL, 0x7ff);
877e9aa4
ET
3845 }
3846}
3847
c9ee9206
VZ
3848/*
3849 * Bits map:
3850 * 0-7 - Engine0 load counter.
3851 * 8-15 - Engine1 load counter.
3852 * 16 - Engine0 RESET_IN_PROGRESS bit.
3853 * 17 - Engine1 RESET_IN_PROGRESS bit.
3854 * 18 - Engine0 ONE_IS_LOADED. Set when there is at least one active function
3855 * on the engine
3856 * 19 - Engine1 ONE_IS_LOADED.
3857 * 20 - Chip reset flow bit. When set none-leader must wait for both engines
3858 * leader to complete (check for both RESET_IN_PROGRESS bits and not for
3859 * just the one belonging to its engine).
3860 *
3861 */
3862#define BNX2X_RECOVERY_GLOB_REG MISC_REG_GENERIC_POR_1
3863
3864#define BNX2X_PATH0_LOAD_CNT_MASK 0x000000ff
3865#define BNX2X_PATH0_LOAD_CNT_SHIFT 0
3866#define BNX2X_PATH1_LOAD_CNT_MASK 0x0000ff00
3867#define BNX2X_PATH1_LOAD_CNT_SHIFT 8
3868#define BNX2X_PATH0_RST_IN_PROG_BIT 0x00010000
3869#define BNX2X_PATH1_RST_IN_PROG_BIT 0x00020000
3870#define BNX2X_GLOBAL_RESET_BIT 0x00040000
3871
3872/*
3873 * Set the GLOBAL_RESET bit.
3874 *
3875 * Should be run under rtnl lock
3876 */
3877void bnx2x_set_reset_global(struct bnx2x *bp)
3878{
f16da43b
AE
3879 u32 val;
3880 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3881 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 3882 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val | BNX2X_GLOBAL_RESET_BIT);
f16da43b 3883 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206
VZ
3884}
3885
3886/*
3887 * Clear the GLOBAL_RESET bit.
3888 *
3889 * Should be run under rtnl lock
3890 */
1191cb83 3891static void bnx2x_clear_reset_global(struct bnx2x *bp)
c9ee9206 3892{
f16da43b
AE
3893 u32 val;
3894 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3895 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 3896 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val & (~BNX2X_GLOBAL_RESET_BIT));
f16da43b 3897 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206 3898}
f85582f8 3899
72fd0718 3900/*
c9ee9206
VZ
3901 * Checks the GLOBAL_RESET bit.
3902 *
72fd0718
VZ
3903 * should be run under rtnl lock
3904 */
1191cb83 3905static bool bnx2x_reset_is_global(struct bnx2x *bp)
c9ee9206
VZ
3906{
3907 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
3908
3909 DP(NETIF_MSG_HW, "GEN_REG_VAL=0x%08x\n", val);
3910 return (val & BNX2X_GLOBAL_RESET_BIT) ? true : false;
3911}
3912
3913/*
3914 * Clear RESET_IN_PROGRESS bit for the current engine.
3915 *
3916 * Should be run under rtnl lock
3917 */
1191cb83 3918static void bnx2x_set_reset_done(struct bnx2x *bp)
72fd0718 3919{
f16da43b 3920 u32 val;
c9ee9206
VZ
3921 u32 bit = BP_PATH(bp) ?
3922 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
3923 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3924 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
3925
3926 /* Clear the bit */
3927 val &= ~bit;
3928 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
3929
3930 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
3931}
3932
3933/*
c9ee9206
VZ
3934 * Set RESET_IN_PROGRESS for the current engine.
3935 *
72fd0718
VZ
3936 * should be run under rtnl lock
3937 */
c9ee9206 3938void bnx2x_set_reset_in_progress(struct bnx2x *bp)
72fd0718 3939{
f16da43b 3940 u32 val;
c9ee9206
VZ
3941 u32 bit = BP_PATH(bp) ?
3942 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
3943 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3944 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
3945
3946 /* Set the bit */
3947 val |= bit;
3948 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 3949 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
3950}
3951
3952/*
c9ee9206 3953 * Checks the RESET_IN_PROGRESS bit for the given engine.
72fd0718
VZ
3954 * should be run under rtnl lock
3955 */
c9ee9206 3956bool bnx2x_reset_is_done(struct bnx2x *bp, int engine)
72fd0718 3957{
c9ee9206
VZ
3958 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
3959 u32 bit = engine ?
3960 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
3961
3962 /* return false if bit is set */
3963 return (val & bit) ? false : true;
72fd0718
VZ
3964}
3965
3966/*
889b9af3 3967 * set pf load for the current pf.
c9ee9206 3968 *
72fd0718
VZ
3969 * should be run under rtnl lock
3970 */
889b9af3 3971void bnx2x_set_pf_load(struct bnx2x *bp)
72fd0718 3972{
f16da43b 3973 u32 val1, val;
c9ee9206
VZ
3974 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
3975 BNX2X_PATH0_LOAD_CNT_MASK;
3976 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
3977 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 3978
f16da43b
AE
3979 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3980 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
3981
51c1a580 3982 DP(NETIF_MSG_IFUP, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 3983
c9ee9206
VZ
3984 /* get the current counter value */
3985 val1 = (val & mask) >> shift;
3986
889b9af3
AE
3987 /* set bit of that PF */
3988 val1 |= (1 << bp->pf_num);
c9ee9206
VZ
3989
3990 /* clear the old value */
3991 val &= ~mask;
3992
3993 /* set the new one */
3994 val |= ((val1 << shift) & mask);
3995
3996 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 3997 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
3998}
3999
c9ee9206 4000/**
889b9af3 4001 * bnx2x_clear_pf_load - clear pf load mark
c9ee9206
VZ
4002 *
4003 * @bp: driver handle
4004 *
4005 * Should be run under rtnl lock.
4006 * Decrements the load counter for the current engine. Returns
889b9af3 4007 * whether other functions are still loaded
72fd0718 4008 */
889b9af3 4009bool bnx2x_clear_pf_load(struct bnx2x *bp)
72fd0718 4010{
f16da43b 4011 u32 val1, val;
c9ee9206
VZ
4012 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4013 BNX2X_PATH0_LOAD_CNT_MASK;
4014 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4015 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4016
f16da43b
AE
4017 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4018 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
51c1a580 4019 DP(NETIF_MSG_IFDOWN, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4020
c9ee9206
VZ
4021 /* get the current counter value */
4022 val1 = (val & mask) >> shift;
4023
889b9af3
AE
4024 /* clear bit of that PF */
4025 val1 &= ~(1 << bp->pf_num);
c9ee9206
VZ
4026
4027 /* clear the old value */
4028 val &= ~mask;
4029
4030 /* set the new one */
4031 val |= ((val1 << shift) & mask);
4032
4033 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4034 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4035 return val1 != 0;
72fd0718
VZ
4036}
4037
4038/*
889b9af3 4039 * Read the load status for the current engine.
c9ee9206 4040 *
72fd0718
VZ
4041 * should be run under rtnl lock
4042 */
1191cb83 4043static bool bnx2x_get_load_status(struct bnx2x *bp, int engine)
72fd0718 4044{
c9ee9206
VZ
4045 u32 mask = (engine ? BNX2X_PATH1_LOAD_CNT_MASK :
4046 BNX2X_PATH0_LOAD_CNT_MASK);
4047 u32 shift = (engine ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4048 BNX2X_PATH0_LOAD_CNT_SHIFT);
4049 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4050
51c1a580 4051 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "GLOB_REG=0x%08x\n", val);
c9ee9206
VZ
4052
4053 val = (val & mask) >> shift;
4054
51c1a580
MS
4055 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "load mask for engine %d = 0x%x\n",
4056 engine, val);
c9ee9206 4057
889b9af3 4058 return val != 0;
72fd0718
VZ
4059}
4060
1191cb83 4061static void _print_next_block(int idx, const char *blk)
72fd0718 4062{
f1deab50 4063 pr_cont("%s%s", idx ? ", " : "", blk);
72fd0718
VZ
4064}
4065
1191cb83
ED
4066static int bnx2x_check_blocks_with_parity0(u32 sig, int par_num,
4067 bool print)
72fd0718
VZ
4068{
4069 int i = 0;
4070 u32 cur_bit = 0;
4071 for (i = 0; sig; i++) {
4072 cur_bit = ((u32)0x1 << i);
4073 if (sig & cur_bit) {
4074 switch (cur_bit) {
4075 case AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR:
c9ee9206
VZ
4076 if (print)
4077 _print_next_block(par_num++, "BRB");
72fd0718
VZ
4078 break;
4079 case AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR:
c9ee9206
VZ
4080 if (print)
4081 _print_next_block(par_num++, "PARSER");
72fd0718
VZ
4082 break;
4083 case AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR:
c9ee9206
VZ
4084 if (print)
4085 _print_next_block(par_num++, "TSDM");
72fd0718
VZ
4086 break;
4087 case AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR:
c9ee9206
VZ
4088 if (print)
4089 _print_next_block(par_num++,
4090 "SEARCHER");
4091 break;
4092 case AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR:
4093 if (print)
4094 _print_next_block(par_num++, "TCM");
72fd0718
VZ
4095 break;
4096 case AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR:
c9ee9206
VZ
4097 if (print)
4098 _print_next_block(par_num++, "TSEMI");
4099 break;
4100 case AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR:
4101 if (print)
4102 _print_next_block(par_num++, "XPB");
72fd0718
VZ
4103 break;
4104 }
4105
4106 /* Clear the bit */
4107 sig &= ~cur_bit;
4108 }
4109 }
4110
4111 return par_num;
4112}
4113
1191cb83
ED
4114static int bnx2x_check_blocks_with_parity1(u32 sig, int par_num,
4115 bool *global, bool print)
72fd0718
VZ
4116{
4117 int i = 0;
4118 u32 cur_bit = 0;
4119 for (i = 0; sig; i++) {
4120 cur_bit = ((u32)0x1 << i);
4121 if (sig & cur_bit) {
4122 switch (cur_bit) {
c9ee9206
VZ
4123 case AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR:
4124 if (print)
4125 _print_next_block(par_num++, "PBF");
72fd0718
VZ
4126 break;
4127 case AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR:
c9ee9206
VZ
4128 if (print)
4129 _print_next_block(par_num++, "QM");
4130 break;
4131 case AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR:
4132 if (print)
4133 _print_next_block(par_num++, "TM");
72fd0718
VZ
4134 break;
4135 case AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR:
c9ee9206
VZ
4136 if (print)
4137 _print_next_block(par_num++, "XSDM");
4138 break;
4139 case AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR:
4140 if (print)
4141 _print_next_block(par_num++, "XCM");
72fd0718
VZ
4142 break;
4143 case AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR:
c9ee9206
VZ
4144 if (print)
4145 _print_next_block(par_num++, "XSEMI");
72fd0718
VZ
4146 break;
4147 case AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR:
c9ee9206
VZ
4148 if (print)
4149 _print_next_block(par_num++,
4150 "DOORBELLQ");
4151 break;
4152 case AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR:
4153 if (print)
4154 _print_next_block(par_num++, "NIG");
72fd0718
VZ
4155 break;
4156 case AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR:
c9ee9206
VZ
4157 if (print)
4158 _print_next_block(par_num++,
4159 "VAUX PCI CORE");
4160 *global = true;
72fd0718
VZ
4161 break;
4162 case AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR:
c9ee9206
VZ
4163 if (print)
4164 _print_next_block(par_num++, "DEBUG");
72fd0718
VZ
4165 break;
4166 case AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR:
c9ee9206
VZ
4167 if (print)
4168 _print_next_block(par_num++, "USDM");
72fd0718 4169 break;
8736c826
VZ
4170 case AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR:
4171 if (print)
4172 _print_next_block(par_num++, "UCM");
4173 break;
72fd0718 4174 case AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR:
c9ee9206
VZ
4175 if (print)
4176 _print_next_block(par_num++, "USEMI");
72fd0718
VZ
4177 break;
4178 case AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR:
c9ee9206
VZ
4179 if (print)
4180 _print_next_block(par_num++, "UPB");
72fd0718
VZ
4181 break;
4182 case AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR:
c9ee9206
VZ
4183 if (print)
4184 _print_next_block(par_num++, "CSDM");
72fd0718 4185 break;
8736c826
VZ
4186 case AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR:
4187 if (print)
4188 _print_next_block(par_num++, "CCM");
4189 break;
72fd0718
VZ
4190 }
4191
4192 /* Clear the bit */
4193 sig &= ~cur_bit;
4194 }
4195 }
4196
4197 return par_num;
4198}
4199
1191cb83
ED
4200static int bnx2x_check_blocks_with_parity2(u32 sig, int par_num,
4201 bool print)
72fd0718
VZ
4202{
4203 int i = 0;
4204 u32 cur_bit = 0;
4205 for (i = 0; sig; i++) {
4206 cur_bit = ((u32)0x1 << i);
4207 if (sig & cur_bit) {
4208 switch (cur_bit) {
4209 case AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR:
c9ee9206
VZ
4210 if (print)
4211 _print_next_block(par_num++, "CSEMI");
72fd0718
VZ
4212 break;
4213 case AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR:
c9ee9206
VZ
4214 if (print)
4215 _print_next_block(par_num++, "PXP");
72fd0718
VZ
4216 break;
4217 case AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR:
c9ee9206
VZ
4218 if (print)
4219 _print_next_block(par_num++,
72fd0718
VZ
4220 "PXPPCICLOCKCLIENT");
4221 break;
4222 case AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR:
c9ee9206
VZ
4223 if (print)
4224 _print_next_block(par_num++, "CFC");
72fd0718
VZ
4225 break;
4226 case AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR:
c9ee9206
VZ
4227 if (print)
4228 _print_next_block(par_num++, "CDU");
4229 break;
4230 case AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR:
4231 if (print)
4232 _print_next_block(par_num++, "DMAE");
72fd0718
VZ
4233 break;
4234 case AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR:
c9ee9206
VZ
4235 if (print)
4236 _print_next_block(par_num++, "IGU");
72fd0718
VZ
4237 break;
4238 case AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR:
c9ee9206
VZ
4239 if (print)
4240 _print_next_block(par_num++, "MISC");
72fd0718
VZ
4241 break;
4242 }
4243
4244 /* Clear the bit */
4245 sig &= ~cur_bit;
4246 }
4247 }
4248
4249 return par_num;
4250}
4251
1191cb83
ED
4252static int bnx2x_check_blocks_with_parity3(u32 sig, int par_num,
4253 bool *global, bool print)
72fd0718
VZ
4254{
4255 int i = 0;
4256 u32 cur_bit = 0;
4257 for (i = 0; sig; i++) {
4258 cur_bit = ((u32)0x1 << i);
4259 if (sig & cur_bit) {
4260 switch (cur_bit) {
4261 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY:
c9ee9206
VZ
4262 if (print)
4263 _print_next_block(par_num++, "MCP ROM");
4264 *global = true;
72fd0718
VZ
4265 break;
4266 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY:
c9ee9206
VZ
4267 if (print)
4268 _print_next_block(par_num++,
4269 "MCP UMP RX");
4270 *global = true;
72fd0718
VZ
4271 break;
4272 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY:
c9ee9206
VZ
4273 if (print)
4274 _print_next_block(par_num++,
4275 "MCP UMP TX");
4276 *global = true;
72fd0718
VZ
4277 break;
4278 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY:
c9ee9206
VZ
4279 if (print)
4280 _print_next_block(par_num++,
4281 "MCP SCPAD");
4282 *global = true;
72fd0718
VZ
4283 break;
4284 }
4285
4286 /* Clear the bit */
4287 sig &= ~cur_bit;
4288 }
4289 }
4290
4291 return par_num;
4292}
4293
1191cb83
ED
4294static int bnx2x_check_blocks_with_parity4(u32 sig, int par_num,
4295 bool print)
8736c826
VZ
4296{
4297 int i = 0;
4298 u32 cur_bit = 0;
4299 for (i = 0; sig; i++) {
4300 cur_bit = ((u32)0x1 << i);
4301 if (sig & cur_bit) {
4302 switch (cur_bit) {
4303 case AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR:
4304 if (print)
4305 _print_next_block(par_num++, "PGLUE_B");
4306 break;
4307 case AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR:
4308 if (print)
4309 _print_next_block(par_num++, "ATC");
4310 break;
4311 }
4312
4313 /* Clear the bit */
4314 sig &= ~cur_bit;
4315 }
4316 }
4317
4318 return par_num;
4319}
4320
1191cb83
ED
4321static bool bnx2x_parity_attn(struct bnx2x *bp, bool *global, bool print,
4322 u32 *sig)
72fd0718 4323{
8736c826
VZ
4324 if ((sig[0] & HW_PRTY_ASSERT_SET_0) ||
4325 (sig[1] & HW_PRTY_ASSERT_SET_1) ||
4326 (sig[2] & HW_PRTY_ASSERT_SET_2) ||
4327 (sig[3] & HW_PRTY_ASSERT_SET_3) ||
4328 (sig[4] & HW_PRTY_ASSERT_SET_4)) {
72fd0718 4329 int par_num = 0;
51c1a580
MS
4330 DP(NETIF_MSG_HW, "Was parity error: HW block parity attention:\n"
4331 "[0]:0x%08x [1]:0x%08x [2]:0x%08x [3]:0x%08x [4]:0x%08x\n",
8736c826
VZ
4332 sig[0] & HW_PRTY_ASSERT_SET_0,
4333 sig[1] & HW_PRTY_ASSERT_SET_1,
4334 sig[2] & HW_PRTY_ASSERT_SET_2,
4335 sig[3] & HW_PRTY_ASSERT_SET_3,
4336 sig[4] & HW_PRTY_ASSERT_SET_4);
c9ee9206
VZ
4337 if (print)
4338 netdev_err(bp->dev,
4339 "Parity errors detected in blocks: ");
4340 par_num = bnx2x_check_blocks_with_parity0(
8736c826 4341 sig[0] & HW_PRTY_ASSERT_SET_0, par_num, print);
c9ee9206 4342 par_num = bnx2x_check_blocks_with_parity1(
8736c826 4343 sig[1] & HW_PRTY_ASSERT_SET_1, par_num, global, print);
c9ee9206 4344 par_num = bnx2x_check_blocks_with_parity2(
8736c826 4345 sig[2] & HW_PRTY_ASSERT_SET_2, par_num, print);
c9ee9206 4346 par_num = bnx2x_check_blocks_with_parity3(
8736c826
VZ
4347 sig[3] & HW_PRTY_ASSERT_SET_3, par_num, global, print);
4348 par_num = bnx2x_check_blocks_with_parity4(
4349 sig[4] & HW_PRTY_ASSERT_SET_4, par_num, print);
4350
c9ee9206
VZ
4351 if (print)
4352 pr_cont("\n");
8736c826 4353
72fd0718
VZ
4354 return true;
4355 } else
4356 return false;
4357}
4358
c9ee9206
VZ
4359/**
4360 * bnx2x_chk_parity_attn - checks for parity attentions.
4361 *
4362 * @bp: driver handle
4363 * @global: true if there was a global attention
4364 * @print: show parity attention in syslog
4365 */
4366bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print)
877e9aa4 4367{
8736c826 4368 struct attn_route attn = { {0} };
72fd0718
VZ
4369 int port = BP_PORT(bp);
4370
4371 attn.sig[0] = REG_RD(bp,
4372 MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 +
4373 port*4);
4374 attn.sig[1] = REG_RD(bp,
4375 MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 +
4376 port*4);
4377 attn.sig[2] = REG_RD(bp,
4378 MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 +
4379 port*4);
4380 attn.sig[3] = REG_RD(bp,
4381 MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 +
4382 port*4);
4383
8736c826
VZ
4384 if (!CHIP_IS_E1x(bp))
4385 attn.sig[4] = REG_RD(bp,
4386 MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 +
4387 port*4);
4388
4389 return bnx2x_parity_attn(bp, global, print, attn.sig);
72fd0718
VZ
4390}
4391
f2e0899f 4392
1191cb83 4393static void bnx2x_attn_int_deasserted4(struct bnx2x *bp, u32 attn)
f2e0899f
DK
4394{
4395 u32 val;
4396 if (attn & AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT) {
4397
4398 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS_CLR);
4399 BNX2X_ERR("PGLUE hw attention 0x%x\n", val);
4400 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR)
51c1a580 4401 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR\n");
f2e0899f 4402 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR)
51c1a580 4403 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR\n");
f2e0899f 4404 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN)
51c1a580 4405 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN\n");
f2e0899f 4406 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN)
51c1a580 4407 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN\n");
f2e0899f
DK
4408 if (val &
4409 PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN)
51c1a580 4410 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN\n");
f2e0899f
DK
4411 if (val &
4412 PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN)
51c1a580 4413 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN\n");
f2e0899f 4414 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN)
51c1a580 4415 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN\n");
f2e0899f 4416 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN)
51c1a580 4417 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN\n");
f2e0899f 4418 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW)
51c1a580 4419 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW\n");
f2e0899f
DK
4420 }
4421 if (attn & AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT) {
4422 val = REG_RD(bp, ATC_REG_ATC_INT_STS_CLR);
4423 BNX2X_ERR("ATC hw attention 0x%x\n", val);
4424 if (val & ATC_ATC_INT_STS_REG_ADDRESS_ERROR)
4425 BNX2X_ERR("ATC_ATC_INT_STS_REG_ADDRESS_ERROR\n");
4426 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND)
51c1a580 4427 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND\n");
f2e0899f 4428 if (val & ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS)
51c1a580 4429 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS\n");
f2e0899f 4430 if (val & ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT)
51c1a580 4431 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT\n");
f2e0899f
DK
4432 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR)
4433 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR\n");
4434 if (val & ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU)
51c1a580 4435 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU\n");
f2e0899f
DK
4436 }
4437
4438 if (attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4439 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)) {
4440 BNX2X_ERR("FATAL parity attention set4 0x%x\n",
4441 (u32)(attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4442 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)));
4443 }
4444
4445}
4446
72fd0718
VZ
4447static void bnx2x_attn_int_deasserted(struct bnx2x *bp, u32 deasserted)
4448{
4449 struct attn_route attn, *group_mask;
34f80b04 4450 int port = BP_PORT(bp);
877e9aa4 4451 int index;
a2fbb9ea
ET
4452 u32 reg_addr;
4453 u32 val;
3fcaf2e5 4454 u32 aeu_mask;
c9ee9206 4455 bool global = false;
a2fbb9ea
ET
4456
4457 /* need to take HW lock because MCP or other port might also
4458 try to handle this event */
4a37fb66 4459 bnx2x_acquire_alr(bp);
a2fbb9ea 4460
c9ee9206
VZ
4461 if (bnx2x_chk_parity_attn(bp, &global, true)) {
4462#ifndef BNX2X_STOP_ON_ERROR
72fd0718 4463 bp->recovery_state = BNX2X_RECOVERY_INIT;
7be08a72 4464 schedule_delayed_work(&bp->sp_rtnl_task, 0);
72fd0718
VZ
4465 /* Disable HW interrupts */
4466 bnx2x_int_disable(bp);
72fd0718
VZ
4467 /* In case of parity errors don't handle attentions so that
4468 * other function would "see" parity errors.
4469 */
c9ee9206
VZ
4470#else
4471 bnx2x_panic();
4472#endif
4473 bnx2x_release_alr(bp);
72fd0718
VZ
4474 return;
4475 }
4476
a2fbb9ea
ET
4477 attn.sig[0] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + port*4);
4478 attn.sig[1] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 + port*4);
4479 attn.sig[2] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 + port*4);
4480 attn.sig[3] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 + port*4);
619c5cb6 4481 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
4482 attn.sig[4] =
4483 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 + port*4);
4484 else
4485 attn.sig[4] = 0;
4486
4487 DP(NETIF_MSG_HW, "attn: %08x %08x %08x %08x %08x\n",
4488 attn.sig[0], attn.sig[1], attn.sig[2], attn.sig[3], attn.sig[4]);
a2fbb9ea
ET
4489
4490 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
4491 if (deasserted & (1 << index)) {
72fd0718 4492 group_mask = &bp->attn_group[index];
a2fbb9ea 4493
51c1a580 4494 DP(NETIF_MSG_HW, "group[%d]: %08x %08x %08x %08x %08x\n",
f2e0899f
DK
4495 index,
4496 group_mask->sig[0], group_mask->sig[1],
4497 group_mask->sig[2], group_mask->sig[3],
4498 group_mask->sig[4]);
a2fbb9ea 4499
f2e0899f
DK
4500 bnx2x_attn_int_deasserted4(bp,
4501 attn.sig[4] & group_mask->sig[4]);
877e9aa4 4502 bnx2x_attn_int_deasserted3(bp,
72fd0718 4503 attn.sig[3] & group_mask->sig[3]);
877e9aa4 4504 bnx2x_attn_int_deasserted1(bp,
72fd0718 4505 attn.sig[1] & group_mask->sig[1]);
877e9aa4 4506 bnx2x_attn_int_deasserted2(bp,
72fd0718 4507 attn.sig[2] & group_mask->sig[2]);
877e9aa4 4508 bnx2x_attn_int_deasserted0(bp,
72fd0718 4509 attn.sig[0] & group_mask->sig[0]);
a2fbb9ea
ET
4510 }
4511 }
4512
4a37fb66 4513 bnx2x_release_alr(bp);
a2fbb9ea 4514
f2e0899f
DK
4515 if (bp->common.int_block == INT_BLOCK_HC)
4516 reg_addr = (HC_REG_COMMAND_REG + port*32 +
4517 COMMAND_REG_ATTN_BITS_CLR);
4518 else
4519 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_CLR_UPPER*8);
a2fbb9ea
ET
4520
4521 val = ~deasserted;
f2e0899f
DK
4522 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", val,
4523 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
5c862848 4524 REG_WR(bp, reg_addr, val);
a2fbb9ea 4525
a2fbb9ea 4526 if (~bp->attn_state & deasserted)
3fcaf2e5 4527 BNX2X_ERR("IGU ERROR\n");
a2fbb9ea
ET
4528
4529 reg_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
4530 MISC_REG_AEU_MASK_ATTN_FUNC_0;
4531
3fcaf2e5
EG
4532 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
4533 aeu_mask = REG_RD(bp, reg_addr);
4534
4535 DP(NETIF_MSG_HW, "aeu_mask %x newly deasserted %x\n",
4536 aeu_mask, deasserted);
72fd0718 4537 aeu_mask |= (deasserted & 0x3ff);
3fcaf2e5 4538 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 4539
3fcaf2e5
EG
4540 REG_WR(bp, reg_addr, aeu_mask);
4541 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea
ET
4542
4543 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
4544 bp->attn_state &= ~deasserted;
4545 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
4546}
4547
4548static void bnx2x_attn_int(struct bnx2x *bp)
4549{
4550 /* read local copy of bits */
68d59484
EG
4551 u32 attn_bits = le32_to_cpu(bp->def_status_blk->atten_status_block.
4552 attn_bits);
4553 u32 attn_ack = le32_to_cpu(bp->def_status_blk->atten_status_block.
4554 attn_bits_ack);
a2fbb9ea
ET
4555 u32 attn_state = bp->attn_state;
4556
4557 /* look for changed bits */
4558 u32 asserted = attn_bits & ~attn_ack & ~attn_state;
4559 u32 deasserted = ~attn_bits & attn_ack & attn_state;
4560
4561 DP(NETIF_MSG_HW,
4562 "attn_bits %x attn_ack %x asserted %x deasserted %x\n",
4563 attn_bits, attn_ack, asserted, deasserted);
4564
4565 if (~(attn_bits ^ attn_ack) & (attn_bits ^ attn_state))
34f80b04 4566 BNX2X_ERR("BAD attention state\n");
a2fbb9ea
ET
4567
4568 /* handle bits that were raised */
4569 if (asserted)
4570 bnx2x_attn_int_asserted(bp, asserted);
4571
4572 if (deasserted)
4573 bnx2x_attn_int_deasserted(bp, deasserted);
4574}
4575
619c5cb6
VZ
4576void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
4577 u16 index, u8 op, u8 update)
4578{
4579 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id)*8;
4580
4581 bnx2x_igu_ack_sb_gen(bp, igu_sb_id, segment, index, op, update,
4582 igu_addr);
4583}
4584
1191cb83 4585static void bnx2x_update_eq_prod(struct bnx2x *bp, u16 prod)
523224a3
DK
4586{
4587 /* No memory barriers */
4588 storm_memset_eq_prod(bp, prod, BP_FUNC(bp));
4589 mmiowb(); /* keep prod updates ordered */
4590}
4591
523224a3
DK
4592static int bnx2x_cnic_handle_cfc_del(struct bnx2x *bp, u32 cid,
4593 union event_ring_elem *elem)
4594{
619c5cb6
VZ
4595 u8 err = elem->message.error;
4596
523224a3 4597 if (!bp->cnic_eth_dev.starting_cid ||
c3a8ce61
VZ
4598 (cid < bp->cnic_eth_dev.starting_cid &&
4599 cid != bp->cnic_eth_dev.iscsi_l2_cid))
523224a3
DK
4600 return 1;
4601
4602 DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid);
4603
619c5cb6
VZ
4604 if (unlikely(err)) {
4605
523224a3
DK
4606 BNX2X_ERR("got delete ramrod for CNIC CID %d with error!\n",
4607 cid);
4608 bnx2x_panic_dump(bp);
4609 }
619c5cb6 4610 bnx2x_cnic_cfc_comp(bp, cid, err);
523224a3
DK
4611 return 0;
4612}
523224a3 4613
1191cb83 4614static void bnx2x_handle_mcast_eqe(struct bnx2x *bp)
619c5cb6
VZ
4615{
4616 struct bnx2x_mcast_ramrod_params rparam;
4617 int rc;
4618
4619 memset(&rparam, 0, sizeof(rparam));
4620
4621 rparam.mcast_obj = &bp->mcast_obj;
4622
4623 netif_addr_lock_bh(bp->dev);
4624
4625 /* Clear pending state for the last command */
4626 bp->mcast_obj.raw.clear_pending(&bp->mcast_obj.raw);
4627
4628 /* If there are pending mcast commands - send them */
4629 if (bp->mcast_obj.check_pending(&bp->mcast_obj)) {
4630 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
4631 if (rc < 0)
4632 BNX2X_ERR("Failed to send pending mcast commands: %d\n",
4633 rc);
4634 }
4635
4636 netif_addr_unlock_bh(bp->dev);
4637}
4638
1191cb83
ED
4639static void bnx2x_handle_classification_eqe(struct bnx2x *bp,
4640 union event_ring_elem *elem)
619c5cb6
VZ
4641{
4642 unsigned long ramrod_flags = 0;
4643 int rc = 0;
4644 u32 cid = elem->message.data.eth_event.echo & BNX2X_SWCID_MASK;
4645 struct bnx2x_vlan_mac_obj *vlan_mac_obj;
4646
4647 /* Always push next commands out, don't wait here */
4648 __set_bit(RAMROD_CONT, &ramrod_flags);
4649
4650 switch (elem->message.data.eth_event.echo >> BNX2X_SWCID_SHIFT) {
4651 case BNX2X_FILTER_MAC_PENDING:
51c1a580 4652 DP(BNX2X_MSG_SP, "Got SETUP_MAC completions\n");
55c11941 4653 if (CNIC_LOADED(bp) && (cid == BNX2X_ISCSI_ETH_CID(bp)))
619c5cb6
VZ
4654 vlan_mac_obj = &bp->iscsi_l2_mac_obj;
4655 else
15192a8c 4656 vlan_mac_obj = &bp->sp_objs[cid].mac_obj;
619c5cb6
VZ
4657
4658 break;
619c5cb6 4659 case BNX2X_FILTER_MCAST_PENDING:
51c1a580 4660 DP(BNX2X_MSG_SP, "Got SETUP_MCAST completions\n");
619c5cb6
VZ
4661 /* This is only relevant for 57710 where multicast MACs are
4662 * configured as unicast MACs using the same ramrod.
4663 */
4664 bnx2x_handle_mcast_eqe(bp);
4665 return;
4666 default:
4667 BNX2X_ERR("Unsupported classification command: %d\n",
4668 elem->message.data.eth_event.echo);
4669 return;
4670 }
4671
4672 rc = vlan_mac_obj->complete(bp, vlan_mac_obj, elem, &ramrod_flags);
4673
4674 if (rc < 0)
4675 BNX2X_ERR("Failed to schedule new commands: %d\n", rc);
4676 else if (rc > 0)
4677 DP(BNX2X_MSG_SP, "Scheduled next pending commands...\n");
4678
4679}
4680
619c5cb6 4681static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start);
619c5cb6 4682
1191cb83 4683static void bnx2x_handle_rx_mode_eqe(struct bnx2x *bp)
619c5cb6
VZ
4684{
4685 netif_addr_lock_bh(bp->dev);
4686
4687 clear_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
4688
4689 /* Send rx_mode command again if was requested */
4690 if (test_and_clear_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state))
4691 bnx2x_set_storm_rx_mode(bp);
619c5cb6
VZ
4692 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED,
4693 &bp->sp_state))
4694 bnx2x_set_iscsi_eth_rx_mode(bp, true);
4695 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED,
4696 &bp->sp_state))
4697 bnx2x_set_iscsi_eth_rx_mode(bp, false);
619c5cb6
VZ
4698
4699 netif_addr_unlock_bh(bp->dev);
4700}
4701
1191cb83 4702static void bnx2x_after_afex_vif_lists(struct bnx2x *bp,
a3348722
BW
4703 union event_ring_elem *elem)
4704{
4705 if (elem->message.data.vif_list_event.echo == VIF_LIST_RULE_GET) {
4706 DP(BNX2X_MSG_SP,
4707 "afex: ramrod completed VIF LIST_GET, addrs 0x%x\n",
4708 elem->message.data.vif_list_event.func_bit_map);
4709 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTGET_ACK,
4710 elem->message.data.vif_list_event.func_bit_map);
4711 } else if (elem->message.data.vif_list_event.echo ==
4712 VIF_LIST_RULE_SET) {
4713 DP(BNX2X_MSG_SP, "afex: ramrod completed VIF LIST_SET\n");
4714 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTSET_ACK, 0);
4715 }
4716}
4717
4718/* called with rtnl_lock */
1191cb83 4719static void bnx2x_after_function_update(struct bnx2x *bp)
a3348722
BW
4720{
4721 int q, rc;
4722 struct bnx2x_fastpath *fp;
4723 struct bnx2x_queue_state_params queue_params = {NULL};
4724 struct bnx2x_queue_update_params *q_update_params =
4725 &queue_params.params.update;
4726
4727 /* Send Q update command with afex vlan removal values for all Qs */
4728 queue_params.cmd = BNX2X_Q_CMD_UPDATE;
4729
4730 /* set silent vlan removal values according to vlan mode */
4731 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG,
4732 &q_update_params->update_flags);
4733 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM,
4734 &q_update_params->update_flags);
4735 __set_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4736
4737 /* in access mode mark mask and value are 0 to strip all vlans */
4738 if (bp->afex_vlan_mode == FUNC_MF_CFG_AFEX_VLAN_ACCESS_MODE) {
4739 q_update_params->silent_removal_value = 0;
4740 q_update_params->silent_removal_mask = 0;
4741 } else {
4742 q_update_params->silent_removal_value =
4743 (bp->afex_def_vlan_tag & VLAN_VID_MASK);
4744 q_update_params->silent_removal_mask = VLAN_VID_MASK;
4745 }
4746
4747 for_each_eth_queue(bp, q) {
4748 /* Set the appropriate Queue object */
4749 fp = &bp->fp[q];
15192a8c 4750 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4751
4752 /* send the ramrod */
4753 rc = bnx2x_queue_state_change(bp, &queue_params);
4754 if (rc < 0)
4755 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4756 q);
4757 }
4758
a3348722 4759 if (!NO_FCOE(bp)) {
65565884 4760 fp = &bp->fp[FCOE_IDX(bp)];
15192a8c 4761 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4762
4763 /* clear pending completion bit */
4764 __clear_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4765
4766 /* mark latest Q bit */
4767 smp_mb__before_clear_bit();
4768 set_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
4769 smp_mb__after_clear_bit();
4770
4771 /* send Q update ramrod for FCoE Q */
4772 rc = bnx2x_queue_state_change(bp, &queue_params);
4773 if (rc < 0)
4774 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4775 q);
4776 } else {
4777 /* If no FCoE ring - ACK MCP now */
4778 bnx2x_link_report(bp);
4779 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
4780 }
a3348722
BW
4781}
4782
1191cb83 4783static struct bnx2x_queue_sp_obj *bnx2x_cid_to_q_obj(
619c5cb6
VZ
4784 struct bnx2x *bp, u32 cid)
4785{
94f05b0f 4786 DP(BNX2X_MSG_SP, "retrieving fp from cid %d\n", cid);
55c11941
MS
4787
4788 if (CNIC_LOADED(bp) && (cid == BNX2X_FCOE_ETH_CID(bp)))
15192a8c 4789 return &bnx2x_fcoe_sp_obj(bp, q_obj);
619c5cb6 4790 else
15192a8c 4791 return &bp->sp_objs[CID_TO_FP(cid, bp)].q_obj;
619c5cb6
VZ
4792}
4793
523224a3
DK
4794static void bnx2x_eq_int(struct bnx2x *bp)
4795{
4796 u16 hw_cons, sw_cons, sw_prod;
4797 union event_ring_elem *elem;
55c11941 4798 u8 echo;
523224a3
DK
4799 u32 cid;
4800 u8 opcode;
4801 int spqe_cnt = 0;
619c5cb6
VZ
4802 struct bnx2x_queue_sp_obj *q_obj;
4803 struct bnx2x_func_sp_obj *f_obj = &bp->func_obj;
4804 struct bnx2x_raw_obj *rss_raw = &bp->rss_conf_obj.raw;
523224a3
DK
4805
4806 hw_cons = le16_to_cpu(*bp->eq_cons_sb);
4807
4808 /* The hw_cos range is 1-255, 257 - the sw_cons range is 0-254, 256.
4809 * when we get the the next-page we nned to adjust so the loop
4810 * condition below will be met. The next element is the size of a
4811 * regular element and hence incrementing by 1
4812 */
4813 if ((hw_cons & EQ_DESC_MAX_PAGE) == EQ_DESC_MAX_PAGE)
4814 hw_cons++;
4815
25985edc 4816 /* This function may never run in parallel with itself for a
523224a3
DK
4817 * specific bp, thus there is no need in "paired" read memory
4818 * barrier here.
4819 */
4820 sw_cons = bp->eq_cons;
4821 sw_prod = bp->eq_prod;
4822
d6cae238 4823 DP(BNX2X_MSG_SP, "EQ: hw_cons %u sw_cons %u bp->eq_spq_left %x\n",
6e30dd4e 4824 hw_cons, sw_cons, atomic_read(&bp->eq_spq_left));
523224a3
DK
4825
4826 for (; sw_cons != hw_cons;
4827 sw_prod = NEXT_EQ_IDX(sw_prod), sw_cons = NEXT_EQ_IDX(sw_cons)) {
4828
4829
4830 elem = &bp->eq_ring[EQ_DESC(sw_cons)];
4831
4832 cid = SW_CID(elem->message.data.cfc_del_event.cid);
4833 opcode = elem->message.opcode;
4834
4835
4836 /* handle eq element */
4837 switch (opcode) {
4838 case EVENT_RING_OPCODE_STAT_QUERY:
51c1a580
MS
4839 DP(BNX2X_MSG_SP | BNX2X_MSG_STATS,
4840 "got statistics comp event %d\n",
619c5cb6 4841 bp->stats_comp++);
523224a3 4842 /* nothing to do with stats comp */
d6cae238 4843 goto next_spqe;
523224a3
DK
4844
4845 case EVENT_RING_OPCODE_CFC_DEL:
4846 /* handle according to cid range */
4847 /*
4848 * we may want to verify here that the bp state is
4849 * HALTING
4850 */
d6cae238 4851 DP(BNX2X_MSG_SP,
523224a3 4852 "got delete ramrod for MULTI[%d]\n", cid);
55c11941
MS
4853
4854 if (CNIC_LOADED(bp) &&
4855 !bnx2x_cnic_handle_cfc_del(bp, cid, elem))
523224a3 4856 goto next_spqe;
55c11941 4857
619c5cb6
VZ
4858 q_obj = bnx2x_cid_to_q_obj(bp, cid);
4859
4860 if (q_obj->complete_cmd(bp, q_obj, BNX2X_Q_CMD_CFC_DEL))
4861 break;
4862
4863
523224a3
DK
4864
4865 goto next_spqe;
e4901dde
VZ
4866
4867 case EVENT_RING_OPCODE_STOP_TRAFFIC:
51c1a580 4868 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got STOP TRAFFIC\n");
6debea87
DK
4869 if (f_obj->complete_cmd(bp, f_obj,
4870 BNX2X_F_CMD_TX_STOP))
4871 break;
e4901dde
VZ
4872 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_PAUSED);
4873 goto next_spqe;
619c5cb6 4874
e4901dde 4875 case EVENT_RING_OPCODE_START_TRAFFIC:
51c1a580 4876 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got START TRAFFIC\n");
6debea87
DK
4877 if (f_obj->complete_cmd(bp, f_obj,
4878 BNX2X_F_CMD_TX_START))
4879 break;
e4901dde
VZ
4880 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_RELEASED);
4881 goto next_spqe;
55c11941 4882
a3348722 4883 case EVENT_RING_OPCODE_FUNCTION_UPDATE:
55c11941
MS
4884 echo = elem->message.data.function_update_event.echo;
4885 if (echo == SWITCH_UPDATE) {
4886 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4887 "got FUNC_SWITCH_UPDATE ramrod\n");
4888 if (f_obj->complete_cmd(
4889 bp, f_obj, BNX2X_F_CMD_SWITCH_UPDATE))
4890 break;
a3348722 4891
55c11941
MS
4892 } else {
4893 DP(BNX2X_MSG_SP | BNX2X_MSG_MCP,
4894 "AFEX: ramrod completed FUNCTION_UPDATE\n");
4895 f_obj->complete_cmd(bp, f_obj,
4896 BNX2X_F_CMD_AFEX_UPDATE);
4897
4898 /* We will perform the Queues update from
4899 * sp_rtnl task as all Queue SP operations
4900 * should run under rtnl_lock.
4901 */
4902 smp_mb__before_clear_bit();
4903 set_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE,
4904 &bp->sp_rtnl_state);
4905 smp_mb__after_clear_bit();
4906
4907 schedule_delayed_work(&bp->sp_rtnl_task, 0);
4908 }
a3348722 4909
a3348722
BW
4910 goto next_spqe;
4911
4912 case EVENT_RING_OPCODE_AFEX_VIF_LISTS:
4913 f_obj->complete_cmd(bp, f_obj,
4914 BNX2X_F_CMD_AFEX_VIFLISTS);
4915 bnx2x_after_afex_vif_lists(bp, elem);
4916 goto next_spqe;
619c5cb6 4917 case EVENT_RING_OPCODE_FUNCTION_START:
51c1a580
MS
4918 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4919 "got FUNC_START ramrod\n");
619c5cb6
VZ
4920 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_START))
4921 break;
4922
4923 goto next_spqe;
4924
4925 case EVENT_RING_OPCODE_FUNCTION_STOP:
51c1a580
MS
4926 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4927 "got FUNC_STOP ramrod\n");
619c5cb6
VZ
4928 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_STOP))
4929 break;
4930
4931 goto next_spqe;
523224a3
DK
4932 }
4933
4934 switch (opcode | bp->state) {
619c5cb6
VZ
4935 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
4936 BNX2X_STATE_OPEN):
4937 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
523224a3 4938 BNX2X_STATE_OPENING_WAIT4_PORT):
619c5cb6
VZ
4939 cid = elem->message.data.eth_event.echo &
4940 BNX2X_SWCID_MASK;
d6cae238 4941 DP(BNX2X_MSG_SP, "got RSS_UPDATE ramrod. CID %d\n",
619c5cb6
VZ
4942 cid);
4943 rss_raw->clear_pending(rss_raw);
523224a3
DK
4944 break;
4945
619c5cb6
VZ
4946 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_OPEN):
4947 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_DIAG):
4948 case (EVENT_RING_OPCODE_SET_MAC |
523224a3 4949 BNX2X_STATE_CLOSING_WAIT4_HALT):
619c5cb6
VZ
4950 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4951 BNX2X_STATE_OPEN):
4952 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4953 BNX2X_STATE_DIAG):
4954 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4955 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 4956 DP(BNX2X_MSG_SP, "got (un)set mac ramrod\n");
619c5cb6 4957 bnx2x_handle_classification_eqe(bp, elem);
523224a3
DK
4958 break;
4959
619c5cb6
VZ
4960 case (EVENT_RING_OPCODE_MULTICAST_RULES |
4961 BNX2X_STATE_OPEN):
4962 case (EVENT_RING_OPCODE_MULTICAST_RULES |
4963 BNX2X_STATE_DIAG):
4964 case (EVENT_RING_OPCODE_MULTICAST_RULES |
4965 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 4966 DP(BNX2X_MSG_SP, "got mcast ramrod\n");
619c5cb6 4967 bnx2x_handle_mcast_eqe(bp);
523224a3
DK
4968 break;
4969
619c5cb6
VZ
4970 case (EVENT_RING_OPCODE_FILTERS_RULES |
4971 BNX2X_STATE_OPEN):
4972 case (EVENT_RING_OPCODE_FILTERS_RULES |
4973 BNX2X_STATE_DIAG):
4974 case (EVENT_RING_OPCODE_FILTERS_RULES |
523224a3 4975 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 4976 DP(BNX2X_MSG_SP, "got rx_mode ramrod\n");
619c5cb6 4977 bnx2x_handle_rx_mode_eqe(bp);
523224a3
DK
4978 break;
4979 default:
4980 /* unknown event log error and continue */
619c5cb6
VZ
4981 BNX2X_ERR("Unknown EQ event %d, bp->state 0x%x\n",
4982 elem->message.opcode, bp->state);
523224a3
DK
4983 }
4984next_spqe:
4985 spqe_cnt++;
4986 } /* for */
4987
8fe23fbd 4988 smp_mb__before_atomic_inc();
6e30dd4e 4989 atomic_add(spqe_cnt, &bp->eq_spq_left);
523224a3
DK
4990
4991 bp->eq_cons = sw_cons;
4992 bp->eq_prod = sw_prod;
4993 /* Make sure that above mem writes were issued towards the memory */
4994 smp_wmb();
4995
4996 /* update producer */
4997 bnx2x_update_eq_prod(bp, bp->eq_prod);
4998}
4999
a2fbb9ea
ET
5000static void bnx2x_sp_task(struct work_struct *work)
5001{
1cf167f2 5002 struct bnx2x *bp = container_of(work, struct bnx2x, sp_task.work);
a2fbb9ea
ET
5003 u16 status;
5004
a2fbb9ea 5005 status = bnx2x_update_dsb_idx(bp);
34f80b04
EG
5006/* if (status == 0) */
5007/* BNX2X_ERR("spurious slowpath interrupt!\n"); */
a2fbb9ea 5008
51c1a580 5009 DP(BNX2X_MSG_SP, "got a slowpath interrupt (status 0x%x)\n", status);
a2fbb9ea 5010
877e9aa4 5011 /* HW attentions */
523224a3 5012 if (status & BNX2X_DEF_SB_ATT_IDX) {
a2fbb9ea 5013 bnx2x_attn_int(bp);
523224a3 5014 status &= ~BNX2X_DEF_SB_ATT_IDX;
cdaa7cb8
VZ
5015 }
5016
523224a3
DK
5017 /* SP events: STAT_QUERY and others */
5018 if (status & BNX2X_DEF_SB_IDX) {
ec6ba945 5019 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
523224a3 5020
55c11941
MS
5021 if (FCOE_INIT(bp) &&
5022 (bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
019dbb4c
VZ
5023 /*
5024 * Prevent local bottom-halves from running as
5025 * we are going to change the local NAPI list.
5026 */
5027 local_bh_disable();
ec6ba945 5028 napi_schedule(&bnx2x_fcoe(bp, napi));
019dbb4c
VZ
5029 local_bh_enable();
5030 }
55c11941 5031
523224a3
DK
5032 /* Handle EQ completions */
5033 bnx2x_eq_int(bp);
5034
5035 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID,
5036 le16_to_cpu(bp->def_idx), IGU_INT_NOP, 1);
5037
5038 status &= ~BNX2X_DEF_SB_IDX;
cdaa7cb8
VZ
5039 }
5040
5041 if (unlikely(status))
51c1a580 5042 DP(BNX2X_MSG_SP, "got an unknown interrupt! (status 0x%x)\n",
cdaa7cb8 5043 status);
a2fbb9ea 5044
523224a3
DK
5045 bnx2x_ack_sb(bp, bp->igu_dsb_id, ATTENTION_ID,
5046 le16_to_cpu(bp->def_att_idx), IGU_INT_ENABLE, 1);
a3348722
BW
5047
5048 /* afex - poll to check if VIFSET_ACK should be sent to MFW */
5049 if (test_and_clear_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK,
5050 &bp->sp_state)) {
5051 bnx2x_link_report(bp);
5052 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
5053 }
a2fbb9ea
ET
5054}
5055
9f6c9258 5056irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance)
a2fbb9ea
ET
5057{
5058 struct net_device *dev = dev_instance;
5059 struct bnx2x *bp = netdev_priv(dev);
5060
523224a3
DK
5061 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0,
5062 IGU_INT_DISABLE, 0);
a2fbb9ea
ET
5063
5064#ifdef BNX2X_STOP_ON_ERROR
5065 if (unlikely(bp->panic))
5066 return IRQ_HANDLED;
5067#endif
5068
55c11941 5069 if (CNIC_LOADED(bp)) {
993ac7b5
MC
5070 struct cnic_ops *c_ops;
5071
5072 rcu_read_lock();
5073 c_ops = rcu_dereference(bp->cnic_ops);
5074 if (c_ops)
5075 c_ops->cnic_handler(bp->cnic_data, NULL);
5076 rcu_read_unlock();
5077 }
55c11941 5078
1cf167f2 5079 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
a2fbb9ea
ET
5080
5081 return IRQ_HANDLED;
5082}
5083
5084/* end of slow path */
5085
619c5cb6
VZ
5086
5087void bnx2x_drv_pulse(struct bnx2x *bp)
5088{
5089 SHMEM_WR(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb,
5090 bp->fw_drv_pulse_wr_seq);
5091}
5092
5093
a2fbb9ea
ET
5094static void bnx2x_timer(unsigned long data)
5095{
5096 struct bnx2x *bp = (struct bnx2x *) data;
5097
5098 if (!netif_running(bp->dev))
5099 return;
5100
34f80b04 5101 if (!BP_NOMCP(bp)) {
f2e0899f 5102 int mb_idx = BP_FW_MB_IDX(bp);
a2fbb9ea
ET
5103 u32 drv_pulse;
5104 u32 mcp_pulse;
5105
5106 ++bp->fw_drv_pulse_wr_seq;
5107 bp->fw_drv_pulse_wr_seq &= DRV_PULSE_SEQ_MASK;
5108 /* TBD - add SYSTEM_TIME */
5109 drv_pulse = bp->fw_drv_pulse_wr_seq;
619c5cb6 5110 bnx2x_drv_pulse(bp);
a2fbb9ea 5111
f2e0899f 5112 mcp_pulse = (SHMEM_RD(bp, func_mb[mb_idx].mcp_pulse_mb) &
a2fbb9ea
ET
5113 MCP_PULSE_SEQ_MASK);
5114 /* The delta between driver pulse and mcp response
5115 * should be 1 (before mcp response) or 0 (after mcp response)
5116 */
5117 if ((drv_pulse != mcp_pulse) &&
5118 (drv_pulse != ((mcp_pulse + 1) & MCP_PULSE_SEQ_MASK))) {
5119 /* someone lost a heartbeat... */
5120 BNX2X_ERR("drv_pulse (0x%x) != mcp_pulse (0x%x)\n",
5121 drv_pulse, mcp_pulse);
5122 }
5123 }
5124
f34d28ea 5125 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a 5126 bnx2x_stats_handle(bp, STATS_EVENT_UPDATE);
a2fbb9ea 5127
a2fbb9ea
ET
5128 mod_timer(&bp->timer, jiffies + bp->current_interval);
5129}
5130
5131/* end of Statistics */
5132
5133/* nic init */
5134
5135/*
5136 * nic init service functions
5137 */
5138
1191cb83 5139static void bnx2x_fill(struct bnx2x *bp, u32 addr, int fill, u32 len)
a2fbb9ea 5140{
523224a3
DK
5141 u32 i;
5142 if (!(len%4) && !(addr%4))
5143 for (i = 0; i < len; i += 4)
5144 REG_WR(bp, addr + i, fill);
5145 else
5146 for (i = 0; i < len; i++)
5147 REG_WR8(bp, addr + i, fill);
34f80b04 5148
34f80b04
EG
5149}
5150
523224a3 5151/* helper: writes FP SP data to FW - data_size in dwords */
1191cb83
ED
5152static void bnx2x_wr_fp_sb_data(struct bnx2x *bp,
5153 int fw_sb_id,
5154 u32 *sb_data_p,
5155 u32 data_size)
34f80b04 5156{
a2fbb9ea 5157 int index;
523224a3
DK
5158 for (index = 0; index < data_size; index++)
5159 REG_WR(bp, BAR_CSTRORM_INTMEM +
5160 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id) +
5161 sizeof(u32)*index,
5162 *(sb_data_p + index));
5163}
a2fbb9ea 5164
1191cb83 5165static void bnx2x_zero_fp_sb(struct bnx2x *bp, int fw_sb_id)
523224a3
DK
5166{
5167 u32 *sb_data_p;
5168 u32 data_size = 0;
f2e0899f 5169 struct hc_status_block_data_e2 sb_data_e2;
523224a3 5170 struct hc_status_block_data_e1x sb_data_e1x;
a2fbb9ea 5171
523224a3 5172 /* disable the function first */
619c5cb6 5173 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5174 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5175 sb_data_e2.common.state = SB_DISABLED;
f2e0899f
DK
5176 sb_data_e2.common.p_func.vf_valid = false;
5177 sb_data_p = (u32 *)&sb_data_e2;
5178 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
5179 } else {
5180 memset(&sb_data_e1x, 0,
5181 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5182 sb_data_e1x.common.state = SB_DISABLED;
f2e0899f
DK
5183 sb_data_e1x.common.p_func.vf_valid = false;
5184 sb_data_p = (u32 *)&sb_data_e1x;
5185 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
5186 }
523224a3 5187 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
a2fbb9ea 5188
523224a3
DK
5189 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5190 CSTORM_STATUS_BLOCK_OFFSET(fw_sb_id), 0,
5191 CSTORM_STATUS_BLOCK_SIZE);
5192 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5193 CSTORM_SYNC_BLOCK_OFFSET(fw_sb_id), 0,
5194 CSTORM_SYNC_BLOCK_SIZE);
5195}
34f80b04 5196
523224a3 5197/* helper: writes SP SB data to FW */
1191cb83 5198static void bnx2x_wr_sp_sb_data(struct bnx2x *bp,
523224a3
DK
5199 struct hc_sp_status_block_data *sp_sb_data)
5200{
5201 int func = BP_FUNC(bp);
5202 int i;
5203 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
5204 REG_WR(bp, BAR_CSTRORM_INTMEM +
5205 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
5206 i*sizeof(u32),
5207 *((u32 *)sp_sb_data + i));
34f80b04
EG
5208}
5209
1191cb83 5210static void bnx2x_zero_sp_sb(struct bnx2x *bp)
34f80b04
EG
5211{
5212 int func = BP_FUNC(bp);
523224a3
DK
5213 struct hc_sp_status_block_data sp_sb_data;
5214 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
a2fbb9ea 5215
619c5cb6 5216 sp_sb_data.state = SB_DISABLED;
523224a3
DK
5217 sp_sb_data.p_func.vf_valid = false;
5218
5219 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
5220
5221 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5222 CSTORM_SP_STATUS_BLOCK_OFFSET(func), 0,
5223 CSTORM_SP_STATUS_BLOCK_SIZE);
5224 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5225 CSTORM_SP_SYNC_BLOCK_OFFSET(func), 0,
5226 CSTORM_SP_SYNC_BLOCK_SIZE);
5227
5228}
5229
5230
1191cb83 5231static void bnx2x_setup_ndsb_state_machine(struct hc_status_block_sm *hc_sm,
523224a3
DK
5232 int igu_sb_id, int igu_seg_id)
5233{
5234 hc_sm->igu_sb_id = igu_sb_id;
5235 hc_sm->igu_seg_id = igu_seg_id;
5236 hc_sm->timer_value = 0xFF;
5237 hc_sm->time_to_expire = 0xFFFFFFFF;
a2fbb9ea
ET
5238}
5239
150966ad
AE
5240
5241/* allocates state machine ids. */
1191cb83 5242static void bnx2x_map_sb_state_machines(struct hc_index_data *index_data)
150966ad
AE
5243{
5244 /* zero out state machine indices */
5245 /* rx indices */
5246 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5247
5248 /* tx indices */
5249 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5250 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags &= ~HC_INDEX_DATA_SM_ID;
5251 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags &= ~HC_INDEX_DATA_SM_ID;
5252 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags &= ~HC_INDEX_DATA_SM_ID;
5253
5254 /* map indices */
5255 /* rx indices */
5256 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags |=
5257 SM_RX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5258
5259 /* tx indices */
5260 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags |=
5261 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5262 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags |=
5263 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5264 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags |=
5265 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5266 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags |=
5267 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5268}
5269
8d96286a 5270static void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
523224a3 5271 u8 vf_valid, int fw_sb_id, int igu_sb_id)
a2fbb9ea 5272{
523224a3
DK
5273 int igu_seg_id;
5274
f2e0899f 5275 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
5276 struct hc_status_block_data_e1x sb_data_e1x;
5277 struct hc_status_block_sm *hc_sm_p;
523224a3
DK
5278 int data_size;
5279 u32 *sb_data_p;
5280
f2e0899f
DK
5281 if (CHIP_INT_MODE_IS_BC(bp))
5282 igu_seg_id = HC_SEG_ACCESS_NORM;
5283 else
5284 igu_seg_id = IGU_SEG_ACCESS_NORM;
523224a3
DK
5285
5286 bnx2x_zero_fp_sb(bp, fw_sb_id);
5287
619c5cb6 5288 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5289 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5290 sb_data_e2.common.state = SB_ENABLED;
f2e0899f
DK
5291 sb_data_e2.common.p_func.pf_id = BP_FUNC(bp);
5292 sb_data_e2.common.p_func.vf_id = vfid;
5293 sb_data_e2.common.p_func.vf_valid = vf_valid;
5294 sb_data_e2.common.p_func.vnic_id = BP_VN(bp);
5295 sb_data_e2.common.same_igu_sb_1b = true;
5296 sb_data_e2.common.host_sb_addr.hi = U64_HI(mapping);
5297 sb_data_e2.common.host_sb_addr.lo = U64_LO(mapping);
5298 hc_sm_p = sb_data_e2.common.state_machine;
f2e0899f
DK
5299 sb_data_p = (u32 *)&sb_data_e2;
5300 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
150966ad 5301 bnx2x_map_sb_state_machines(sb_data_e2.index_data);
f2e0899f
DK
5302 } else {
5303 memset(&sb_data_e1x, 0,
5304 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5305 sb_data_e1x.common.state = SB_ENABLED;
f2e0899f
DK
5306 sb_data_e1x.common.p_func.pf_id = BP_FUNC(bp);
5307 sb_data_e1x.common.p_func.vf_id = 0xff;
5308 sb_data_e1x.common.p_func.vf_valid = false;
5309 sb_data_e1x.common.p_func.vnic_id = BP_VN(bp);
5310 sb_data_e1x.common.same_igu_sb_1b = true;
5311 sb_data_e1x.common.host_sb_addr.hi = U64_HI(mapping);
5312 sb_data_e1x.common.host_sb_addr.lo = U64_LO(mapping);
5313 hc_sm_p = sb_data_e1x.common.state_machine;
f2e0899f
DK
5314 sb_data_p = (u32 *)&sb_data_e1x;
5315 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
150966ad 5316 bnx2x_map_sb_state_machines(sb_data_e1x.index_data);
f2e0899f 5317 }
523224a3
DK
5318
5319 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_RX_ID],
5320 igu_sb_id, igu_seg_id);
5321 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_TX_ID],
5322 igu_sb_id, igu_seg_id);
5323
51c1a580 5324 DP(NETIF_MSG_IFUP, "Init FW SB %d\n", fw_sb_id);
523224a3
DK
5325
5326 /* write indecies to HW */
5327 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
5328}
5329
619c5cb6 5330static void bnx2x_update_coalesce_sb(struct bnx2x *bp, u8 fw_sb_id,
523224a3
DK
5331 u16 tx_usec, u16 rx_usec)
5332{
6383c0b3 5333 bnx2x_update_coalesce_sb_index(bp, fw_sb_id, HC_INDEX_ETH_RX_CQ_CONS,
523224a3 5334 false, rx_usec);
6383c0b3
AE
5335 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5336 HC_INDEX_ETH_TX_CQ_CONS_COS0, false,
5337 tx_usec);
5338 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5339 HC_INDEX_ETH_TX_CQ_CONS_COS1, false,
5340 tx_usec);
5341 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5342 HC_INDEX_ETH_TX_CQ_CONS_COS2, false,
5343 tx_usec);
523224a3 5344}
f2e0899f 5345
523224a3
DK
5346static void bnx2x_init_def_sb(struct bnx2x *bp)
5347{
5348 struct host_sp_status_block *def_sb = bp->def_status_blk;
5349 dma_addr_t mapping = bp->def_status_blk_mapping;
5350 int igu_sp_sb_index;
5351 int igu_seg_id;
34f80b04
EG
5352 int port = BP_PORT(bp);
5353 int func = BP_FUNC(bp);
f2eaeb58 5354 int reg_offset, reg_offset_en5;
a2fbb9ea 5355 u64 section;
523224a3
DK
5356 int index;
5357 struct hc_sp_status_block_data sp_sb_data;
5358 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
5359
f2e0899f
DK
5360 if (CHIP_INT_MODE_IS_BC(bp)) {
5361 igu_sp_sb_index = DEF_SB_IGU_ID;
5362 igu_seg_id = HC_SEG_ACCESS_DEF;
5363 } else {
5364 igu_sp_sb_index = bp->igu_dsb_id;
5365 igu_seg_id = IGU_SEG_ACCESS_DEF;
5366 }
a2fbb9ea
ET
5367
5368 /* ATTN */
523224a3 5369 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
a2fbb9ea 5370 atten_status_block);
523224a3 5371 def_sb->atten_status_block.status_block_id = igu_sp_sb_index;
a2fbb9ea 5372
49d66772
ET
5373 bp->attn_state = 0;
5374
a2fbb9ea
ET
5375 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
5376 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
f2eaeb58
DK
5377 reg_offset_en5 = (port ? MISC_REG_AEU_ENABLE5_FUNC_1_OUT_0 :
5378 MISC_REG_AEU_ENABLE5_FUNC_0_OUT_0);
34f80b04 5379 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
523224a3
DK
5380 int sindex;
5381 /* take care of sig[0]..sig[4] */
5382 for (sindex = 0; sindex < 4; sindex++)
5383 bp->attn_group[index].sig[sindex] =
5384 REG_RD(bp, reg_offset + sindex*0x4 + 0x10*index);
f2e0899f 5385
619c5cb6 5386 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
5387 /*
5388 * enable5 is separate from the rest of the registers,
5389 * and therefore the address skip is 4
5390 * and not 16 between the different groups
5391 */
5392 bp->attn_group[index].sig[4] = REG_RD(bp,
f2eaeb58 5393 reg_offset_en5 + 0x4*index);
f2e0899f
DK
5394 else
5395 bp->attn_group[index].sig[4] = 0;
a2fbb9ea
ET
5396 }
5397
f2e0899f
DK
5398 if (bp->common.int_block == INT_BLOCK_HC) {
5399 reg_offset = (port ? HC_REG_ATTN_MSG1_ADDR_L :
5400 HC_REG_ATTN_MSG0_ADDR_L);
5401
5402 REG_WR(bp, reg_offset, U64_LO(section));
5403 REG_WR(bp, reg_offset + 4, U64_HI(section));
619c5cb6 5404 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5405 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_L, U64_LO(section));
5406 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_H, U64_HI(section));
5407 }
a2fbb9ea 5408
523224a3
DK
5409 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
5410 sp_sb);
a2fbb9ea 5411
523224a3 5412 bnx2x_zero_sp_sb(bp);
a2fbb9ea 5413
619c5cb6 5414 sp_sb_data.state = SB_ENABLED;
523224a3
DK
5415 sp_sb_data.host_sb_addr.lo = U64_LO(section);
5416 sp_sb_data.host_sb_addr.hi = U64_HI(section);
5417 sp_sb_data.igu_sb_id = igu_sp_sb_index;
5418 sp_sb_data.igu_seg_id = igu_seg_id;
5419 sp_sb_data.p_func.pf_id = func;
f2e0899f 5420 sp_sb_data.p_func.vnic_id = BP_VN(bp);
523224a3 5421 sp_sb_data.p_func.vf_id = 0xff;
a2fbb9ea 5422
523224a3 5423 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
49d66772 5424
523224a3 5425 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0, IGU_INT_ENABLE, 0);
a2fbb9ea
ET
5426}
5427
9f6c9258 5428void bnx2x_update_coalesce(struct bnx2x *bp)
a2fbb9ea 5429{
a2fbb9ea
ET
5430 int i;
5431
ec6ba945 5432 for_each_eth_queue(bp, i)
523224a3 5433 bnx2x_update_coalesce_sb(bp, bp->fp[i].fw_sb_id,
423cfa7e 5434 bp->tx_ticks, bp->rx_ticks);
a2fbb9ea
ET
5435}
5436
a2fbb9ea
ET
5437static void bnx2x_init_sp_ring(struct bnx2x *bp)
5438{
a2fbb9ea 5439 spin_lock_init(&bp->spq_lock);
6e30dd4e 5440 atomic_set(&bp->cq_spq_left, MAX_SPQ_PENDING);
a2fbb9ea 5441
a2fbb9ea 5442 bp->spq_prod_idx = 0;
a2fbb9ea
ET
5443 bp->dsb_sp_prod = BNX2X_SP_DSB_INDEX;
5444 bp->spq_prod_bd = bp->spq;
5445 bp->spq_last_bd = bp->spq_prod_bd + MAX_SP_DESC_CNT;
a2fbb9ea
ET
5446}
5447
523224a3 5448static void bnx2x_init_eq_ring(struct bnx2x *bp)
a2fbb9ea
ET
5449{
5450 int i;
523224a3
DK
5451 for (i = 1; i <= NUM_EQ_PAGES; i++) {
5452 union event_ring_elem *elem =
5453 &bp->eq_ring[EQ_DESC_CNT_PAGE * i - 1];
a2fbb9ea 5454
523224a3
DK
5455 elem->next_page.addr.hi =
5456 cpu_to_le32(U64_HI(bp->eq_mapping +
5457 BCM_PAGE_SIZE * (i % NUM_EQ_PAGES)));
5458 elem->next_page.addr.lo =
5459 cpu_to_le32(U64_LO(bp->eq_mapping +
5460 BCM_PAGE_SIZE*(i % NUM_EQ_PAGES)));
a2fbb9ea 5461 }
523224a3
DK
5462 bp->eq_cons = 0;
5463 bp->eq_prod = NUM_EQ_DESC;
5464 bp->eq_cons_sb = BNX2X_EQ_INDEX;
6e30dd4e
VZ
5465 /* we want a warning message before it gets rought... */
5466 atomic_set(&bp->eq_spq_left,
5467 min_t(int, MAX_SP_DESC_CNT - MAX_SPQ_PENDING, NUM_EQ_DESC) - 1);
a2fbb9ea
ET
5468}
5469
619c5cb6
VZ
5470
5471/* called with netif_addr_lock_bh() */
5472void bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
5473 unsigned long rx_mode_flags,
5474 unsigned long rx_accept_flags,
5475 unsigned long tx_accept_flags,
5476 unsigned long ramrod_flags)
ab532cf3 5477{
619c5cb6
VZ
5478 struct bnx2x_rx_mode_ramrod_params ramrod_param;
5479 int rc;
5480
5481 memset(&ramrod_param, 0, sizeof(ramrod_param));
5482
5483 /* Prepare ramrod parameters */
5484 ramrod_param.cid = 0;
5485 ramrod_param.cl_id = cl_id;
5486 ramrod_param.rx_mode_obj = &bp->rx_mode_obj;
5487 ramrod_param.func_id = BP_FUNC(bp);
ab532cf3 5488
619c5cb6
VZ
5489 ramrod_param.pstate = &bp->sp_state;
5490 ramrod_param.state = BNX2X_FILTER_RX_MODE_PENDING;
ab532cf3 5491
619c5cb6
VZ
5492 ramrod_param.rdata = bnx2x_sp(bp, rx_mode_rdata);
5493 ramrod_param.rdata_mapping = bnx2x_sp_mapping(bp, rx_mode_rdata);
5494
5495 set_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
5496
5497 ramrod_param.ramrod_flags = ramrod_flags;
5498 ramrod_param.rx_mode_flags = rx_mode_flags;
5499
5500 ramrod_param.rx_accept_flags = rx_accept_flags;
5501 ramrod_param.tx_accept_flags = tx_accept_flags;
5502
5503 rc = bnx2x_config_rx_mode(bp, &ramrod_param);
5504 if (rc < 0) {
5505 BNX2X_ERR("Set rx_mode %d failed\n", bp->rx_mode);
5506 return;
5507 }
a2fbb9ea
ET
5508}
5509
619c5cb6
VZ
5510/* called with netif_addr_lock_bh() */
5511void bnx2x_set_storm_rx_mode(struct bnx2x *bp)
471de716 5512{
619c5cb6
VZ
5513 unsigned long rx_mode_flags = 0, ramrod_flags = 0;
5514 unsigned long rx_accept_flags = 0, tx_accept_flags = 0;
471de716 5515
619c5cb6
VZ
5516 if (!NO_FCOE(bp))
5517
5518 /* Configure rx_mode of FCoE Queue */
5519 __set_bit(BNX2X_RX_MODE_FCOE_ETH, &rx_mode_flags);
619c5cb6
VZ
5520
5521 switch (bp->rx_mode) {
5522 case BNX2X_RX_MODE_NONE:
5523 /*
5524 * 'drop all' supersedes any accept flags that may have been
5525 * passed to the function.
5526 */
5527 break;
5528 case BNX2X_RX_MODE_NORMAL:
5529 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5530 __set_bit(BNX2X_ACCEPT_MULTICAST, &rx_accept_flags);
5531 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5532
5533 /* internal switching mode */
5534 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5535 __set_bit(BNX2X_ACCEPT_MULTICAST, &tx_accept_flags);
5536 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5537
5538 break;
5539 case BNX2X_RX_MODE_ALLMULTI:
5540 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5541 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &rx_accept_flags);
5542 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5543
5544 /* internal switching mode */
5545 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5546 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &tx_accept_flags);
5547 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5548
5549 break;
5550 case BNX2X_RX_MODE_PROMISC:
5551 /* According to deffinition of SI mode, iface in promisc mode
5552 * should receive matched and unmatched (in resolution of port)
5553 * unicast packets.
5554 */
5555 __set_bit(BNX2X_ACCEPT_UNMATCHED, &rx_accept_flags);
5556 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5557 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &rx_accept_flags);
5558 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5559
5560 /* internal switching mode */
5561 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &tx_accept_flags);
5562 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5563
5564 if (IS_MF_SI(bp))
5565 __set_bit(BNX2X_ACCEPT_ALL_UNICAST, &tx_accept_flags);
5566 else
5567 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5568
5569 break;
5570 default:
5571 BNX2X_ERR("Unknown rx_mode: %d\n", bp->rx_mode);
5572 return;
5573 }
de832a55 5574
619c5cb6
VZ
5575 if (bp->rx_mode != BNX2X_RX_MODE_NONE) {
5576 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &rx_accept_flags);
5577 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &tx_accept_flags);
34f80b04
EG
5578 }
5579
619c5cb6
VZ
5580 __set_bit(RAMROD_RX, &ramrod_flags);
5581 __set_bit(RAMROD_TX, &ramrod_flags);
5582
5583 bnx2x_set_q_rx_mode(bp, bp->fp->cl_id, rx_mode_flags, rx_accept_flags,
5584 tx_accept_flags, ramrod_flags);
5585}
5586
5587static void bnx2x_init_internal_common(struct bnx2x *bp)
5588{
5589 int i;
5590
0793f83f
DK
5591 if (IS_MF_SI(bp))
5592 /*
5593 * In switch independent mode, the TSTORM needs to accept
5594 * packets that failed classification, since approximate match
5595 * mac addresses aren't written to NIG LLH
5596 */
5597 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5598 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 2);
619c5cb6
VZ
5599 else if (!CHIP_IS_E1(bp)) /* 57710 doesn't support MF */
5600 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5601 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 0);
0793f83f 5602
523224a3
DK
5603 /* Zero this manually as its initialization is
5604 currently missing in the initTool */
5605 for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++)
ca00392c 5606 REG_WR(bp, BAR_USTRORM_INTMEM +
523224a3 5607 USTORM_AGG_DATA_OFFSET + i * 4, 0);
619c5cb6 5608 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5609 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_IGU_MODE_OFFSET,
5610 CHIP_INT_MODE_IS_BC(bp) ?
5611 HC_IGU_BC_MODE : HC_IGU_NBC_MODE);
5612 }
523224a3 5613}
8a1c38d1 5614
471de716
EG
5615static void bnx2x_init_internal(struct bnx2x *bp, u32 load_code)
5616{
5617 switch (load_code) {
5618 case FW_MSG_CODE_DRV_LOAD_COMMON:
f2e0899f 5619 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP:
471de716
EG
5620 bnx2x_init_internal_common(bp);
5621 /* no break */
5622
5623 case FW_MSG_CODE_DRV_LOAD_PORT:
619c5cb6 5624 /* nothing to do */
471de716
EG
5625 /* no break */
5626
5627 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
523224a3
DK
5628 /* internal memory per function is
5629 initialized inside bnx2x_pf_init */
471de716
EG
5630 break;
5631
5632 default:
5633 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code);
5634 break;
5635 }
5636}
5637
619c5cb6 5638static inline u8 bnx2x_fp_igu_sb_id(struct bnx2x_fastpath *fp)
523224a3 5639{
55c11941 5640 return fp->bp->igu_base_sb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6 5641}
523224a3 5642
619c5cb6
VZ
5643static inline u8 bnx2x_fp_fw_sb_id(struct bnx2x_fastpath *fp)
5644{
55c11941 5645 return fp->bp->base_fw_ndsb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6
VZ
5646}
5647
1191cb83 5648static u8 bnx2x_fp_cl_id(struct bnx2x_fastpath *fp)
619c5cb6
VZ
5649{
5650 if (CHIP_IS_E1x(fp->bp))
5651 return BP_L_ID(fp->bp) + fp->index;
5652 else /* We want Client ID to be the same as IGU SB ID for 57712 */
5653 return bnx2x_fp_igu_sb_id(fp);
5654}
5655
6383c0b3 5656static void bnx2x_init_eth_fp(struct bnx2x *bp, int fp_idx)
619c5cb6
VZ
5657{
5658 struct bnx2x_fastpath *fp = &bp->fp[fp_idx];
6383c0b3 5659 u8 cos;
619c5cb6 5660 unsigned long q_type = 0;
6383c0b3 5661 u32 cids[BNX2X_MULTI_TX_COS] = { 0 };
f233cafe 5662 fp->rx_queue = fp_idx;
b3b83c3f 5663 fp->cid = fp_idx;
619c5cb6
VZ
5664 fp->cl_id = bnx2x_fp_cl_id(fp);
5665 fp->fw_sb_id = bnx2x_fp_fw_sb_id(fp);
5666 fp->igu_sb_id = bnx2x_fp_igu_sb_id(fp);
523224a3 5667 /* qZone id equals to FW (per path) client id */
619c5cb6
VZ
5668 fp->cl_qzone_id = bnx2x_fp_qzone_id(fp);
5669
523224a3 5670 /* init shortcut */
619c5cb6 5671 fp->ustorm_rx_prods_offset = bnx2x_rx_ustorm_prods_offset(fp);
7a752993 5672
523224a3
DK
5673 /* Setup SB indicies */
5674 fp->rx_cons_sb = BNX2X_RX_SB_INDEX;
523224a3 5675
619c5cb6
VZ
5676 /* Configure Queue State object */
5677 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
5678 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
6383c0b3
AE
5679
5680 BUG_ON(fp->max_cos > BNX2X_MULTI_TX_COS);
5681
5682 /* init tx data */
5683 for_each_cos_in_tx_queue(fp, cos) {
65565884
MS
5684 bnx2x_init_txdata(bp, fp->txdata_ptr[cos],
5685 CID_COS_TO_TX_ONLY_CID(fp->cid, cos, bp),
5686 FP_COS_TO_TXQ(fp, cos, bp),
5687 BNX2X_TX_SB_INDEX_BASE + cos, fp);
5688 cids[cos] = fp->txdata_ptr[cos]->cid;
6383c0b3
AE
5689 }
5690
15192a8c
BW
5691 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id, cids,
5692 fp->max_cos, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
6383c0b3 5693 bnx2x_sp_mapping(bp, q_rdata), q_type);
619c5cb6
VZ
5694
5695 /**
5696 * Configure classification DBs: Always enable Tx switching
5697 */
5698 bnx2x_init_vlan_mac_fp_objs(fp, BNX2X_OBJ_TYPE_RX_TX);
5699
51c1a580 5700 DP(NETIF_MSG_IFUP, "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
619c5cb6 5701 fp_idx, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
523224a3
DK
5702 fp->igu_sb_id);
5703 bnx2x_init_sb(bp, fp->status_blk_mapping, BNX2X_VF_ID_INVALID, false,
5704 fp->fw_sb_id, fp->igu_sb_id);
5705
5706 bnx2x_update_fpsb_idx(fp);
5707}
5708
1191cb83
ED
5709static void bnx2x_init_tx_ring_one(struct bnx2x_fp_txdata *txdata)
5710{
5711 int i;
5712
5713 for (i = 1; i <= NUM_TX_RINGS; i++) {
5714 struct eth_tx_next_bd *tx_next_bd =
5715 &txdata->tx_desc_ring[TX_DESC_CNT * i - 1].next_bd;
5716
5717 tx_next_bd->addr_hi =
5718 cpu_to_le32(U64_HI(txdata->tx_desc_mapping +
5719 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5720 tx_next_bd->addr_lo =
5721 cpu_to_le32(U64_LO(txdata->tx_desc_mapping +
5722 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5723 }
5724
5725 SET_FLAG(txdata->tx_db.data.header.header, DOORBELL_HDR_DB_TYPE, 1);
5726 txdata->tx_db.data.zero_fill1 = 0;
5727 txdata->tx_db.data.prod = 0;
5728
5729 txdata->tx_pkt_prod = 0;
5730 txdata->tx_pkt_cons = 0;
5731 txdata->tx_bd_prod = 0;
5732 txdata->tx_bd_cons = 0;
5733 txdata->tx_pkt = 0;
5734}
5735
55c11941
MS
5736static void bnx2x_init_tx_rings_cnic(struct bnx2x *bp)
5737{
5738 int i;
5739
5740 for_each_tx_queue_cnic(bp, i)
5741 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[0]);
5742}
1191cb83
ED
5743static void bnx2x_init_tx_rings(struct bnx2x *bp)
5744{
5745 int i;
5746 u8 cos;
5747
55c11941 5748 for_each_eth_queue(bp, i)
1191cb83 5749 for_each_cos_in_tx_queue(&bp->fp[i], cos)
65565884 5750 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[cos]);
1191cb83
ED
5751}
5752
55c11941 5753void bnx2x_nic_init_cnic(struct bnx2x *bp)
a2fbb9ea 5754{
ec6ba945
VZ
5755 if (!NO_FCOE(bp))
5756 bnx2x_init_fcoe_fp(bp);
523224a3
DK
5757
5758 bnx2x_init_sb(bp, bp->cnic_sb_mapping,
5759 BNX2X_VF_ID_INVALID, false,
619c5cb6 5760 bnx2x_cnic_fw_sb_id(bp), bnx2x_cnic_igu_sb_id(bp));
523224a3 5761
55c11941
MS
5762 /* ensure status block indices were read */
5763 rmb();
5764 bnx2x_init_rx_rings_cnic(bp);
5765 bnx2x_init_tx_rings_cnic(bp);
5766
5767 /* flush all */
5768 mb();
5769 mmiowb();
5770}
a2fbb9ea 5771
55c11941
MS
5772void bnx2x_nic_init(struct bnx2x *bp, u32 load_code)
5773{
5774 int i;
5775
5776 for_each_eth_queue(bp, i)
5777 bnx2x_init_eth_fp(bp, i);
020c7e3f
YR
5778 /* Initialize MOD_ABS interrupts */
5779 bnx2x_init_mod_abs_int(bp, &bp->link_vars, bp->common.chip_id,
5780 bp->common.shmem_base, bp->common.shmem2_base,
5781 BP_PORT(bp));
16119785
EG
5782 /* ensure status block indices were read */
5783 rmb();
5784
523224a3 5785 bnx2x_init_def_sb(bp);
5c862848 5786 bnx2x_update_dsb_idx(bp);
a2fbb9ea 5787 bnx2x_init_rx_rings(bp);
523224a3 5788 bnx2x_init_tx_rings(bp);
a2fbb9ea 5789 bnx2x_init_sp_ring(bp);
523224a3 5790 bnx2x_init_eq_ring(bp);
471de716 5791 bnx2x_init_internal(bp, load_code);
523224a3 5792 bnx2x_pf_init(bp);
0ef00459
EG
5793 bnx2x_stats_init(bp);
5794
0ef00459
EG
5795 /* flush all before enabling interrupts */
5796 mb();
5797 mmiowb();
5798
615f8fd9 5799 bnx2x_int_enable(bp);
eb8da205
EG
5800
5801 /* Check for SPIO5 */
5802 bnx2x_attn_int_deasserted0(bp,
5803 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + BP_PORT(bp)*4) &
5804 AEU_INPUTS_ATTN_BITS_SPIO5);
a2fbb9ea
ET
5805}
5806
5807/* end of nic init */
5808
5809/*
5810 * gzip service functions
5811 */
5812
5813static int bnx2x_gunzip_init(struct bnx2x *bp)
5814{
1a983142
FT
5815 bp->gunzip_buf = dma_alloc_coherent(&bp->pdev->dev, FW_BUF_SIZE,
5816 &bp->gunzip_mapping, GFP_KERNEL);
a2fbb9ea
ET
5817 if (bp->gunzip_buf == NULL)
5818 goto gunzip_nomem1;
5819
5820 bp->strm = kmalloc(sizeof(*bp->strm), GFP_KERNEL);
5821 if (bp->strm == NULL)
5822 goto gunzip_nomem2;
5823
7ab24bfd 5824 bp->strm->workspace = vmalloc(zlib_inflate_workspacesize());
a2fbb9ea
ET
5825 if (bp->strm->workspace == NULL)
5826 goto gunzip_nomem3;
5827
5828 return 0;
5829
5830gunzip_nomem3:
5831 kfree(bp->strm);
5832 bp->strm = NULL;
5833
5834gunzip_nomem2:
1a983142
FT
5835 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
5836 bp->gunzip_mapping);
a2fbb9ea
ET
5837 bp->gunzip_buf = NULL;
5838
5839gunzip_nomem1:
51c1a580 5840 BNX2X_ERR("Cannot allocate firmware buffer for un-compression\n");
a2fbb9ea
ET
5841 return -ENOMEM;
5842}
5843
5844static void bnx2x_gunzip_end(struct bnx2x *bp)
5845{
b3b83c3f 5846 if (bp->strm) {
7ab24bfd 5847 vfree(bp->strm->workspace);
b3b83c3f
DK
5848 kfree(bp->strm);
5849 bp->strm = NULL;
5850 }
a2fbb9ea
ET
5851
5852 if (bp->gunzip_buf) {
1a983142
FT
5853 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
5854 bp->gunzip_mapping);
a2fbb9ea
ET
5855 bp->gunzip_buf = NULL;
5856 }
5857}
5858
94a78b79 5859static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len)
a2fbb9ea
ET
5860{
5861 int n, rc;
5862
5863 /* check gzip header */
94a78b79
VZ
5864 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) {
5865 BNX2X_ERR("Bad gzip header\n");
a2fbb9ea 5866 return -EINVAL;
94a78b79 5867 }
a2fbb9ea
ET
5868
5869 n = 10;
5870
34f80b04 5871#define FNAME 0x8
a2fbb9ea
ET
5872
5873 if (zbuf[3] & FNAME)
5874 while ((zbuf[n++] != 0) && (n < len));
5875
94a78b79 5876 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n;
a2fbb9ea
ET
5877 bp->strm->avail_in = len - n;
5878 bp->strm->next_out = bp->gunzip_buf;
5879 bp->strm->avail_out = FW_BUF_SIZE;
5880
5881 rc = zlib_inflateInit2(bp->strm, -MAX_WBITS);
5882 if (rc != Z_OK)
5883 return rc;
5884
5885 rc = zlib_inflate(bp->strm, Z_FINISH);
5886 if ((rc != Z_OK) && (rc != Z_STREAM_END))
7995c64e
JP
5887 netdev_err(bp->dev, "Firmware decompression error: %s\n",
5888 bp->strm->msg);
a2fbb9ea
ET
5889
5890 bp->gunzip_outlen = (FW_BUF_SIZE - bp->strm->avail_out);
5891 if (bp->gunzip_outlen & 0x3)
51c1a580
MS
5892 netdev_err(bp->dev,
5893 "Firmware decompression error: gunzip_outlen (%d) not aligned\n",
cdaa7cb8 5894 bp->gunzip_outlen);
a2fbb9ea
ET
5895 bp->gunzip_outlen >>= 2;
5896
5897 zlib_inflateEnd(bp->strm);
5898
5899 if (rc == Z_STREAM_END)
5900 return 0;
5901
5902 return rc;
5903}
5904
5905/* nic load/unload */
5906
5907/*
34f80b04 5908 * General service functions
a2fbb9ea
ET
5909 */
5910
5911/* send a NIG loopback debug packet */
5912static void bnx2x_lb_pckt(struct bnx2x *bp)
5913{
a2fbb9ea 5914 u32 wb_write[3];
a2fbb9ea
ET
5915
5916 /* Ethernet source and destination addresses */
a2fbb9ea
ET
5917 wb_write[0] = 0x55555555;
5918 wb_write[1] = 0x55555555;
34f80b04 5919 wb_write[2] = 0x20; /* SOP */
a2fbb9ea 5920 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
5921
5922 /* NON-IP protocol */
a2fbb9ea
ET
5923 wb_write[0] = 0x09000000;
5924 wb_write[1] = 0x55555555;
34f80b04 5925 wb_write[2] = 0x10; /* EOP, eop_bvalid = 0 */
a2fbb9ea 5926 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
5927}
5928
5929/* some of the internal memories
5930 * are not directly readable from the driver
5931 * to test them we send debug packets
5932 */
5933static int bnx2x_int_mem_test(struct bnx2x *bp)
5934{
5935 int factor;
5936 int count, i;
5937 u32 val = 0;
5938
ad8d3948 5939 if (CHIP_REV_IS_FPGA(bp))
a2fbb9ea 5940 factor = 120;
ad8d3948
EG
5941 else if (CHIP_REV_IS_EMUL(bp))
5942 factor = 200;
5943 else
a2fbb9ea 5944 factor = 1;
a2fbb9ea 5945
a2fbb9ea
ET
5946 /* Disable inputs of parser neighbor blocks */
5947 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
5948 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
5949 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 5950 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
5951
5952 /* Write 0 to parser credits for CFC search request */
5953 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
5954
5955 /* send Ethernet packet */
5956 bnx2x_lb_pckt(bp);
5957
5958 /* TODO do i reset NIG statistic? */
5959 /* Wait until NIG register shows 1 packet of size 0x10 */
5960 count = 1000 * factor;
5961 while (count) {
34f80b04 5962
a2fbb9ea
ET
5963 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
5964 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
5965 if (val == 0x10)
5966 break;
5967
5968 msleep(10);
5969 count--;
5970 }
5971 if (val != 0x10) {
5972 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
5973 return -1;
5974 }
5975
5976 /* Wait until PRS register shows 1 packet */
5977 count = 1000 * factor;
5978 while (count) {
5979 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
a2fbb9ea
ET
5980 if (val == 1)
5981 break;
5982
5983 msleep(10);
5984 count--;
5985 }
5986 if (val != 0x1) {
5987 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
5988 return -2;
5989 }
5990
5991 /* Reset and init BRB, PRS */
34f80b04 5992 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
a2fbb9ea 5993 msleep(50);
34f80b04 5994 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
a2fbb9ea 5995 msleep(50);
619c5cb6
VZ
5996 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
5997 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
a2fbb9ea
ET
5998
5999 DP(NETIF_MSG_HW, "part2\n");
6000
6001 /* Disable inputs of parser neighbor blocks */
6002 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6003 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6004 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6005 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6006
6007 /* Write 0 to parser credits for CFC search request */
6008 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6009
6010 /* send 10 Ethernet packets */
6011 for (i = 0; i < 10; i++)
6012 bnx2x_lb_pckt(bp);
6013
6014 /* Wait until NIG register shows 10 + 1
6015 packets of size 11*0x10 = 0xb0 */
6016 count = 1000 * factor;
6017 while (count) {
34f80b04 6018
a2fbb9ea
ET
6019 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6020 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6021 if (val == 0xb0)
6022 break;
6023
6024 msleep(10);
6025 count--;
6026 }
6027 if (val != 0xb0) {
6028 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6029 return -3;
6030 }
6031
6032 /* Wait until PRS register shows 2 packets */
6033 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6034 if (val != 2)
6035 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6036
6037 /* Write 1 to parser credits for CFC search request */
6038 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x1);
6039
6040 /* Wait until PRS register shows 3 packets */
6041 msleep(10 * factor);
6042 /* Wait until NIG register shows 1 packet of size 0x10 */
6043 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6044 if (val != 3)
6045 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6046
6047 /* clear NIG EOP FIFO */
6048 for (i = 0; i < 11; i++)
6049 REG_RD(bp, NIG_REG_INGRESS_EOP_LB_FIFO);
6050 val = REG_RD(bp, NIG_REG_INGRESS_EOP_LB_EMPTY);
6051 if (val != 1) {
6052 BNX2X_ERR("clear of NIG failed\n");
6053 return -4;
6054 }
6055
6056 /* Reset and init BRB, PRS, NIG */
6057 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
6058 msleep(50);
6059 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
6060 msleep(50);
619c5cb6
VZ
6061 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6062 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
55c11941
MS
6063 if (!CNIC_SUPPORT(bp))
6064 /* set NIC mode */
6065 REG_WR(bp, PRS_REG_NIC_MODE, 1);
a2fbb9ea
ET
6066
6067 /* Enable inputs of parser neighbor blocks */
6068 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x7fffffff);
6069 REG_WR(bp, TCM_REG_PRS_IFEN, 0x1);
6070 REG_WR(bp, CFC_REG_DEBUG0, 0x0);
3196a88a 6071 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x1);
a2fbb9ea
ET
6072
6073 DP(NETIF_MSG_HW, "done\n");
6074
6075 return 0; /* OK */
6076}
6077
4a33bc03 6078static void bnx2x_enable_blocks_attention(struct bnx2x *bp)
a2fbb9ea 6079{
b343d002
YM
6080 u32 val;
6081
a2fbb9ea 6082 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
619c5cb6 6083 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6084 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0x40);
6085 else
6086 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0);
a2fbb9ea
ET
6087 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
6088 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
f2e0899f
DK
6089 /*
6090 * mask read length error interrupts in brb for parser
6091 * (parsing unit and 'checksum and crc' unit)
6092 * these errors are legal (PU reads fixed length and CAC can cause
6093 * read length error on truncated packets)
6094 */
6095 REG_WR(bp, BRB1_REG_BRB1_INT_MASK, 0xFC00);
a2fbb9ea
ET
6096 REG_WR(bp, QM_REG_QM_INT_MASK, 0);
6097 REG_WR(bp, TM_REG_TM_INT_MASK, 0);
6098 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_0, 0);
6099 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_1, 0);
6100 REG_WR(bp, XCM_REG_XCM_INT_MASK, 0);
34f80b04
EG
6101/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_0, 0); */
6102/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6103 REG_WR(bp, USDM_REG_USDM_INT_MASK_0, 0);
6104 REG_WR(bp, USDM_REG_USDM_INT_MASK_1, 0);
6105 REG_WR(bp, UCM_REG_UCM_INT_MASK, 0);
34f80b04
EG
6106/* REG_WR(bp, USEM_REG_USEM_INT_MASK_0, 0); */
6107/* REG_WR(bp, USEM_REG_USEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6108 REG_WR(bp, GRCBASE_UPB + PB_REG_PB_INT_MASK, 0);
6109 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_0, 0);
6110 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_1, 0);
6111 REG_WR(bp, CCM_REG_CCM_INT_MASK, 0);
34f80b04
EG
6112/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_0, 0); */
6113/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_1, 0); */
f85582f8 6114
b343d002
YM
6115 val = PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT |
6116 PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF |
6117 PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN;
6118 if (!CHIP_IS_E1x(bp))
6119 val |= PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED |
6120 PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED;
6121 REG_WR(bp, PXP2_REG_PXP2_INT_MASK_0, val);
6122
a2fbb9ea
ET
6123 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_0, 0);
6124 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_1, 0);
6125 REG_WR(bp, TCM_REG_TCM_INT_MASK, 0);
34f80b04 6126/* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_0, 0); */
619c5cb6
VZ
6127
6128 if (!CHIP_IS_E1x(bp))
6129 /* enable VFC attentions: bits 11 and 12, bits 31:13 reserved */
6130 REG_WR(bp, TSEM_REG_TSEM_INT_MASK_1, 0x07ff);
6131
a2fbb9ea
ET
6132 REG_WR(bp, CDU_REG_CDU_INT_MASK, 0);
6133 REG_WR(bp, DMAE_REG_DMAE_INT_MASK, 0);
34f80b04 6134/* REG_WR(bp, MISC_REG_MISC_INT_MASK, 0); */
4a33bc03 6135 REG_WR(bp, PBF_REG_PBF_INT_MASK, 0x18); /* bit 3,4 masked */
a2fbb9ea
ET
6136}
6137
81f75bbf
EG
6138static void bnx2x_reset_common(struct bnx2x *bp)
6139{
619c5cb6
VZ
6140 u32 val = 0x1400;
6141
81f75bbf
EG
6142 /* reset_common */
6143 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6144 0xd3ffff7f);
619c5cb6
VZ
6145
6146 if (CHIP_IS_E3(bp)) {
6147 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6148 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6149 }
6150
6151 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR, val);
6152}
6153
6154static void bnx2x_setup_dmae(struct bnx2x *bp)
6155{
6156 bp->dmae_ready = 0;
6157 spin_lock_init(&bp->dmae_lock);
81f75bbf
EG
6158}
6159
573f2035
EG
6160static void bnx2x_init_pxp(struct bnx2x *bp)
6161{
6162 u16 devctl;
6163 int r_order, w_order;
6164
2a80eebc 6165 pcie_capability_read_word(bp->pdev, PCI_EXP_DEVCTL, &devctl);
573f2035
EG
6166 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl);
6167 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
6168 if (bp->mrrs == -1)
6169 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12);
6170 else {
6171 DP(NETIF_MSG_HW, "force read order to %d\n", bp->mrrs);
6172 r_order = bp->mrrs;
6173 }
6174
6175 bnx2x_init_pxp_arb(bp, r_order, w_order);
6176}
fd4ef40d
EG
6177
6178static void bnx2x_setup_fan_failure_detection(struct bnx2x *bp)
6179{
2145a920 6180 int is_required;
fd4ef40d 6181 u32 val;
2145a920 6182 int port;
fd4ef40d 6183
2145a920
VZ
6184 if (BP_NOMCP(bp))
6185 return;
6186
6187 is_required = 0;
fd4ef40d
EG
6188 val = SHMEM_RD(bp, dev_info.shared_hw_config.config2) &
6189 SHARED_HW_CFG_FAN_FAILURE_MASK;
6190
6191 if (val == SHARED_HW_CFG_FAN_FAILURE_ENABLED)
6192 is_required = 1;
6193
6194 /*
6195 * The fan failure mechanism is usually related to the PHY type since
6196 * the power consumption of the board is affected by the PHY. Currently,
6197 * fan is required for most designs with SFX7101, BCM8727 and BCM8481.
6198 */
6199 else if (val == SHARED_HW_CFG_FAN_FAILURE_PHY_TYPE)
6200 for (port = PORT_0; port < PORT_MAX; port++) {
fd4ef40d 6201 is_required |=
d90d96ba
YR
6202 bnx2x_fan_failure_det_req(
6203 bp,
6204 bp->common.shmem_base,
a22f0788 6205 bp->common.shmem2_base,
d90d96ba 6206 port);
fd4ef40d
EG
6207 }
6208
6209 DP(NETIF_MSG_HW, "fan detection setting: %d\n", is_required);
6210
6211 if (is_required == 0)
6212 return;
6213
6214 /* Fan failure is indicated by SPIO 5 */
d6d99a3f 6215 bnx2x_set_spio(bp, MISC_SPIO_SPIO5, MISC_SPIO_INPUT_HI_Z);
fd4ef40d
EG
6216
6217 /* set to active low mode */
6218 val = REG_RD(bp, MISC_REG_SPIO_INT);
d6d99a3f 6219 val |= (MISC_SPIO_SPIO5 << MISC_SPIO_INT_OLD_SET_POS);
fd4ef40d
EG
6220 REG_WR(bp, MISC_REG_SPIO_INT, val);
6221
6222 /* enable interrupt to signal the IGU */
6223 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 6224 val |= MISC_SPIO_SPIO5;
fd4ef40d
EG
6225 REG_WR(bp, MISC_REG_SPIO_EVENT_EN, val);
6226}
6227
f2e0899f
DK
6228static void bnx2x_pretend_func(struct bnx2x *bp, u8 pretend_func_num)
6229{
6230 u32 offset = 0;
6231
6232 if (CHIP_IS_E1(bp))
6233 return;
6234 if (CHIP_IS_E1H(bp) && (pretend_func_num >= E1H_FUNC_MAX))
6235 return;
6236
6237 switch (BP_ABS_FUNC(bp)) {
6238 case 0:
6239 offset = PXP2_REG_PGL_PRETEND_FUNC_F0;
6240 break;
6241 case 1:
6242 offset = PXP2_REG_PGL_PRETEND_FUNC_F1;
6243 break;
6244 case 2:
6245 offset = PXP2_REG_PGL_PRETEND_FUNC_F2;
6246 break;
6247 case 3:
6248 offset = PXP2_REG_PGL_PRETEND_FUNC_F3;
6249 break;
6250 case 4:
6251 offset = PXP2_REG_PGL_PRETEND_FUNC_F4;
6252 break;
6253 case 5:
6254 offset = PXP2_REG_PGL_PRETEND_FUNC_F5;
6255 break;
6256 case 6:
6257 offset = PXP2_REG_PGL_PRETEND_FUNC_F6;
6258 break;
6259 case 7:
6260 offset = PXP2_REG_PGL_PRETEND_FUNC_F7;
6261 break;
6262 default:
6263 return;
6264 }
6265
6266 REG_WR(bp, offset, pretend_func_num);
6267 REG_RD(bp, offset);
6268 DP(NETIF_MSG_HW, "Pretending to func %d\n", pretend_func_num);
6269}
6270
c9ee9206 6271void bnx2x_pf_disable(struct bnx2x *bp)
f2e0899f
DK
6272{
6273 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
6274 val &= ~IGU_PF_CONF_FUNC_EN;
6275
6276 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
6277 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6278 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 0);
6279}
6280
1191cb83 6281static void bnx2x__common_init_phy(struct bnx2x *bp)
619c5cb6
VZ
6282{
6283 u32 shmem_base[2], shmem2_base[2];
b884d95b
YR
6284 /* Avoid common init in case MFW supports LFA */
6285 if (SHMEM2_RD(bp, size) >
6286 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
6287 return;
619c5cb6
VZ
6288 shmem_base[0] = bp->common.shmem_base;
6289 shmem2_base[0] = bp->common.shmem2_base;
6290 if (!CHIP_IS_E1x(bp)) {
6291 shmem_base[1] =
6292 SHMEM2_RD(bp, other_shmem_base_addr);
6293 shmem2_base[1] =
6294 SHMEM2_RD(bp, other_shmem2_base_addr);
6295 }
6296 bnx2x_acquire_phy_lock(bp);
6297 bnx2x_common_init_phy(bp, shmem_base, shmem2_base,
6298 bp->common.chip_id);
6299 bnx2x_release_phy_lock(bp);
6300}
6301
6302/**
6303 * bnx2x_init_hw_common - initialize the HW at the COMMON phase.
6304 *
6305 * @bp: driver handle
6306 */
6307static int bnx2x_init_hw_common(struct bnx2x *bp)
a2fbb9ea 6308{
619c5cb6 6309 u32 val;
a2fbb9ea 6310
51c1a580 6311 DP(NETIF_MSG_HW, "starting common init func %d\n", BP_ABS_FUNC(bp));
a2fbb9ea 6312
2031bd3a
DK
6313 /*
6314 * take the UNDI lock to protect undi_unload flow from accessing
6315 * registers while we're resetting the chip
6316 */
7a06a122 6317 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6318
81f75bbf 6319 bnx2x_reset_common(bp);
34f80b04 6320 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0xffffffff);
a2fbb9ea 6321
619c5cb6
VZ
6322 val = 0xfffc;
6323 if (CHIP_IS_E3(bp)) {
6324 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6325 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6326 }
6327 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET, val);
6328
7a06a122 6329 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6330
619c5cb6 6331 bnx2x_init_block(bp, BLOCK_MISC, PHASE_COMMON);
a2fbb9ea 6332
619c5cb6
VZ
6333 if (!CHIP_IS_E1x(bp)) {
6334 u8 abs_func_id;
f2e0899f
DK
6335
6336 /**
6337 * 4-port mode or 2-port mode we need to turn of master-enable
6338 * for everyone, after that, turn it back on for self.
6339 * so, we disregard multi-function or not, and always disable
6340 * for all functions on the given path, this means 0,2,4,6 for
6341 * path 0 and 1,3,5,7 for path 1
6342 */
619c5cb6
VZ
6343 for (abs_func_id = BP_PATH(bp);
6344 abs_func_id < E2_FUNC_MAX*2; abs_func_id += 2) {
6345 if (abs_func_id == BP_ABS_FUNC(bp)) {
f2e0899f
DK
6346 REG_WR(bp,
6347 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER,
6348 1);
6349 continue;
6350 }
6351
619c5cb6 6352 bnx2x_pretend_func(bp, abs_func_id);
f2e0899f
DK
6353 /* clear pf enable */
6354 bnx2x_pf_disable(bp);
6355 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6356 }
6357 }
a2fbb9ea 6358
619c5cb6 6359 bnx2x_init_block(bp, BLOCK_PXP, PHASE_COMMON);
34f80b04
EG
6360 if (CHIP_IS_E1(bp)) {
6361 /* enable HW interrupt from PXP on USDM overflow
6362 bit 16 on INT_MASK_0 */
6363 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
6364 }
a2fbb9ea 6365
619c5cb6 6366 bnx2x_init_block(bp, BLOCK_PXP2, PHASE_COMMON);
34f80b04 6367 bnx2x_init_pxp(bp);
a2fbb9ea
ET
6368
6369#ifdef __BIG_ENDIAN
34f80b04
EG
6370 REG_WR(bp, PXP2_REG_RQ_QM_ENDIAN_M, 1);
6371 REG_WR(bp, PXP2_REG_RQ_TM_ENDIAN_M, 1);
6372 REG_WR(bp, PXP2_REG_RQ_SRC_ENDIAN_M, 1);
6373 REG_WR(bp, PXP2_REG_RQ_CDU_ENDIAN_M, 1);
6374 REG_WR(bp, PXP2_REG_RQ_DBG_ENDIAN_M, 1);
8badd27a
EG
6375 /* make sure this value is 0 */
6376 REG_WR(bp, PXP2_REG_RQ_HC_ENDIAN_M, 0);
34f80b04
EG
6377
6378/* REG_WR(bp, PXP2_REG_RD_PBF_SWAP_MODE, 1); */
6379 REG_WR(bp, PXP2_REG_RD_QM_SWAP_MODE, 1);
6380 REG_WR(bp, PXP2_REG_RD_TM_SWAP_MODE, 1);
6381 REG_WR(bp, PXP2_REG_RD_SRC_SWAP_MODE, 1);
6382 REG_WR(bp, PXP2_REG_RD_CDURD_SWAP_MODE, 1);
a2fbb9ea
ET
6383#endif
6384
523224a3
DK
6385 bnx2x_ilt_init_page_size(bp, INITOP_SET);
6386
34f80b04
EG
6387 if (CHIP_REV_IS_FPGA(bp) && CHIP_IS_E1H(bp))
6388 REG_WR(bp, PXP2_REG_PGL_TAGS_LIMIT, 0x1);
a2fbb9ea 6389
34f80b04
EG
6390 /* let the HW do it's magic ... */
6391 msleep(100);
6392 /* finish PXP init */
6393 val = REG_RD(bp, PXP2_REG_RQ_CFG_DONE);
6394 if (val != 1) {
6395 BNX2X_ERR("PXP2 CFG failed\n");
6396 return -EBUSY;
6397 }
6398 val = REG_RD(bp, PXP2_REG_RD_INIT_DONE);
6399 if (val != 1) {
6400 BNX2X_ERR("PXP2 RD_INIT failed\n");
6401 return -EBUSY;
6402 }
a2fbb9ea 6403
f2e0899f
DK
6404 /* Timers bug workaround E2 only. We need to set the entire ILT to
6405 * have entries with value "0" and valid bit on.
6406 * This needs to be done by the first PF that is loaded in a path
6407 * (i.e. common phase)
6408 */
619c5cb6
VZ
6409 if (!CHIP_IS_E1x(bp)) {
6410/* In E2 there is a bug in the timers block that can cause function 6 / 7
6411 * (i.e. vnic3) to start even if it is marked as "scan-off".
6412 * This occurs when a different function (func2,3) is being marked
6413 * as "scan-off". Real-life scenario for example: if a driver is being
6414 * load-unloaded while func6,7 are down. This will cause the timer to access
6415 * the ilt, translate to a logical address and send a request to read/write.
6416 * Since the ilt for the function that is down is not valid, this will cause
6417 * a translation error which is unrecoverable.
6418 * The Workaround is intended to make sure that when this happens nothing fatal
6419 * will occur. The workaround:
6420 * 1. First PF driver which loads on a path will:
6421 * a. After taking the chip out of reset, by using pretend,
6422 * it will write "0" to the following registers of
6423 * the other vnics.
6424 * REG_WR(pdev, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6425 * REG_WR(pdev, CFC_REG_WEAK_ENABLE_PF,0);
6426 * REG_WR(pdev, CFC_REG_STRONG_ENABLE_PF,0);
6427 * And for itself it will write '1' to
6428 * PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER to enable
6429 * dmae-operations (writing to pram for example.)
6430 * note: can be done for only function 6,7 but cleaner this
6431 * way.
6432 * b. Write zero+valid to the entire ILT.
6433 * c. Init the first_timers_ilt_entry, last_timers_ilt_entry of
6434 * VNIC3 (of that port). The range allocated will be the
6435 * entire ILT. This is needed to prevent ILT range error.
6436 * 2. Any PF driver load flow:
6437 * a. ILT update with the physical addresses of the allocated
6438 * logical pages.
6439 * b. Wait 20msec. - note that this timeout is needed to make
6440 * sure there are no requests in one of the PXP internal
6441 * queues with "old" ILT addresses.
6442 * c. PF enable in the PGLC.
6443 * d. Clear the was_error of the PF in the PGLC. (could have
6444 * occured while driver was down)
6445 * e. PF enable in the CFC (WEAK + STRONG)
6446 * f. Timers scan enable
6447 * 3. PF driver unload flow:
6448 * a. Clear the Timers scan_en.
6449 * b. Polling for scan_on=0 for that PF.
6450 * c. Clear the PF enable bit in the PXP.
6451 * d. Clear the PF enable in the CFC (WEAK + STRONG)
6452 * e. Write zero+valid to all ILT entries (The valid bit must
6453 * stay set)
6454 * f. If this is VNIC 3 of a port then also init
6455 * first_timers_ilt_entry to zero and last_timers_ilt_entry
6456 * to the last enrty in the ILT.
6457 *
6458 * Notes:
6459 * Currently the PF error in the PGLC is non recoverable.
6460 * In the future the there will be a recovery routine for this error.
6461 * Currently attention is masked.
6462 * Having an MCP lock on the load/unload process does not guarantee that
6463 * there is no Timer disable during Func6/7 enable. This is because the
6464 * Timers scan is currently being cleared by the MCP on FLR.
6465 * Step 2.d can be done only for PF6/7 and the driver can also check if
6466 * there is error before clearing it. But the flow above is simpler and
6467 * more general.
6468 * All ILT entries are written by zero+valid and not just PF6/7
6469 * ILT entries since in the future the ILT entries allocation for
6470 * PF-s might be dynamic.
6471 */
f2e0899f
DK
6472 struct ilt_client_info ilt_cli;
6473 struct bnx2x_ilt ilt;
6474 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
6475 memset(&ilt, 0, sizeof(struct bnx2x_ilt));
6476
b595076a 6477 /* initialize dummy TM client */
f2e0899f
DK
6478 ilt_cli.start = 0;
6479 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
6480 ilt_cli.client_num = ILT_CLIENT_TM;
6481
6482 /* Step 1: set zeroes to all ilt page entries with valid bit on
6483 * Step 2: set the timers first/last ilt entry to point
6484 * to the entire range to prevent ILT range error for 3rd/4th
619c5cb6 6485 * vnic (this code assumes existance of the vnic)
f2e0899f
DK
6486 *
6487 * both steps performed by call to bnx2x_ilt_client_init_op()
6488 * with dummy TM client
6489 *
6490 * we must use pretend since PXP2_REG_RQ_##blk##_FIRST_ILT
6491 * and his brother are split registers
6492 */
6493 bnx2x_pretend_func(bp, (BP_PATH(bp) + 6));
6494 bnx2x_ilt_client_init_op_ilt(bp, &ilt, &ilt_cli, INITOP_CLEAR);
6495 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6496
6497 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN, BNX2X_PXP_DRAM_ALIGN);
6498 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_RD, BNX2X_PXP_DRAM_ALIGN);
6499 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_SEL, 1);
6500 }
6501
6502
34f80b04
EG
6503 REG_WR(bp, PXP2_REG_RQ_DISABLE_INPUTS, 0);
6504 REG_WR(bp, PXP2_REG_RD_DISABLE_INPUTS, 0);
a2fbb9ea 6505
619c5cb6 6506 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6507 int factor = CHIP_REV_IS_EMUL(bp) ? 1000 :
6508 (CHIP_REV_IS_FPGA(bp) ? 400 : 0);
619c5cb6 6509 bnx2x_init_block(bp, BLOCK_PGLUE_B, PHASE_COMMON);
f2e0899f 6510
619c5cb6 6511 bnx2x_init_block(bp, BLOCK_ATC, PHASE_COMMON);
f2e0899f
DK
6512
6513 /* let the HW do it's magic ... */
6514 do {
6515 msleep(200);
6516 val = REG_RD(bp, ATC_REG_ATC_INIT_DONE);
6517 } while (factor-- && (val != 1));
6518
6519 if (val != 1) {
6520 BNX2X_ERR("ATC_INIT failed\n");
6521 return -EBUSY;
6522 }
6523 }
6524
619c5cb6 6525 bnx2x_init_block(bp, BLOCK_DMAE, PHASE_COMMON);
a2fbb9ea 6526
34f80b04
EG
6527 /* clean the DMAE memory */
6528 bp->dmae_ready = 1;
619c5cb6
VZ
6529 bnx2x_init_fill(bp, TSEM_REG_PRAM, 0, 8, 1);
6530
6531 bnx2x_init_block(bp, BLOCK_TCM, PHASE_COMMON);
6532
6533 bnx2x_init_block(bp, BLOCK_UCM, PHASE_COMMON);
6534
6535 bnx2x_init_block(bp, BLOCK_CCM, PHASE_COMMON);
a2fbb9ea 6536
619c5cb6 6537 bnx2x_init_block(bp, BLOCK_XCM, PHASE_COMMON);
a2fbb9ea 6538
34f80b04
EG
6539 bnx2x_read_dmae(bp, XSEM_REG_PASSIVE_BUFFER, 3);
6540 bnx2x_read_dmae(bp, CSEM_REG_PASSIVE_BUFFER, 3);
6541 bnx2x_read_dmae(bp, TSEM_REG_PASSIVE_BUFFER, 3);
6542 bnx2x_read_dmae(bp, USEM_REG_PASSIVE_BUFFER, 3);
6543
619c5cb6 6544 bnx2x_init_block(bp, BLOCK_QM, PHASE_COMMON);
37b091ba 6545
f85582f8 6546
523224a3
DK
6547 /* QM queues pointers table */
6548 bnx2x_qm_init_ptr_table(bp, bp->qm_cid_count, INITOP_SET);
6549
34f80b04
EG
6550 /* soft reset pulse */
6551 REG_WR(bp, QM_REG_SOFT_RESET, 1);
6552 REG_WR(bp, QM_REG_SOFT_RESET, 0);
a2fbb9ea 6553
55c11941
MS
6554 if (CNIC_SUPPORT(bp))
6555 bnx2x_init_block(bp, BLOCK_TM, PHASE_COMMON);
a2fbb9ea 6556
619c5cb6 6557 bnx2x_init_block(bp, BLOCK_DORQ, PHASE_COMMON);
523224a3 6558 REG_WR(bp, DORQ_REG_DPM_CID_OFST, BNX2X_DB_SHIFT);
619c5cb6 6559 if (!CHIP_REV_IS_SLOW(bp))
34f80b04
EG
6560 /* enable hw interrupt from doorbell Q */
6561 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
a2fbb9ea 6562
619c5cb6 6563 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
f2e0899f 6564
619c5cb6 6565 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
26c8fa4d 6566 REG_WR(bp, PRS_REG_A_PRSU_20, 0xf);
619c5cb6 6567
f2e0899f 6568 if (!CHIP_IS_E1(bp))
619c5cb6 6569 REG_WR(bp, PRS_REG_E1HOV_MODE, bp->path_has_ovlan);
f85582f8 6570
a3348722
BW
6571 if (!CHIP_IS_E1x(bp) && !CHIP_IS_E3B0(bp)) {
6572 if (IS_MF_AFEX(bp)) {
6573 /* configure that VNTag and VLAN headers must be
6574 * received in afex mode
6575 */
6576 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC, 0xE);
6577 REG_WR(bp, PRS_REG_MUST_HAVE_HDRS, 0xA);
6578 REG_WR(bp, PRS_REG_HDRS_AFTER_TAG_0, 0x6);
6579 REG_WR(bp, PRS_REG_TAG_ETHERTYPE_0, 0x8926);
6580 REG_WR(bp, PRS_REG_TAG_LEN_0, 0x4);
6581 } else {
6582 /* Bit-map indicating which L2 hdrs may appear
6583 * after the basic Ethernet header
6584 */
6585 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC,
6586 bp->path_has_ovlan ? 7 : 6);
6587 }
6588 }
a2fbb9ea 6589
619c5cb6
VZ
6590 bnx2x_init_block(bp, BLOCK_TSDM, PHASE_COMMON);
6591 bnx2x_init_block(bp, BLOCK_CSDM, PHASE_COMMON);
6592 bnx2x_init_block(bp, BLOCK_USDM, PHASE_COMMON);
6593 bnx2x_init_block(bp, BLOCK_XSDM, PHASE_COMMON);
a2fbb9ea 6594
619c5cb6
VZ
6595 if (!CHIP_IS_E1x(bp)) {
6596 /* reset VFC memories */
6597 REG_WR(bp, TSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6598 VFC_MEMORIES_RST_REG_CAM_RST |
6599 VFC_MEMORIES_RST_REG_RAM_RST);
6600 REG_WR(bp, XSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6601 VFC_MEMORIES_RST_REG_CAM_RST |
6602 VFC_MEMORIES_RST_REG_RAM_RST);
a2fbb9ea 6603
619c5cb6
VZ
6604 msleep(20);
6605 }
a2fbb9ea 6606
619c5cb6
VZ
6607 bnx2x_init_block(bp, BLOCK_TSEM, PHASE_COMMON);
6608 bnx2x_init_block(bp, BLOCK_USEM, PHASE_COMMON);
6609 bnx2x_init_block(bp, BLOCK_CSEM, PHASE_COMMON);
6610 bnx2x_init_block(bp, BLOCK_XSEM, PHASE_COMMON);
f2e0899f 6611
34f80b04
EG
6612 /* sync semi rtc */
6613 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6614 0x80000000);
6615 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET,
6616 0x80000000);
a2fbb9ea 6617
619c5cb6
VZ
6618 bnx2x_init_block(bp, BLOCK_UPB, PHASE_COMMON);
6619 bnx2x_init_block(bp, BLOCK_XPB, PHASE_COMMON);
6620 bnx2x_init_block(bp, BLOCK_PBF, PHASE_COMMON);
a2fbb9ea 6621
a3348722
BW
6622 if (!CHIP_IS_E1x(bp)) {
6623 if (IS_MF_AFEX(bp)) {
6624 /* configure that VNTag and VLAN headers must be
6625 * sent in afex mode
6626 */
6627 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC, 0xE);
6628 REG_WR(bp, PBF_REG_MUST_HAVE_HDRS, 0xA);
6629 REG_WR(bp, PBF_REG_HDRS_AFTER_TAG_0, 0x6);
6630 REG_WR(bp, PBF_REG_TAG_ETHERTYPE_0, 0x8926);
6631 REG_WR(bp, PBF_REG_TAG_LEN_0, 0x4);
6632 } else {
6633 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC,
6634 bp->path_has_ovlan ? 7 : 6);
6635 }
6636 }
f2e0899f 6637
34f80b04 6638 REG_WR(bp, SRC_REG_SOFT_RST, 1);
f85582f8 6639
619c5cb6
VZ
6640 bnx2x_init_block(bp, BLOCK_SRC, PHASE_COMMON);
6641
55c11941
MS
6642 if (CNIC_SUPPORT(bp)) {
6643 REG_WR(bp, SRC_REG_KEYSEARCH_0, 0x63285672);
6644 REG_WR(bp, SRC_REG_KEYSEARCH_1, 0x24b8f2cc);
6645 REG_WR(bp, SRC_REG_KEYSEARCH_2, 0x223aef9b);
6646 REG_WR(bp, SRC_REG_KEYSEARCH_3, 0x26001e3a);
6647 REG_WR(bp, SRC_REG_KEYSEARCH_4, 0x7ae91116);
6648 REG_WR(bp, SRC_REG_KEYSEARCH_5, 0x5ce5230b);
6649 REG_WR(bp, SRC_REG_KEYSEARCH_6, 0x298d8adf);
6650 REG_WR(bp, SRC_REG_KEYSEARCH_7, 0x6eb0ff09);
6651 REG_WR(bp, SRC_REG_KEYSEARCH_8, 0x1830f82f);
6652 REG_WR(bp, SRC_REG_KEYSEARCH_9, 0x01e46be7);
6653 }
34f80b04 6654 REG_WR(bp, SRC_REG_SOFT_RST, 0);
a2fbb9ea 6655
34f80b04
EG
6656 if (sizeof(union cdu_context) != 1024)
6657 /* we currently assume that a context is 1024 bytes */
51c1a580
MS
6658 dev_alert(&bp->pdev->dev,
6659 "please adjust the size of cdu_context(%ld)\n",
6660 (long)sizeof(union cdu_context));
a2fbb9ea 6661
619c5cb6 6662 bnx2x_init_block(bp, BLOCK_CDU, PHASE_COMMON);
34f80b04
EG
6663 val = (4 << 24) + (0 << 12) + 1024;
6664 REG_WR(bp, CDU_REG_CDU_GLOBAL_PARAMS, val);
a2fbb9ea 6665
619c5cb6 6666 bnx2x_init_block(bp, BLOCK_CFC, PHASE_COMMON);
34f80b04 6667 REG_WR(bp, CFC_REG_INIT_REG, 0x7FF);
8d9c5f34
EG
6668 /* enable context validation interrupt from CFC */
6669 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
6670
6671 /* set the thresholds to prevent CFC/CDU race */
6672 REG_WR(bp, CFC_REG_DEBUG0, 0x20020000);
a2fbb9ea 6673
619c5cb6 6674 bnx2x_init_block(bp, BLOCK_HC, PHASE_COMMON);
f2e0899f 6675
619c5cb6 6676 if (!CHIP_IS_E1x(bp) && BP_NOMCP(bp))
f2e0899f
DK
6677 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x36);
6678
619c5cb6
VZ
6679 bnx2x_init_block(bp, BLOCK_IGU, PHASE_COMMON);
6680 bnx2x_init_block(bp, BLOCK_MISC_AEU, PHASE_COMMON);
a2fbb9ea 6681
34f80b04
EG
6682 /* Reset PCIE errors for debug */
6683 REG_WR(bp, 0x2814, 0xffffffff);
6684 REG_WR(bp, 0x3820, 0xffffffff);
a2fbb9ea 6685
619c5cb6 6686 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6687 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_CONTROL_5,
6688 (PXPCS_TL_CONTROL_5_ERR_UNSPPORT1 |
6689 PXPCS_TL_CONTROL_5_ERR_UNSPPORT));
6690 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC345_STAT,
6691 (PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4 |
6692 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3 |
6693 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2));
6694 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC678_STAT,
6695 (PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7 |
6696 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6 |
6697 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5));
6698 }
6699
619c5cb6 6700 bnx2x_init_block(bp, BLOCK_NIG, PHASE_COMMON);
f2e0899f 6701 if (!CHIP_IS_E1(bp)) {
619c5cb6
VZ
6702 /* in E3 this done in per-port section */
6703 if (!CHIP_IS_E3(bp))
6704 REG_WR(bp, NIG_REG_LLH_MF_MODE, IS_MF(bp));
f2e0899f 6705 }
619c5cb6
VZ
6706 if (CHIP_IS_E1H(bp))
6707 /* not applicable for E2 (and above ...) */
6708 REG_WR(bp, NIG_REG_LLH_E1HOV_MODE, IS_MF_SD(bp));
34f80b04
EG
6709
6710 if (CHIP_REV_IS_SLOW(bp))
6711 msleep(200);
6712
6713 /* finish CFC init */
6714 val = reg_poll(bp, CFC_REG_LL_INIT_DONE, 1, 100, 10);
6715 if (val != 1) {
6716 BNX2X_ERR("CFC LL_INIT failed\n");
6717 return -EBUSY;
6718 }
6719 val = reg_poll(bp, CFC_REG_AC_INIT_DONE, 1, 100, 10);
6720 if (val != 1) {
6721 BNX2X_ERR("CFC AC_INIT failed\n");
6722 return -EBUSY;
6723 }
6724 val = reg_poll(bp, CFC_REG_CAM_INIT_DONE, 1, 100, 10);
6725 if (val != 1) {
6726 BNX2X_ERR("CFC CAM_INIT failed\n");
6727 return -EBUSY;
6728 }
6729 REG_WR(bp, CFC_REG_DEBUG0, 0);
f1410647 6730
f2e0899f
DK
6731 if (CHIP_IS_E1(bp)) {
6732 /* read NIG statistic
6733 to see if this is our first up since powerup */
6734 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6735 val = *bnx2x_sp(bp, wb_data[0]);
34f80b04 6736
f2e0899f
DK
6737 /* do internal memory self test */
6738 if ((val == 0) && bnx2x_int_mem_test(bp)) {
6739 BNX2X_ERR("internal mem self test failed\n");
6740 return -EBUSY;
6741 }
34f80b04
EG
6742 }
6743
fd4ef40d
EG
6744 bnx2x_setup_fan_failure_detection(bp);
6745
34f80b04
EG
6746 /* clear PXP2 attentions */
6747 REG_RD(bp, PXP2_REG_PXP2_INT_STS_CLR_0);
a2fbb9ea 6748
4a33bc03 6749 bnx2x_enable_blocks_attention(bp);
c9ee9206 6750 bnx2x_enable_blocks_parity(bp);
a2fbb9ea 6751
6bbca910 6752 if (!BP_NOMCP(bp)) {
619c5cb6
VZ
6753 if (CHIP_IS_E1x(bp))
6754 bnx2x__common_init_phy(bp);
6bbca910
YR
6755 } else
6756 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
6757
34f80b04
EG
6758 return 0;
6759}
a2fbb9ea 6760
619c5cb6
VZ
6761/**
6762 * bnx2x_init_hw_common_chip - init HW at the COMMON_CHIP phase.
6763 *
6764 * @bp: driver handle
6765 */
6766static int bnx2x_init_hw_common_chip(struct bnx2x *bp)
6767{
6768 int rc = bnx2x_init_hw_common(bp);
6769
6770 if (rc)
6771 return rc;
6772
6773 /* In E2 2-PORT mode, same ext phy is used for the two paths */
6774 if (!BP_NOMCP(bp))
6775 bnx2x__common_init_phy(bp);
6776
6777 return 0;
6778}
6779
523224a3 6780static int bnx2x_init_hw_port(struct bnx2x *bp)
34f80b04
EG
6781{
6782 int port = BP_PORT(bp);
619c5cb6 6783 int init_phase = port ? PHASE_PORT1 : PHASE_PORT0;
1c06328c 6784 u32 low, high;
34f80b04 6785 u32 val;
a2fbb9ea 6786
619c5cb6 6787
51c1a580 6788 DP(NETIF_MSG_HW, "starting port init port %d\n", port);
34f80b04
EG
6789
6790 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
a2fbb9ea 6791
619c5cb6
VZ
6792 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
6793 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
6794 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
ca00392c 6795
f2e0899f
DK
6796 /* Timers bug workaround: disables the pf_master bit in pglue at
6797 * common phase, we need to enable it here before any dmae access are
6798 * attempted. Therefore we manually added the enable-master to the
6799 * port phase (it also happens in the function phase)
6800 */
619c5cb6 6801 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6802 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
6803
619c5cb6
VZ
6804 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
6805 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
6806 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
6807 bnx2x_init_block(bp, BLOCK_QM, init_phase);
6808
6809 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
6810 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
6811 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
6812 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
a2fbb9ea 6813
523224a3
DK
6814 /* QM cid (connection) count */
6815 bnx2x_qm_init_cid_count(bp, bp->qm_cid_count, INITOP_SET);
a2fbb9ea 6816
55c11941
MS
6817 if (CNIC_SUPPORT(bp)) {
6818 bnx2x_init_block(bp, BLOCK_TM, init_phase);
6819 REG_WR(bp, TM_REG_LIN0_SCAN_TIME + port*4, 20);
6820 REG_WR(bp, TM_REG_LIN0_MAX_ACTIVE_CID + port*4, 31);
6821 }
cdaa7cb8 6822
619c5cb6 6823 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
f2e0899f 6824
2b674047
DK
6825 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
6826
f2e0899f 6827 if (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp)) {
619c5cb6
VZ
6828
6829 if (IS_MF(bp))
6830 low = ((bp->flags & ONE_PORT_FLAG) ? 160 : 246);
6831 else if (bp->dev->mtu > 4096) {
6832 if (bp->flags & ONE_PORT_FLAG)
6833 low = 160;
6834 else {
6835 val = bp->dev->mtu;
6836 /* (24*1024 + val*4)/256 */
6837 low = 96 + (val/64) +
6838 ((val % 64) ? 1 : 0);
6839 }
6840 } else
6841 low = ((bp->flags & ONE_PORT_FLAG) ? 80 : 160);
6842 high = low + 56; /* 14*1024/256 */
f2e0899f
DK
6843 REG_WR(bp, BRB1_REG_PAUSE_LOW_THRESHOLD_0 + port*4, low);
6844 REG_WR(bp, BRB1_REG_PAUSE_HIGH_THRESHOLD_0 + port*4, high);
1c06328c 6845 }
1c06328c 6846
619c5cb6
VZ
6847 if (CHIP_MODE_IS_4_PORT(bp))
6848 REG_WR(bp, (BP_PORT(bp) ?
6849 BRB1_REG_MAC_GUARANTIED_1 :
6850 BRB1_REG_MAC_GUARANTIED_0), 40);
1c06328c 6851
ca00392c 6852
619c5cb6 6853 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
a3348722
BW
6854 if (CHIP_IS_E3B0(bp)) {
6855 if (IS_MF_AFEX(bp)) {
6856 /* configure headers for AFEX mode */
6857 REG_WR(bp, BP_PORT(bp) ?
6858 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
6859 PRS_REG_HDRS_AFTER_BASIC_PORT_0, 0xE);
6860 REG_WR(bp, BP_PORT(bp) ?
6861 PRS_REG_HDRS_AFTER_TAG_0_PORT_1 :
6862 PRS_REG_HDRS_AFTER_TAG_0_PORT_0, 0x6);
6863 REG_WR(bp, BP_PORT(bp) ?
6864 PRS_REG_MUST_HAVE_HDRS_PORT_1 :
6865 PRS_REG_MUST_HAVE_HDRS_PORT_0, 0xA);
6866 } else {
6867 /* Ovlan exists only if we are in multi-function +
6868 * switch-dependent mode, in switch-independent there
6869 * is no ovlan headers
6870 */
6871 REG_WR(bp, BP_PORT(bp) ?
6872 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
6873 PRS_REG_HDRS_AFTER_BASIC_PORT_0,
6874 (bp->path_has_ovlan ? 7 : 6));
6875 }
6876 }
356e2385 6877
619c5cb6
VZ
6878 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
6879 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
6880 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
6881 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
356e2385 6882
619c5cb6
VZ
6883 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
6884 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
6885 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
6886 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
34f80b04 6887
619c5cb6
VZ
6888 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
6889 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
a2fbb9ea 6890
619c5cb6
VZ
6891 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
6892
6893 if (CHIP_IS_E1x(bp)) {
f2e0899f
DK
6894 /* configure PBF to work without PAUSE mtu 9000 */
6895 REG_WR(bp, PBF_REG_P0_PAUSE_ENABLE + port*4, 0);
a2fbb9ea 6896
f2e0899f
DK
6897 /* update threshold */
6898 REG_WR(bp, PBF_REG_P0_ARB_THRSH + port*4, (9040/16));
6899 /* update init credit */
6900 REG_WR(bp, PBF_REG_P0_INIT_CRD + port*4, (9040/16) + 553 - 22);
a2fbb9ea 6901
f2e0899f
DK
6902 /* probe changes */
6903 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 1);
6904 udelay(50);
6905 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 0);
6906 }
a2fbb9ea 6907
55c11941
MS
6908 if (CNIC_SUPPORT(bp))
6909 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
6910
619c5cb6
VZ
6911 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
6912 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04
EG
6913
6914 if (CHIP_IS_E1(bp)) {
6915 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
6916 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
6917 }
619c5cb6 6918 bnx2x_init_block(bp, BLOCK_HC, init_phase);
34f80b04 6919
619c5cb6 6920 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 6921
619c5cb6 6922 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
34f80b04
EG
6923 /* init aeu_mask_attn_func_0/1:
6924 * - SF mode: bits 3-7 are masked. only bits 0-2 are in use
6925 * - MF mode: bit 3 is masked. bits 0-2 are in use as in SF
6926 * bits 4-7 are used for "per vn group attention" */
e4901dde
VZ
6927 val = IS_MF(bp) ? 0xF7 : 0x7;
6928 /* Enable DCBX attention for all but E1 */
6929 val |= CHIP_IS_E1(bp) ? 0 : 0x10;
6930 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, val);
34f80b04 6931
619c5cb6
VZ
6932 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
6933
6934 if (!CHIP_IS_E1x(bp)) {
6935 /* Bit-map indicating which L2 hdrs may appear after the
6936 * basic Ethernet header
6937 */
a3348722
BW
6938 if (IS_MF_AFEX(bp))
6939 REG_WR(bp, BP_PORT(bp) ?
6940 NIG_REG_P1_HDRS_AFTER_BASIC :
6941 NIG_REG_P0_HDRS_AFTER_BASIC, 0xE);
6942 else
6943 REG_WR(bp, BP_PORT(bp) ?
6944 NIG_REG_P1_HDRS_AFTER_BASIC :
6945 NIG_REG_P0_HDRS_AFTER_BASIC,
6946 IS_MF_SD(bp) ? 7 : 6);
619c5cb6
VZ
6947
6948 if (CHIP_IS_E3(bp))
6949 REG_WR(bp, BP_PORT(bp) ?
6950 NIG_REG_LLH1_MF_MODE :
6951 NIG_REG_LLH_MF_MODE, IS_MF(bp));
6952 }
6953 if (!CHIP_IS_E3(bp))
6954 REG_WR(bp, NIG_REG_XGXS_SERDES0_MODE_SEL + port*4, 1);
34f80b04 6955
f2e0899f 6956 if (!CHIP_IS_E1(bp)) {
fb3bff17 6957 /* 0x2 disable mf_ov, 0x1 enable */
34f80b04 6958 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK_MF + port*4,
0793f83f 6959 (IS_MF_SD(bp) ? 0x1 : 0x2));
34f80b04 6960
619c5cb6 6961 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6962 val = 0;
6963 switch (bp->mf_mode) {
6964 case MULTI_FUNCTION_SD:
6965 val = 1;
6966 break;
6967 case MULTI_FUNCTION_SI:
a3348722 6968 case MULTI_FUNCTION_AFEX:
f2e0899f
DK
6969 val = 2;
6970 break;
6971 }
6972
6973 REG_WR(bp, (BP_PORT(bp) ? NIG_REG_LLH1_CLS_TYPE :
6974 NIG_REG_LLH0_CLS_TYPE), val);
6975 }
1c06328c
EG
6976 {
6977 REG_WR(bp, NIG_REG_LLFC_ENABLE_0 + port*4, 0);
6978 REG_WR(bp, NIG_REG_LLFC_OUT_EN_0 + port*4, 0);
6979 REG_WR(bp, NIG_REG_PAUSE_ENABLE_0 + port*4, 1);
6980 }
34f80b04
EG
6981 }
6982
619c5cb6
VZ
6983
6984 /* If SPIO5 is set to generate interrupts, enable it for this port */
6985 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 6986 if (val & MISC_SPIO_SPIO5) {
4d295db0
EG
6987 u32 reg_addr = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
6988 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
6989 val = REG_RD(bp, reg_addr);
f1410647 6990 val |= AEU_INPUTS_ATTN_BITS_SPIO5;
4d295db0 6991 REG_WR(bp, reg_addr, val);
f1410647 6992 }
a2fbb9ea 6993
34f80b04
EG
6994 return 0;
6995}
6996
34f80b04
EG
6997static void bnx2x_ilt_wr(struct bnx2x *bp, u32 index, dma_addr_t addr)
6998{
6999 int reg;
32d68de1 7000 u32 wb_write[2];
34f80b04 7001
f2e0899f 7002 if (CHIP_IS_E1(bp))
34f80b04 7003 reg = PXP2_REG_RQ_ONCHIP_AT + index*8;
f2e0899f
DK
7004 else
7005 reg = PXP2_REG_RQ_ONCHIP_AT_B0 + index*8;
34f80b04 7006
32d68de1
YM
7007 wb_write[0] = ONCHIP_ADDR1(addr);
7008 wb_write[1] = ONCHIP_ADDR2(addr);
7009 REG_WR_DMAE(bp, reg, wb_write, 2);
34f80b04
EG
7010}
7011
1191cb83
ED
7012static void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func,
7013 u8 idu_sb_id, bool is_Pf)
7014{
7015 u32 data, ctl, cnt = 100;
7016 u32 igu_addr_data = IGU_REG_COMMAND_REG_32LSB_DATA;
7017 u32 igu_addr_ctl = IGU_REG_COMMAND_REG_CTRL;
7018 u32 igu_addr_ack = IGU_REG_CSTORM_TYPE_0_SB_CLEANUP + (idu_sb_id/32)*4;
7019 u32 sb_bit = 1 << (idu_sb_id%32);
7020 u32 func_encode = func | (is_Pf ? 1 : 0) << IGU_FID_ENCODE_IS_PF_SHIFT;
7021 u32 addr_encode = IGU_CMD_E2_PROD_UPD_BASE + idu_sb_id;
7022
7023 /* Not supported in BC mode */
7024 if (CHIP_INT_MODE_IS_BC(bp))
7025 return;
7026
7027 data = (IGU_USE_REGISTER_cstorm_type_0_sb_cleanup
7028 << IGU_REGULAR_CLEANUP_TYPE_SHIFT) |
7029 IGU_REGULAR_CLEANUP_SET |
7030 IGU_REGULAR_BCLEANUP;
7031
7032 ctl = addr_encode << IGU_CTRL_REG_ADDRESS_SHIFT |
7033 func_encode << IGU_CTRL_REG_FID_SHIFT |
7034 IGU_CTRL_CMD_TYPE_WR << IGU_CTRL_REG_TYPE_SHIFT;
7035
7036 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7037 data, igu_addr_data);
7038 REG_WR(bp, igu_addr_data, data);
7039 mmiowb();
7040 barrier();
7041 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7042 ctl, igu_addr_ctl);
7043 REG_WR(bp, igu_addr_ctl, ctl);
7044 mmiowb();
7045 barrier();
7046
7047 /* wait for clean up to finish */
7048 while (!(REG_RD(bp, igu_addr_ack) & sb_bit) && --cnt)
7049 msleep(20);
7050
7051
7052 if (!(REG_RD(bp, igu_addr_ack) & sb_bit)) {
7053 DP(NETIF_MSG_HW,
7054 "Unable to finish IGU cleanup: idu_sb_id %d offset %d bit %d (cnt %d)\n",
7055 idu_sb_id, idu_sb_id/32, idu_sb_id%32, cnt);
7056 }
7057}
7058
7059static void bnx2x_igu_clear_sb(struct bnx2x *bp, u8 idu_sb_id)
f2e0899f 7060{
619c5cb6 7061 bnx2x_igu_clear_sb_gen(bp, BP_FUNC(bp), idu_sb_id, true /*PF*/);
f2e0899f
DK
7062}
7063
1191cb83 7064static void bnx2x_clear_func_ilt(struct bnx2x *bp, u32 func)
f2e0899f
DK
7065{
7066 u32 i, base = FUNC_ILT_BASE(func);
7067 for (i = base; i < base + ILT_PER_FUNC; i++)
7068 bnx2x_ilt_wr(bp, i, 0);
7069}
7070
55c11941 7071
910cc727 7072static void bnx2x_init_searcher(struct bnx2x *bp)
55c11941
MS
7073{
7074 int port = BP_PORT(bp);
7075 bnx2x_src_init_t2(bp, bp->t2, bp->t2_mapping, SRC_CONN_NUM);
7076 /* T1 hash bits value determines the T1 number of entries */
7077 REG_WR(bp, SRC_REG_NUMBER_HASH_BITS0 + port*4, SRC_HASH_BITS);
7078}
7079
7080static inline int bnx2x_func_switch_update(struct bnx2x *bp, int suspend)
7081{
7082 int rc;
7083 struct bnx2x_func_state_params func_params = {NULL};
7084 struct bnx2x_func_switch_update_params *switch_update_params =
7085 &func_params.params.switch_update;
7086
7087 /* Prepare parameters for function state transitions */
7088 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
7089 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
7090
7091 func_params.f_obj = &bp->func_obj;
7092 func_params.cmd = BNX2X_F_CMD_SWITCH_UPDATE;
7093
7094 /* Function parameters */
7095 switch_update_params->suspend = suspend;
7096
7097 rc = bnx2x_func_state_change(bp, &func_params);
7098
7099 return rc;
7100}
7101
910cc727 7102static int bnx2x_reset_nic_mode(struct bnx2x *bp)
55c11941
MS
7103{
7104 int rc, i, port = BP_PORT(bp);
7105 int vlan_en = 0, mac_en[NUM_MACS];
7106
7107
7108 /* Close input from network */
7109 if (bp->mf_mode == SINGLE_FUNCTION) {
7110 bnx2x_set_rx_filter(&bp->link_params, 0);
7111 } else {
7112 vlan_en = REG_RD(bp, port ? NIG_REG_LLH1_FUNC_EN :
7113 NIG_REG_LLH0_FUNC_EN);
7114 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7115 NIG_REG_LLH0_FUNC_EN, 0);
7116 for (i = 0; i < NUM_MACS; i++) {
7117 mac_en[i] = REG_RD(bp, port ?
7118 (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7119 4 * i) :
7120 (NIG_REG_LLH0_FUNC_MEM_ENABLE +
7121 4 * i));
7122 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7123 4 * i) :
7124 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i), 0);
7125 }
7126 }
7127
7128 /* Close BMC to host */
7129 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7130 NIG_REG_P1_TX_MNG_HOST_ENABLE, 0);
7131
7132 /* Suspend Tx switching to the PF. Completion of this ramrod
7133 * further guarantees that all the packets of that PF / child
7134 * VFs in BRB were processed by the Parser, so it is safe to
7135 * change the NIC_MODE register.
7136 */
7137 rc = bnx2x_func_switch_update(bp, 1);
7138 if (rc) {
7139 BNX2X_ERR("Can't suspend tx-switching!\n");
7140 return rc;
7141 }
7142
7143 /* Change NIC_MODE register */
7144 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7145
7146 /* Open input from network */
7147 if (bp->mf_mode == SINGLE_FUNCTION) {
7148 bnx2x_set_rx_filter(&bp->link_params, 1);
7149 } else {
7150 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7151 NIG_REG_LLH0_FUNC_EN, vlan_en);
7152 for (i = 0; i < NUM_MACS; i++) {
7153 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7154 4 * i) :
7155 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i),
7156 mac_en[i]);
7157 }
7158 }
7159
7160 /* Enable BMC to host */
7161 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7162 NIG_REG_P1_TX_MNG_HOST_ENABLE, 1);
7163
7164 /* Resume Tx switching to the PF */
7165 rc = bnx2x_func_switch_update(bp, 0);
7166 if (rc) {
7167 BNX2X_ERR("Can't resume tx-switching!\n");
7168 return rc;
7169 }
7170
7171 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7172 return 0;
7173}
7174
7175int bnx2x_init_hw_func_cnic(struct bnx2x *bp)
7176{
7177 int rc;
7178
7179 bnx2x_ilt_init_op_cnic(bp, INITOP_SET);
7180
7181 if (CONFIGURE_NIC_MODE(bp)) {
7182 /* Configrue searcher as part of function hw init */
7183 bnx2x_init_searcher(bp);
7184
7185 /* Reset NIC mode */
7186 rc = bnx2x_reset_nic_mode(bp);
7187 if (rc)
7188 BNX2X_ERR("Can't change NIC mode!\n");
7189 return rc;
7190 }
7191
7192 return 0;
7193}
7194
523224a3 7195static int bnx2x_init_hw_func(struct bnx2x *bp)
34f80b04
EG
7196{
7197 int port = BP_PORT(bp);
7198 int func = BP_FUNC(bp);
619c5cb6 7199 int init_phase = PHASE_PF0 + func;
523224a3
DK
7200 struct bnx2x_ilt *ilt = BP_ILT(bp);
7201 u16 cdu_ilt_start;
8badd27a 7202 u32 addr, val;
f4a66897 7203 u32 main_mem_base, main_mem_size, main_mem_prty_clr;
89db4ad8 7204 int i, main_mem_width, rc;
34f80b04 7205
51c1a580 7206 DP(NETIF_MSG_HW, "starting func init func %d\n", func);
34f80b04 7207
619c5cb6 7208 /* FLR cleanup - hmmm */
89db4ad8
AE
7209 if (!CHIP_IS_E1x(bp)) {
7210 rc = bnx2x_pf_flr_clnup(bp);
7211 if (rc)
7212 return rc;
7213 }
619c5cb6 7214
8badd27a 7215 /* set MSI reconfigure capability */
f2e0899f
DK
7216 if (bp->common.int_block == INT_BLOCK_HC) {
7217 addr = (port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0);
7218 val = REG_RD(bp, addr);
7219 val |= HC_CONFIG_0_REG_MSI_ATTN_EN_0;
7220 REG_WR(bp, addr, val);
7221 }
8badd27a 7222
619c5cb6
VZ
7223 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7224 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
7225
523224a3
DK
7226 ilt = BP_ILT(bp);
7227 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
37b091ba 7228
523224a3 7229 for (i = 0; i < L2_ILT_LINES(bp); i++) {
a052997e 7230 ilt->lines[cdu_ilt_start + i].page = bp->context[i].vcxt;
523224a3 7231 ilt->lines[cdu_ilt_start + i].page_mapping =
a052997e
MS
7232 bp->context[i].cxt_mapping;
7233 ilt->lines[cdu_ilt_start + i].size = bp->context[i].size;
37b091ba 7234 }
523224a3 7235 bnx2x_ilt_init_op(bp, INITOP_SET);
f85582f8 7236
55c11941
MS
7237 if (!CONFIGURE_NIC_MODE(bp)) {
7238 bnx2x_init_searcher(bp);
7239 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7240 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7241 } else {
7242 /* Set NIC mode */
7243 REG_WR(bp, PRS_REG_NIC_MODE, 1);
7244 DP(NETIF_MSG_IFUP, "NIC MODE configrued\n");
37b091ba 7245
55c11941 7246 }
37b091ba 7247
619c5cb6 7248 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7249 u32 pf_conf = IGU_PF_CONF_FUNC_EN;
7250
7251 /* Turn on a single ISR mode in IGU if driver is going to use
7252 * INT#x or MSI
7253 */
7254 if (!(bp->flags & USING_MSIX_FLAG))
7255 pf_conf |= IGU_PF_CONF_SINGLE_ISR_EN;
7256 /*
7257 * Timers workaround bug: function init part.
7258 * Need to wait 20msec after initializing ILT,
7259 * needed to make sure there are no requests in
7260 * one of the PXP internal queues with "old" ILT addresses
7261 */
7262 msleep(20);
7263 /*
7264 * Master enable - Due to WB DMAE writes performed before this
7265 * register is re-initialized as part of the regular function
7266 * init
7267 */
7268 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
7269 /* Enable the function in IGU */
7270 REG_WR(bp, IGU_REG_PF_CONFIGURATION, pf_conf);
7271 }
7272
523224a3 7273 bp->dmae_ready = 1;
34f80b04 7274
619c5cb6 7275 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
523224a3 7276
619c5cb6 7277 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7278 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR, func);
7279
619c5cb6
VZ
7280 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
7281 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
7282 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
7283 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
7284 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
7285 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
7286 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
7287 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
7288 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
7289 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
7290 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
7291 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
7292 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
7293
7294 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7295 REG_WR(bp, QM_REG_PF_EN, 1);
7296
619c5cb6
VZ
7297 if (!CHIP_IS_E1x(bp)) {
7298 REG_WR(bp, TSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7299 REG_WR(bp, USEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7300 REG_WR(bp, CSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7301 REG_WR(bp, XSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7302 }
7303 bnx2x_init_block(bp, BLOCK_QM, init_phase);
7304
7305 bnx2x_init_block(bp, BLOCK_TM, init_phase);
7306 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
7307 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
7308 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
7309 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
7310 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
7311 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
7312 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
7313 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
7314 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
7315 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
7316 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7317 REG_WR(bp, PBF_REG_DISABLE_PF, 0);
7318
619c5cb6 7319 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
523224a3 7320
619c5cb6 7321 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04 7322
619c5cb6 7323 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7324 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 1);
7325
fb3bff17 7326 if (IS_MF(bp)) {
34f80b04 7327 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
fb3bff17 7328 REG_WR(bp, NIG_REG_LLH0_FUNC_VLAN_ID + port*8, bp->mf_ov);
34f80b04
EG
7329 }
7330
619c5cb6 7331 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
523224a3 7332
34f80b04 7333 /* HC init per function */
f2e0899f
DK
7334 if (bp->common.int_block == INT_BLOCK_HC) {
7335 if (CHIP_IS_E1H(bp)) {
7336 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7337
7338 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
7339 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
7340 }
619c5cb6 7341 bnx2x_init_block(bp, BLOCK_HC, init_phase);
f2e0899f
DK
7342
7343 } else {
7344 int num_segs, sb_idx, prod_offset;
7345
34f80b04
EG
7346 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7347
619c5cb6 7348 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7349 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
7350 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
7351 }
7352
619c5cb6 7353 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 7354
619c5cb6 7355 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7356 int dsb_idx = 0;
7357 /**
7358 * Producer memory:
7359 * E2 mode: address 0-135 match to the mapping memory;
7360 * 136 - PF0 default prod; 137 - PF1 default prod;
7361 * 138 - PF2 default prod; 139 - PF3 default prod;
7362 * 140 - PF0 attn prod; 141 - PF1 attn prod;
7363 * 142 - PF2 attn prod; 143 - PF3 attn prod;
7364 * 144-147 reserved.
7365 *
7366 * E1.5 mode - In backward compatible mode;
7367 * for non default SB; each even line in the memory
7368 * holds the U producer and each odd line hold
7369 * the C producer. The first 128 producers are for
7370 * NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The last 20
7371 * producers are for the DSB for each PF.
7372 * Each PF has five segments: (the order inside each
7373 * segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
7374 * 132-135 C prods; 136-139 X prods; 140-143 T prods;
7375 * 144-147 attn prods;
7376 */
7377 /* non-default-status-blocks */
7378 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7379 IGU_BC_NDSB_NUM_SEGS : IGU_NORM_NDSB_NUM_SEGS;
7380 for (sb_idx = 0; sb_idx < bp->igu_sb_cnt; sb_idx++) {
7381 prod_offset = (bp->igu_base_sb + sb_idx) *
7382 num_segs;
7383
7384 for (i = 0; i < num_segs; i++) {
7385 addr = IGU_REG_PROD_CONS_MEMORY +
7386 (prod_offset + i) * 4;
7387 REG_WR(bp, addr, 0);
7388 }
7389 /* send consumer update with value 0 */
7390 bnx2x_ack_sb(bp, bp->igu_base_sb + sb_idx,
7391 USTORM_ID, 0, IGU_INT_NOP, 1);
7392 bnx2x_igu_clear_sb(bp,
7393 bp->igu_base_sb + sb_idx);
7394 }
7395
7396 /* default-status-blocks */
7397 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7398 IGU_BC_DSB_NUM_SEGS : IGU_NORM_DSB_NUM_SEGS;
7399
7400 if (CHIP_MODE_IS_4_PORT(bp))
7401 dsb_idx = BP_FUNC(bp);
7402 else
3395a033 7403 dsb_idx = BP_VN(bp);
f2e0899f
DK
7404
7405 prod_offset = (CHIP_INT_MODE_IS_BC(bp) ?
7406 IGU_BC_BASE_DSB_PROD + dsb_idx :
7407 IGU_NORM_BASE_DSB_PROD + dsb_idx);
7408
3395a033
DK
7409 /*
7410 * igu prods come in chunks of E1HVN_MAX (4) -
7411 * does not matters what is the current chip mode
7412 */
f2e0899f
DK
7413 for (i = 0; i < (num_segs * E1HVN_MAX);
7414 i += E1HVN_MAX) {
7415 addr = IGU_REG_PROD_CONS_MEMORY +
7416 (prod_offset + i)*4;
7417 REG_WR(bp, addr, 0);
7418 }
7419 /* send consumer update with 0 */
7420 if (CHIP_INT_MODE_IS_BC(bp)) {
7421 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7422 USTORM_ID, 0, IGU_INT_NOP, 1);
7423 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7424 CSTORM_ID, 0, IGU_INT_NOP, 1);
7425 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7426 XSTORM_ID, 0, IGU_INT_NOP, 1);
7427 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7428 TSTORM_ID, 0, IGU_INT_NOP, 1);
7429 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7430 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7431 } else {
7432 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7433 USTORM_ID, 0, IGU_INT_NOP, 1);
7434 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7435 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7436 }
7437 bnx2x_igu_clear_sb(bp, bp->igu_dsb_id);
7438
7439 /* !!! these should become driver const once
7440 rf-tool supports split-68 const */
7441 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_LSB, 0);
7442 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_MSB, 0);
7443 REG_WR(bp, IGU_REG_SB_MASK_LSB, 0);
7444 REG_WR(bp, IGU_REG_SB_MASK_MSB, 0);
7445 REG_WR(bp, IGU_REG_PBA_STATUS_LSB, 0);
7446 REG_WR(bp, IGU_REG_PBA_STATUS_MSB, 0);
7447 }
34f80b04 7448 }
34f80b04 7449
c14423fe 7450 /* Reset PCIE errors for debug */
a2fbb9ea
ET
7451 REG_WR(bp, 0x2114, 0xffffffff);
7452 REG_WR(bp, 0x2120, 0xffffffff);
523224a3 7453
f4a66897
VZ
7454 if (CHIP_IS_E1x(bp)) {
7455 main_mem_size = HC_REG_MAIN_MEMORY_SIZE / 2; /*dwords*/
7456 main_mem_base = HC_REG_MAIN_MEMORY +
7457 BP_PORT(bp) * (main_mem_size * 4);
7458 main_mem_prty_clr = HC_REG_HC_PRTY_STS_CLR;
7459 main_mem_width = 8;
7460
7461 val = REG_RD(bp, main_mem_prty_clr);
7462 if (val)
51c1a580
MS
7463 DP(NETIF_MSG_HW,
7464 "Hmmm... Parity errors in HC block during function init (0x%x)!\n",
7465 val);
f4a66897
VZ
7466
7467 /* Clear "false" parity errors in MSI-X table */
7468 for (i = main_mem_base;
7469 i < main_mem_base + main_mem_size * 4;
7470 i += main_mem_width) {
7471 bnx2x_read_dmae(bp, i, main_mem_width / 4);
7472 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data),
7473 i, main_mem_width / 4);
7474 }
7475 /* Clear HC parity attention */
7476 REG_RD(bp, main_mem_prty_clr);
7477 }
7478
619c5cb6
VZ
7479#ifdef BNX2X_STOP_ON_ERROR
7480 /* Enable STORMs SP logging */
7481 REG_WR8(bp, BAR_USTRORM_INTMEM +
7482 USTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7483 REG_WR8(bp, BAR_TSTRORM_INTMEM +
7484 TSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7485 REG_WR8(bp, BAR_CSTRORM_INTMEM +
7486 CSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7487 REG_WR8(bp, BAR_XSTRORM_INTMEM +
7488 XSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7489#endif
7490
b7737c9b 7491 bnx2x_phy_probe(&bp->link_params);
f85582f8 7492
34f80b04
EG
7493 return 0;
7494}
7495
a2fbb9ea 7496
55c11941
MS
7497void bnx2x_free_mem_cnic(struct bnx2x *bp)
7498{
7499 bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_FREE);
7500
7501 if (!CHIP_IS_E1x(bp))
7502 BNX2X_PCI_FREE(bp->cnic_sb.e2_sb, bp->cnic_sb_mapping,
7503 sizeof(struct host_hc_status_block_e2));
7504 else
7505 BNX2X_PCI_FREE(bp->cnic_sb.e1x_sb, bp->cnic_sb_mapping,
7506 sizeof(struct host_hc_status_block_e1x));
7507
7508 BNX2X_PCI_FREE(bp->t2, bp->t2_mapping, SRC_T2_SZ);
7509}
7510
9f6c9258 7511void bnx2x_free_mem(struct bnx2x *bp)
a2fbb9ea 7512{
a052997e
MS
7513 int i;
7514
a2fbb9ea 7515 /* fastpath */
b3b83c3f 7516 bnx2x_free_fp_mem(bp);
a2fbb9ea
ET
7517 /* end of fastpath */
7518
7519 BNX2X_PCI_FREE(bp->def_status_blk, bp->def_status_blk_mapping,
523224a3 7520 sizeof(struct host_sp_status_block));
a2fbb9ea 7521
619c5cb6
VZ
7522 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
7523 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
7524
a2fbb9ea 7525 BNX2X_PCI_FREE(bp->slowpath, bp->slowpath_mapping,
34f80b04 7526 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7527
a052997e
MS
7528 for (i = 0; i < L2_ILT_LINES(bp); i++)
7529 BNX2X_PCI_FREE(bp->context[i].vcxt, bp->context[i].cxt_mapping,
7530 bp->context[i].size);
523224a3
DK
7531 bnx2x_ilt_mem_op(bp, ILT_MEMOP_FREE);
7532
7533 BNX2X_FREE(bp->ilt->lines);
f85582f8 7534
7a9b2557 7535 BNX2X_PCI_FREE(bp->spq, bp->spq_mapping, BCM_PAGE_SIZE);
a2fbb9ea 7536
523224a3
DK
7537 BNX2X_PCI_FREE(bp->eq_ring, bp->eq_mapping,
7538 BCM_PAGE_SIZE * NUM_EQ_PAGES);
619c5cb6
VZ
7539}
7540
1191cb83 7541static int bnx2x_alloc_fw_stats_mem(struct bnx2x *bp)
619c5cb6
VZ
7542{
7543 int num_groups;
50f0a562 7544 int is_fcoe_stats = NO_FCOE(bp) ? 0 : 1;
619c5cb6 7545
50f0a562
BW
7546 /* number of queues for statistics is number of eth queues + FCoE */
7547 u8 num_queue_stats = BNX2X_NUM_ETH_QUEUES(bp) + is_fcoe_stats;
619c5cb6
VZ
7548
7549 /* Total number of FW statistics requests =
50f0a562
BW
7550 * 1 for port stats + 1 for PF stats + potential 1 for FCoE stats +
7551 * num of queues
7552 */
7553 bp->fw_stats_num = 2 + is_fcoe_stats + num_queue_stats;
523224a3 7554
619c5cb6
VZ
7555
7556 /* Request is built from stats_query_header and an array of
7557 * stats_query_cmd_group each of which contains
7558 * STATS_QUERY_CMD_COUNT rules. The real number or requests is
7559 * configured in the stats_query_header.
7560 */
50f0a562
BW
7561 num_groups = ((bp->fw_stats_num) / STATS_QUERY_CMD_COUNT) +
7562 (((bp->fw_stats_num) % STATS_QUERY_CMD_COUNT) ? 1 : 0);
619c5cb6
VZ
7563
7564 bp->fw_stats_req_sz = sizeof(struct stats_query_header) +
7565 num_groups * sizeof(struct stats_query_cmd_group);
7566
7567 /* Data for statistics requests + stats_conter
7568 *
7569 * stats_counter holds per-STORM counters that are incremented
7570 * when STORM has finished with the current request.
50f0a562
BW
7571 *
7572 * memory for FCoE offloaded statistics are counted anyway,
7573 * even if they will not be sent.
619c5cb6
VZ
7574 */
7575 bp->fw_stats_data_sz = sizeof(struct per_port_stats) +
7576 sizeof(struct per_pf_stats) +
50f0a562 7577 sizeof(struct fcoe_statistics_params) +
619c5cb6
VZ
7578 sizeof(struct per_queue_stats) * num_queue_stats +
7579 sizeof(struct stats_counter);
7580
7581 BNX2X_PCI_ALLOC(bp->fw_stats, &bp->fw_stats_mapping,
7582 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
7583
7584 /* Set shortcuts */
7585 bp->fw_stats_req = (struct bnx2x_fw_stats_req *)bp->fw_stats;
7586 bp->fw_stats_req_mapping = bp->fw_stats_mapping;
7587
7588 bp->fw_stats_data = (struct bnx2x_fw_stats_data *)
7589 ((u8 *)bp->fw_stats + bp->fw_stats_req_sz);
7590
7591 bp->fw_stats_data_mapping = bp->fw_stats_mapping +
7592 bp->fw_stats_req_sz;
7593 return 0;
7594
7595alloc_mem_err:
7596 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
7597 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
51c1a580 7598 BNX2X_ERR("Can't allocate memory\n");
619c5cb6 7599 return -ENOMEM;
a2fbb9ea
ET
7600}
7601
55c11941 7602int bnx2x_alloc_mem_cnic(struct bnx2x *bp)
a2fbb9ea 7603{
619c5cb6
VZ
7604 if (!CHIP_IS_E1x(bp))
7605 /* size = the status block + ramrod buffers */
f2e0899f
DK
7606 BNX2X_PCI_ALLOC(bp->cnic_sb.e2_sb, &bp->cnic_sb_mapping,
7607 sizeof(struct host_hc_status_block_e2));
7608 else
55c11941
MS
7609 BNX2X_PCI_ALLOC(bp->cnic_sb.e1x_sb,
7610 &bp->cnic_sb_mapping,
7611 sizeof(struct
7612 host_hc_status_block_e1x));
8badd27a 7613
55c11941
MS
7614 if (CONFIGURE_NIC_MODE(bp))
7615 /* allocate searcher T2 table, as it wan't allocated before */
7616 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
7617
7618 /* write address to which L5 should insert its values */
7619 bp->cnic_eth_dev.addr_drv_info_to_mcp =
7620 &bp->slowpath->drv_info_to_mcp;
7621
7622 if (bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_ALLOC))
7623 goto alloc_mem_err;
7624
7625 return 0;
7626
7627alloc_mem_err:
7628 bnx2x_free_mem_cnic(bp);
7629 BNX2X_ERR("Can't allocate memory\n");
7630 return -ENOMEM;
7631}
7632
7633int bnx2x_alloc_mem(struct bnx2x *bp)
7634{
7635 int i, allocated, context_size;
a2fbb9ea 7636
55c11941
MS
7637 if (!CONFIGURE_NIC_MODE(bp))
7638 /* allocate searcher T2 table */
7639 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
8badd27a 7640
523224a3
DK
7641 BNX2X_PCI_ALLOC(bp->def_status_blk, &bp->def_status_blk_mapping,
7642 sizeof(struct host_sp_status_block));
a2fbb9ea 7643
523224a3
DK
7644 BNX2X_PCI_ALLOC(bp->slowpath, &bp->slowpath_mapping,
7645 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7646
619c5cb6
VZ
7647 /* Allocated memory for FW statistics */
7648 if (bnx2x_alloc_fw_stats_mem(bp))
7649 goto alloc_mem_err;
7650
a052997e
MS
7651 /* Allocate memory for CDU context:
7652 * This memory is allocated separately and not in the generic ILT
7653 * functions because CDU differs in few aspects:
7654 * 1. There are multiple entities allocating memory for context -
7655 * 'regular' driver, CNIC and SRIOV driver. Each separately controls
7656 * its own ILT lines.
7657 * 2. Since CDU page-size is not a single 4KB page (which is the case
7658 * for the other ILT clients), to be efficient we want to support
7659 * allocation of sub-page-size in the last entry.
7660 * 3. Context pointers are used by the driver to pass to FW / update
7661 * the context (for the other ILT clients the pointers are used just to
7662 * free the memory during unload).
7663 */
7664 context_size = sizeof(union cdu_context) * BNX2X_L2_CID_COUNT(bp);
65abd74d 7665
a052997e
MS
7666 for (i = 0, allocated = 0; allocated < context_size; i++) {
7667 bp->context[i].size = min(CDU_ILT_PAGE_SZ,
7668 (context_size - allocated));
7669 BNX2X_PCI_ALLOC(bp->context[i].vcxt,
7670 &bp->context[i].cxt_mapping,
7671 bp->context[i].size);
7672 allocated += bp->context[i].size;
7673 }
523224a3 7674 BNX2X_ALLOC(bp->ilt->lines, sizeof(struct ilt_line) * ILT_MAX_LINES);
65abd74d 7675
523224a3
DK
7676 if (bnx2x_ilt_mem_op(bp, ILT_MEMOP_ALLOC))
7677 goto alloc_mem_err;
65abd74d 7678
9f6c9258
DK
7679 /* Slow path ring */
7680 BNX2X_PCI_ALLOC(bp->spq, &bp->spq_mapping, BCM_PAGE_SIZE);
65abd74d 7681
523224a3
DK
7682 /* EQ */
7683 BNX2X_PCI_ALLOC(bp->eq_ring, &bp->eq_mapping,
7684 BCM_PAGE_SIZE * NUM_EQ_PAGES);
ab532cf3 7685
b3b83c3f
DK
7686
7687 /* fastpath */
7688 /* need to be done at the end, since it's self adjusting to amount
7689 * of memory available for RSS queues
7690 */
7691 if (bnx2x_alloc_fp_mem(bp))
7692 goto alloc_mem_err;
9f6c9258 7693 return 0;
e1510706 7694
9f6c9258
DK
7695alloc_mem_err:
7696 bnx2x_free_mem(bp);
51c1a580 7697 BNX2X_ERR("Can't allocate memory\n");
9f6c9258 7698 return -ENOMEM;
65abd74d
YG
7699}
7700
a2fbb9ea
ET
7701/*
7702 * Init service functions
7703 */
a2fbb9ea 7704
619c5cb6
VZ
7705int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
7706 struct bnx2x_vlan_mac_obj *obj, bool set,
7707 int mac_type, unsigned long *ramrod_flags)
a2fbb9ea 7708{
619c5cb6
VZ
7709 int rc;
7710 struct bnx2x_vlan_mac_ramrod_params ramrod_param;
a2fbb9ea 7711
619c5cb6 7712 memset(&ramrod_param, 0, sizeof(ramrod_param));
a2fbb9ea 7713
619c5cb6
VZ
7714 /* Fill general parameters */
7715 ramrod_param.vlan_mac_obj = obj;
7716 ramrod_param.ramrod_flags = *ramrod_flags;
a2fbb9ea 7717
619c5cb6
VZ
7718 /* Fill a user request section if needed */
7719 if (!test_bit(RAMROD_CONT, ramrod_flags)) {
7720 memcpy(ramrod_param.user_req.u.mac.mac, mac, ETH_ALEN);
a2fbb9ea 7721
619c5cb6 7722 __set_bit(mac_type, &ramrod_param.user_req.vlan_mac_flags);
e3553b29 7723
619c5cb6
VZ
7724 /* Set the command: ADD or DEL */
7725 if (set)
7726 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_ADD;
7727 else
7728 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_DEL;
a2fbb9ea
ET
7729 }
7730
619c5cb6 7731 rc = bnx2x_config_vlan_mac(bp, &ramrod_param);
7b5342d9
YM
7732
7733 if (rc == -EEXIST) {
7734 DP(BNX2X_MSG_SP, "Failed to schedule ADD operations: %d\n", rc);
7735 /* do not treat adding same MAC as error */
7736 rc = 0;
7737 } else if (rc < 0)
619c5cb6 7738 BNX2X_ERR("%s MAC failed\n", (set ? "Set" : "Del"));
7b5342d9 7739
619c5cb6 7740 return rc;
a2fbb9ea
ET
7741}
7742
619c5cb6
VZ
7743int bnx2x_del_all_macs(struct bnx2x *bp,
7744 struct bnx2x_vlan_mac_obj *mac_obj,
7745 int mac_type, bool wait_for_comp)
e665bfda 7746{
619c5cb6
VZ
7747 int rc;
7748 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
0793f83f 7749
619c5cb6
VZ
7750 /* Wait for completion of requested */
7751 if (wait_for_comp)
7752 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
0793f83f 7753
619c5cb6
VZ
7754 /* Set the mac type of addresses we want to clear */
7755 __set_bit(mac_type, &vlan_mac_flags);
0793f83f 7756
619c5cb6
VZ
7757 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags, &ramrod_flags);
7758 if (rc < 0)
7759 BNX2X_ERR("Failed to delete MACs: %d\n", rc);
0793f83f 7760
619c5cb6 7761 return rc;
0793f83f
DK
7762}
7763
619c5cb6 7764int bnx2x_set_eth_mac(struct bnx2x *bp, bool set)
523224a3 7765{
619c5cb6 7766 unsigned long ramrod_flags = 0;
e665bfda 7767
a3348722
BW
7768 if (is_zero_ether_addr(bp->dev->dev_addr) &&
7769 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))) {
51c1a580
MS
7770 DP(NETIF_MSG_IFUP | NETIF_MSG_IFDOWN,
7771 "Ignoring Zero MAC for STORAGE SD mode\n");
614c76df
DK
7772 return 0;
7773 }
614c76df 7774
619c5cb6 7775 DP(NETIF_MSG_IFUP, "Adding Eth MAC\n");
0793f83f 7776
619c5cb6
VZ
7777 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
7778 /* Eth MAC is set on RSS leading client (fp[0]) */
15192a8c
BW
7779 return bnx2x_set_mac_one(bp, bp->dev->dev_addr, &bp->sp_objs->mac_obj,
7780 set, BNX2X_ETH_MAC, &ramrod_flags);
e665bfda 7781}
6e30dd4e 7782
619c5cb6 7783int bnx2x_setup_leading(struct bnx2x *bp)
ec6ba945 7784{
619c5cb6 7785 return bnx2x_setup_queue(bp, &bp->fp[0], 1);
993ac7b5 7786}
a2fbb9ea 7787
d6214d7a 7788/**
e8920674 7789 * bnx2x_set_int_mode - configure interrupt mode
d6214d7a 7790 *
e8920674 7791 * @bp: driver handle
d6214d7a 7792 *
e8920674 7793 * In case of MSI-X it will also try to enable MSI-X.
d6214d7a 7794 */
0e8d2ec5 7795void bnx2x_set_int_mode(struct bnx2x *bp)
ca00392c 7796{
9ee3d37b 7797 switch (int_mode) {
d6214d7a
DK
7798 case INT_MODE_MSI:
7799 bnx2x_enable_msi(bp);
7800 /* falling through... */
7801 case INT_MODE_INTx:
55c11941
MS
7802 bp->num_ethernet_queues = 1;
7803 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
51c1a580 7804 BNX2X_DEV_INFO("set number of queues to 1\n");
ca00392c 7805 break;
d6214d7a 7806 default:
d6214d7a
DK
7807 /* if we can't use MSI-X we only need one fp,
7808 * so try to enable MSI-X with the requested number of fp's
7809 * and fallback to MSI or legacy INTx with one fp
7810 */
30a5de77
DK
7811 if (bnx2x_enable_msix(bp) ||
7812 bp->flags & USING_SINGLE_MSIX_FLAG) {
7813 /* failed to enable multiple MSI-X */
7814 BNX2X_DEV_INFO("Failed to enable multiple MSI-X (%d), set number of queues to %d\n",
55c11941
MS
7815 bp->num_queues,
7816 1 + bp->num_cnic_queues);
51c1a580 7817
55c11941 7818 bp->num_queues = 1 + bp->num_cnic_queues;
d6214d7a 7819
9ee3d37b 7820 /* Try to enable MSI */
30a5de77
DK
7821 if (!(bp->flags & USING_SINGLE_MSIX_FLAG) &&
7822 !(bp->flags & DISABLE_MSI_FLAG))
d6214d7a
DK
7823 bnx2x_enable_msi(bp);
7824 }
9f6c9258
DK
7825 break;
7826 }
a2fbb9ea
ET
7827}
7828
c2bff63f
DK
7829/* must be called prioir to any HW initializations */
7830static inline u16 bnx2x_cid_ilt_lines(struct bnx2x *bp)
7831{
7832 return L2_ILT_LINES(bp);
7833}
7834
523224a3
DK
7835void bnx2x_ilt_set_info(struct bnx2x *bp)
7836{
7837 struct ilt_client_info *ilt_client;
7838 struct bnx2x_ilt *ilt = BP_ILT(bp);
7839 u16 line = 0;
7840
7841 ilt->start_line = FUNC_ILT_BASE(BP_FUNC(bp));
7842 DP(BNX2X_MSG_SP, "ilt starts at line %d\n", ilt->start_line);
7843
7844 /* CDU */
7845 ilt_client = &ilt->clients[ILT_CLIENT_CDU];
7846 ilt_client->client_num = ILT_CLIENT_CDU;
7847 ilt_client->page_size = CDU_ILT_PAGE_SZ;
7848 ilt_client->flags = ILT_CLIENT_SKIP_MEM;
7849 ilt_client->start = line;
619c5cb6 7850 line += bnx2x_cid_ilt_lines(bp);
55c11941
MS
7851
7852 if (CNIC_SUPPORT(bp))
7853 line += CNIC_ILT_LINES;
523224a3
DK
7854 ilt_client->end = line - 1;
7855
51c1a580 7856 DP(NETIF_MSG_IFUP, "ilt client[CDU]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
7857 ilt_client->start,
7858 ilt_client->end,
7859 ilt_client->page_size,
7860 ilt_client->flags,
7861 ilog2(ilt_client->page_size >> 12));
7862
7863 /* QM */
7864 if (QM_INIT(bp->qm_cid_count)) {
7865 ilt_client = &ilt->clients[ILT_CLIENT_QM];
7866 ilt_client->client_num = ILT_CLIENT_QM;
7867 ilt_client->page_size = QM_ILT_PAGE_SZ;
7868 ilt_client->flags = 0;
7869 ilt_client->start = line;
7870
7871 /* 4 bytes for each cid */
7872 line += DIV_ROUND_UP(bp->qm_cid_count * QM_QUEUES_PER_FUNC * 4,
7873 QM_ILT_PAGE_SZ);
7874
7875 ilt_client->end = line - 1;
7876
51c1a580
MS
7877 DP(NETIF_MSG_IFUP,
7878 "ilt client[QM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
7879 ilt_client->start,
7880 ilt_client->end,
7881 ilt_client->page_size,
7882 ilt_client->flags,
7883 ilog2(ilt_client->page_size >> 12));
7884
7885 }
523224a3 7886
55c11941
MS
7887 if (CNIC_SUPPORT(bp)) {
7888 /* SRC */
7889 ilt_client = &ilt->clients[ILT_CLIENT_SRC];
7890 ilt_client->client_num = ILT_CLIENT_SRC;
7891 ilt_client->page_size = SRC_ILT_PAGE_SZ;
7892 ilt_client->flags = 0;
7893 ilt_client->start = line;
7894 line += SRC_ILT_LINES;
7895 ilt_client->end = line - 1;
523224a3 7896
55c11941
MS
7897 DP(NETIF_MSG_IFUP,
7898 "ilt client[SRC]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
7899 ilt_client->start,
7900 ilt_client->end,
7901 ilt_client->page_size,
7902 ilt_client->flags,
7903 ilog2(ilt_client->page_size >> 12));
9f6c9258 7904
55c11941
MS
7905 /* TM */
7906 ilt_client = &ilt->clients[ILT_CLIENT_TM];
7907 ilt_client->client_num = ILT_CLIENT_TM;
7908 ilt_client->page_size = TM_ILT_PAGE_SZ;
7909 ilt_client->flags = 0;
7910 ilt_client->start = line;
7911 line += TM_ILT_LINES;
7912 ilt_client->end = line - 1;
523224a3 7913
55c11941
MS
7914 DP(NETIF_MSG_IFUP,
7915 "ilt client[TM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
7916 ilt_client->start,
7917 ilt_client->end,
7918 ilt_client->page_size,
7919 ilt_client->flags,
7920 ilog2(ilt_client->page_size >> 12));
7921 }
9f6c9258 7922
619c5cb6 7923 BUG_ON(line > ILT_MAX_LINES);
523224a3 7924}
f85582f8 7925
619c5cb6
VZ
7926/**
7927 * bnx2x_pf_q_prep_init - prepare INIT transition parameters
7928 *
7929 * @bp: driver handle
7930 * @fp: pointer to fastpath
7931 * @init_params: pointer to parameters structure
7932 *
7933 * parameters configured:
7934 * - HC configuration
7935 * - Queue's CDU context
7936 */
1191cb83 7937static void bnx2x_pf_q_prep_init(struct bnx2x *bp,
619c5cb6 7938 struct bnx2x_fastpath *fp, struct bnx2x_queue_init_params *init_params)
a2fbb9ea 7939{
6383c0b3
AE
7940
7941 u8 cos;
a052997e
MS
7942 int cxt_index, cxt_offset;
7943
619c5cb6
VZ
7944 /* FCoE Queue uses Default SB, thus has no HC capabilities */
7945 if (!IS_FCOE_FP(fp)) {
7946 __set_bit(BNX2X_Q_FLG_HC, &init_params->rx.flags);
7947 __set_bit(BNX2X_Q_FLG_HC, &init_params->tx.flags);
7948
7949 /* If HC is supporterd, enable host coalescing in the transition
7950 * to INIT state.
7951 */
7952 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->rx.flags);
7953 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->tx.flags);
7954
7955 /* HC rate */
7956 init_params->rx.hc_rate = bp->rx_ticks ?
7957 (1000000 / bp->rx_ticks) : 0;
7958 init_params->tx.hc_rate = bp->tx_ticks ?
7959 (1000000 / bp->tx_ticks) : 0;
7960
7961 /* FW SB ID */
7962 init_params->rx.fw_sb_id = init_params->tx.fw_sb_id =
7963 fp->fw_sb_id;
7964
7965 /*
7966 * CQ index among the SB indices: FCoE clients uses the default
7967 * SB, therefore it's different.
7968 */
6383c0b3
AE
7969 init_params->rx.sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
7970 init_params->tx.sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS;
619c5cb6
VZ
7971 }
7972
6383c0b3
AE
7973 /* set maximum number of COSs supported by this queue */
7974 init_params->max_cos = fp->max_cos;
7975
51c1a580 7976 DP(NETIF_MSG_IFUP, "fp: %d setting queue params max cos to: %d\n",
6383c0b3
AE
7977 fp->index, init_params->max_cos);
7978
7979 /* set the context pointers queue object */
a052997e 7980 for (cos = FIRST_TX_COS_INDEX; cos < init_params->max_cos; cos++) {
65565884
MS
7981 cxt_index = fp->txdata_ptr[cos]->cid / ILT_PAGE_CIDS;
7982 cxt_offset = fp->txdata_ptr[cos]->cid - (cxt_index *
a052997e 7983 ILT_PAGE_CIDS);
6383c0b3 7984 init_params->cxts[cos] =
a052997e
MS
7985 &bp->context[cxt_index].vcxt[cxt_offset].eth;
7986 }
619c5cb6
VZ
7987}
7988
910cc727 7989static int bnx2x_setup_tx_only(struct bnx2x *bp, struct bnx2x_fastpath *fp,
6383c0b3
AE
7990 struct bnx2x_queue_state_params *q_params,
7991 struct bnx2x_queue_setup_tx_only_params *tx_only_params,
7992 int tx_index, bool leading)
7993{
7994 memset(tx_only_params, 0, sizeof(*tx_only_params));
7995
7996 /* Set the command */
7997 q_params->cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
7998
7999 /* Set tx-only QUEUE flags: don't zero statistics */
8000 tx_only_params->flags = bnx2x_get_common_flags(bp, fp, false);
8001
8002 /* choose the index of the cid to send the slow path on */
8003 tx_only_params->cid_index = tx_index;
8004
8005 /* Set general TX_ONLY_SETUP parameters */
8006 bnx2x_pf_q_prep_general(bp, fp, &tx_only_params->gen_params, tx_index);
8007
8008 /* Set Tx TX_ONLY_SETUP parameters */
8009 bnx2x_pf_tx_q_prep(bp, fp, &tx_only_params->txq_params, tx_index);
8010
51c1a580
MS
8011 DP(NETIF_MSG_IFUP,
8012 "preparing to send tx-only ramrod for connection: cos %d, primary cid %d, cid %d, client id %d, sp-client id %d, flags %lx\n",
6383c0b3
AE
8013 tx_index, q_params->q_obj->cids[FIRST_TX_COS_INDEX],
8014 q_params->q_obj->cids[tx_index], q_params->q_obj->cl_id,
8015 tx_only_params->gen_params.spcl_id, tx_only_params->flags);
8016
8017 /* send the ramrod */
8018 return bnx2x_queue_state_change(bp, q_params);
8019}
8020
8021
619c5cb6
VZ
8022/**
8023 * bnx2x_setup_queue - setup queue
8024 *
8025 * @bp: driver handle
8026 * @fp: pointer to fastpath
8027 * @leading: is leading
8028 *
8029 * This function performs 2 steps in a Queue state machine
8030 * actually: 1) RESET->INIT 2) INIT->SETUP
8031 */
8032
8033int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
8034 bool leading)
8035{
3b603066 8036 struct bnx2x_queue_state_params q_params = {NULL};
619c5cb6
VZ
8037 struct bnx2x_queue_setup_params *setup_params =
8038 &q_params.params.setup;
6383c0b3
AE
8039 struct bnx2x_queue_setup_tx_only_params *tx_only_params =
8040 &q_params.params.tx_only;
a2fbb9ea 8041 int rc;
6383c0b3
AE
8042 u8 tx_index;
8043
51c1a580 8044 DP(NETIF_MSG_IFUP, "setting up queue %d\n", fp->index);
a2fbb9ea 8045
ec6ba945
VZ
8046 /* reset IGU state skip FCoE L2 queue */
8047 if (!IS_FCOE_FP(fp))
8048 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0,
523224a3 8049 IGU_INT_ENABLE, 0);
a2fbb9ea 8050
15192a8c 8051 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8052 /* We want to wait for completion in this context */
8053 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8054
619c5cb6
VZ
8055 /* Prepare the INIT parameters */
8056 bnx2x_pf_q_prep_init(bp, fp, &q_params.params.init);
ec6ba945 8057
619c5cb6
VZ
8058 /* Set the command */
8059 q_params.cmd = BNX2X_Q_CMD_INIT;
8060
8061 /* Change the state to INIT */
8062 rc = bnx2x_queue_state_change(bp, &q_params);
8063 if (rc) {
6383c0b3 8064 BNX2X_ERR("Queue(%d) INIT failed\n", fp->index);
619c5cb6
VZ
8065 return rc;
8066 }
ec6ba945 8067
51c1a580 8068 DP(NETIF_MSG_IFUP, "init complete\n");
6383c0b3
AE
8069
8070
619c5cb6
VZ
8071 /* Now move the Queue to the SETUP state... */
8072 memset(setup_params, 0, sizeof(*setup_params));
a2fbb9ea 8073
619c5cb6
VZ
8074 /* Set QUEUE flags */
8075 setup_params->flags = bnx2x_get_q_flags(bp, fp, leading);
523224a3 8076
619c5cb6 8077 /* Set general SETUP parameters */
6383c0b3
AE
8078 bnx2x_pf_q_prep_general(bp, fp, &setup_params->gen_params,
8079 FIRST_TX_COS_INDEX);
619c5cb6 8080
6383c0b3 8081 bnx2x_pf_rx_q_prep(bp, fp, &setup_params->pause_params,
619c5cb6
VZ
8082 &setup_params->rxq_params);
8083
6383c0b3
AE
8084 bnx2x_pf_tx_q_prep(bp, fp, &setup_params->txq_params,
8085 FIRST_TX_COS_INDEX);
619c5cb6
VZ
8086
8087 /* Set the command */
8088 q_params.cmd = BNX2X_Q_CMD_SETUP;
8089
55c11941
MS
8090 if (IS_FCOE_FP(fp))
8091 bp->fcoe_init = true;
8092
619c5cb6
VZ
8093 /* Change the state to SETUP */
8094 rc = bnx2x_queue_state_change(bp, &q_params);
6383c0b3
AE
8095 if (rc) {
8096 BNX2X_ERR("Queue(%d) SETUP failed\n", fp->index);
8097 return rc;
8098 }
8099
8100 /* loop through the relevant tx-only indices */
8101 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8102 tx_index < fp->max_cos;
8103 tx_index++) {
8104
8105 /* prepare and send tx-only ramrod*/
8106 rc = bnx2x_setup_tx_only(bp, fp, &q_params,
8107 tx_only_params, tx_index, leading);
8108 if (rc) {
8109 BNX2X_ERR("Queue(%d.%d) TX_ONLY_SETUP failed\n",
8110 fp->index, tx_index);
8111 return rc;
8112 }
8113 }
523224a3 8114
34f80b04 8115 return rc;
a2fbb9ea
ET
8116}
8117
619c5cb6 8118static int bnx2x_stop_queue(struct bnx2x *bp, int index)
a2fbb9ea 8119{
619c5cb6 8120 struct bnx2x_fastpath *fp = &bp->fp[index];
6383c0b3 8121 struct bnx2x_fp_txdata *txdata;
3b603066 8122 struct bnx2x_queue_state_params q_params = {NULL};
6383c0b3
AE
8123 int rc, tx_index;
8124
51c1a580 8125 DP(NETIF_MSG_IFDOWN, "stopping queue %d cid %d\n", index, fp->cid);
a2fbb9ea 8126
15192a8c 8127 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8128 /* We want to wait for completion in this context */
8129 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8130
6383c0b3
AE
8131
8132 /* close tx-only connections */
8133 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8134 tx_index < fp->max_cos;
8135 tx_index++){
8136
8137 /* ascertain this is a normal queue*/
65565884 8138 txdata = fp->txdata_ptr[tx_index];
6383c0b3 8139
51c1a580 8140 DP(NETIF_MSG_IFDOWN, "stopping tx-only queue %d\n",
6383c0b3
AE
8141 txdata->txq_index);
8142
8143 /* send halt terminate on tx-only connection */
8144 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
8145 memset(&q_params.params.terminate, 0,
8146 sizeof(q_params.params.terminate));
8147 q_params.params.terminate.cid_index = tx_index;
8148
8149 rc = bnx2x_queue_state_change(bp, &q_params);
8150 if (rc)
8151 return rc;
8152
8153 /* send halt terminate on tx-only connection */
8154 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
8155 memset(&q_params.params.cfc_del, 0,
8156 sizeof(q_params.params.cfc_del));
8157 q_params.params.cfc_del.cid_index = tx_index;
8158 rc = bnx2x_queue_state_change(bp, &q_params);
8159 if (rc)
8160 return rc;
8161 }
8162 /* Stop the primary connection: */
8163 /* ...halt the connection */
619c5cb6
VZ
8164 q_params.cmd = BNX2X_Q_CMD_HALT;
8165 rc = bnx2x_queue_state_change(bp, &q_params);
8166 if (rc)
da5a662a 8167 return rc;
a2fbb9ea 8168
6383c0b3 8169 /* ...terminate the connection */
619c5cb6 8170 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
6383c0b3
AE
8171 memset(&q_params.params.terminate, 0,
8172 sizeof(q_params.params.terminate));
8173 q_params.params.terminate.cid_index = FIRST_TX_COS_INDEX;
619c5cb6
VZ
8174 rc = bnx2x_queue_state_change(bp, &q_params);
8175 if (rc)
523224a3 8176 return rc;
6383c0b3 8177 /* ...delete cfc entry */
619c5cb6 8178 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
6383c0b3
AE
8179 memset(&q_params.params.cfc_del, 0,
8180 sizeof(q_params.params.cfc_del));
8181 q_params.params.cfc_del.cid_index = FIRST_TX_COS_INDEX;
619c5cb6 8182 return bnx2x_queue_state_change(bp, &q_params);
523224a3
DK
8183}
8184
8185
34f80b04
EG
8186static void bnx2x_reset_func(struct bnx2x *bp)
8187{
8188 int port = BP_PORT(bp);
8189 int func = BP_FUNC(bp);
f2e0899f 8190 int i;
523224a3
DK
8191
8192 /* Disable the function in the FW */
8193 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(func), 0);
8194 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(func), 0);
8195 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(func), 0);
8196 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(func), 0);
8197
8198 /* FP SBs */
ec6ba945 8199 for_each_eth_queue(bp, i) {
523224a3 8200 struct bnx2x_fastpath *fp = &bp->fp[i];
619c5cb6 8201 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8202 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET(fp->fw_sb_id),
8203 SB_DISABLED);
523224a3
DK
8204 }
8205
55c11941
MS
8206 if (CNIC_LOADED(bp))
8207 /* CNIC SB */
8208 REG_WR8(bp, BAR_CSTRORM_INTMEM +
8209 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET
8210 (bnx2x_cnic_fw_sb_id(bp)), SB_DISABLED);
8211
523224a3 8212 /* SP SB */
619c5cb6 8213 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8214 CSTORM_SP_STATUS_BLOCK_DATA_STATE_OFFSET(func),
8215 SB_DISABLED);
523224a3
DK
8216
8217 for (i = 0; i < XSTORM_SPQ_DATA_SIZE / 4; i++)
8218 REG_WR(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_DATA_OFFSET(func),
8219 0);
34f80b04
EG
8220
8221 /* Configure IGU */
f2e0899f
DK
8222 if (bp->common.int_block == INT_BLOCK_HC) {
8223 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
8224 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
8225 } else {
8226 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
8227 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
8228 }
34f80b04 8229
55c11941
MS
8230 if (CNIC_LOADED(bp)) {
8231 /* Disable Timer scan */
8232 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
8233 /*
8234 * Wait for at least 10ms and up to 2 second for the timers
8235 * scan to complete
8236 */
8237 for (i = 0; i < 200; i++) {
8238 msleep(10);
8239 if (!REG_RD(bp, TM_REG_LIN0_SCAN_ON + port*4))
8240 break;
8241 }
37b091ba 8242 }
34f80b04 8243 /* Clear ILT */
f2e0899f
DK
8244 bnx2x_clear_func_ilt(bp, func);
8245
8246 /* Timers workaround bug for E2: if this is vnic-3,
8247 * we need to set the entire ilt range for this timers.
8248 */
619c5cb6 8249 if (!CHIP_IS_E1x(bp) && BP_VN(bp) == 3) {
f2e0899f
DK
8250 struct ilt_client_info ilt_cli;
8251 /* use dummy TM client */
8252 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
8253 ilt_cli.start = 0;
8254 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
8255 ilt_cli.client_num = ILT_CLIENT_TM;
8256
8257 bnx2x_ilt_boundry_init_op(bp, &ilt_cli, 0, INITOP_CLEAR);
8258 }
8259
8260 /* this assumes that reset_port() called before reset_func()*/
619c5cb6 8261 if (!CHIP_IS_E1x(bp))
f2e0899f 8262 bnx2x_pf_disable(bp);
523224a3
DK
8263
8264 bp->dmae_ready = 0;
34f80b04
EG
8265}
8266
8267static void bnx2x_reset_port(struct bnx2x *bp)
8268{
8269 int port = BP_PORT(bp);
8270 u32 val;
8271
619c5cb6
VZ
8272 /* Reset physical Link */
8273 bnx2x__link_reset(bp);
8274
34f80b04
EG
8275 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
8276
8277 /* Do not rcv packets to BRB */
8278 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK + port*4, 0x0);
8279 /* Do not direct rcv packets that are not for MCP to the BRB */
8280 REG_WR(bp, (port ? NIG_REG_LLH1_BRB1_NOT_MCP :
8281 NIG_REG_LLH0_BRB1_NOT_MCP), 0x0);
8282
8283 /* Configure AEU */
8284 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, 0);
8285
8286 msleep(100);
8287 /* Check for BRB port occupancy */
8288 val = REG_RD(bp, BRB1_REG_PORT_NUM_OCC_BLOCKS_0 + port*4);
8289 if (val)
8290 DP(NETIF_MSG_IFDOWN,
33471629 8291 "BRB1 is not empty %d blocks are occupied\n", val);
34f80b04
EG
8292
8293 /* TODO: Close Doorbell port? */
8294}
8295
1191cb83 8296static int bnx2x_reset_hw(struct bnx2x *bp, u32 load_code)
34f80b04 8297{
3b603066 8298 struct bnx2x_func_state_params func_params = {NULL};
34f80b04 8299
619c5cb6
VZ
8300 /* Prepare parameters for function state transitions */
8301 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
34f80b04 8302
619c5cb6
VZ
8303 func_params.f_obj = &bp->func_obj;
8304 func_params.cmd = BNX2X_F_CMD_HW_RESET;
34f80b04 8305
619c5cb6 8306 func_params.params.hw_init.load_phase = load_code;
49d66772 8307
619c5cb6 8308 return bnx2x_func_state_change(bp, &func_params);
34f80b04
EG
8309}
8310
1191cb83 8311static int bnx2x_func_stop(struct bnx2x *bp)
ec6ba945 8312{
3b603066 8313 struct bnx2x_func_state_params func_params = {NULL};
619c5cb6 8314 int rc;
228241eb 8315
619c5cb6
VZ
8316 /* Prepare parameters for function state transitions */
8317 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
8318 func_params.f_obj = &bp->func_obj;
8319 func_params.cmd = BNX2X_F_CMD_STOP;
da5a662a 8320
619c5cb6
VZ
8321 /*
8322 * Try to stop the function the 'good way'. If fails (in case
8323 * of a parity error during bnx2x_chip_cleanup()) and we are
8324 * not in a debug mode, perform a state transaction in order to
8325 * enable further HW_RESET transaction.
8326 */
8327 rc = bnx2x_func_state_change(bp, &func_params);
8328 if (rc) {
34f80b04 8329#ifdef BNX2X_STOP_ON_ERROR
619c5cb6 8330 return rc;
34f80b04 8331#else
51c1a580 8332 BNX2X_ERR("FUNC_STOP ramrod failed. Running a dry transaction\n");
619c5cb6
VZ
8333 __set_bit(RAMROD_DRV_CLR_ONLY, &func_params.ramrod_flags);
8334 return bnx2x_func_state_change(bp, &func_params);
34f80b04 8335#endif
228241eb 8336 }
a2fbb9ea 8337
619c5cb6
VZ
8338 return 0;
8339}
523224a3 8340
619c5cb6
VZ
8341/**
8342 * bnx2x_send_unload_req - request unload mode from the MCP.
8343 *
8344 * @bp: driver handle
8345 * @unload_mode: requested function's unload mode
8346 *
8347 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
8348 */
8349u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode)
8350{
8351 u32 reset_code = 0;
8352 int port = BP_PORT(bp);
3101c2bc 8353
619c5cb6 8354 /* Select the UNLOAD request mode */
65abd74d
YG
8355 if (unload_mode == UNLOAD_NORMAL)
8356 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
8357
7d0446c2 8358 else if (bp->flags & NO_WOL_FLAG)
65abd74d 8359 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP;
65abd74d 8360
7d0446c2 8361 else if (bp->wol) {
65abd74d
YG
8362 u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0;
8363 u8 *mac_addr = bp->dev->dev_addr;
8364 u32 val;
f9977903
DK
8365 u16 pmc;
8366
65abd74d 8367 /* The mac address is written to entries 1-4 to
f9977903
DK
8368 * preserve entry 0 which is used by the PMF
8369 */
3395a033 8370 u8 entry = (BP_VN(bp) + 1)*8;
65abd74d
YG
8371
8372 val = (mac_addr[0] << 8) | mac_addr[1];
8373 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val);
8374
8375 val = (mac_addr[2] << 24) | (mac_addr[3] << 16) |
8376 (mac_addr[4] << 8) | mac_addr[5];
8377 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val);
8378
f9977903
DK
8379 /* Enable the PME and clear the status */
8380 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmc);
8381 pmc |= PCI_PM_CTRL_PME_ENABLE | PCI_PM_CTRL_PME_STATUS;
8382 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, pmc);
8383
65abd74d
YG
8384 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN;
8385
8386 } else
8387 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
da5a662a 8388
619c5cb6
VZ
8389 /* Send the request to the MCP */
8390 if (!BP_NOMCP(bp))
8391 reset_code = bnx2x_fw_command(bp, reset_code, 0);
8392 else {
8393 int path = BP_PATH(bp);
8394
51c1a580 8395 DP(NETIF_MSG_IFDOWN, "NO MCP - load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8396 path, load_count[path][0], load_count[path][1],
8397 load_count[path][2]);
8398 load_count[path][0]--;
8399 load_count[path][1 + port]--;
51c1a580 8400 DP(NETIF_MSG_IFDOWN, "NO MCP - new load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8401 path, load_count[path][0], load_count[path][1],
8402 load_count[path][2]);
8403 if (load_count[path][0] == 0)
8404 reset_code = FW_MSG_CODE_DRV_UNLOAD_COMMON;
8405 else if (load_count[path][1 + port] == 0)
8406 reset_code = FW_MSG_CODE_DRV_UNLOAD_PORT;
8407 else
8408 reset_code = FW_MSG_CODE_DRV_UNLOAD_FUNCTION;
8409 }
8410
8411 return reset_code;
8412}
8413
8414/**
8415 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
8416 *
8417 * @bp: driver handle
5d07d868 8418 * @keep_link: true iff link should be kept up
619c5cb6 8419 */
5d07d868 8420void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link)
619c5cb6 8421{
5d07d868
YM
8422 u32 reset_param = keep_link ? DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET : 0;
8423
619c5cb6
VZ
8424 /* Report UNLOAD_DONE to MCP */
8425 if (!BP_NOMCP(bp))
5d07d868 8426 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, reset_param);
619c5cb6
VZ
8427}
8428
1191cb83 8429static int bnx2x_func_wait_started(struct bnx2x *bp)
6debea87
DK
8430{
8431 int tout = 50;
8432 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8433
8434 if (!bp->port.pmf)
8435 return 0;
8436
8437 /*
8438 * (assumption: No Attention from MCP at this stage)
8439 * PMF probably in the middle of TXdisable/enable transaction
8440 * 1. Sync IRS for default SB
8441 * 2. Sync SP queue - this guarantes us that attention handling started
8442 * 3. Wait, that TXdisable/enable transaction completes
8443 *
8444 * 1+2 guranty that if DCBx attention was scheduled it already changed
8445 * pending bit of transaction from STARTED-->TX_STOPPED, if we alredy
8446 * received complettion for the transaction the state is TX_STOPPED.
8447 * State will return to STARTED after completion of TX_STOPPED-->STARTED
8448 * transaction.
8449 */
8450
8451 /* make sure default SB ISR is done */
8452 if (msix)
8453 synchronize_irq(bp->msix_table[0].vector);
8454 else
8455 synchronize_irq(bp->pdev->irq);
8456
8457 flush_workqueue(bnx2x_wq);
8458
8459 while (bnx2x_func_get_state(bp, &bp->func_obj) !=
8460 BNX2X_F_STATE_STARTED && tout--)
8461 msleep(20);
8462
8463 if (bnx2x_func_get_state(bp, &bp->func_obj) !=
8464 BNX2X_F_STATE_STARTED) {
8465#ifdef BNX2X_STOP_ON_ERROR
51c1a580 8466 BNX2X_ERR("Wrong function state\n");
6debea87
DK
8467 return -EBUSY;
8468#else
8469 /*
8470 * Failed to complete the transaction in a "good way"
8471 * Force both transactions with CLR bit
8472 */
3b603066 8473 struct bnx2x_func_state_params func_params = {NULL};
6debea87 8474
51c1a580
MS
8475 DP(NETIF_MSG_IFDOWN,
8476 "Hmmm... unexpected function state! Forcing STARTED-->TX_ST0PPED-->STARTED\n");
6debea87
DK
8477
8478 func_params.f_obj = &bp->func_obj;
8479 __set_bit(RAMROD_DRV_CLR_ONLY,
8480 &func_params.ramrod_flags);
8481
8482 /* STARTED-->TX_ST0PPED */
8483 func_params.cmd = BNX2X_F_CMD_TX_STOP;
8484 bnx2x_func_state_change(bp, &func_params);
8485
8486 /* TX_ST0PPED-->STARTED */
8487 func_params.cmd = BNX2X_F_CMD_TX_START;
8488 return bnx2x_func_state_change(bp, &func_params);
8489#endif
8490 }
8491
8492 return 0;
8493}
8494
5d07d868 8495void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link)
619c5cb6
VZ
8496{
8497 int port = BP_PORT(bp);
6383c0b3
AE
8498 int i, rc = 0;
8499 u8 cos;
3b603066 8500 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6
VZ
8501 u32 reset_code;
8502
8503 /* Wait until tx fastpath tasks complete */
8504 for_each_tx_queue(bp, i) {
8505 struct bnx2x_fastpath *fp = &bp->fp[i];
8506
6383c0b3 8507 for_each_cos_in_tx_queue(fp, cos)
65565884 8508 rc = bnx2x_clean_tx_queue(bp, fp->txdata_ptr[cos]);
619c5cb6
VZ
8509#ifdef BNX2X_STOP_ON_ERROR
8510 if (rc)
8511 return;
8512#endif
8513 }
8514
8515 /* Give HW time to discard old tx messages */
8516 usleep_range(1000, 1000);
8517
8518 /* Clean all ETH MACs */
15192a8c
BW
8519 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_ETH_MAC,
8520 false);
619c5cb6
VZ
8521 if (rc < 0)
8522 BNX2X_ERR("Failed to delete all ETH macs: %d\n", rc);
8523
8524 /* Clean up UC list */
15192a8c 8525 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_UC_LIST_MAC,
619c5cb6
VZ
8526 true);
8527 if (rc < 0)
51c1a580
MS
8528 BNX2X_ERR("Failed to schedule DEL commands for UC MACs list: %d\n",
8529 rc);
619c5cb6
VZ
8530
8531 /* Disable LLH */
8532 if (!CHIP_IS_E1(bp))
8533 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
8534
8535 /* Set "drop all" (stop Rx).
8536 * We need to take a netif_addr_lock() here in order to prevent
8537 * a race between the completion code and this code.
8538 */
8539 netif_addr_lock_bh(bp->dev);
8540 /* Schedule the rx_mode command */
8541 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
8542 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
8543 else
8544 bnx2x_set_storm_rx_mode(bp);
8545
8546 /* Cleanup multicast configuration */
8547 rparam.mcast_obj = &bp->mcast_obj;
8548 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
8549 if (rc < 0)
8550 BNX2X_ERR("Failed to send DEL multicast command: %d\n", rc);
8551
8552 netif_addr_unlock_bh(bp->dev);
8553
8554
6debea87
DK
8555
8556 /*
8557 * Send the UNLOAD_REQUEST to the MCP. This will return if
8558 * this function should perform FUNC, PORT or COMMON HW
8559 * reset.
8560 */
8561 reset_code = bnx2x_send_unload_req(bp, unload_mode);
8562
8563 /*
8564 * (assumption: No Attention from MCP at this stage)
8565 * PMF probably in the middle of TXdisable/enable transaction
8566 */
8567 rc = bnx2x_func_wait_started(bp);
8568 if (rc) {
8569 BNX2X_ERR("bnx2x_func_wait_started failed\n");
8570#ifdef BNX2X_STOP_ON_ERROR
8571 return;
8572#endif
8573 }
8574
34f80b04 8575 /* Close multi and leading connections
619c5cb6
VZ
8576 * Completions for ramrods are collected in a synchronous way
8577 */
55c11941 8578 for_each_eth_queue(bp, i)
619c5cb6 8579 if (bnx2x_stop_queue(bp, i))
523224a3
DK
8580#ifdef BNX2X_STOP_ON_ERROR
8581 return;
8582#else
228241eb 8583 goto unload_error;
523224a3 8584#endif
55c11941
MS
8585
8586 if (CNIC_LOADED(bp)) {
8587 for_each_cnic_queue(bp, i)
8588 if (bnx2x_stop_queue(bp, i))
8589#ifdef BNX2X_STOP_ON_ERROR
8590 return;
8591#else
8592 goto unload_error;
8593#endif
8594 }
8595
619c5cb6
VZ
8596 /* If SP settings didn't get completed so far - something
8597 * very wrong has happen.
8598 */
8599 if (!bnx2x_wait_sp_comp(bp, ~0x0UL))
8600 BNX2X_ERR("Hmmm... Common slow path ramrods got stuck!\n");
a2fbb9ea 8601
619c5cb6
VZ
8602#ifndef BNX2X_STOP_ON_ERROR
8603unload_error:
8604#endif
523224a3 8605 rc = bnx2x_func_stop(bp);
da5a662a 8606 if (rc) {
523224a3 8607 BNX2X_ERR("Function stop failed!\n");
da5a662a 8608#ifdef BNX2X_STOP_ON_ERROR
523224a3 8609 return;
523224a3 8610#endif
34f80b04 8611 }
a2fbb9ea 8612
523224a3
DK
8613 /* Disable HW interrupts, NAPI */
8614 bnx2x_netif_stop(bp, 1);
26614ba5
MS
8615 /* Delete all NAPI objects */
8616 bnx2x_del_all_napi(bp);
55c11941
MS
8617 if (CNIC_LOADED(bp))
8618 bnx2x_del_all_napi_cnic(bp);
523224a3
DK
8619
8620 /* Release IRQs */
d6214d7a 8621 bnx2x_free_irq(bp);
523224a3 8622
a2fbb9ea 8623 /* Reset the chip */
619c5cb6
VZ
8624 rc = bnx2x_reset_hw(bp, reset_code);
8625 if (rc)
8626 BNX2X_ERR("HW_RESET failed\n");
a2fbb9ea 8627
356e2385 8628
619c5cb6 8629 /* Report UNLOAD_DONE to MCP */
5d07d868 8630 bnx2x_send_unload_done(bp, keep_link);
72fd0718
VZ
8631}
8632
9f6c9258 8633void bnx2x_disable_close_the_gate(struct bnx2x *bp)
72fd0718
VZ
8634{
8635 u32 val;
8636
51c1a580 8637 DP(NETIF_MSG_IFDOWN, "Disabling \"close the gates\"\n");
72fd0718
VZ
8638
8639 if (CHIP_IS_E1(bp)) {
8640 int port = BP_PORT(bp);
8641 u32 addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
8642 MISC_REG_AEU_MASK_ATTN_FUNC_0;
8643
8644 val = REG_RD(bp, addr);
8645 val &= ~(0x300);
8646 REG_WR(bp, addr, val);
619c5cb6 8647 } else {
72fd0718
VZ
8648 val = REG_RD(bp, MISC_REG_AEU_GENERAL_MASK);
8649 val &= ~(MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK |
8650 MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK);
8651 REG_WR(bp, MISC_REG_AEU_GENERAL_MASK, val);
8652 }
8653}
8654
72fd0718
VZ
8655/* Close gates #2, #3 and #4: */
8656static void bnx2x_set_234_gates(struct bnx2x *bp, bool close)
8657{
c9ee9206 8658 u32 val;
72fd0718
VZ
8659
8660 /* Gates #2 and #4a are closed/opened for "not E1" only */
8661 if (!CHIP_IS_E1(bp)) {
8662 /* #4 */
c9ee9206 8663 REG_WR(bp, PXP_REG_HST_DISCARD_DOORBELLS, !!close);
72fd0718 8664 /* #2 */
c9ee9206 8665 REG_WR(bp, PXP_REG_HST_DISCARD_INTERNAL_WRITES, !!close);
72fd0718
VZ
8666 }
8667
8668 /* #3 */
c9ee9206
VZ
8669 if (CHIP_IS_E1x(bp)) {
8670 /* Prevent interrupts from HC on both ports */
8671 val = REG_RD(bp, HC_REG_CONFIG_1);
8672 REG_WR(bp, HC_REG_CONFIG_1,
8673 (!close) ? (val | HC_CONFIG_1_REG_BLOCK_DISABLE_1) :
8674 (val & ~(u32)HC_CONFIG_1_REG_BLOCK_DISABLE_1));
8675
8676 val = REG_RD(bp, HC_REG_CONFIG_0);
8677 REG_WR(bp, HC_REG_CONFIG_0,
8678 (!close) ? (val | HC_CONFIG_0_REG_BLOCK_DISABLE_0) :
8679 (val & ~(u32)HC_CONFIG_0_REG_BLOCK_DISABLE_0));
8680 } else {
8681 /* Prevent incomming interrupts in IGU */
8682 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
8683
8684 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION,
8685 (!close) ?
8686 (val | IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE) :
8687 (val & ~(u32)IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE));
8688 }
72fd0718 8689
51c1a580 8690 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "%s gates #2, #3 and #4\n",
72fd0718
VZ
8691 close ? "closing" : "opening");
8692 mmiowb();
8693}
8694
8695#define SHARED_MF_CLP_MAGIC 0x80000000 /* `magic' bit */
8696
8697static void bnx2x_clp_reset_prep(struct bnx2x *bp, u32 *magic_val)
8698{
8699 /* Do some magic... */
8700 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8701 *magic_val = val & SHARED_MF_CLP_MAGIC;
8702 MF_CFG_WR(bp, shared_mf_config.clp_mb, val | SHARED_MF_CLP_MAGIC);
8703}
8704
e8920674
DK
8705/**
8706 * bnx2x_clp_reset_done - restore the value of the `magic' bit.
72fd0718 8707 *
e8920674
DK
8708 * @bp: driver handle
8709 * @magic_val: old value of the `magic' bit.
72fd0718
VZ
8710 */
8711static void bnx2x_clp_reset_done(struct bnx2x *bp, u32 magic_val)
8712{
8713 /* Restore the `magic' bit value... */
72fd0718
VZ
8714 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8715 MF_CFG_WR(bp, shared_mf_config.clp_mb,
8716 (val & (~SHARED_MF_CLP_MAGIC)) | magic_val);
8717}
8718
f85582f8 8719/**
e8920674 8720 * bnx2x_reset_mcp_prep - prepare for MCP reset.
72fd0718 8721 *
e8920674
DK
8722 * @bp: driver handle
8723 * @magic_val: old value of 'magic' bit.
8724 *
8725 * Takes care of CLP configurations.
72fd0718
VZ
8726 */
8727static void bnx2x_reset_mcp_prep(struct bnx2x *bp, u32 *magic_val)
8728{
8729 u32 shmem;
8730 u32 validity_offset;
8731
51c1a580 8732 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "Starting\n");
72fd0718
VZ
8733
8734 /* Set `magic' bit in order to save MF config */
8735 if (!CHIP_IS_E1(bp))
8736 bnx2x_clp_reset_prep(bp, magic_val);
8737
8738 /* Get shmem offset */
8739 shmem = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
c55e771b
BW
8740 validity_offset =
8741 offsetof(struct shmem_region, validity_map[BP_PORT(bp)]);
72fd0718
VZ
8742
8743 /* Clear validity map flags */
8744 if (shmem > 0)
8745 REG_WR(bp, shmem + validity_offset, 0);
8746}
8747
8748#define MCP_TIMEOUT 5000 /* 5 seconds (in ms) */
8749#define MCP_ONE_TIMEOUT 100 /* 100 ms */
8750
e8920674
DK
8751/**
8752 * bnx2x_mcp_wait_one - wait for MCP_ONE_TIMEOUT
72fd0718 8753 *
e8920674 8754 * @bp: driver handle
72fd0718 8755 */
1191cb83 8756static void bnx2x_mcp_wait_one(struct bnx2x *bp)
72fd0718
VZ
8757{
8758 /* special handling for emulation and FPGA,
8759 wait 10 times longer */
8760 if (CHIP_REV_IS_SLOW(bp))
8761 msleep(MCP_ONE_TIMEOUT*10);
8762 else
8763 msleep(MCP_ONE_TIMEOUT);
8764}
8765
1b6e2ceb
DK
8766/*
8767 * initializes bp->common.shmem_base and waits for validity signature to appear
8768 */
8769static int bnx2x_init_shmem(struct bnx2x *bp)
72fd0718 8770{
1b6e2ceb
DK
8771 int cnt = 0;
8772 u32 val = 0;
72fd0718 8773
1b6e2ceb
DK
8774 do {
8775 bp->common.shmem_base = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
8776 if (bp->common.shmem_base) {
8777 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
8778 if (val & SHR_MEM_VALIDITY_MB)
8779 return 0;
8780 }
72fd0718 8781
1b6e2ceb 8782 bnx2x_mcp_wait_one(bp);
72fd0718 8783
1b6e2ceb 8784 } while (cnt++ < (MCP_TIMEOUT / MCP_ONE_TIMEOUT));
72fd0718 8785
1b6e2ceb 8786 BNX2X_ERR("BAD MCP validity signature\n");
72fd0718 8787
1b6e2ceb
DK
8788 return -ENODEV;
8789}
72fd0718 8790
1b6e2ceb
DK
8791static int bnx2x_reset_mcp_comp(struct bnx2x *bp, u32 magic_val)
8792{
8793 int rc = bnx2x_init_shmem(bp);
72fd0718 8794
72fd0718
VZ
8795 /* Restore the `magic' bit value */
8796 if (!CHIP_IS_E1(bp))
8797 bnx2x_clp_reset_done(bp, magic_val);
8798
8799 return rc;
8800}
8801
8802static void bnx2x_pxp_prep(struct bnx2x *bp)
8803{
8804 if (!CHIP_IS_E1(bp)) {
8805 REG_WR(bp, PXP2_REG_RD_START_INIT, 0);
8806 REG_WR(bp, PXP2_REG_RQ_RBC_DONE, 0);
72fd0718
VZ
8807 mmiowb();
8808 }
8809}
8810
8811/*
8812 * Reset the whole chip except for:
8813 * - PCIE core
8814 * - PCI Glue, PSWHST, PXP/PXP2 RF (all controlled by
8815 * one reset bit)
8816 * - IGU
8817 * - MISC (including AEU)
8818 * - GRC
8819 * - RBCN, RBCP
8820 */
c9ee9206 8821static void bnx2x_process_kill_chip_reset(struct bnx2x *bp, bool global)
72fd0718
VZ
8822{
8823 u32 not_reset_mask1, reset_mask1, not_reset_mask2, reset_mask2;
8736c826 8824 u32 global_bits2, stay_reset2;
c9ee9206
VZ
8825
8826 /*
8827 * Bits that have to be set in reset_mask2 if we want to reset 'global'
8828 * (per chip) blocks.
8829 */
8830 global_bits2 =
8831 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CPU |
8832 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CORE;
72fd0718 8833
c55e771b
BW
8834 /* Don't reset the following blocks.
8835 * Important: per port blocks (such as EMAC, BMAC, UMAC) can't be
8836 * reset, as in 4 port device they might still be owned
8837 * by the MCP (there is only one leader per path).
8838 */
72fd0718
VZ
8839 not_reset_mask1 =
8840 MISC_REGISTERS_RESET_REG_1_RST_HC |
8841 MISC_REGISTERS_RESET_REG_1_RST_PXPV |
8842 MISC_REGISTERS_RESET_REG_1_RST_PXP;
8843
8844 not_reset_mask2 =
c9ee9206 8845 MISC_REGISTERS_RESET_REG_2_RST_PCI_MDIO |
72fd0718
VZ
8846 MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE |
8847 MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE |
8848 MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE |
8849 MISC_REGISTERS_RESET_REG_2_RST_RBCN |
8850 MISC_REGISTERS_RESET_REG_2_RST_GRC |
8851 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE |
8736c826
VZ
8852 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B |
8853 MISC_REGISTERS_RESET_REG_2_RST_ATC |
c55e771b
BW
8854 MISC_REGISTERS_RESET_REG_2_PGLC |
8855 MISC_REGISTERS_RESET_REG_2_RST_BMAC0 |
8856 MISC_REGISTERS_RESET_REG_2_RST_BMAC1 |
8857 MISC_REGISTERS_RESET_REG_2_RST_EMAC0 |
8858 MISC_REGISTERS_RESET_REG_2_RST_EMAC1 |
8859 MISC_REGISTERS_RESET_REG_2_UMAC0 |
8860 MISC_REGISTERS_RESET_REG_2_UMAC1;
72fd0718 8861
8736c826
VZ
8862 /*
8863 * Keep the following blocks in reset:
8864 * - all xxMACs are handled by the bnx2x_link code.
8865 */
8866 stay_reset2 =
8736c826
VZ
8867 MISC_REGISTERS_RESET_REG_2_XMAC |
8868 MISC_REGISTERS_RESET_REG_2_XMAC_SOFT;
8869
8870 /* Full reset masks according to the chip */
72fd0718
VZ
8871 reset_mask1 = 0xffffffff;
8872
8873 if (CHIP_IS_E1(bp))
8874 reset_mask2 = 0xffff;
8736c826 8875 else if (CHIP_IS_E1H(bp))
72fd0718 8876 reset_mask2 = 0x1ffff;
8736c826
VZ
8877 else if (CHIP_IS_E2(bp))
8878 reset_mask2 = 0xfffff;
8879 else /* CHIP_IS_E3 */
8880 reset_mask2 = 0x3ffffff;
c9ee9206
VZ
8881
8882 /* Don't reset global blocks unless we need to */
8883 if (!global)
8884 reset_mask2 &= ~global_bits2;
8885
8886 /*
8887 * In case of attention in the QM, we need to reset PXP
8888 * (MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR) before QM
8889 * because otherwise QM reset would release 'close the gates' shortly
8890 * before resetting the PXP, then the PSWRQ would send a write
8891 * request to PGLUE. Then when PXP is reset, PGLUE would try to
8892 * read the payload data from PSWWR, but PSWWR would not
8893 * respond. The write queue in PGLUE would stuck, dmae commands
8894 * would not return. Therefore it's important to reset the second
8895 * reset register (containing the
8896 * MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR bit) before the
8897 * first one (containing the MISC_REGISTERS_RESET_REG_1_RST_QM
8898 * bit).
8899 */
72fd0718
VZ
8900 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR,
8901 reset_mask2 & (~not_reset_mask2));
8902
c9ee9206
VZ
8903 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
8904 reset_mask1 & (~not_reset_mask1));
8905
72fd0718
VZ
8906 barrier();
8907 mmiowb();
8908
8736c826
VZ
8909 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET,
8910 reset_mask2 & (~stay_reset2));
8911
8912 barrier();
8913 mmiowb();
8914
c9ee9206 8915 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, reset_mask1);
72fd0718
VZ
8916 mmiowb();
8917}
8918
c9ee9206
VZ
8919/**
8920 * bnx2x_er_poll_igu_vq - poll for pending writes bit.
8921 * It should get cleared in no more than 1s.
8922 *
8923 * @bp: driver handle
8924 *
8925 * It should get cleared in no more than 1s. Returns 0 if
8926 * pending writes bit gets cleared.
8927 */
8928static int bnx2x_er_poll_igu_vq(struct bnx2x *bp)
8929{
8930 u32 cnt = 1000;
8931 u32 pend_bits = 0;
8932
8933 do {
8934 pend_bits = REG_RD(bp, IGU_REG_PENDING_BITS_STATUS);
8935
8936 if (pend_bits == 0)
8937 break;
8938
8939 usleep_range(1000, 1000);
8940 } while (cnt-- > 0);
8941
8942 if (cnt <= 0) {
8943 BNX2X_ERR("Still pending IGU requests pend_bits=%x!\n",
8944 pend_bits);
8945 return -EBUSY;
8946 }
8947
8948 return 0;
8949}
8950
8951static int bnx2x_process_kill(struct bnx2x *bp, bool global)
72fd0718
VZ
8952{
8953 int cnt = 1000;
8954 u32 val = 0;
8955 u32 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1, pgl_exp_rom2;
c55e771b 8956 u32 tags_63_32 = 0;
72fd0718
VZ
8957
8958
8959 /* Empty the Tetris buffer, wait for 1s */
8960 do {
8961 sr_cnt = REG_RD(bp, PXP2_REG_RD_SR_CNT);
8962 blk_cnt = REG_RD(bp, PXP2_REG_RD_BLK_CNT);
8963 port_is_idle_0 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_0);
8964 port_is_idle_1 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_1);
8965 pgl_exp_rom2 = REG_RD(bp, PXP2_REG_PGL_EXP_ROM2);
c55e771b
BW
8966 if (CHIP_IS_E3(bp))
8967 tags_63_32 = REG_RD(bp, PGLUE_B_REG_TAGS_63_32);
8968
72fd0718
VZ
8969 if ((sr_cnt == 0x7e) && (blk_cnt == 0xa0) &&
8970 ((port_is_idle_0 & 0x1) == 0x1) &&
8971 ((port_is_idle_1 & 0x1) == 0x1) &&
c55e771b
BW
8972 (pgl_exp_rom2 == 0xffffffff) &&
8973 (!CHIP_IS_E3(bp) || (tags_63_32 == 0xffffffff)))
72fd0718 8974 break;
c9ee9206 8975 usleep_range(1000, 1000);
72fd0718
VZ
8976 } while (cnt-- > 0);
8977
8978 if (cnt <= 0) {
51c1a580
MS
8979 BNX2X_ERR("Tetris buffer didn't get empty or there are still outstanding read requests after 1s!\n");
8980 BNX2X_ERR("sr_cnt=0x%08x, blk_cnt=0x%08x, port_is_idle_0=0x%08x, port_is_idle_1=0x%08x, pgl_exp_rom2=0x%08x\n",
72fd0718
VZ
8981 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1,
8982 pgl_exp_rom2);
8983 return -EAGAIN;
8984 }
8985
8986 barrier();
8987
8988 /* Close gates #2, #3 and #4 */
8989 bnx2x_set_234_gates(bp, true);
8990
c9ee9206
VZ
8991 /* Poll for IGU VQs for 57712 and newer chips */
8992 if (!CHIP_IS_E1x(bp) && bnx2x_er_poll_igu_vq(bp))
8993 return -EAGAIN;
8994
8995
72fd0718
VZ
8996 /* TBD: Indicate that "process kill" is in progress to MCP */
8997
8998 /* Clear "unprepared" bit */
8999 REG_WR(bp, MISC_REG_UNPREPARED, 0);
9000 barrier();
9001
9002 /* Make sure all is written to the chip before the reset */
9003 mmiowb();
9004
9005 /* Wait for 1ms to empty GLUE and PCI-E core queues,
9006 * PSWHST, GRC and PSWRD Tetris buffer.
9007 */
c9ee9206 9008 usleep_range(1000, 1000);
72fd0718
VZ
9009
9010 /* Prepare to chip reset: */
9011 /* MCP */
c9ee9206
VZ
9012 if (global)
9013 bnx2x_reset_mcp_prep(bp, &val);
72fd0718
VZ
9014
9015 /* PXP */
9016 bnx2x_pxp_prep(bp);
9017 barrier();
9018
9019 /* reset the chip */
c9ee9206 9020 bnx2x_process_kill_chip_reset(bp, global);
72fd0718
VZ
9021 barrier();
9022
9023 /* Recover after reset: */
9024 /* MCP */
c9ee9206 9025 if (global && bnx2x_reset_mcp_comp(bp, val))
72fd0718
VZ
9026 return -EAGAIN;
9027
c9ee9206
VZ
9028 /* TBD: Add resetting the NO_MCP mode DB here */
9029
72fd0718
VZ
9030 /* Open the gates #2, #3 and #4 */
9031 bnx2x_set_234_gates(bp, false);
9032
9033 /* TBD: IGU/AEU preparation bring back the AEU/IGU to a
9034 * reset state, re-enable attentions. */
9035
a2fbb9ea
ET
9036 return 0;
9037}
9038
910cc727 9039static int bnx2x_leader_reset(struct bnx2x *bp)
72fd0718
VZ
9040{
9041 int rc = 0;
c9ee9206 9042 bool global = bnx2x_reset_is_global(bp);
95c6c616
AE
9043 u32 load_code;
9044
9045 /* if not going to reset MCP - load "fake" driver to reset HW while
9046 * driver is owner of the HW
9047 */
9048 if (!global && !BP_NOMCP(bp)) {
5d07d868
YM
9049 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ,
9050 DRV_MSG_CODE_LOAD_REQ_WITH_LFA);
95c6c616
AE
9051 if (!load_code) {
9052 BNX2X_ERR("MCP response failure, aborting\n");
9053 rc = -EAGAIN;
9054 goto exit_leader_reset;
9055 }
9056 if ((load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) &&
9057 (load_code != FW_MSG_CODE_DRV_LOAD_COMMON)) {
9058 BNX2X_ERR("MCP unexpected resp, aborting\n");
9059 rc = -EAGAIN;
9060 goto exit_leader_reset2;
9061 }
9062 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
9063 if (!load_code) {
9064 BNX2X_ERR("MCP response failure, aborting\n");
9065 rc = -EAGAIN;
9066 goto exit_leader_reset2;
9067 }
9068 }
c9ee9206 9069
72fd0718 9070 /* Try to recover after the failure */
c9ee9206 9071 if (bnx2x_process_kill(bp, global)) {
51c1a580
MS
9072 BNX2X_ERR("Something bad had happen on engine %d! Aii!\n",
9073 BP_PATH(bp));
72fd0718 9074 rc = -EAGAIN;
95c6c616 9075 goto exit_leader_reset2;
72fd0718
VZ
9076 }
9077
c9ee9206
VZ
9078 /*
9079 * Clear RESET_IN_PROGRES and RESET_GLOBAL bits and update the driver
9080 * state.
9081 */
72fd0718 9082 bnx2x_set_reset_done(bp);
c9ee9206
VZ
9083 if (global)
9084 bnx2x_clear_reset_global(bp);
72fd0718 9085
95c6c616
AE
9086exit_leader_reset2:
9087 /* unload "fake driver" if it was loaded */
9088 if (!global && !BP_NOMCP(bp)) {
9089 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
9090 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
9091 }
72fd0718
VZ
9092exit_leader_reset:
9093 bp->is_leader = 0;
c9ee9206
VZ
9094 bnx2x_release_leader_lock(bp);
9095 smp_mb();
72fd0718
VZ
9096 return rc;
9097}
9098
1191cb83 9099static void bnx2x_recovery_failed(struct bnx2x *bp)
c9ee9206
VZ
9100{
9101 netdev_err(bp->dev, "Recovery has failed. Power cycle is needed.\n");
9102
9103 /* Disconnect this device */
9104 netif_device_detach(bp->dev);
9105
9106 /*
9107 * Block ifup for all function on this engine until "process kill"
9108 * or power cycle.
9109 */
9110 bnx2x_set_reset_in_progress(bp);
9111
9112 /* Shut down the power */
9113 bnx2x_set_power_state(bp, PCI_D3hot);
9114
9115 bp->recovery_state = BNX2X_RECOVERY_FAILED;
9116
9117 smp_mb();
9118}
9119
9120/*
9121 * Assumption: runs under rtnl lock. This together with the fact
6383c0b3 9122 * that it's called only from bnx2x_sp_rtnl() ensure that it
72fd0718
VZ
9123 * will never be called when netif_running(bp->dev) is false.
9124 */
9125static void bnx2x_parity_recover(struct bnx2x *bp)
9126{
c9ee9206 9127 bool global = false;
7a752993 9128 u32 error_recovered, error_unrecovered;
95c6c616 9129 bool is_parity;
c9ee9206 9130
72fd0718
VZ
9131 DP(NETIF_MSG_HW, "Handling parity\n");
9132 while (1) {
9133 switch (bp->recovery_state) {
9134 case BNX2X_RECOVERY_INIT:
9135 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_INIT\n");
95c6c616
AE
9136 is_parity = bnx2x_chk_parity_attn(bp, &global, false);
9137 WARN_ON(!is_parity);
c9ee9206 9138
72fd0718 9139 /* Try to get a LEADER_LOCK HW lock */
c9ee9206
VZ
9140 if (bnx2x_trylock_leader_lock(bp)) {
9141 bnx2x_set_reset_in_progress(bp);
9142 /*
9143 * Check if there is a global attention and if
9144 * there was a global attention, set the global
9145 * reset bit.
9146 */
9147
9148 if (global)
9149 bnx2x_set_reset_global(bp);
9150
72fd0718 9151 bp->is_leader = 1;
c9ee9206 9152 }
72fd0718
VZ
9153
9154 /* Stop the driver */
9155 /* If interface has been removed - break */
5d07d868 9156 if (bnx2x_nic_unload(bp, UNLOAD_RECOVERY, false))
72fd0718
VZ
9157 return;
9158
9159 bp->recovery_state = BNX2X_RECOVERY_WAIT;
c9ee9206 9160
c9ee9206
VZ
9161 /* Ensure "is_leader", MCP command sequence and
9162 * "recovery_state" update values are seen on other
9163 * CPUs.
72fd0718 9164 */
c9ee9206 9165 smp_mb();
72fd0718
VZ
9166 break;
9167
9168 case BNX2X_RECOVERY_WAIT:
9169 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_WAIT\n");
9170 if (bp->is_leader) {
c9ee9206 9171 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3
AE
9172 bool other_load_status =
9173 bnx2x_get_load_status(bp, other_engine);
9174 bool load_status =
9175 bnx2x_get_load_status(bp, BP_PATH(bp));
c9ee9206
VZ
9176 global = bnx2x_reset_is_global(bp);
9177
9178 /*
9179 * In case of a parity in a global block, let
9180 * the first leader that performs a
9181 * leader_reset() reset the global blocks in
9182 * order to clear global attentions. Otherwise
9183 * the the gates will remain closed for that
9184 * engine.
9185 */
889b9af3
AE
9186 if (load_status ||
9187 (global && other_load_status)) {
72fd0718
VZ
9188 /* Wait until all other functions get
9189 * down.
9190 */
7be08a72 9191 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9192 HZ/10);
9193 return;
9194 } else {
9195 /* If all other functions got down -
9196 * try to bring the chip back to
9197 * normal. In any case it's an exit
9198 * point for a leader.
9199 */
c9ee9206
VZ
9200 if (bnx2x_leader_reset(bp)) {
9201 bnx2x_recovery_failed(bp);
72fd0718
VZ
9202 return;
9203 }
9204
c9ee9206
VZ
9205 /* If we are here, means that the
9206 * leader has succeeded and doesn't
9207 * want to be a leader any more. Try
9208 * to continue as a none-leader.
9209 */
9210 break;
72fd0718
VZ
9211 }
9212 } else { /* non-leader */
c9ee9206 9213 if (!bnx2x_reset_is_done(bp, BP_PATH(bp))) {
72fd0718
VZ
9214 /* Try to get a LEADER_LOCK HW lock as
9215 * long as a former leader may have
9216 * been unloaded by the user or
9217 * released a leadership by another
9218 * reason.
9219 */
c9ee9206 9220 if (bnx2x_trylock_leader_lock(bp)) {
72fd0718
VZ
9221 /* I'm a leader now! Restart a
9222 * switch case.
9223 */
9224 bp->is_leader = 1;
9225 break;
9226 }
9227
7be08a72 9228 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9229 HZ/10);
9230 return;
9231
c9ee9206
VZ
9232 } else {
9233 /*
9234 * If there was a global attention, wait
9235 * for it to be cleared.
9236 */
9237 if (bnx2x_reset_is_global(bp)) {
9238 schedule_delayed_work(
7be08a72
AE
9239 &bp->sp_rtnl_task,
9240 HZ/10);
c9ee9206
VZ
9241 return;
9242 }
9243
7a752993
AE
9244 error_recovered =
9245 bp->eth_stats.recoverable_error;
9246 error_unrecovered =
9247 bp->eth_stats.unrecoverable_error;
95c6c616
AE
9248 bp->recovery_state =
9249 BNX2X_RECOVERY_NIC_LOADING;
9250 if (bnx2x_nic_load(bp, LOAD_NORMAL)) {
7a752993 9251 error_unrecovered++;
95c6c616 9252 netdev_err(bp->dev,
51c1a580 9253 "Recovery failed. Power cycle needed\n");
95c6c616
AE
9254 /* Disconnect this device */
9255 netif_device_detach(bp->dev);
9256 /* Shut down the power */
9257 bnx2x_set_power_state(
9258 bp, PCI_D3hot);
9259 smp_mb();
9260 } else {
c9ee9206
VZ
9261 bp->recovery_state =
9262 BNX2X_RECOVERY_DONE;
7a752993 9263 error_recovered++;
c9ee9206
VZ
9264 smp_mb();
9265 }
7a752993
AE
9266 bp->eth_stats.recoverable_error =
9267 error_recovered;
9268 bp->eth_stats.unrecoverable_error =
9269 error_unrecovered;
c9ee9206 9270
72fd0718
VZ
9271 return;
9272 }
9273 }
9274 default:
9275 return;
9276 }
9277 }
9278}
9279
56ad3152
MS
9280static int bnx2x_close(struct net_device *dev);
9281
72fd0718
VZ
9282/* bnx2x_nic_unload() flushes the bnx2x_wq, thus reset task is
9283 * scheduled on a general queue in order to prevent a dead lock.
9284 */
7be08a72 9285static void bnx2x_sp_rtnl_task(struct work_struct *work)
34f80b04 9286{
7be08a72 9287 struct bnx2x *bp = container_of(work, struct bnx2x, sp_rtnl_task.work);
34f80b04
EG
9288
9289 rtnl_lock();
9290
9291 if (!netif_running(bp->dev))
7be08a72
AE
9292 goto sp_rtnl_exit;
9293
9294 /* if stop on error is defined no recovery flows should be executed */
9295#ifdef BNX2X_STOP_ON_ERROR
51c1a580 9296 BNX2X_ERR("recovery flow called but STOP_ON_ERROR defined so reset not done to allow debug dump,\n"
7be08a72 9297 "you will need to reboot when done\n");
b1fb8740 9298 goto sp_rtnl_not_reset;
7be08a72 9299#endif
34f80b04 9300
7be08a72
AE
9301 if (unlikely(bp->recovery_state != BNX2X_RECOVERY_DONE)) {
9302 /*
b1fb8740
VZ
9303 * Clear all pending SP commands as we are going to reset the
9304 * function anyway.
7be08a72 9305 */
b1fb8740
VZ
9306 bp->sp_rtnl_state = 0;
9307 smp_mb();
9308
72fd0718 9309 bnx2x_parity_recover(bp);
b1fb8740
VZ
9310
9311 goto sp_rtnl_exit;
9312 }
9313
9314 if (test_and_clear_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state)) {
9315 /*
9316 * Clear all pending SP commands as we are going to reset the
9317 * function anyway.
9318 */
9319 bp->sp_rtnl_state = 0;
9320 smp_mb();
9321
5d07d868 9322 bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
72fd0718 9323 bnx2x_nic_load(bp, LOAD_NORMAL);
b1fb8740
VZ
9324
9325 goto sp_rtnl_exit;
72fd0718 9326 }
b1fb8740
VZ
9327#ifdef BNX2X_STOP_ON_ERROR
9328sp_rtnl_not_reset:
9329#endif
9330 if (test_and_clear_bit(BNX2X_SP_RTNL_SETUP_TC, &bp->sp_rtnl_state))
9331 bnx2x_setup_tc(bp->dev, bp->dcbx_port_params.ets.num_of_cos);
a3348722
BW
9332 if (test_and_clear_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE, &bp->sp_rtnl_state))
9333 bnx2x_after_function_update(bp);
8304859a
AE
9334 /*
9335 * in case of fan failure we need to reset id if the "stop on error"
9336 * debug flag is set, since we trying to prevent permanent overheating
9337 * damage
9338 */
9339 if (test_and_clear_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state)) {
51c1a580 9340 DP(NETIF_MSG_HW, "fan failure detected. Unloading driver\n");
8304859a
AE
9341 netif_device_detach(bp->dev);
9342 bnx2x_close(bp->dev);
9343 }
9344
7be08a72 9345sp_rtnl_exit:
34f80b04
EG
9346 rtnl_unlock();
9347}
9348
a2fbb9ea
ET
9349/* end of nic load/unload */
9350
3deb8167
YR
9351static void bnx2x_period_task(struct work_struct *work)
9352{
9353 struct bnx2x *bp = container_of(work, struct bnx2x, period_task.work);
9354
9355 if (!netif_running(bp->dev))
9356 goto period_task_exit;
9357
9358 if (CHIP_REV_IS_SLOW(bp)) {
9359 BNX2X_ERR("period task called on emulation, ignoring\n");
9360 goto period_task_exit;
9361 }
9362
9363 bnx2x_acquire_phy_lock(bp);
9364 /*
9365 * The barrier is needed to ensure the ordering between the writing to
9366 * the bp->port.pmf in the bnx2x_nic_load() or bnx2x_pmf_update() and
9367 * the reading here.
9368 */
9369 smp_mb();
9370 if (bp->port.pmf) {
9371 bnx2x_period_func(&bp->link_params, &bp->link_vars);
9372
9373 /* Re-queue task in 1 sec */
9374 queue_delayed_work(bnx2x_wq, &bp->period_task, 1*HZ);
9375 }
9376
9377 bnx2x_release_phy_lock(bp);
9378period_task_exit:
9379 return;
9380}
9381
a2fbb9ea
ET
9382/*
9383 * Init service functions
9384 */
9385
8d96286a 9386static u32 bnx2x_get_pretend_reg(struct bnx2x *bp)
f2e0899f
DK
9387{
9388 u32 base = PXP2_REG_PGL_PRETEND_FUNC_F0;
9389 u32 stride = PXP2_REG_PGL_PRETEND_FUNC_F1 - base;
9390 return base + (BP_ABS_FUNC(bp)) * stride;
f1ef27ef
EG
9391}
9392
f2e0899f 9393static void bnx2x_undi_int_disable_e1h(struct bnx2x *bp)
f1ef27ef 9394{
f2e0899f 9395 u32 reg = bnx2x_get_pretend_reg(bp);
f1ef27ef
EG
9396
9397 /* Flush all outstanding writes */
9398 mmiowb();
9399
9400 /* Pretend to be function 0 */
9401 REG_WR(bp, reg, 0);
f2e0899f 9402 REG_RD(bp, reg); /* Flush the GRC transaction (in the chip) */
f1ef27ef
EG
9403
9404 /* From now we are in the "like-E1" mode */
9405 bnx2x_int_disable(bp);
9406
9407 /* Flush all outstanding writes */
9408 mmiowb();
9409
f2e0899f
DK
9410 /* Restore the original function */
9411 REG_WR(bp, reg, BP_ABS_FUNC(bp));
9412 REG_RD(bp, reg);
f1ef27ef
EG
9413}
9414
f2e0899f 9415static inline void bnx2x_undi_int_disable(struct bnx2x *bp)
f1ef27ef 9416{
f2e0899f 9417 if (CHIP_IS_E1(bp))
f1ef27ef 9418 bnx2x_int_disable(bp);
f2e0899f
DK
9419 else
9420 bnx2x_undi_int_disable_e1h(bp);
f1ef27ef
EG
9421}
9422
0329aba1 9423static void bnx2x_prev_unload_close_mac(struct bnx2x *bp)
34f80b04 9424{
452427b0
YM
9425 u32 val, base_addr, offset, mask, reset_reg;
9426 bool mac_stopped = false;
9427 u8 port = BP_PORT(bp);
34f80b04 9428
452427b0 9429 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_2);
f16da43b 9430
452427b0
YM
9431 if (!CHIP_IS_E3(bp)) {
9432 val = REG_RD(bp, NIG_REG_BMAC0_REGS_OUT_EN + port * 4);
9433 mask = MISC_REGISTERS_RESET_REG_2_RST_BMAC0 << port;
9434 if ((mask & reset_reg) && val) {
9435 u32 wb_data[2];
9436 BNX2X_DEV_INFO("Disable bmac Rx\n");
9437 base_addr = BP_PORT(bp) ? NIG_REG_INGRESS_BMAC1_MEM
9438 : NIG_REG_INGRESS_BMAC0_MEM;
9439 offset = CHIP_IS_E2(bp) ? BIGMAC2_REGISTER_BMAC_CONTROL
9440 : BIGMAC_REGISTER_BMAC_CONTROL;
7a06a122 9441
452427b0
YM
9442 /*
9443 * use rd/wr since we cannot use dmae. This is safe
9444 * since MCP won't access the bus due to the request
9445 * to unload, and no function on the path can be
9446 * loaded at this time.
9447 */
9448 wb_data[0] = REG_RD(bp, base_addr + offset);
9449 wb_data[1] = REG_RD(bp, base_addr + offset + 0x4);
9450 wb_data[0] &= ~BMAC_CONTROL_RX_ENABLE;
9451 REG_WR(bp, base_addr + offset, wb_data[0]);
9452 REG_WR(bp, base_addr + offset + 0x4, wb_data[1]);
9453
9454 }
9455 BNX2X_DEV_INFO("Disable emac Rx\n");
9456 REG_WR(bp, NIG_REG_NIG_EMAC0_EN + BP_PORT(bp)*4, 0);
9457
9458 mac_stopped = true;
9459 } else {
9460 if (reset_reg & MISC_REGISTERS_RESET_REG_2_XMAC) {
9461 BNX2X_DEV_INFO("Disable xmac Rx\n");
9462 base_addr = BP_PORT(bp) ? GRCBASE_XMAC1 : GRCBASE_XMAC0;
9463 val = REG_RD(bp, base_addr + XMAC_REG_PFC_CTRL_HI);
9464 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9465 val & ~(1 << 1));
9466 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9467 val | (1 << 1));
9468 REG_WR(bp, base_addr + XMAC_REG_CTRL, 0);
9469 mac_stopped = true;
9470 }
9471 mask = MISC_REGISTERS_RESET_REG_2_UMAC0 << port;
9472 if (mask & reset_reg) {
9473 BNX2X_DEV_INFO("Disable umac Rx\n");
9474 base_addr = BP_PORT(bp) ? GRCBASE_UMAC1 : GRCBASE_UMAC0;
9475 REG_WR(bp, base_addr + UMAC_REG_COMMAND_CONFIG, 0);
9476 mac_stopped = true;
9477 }
9478 }
9479
9480 if (mac_stopped)
9481 msleep(20);
9482
9483}
9484
9485#define BNX2X_PREV_UNDI_PROD_ADDR(p) (BAR_TSTRORM_INTMEM + 0x1508 + ((p) << 4))
9486#define BNX2X_PREV_UNDI_RCQ(val) ((val) & 0xffff)
9487#define BNX2X_PREV_UNDI_BD(val) ((val) >> 16 & 0xffff)
9488#define BNX2X_PREV_UNDI_PROD(rcq, bd) ((bd) << 16 | (rcq))
9489
0329aba1 9490static void bnx2x_prev_unload_undi_inc(struct bnx2x *bp, u8 port,
452427b0
YM
9491 u8 inc)
9492{
9493 u16 rcq, bd;
9494 u32 tmp_reg = REG_RD(bp, BNX2X_PREV_UNDI_PROD_ADDR(port));
9495
9496 rcq = BNX2X_PREV_UNDI_RCQ(tmp_reg) + inc;
9497 bd = BNX2X_PREV_UNDI_BD(tmp_reg) + inc;
9498
9499 tmp_reg = BNX2X_PREV_UNDI_PROD(rcq, bd);
9500 REG_WR(bp, BNX2X_PREV_UNDI_PROD_ADDR(port), tmp_reg);
9501
9502 BNX2X_DEV_INFO("UNDI producer [%d] rings bd -> 0x%04x, rcq -> 0x%04x\n",
9503 port, bd, rcq);
9504}
9505
0329aba1 9506static int bnx2x_prev_mcp_done(struct bnx2x *bp)
452427b0 9507{
5d07d868
YM
9508 u32 rc = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE,
9509 DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET);
452427b0
YM
9510 if (!rc) {
9511 BNX2X_ERR("MCP response failure, aborting\n");
9512 return -EBUSY;
9513 }
9514
9515 return 0;
9516}
9517
0329aba1 9518static bool bnx2x_prev_is_path_marked(struct bnx2x *bp)
452427b0
YM
9519{
9520 struct bnx2x_prev_path_list *tmp_list;
9521 int rc = false;
9522
9523 if (down_trylock(&bnx2x_prev_sem))
9524 return false;
9525
9526 list_for_each_entry(tmp_list, &bnx2x_prev_list, list) {
9527 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
9528 bp->pdev->bus->number == tmp_list->bus &&
9529 BP_PATH(bp) == tmp_list->path) {
9530 rc = true;
9531 BNX2X_DEV_INFO("Path %d was already cleaned from previous drivers\n",
9532 BP_PATH(bp));
9533 break;
9534 }
9535 }
9536
9537 up(&bnx2x_prev_sem);
9538
9539 return rc;
9540}
9541
0329aba1 9542static int bnx2x_prev_mark_path(struct bnx2x *bp)
452427b0
YM
9543{
9544 struct bnx2x_prev_path_list *tmp_list;
9545 int rc;
9546
ea4b3857 9547 tmp_list = kmalloc(sizeof(struct bnx2x_prev_path_list), GFP_KERNEL);
452427b0
YM
9548 if (!tmp_list) {
9549 BNX2X_ERR("Failed to allocate 'bnx2x_prev_path_list'\n");
9550 return -ENOMEM;
9551 }
9552
9553 tmp_list->bus = bp->pdev->bus->number;
9554 tmp_list->slot = PCI_SLOT(bp->pdev->devfn);
9555 tmp_list->path = BP_PATH(bp);
9556
9557 rc = down_interruptible(&bnx2x_prev_sem);
9558 if (rc) {
9559 BNX2X_ERR("Received %d when tried to take lock\n", rc);
9560 kfree(tmp_list);
9561 } else {
9562 BNX2X_DEV_INFO("Marked path [%d] - finished previous unload\n",
9563 BP_PATH(bp));
9564 list_add(&tmp_list->list, &bnx2x_prev_list);
9565 up(&bnx2x_prev_sem);
9566 }
9567
9568 return rc;
9569}
9570
0329aba1 9571static int bnx2x_do_flr(struct bnx2x *bp)
452427b0 9572{
2a80eebc 9573 int i;
452427b0
YM
9574 u16 status;
9575 struct pci_dev *dev = bp->pdev;
9576
8eee694c
YM
9577
9578 if (CHIP_IS_E1x(bp)) {
9579 BNX2X_DEV_INFO("FLR not supported in E1/E1H\n");
9580 return -EINVAL;
9581 }
9582
9583 /* only bootcode REQ_BC_VER_4_INITIATE_FLR and onwards support flr */
9584 if (bp->common.bc_ver < REQ_BC_VER_4_INITIATE_FLR) {
9585 BNX2X_ERR("FLR not supported by BC_VER: 0x%x\n",
9586 bp->common.bc_ver);
9587 return -EINVAL;
9588 }
452427b0 9589
452427b0
YM
9590 /* Wait for Transaction Pending bit clean */
9591 for (i = 0; i < 4; i++) {
9592 if (i)
9593 msleep((1 << (i - 1)) * 100);
9594
2a80eebc 9595 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
452427b0
YM
9596 if (!(status & PCI_EXP_DEVSTA_TRPND))
9597 goto clear;
9598 }
9599
9600 dev_err(&dev->dev,
9601 "transaction is not cleared; proceeding with reset anyway\n");
9602
9603clear:
452427b0 9604
8eee694c 9605 BNX2X_DEV_INFO("Initiating FLR\n");
452427b0
YM
9606 bnx2x_fw_command(bp, DRV_MSG_CODE_INITIATE_FLR, 0);
9607
9608 return 0;
9609}
9610
0329aba1 9611static int bnx2x_prev_unload_uncommon(struct bnx2x *bp)
452427b0
YM
9612{
9613 int rc;
9614
9615 BNX2X_DEV_INFO("Uncommon unload Flow\n");
9616
9617 /* Test if previous unload process was already finished for this path */
9618 if (bnx2x_prev_is_path_marked(bp))
9619 return bnx2x_prev_mcp_done(bp);
9620
9621 /* If function has FLR capabilities, and existing FW version matches
9622 * the one required, then FLR will be sufficient to clean any residue
9623 * left by previous driver
9624 */
8eee694c
YM
9625 rc = bnx2x_test_firmware_version(bp, false);
9626
9627 if (!rc) {
9628 /* fw version is good */
9629 BNX2X_DEV_INFO("FW version matches our own. Attempting FLR\n");
9630 rc = bnx2x_do_flr(bp);
9631 }
9632
9633 if (!rc) {
9634 /* FLR was performed */
9635 BNX2X_DEV_INFO("FLR successful\n");
9636 return 0;
9637 }
9638
9639 BNX2X_DEV_INFO("Could not FLR\n");
452427b0
YM
9640
9641 /* Close the MCP request, return failure*/
9642 rc = bnx2x_prev_mcp_done(bp);
9643 if (!rc)
9644 rc = BNX2X_PREV_WAIT_NEEDED;
9645
9646 return rc;
9647}
9648
0329aba1 9649static int bnx2x_prev_unload_common(struct bnx2x *bp)
452427b0
YM
9650{
9651 u32 reset_reg, tmp_reg = 0, rc;
9652 /* It is possible a previous function received 'common' answer,
9653 * but hasn't loaded yet, therefore creating a scenario of
9654 * multiple functions receiving 'common' on the same path.
9655 */
9656 BNX2X_DEV_INFO("Common unload Flow\n");
9657
9658 if (bnx2x_prev_is_path_marked(bp))
9659 return bnx2x_prev_mcp_done(bp);
9660
9661 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
9662
9663 /* Reset should be performed after BRB is emptied */
9664 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_BRB1) {
9665 u32 timer_count = 1000;
9666 bool prev_undi = false;
9667
9668 /* Close the MAC Rx to prevent BRB from filling up */
9669 bnx2x_prev_unload_close_mac(bp);
9670
9671 /* Check if the UNDI driver was previously loaded
34f80b04
EG
9672 * UNDI driver initializes CID offset for normal bell to 0x7
9673 */
452427b0
YM
9674 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
9675 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_DORQ) {
9676 tmp_reg = REG_RD(bp, DORQ_REG_NORM_CID_OFST);
9677 if (tmp_reg == 0x7) {
9678 BNX2X_DEV_INFO("UNDI previously loaded\n");
9679 prev_undi = true;
9680 /* clear the UNDI indication */
9681 REG_WR(bp, DORQ_REG_NORM_CID_OFST, 0);
34f80b04 9682 }
452427b0
YM
9683 }
9684 /* wait until BRB is empty */
9685 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9686 while (timer_count) {
9687 u32 prev_brb = tmp_reg;
34f80b04 9688
452427b0
YM
9689 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9690 if (!tmp_reg)
9691 break;
619c5cb6 9692
452427b0 9693 BNX2X_DEV_INFO("BRB still has 0x%08x\n", tmp_reg);
619c5cb6 9694
452427b0
YM
9695 /* reset timer as long as BRB actually gets emptied */
9696 if (prev_brb > tmp_reg)
9697 timer_count = 1000;
9698 else
9699 timer_count--;
da5a662a 9700
452427b0
YM
9701 /* If UNDI resides in memory, manually increment it */
9702 if (prev_undi)
9703 bnx2x_prev_unload_undi_inc(bp, BP_PORT(bp), 1);
da5a662a 9704
452427b0 9705 udelay(10);
7a06a122 9706 }
452427b0
YM
9707
9708 if (!timer_count)
9709 BNX2X_ERR("Failed to empty BRB, hope for the best\n");
9710
34f80b04 9711 }
f16da43b 9712
452427b0
YM
9713 /* No packets are in the pipeline, path is ready for reset */
9714 bnx2x_reset_common(bp);
9715
9716 rc = bnx2x_prev_mark_path(bp);
9717 if (rc) {
9718 bnx2x_prev_mcp_done(bp);
9719 return rc;
9720 }
9721
9722 return bnx2x_prev_mcp_done(bp);
9723}
9724
24f06716
AE
9725/* previous driver DMAE transaction may have occurred when pre-boot stage ended
9726 * and boot began, or when kdump kernel was loaded. Either case would invalidate
9727 * the addresses of the transaction, resulting in was-error bit set in the pci
9728 * causing all hw-to-host pcie transactions to timeout. If this happened we want
9729 * to clear the interrupt which detected this from the pglueb and the was done
9730 * bit
9731 */
0329aba1 9732static void bnx2x_prev_interrupted_dmae(struct bnx2x *bp)
24f06716 9733{
4a25417c
AE
9734 if (!CHIP_IS_E1x(bp)) {
9735 u32 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS);
9736 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN) {
9737 BNX2X_ERR("was error bit was found to be set in pglueb upon startup. Clearing");
9738 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR,
9739 1 << BP_FUNC(bp));
9740 }
24f06716
AE
9741 }
9742}
9743
0329aba1 9744static int bnx2x_prev_unload(struct bnx2x *bp)
452427b0
YM
9745{
9746 int time_counter = 10;
9747 u32 rc, fw, hw_lock_reg, hw_lock_val;
9748 BNX2X_DEV_INFO("Entering Previous Unload Flow\n");
9749
24f06716
AE
9750 /* clear hw from errors which may have resulted from an interrupted
9751 * dmae transaction.
9752 */
9753 bnx2x_prev_interrupted_dmae(bp);
9754
9755 /* Release previously held locks */
452427b0
YM
9756 hw_lock_reg = (BP_FUNC(bp) <= 5) ?
9757 (MISC_REG_DRIVER_CONTROL_1 + BP_FUNC(bp) * 8) :
9758 (MISC_REG_DRIVER_CONTROL_7 + (BP_FUNC(bp) - 6) * 8);
9759
9760 hw_lock_val = (REG_RD(bp, hw_lock_reg));
9761 if (hw_lock_val) {
9762 if (hw_lock_val & HW_LOCK_RESOURCE_NVRAM) {
9763 BNX2X_DEV_INFO("Release Previously held NVRAM lock\n");
9764 REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
9765 (MCPR_NVM_SW_ARB_ARB_REQ_CLR1 << BP_PORT(bp)));
9766 }
9767
9768 BNX2X_DEV_INFO("Release Previously held hw lock\n");
9769 REG_WR(bp, hw_lock_reg, 0xffffffff);
9770 } else
9771 BNX2X_DEV_INFO("No need to release hw/nvram locks\n");
9772
9773 if (MCPR_ACCESS_LOCK_LOCK & REG_RD(bp, MCP_REG_MCPR_ACCESS_LOCK)) {
9774 BNX2X_DEV_INFO("Release previously held alr\n");
9775 REG_WR(bp, MCP_REG_MCPR_ACCESS_LOCK, 0);
9776 }
9777
9778
9779 do {
9780 /* Lock MCP using an unload request */
9781 fw = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS, 0);
9782 if (!fw) {
9783 BNX2X_ERR("MCP response failure, aborting\n");
9784 rc = -EBUSY;
9785 break;
9786 }
9787
9788 if (fw == FW_MSG_CODE_DRV_UNLOAD_COMMON) {
9789 rc = bnx2x_prev_unload_common(bp);
9790 break;
9791 }
9792
9793 /* non-common reply from MCP night require looping */
9794 rc = bnx2x_prev_unload_uncommon(bp);
9795 if (rc != BNX2X_PREV_WAIT_NEEDED)
9796 break;
9797
9798 msleep(20);
9799 } while (--time_counter);
9800
9801 if (!time_counter || rc) {
9802 BNX2X_ERR("Failed unloading previous driver, aborting\n");
9803 rc = -EBUSY;
9804 }
9805
9806 BNX2X_DEV_INFO("Finished Previous Unload Flow [%d]\n", rc);
9807
9808 return rc;
34f80b04
EG
9809}
9810
0329aba1 9811static void bnx2x_get_common_hwinfo(struct bnx2x *bp)
34f80b04 9812{
1d187b34 9813 u32 val, val2, val3, val4, id, boot_mode;
72ce58c3 9814 u16 pmc;
34f80b04
EG
9815
9816 /* Get the chip revision id and number. */
9817 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
9818 val = REG_RD(bp, MISC_REG_CHIP_NUM);
9819 id = ((val & 0xffff) << 16);
9820 val = REG_RD(bp, MISC_REG_CHIP_REV);
9821 id |= ((val & 0xf) << 12);
9822 val = REG_RD(bp, MISC_REG_CHIP_METAL);
9823 id |= ((val & 0xff) << 4);
5a40e08e 9824 val = REG_RD(bp, MISC_REG_BOND_ID);
34f80b04
EG
9825 id |= (val & 0xf);
9826 bp->common.chip_id = id;
523224a3 9827
7e8e02df
BW
9828 /* force 57811 according to MISC register */
9829 if (REG_RD(bp, MISC_REG_CHIP_TYPE) & MISC_REG_CHIP_TYPE_57811_MASK) {
9830 if (CHIP_IS_57810(bp))
9831 bp->common.chip_id = (CHIP_NUM_57811 << 16) |
9832 (bp->common.chip_id & 0x0000FFFF);
9833 else if (CHIP_IS_57810_MF(bp))
9834 bp->common.chip_id = (CHIP_NUM_57811_MF << 16) |
9835 (bp->common.chip_id & 0x0000FFFF);
9836 bp->common.chip_id |= 0x1;
9837 }
9838
523224a3
DK
9839 /* Set doorbell size */
9840 bp->db_size = (1 << BNX2X_DB_SHIFT);
9841
619c5cb6 9842 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
9843 val = REG_RD(bp, MISC_REG_PORT4MODE_EN_OVWR);
9844 if ((val & 1) == 0)
9845 val = REG_RD(bp, MISC_REG_PORT4MODE_EN);
9846 else
9847 val = (val >> 1) & 1;
9848 BNX2X_DEV_INFO("chip is in %s\n", val ? "4_PORT_MODE" :
9849 "2_PORT_MODE");
9850 bp->common.chip_port_mode = val ? CHIP_4_PORT_MODE :
9851 CHIP_2_PORT_MODE;
9852
9853 if (CHIP_MODE_IS_4_PORT(bp))
9854 bp->pfid = (bp->pf_num >> 1); /* 0..3 */
9855 else
9856 bp->pfid = (bp->pf_num & 0x6); /* 0, 2, 4, 6 */
9857 } else {
9858 bp->common.chip_port_mode = CHIP_PORT_MODE_NONE; /* N/A */
9859 bp->pfid = bp->pf_num; /* 0..7 */
9860 }
9861
51c1a580
MS
9862 BNX2X_DEV_INFO("pf_id: %x", bp->pfid);
9863
f2e0899f
DK
9864 bp->link_params.chip_id = bp->common.chip_id;
9865 BNX2X_DEV_INFO("chip ID is 0x%x\n", id);
523224a3 9866
1c06328c
EG
9867 val = (REG_RD(bp, 0x2874) & 0x55);
9868 if ((bp->common.chip_id & 0x1) ||
9869 (CHIP_IS_E1(bp) && val) || (CHIP_IS_E1H(bp) && (val == 0x55))) {
9870 bp->flags |= ONE_PORT_FLAG;
9871 BNX2X_DEV_INFO("single port device\n");
9872 }
9873
34f80b04 9874 val = REG_RD(bp, MCP_REG_MCPR_NVM_CFG4);
754a2f52 9875 bp->common.flash_size = (BNX2X_NVRAM_1MB_SIZE <<
34f80b04
EG
9876 (val & MCPR_NVM_CFG4_FLASH_SIZE));
9877 BNX2X_DEV_INFO("flash_size 0x%x (%d)\n",
9878 bp->common.flash_size, bp->common.flash_size);
9879
1b6e2ceb
DK
9880 bnx2x_init_shmem(bp);
9881
619c5cb6
VZ
9882
9883
f2e0899f
DK
9884 bp->common.shmem2_base = REG_RD(bp, (BP_PATH(bp) ?
9885 MISC_REG_GENERIC_CR_1 :
9886 MISC_REG_GENERIC_CR_0));
1b6e2ceb 9887
34f80b04 9888 bp->link_params.shmem_base = bp->common.shmem_base;
a22f0788 9889 bp->link_params.shmem2_base = bp->common.shmem2_base;
b884d95b
YR
9890 if (SHMEM2_RD(bp, size) >
9891 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
9892 bp->link_params.lfa_base =
9893 REG_RD(bp, bp->common.shmem2_base +
9894 (u32)offsetof(struct shmem2_region,
9895 lfa_host_addr[BP_PORT(bp)]));
9896 else
9897 bp->link_params.lfa_base = 0;
2691d51d
EG
9898 BNX2X_DEV_INFO("shmem offset 0x%x shmem2 offset 0x%x\n",
9899 bp->common.shmem_base, bp->common.shmem2_base);
34f80b04 9900
f2e0899f 9901 if (!bp->common.shmem_base) {
34f80b04
EG
9902 BNX2X_DEV_INFO("MCP not active\n");
9903 bp->flags |= NO_MCP_FLAG;
9904 return;
9905 }
9906
34f80b04 9907 bp->common.hw_config = SHMEM_RD(bp, dev_info.shared_hw_config.config);
35b19ba5 9908 BNX2X_DEV_INFO("hw_config 0x%08x\n", bp->common.hw_config);
34f80b04
EG
9909
9910 bp->link_params.hw_led_mode = ((bp->common.hw_config &
9911 SHARED_HW_CFG_LED_MODE_MASK) >>
9912 SHARED_HW_CFG_LED_MODE_SHIFT);
9913
c2c8b03e
EG
9914 bp->link_params.feature_config_flags = 0;
9915 val = SHMEM_RD(bp, dev_info.shared_feature_config.config);
9916 if (val & SHARED_FEAT_CFG_OVERRIDE_PREEMPHASIS_CFG_ENABLED)
9917 bp->link_params.feature_config_flags |=
9918 FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
9919 else
9920 bp->link_params.feature_config_flags &=
9921 ~FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
9922
34f80b04
EG
9923 val = SHMEM_RD(bp, dev_info.bc_rev) >> 8;
9924 bp->common.bc_ver = val;
9925 BNX2X_DEV_INFO("bc_ver %X\n", val);
9926 if (val < BNX2X_BC_VER) {
9927 /* for now only warn
9928 * later we might need to enforce this */
51c1a580
MS
9929 BNX2X_ERR("This driver needs bc_ver %X but found %X, please upgrade BC\n",
9930 BNX2X_BC_VER, val);
34f80b04 9931 }
4d295db0 9932 bp->link_params.feature_config_flags |=
a22f0788 9933 (val >= REQ_BC_VER_4_VRFY_FIRST_PHY_OPT_MDL) ?
f85582f8
DK
9934 FEATURE_CONFIG_BC_SUPPORTS_OPT_MDL_VRFY : 0;
9935
a22f0788
YR
9936 bp->link_params.feature_config_flags |=
9937 (val >= REQ_BC_VER_4_VRFY_SPECIFIC_PHY_OPT_MDL) ?
9938 FEATURE_CONFIG_BC_SUPPORTS_DUAL_PHY_OPT_MDL_VRFY : 0;
a3348722
BW
9939 bp->link_params.feature_config_flags |=
9940 (val >= REQ_BC_VER_4_VRFY_AFEX_SUPPORTED) ?
9941 FEATURE_CONFIG_BC_SUPPORTS_AFEX : 0;
85242eea
YR
9942 bp->link_params.feature_config_flags |=
9943 (val >= REQ_BC_VER_4_SFP_TX_DISABLE_SUPPORTED) ?
9944 FEATURE_CONFIG_BC_SUPPORTS_SFP_TX_DISABLED : 0;
55386fe8
YR
9945
9946 bp->link_params.feature_config_flags |=
9947 (val >= REQ_BC_VER_4_MT_SUPPORTED) ?
9948 FEATURE_CONFIG_MT_SUPPORT : 0;
9949
0e898dd7
BW
9950 bp->flags |= (val >= REQ_BC_VER_4_PFC_STATS_SUPPORTED) ?
9951 BC_SUPPORTS_PFC_STATS : 0;
85242eea 9952
2e499d3c
BW
9953 bp->flags |= (val >= REQ_BC_VER_4_FCOE_FEATURES) ?
9954 BC_SUPPORTS_FCOE_FEATURES : 0;
9955
9876879f
BW
9956 bp->flags |= (val >= REQ_BC_VER_4_DCBX_ADMIN_MSG_NON_PMF) ?
9957 BC_SUPPORTS_DCBX_MSG_NON_PMF : 0;
1d187b34
BW
9958 boot_mode = SHMEM_RD(bp,
9959 dev_info.port_feature_config[BP_PORT(bp)].mba_config) &
9960 PORT_FEATURE_MBA_BOOT_AGENT_TYPE_MASK;
9961 switch (boot_mode) {
9962 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_PXE:
9963 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_PXE;
9964 break;
9965 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_ISCSIB:
9966 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_ISCSI;
9967 break;
9968 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_FCOE_BOOT:
9969 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_FCOE;
9970 break;
9971 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_NONE:
9972 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_NONE;
9973 break;
9974 }
9975
f9a3ebbe
DK
9976 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_PMC, &pmc);
9977 bp->flags |= (pmc & PCI_PM_CAP_PME_D3cold) ? 0 : NO_WOL_FLAG;
9978
72ce58c3 9979 BNX2X_DEV_INFO("%sWoL capable\n",
f5372251 9980 (bp->flags & NO_WOL_FLAG) ? "not " : "");
34f80b04
EG
9981
9982 val = SHMEM_RD(bp, dev_info.shared_hw_config.part_num);
9983 val2 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[4]);
9984 val3 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[8]);
9985 val4 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[12]);
9986
cdaa7cb8
VZ
9987 dev_info(&bp->pdev->dev, "part number %X-%X-%X-%X\n",
9988 val, val2, val3, val4);
34f80b04
EG
9989}
9990
f2e0899f
DK
9991#define IGU_FID(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_FID)
9992#define IGU_VEC(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_VECTOR)
9993
0329aba1 9994static int bnx2x_get_igu_cam_info(struct bnx2x *bp)
f2e0899f
DK
9995{
9996 int pfid = BP_FUNC(bp);
f2e0899f
DK
9997 int igu_sb_id;
9998 u32 val;
6383c0b3 9999 u8 fid, igu_sb_cnt = 0;
f2e0899f
DK
10000
10001 bp->igu_base_sb = 0xff;
f2e0899f 10002 if (CHIP_INT_MODE_IS_BC(bp)) {
3395a033 10003 int vn = BP_VN(bp);
6383c0b3 10004 igu_sb_cnt = bp->igu_sb_cnt;
f2e0899f
DK
10005 bp->igu_base_sb = (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn) *
10006 FP_SB_MAX_E1x;
10007
10008 bp->igu_dsb_id = E1HVN_MAX * FP_SB_MAX_E1x +
10009 (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn);
10010
9b341bb1 10011 return 0;
f2e0899f
DK
10012 }
10013
10014 /* IGU in normal mode - read CAM */
10015 for (igu_sb_id = 0; igu_sb_id < IGU_REG_MAPPING_MEMORY_SIZE;
10016 igu_sb_id++) {
10017 val = REG_RD(bp, IGU_REG_MAPPING_MEMORY + igu_sb_id * 4);
10018 if (!(val & IGU_REG_MAPPING_MEMORY_VALID))
10019 continue;
10020 fid = IGU_FID(val);
10021 if ((fid & IGU_FID_ENCODE_IS_PF)) {
10022 if ((fid & IGU_FID_PF_NUM_MASK) != pfid)
10023 continue;
10024 if (IGU_VEC(val) == 0)
10025 /* default status block */
10026 bp->igu_dsb_id = igu_sb_id;
10027 else {
10028 if (bp->igu_base_sb == 0xff)
10029 bp->igu_base_sb = igu_sb_id;
6383c0b3 10030 igu_sb_cnt++;
f2e0899f
DK
10031 }
10032 }
10033 }
619c5cb6 10034
6383c0b3 10035#ifdef CONFIG_PCI_MSI
185d4c8b
AE
10036 /* Due to new PF resource allocation by MFW T7.4 and above, it's
10037 * optional that number of CAM entries will not be equal to the value
10038 * advertised in PCI.
10039 * Driver should use the minimal value of both as the actual status
10040 * block count
619c5cb6 10041 */
185d4c8b 10042 bp->igu_sb_cnt = min_t(int, bp->igu_sb_cnt, igu_sb_cnt);
6383c0b3 10043#endif
619c5cb6 10044
9b341bb1 10045 if (igu_sb_cnt == 0) {
f2e0899f 10046 BNX2X_ERR("CAM configuration error\n");
9b341bb1
BW
10047 return -EINVAL;
10048 }
10049
10050 return 0;
f2e0899f
DK
10051}
10052
0329aba1 10053static void bnx2x_link_settings_supported(struct bnx2x *bp,
34f80b04 10054 u32 switch_cfg)
a2fbb9ea 10055{
a22f0788
YR
10056 int cfg_size = 0, idx, port = BP_PORT(bp);
10057
10058 /* Aggregation of supported attributes of all external phys */
10059 bp->port.supported[0] = 0;
10060 bp->port.supported[1] = 0;
b7737c9b
YR
10061 switch (bp->link_params.num_phys) {
10062 case 1:
a22f0788
YR
10063 bp->port.supported[0] = bp->link_params.phy[INT_PHY].supported;
10064 cfg_size = 1;
10065 break;
b7737c9b 10066 case 2:
a22f0788
YR
10067 bp->port.supported[0] = bp->link_params.phy[EXT_PHY1].supported;
10068 cfg_size = 1;
10069 break;
10070 case 3:
10071 if (bp->link_params.multi_phy_config &
10072 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
10073 bp->port.supported[1] =
10074 bp->link_params.phy[EXT_PHY1].supported;
10075 bp->port.supported[0] =
10076 bp->link_params.phy[EXT_PHY2].supported;
10077 } else {
10078 bp->port.supported[0] =
10079 bp->link_params.phy[EXT_PHY1].supported;
10080 bp->port.supported[1] =
10081 bp->link_params.phy[EXT_PHY2].supported;
10082 }
10083 cfg_size = 2;
10084 break;
b7737c9b 10085 }
a2fbb9ea 10086
a22f0788 10087 if (!(bp->port.supported[0] || bp->port.supported[1])) {
51c1a580 10088 BNX2X_ERR("NVRAM config error. BAD phy config. PHY1 config 0x%x, PHY2 config 0x%x\n",
b7737c9b 10089 SHMEM_RD(bp,
a22f0788
YR
10090 dev_info.port_hw_config[port].external_phy_config),
10091 SHMEM_RD(bp,
10092 dev_info.port_hw_config[port].external_phy_config2));
a2fbb9ea 10093 return;
f85582f8 10094 }
a2fbb9ea 10095
619c5cb6
VZ
10096 if (CHIP_IS_E3(bp))
10097 bp->port.phy_addr = REG_RD(bp, MISC_REG_WC0_CTRL_PHY_ADDR);
10098 else {
10099 switch (switch_cfg) {
10100 case SWITCH_CFG_1G:
10101 bp->port.phy_addr = REG_RD(
10102 bp, NIG_REG_SERDES0_CTRL_PHY_ADDR + port*0x10);
10103 break;
10104 case SWITCH_CFG_10G:
10105 bp->port.phy_addr = REG_RD(
10106 bp, NIG_REG_XGXS0_CTRL_PHY_ADDR + port*0x18);
10107 break;
10108 default:
10109 BNX2X_ERR("BAD switch_cfg link_config 0x%x\n",
10110 bp->port.link_config[0]);
10111 return;
10112 }
a2fbb9ea 10113 }
619c5cb6 10114 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp->port.phy_addr);
a22f0788
YR
10115 /* mask what we support according to speed_cap_mask per configuration */
10116 for (idx = 0; idx < cfg_size; idx++) {
10117 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10118 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF))
a22f0788 10119 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Half;
a2fbb9ea 10120
a22f0788 10121 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10122 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL))
a22f0788 10123 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Full;
a2fbb9ea 10124
a22f0788 10125 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10126 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF))
a22f0788 10127 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Half;
a2fbb9ea 10128
a22f0788 10129 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10130 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL))
a22f0788 10131 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Full;
a2fbb9ea 10132
a22f0788 10133 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10134 PORT_HW_CFG_SPEED_CAPABILITY_D0_1G))
a22f0788 10135 bp->port.supported[idx] &= ~(SUPPORTED_1000baseT_Half |
f85582f8 10136 SUPPORTED_1000baseT_Full);
a2fbb9ea 10137
a22f0788 10138 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10139 PORT_HW_CFG_SPEED_CAPABILITY_D0_2_5G))
a22f0788 10140 bp->port.supported[idx] &= ~SUPPORTED_2500baseX_Full;
a2fbb9ea 10141
a22f0788 10142 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10143 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G))
a22f0788
YR
10144 bp->port.supported[idx] &= ~SUPPORTED_10000baseT_Full;
10145
10146 }
a2fbb9ea 10147
a22f0788
YR
10148 BNX2X_DEV_INFO("supported 0x%x 0x%x\n", bp->port.supported[0],
10149 bp->port.supported[1]);
a2fbb9ea
ET
10150}
10151
0329aba1 10152static void bnx2x_link_settings_requested(struct bnx2x *bp)
a2fbb9ea 10153{
a22f0788
YR
10154 u32 link_config, idx, cfg_size = 0;
10155 bp->port.advertising[0] = 0;
10156 bp->port.advertising[1] = 0;
10157 switch (bp->link_params.num_phys) {
10158 case 1:
10159 case 2:
10160 cfg_size = 1;
10161 break;
10162 case 3:
10163 cfg_size = 2;
10164 break;
10165 }
10166 for (idx = 0; idx < cfg_size; idx++) {
10167 bp->link_params.req_duplex[idx] = DUPLEX_FULL;
10168 link_config = bp->port.link_config[idx];
10169 switch (link_config & PORT_FEATURE_LINK_SPEED_MASK) {
f85582f8 10170 case PORT_FEATURE_LINK_SPEED_AUTO:
a22f0788
YR
10171 if (bp->port.supported[idx] & SUPPORTED_Autoneg) {
10172 bp->link_params.req_line_speed[idx] =
10173 SPEED_AUTO_NEG;
10174 bp->port.advertising[idx] |=
10175 bp->port.supported[idx];
10bd1f24
MY
10176 if (bp->link_params.phy[EXT_PHY1].type ==
10177 PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM84833)
10178 bp->port.advertising[idx] |=
10179 (SUPPORTED_100baseT_Half |
10180 SUPPORTED_100baseT_Full);
f85582f8
DK
10181 } else {
10182 /* force 10G, no AN */
a22f0788
YR
10183 bp->link_params.req_line_speed[idx] =
10184 SPEED_10000;
10185 bp->port.advertising[idx] |=
10186 (ADVERTISED_10000baseT_Full |
f85582f8 10187 ADVERTISED_FIBRE);
a22f0788 10188 continue;
f85582f8
DK
10189 }
10190 break;
a2fbb9ea 10191
f85582f8 10192 case PORT_FEATURE_LINK_SPEED_10M_FULL:
a22f0788
YR
10193 if (bp->port.supported[idx] & SUPPORTED_10baseT_Full) {
10194 bp->link_params.req_line_speed[idx] =
10195 SPEED_10;
10196 bp->port.advertising[idx] |=
10197 (ADVERTISED_10baseT_Full |
f85582f8
DK
10198 ADVERTISED_TP);
10199 } else {
51c1a580 10200 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8 10201 link_config,
a22f0788 10202 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10203 return;
10204 }
10205 break;
a2fbb9ea 10206
f85582f8 10207 case PORT_FEATURE_LINK_SPEED_10M_HALF:
a22f0788
YR
10208 if (bp->port.supported[idx] & SUPPORTED_10baseT_Half) {
10209 bp->link_params.req_line_speed[idx] =
10210 SPEED_10;
10211 bp->link_params.req_duplex[idx] =
10212 DUPLEX_HALF;
10213 bp->port.advertising[idx] |=
10214 (ADVERTISED_10baseT_Half |
f85582f8
DK
10215 ADVERTISED_TP);
10216 } else {
51c1a580 10217 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10218 link_config,
10219 bp->link_params.speed_cap_mask[idx]);
10220 return;
10221 }
10222 break;
a2fbb9ea 10223
f85582f8
DK
10224 case PORT_FEATURE_LINK_SPEED_100M_FULL:
10225 if (bp->port.supported[idx] &
10226 SUPPORTED_100baseT_Full) {
a22f0788
YR
10227 bp->link_params.req_line_speed[idx] =
10228 SPEED_100;
10229 bp->port.advertising[idx] |=
10230 (ADVERTISED_100baseT_Full |
f85582f8
DK
10231 ADVERTISED_TP);
10232 } else {
51c1a580 10233 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10234 link_config,
10235 bp->link_params.speed_cap_mask[idx]);
10236 return;
10237 }
10238 break;
a2fbb9ea 10239
f85582f8
DK
10240 case PORT_FEATURE_LINK_SPEED_100M_HALF:
10241 if (bp->port.supported[idx] &
10242 SUPPORTED_100baseT_Half) {
10243 bp->link_params.req_line_speed[idx] =
10244 SPEED_100;
10245 bp->link_params.req_duplex[idx] =
10246 DUPLEX_HALF;
a22f0788
YR
10247 bp->port.advertising[idx] |=
10248 (ADVERTISED_100baseT_Half |
f85582f8
DK
10249 ADVERTISED_TP);
10250 } else {
51c1a580 10251 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10252 link_config,
10253 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10254 return;
10255 }
10256 break;
a2fbb9ea 10257
f85582f8 10258 case PORT_FEATURE_LINK_SPEED_1G:
a22f0788
YR
10259 if (bp->port.supported[idx] &
10260 SUPPORTED_1000baseT_Full) {
10261 bp->link_params.req_line_speed[idx] =
10262 SPEED_1000;
10263 bp->port.advertising[idx] |=
10264 (ADVERTISED_1000baseT_Full |
f85582f8
DK
10265 ADVERTISED_TP);
10266 } else {
51c1a580 10267 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10268 link_config,
10269 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10270 return;
10271 }
10272 break;
a2fbb9ea 10273
f85582f8 10274 case PORT_FEATURE_LINK_SPEED_2_5G:
a22f0788
YR
10275 if (bp->port.supported[idx] &
10276 SUPPORTED_2500baseX_Full) {
10277 bp->link_params.req_line_speed[idx] =
10278 SPEED_2500;
10279 bp->port.advertising[idx] |=
10280 (ADVERTISED_2500baseX_Full |
34f80b04 10281 ADVERTISED_TP);
f85582f8 10282 } else {
51c1a580 10283 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10284 link_config,
f85582f8
DK
10285 bp->link_params.speed_cap_mask[idx]);
10286 return;
10287 }
10288 break;
a2fbb9ea 10289
f85582f8 10290 case PORT_FEATURE_LINK_SPEED_10G_CX4:
a22f0788
YR
10291 if (bp->port.supported[idx] &
10292 SUPPORTED_10000baseT_Full) {
10293 bp->link_params.req_line_speed[idx] =
10294 SPEED_10000;
10295 bp->port.advertising[idx] |=
10296 (ADVERTISED_10000baseT_Full |
34f80b04 10297 ADVERTISED_FIBRE);
f85582f8 10298 } else {
51c1a580 10299 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10300 link_config,
f85582f8
DK
10301 bp->link_params.speed_cap_mask[idx]);
10302 return;
10303 }
10304 break;
3c9ada22
YR
10305 case PORT_FEATURE_LINK_SPEED_20G:
10306 bp->link_params.req_line_speed[idx] = SPEED_20000;
a2fbb9ea 10307
3c9ada22 10308 break;
f85582f8 10309 default:
51c1a580 10310 BNX2X_ERR("NVRAM config error. BAD link speed link_config 0x%x\n",
754a2f52 10311 link_config);
f85582f8
DK
10312 bp->link_params.req_line_speed[idx] =
10313 SPEED_AUTO_NEG;
10314 bp->port.advertising[idx] =
10315 bp->port.supported[idx];
10316 break;
10317 }
a2fbb9ea 10318
a22f0788 10319 bp->link_params.req_flow_ctrl[idx] = (link_config &
34f80b04 10320 PORT_FEATURE_FLOW_CONTROL_MASK);
cd1dfce2
YM
10321 if (bp->link_params.req_flow_ctrl[idx] ==
10322 BNX2X_FLOW_CTRL_AUTO) {
10323 if (!(bp->port.supported[idx] & SUPPORTED_Autoneg))
10324 bp->link_params.req_flow_ctrl[idx] =
10325 BNX2X_FLOW_CTRL_NONE;
10326 else
10327 bnx2x_set_requested_fc(bp);
a22f0788 10328 }
a2fbb9ea 10329
51c1a580 10330 BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x advertising 0x%x\n",
a22f0788
YR
10331 bp->link_params.req_line_speed[idx],
10332 bp->link_params.req_duplex[idx],
10333 bp->link_params.req_flow_ctrl[idx],
10334 bp->port.advertising[idx]);
10335 }
a2fbb9ea
ET
10336}
10337
0329aba1 10338static void bnx2x_set_mac_buf(u8 *mac_buf, u32 mac_lo, u16 mac_hi)
e665bfda
MC
10339{
10340 mac_hi = cpu_to_be16(mac_hi);
10341 mac_lo = cpu_to_be32(mac_lo);
10342 memcpy(mac_buf, &mac_hi, sizeof(mac_hi));
10343 memcpy(mac_buf + sizeof(mac_hi), &mac_lo, sizeof(mac_lo));
10344}
10345
0329aba1 10346static void bnx2x_get_port_hwinfo(struct bnx2x *bp)
a2fbb9ea 10347{
34f80b04 10348 int port = BP_PORT(bp);
589abe3a 10349 u32 config;
c8c60d88 10350 u32 ext_phy_type, ext_phy_config, eee_mode;
a2fbb9ea 10351
c18487ee 10352 bp->link_params.bp = bp;
34f80b04 10353 bp->link_params.port = port;
c18487ee 10354
c18487ee 10355 bp->link_params.lane_config =
a2fbb9ea 10356 SHMEM_RD(bp, dev_info.port_hw_config[port].lane_config);
4d295db0 10357
a22f0788 10358 bp->link_params.speed_cap_mask[0] =
a2fbb9ea
ET
10359 SHMEM_RD(bp,
10360 dev_info.port_hw_config[port].speed_capability_mask);
a22f0788
YR
10361 bp->link_params.speed_cap_mask[1] =
10362 SHMEM_RD(bp,
10363 dev_info.port_hw_config[port].speed_capability_mask2);
10364 bp->port.link_config[0] =
a2fbb9ea
ET
10365 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config);
10366
a22f0788
YR
10367 bp->port.link_config[1] =
10368 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config2);
c2c8b03e 10369
a22f0788
YR
10370 bp->link_params.multi_phy_config =
10371 SHMEM_RD(bp, dev_info.port_hw_config[port].multi_phy_config);
3ce2c3f9
EG
10372 /* If the device is capable of WoL, set the default state according
10373 * to the HW
10374 */
4d295db0 10375 config = SHMEM_RD(bp, dev_info.port_feature_config[port].config);
3ce2c3f9
EG
10376 bp->wol = (!(bp->flags & NO_WOL_FLAG) &&
10377 (config & PORT_FEATURE_WOL_ENABLED));
10378
51c1a580 10379 BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n",
c18487ee 10380 bp->link_params.lane_config,
a22f0788
YR
10381 bp->link_params.speed_cap_mask[0],
10382 bp->port.link_config[0]);
a2fbb9ea 10383
a22f0788 10384 bp->link_params.switch_cfg = (bp->port.link_config[0] &
f85582f8 10385 PORT_FEATURE_CONNECTED_SWITCH_MASK);
b7737c9b 10386 bnx2x_phy_probe(&bp->link_params);
c18487ee 10387 bnx2x_link_settings_supported(bp, bp->link_params.switch_cfg);
a2fbb9ea
ET
10388
10389 bnx2x_link_settings_requested(bp);
10390
01cd4528
EG
10391 /*
10392 * If connected directly, work with the internal PHY, otherwise, work
10393 * with the external PHY
10394 */
b7737c9b
YR
10395 ext_phy_config =
10396 SHMEM_RD(bp,
10397 dev_info.port_hw_config[port].external_phy_config);
10398 ext_phy_type = XGXS_EXT_PHY_TYPE(ext_phy_config);
01cd4528 10399 if (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_DIRECT)
b7737c9b 10400 bp->mdio.prtad = bp->port.phy_addr;
01cd4528
EG
10401
10402 else if ((ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE) &&
10403 (ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN))
10404 bp->mdio.prtad =
b7737c9b 10405 XGXS_EXT_PHY_ADDR(ext_phy_config);
5866df6d 10406
c8c60d88
YM
10407 /* Configure link feature according to nvram value */
10408 eee_mode = (((SHMEM_RD(bp, dev_info.
10409 port_feature_config[port].eee_power_mode)) &
10410 PORT_FEAT_CFG_EEE_POWER_MODE_MASK) >>
10411 PORT_FEAT_CFG_EEE_POWER_MODE_SHIFT);
10412 if (eee_mode != PORT_FEAT_CFG_EEE_POWER_MODE_DISABLED) {
10413 bp->link_params.eee_mode = EEE_MODE_ADV_LPI |
10414 EEE_MODE_ENABLE_LPI |
10415 EEE_MODE_OUTPUT_TIME;
10416 } else {
10417 bp->link_params.eee_mode = 0;
10418 }
0793f83f 10419}
01cd4528 10420
b306f5ed 10421void bnx2x_get_iscsi_info(struct bnx2x *bp)
2ba45142 10422{
9e62e912 10423 u32 no_flags = NO_ISCSI_FLAG;
bf61ee14 10424 int port = BP_PORT(bp);
2ba45142 10425 u32 max_iscsi_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
bf61ee14 10426 drv_lic_key[port].max_iscsi_conn);
2ba45142 10427
55c11941
MS
10428 if (!CNIC_SUPPORT(bp)) {
10429 bp->flags |= no_flags;
10430 return;
10431 }
10432
b306f5ed 10433 /* Get the number of maximum allowed iSCSI connections */
2ba45142
VZ
10434 bp->cnic_eth_dev.max_iscsi_conn =
10435 (max_iscsi_conn & BNX2X_MAX_ISCSI_INIT_CONN_MASK) >>
10436 BNX2X_MAX_ISCSI_INIT_CONN_SHIFT;
10437
b306f5ed
DK
10438 BNX2X_DEV_INFO("max_iscsi_conn 0x%x\n",
10439 bp->cnic_eth_dev.max_iscsi_conn);
10440
10441 /*
10442 * If maximum allowed number of connections is zero -
10443 * disable the feature.
10444 */
10445 if (!bp->cnic_eth_dev.max_iscsi_conn)
9e62e912 10446 bp->flags |= no_flags;
55c11941 10447
b306f5ed
DK
10448}
10449
0329aba1 10450static void bnx2x_get_ext_wwn_info(struct bnx2x *bp, int func)
9e62e912
DK
10451{
10452 /* Port info */
10453 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10454 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_upper);
10455 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10456 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_lower);
10457
10458 /* Node info */
10459 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10460 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_upper);
10461 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10462 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_lower);
10463}
0329aba1 10464static void bnx2x_get_fcoe_info(struct bnx2x *bp)
b306f5ed
DK
10465{
10466 int port = BP_PORT(bp);
10467 int func = BP_ABS_FUNC(bp);
b306f5ed
DK
10468 u32 max_fcoe_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
10469 drv_lic_key[port].max_fcoe_conn);
10470
55c11941
MS
10471 if (!CNIC_SUPPORT(bp)) {
10472 bp->flags |= NO_FCOE_FLAG;
10473 return;
10474 }
10475
b306f5ed 10476 /* Get the number of maximum allowed FCoE connections */
2ba45142
VZ
10477 bp->cnic_eth_dev.max_fcoe_conn =
10478 (max_fcoe_conn & BNX2X_MAX_FCOE_INIT_CONN_MASK) >>
10479 BNX2X_MAX_FCOE_INIT_CONN_SHIFT;
10480
bf61ee14
VZ
10481 /* Read the WWN: */
10482 if (!IS_MF(bp)) {
10483 /* Port info */
10484 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10485 SHMEM_RD(bp,
10486 dev_info.port_hw_config[port].
10487 fcoe_wwn_port_name_upper);
10488 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10489 SHMEM_RD(bp,
10490 dev_info.port_hw_config[port].
10491 fcoe_wwn_port_name_lower);
10492
10493 /* Node info */
10494 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10495 SHMEM_RD(bp,
10496 dev_info.port_hw_config[port].
10497 fcoe_wwn_node_name_upper);
10498 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10499 SHMEM_RD(bp,
10500 dev_info.port_hw_config[port].
10501 fcoe_wwn_node_name_lower);
10502 } else if (!IS_MF_SD(bp)) {
bf61ee14
VZ
10503 /*
10504 * Read the WWN info only if the FCoE feature is enabled for
10505 * this function.
10506 */
7b5342d9 10507 if (BNX2X_MF_EXT_PROTOCOL_FCOE(bp) && !CHIP_IS_E1x(bp))
9e62e912
DK
10508 bnx2x_get_ext_wwn_info(bp, func);
10509
382e513a 10510 } else if (IS_MF_FCOE_SD(bp) && !CHIP_IS_E1x(bp)) {
9e62e912 10511 bnx2x_get_ext_wwn_info(bp, func);
382e513a 10512 }
bf61ee14 10513
b306f5ed 10514 BNX2X_DEV_INFO("max_fcoe_conn 0x%x\n", bp->cnic_eth_dev.max_fcoe_conn);
2ba45142 10515
bf61ee14
VZ
10516 /*
10517 * If maximum allowed number of connections is zero -
2ba45142
VZ
10518 * disable the feature.
10519 */
2ba45142
VZ
10520 if (!bp->cnic_eth_dev.max_fcoe_conn)
10521 bp->flags |= NO_FCOE_FLAG;
10522}
b306f5ed 10523
0329aba1 10524static void bnx2x_get_cnic_info(struct bnx2x *bp)
b306f5ed
DK
10525{
10526 /*
10527 * iSCSI may be dynamically disabled but reading
10528 * info here we will decrease memory usage by driver
10529 * if the feature is disabled for good
10530 */
10531 bnx2x_get_iscsi_info(bp);
10532 bnx2x_get_fcoe_info(bp);
10533}
2ba45142 10534
0329aba1 10535static void bnx2x_get_cnic_mac_hwinfo(struct bnx2x *bp)
0793f83f
DK
10536{
10537 u32 val, val2;
10538 int func = BP_ABS_FUNC(bp);
10539 int port = BP_PORT(bp);
2ba45142
VZ
10540 u8 *iscsi_mac = bp->cnic_eth_dev.iscsi_mac;
10541 u8 *fip_mac = bp->fip_mac;
0793f83f 10542
55c11941
MS
10543 if (IS_MF(bp)) {
10544 /* iSCSI and FCoE NPAR MACs: if there is no either iSCSI or
2ba45142 10545 * FCoE MAC then the appropriate feature should be disabled.
55c11941
MS
10546 * In non SD mode features configuration comes from struct
10547 * func_ext_config.
2ba45142 10548 */
55c11941 10549 if (!IS_MF_SD(bp) && !CHIP_IS_E1x(bp)) {
0793f83f
DK
10550 u32 cfg = MF_CFG_RD(bp, func_ext_config[func].func_cfg);
10551 if (cfg & MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD) {
10552 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10553 iscsi_mac_addr_upper);
0793f83f 10554 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10555 iscsi_mac_addr_lower);
2ba45142 10556 bnx2x_set_mac_buf(iscsi_mac, val, val2);
55c11941
MS
10557 BNX2X_DEV_INFO
10558 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10559 } else {
2ba45142 10560 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
55c11941 10561 }
2ba45142
VZ
10562
10563 if (cfg & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD) {
10564 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10565 fcoe_mac_addr_upper);
2ba45142 10566 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10567 fcoe_mac_addr_lower);
2ba45142 10568 bnx2x_set_mac_buf(fip_mac, val, val2);
55c11941
MS
10569 BNX2X_DEV_INFO
10570 ("Read FCoE L2 MAC: %pM\n", fip_mac);
10571 } else {
2ba45142 10572 bp->flags |= NO_FCOE_FLAG;
55c11941 10573 }
a3348722
BW
10574
10575 bp->mf_ext_config = cfg;
10576
9e62e912 10577 } else { /* SD MODE */
55c11941
MS
10578 if (BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp)) {
10579 /* use primary mac as iscsi mac */
10580 memcpy(iscsi_mac, bp->dev->dev_addr, ETH_ALEN);
10581
10582 BNX2X_DEV_INFO("SD ISCSI MODE\n");
10583 BNX2X_DEV_INFO
10584 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10585 } else if (BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)) {
10586 /* use primary mac as fip mac */
10587 memcpy(fip_mac, bp->dev->dev_addr, ETH_ALEN);
10588 BNX2X_DEV_INFO("SD FCoE MODE\n");
10589 BNX2X_DEV_INFO
10590 ("Read FIP MAC: %pM\n", fip_mac);
614c76df 10591 }
0793f83f 10592 }
a3348722 10593
55c11941
MS
10594 if (IS_MF_STORAGE_SD(bp))
10595 /* Zero primary MAC configuration */
10596 memset(bp->dev->dev_addr, 0, ETH_ALEN);
10597
a3348722
BW
10598 if (IS_MF_FCOE_AFEX(bp))
10599 /* use FIP MAC as primary MAC */
10600 memcpy(bp->dev->dev_addr, fip_mac, ETH_ALEN);
10601
0793f83f 10602 } else {
0793f83f 10603 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10604 iscsi_mac_upper);
0793f83f 10605 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10606 iscsi_mac_lower);
2ba45142 10607 bnx2x_set_mac_buf(iscsi_mac, val, val2);
c03bd39c
VZ
10608
10609 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10610 fcoe_fip_mac_upper);
c03bd39c 10611 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10612 fcoe_fip_mac_lower);
c03bd39c 10613 bnx2x_set_mac_buf(fip_mac, val, val2);
0793f83f
DK
10614 }
10615
55c11941 10616 /* Disable iSCSI OOO if MAC configuration is invalid. */
426b9241 10617 if (!is_valid_ether_addr(iscsi_mac)) {
55c11941 10618 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
426b9241
DK
10619 memset(iscsi_mac, 0, ETH_ALEN);
10620 }
10621
55c11941 10622 /* Disable FCoE if MAC configuration is invalid. */
426b9241
DK
10623 if (!is_valid_ether_addr(fip_mac)) {
10624 bp->flags |= NO_FCOE_FLAG;
10625 memset(bp->fip_mac, 0, ETH_ALEN);
10626 }
55c11941
MS
10627}
10628
0329aba1 10629static void bnx2x_get_mac_hwinfo(struct bnx2x *bp)
55c11941
MS
10630{
10631 u32 val, val2;
10632 int func = BP_ABS_FUNC(bp);
10633 int port = BP_PORT(bp);
10634
10635 /* Zero primary MAC configuration */
10636 memset(bp->dev->dev_addr, 0, ETH_ALEN);
10637
10638 if (BP_NOMCP(bp)) {
10639 BNX2X_ERROR("warning: random MAC workaround active\n");
10640 eth_hw_addr_random(bp->dev);
10641 } else if (IS_MF(bp)) {
10642 val2 = MF_CFG_RD(bp, func_mf_config[func].mac_upper);
10643 val = MF_CFG_RD(bp, func_mf_config[func].mac_lower);
10644 if ((val2 != FUNC_MF_CFG_UPPERMAC_DEFAULT) &&
10645 (val != FUNC_MF_CFG_LOWERMAC_DEFAULT))
10646 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10647
10648 if (CNIC_SUPPORT(bp))
10649 bnx2x_get_cnic_mac_hwinfo(bp);
10650 } else {
10651 /* in SF read MACs from port configuration */
10652 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_upper);
10653 val = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_lower);
10654 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10655
10656 if (CNIC_SUPPORT(bp))
10657 bnx2x_get_cnic_mac_hwinfo(bp);
10658 }
10659
10660 memcpy(bp->link_params.mac_addr, bp->dev->dev_addr, ETH_ALEN);
10661 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, ETH_ALEN);
619c5cb6 10662
614c76df 10663 if (!bnx2x_is_valid_ether_addr(bp, bp->dev->dev_addr))
619c5cb6 10664 dev_err(&bp->pdev->dev,
51c1a580
MS
10665 "bad Ethernet MAC address configuration: %pM\n"
10666 "change it manually before bringing up the appropriate network interface\n",
0f9dad10 10667 bp->dev->dev_addr);
7964211d 10668}
51c1a580 10669
0329aba1 10670static bool bnx2x_get_dropless_info(struct bnx2x *bp)
7964211d
YM
10671{
10672 int tmp;
10673 u32 cfg;
51c1a580 10674
7964211d
YM
10675 if (IS_MF(bp) && !CHIP_IS_E1x(bp)) {
10676 /* Take function: tmp = func */
10677 tmp = BP_ABS_FUNC(bp);
10678 cfg = MF_CFG_RD(bp, func_ext_config[tmp].func_cfg);
10679 cfg = !!(cfg & MACP_FUNC_CFG_PAUSE_ON_HOST_RING);
10680 } else {
10681 /* Take port: tmp = port */
10682 tmp = BP_PORT(bp);
10683 cfg = SHMEM_RD(bp,
10684 dev_info.port_hw_config[tmp].generic_features);
10685 cfg = !!(cfg & PORT_HW_CFG_PAUSE_ON_HOST_RING_ENABLED);
10686 }
10687 return cfg;
34f80b04
EG
10688}
10689
0329aba1 10690static int bnx2x_get_hwinfo(struct bnx2x *bp)
34f80b04 10691{
0793f83f 10692 int /*abs*/func = BP_ABS_FUNC(bp);
b8ee8328 10693 int vn;
0793f83f 10694 u32 val = 0;
34f80b04 10695 int rc = 0;
a2fbb9ea 10696
34f80b04 10697 bnx2x_get_common_hwinfo(bp);
a2fbb9ea 10698
6383c0b3
AE
10699 /*
10700 * initialize IGU parameters
10701 */
f2e0899f
DK
10702 if (CHIP_IS_E1x(bp)) {
10703 bp->common.int_block = INT_BLOCK_HC;
10704
10705 bp->igu_dsb_id = DEF_SB_IGU_ID;
10706 bp->igu_base_sb = 0;
f2e0899f
DK
10707 } else {
10708 bp->common.int_block = INT_BLOCK_IGU;
7a06a122
DK
10709
10710 /* do not allow device reset during IGU info preocessing */
10711 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
10712
f2e0899f 10713 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
619c5cb6
VZ
10714
10715 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
10716 int tout = 5000;
10717
10718 BNX2X_DEV_INFO("FORCING Normal Mode\n");
10719
10720 val &= ~(IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN);
10721 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION, val);
10722 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x7f);
10723
10724 while (tout && REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10725 tout--;
10726 usleep_range(1000, 1000);
10727 }
10728
10729 if (REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10730 dev_err(&bp->pdev->dev,
10731 "FORCING Normal Mode failed!!!\n");
9b341bb1
BW
10732 bnx2x_release_hw_lock(bp,
10733 HW_LOCK_RESOURCE_RESET);
619c5cb6
VZ
10734 return -EPERM;
10735 }
10736 }
10737
f2e0899f 10738 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
619c5cb6 10739 BNX2X_DEV_INFO("IGU Backward Compatible Mode\n");
f2e0899f
DK
10740 bp->common.int_block |= INT_BLOCK_MODE_BW_COMP;
10741 } else
619c5cb6 10742 BNX2X_DEV_INFO("IGU Normal Mode\n");
523224a3 10743
9b341bb1 10744 rc = bnx2x_get_igu_cam_info(bp);
7a06a122 10745 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
9b341bb1
BW
10746 if (rc)
10747 return rc;
f2e0899f 10748 }
619c5cb6
VZ
10749
10750 /*
10751 * set base FW non-default (fast path) status block id, this value is
10752 * used to initialize the fw_sb_id saved on the fp/queue structure to
10753 * determine the id used by the FW.
10754 */
10755 if (CHIP_IS_E1x(bp))
10756 bp->base_fw_ndsb = BP_PORT(bp) * FP_SB_MAX_E1x + BP_L_ID(bp);
10757 else /*
10758 * 57712 - we currently use one FW SB per IGU SB (Rx and Tx of
10759 * the same queue are indicated on the same IGU SB). So we prefer
10760 * FW and IGU SBs to be the same value.
10761 */
10762 bp->base_fw_ndsb = bp->igu_base_sb;
10763
10764 BNX2X_DEV_INFO("igu_dsb_id %d igu_base_sb %d igu_sb_cnt %d\n"
10765 "base_fw_ndsb %d\n", bp->igu_dsb_id, bp->igu_base_sb,
10766 bp->igu_sb_cnt, bp->base_fw_ndsb);
f2e0899f
DK
10767
10768 /*
10769 * Initialize MF configuration
10770 */
523224a3 10771
fb3bff17
DK
10772 bp->mf_ov = 0;
10773 bp->mf_mode = 0;
3395a033 10774 vn = BP_VN(bp);
0793f83f 10775
f2e0899f 10776 if (!CHIP_IS_E1(bp) && !BP_NOMCP(bp)) {
619c5cb6
VZ
10777 BNX2X_DEV_INFO("shmem2base 0x%x, size %d, mfcfg offset %d\n",
10778 bp->common.shmem2_base, SHMEM2_RD(bp, size),
10779 (u32)offsetof(struct shmem2_region, mf_cfg_addr));
10780
f2e0899f
DK
10781 if (SHMEM2_HAS(bp, mf_cfg_addr))
10782 bp->common.mf_cfg_base = SHMEM2_RD(bp, mf_cfg_addr);
10783 else
10784 bp->common.mf_cfg_base = bp->common.shmem_base +
523224a3
DK
10785 offsetof(struct shmem_region, func_mb) +
10786 E1H_FUNC_MAX * sizeof(struct drv_func_mb);
0793f83f
DK
10787 /*
10788 * get mf configuration:
25985edc 10789 * 1. existence of MF configuration
0793f83f
DK
10790 * 2. MAC address must be legal (check only upper bytes)
10791 * for Switch-Independent mode;
10792 * OVLAN must be legal for Switch-Dependent mode
10793 * 3. SF_MODE configures specific MF mode
10794 */
10795 if (bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
10796 /* get mf configuration */
10797 val = SHMEM_RD(bp,
10798 dev_info.shared_feature_config.config);
10799 val &= SHARED_FEAT_CFG_FORCE_SF_MODE_MASK;
10800
10801 switch (val) {
10802 case SHARED_FEAT_CFG_FORCE_SF_MODE_SWITCH_INDEPT:
10803 val = MF_CFG_RD(bp, func_mf_config[func].
10804 mac_upper);
10805 /* check for legal mac (upper bytes)*/
10806 if (val != 0xffff) {
10807 bp->mf_mode = MULTI_FUNCTION_SI;
10808 bp->mf_config[vn] = MF_CFG_RD(bp,
10809 func_mf_config[func].config);
10810 } else
51c1a580 10811 BNX2X_DEV_INFO("illegal MAC address for SI\n");
0793f83f 10812 break;
a3348722
BW
10813 case SHARED_FEAT_CFG_FORCE_SF_MODE_AFEX_MODE:
10814 if ((!CHIP_IS_E1x(bp)) &&
10815 (MF_CFG_RD(bp, func_mf_config[func].
10816 mac_upper) != 0xffff) &&
10817 (SHMEM2_HAS(bp,
10818 afex_driver_support))) {
10819 bp->mf_mode = MULTI_FUNCTION_AFEX;
10820 bp->mf_config[vn] = MF_CFG_RD(bp,
10821 func_mf_config[func].config);
10822 } else {
10823 BNX2X_DEV_INFO("can not configure afex mode\n");
10824 }
10825 break;
0793f83f
DK
10826 case SHARED_FEAT_CFG_FORCE_SF_MODE_MF_ALLOWED:
10827 /* get OV configuration */
10828 val = MF_CFG_RD(bp,
10829 func_mf_config[FUNC_0].e1hov_tag);
10830 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
10831
10832 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
10833 bp->mf_mode = MULTI_FUNCTION_SD;
10834 bp->mf_config[vn] = MF_CFG_RD(bp,
10835 func_mf_config[func].config);
10836 } else
754a2f52 10837 BNX2X_DEV_INFO("illegal OV for SD\n");
0793f83f
DK
10838 break;
10839 default:
10840 /* Unknown configuration: reset mf_config */
10841 bp->mf_config[vn] = 0;
51c1a580 10842 BNX2X_DEV_INFO("unknown MF mode 0x%x\n", val);
0793f83f
DK
10843 }
10844 }
a2fbb9ea 10845
2691d51d 10846 BNX2X_DEV_INFO("%s function mode\n",
fb3bff17 10847 IS_MF(bp) ? "multi" : "single");
2691d51d 10848
0793f83f
DK
10849 switch (bp->mf_mode) {
10850 case MULTI_FUNCTION_SD:
10851 val = MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
10852 FUNC_MF_CFG_E1HOV_TAG_MASK;
2691d51d 10853 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
fb3bff17 10854 bp->mf_ov = val;
619c5cb6
VZ
10855 bp->path_has_ovlan = true;
10856
51c1a580
MS
10857 BNX2X_DEV_INFO("MF OV for func %d is %d (0x%04x)\n",
10858 func, bp->mf_ov, bp->mf_ov);
2691d51d 10859 } else {
619c5cb6 10860 dev_err(&bp->pdev->dev,
51c1a580
MS
10861 "No valid MF OV for func %d, aborting\n",
10862 func);
619c5cb6 10863 return -EPERM;
34f80b04 10864 }
0793f83f 10865 break;
a3348722
BW
10866 case MULTI_FUNCTION_AFEX:
10867 BNX2X_DEV_INFO("func %d is in MF afex mode\n", func);
10868 break;
0793f83f 10869 case MULTI_FUNCTION_SI:
51c1a580
MS
10870 BNX2X_DEV_INFO("func %d is in MF switch-independent mode\n",
10871 func);
0793f83f
DK
10872 break;
10873 default:
10874 if (vn) {
619c5cb6 10875 dev_err(&bp->pdev->dev,
51c1a580
MS
10876 "VN %d is in a single function mode, aborting\n",
10877 vn);
619c5cb6 10878 return -EPERM;
2691d51d 10879 }
0793f83f 10880 break;
34f80b04 10881 }
0793f83f 10882
619c5cb6
VZ
10883 /* check if other port on the path needs ovlan:
10884 * Since MF configuration is shared between ports
10885 * Possible mixed modes are only
10886 * {SF, SI} {SF, SD} {SD, SF} {SI, SF}
10887 */
10888 if (CHIP_MODE_IS_4_PORT(bp) &&
10889 !bp->path_has_ovlan &&
10890 !IS_MF(bp) &&
10891 bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
10892 u8 other_port = !BP_PORT(bp);
10893 u8 other_func = BP_PATH(bp) + 2*other_port;
10894 val = MF_CFG_RD(bp,
10895 func_mf_config[other_func].e1hov_tag);
10896 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT)
10897 bp->path_has_ovlan = true;
10898 }
34f80b04 10899 }
a2fbb9ea 10900
f2e0899f
DK
10901 /* adjust igu_sb_cnt to MF for E1x */
10902 if (CHIP_IS_E1x(bp) && IS_MF(bp))
523224a3
DK
10903 bp->igu_sb_cnt /= E1HVN_MAX;
10904
619c5cb6
VZ
10905 /* port info */
10906 bnx2x_get_port_hwinfo(bp);
f2e0899f 10907
0793f83f
DK
10908 /* Get MAC addresses */
10909 bnx2x_get_mac_hwinfo(bp);
a2fbb9ea 10910
2ba45142 10911 bnx2x_get_cnic_info(bp);
2ba45142 10912
34f80b04
EG
10913 return rc;
10914}
10915
0329aba1 10916static void bnx2x_read_fwinfo(struct bnx2x *bp)
34f24c7f
VZ
10917{
10918 int cnt, i, block_end, rodi;
fcdf95cb 10919 char vpd_start[BNX2X_VPD_LEN+1];
34f24c7f
VZ
10920 char str_id_reg[VENDOR_ID_LEN+1];
10921 char str_id_cap[VENDOR_ID_LEN+1];
fcdf95cb
BW
10922 char *vpd_data;
10923 char *vpd_extended_data = NULL;
34f24c7f
VZ
10924 u8 len;
10925
fcdf95cb 10926 cnt = pci_read_vpd(bp->pdev, 0, BNX2X_VPD_LEN, vpd_start);
34f24c7f
VZ
10927 memset(bp->fw_ver, 0, sizeof(bp->fw_ver));
10928
10929 if (cnt < BNX2X_VPD_LEN)
10930 goto out_not_found;
10931
fcdf95cb
BW
10932 /* VPD RO tag should be first tag after identifier string, hence
10933 * we should be able to find it in first BNX2X_VPD_LEN chars
10934 */
10935 i = pci_vpd_find_tag(vpd_start, 0, BNX2X_VPD_LEN,
34f24c7f
VZ
10936 PCI_VPD_LRDT_RO_DATA);
10937 if (i < 0)
10938 goto out_not_found;
10939
34f24c7f 10940 block_end = i + PCI_VPD_LRDT_TAG_SIZE +
fcdf95cb 10941 pci_vpd_lrdt_size(&vpd_start[i]);
34f24c7f
VZ
10942
10943 i += PCI_VPD_LRDT_TAG_SIZE;
10944
fcdf95cb
BW
10945 if (block_end > BNX2X_VPD_LEN) {
10946 vpd_extended_data = kmalloc(block_end, GFP_KERNEL);
10947 if (vpd_extended_data == NULL)
10948 goto out_not_found;
10949
10950 /* read rest of vpd image into vpd_extended_data */
10951 memcpy(vpd_extended_data, vpd_start, BNX2X_VPD_LEN);
10952 cnt = pci_read_vpd(bp->pdev, BNX2X_VPD_LEN,
10953 block_end - BNX2X_VPD_LEN,
10954 vpd_extended_data + BNX2X_VPD_LEN);
10955 if (cnt < (block_end - BNX2X_VPD_LEN))
10956 goto out_not_found;
10957 vpd_data = vpd_extended_data;
10958 } else
10959 vpd_data = vpd_start;
10960
10961 /* now vpd_data holds full vpd content in both cases */
34f24c7f
VZ
10962
10963 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
10964 PCI_VPD_RO_KEYWORD_MFR_ID);
10965 if (rodi < 0)
10966 goto out_not_found;
10967
10968 len = pci_vpd_info_field_size(&vpd_data[rodi]);
10969
10970 if (len != VENDOR_ID_LEN)
10971 goto out_not_found;
10972
10973 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
10974
10975 /* vendor specific info */
10976 snprintf(str_id_reg, VENDOR_ID_LEN + 1, "%04x", PCI_VENDOR_ID_DELL);
10977 snprintf(str_id_cap, VENDOR_ID_LEN + 1, "%04X", PCI_VENDOR_ID_DELL);
10978 if (!strncmp(str_id_reg, &vpd_data[rodi], VENDOR_ID_LEN) ||
10979 !strncmp(str_id_cap, &vpd_data[rodi], VENDOR_ID_LEN)) {
10980
10981 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
10982 PCI_VPD_RO_KEYWORD_VENDOR0);
10983 if (rodi >= 0) {
10984 len = pci_vpd_info_field_size(&vpd_data[rodi]);
10985
10986 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
10987
10988 if (len < 32 && (len + rodi) <= BNX2X_VPD_LEN) {
10989 memcpy(bp->fw_ver, &vpd_data[rodi], len);
10990 bp->fw_ver[len] = ' ';
10991 }
10992 }
fcdf95cb 10993 kfree(vpd_extended_data);
34f24c7f
VZ
10994 return;
10995 }
10996out_not_found:
fcdf95cb 10997 kfree(vpd_extended_data);
34f24c7f
VZ
10998 return;
10999}
11000
0329aba1 11001static void bnx2x_set_modes_bitmap(struct bnx2x *bp)
619c5cb6
VZ
11002{
11003 u32 flags = 0;
11004
11005 if (CHIP_REV_IS_FPGA(bp))
11006 SET_FLAGS(flags, MODE_FPGA);
11007 else if (CHIP_REV_IS_EMUL(bp))
11008 SET_FLAGS(flags, MODE_EMUL);
11009 else
11010 SET_FLAGS(flags, MODE_ASIC);
11011
11012 if (CHIP_MODE_IS_4_PORT(bp))
11013 SET_FLAGS(flags, MODE_PORT4);
11014 else
11015 SET_FLAGS(flags, MODE_PORT2);
11016
11017 if (CHIP_IS_E2(bp))
11018 SET_FLAGS(flags, MODE_E2);
11019 else if (CHIP_IS_E3(bp)) {
11020 SET_FLAGS(flags, MODE_E3);
11021 if (CHIP_REV(bp) == CHIP_REV_Ax)
11022 SET_FLAGS(flags, MODE_E3_A0);
6383c0b3
AE
11023 else /*if (CHIP_REV(bp) == CHIP_REV_Bx)*/
11024 SET_FLAGS(flags, MODE_E3_B0 | MODE_COS3);
619c5cb6
VZ
11025 }
11026
11027 if (IS_MF(bp)) {
11028 SET_FLAGS(flags, MODE_MF);
11029 switch (bp->mf_mode) {
11030 case MULTI_FUNCTION_SD:
11031 SET_FLAGS(flags, MODE_MF_SD);
11032 break;
11033 case MULTI_FUNCTION_SI:
11034 SET_FLAGS(flags, MODE_MF_SI);
11035 break;
a3348722
BW
11036 case MULTI_FUNCTION_AFEX:
11037 SET_FLAGS(flags, MODE_MF_AFEX);
11038 break;
619c5cb6
VZ
11039 }
11040 } else
11041 SET_FLAGS(flags, MODE_SF);
11042
11043#if defined(__LITTLE_ENDIAN)
11044 SET_FLAGS(flags, MODE_LITTLE_ENDIAN);
11045#else /*(__BIG_ENDIAN)*/
11046 SET_FLAGS(flags, MODE_BIG_ENDIAN);
11047#endif
11048 INIT_MODE_FLAGS(bp) = flags;
11049}
11050
0329aba1 11051static int bnx2x_init_bp(struct bnx2x *bp)
34f80b04 11052{
f2e0899f 11053 int func;
34f80b04
EG
11054 int rc;
11055
34f80b04 11056 mutex_init(&bp->port.phy_mutex);
c4ff7cbf 11057 mutex_init(&bp->fw_mb_mutex);
bb7e95c8 11058 spin_lock_init(&bp->stats_lock);
55c11941 11059
a2fbb9ea 11060
1cf167f2 11061 INIT_DELAYED_WORK(&bp->sp_task, bnx2x_sp_task);
7be08a72 11062 INIT_DELAYED_WORK(&bp->sp_rtnl_task, bnx2x_sp_rtnl_task);
3deb8167 11063 INIT_DELAYED_WORK(&bp->period_task, bnx2x_period_task);
34f80b04 11064 rc = bnx2x_get_hwinfo(bp);
619c5cb6
VZ
11065 if (rc)
11066 return rc;
34f80b04 11067
619c5cb6
VZ
11068 bnx2x_set_modes_bitmap(bp);
11069
11070 rc = bnx2x_alloc_mem_bp(bp);
11071 if (rc)
11072 return rc;
523224a3 11073
34f24c7f 11074 bnx2x_read_fwinfo(bp);
f2e0899f
DK
11075
11076 func = BP_FUNC(bp);
11077
34f80b04 11078 /* need to reset chip if undi was active */
452427b0
YM
11079 if (!BP_NOMCP(bp)) {
11080 /* init fw_seq */
11081 bp->fw_seq =
11082 SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
11083 DRV_MSG_SEQ_NUMBER_MASK;
11084 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
11085
11086 bnx2x_prev_unload(bp);
11087 }
11088
34f80b04
EG
11089
11090 if (CHIP_REV_IS_FPGA(bp))
cdaa7cb8 11091 dev_err(&bp->pdev->dev, "FPGA detected\n");
34f80b04
EG
11092
11093 if (BP_NOMCP(bp) && (func == 0))
51c1a580 11094 dev_err(&bp->pdev->dev, "MCP disabled, must load devices in order!\n");
34f80b04 11095
614c76df 11096 bp->disable_tpa = disable_tpa;
a3348722 11097 bp->disable_tpa |= IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp);
614c76df 11098
7a9b2557 11099 /* Set TPA flags */
614c76df 11100 if (bp->disable_tpa) {
621b4d66 11101 bp->flags &= ~(TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11102 bp->dev->features &= ~NETIF_F_LRO;
11103 } else {
621b4d66 11104 bp->flags |= (TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11105 bp->dev->features |= NETIF_F_LRO;
11106 }
11107
a18f5128
EG
11108 if (CHIP_IS_E1(bp))
11109 bp->dropless_fc = 0;
11110 else
7964211d 11111 bp->dropless_fc = dropless_fc | bnx2x_get_dropless_info(bp);
a18f5128 11112
8d5726c4 11113 bp->mrrs = mrrs;
7a9b2557 11114
a3348722 11115 bp->tx_ring_size = IS_MF_FCOE_AFEX(bp) ? 0 : MAX_TX_AVAIL;
34f80b04 11116
7d323bfd 11117 /* make sure that the numbers are in the right granularity */
523224a3
DK
11118 bp->tx_ticks = (50 / BNX2X_BTR) * BNX2X_BTR;
11119 bp->rx_ticks = (25 / BNX2X_BTR) * BNX2X_BTR;
34f80b04 11120
fc543637 11121 bp->current_interval = CHIP_REV_IS_SLOW(bp) ? 5*HZ : HZ;
34f80b04
EG
11122
11123 init_timer(&bp->timer);
11124 bp->timer.expires = jiffies + bp->current_interval;
11125 bp->timer.data = (unsigned long) bp;
11126 bp->timer.function = bnx2x_timer;
11127
0370cf90
BW
11128 if (SHMEM2_HAS(bp, dcbx_lldp_params_offset) &&
11129 SHMEM2_HAS(bp, dcbx_lldp_dcbx_stat_offset) &&
11130 SHMEM2_RD(bp, dcbx_lldp_params_offset) &&
11131 SHMEM2_RD(bp, dcbx_lldp_dcbx_stat_offset)) {
11132 bnx2x_dcbx_set_state(bp, true, BNX2X_DCBX_ENABLED_ON_NEG_ON);
11133 bnx2x_dcbx_init_params(bp);
11134 } else {
11135 bnx2x_dcbx_set_state(bp, false, BNX2X_DCBX_ENABLED_OFF);
11136 }
e4901dde 11137
619c5cb6
VZ
11138 if (CHIP_IS_E1x(bp))
11139 bp->cnic_base_cl_id = FP_SB_MAX_E1x;
11140 else
11141 bp->cnic_base_cl_id = FP_SB_MAX_E2;
619c5cb6 11142
6383c0b3
AE
11143 /* multiple tx priority */
11144 if (CHIP_IS_E1x(bp))
11145 bp->max_cos = BNX2X_MULTI_TX_COS_E1X;
11146 if (CHIP_IS_E2(bp) || CHIP_IS_E3A0(bp))
11147 bp->max_cos = BNX2X_MULTI_TX_COS_E2_E3A0;
11148 if (CHIP_IS_E3B0(bp))
11149 bp->max_cos = BNX2X_MULTI_TX_COS_E3B0;
11150
55c11941
MS
11151 /* We need at least one default status block for slow-path events,
11152 * second status block for the L2 queue, and a third status block for
11153 * CNIC if supproted.
11154 */
11155 if (CNIC_SUPPORT(bp))
11156 bp->min_msix_vec_cnt = 3;
11157 else
11158 bp->min_msix_vec_cnt = 2;
11159 BNX2X_DEV_INFO("bp->min_msix_vec_cnt %d", bp->min_msix_vec_cnt);
11160
34f80b04 11161 return rc;
a2fbb9ea
ET
11162}
11163
a2fbb9ea 11164
de0c62db
DK
11165/****************************************************************************
11166* General service functions
11167****************************************************************************/
a2fbb9ea 11168
619c5cb6
VZ
11169/*
11170 * net_device service functions
11171 */
11172
bb2a0f7a 11173/* called with rtnl_lock */
a2fbb9ea
ET
11174static int bnx2x_open(struct net_device *dev)
11175{
11176 struct bnx2x *bp = netdev_priv(dev);
c9ee9206
VZ
11177 bool global = false;
11178 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3 11179 bool other_load_status, load_status;
a2fbb9ea 11180
1355b704
MY
11181 bp->stats_init = true;
11182
6eccabb3
EG
11183 netif_carrier_off(dev);
11184
a2fbb9ea
ET
11185 bnx2x_set_power_state(bp, PCI_D0);
11186
889b9af3
AE
11187 other_load_status = bnx2x_get_load_status(bp, other_engine);
11188 load_status = bnx2x_get_load_status(bp, BP_PATH(bp));
c9ee9206
VZ
11189
11190 /*
11191 * If parity had happen during the unload, then attentions
11192 * and/or RECOVERY_IN_PROGRES may still be set. In this case we
11193 * want the first function loaded on the current engine to
11194 * complete the recovery.
11195 */
11196 if (!bnx2x_reset_is_done(bp, BP_PATH(bp)) ||
11197 bnx2x_chk_parity_attn(bp, &global, true))
72fd0718 11198 do {
c9ee9206
VZ
11199 /*
11200 * If there are attentions and they are in a global
11201 * blocks, set the GLOBAL_RESET bit regardless whether
11202 * it will be this function that will complete the
11203 * recovery or not.
72fd0718 11204 */
c9ee9206
VZ
11205 if (global)
11206 bnx2x_set_reset_global(bp);
72fd0718 11207
c9ee9206
VZ
11208 /*
11209 * Only the first function on the current engine should
11210 * try to recover in open. In case of attentions in
11211 * global blocks only the first in the chip should try
11212 * to recover.
72fd0718 11213 */
889b9af3
AE
11214 if ((!load_status &&
11215 (!global || !other_load_status)) &&
c9ee9206
VZ
11216 bnx2x_trylock_leader_lock(bp) &&
11217 !bnx2x_leader_reset(bp)) {
11218 netdev_info(bp->dev, "Recovered in open\n");
72fd0718
VZ
11219 break;
11220 }
11221
c9ee9206 11222 /* recovery has failed... */
72fd0718 11223 bnx2x_set_power_state(bp, PCI_D3hot);
c9ee9206 11224 bp->recovery_state = BNX2X_RECOVERY_FAILED;
72fd0718 11225
51c1a580
MS
11226 BNX2X_ERR("Recovery flow hasn't been properly completed yet. Try again later.\n"
11227 "If you still see this message after a few retries then power cycle is required.\n");
72fd0718
VZ
11228
11229 return -EAGAIN;
11230 } while (0);
72fd0718
VZ
11231
11232 bp->recovery_state = BNX2X_RECOVERY_DONE;
bb2a0f7a 11233 return bnx2x_nic_load(bp, LOAD_OPEN);
a2fbb9ea
ET
11234}
11235
bb2a0f7a 11236/* called with rtnl_lock */
56ad3152 11237static int bnx2x_close(struct net_device *dev)
a2fbb9ea 11238{
a2fbb9ea
ET
11239 struct bnx2x *bp = netdev_priv(dev);
11240
11241 /* Unload the driver, release IRQs */
5d07d868 11242 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
c9ee9206
VZ
11243
11244 /* Power off */
d3dbfee0 11245 bnx2x_set_power_state(bp, PCI_D3hot);
a2fbb9ea
ET
11246
11247 return 0;
11248}
11249
1191cb83
ED
11250static int bnx2x_init_mcast_macs_list(struct bnx2x *bp,
11251 struct bnx2x_mcast_ramrod_params *p)
6e30dd4e 11252{
619c5cb6
VZ
11253 int mc_count = netdev_mc_count(bp->dev);
11254 struct bnx2x_mcast_list_elem *mc_mac =
11255 kzalloc(sizeof(*mc_mac) * mc_count, GFP_ATOMIC);
11256 struct netdev_hw_addr *ha;
6e30dd4e 11257
619c5cb6
VZ
11258 if (!mc_mac)
11259 return -ENOMEM;
6e30dd4e 11260
619c5cb6 11261 INIT_LIST_HEAD(&p->mcast_list);
6e30dd4e 11262
619c5cb6
VZ
11263 netdev_for_each_mc_addr(ha, bp->dev) {
11264 mc_mac->mac = bnx2x_mc_addr(ha);
11265 list_add_tail(&mc_mac->link, &p->mcast_list);
11266 mc_mac++;
6e30dd4e 11267 }
619c5cb6
VZ
11268
11269 p->mcast_list_len = mc_count;
11270
11271 return 0;
6e30dd4e
VZ
11272}
11273
1191cb83 11274static void bnx2x_free_mcast_macs_list(
619c5cb6
VZ
11275 struct bnx2x_mcast_ramrod_params *p)
11276{
11277 struct bnx2x_mcast_list_elem *mc_mac =
11278 list_first_entry(&p->mcast_list, struct bnx2x_mcast_list_elem,
11279 link);
11280
11281 WARN_ON(!mc_mac);
11282 kfree(mc_mac);
11283}
11284
11285/**
11286 * bnx2x_set_uc_list - configure a new unicast MACs list.
11287 *
11288 * @bp: driver handle
6e30dd4e 11289 *
619c5cb6 11290 * We will use zero (0) as a MAC type for these MACs.
6e30dd4e 11291 */
1191cb83 11292static int bnx2x_set_uc_list(struct bnx2x *bp)
6e30dd4e 11293{
619c5cb6 11294 int rc;
6e30dd4e 11295 struct net_device *dev = bp->dev;
6e30dd4e 11296 struct netdev_hw_addr *ha;
15192a8c 11297 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
619c5cb6 11298 unsigned long ramrod_flags = 0;
6e30dd4e 11299
619c5cb6
VZ
11300 /* First schedule a cleanup up of old configuration */
11301 rc = bnx2x_del_all_macs(bp, mac_obj, BNX2X_UC_LIST_MAC, false);
11302 if (rc < 0) {
11303 BNX2X_ERR("Failed to schedule DELETE operations: %d\n", rc);
11304 return rc;
11305 }
6e30dd4e
VZ
11306
11307 netdev_for_each_uc_addr(ha, dev) {
619c5cb6
VZ
11308 rc = bnx2x_set_mac_one(bp, bnx2x_uc_addr(ha), mac_obj, true,
11309 BNX2X_UC_LIST_MAC, &ramrod_flags);
7b5342d9
YM
11310 if (rc == -EEXIST) {
11311 DP(BNX2X_MSG_SP,
11312 "Failed to schedule ADD operations: %d\n", rc);
11313 /* do not treat adding same MAC as error */
11314 rc = 0;
11315
11316 } else if (rc < 0) {
11317
619c5cb6
VZ
11318 BNX2X_ERR("Failed to schedule ADD operations: %d\n",
11319 rc);
11320 return rc;
6e30dd4e
VZ
11321 }
11322 }
11323
619c5cb6
VZ
11324 /* Execute the pending commands */
11325 __set_bit(RAMROD_CONT, &ramrod_flags);
11326 return bnx2x_set_mac_one(bp, NULL, mac_obj, false /* don't care */,
11327 BNX2X_UC_LIST_MAC, &ramrod_flags);
6e30dd4e
VZ
11328}
11329
1191cb83 11330static int bnx2x_set_mc_list(struct bnx2x *bp)
6e30dd4e 11331{
619c5cb6 11332 struct net_device *dev = bp->dev;
3b603066 11333 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6 11334 int rc = 0;
6e30dd4e 11335
619c5cb6 11336 rparam.mcast_obj = &bp->mcast_obj;
6e30dd4e 11337
619c5cb6
VZ
11338 /* first, clear all configured multicast MACs */
11339 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
11340 if (rc < 0) {
51c1a580 11341 BNX2X_ERR("Failed to clear multicast configuration: %d\n", rc);
619c5cb6
VZ
11342 return rc;
11343 }
6e30dd4e 11344
619c5cb6
VZ
11345 /* then, configure a new MACs list */
11346 if (netdev_mc_count(dev)) {
11347 rc = bnx2x_init_mcast_macs_list(bp, &rparam);
11348 if (rc) {
51c1a580
MS
11349 BNX2X_ERR("Failed to create multicast MACs list: %d\n",
11350 rc);
619c5cb6
VZ
11351 return rc;
11352 }
6e30dd4e 11353
619c5cb6
VZ
11354 /* Now add the new MACs */
11355 rc = bnx2x_config_mcast(bp, &rparam,
11356 BNX2X_MCAST_CMD_ADD);
11357 if (rc < 0)
51c1a580
MS
11358 BNX2X_ERR("Failed to set a new multicast configuration: %d\n",
11359 rc);
6e30dd4e 11360
619c5cb6
VZ
11361 bnx2x_free_mcast_macs_list(&rparam);
11362 }
6e30dd4e 11363
619c5cb6 11364 return rc;
6e30dd4e
VZ
11365}
11366
6e30dd4e 11367
619c5cb6 11368/* If bp->state is OPEN, should be called with netif_addr_lock_bh() */
9f6c9258 11369void bnx2x_set_rx_mode(struct net_device *dev)
34f80b04
EG
11370{
11371 struct bnx2x *bp = netdev_priv(dev);
11372 u32 rx_mode = BNX2X_RX_MODE_NORMAL;
34f80b04
EG
11373
11374 if (bp->state != BNX2X_STATE_OPEN) {
11375 DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
11376 return;
11377 }
11378
619c5cb6 11379 DP(NETIF_MSG_IFUP, "dev->flags = %x\n", bp->dev->flags);
34f80b04
EG
11380
11381 if (dev->flags & IFF_PROMISC)
11382 rx_mode = BNX2X_RX_MODE_PROMISC;
619c5cb6
VZ
11383 else if ((dev->flags & IFF_ALLMULTI) ||
11384 ((netdev_mc_count(dev) > BNX2X_MAX_MULTICAST) &&
11385 CHIP_IS_E1(bp)))
34f80b04 11386 rx_mode = BNX2X_RX_MODE_ALLMULTI;
6e30dd4e
VZ
11387 else {
11388 /* some multicasts */
619c5cb6 11389 if (bnx2x_set_mc_list(bp) < 0)
6e30dd4e 11390 rx_mode = BNX2X_RX_MODE_ALLMULTI;
34f80b04 11391
619c5cb6 11392 if (bnx2x_set_uc_list(bp) < 0)
6e30dd4e 11393 rx_mode = BNX2X_RX_MODE_PROMISC;
34f80b04
EG
11394 }
11395
11396 bp->rx_mode = rx_mode;
614c76df
DK
11397 /* handle ISCSI SD mode */
11398 if (IS_MF_ISCSI_SD(bp))
11399 bp->rx_mode = BNX2X_RX_MODE_NONE;
619c5cb6
VZ
11400
11401 /* Schedule the rx_mode command */
11402 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state)) {
11403 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
11404 return;
11405 }
11406
34f80b04
EG
11407 bnx2x_set_storm_rx_mode(bp);
11408}
11409
c18487ee 11410/* called with rtnl_lock */
01cd4528
EG
11411static int bnx2x_mdio_read(struct net_device *netdev, int prtad,
11412 int devad, u16 addr)
a2fbb9ea 11413{
01cd4528
EG
11414 struct bnx2x *bp = netdev_priv(netdev);
11415 u16 value;
11416 int rc;
a2fbb9ea 11417
01cd4528
EG
11418 DP(NETIF_MSG_LINK, "mdio_read: prtad 0x%x, devad 0x%x, addr 0x%x\n",
11419 prtad, devad, addr);
a2fbb9ea 11420
01cd4528
EG
11421 /* The HW expects different devad if CL22 is used */
11422 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
c18487ee 11423
01cd4528 11424 bnx2x_acquire_phy_lock(bp);
e10bc84d 11425 rc = bnx2x_phy_read(&bp->link_params, prtad, devad, addr, &value);
01cd4528
EG
11426 bnx2x_release_phy_lock(bp);
11427 DP(NETIF_MSG_LINK, "mdio_read_val 0x%x rc = 0x%x\n", value, rc);
a2fbb9ea 11428
01cd4528
EG
11429 if (!rc)
11430 rc = value;
11431 return rc;
11432}
a2fbb9ea 11433
01cd4528
EG
11434/* called with rtnl_lock */
11435static int bnx2x_mdio_write(struct net_device *netdev, int prtad, int devad,
11436 u16 addr, u16 value)
11437{
11438 struct bnx2x *bp = netdev_priv(netdev);
01cd4528
EG
11439 int rc;
11440
51c1a580
MS
11441 DP(NETIF_MSG_LINK,
11442 "mdio_write: prtad 0x%x, devad 0x%x, addr 0x%x, value 0x%x\n",
11443 prtad, devad, addr, value);
01cd4528 11444
01cd4528
EG
11445 /* The HW expects different devad if CL22 is used */
11446 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
a2fbb9ea 11447
01cd4528 11448 bnx2x_acquire_phy_lock(bp);
e10bc84d 11449 rc = bnx2x_phy_write(&bp->link_params, prtad, devad, addr, value);
01cd4528
EG
11450 bnx2x_release_phy_lock(bp);
11451 return rc;
11452}
c18487ee 11453
01cd4528
EG
11454/* called with rtnl_lock */
11455static int bnx2x_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11456{
11457 struct bnx2x *bp = netdev_priv(dev);
11458 struct mii_ioctl_data *mdio = if_mii(ifr);
a2fbb9ea 11459
01cd4528
EG
11460 DP(NETIF_MSG_LINK, "ioctl: phy id 0x%x, reg 0x%x, val_in 0x%x\n",
11461 mdio->phy_id, mdio->reg_num, mdio->val_in);
a2fbb9ea 11462
01cd4528
EG
11463 if (!netif_running(dev))
11464 return -EAGAIN;
11465
11466 return mdio_mii_ioctl(&bp->mdio, mdio, cmd);
a2fbb9ea
ET
11467}
11468
257ddbda 11469#ifdef CONFIG_NET_POLL_CONTROLLER
a2fbb9ea
ET
11470static void poll_bnx2x(struct net_device *dev)
11471{
11472 struct bnx2x *bp = netdev_priv(dev);
14a15d61 11473 int i;
a2fbb9ea 11474
14a15d61
MS
11475 for_each_eth_queue(bp, i) {
11476 struct bnx2x_fastpath *fp = &bp->fp[i];
11477 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
11478 }
a2fbb9ea
ET
11479}
11480#endif
11481
614c76df
DK
11482static int bnx2x_validate_addr(struct net_device *dev)
11483{
11484 struct bnx2x *bp = netdev_priv(dev);
11485
51c1a580
MS
11486 if (!bnx2x_is_valid_ether_addr(bp, dev->dev_addr)) {
11487 BNX2X_ERR("Non-valid Ethernet address\n");
614c76df 11488 return -EADDRNOTAVAIL;
51c1a580 11489 }
614c76df
DK
11490 return 0;
11491}
11492
c64213cd
SH
11493static const struct net_device_ops bnx2x_netdev_ops = {
11494 .ndo_open = bnx2x_open,
11495 .ndo_stop = bnx2x_close,
11496 .ndo_start_xmit = bnx2x_start_xmit,
8307fa3e 11497 .ndo_select_queue = bnx2x_select_queue,
6e30dd4e 11498 .ndo_set_rx_mode = bnx2x_set_rx_mode,
c64213cd 11499 .ndo_set_mac_address = bnx2x_change_mac_addr,
614c76df 11500 .ndo_validate_addr = bnx2x_validate_addr,
c64213cd
SH
11501 .ndo_do_ioctl = bnx2x_ioctl,
11502 .ndo_change_mtu = bnx2x_change_mtu,
66371c44
MM
11503 .ndo_fix_features = bnx2x_fix_features,
11504 .ndo_set_features = bnx2x_set_features,
c64213cd 11505 .ndo_tx_timeout = bnx2x_tx_timeout,
257ddbda 11506#ifdef CONFIG_NET_POLL_CONTROLLER
c64213cd
SH
11507 .ndo_poll_controller = poll_bnx2x,
11508#endif
6383c0b3
AE
11509 .ndo_setup_tc = bnx2x_setup_tc,
11510
55c11941 11511#ifdef NETDEV_FCOE_WWNN
bf61ee14
VZ
11512 .ndo_fcoe_get_wwn = bnx2x_fcoe_get_wwn,
11513#endif
c64213cd
SH
11514};
11515
1191cb83 11516static int bnx2x_set_coherency_mask(struct bnx2x *bp)
619c5cb6
VZ
11517{
11518 struct device *dev = &bp->pdev->dev;
11519
11520 if (dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) {
11521 bp->flags |= USING_DAC_FLAG;
11522 if (dma_set_coherent_mask(dev, DMA_BIT_MASK(64)) != 0) {
51c1a580 11523 dev_err(dev, "dma_set_coherent_mask failed, aborting\n");
619c5cb6
VZ
11524 return -EIO;
11525 }
11526 } else if (dma_set_mask(dev, DMA_BIT_MASK(32)) != 0) {
11527 dev_err(dev, "System does not support DMA, aborting\n");
11528 return -EIO;
11529 }
11530
11531 return 0;
11532}
11533
0329aba1 11534static int bnx2x_init_dev(struct pci_dev *pdev,
619c5cb6
VZ
11535 struct net_device *dev,
11536 unsigned long board_type)
a2fbb9ea
ET
11537{
11538 struct bnx2x *bp;
11539 int rc;
c22610d0 11540 u32 pci_cfg_dword;
65087cfe
AE
11541 bool chip_is_e1x = (board_type == BCM57710 ||
11542 board_type == BCM57711 ||
11543 board_type == BCM57711E);
a2fbb9ea
ET
11544
11545 SET_NETDEV_DEV(dev, &pdev->dev);
11546 bp = netdev_priv(dev);
11547
34f80b04
EG
11548 bp->dev = dev;
11549 bp->pdev = pdev;
a2fbb9ea 11550 bp->flags = 0;
a2fbb9ea
ET
11551
11552 rc = pci_enable_device(pdev);
11553 if (rc) {
cdaa7cb8
VZ
11554 dev_err(&bp->pdev->dev,
11555 "Cannot enable PCI device, aborting\n");
a2fbb9ea
ET
11556 goto err_out;
11557 }
11558
11559 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
cdaa7cb8
VZ
11560 dev_err(&bp->pdev->dev,
11561 "Cannot find PCI device base address, aborting\n");
a2fbb9ea
ET
11562 rc = -ENODEV;
11563 goto err_out_disable;
11564 }
11565
11566 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
cdaa7cb8
VZ
11567 dev_err(&bp->pdev->dev, "Cannot find second PCI device"
11568 " base address, aborting\n");
a2fbb9ea
ET
11569 rc = -ENODEV;
11570 goto err_out_disable;
11571 }
11572
092a5fc9
YR
11573 pci_read_config_dword(pdev, PCICFG_REVISION_ID_OFFSET, &pci_cfg_dword);
11574 if ((pci_cfg_dword & PCICFG_REVESION_ID_MASK) ==
11575 PCICFG_REVESION_ID_ERROR_VAL) {
11576 pr_err("PCI device error, probably due to fan failure, aborting\n");
11577 rc = -ENODEV;
11578 goto err_out_disable;
11579 }
11580
34f80b04
EG
11581 if (atomic_read(&pdev->enable_cnt) == 1) {
11582 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
11583 if (rc) {
cdaa7cb8
VZ
11584 dev_err(&bp->pdev->dev,
11585 "Cannot obtain PCI resources, aborting\n");
34f80b04
EG
11586 goto err_out_disable;
11587 }
a2fbb9ea 11588
34f80b04
EG
11589 pci_set_master(pdev);
11590 pci_save_state(pdev);
11591 }
a2fbb9ea
ET
11592
11593 bp->pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
11594 if (bp->pm_cap == 0) {
cdaa7cb8
VZ
11595 dev_err(&bp->pdev->dev,
11596 "Cannot find power management capability, aborting\n");
a2fbb9ea
ET
11597 rc = -EIO;
11598 goto err_out_release;
11599 }
11600
77c98e6a 11601 if (!pci_is_pcie(pdev)) {
51c1a580 11602 dev_err(&bp->pdev->dev, "Not PCI Express, aborting\n");
a2fbb9ea
ET
11603 rc = -EIO;
11604 goto err_out_release;
11605 }
11606
619c5cb6
VZ
11607 rc = bnx2x_set_coherency_mask(bp);
11608 if (rc)
a2fbb9ea 11609 goto err_out_release;
a2fbb9ea 11610
34f80b04
EG
11611 dev->mem_start = pci_resource_start(pdev, 0);
11612 dev->base_addr = dev->mem_start;
11613 dev->mem_end = pci_resource_end(pdev, 0);
a2fbb9ea
ET
11614
11615 dev->irq = pdev->irq;
11616
275f165f 11617 bp->regview = pci_ioremap_bar(pdev, 0);
a2fbb9ea 11618 if (!bp->regview) {
cdaa7cb8
VZ
11619 dev_err(&bp->pdev->dev,
11620 "Cannot map register space, aborting\n");
a2fbb9ea
ET
11621 rc = -ENOMEM;
11622 goto err_out_release;
11623 }
11624
c22610d0
AE
11625 /* In E1/E1H use pci device function given by kernel.
11626 * In E2/E3 read physical function from ME register since these chips
11627 * support Physical Device Assignment where kernel BDF maybe arbitrary
11628 * (depending on hypervisor).
11629 */
11630 if (chip_is_e1x)
11631 bp->pf_num = PCI_FUNC(pdev->devfn);
11632 else {/* chip is E2/3*/
11633 pci_read_config_dword(bp->pdev,
11634 PCICFG_ME_REGISTER, &pci_cfg_dword);
11635 bp->pf_num = (u8)((pci_cfg_dword & ME_REG_ABS_PF_NUM) >>
11636 ME_REG_ABS_PF_NUM_SHIFT);
11637 }
51c1a580 11638 BNX2X_DEV_INFO("me reg PF num: %d\n", bp->pf_num);
c22610d0 11639
a2fbb9ea
ET
11640 bnx2x_set_power_state(bp, PCI_D0);
11641
34f80b04
EG
11642 /* clean indirect addresses */
11643 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
11644 PCICFG_VENDOR_ID_OFFSET);
a5c53dbc
DK
11645 /*
11646 * Clean the following indirect addresses for all functions since it
9f0096a1
DK
11647 * is not used by the driver.
11648 */
11649 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F0, 0);
11650 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F0, 0);
11651 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F0, 0);
11652 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F0, 0);
a5c53dbc 11653
65087cfe 11654 if (chip_is_e1x) {
a5c53dbc
DK
11655 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F1, 0);
11656 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F1, 0);
11657 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F1, 0);
11658 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F1, 0);
11659 }
a2fbb9ea 11660
2189400b 11661 /*
619c5cb6 11662 * Enable internal target-read (in case we are probed after PF FLR).
2189400b 11663 * Must be done prior to any BAR read access. Only for 57712 and up
619c5cb6 11664 */
65087cfe 11665 if (!chip_is_e1x)
2189400b 11666 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
619c5cb6 11667
34f80b04 11668 dev->watchdog_timeo = TX_TIMEOUT;
a2fbb9ea 11669
c64213cd 11670 dev->netdev_ops = &bnx2x_netdev_ops;
de0c62db 11671 bnx2x_set_ethtool_ops(dev);
5316bc0b 11672
01789349
JP
11673 dev->priv_flags |= IFF_UNICAST_FLT;
11674
66371c44 11675 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
621b4d66
DK
11676 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
11677 NETIF_F_RXCSUM | NETIF_F_LRO | NETIF_F_GRO |
11678 NETIF_F_RXHASH | NETIF_F_HW_VLAN_TX;
66371c44
MM
11679
11680 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
11681 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_HIGHDMA;
11682
11683 dev->features |= dev->hw_features | NETIF_F_HW_VLAN_RX;
5316bc0b 11684 if (bp->flags & USING_DAC_FLAG)
66371c44 11685 dev->features |= NETIF_F_HIGHDMA;
a2fbb9ea 11686
538dd2e3
MB
11687 /* Add Loopback capability to the device */
11688 dev->hw_features |= NETIF_F_LOOPBACK;
11689
98507672 11690#ifdef BCM_DCBNL
785b9b1a
SR
11691 dev->dcbnl_ops = &bnx2x_dcbnl_ops;
11692#endif
11693
01cd4528
EG
11694 /* get_port_hwinfo() will set prtad and mmds properly */
11695 bp->mdio.prtad = MDIO_PRTAD_NONE;
11696 bp->mdio.mmds = 0;
11697 bp->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
11698 bp->mdio.dev = dev;
11699 bp->mdio.mdio_read = bnx2x_mdio_read;
11700 bp->mdio.mdio_write = bnx2x_mdio_write;
11701
a2fbb9ea
ET
11702 return 0;
11703
a2fbb9ea 11704err_out_release:
34f80b04
EG
11705 if (atomic_read(&pdev->enable_cnt) == 1)
11706 pci_release_regions(pdev);
a2fbb9ea
ET
11707
11708err_out_disable:
11709 pci_disable_device(pdev);
11710 pci_set_drvdata(pdev, NULL);
11711
11712err_out:
11713 return rc;
11714}
11715
0329aba1 11716static void bnx2x_get_pcie_width_speed(struct bnx2x *bp,
37f9ce62 11717 int *width, int *speed)
25047950
ET
11718{
11719 u32 val = REG_RD(bp, PCICFG_OFFSET + PCICFG_LINK_CONTROL);
11720
37f9ce62 11721 *width = (val & PCICFG_LINK_WIDTH) >> PCICFG_LINK_WIDTH_SHIFT;
25047950 11722
37f9ce62
EG
11723 /* return value of 1=2.5GHz 2=5GHz */
11724 *speed = (val & PCICFG_LINK_SPEED) >> PCICFG_LINK_SPEED_SHIFT;
25047950 11725}
37f9ce62 11726
6891dd25 11727static int bnx2x_check_firmware(struct bnx2x *bp)
94a78b79 11728{
37f9ce62 11729 const struct firmware *firmware = bp->firmware;
94a78b79
VZ
11730 struct bnx2x_fw_file_hdr *fw_hdr;
11731 struct bnx2x_fw_file_section *sections;
94a78b79 11732 u32 offset, len, num_ops;
37f9ce62 11733 u16 *ops_offsets;
94a78b79 11734 int i;
37f9ce62 11735 const u8 *fw_ver;
94a78b79 11736
51c1a580
MS
11737 if (firmware->size < sizeof(struct bnx2x_fw_file_hdr)) {
11738 BNX2X_ERR("Wrong FW size\n");
94a78b79 11739 return -EINVAL;
51c1a580 11740 }
94a78b79
VZ
11741
11742 fw_hdr = (struct bnx2x_fw_file_hdr *)firmware->data;
11743 sections = (struct bnx2x_fw_file_section *)fw_hdr;
11744
11745 /* Make sure none of the offsets and sizes make us read beyond
11746 * the end of the firmware data */
11747 for (i = 0; i < sizeof(*fw_hdr) / sizeof(*sections); i++) {
11748 offset = be32_to_cpu(sections[i].offset);
11749 len = be32_to_cpu(sections[i].len);
11750 if (offset + len > firmware->size) {
51c1a580 11751 BNX2X_ERR("Section %d length is out of bounds\n", i);
94a78b79
VZ
11752 return -EINVAL;
11753 }
11754 }
11755
11756 /* Likewise for the init_ops offsets */
11757 offset = be32_to_cpu(fw_hdr->init_ops_offsets.offset);
11758 ops_offsets = (u16 *)(firmware->data + offset);
11759 num_ops = be32_to_cpu(fw_hdr->init_ops.len) / sizeof(struct raw_op);
11760
11761 for (i = 0; i < be32_to_cpu(fw_hdr->init_ops_offsets.len) / 2; i++) {
11762 if (be16_to_cpu(ops_offsets[i]) > num_ops) {
51c1a580 11763 BNX2X_ERR("Section offset %d is out of bounds\n", i);
94a78b79
VZ
11764 return -EINVAL;
11765 }
11766 }
11767
11768 /* Check FW version */
11769 offset = be32_to_cpu(fw_hdr->fw_version.offset);
11770 fw_ver = firmware->data + offset;
11771 if ((fw_ver[0] != BCM_5710_FW_MAJOR_VERSION) ||
11772 (fw_ver[1] != BCM_5710_FW_MINOR_VERSION) ||
11773 (fw_ver[2] != BCM_5710_FW_REVISION_VERSION) ||
11774 (fw_ver[3] != BCM_5710_FW_ENGINEERING_VERSION)) {
51c1a580
MS
11775 BNX2X_ERR("Bad FW version:%d.%d.%d.%d. Should be %d.%d.%d.%d\n",
11776 fw_ver[0], fw_ver[1], fw_ver[2], fw_ver[3],
11777 BCM_5710_FW_MAJOR_VERSION,
94a78b79
VZ
11778 BCM_5710_FW_MINOR_VERSION,
11779 BCM_5710_FW_REVISION_VERSION,
11780 BCM_5710_FW_ENGINEERING_VERSION);
ab6ad5a4 11781 return -EINVAL;
94a78b79
VZ
11782 }
11783
11784 return 0;
11785}
11786
1191cb83 11787static void be32_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 11788{
ab6ad5a4
EG
11789 const __be32 *source = (const __be32 *)_source;
11790 u32 *target = (u32 *)_target;
94a78b79 11791 u32 i;
94a78b79
VZ
11792
11793 for (i = 0; i < n/4; i++)
11794 target[i] = be32_to_cpu(source[i]);
11795}
11796
11797/*
11798 Ops array is stored in the following format:
11799 {op(8bit), offset(24bit, big endian), data(32bit, big endian)}
11800 */
1191cb83 11801static void bnx2x_prep_ops(const u8 *_source, u8 *_target, u32 n)
94a78b79 11802{
ab6ad5a4
EG
11803 const __be32 *source = (const __be32 *)_source;
11804 struct raw_op *target = (struct raw_op *)_target;
94a78b79 11805 u32 i, j, tmp;
94a78b79 11806
ab6ad5a4 11807 for (i = 0, j = 0; i < n/8; i++, j += 2) {
94a78b79
VZ
11808 tmp = be32_to_cpu(source[j]);
11809 target[i].op = (tmp >> 24) & 0xff;
cdaa7cb8
VZ
11810 target[i].offset = tmp & 0xffffff;
11811 target[i].raw_data = be32_to_cpu(source[j + 1]);
94a78b79
VZ
11812 }
11813}
ab6ad5a4 11814
1aa8b471 11815/* IRO array is stored in the following format:
523224a3
DK
11816 * {base(24bit), m1(16bit), m2(16bit), m3(16bit), size(16bit) }
11817 */
1191cb83 11818static void bnx2x_prep_iro(const u8 *_source, u8 *_target, u32 n)
523224a3
DK
11819{
11820 const __be32 *source = (const __be32 *)_source;
11821 struct iro *target = (struct iro *)_target;
11822 u32 i, j, tmp;
11823
11824 for (i = 0, j = 0; i < n/sizeof(struct iro); i++) {
11825 target[i].base = be32_to_cpu(source[j]);
11826 j++;
11827 tmp = be32_to_cpu(source[j]);
11828 target[i].m1 = (tmp >> 16) & 0xffff;
11829 target[i].m2 = tmp & 0xffff;
11830 j++;
11831 tmp = be32_to_cpu(source[j]);
11832 target[i].m3 = (tmp >> 16) & 0xffff;
11833 target[i].size = tmp & 0xffff;
11834 j++;
11835 }
11836}
11837
1191cb83 11838static void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 11839{
ab6ad5a4
EG
11840 const __be16 *source = (const __be16 *)_source;
11841 u16 *target = (u16 *)_target;
94a78b79 11842 u32 i;
94a78b79
VZ
11843
11844 for (i = 0; i < n/2; i++)
11845 target[i] = be16_to_cpu(source[i]);
11846}
11847
7995c64e
JP
11848#define BNX2X_ALLOC_AND_SET(arr, lbl, func) \
11849do { \
11850 u32 len = be32_to_cpu(fw_hdr->arr.len); \
11851 bp->arr = kmalloc(len, GFP_KERNEL); \
e404decb 11852 if (!bp->arr) \
7995c64e 11853 goto lbl; \
7995c64e
JP
11854 func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
11855 (u8 *)bp->arr, len); \
11856} while (0)
94a78b79 11857
3b603066 11858static int bnx2x_init_firmware(struct bnx2x *bp)
94a78b79 11859{
c0ea452e 11860 const char *fw_file_name;
94a78b79 11861 struct bnx2x_fw_file_hdr *fw_hdr;
45229b42 11862 int rc;
94a78b79 11863
c0ea452e
MS
11864 if (bp->firmware)
11865 return 0;
94a78b79 11866
c0ea452e
MS
11867 if (CHIP_IS_E1(bp))
11868 fw_file_name = FW_FILE_NAME_E1;
11869 else if (CHIP_IS_E1H(bp))
11870 fw_file_name = FW_FILE_NAME_E1H;
11871 else if (!CHIP_IS_E1x(bp))
11872 fw_file_name = FW_FILE_NAME_E2;
11873 else {
11874 BNX2X_ERR("Unsupported chip revision\n");
11875 return -EINVAL;
11876 }
11877 BNX2X_DEV_INFO("Loading %s\n", fw_file_name);
94a78b79 11878
c0ea452e
MS
11879 rc = request_firmware(&bp->firmware, fw_file_name, &bp->pdev->dev);
11880 if (rc) {
11881 BNX2X_ERR("Can't load firmware file %s\n",
11882 fw_file_name);
11883 goto request_firmware_exit;
11884 }
eb2afd4a 11885
c0ea452e
MS
11886 rc = bnx2x_check_firmware(bp);
11887 if (rc) {
11888 BNX2X_ERR("Corrupt firmware file %s\n", fw_file_name);
11889 goto request_firmware_exit;
94a78b79
VZ
11890 }
11891
11892 fw_hdr = (struct bnx2x_fw_file_hdr *)bp->firmware->data;
11893
11894 /* Initialize the pointers to the init arrays */
11895 /* Blob */
11896 BNX2X_ALLOC_AND_SET(init_data, request_firmware_exit, be32_to_cpu_n);
11897
11898 /* Opcodes */
11899 BNX2X_ALLOC_AND_SET(init_ops, init_ops_alloc_err, bnx2x_prep_ops);
11900
11901 /* Offsets */
ab6ad5a4
EG
11902 BNX2X_ALLOC_AND_SET(init_ops_offsets, init_offsets_alloc_err,
11903 be16_to_cpu_n);
94a78b79
VZ
11904
11905 /* STORMs firmware */
573f2035
EG
11906 INIT_TSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
11907 be32_to_cpu(fw_hdr->tsem_int_table_data.offset);
11908 INIT_TSEM_PRAM_DATA(bp) = bp->firmware->data +
11909 be32_to_cpu(fw_hdr->tsem_pram_data.offset);
11910 INIT_USEM_INT_TABLE_DATA(bp) = bp->firmware->data +
11911 be32_to_cpu(fw_hdr->usem_int_table_data.offset);
11912 INIT_USEM_PRAM_DATA(bp) = bp->firmware->data +
11913 be32_to_cpu(fw_hdr->usem_pram_data.offset);
11914 INIT_XSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
11915 be32_to_cpu(fw_hdr->xsem_int_table_data.offset);
11916 INIT_XSEM_PRAM_DATA(bp) = bp->firmware->data +
11917 be32_to_cpu(fw_hdr->xsem_pram_data.offset);
11918 INIT_CSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
11919 be32_to_cpu(fw_hdr->csem_int_table_data.offset);
11920 INIT_CSEM_PRAM_DATA(bp) = bp->firmware->data +
11921 be32_to_cpu(fw_hdr->csem_pram_data.offset);
523224a3
DK
11922 /* IRO */
11923 BNX2X_ALLOC_AND_SET(iro_arr, iro_alloc_err, bnx2x_prep_iro);
94a78b79
VZ
11924
11925 return 0;
ab6ad5a4 11926
523224a3
DK
11927iro_alloc_err:
11928 kfree(bp->init_ops_offsets);
94a78b79
VZ
11929init_offsets_alloc_err:
11930 kfree(bp->init_ops);
11931init_ops_alloc_err:
11932 kfree(bp->init_data);
11933request_firmware_exit:
11934 release_firmware(bp->firmware);
127d0a19 11935 bp->firmware = NULL;
94a78b79
VZ
11936
11937 return rc;
11938}
11939
619c5cb6
VZ
11940static void bnx2x_release_firmware(struct bnx2x *bp)
11941{
11942 kfree(bp->init_ops_offsets);
11943 kfree(bp->init_ops);
11944 kfree(bp->init_data);
11945 release_firmware(bp->firmware);
eb2afd4a 11946 bp->firmware = NULL;
619c5cb6
VZ
11947}
11948
11949
11950static struct bnx2x_func_sp_drv_ops bnx2x_func_sp_drv = {
11951 .init_hw_cmn_chip = bnx2x_init_hw_common_chip,
11952 .init_hw_cmn = bnx2x_init_hw_common,
11953 .init_hw_port = bnx2x_init_hw_port,
11954 .init_hw_func = bnx2x_init_hw_func,
11955
11956 .reset_hw_cmn = bnx2x_reset_common,
11957 .reset_hw_port = bnx2x_reset_port,
11958 .reset_hw_func = bnx2x_reset_func,
11959
11960 .gunzip_init = bnx2x_gunzip_init,
11961 .gunzip_end = bnx2x_gunzip_end,
11962
11963 .init_fw = bnx2x_init_firmware,
11964 .release_fw = bnx2x_release_firmware,
11965};
11966
11967void bnx2x__init_func_obj(struct bnx2x *bp)
11968{
11969 /* Prepare DMAE related driver resources */
11970 bnx2x_setup_dmae(bp);
11971
11972 bnx2x_init_func_obj(bp, &bp->func_obj,
11973 bnx2x_sp(bp, func_rdata),
11974 bnx2x_sp_mapping(bp, func_rdata),
a3348722
BW
11975 bnx2x_sp(bp, func_afex_rdata),
11976 bnx2x_sp_mapping(bp, func_afex_rdata),
619c5cb6
VZ
11977 &bnx2x_func_sp_drv);
11978}
11979
11980/* must be called after sriov-enable */
1191cb83 11981static int bnx2x_set_qm_cid_count(struct bnx2x *bp)
523224a3 11982{
37ae41a9 11983 int cid_count = BNX2X_L2_MAX_CID(bp);
94a78b79 11984
55c11941
MS
11985 if (CNIC_SUPPORT(bp))
11986 cid_count += CNIC_CID_MAX;
523224a3
DK
11987 return roundup(cid_count, QM_CID_ROUND);
11988}
f85582f8 11989
619c5cb6 11990/**
6383c0b3 11991 * bnx2x_get_num_none_def_sbs - return the number of none default SBs
619c5cb6
VZ
11992 *
11993 * @dev: pci device
11994 *
11995 */
55c11941
MS
11996static int bnx2x_get_num_non_def_sbs(struct pci_dev *pdev,
11997 int cnic_cnt)
619c5cb6
VZ
11998{
11999 int pos;
12000 u16 control;
12001
12002 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
6383c0b3
AE
12003
12004 /*
12005 * If MSI-X is not supported - return number of SBs needed to support
12006 * one fast path queue: one FP queue + SB for CNIC
12007 */
619c5cb6 12008 if (!pos)
55c11941 12009 return 1 + cnic_cnt;
619c5cb6 12010
6383c0b3
AE
12011 /*
12012 * The value in the PCI configuration space is the index of the last
12013 * entry, namely one less than the actual size of the table, which is
12014 * exactly what we want to return from this function: number of all SBs
12015 * without the default SB.
12016 */
619c5cb6 12017 pci_read_config_word(pdev, pos + PCI_MSI_FLAGS, &control);
6383c0b3 12018 return control & PCI_MSIX_FLAGS_QSIZE;
619c5cb6
VZ
12019}
12020
4bd9b0ff
MC
12021struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *);
12022
0329aba1 12023static int bnx2x_init_one(struct pci_dev *pdev,
a2fbb9ea
ET
12024 const struct pci_device_id *ent)
12025{
a2fbb9ea
ET
12026 struct net_device *dev = NULL;
12027 struct bnx2x *bp;
37f9ce62 12028 int pcie_width, pcie_speed;
6383c0b3 12029 int rc, max_non_def_sbs;
65565884 12030 int rx_count, tx_count, rss_count, doorbell_size;
55c11941 12031 int cnic_cnt;
6383c0b3
AE
12032 /*
12033 * An estimated maximum supported CoS number according to the chip
12034 * version.
12035 * We will try to roughly estimate the maximum number of CoSes this chip
12036 * may support in order to minimize the memory allocated for Tx
12037 * netdev_queue's. This number will be accurately calculated during the
12038 * initialization of bp->max_cos based on the chip versions AND chip
12039 * revision in the bnx2x_init_bp().
12040 */
12041 u8 max_cos_est = 0;
523224a3 12042
f2e0899f
DK
12043 switch (ent->driver_data) {
12044 case BCM57710:
12045 case BCM57711:
12046 case BCM57711E:
6383c0b3
AE
12047 max_cos_est = BNX2X_MULTI_TX_COS_E1X;
12048 break;
12049
f2e0899f 12050 case BCM57712:
619c5cb6 12051 case BCM57712_MF:
6383c0b3
AE
12052 max_cos_est = BNX2X_MULTI_TX_COS_E2_E3A0;
12053 break;
12054
619c5cb6
VZ
12055 case BCM57800:
12056 case BCM57800_MF:
12057 case BCM57810:
12058 case BCM57810_MF:
c3def943
YM
12059 case BCM57840_O:
12060 case BCM57840_4_10:
12061 case BCM57840_2_20:
12062 case BCM57840_MFO:
619c5cb6 12063 case BCM57840_MF:
7e8e02df
BW
12064 case BCM57811:
12065 case BCM57811_MF:
6383c0b3 12066 max_cos_est = BNX2X_MULTI_TX_COS_E3B0;
f2e0899f 12067 break;
a2fbb9ea 12068
f2e0899f
DK
12069 default:
12070 pr_err("Unknown board_type (%ld), aborting\n",
12071 ent->driver_data);
870634b0 12072 return -ENODEV;
f2e0899f
DK
12073 }
12074
55c11941
MS
12075 cnic_cnt = 1;
12076 max_non_def_sbs = bnx2x_get_num_non_def_sbs(pdev, cnic_cnt);
6383c0b3 12077
6383c0b3
AE
12078 WARN_ON(!max_non_def_sbs);
12079
12080 /* Maximum number of RSS queues: one IGU SB goes to CNIC */
55c11941 12081 rss_count = max_non_def_sbs - cnic_cnt;
6383c0b3
AE
12082
12083 /* Maximum number of netdev Rx queues: RSS + FCoE L2 */
55c11941 12084 rx_count = rss_count + cnic_cnt;
6383c0b3
AE
12085
12086 /*
12087 * Maximum number of netdev Tx queues:
37ae41a9 12088 * Maximum TSS queues * Maximum supported number of CoS + FCoE L2
6383c0b3 12089 */
55c11941 12090 tx_count = rss_count * max_cos_est + cnic_cnt;
f85582f8 12091
a2fbb9ea 12092 /* dev zeroed in init_etherdev */
6383c0b3 12093 dev = alloc_etherdev_mqs(sizeof(*bp), tx_count, rx_count);
41de8d4c 12094 if (!dev)
a2fbb9ea
ET
12095 return -ENOMEM;
12096
a2fbb9ea 12097 bp = netdev_priv(dev);
a2fbb9ea 12098
6383c0b3
AE
12099 bp->igu_sb_cnt = max_non_def_sbs;
12100 bp->msg_enable = debug;
55c11941 12101 bp->cnic_support = cnic_cnt;
4bd9b0ff 12102 bp->cnic_probe = bnx2x_cnic_probe;
55c11941 12103
6383c0b3 12104 pci_set_drvdata(pdev, dev);
523224a3 12105
619c5cb6 12106 rc = bnx2x_init_dev(pdev, dev, ent->driver_data);
a2fbb9ea
ET
12107 if (rc < 0) {
12108 free_netdev(dev);
12109 return rc;
12110 }
12111
55c11941 12112 BNX2X_DEV_INFO("Cnic support is %s\n", CNIC_SUPPORT(bp) ? "on" : "off");
51c1a580 12113 BNX2X_DEV_INFO("max_non_def_sbs %d\n", max_non_def_sbs);
619c5cb6 12114
60aa0509
MS
12115 BNX2X_DEV_INFO("Allocated netdev with %d tx and %d rx queues\n",
12116 tx_count, rx_count);
12117
34f80b04 12118 rc = bnx2x_init_bp(bp);
693fc0d1
EG
12119 if (rc)
12120 goto init_one_exit;
12121
6383c0b3
AE
12122 /*
12123 * Map doorbels here as we need the real value of bp->max_cos which
12124 * is initialized in bnx2x_init_bp().
12125 */
37ae41a9
MS
12126 doorbell_size = BNX2X_L2_MAX_CID(bp) * (1 << BNX2X_DB_SHIFT);
12127 if (doorbell_size > pci_resource_len(pdev, 2)) {
12128 dev_err(&bp->pdev->dev,
12129 "Cannot map doorbells, bar size too small, aborting\n");
12130 rc = -ENOMEM;
12131 goto init_one_exit;
12132 }
6383c0b3 12133 bp->doorbells = ioremap_nocache(pci_resource_start(pdev, 2),
37ae41a9 12134 doorbell_size);
6383c0b3
AE
12135 if (!bp->doorbells) {
12136 dev_err(&bp->pdev->dev,
12137 "Cannot map doorbell space, aborting\n");
12138 rc = -ENOMEM;
12139 goto init_one_exit;
12140 }
12141
523224a3 12142 /* calc qm_cid_count */
6383c0b3 12143 bp->qm_cid_count = bnx2x_set_qm_cid_count(bp);
523224a3 12144
55c11941 12145 /* disable FCOE L2 queue for E1x*/
62ac0dc9 12146 if (CHIP_IS_E1x(bp))
ec6ba945
VZ
12147 bp->flags |= NO_FCOE_FLAG;
12148
477864dd
DK
12149 /* disable FCOE for 57840 device, until FW supports it */
12150 switch (ent->driver_data) {
12151 case BCM57840_O:
12152 case BCM57840_4_10:
12153 case BCM57840_2_20:
12154 case BCM57840_MFO:
12155 case BCM57840_MF:
12156 bp->flags |= NO_FCOE_FLAG;
12157 }
0e8d2ec5
MS
12158
12159 /* Set bp->num_queues for MSI-X mode*/
12160 bnx2x_set_num_queues(bp);
12161
25985edc 12162 /* Configure interrupt mode: try to enable MSI-X/MSI if
0e8d2ec5 12163 * needed.
d6214d7a
DK
12164 */
12165 bnx2x_set_int_mode(bp);
12166
b340007f
VZ
12167 rc = register_netdev(dev);
12168 if (rc) {
12169 dev_err(&pdev->dev, "Cannot register net device\n");
12170 goto init_one_exit;
12171 }
12172
55c11941 12173
ec6ba945
VZ
12174 if (!NO_FCOE(bp)) {
12175 /* Add storage MAC address */
12176 rtnl_lock();
12177 dev_addr_add(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12178 rtnl_unlock();
12179 }
ec6ba945 12180
37f9ce62 12181 bnx2x_get_pcie_width_speed(bp, &pcie_width, &pcie_speed);
d6214d7a 12182
51c1a580
MS
12183 BNX2X_DEV_INFO(
12184 "%s (%c%d) PCI-E x%d %s found at mem %lx, IRQ %d, node addr %pM\n",
94f05b0f
JP
12185 board_info[ent->driver_data].name,
12186 (CHIP_REV(bp) >> 12) + 'A', (CHIP_METAL(bp) >> 4),
12187 pcie_width,
12188 ((!CHIP_IS_E2(bp) && pcie_speed == 2) ||
12189 (CHIP_IS_E2(bp) && pcie_speed == 1)) ?
12190 "5GHz (Gen2)" : "2.5GHz",
12191 dev->base_addr, bp->pdev->irq, dev->dev_addr);
c016201c 12192
a2fbb9ea 12193 return 0;
34f80b04
EG
12194
12195init_one_exit:
12196 if (bp->regview)
12197 iounmap(bp->regview);
12198
12199 if (bp->doorbells)
12200 iounmap(bp->doorbells);
12201
12202 free_netdev(dev);
12203
12204 if (atomic_read(&pdev->enable_cnt) == 1)
12205 pci_release_regions(pdev);
12206
12207 pci_disable_device(pdev);
12208 pci_set_drvdata(pdev, NULL);
12209
12210 return rc;
a2fbb9ea
ET
12211}
12212
0329aba1 12213static void bnx2x_remove_one(struct pci_dev *pdev)
a2fbb9ea
ET
12214{
12215 struct net_device *dev = pci_get_drvdata(pdev);
228241eb
ET
12216 struct bnx2x *bp;
12217
12218 if (!dev) {
cdaa7cb8 12219 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
228241eb
ET
12220 return;
12221 }
228241eb 12222 bp = netdev_priv(dev);
a2fbb9ea 12223
ec6ba945
VZ
12224 /* Delete storage MAC address */
12225 if (!NO_FCOE(bp)) {
12226 rtnl_lock();
12227 dev_addr_del(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12228 rtnl_unlock();
12229 }
ec6ba945 12230
98507672
SR
12231#ifdef BCM_DCBNL
12232 /* Delete app tlvs from dcbnl */
12233 bnx2x_dcbnl_update_applist(bp, true);
12234#endif
12235
a2fbb9ea
ET
12236 unregister_netdev(dev);
12237
084d6cbb
VZ
12238 /* Power on: we can't let PCI layer write to us while we are in D3 */
12239 bnx2x_set_power_state(bp, PCI_D0);
12240
d6214d7a
DK
12241 /* Disable MSI/MSI-X */
12242 bnx2x_disable_msi(bp);
f85582f8 12243
084d6cbb
VZ
12244 /* Power off */
12245 bnx2x_set_power_state(bp, PCI_D3hot);
12246
72fd0718 12247 /* Make sure RESET task is not scheduled before continuing */
7be08a72 12248 cancel_delayed_work_sync(&bp->sp_rtnl_task);
72fd0718 12249
a2fbb9ea
ET
12250 if (bp->regview)
12251 iounmap(bp->regview);
12252
12253 if (bp->doorbells)
12254 iounmap(bp->doorbells);
12255
eb2afd4a
DK
12256 bnx2x_release_firmware(bp);
12257
523224a3
DK
12258 bnx2x_free_mem_bp(bp);
12259
a2fbb9ea 12260 free_netdev(dev);
34f80b04
EG
12261
12262 if (atomic_read(&pdev->enable_cnt) == 1)
12263 pci_release_regions(pdev);
12264
a2fbb9ea
ET
12265 pci_disable_device(pdev);
12266 pci_set_drvdata(pdev, NULL);
12267}
12268
f8ef6e44
YG
12269static int bnx2x_eeh_nic_unload(struct bnx2x *bp)
12270{
12271 int i;
12272
12273 bp->state = BNX2X_STATE_ERROR;
12274
12275 bp->rx_mode = BNX2X_RX_MODE_NONE;
12276
55c11941
MS
12277 if (CNIC_LOADED(bp))
12278 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
12279
619c5cb6
VZ
12280 /* Stop Tx */
12281 bnx2x_tx_disable(bp);
12282
f8ef6e44 12283 bnx2x_netif_stop(bp, 0);
26614ba5
MS
12284 /* Delete all NAPI objects */
12285 bnx2x_del_all_napi(bp);
55c11941
MS
12286 if (CNIC_LOADED(bp))
12287 bnx2x_del_all_napi_cnic(bp);
f8ef6e44
YG
12288
12289 del_timer_sync(&bp->timer);
619c5cb6
VZ
12290
12291 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
f8ef6e44
YG
12292
12293 /* Release IRQs */
d6214d7a 12294 bnx2x_free_irq(bp);
f8ef6e44 12295
f8ef6e44
YG
12296 /* Free SKBs, SGEs, TPA pool and driver internals */
12297 bnx2x_free_skbs(bp);
523224a3 12298
ec6ba945 12299 for_each_rx_queue(bp, i)
f8ef6e44 12300 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
d6214d7a 12301
f8ef6e44
YG
12302 bnx2x_free_mem(bp);
12303
12304 bp->state = BNX2X_STATE_CLOSED;
12305
619c5cb6
VZ
12306 netif_carrier_off(bp->dev);
12307
f8ef6e44
YG
12308 return 0;
12309}
12310
12311static void bnx2x_eeh_recover(struct bnx2x *bp)
12312{
12313 u32 val;
12314
12315 mutex_init(&bp->port.phy_mutex);
12316
f8ef6e44
YG
12317
12318 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
12319 if ((val & (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12320 != (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12321 BNX2X_ERR("BAD MCP validity signature\n");
f8ef6e44
YG
12322}
12323
493adb1f
WX
12324/**
12325 * bnx2x_io_error_detected - called when PCI error is detected
12326 * @pdev: Pointer to PCI device
12327 * @state: The current pci connection state
12328 *
12329 * This function is called after a PCI bus error affecting
12330 * this device has been detected.
12331 */
12332static pci_ers_result_t bnx2x_io_error_detected(struct pci_dev *pdev,
12333 pci_channel_state_t state)
12334{
12335 struct net_device *dev = pci_get_drvdata(pdev);
12336 struct bnx2x *bp = netdev_priv(dev);
12337
12338 rtnl_lock();
12339
12340 netif_device_detach(dev);
12341
07ce50e4
DN
12342 if (state == pci_channel_io_perm_failure) {
12343 rtnl_unlock();
12344 return PCI_ERS_RESULT_DISCONNECT;
12345 }
12346
493adb1f 12347 if (netif_running(dev))
f8ef6e44 12348 bnx2x_eeh_nic_unload(bp);
493adb1f
WX
12349
12350 pci_disable_device(pdev);
12351
12352 rtnl_unlock();
12353
12354 /* Request a slot reset */
12355 return PCI_ERS_RESULT_NEED_RESET;
12356}
12357
12358/**
12359 * bnx2x_io_slot_reset - called after the PCI bus has been reset
12360 * @pdev: Pointer to PCI device
12361 *
12362 * Restart the card from scratch, as if from a cold-boot.
12363 */
12364static pci_ers_result_t bnx2x_io_slot_reset(struct pci_dev *pdev)
12365{
12366 struct net_device *dev = pci_get_drvdata(pdev);
12367 struct bnx2x *bp = netdev_priv(dev);
12368
12369 rtnl_lock();
12370
12371 if (pci_enable_device(pdev)) {
12372 dev_err(&pdev->dev,
12373 "Cannot re-enable PCI device after reset\n");
12374 rtnl_unlock();
12375 return PCI_ERS_RESULT_DISCONNECT;
12376 }
12377
12378 pci_set_master(pdev);
12379 pci_restore_state(pdev);
12380
12381 if (netif_running(dev))
12382 bnx2x_set_power_state(bp, PCI_D0);
12383
12384 rtnl_unlock();
12385
12386 return PCI_ERS_RESULT_RECOVERED;
12387}
12388
12389/**
12390 * bnx2x_io_resume - called when traffic can start flowing again
12391 * @pdev: Pointer to PCI device
12392 *
12393 * This callback is called when the error recovery driver tells us that
12394 * its OK to resume normal operation.
12395 */
12396static void bnx2x_io_resume(struct pci_dev *pdev)
12397{
12398 struct net_device *dev = pci_get_drvdata(pdev);
12399 struct bnx2x *bp = netdev_priv(dev);
12400
72fd0718 12401 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 12402 netdev_err(bp->dev, "Handling parity error recovery. Try again later\n");
72fd0718
VZ
12403 return;
12404 }
12405
493adb1f
WX
12406 rtnl_lock();
12407
f8ef6e44
YG
12408 bnx2x_eeh_recover(bp);
12409
493adb1f 12410 if (netif_running(dev))
f8ef6e44 12411 bnx2x_nic_load(bp, LOAD_NORMAL);
493adb1f
WX
12412
12413 netif_device_attach(dev);
12414
12415 rtnl_unlock();
12416}
12417
3646f0e5 12418static const struct pci_error_handlers bnx2x_err_handler = {
493adb1f 12419 .error_detected = bnx2x_io_error_detected,
356e2385
EG
12420 .slot_reset = bnx2x_io_slot_reset,
12421 .resume = bnx2x_io_resume,
493adb1f
WX
12422};
12423
a2fbb9ea 12424static struct pci_driver bnx2x_pci_driver = {
493adb1f
WX
12425 .name = DRV_MODULE_NAME,
12426 .id_table = bnx2x_pci_tbl,
12427 .probe = bnx2x_init_one,
0329aba1 12428 .remove = bnx2x_remove_one,
493adb1f
WX
12429 .suspend = bnx2x_suspend,
12430 .resume = bnx2x_resume,
12431 .err_handler = &bnx2x_err_handler,
a2fbb9ea
ET
12432};
12433
12434static int __init bnx2x_init(void)
12435{
dd21ca6d
SG
12436 int ret;
12437
7995c64e 12438 pr_info("%s", version);
938cf541 12439
1cf167f2
EG
12440 bnx2x_wq = create_singlethread_workqueue("bnx2x");
12441 if (bnx2x_wq == NULL) {
7995c64e 12442 pr_err("Cannot create workqueue\n");
1cf167f2
EG
12443 return -ENOMEM;
12444 }
12445
dd21ca6d
SG
12446 ret = pci_register_driver(&bnx2x_pci_driver);
12447 if (ret) {
7995c64e 12448 pr_err("Cannot register driver\n");
dd21ca6d
SG
12449 destroy_workqueue(bnx2x_wq);
12450 }
12451 return ret;
a2fbb9ea
ET
12452}
12453
12454static void __exit bnx2x_cleanup(void)
12455{
452427b0 12456 struct list_head *pos, *q;
a2fbb9ea 12457 pci_unregister_driver(&bnx2x_pci_driver);
1cf167f2
EG
12458
12459 destroy_workqueue(bnx2x_wq);
452427b0
YM
12460
12461 /* Free globablly allocated resources */
12462 list_for_each_safe(pos, q, &bnx2x_prev_list) {
12463 struct bnx2x_prev_path_list *tmp =
12464 list_entry(pos, struct bnx2x_prev_path_list, list);
12465 list_del(pos);
12466 kfree(tmp);
12467 }
a2fbb9ea
ET
12468}
12469
3deb8167
YR
12470void bnx2x_notify_link_changed(struct bnx2x *bp)
12471{
12472 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + BP_FUNC(bp)*sizeof(u32), 1);
12473}
12474
a2fbb9ea
ET
12475module_init(bnx2x_init);
12476module_exit(bnx2x_cleanup);
12477
619c5cb6
VZ
12478/**
12479 * bnx2x_set_iscsi_eth_mac_addr - set iSCSI MAC(s).
12480 *
12481 * @bp: driver handle
12482 * @set: set or clear the CAM entry
12483 *
12484 * This function will wait until the ramdord completion returns.
12485 * Return 0 if success, -ENODEV if ramrod doesn't return.
12486 */
1191cb83 12487static int bnx2x_set_iscsi_eth_mac_addr(struct bnx2x *bp)
619c5cb6
VZ
12488{
12489 unsigned long ramrod_flags = 0;
12490
12491 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
12492 return bnx2x_set_mac_one(bp, bp->cnic_eth_dev.iscsi_mac,
12493 &bp->iscsi_l2_mac_obj, true,
12494 BNX2X_ISCSI_ETH_MAC, &ramrod_flags);
12495}
993ac7b5
MC
12496
12497/* count denotes the number of new completions we have seen */
12498static void bnx2x_cnic_sp_post(struct bnx2x *bp, int count)
12499{
12500 struct eth_spe *spe;
a052997e 12501 int cxt_index, cxt_offset;
993ac7b5
MC
12502
12503#ifdef BNX2X_STOP_ON_ERROR
12504 if (unlikely(bp->panic))
12505 return;
12506#endif
12507
12508 spin_lock_bh(&bp->spq_lock);
c2bff63f 12509 BUG_ON(bp->cnic_spq_pending < count);
993ac7b5
MC
12510 bp->cnic_spq_pending -= count;
12511
993ac7b5 12512
c2bff63f
DK
12513 for (; bp->cnic_kwq_pending; bp->cnic_kwq_pending--) {
12514 u16 type = (le16_to_cpu(bp->cnic_kwq_cons->hdr.type)
12515 & SPE_HDR_CONN_TYPE) >>
12516 SPE_HDR_CONN_TYPE_SHIFT;
619c5cb6
VZ
12517 u8 cmd = (le32_to_cpu(bp->cnic_kwq_cons->hdr.conn_and_cmd_data)
12518 >> SPE_HDR_CMD_ID_SHIFT) & 0xff;
c2bff63f
DK
12519
12520 /* Set validation for iSCSI L2 client before sending SETUP
12521 * ramrod
12522 */
12523 if (type == ETH_CONNECTION_TYPE) {
a052997e 12524 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP) {
37ae41a9 12525 cxt_index = BNX2X_ISCSI_ETH_CID(bp) /
a052997e 12526 ILT_PAGE_CIDS;
37ae41a9 12527 cxt_offset = BNX2X_ISCSI_ETH_CID(bp) -
a052997e
MS
12528 (cxt_index * ILT_PAGE_CIDS);
12529 bnx2x_set_ctx_validation(bp,
12530 &bp->context[cxt_index].
12531 vcxt[cxt_offset].eth,
37ae41a9 12532 BNX2X_ISCSI_ETH_CID(bp));
a052997e 12533 }
c2bff63f
DK
12534 }
12535
619c5cb6
VZ
12536 /*
12537 * There may be not more than 8 L2, not more than 8 L5 SPEs
12538 * and in the air. We also check that number of outstanding
6e30dd4e
VZ
12539 * COMMON ramrods is not more than the EQ and SPQ can
12540 * accommodate.
c2bff63f 12541 */
6e30dd4e
VZ
12542 if (type == ETH_CONNECTION_TYPE) {
12543 if (!atomic_read(&bp->cq_spq_left))
12544 break;
12545 else
12546 atomic_dec(&bp->cq_spq_left);
12547 } else if (type == NONE_CONNECTION_TYPE) {
12548 if (!atomic_read(&bp->eq_spq_left))
c2bff63f
DK
12549 break;
12550 else
6e30dd4e 12551 atomic_dec(&bp->eq_spq_left);
ec6ba945
VZ
12552 } else if ((type == ISCSI_CONNECTION_TYPE) ||
12553 (type == FCOE_CONNECTION_TYPE)) {
c2bff63f
DK
12554 if (bp->cnic_spq_pending >=
12555 bp->cnic_eth_dev.max_kwqe_pending)
12556 break;
12557 else
12558 bp->cnic_spq_pending++;
12559 } else {
12560 BNX2X_ERR("Unknown SPE type: %d\n", type);
12561 bnx2x_panic();
993ac7b5 12562 break;
c2bff63f 12563 }
993ac7b5
MC
12564
12565 spe = bnx2x_sp_get_next(bp);
12566 *spe = *bp->cnic_kwq_cons;
12567
51c1a580 12568 DP(BNX2X_MSG_SP, "pending on SPQ %d, on KWQ %d count %d\n",
993ac7b5
MC
12569 bp->cnic_spq_pending, bp->cnic_kwq_pending, count);
12570
12571 if (bp->cnic_kwq_cons == bp->cnic_kwq_last)
12572 bp->cnic_kwq_cons = bp->cnic_kwq;
12573 else
12574 bp->cnic_kwq_cons++;
12575 }
12576 bnx2x_sp_prod_update(bp);
12577 spin_unlock_bh(&bp->spq_lock);
12578}
12579
12580static int bnx2x_cnic_sp_queue(struct net_device *dev,
12581 struct kwqe_16 *kwqes[], u32 count)
12582{
12583 struct bnx2x *bp = netdev_priv(dev);
12584 int i;
12585
12586#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
12587 if (unlikely(bp->panic)) {
12588 BNX2X_ERR("Can't post to SP queue while panic\n");
993ac7b5 12589 return -EIO;
51c1a580 12590 }
993ac7b5
MC
12591#endif
12592
95c6c616
AE
12593 if ((bp->recovery_state != BNX2X_RECOVERY_DONE) &&
12594 (bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
51c1a580 12595 BNX2X_ERR("Handling parity error recovery. Try again later\n");
95c6c616
AE
12596 return -EAGAIN;
12597 }
12598
993ac7b5
MC
12599 spin_lock_bh(&bp->spq_lock);
12600
12601 for (i = 0; i < count; i++) {
12602 struct eth_spe *spe = (struct eth_spe *)kwqes[i];
12603
12604 if (bp->cnic_kwq_pending == MAX_SP_DESC_CNT)
12605 break;
12606
12607 *bp->cnic_kwq_prod = *spe;
12608
12609 bp->cnic_kwq_pending++;
12610
51c1a580 12611 DP(BNX2X_MSG_SP, "L5 SPQE %x %x %x:%x pos %d\n",
993ac7b5 12612 spe->hdr.conn_and_cmd_data, spe->hdr.type,
523224a3
DK
12613 spe->data.update_data_addr.hi,
12614 spe->data.update_data_addr.lo,
993ac7b5
MC
12615 bp->cnic_kwq_pending);
12616
12617 if (bp->cnic_kwq_prod == bp->cnic_kwq_last)
12618 bp->cnic_kwq_prod = bp->cnic_kwq;
12619 else
12620 bp->cnic_kwq_prod++;
12621 }
12622
12623 spin_unlock_bh(&bp->spq_lock);
12624
12625 if (bp->cnic_spq_pending < bp->cnic_eth_dev.max_kwqe_pending)
12626 bnx2x_cnic_sp_post(bp, 0);
12627
12628 return i;
12629}
12630
12631static int bnx2x_cnic_ctl_send(struct bnx2x *bp, struct cnic_ctl_info *ctl)
12632{
12633 struct cnic_ops *c_ops;
12634 int rc = 0;
12635
12636 mutex_lock(&bp->cnic_mutex);
13707f9e
ED
12637 c_ops = rcu_dereference_protected(bp->cnic_ops,
12638 lockdep_is_held(&bp->cnic_mutex));
993ac7b5
MC
12639 if (c_ops)
12640 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
12641 mutex_unlock(&bp->cnic_mutex);
12642
12643 return rc;
12644}
12645
12646static int bnx2x_cnic_ctl_send_bh(struct bnx2x *bp, struct cnic_ctl_info *ctl)
12647{
12648 struct cnic_ops *c_ops;
12649 int rc = 0;
12650
12651 rcu_read_lock();
12652 c_ops = rcu_dereference(bp->cnic_ops);
12653 if (c_ops)
12654 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
12655 rcu_read_unlock();
12656
12657 return rc;
12658}
12659
12660/*
12661 * for commands that have no data
12662 */
9f6c9258 12663int bnx2x_cnic_notify(struct bnx2x *bp, int cmd)
993ac7b5
MC
12664{
12665 struct cnic_ctl_info ctl = {0};
12666
12667 ctl.cmd = cmd;
12668
12669 return bnx2x_cnic_ctl_send(bp, &ctl);
12670}
12671
619c5cb6 12672static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err)
993ac7b5 12673{
619c5cb6 12674 struct cnic_ctl_info ctl = {0};
993ac7b5
MC
12675
12676 /* first we tell CNIC and only then we count this as a completion */
12677 ctl.cmd = CNIC_CTL_COMPLETION_CMD;
12678 ctl.data.comp.cid = cid;
619c5cb6 12679 ctl.data.comp.error = err;
993ac7b5
MC
12680
12681 bnx2x_cnic_ctl_send_bh(bp, &ctl);
c2bff63f 12682 bnx2x_cnic_sp_post(bp, 0);
993ac7b5
MC
12683}
12684
619c5cb6
VZ
12685
12686/* Called with netif_addr_lock_bh() taken.
12687 * Sets an rx_mode config for an iSCSI ETH client.
12688 * Doesn't block.
12689 * Completion should be checked outside.
12690 */
12691static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start)
12692{
12693 unsigned long accept_flags = 0, ramrod_flags = 0;
12694 u8 cl_id = bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
12695 int sched_state = BNX2X_FILTER_ISCSI_ETH_STOP_SCHED;
12696
12697 if (start) {
12698 /* Start accepting on iSCSI L2 ring. Accept all multicasts
12699 * because it's the only way for UIO Queue to accept
12700 * multicasts (in non-promiscuous mode only one Queue per
12701 * function will receive multicast packets (leading in our
12702 * case).
12703 */
12704 __set_bit(BNX2X_ACCEPT_UNICAST, &accept_flags);
12705 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &accept_flags);
12706 __set_bit(BNX2X_ACCEPT_BROADCAST, &accept_flags);
12707 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &accept_flags);
12708
12709 /* Clear STOP_PENDING bit if START is requested */
12710 clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &bp->sp_state);
12711
12712 sched_state = BNX2X_FILTER_ISCSI_ETH_START_SCHED;
12713 } else
12714 /* Clear START_PENDING bit if STOP is requested */
12715 clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &bp->sp_state);
12716
12717 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
12718 set_bit(sched_state, &bp->sp_state);
12719 else {
12720 __set_bit(RAMROD_RX, &ramrod_flags);
12721 bnx2x_set_q_rx_mode(bp, cl_id, 0, accept_flags, 0,
12722 ramrod_flags);
12723 }
12724}
12725
12726
993ac7b5
MC
12727static int bnx2x_drv_ctl(struct net_device *dev, struct drv_ctl_info *ctl)
12728{
12729 struct bnx2x *bp = netdev_priv(dev);
12730 int rc = 0;
12731
12732 switch (ctl->cmd) {
12733 case DRV_CTL_CTXTBL_WR_CMD: {
12734 u32 index = ctl->data.io.offset;
12735 dma_addr_t addr = ctl->data.io.dma_addr;
12736
12737 bnx2x_ilt_wr(bp, index, addr);
12738 break;
12739 }
12740
c2bff63f
DK
12741 case DRV_CTL_RET_L5_SPQ_CREDIT_CMD: {
12742 int count = ctl->data.credit.credit_count;
993ac7b5
MC
12743
12744 bnx2x_cnic_sp_post(bp, count);
12745 break;
12746 }
12747
12748 /* rtnl_lock is held. */
12749 case DRV_CTL_START_L2_CMD: {
619c5cb6
VZ
12750 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12751 unsigned long sp_bits = 0;
12752
12753 /* Configure the iSCSI classification object */
12754 bnx2x_init_mac_obj(bp, &bp->iscsi_l2_mac_obj,
12755 cp->iscsi_l2_client_id,
12756 cp->iscsi_l2_cid, BP_FUNC(bp),
12757 bnx2x_sp(bp, mac_rdata),
12758 bnx2x_sp_mapping(bp, mac_rdata),
12759 BNX2X_FILTER_MAC_PENDING,
12760 &bp->sp_state, BNX2X_OBJ_TYPE_RX,
12761 &bp->macs_pool);
ec6ba945 12762
523224a3 12763 /* Set iSCSI MAC address */
619c5cb6
VZ
12764 rc = bnx2x_set_iscsi_eth_mac_addr(bp);
12765 if (rc)
12766 break;
523224a3
DK
12767
12768 mmiowb();
12769 barrier();
12770
619c5cb6
VZ
12771 /* Start accepting on iSCSI L2 ring */
12772
12773 netif_addr_lock_bh(dev);
12774 bnx2x_set_iscsi_eth_rx_mode(bp, true);
12775 netif_addr_unlock_bh(dev);
12776
12777 /* bits to wait on */
12778 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
12779 __set_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &sp_bits);
12780
12781 if (!bnx2x_wait_sp_comp(bp, sp_bits))
12782 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3 12783
993ac7b5
MC
12784 break;
12785 }
12786
12787 /* rtnl_lock is held. */
12788 case DRV_CTL_STOP_L2_CMD: {
619c5cb6 12789 unsigned long sp_bits = 0;
993ac7b5 12790
523224a3 12791 /* Stop accepting on iSCSI L2 ring */
619c5cb6
VZ
12792 netif_addr_lock_bh(dev);
12793 bnx2x_set_iscsi_eth_rx_mode(bp, false);
12794 netif_addr_unlock_bh(dev);
12795
12796 /* bits to wait on */
12797 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
12798 __set_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &sp_bits);
12799
12800 if (!bnx2x_wait_sp_comp(bp, sp_bits))
12801 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3
DK
12802
12803 mmiowb();
12804 barrier();
12805
12806 /* Unset iSCSI L2 MAC */
619c5cb6
VZ
12807 rc = bnx2x_del_all_macs(bp, &bp->iscsi_l2_mac_obj,
12808 BNX2X_ISCSI_ETH_MAC, true);
993ac7b5
MC
12809 break;
12810 }
c2bff63f
DK
12811 case DRV_CTL_RET_L2_SPQ_CREDIT_CMD: {
12812 int count = ctl->data.credit.credit_count;
12813
12814 smp_mb__before_atomic_inc();
6e30dd4e 12815 atomic_add(count, &bp->cq_spq_left);
c2bff63f
DK
12816 smp_mb__after_atomic_inc();
12817 break;
12818 }
1d187b34 12819 case DRV_CTL_ULP_REGISTER_CMD: {
2e499d3c 12820 int ulp_type = ctl->data.register_data.ulp_type;
1d187b34
BW
12821
12822 if (CHIP_IS_E3(bp)) {
12823 int idx = BP_FW_MB_IDX(bp);
2e499d3c
BW
12824 u32 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
12825 int path = BP_PATH(bp);
12826 int port = BP_PORT(bp);
12827 int i;
12828 u32 scratch_offset;
12829 u32 *host_addr;
1d187b34 12830
2e499d3c 12831 /* first write capability to shmem2 */
1d187b34
BW
12832 if (ulp_type == CNIC_ULP_ISCSI)
12833 cap |= DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
12834 else if (ulp_type == CNIC_ULP_FCOE)
12835 cap |= DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
12836 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
2e499d3c
BW
12837
12838 if ((ulp_type != CNIC_ULP_FCOE) ||
12839 (!SHMEM2_HAS(bp, ncsi_oem_data_addr)) ||
12840 (!(bp->flags & BC_SUPPORTS_FCOE_FEATURES)))
12841 break;
12842
12843 /* if reached here - should write fcoe capabilities */
12844 scratch_offset = SHMEM2_RD(bp, ncsi_oem_data_addr);
12845 if (!scratch_offset)
12846 break;
12847 scratch_offset += offsetof(struct glob_ncsi_oem_data,
12848 fcoe_features[path][port]);
12849 host_addr = (u32 *) &(ctl->data.register_data.
12850 fcoe_features);
12851 for (i = 0; i < sizeof(struct fcoe_capabilities);
12852 i += 4)
12853 REG_WR(bp, scratch_offset + i,
12854 *(host_addr + i/4));
1d187b34
BW
12855 }
12856 break;
12857 }
2e499d3c 12858
1d187b34
BW
12859 case DRV_CTL_ULP_UNREGISTER_CMD: {
12860 int ulp_type = ctl->data.ulp_type;
12861
12862 if (CHIP_IS_E3(bp)) {
12863 int idx = BP_FW_MB_IDX(bp);
12864 u32 cap;
12865
12866 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
12867 if (ulp_type == CNIC_ULP_ISCSI)
12868 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
12869 else if (ulp_type == CNIC_ULP_FCOE)
12870 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
12871 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
12872 }
12873 break;
12874 }
993ac7b5
MC
12875
12876 default:
12877 BNX2X_ERR("unknown command %x\n", ctl->cmd);
12878 rc = -EINVAL;
12879 }
12880
12881 return rc;
12882}
12883
9f6c9258 12884void bnx2x_setup_cnic_irq_info(struct bnx2x *bp)
993ac7b5
MC
12885{
12886 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12887
12888 if (bp->flags & USING_MSIX_FLAG) {
12889 cp->drv_state |= CNIC_DRV_STATE_USING_MSIX;
12890 cp->irq_arr[0].irq_flags |= CNIC_IRQ_FL_MSIX;
12891 cp->irq_arr[0].vector = bp->msix_table[1].vector;
12892 } else {
12893 cp->drv_state &= ~CNIC_DRV_STATE_USING_MSIX;
12894 cp->irq_arr[0].irq_flags &= ~CNIC_IRQ_FL_MSIX;
12895 }
619c5cb6 12896 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
12897 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e2_sb;
12898 else
12899 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e1x_sb;
12900
619c5cb6
VZ
12901 cp->irq_arr[0].status_blk_num = bnx2x_cnic_fw_sb_id(bp);
12902 cp->irq_arr[0].status_blk_num2 = bnx2x_cnic_igu_sb_id(bp);
993ac7b5
MC
12903 cp->irq_arr[1].status_blk = bp->def_status_blk;
12904 cp->irq_arr[1].status_blk_num = DEF_SB_ID;
523224a3 12905 cp->irq_arr[1].status_blk_num2 = DEF_SB_IGU_ID;
993ac7b5
MC
12906
12907 cp->num_irq = 2;
12908}
12909
37ae41a9
MS
12910void bnx2x_setup_cnic_info(struct bnx2x *bp)
12911{
12912 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12913
12914
12915 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
12916 bnx2x_cid_ilt_lines(bp);
12917 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
12918 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
12919 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
12920
12921 if (NO_ISCSI_OOO(bp))
12922 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
12923}
12924
993ac7b5
MC
12925static int bnx2x_register_cnic(struct net_device *dev, struct cnic_ops *ops,
12926 void *data)
12927{
12928 struct bnx2x *bp = netdev_priv(dev);
12929 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
55c11941
MS
12930 int rc;
12931
12932 DP(NETIF_MSG_IFUP, "Register_cnic called\n");
993ac7b5 12933
51c1a580
MS
12934 if (ops == NULL) {
12935 BNX2X_ERR("NULL ops received\n");
993ac7b5 12936 return -EINVAL;
51c1a580 12937 }
993ac7b5 12938
55c11941
MS
12939 if (!CNIC_SUPPORT(bp)) {
12940 BNX2X_ERR("Can't register CNIC when not supported\n");
12941 return -EOPNOTSUPP;
12942 }
12943
12944 if (!CNIC_LOADED(bp)) {
12945 rc = bnx2x_load_cnic(bp);
12946 if (rc) {
12947 BNX2X_ERR("CNIC-related load failed\n");
12948 return rc;
12949 }
12950
12951 }
12952
12953 bp->cnic_enabled = true;
12954
993ac7b5
MC
12955 bp->cnic_kwq = kzalloc(PAGE_SIZE, GFP_KERNEL);
12956 if (!bp->cnic_kwq)
12957 return -ENOMEM;
12958
12959 bp->cnic_kwq_cons = bp->cnic_kwq;
12960 bp->cnic_kwq_prod = bp->cnic_kwq;
12961 bp->cnic_kwq_last = bp->cnic_kwq + MAX_SP_DESC_CNT;
12962
12963 bp->cnic_spq_pending = 0;
12964 bp->cnic_kwq_pending = 0;
12965
12966 bp->cnic_data = data;
12967
12968 cp->num_irq = 0;
619c5cb6 12969 cp->drv_state |= CNIC_DRV_STATE_REGD;
523224a3 12970 cp->iro_arr = bp->iro_arr;
993ac7b5 12971
993ac7b5 12972 bnx2x_setup_cnic_irq_info(bp);
c2bff63f 12973
993ac7b5
MC
12974 rcu_assign_pointer(bp->cnic_ops, ops);
12975
12976 return 0;
12977}
12978
12979static int bnx2x_unregister_cnic(struct net_device *dev)
12980{
12981 struct bnx2x *bp = netdev_priv(dev);
12982 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12983
12984 mutex_lock(&bp->cnic_mutex);
993ac7b5 12985 cp->drv_state = 0;
2cfa5a04 12986 RCU_INIT_POINTER(bp->cnic_ops, NULL);
993ac7b5
MC
12987 mutex_unlock(&bp->cnic_mutex);
12988 synchronize_rcu();
12989 kfree(bp->cnic_kwq);
12990 bp->cnic_kwq = NULL;
12991
12992 return 0;
12993}
12994
12995struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev)
12996{
12997 struct bnx2x *bp = netdev_priv(dev);
12998 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12999
2ba45142
VZ
13000 /* If both iSCSI and FCoE are disabled - return NULL in
13001 * order to indicate CNIC that it should not try to work
13002 * with this device.
13003 */
13004 if (NO_ISCSI(bp) && NO_FCOE(bp))
13005 return NULL;
13006
993ac7b5
MC
13007 cp->drv_owner = THIS_MODULE;
13008 cp->chip_id = CHIP_ID(bp);
13009 cp->pdev = bp->pdev;
13010 cp->io_base = bp->regview;
13011 cp->io_base2 = bp->doorbells;
13012 cp->max_kwqe_pending = 8;
523224a3 13013 cp->ctx_blk_size = CDU_ILT_PAGE_SZ;
c2bff63f
DK
13014 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
13015 bnx2x_cid_ilt_lines(bp);
993ac7b5 13016 cp->ctx_tbl_len = CNIC_ILT_LINES;
c2bff63f 13017 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
993ac7b5
MC
13018 cp->drv_submit_kwqes_16 = bnx2x_cnic_sp_queue;
13019 cp->drv_ctl = bnx2x_drv_ctl;
13020 cp->drv_register_cnic = bnx2x_register_cnic;
13021 cp->drv_unregister_cnic = bnx2x_unregister_cnic;
37ae41a9 13022 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
619c5cb6
VZ
13023 cp->iscsi_l2_client_id =
13024 bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
37ae41a9 13025 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
c2bff63f 13026
2ba45142
VZ
13027 if (NO_ISCSI_OOO(bp))
13028 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
13029
13030 if (NO_ISCSI(bp))
13031 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI;
13032
13033 if (NO_FCOE(bp))
13034 cp->drv_state |= CNIC_DRV_STATE_NO_FCOE;
13035
51c1a580
MS
13036 BNX2X_DEV_INFO(
13037 "page_size %d, tbl_offset %d, tbl_lines %d, starting cid %d\n",
c2bff63f
DK
13038 cp->ctx_blk_size,
13039 cp->ctx_tbl_offset,
13040 cp->ctx_tbl_len,
13041 cp->starting_cid);
993ac7b5
MC
13042 return cp;
13043}
993ac7b5 13044
94a78b79 13045