bnx2x: Allocate VF database in PF when VFs are present
[deliverable/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"
1ab4434c
AE
62#include "bnx2x_vfpf.h"
63#include "bnx2x_sriov.h"
e4901dde 64#include "bnx2x_dcb.h"
042181f5 65#include "bnx2x_sp.h"
a2fbb9ea 66
94a78b79
VZ
67#include <linux/firmware.h>
68#include "bnx2x_fw_file_hdr.h"
69/* FW files */
45229b42
BH
70#define FW_FILE_VERSION \
71 __stringify(BCM_5710_FW_MAJOR_VERSION) "." \
72 __stringify(BCM_5710_FW_MINOR_VERSION) "." \
73 __stringify(BCM_5710_FW_REVISION_VERSION) "." \
74 __stringify(BCM_5710_FW_ENGINEERING_VERSION)
560131f3
DK
75#define FW_FILE_NAME_E1 "bnx2x/bnx2x-e1-" FW_FILE_VERSION ".fw"
76#define FW_FILE_NAME_E1H "bnx2x/bnx2x-e1h-" FW_FILE_VERSION ".fw"
f2e0899f 77#define FW_FILE_NAME_E2 "bnx2x/bnx2x-e2-" FW_FILE_VERSION ".fw"
94a78b79 78
2e499d3c
BW
79#define MAC_LEADING_ZERO_CNT (ALIGN(ETH_ALEN, sizeof(u32)) - ETH_ALEN)
80
34f80b04
EG
81/* Time in jiffies before concluding the transmitter is hung */
82#define TX_TIMEOUT (5*HZ)
a2fbb9ea 83
0329aba1 84static char version[] =
619c5cb6 85 "Broadcom NetXtreme II 5771x/578xx 10/20-Gigabit Ethernet Driver "
a2fbb9ea
ET
86 DRV_MODULE_NAME " " DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
87
24e3fcef 88MODULE_AUTHOR("Eliezer Tamir");
f2e0899f 89MODULE_DESCRIPTION("Broadcom NetXtreme II "
619c5cb6
VZ
90 "BCM57710/57711/57711E/"
91 "57712/57712_MF/57800/57800_MF/57810/57810_MF/"
92 "57840/57840_MF Driver");
a2fbb9ea
ET
93MODULE_LICENSE("GPL");
94MODULE_VERSION(DRV_MODULE_VERSION);
45229b42
BH
95MODULE_FIRMWARE(FW_FILE_NAME_E1);
96MODULE_FIRMWARE(FW_FILE_NAME_E1H);
f2e0899f 97MODULE_FIRMWARE(FW_FILE_NAME_E2);
a2fbb9ea 98
ca00392c 99
d6214d7a 100int num_queues;
54b9ddaa 101module_param(num_queues, int, 0);
96305234
DK
102MODULE_PARM_DESC(num_queues,
103 " Set number of queues (default is as a number of CPUs)");
555f6c78 104
19680c48 105static int disable_tpa;
19680c48 106module_param(disable_tpa, int, 0);
9898f86d 107MODULE_PARM_DESC(disable_tpa, " Disable the TPA (LRO) feature");
8badd27a 108
9ee3d37b
DK
109#define INT_MODE_INTx 1
110#define INT_MODE_MSI 2
0e8d2ec5 111int int_mode;
8badd27a 112module_param(int_mode, int, 0);
619c5cb6 113MODULE_PARM_DESC(int_mode, " Force interrupt mode other than MSI-X "
cdaa7cb8 114 "(1 INT#x; 2 MSI)");
8badd27a 115
a18f5128
EG
116static int dropless_fc;
117module_param(dropless_fc, int, 0);
118MODULE_PARM_DESC(dropless_fc, " Pause on exhausted host ring");
119
8d5726c4
EG
120static int mrrs = -1;
121module_param(mrrs, int, 0);
122MODULE_PARM_DESC(mrrs, " Force Max Read Req Size (0..3) (for debug)");
123
9898f86d 124static int debug;
a2fbb9ea 125module_param(debug, int, 0);
9898f86d
EG
126MODULE_PARM_DESC(debug, " Default debug msglevel");
127
a2fbb9ea 128
619c5cb6
VZ
129
130struct workqueue_struct *bnx2x_wq;
ec6ba945 131
a2fbb9ea
ET
132enum bnx2x_board_type {
133 BCM57710 = 0,
619c5cb6
VZ
134 BCM57711,
135 BCM57711E,
136 BCM57712,
137 BCM57712_MF,
1ab4434c 138 BCM57712_VF,
619c5cb6
VZ
139 BCM57800,
140 BCM57800_MF,
1ab4434c 141 BCM57800_VF,
619c5cb6
VZ
142 BCM57810,
143 BCM57810_MF,
1ab4434c 144 BCM57810_VF,
c3def943
YM
145 BCM57840_4_10,
146 BCM57840_2_20,
7e8e02df 147 BCM57840_MF,
1ab4434c 148 BCM57840_VF,
7e8e02df 149 BCM57811,
1ab4434c
AE
150 BCM57811_MF,
151 BCM57840_O,
152 BCM57840_MFO,
153 BCM57811_VF
a2fbb9ea
ET
154};
155
34f80b04 156/* indexed by board_type, above */
53a10565 157static struct {
a2fbb9ea 158 char *name;
0329aba1 159} board_info[] = {
1ab4434c
AE
160 [BCM57710] = { "Broadcom NetXtreme II BCM57710 10 Gigabit PCIe [Everest]" },
161 [BCM57711] = { "Broadcom NetXtreme II BCM57711 10 Gigabit PCIe" },
162 [BCM57711E] = { "Broadcom NetXtreme II BCM57711E 10 Gigabit PCIe" },
163 [BCM57712] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet" },
164 [BCM57712_MF] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function" },
165 [BCM57712_VF] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet Virtual Function" },
166 [BCM57800] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet" },
167 [BCM57800_MF] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet Multi Function" },
168 [BCM57800_VF] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet Virtual Function" },
169 [BCM57810] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet" },
170 [BCM57810_MF] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet Multi Function" },
171 [BCM57810_VF] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet Virtual Function" },
172 [BCM57840_4_10] = { "Broadcom NetXtreme II BCM57840 10 Gigabit Ethernet" },
173 [BCM57840_2_20] = { "Broadcom NetXtreme II BCM57840 20 Gigabit Ethernet" },
174 [BCM57840_MF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function" },
175 [BCM57840_VF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function" },
176 [BCM57811] = { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet" },
177 [BCM57811_MF] = { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet Multi Function" },
178 [BCM57840_O] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet" },
179 [BCM57840_MFO] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function" },
180 [BCM57811_VF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function" }
a2fbb9ea
ET
181};
182
619c5cb6
VZ
183#ifndef PCI_DEVICE_ID_NX2_57710
184#define PCI_DEVICE_ID_NX2_57710 CHIP_NUM_57710
185#endif
186#ifndef PCI_DEVICE_ID_NX2_57711
187#define PCI_DEVICE_ID_NX2_57711 CHIP_NUM_57711
188#endif
189#ifndef PCI_DEVICE_ID_NX2_57711E
190#define PCI_DEVICE_ID_NX2_57711E CHIP_NUM_57711E
191#endif
192#ifndef PCI_DEVICE_ID_NX2_57712
193#define PCI_DEVICE_ID_NX2_57712 CHIP_NUM_57712
194#endif
195#ifndef PCI_DEVICE_ID_NX2_57712_MF
196#define PCI_DEVICE_ID_NX2_57712_MF CHIP_NUM_57712_MF
197#endif
198#ifndef PCI_DEVICE_ID_NX2_57800
199#define PCI_DEVICE_ID_NX2_57800 CHIP_NUM_57800
200#endif
201#ifndef PCI_DEVICE_ID_NX2_57800_MF
202#define PCI_DEVICE_ID_NX2_57800_MF CHIP_NUM_57800_MF
203#endif
204#ifndef PCI_DEVICE_ID_NX2_57810
205#define PCI_DEVICE_ID_NX2_57810 CHIP_NUM_57810
206#endif
207#ifndef PCI_DEVICE_ID_NX2_57810_MF
208#define PCI_DEVICE_ID_NX2_57810_MF CHIP_NUM_57810_MF
209#endif
c3def943
YM
210#ifndef PCI_DEVICE_ID_NX2_57840_O
211#define PCI_DEVICE_ID_NX2_57840_O CHIP_NUM_57840_OBSOLETE
212#endif
213#ifndef PCI_DEVICE_ID_NX2_57840_4_10
214#define PCI_DEVICE_ID_NX2_57840_4_10 CHIP_NUM_57840_4_10
215#endif
216#ifndef PCI_DEVICE_ID_NX2_57840_2_20
217#define PCI_DEVICE_ID_NX2_57840_2_20 CHIP_NUM_57840_2_20
218#endif
219#ifndef PCI_DEVICE_ID_NX2_57840_MFO
220#define PCI_DEVICE_ID_NX2_57840_MFO CHIP_NUM_57840_MF_OBSOLETE
619c5cb6
VZ
221#endif
222#ifndef PCI_DEVICE_ID_NX2_57840_MF
223#define PCI_DEVICE_ID_NX2_57840_MF CHIP_NUM_57840_MF
224#endif
7e8e02df
BW
225#ifndef PCI_DEVICE_ID_NX2_57811
226#define PCI_DEVICE_ID_NX2_57811 CHIP_NUM_57811
227#endif
228#ifndef PCI_DEVICE_ID_NX2_57811_MF
229#define PCI_DEVICE_ID_NX2_57811_MF CHIP_NUM_57811_MF
230#endif
a3aa1884 231static DEFINE_PCI_DEVICE_TABLE(bnx2x_pci_tbl) = {
e4ed7113
EG
232 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57710), BCM57710 },
233 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711), BCM57711 },
234 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711E), BCM57711E },
f2e0899f 235 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712), BCM57712 },
619c5cb6
VZ
236 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712_MF), BCM57712_MF },
237 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800), BCM57800 },
238 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800_MF), BCM57800_MF },
239 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810), BCM57810 },
240 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810_MF), BCM57810_MF },
c3def943
YM
241 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_O), BCM57840_O },
242 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_4_10), BCM57840_4_10 },
243 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_2_20), BCM57840_2_20 },
244 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MFO), BCM57840_MFO },
619c5cb6 245 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MF), BCM57840_MF },
7e8e02df
BW
246 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811), BCM57811 },
247 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811_MF), BCM57811_MF },
a2fbb9ea
ET
248 { 0 }
249};
250
251MODULE_DEVICE_TABLE(pci, bnx2x_pci_tbl);
252
452427b0
YM
253/* Global resources for unloading a previously loaded device */
254#define BNX2X_PREV_WAIT_NEEDED 1
255static DEFINE_SEMAPHORE(bnx2x_prev_sem);
256static LIST_HEAD(bnx2x_prev_list);
a2fbb9ea
ET
257/****************************************************************************
258* General service functions
259****************************************************************************/
260
1191cb83 261static void __storm_memset_dma_mapping(struct bnx2x *bp,
619c5cb6
VZ
262 u32 addr, dma_addr_t mapping)
263{
264 REG_WR(bp, addr, U64_LO(mapping));
265 REG_WR(bp, addr + 4, U64_HI(mapping));
266}
267
1191cb83
ED
268static void storm_memset_spq_addr(struct bnx2x *bp,
269 dma_addr_t mapping, u16 abs_fid)
619c5cb6
VZ
270{
271 u32 addr = XSEM_REG_FAST_MEMORY +
272 XSTORM_SPQ_PAGE_BASE_OFFSET(abs_fid);
273
274 __storm_memset_dma_mapping(bp, addr, mapping);
275}
276
1191cb83
ED
277static void storm_memset_vf_to_pf(struct bnx2x *bp, u16 abs_fid,
278 u16 pf_id)
523224a3 279{
619c5cb6
VZ
280 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_VF_TO_PF_OFFSET(abs_fid),
281 pf_id);
282 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_VF_TO_PF_OFFSET(abs_fid),
283 pf_id);
284 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_VF_TO_PF_OFFSET(abs_fid),
285 pf_id);
286 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_VF_TO_PF_OFFSET(abs_fid),
287 pf_id);
523224a3
DK
288}
289
1191cb83
ED
290static void storm_memset_func_en(struct bnx2x *bp, u16 abs_fid,
291 u8 enable)
619c5cb6
VZ
292{
293 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(abs_fid),
294 enable);
295 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(abs_fid),
296 enable);
297 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(abs_fid),
298 enable);
299 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(abs_fid),
300 enable);
301}
523224a3 302
1191cb83
ED
303static void storm_memset_eq_data(struct bnx2x *bp,
304 struct event_ring_data *eq_data,
523224a3
DK
305 u16 pfid)
306{
307 size_t size = sizeof(struct event_ring_data);
308
309 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_DATA_OFFSET(pfid);
310
311 __storm_memset_struct(bp, addr, size, (u32 *)eq_data);
312}
313
1191cb83
ED
314static void storm_memset_eq_prod(struct bnx2x *bp, u16 eq_prod,
315 u16 pfid)
523224a3
DK
316{
317 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_PROD_OFFSET(pfid);
318 REG_WR16(bp, addr, eq_prod);
319}
320
a2fbb9ea
ET
321/* used only at init
322 * locking is done by mcp
323 */
8d96286a 324static void bnx2x_reg_wr_ind(struct bnx2x *bp, u32 addr, u32 val)
a2fbb9ea
ET
325{
326 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
327 pci_write_config_dword(bp->pdev, PCICFG_GRC_DATA, val);
328 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
329 PCICFG_VENDOR_ID_OFFSET);
330}
331
a2fbb9ea
ET
332static u32 bnx2x_reg_rd_ind(struct bnx2x *bp, u32 addr)
333{
334 u32 val;
335
336 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
337 pci_read_config_dword(bp->pdev, PCICFG_GRC_DATA, &val);
338 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
339 PCICFG_VENDOR_ID_OFFSET);
340
341 return val;
342}
a2fbb9ea 343
f2e0899f
DK
344#define DMAE_DP_SRC_GRC "grc src_addr [%08x]"
345#define DMAE_DP_SRC_PCI "pci src_addr [%x:%08x]"
346#define DMAE_DP_DST_GRC "grc dst_addr [%08x]"
347#define DMAE_DP_DST_PCI "pci dst_addr [%x:%08x]"
348#define DMAE_DP_DST_NONE "dst_addr [none]"
349
f2e0899f 350
a2fbb9ea 351/* copy command into DMAE command memory and set DMAE command go */
6c719d00 352void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx)
a2fbb9ea
ET
353{
354 u32 cmd_offset;
355 int i;
356
357 cmd_offset = (DMAE_REG_CMD_MEM + sizeof(struct dmae_command) * idx);
358 for (i = 0; i < (sizeof(struct dmae_command)/4); i++) {
359 REG_WR(bp, cmd_offset + i*4, *(((u32 *)dmae) + i));
a2fbb9ea
ET
360 }
361 REG_WR(bp, dmae_reg_go_c[idx], 1);
362}
363
f2e0899f 364u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type)
a2fbb9ea 365{
f2e0899f
DK
366 return opcode | ((comp_type << DMAE_COMMAND_C_DST_SHIFT) |
367 DMAE_CMD_C_ENABLE);
368}
ad8d3948 369
f2e0899f
DK
370u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode)
371{
372 return opcode & ~DMAE_CMD_SRC_RESET;
373}
ad8d3948 374
f2e0899f
DK
375u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
376 bool with_comp, u8 comp_type)
377{
378 u32 opcode = 0;
379
380 opcode |= ((src_type << DMAE_COMMAND_SRC_SHIFT) |
381 (dst_type << DMAE_COMMAND_DST_SHIFT));
ad8d3948 382
f2e0899f
DK
383 opcode |= (DMAE_CMD_SRC_RESET | DMAE_CMD_DST_RESET);
384
385 opcode |= (BP_PORT(bp) ? DMAE_CMD_PORT_1 : DMAE_CMD_PORT_0);
3395a033
DK
386 opcode |= ((BP_VN(bp) << DMAE_CMD_E1HVN_SHIFT) |
387 (BP_VN(bp) << DMAE_COMMAND_DST_VN_SHIFT));
f2e0899f 388 opcode |= (DMAE_COM_SET_ERR << DMAE_COMMAND_ERR_POLICY_SHIFT);
a2fbb9ea 389
a2fbb9ea 390#ifdef __BIG_ENDIAN
f2e0899f 391 opcode |= DMAE_CMD_ENDIANITY_B_DW_SWAP;
a2fbb9ea 392#else
f2e0899f 393 opcode |= DMAE_CMD_ENDIANITY_DW_SWAP;
a2fbb9ea 394#endif
f2e0899f
DK
395 if (with_comp)
396 opcode = bnx2x_dmae_opcode_add_comp(opcode, comp_type);
397 return opcode;
398}
399
8d96286a 400static void bnx2x_prep_dmae_with_comp(struct bnx2x *bp,
401 struct dmae_command *dmae,
402 u8 src_type, u8 dst_type)
f2e0899f
DK
403{
404 memset(dmae, 0, sizeof(struct dmae_command));
405
406 /* set the opcode */
407 dmae->opcode = bnx2x_dmae_opcode(bp, src_type, dst_type,
408 true, DMAE_COMP_PCI);
409
410 /* fill in the completion parameters */
411 dmae->comp_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_comp));
412 dmae->comp_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_comp));
413 dmae->comp_val = DMAE_COMP_VAL;
414}
415
416/* issue a dmae command over the init-channel and wailt for completion */
8d96286a 417static int bnx2x_issue_dmae_with_comp(struct bnx2x *bp,
418 struct dmae_command *dmae)
f2e0899f
DK
419{
420 u32 *wb_comp = bnx2x_sp(bp, wb_comp);
5e374b5a 421 int cnt = CHIP_REV_IS_SLOW(bp) ? (400000) : 4000;
f2e0899f
DK
422 int rc = 0;
423
619c5cb6
VZ
424 /*
425 * Lock the dmae channel. Disable BHs to prevent a dead-lock
426 * as long as this code is called both from syscall context and
427 * from ndo_set_rx_mode() flow that may be called from BH.
428 */
6e30dd4e 429 spin_lock_bh(&bp->dmae_lock);
5ff7b6d4 430
f2e0899f 431 /* reset completion */
a2fbb9ea
ET
432 *wb_comp = 0;
433
f2e0899f
DK
434 /* post the command on the channel used for initializations */
435 bnx2x_post_dmae(bp, dmae, INIT_DMAE_C(bp));
a2fbb9ea 436
f2e0899f 437 /* wait for completion */
a2fbb9ea 438 udelay(5);
f2e0899f 439 while ((*wb_comp & ~DMAE_PCI_ERR_FLAG) != DMAE_COMP_VAL) {
ad8d3948 440
95c6c616
AE
441 if (!cnt ||
442 (bp->recovery_state != BNX2X_RECOVERY_DONE &&
443 bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
c3eefaf6 444 BNX2X_ERR("DMAE timeout!\n");
f2e0899f
DK
445 rc = DMAE_TIMEOUT;
446 goto unlock;
a2fbb9ea 447 }
ad8d3948 448 cnt--;
f2e0899f 449 udelay(50);
a2fbb9ea 450 }
f2e0899f
DK
451 if (*wb_comp & DMAE_PCI_ERR_FLAG) {
452 BNX2X_ERR("DMAE PCI error!\n");
453 rc = DMAE_PCI_ERROR;
454 }
455
f2e0899f 456unlock:
6e30dd4e 457 spin_unlock_bh(&bp->dmae_lock);
f2e0899f
DK
458 return rc;
459}
460
461void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
462 u32 len32)
463{
464 struct dmae_command dmae;
465
466 if (!bp->dmae_ready) {
467 u32 *data = bnx2x_sp(bp, wb_data[0]);
468
127a425e
AE
469 if (CHIP_IS_E1(bp))
470 bnx2x_init_ind_wr(bp, dst_addr, data, len32);
471 else
472 bnx2x_init_str_wr(bp, dst_addr, data, len32);
f2e0899f
DK
473 return;
474 }
475
476 /* set opcode and fixed command fields */
477 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_PCI, DMAE_DST_GRC);
478
479 /* fill in addresses and len */
480 dmae.src_addr_lo = U64_LO(dma_addr);
481 dmae.src_addr_hi = U64_HI(dma_addr);
482 dmae.dst_addr_lo = dst_addr >> 2;
483 dmae.dst_addr_hi = 0;
484 dmae.len = len32;
485
f2e0899f
DK
486 /* issue the command and wait for completion */
487 bnx2x_issue_dmae_with_comp(bp, &dmae);
a2fbb9ea
ET
488}
489
c18487ee 490void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32)
a2fbb9ea 491{
5ff7b6d4 492 struct dmae_command dmae;
ad8d3948
EG
493
494 if (!bp->dmae_ready) {
495 u32 *data = bnx2x_sp(bp, wb_data[0]);
496 int i;
497
51c1a580 498 if (CHIP_IS_E1(bp))
127a425e
AE
499 for (i = 0; i < len32; i++)
500 data[i] = bnx2x_reg_rd_ind(bp, src_addr + i*4);
51c1a580 501 else
127a425e
AE
502 for (i = 0; i < len32; i++)
503 data[i] = REG_RD(bp, src_addr + i*4);
504
ad8d3948
EG
505 return;
506 }
507
f2e0899f
DK
508 /* set opcode and fixed command fields */
509 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_GRC, DMAE_DST_PCI);
a2fbb9ea 510
f2e0899f 511 /* fill in addresses and len */
5ff7b6d4
EG
512 dmae.src_addr_lo = src_addr >> 2;
513 dmae.src_addr_hi = 0;
514 dmae.dst_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_data));
515 dmae.dst_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_data));
516 dmae.len = len32;
ad8d3948 517
f2e0899f
DK
518 /* issue the command and wait for completion */
519 bnx2x_issue_dmae_with_comp(bp, &dmae);
ad8d3948
EG
520}
521
8d96286a 522static void bnx2x_write_dmae_phys_len(struct bnx2x *bp, dma_addr_t phys_addr,
523 u32 addr, u32 len)
573f2035 524{
02e3c6cb 525 int dmae_wr_max = DMAE_LEN32_WR_MAX(bp);
573f2035
EG
526 int offset = 0;
527
02e3c6cb 528 while (len > dmae_wr_max) {
573f2035 529 bnx2x_write_dmae(bp, phys_addr + offset,
02e3c6cb
VZ
530 addr + offset, dmae_wr_max);
531 offset += dmae_wr_max * 4;
532 len -= dmae_wr_max;
573f2035
EG
533 }
534
535 bnx2x_write_dmae(bp, phys_addr + offset, addr + offset, len);
536}
537
a2fbb9ea
ET
538static int bnx2x_mc_assert(struct bnx2x *bp)
539{
a2fbb9ea 540 char last_idx;
34f80b04
EG
541 int i, rc = 0;
542 u32 row0, row1, row2, row3;
543
544 /* XSTORM */
545 last_idx = REG_RD8(bp, BAR_XSTRORM_INTMEM +
546 XSTORM_ASSERT_LIST_INDEX_OFFSET);
547 if (last_idx)
548 BNX2X_ERR("XSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
549
550 /* print the asserts */
551 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
552
553 row0 = REG_RD(bp, BAR_XSTRORM_INTMEM +
554 XSTORM_ASSERT_LIST_OFFSET(i));
555 row1 = REG_RD(bp, BAR_XSTRORM_INTMEM +
556 XSTORM_ASSERT_LIST_OFFSET(i) + 4);
557 row2 = REG_RD(bp, BAR_XSTRORM_INTMEM +
558 XSTORM_ASSERT_LIST_OFFSET(i) + 8);
559 row3 = REG_RD(bp, BAR_XSTRORM_INTMEM +
560 XSTORM_ASSERT_LIST_OFFSET(i) + 12);
561
562 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 563 BNX2X_ERR("XSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
564 i, row3, row2, row1, row0);
565 rc++;
566 } else {
567 break;
568 }
569 }
570
571 /* TSTORM */
572 last_idx = REG_RD8(bp, BAR_TSTRORM_INTMEM +
573 TSTORM_ASSERT_LIST_INDEX_OFFSET);
574 if (last_idx)
575 BNX2X_ERR("TSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
576
577 /* print the asserts */
578 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
579
580 row0 = REG_RD(bp, BAR_TSTRORM_INTMEM +
581 TSTORM_ASSERT_LIST_OFFSET(i));
582 row1 = REG_RD(bp, BAR_TSTRORM_INTMEM +
583 TSTORM_ASSERT_LIST_OFFSET(i) + 4);
584 row2 = REG_RD(bp, BAR_TSTRORM_INTMEM +
585 TSTORM_ASSERT_LIST_OFFSET(i) + 8);
586 row3 = REG_RD(bp, BAR_TSTRORM_INTMEM +
587 TSTORM_ASSERT_LIST_OFFSET(i) + 12);
588
589 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 590 BNX2X_ERR("TSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
591 i, row3, row2, row1, row0);
592 rc++;
593 } else {
594 break;
595 }
596 }
597
598 /* CSTORM */
599 last_idx = REG_RD8(bp, BAR_CSTRORM_INTMEM +
600 CSTORM_ASSERT_LIST_INDEX_OFFSET);
601 if (last_idx)
602 BNX2X_ERR("CSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
603
604 /* print the asserts */
605 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
606
607 row0 = REG_RD(bp, BAR_CSTRORM_INTMEM +
608 CSTORM_ASSERT_LIST_OFFSET(i));
609 row1 = REG_RD(bp, BAR_CSTRORM_INTMEM +
610 CSTORM_ASSERT_LIST_OFFSET(i) + 4);
611 row2 = REG_RD(bp, BAR_CSTRORM_INTMEM +
612 CSTORM_ASSERT_LIST_OFFSET(i) + 8);
613 row3 = REG_RD(bp, BAR_CSTRORM_INTMEM +
614 CSTORM_ASSERT_LIST_OFFSET(i) + 12);
615
616 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 617 BNX2X_ERR("CSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
618 i, row3, row2, row1, row0);
619 rc++;
620 } else {
621 break;
622 }
623 }
624
625 /* USTORM */
626 last_idx = REG_RD8(bp, BAR_USTRORM_INTMEM +
627 USTORM_ASSERT_LIST_INDEX_OFFSET);
628 if (last_idx)
629 BNX2X_ERR("USTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
630
631 /* print the asserts */
632 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
633
634 row0 = REG_RD(bp, BAR_USTRORM_INTMEM +
635 USTORM_ASSERT_LIST_OFFSET(i));
636 row1 = REG_RD(bp, BAR_USTRORM_INTMEM +
637 USTORM_ASSERT_LIST_OFFSET(i) + 4);
638 row2 = REG_RD(bp, BAR_USTRORM_INTMEM +
639 USTORM_ASSERT_LIST_OFFSET(i) + 8);
640 row3 = REG_RD(bp, BAR_USTRORM_INTMEM +
641 USTORM_ASSERT_LIST_OFFSET(i) + 12);
642
643 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 644 BNX2X_ERR("USTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
645 i, row3, row2, row1, row0);
646 rc++;
647 } else {
648 break;
a2fbb9ea
ET
649 }
650 }
34f80b04 651
a2fbb9ea
ET
652 return rc;
653}
c14423fe 654
7a25cc73 655void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl)
a2fbb9ea 656{
7a25cc73 657 u32 addr, val;
a2fbb9ea 658 u32 mark, offset;
4781bfad 659 __be32 data[9];
a2fbb9ea 660 int word;
f2e0899f 661 u32 trace_shmem_base;
2145a920
VZ
662 if (BP_NOMCP(bp)) {
663 BNX2X_ERR("NO MCP - can not dump\n");
664 return;
665 }
7a25cc73
DK
666 netdev_printk(lvl, bp->dev, "bc %d.%d.%d\n",
667 (bp->common.bc_ver & 0xff0000) >> 16,
668 (bp->common.bc_ver & 0xff00) >> 8,
669 (bp->common.bc_ver & 0xff));
670
671 val = REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER);
672 if (val == REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER))
51c1a580 673 BNX2X_ERR("%s" "MCP PC at 0x%x\n", lvl, val);
cdaa7cb8 674
f2e0899f
DK
675 if (BP_PATH(bp) == 0)
676 trace_shmem_base = bp->common.shmem_base;
677 else
678 trace_shmem_base = SHMEM2_RD(bp, other_shmem_base_addr);
de128804
DK
679 addr = trace_shmem_base - 0x800;
680
681 /* validate TRCB signature */
682 mark = REG_RD(bp, addr);
683 if (mark != MFW_TRACE_SIGNATURE) {
684 BNX2X_ERR("Trace buffer signature is missing.");
685 return ;
686 }
687
688 /* read cyclic buffer pointer */
689 addr += 4;
cdaa7cb8 690 mark = REG_RD(bp, addr);
f2e0899f
DK
691 mark = (CHIP_IS_E1x(bp) ? MCP_REG_MCPR_SCRATCH : MCP_A_REG_MCPR_SCRATCH)
692 + ((mark + 0x3) & ~0x3) - 0x08000000;
7a25cc73 693 printk("%s" "begin fw dump (mark 0x%x)\n", lvl, mark);
a2fbb9ea 694
7a25cc73 695 printk("%s", lvl);
f2e0899f 696 for (offset = mark; offset <= trace_shmem_base; offset += 0x8*4) {
a2fbb9ea 697 for (word = 0; word < 8; word++)
cdaa7cb8 698 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 699 data[8] = 0x0;
7995c64e 700 pr_cont("%s", (char *)data);
a2fbb9ea 701 }
cdaa7cb8 702 for (offset = addr + 4; offset <= mark; offset += 0x8*4) {
a2fbb9ea 703 for (word = 0; word < 8; word++)
cdaa7cb8 704 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 705 data[8] = 0x0;
7995c64e 706 pr_cont("%s", (char *)data);
a2fbb9ea 707 }
7a25cc73
DK
708 printk("%s" "end of fw dump\n", lvl);
709}
710
1191cb83 711static void bnx2x_fw_dump(struct bnx2x *bp)
7a25cc73
DK
712{
713 bnx2x_fw_dump_lvl(bp, KERN_ERR);
a2fbb9ea
ET
714}
715
6c719d00 716void bnx2x_panic_dump(struct bnx2x *bp)
a2fbb9ea
ET
717{
718 int i;
523224a3
DK
719 u16 j;
720 struct hc_sp_status_block_data sp_sb_data;
721 int func = BP_FUNC(bp);
722#ifdef BNX2X_STOP_ON_ERROR
723 u16 start = 0, end = 0;
6383c0b3 724 u8 cos;
523224a3 725#endif
a2fbb9ea 726
66e855f3 727 bp->stats_state = STATS_STATE_DISABLED;
7a752993 728 bp->eth_stats.unrecoverable_error++;
66e855f3
YG
729 DP(BNX2X_MSG_STATS, "stats_state - DISABLED\n");
730
a2fbb9ea
ET
731 BNX2X_ERR("begin crash dump -----------------\n");
732
8440d2b6
EG
733 /* Indices */
734 /* Common */
51c1a580 735 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
736 bp->def_idx, bp->def_att_idx, bp->attn_state,
737 bp->spq_prod_idx, bp->stats_counter);
523224a3
DK
738 BNX2X_ERR("DSB: attn bits(0x%x) ack(0x%x) id(0x%x) idx(0x%x)\n",
739 bp->def_status_blk->atten_status_block.attn_bits,
740 bp->def_status_blk->atten_status_block.attn_bits_ack,
741 bp->def_status_blk->atten_status_block.status_block_id,
742 bp->def_status_blk->atten_status_block.attn_bits_index);
743 BNX2X_ERR(" def (");
744 for (i = 0; i < HC_SP_SB_MAX_INDICES; i++)
745 pr_cont("0x%x%s",
f1deab50
JP
746 bp->def_status_blk->sp_sb.index_values[i],
747 (i == HC_SP_SB_MAX_INDICES - 1) ? ") " : " ");
523224a3
DK
748
749 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
750 *((u32 *)&sp_sb_data + i) = REG_RD(bp, BAR_CSTRORM_INTMEM +
751 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
752 i*sizeof(u32));
753
f1deab50 754 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
755 sp_sb_data.igu_sb_id,
756 sp_sb_data.igu_seg_id,
757 sp_sb_data.p_func.pf_id,
758 sp_sb_data.p_func.vnic_id,
759 sp_sb_data.p_func.vf_id,
619c5cb6
VZ
760 sp_sb_data.p_func.vf_valid,
761 sp_sb_data.state);
523224a3 762
8440d2b6 763
ec6ba945 764 for_each_eth_queue(bp, i) {
a2fbb9ea 765 struct bnx2x_fastpath *fp = &bp->fp[i];
523224a3 766 int loop;
f2e0899f 767 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
768 struct hc_status_block_data_e1x sb_data_e1x;
769 struct hc_status_block_sm *hc_sm_p =
619c5cb6
VZ
770 CHIP_IS_E1x(bp) ?
771 sb_data_e1x.common.state_machine :
772 sb_data_e2.common.state_machine;
523224a3 773 struct hc_index_data *hc_index_p =
619c5cb6
VZ
774 CHIP_IS_E1x(bp) ?
775 sb_data_e1x.index_data :
776 sb_data_e2.index_data;
6383c0b3 777 u8 data_size, cos;
523224a3 778 u32 *sb_data_p;
6383c0b3 779 struct bnx2x_fp_txdata txdata;
523224a3
DK
780
781 /* Rx */
51c1a580 782 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 783 i, fp->rx_bd_prod, fp->rx_bd_cons,
523224a3 784 fp->rx_comp_prod,
66e855f3 785 fp->rx_comp_cons, le16_to_cpu(*fp->rx_cons_sb));
51c1a580 786 BNX2X_ERR(" rx_sge_prod(0x%x) last_max_sge(0x%x) fp_hc_idx(0x%x)\n",
8440d2b6 787 fp->rx_sge_prod, fp->last_max_sge,
523224a3 788 le16_to_cpu(fp->fp_hc_idx));
a2fbb9ea 789
523224a3 790 /* Tx */
6383c0b3
AE
791 for_each_cos_in_tx_queue(fp, cos)
792 {
65565884 793 txdata = *fp->txdata_ptr[cos];
51c1a580 794 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
795 i, txdata.tx_pkt_prod,
796 txdata.tx_pkt_cons, txdata.tx_bd_prod,
797 txdata.tx_bd_cons,
798 le16_to_cpu(*txdata.tx_cons_sb));
799 }
523224a3 800
619c5cb6
VZ
801 loop = CHIP_IS_E1x(bp) ?
802 HC_SB_MAX_INDICES_E1X : HC_SB_MAX_INDICES_E2;
523224a3
DK
803
804 /* host sb data */
805
ec6ba945
VZ
806 if (IS_FCOE_FP(fp))
807 continue;
55c11941 808
523224a3
DK
809 BNX2X_ERR(" run indexes (");
810 for (j = 0; j < HC_SB_MAX_SM; j++)
811 pr_cont("0x%x%s",
812 fp->sb_running_index[j],
813 (j == HC_SB_MAX_SM - 1) ? ")" : " ");
814
815 BNX2X_ERR(" indexes (");
816 for (j = 0; j < loop; j++)
817 pr_cont("0x%x%s",
818 fp->sb_index_values[j],
819 (j == loop - 1) ? ")" : " ");
820 /* fw sb data */
619c5cb6
VZ
821 data_size = CHIP_IS_E1x(bp) ?
822 sizeof(struct hc_status_block_data_e1x) :
823 sizeof(struct hc_status_block_data_e2);
523224a3 824 data_size /= sizeof(u32);
619c5cb6
VZ
825 sb_data_p = CHIP_IS_E1x(bp) ?
826 (u32 *)&sb_data_e1x :
827 (u32 *)&sb_data_e2;
523224a3
DK
828 /* copy sb data in here */
829 for (j = 0; j < data_size; j++)
830 *(sb_data_p + j) = REG_RD(bp, BAR_CSTRORM_INTMEM +
831 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp->fw_sb_id) +
832 j * sizeof(u32));
833
619c5cb6 834 if (!CHIP_IS_E1x(bp)) {
51c1a580 835 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
836 sb_data_e2.common.p_func.pf_id,
837 sb_data_e2.common.p_func.vf_id,
838 sb_data_e2.common.p_func.vf_valid,
839 sb_data_e2.common.p_func.vnic_id,
619c5cb6
VZ
840 sb_data_e2.common.same_igu_sb_1b,
841 sb_data_e2.common.state);
f2e0899f 842 } else {
51c1a580 843 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
844 sb_data_e1x.common.p_func.pf_id,
845 sb_data_e1x.common.p_func.vf_id,
846 sb_data_e1x.common.p_func.vf_valid,
847 sb_data_e1x.common.p_func.vnic_id,
619c5cb6
VZ
848 sb_data_e1x.common.same_igu_sb_1b,
849 sb_data_e1x.common.state);
f2e0899f 850 }
523224a3
DK
851
852 /* SB_SMs data */
853 for (j = 0; j < HC_SB_MAX_SM; j++) {
51c1a580
MS
854 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",
855 j, hc_sm_p[j].__flags,
856 hc_sm_p[j].igu_sb_id,
857 hc_sm_p[j].igu_seg_id,
858 hc_sm_p[j].time_to_expire,
859 hc_sm_p[j].timer_value);
523224a3
DK
860 }
861
862 /* Indecies data */
863 for (j = 0; j < loop; j++) {
51c1a580 864 pr_cont("INDEX[%d] flags (0x%x) timeout (0x%x)\n", j,
523224a3
DK
865 hc_index_p[j].flags,
866 hc_index_p[j].timeout);
867 }
8440d2b6 868 }
a2fbb9ea 869
523224a3 870#ifdef BNX2X_STOP_ON_ERROR
8440d2b6
EG
871 /* Rings */
872 /* Rx */
55c11941 873 for_each_valid_rx_queue(bp, i) {
8440d2b6 874 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea
ET
875
876 start = RX_BD(le16_to_cpu(*fp->rx_cons_sb) - 10);
877 end = RX_BD(le16_to_cpu(*fp->rx_cons_sb) + 503);
8440d2b6 878 for (j = start; j != end; j = RX_BD(j + 1)) {
a2fbb9ea
ET
879 u32 *rx_bd = (u32 *)&fp->rx_desc_ring[j];
880 struct sw_rx_bd *sw_bd = &fp->rx_buf_ring[j];
881
c3eefaf6 882 BNX2X_ERR("fp%d: rx_bd[%x]=[%x:%x] sw_bd=[%p]\n",
44151acb 883 i, j, rx_bd[1], rx_bd[0], sw_bd->data);
a2fbb9ea
ET
884 }
885
3196a88a
EG
886 start = RX_SGE(fp->rx_sge_prod);
887 end = RX_SGE(fp->last_max_sge);
8440d2b6 888 for (j = start; j != end; j = RX_SGE(j + 1)) {
7a9b2557
VZ
889 u32 *rx_sge = (u32 *)&fp->rx_sge_ring[j];
890 struct sw_rx_page *sw_page = &fp->rx_page_ring[j];
891
c3eefaf6
EG
892 BNX2X_ERR("fp%d: rx_sge[%x]=[%x:%x] sw_page=[%p]\n",
893 i, j, rx_sge[1], rx_sge[0], sw_page->page);
7a9b2557
VZ
894 }
895
a2fbb9ea
ET
896 start = RCQ_BD(fp->rx_comp_cons - 10);
897 end = RCQ_BD(fp->rx_comp_cons + 503);
8440d2b6 898 for (j = start; j != end; j = RCQ_BD(j + 1)) {
a2fbb9ea
ET
899 u32 *cqe = (u32 *)&fp->rx_comp_ring[j];
900
c3eefaf6
EG
901 BNX2X_ERR("fp%d: cqe[%x]=[%x:%x:%x:%x]\n",
902 i, j, cqe[0], cqe[1], cqe[2], cqe[3]);
a2fbb9ea
ET
903 }
904 }
905
8440d2b6 906 /* Tx */
55c11941 907 for_each_valid_tx_queue(bp, i) {
8440d2b6 908 struct bnx2x_fastpath *fp = &bp->fp[i];
6383c0b3 909 for_each_cos_in_tx_queue(fp, cos) {
65565884 910 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3
AE
911
912 start = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) - 10);
913 end = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) + 245);
914 for (j = start; j != end; j = TX_BD(j + 1)) {
915 struct sw_tx_bd *sw_bd =
916 &txdata->tx_buf_ring[j];
917
51c1a580 918 BNX2X_ERR("fp%d: txdata %d, packet[%x]=[%p,%x]\n",
6383c0b3
AE
919 i, cos, j, sw_bd->skb,
920 sw_bd->first_bd);
921 }
8440d2b6 922
6383c0b3
AE
923 start = TX_BD(txdata->tx_bd_cons - 10);
924 end = TX_BD(txdata->tx_bd_cons + 254);
925 for (j = start; j != end; j = TX_BD(j + 1)) {
926 u32 *tx_bd = (u32 *)&txdata->tx_desc_ring[j];
8440d2b6 927
51c1a580 928 BNX2X_ERR("fp%d: txdata %d, tx_bd[%x]=[%x:%x:%x:%x]\n",
6383c0b3
AE
929 i, cos, j, tx_bd[0], tx_bd[1],
930 tx_bd[2], tx_bd[3]);
931 }
8440d2b6
EG
932 }
933 }
523224a3 934#endif
34f80b04 935 bnx2x_fw_dump(bp);
a2fbb9ea
ET
936 bnx2x_mc_assert(bp);
937 BNX2X_ERR("end crash dump -----------------\n");
a2fbb9ea
ET
938}
939
619c5cb6
VZ
940/*
941 * FLR Support for E2
942 *
943 * bnx2x_pf_flr_clnup() is called during nic_load in the per function HW
944 * initialization.
945 */
946#define FLR_WAIT_USEC 10000 /* 10 miliseconds */
89db4ad8
AE
947#define FLR_WAIT_INTERVAL 50 /* usec */
948#define FLR_POLL_CNT (FLR_WAIT_USEC/FLR_WAIT_INTERVAL) /* 200 */
619c5cb6
VZ
949
950struct pbf_pN_buf_regs {
951 int pN;
952 u32 init_crd;
953 u32 crd;
954 u32 crd_freed;
955};
956
957struct pbf_pN_cmd_regs {
958 int pN;
959 u32 lines_occup;
960 u32 lines_freed;
961};
962
963static void bnx2x_pbf_pN_buf_flushed(struct bnx2x *bp,
964 struct pbf_pN_buf_regs *regs,
965 u32 poll_count)
966{
967 u32 init_crd, crd, crd_start, crd_freed, crd_freed_start;
968 u32 cur_cnt = poll_count;
969
970 crd_freed = crd_freed_start = REG_RD(bp, regs->crd_freed);
971 crd = crd_start = REG_RD(bp, regs->crd);
972 init_crd = REG_RD(bp, regs->init_crd);
973
974 DP(BNX2X_MSG_SP, "INIT CREDIT[%d] : %x\n", regs->pN, init_crd);
975 DP(BNX2X_MSG_SP, "CREDIT[%d] : s:%x\n", regs->pN, crd);
976 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: s:%x\n", regs->pN, crd_freed);
977
978 while ((crd != init_crd) && ((u32)SUB_S32(crd_freed, crd_freed_start) <
979 (init_crd - crd_start))) {
980 if (cur_cnt--) {
89db4ad8 981 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
982 crd = REG_RD(bp, regs->crd);
983 crd_freed = REG_RD(bp, regs->crd_freed);
984 } else {
985 DP(BNX2X_MSG_SP, "PBF tx buffer[%d] timed out\n",
986 regs->pN);
987 DP(BNX2X_MSG_SP, "CREDIT[%d] : c:%x\n",
988 regs->pN, crd);
989 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: c:%x\n",
990 regs->pN, crd_freed);
991 break;
992 }
993 }
994 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF tx buffer[%d]\n",
89db4ad8 995 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
996}
997
998static void bnx2x_pbf_pN_cmd_flushed(struct bnx2x *bp,
999 struct pbf_pN_cmd_regs *regs,
1000 u32 poll_count)
1001{
1002 u32 occup, to_free, freed, freed_start;
1003 u32 cur_cnt = poll_count;
1004
1005 occup = to_free = REG_RD(bp, regs->lines_occup);
1006 freed = freed_start = REG_RD(bp, regs->lines_freed);
1007
1008 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n", regs->pN, occup);
1009 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n", regs->pN, freed);
1010
1011 while (occup && ((u32)SUB_S32(freed, freed_start) < to_free)) {
1012 if (cur_cnt--) {
89db4ad8 1013 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1014 occup = REG_RD(bp, regs->lines_occup);
1015 freed = REG_RD(bp, regs->lines_freed);
1016 } else {
1017 DP(BNX2X_MSG_SP, "PBF cmd queue[%d] timed out\n",
1018 regs->pN);
1019 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n",
1020 regs->pN, occup);
1021 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n",
1022 regs->pN, freed);
1023 break;
1024 }
1025 }
1026 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF cmd queue[%d]\n",
89db4ad8 1027 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1028}
1029
1191cb83
ED
1030static u32 bnx2x_flr_clnup_reg_poll(struct bnx2x *bp, u32 reg,
1031 u32 expected, u32 poll_count)
619c5cb6
VZ
1032{
1033 u32 cur_cnt = poll_count;
1034 u32 val;
1035
1036 while ((val = REG_RD(bp, reg)) != expected && cur_cnt--)
89db4ad8 1037 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1038
1039 return val;
1040}
1041
1191cb83
ED
1042static int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
1043 char *msg, u32 poll_cnt)
619c5cb6
VZ
1044{
1045 u32 val = bnx2x_flr_clnup_reg_poll(bp, reg, 0, poll_cnt);
1046 if (val != 0) {
1047 BNX2X_ERR("%s usage count=%d\n", msg, val);
1048 return 1;
1049 }
1050 return 0;
1051}
1052
1053static u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp)
1054{
1055 /* adjust polling timeout */
1056 if (CHIP_REV_IS_EMUL(bp))
1057 return FLR_POLL_CNT * 2000;
1058
1059 if (CHIP_REV_IS_FPGA(bp))
1060 return FLR_POLL_CNT * 120;
1061
1062 return FLR_POLL_CNT;
1063}
1064
1065static void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count)
1066{
1067 struct pbf_pN_cmd_regs cmd_regs[] = {
1068 {0, (CHIP_IS_E3B0(bp)) ?
1069 PBF_REG_TQ_OCCUPANCY_Q0 :
1070 PBF_REG_P0_TQ_OCCUPANCY,
1071 (CHIP_IS_E3B0(bp)) ?
1072 PBF_REG_TQ_LINES_FREED_CNT_Q0 :
1073 PBF_REG_P0_TQ_LINES_FREED_CNT},
1074 {1, (CHIP_IS_E3B0(bp)) ?
1075 PBF_REG_TQ_OCCUPANCY_Q1 :
1076 PBF_REG_P1_TQ_OCCUPANCY,
1077 (CHIP_IS_E3B0(bp)) ?
1078 PBF_REG_TQ_LINES_FREED_CNT_Q1 :
1079 PBF_REG_P1_TQ_LINES_FREED_CNT},
1080 {4, (CHIP_IS_E3B0(bp)) ?
1081 PBF_REG_TQ_OCCUPANCY_LB_Q :
1082 PBF_REG_P4_TQ_OCCUPANCY,
1083 (CHIP_IS_E3B0(bp)) ?
1084 PBF_REG_TQ_LINES_FREED_CNT_LB_Q :
1085 PBF_REG_P4_TQ_LINES_FREED_CNT}
1086 };
1087
1088 struct pbf_pN_buf_regs buf_regs[] = {
1089 {0, (CHIP_IS_E3B0(bp)) ?
1090 PBF_REG_INIT_CRD_Q0 :
1091 PBF_REG_P0_INIT_CRD ,
1092 (CHIP_IS_E3B0(bp)) ?
1093 PBF_REG_CREDIT_Q0 :
1094 PBF_REG_P0_CREDIT,
1095 (CHIP_IS_E3B0(bp)) ?
1096 PBF_REG_INTERNAL_CRD_FREED_CNT_Q0 :
1097 PBF_REG_P0_INTERNAL_CRD_FREED_CNT},
1098 {1, (CHIP_IS_E3B0(bp)) ?
1099 PBF_REG_INIT_CRD_Q1 :
1100 PBF_REG_P1_INIT_CRD,
1101 (CHIP_IS_E3B0(bp)) ?
1102 PBF_REG_CREDIT_Q1 :
1103 PBF_REG_P1_CREDIT,
1104 (CHIP_IS_E3B0(bp)) ?
1105 PBF_REG_INTERNAL_CRD_FREED_CNT_Q1 :
1106 PBF_REG_P1_INTERNAL_CRD_FREED_CNT},
1107 {4, (CHIP_IS_E3B0(bp)) ?
1108 PBF_REG_INIT_CRD_LB_Q :
1109 PBF_REG_P4_INIT_CRD,
1110 (CHIP_IS_E3B0(bp)) ?
1111 PBF_REG_CREDIT_LB_Q :
1112 PBF_REG_P4_CREDIT,
1113 (CHIP_IS_E3B0(bp)) ?
1114 PBF_REG_INTERNAL_CRD_FREED_CNT_LB_Q :
1115 PBF_REG_P4_INTERNAL_CRD_FREED_CNT},
1116 };
1117
1118 int i;
1119
1120 /* Verify the command queues are flushed P0, P1, P4 */
1121 for (i = 0; i < ARRAY_SIZE(cmd_regs); i++)
1122 bnx2x_pbf_pN_cmd_flushed(bp, &cmd_regs[i], poll_count);
1123
1124
1125 /* Verify the transmission buffers are flushed P0, P1, P4 */
1126 for (i = 0; i < ARRAY_SIZE(buf_regs); i++)
1127 bnx2x_pbf_pN_buf_flushed(bp, &buf_regs[i], poll_count);
1128}
1129
1130#define OP_GEN_PARAM(param) \
1131 (((param) << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM)
1132
1133#define OP_GEN_TYPE(type) \
1134 (((type) << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE)
1135
1136#define OP_GEN_AGG_VECT(index) \
1137 (((index) << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX)
1138
1139
1191cb83 1140static int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func,
619c5cb6
VZ
1141 u32 poll_cnt)
1142{
1143 struct sdm_op_gen op_gen = {0};
1144
1145 u32 comp_addr = BAR_CSTRORM_INTMEM +
1146 CSTORM_FINAL_CLEANUP_COMPLETE_OFFSET(clnup_func);
1147 int ret = 0;
1148
1149 if (REG_RD(bp, comp_addr)) {
89db4ad8 1150 BNX2X_ERR("Cleanup complete was not 0 before sending\n");
619c5cb6
VZ
1151 return 1;
1152 }
1153
1154 op_gen.command |= OP_GEN_PARAM(XSTORM_AGG_INT_FINAL_CLEANUP_INDEX);
1155 op_gen.command |= OP_GEN_TYPE(XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE);
1156 op_gen.command |= OP_GEN_AGG_VECT(clnup_func);
1157 op_gen.command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
1158
89db4ad8 1159 DP(BNX2X_MSG_SP, "sending FW Final cleanup\n");
619c5cb6
VZ
1160 REG_WR(bp, XSDM_REG_OPERATION_GEN, op_gen.command);
1161
1162 if (bnx2x_flr_clnup_reg_poll(bp, comp_addr, 1, poll_cnt) != 1) {
1163 BNX2X_ERR("FW final cleanup did not succeed\n");
51c1a580
MS
1164 DP(BNX2X_MSG_SP, "At timeout completion address contained %x\n",
1165 (REG_RD(bp, comp_addr)));
619c5cb6
VZ
1166 ret = 1;
1167 }
1168 /* Zero completion for nxt FLR */
1169 REG_WR(bp, comp_addr, 0);
1170
1171 return ret;
1172}
1173
1191cb83 1174static u8 bnx2x_is_pcie_pending(struct pci_dev *dev)
619c5cb6 1175{
619c5cb6
VZ
1176 u16 status;
1177
2a80eebc 1178 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
619c5cb6
VZ
1179 return status & PCI_EXP_DEVSTA_TRPND;
1180}
1181
1182/* PF FLR specific routines
1183*/
1184static int bnx2x_poll_hw_usage_counters(struct bnx2x *bp, u32 poll_cnt)
1185{
1186
1187 /* wait for CFC PF usage-counter to zero (includes all the VFs) */
1188 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1189 CFC_REG_NUM_LCIDS_INSIDE_PF,
1190 "CFC PF usage counter timed out",
1191 poll_cnt))
1192 return 1;
1193
1194
1195 /* Wait for DQ PF usage-counter to zero (until DQ cleanup) */
1196 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1197 DORQ_REG_PF_USAGE_CNT,
1198 "DQ PF usage counter timed out",
1199 poll_cnt))
1200 return 1;
1201
1202 /* Wait for QM PF usage-counter to zero (until DQ cleanup) */
1203 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1204 QM_REG_PF_USG_CNT_0 + 4*BP_FUNC(bp),
1205 "QM PF usage counter timed out",
1206 poll_cnt))
1207 return 1;
1208
1209 /* Wait for Timer PF usage-counters to zero (until DQ cleanup) */
1210 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1211 TM_REG_LIN0_VNIC_UC + 4*BP_PORT(bp),
1212 "Timers VNIC usage counter timed out",
1213 poll_cnt))
1214 return 1;
1215 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1216 TM_REG_LIN0_NUM_SCANS + 4*BP_PORT(bp),
1217 "Timers NUM_SCANS usage counter timed out",
1218 poll_cnt))
1219 return 1;
1220
1221 /* Wait DMAE PF usage counter to zero */
1222 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1223 dmae_reg_go_c[INIT_DMAE_C(bp)],
1224 "DMAE dommand register timed out",
1225 poll_cnt))
1226 return 1;
1227
1228 return 0;
1229}
1230
1231static void bnx2x_hw_enable_status(struct bnx2x *bp)
1232{
1233 u32 val;
1234
1235 val = REG_RD(bp, CFC_REG_WEAK_ENABLE_PF);
1236 DP(BNX2X_MSG_SP, "CFC_REG_WEAK_ENABLE_PF is 0x%x\n", val);
1237
1238 val = REG_RD(bp, PBF_REG_DISABLE_PF);
1239 DP(BNX2X_MSG_SP, "PBF_REG_DISABLE_PF is 0x%x\n", val);
1240
1241 val = REG_RD(bp, IGU_REG_PCI_PF_MSI_EN);
1242 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSI_EN is 0x%x\n", val);
1243
1244 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_EN);
1245 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_EN is 0x%x\n", val);
1246
1247 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_FUNC_MASK);
1248 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_FUNC_MASK is 0x%x\n", val);
1249
1250 val = REG_RD(bp, PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR);
1251 DP(BNX2X_MSG_SP, "PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR is 0x%x\n", val);
1252
1253 val = REG_RD(bp, PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR);
1254 DP(BNX2X_MSG_SP, "PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR is 0x%x\n", val);
1255
1256 val = REG_RD(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
1257 DP(BNX2X_MSG_SP, "PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER is 0x%x\n",
1258 val);
1259}
1260
1261static int bnx2x_pf_flr_clnup(struct bnx2x *bp)
1262{
1263 u32 poll_cnt = bnx2x_flr_clnup_poll_count(bp);
1264
1265 DP(BNX2X_MSG_SP, "Cleanup after FLR PF[%d]\n", BP_ABS_FUNC(bp));
1266
1267 /* Re-enable PF target read access */
1268 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
1269
1270 /* Poll HW usage counters */
89db4ad8 1271 DP(BNX2X_MSG_SP, "Polling usage counters\n");
619c5cb6
VZ
1272 if (bnx2x_poll_hw_usage_counters(bp, poll_cnt))
1273 return -EBUSY;
1274
1275 /* Zero the igu 'trailing edge' and 'leading edge' */
1276
1277 /* Send the FW cleanup command */
1278 if (bnx2x_send_final_clnup(bp, (u8)BP_FUNC(bp), poll_cnt))
1279 return -EBUSY;
1280
1281 /* ATC cleanup */
1282
1283 /* Verify TX hw is flushed */
1284 bnx2x_tx_hw_flushed(bp, poll_cnt);
1285
1286 /* Wait 100ms (not adjusted according to platform) */
1287 msleep(100);
1288
1289 /* Verify no pending pci transactions */
1290 if (bnx2x_is_pcie_pending(bp->pdev))
1291 BNX2X_ERR("PCIE Transactions still pending\n");
1292
1293 /* Debug */
1294 bnx2x_hw_enable_status(bp);
1295
1296 /*
1297 * Master enable - Due to WB DMAE writes performed before this
1298 * register is re-initialized as part of the regular function init
1299 */
1300 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
1301
1302 return 0;
1303}
1304
f2e0899f 1305static void bnx2x_hc_int_enable(struct bnx2x *bp)
a2fbb9ea 1306{
34f80b04 1307 int port = BP_PORT(bp);
a2fbb9ea
ET
1308 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1309 u32 val = REG_RD(bp, addr);
69c326b3
DK
1310 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1311 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1312 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
a2fbb9ea
ET
1313
1314 if (msix) {
8badd27a
EG
1315 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1316 HC_CONFIG_0_REG_INT_LINE_EN_0);
a2fbb9ea
ET
1317 val |= (HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1318 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
69c326b3
DK
1319 if (single_msix)
1320 val |= HC_CONFIG_0_REG_SINGLE_ISR_EN_0;
8badd27a
EG
1321 } else if (msi) {
1322 val &= ~HC_CONFIG_0_REG_INT_LINE_EN_0;
1323 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1324 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1325 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea
ET
1326 } else {
1327 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
615f8fd9 1328 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
a2fbb9ea
ET
1329 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1330 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
615f8fd9 1331
a0fd065c 1332 if (!CHIP_IS_E1(bp)) {
51c1a580
MS
1333 DP(NETIF_MSG_IFUP,
1334 "write %x to HC %d (addr 0x%x)\n", val, port, addr);
615f8fd9 1335
a0fd065c 1336 REG_WR(bp, addr, val);
615f8fd9 1337
a0fd065c
DK
1338 val &= ~HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0;
1339 }
a2fbb9ea
ET
1340 }
1341
a0fd065c
DK
1342 if (CHIP_IS_E1(bp))
1343 REG_WR(bp, HC_REG_INT_MASK + port*4, 0x1FFFF);
1344
51c1a580
MS
1345 DP(NETIF_MSG_IFUP,
1346 "write %x to HC %d (addr 0x%x) mode %s\n", val, port, addr,
1347 (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
a2fbb9ea
ET
1348
1349 REG_WR(bp, addr, val);
37dbbf32
EG
1350 /*
1351 * Ensure that HC_CONFIG is written before leading/trailing edge config
1352 */
1353 mmiowb();
1354 barrier();
34f80b04 1355
f2e0899f 1356 if (!CHIP_IS_E1(bp)) {
34f80b04 1357 /* init leading/trailing edge */
fb3bff17 1358 if (IS_MF(bp)) {
3395a033 1359 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
34f80b04 1360 if (bp->port.pmf)
4acac6a5
EG
1361 /* enable nig and gpio3 attention */
1362 val |= 0x1100;
34f80b04
EG
1363 } else
1364 val = 0xffff;
1365
1366 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
1367 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
1368 }
37dbbf32
EG
1369
1370 /* Make sure that interrupts are indeed enabled from here on */
1371 mmiowb();
a2fbb9ea
ET
1372}
1373
f2e0899f
DK
1374static void bnx2x_igu_int_enable(struct bnx2x *bp)
1375{
1376 u32 val;
30a5de77
DK
1377 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1378 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1379 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
f2e0899f
DK
1380
1381 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1382
1383 if (msix) {
1384 val &= ~(IGU_PF_CONF_INT_LINE_EN |
1385 IGU_PF_CONF_SINGLE_ISR_EN);
1386 val |= (IGU_PF_CONF_FUNC_EN |
1387 IGU_PF_CONF_MSI_MSIX_EN |
1388 IGU_PF_CONF_ATTN_BIT_EN);
30a5de77
DK
1389
1390 if (single_msix)
1391 val |= IGU_PF_CONF_SINGLE_ISR_EN;
f2e0899f
DK
1392 } else if (msi) {
1393 val &= ~IGU_PF_CONF_INT_LINE_EN;
1394 val |= (IGU_PF_CONF_FUNC_EN |
1395 IGU_PF_CONF_MSI_MSIX_EN |
1396 IGU_PF_CONF_ATTN_BIT_EN |
1397 IGU_PF_CONF_SINGLE_ISR_EN);
1398 } else {
1399 val &= ~IGU_PF_CONF_MSI_MSIX_EN;
1400 val |= (IGU_PF_CONF_FUNC_EN |
1401 IGU_PF_CONF_INT_LINE_EN |
1402 IGU_PF_CONF_ATTN_BIT_EN |
1403 IGU_PF_CONF_SINGLE_ISR_EN);
1404 }
1405
51c1a580 1406 DP(NETIF_MSG_IFUP, "write 0x%x to IGU mode %s\n",
f2e0899f
DK
1407 val, (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
1408
1409 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1410
79a8557a
YM
1411 if (val & IGU_PF_CONF_INT_LINE_EN)
1412 pci_intx(bp->pdev, true);
1413
f2e0899f
DK
1414 barrier();
1415
1416 /* init leading/trailing edge */
1417 if (IS_MF(bp)) {
3395a033 1418 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
1419 if (bp->port.pmf)
1420 /* enable nig and gpio3 attention */
1421 val |= 0x1100;
1422 } else
1423 val = 0xffff;
1424
1425 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
1426 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
1427
1428 /* Make sure that interrupts are indeed enabled from here on */
1429 mmiowb();
1430}
1431
1432void bnx2x_int_enable(struct bnx2x *bp)
1433{
1434 if (bp->common.int_block == INT_BLOCK_HC)
1435 bnx2x_hc_int_enable(bp);
1436 else
1437 bnx2x_igu_int_enable(bp);
1438}
1439
1440static void bnx2x_hc_int_disable(struct bnx2x *bp)
a2fbb9ea 1441{
34f80b04 1442 int port = BP_PORT(bp);
a2fbb9ea
ET
1443 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1444 u32 val = REG_RD(bp, addr);
1445
a0fd065c
DK
1446 /*
1447 * in E1 we must use only PCI configuration space to disable
1448 * MSI/MSIX capablility
1449 * It's forbitten to disable IGU_PF_CONF_MSI_MSIX_EN in HC block
1450 */
1451 if (CHIP_IS_E1(bp)) {
1452 /* Since IGU_PF_CONF_MSI_MSIX_EN still always on
1453 * Use mask register to prevent from HC sending interrupts
1454 * after we exit the function
1455 */
1456 REG_WR(bp, HC_REG_INT_MASK + port*4, 0);
1457
1458 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1459 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1460 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
1461 } else
1462 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1463 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1464 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1465 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea 1466
51c1a580
MS
1467 DP(NETIF_MSG_IFDOWN,
1468 "write %x to HC %d (addr 0x%x)\n",
a2fbb9ea
ET
1469 val, port, addr);
1470
8badd27a
EG
1471 /* flush all outstanding writes */
1472 mmiowb();
1473
a2fbb9ea
ET
1474 REG_WR(bp, addr, val);
1475 if (REG_RD(bp, addr) != val)
1476 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1477}
1478
f2e0899f
DK
1479static void bnx2x_igu_int_disable(struct bnx2x *bp)
1480{
1481 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1482
1483 val &= ~(IGU_PF_CONF_MSI_MSIX_EN |
1484 IGU_PF_CONF_INT_LINE_EN |
1485 IGU_PF_CONF_ATTN_BIT_EN);
1486
51c1a580 1487 DP(NETIF_MSG_IFDOWN, "write %x to IGU\n", val);
f2e0899f
DK
1488
1489 /* flush all outstanding writes */
1490 mmiowb();
1491
1492 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1493 if (REG_RD(bp, IGU_REG_PF_CONFIGURATION) != val)
1494 BNX2X_ERR("BUG! proper val not read from IGU!\n");
1495}
1496
910cc727 1497static void bnx2x_int_disable(struct bnx2x *bp)
f2e0899f
DK
1498{
1499 if (bp->common.int_block == INT_BLOCK_HC)
1500 bnx2x_hc_int_disable(bp);
1501 else
1502 bnx2x_igu_int_disable(bp);
1503}
1504
9f6c9258 1505void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw)
a2fbb9ea 1506{
a2fbb9ea 1507 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8badd27a 1508 int i, offset;
a2fbb9ea 1509
f8ef6e44
YG
1510 if (disable_hw)
1511 /* prevent the HW from sending interrupts */
1512 bnx2x_int_disable(bp);
a2fbb9ea
ET
1513
1514 /* make sure all ISRs are done */
1515 if (msix) {
8badd27a
EG
1516 synchronize_irq(bp->msix_table[0].vector);
1517 offset = 1;
55c11941
MS
1518 if (CNIC_SUPPORT(bp))
1519 offset++;
ec6ba945 1520 for_each_eth_queue(bp, i)
754a2f52 1521 synchronize_irq(bp->msix_table[offset++].vector);
a2fbb9ea
ET
1522 } else
1523 synchronize_irq(bp->pdev->irq);
1524
1525 /* make sure sp_task is not running */
1cf167f2 1526 cancel_delayed_work(&bp->sp_task);
3deb8167 1527 cancel_delayed_work(&bp->period_task);
1cf167f2 1528 flush_workqueue(bnx2x_wq);
a2fbb9ea
ET
1529}
1530
34f80b04 1531/* fast path */
a2fbb9ea
ET
1532
1533/*
34f80b04 1534 * General service functions
a2fbb9ea
ET
1535 */
1536
72fd0718
VZ
1537/* Return true if succeeded to acquire the lock */
1538static bool bnx2x_trylock_hw_lock(struct bnx2x *bp, u32 resource)
1539{
1540 u32 lock_status;
1541 u32 resource_bit = (1 << resource);
1542 int func = BP_FUNC(bp);
1543 u32 hw_lock_control_reg;
1544
51c1a580
MS
1545 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1546 "Trying to take a lock on resource %d\n", resource);
72fd0718
VZ
1547
1548 /* Validating that the resource is within range */
1549 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1550 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
72fd0718
VZ
1551 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1552 resource, HW_LOCK_MAX_RESOURCE_VALUE);
0fdf4d09 1553 return false;
72fd0718
VZ
1554 }
1555
1556 if (func <= 5)
1557 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1558 else
1559 hw_lock_control_reg =
1560 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1561
1562 /* Try to acquire the lock */
1563 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1564 lock_status = REG_RD(bp, hw_lock_control_reg);
1565 if (lock_status & resource_bit)
1566 return true;
1567
51c1a580
MS
1568 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1569 "Failed to get a lock on resource %d\n", resource);
72fd0718
VZ
1570 return false;
1571}
1572
c9ee9206
VZ
1573/**
1574 * bnx2x_get_leader_lock_resource - get the recovery leader resource id
1575 *
1576 * @bp: driver handle
1577 *
1578 * Returns the recovery leader resource id according to the engine this function
1579 * belongs to. Currently only only 2 engines is supported.
1580 */
1191cb83 1581static int bnx2x_get_leader_lock_resource(struct bnx2x *bp)
c9ee9206
VZ
1582{
1583 if (BP_PATH(bp))
1584 return HW_LOCK_RESOURCE_RECOVERY_LEADER_1;
1585 else
1586 return HW_LOCK_RESOURCE_RECOVERY_LEADER_0;
1587}
1588
1589/**
1590 * bnx2x_trylock_leader_lock- try to aquire a leader lock.
1591 *
1592 * @bp: driver handle
1593 *
1191cb83 1594 * Tries to aquire a leader lock for current engine.
c9ee9206 1595 */
1191cb83 1596static bool bnx2x_trylock_leader_lock(struct bnx2x *bp)
c9ee9206
VZ
1597{
1598 return bnx2x_trylock_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1599}
1600
619c5cb6 1601static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err);
55c11941 1602
3196a88a 1603
619c5cb6 1604void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe)
a2fbb9ea
ET
1605{
1606 struct bnx2x *bp = fp->bp;
1607 int cid = SW_CID(rr_cqe->ramrod_cqe.conn_and_cmd_data);
1608 int command = CQE_CMD(rr_cqe->ramrod_cqe.conn_and_cmd_data);
619c5cb6 1609 enum bnx2x_queue_cmd drv_cmd = BNX2X_Q_CMD_MAX;
15192a8c 1610 struct bnx2x_queue_sp_obj *q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a2fbb9ea 1611
34f80b04 1612 DP(BNX2X_MSG_SP,
a2fbb9ea 1613 "fp %d cid %d got ramrod #%d state is %x type is %d\n",
0626b899 1614 fp->index, cid, command, bp->state,
34f80b04 1615 rr_cqe->ramrod_cqe.ramrod_type);
a2fbb9ea 1616
619c5cb6
VZ
1617 switch (command) {
1618 case (RAMROD_CMD_ID_ETH_CLIENT_UPDATE):
d6cae238 1619 DP(BNX2X_MSG_SP, "got UPDATE ramrod. CID %d\n", cid);
619c5cb6
VZ
1620 drv_cmd = BNX2X_Q_CMD_UPDATE;
1621 break;
d6cae238 1622
619c5cb6 1623 case (RAMROD_CMD_ID_ETH_CLIENT_SETUP):
d6cae238 1624 DP(BNX2X_MSG_SP, "got MULTI[%d] setup ramrod\n", cid);
619c5cb6 1625 drv_cmd = BNX2X_Q_CMD_SETUP;
a2fbb9ea
ET
1626 break;
1627
6383c0b3 1628 case (RAMROD_CMD_ID_ETH_TX_QUEUE_SETUP):
51c1a580 1629 DP(BNX2X_MSG_SP, "got MULTI[%d] tx-only setup ramrod\n", cid);
6383c0b3
AE
1630 drv_cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
1631 break;
1632
619c5cb6 1633 case (RAMROD_CMD_ID_ETH_HALT):
d6cae238 1634 DP(BNX2X_MSG_SP, "got MULTI[%d] halt ramrod\n", cid);
619c5cb6 1635 drv_cmd = BNX2X_Q_CMD_HALT;
a2fbb9ea
ET
1636 break;
1637
619c5cb6 1638 case (RAMROD_CMD_ID_ETH_TERMINATE):
d6cae238 1639 DP(BNX2X_MSG_SP, "got MULTI[%d] teminate ramrod\n", cid);
619c5cb6 1640 drv_cmd = BNX2X_Q_CMD_TERMINATE;
a2fbb9ea
ET
1641 break;
1642
619c5cb6 1643 case (RAMROD_CMD_ID_ETH_EMPTY):
d6cae238 1644 DP(BNX2X_MSG_SP, "got MULTI[%d] empty ramrod\n", cid);
619c5cb6 1645 drv_cmd = BNX2X_Q_CMD_EMPTY;
993ac7b5 1646 break;
619c5cb6
VZ
1647
1648 default:
1649 BNX2X_ERR("unexpected MC reply (%d) on fp[%d]\n",
1650 command, fp->index);
1651 return;
523224a3 1652 }
3196a88a 1653
619c5cb6
VZ
1654 if ((drv_cmd != BNX2X_Q_CMD_MAX) &&
1655 q_obj->complete_cmd(bp, q_obj, drv_cmd))
1656 /* q_obj->complete_cmd() failure means that this was
1657 * an unexpected completion.
1658 *
1659 * In this case we don't want to increase the bp->spq_left
1660 * because apparently we haven't sent this command the first
1661 * place.
1662 */
1663#ifdef BNX2X_STOP_ON_ERROR
1664 bnx2x_panic();
1665#else
1666 return;
1667#endif
1668
8fe23fbd 1669 smp_mb__before_atomic_inc();
6e30dd4e 1670 atomic_inc(&bp->cq_spq_left);
619c5cb6
VZ
1671 /* push the change in bp->spq_left and towards the memory */
1672 smp_mb__after_atomic_inc();
49d66772 1673
d6cae238
VZ
1674 DP(BNX2X_MSG_SP, "bp->cq_spq_left %x\n", atomic_read(&bp->cq_spq_left));
1675
a3348722
BW
1676 if ((drv_cmd == BNX2X_Q_CMD_UPDATE) && (IS_FCOE_FP(fp)) &&
1677 (!!test_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state))) {
1678 /* if Q update ramrod is completed for last Q in AFEX vif set
1679 * flow, then ACK MCP at the end
1680 *
1681 * mark pending ACK to MCP bit.
1682 * prevent case that both bits are cleared.
1683 * At the end of load/unload driver checks that
1684 * sp_state is cleaerd, and this order prevents
1685 * races
1686 */
1687 smp_mb__before_clear_bit();
1688 set_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK, &bp->sp_state);
1689 wmb();
1690 clear_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
1691 smp_mb__after_clear_bit();
1692
1693 /* schedule workqueue to send ack to MCP */
1694 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
1695 }
1696
523224a3 1697 return;
a2fbb9ea
ET
1698}
1699
9f6c9258 1700irqreturn_t bnx2x_interrupt(int irq, void *dev_instance)
a2fbb9ea 1701{
555f6c78 1702 struct bnx2x *bp = netdev_priv(dev_instance);
a2fbb9ea 1703 u16 status = bnx2x_ack_int(bp);
34f80b04 1704 u16 mask;
ca00392c 1705 int i;
6383c0b3 1706 u8 cos;
a2fbb9ea 1707
34f80b04 1708 /* Return here if interrupt is shared and it's not for us */
a2fbb9ea
ET
1709 if (unlikely(status == 0)) {
1710 DP(NETIF_MSG_INTR, "not our interrupt!\n");
1711 return IRQ_NONE;
1712 }
f5372251 1713 DP(NETIF_MSG_INTR, "got an interrupt status 0x%x\n", status);
a2fbb9ea 1714
3196a88a
EG
1715#ifdef BNX2X_STOP_ON_ERROR
1716 if (unlikely(bp->panic))
1717 return IRQ_HANDLED;
1718#endif
1719
ec6ba945 1720 for_each_eth_queue(bp, i) {
ca00392c 1721 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea 1722
55c11941 1723 mask = 0x2 << (fp->index + CNIC_SUPPORT(bp));
ca00392c 1724 if (status & mask) {
619c5cb6 1725 /* Handle Rx or Tx according to SB id */
54b9ddaa 1726 prefetch(fp->rx_cons_sb);
6383c0b3 1727 for_each_cos_in_tx_queue(fp, cos)
65565884 1728 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
523224a3 1729 prefetch(&fp->sb_running_index[SM_RX_ID]);
54b9ddaa 1730 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
ca00392c
EG
1731 status &= ~mask;
1732 }
a2fbb9ea
ET
1733 }
1734
55c11941
MS
1735 if (CNIC_SUPPORT(bp)) {
1736 mask = 0x2;
1737 if (status & (mask | 0x1)) {
1738 struct cnic_ops *c_ops = NULL;
993ac7b5 1739
55c11941
MS
1740 if (likely(bp->state == BNX2X_STATE_OPEN)) {
1741 rcu_read_lock();
1742 c_ops = rcu_dereference(bp->cnic_ops);
1743 if (c_ops)
1744 c_ops->cnic_handler(bp->cnic_data,
1745 NULL);
1746 rcu_read_unlock();
1747 }
993ac7b5 1748
55c11941
MS
1749 status &= ~mask;
1750 }
993ac7b5 1751 }
a2fbb9ea 1752
34f80b04 1753 if (unlikely(status & 0x1)) {
1cf167f2 1754 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
a2fbb9ea
ET
1755
1756 status &= ~0x1;
1757 if (!status)
1758 return IRQ_HANDLED;
1759 }
1760
cdaa7cb8
VZ
1761 if (unlikely(status))
1762 DP(NETIF_MSG_INTR, "got an unknown interrupt! (status 0x%x)\n",
34f80b04 1763 status);
a2fbb9ea 1764
c18487ee 1765 return IRQ_HANDLED;
a2fbb9ea
ET
1766}
1767
c18487ee
YR
1768/* Link */
1769
1770/*
1771 * General service functions
1772 */
a2fbb9ea 1773
9f6c9258 1774int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1775{
1776 u32 lock_status;
1777 u32 resource_bit = (1 << resource);
4a37fb66
YG
1778 int func = BP_FUNC(bp);
1779 u32 hw_lock_control_reg;
c18487ee 1780 int cnt;
a2fbb9ea 1781
c18487ee
YR
1782 /* Validating that the resource is within range */
1783 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1784 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1785 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1786 return -EINVAL;
1787 }
a2fbb9ea 1788
4a37fb66
YG
1789 if (func <= 5) {
1790 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1791 } else {
1792 hw_lock_control_reg =
1793 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1794 }
1795
c18487ee 1796 /* Validating that the resource is not already taken */
4a37fb66 1797 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1798 if (lock_status & resource_bit) {
51c1a580 1799 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x\n",
c18487ee
YR
1800 lock_status, resource_bit);
1801 return -EEXIST;
1802 }
a2fbb9ea 1803
46230476
EG
1804 /* Try for 5 second every 5ms */
1805 for (cnt = 0; cnt < 1000; cnt++) {
c18487ee 1806 /* Try to acquire the lock */
4a37fb66
YG
1807 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1808 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee
YR
1809 if (lock_status & resource_bit)
1810 return 0;
a2fbb9ea 1811
c18487ee 1812 msleep(5);
a2fbb9ea 1813 }
51c1a580 1814 BNX2X_ERR("Timeout\n");
c18487ee
YR
1815 return -EAGAIN;
1816}
a2fbb9ea 1817
c9ee9206
VZ
1818int bnx2x_release_leader_lock(struct bnx2x *bp)
1819{
1820 return bnx2x_release_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1821}
1822
9f6c9258 1823int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1824{
1825 u32 lock_status;
1826 u32 resource_bit = (1 << resource);
4a37fb66
YG
1827 int func = BP_FUNC(bp);
1828 u32 hw_lock_control_reg;
a2fbb9ea 1829
c18487ee
YR
1830 /* Validating that the resource is within range */
1831 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1832 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1833 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1834 return -EINVAL;
1835 }
1836
4a37fb66
YG
1837 if (func <= 5) {
1838 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1839 } else {
1840 hw_lock_control_reg =
1841 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1842 }
1843
c18487ee 1844 /* Validating that the resource is currently taken */
4a37fb66 1845 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1846 if (!(lock_status & resource_bit)) {
51c1a580 1847 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x. unlock was called but lock wasn't taken!\n",
c18487ee
YR
1848 lock_status, resource_bit);
1849 return -EFAULT;
a2fbb9ea
ET
1850 }
1851
9f6c9258
DK
1852 REG_WR(bp, hw_lock_control_reg, resource_bit);
1853 return 0;
c18487ee 1854}
a2fbb9ea 1855
9f6c9258 1856
4acac6a5
EG
1857int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port)
1858{
1859 /* The GPIO should be swapped if swap register is set and active */
1860 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
1861 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
1862 int gpio_shift = gpio_num +
1863 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1864 u32 gpio_mask = (1 << gpio_shift);
1865 u32 gpio_reg;
1866 int value;
1867
1868 if (gpio_num > MISC_REGISTERS_GPIO_3) {
1869 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
1870 return -EINVAL;
1871 }
1872
1873 /* read GPIO value */
1874 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
1875
1876 /* get the requested pin value */
1877 if ((gpio_reg & gpio_mask) == gpio_mask)
1878 value = 1;
1879 else
1880 value = 0;
1881
1882 DP(NETIF_MSG_LINK, "pin %d value 0x%x\n", gpio_num, value);
1883
1884 return value;
1885}
1886
17de50b7 1887int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
c18487ee
YR
1888{
1889 /* The GPIO should be swapped if swap register is set and active */
1890 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
17de50b7 1891 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
c18487ee
YR
1892 int gpio_shift = gpio_num +
1893 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1894 u32 gpio_mask = (1 << gpio_shift);
1895 u32 gpio_reg;
a2fbb9ea 1896
c18487ee
YR
1897 if (gpio_num > MISC_REGISTERS_GPIO_3) {
1898 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
1899 return -EINVAL;
1900 }
a2fbb9ea 1901
4a37fb66 1902 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
c18487ee
YR
1903 /* read GPIO and mask except the float bits */
1904 gpio_reg = (REG_RD(bp, MISC_REG_GPIO) & MISC_REGISTERS_GPIO_FLOAT);
a2fbb9ea 1905
c18487ee
YR
1906 switch (mode) {
1907 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
51c1a580
MS
1908 DP(NETIF_MSG_LINK,
1909 "Set GPIO %d (shift %d) -> output low\n",
c18487ee
YR
1910 gpio_num, gpio_shift);
1911 /* clear FLOAT and set CLR */
1912 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1913 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_CLR_POS);
1914 break;
a2fbb9ea 1915
c18487ee 1916 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
51c1a580
MS
1917 DP(NETIF_MSG_LINK,
1918 "Set GPIO %d (shift %d) -> output high\n",
c18487ee
YR
1919 gpio_num, gpio_shift);
1920 /* clear FLOAT and set SET */
1921 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1922 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_SET_POS);
1923 break;
a2fbb9ea 1924
17de50b7 1925 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
51c1a580
MS
1926 DP(NETIF_MSG_LINK,
1927 "Set GPIO %d (shift %d) -> input\n",
c18487ee
YR
1928 gpio_num, gpio_shift);
1929 /* set FLOAT */
1930 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
1931 break;
a2fbb9ea 1932
c18487ee
YR
1933 default:
1934 break;
a2fbb9ea
ET
1935 }
1936
c18487ee 1937 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
4a37fb66 1938 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
f1410647 1939
c18487ee 1940 return 0;
a2fbb9ea
ET
1941}
1942
0d40f0d4
YR
1943int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode)
1944{
1945 u32 gpio_reg = 0;
1946 int rc = 0;
1947
1948 /* Any port swapping should be handled by caller. */
1949
1950 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
1951 /* read GPIO and mask except the float bits */
1952 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
1953 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_FLOAT_POS);
1954 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_CLR_POS);
1955 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_SET_POS);
1956
1957 switch (mode) {
1958 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
1959 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output low\n", pins);
1960 /* set CLR */
1961 gpio_reg |= (pins << MISC_REGISTERS_GPIO_CLR_POS);
1962 break;
1963
1964 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
1965 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output high\n", pins);
1966 /* set SET */
1967 gpio_reg |= (pins << MISC_REGISTERS_GPIO_SET_POS);
1968 break;
1969
1970 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
1971 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> input\n", pins);
1972 /* set FLOAT */
1973 gpio_reg |= (pins << MISC_REGISTERS_GPIO_FLOAT_POS);
1974 break;
1975
1976 default:
1977 BNX2X_ERR("Invalid GPIO mode assignment %d\n", mode);
1978 rc = -EINVAL;
1979 break;
1980 }
1981
1982 if (rc == 0)
1983 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
1984
1985 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
1986
1987 return rc;
1988}
1989
4acac6a5
EG
1990int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
1991{
1992 /* The GPIO should be swapped if swap register is set and active */
1993 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
1994 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
1995 int gpio_shift = gpio_num +
1996 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
1997 u32 gpio_mask = (1 << gpio_shift);
1998 u32 gpio_reg;
1999
2000 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2001 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2002 return -EINVAL;
2003 }
2004
2005 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2006 /* read GPIO int */
2007 gpio_reg = REG_RD(bp, MISC_REG_GPIO_INT);
2008
2009 switch (mode) {
2010 case MISC_REGISTERS_GPIO_INT_OUTPUT_CLR:
51c1a580
MS
2011 DP(NETIF_MSG_LINK,
2012 "Clear GPIO INT %d (shift %d) -> output low\n",
2013 gpio_num, gpio_shift);
4acac6a5
EG
2014 /* clear SET and set CLR */
2015 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2016 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2017 break;
2018
2019 case MISC_REGISTERS_GPIO_INT_OUTPUT_SET:
51c1a580
MS
2020 DP(NETIF_MSG_LINK,
2021 "Set GPIO INT %d (shift %d) -> output high\n",
2022 gpio_num, gpio_shift);
4acac6a5
EG
2023 /* clear CLR and set SET */
2024 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2025 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2026 break;
2027
2028 default:
2029 break;
2030 }
2031
2032 REG_WR(bp, MISC_REG_GPIO_INT, gpio_reg);
2033 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2034
2035 return 0;
2036}
2037
d6d99a3f 2038static int bnx2x_set_spio(struct bnx2x *bp, int spio, u32 mode)
a2fbb9ea 2039{
c18487ee 2040 u32 spio_reg;
a2fbb9ea 2041
d6d99a3f
YM
2042 /* Only 2 SPIOs are configurable */
2043 if ((spio != MISC_SPIO_SPIO4) && (spio != MISC_SPIO_SPIO5)) {
2044 BNX2X_ERR("Invalid SPIO 0x%x\n", spio);
c18487ee 2045 return -EINVAL;
a2fbb9ea
ET
2046 }
2047
4a37fb66 2048 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2049 /* read SPIO and mask except the float bits */
d6d99a3f 2050 spio_reg = (REG_RD(bp, MISC_REG_SPIO) & MISC_SPIO_FLOAT);
a2fbb9ea 2051
c18487ee 2052 switch (mode) {
d6d99a3f
YM
2053 case MISC_SPIO_OUTPUT_LOW:
2054 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output low\n", spio);
c18487ee 2055 /* clear FLOAT and set CLR */
d6d99a3f
YM
2056 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2057 spio_reg |= (spio << MISC_SPIO_CLR_POS);
c18487ee 2058 break;
a2fbb9ea 2059
d6d99a3f
YM
2060 case MISC_SPIO_OUTPUT_HIGH:
2061 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output high\n", spio);
c18487ee 2062 /* clear FLOAT and set SET */
d6d99a3f
YM
2063 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2064 spio_reg |= (spio << MISC_SPIO_SET_POS);
c18487ee 2065 break;
a2fbb9ea 2066
d6d99a3f
YM
2067 case MISC_SPIO_INPUT_HI_Z:
2068 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> input\n", spio);
c18487ee 2069 /* set FLOAT */
d6d99a3f 2070 spio_reg |= (spio << MISC_SPIO_FLOAT_POS);
c18487ee 2071 break;
a2fbb9ea 2072
c18487ee
YR
2073 default:
2074 break;
a2fbb9ea
ET
2075 }
2076
c18487ee 2077 REG_WR(bp, MISC_REG_SPIO, spio_reg);
4a37fb66 2078 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2079
a2fbb9ea
ET
2080 return 0;
2081}
2082
9f6c9258 2083void bnx2x_calc_fc_adv(struct bnx2x *bp)
a2fbb9ea 2084{
a22f0788 2085 u8 cfg_idx = bnx2x_get_link_cfg_idx(bp);
ad33ea3a
EG
2086 switch (bp->link_vars.ieee_fc &
2087 MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK) {
c18487ee 2088 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_NONE:
a22f0788 2089 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2090 ADVERTISED_Pause);
c18487ee 2091 break;
356e2385 2092
c18487ee 2093 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH:
a22f0788 2094 bp->port.advertising[cfg_idx] |= (ADVERTISED_Asym_Pause |
f85582f8 2095 ADVERTISED_Pause);
c18487ee 2096 break;
356e2385 2097
c18487ee 2098 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC:
a22f0788 2099 bp->port.advertising[cfg_idx] |= ADVERTISED_Asym_Pause;
c18487ee 2100 break;
356e2385 2101
c18487ee 2102 default:
a22f0788 2103 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2104 ADVERTISED_Pause);
c18487ee
YR
2105 break;
2106 }
2107}
f1410647 2108
cd1dfce2 2109static void bnx2x_set_requested_fc(struct bnx2x *bp)
c18487ee 2110{
cd1dfce2
YM
2111 /* Initialize link parameters structure variables
2112 * It is recommended to turn off RX FC for jumbo frames
2113 * for better performance
2114 */
2115 if (CHIP_IS_E1x(bp) && (bp->dev->mtu > 5000))
2116 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_TX;
2117 else
2118 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_BOTH;
2119}
a2fbb9ea 2120
cd1dfce2
YM
2121int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode)
2122{
2123 int rc, cfx_idx = bnx2x_get_link_cfg_idx(bp);
2124 u16 req_line_speed = bp->link_params.req_line_speed[cfx_idx];
2125
2126 if (!BP_NOMCP(bp)) {
2127 bnx2x_set_requested_fc(bp);
4a37fb66 2128 bnx2x_acquire_phy_lock(bp);
b5bf9068 2129
a22f0788 2130 if (load_mode == LOAD_DIAG) {
1cb0c788
YR
2131 struct link_params *lp = &bp->link_params;
2132 lp->loopback_mode = LOOPBACK_XGXS;
2133 /* do PHY loopback at 10G speed, if possible */
2134 if (lp->req_line_speed[cfx_idx] < SPEED_10000) {
2135 if (lp->speed_cap_mask[cfx_idx] &
2136 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G)
2137 lp->req_line_speed[cfx_idx] =
2138 SPEED_10000;
2139 else
2140 lp->req_line_speed[cfx_idx] =
2141 SPEED_1000;
2142 }
a22f0788 2143 }
b5bf9068 2144
8970b2e4
MS
2145 if (load_mode == LOAD_LOOPBACK_EXT) {
2146 struct link_params *lp = &bp->link_params;
2147 lp->loopback_mode = LOOPBACK_EXT;
2148 }
2149
19680c48 2150 rc = bnx2x_phy_init(&bp->link_params, &bp->link_vars);
b5bf9068 2151
4a37fb66 2152 bnx2x_release_phy_lock(bp);
a2fbb9ea 2153
3c96c68b
EG
2154 bnx2x_calc_fc_adv(bp);
2155
cd1dfce2 2156 if (bp->link_vars.link_up) {
b5bf9068 2157 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
19680c48 2158 bnx2x_link_report(bp);
cd1dfce2
YM
2159 }
2160 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
a22f0788 2161 bp->link_params.req_line_speed[cfx_idx] = req_line_speed;
19680c48
EG
2162 return rc;
2163 }
f5372251 2164 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
19680c48 2165 return -EINVAL;
a2fbb9ea
ET
2166}
2167
9f6c9258 2168void bnx2x_link_set(struct bnx2x *bp)
a2fbb9ea 2169{
19680c48 2170 if (!BP_NOMCP(bp)) {
4a37fb66 2171 bnx2x_acquire_phy_lock(bp);
19680c48 2172 bnx2x_phy_init(&bp->link_params, &bp->link_vars);
4a37fb66 2173 bnx2x_release_phy_lock(bp);
a2fbb9ea 2174
19680c48
EG
2175 bnx2x_calc_fc_adv(bp);
2176 } else
f5372251 2177 BNX2X_ERR("Bootcode is missing - can not set link\n");
c18487ee 2178}
a2fbb9ea 2179
c18487ee
YR
2180static void bnx2x__link_reset(struct bnx2x *bp)
2181{
19680c48 2182 if (!BP_NOMCP(bp)) {
4a37fb66 2183 bnx2x_acquire_phy_lock(bp);
5d07d868 2184 bnx2x_lfa_reset(&bp->link_params, &bp->link_vars);
4a37fb66 2185 bnx2x_release_phy_lock(bp);
19680c48 2186 } else
f5372251 2187 BNX2X_ERR("Bootcode is missing - can not reset link\n");
c18487ee 2188}
a2fbb9ea 2189
5d07d868
YM
2190void bnx2x_force_link_reset(struct bnx2x *bp)
2191{
2192 bnx2x_acquire_phy_lock(bp);
2193 bnx2x_link_reset(&bp->link_params, &bp->link_vars, 1);
2194 bnx2x_release_phy_lock(bp);
2195}
2196
a22f0788 2197u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes)
c18487ee 2198{
2145a920 2199 u8 rc = 0;
a2fbb9ea 2200
2145a920
VZ
2201 if (!BP_NOMCP(bp)) {
2202 bnx2x_acquire_phy_lock(bp);
a22f0788
YR
2203 rc = bnx2x_test_link(&bp->link_params, &bp->link_vars,
2204 is_serdes);
2145a920
VZ
2205 bnx2x_release_phy_lock(bp);
2206 } else
2207 BNX2X_ERR("Bootcode is missing - can not test link\n");
a2fbb9ea 2208
c18487ee
YR
2209 return rc;
2210}
a2fbb9ea 2211
34f80b04 2212
2691d51d
EG
2213/* Calculates the sum of vn_min_rates.
2214 It's needed for further normalizing of the min_rates.
2215 Returns:
2216 sum of vn_min_rates.
2217 or
2218 0 - if all the min_rates are 0.
2219 In the later case fainess algorithm should be deactivated.
2220 If not all min_rates are zero then those that are zeroes will be set to 1.
2221 */
b475d78f
YM
2222static void bnx2x_calc_vn_min(struct bnx2x *bp,
2223 struct cmng_init_input *input)
2691d51d
EG
2224{
2225 int all_zero = 1;
2691d51d
EG
2226 int vn;
2227
3395a033 2228 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
f2e0899f 2229 u32 vn_cfg = bp->mf_config[vn];
2691d51d
EG
2230 u32 vn_min_rate = ((vn_cfg & FUNC_MF_CFG_MIN_BW_MASK) >>
2231 FUNC_MF_CFG_MIN_BW_SHIFT) * 100;
2232
2233 /* Skip hidden vns */
2234 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
b475d78f 2235 vn_min_rate = 0;
2691d51d 2236 /* If min rate is zero - set it to 1 */
b475d78f 2237 else if (!vn_min_rate)
2691d51d
EG
2238 vn_min_rate = DEF_MIN_RATE;
2239 else
2240 all_zero = 0;
2241
b475d78f 2242 input->vnic_min_rate[vn] = vn_min_rate;
2691d51d
EG
2243 }
2244
30ae438b
DK
2245 /* if ETS or all min rates are zeros - disable fairness */
2246 if (BNX2X_IS_ETS_ENABLED(bp)) {
b475d78f 2247 input->flags.cmng_enables &=
30ae438b
DK
2248 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2249 DP(NETIF_MSG_IFUP, "Fairness will be disabled due to ETS\n");
2250 } else if (all_zero) {
b475d78f 2251 input->flags.cmng_enables &=
b015e3d1 2252 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
b475d78f
YM
2253 DP(NETIF_MSG_IFUP,
2254 "All MIN values are zeroes fairness will be disabled\n");
b015e3d1 2255 } else
b475d78f 2256 input->flags.cmng_enables |=
b015e3d1 2257 CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2691d51d
EG
2258}
2259
b475d78f
YM
2260static void bnx2x_calc_vn_max(struct bnx2x *bp, int vn,
2261 struct cmng_init_input *input)
34f80b04 2262{
b475d78f 2263 u16 vn_max_rate;
f2e0899f 2264 u32 vn_cfg = bp->mf_config[vn];
34f80b04 2265
b475d78f 2266 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
34f80b04 2267 vn_max_rate = 0;
b475d78f 2268 else {
faa6fcbb
DK
2269 u32 maxCfg = bnx2x_extract_max_cfg(bp, vn_cfg);
2270
b475d78f 2271 if (IS_MF_SI(bp)) {
faa6fcbb
DK
2272 /* maxCfg in percents of linkspeed */
2273 vn_max_rate = (bp->link_vars.line_speed * maxCfg) / 100;
b475d78f 2274 } else /* SD modes */
faa6fcbb
DK
2275 /* maxCfg is absolute in 100Mb units */
2276 vn_max_rate = maxCfg * 100;
34f80b04 2277 }
f85582f8 2278
b475d78f 2279 DP(NETIF_MSG_IFUP, "vn %d: vn_max_rate %d\n", vn, vn_max_rate);
34f80b04 2280
b475d78f 2281 input->vnic_max_rate[vn] = vn_max_rate;
34f80b04 2282}
f85582f8 2283
b475d78f 2284
523224a3
DK
2285static int bnx2x_get_cmng_fns_mode(struct bnx2x *bp)
2286{
2287 if (CHIP_REV_IS_SLOW(bp))
2288 return CMNG_FNS_NONE;
fb3bff17 2289 if (IS_MF(bp))
523224a3
DK
2290 return CMNG_FNS_MINMAX;
2291
2292 return CMNG_FNS_NONE;
2293}
2294
2ae17f66 2295void bnx2x_read_mf_cfg(struct bnx2x *bp)
523224a3 2296{
0793f83f 2297 int vn, n = (CHIP_MODE_IS_4_PORT(bp) ? 2 : 1);
523224a3
DK
2298
2299 if (BP_NOMCP(bp))
2300 return; /* what should be the default bvalue in this case */
2301
0793f83f
DK
2302 /* For 2 port configuration the absolute function number formula
2303 * is:
2304 * abs_func = 2 * vn + BP_PORT + BP_PATH
2305 *
2306 * and there are 4 functions per port
2307 *
2308 * For 4 port configuration it is
2309 * abs_func = 4 * vn + 2 * BP_PORT + BP_PATH
2310 *
2311 * and there are 2 functions per port
2312 */
3395a033 2313 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
0793f83f
DK
2314 int /*abs*/func = n * (2 * vn + BP_PORT(bp)) + BP_PATH(bp);
2315
2316 if (func >= E1H_FUNC_MAX)
2317 break;
2318
f2e0899f 2319 bp->mf_config[vn] =
523224a3
DK
2320 MF_CFG_RD(bp, func_mf_config[func].config);
2321 }
a3348722
BW
2322 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
2323 DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n");
2324 bp->flags |= MF_FUNC_DIS;
2325 } else {
2326 DP(NETIF_MSG_IFUP, "mf_cfg function enabled\n");
2327 bp->flags &= ~MF_FUNC_DIS;
2328 }
523224a3
DK
2329}
2330
2331static void bnx2x_cmng_fns_init(struct bnx2x *bp, u8 read_cfg, u8 cmng_type)
2332{
b475d78f
YM
2333 struct cmng_init_input input;
2334 memset(&input, 0, sizeof(struct cmng_init_input));
2335
2336 input.port_rate = bp->link_vars.line_speed;
523224a3
DK
2337
2338 if (cmng_type == CMNG_FNS_MINMAX) {
2339 int vn;
2340
523224a3
DK
2341 /* read mf conf from shmem */
2342 if (read_cfg)
2343 bnx2x_read_mf_cfg(bp);
2344
523224a3 2345 /* vn_weight_sum and enable fairness if not 0 */
b475d78f 2346 bnx2x_calc_vn_min(bp, &input);
523224a3
DK
2347
2348 /* calculate and set min-max rate for each vn */
c4154f25 2349 if (bp->port.pmf)
3395a033 2350 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++)
b475d78f 2351 bnx2x_calc_vn_max(bp, vn, &input);
523224a3
DK
2352
2353 /* always enable rate shaping and fairness */
b475d78f 2354 input.flags.cmng_enables |=
523224a3 2355 CMNG_FLAGS_PER_PORT_RATE_SHAPING_VN;
b475d78f
YM
2356
2357 bnx2x_init_cmng(&input, &bp->cmng);
523224a3
DK
2358 return;
2359 }
2360
2361 /* rate shaping and fairness are disabled */
2362 DP(NETIF_MSG_IFUP,
2363 "rate shaping and fairness are disabled\n");
2364}
34f80b04 2365
1191cb83
ED
2366static void storm_memset_cmng(struct bnx2x *bp,
2367 struct cmng_init *cmng,
2368 u8 port)
2369{
2370 int vn;
2371 size_t size = sizeof(struct cmng_struct_per_port);
2372
2373 u32 addr = BAR_XSTRORM_INTMEM +
2374 XSTORM_CMNG_PER_PORT_VARS_OFFSET(port);
2375
2376 __storm_memset_struct(bp, addr, size, (u32 *)&cmng->port);
2377
2378 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
2379 int func = func_by_vn(bp, vn);
2380
2381 addr = BAR_XSTRORM_INTMEM +
2382 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(func);
2383 size = sizeof(struct rate_shaping_vars_per_vn);
2384 __storm_memset_struct(bp, addr, size,
2385 (u32 *)&cmng->vnic.vnic_max_rate[vn]);
2386
2387 addr = BAR_XSTRORM_INTMEM +
2388 XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(func);
2389 size = sizeof(struct fairness_vars_per_vn);
2390 __storm_memset_struct(bp, addr, size,
2391 (u32 *)&cmng->vnic.vnic_min_rate[vn]);
2392 }
2393}
2394
c18487ee
YR
2395/* This function is called upon link interrupt */
2396static void bnx2x_link_attn(struct bnx2x *bp)
2397{
bb2a0f7a
YG
2398 /* Make sure that we are synced with the current statistics */
2399 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2400
c18487ee 2401 bnx2x_link_update(&bp->link_params, &bp->link_vars);
a2fbb9ea 2402
bb2a0f7a
YG
2403 if (bp->link_vars.link_up) {
2404
1c06328c 2405 /* dropless flow control */
f2e0899f 2406 if (!CHIP_IS_E1(bp) && bp->dropless_fc) {
1c06328c
EG
2407 int port = BP_PORT(bp);
2408 u32 pause_enabled = 0;
2409
2410 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
2411 pause_enabled = 1;
2412
2413 REG_WR(bp, BAR_USTRORM_INTMEM +
ca00392c 2414 USTORM_ETH_PAUSE_ENABLED_OFFSET(port),
1c06328c
EG
2415 pause_enabled);
2416 }
2417
619c5cb6 2418 if (bp->link_vars.mac_type != MAC_TYPE_EMAC) {
bb2a0f7a
YG
2419 struct host_port_stats *pstats;
2420
2421 pstats = bnx2x_sp(bp, port_stats);
619c5cb6 2422 /* reset old mac stats */
bb2a0f7a
YG
2423 memset(&(pstats->mac_stx[0]), 0,
2424 sizeof(struct mac_stx));
2425 }
f34d28ea 2426 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a
YG
2427 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2428 }
2429
f2e0899f
DK
2430 if (bp->link_vars.link_up && bp->link_vars.line_speed) {
2431 int cmng_fns = bnx2x_get_cmng_fns_mode(bp);
8a1c38d1 2432
f2e0899f
DK
2433 if (cmng_fns != CMNG_FNS_NONE) {
2434 bnx2x_cmng_fns_init(bp, false, cmng_fns);
2435 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
2436 } else
2437 /* rate shaping and fairness are disabled */
2438 DP(NETIF_MSG_IFUP,
2439 "single function mode without fairness\n");
34f80b04 2440 }
9fdc3e95 2441
2ae17f66
VZ
2442 __bnx2x_link_report(bp);
2443
9fdc3e95
DK
2444 if (IS_MF(bp))
2445 bnx2x_link_sync_notify(bp);
c18487ee 2446}
a2fbb9ea 2447
9f6c9258 2448void bnx2x__link_status_update(struct bnx2x *bp)
c18487ee 2449{
2ae17f66 2450 if (bp->state != BNX2X_STATE_OPEN)
c18487ee 2451 return;
a2fbb9ea 2452
00253a8c 2453 /* read updated dcb configuration */
ad5afc89
AE
2454 if (IS_PF(bp)) {
2455 bnx2x_dcbx_pmf_update(bp);
2456 bnx2x_link_status_update(&bp->link_params, &bp->link_vars);
2457 if (bp->link_vars.link_up)
2458 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2459 else
2460 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2461 /* indicate link status */
2462 bnx2x_link_report(bp);
a2fbb9ea 2463
ad5afc89
AE
2464 } else { /* VF */
2465 bp->port.supported[0] |= (SUPPORTED_10baseT_Half |
2466 SUPPORTED_10baseT_Full |
2467 SUPPORTED_100baseT_Half |
2468 SUPPORTED_100baseT_Full |
2469 SUPPORTED_1000baseT_Full |
2470 SUPPORTED_2500baseX_Full |
2471 SUPPORTED_10000baseT_Full |
2472 SUPPORTED_TP |
2473 SUPPORTED_FIBRE |
2474 SUPPORTED_Autoneg |
2475 SUPPORTED_Pause |
2476 SUPPORTED_Asym_Pause);
2477 bp->port.advertising[0] = bp->port.supported[0];
2478
2479 bp->link_params.bp = bp;
2480 bp->link_params.port = BP_PORT(bp);
2481 bp->link_params.req_duplex[0] = DUPLEX_FULL;
2482 bp->link_params.req_flow_ctrl[0] = BNX2X_FLOW_CTRL_NONE;
2483 bp->link_params.req_line_speed[0] = SPEED_10000;
2484 bp->link_params.speed_cap_mask[0] = 0x7f0000;
2485 bp->link_params.switch_cfg = SWITCH_CFG_10G;
2486 bp->link_vars.mac_type = MAC_TYPE_BMAC;
2487 bp->link_vars.line_speed = SPEED_10000;
2488 bp->link_vars.link_status =
2489 (LINK_STATUS_LINK_UP |
2490 LINK_STATUS_SPEED_AND_DUPLEX_10GTFD);
2491 bp->link_vars.link_up = 1;
2492 bp->link_vars.duplex = DUPLEX_FULL;
2493 bp->link_vars.flow_ctrl = BNX2X_FLOW_CTRL_NONE;
2494 __bnx2x_link_report(bp);
bb2a0f7a 2495 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
ad5afc89 2496 }
a2fbb9ea 2497}
a2fbb9ea 2498
a3348722
BW
2499static int bnx2x_afex_func_update(struct bnx2x *bp, u16 vifid,
2500 u16 vlan_val, u8 allowed_prio)
2501{
2502 struct bnx2x_func_state_params func_params = {0};
2503 struct bnx2x_func_afex_update_params *f_update_params =
2504 &func_params.params.afex_update;
2505
2506 func_params.f_obj = &bp->func_obj;
2507 func_params.cmd = BNX2X_F_CMD_AFEX_UPDATE;
2508
2509 /* no need to wait for RAMROD completion, so don't
2510 * set RAMROD_COMP_WAIT flag
2511 */
2512
2513 f_update_params->vif_id = vifid;
2514 f_update_params->afex_default_vlan = vlan_val;
2515 f_update_params->allowed_priorities = allowed_prio;
2516
2517 /* if ramrod can not be sent, response to MCP immediately */
2518 if (bnx2x_func_state_change(bp, &func_params) < 0)
2519 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
2520
2521 return 0;
2522}
2523
2524static int bnx2x_afex_handle_vif_list_cmd(struct bnx2x *bp, u8 cmd_type,
2525 u16 vif_index, u8 func_bit_map)
2526{
2527 struct bnx2x_func_state_params func_params = {0};
2528 struct bnx2x_func_afex_viflists_params *update_params =
2529 &func_params.params.afex_viflists;
2530 int rc;
2531 u32 drv_msg_code;
2532
2533 /* validate only LIST_SET and LIST_GET are received from switch */
2534 if ((cmd_type != VIF_LIST_RULE_GET) && (cmd_type != VIF_LIST_RULE_SET))
2535 BNX2X_ERR("BUG! afex_handle_vif_list_cmd invalid type 0x%x\n",
2536 cmd_type);
2537
2538 func_params.f_obj = &bp->func_obj;
2539 func_params.cmd = BNX2X_F_CMD_AFEX_VIFLISTS;
2540
2541 /* set parameters according to cmd_type */
2542 update_params->afex_vif_list_command = cmd_type;
2543 update_params->vif_list_index = cpu_to_le16(vif_index);
2544 update_params->func_bit_map =
2545 (cmd_type == VIF_LIST_RULE_GET) ? 0 : func_bit_map;
2546 update_params->func_to_clear = 0;
2547 drv_msg_code =
2548 (cmd_type == VIF_LIST_RULE_GET) ?
2549 DRV_MSG_CODE_AFEX_LISTGET_ACK :
2550 DRV_MSG_CODE_AFEX_LISTSET_ACK;
2551
2552 /* if ramrod can not be sent, respond to MCP immediately for
2553 * SET and GET requests (other are not triggered from MCP)
2554 */
2555 rc = bnx2x_func_state_change(bp, &func_params);
2556 if (rc < 0)
2557 bnx2x_fw_command(bp, drv_msg_code, 0);
2558
2559 return 0;
2560}
2561
2562static void bnx2x_handle_afex_cmd(struct bnx2x *bp, u32 cmd)
2563{
2564 struct afex_stats afex_stats;
2565 u32 func = BP_ABS_FUNC(bp);
2566 u32 mf_config;
2567 u16 vlan_val;
2568 u32 vlan_prio;
2569 u16 vif_id;
2570 u8 allowed_prio;
2571 u8 vlan_mode;
2572 u32 addr_to_write, vifid, addrs, stats_type, i;
2573
2574 if (cmd & DRV_STATUS_AFEX_LISTGET_REQ) {
2575 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2576 DP(BNX2X_MSG_MCP,
2577 "afex: got MCP req LISTGET_REQ for vifid 0x%x\n", vifid);
2578 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_GET, vifid, 0);
2579 }
2580
2581 if (cmd & DRV_STATUS_AFEX_LISTSET_REQ) {
2582 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2583 addrs = SHMEM2_RD(bp, afex_param2_to_driver[BP_FW_MB_IDX(bp)]);
2584 DP(BNX2X_MSG_MCP,
2585 "afex: got MCP req LISTSET_REQ for vifid 0x%x addrs 0x%x\n",
2586 vifid, addrs);
2587 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_SET, vifid,
2588 addrs);
2589 }
2590
2591 if (cmd & DRV_STATUS_AFEX_STATSGET_REQ) {
2592 addr_to_write = SHMEM2_RD(bp,
2593 afex_scratchpad_addr_to_write[BP_FW_MB_IDX(bp)]);
2594 stats_type = SHMEM2_RD(bp,
2595 afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2596
2597 DP(BNX2X_MSG_MCP,
2598 "afex: got MCP req STATSGET_REQ, write to addr 0x%x\n",
2599 addr_to_write);
2600
2601 bnx2x_afex_collect_stats(bp, (void *)&afex_stats, stats_type);
2602
2603 /* write response to scratchpad, for MCP */
2604 for (i = 0; i < (sizeof(struct afex_stats)/sizeof(u32)); i++)
2605 REG_WR(bp, addr_to_write + i*sizeof(u32),
2606 *(((u32 *)(&afex_stats))+i));
2607
2608 /* send ack message to MCP */
2609 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_STATSGET_ACK, 0);
2610 }
2611
2612 if (cmd & DRV_STATUS_AFEX_VIFSET_REQ) {
2613 mf_config = MF_CFG_RD(bp, func_mf_config[func].config);
2614 bp->mf_config[BP_VN(bp)] = mf_config;
2615 DP(BNX2X_MSG_MCP,
2616 "afex: got MCP req VIFSET_REQ, mf_config 0x%x\n",
2617 mf_config);
2618
2619 /* if VIF_SET is "enabled" */
2620 if (!(mf_config & FUNC_MF_CFG_FUNC_DISABLED)) {
2621 /* set rate limit directly to internal RAM */
2622 struct cmng_init_input cmng_input;
2623 struct rate_shaping_vars_per_vn m_rs_vn;
2624 size_t size = sizeof(struct rate_shaping_vars_per_vn);
2625 u32 addr = BAR_XSTRORM_INTMEM +
2626 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(BP_FUNC(bp));
2627
2628 bp->mf_config[BP_VN(bp)] = mf_config;
2629
2630 bnx2x_calc_vn_max(bp, BP_VN(bp), &cmng_input);
2631 m_rs_vn.vn_counter.rate =
2632 cmng_input.vnic_max_rate[BP_VN(bp)];
2633 m_rs_vn.vn_counter.quota =
2634 (m_rs_vn.vn_counter.rate *
2635 RS_PERIODIC_TIMEOUT_USEC) / 8;
2636
2637 __storm_memset_struct(bp, addr, size, (u32 *)&m_rs_vn);
2638
2639 /* read relevant values from mf_cfg struct in shmem */
2640 vif_id =
2641 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2642 FUNC_MF_CFG_E1HOV_TAG_MASK) >>
2643 FUNC_MF_CFG_E1HOV_TAG_SHIFT;
2644 vlan_val =
2645 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2646 FUNC_MF_CFG_AFEX_VLAN_MASK) >>
2647 FUNC_MF_CFG_AFEX_VLAN_SHIFT;
2648 vlan_prio = (mf_config &
2649 FUNC_MF_CFG_TRANSMIT_PRIORITY_MASK) >>
2650 FUNC_MF_CFG_TRANSMIT_PRIORITY_SHIFT;
2651 vlan_val |= (vlan_prio << VLAN_PRIO_SHIFT);
2652 vlan_mode =
2653 (MF_CFG_RD(bp,
2654 func_mf_config[func].afex_config) &
2655 FUNC_MF_CFG_AFEX_VLAN_MODE_MASK) >>
2656 FUNC_MF_CFG_AFEX_VLAN_MODE_SHIFT;
2657 allowed_prio =
2658 (MF_CFG_RD(bp,
2659 func_mf_config[func].afex_config) &
2660 FUNC_MF_CFG_AFEX_COS_FILTER_MASK) >>
2661 FUNC_MF_CFG_AFEX_COS_FILTER_SHIFT;
2662
2663 /* send ramrod to FW, return in case of failure */
2664 if (bnx2x_afex_func_update(bp, vif_id, vlan_val,
2665 allowed_prio))
2666 return;
2667
2668 bp->afex_def_vlan_tag = vlan_val;
2669 bp->afex_vlan_mode = vlan_mode;
2670 } else {
2671 /* notify link down because BP->flags is disabled */
2672 bnx2x_link_report(bp);
2673
2674 /* send INVALID VIF ramrod to FW */
2675 bnx2x_afex_func_update(bp, 0xFFFF, 0, 0);
2676
2677 /* Reset the default afex VLAN */
2678 bp->afex_def_vlan_tag = -1;
2679 }
2680 }
2681}
2682
34f80b04
EG
2683static void bnx2x_pmf_update(struct bnx2x *bp)
2684{
2685 int port = BP_PORT(bp);
2686 u32 val;
2687
2688 bp->port.pmf = 1;
51c1a580 2689 DP(BNX2X_MSG_MCP, "pmf %d\n", bp->port.pmf);
34f80b04 2690
3deb8167
YR
2691 /*
2692 * We need the mb() to ensure the ordering between the writing to
2693 * bp->port.pmf here and reading it from the bnx2x_periodic_task().
2694 */
2695 smp_mb();
2696
2697 /* queue a periodic task */
2698 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
2699
ef01854e
DK
2700 bnx2x_dcbx_pmf_update(bp);
2701
34f80b04 2702 /* enable nig attention */
3395a033 2703 val = (0xff0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
2704 if (bp->common.int_block == INT_BLOCK_HC) {
2705 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
2706 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
619c5cb6 2707 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
2708 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
2709 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
2710 }
bb2a0f7a
YG
2711
2712 bnx2x_stats_handle(bp, STATS_EVENT_PMF);
34f80b04
EG
2713}
2714
c18487ee 2715/* end of Link */
a2fbb9ea
ET
2716
2717/* slow path */
2718
2719/*
2720 * General service functions
2721 */
2722
2691d51d 2723/* send the MCP a request, block until there is a reply */
a22f0788 2724u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param)
2691d51d 2725{
f2e0899f 2726 int mb_idx = BP_FW_MB_IDX(bp);
a5971d43 2727 u32 seq;
2691d51d
EG
2728 u32 rc = 0;
2729 u32 cnt = 1;
2730 u8 delay = CHIP_REV_IS_SLOW(bp) ? 100 : 10;
2731
c4ff7cbf 2732 mutex_lock(&bp->fw_mb_mutex);
a5971d43 2733 seq = ++bp->fw_seq;
f2e0899f
DK
2734 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_param, param);
2735 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_header, (command | seq));
2736
754a2f52
DK
2737 DP(BNX2X_MSG_MCP, "wrote command (%x) to FW MB param 0x%08x\n",
2738 (command | seq), param);
2691d51d
EG
2739
2740 do {
2741 /* let the FW do it's magic ... */
2742 msleep(delay);
2743
f2e0899f 2744 rc = SHMEM_RD(bp, func_mb[mb_idx].fw_mb_header);
2691d51d 2745
c4ff7cbf
EG
2746 /* Give the FW up to 5 second (500*10ms) */
2747 } while ((seq != (rc & FW_MSG_SEQ_NUMBER_MASK)) && (cnt++ < 500));
2691d51d
EG
2748
2749 DP(BNX2X_MSG_MCP, "[after %d ms] read (%x) seq is (%x) from FW MB\n",
2750 cnt*delay, rc, seq);
2751
2752 /* is this a reply to our command? */
2753 if (seq == (rc & FW_MSG_SEQ_NUMBER_MASK))
2754 rc &= FW_MSG_CODE_MASK;
2755 else {
2756 /* FW BUG! */
2757 BNX2X_ERR("FW failed to respond!\n");
2758 bnx2x_fw_dump(bp);
2759 rc = 0;
2760 }
c4ff7cbf 2761 mutex_unlock(&bp->fw_mb_mutex);
2691d51d
EG
2762
2763 return rc;
2764}
2765
ec6ba945 2766
1191cb83
ED
2767static void storm_memset_func_cfg(struct bnx2x *bp,
2768 struct tstorm_eth_function_common_config *tcfg,
2769 u16 abs_fid)
2770{
2771 size_t size = sizeof(struct tstorm_eth_function_common_config);
2772
2773 u32 addr = BAR_TSTRORM_INTMEM +
2774 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid);
2775
2776 __storm_memset_struct(bp, addr, size, (u32 *)tcfg);
2777}
2778
619c5cb6
VZ
2779void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p)
2780{
2781 if (CHIP_IS_E1x(bp)) {
2782 struct tstorm_eth_function_common_config tcfg = {0};
2783
2784 storm_memset_func_cfg(bp, &tcfg, p->func_id);
2785 }
2786
2787 /* Enable the function in the FW */
2788 storm_memset_vf_to_pf(bp, p->func_id, p->pf_id);
2789 storm_memset_func_en(bp, p->func_id, 1);
2790
2791 /* spq */
2792 if (p->func_flgs & FUNC_FLG_SPQ) {
2793 storm_memset_spq_addr(bp, p->spq_map, p->func_id);
2794 REG_WR(bp, XSEM_REG_FAST_MEMORY +
2795 XSTORM_SPQ_PROD_OFFSET(p->func_id), p->spq_prod);
2796 }
2797}
2798
6383c0b3
AE
2799/**
2800 * bnx2x_get_tx_only_flags - Return common flags
2801 *
2802 * @bp device handle
2803 * @fp queue handle
2804 * @zero_stats TRUE if statistics zeroing is needed
2805 *
2806 * Return the flags that are common for the Tx-only and not normal connections.
2807 */
1191cb83
ED
2808static unsigned long bnx2x_get_common_flags(struct bnx2x *bp,
2809 struct bnx2x_fastpath *fp,
2810 bool zero_stats)
28912902 2811{
619c5cb6
VZ
2812 unsigned long flags = 0;
2813
2814 /* PF driver will always initialize the Queue to an ACTIVE state */
2815 __set_bit(BNX2X_Q_FLG_ACTIVE, &flags);
28912902 2816
6383c0b3
AE
2817 /* tx only connections collect statistics (on the same index as the
2818 * parent connection). The statistics are zeroed when the parent
2819 * connection is initialized.
2820 */
50f0a562
BW
2821
2822 __set_bit(BNX2X_Q_FLG_STATS, &flags);
2823 if (zero_stats)
2824 __set_bit(BNX2X_Q_FLG_ZERO_STATS, &flags);
2825
6383c0b3
AE
2826
2827 return flags;
2828}
2829
1191cb83
ED
2830static unsigned long bnx2x_get_q_flags(struct bnx2x *bp,
2831 struct bnx2x_fastpath *fp,
2832 bool leading)
6383c0b3
AE
2833{
2834 unsigned long flags = 0;
2835
619c5cb6
VZ
2836 /* calculate other queue flags */
2837 if (IS_MF_SD(bp))
2838 __set_bit(BNX2X_Q_FLG_OV, &flags);
28912902 2839
a3348722 2840 if (IS_FCOE_FP(fp)) {
619c5cb6 2841 __set_bit(BNX2X_Q_FLG_FCOE, &flags);
a3348722
BW
2842 /* For FCoE - force usage of default priority (for afex) */
2843 __set_bit(BNX2X_Q_FLG_FORCE_DEFAULT_PRI, &flags);
2844 }
523224a3 2845
f5219d8e 2846 if (!fp->disable_tpa) {
619c5cb6 2847 __set_bit(BNX2X_Q_FLG_TPA, &flags);
f5219d8e 2848 __set_bit(BNX2X_Q_FLG_TPA_IPV6, &flags);
621b4d66
DK
2849 if (fp->mode == TPA_MODE_GRO)
2850 __set_bit(BNX2X_Q_FLG_TPA_GRO, &flags);
f5219d8e 2851 }
619c5cb6 2852
619c5cb6
VZ
2853 if (leading) {
2854 __set_bit(BNX2X_Q_FLG_LEADING_RSS, &flags);
2855 __set_bit(BNX2X_Q_FLG_MCAST, &flags);
2856 }
523224a3 2857
619c5cb6
VZ
2858 /* Always set HW VLAN stripping */
2859 __set_bit(BNX2X_Q_FLG_VLAN, &flags);
523224a3 2860
a3348722
BW
2861 /* configure silent vlan removal */
2862 if (IS_MF_AFEX(bp))
2863 __set_bit(BNX2X_Q_FLG_SILENT_VLAN_REM, &flags);
2864
6383c0b3
AE
2865
2866 return flags | bnx2x_get_common_flags(bp, fp, true);
523224a3
DK
2867}
2868
619c5cb6 2869static void bnx2x_pf_q_prep_general(struct bnx2x *bp,
6383c0b3
AE
2870 struct bnx2x_fastpath *fp, struct bnx2x_general_setup_params *gen_init,
2871 u8 cos)
619c5cb6
VZ
2872{
2873 gen_init->stat_id = bnx2x_stats_id(fp);
2874 gen_init->spcl_id = fp->cl_id;
2875
2876 /* Always use mini-jumbo MTU for FCoE L2 ring */
2877 if (IS_FCOE_FP(fp))
2878 gen_init->mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
2879 else
2880 gen_init->mtu = bp->dev->mtu;
6383c0b3
AE
2881
2882 gen_init->cos = cos;
619c5cb6
VZ
2883}
2884
2885static void bnx2x_pf_rx_q_prep(struct bnx2x *bp,
523224a3 2886 struct bnx2x_fastpath *fp, struct rxq_pause_params *pause,
619c5cb6 2887 struct bnx2x_rxq_setup_params *rxq_init)
523224a3 2888{
619c5cb6 2889 u8 max_sge = 0;
523224a3
DK
2890 u16 sge_sz = 0;
2891 u16 tpa_agg_size = 0;
2892
523224a3 2893 if (!fp->disable_tpa) {
dfacf138
DK
2894 pause->sge_th_lo = SGE_TH_LO(bp);
2895 pause->sge_th_hi = SGE_TH_HI(bp);
2896
2897 /* validate SGE ring has enough to cross high threshold */
2898 WARN_ON(bp->dropless_fc &&
2899 pause->sge_th_hi + FW_PREFETCH_CNT >
2900 MAX_RX_SGE_CNT * NUM_RX_SGE_PAGES);
2901
523224a3
DK
2902 tpa_agg_size = min_t(u32,
2903 (min_t(u32, 8, MAX_SKB_FRAGS) *
2904 SGE_PAGE_SIZE * PAGES_PER_SGE), 0xffff);
2905 max_sge = SGE_PAGE_ALIGN(bp->dev->mtu) >>
2906 SGE_PAGE_SHIFT;
2907 max_sge = ((max_sge + PAGES_PER_SGE - 1) &
2908 (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
2909 sge_sz = (u16)min_t(u32, SGE_PAGE_SIZE * PAGES_PER_SGE,
2910 0xffff);
2911 }
2912
2913 /* pause - not for e1 */
2914 if (!CHIP_IS_E1(bp)) {
dfacf138
DK
2915 pause->bd_th_lo = BD_TH_LO(bp);
2916 pause->bd_th_hi = BD_TH_HI(bp);
2917
2918 pause->rcq_th_lo = RCQ_TH_LO(bp);
2919 pause->rcq_th_hi = RCQ_TH_HI(bp);
2920 /*
2921 * validate that rings have enough entries to cross
2922 * high thresholds
2923 */
2924 WARN_ON(bp->dropless_fc &&
2925 pause->bd_th_hi + FW_PREFETCH_CNT >
2926 bp->rx_ring_size);
2927 WARN_ON(bp->dropless_fc &&
2928 pause->rcq_th_hi + FW_PREFETCH_CNT >
2929 NUM_RCQ_RINGS * MAX_RCQ_DESC_CNT);
619c5cb6 2930
523224a3
DK
2931 pause->pri_map = 1;
2932 }
2933
2934 /* rxq setup */
523224a3
DK
2935 rxq_init->dscr_map = fp->rx_desc_mapping;
2936 rxq_init->sge_map = fp->rx_sge_mapping;
2937 rxq_init->rcq_map = fp->rx_comp_mapping;
2938 rxq_init->rcq_np_map = fp->rx_comp_mapping + BCM_PAGE_SIZE;
a8c94b91 2939
619c5cb6
VZ
2940 /* This should be a maximum number of data bytes that may be
2941 * placed on the BD (not including paddings).
2942 */
e52fcb24
ED
2943 rxq_init->buf_sz = fp->rx_buf_size - BNX2X_FW_RX_ALIGN_START -
2944 BNX2X_FW_RX_ALIGN_END - IP_HEADER_ALIGNMENT_PADDING;
a8c94b91 2945
523224a3 2946 rxq_init->cl_qzone_id = fp->cl_qzone_id;
523224a3
DK
2947 rxq_init->tpa_agg_sz = tpa_agg_size;
2948 rxq_init->sge_buf_sz = sge_sz;
2949 rxq_init->max_sges_pkt = max_sge;
619c5cb6 2950 rxq_init->rss_engine_id = BP_FUNC(bp);
259afa1f 2951 rxq_init->mcast_engine_id = BP_FUNC(bp);
619c5cb6
VZ
2952
2953 /* Maximum number or simultaneous TPA aggregation for this Queue.
2954 *
2955 * For PF Clients it should be the maximum avaliable number.
2956 * VF driver(s) may want to define it to a smaller value.
2957 */
dfacf138 2958 rxq_init->max_tpa_queues = MAX_AGG_QS(bp);
619c5cb6 2959
523224a3
DK
2960 rxq_init->cache_line_log = BNX2X_RX_ALIGN_SHIFT;
2961 rxq_init->fw_sb_id = fp->fw_sb_id;
2962
ec6ba945
VZ
2963 if (IS_FCOE_FP(fp))
2964 rxq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS;
2965 else
6383c0b3 2966 rxq_init->sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
a3348722
BW
2967 /* configure silent vlan removal
2968 * if multi function mode is afex, then mask default vlan
2969 */
2970 if (IS_MF_AFEX(bp)) {
2971 rxq_init->silent_removal_value = bp->afex_def_vlan_tag;
2972 rxq_init->silent_removal_mask = VLAN_VID_MASK;
2973 }
523224a3
DK
2974}
2975
619c5cb6 2976static void bnx2x_pf_tx_q_prep(struct bnx2x *bp,
6383c0b3
AE
2977 struct bnx2x_fastpath *fp, struct bnx2x_txq_setup_params *txq_init,
2978 u8 cos)
523224a3 2979{
65565884 2980 txq_init->dscr_map = fp->txdata_ptr[cos]->tx_desc_mapping;
6383c0b3 2981 txq_init->sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS + cos;
523224a3
DK
2982 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_NW;
2983 txq_init->fw_sb_id = fp->fw_sb_id;
ec6ba945 2984
619c5cb6
VZ
2985 /*
2986 * set the tss leading client id for TX classfication ==
2987 * leading RSS client id
2988 */
2989 txq_init->tss_leading_cl_id = bnx2x_fp(bp, 0, cl_id);
2990
ec6ba945
VZ
2991 if (IS_FCOE_FP(fp)) {
2992 txq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS;
2993 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_FCOE;
2994 }
523224a3
DK
2995}
2996
8d96286a 2997static void bnx2x_pf_init(struct bnx2x *bp)
523224a3
DK
2998{
2999 struct bnx2x_func_init_params func_init = {0};
523224a3
DK
3000 struct event_ring_data eq_data = { {0} };
3001 u16 flags;
3002
619c5cb6 3003 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3004 /* reset IGU PF statistics: MSIX + ATTN */
3005 /* PF */
3006 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3007 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3008 (CHIP_MODE_IS_4_PORT(bp) ?
3009 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3010 /* ATTN */
3011 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3012 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3013 BNX2X_IGU_STAS_MSG_PF_CNT*4 +
3014 (CHIP_MODE_IS_4_PORT(bp) ?
3015 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3016 }
3017
523224a3
DK
3018 /* function setup flags */
3019 flags = (FUNC_FLG_STATS | FUNC_FLG_LEADING | FUNC_FLG_SPQ);
3020
619c5cb6
VZ
3021 /* This flag is relevant for E1x only.
3022 * E2 doesn't have a TPA configuration in a function level.
523224a3 3023 */
619c5cb6 3024 flags |= (bp->flags & TPA_ENABLE_FLAG) ? FUNC_FLG_TPA : 0;
523224a3
DK
3025
3026 func_init.func_flgs = flags;
3027 func_init.pf_id = BP_FUNC(bp);
3028 func_init.func_id = BP_FUNC(bp);
523224a3
DK
3029 func_init.spq_map = bp->spq_mapping;
3030 func_init.spq_prod = bp->spq_prod_idx;
3031
3032 bnx2x_func_init(bp, &func_init);
3033
3034 memset(&(bp->cmng), 0, sizeof(struct cmng_struct_per_port));
3035
3036 /*
619c5cb6
VZ
3037 * Congestion management values depend on the link rate
3038 * There is no active link so initial link rate is set to 10 Gbps.
3039 * When the link comes up The congestion management values are
3040 * re-calculated according to the actual link rate.
3041 */
523224a3
DK
3042 bp->link_vars.line_speed = SPEED_10000;
3043 bnx2x_cmng_fns_init(bp, true, bnx2x_get_cmng_fns_mode(bp));
3044
3045 /* Only the PMF sets the HW */
3046 if (bp->port.pmf)
3047 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3048
523224a3
DK
3049 /* init Event Queue */
3050 eq_data.base_addr.hi = U64_HI(bp->eq_mapping);
3051 eq_data.base_addr.lo = U64_LO(bp->eq_mapping);
3052 eq_data.producer = bp->eq_prod;
3053 eq_data.index_id = HC_SP_INDEX_EQ_CONS;
3054 eq_data.sb_id = DEF_SB_ID;
3055 storm_memset_eq_data(bp, &eq_data, BP_FUNC(bp));
3056}
3057
3058
3059static void bnx2x_e1h_disable(struct bnx2x *bp)
3060{
3061 int port = BP_PORT(bp);
3062
619c5cb6 3063 bnx2x_tx_disable(bp);
523224a3
DK
3064
3065 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
523224a3
DK
3066}
3067
3068static void bnx2x_e1h_enable(struct bnx2x *bp)
3069{
3070 int port = BP_PORT(bp);
3071
3072 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
3073
3074 /* Tx queue should be only reenabled */
3075 netif_tx_wake_all_queues(bp->dev);
3076
3077 /*
3078 * Should not call netif_carrier_on since it will be called if the link
3079 * is up when checking for link state
3080 */
3081}
3082
1d187b34
BW
3083#define DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED 3
3084
3085static void bnx2x_drv_info_ether_stat(struct bnx2x *bp)
3086{
3087 struct eth_stats_info *ether_stat =
3088 &bp->slowpath->drv_info_to_mcp.ether_stat;
3089
786fdf0b
DC
3090 strlcpy(ether_stat->version, DRV_MODULE_VERSION,
3091 ETH_STAT_INFO_VERSION_LEN);
1d187b34 3092
15192a8c
BW
3093 bp->sp_objs[0].mac_obj.get_n_elements(bp, &bp->sp_objs[0].mac_obj,
3094 DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED,
3095 ether_stat->mac_local);
1d187b34
BW
3096
3097 ether_stat->mtu_size = bp->dev->mtu;
3098
3099 if (bp->dev->features & NETIF_F_RXCSUM)
3100 ether_stat->feature_flags |= FEATURE_ETH_CHKSUM_OFFLOAD_MASK;
3101 if (bp->dev->features & NETIF_F_TSO)
3102 ether_stat->feature_flags |= FEATURE_ETH_LSO_MASK;
3103 ether_stat->feature_flags |= bp->common.boot_mode;
3104
3105 ether_stat->promiscuous_mode = (bp->dev->flags & IFF_PROMISC) ? 1 : 0;
3106
3107 ether_stat->txq_size = bp->tx_ring_size;
3108 ether_stat->rxq_size = bp->rx_ring_size;
3109}
3110
3111static void bnx2x_drv_info_fcoe_stat(struct bnx2x *bp)
3112{
3113 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3114 struct fcoe_stats_info *fcoe_stat =
3115 &bp->slowpath->drv_info_to_mcp.fcoe_stat;
3116
55c11941
MS
3117 if (!CNIC_LOADED(bp))
3118 return;
3119
2e499d3c
BW
3120 memcpy(fcoe_stat->mac_local + MAC_LEADING_ZERO_CNT,
3121 bp->fip_mac, ETH_ALEN);
1d187b34
BW
3122
3123 fcoe_stat->qos_priority =
3124 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_FCOE];
3125
3126 /* insert FCoE stats from ramrod response */
3127 if (!NO_FCOE(bp)) {
3128 struct tstorm_per_queue_stats *fcoe_q_tstorm_stats =
65565884 3129 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3130 tstorm_queue_statistics;
3131
3132 struct xstorm_per_queue_stats *fcoe_q_xstorm_stats =
65565884 3133 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3134 xstorm_queue_statistics;
3135
3136 struct fcoe_statistics_params *fw_fcoe_stat =
3137 &bp->fw_stats_data->fcoe;
3138
3139 ADD_64(fcoe_stat->rx_bytes_hi, 0, fcoe_stat->rx_bytes_lo,
3140 fw_fcoe_stat->rx_stat0.fcoe_rx_byte_cnt);
3141
3142 ADD_64(fcoe_stat->rx_bytes_hi,
3143 fcoe_q_tstorm_stats->rcv_ucast_bytes.hi,
3144 fcoe_stat->rx_bytes_lo,
3145 fcoe_q_tstorm_stats->rcv_ucast_bytes.lo);
3146
3147 ADD_64(fcoe_stat->rx_bytes_hi,
3148 fcoe_q_tstorm_stats->rcv_bcast_bytes.hi,
3149 fcoe_stat->rx_bytes_lo,
3150 fcoe_q_tstorm_stats->rcv_bcast_bytes.lo);
3151
3152 ADD_64(fcoe_stat->rx_bytes_hi,
3153 fcoe_q_tstorm_stats->rcv_mcast_bytes.hi,
3154 fcoe_stat->rx_bytes_lo,
3155 fcoe_q_tstorm_stats->rcv_mcast_bytes.lo);
3156
3157 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3158 fw_fcoe_stat->rx_stat0.fcoe_rx_pkt_cnt);
3159
3160 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3161 fcoe_q_tstorm_stats->rcv_ucast_pkts);
3162
3163 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
3164 fcoe_q_tstorm_stats->rcv_bcast_pkts);
3165
3166 ADD_64(fcoe_stat->rx_frames_hi, 0, fcoe_stat->rx_frames_lo,
f33f1fcc 3167 fcoe_q_tstorm_stats->rcv_mcast_pkts);
1d187b34
BW
3168
3169 ADD_64(fcoe_stat->tx_bytes_hi, 0, fcoe_stat->tx_bytes_lo,
3170 fw_fcoe_stat->tx_stat.fcoe_tx_byte_cnt);
3171
3172 ADD_64(fcoe_stat->tx_bytes_hi,
3173 fcoe_q_xstorm_stats->ucast_bytes_sent.hi,
3174 fcoe_stat->tx_bytes_lo,
3175 fcoe_q_xstorm_stats->ucast_bytes_sent.lo);
3176
3177 ADD_64(fcoe_stat->tx_bytes_hi,
3178 fcoe_q_xstorm_stats->bcast_bytes_sent.hi,
3179 fcoe_stat->tx_bytes_lo,
3180 fcoe_q_xstorm_stats->bcast_bytes_sent.lo);
3181
3182 ADD_64(fcoe_stat->tx_bytes_hi,
3183 fcoe_q_xstorm_stats->mcast_bytes_sent.hi,
3184 fcoe_stat->tx_bytes_lo,
3185 fcoe_q_xstorm_stats->mcast_bytes_sent.lo);
3186
3187 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3188 fw_fcoe_stat->tx_stat.fcoe_tx_pkt_cnt);
3189
3190 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3191 fcoe_q_xstorm_stats->ucast_pkts_sent);
3192
3193 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3194 fcoe_q_xstorm_stats->bcast_pkts_sent);
3195
3196 ADD_64(fcoe_stat->tx_frames_hi, 0, fcoe_stat->tx_frames_lo,
3197 fcoe_q_xstorm_stats->mcast_pkts_sent);
3198 }
3199
1d187b34
BW
3200 /* ask L5 driver to add data to the struct */
3201 bnx2x_cnic_notify(bp, CNIC_CTL_FCOE_STATS_GET_CMD);
1d187b34
BW
3202}
3203
3204static void bnx2x_drv_info_iscsi_stat(struct bnx2x *bp)
3205{
3206 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3207 struct iscsi_stats_info *iscsi_stat =
3208 &bp->slowpath->drv_info_to_mcp.iscsi_stat;
3209
55c11941
MS
3210 if (!CNIC_LOADED(bp))
3211 return;
3212
2e499d3c
BW
3213 memcpy(iscsi_stat->mac_local + MAC_LEADING_ZERO_CNT,
3214 bp->cnic_eth_dev.iscsi_mac, ETH_ALEN);
1d187b34
BW
3215
3216 iscsi_stat->qos_priority =
3217 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_ISCSI];
3218
1d187b34
BW
3219 /* ask L5 driver to add data to the struct */
3220 bnx2x_cnic_notify(bp, CNIC_CTL_ISCSI_STATS_GET_CMD);
1d187b34
BW
3221}
3222
0793f83f
DK
3223/* called due to MCP event (on pmf):
3224 * reread new bandwidth configuration
3225 * configure FW
3226 * notify others function about the change
3227 */
1191cb83 3228static void bnx2x_config_mf_bw(struct bnx2x *bp)
0793f83f
DK
3229{
3230 if (bp->link_vars.link_up) {
3231 bnx2x_cmng_fns_init(bp, true, CMNG_FNS_MINMAX);
3232 bnx2x_link_sync_notify(bp);
3233 }
3234 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3235}
3236
1191cb83 3237static void bnx2x_set_mf_bw(struct bnx2x *bp)
0793f83f
DK
3238{
3239 bnx2x_config_mf_bw(bp);
3240 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW_ACK, 0);
3241}
3242
c8c60d88
YM
3243static void bnx2x_handle_eee_event(struct bnx2x *bp)
3244{
3245 DP(BNX2X_MSG_MCP, "EEE - LLDP event\n");
3246 bnx2x_fw_command(bp, DRV_MSG_CODE_EEE_RESULTS_ACK, 0);
3247}
3248
1d187b34
BW
3249static void bnx2x_handle_drv_info_req(struct bnx2x *bp)
3250{
3251 enum drv_info_opcode op_code;
3252 u32 drv_info_ctl = SHMEM2_RD(bp, drv_info_control);
3253
3254 /* if drv_info version supported by MFW doesn't match - send NACK */
3255 if ((drv_info_ctl & DRV_INFO_CONTROL_VER_MASK) != DRV_INFO_CUR_VER) {
3256 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3257 return;
3258 }
3259
3260 op_code = (drv_info_ctl & DRV_INFO_CONTROL_OP_CODE_MASK) >>
3261 DRV_INFO_CONTROL_OP_CODE_SHIFT;
3262
3263 memset(&bp->slowpath->drv_info_to_mcp, 0,
3264 sizeof(union drv_info_to_mcp));
3265
3266 switch (op_code) {
3267 case ETH_STATS_OPCODE:
3268 bnx2x_drv_info_ether_stat(bp);
3269 break;
3270 case FCOE_STATS_OPCODE:
3271 bnx2x_drv_info_fcoe_stat(bp);
3272 break;
3273 case ISCSI_STATS_OPCODE:
3274 bnx2x_drv_info_iscsi_stat(bp);
3275 break;
3276 default:
3277 /* if op code isn't supported - send NACK */
3278 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3279 return;
3280 }
3281
3282 /* if we got drv_info attn from MFW then these fields are defined in
3283 * shmem2 for sure
3284 */
3285 SHMEM2_WR(bp, drv_info_host_addr_lo,
3286 U64_LO(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3287 SHMEM2_WR(bp, drv_info_host_addr_hi,
3288 U64_HI(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3289
3290 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_ACK, 0);
3291}
3292
523224a3
DK
3293static void bnx2x_dcc_event(struct bnx2x *bp, u32 dcc_event)
3294{
3295 DP(BNX2X_MSG_MCP, "dcc_event 0x%x\n", dcc_event);
3296
3297 if (dcc_event & DRV_STATUS_DCC_DISABLE_ENABLE_PF) {
3298
3299 /*
3300 * This is the only place besides the function initialization
3301 * where the bp->flags can change so it is done without any
3302 * locks
3303 */
f2e0899f 3304 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
51c1a580 3305 DP(BNX2X_MSG_MCP, "mf_cfg function disabled\n");
523224a3
DK
3306 bp->flags |= MF_FUNC_DIS;
3307
3308 bnx2x_e1h_disable(bp);
3309 } else {
51c1a580 3310 DP(BNX2X_MSG_MCP, "mf_cfg function enabled\n");
523224a3
DK
3311 bp->flags &= ~MF_FUNC_DIS;
3312
3313 bnx2x_e1h_enable(bp);
3314 }
3315 dcc_event &= ~DRV_STATUS_DCC_DISABLE_ENABLE_PF;
3316 }
3317 if (dcc_event & DRV_STATUS_DCC_BANDWIDTH_ALLOCATION) {
0793f83f 3318 bnx2x_config_mf_bw(bp);
523224a3
DK
3319 dcc_event &= ~DRV_STATUS_DCC_BANDWIDTH_ALLOCATION;
3320 }
3321
3322 /* Report results to MCP */
3323 if (dcc_event)
3324 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_FAILURE, 0);
3325 else
3326 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_OK, 0);
3327}
3328
3329/* must be called under the spq lock */
1191cb83 3330static struct eth_spe *bnx2x_sp_get_next(struct bnx2x *bp)
523224a3
DK
3331{
3332 struct eth_spe *next_spe = bp->spq_prod_bd;
3333
3334 if (bp->spq_prod_bd == bp->spq_last_bd) {
3335 bp->spq_prod_bd = bp->spq;
3336 bp->spq_prod_idx = 0;
51c1a580 3337 DP(BNX2X_MSG_SP, "end of spq\n");
523224a3
DK
3338 } else {
3339 bp->spq_prod_bd++;
3340 bp->spq_prod_idx++;
3341 }
3342 return next_spe;
3343}
3344
3345/* must be called under the spq lock */
1191cb83 3346static void bnx2x_sp_prod_update(struct bnx2x *bp)
28912902
MC
3347{
3348 int func = BP_FUNC(bp);
3349
53e51e2f
VZ
3350 /*
3351 * Make sure that BD data is updated before writing the producer:
3352 * BD data is written to the memory, the producer is read from the
3353 * memory, thus we need a full memory barrier to ensure the ordering.
3354 */
3355 mb();
28912902 3356
523224a3 3357 REG_WR16(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_PROD_OFFSET(func),
f85582f8 3358 bp->spq_prod_idx);
28912902
MC
3359 mmiowb();
3360}
3361
619c5cb6
VZ
3362/**
3363 * bnx2x_is_contextless_ramrod - check if the current command ends on EQ
3364 *
3365 * @cmd: command to check
3366 * @cmd_type: command type
3367 */
1191cb83 3368static bool bnx2x_is_contextless_ramrod(int cmd, int cmd_type)
619c5cb6
VZ
3369{
3370 if ((cmd_type == NONE_CONNECTION_TYPE) ||
6383c0b3 3371 (cmd == RAMROD_CMD_ID_ETH_FORWARD_SETUP) ||
619c5cb6
VZ
3372 (cmd == RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES) ||
3373 (cmd == RAMROD_CMD_ID_ETH_FILTER_RULES) ||
3374 (cmd == RAMROD_CMD_ID_ETH_MULTICAST_RULES) ||
3375 (cmd == RAMROD_CMD_ID_ETH_SET_MAC) ||
3376 (cmd == RAMROD_CMD_ID_ETH_RSS_UPDATE))
3377 return true;
3378 else
3379 return false;
3380
3381}
3382
3383
3384/**
3385 * bnx2x_sp_post - place a single command on an SP ring
3386 *
3387 * @bp: driver handle
3388 * @command: command to place (e.g. SETUP, FILTER_RULES, etc.)
3389 * @cid: SW CID the command is related to
3390 * @data_hi: command private data address (high 32 bits)
3391 * @data_lo: command private data address (low 32 bits)
3392 * @cmd_type: command type (e.g. NONE, ETH)
3393 *
3394 * SP data is handled as if it's always an address pair, thus data fields are
3395 * not swapped to little endian in upper functions. Instead this function swaps
3396 * data as if it's two u32 fields.
3397 */
9f6c9258 3398int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
619c5cb6 3399 u32 data_hi, u32 data_lo, int cmd_type)
a2fbb9ea 3400{
28912902 3401 struct eth_spe *spe;
523224a3 3402 u16 type;
619c5cb6 3403 bool common = bnx2x_is_contextless_ramrod(command, cmd_type);
a2fbb9ea 3404
a2fbb9ea 3405#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
3406 if (unlikely(bp->panic)) {
3407 BNX2X_ERR("Can't post SP when there is panic\n");
a2fbb9ea 3408 return -EIO;
51c1a580 3409 }
a2fbb9ea
ET
3410#endif
3411
34f80b04 3412 spin_lock_bh(&bp->spq_lock);
a2fbb9ea 3413
6e30dd4e
VZ
3414 if (common) {
3415 if (!atomic_read(&bp->eq_spq_left)) {
3416 BNX2X_ERR("BUG! EQ ring full!\n");
3417 spin_unlock_bh(&bp->spq_lock);
3418 bnx2x_panic();
3419 return -EBUSY;
3420 }
3421 } else if (!atomic_read(&bp->cq_spq_left)) {
3422 BNX2X_ERR("BUG! SPQ ring full!\n");
3423 spin_unlock_bh(&bp->spq_lock);
3424 bnx2x_panic();
3425 return -EBUSY;
a2fbb9ea 3426 }
f1410647 3427
28912902
MC
3428 spe = bnx2x_sp_get_next(bp);
3429
a2fbb9ea 3430 /* CID needs port number to be encoded int it */
28912902 3431 spe->hdr.conn_and_cmd_data =
cdaa7cb8
VZ
3432 cpu_to_le32((command << SPE_HDR_CMD_ID_SHIFT) |
3433 HW_CID(bp, cid));
523224a3 3434
619c5cb6 3435 type = (cmd_type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
a2fbb9ea 3436
523224a3
DK
3437 type |= ((BP_FUNC(bp) << SPE_HDR_FUNCTION_ID_SHIFT) &
3438 SPE_HDR_FUNCTION_ID);
a2fbb9ea 3439
523224a3
DK
3440 spe->hdr.type = cpu_to_le16(type);
3441
3442 spe->data.update_data_addr.hi = cpu_to_le32(data_hi);
3443 spe->data.update_data_addr.lo = cpu_to_le32(data_lo);
3444
d6cae238
VZ
3445 /*
3446 * It's ok if the actual decrement is issued towards the memory
3447 * somewhere between the spin_lock and spin_unlock. Thus no
3448 * more explict memory barrier is needed.
3449 */
3450 if (common)
3451 atomic_dec(&bp->eq_spq_left);
3452 else
3453 atomic_dec(&bp->cq_spq_left);
6e30dd4e 3454
a2fbb9ea 3455
51c1a580
MS
3456 DP(BNX2X_MSG_SP,
3457 "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
3458 bp->spq_prod_idx, (u32)U64_HI(bp->spq_mapping),
3459 (u32)(U64_LO(bp->spq_mapping) +
d6cae238 3460 (void *)bp->spq_prod_bd - (void *)bp->spq), command, common,
6e30dd4e
VZ
3461 HW_CID(bp, cid), data_hi, data_lo, type,
3462 atomic_read(&bp->cq_spq_left), atomic_read(&bp->eq_spq_left));
cdaa7cb8 3463
28912902 3464 bnx2x_sp_prod_update(bp);
34f80b04 3465 spin_unlock_bh(&bp->spq_lock);
a2fbb9ea
ET
3466 return 0;
3467}
3468
3469/* acquire split MCP access lock register */
4a37fb66 3470static int bnx2x_acquire_alr(struct bnx2x *bp)
a2fbb9ea 3471{
72fd0718 3472 u32 j, val;
34f80b04 3473 int rc = 0;
a2fbb9ea
ET
3474
3475 might_sleep();
72fd0718 3476 for (j = 0; j < 1000; j++) {
a2fbb9ea
ET
3477 val = (1UL << 31);
3478 REG_WR(bp, GRCBASE_MCP + 0x9c, val);
3479 val = REG_RD(bp, GRCBASE_MCP + 0x9c);
3480 if (val & (1L << 31))
3481 break;
3482
3483 msleep(5);
3484 }
a2fbb9ea 3485 if (!(val & (1L << 31))) {
19680c48 3486 BNX2X_ERR("Cannot acquire MCP access lock register\n");
a2fbb9ea
ET
3487 rc = -EBUSY;
3488 }
3489
3490 return rc;
3491}
3492
4a37fb66
YG
3493/* release split MCP access lock register */
3494static void bnx2x_release_alr(struct bnx2x *bp)
a2fbb9ea 3495{
72fd0718 3496 REG_WR(bp, GRCBASE_MCP + 0x9c, 0);
a2fbb9ea
ET
3497}
3498
523224a3
DK
3499#define BNX2X_DEF_SB_ATT_IDX 0x0001
3500#define BNX2X_DEF_SB_IDX 0x0002
3501
1191cb83 3502static u16 bnx2x_update_dsb_idx(struct bnx2x *bp)
a2fbb9ea 3503{
523224a3 3504 struct host_sp_status_block *def_sb = bp->def_status_blk;
a2fbb9ea
ET
3505 u16 rc = 0;
3506
3507 barrier(); /* status block is written to by the chip */
a2fbb9ea
ET
3508 if (bp->def_att_idx != def_sb->atten_status_block.attn_bits_index) {
3509 bp->def_att_idx = def_sb->atten_status_block.attn_bits_index;
523224a3 3510 rc |= BNX2X_DEF_SB_ATT_IDX;
a2fbb9ea 3511 }
523224a3
DK
3512
3513 if (bp->def_idx != def_sb->sp_sb.running_index) {
3514 bp->def_idx = def_sb->sp_sb.running_index;
3515 rc |= BNX2X_DEF_SB_IDX;
a2fbb9ea 3516 }
523224a3
DK
3517
3518 /* Do not reorder: indecies reading should complete before handling */
3519 barrier();
a2fbb9ea
ET
3520 return rc;
3521}
3522
3523/*
3524 * slow path service functions
3525 */
3526
3527static void bnx2x_attn_int_asserted(struct bnx2x *bp, u32 asserted)
3528{
34f80b04 3529 int port = BP_PORT(bp);
a2fbb9ea
ET
3530 u32 aeu_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
3531 MISC_REG_AEU_MASK_ATTN_FUNC_0;
877e9aa4
ET
3532 u32 nig_int_mask_addr = port ? NIG_REG_MASK_INTERRUPT_PORT1 :
3533 NIG_REG_MASK_INTERRUPT_PORT0;
3fcaf2e5 3534 u32 aeu_mask;
87942b46 3535 u32 nig_mask = 0;
f2e0899f 3536 u32 reg_addr;
a2fbb9ea 3537
a2fbb9ea
ET
3538 if (bp->attn_state & asserted)
3539 BNX2X_ERR("IGU ERROR\n");
3540
3fcaf2e5
EG
3541 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
3542 aeu_mask = REG_RD(bp, aeu_addr);
3543
a2fbb9ea 3544 DP(NETIF_MSG_HW, "aeu_mask %x newly asserted %x\n",
3fcaf2e5 3545 aeu_mask, asserted);
72fd0718 3546 aeu_mask &= ~(asserted & 0x3ff);
3fcaf2e5 3547 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 3548
3fcaf2e5
EG
3549 REG_WR(bp, aeu_addr, aeu_mask);
3550 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea 3551
3fcaf2e5 3552 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
a2fbb9ea 3553 bp->attn_state |= asserted;
3fcaf2e5 3554 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
a2fbb9ea
ET
3555
3556 if (asserted & ATTN_HARD_WIRED_MASK) {
3557 if (asserted & ATTN_NIG_FOR_FUNC) {
a2fbb9ea 3558
a5e9a7cf
EG
3559 bnx2x_acquire_phy_lock(bp);
3560
877e9aa4 3561 /* save nig interrupt mask */
87942b46 3562 nig_mask = REG_RD(bp, nig_int_mask_addr);
a2fbb9ea 3563
361c391e
YR
3564 /* If nig_mask is not set, no need to call the update
3565 * function.
3566 */
3567 if (nig_mask) {
3568 REG_WR(bp, nig_int_mask_addr, 0);
3569
3570 bnx2x_link_attn(bp);
3571 }
a2fbb9ea
ET
3572
3573 /* handle unicore attn? */
3574 }
3575 if (asserted & ATTN_SW_TIMER_4_FUNC)
3576 DP(NETIF_MSG_HW, "ATTN_SW_TIMER_4_FUNC!\n");
3577
3578 if (asserted & GPIO_2_FUNC)
3579 DP(NETIF_MSG_HW, "GPIO_2_FUNC!\n");
3580
3581 if (asserted & GPIO_3_FUNC)
3582 DP(NETIF_MSG_HW, "GPIO_3_FUNC!\n");
3583
3584 if (asserted & GPIO_4_FUNC)
3585 DP(NETIF_MSG_HW, "GPIO_4_FUNC!\n");
3586
3587 if (port == 0) {
3588 if (asserted & ATTN_GENERAL_ATTN_1) {
3589 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_1!\n");
3590 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_1, 0x0);
3591 }
3592 if (asserted & ATTN_GENERAL_ATTN_2) {
3593 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_2!\n");
3594 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_2, 0x0);
3595 }
3596 if (asserted & ATTN_GENERAL_ATTN_3) {
3597 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_3!\n");
3598 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_3, 0x0);
3599 }
3600 } else {
3601 if (asserted & ATTN_GENERAL_ATTN_4) {
3602 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_4!\n");
3603 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_4, 0x0);
3604 }
3605 if (asserted & ATTN_GENERAL_ATTN_5) {
3606 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_5!\n");
3607 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_5, 0x0);
3608 }
3609 if (asserted & ATTN_GENERAL_ATTN_6) {
3610 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_6!\n");
3611 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_6, 0x0);
3612 }
3613 }
3614
3615 } /* if hardwired */
3616
f2e0899f
DK
3617 if (bp->common.int_block == INT_BLOCK_HC)
3618 reg_addr = (HC_REG_COMMAND_REG + port*32 +
3619 COMMAND_REG_ATTN_BITS_SET);
3620 else
3621 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_SET_UPPER*8);
3622
3623 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", asserted,
3624 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
3625 REG_WR(bp, reg_addr, asserted);
a2fbb9ea
ET
3626
3627 /* now set back the mask */
a5e9a7cf 3628 if (asserted & ATTN_NIG_FOR_FUNC) {
27c1151c
YR
3629 /* Verify that IGU ack through BAR was written before restoring
3630 * NIG mask. This loop should exit after 2-3 iterations max.
3631 */
3632 if (bp->common.int_block != INT_BLOCK_HC) {
3633 u32 cnt = 0, igu_acked;
3634 do {
3635 igu_acked = REG_RD(bp,
3636 IGU_REG_ATTENTION_ACK_BITS);
3637 } while (((igu_acked & ATTN_NIG_FOR_FUNC) == 0) &&
3638 (++cnt < MAX_IGU_ATTN_ACK_TO));
3639 if (!igu_acked)
3640 DP(NETIF_MSG_HW,
3641 "Failed to verify IGU ack on time\n");
3642 barrier();
3643 }
87942b46 3644 REG_WR(bp, nig_int_mask_addr, nig_mask);
a5e9a7cf
EG
3645 bnx2x_release_phy_lock(bp);
3646 }
a2fbb9ea
ET
3647}
3648
1191cb83 3649static void bnx2x_fan_failure(struct bnx2x *bp)
fd4ef40d
EG
3650{
3651 int port = BP_PORT(bp);
b7737c9b 3652 u32 ext_phy_config;
fd4ef40d 3653 /* mark the failure */
b7737c9b
YR
3654 ext_phy_config =
3655 SHMEM_RD(bp,
3656 dev_info.port_hw_config[port].external_phy_config);
3657
3658 ext_phy_config &= ~PORT_HW_CFG_XGXS_EXT_PHY_TYPE_MASK;
3659 ext_phy_config |= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE;
fd4ef40d 3660 SHMEM_WR(bp, dev_info.port_hw_config[port].external_phy_config,
b7737c9b 3661 ext_phy_config);
fd4ef40d
EG
3662
3663 /* log the failure */
51c1a580
MS
3664 netdev_err(bp->dev, "Fan Failure on Network Controller has caused the driver to shutdown the card to prevent permanent damage.\n"
3665 "Please contact OEM Support for assistance\n");
8304859a
AE
3666
3667 /*
3668 * Scheudle device reset (unload)
3669 * This is due to some boards consuming sufficient power when driver is
3670 * up to overheat if fan fails.
3671 */
3672 smp_mb__before_clear_bit();
3673 set_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state);
3674 smp_mb__after_clear_bit();
3675 schedule_delayed_work(&bp->sp_rtnl_task, 0);
3676
fd4ef40d 3677}
ab6ad5a4 3678
1191cb83 3679static void bnx2x_attn_int_deasserted0(struct bnx2x *bp, u32 attn)
a2fbb9ea 3680{
34f80b04 3681 int port = BP_PORT(bp);
877e9aa4 3682 int reg_offset;
d90d96ba 3683 u32 val;
877e9aa4 3684
34f80b04
EG
3685 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
3686 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
877e9aa4 3687
34f80b04 3688 if (attn & AEU_INPUTS_ATTN_BITS_SPIO5) {
877e9aa4
ET
3689
3690 val = REG_RD(bp, reg_offset);
3691 val &= ~AEU_INPUTS_ATTN_BITS_SPIO5;
3692 REG_WR(bp, reg_offset, val);
3693
3694 BNX2X_ERR("SPIO5 hw attention\n");
3695
fd4ef40d 3696 /* Fan failure attention */
d90d96ba 3697 bnx2x_hw_reset_phy(&bp->link_params);
fd4ef40d 3698 bnx2x_fan_failure(bp);
877e9aa4 3699 }
34f80b04 3700
3deb8167 3701 if ((attn & bp->link_vars.aeu_int_mask) && bp->port.pmf) {
589abe3a
EG
3702 bnx2x_acquire_phy_lock(bp);
3703 bnx2x_handle_module_detect_int(&bp->link_params);
3704 bnx2x_release_phy_lock(bp);
3705 }
3706
34f80b04
EG
3707 if (attn & HW_INTERRUT_ASSERT_SET_0) {
3708
3709 val = REG_RD(bp, reg_offset);
3710 val &= ~(attn & HW_INTERRUT_ASSERT_SET_0);
3711 REG_WR(bp, reg_offset, val);
3712
3713 BNX2X_ERR("FATAL HW block attention set0 0x%x\n",
0fc5d009 3714 (u32)(attn & HW_INTERRUT_ASSERT_SET_0));
34f80b04
EG
3715 bnx2x_panic();
3716 }
877e9aa4
ET
3717}
3718
1191cb83 3719static void bnx2x_attn_int_deasserted1(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3720{
3721 u32 val;
3722
0626b899 3723 if (attn & AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT) {
877e9aa4
ET
3724
3725 val = REG_RD(bp, DORQ_REG_DORQ_INT_STS_CLR);
3726 BNX2X_ERR("DB hw attention 0x%x\n", val);
3727 /* DORQ discard attention */
3728 if (val & 0x2)
3729 BNX2X_ERR("FATAL error from DORQ\n");
3730 }
34f80b04
EG
3731
3732 if (attn & HW_INTERRUT_ASSERT_SET_1) {
3733
3734 int port = BP_PORT(bp);
3735 int reg_offset;
3736
3737 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1 :
3738 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1);
3739
3740 val = REG_RD(bp, reg_offset);
3741 val &= ~(attn & HW_INTERRUT_ASSERT_SET_1);
3742 REG_WR(bp, reg_offset, val);
3743
3744 BNX2X_ERR("FATAL HW block attention set1 0x%x\n",
0fc5d009 3745 (u32)(attn & HW_INTERRUT_ASSERT_SET_1));
34f80b04
EG
3746 bnx2x_panic();
3747 }
877e9aa4
ET
3748}
3749
1191cb83 3750static void bnx2x_attn_int_deasserted2(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3751{
3752 u32 val;
3753
3754 if (attn & AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT) {
3755
3756 val = REG_RD(bp, CFC_REG_CFC_INT_STS_CLR);
3757 BNX2X_ERR("CFC hw attention 0x%x\n", val);
3758 /* CFC error attention */
3759 if (val & 0x2)
3760 BNX2X_ERR("FATAL error from CFC\n");
3761 }
3762
3763 if (attn & AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT) {
877e9aa4 3764 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_0);
619c5cb6 3765 BNX2X_ERR("PXP hw attention-0 0x%x\n", val);
877e9aa4
ET
3766 /* RQ_USDMDP_FIFO_OVERFLOW */
3767 if (val & 0x18000)
3768 BNX2X_ERR("FATAL error from PXP\n");
619c5cb6
VZ
3769
3770 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3771 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_1);
3772 BNX2X_ERR("PXP hw attention-1 0x%x\n", val);
3773 }
877e9aa4 3774 }
34f80b04
EG
3775
3776 if (attn & HW_INTERRUT_ASSERT_SET_2) {
3777
3778 int port = BP_PORT(bp);
3779 int reg_offset;
3780
3781 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2 :
3782 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2);
3783
3784 val = REG_RD(bp, reg_offset);
3785 val &= ~(attn & HW_INTERRUT_ASSERT_SET_2);
3786 REG_WR(bp, reg_offset, val);
3787
3788 BNX2X_ERR("FATAL HW block attention set2 0x%x\n",
0fc5d009 3789 (u32)(attn & HW_INTERRUT_ASSERT_SET_2));
34f80b04
EG
3790 bnx2x_panic();
3791 }
877e9aa4
ET
3792}
3793
1191cb83 3794static void bnx2x_attn_int_deasserted3(struct bnx2x *bp, u32 attn)
877e9aa4 3795{
34f80b04
EG
3796 u32 val;
3797
877e9aa4
ET
3798 if (attn & EVEREST_GEN_ATTN_IN_USE_MASK) {
3799
34f80b04
EG
3800 if (attn & BNX2X_PMF_LINK_ASSERT) {
3801 int func = BP_FUNC(bp);
3802
3803 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
a3348722 3804 bnx2x_read_mf_cfg(bp);
f2e0899f
DK
3805 bp->mf_config[BP_VN(bp)] = MF_CFG_RD(bp,
3806 func_mf_config[BP_ABS_FUNC(bp)].config);
3807 val = SHMEM_RD(bp,
3808 func_mb[BP_FW_MB_IDX(bp)].drv_status);
2691d51d
EG
3809 if (val & DRV_STATUS_DCC_EVENT_MASK)
3810 bnx2x_dcc_event(bp,
3811 (val & DRV_STATUS_DCC_EVENT_MASK));
0793f83f
DK
3812
3813 if (val & DRV_STATUS_SET_MF_BW)
3814 bnx2x_set_mf_bw(bp);
3815
1d187b34
BW
3816 if (val & DRV_STATUS_DRV_INFO_REQ)
3817 bnx2x_handle_drv_info_req(bp);
2691d51d 3818 if ((bp->port.pmf == 0) && (val & DRV_STATUS_PMF))
34f80b04
EG
3819 bnx2x_pmf_update(bp);
3820
e4901dde 3821 if (bp->port.pmf &&
785b9b1a
SR
3822 (val & DRV_STATUS_DCBX_NEGOTIATION_RESULTS) &&
3823 bp->dcbx_enabled > 0)
e4901dde
VZ
3824 /* start dcbx state machine */
3825 bnx2x_dcbx_set_params(bp,
3826 BNX2X_DCBX_STATE_NEG_RECEIVED);
a3348722
BW
3827 if (val & DRV_STATUS_AFEX_EVENT_MASK)
3828 bnx2x_handle_afex_cmd(bp,
3829 val & DRV_STATUS_AFEX_EVENT_MASK);
c8c60d88
YM
3830 if (val & DRV_STATUS_EEE_NEGOTIATION_RESULTS)
3831 bnx2x_handle_eee_event(bp);
3deb8167
YR
3832 if (bp->link_vars.periodic_flags &
3833 PERIODIC_FLAGS_LINK_EVENT) {
3834 /* sync with link */
3835 bnx2x_acquire_phy_lock(bp);
3836 bp->link_vars.periodic_flags &=
3837 ~PERIODIC_FLAGS_LINK_EVENT;
3838 bnx2x_release_phy_lock(bp);
3839 if (IS_MF(bp))
3840 bnx2x_link_sync_notify(bp);
3841 bnx2x_link_report(bp);
3842 }
3843 /* Always call it here: bnx2x_link_report() will
3844 * prevent the link indication duplication.
3845 */
3846 bnx2x__link_status_update(bp);
34f80b04 3847 } else if (attn & BNX2X_MC_ASSERT_BITS) {
877e9aa4
ET
3848
3849 BNX2X_ERR("MC assert!\n");
d6cae238 3850 bnx2x_mc_assert(bp);
877e9aa4
ET
3851 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_10, 0);
3852 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_9, 0);
3853 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_8, 0);
3854 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_7, 0);
3855 bnx2x_panic();
3856
3857 } else if (attn & BNX2X_MCP_ASSERT) {
3858
3859 BNX2X_ERR("MCP assert!\n");
3860 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_11, 0);
34f80b04 3861 bnx2x_fw_dump(bp);
877e9aa4
ET
3862
3863 } else
3864 BNX2X_ERR("Unknown HW assert! (attn 0x%x)\n", attn);
3865 }
3866
3867 if (attn & EVEREST_LATCHED_ATTN_IN_USE_MASK) {
34f80b04
EG
3868 BNX2X_ERR("LATCHED attention 0x%08x (masked)\n", attn);
3869 if (attn & BNX2X_GRC_TIMEOUT) {
f2e0899f
DK
3870 val = CHIP_IS_E1(bp) ? 0 :
3871 REG_RD(bp, MISC_REG_GRC_TIMEOUT_ATTN);
34f80b04
EG
3872 BNX2X_ERR("GRC time-out 0x%08x\n", val);
3873 }
3874 if (attn & BNX2X_GRC_RSV) {
f2e0899f
DK
3875 val = CHIP_IS_E1(bp) ? 0 :
3876 REG_RD(bp, MISC_REG_GRC_RSV_ATTN);
34f80b04
EG
3877 BNX2X_ERR("GRC reserved 0x%08x\n", val);
3878 }
877e9aa4 3879 REG_WR(bp, MISC_REG_AEU_CLR_LATCH_SIGNAL, 0x7ff);
877e9aa4
ET
3880 }
3881}
3882
c9ee9206
VZ
3883/*
3884 * Bits map:
3885 * 0-7 - Engine0 load counter.
3886 * 8-15 - Engine1 load counter.
3887 * 16 - Engine0 RESET_IN_PROGRESS bit.
3888 * 17 - Engine1 RESET_IN_PROGRESS bit.
3889 * 18 - Engine0 ONE_IS_LOADED. Set when there is at least one active function
3890 * on the engine
3891 * 19 - Engine1 ONE_IS_LOADED.
3892 * 20 - Chip reset flow bit. When set none-leader must wait for both engines
3893 * leader to complete (check for both RESET_IN_PROGRESS bits and not for
3894 * just the one belonging to its engine).
3895 *
3896 */
3897#define BNX2X_RECOVERY_GLOB_REG MISC_REG_GENERIC_POR_1
3898
3899#define BNX2X_PATH0_LOAD_CNT_MASK 0x000000ff
3900#define BNX2X_PATH0_LOAD_CNT_SHIFT 0
3901#define BNX2X_PATH1_LOAD_CNT_MASK 0x0000ff00
3902#define BNX2X_PATH1_LOAD_CNT_SHIFT 8
3903#define BNX2X_PATH0_RST_IN_PROG_BIT 0x00010000
3904#define BNX2X_PATH1_RST_IN_PROG_BIT 0x00020000
3905#define BNX2X_GLOBAL_RESET_BIT 0x00040000
3906
3907/*
3908 * Set the GLOBAL_RESET bit.
3909 *
3910 * Should be run under rtnl lock
3911 */
3912void bnx2x_set_reset_global(struct bnx2x *bp)
3913{
f16da43b
AE
3914 u32 val;
3915 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3916 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 3917 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val | BNX2X_GLOBAL_RESET_BIT);
f16da43b 3918 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206
VZ
3919}
3920
3921/*
3922 * Clear the GLOBAL_RESET bit.
3923 *
3924 * Should be run under rtnl lock
3925 */
1191cb83 3926static void bnx2x_clear_reset_global(struct bnx2x *bp)
c9ee9206 3927{
f16da43b
AE
3928 u32 val;
3929 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3930 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 3931 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val & (~BNX2X_GLOBAL_RESET_BIT));
f16da43b 3932 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206 3933}
f85582f8 3934
72fd0718 3935/*
c9ee9206
VZ
3936 * Checks the GLOBAL_RESET bit.
3937 *
72fd0718
VZ
3938 * should be run under rtnl lock
3939 */
1191cb83 3940static bool bnx2x_reset_is_global(struct bnx2x *bp)
c9ee9206
VZ
3941{
3942 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
3943
3944 DP(NETIF_MSG_HW, "GEN_REG_VAL=0x%08x\n", val);
3945 return (val & BNX2X_GLOBAL_RESET_BIT) ? true : false;
3946}
3947
3948/*
3949 * Clear RESET_IN_PROGRESS bit for the current engine.
3950 *
3951 * Should be run under rtnl lock
3952 */
1191cb83 3953static void bnx2x_set_reset_done(struct bnx2x *bp)
72fd0718 3954{
f16da43b 3955 u32 val;
c9ee9206
VZ
3956 u32 bit = BP_PATH(bp) ?
3957 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
3958 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3959 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
3960
3961 /* Clear the bit */
3962 val &= ~bit;
3963 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
3964
3965 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
3966}
3967
3968/*
c9ee9206
VZ
3969 * Set RESET_IN_PROGRESS for the current engine.
3970 *
72fd0718
VZ
3971 * should be run under rtnl lock
3972 */
c9ee9206 3973void bnx2x_set_reset_in_progress(struct bnx2x *bp)
72fd0718 3974{
f16da43b 3975 u32 val;
c9ee9206
VZ
3976 u32 bit = BP_PATH(bp) ?
3977 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
3978 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
3979 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
3980
3981 /* Set the bit */
3982 val |= bit;
3983 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 3984 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
3985}
3986
3987/*
c9ee9206 3988 * Checks the RESET_IN_PROGRESS bit for the given engine.
72fd0718
VZ
3989 * should be run under rtnl lock
3990 */
c9ee9206 3991bool bnx2x_reset_is_done(struct bnx2x *bp, int engine)
72fd0718 3992{
c9ee9206
VZ
3993 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
3994 u32 bit = engine ?
3995 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
3996
3997 /* return false if bit is set */
3998 return (val & bit) ? false : true;
72fd0718
VZ
3999}
4000
4001/*
889b9af3 4002 * set pf load for the current pf.
c9ee9206 4003 *
72fd0718
VZ
4004 * should be run under rtnl lock
4005 */
889b9af3 4006void bnx2x_set_pf_load(struct bnx2x *bp)
72fd0718 4007{
f16da43b 4008 u32 val1, val;
c9ee9206
VZ
4009 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4010 BNX2X_PATH0_LOAD_CNT_MASK;
4011 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4012 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4013
f16da43b
AE
4014 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4015 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4016
51c1a580 4017 DP(NETIF_MSG_IFUP, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4018
c9ee9206
VZ
4019 /* get the current counter value */
4020 val1 = (val & mask) >> shift;
4021
889b9af3
AE
4022 /* set bit of that PF */
4023 val1 |= (1 << bp->pf_num);
c9ee9206
VZ
4024
4025 /* clear the old value */
4026 val &= ~mask;
4027
4028 /* set the new one */
4029 val |= ((val1 << shift) & mask);
4030
4031 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 4032 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4033}
4034
c9ee9206 4035/**
889b9af3 4036 * bnx2x_clear_pf_load - clear pf load mark
c9ee9206
VZ
4037 *
4038 * @bp: driver handle
4039 *
4040 * Should be run under rtnl lock.
4041 * Decrements the load counter for the current engine. Returns
889b9af3 4042 * whether other functions are still loaded
72fd0718 4043 */
889b9af3 4044bool bnx2x_clear_pf_load(struct bnx2x *bp)
72fd0718 4045{
f16da43b 4046 u32 val1, val;
c9ee9206
VZ
4047 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4048 BNX2X_PATH0_LOAD_CNT_MASK;
4049 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4050 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4051
f16da43b
AE
4052 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4053 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
51c1a580 4054 DP(NETIF_MSG_IFDOWN, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4055
c9ee9206
VZ
4056 /* get the current counter value */
4057 val1 = (val & mask) >> shift;
4058
889b9af3
AE
4059 /* clear bit of that PF */
4060 val1 &= ~(1 << bp->pf_num);
c9ee9206
VZ
4061
4062 /* clear the old value */
4063 val &= ~mask;
4064
4065 /* set the new one */
4066 val |= ((val1 << shift) & mask);
4067
4068 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4069 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4070 return val1 != 0;
72fd0718
VZ
4071}
4072
4073/*
889b9af3 4074 * Read the load status for the current engine.
c9ee9206 4075 *
72fd0718
VZ
4076 * should be run under rtnl lock
4077 */
1191cb83 4078static bool bnx2x_get_load_status(struct bnx2x *bp, int engine)
72fd0718 4079{
c9ee9206
VZ
4080 u32 mask = (engine ? BNX2X_PATH1_LOAD_CNT_MASK :
4081 BNX2X_PATH0_LOAD_CNT_MASK);
4082 u32 shift = (engine ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4083 BNX2X_PATH0_LOAD_CNT_SHIFT);
4084 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4085
51c1a580 4086 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "GLOB_REG=0x%08x\n", val);
c9ee9206
VZ
4087
4088 val = (val & mask) >> shift;
4089
51c1a580
MS
4090 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "load mask for engine %d = 0x%x\n",
4091 engine, val);
c9ee9206 4092
889b9af3 4093 return val != 0;
72fd0718
VZ
4094}
4095
1191cb83 4096static void _print_next_block(int idx, const char *blk)
72fd0718 4097{
f1deab50 4098 pr_cont("%s%s", idx ? ", " : "", blk);
72fd0718
VZ
4099}
4100
1191cb83
ED
4101static int bnx2x_check_blocks_with_parity0(u32 sig, int par_num,
4102 bool print)
72fd0718
VZ
4103{
4104 int i = 0;
4105 u32 cur_bit = 0;
4106 for (i = 0; sig; i++) {
4107 cur_bit = ((u32)0x1 << i);
4108 if (sig & cur_bit) {
4109 switch (cur_bit) {
4110 case AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR:
c9ee9206
VZ
4111 if (print)
4112 _print_next_block(par_num++, "BRB");
72fd0718
VZ
4113 break;
4114 case AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR:
c9ee9206
VZ
4115 if (print)
4116 _print_next_block(par_num++, "PARSER");
72fd0718
VZ
4117 break;
4118 case AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR:
c9ee9206
VZ
4119 if (print)
4120 _print_next_block(par_num++, "TSDM");
72fd0718
VZ
4121 break;
4122 case AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR:
c9ee9206
VZ
4123 if (print)
4124 _print_next_block(par_num++,
4125 "SEARCHER");
4126 break;
4127 case AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR:
4128 if (print)
4129 _print_next_block(par_num++, "TCM");
72fd0718
VZ
4130 break;
4131 case AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR:
c9ee9206
VZ
4132 if (print)
4133 _print_next_block(par_num++, "TSEMI");
4134 break;
4135 case AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR:
4136 if (print)
4137 _print_next_block(par_num++, "XPB");
72fd0718
VZ
4138 break;
4139 }
4140
4141 /* Clear the bit */
4142 sig &= ~cur_bit;
4143 }
4144 }
4145
4146 return par_num;
4147}
4148
1191cb83
ED
4149static int bnx2x_check_blocks_with_parity1(u32 sig, int par_num,
4150 bool *global, bool print)
72fd0718
VZ
4151{
4152 int i = 0;
4153 u32 cur_bit = 0;
4154 for (i = 0; sig; i++) {
4155 cur_bit = ((u32)0x1 << i);
4156 if (sig & cur_bit) {
4157 switch (cur_bit) {
c9ee9206
VZ
4158 case AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR:
4159 if (print)
4160 _print_next_block(par_num++, "PBF");
72fd0718
VZ
4161 break;
4162 case AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR:
c9ee9206
VZ
4163 if (print)
4164 _print_next_block(par_num++, "QM");
4165 break;
4166 case AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR:
4167 if (print)
4168 _print_next_block(par_num++, "TM");
72fd0718
VZ
4169 break;
4170 case AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR:
c9ee9206
VZ
4171 if (print)
4172 _print_next_block(par_num++, "XSDM");
4173 break;
4174 case AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR:
4175 if (print)
4176 _print_next_block(par_num++, "XCM");
72fd0718
VZ
4177 break;
4178 case AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR:
c9ee9206
VZ
4179 if (print)
4180 _print_next_block(par_num++, "XSEMI");
72fd0718
VZ
4181 break;
4182 case AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR:
c9ee9206
VZ
4183 if (print)
4184 _print_next_block(par_num++,
4185 "DOORBELLQ");
4186 break;
4187 case AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR:
4188 if (print)
4189 _print_next_block(par_num++, "NIG");
72fd0718
VZ
4190 break;
4191 case AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR:
c9ee9206
VZ
4192 if (print)
4193 _print_next_block(par_num++,
4194 "VAUX PCI CORE");
4195 *global = true;
72fd0718
VZ
4196 break;
4197 case AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR:
c9ee9206
VZ
4198 if (print)
4199 _print_next_block(par_num++, "DEBUG");
72fd0718
VZ
4200 break;
4201 case AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR:
c9ee9206
VZ
4202 if (print)
4203 _print_next_block(par_num++, "USDM");
72fd0718 4204 break;
8736c826
VZ
4205 case AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR:
4206 if (print)
4207 _print_next_block(par_num++, "UCM");
4208 break;
72fd0718 4209 case AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR:
c9ee9206
VZ
4210 if (print)
4211 _print_next_block(par_num++, "USEMI");
72fd0718
VZ
4212 break;
4213 case AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR:
c9ee9206
VZ
4214 if (print)
4215 _print_next_block(par_num++, "UPB");
72fd0718
VZ
4216 break;
4217 case AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR:
c9ee9206
VZ
4218 if (print)
4219 _print_next_block(par_num++, "CSDM");
72fd0718 4220 break;
8736c826
VZ
4221 case AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR:
4222 if (print)
4223 _print_next_block(par_num++, "CCM");
4224 break;
72fd0718
VZ
4225 }
4226
4227 /* Clear the bit */
4228 sig &= ~cur_bit;
4229 }
4230 }
4231
4232 return par_num;
4233}
4234
1191cb83
ED
4235static int bnx2x_check_blocks_with_parity2(u32 sig, int par_num,
4236 bool print)
72fd0718
VZ
4237{
4238 int i = 0;
4239 u32 cur_bit = 0;
4240 for (i = 0; sig; i++) {
4241 cur_bit = ((u32)0x1 << i);
4242 if (sig & cur_bit) {
4243 switch (cur_bit) {
4244 case AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR:
c9ee9206
VZ
4245 if (print)
4246 _print_next_block(par_num++, "CSEMI");
72fd0718
VZ
4247 break;
4248 case AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR:
c9ee9206
VZ
4249 if (print)
4250 _print_next_block(par_num++, "PXP");
72fd0718
VZ
4251 break;
4252 case AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR:
c9ee9206
VZ
4253 if (print)
4254 _print_next_block(par_num++,
72fd0718
VZ
4255 "PXPPCICLOCKCLIENT");
4256 break;
4257 case AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR:
c9ee9206
VZ
4258 if (print)
4259 _print_next_block(par_num++, "CFC");
72fd0718
VZ
4260 break;
4261 case AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR:
c9ee9206
VZ
4262 if (print)
4263 _print_next_block(par_num++, "CDU");
4264 break;
4265 case AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR:
4266 if (print)
4267 _print_next_block(par_num++, "DMAE");
72fd0718
VZ
4268 break;
4269 case AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR:
c9ee9206
VZ
4270 if (print)
4271 _print_next_block(par_num++, "IGU");
72fd0718
VZ
4272 break;
4273 case AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR:
c9ee9206
VZ
4274 if (print)
4275 _print_next_block(par_num++, "MISC");
72fd0718
VZ
4276 break;
4277 }
4278
4279 /* Clear the bit */
4280 sig &= ~cur_bit;
4281 }
4282 }
4283
4284 return par_num;
4285}
4286
1191cb83
ED
4287static int bnx2x_check_blocks_with_parity3(u32 sig, int par_num,
4288 bool *global, bool print)
72fd0718
VZ
4289{
4290 int i = 0;
4291 u32 cur_bit = 0;
4292 for (i = 0; sig; i++) {
4293 cur_bit = ((u32)0x1 << i);
4294 if (sig & cur_bit) {
4295 switch (cur_bit) {
4296 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY:
c9ee9206
VZ
4297 if (print)
4298 _print_next_block(par_num++, "MCP ROM");
4299 *global = true;
72fd0718
VZ
4300 break;
4301 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY:
c9ee9206
VZ
4302 if (print)
4303 _print_next_block(par_num++,
4304 "MCP UMP RX");
4305 *global = true;
72fd0718
VZ
4306 break;
4307 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY:
c9ee9206
VZ
4308 if (print)
4309 _print_next_block(par_num++,
4310 "MCP UMP TX");
4311 *global = true;
72fd0718
VZ
4312 break;
4313 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY:
c9ee9206
VZ
4314 if (print)
4315 _print_next_block(par_num++,
4316 "MCP SCPAD");
4317 *global = true;
72fd0718
VZ
4318 break;
4319 }
4320
4321 /* Clear the bit */
4322 sig &= ~cur_bit;
4323 }
4324 }
4325
4326 return par_num;
4327}
4328
1191cb83
ED
4329static int bnx2x_check_blocks_with_parity4(u32 sig, int par_num,
4330 bool print)
8736c826
VZ
4331{
4332 int i = 0;
4333 u32 cur_bit = 0;
4334 for (i = 0; sig; i++) {
4335 cur_bit = ((u32)0x1 << i);
4336 if (sig & cur_bit) {
4337 switch (cur_bit) {
4338 case AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR:
4339 if (print)
4340 _print_next_block(par_num++, "PGLUE_B");
4341 break;
4342 case AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR:
4343 if (print)
4344 _print_next_block(par_num++, "ATC");
4345 break;
4346 }
4347
4348 /* Clear the bit */
4349 sig &= ~cur_bit;
4350 }
4351 }
4352
4353 return par_num;
4354}
4355
1191cb83
ED
4356static bool bnx2x_parity_attn(struct bnx2x *bp, bool *global, bool print,
4357 u32 *sig)
72fd0718 4358{
8736c826
VZ
4359 if ((sig[0] & HW_PRTY_ASSERT_SET_0) ||
4360 (sig[1] & HW_PRTY_ASSERT_SET_1) ||
4361 (sig[2] & HW_PRTY_ASSERT_SET_2) ||
4362 (sig[3] & HW_PRTY_ASSERT_SET_3) ||
4363 (sig[4] & HW_PRTY_ASSERT_SET_4)) {
72fd0718 4364 int par_num = 0;
51c1a580
MS
4365 DP(NETIF_MSG_HW, "Was parity error: HW block parity attention:\n"
4366 "[0]:0x%08x [1]:0x%08x [2]:0x%08x [3]:0x%08x [4]:0x%08x\n",
8736c826
VZ
4367 sig[0] & HW_PRTY_ASSERT_SET_0,
4368 sig[1] & HW_PRTY_ASSERT_SET_1,
4369 sig[2] & HW_PRTY_ASSERT_SET_2,
4370 sig[3] & HW_PRTY_ASSERT_SET_3,
4371 sig[4] & HW_PRTY_ASSERT_SET_4);
c9ee9206
VZ
4372 if (print)
4373 netdev_err(bp->dev,
4374 "Parity errors detected in blocks: ");
4375 par_num = bnx2x_check_blocks_with_parity0(
8736c826 4376 sig[0] & HW_PRTY_ASSERT_SET_0, par_num, print);
c9ee9206 4377 par_num = bnx2x_check_blocks_with_parity1(
8736c826 4378 sig[1] & HW_PRTY_ASSERT_SET_1, par_num, global, print);
c9ee9206 4379 par_num = bnx2x_check_blocks_with_parity2(
8736c826 4380 sig[2] & HW_PRTY_ASSERT_SET_2, par_num, print);
c9ee9206 4381 par_num = bnx2x_check_blocks_with_parity3(
8736c826
VZ
4382 sig[3] & HW_PRTY_ASSERT_SET_3, par_num, global, print);
4383 par_num = bnx2x_check_blocks_with_parity4(
4384 sig[4] & HW_PRTY_ASSERT_SET_4, par_num, print);
4385
c9ee9206
VZ
4386 if (print)
4387 pr_cont("\n");
8736c826 4388
72fd0718
VZ
4389 return true;
4390 } else
4391 return false;
4392}
4393
c9ee9206
VZ
4394/**
4395 * bnx2x_chk_parity_attn - checks for parity attentions.
4396 *
4397 * @bp: driver handle
4398 * @global: true if there was a global attention
4399 * @print: show parity attention in syslog
4400 */
4401bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print)
877e9aa4 4402{
8736c826 4403 struct attn_route attn = { {0} };
72fd0718
VZ
4404 int port = BP_PORT(bp);
4405
4406 attn.sig[0] = REG_RD(bp,
4407 MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 +
4408 port*4);
4409 attn.sig[1] = REG_RD(bp,
4410 MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 +
4411 port*4);
4412 attn.sig[2] = REG_RD(bp,
4413 MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 +
4414 port*4);
4415 attn.sig[3] = REG_RD(bp,
4416 MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 +
4417 port*4);
4418
8736c826
VZ
4419 if (!CHIP_IS_E1x(bp))
4420 attn.sig[4] = REG_RD(bp,
4421 MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 +
4422 port*4);
4423
4424 return bnx2x_parity_attn(bp, global, print, attn.sig);
72fd0718
VZ
4425}
4426
f2e0899f 4427
1191cb83 4428static void bnx2x_attn_int_deasserted4(struct bnx2x *bp, u32 attn)
f2e0899f
DK
4429{
4430 u32 val;
4431 if (attn & AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT) {
4432
4433 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS_CLR);
4434 BNX2X_ERR("PGLUE hw attention 0x%x\n", val);
4435 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR)
51c1a580 4436 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR\n");
f2e0899f 4437 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR)
51c1a580 4438 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR\n");
f2e0899f 4439 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN)
51c1a580 4440 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN\n");
f2e0899f 4441 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN)
51c1a580 4442 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN\n");
f2e0899f
DK
4443 if (val &
4444 PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN)
51c1a580 4445 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN\n");
f2e0899f
DK
4446 if (val &
4447 PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN)
51c1a580 4448 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN\n");
f2e0899f 4449 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN)
51c1a580 4450 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN\n");
f2e0899f 4451 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN)
51c1a580 4452 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN\n");
f2e0899f 4453 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW)
51c1a580 4454 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW\n");
f2e0899f
DK
4455 }
4456 if (attn & AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT) {
4457 val = REG_RD(bp, ATC_REG_ATC_INT_STS_CLR);
4458 BNX2X_ERR("ATC hw attention 0x%x\n", val);
4459 if (val & ATC_ATC_INT_STS_REG_ADDRESS_ERROR)
4460 BNX2X_ERR("ATC_ATC_INT_STS_REG_ADDRESS_ERROR\n");
4461 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND)
51c1a580 4462 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND\n");
f2e0899f 4463 if (val & ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS)
51c1a580 4464 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS\n");
f2e0899f 4465 if (val & ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT)
51c1a580 4466 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT\n");
f2e0899f
DK
4467 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR)
4468 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR\n");
4469 if (val & ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU)
51c1a580 4470 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU\n");
f2e0899f
DK
4471 }
4472
4473 if (attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4474 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)) {
4475 BNX2X_ERR("FATAL parity attention set4 0x%x\n",
4476 (u32)(attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4477 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)));
4478 }
4479
4480}
4481
72fd0718
VZ
4482static void bnx2x_attn_int_deasserted(struct bnx2x *bp, u32 deasserted)
4483{
4484 struct attn_route attn, *group_mask;
34f80b04 4485 int port = BP_PORT(bp);
877e9aa4 4486 int index;
a2fbb9ea
ET
4487 u32 reg_addr;
4488 u32 val;
3fcaf2e5 4489 u32 aeu_mask;
c9ee9206 4490 bool global = false;
a2fbb9ea
ET
4491
4492 /* need to take HW lock because MCP or other port might also
4493 try to handle this event */
4a37fb66 4494 bnx2x_acquire_alr(bp);
a2fbb9ea 4495
c9ee9206
VZ
4496 if (bnx2x_chk_parity_attn(bp, &global, true)) {
4497#ifndef BNX2X_STOP_ON_ERROR
72fd0718 4498 bp->recovery_state = BNX2X_RECOVERY_INIT;
7be08a72 4499 schedule_delayed_work(&bp->sp_rtnl_task, 0);
72fd0718
VZ
4500 /* Disable HW interrupts */
4501 bnx2x_int_disable(bp);
72fd0718
VZ
4502 /* In case of parity errors don't handle attentions so that
4503 * other function would "see" parity errors.
4504 */
c9ee9206
VZ
4505#else
4506 bnx2x_panic();
4507#endif
4508 bnx2x_release_alr(bp);
72fd0718
VZ
4509 return;
4510 }
4511
a2fbb9ea
ET
4512 attn.sig[0] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + port*4);
4513 attn.sig[1] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 + port*4);
4514 attn.sig[2] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 + port*4);
4515 attn.sig[3] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 + port*4);
619c5cb6 4516 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
4517 attn.sig[4] =
4518 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 + port*4);
4519 else
4520 attn.sig[4] = 0;
4521
4522 DP(NETIF_MSG_HW, "attn: %08x %08x %08x %08x %08x\n",
4523 attn.sig[0], attn.sig[1], attn.sig[2], attn.sig[3], attn.sig[4]);
a2fbb9ea
ET
4524
4525 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
4526 if (deasserted & (1 << index)) {
72fd0718 4527 group_mask = &bp->attn_group[index];
a2fbb9ea 4528
51c1a580 4529 DP(NETIF_MSG_HW, "group[%d]: %08x %08x %08x %08x %08x\n",
f2e0899f
DK
4530 index,
4531 group_mask->sig[0], group_mask->sig[1],
4532 group_mask->sig[2], group_mask->sig[3],
4533 group_mask->sig[4]);
a2fbb9ea 4534
f2e0899f
DK
4535 bnx2x_attn_int_deasserted4(bp,
4536 attn.sig[4] & group_mask->sig[4]);
877e9aa4 4537 bnx2x_attn_int_deasserted3(bp,
72fd0718 4538 attn.sig[3] & group_mask->sig[3]);
877e9aa4 4539 bnx2x_attn_int_deasserted1(bp,
72fd0718 4540 attn.sig[1] & group_mask->sig[1]);
877e9aa4 4541 bnx2x_attn_int_deasserted2(bp,
72fd0718 4542 attn.sig[2] & group_mask->sig[2]);
877e9aa4 4543 bnx2x_attn_int_deasserted0(bp,
72fd0718 4544 attn.sig[0] & group_mask->sig[0]);
a2fbb9ea
ET
4545 }
4546 }
4547
4a37fb66 4548 bnx2x_release_alr(bp);
a2fbb9ea 4549
f2e0899f
DK
4550 if (bp->common.int_block == INT_BLOCK_HC)
4551 reg_addr = (HC_REG_COMMAND_REG + port*32 +
4552 COMMAND_REG_ATTN_BITS_CLR);
4553 else
4554 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_CLR_UPPER*8);
a2fbb9ea
ET
4555
4556 val = ~deasserted;
f2e0899f
DK
4557 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", val,
4558 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
5c862848 4559 REG_WR(bp, reg_addr, val);
a2fbb9ea 4560
a2fbb9ea 4561 if (~bp->attn_state & deasserted)
3fcaf2e5 4562 BNX2X_ERR("IGU ERROR\n");
a2fbb9ea
ET
4563
4564 reg_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
4565 MISC_REG_AEU_MASK_ATTN_FUNC_0;
4566
3fcaf2e5
EG
4567 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
4568 aeu_mask = REG_RD(bp, reg_addr);
4569
4570 DP(NETIF_MSG_HW, "aeu_mask %x newly deasserted %x\n",
4571 aeu_mask, deasserted);
72fd0718 4572 aeu_mask |= (deasserted & 0x3ff);
3fcaf2e5 4573 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 4574
3fcaf2e5
EG
4575 REG_WR(bp, reg_addr, aeu_mask);
4576 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea
ET
4577
4578 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
4579 bp->attn_state &= ~deasserted;
4580 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
4581}
4582
4583static void bnx2x_attn_int(struct bnx2x *bp)
4584{
4585 /* read local copy of bits */
68d59484
EG
4586 u32 attn_bits = le32_to_cpu(bp->def_status_blk->atten_status_block.
4587 attn_bits);
4588 u32 attn_ack = le32_to_cpu(bp->def_status_blk->atten_status_block.
4589 attn_bits_ack);
a2fbb9ea
ET
4590 u32 attn_state = bp->attn_state;
4591
4592 /* look for changed bits */
4593 u32 asserted = attn_bits & ~attn_ack & ~attn_state;
4594 u32 deasserted = ~attn_bits & attn_ack & attn_state;
4595
4596 DP(NETIF_MSG_HW,
4597 "attn_bits %x attn_ack %x asserted %x deasserted %x\n",
4598 attn_bits, attn_ack, asserted, deasserted);
4599
4600 if (~(attn_bits ^ attn_ack) & (attn_bits ^ attn_state))
34f80b04 4601 BNX2X_ERR("BAD attention state\n");
a2fbb9ea
ET
4602
4603 /* handle bits that were raised */
4604 if (asserted)
4605 bnx2x_attn_int_asserted(bp, asserted);
4606
4607 if (deasserted)
4608 bnx2x_attn_int_deasserted(bp, deasserted);
4609}
4610
619c5cb6
VZ
4611void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
4612 u16 index, u8 op, u8 update)
4613{
dc1ba591
AE
4614 u32 igu_addr = bp->igu_base_addr;
4615 igu_addr += (IGU_CMD_INT_ACK_BASE + igu_sb_id)*8;
619c5cb6
VZ
4616 bnx2x_igu_ack_sb_gen(bp, igu_sb_id, segment, index, op, update,
4617 igu_addr);
4618}
4619
1191cb83 4620static void bnx2x_update_eq_prod(struct bnx2x *bp, u16 prod)
523224a3
DK
4621{
4622 /* No memory barriers */
4623 storm_memset_eq_prod(bp, prod, BP_FUNC(bp));
4624 mmiowb(); /* keep prod updates ordered */
4625}
4626
523224a3
DK
4627static int bnx2x_cnic_handle_cfc_del(struct bnx2x *bp, u32 cid,
4628 union event_ring_elem *elem)
4629{
619c5cb6
VZ
4630 u8 err = elem->message.error;
4631
523224a3 4632 if (!bp->cnic_eth_dev.starting_cid ||
c3a8ce61
VZ
4633 (cid < bp->cnic_eth_dev.starting_cid &&
4634 cid != bp->cnic_eth_dev.iscsi_l2_cid))
523224a3
DK
4635 return 1;
4636
4637 DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid);
4638
619c5cb6
VZ
4639 if (unlikely(err)) {
4640
523224a3
DK
4641 BNX2X_ERR("got delete ramrod for CNIC CID %d with error!\n",
4642 cid);
4643 bnx2x_panic_dump(bp);
4644 }
619c5cb6 4645 bnx2x_cnic_cfc_comp(bp, cid, err);
523224a3
DK
4646 return 0;
4647}
523224a3 4648
1191cb83 4649static void bnx2x_handle_mcast_eqe(struct bnx2x *bp)
619c5cb6
VZ
4650{
4651 struct bnx2x_mcast_ramrod_params rparam;
4652 int rc;
4653
4654 memset(&rparam, 0, sizeof(rparam));
4655
4656 rparam.mcast_obj = &bp->mcast_obj;
4657
4658 netif_addr_lock_bh(bp->dev);
4659
4660 /* Clear pending state for the last command */
4661 bp->mcast_obj.raw.clear_pending(&bp->mcast_obj.raw);
4662
4663 /* If there are pending mcast commands - send them */
4664 if (bp->mcast_obj.check_pending(&bp->mcast_obj)) {
4665 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
4666 if (rc < 0)
4667 BNX2X_ERR("Failed to send pending mcast commands: %d\n",
4668 rc);
4669 }
4670
4671 netif_addr_unlock_bh(bp->dev);
4672}
4673
1191cb83
ED
4674static void bnx2x_handle_classification_eqe(struct bnx2x *bp,
4675 union event_ring_elem *elem)
619c5cb6
VZ
4676{
4677 unsigned long ramrod_flags = 0;
4678 int rc = 0;
4679 u32 cid = elem->message.data.eth_event.echo & BNX2X_SWCID_MASK;
4680 struct bnx2x_vlan_mac_obj *vlan_mac_obj;
4681
4682 /* Always push next commands out, don't wait here */
4683 __set_bit(RAMROD_CONT, &ramrod_flags);
4684
4685 switch (elem->message.data.eth_event.echo >> BNX2X_SWCID_SHIFT) {
4686 case BNX2X_FILTER_MAC_PENDING:
51c1a580 4687 DP(BNX2X_MSG_SP, "Got SETUP_MAC completions\n");
55c11941 4688 if (CNIC_LOADED(bp) && (cid == BNX2X_ISCSI_ETH_CID(bp)))
619c5cb6
VZ
4689 vlan_mac_obj = &bp->iscsi_l2_mac_obj;
4690 else
15192a8c 4691 vlan_mac_obj = &bp->sp_objs[cid].mac_obj;
619c5cb6
VZ
4692
4693 break;
619c5cb6 4694 case BNX2X_FILTER_MCAST_PENDING:
51c1a580 4695 DP(BNX2X_MSG_SP, "Got SETUP_MCAST completions\n");
619c5cb6
VZ
4696 /* This is only relevant for 57710 where multicast MACs are
4697 * configured as unicast MACs using the same ramrod.
4698 */
4699 bnx2x_handle_mcast_eqe(bp);
4700 return;
4701 default:
4702 BNX2X_ERR("Unsupported classification command: %d\n",
4703 elem->message.data.eth_event.echo);
4704 return;
4705 }
4706
4707 rc = vlan_mac_obj->complete(bp, vlan_mac_obj, elem, &ramrod_flags);
4708
4709 if (rc < 0)
4710 BNX2X_ERR("Failed to schedule new commands: %d\n", rc);
4711 else if (rc > 0)
4712 DP(BNX2X_MSG_SP, "Scheduled next pending commands...\n");
4713
4714}
4715
619c5cb6 4716static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start);
619c5cb6 4717
1191cb83 4718static void bnx2x_handle_rx_mode_eqe(struct bnx2x *bp)
619c5cb6
VZ
4719{
4720 netif_addr_lock_bh(bp->dev);
4721
4722 clear_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
4723
4724 /* Send rx_mode command again if was requested */
4725 if (test_and_clear_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state))
4726 bnx2x_set_storm_rx_mode(bp);
619c5cb6
VZ
4727 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED,
4728 &bp->sp_state))
4729 bnx2x_set_iscsi_eth_rx_mode(bp, true);
4730 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED,
4731 &bp->sp_state))
4732 bnx2x_set_iscsi_eth_rx_mode(bp, false);
619c5cb6
VZ
4733
4734 netif_addr_unlock_bh(bp->dev);
4735}
4736
1191cb83 4737static void bnx2x_after_afex_vif_lists(struct bnx2x *bp,
a3348722
BW
4738 union event_ring_elem *elem)
4739{
4740 if (elem->message.data.vif_list_event.echo == VIF_LIST_RULE_GET) {
4741 DP(BNX2X_MSG_SP,
4742 "afex: ramrod completed VIF LIST_GET, addrs 0x%x\n",
4743 elem->message.data.vif_list_event.func_bit_map);
4744 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTGET_ACK,
4745 elem->message.data.vif_list_event.func_bit_map);
4746 } else if (elem->message.data.vif_list_event.echo ==
4747 VIF_LIST_RULE_SET) {
4748 DP(BNX2X_MSG_SP, "afex: ramrod completed VIF LIST_SET\n");
4749 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTSET_ACK, 0);
4750 }
4751}
4752
4753/* called with rtnl_lock */
1191cb83 4754static void bnx2x_after_function_update(struct bnx2x *bp)
a3348722
BW
4755{
4756 int q, rc;
4757 struct bnx2x_fastpath *fp;
4758 struct bnx2x_queue_state_params queue_params = {NULL};
4759 struct bnx2x_queue_update_params *q_update_params =
4760 &queue_params.params.update;
4761
4762 /* Send Q update command with afex vlan removal values for all Qs */
4763 queue_params.cmd = BNX2X_Q_CMD_UPDATE;
4764
4765 /* set silent vlan removal values according to vlan mode */
4766 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG,
4767 &q_update_params->update_flags);
4768 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM,
4769 &q_update_params->update_flags);
4770 __set_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4771
4772 /* in access mode mark mask and value are 0 to strip all vlans */
4773 if (bp->afex_vlan_mode == FUNC_MF_CFG_AFEX_VLAN_ACCESS_MODE) {
4774 q_update_params->silent_removal_value = 0;
4775 q_update_params->silent_removal_mask = 0;
4776 } else {
4777 q_update_params->silent_removal_value =
4778 (bp->afex_def_vlan_tag & VLAN_VID_MASK);
4779 q_update_params->silent_removal_mask = VLAN_VID_MASK;
4780 }
4781
4782 for_each_eth_queue(bp, q) {
4783 /* Set the appropriate Queue object */
4784 fp = &bp->fp[q];
15192a8c 4785 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4786
4787 /* send the ramrod */
4788 rc = bnx2x_queue_state_change(bp, &queue_params);
4789 if (rc < 0)
4790 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4791 q);
4792 }
4793
a3348722 4794 if (!NO_FCOE(bp)) {
65565884 4795 fp = &bp->fp[FCOE_IDX(bp)];
15192a8c 4796 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4797
4798 /* clear pending completion bit */
4799 __clear_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4800
4801 /* mark latest Q bit */
4802 smp_mb__before_clear_bit();
4803 set_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
4804 smp_mb__after_clear_bit();
4805
4806 /* send Q update ramrod for FCoE Q */
4807 rc = bnx2x_queue_state_change(bp, &queue_params);
4808 if (rc < 0)
4809 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4810 q);
4811 } else {
4812 /* If no FCoE ring - ACK MCP now */
4813 bnx2x_link_report(bp);
4814 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
4815 }
a3348722
BW
4816}
4817
1191cb83 4818static struct bnx2x_queue_sp_obj *bnx2x_cid_to_q_obj(
619c5cb6
VZ
4819 struct bnx2x *bp, u32 cid)
4820{
94f05b0f 4821 DP(BNX2X_MSG_SP, "retrieving fp from cid %d\n", cid);
55c11941
MS
4822
4823 if (CNIC_LOADED(bp) && (cid == BNX2X_FCOE_ETH_CID(bp)))
15192a8c 4824 return &bnx2x_fcoe_sp_obj(bp, q_obj);
619c5cb6 4825 else
15192a8c 4826 return &bp->sp_objs[CID_TO_FP(cid, bp)].q_obj;
619c5cb6
VZ
4827}
4828
523224a3
DK
4829static void bnx2x_eq_int(struct bnx2x *bp)
4830{
4831 u16 hw_cons, sw_cons, sw_prod;
4832 union event_ring_elem *elem;
55c11941 4833 u8 echo;
523224a3
DK
4834 u32 cid;
4835 u8 opcode;
4836 int spqe_cnt = 0;
619c5cb6
VZ
4837 struct bnx2x_queue_sp_obj *q_obj;
4838 struct bnx2x_func_sp_obj *f_obj = &bp->func_obj;
4839 struct bnx2x_raw_obj *rss_raw = &bp->rss_conf_obj.raw;
523224a3
DK
4840
4841 hw_cons = le16_to_cpu(*bp->eq_cons_sb);
4842
4843 /* The hw_cos range is 1-255, 257 - the sw_cons range is 0-254, 256.
4844 * when we get the the next-page we nned to adjust so the loop
4845 * condition below will be met. The next element is the size of a
4846 * regular element and hence incrementing by 1
4847 */
4848 if ((hw_cons & EQ_DESC_MAX_PAGE) == EQ_DESC_MAX_PAGE)
4849 hw_cons++;
4850
25985edc 4851 /* This function may never run in parallel with itself for a
523224a3
DK
4852 * specific bp, thus there is no need in "paired" read memory
4853 * barrier here.
4854 */
4855 sw_cons = bp->eq_cons;
4856 sw_prod = bp->eq_prod;
4857
d6cae238 4858 DP(BNX2X_MSG_SP, "EQ: hw_cons %u sw_cons %u bp->eq_spq_left %x\n",
6e30dd4e 4859 hw_cons, sw_cons, atomic_read(&bp->eq_spq_left));
523224a3
DK
4860
4861 for (; sw_cons != hw_cons;
4862 sw_prod = NEXT_EQ_IDX(sw_prod), sw_cons = NEXT_EQ_IDX(sw_cons)) {
4863
4864
4865 elem = &bp->eq_ring[EQ_DESC(sw_cons)];
4866
4867 cid = SW_CID(elem->message.data.cfc_del_event.cid);
4868 opcode = elem->message.opcode;
4869
4870
4871 /* handle eq element */
4872 switch (opcode) {
4873 case EVENT_RING_OPCODE_STAT_QUERY:
51c1a580
MS
4874 DP(BNX2X_MSG_SP | BNX2X_MSG_STATS,
4875 "got statistics comp event %d\n",
619c5cb6 4876 bp->stats_comp++);
523224a3 4877 /* nothing to do with stats comp */
d6cae238 4878 goto next_spqe;
523224a3
DK
4879
4880 case EVENT_RING_OPCODE_CFC_DEL:
4881 /* handle according to cid range */
4882 /*
4883 * we may want to verify here that the bp state is
4884 * HALTING
4885 */
d6cae238 4886 DP(BNX2X_MSG_SP,
523224a3 4887 "got delete ramrod for MULTI[%d]\n", cid);
55c11941
MS
4888
4889 if (CNIC_LOADED(bp) &&
4890 !bnx2x_cnic_handle_cfc_del(bp, cid, elem))
523224a3 4891 goto next_spqe;
55c11941 4892
619c5cb6
VZ
4893 q_obj = bnx2x_cid_to_q_obj(bp, cid);
4894
4895 if (q_obj->complete_cmd(bp, q_obj, BNX2X_Q_CMD_CFC_DEL))
4896 break;
4897
4898
523224a3
DK
4899
4900 goto next_spqe;
e4901dde
VZ
4901
4902 case EVENT_RING_OPCODE_STOP_TRAFFIC:
51c1a580 4903 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got STOP TRAFFIC\n");
6debea87
DK
4904 if (f_obj->complete_cmd(bp, f_obj,
4905 BNX2X_F_CMD_TX_STOP))
4906 break;
e4901dde
VZ
4907 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_PAUSED);
4908 goto next_spqe;
619c5cb6 4909
e4901dde 4910 case EVENT_RING_OPCODE_START_TRAFFIC:
51c1a580 4911 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got START TRAFFIC\n");
6debea87
DK
4912 if (f_obj->complete_cmd(bp, f_obj,
4913 BNX2X_F_CMD_TX_START))
4914 break;
e4901dde
VZ
4915 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_RELEASED);
4916 goto next_spqe;
55c11941 4917
a3348722 4918 case EVENT_RING_OPCODE_FUNCTION_UPDATE:
55c11941
MS
4919 echo = elem->message.data.function_update_event.echo;
4920 if (echo == SWITCH_UPDATE) {
4921 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4922 "got FUNC_SWITCH_UPDATE ramrod\n");
4923 if (f_obj->complete_cmd(
4924 bp, f_obj, BNX2X_F_CMD_SWITCH_UPDATE))
4925 break;
a3348722 4926
55c11941
MS
4927 } else {
4928 DP(BNX2X_MSG_SP | BNX2X_MSG_MCP,
4929 "AFEX: ramrod completed FUNCTION_UPDATE\n");
4930 f_obj->complete_cmd(bp, f_obj,
4931 BNX2X_F_CMD_AFEX_UPDATE);
4932
4933 /* We will perform the Queues update from
4934 * sp_rtnl task as all Queue SP operations
4935 * should run under rtnl_lock.
4936 */
4937 smp_mb__before_clear_bit();
4938 set_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE,
4939 &bp->sp_rtnl_state);
4940 smp_mb__after_clear_bit();
4941
4942 schedule_delayed_work(&bp->sp_rtnl_task, 0);
4943 }
a3348722 4944
a3348722
BW
4945 goto next_spqe;
4946
4947 case EVENT_RING_OPCODE_AFEX_VIF_LISTS:
4948 f_obj->complete_cmd(bp, f_obj,
4949 BNX2X_F_CMD_AFEX_VIFLISTS);
4950 bnx2x_after_afex_vif_lists(bp, elem);
4951 goto next_spqe;
619c5cb6 4952 case EVENT_RING_OPCODE_FUNCTION_START:
51c1a580
MS
4953 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4954 "got FUNC_START ramrod\n");
619c5cb6
VZ
4955 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_START))
4956 break;
4957
4958 goto next_spqe;
4959
4960 case EVENT_RING_OPCODE_FUNCTION_STOP:
51c1a580
MS
4961 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
4962 "got FUNC_STOP ramrod\n");
619c5cb6
VZ
4963 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_STOP))
4964 break;
4965
4966 goto next_spqe;
523224a3
DK
4967 }
4968
4969 switch (opcode | bp->state) {
619c5cb6
VZ
4970 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
4971 BNX2X_STATE_OPEN):
4972 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
523224a3 4973 BNX2X_STATE_OPENING_WAIT4_PORT):
619c5cb6
VZ
4974 cid = elem->message.data.eth_event.echo &
4975 BNX2X_SWCID_MASK;
d6cae238 4976 DP(BNX2X_MSG_SP, "got RSS_UPDATE ramrod. CID %d\n",
619c5cb6
VZ
4977 cid);
4978 rss_raw->clear_pending(rss_raw);
523224a3
DK
4979 break;
4980
619c5cb6
VZ
4981 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_OPEN):
4982 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_DIAG):
4983 case (EVENT_RING_OPCODE_SET_MAC |
523224a3 4984 BNX2X_STATE_CLOSING_WAIT4_HALT):
619c5cb6
VZ
4985 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4986 BNX2X_STATE_OPEN):
4987 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4988 BNX2X_STATE_DIAG):
4989 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
4990 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 4991 DP(BNX2X_MSG_SP, "got (un)set mac ramrod\n");
619c5cb6 4992 bnx2x_handle_classification_eqe(bp, elem);
523224a3
DK
4993 break;
4994
619c5cb6
VZ
4995 case (EVENT_RING_OPCODE_MULTICAST_RULES |
4996 BNX2X_STATE_OPEN):
4997 case (EVENT_RING_OPCODE_MULTICAST_RULES |
4998 BNX2X_STATE_DIAG):
4999 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5000 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5001 DP(BNX2X_MSG_SP, "got mcast ramrod\n");
619c5cb6 5002 bnx2x_handle_mcast_eqe(bp);
523224a3
DK
5003 break;
5004
619c5cb6
VZ
5005 case (EVENT_RING_OPCODE_FILTERS_RULES |
5006 BNX2X_STATE_OPEN):
5007 case (EVENT_RING_OPCODE_FILTERS_RULES |
5008 BNX2X_STATE_DIAG):
5009 case (EVENT_RING_OPCODE_FILTERS_RULES |
523224a3 5010 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5011 DP(BNX2X_MSG_SP, "got rx_mode ramrod\n");
619c5cb6 5012 bnx2x_handle_rx_mode_eqe(bp);
523224a3
DK
5013 break;
5014 default:
5015 /* unknown event log error and continue */
619c5cb6
VZ
5016 BNX2X_ERR("Unknown EQ event %d, bp->state 0x%x\n",
5017 elem->message.opcode, bp->state);
523224a3
DK
5018 }
5019next_spqe:
5020 spqe_cnt++;
5021 } /* for */
5022
8fe23fbd 5023 smp_mb__before_atomic_inc();
6e30dd4e 5024 atomic_add(spqe_cnt, &bp->eq_spq_left);
523224a3
DK
5025
5026 bp->eq_cons = sw_cons;
5027 bp->eq_prod = sw_prod;
5028 /* Make sure that above mem writes were issued towards the memory */
5029 smp_wmb();
5030
5031 /* update producer */
5032 bnx2x_update_eq_prod(bp, bp->eq_prod);
5033}
5034
a2fbb9ea
ET
5035static void bnx2x_sp_task(struct work_struct *work)
5036{
1cf167f2 5037 struct bnx2x *bp = container_of(work, struct bnx2x, sp_task.work);
a2fbb9ea
ET
5038 u16 status;
5039
a2fbb9ea 5040 status = bnx2x_update_dsb_idx(bp);
34f80b04
EG
5041/* if (status == 0) */
5042/* BNX2X_ERR("spurious slowpath interrupt!\n"); */
a2fbb9ea 5043
51c1a580 5044 DP(BNX2X_MSG_SP, "got a slowpath interrupt (status 0x%x)\n", status);
a2fbb9ea 5045
877e9aa4 5046 /* HW attentions */
523224a3 5047 if (status & BNX2X_DEF_SB_ATT_IDX) {
a2fbb9ea 5048 bnx2x_attn_int(bp);
523224a3 5049 status &= ~BNX2X_DEF_SB_ATT_IDX;
cdaa7cb8
VZ
5050 }
5051
523224a3
DK
5052 /* SP events: STAT_QUERY and others */
5053 if (status & BNX2X_DEF_SB_IDX) {
ec6ba945 5054 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
523224a3 5055
55c11941
MS
5056 if (FCOE_INIT(bp) &&
5057 (bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
019dbb4c
VZ
5058 /*
5059 * Prevent local bottom-halves from running as
5060 * we are going to change the local NAPI list.
5061 */
5062 local_bh_disable();
ec6ba945 5063 napi_schedule(&bnx2x_fcoe(bp, napi));
019dbb4c
VZ
5064 local_bh_enable();
5065 }
55c11941 5066
523224a3
DK
5067 /* Handle EQ completions */
5068 bnx2x_eq_int(bp);
5069
5070 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID,
5071 le16_to_cpu(bp->def_idx), IGU_INT_NOP, 1);
5072
5073 status &= ~BNX2X_DEF_SB_IDX;
cdaa7cb8
VZ
5074 }
5075
5076 if (unlikely(status))
51c1a580 5077 DP(BNX2X_MSG_SP, "got an unknown interrupt! (status 0x%x)\n",
cdaa7cb8 5078 status);
a2fbb9ea 5079
523224a3
DK
5080 bnx2x_ack_sb(bp, bp->igu_dsb_id, ATTENTION_ID,
5081 le16_to_cpu(bp->def_att_idx), IGU_INT_ENABLE, 1);
a3348722
BW
5082
5083 /* afex - poll to check if VIFSET_ACK should be sent to MFW */
5084 if (test_and_clear_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK,
5085 &bp->sp_state)) {
5086 bnx2x_link_report(bp);
5087 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
5088 }
a2fbb9ea
ET
5089}
5090
9f6c9258 5091irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance)
a2fbb9ea
ET
5092{
5093 struct net_device *dev = dev_instance;
5094 struct bnx2x *bp = netdev_priv(dev);
5095
523224a3
DK
5096 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0,
5097 IGU_INT_DISABLE, 0);
a2fbb9ea
ET
5098
5099#ifdef BNX2X_STOP_ON_ERROR
5100 if (unlikely(bp->panic))
5101 return IRQ_HANDLED;
5102#endif
5103
55c11941 5104 if (CNIC_LOADED(bp)) {
993ac7b5
MC
5105 struct cnic_ops *c_ops;
5106
5107 rcu_read_lock();
5108 c_ops = rcu_dereference(bp->cnic_ops);
5109 if (c_ops)
5110 c_ops->cnic_handler(bp->cnic_data, NULL);
5111 rcu_read_unlock();
5112 }
55c11941 5113
1cf167f2 5114 queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
a2fbb9ea
ET
5115
5116 return IRQ_HANDLED;
5117}
5118
5119/* end of slow path */
5120
619c5cb6
VZ
5121
5122void bnx2x_drv_pulse(struct bnx2x *bp)
5123{
5124 SHMEM_WR(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb,
5125 bp->fw_drv_pulse_wr_seq);
5126}
5127
5128
a2fbb9ea
ET
5129static void bnx2x_timer(unsigned long data)
5130{
5131 struct bnx2x *bp = (struct bnx2x *) data;
5132
5133 if (!netif_running(bp->dev))
5134 return;
5135
34f80b04 5136 if (!BP_NOMCP(bp)) {
f2e0899f 5137 int mb_idx = BP_FW_MB_IDX(bp);
a2fbb9ea
ET
5138 u32 drv_pulse;
5139 u32 mcp_pulse;
5140
5141 ++bp->fw_drv_pulse_wr_seq;
5142 bp->fw_drv_pulse_wr_seq &= DRV_PULSE_SEQ_MASK;
5143 /* TBD - add SYSTEM_TIME */
5144 drv_pulse = bp->fw_drv_pulse_wr_seq;
619c5cb6 5145 bnx2x_drv_pulse(bp);
a2fbb9ea 5146
f2e0899f 5147 mcp_pulse = (SHMEM_RD(bp, func_mb[mb_idx].mcp_pulse_mb) &
a2fbb9ea
ET
5148 MCP_PULSE_SEQ_MASK);
5149 /* The delta between driver pulse and mcp response
5150 * should be 1 (before mcp response) or 0 (after mcp response)
5151 */
5152 if ((drv_pulse != mcp_pulse) &&
5153 (drv_pulse != ((mcp_pulse + 1) & MCP_PULSE_SEQ_MASK))) {
5154 /* someone lost a heartbeat... */
5155 BNX2X_ERR("drv_pulse (0x%x) != mcp_pulse (0x%x)\n",
5156 drv_pulse, mcp_pulse);
5157 }
5158 }
5159
f34d28ea 5160 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a 5161 bnx2x_stats_handle(bp, STATS_EVENT_UPDATE);
a2fbb9ea 5162
a2fbb9ea
ET
5163 mod_timer(&bp->timer, jiffies + bp->current_interval);
5164}
5165
5166/* end of Statistics */
5167
5168/* nic init */
5169
5170/*
5171 * nic init service functions
5172 */
5173
1191cb83 5174static void bnx2x_fill(struct bnx2x *bp, u32 addr, int fill, u32 len)
a2fbb9ea 5175{
523224a3
DK
5176 u32 i;
5177 if (!(len%4) && !(addr%4))
5178 for (i = 0; i < len; i += 4)
5179 REG_WR(bp, addr + i, fill);
5180 else
5181 for (i = 0; i < len; i++)
5182 REG_WR8(bp, addr + i, fill);
34f80b04 5183
34f80b04
EG
5184}
5185
523224a3 5186/* helper: writes FP SP data to FW - data_size in dwords */
1191cb83
ED
5187static void bnx2x_wr_fp_sb_data(struct bnx2x *bp,
5188 int fw_sb_id,
5189 u32 *sb_data_p,
5190 u32 data_size)
34f80b04 5191{
a2fbb9ea 5192 int index;
523224a3
DK
5193 for (index = 0; index < data_size; index++)
5194 REG_WR(bp, BAR_CSTRORM_INTMEM +
5195 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id) +
5196 sizeof(u32)*index,
5197 *(sb_data_p + index));
5198}
a2fbb9ea 5199
1191cb83 5200static void bnx2x_zero_fp_sb(struct bnx2x *bp, int fw_sb_id)
523224a3
DK
5201{
5202 u32 *sb_data_p;
5203 u32 data_size = 0;
f2e0899f 5204 struct hc_status_block_data_e2 sb_data_e2;
523224a3 5205 struct hc_status_block_data_e1x sb_data_e1x;
a2fbb9ea 5206
523224a3 5207 /* disable the function first */
619c5cb6 5208 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5209 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5210 sb_data_e2.common.state = SB_DISABLED;
f2e0899f
DK
5211 sb_data_e2.common.p_func.vf_valid = false;
5212 sb_data_p = (u32 *)&sb_data_e2;
5213 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
5214 } else {
5215 memset(&sb_data_e1x, 0,
5216 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5217 sb_data_e1x.common.state = SB_DISABLED;
f2e0899f
DK
5218 sb_data_e1x.common.p_func.vf_valid = false;
5219 sb_data_p = (u32 *)&sb_data_e1x;
5220 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
5221 }
523224a3 5222 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
a2fbb9ea 5223
523224a3
DK
5224 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5225 CSTORM_STATUS_BLOCK_OFFSET(fw_sb_id), 0,
5226 CSTORM_STATUS_BLOCK_SIZE);
5227 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5228 CSTORM_SYNC_BLOCK_OFFSET(fw_sb_id), 0,
5229 CSTORM_SYNC_BLOCK_SIZE);
5230}
34f80b04 5231
523224a3 5232/* helper: writes SP SB data to FW */
1191cb83 5233static void bnx2x_wr_sp_sb_data(struct bnx2x *bp,
523224a3
DK
5234 struct hc_sp_status_block_data *sp_sb_data)
5235{
5236 int func = BP_FUNC(bp);
5237 int i;
5238 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
5239 REG_WR(bp, BAR_CSTRORM_INTMEM +
5240 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
5241 i*sizeof(u32),
5242 *((u32 *)sp_sb_data + i));
34f80b04
EG
5243}
5244
1191cb83 5245static void bnx2x_zero_sp_sb(struct bnx2x *bp)
34f80b04
EG
5246{
5247 int func = BP_FUNC(bp);
523224a3
DK
5248 struct hc_sp_status_block_data sp_sb_data;
5249 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
a2fbb9ea 5250
619c5cb6 5251 sp_sb_data.state = SB_DISABLED;
523224a3
DK
5252 sp_sb_data.p_func.vf_valid = false;
5253
5254 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
5255
5256 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5257 CSTORM_SP_STATUS_BLOCK_OFFSET(func), 0,
5258 CSTORM_SP_STATUS_BLOCK_SIZE);
5259 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5260 CSTORM_SP_SYNC_BLOCK_OFFSET(func), 0,
5261 CSTORM_SP_SYNC_BLOCK_SIZE);
5262
5263}
5264
5265
1191cb83 5266static void bnx2x_setup_ndsb_state_machine(struct hc_status_block_sm *hc_sm,
523224a3
DK
5267 int igu_sb_id, int igu_seg_id)
5268{
5269 hc_sm->igu_sb_id = igu_sb_id;
5270 hc_sm->igu_seg_id = igu_seg_id;
5271 hc_sm->timer_value = 0xFF;
5272 hc_sm->time_to_expire = 0xFFFFFFFF;
a2fbb9ea
ET
5273}
5274
150966ad
AE
5275
5276/* allocates state machine ids. */
1191cb83 5277static void bnx2x_map_sb_state_machines(struct hc_index_data *index_data)
150966ad
AE
5278{
5279 /* zero out state machine indices */
5280 /* rx indices */
5281 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5282
5283 /* tx indices */
5284 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5285 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags &= ~HC_INDEX_DATA_SM_ID;
5286 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags &= ~HC_INDEX_DATA_SM_ID;
5287 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags &= ~HC_INDEX_DATA_SM_ID;
5288
5289 /* map indices */
5290 /* rx indices */
5291 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags |=
5292 SM_RX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5293
5294 /* tx indices */
5295 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags |=
5296 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5297 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags |=
5298 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5299 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags |=
5300 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5301 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags |=
5302 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5303}
5304
8d96286a 5305static void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
523224a3 5306 u8 vf_valid, int fw_sb_id, int igu_sb_id)
a2fbb9ea 5307{
523224a3
DK
5308 int igu_seg_id;
5309
f2e0899f 5310 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
5311 struct hc_status_block_data_e1x sb_data_e1x;
5312 struct hc_status_block_sm *hc_sm_p;
523224a3
DK
5313 int data_size;
5314 u32 *sb_data_p;
5315
f2e0899f
DK
5316 if (CHIP_INT_MODE_IS_BC(bp))
5317 igu_seg_id = HC_SEG_ACCESS_NORM;
5318 else
5319 igu_seg_id = IGU_SEG_ACCESS_NORM;
523224a3
DK
5320
5321 bnx2x_zero_fp_sb(bp, fw_sb_id);
5322
619c5cb6 5323 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5324 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5325 sb_data_e2.common.state = SB_ENABLED;
f2e0899f
DK
5326 sb_data_e2.common.p_func.pf_id = BP_FUNC(bp);
5327 sb_data_e2.common.p_func.vf_id = vfid;
5328 sb_data_e2.common.p_func.vf_valid = vf_valid;
5329 sb_data_e2.common.p_func.vnic_id = BP_VN(bp);
5330 sb_data_e2.common.same_igu_sb_1b = true;
5331 sb_data_e2.common.host_sb_addr.hi = U64_HI(mapping);
5332 sb_data_e2.common.host_sb_addr.lo = U64_LO(mapping);
5333 hc_sm_p = sb_data_e2.common.state_machine;
f2e0899f
DK
5334 sb_data_p = (u32 *)&sb_data_e2;
5335 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
150966ad 5336 bnx2x_map_sb_state_machines(sb_data_e2.index_data);
f2e0899f
DK
5337 } else {
5338 memset(&sb_data_e1x, 0,
5339 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5340 sb_data_e1x.common.state = SB_ENABLED;
f2e0899f
DK
5341 sb_data_e1x.common.p_func.pf_id = BP_FUNC(bp);
5342 sb_data_e1x.common.p_func.vf_id = 0xff;
5343 sb_data_e1x.common.p_func.vf_valid = false;
5344 sb_data_e1x.common.p_func.vnic_id = BP_VN(bp);
5345 sb_data_e1x.common.same_igu_sb_1b = true;
5346 sb_data_e1x.common.host_sb_addr.hi = U64_HI(mapping);
5347 sb_data_e1x.common.host_sb_addr.lo = U64_LO(mapping);
5348 hc_sm_p = sb_data_e1x.common.state_machine;
f2e0899f
DK
5349 sb_data_p = (u32 *)&sb_data_e1x;
5350 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
150966ad 5351 bnx2x_map_sb_state_machines(sb_data_e1x.index_data);
f2e0899f 5352 }
523224a3
DK
5353
5354 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_RX_ID],
5355 igu_sb_id, igu_seg_id);
5356 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_TX_ID],
5357 igu_sb_id, igu_seg_id);
5358
51c1a580 5359 DP(NETIF_MSG_IFUP, "Init FW SB %d\n", fw_sb_id);
523224a3
DK
5360
5361 /* write indecies to HW */
5362 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
5363}
5364
619c5cb6 5365static void bnx2x_update_coalesce_sb(struct bnx2x *bp, u8 fw_sb_id,
523224a3
DK
5366 u16 tx_usec, u16 rx_usec)
5367{
6383c0b3 5368 bnx2x_update_coalesce_sb_index(bp, fw_sb_id, HC_INDEX_ETH_RX_CQ_CONS,
523224a3 5369 false, rx_usec);
6383c0b3
AE
5370 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5371 HC_INDEX_ETH_TX_CQ_CONS_COS0, false,
5372 tx_usec);
5373 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5374 HC_INDEX_ETH_TX_CQ_CONS_COS1, false,
5375 tx_usec);
5376 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5377 HC_INDEX_ETH_TX_CQ_CONS_COS2, false,
5378 tx_usec);
523224a3 5379}
f2e0899f 5380
523224a3
DK
5381static void bnx2x_init_def_sb(struct bnx2x *bp)
5382{
5383 struct host_sp_status_block *def_sb = bp->def_status_blk;
5384 dma_addr_t mapping = bp->def_status_blk_mapping;
5385 int igu_sp_sb_index;
5386 int igu_seg_id;
34f80b04
EG
5387 int port = BP_PORT(bp);
5388 int func = BP_FUNC(bp);
f2eaeb58 5389 int reg_offset, reg_offset_en5;
a2fbb9ea 5390 u64 section;
523224a3
DK
5391 int index;
5392 struct hc_sp_status_block_data sp_sb_data;
5393 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
5394
f2e0899f
DK
5395 if (CHIP_INT_MODE_IS_BC(bp)) {
5396 igu_sp_sb_index = DEF_SB_IGU_ID;
5397 igu_seg_id = HC_SEG_ACCESS_DEF;
5398 } else {
5399 igu_sp_sb_index = bp->igu_dsb_id;
5400 igu_seg_id = IGU_SEG_ACCESS_DEF;
5401 }
a2fbb9ea
ET
5402
5403 /* ATTN */
523224a3 5404 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
a2fbb9ea 5405 atten_status_block);
523224a3 5406 def_sb->atten_status_block.status_block_id = igu_sp_sb_index;
a2fbb9ea 5407
49d66772
ET
5408 bp->attn_state = 0;
5409
a2fbb9ea
ET
5410 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
5411 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
f2eaeb58
DK
5412 reg_offset_en5 = (port ? MISC_REG_AEU_ENABLE5_FUNC_1_OUT_0 :
5413 MISC_REG_AEU_ENABLE5_FUNC_0_OUT_0);
34f80b04 5414 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
523224a3
DK
5415 int sindex;
5416 /* take care of sig[0]..sig[4] */
5417 for (sindex = 0; sindex < 4; sindex++)
5418 bp->attn_group[index].sig[sindex] =
5419 REG_RD(bp, reg_offset + sindex*0x4 + 0x10*index);
f2e0899f 5420
619c5cb6 5421 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
5422 /*
5423 * enable5 is separate from the rest of the registers,
5424 * and therefore the address skip is 4
5425 * and not 16 between the different groups
5426 */
5427 bp->attn_group[index].sig[4] = REG_RD(bp,
f2eaeb58 5428 reg_offset_en5 + 0x4*index);
f2e0899f
DK
5429 else
5430 bp->attn_group[index].sig[4] = 0;
a2fbb9ea
ET
5431 }
5432
f2e0899f
DK
5433 if (bp->common.int_block == INT_BLOCK_HC) {
5434 reg_offset = (port ? HC_REG_ATTN_MSG1_ADDR_L :
5435 HC_REG_ATTN_MSG0_ADDR_L);
5436
5437 REG_WR(bp, reg_offset, U64_LO(section));
5438 REG_WR(bp, reg_offset + 4, U64_HI(section));
619c5cb6 5439 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5440 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_L, U64_LO(section));
5441 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_H, U64_HI(section));
5442 }
a2fbb9ea 5443
523224a3
DK
5444 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
5445 sp_sb);
a2fbb9ea 5446
523224a3 5447 bnx2x_zero_sp_sb(bp);
a2fbb9ea 5448
619c5cb6 5449 sp_sb_data.state = SB_ENABLED;
523224a3
DK
5450 sp_sb_data.host_sb_addr.lo = U64_LO(section);
5451 sp_sb_data.host_sb_addr.hi = U64_HI(section);
5452 sp_sb_data.igu_sb_id = igu_sp_sb_index;
5453 sp_sb_data.igu_seg_id = igu_seg_id;
5454 sp_sb_data.p_func.pf_id = func;
f2e0899f 5455 sp_sb_data.p_func.vnic_id = BP_VN(bp);
523224a3 5456 sp_sb_data.p_func.vf_id = 0xff;
a2fbb9ea 5457
523224a3 5458 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
49d66772 5459
523224a3 5460 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0, IGU_INT_ENABLE, 0);
a2fbb9ea
ET
5461}
5462
9f6c9258 5463void bnx2x_update_coalesce(struct bnx2x *bp)
a2fbb9ea 5464{
a2fbb9ea
ET
5465 int i;
5466
ec6ba945 5467 for_each_eth_queue(bp, i)
523224a3 5468 bnx2x_update_coalesce_sb(bp, bp->fp[i].fw_sb_id,
423cfa7e 5469 bp->tx_ticks, bp->rx_ticks);
a2fbb9ea
ET
5470}
5471
a2fbb9ea
ET
5472static void bnx2x_init_sp_ring(struct bnx2x *bp)
5473{
a2fbb9ea 5474 spin_lock_init(&bp->spq_lock);
6e30dd4e 5475 atomic_set(&bp->cq_spq_left, MAX_SPQ_PENDING);
a2fbb9ea 5476
a2fbb9ea 5477 bp->spq_prod_idx = 0;
a2fbb9ea
ET
5478 bp->dsb_sp_prod = BNX2X_SP_DSB_INDEX;
5479 bp->spq_prod_bd = bp->spq;
5480 bp->spq_last_bd = bp->spq_prod_bd + MAX_SP_DESC_CNT;
a2fbb9ea
ET
5481}
5482
523224a3 5483static void bnx2x_init_eq_ring(struct bnx2x *bp)
a2fbb9ea
ET
5484{
5485 int i;
523224a3
DK
5486 for (i = 1; i <= NUM_EQ_PAGES; i++) {
5487 union event_ring_elem *elem =
5488 &bp->eq_ring[EQ_DESC_CNT_PAGE * i - 1];
a2fbb9ea 5489
523224a3
DK
5490 elem->next_page.addr.hi =
5491 cpu_to_le32(U64_HI(bp->eq_mapping +
5492 BCM_PAGE_SIZE * (i % NUM_EQ_PAGES)));
5493 elem->next_page.addr.lo =
5494 cpu_to_le32(U64_LO(bp->eq_mapping +
5495 BCM_PAGE_SIZE*(i % NUM_EQ_PAGES)));
a2fbb9ea 5496 }
523224a3
DK
5497 bp->eq_cons = 0;
5498 bp->eq_prod = NUM_EQ_DESC;
5499 bp->eq_cons_sb = BNX2X_EQ_INDEX;
6e30dd4e
VZ
5500 /* we want a warning message before it gets rought... */
5501 atomic_set(&bp->eq_spq_left,
5502 min_t(int, MAX_SP_DESC_CNT - MAX_SPQ_PENDING, NUM_EQ_DESC) - 1);
a2fbb9ea
ET
5503}
5504
619c5cb6
VZ
5505
5506/* called with netif_addr_lock_bh() */
5507void bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
5508 unsigned long rx_mode_flags,
5509 unsigned long rx_accept_flags,
5510 unsigned long tx_accept_flags,
5511 unsigned long ramrod_flags)
ab532cf3 5512{
619c5cb6
VZ
5513 struct bnx2x_rx_mode_ramrod_params ramrod_param;
5514 int rc;
5515
5516 memset(&ramrod_param, 0, sizeof(ramrod_param));
5517
5518 /* Prepare ramrod parameters */
5519 ramrod_param.cid = 0;
5520 ramrod_param.cl_id = cl_id;
5521 ramrod_param.rx_mode_obj = &bp->rx_mode_obj;
5522 ramrod_param.func_id = BP_FUNC(bp);
ab532cf3 5523
619c5cb6
VZ
5524 ramrod_param.pstate = &bp->sp_state;
5525 ramrod_param.state = BNX2X_FILTER_RX_MODE_PENDING;
ab532cf3 5526
619c5cb6
VZ
5527 ramrod_param.rdata = bnx2x_sp(bp, rx_mode_rdata);
5528 ramrod_param.rdata_mapping = bnx2x_sp_mapping(bp, rx_mode_rdata);
5529
5530 set_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
5531
5532 ramrod_param.ramrod_flags = ramrod_flags;
5533 ramrod_param.rx_mode_flags = rx_mode_flags;
5534
5535 ramrod_param.rx_accept_flags = rx_accept_flags;
5536 ramrod_param.tx_accept_flags = tx_accept_flags;
5537
5538 rc = bnx2x_config_rx_mode(bp, &ramrod_param);
5539 if (rc < 0) {
5540 BNX2X_ERR("Set rx_mode %d failed\n", bp->rx_mode);
5541 return;
5542 }
a2fbb9ea
ET
5543}
5544
619c5cb6
VZ
5545/* called with netif_addr_lock_bh() */
5546void bnx2x_set_storm_rx_mode(struct bnx2x *bp)
471de716 5547{
619c5cb6
VZ
5548 unsigned long rx_mode_flags = 0, ramrod_flags = 0;
5549 unsigned long rx_accept_flags = 0, tx_accept_flags = 0;
471de716 5550
619c5cb6
VZ
5551 if (!NO_FCOE(bp))
5552
5553 /* Configure rx_mode of FCoE Queue */
5554 __set_bit(BNX2X_RX_MODE_FCOE_ETH, &rx_mode_flags);
619c5cb6
VZ
5555
5556 switch (bp->rx_mode) {
5557 case BNX2X_RX_MODE_NONE:
5558 /*
5559 * 'drop all' supersedes any accept flags that may have been
5560 * passed to the function.
5561 */
5562 break;
5563 case BNX2X_RX_MODE_NORMAL:
5564 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5565 __set_bit(BNX2X_ACCEPT_MULTICAST, &rx_accept_flags);
5566 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5567
5568 /* internal switching mode */
5569 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5570 __set_bit(BNX2X_ACCEPT_MULTICAST, &tx_accept_flags);
5571 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5572
5573 break;
5574 case BNX2X_RX_MODE_ALLMULTI:
5575 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5576 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &rx_accept_flags);
5577 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5578
5579 /* internal switching mode */
5580 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5581 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &tx_accept_flags);
5582 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5583
5584 break;
5585 case BNX2X_RX_MODE_PROMISC:
5586 /* According to deffinition of SI mode, iface in promisc mode
5587 * should receive matched and unmatched (in resolution of port)
5588 * unicast packets.
5589 */
5590 __set_bit(BNX2X_ACCEPT_UNMATCHED, &rx_accept_flags);
5591 __set_bit(BNX2X_ACCEPT_UNICAST, &rx_accept_flags);
5592 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &rx_accept_flags);
5593 __set_bit(BNX2X_ACCEPT_BROADCAST, &rx_accept_flags);
5594
5595 /* internal switching mode */
5596 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &tx_accept_flags);
5597 __set_bit(BNX2X_ACCEPT_BROADCAST, &tx_accept_flags);
5598
5599 if (IS_MF_SI(bp))
5600 __set_bit(BNX2X_ACCEPT_ALL_UNICAST, &tx_accept_flags);
5601 else
5602 __set_bit(BNX2X_ACCEPT_UNICAST, &tx_accept_flags);
5603
5604 break;
5605 default:
5606 BNX2X_ERR("Unknown rx_mode: %d\n", bp->rx_mode);
5607 return;
5608 }
de832a55 5609
619c5cb6
VZ
5610 if (bp->rx_mode != BNX2X_RX_MODE_NONE) {
5611 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &rx_accept_flags);
5612 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &tx_accept_flags);
34f80b04
EG
5613 }
5614
619c5cb6
VZ
5615 __set_bit(RAMROD_RX, &ramrod_flags);
5616 __set_bit(RAMROD_TX, &ramrod_flags);
5617
5618 bnx2x_set_q_rx_mode(bp, bp->fp->cl_id, rx_mode_flags, rx_accept_flags,
5619 tx_accept_flags, ramrod_flags);
5620}
5621
5622static void bnx2x_init_internal_common(struct bnx2x *bp)
5623{
5624 int i;
5625
0793f83f
DK
5626 if (IS_MF_SI(bp))
5627 /*
5628 * In switch independent mode, the TSTORM needs to accept
5629 * packets that failed classification, since approximate match
5630 * mac addresses aren't written to NIG LLH
5631 */
5632 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5633 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 2);
619c5cb6
VZ
5634 else if (!CHIP_IS_E1(bp)) /* 57710 doesn't support MF */
5635 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5636 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 0);
0793f83f 5637
523224a3
DK
5638 /* Zero this manually as its initialization is
5639 currently missing in the initTool */
5640 for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++)
ca00392c 5641 REG_WR(bp, BAR_USTRORM_INTMEM +
523224a3 5642 USTORM_AGG_DATA_OFFSET + i * 4, 0);
619c5cb6 5643 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5644 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_IGU_MODE_OFFSET,
5645 CHIP_INT_MODE_IS_BC(bp) ?
5646 HC_IGU_BC_MODE : HC_IGU_NBC_MODE);
5647 }
523224a3 5648}
8a1c38d1 5649
471de716
EG
5650static void bnx2x_init_internal(struct bnx2x *bp, u32 load_code)
5651{
5652 switch (load_code) {
5653 case FW_MSG_CODE_DRV_LOAD_COMMON:
f2e0899f 5654 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP:
471de716
EG
5655 bnx2x_init_internal_common(bp);
5656 /* no break */
5657
5658 case FW_MSG_CODE_DRV_LOAD_PORT:
619c5cb6 5659 /* nothing to do */
471de716
EG
5660 /* no break */
5661
5662 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
523224a3
DK
5663 /* internal memory per function is
5664 initialized inside bnx2x_pf_init */
471de716
EG
5665 break;
5666
5667 default:
5668 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code);
5669 break;
5670 }
5671}
5672
619c5cb6 5673static inline u8 bnx2x_fp_igu_sb_id(struct bnx2x_fastpath *fp)
523224a3 5674{
55c11941 5675 return fp->bp->igu_base_sb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6 5676}
523224a3 5677
619c5cb6
VZ
5678static inline u8 bnx2x_fp_fw_sb_id(struct bnx2x_fastpath *fp)
5679{
55c11941 5680 return fp->bp->base_fw_ndsb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6
VZ
5681}
5682
1191cb83 5683static u8 bnx2x_fp_cl_id(struct bnx2x_fastpath *fp)
619c5cb6
VZ
5684{
5685 if (CHIP_IS_E1x(fp->bp))
5686 return BP_L_ID(fp->bp) + fp->index;
5687 else /* We want Client ID to be the same as IGU SB ID for 57712 */
5688 return bnx2x_fp_igu_sb_id(fp);
5689}
5690
6383c0b3 5691static void bnx2x_init_eth_fp(struct bnx2x *bp, int fp_idx)
619c5cb6
VZ
5692{
5693 struct bnx2x_fastpath *fp = &bp->fp[fp_idx];
6383c0b3 5694 u8 cos;
619c5cb6 5695 unsigned long q_type = 0;
6383c0b3 5696 u32 cids[BNX2X_MULTI_TX_COS] = { 0 };
f233cafe 5697 fp->rx_queue = fp_idx;
b3b83c3f 5698 fp->cid = fp_idx;
619c5cb6
VZ
5699 fp->cl_id = bnx2x_fp_cl_id(fp);
5700 fp->fw_sb_id = bnx2x_fp_fw_sb_id(fp);
5701 fp->igu_sb_id = bnx2x_fp_igu_sb_id(fp);
523224a3 5702 /* qZone id equals to FW (per path) client id */
619c5cb6
VZ
5703 fp->cl_qzone_id = bnx2x_fp_qzone_id(fp);
5704
523224a3 5705 /* init shortcut */
619c5cb6 5706 fp->ustorm_rx_prods_offset = bnx2x_rx_ustorm_prods_offset(fp);
7a752993 5707
523224a3
DK
5708 /* Setup SB indicies */
5709 fp->rx_cons_sb = BNX2X_RX_SB_INDEX;
523224a3 5710
619c5cb6
VZ
5711 /* Configure Queue State object */
5712 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
5713 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
6383c0b3
AE
5714
5715 BUG_ON(fp->max_cos > BNX2X_MULTI_TX_COS);
5716
5717 /* init tx data */
5718 for_each_cos_in_tx_queue(fp, cos) {
65565884
MS
5719 bnx2x_init_txdata(bp, fp->txdata_ptr[cos],
5720 CID_COS_TO_TX_ONLY_CID(fp->cid, cos, bp),
5721 FP_COS_TO_TXQ(fp, cos, bp),
5722 BNX2X_TX_SB_INDEX_BASE + cos, fp);
5723 cids[cos] = fp->txdata_ptr[cos]->cid;
6383c0b3
AE
5724 }
5725
ad5afc89
AE
5726 /* nothing more for vf to do here */
5727 if (IS_VF(bp))
5728 return;
5729
5730 bnx2x_init_sb(bp, fp->status_blk_mapping, BNX2X_VF_ID_INVALID, false,
5731 fp->fw_sb_id, fp->igu_sb_id);
5732 bnx2x_update_fpsb_idx(fp);
15192a8c
BW
5733 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id, cids,
5734 fp->max_cos, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
6383c0b3 5735 bnx2x_sp_mapping(bp, q_rdata), q_type);
619c5cb6
VZ
5736
5737 /**
5738 * Configure classification DBs: Always enable Tx switching
5739 */
5740 bnx2x_init_vlan_mac_fp_objs(fp, BNX2X_OBJ_TYPE_RX_TX);
5741
ad5afc89
AE
5742 DP(NETIF_MSG_IFUP,
5743 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
5744 fp_idx, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
5745 fp->igu_sb_id);
523224a3
DK
5746}
5747
1191cb83
ED
5748static void bnx2x_init_tx_ring_one(struct bnx2x_fp_txdata *txdata)
5749{
5750 int i;
5751
5752 for (i = 1; i <= NUM_TX_RINGS; i++) {
5753 struct eth_tx_next_bd *tx_next_bd =
5754 &txdata->tx_desc_ring[TX_DESC_CNT * i - 1].next_bd;
5755
5756 tx_next_bd->addr_hi =
5757 cpu_to_le32(U64_HI(txdata->tx_desc_mapping +
5758 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5759 tx_next_bd->addr_lo =
5760 cpu_to_le32(U64_LO(txdata->tx_desc_mapping +
5761 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5762 }
5763
5764 SET_FLAG(txdata->tx_db.data.header.header, DOORBELL_HDR_DB_TYPE, 1);
5765 txdata->tx_db.data.zero_fill1 = 0;
5766 txdata->tx_db.data.prod = 0;
5767
5768 txdata->tx_pkt_prod = 0;
5769 txdata->tx_pkt_cons = 0;
5770 txdata->tx_bd_prod = 0;
5771 txdata->tx_bd_cons = 0;
5772 txdata->tx_pkt = 0;
5773}
5774
55c11941
MS
5775static void bnx2x_init_tx_rings_cnic(struct bnx2x *bp)
5776{
5777 int i;
5778
5779 for_each_tx_queue_cnic(bp, i)
5780 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[0]);
5781}
1191cb83
ED
5782static void bnx2x_init_tx_rings(struct bnx2x *bp)
5783{
5784 int i;
5785 u8 cos;
5786
55c11941 5787 for_each_eth_queue(bp, i)
1191cb83 5788 for_each_cos_in_tx_queue(&bp->fp[i], cos)
65565884 5789 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[cos]);
1191cb83
ED
5790}
5791
55c11941 5792void bnx2x_nic_init_cnic(struct bnx2x *bp)
a2fbb9ea 5793{
ec6ba945
VZ
5794 if (!NO_FCOE(bp))
5795 bnx2x_init_fcoe_fp(bp);
523224a3
DK
5796
5797 bnx2x_init_sb(bp, bp->cnic_sb_mapping,
5798 BNX2X_VF_ID_INVALID, false,
619c5cb6 5799 bnx2x_cnic_fw_sb_id(bp), bnx2x_cnic_igu_sb_id(bp));
523224a3 5800
55c11941
MS
5801 /* ensure status block indices were read */
5802 rmb();
5803 bnx2x_init_rx_rings_cnic(bp);
5804 bnx2x_init_tx_rings_cnic(bp);
5805
5806 /* flush all */
5807 mb();
5808 mmiowb();
5809}
a2fbb9ea 5810
55c11941
MS
5811void bnx2x_nic_init(struct bnx2x *bp, u32 load_code)
5812{
5813 int i;
5814
5815 for_each_eth_queue(bp, i)
5816 bnx2x_init_eth_fp(bp, i);
ad5afc89
AE
5817
5818 /* ensure status block indices were read */
5819 rmb();
5820 bnx2x_init_rx_rings(bp);
5821 bnx2x_init_tx_rings(bp);
5822
5823 if (IS_VF(bp))
5824 return;
5825
020c7e3f
YR
5826 /* Initialize MOD_ABS interrupts */
5827 bnx2x_init_mod_abs_int(bp, &bp->link_vars, bp->common.chip_id,
5828 bp->common.shmem_base, bp->common.shmem2_base,
5829 BP_PORT(bp));
16119785 5830
523224a3 5831 bnx2x_init_def_sb(bp);
5c862848 5832 bnx2x_update_dsb_idx(bp);
a2fbb9ea 5833 bnx2x_init_sp_ring(bp);
523224a3 5834 bnx2x_init_eq_ring(bp);
471de716 5835 bnx2x_init_internal(bp, load_code);
523224a3 5836 bnx2x_pf_init(bp);
0ef00459
EG
5837 bnx2x_stats_init(bp);
5838
0ef00459
EG
5839 /* flush all before enabling interrupts */
5840 mb();
5841 mmiowb();
5842
615f8fd9 5843 bnx2x_int_enable(bp);
eb8da205
EG
5844
5845 /* Check for SPIO5 */
5846 bnx2x_attn_int_deasserted0(bp,
5847 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + BP_PORT(bp)*4) &
5848 AEU_INPUTS_ATTN_BITS_SPIO5);
a2fbb9ea
ET
5849}
5850
5851/* end of nic init */
5852
5853/*
5854 * gzip service functions
5855 */
5856
5857static int bnx2x_gunzip_init(struct bnx2x *bp)
5858{
1a983142
FT
5859 bp->gunzip_buf = dma_alloc_coherent(&bp->pdev->dev, FW_BUF_SIZE,
5860 &bp->gunzip_mapping, GFP_KERNEL);
a2fbb9ea
ET
5861 if (bp->gunzip_buf == NULL)
5862 goto gunzip_nomem1;
5863
5864 bp->strm = kmalloc(sizeof(*bp->strm), GFP_KERNEL);
5865 if (bp->strm == NULL)
5866 goto gunzip_nomem2;
5867
7ab24bfd 5868 bp->strm->workspace = vmalloc(zlib_inflate_workspacesize());
a2fbb9ea
ET
5869 if (bp->strm->workspace == NULL)
5870 goto gunzip_nomem3;
5871
5872 return 0;
5873
5874gunzip_nomem3:
5875 kfree(bp->strm);
5876 bp->strm = NULL;
5877
5878gunzip_nomem2:
1a983142
FT
5879 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
5880 bp->gunzip_mapping);
a2fbb9ea
ET
5881 bp->gunzip_buf = NULL;
5882
5883gunzip_nomem1:
51c1a580 5884 BNX2X_ERR("Cannot allocate firmware buffer for un-compression\n");
a2fbb9ea
ET
5885 return -ENOMEM;
5886}
5887
5888static void bnx2x_gunzip_end(struct bnx2x *bp)
5889{
b3b83c3f 5890 if (bp->strm) {
7ab24bfd 5891 vfree(bp->strm->workspace);
b3b83c3f
DK
5892 kfree(bp->strm);
5893 bp->strm = NULL;
5894 }
a2fbb9ea
ET
5895
5896 if (bp->gunzip_buf) {
1a983142
FT
5897 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
5898 bp->gunzip_mapping);
a2fbb9ea
ET
5899 bp->gunzip_buf = NULL;
5900 }
5901}
5902
94a78b79 5903static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len)
a2fbb9ea
ET
5904{
5905 int n, rc;
5906
5907 /* check gzip header */
94a78b79
VZ
5908 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) {
5909 BNX2X_ERR("Bad gzip header\n");
a2fbb9ea 5910 return -EINVAL;
94a78b79 5911 }
a2fbb9ea
ET
5912
5913 n = 10;
5914
34f80b04 5915#define FNAME 0x8
a2fbb9ea
ET
5916
5917 if (zbuf[3] & FNAME)
5918 while ((zbuf[n++] != 0) && (n < len));
5919
94a78b79 5920 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n;
a2fbb9ea
ET
5921 bp->strm->avail_in = len - n;
5922 bp->strm->next_out = bp->gunzip_buf;
5923 bp->strm->avail_out = FW_BUF_SIZE;
5924
5925 rc = zlib_inflateInit2(bp->strm, -MAX_WBITS);
5926 if (rc != Z_OK)
5927 return rc;
5928
5929 rc = zlib_inflate(bp->strm, Z_FINISH);
5930 if ((rc != Z_OK) && (rc != Z_STREAM_END))
7995c64e
JP
5931 netdev_err(bp->dev, "Firmware decompression error: %s\n",
5932 bp->strm->msg);
a2fbb9ea
ET
5933
5934 bp->gunzip_outlen = (FW_BUF_SIZE - bp->strm->avail_out);
5935 if (bp->gunzip_outlen & 0x3)
51c1a580
MS
5936 netdev_err(bp->dev,
5937 "Firmware decompression error: gunzip_outlen (%d) not aligned\n",
cdaa7cb8 5938 bp->gunzip_outlen);
a2fbb9ea
ET
5939 bp->gunzip_outlen >>= 2;
5940
5941 zlib_inflateEnd(bp->strm);
5942
5943 if (rc == Z_STREAM_END)
5944 return 0;
5945
5946 return rc;
5947}
5948
5949/* nic load/unload */
5950
5951/*
34f80b04 5952 * General service functions
a2fbb9ea
ET
5953 */
5954
5955/* send a NIG loopback debug packet */
5956static void bnx2x_lb_pckt(struct bnx2x *bp)
5957{
a2fbb9ea 5958 u32 wb_write[3];
a2fbb9ea
ET
5959
5960 /* Ethernet source and destination addresses */
a2fbb9ea
ET
5961 wb_write[0] = 0x55555555;
5962 wb_write[1] = 0x55555555;
34f80b04 5963 wb_write[2] = 0x20; /* SOP */
a2fbb9ea 5964 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
5965
5966 /* NON-IP protocol */
a2fbb9ea
ET
5967 wb_write[0] = 0x09000000;
5968 wb_write[1] = 0x55555555;
34f80b04 5969 wb_write[2] = 0x10; /* EOP, eop_bvalid = 0 */
a2fbb9ea 5970 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
5971}
5972
5973/* some of the internal memories
5974 * are not directly readable from the driver
5975 * to test them we send debug packets
5976 */
5977static int bnx2x_int_mem_test(struct bnx2x *bp)
5978{
5979 int factor;
5980 int count, i;
5981 u32 val = 0;
5982
ad8d3948 5983 if (CHIP_REV_IS_FPGA(bp))
a2fbb9ea 5984 factor = 120;
ad8d3948
EG
5985 else if (CHIP_REV_IS_EMUL(bp))
5986 factor = 200;
5987 else
a2fbb9ea 5988 factor = 1;
a2fbb9ea 5989
a2fbb9ea
ET
5990 /* Disable inputs of parser neighbor blocks */
5991 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
5992 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
5993 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 5994 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
5995
5996 /* Write 0 to parser credits for CFC search request */
5997 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
5998
5999 /* send Ethernet packet */
6000 bnx2x_lb_pckt(bp);
6001
6002 /* TODO do i reset NIG statistic? */
6003 /* Wait until NIG register shows 1 packet of size 0x10 */
6004 count = 1000 * factor;
6005 while (count) {
34f80b04 6006
a2fbb9ea
ET
6007 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6008 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6009 if (val == 0x10)
6010 break;
6011
6012 msleep(10);
6013 count--;
6014 }
6015 if (val != 0x10) {
6016 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6017 return -1;
6018 }
6019
6020 /* Wait until PRS register shows 1 packet */
6021 count = 1000 * factor;
6022 while (count) {
6023 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
a2fbb9ea
ET
6024 if (val == 1)
6025 break;
6026
6027 msleep(10);
6028 count--;
6029 }
6030 if (val != 0x1) {
6031 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6032 return -2;
6033 }
6034
6035 /* Reset and init BRB, PRS */
34f80b04 6036 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
a2fbb9ea 6037 msleep(50);
34f80b04 6038 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
a2fbb9ea 6039 msleep(50);
619c5cb6
VZ
6040 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6041 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
a2fbb9ea
ET
6042
6043 DP(NETIF_MSG_HW, "part2\n");
6044
6045 /* Disable inputs of parser neighbor blocks */
6046 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6047 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6048 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6049 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6050
6051 /* Write 0 to parser credits for CFC search request */
6052 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6053
6054 /* send 10 Ethernet packets */
6055 for (i = 0; i < 10; i++)
6056 bnx2x_lb_pckt(bp);
6057
6058 /* Wait until NIG register shows 10 + 1
6059 packets of size 11*0x10 = 0xb0 */
6060 count = 1000 * factor;
6061 while (count) {
34f80b04 6062
a2fbb9ea
ET
6063 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6064 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6065 if (val == 0xb0)
6066 break;
6067
6068 msleep(10);
6069 count--;
6070 }
6071 if (val != 0xb0) {
6072 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6073 return -3;
6074 }
6075
6076 /* Wait until PRS register shows 2 packets */
6077 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6078 if (val != 2)
6079 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6080
6081 /* Write 1 to parser credits for CFC search request */
6082 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x1);
6083
6084 /* Wait until PRS register shows 3 packets */
6085 msleep(10 * factor);
6086 /* Wait until NIG register shows 1 packet of size 0x10 */
6087 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6088 if (val != 3)
6089 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6090
6091 /* clear NIG EOP FIFO */
6092 for (i = 0; i < 11; i++)
6093 REG_RD(bp, NIG_REG_INGRESS_EOP_LB_FIFO);
6094 val = REG_RD(bp, NIG_REG_INGRESS_EOP_LB_EMPTY);
6095 if (val != 1) {
6096 BNX2X_ERR("clear of NIG failed\n");
6097 return -4;
6098 }
6099
6100 /* Reset and init BRB, PRS, NIG */
6101 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
6102 msleep(50);
6103 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
6104 msleep(50);
619c5cb6
VZ
6105 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6106 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
55c11941
MS
6107 if (!CNIC_SUPPORT(bp))
6108 /* set NIC mode */
6109 REG_WR(bp, PRS_REG_NIC_MODE, 1);
a2fbb9ea
ET
6110
6111 /* Enable inputs of parser neighbor blocks */
6112 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x7fffffff);
6113 REG_WR(bp, TCM_REG_PRS_IFEN, 0x1);
6114 REG_WR(bp, CFC_REG_DEBUG0, 0x0);
3196a88a 6115 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x1);
a2fbb9ea
ET
6116
6117 DP(NETIF_MSG_HW, "done\n");
6118
6119 return 0; /* OK */
6120}
6121
4a33bc03 6122static void bnx2x_enable_blocks_attention(struct bnx2x *bp)
a2fbb9ea 6123{
b343d002
YM
6124 u32 val;
6125
a2fbb9ea 6126 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
619c5cb6 6127 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6128 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0x40);
6129 else
6130 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0);
a2fbb9ea
ET
6131 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
6132 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
f2e0899f
DK
6133 /*
6134 * mask read length error interrupts in brb for parser
6135 * (parsing unit and 'checksum and crc' unit)
6136 * these errors are legal (PU reads fixed length and CAC can cause
6137 * read length error on truncated packets)
6138 */
6139 REG_WR(bp, BRB1_REG_BRB1_INT_MASK, 0xFC00);
a2fbb9ea
ET
6140 REG_WR(bp, QM_REG_QM_INT_MASK, 0);
6141 REG_WR(bp, TM_REG_TM_INT_MASK, 0);
6142 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_0, 0);
6143 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_1, 0);
6144 REG_WR(bp, XCM_REG_XCM_INT_MASK, 0);
34f80b04
EG
6145/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_0, 0); */
6146/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6147 REG_WR(bp, USDM_REG_USDM_INT_MASK_0, 0);
6148 REG_WR(bp, USDM_REG_USDM_INT_MASK_1, 0);
6149 REG_WR(bp, UCM_REG_UCM_INT_MASK, 0);
34f80b04
EG
6150/* REG_WR(bp, USEM_REG_USEM_INT_MASK_0, 0); */
6151/* REG_WR(bp, USEM_REG_USEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6152 REG_WR(bp, GRCBASE_UPB + PB_REG_PB_INT_MASK, 0);
6153 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_0, 0);
6154 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_1, 0);
6155 REG_WR(bp, CCM_REG_CCM_INT_MASK, 0);
34f80b04
EG
6156/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_0, 0); */
6157/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_1, 0); */
f85582f8 6158
b343d002
YM
6159 val = PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT |
6160 PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF |
6161 PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN;
6162 if (!CHIP_IS_E1x(bp))
6163 val |= PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED |
6164 PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED;
6165 REG_WR(bp, PXP2_REG_PXP2_INT_MASK_0, val);
6166
a2fbb9ea
ET
6167 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_0, 0);
6168 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_1, 0);
6169 REG_WR(bp, TCM_REG_TCM_INT_MASK, 0);
34f80b04 6170/* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_0, 0); */
619c5cb6
VZ
6171
6172 if (!CHIP_IS_E1x(bp))
6173 /* enable VFC attentions: bits 11 and 12, bits 31:13 reserved */
6174 REG_WR(bp, TSEM_REG_TSEM_INT_MASK_1, 0x07ff);
6175
a2fbb9ea
ET
6176 REG_WR(bp, CDU_REG_CDU_INT_MASK, 0);
6177 REG_WR(bp, DMAE_REG_DMAE_INT_MASK, 0);
34f80b04 6178/* REG_WR(bp, MISC_REG_MISC_INT_MASK, 0); */
4a33bc03 6179 REG_WR(bp, PBF_REG_PBF_INT_MASK, 0x18); /* bit 3,4 masked */
a2fbb9ea
ET
6180}
6181
81f75bbf
EG
6182static void bnx2x_reset_common(struct bnx2x *bp)
6183{
619c5cb6
VZ
6184 u32 val = 0x1400;
6185
81f75bbf
EG
6186 /* reset_common */
6187 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6188 0xd3ffff7f);
619c5cb6
VZ
6189
6190 if (CHIP_IS_E3(bp)) {
6191 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6192 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6193 }
6194
6195 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR, val);
6196}
6197
6198static void bnx2x_setup_dmae(struct bnx2x *bp)
6199{
6200 bp->dmae_ready = 0;
6201 spin_lock_init(&bp->dmae_lock);
81f75bbf
EG
6202}
6203
573f2035
EG
6204static void bnx2x_init_pxp(struct bnx2x *bp)
6205{
6206 u16 devctl;
6207 int r_order, w_order;
6208
2a80eebc 6209 pcie_capability_read_word(bp->pdev, PCI_EXP_DEVCTL, &devctl);
573f2035
EG
6210 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl);
6211 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
6212 if (bp->mrrs == -1)
6213 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12);
6214 else {
6215 DP(NETIF_MSG_HW, "force read order to %d\n", bp->mrrs);
6216 r_order = bp->mrrs;
6217 }
6218
6219 bnx2x_init_pxp_arb(bp, r_order, w_order);
6220}
fd4ef40d
EG
6221
6222static void bnx2x_setup_fan_failure_detection(struct bnx2x *bp)
6223{
2145a920 6224 int is_required;
fd4ef40d 6225 u32 val;
2145a920 6226 int port;
fd4ef40d 6227
2145a920
VZ
6228 if (BP_NOMCP(bp))
6229 return;
6230
6231 is_required = 0;
fd4ef40d
EG
6232 val = SHMEM_RD(bp, dev_info.shared_hw_config.config2) &
6233 SHARED_HW_CFG_FAN_FAILURE_MASK;
6234
6235 if (val == SHARED_HW_CFG_FAN_FAILURE_ENABLED)
6236 is_required = 1;
6237
6238 /*
6239 * The fan failure mechanism is usually related to the PHY type since
6240 * the power consumption of the board is affected by the PHY. Currently,
6241 * fan is required for most designs with SFX7101, BCM8727 and BCM8481.
6242 */
6243 else if (val == SHARED_HW_CFG_FAN_FAILURE_PHY_TYPE)
6244 for (port = PORT_0; port < PORT_MAX; port++) {
fd4ef40d 6245 is_required |=
d90d96ba
YR
6246 bnx2x_fan_failure_det_req(
6247 bp,
6248 bp->common.shmem_base,
a22f0788 6249 bp->common.shmem2_base,
d90d96ba 6250 port);
fd4ef40d
EG
6251 }
6252
6253 DP(NETIF_MSG_HW, "fan detection setting: %d\n", is_required);
6254
6255 if (is_required == 0)
6256 return;
6257
6258 /* Fan failure is indicated by SPIO 5 */
d6d99a3f 6259 bnx2x_set_spio(bp, MISC_SPIO_SPIO5, MISC_SPIO_INPUT_HI_Z);
fd4ef40d
EG
6260
6261 /* set to active low mode */
6262 val = REG_RD(bp, MISC_REG_SPIO_INT);
d6d99a3f 6263 val |= (MISC_SPIO_SPIO5 << MISC_SPIO_INT_OLD_SET_POS);
fd4ef40d
EG
6264 REG_WR(bp, MISC_REG_SPIO_INT, val);
6265
6266 /* enable interrupt to signal the IGU */
6267 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 6268 val |= MISC_SPIO_SPIO5;
fd4ef40d
EG
6269 REG_WR(bp, MISC_REG_SPIO_EVENT_EN, val);
6270}
6271
f2e0899f
DK
6272static void bnx2x_pretend_func(struct bnx2x *bp, u8 pretend_func_num)
6273{
6274 u32 offset = 0;
6275
6276 if (CHIP_IS_E1(bp))
6277 return;
6278 if (CHIP_IS_E1H(bp) && (pretend_func_num >= E1H_FUNC_MAX))
6279 return;
6280
6281 switch (BP_ABS_FUNC(bp)) {
6282 case 0:
6283 offset = PXP2_REG_PGL_PRETEND_FUNC_F0;
6284 break;
6285 case 1:
6286 offset = PXP2_REG_PGL_PRETEND_FUNC_F1;
6287 break;
6288 case 2:
6289 offset = PXP2_REG_PGL_PRETEND_FUNC_F2;
6290 break;
6291 case 3:
6292 offset = PXP2_REG_PGL_PRETEND_FUNC_F3;
6293 break;
6294 case 4:
6295 offset = PXP2_REG_PGL_PRETEND_FUNC_F4;
6296 break;
6297 case 5:
6298 offset = PXP2_REG_PGL_PRETEND_FUNC_F5;
6299 break;
6300 case 6:
6301 offset = PXP2_REG_PGL_PRETEND_FUNC_F6;
6302 break;
6303 case 7:
6304 offset = PXP2_REG_PGL_PRETEND_FUNC_F7;
6305 break;
6306 default:
6307 return;
6308 }
6309
6310 REG_WR(bp, offset, pretend_func_num);
6311 REG_RD(bp, offset);
6312 DP(NETIF_MSG_HW, "Pretending to func %d\n", pretend_func_num);
6313}
6314
c9ee9206 6315void bnx2x_pf_disable(struct bnx2x *bp)
f2e0899f
DK
6316{
6317 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
6318 val &= ~IGU_PF_CONF_FUNC_EN;
6319
6320 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
6321 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6322 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 0);
6323}
6324
1191cb83 6325static void bnx2x__common_init_phy(struct bnx2x *bp)
619c5cb6
VZ
6326{
6327 u32 shmem_base[2], shmem2_base[2];
b884d95b
YR
6328 /* Avoid common init in case MFW supports LFA */
6329 if (SHMEM2_RD(bp, size) >
6330 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
6331 return;
619c5cb6
VZ
6332 shmem_base[0] = bp->common.shmem_base;
6333 shmem2_base[0] = bp->common.shmem2_base;
6334 if (!CHIP_IS_E1x(bp)) {
6335 shmem_base[1] =
6336 SHMEM2_RD(bp, other_shmem_base_addr);
6337 shmem2_base[1] =
6338 SHMEM2_RD(bp, other_shmem2_base_addr);
6339 }
6340 bnx2x_acquire_phy_lock(bp);
6341 bnx2x_common_init_phy(bp, shmem_base, shmem2_base,
6342 bp->common.chip_id);
6343 bnx2x_release_phy_lock(bp);
6344}
6345
6346/**
6347 * bnx2x_init_hw_common - initialize the HW at the COMMON phase.
6348 *
6349 * @bp: driver handle
6350 */
6351static int bnx2x_init_hw_common(struct bnx2x *bp)
a2fbb9ea 6352{
619c5cb6 6353 u32 val;
a2fbb9ea 6354
51c1a580 6355 DP(NETIF_MSG_HW, "starting common init func %d\n", BP_ABS_FUNC(bp));
a2fbb9ea 6356
2031bd3a
DK
6357 /*
6358 * take the UNDI lock to protect undi_unload flow from accessing
6359 * registers while we're resetting the chip
6360 */
7a06a122 6361 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6362
81f75bbf 6363 bnx2x_reset_common(bp);
34f80b04 6364 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0xffffffff);
a2fbb9ea 6365
619c5cb6
VZ
6366 val = 0xfffc;
6367 if (CHIP_IS_E3(bp)) {
6368 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6369 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6370 }
6371 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET, val);
6372
7a06a122 6373 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6374
619c5cb6 6375 bnx2x_init_block(bp, BLOCK_MISC, PHASE_COMMON);
a2fbb9ea 6376
619c5cb6
VZ
6377 if (!CHIP_IS_E1x(bp)) {
6378 u8 abs_func_id;
f2e0899f
DK
6379
6380 /**
6381 * 4-port mode or 2-port mode we need to turn of master-enable
6382 * for everyone, after that, turn it back on for self.
6383 * so, we disregard multi-function or not, and always disable
6384 * for all functions on the given path, this means 0,2,4,6 for
6385 * path 0 and 1,3,5,7 for path 1
6386 */
619c5cb6
VZ
6387 for (abs_func_id = BP_PATH(bp);
6388 abs_func_id < E2_FUNC_MAX*2; abs_func_id += 2) {
6389 if (abs_func_id == BP_ABS_FUNC(bp)) {
f2e0899f
DK
6390 REG_WR(bp,
6391 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER,
6392 1);
6393 continue;
6394 }
6395
619c5cb6 6396 bnx2x_pretend_func(bp, abs_func_id);
f2e0899f
DK
6397 /* clear pf enable */
6398 bnx2x_pf_disable(bp);
6399 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6400 }
6401 }
a2fbb9ea 6402
619c5cb6 6403 bnx2x_init_block(bp, BLOCK_PXP, PHASE_COMMON);
34f80b04
EG
6404 if (CHIP_IS_E1(bp)) {
6405 /* enable HW interrupt from PXP on USDM overflow
6406 bit 16 on INT_MASK_0 */
6407 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
6408 }
a2fbb9ea 6409
619c5cb6 6410 bnx2x_init_block(bp, BLOCK_PXP2, PHASE_COMMON);
34f80b04 6411 bnx2x_init_pxp(bp);
a2fbb9ea
ET
6412
6413#ifdef __BIG_ENDIAN
34f80b04
EG
6414 REG_WR(bp, PXP2_REG_RQ_QM_ENDIAN_M, 1);
6415 REG_WR(bp, PXP2_REG_RQ_TM_ENDIAN_M, 1);
6416 REG_WR(bp, PXP2_REG_RQ_SRC_ENDIAN_M, 1);
6417 REG_WR(bp, PXP2_REG_RQ_CDU_ENDIAN_M, 1);
6418 REG_WR(bp, PXP2_REG_RQ_DBG_ENDIAN_M, 1);
8badd27a
EG
6419 /* make sure this value is 0 */
6420 REG_WR(bp, PXP2_REG_RQ_HC_ENDIAN_M, 0);
34f80b04
EG
6421
6422/* REG_WR(bp, PXP2_REG_RD_PBF_SWAP_MODE, 1); */
6423 REG_WR(bp, PXP2_REG_RD_QM_SWAP_MODE, 1);
6424 REG_WR(bp, PXP2_REG_RD_TM_SWAP_MODE, 1);
6425 REG_WR(bp, PXP2_REG_RD_SRC_SWAP_MODE, 1);
6426 REG_WR(bp, PXP2_REG_RD_CDURD_SWAP_MODE, 1);
a2fbb9ea
ET
6427#endif
6428
523224a3
DK
6429 bnx2x_ilt_init_page_size(bp, INITOP_SET);
6430
34f80b04
EG
6431 if (CHIP_REV_IS_FPGA(bp) && CHIP_IS_E1H(bp))
6432 REG_WR(bp, PXP2_REG_PGL_TAGS_LIMIT, 0x1);
a2fbb9ea 6433
34f80b04
EG
6434 /* let the HW do it's magic ... */
6435 msleep(100);
6436 /* finish PXP init */
6437 val = REG_RD(bp, PXP2_REG_RQ_CFG_DONE);
6438 if (val != 1) {
6439 BNX2X_ERR("PXP2 CFG failed\n");
6440 return -EBUSY;
6441 }
6442 val = REG_RD(bp, PXP2_REG_RD_INIT_DONE);
6443 if (val != 1) {
6444 BNX2X_ERR("PXP2 RD_INIT failed\n");
6445 return -EBUSY;
6446 }
a2fbb9ea 6447
f2e0899f
DK
6448 /* Timers bug workaround E2 only. We need to set the entire ILT to
6449 * have entries with value "0" and valid bit on.
6450 * This needs to be done by the first PF that is loaded in a path
6451 * (i.e. common phase)
6452 */
619c5cb6
VZ
6453 if (!CHIP_IS_E1x(bp)) {
6454/* In E2 there is a bug in the timers block that can cause function 6 / 7
6455 * (i.e. vnic3) to start even if it is marked as "scan-off".
6456 * This occurs when a different function (func2,3) is being marked
6457 * as "scan-off". Real-life scenario for example: if a driver is being
6458 * load-unloaded while func6,7 are down. This will cause the timer to access
6459 * the ilt, translate to a logical address and send a request to read/write.
6460 * Since the ilt for the function that is down is not valid, this will cause
6461 * a translation error which is unrecoverable.
6462 * The Workaround is intended to make sure that when this happens nothing fatal
6463 * will occur. The workaround:
6464 * 1. First PF driver which loads on a path will:
6465 * a. After taking the chip out of reset, by using pretend,
6466 * it will write "0" to the following registers of
6467 * the other vnics.
6468 * REG_WR(pdev, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6469 * REG_WR(pdev, CFC_REG_WEAK_ENABLE_PF,0);
6470 * REG_WR(pdev, CFC_REG_STRONG_ENABLE_PF,0);
6471 * And for itself it will write '1' to
6472 * PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER to enable
6473 * dmae-operations (writing to pram for example.)
6474 * note: can be done for only function 6,7 but cleaner this
6475 * way.
6476 * b. Write zero+valid to the entire ILT.
6477 * c. Init the first_timers_ilt_entry, last_timers_ilt_entry of
6478 * VNIC3 (of that port). The range allocated will be the
6479 * entire ILT. This is needed to prevent ILT range error.
6480 * 2. Any PF driver load flow:
6481 * a. ILT update with the physical addresses of the allocated
6482 * logical pages.
6483 * b. Wait 20msec. - note that this timeout is needed to make
6484 * sure there are no requests in one of the PXP internal
6485 * queues with "old" ILT addresses.
6486 * c. PF enable in the PGLC.
6487 * d. Clear the was_error of the PF in the PGLC. (could have
6488 * occured while driver was down)
6489 * e. PF enable in the CFC (WEAK + STRONG)
6490 * f. Timers scan enable
6491 * 3. PF driver unload flow:
6492 * a. Clear the Timers scan_en.
6493 * b. Polling for scan_on=0 for that PF.
6494 * c. Clear the PF enable bit in the PXP.
6495 * d. Clear the PF enable in the CFC (WEAK + STRONG)
6496 * e. Write zero+valid to all ILT entries (The valid bit must
6497 * stay set)
6498 * f. If this is VNIC 3 of a port then also init
6499 * first_timers_ilt_entry to zero and last_timers_ilt_entry
6500 * to the last enrty in the ILT.
6501 *
6502 * Notes:
6503 * Currently the PF error in the PGLC is non recoverable.
6504 * In the future the there will be a recovery routine for this error.
6505 * Currently attention is masked.
6506 * Having an MCP lock on the load/unload process does not guarantee that
6507 * there is no Timer disable during Func6/7 enable. This is because the
6508 * Timers scan is currently being cleared by the MCP on FLR.
6509 * Step 2.d can be done only for PF6/7 and the driver can also check if
6510 * there is error before clearing it. But the flow above is simpler and
6511 * more general.
6512 * All ILT entries are written by zero+valid and not just PF6/7
6513 * ILT entries since in the future the ILT entries allocation for
6514 * PF-s might be dynamic.
6515 */
f2e0899f
DK
6516 struct ilt_client_info ilt_cli;
6517 struct bnx2x_ilt ilt;
6518 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
6519 memset(&ilt, 0, sizeof(struct bnx2x_ilt));
6520
b595076a 6521 /* initialize dummy TM client */
f2e0899f
DK
6522 ilt_cli.start = 0;
6523 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
6524 ilt_cli.client_num = ILT_CLIENT_TM;
6525
6526 /* Step 1: set zeroes to all ilt page entries with valid bit on
6527 * Step 2: set the timers first/last ilt entry to point
6528 * to the entire range to prevent ILT range error for 3rd/4th
619c5cb6 6529 * vnic (this code assumes existance of the vnic)
f2e0899f
DK
6530 *
6531 * both steps performed by call to bnx2x_ilt_client_init_op()
6532 * with dummy TM client
6533 *
6534 * we must use pretend since PXP2_REG_RQ_##blk##_FIRST_ILT
6535 * and his brother are split registers
6536 */
6537 bnx2x_pretend_func(bp, (BP_PATH(bp) + 6));
6538 bnx2x_ilt_client_init_op_ilt(bp, &ilt, &ilt_cli, INITOP_CLEAR);
6539 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6540
6541 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN, BNX2X_PXP_DRAM_ALIGN);
6542 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_RD, BNX2X_PXP_DRAM_ALIGN);
6543 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_SEL, 1);
6544 }
6545
6546
34f80b04
EG
6547 REG_WR(bp, PXP2_REG_RQ_DISABLE_INPUTS, 0);
6548 REG_WR(bp, PXP2_REG_RD_DISABLE_INPUTS, 0);
a2fbb9ea 6549
619c5cb6 6550 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6551 int factor = CHIP_REV_IS_EMUL(bp) ? 1000 :
6552 (CHIP_REV_IS_FPGA(bp) ? 400 : 0);
619c5cb6 6553 bnx2x_init_block(bp, BLOCK_PGLUE_B, PHASE_COMMON);
f2e0899f 6554
619c5cb6 6555 bnx2x_init_block(bp, BLOCK_ATC, PHASE_COMMON);
f2e0899f
DK
6556
6557 /* let the HW do it's magic ... */
6558 do {
6559 msleep(200);
6560 val = REG_RD(bp, ATC_REG_ATC_INIT_DONE);
6561 } while (factor-- && (val != 1));
6562
6563 if (val != 1) {
6564 BNX2X_ERR("ATC_INIT failed\n");
6565 return -EBUSY;
6566 }
6567 }
6568
619c5cb6 6569 bnx2x_init_block(bp, BLOCK_DMAE, PHASE_COMMON);
a2fbb9ea 6570
34f80b04
EG
6571 /* clean the DMAE memory */
6572 bp->dmae_ready = 1;
619c5cb6
VZ
6573 bnx2x_init_fill(bp, TSEM_REG_PRAM, 0, 8, 1);
6574
6575 bnx2x_init_block(bp, BLOCK_TCM, PHASE_COMMON);
6576
6577 bnx2x_init_block(bp, BLOCK_UCM, PHASE_COMMON);
6578
6579 bnx2x_init_block(bp, BLOCK_CCM, PHASE_COMMON);
a2fbb9ea 6580
619c5cb6 6581 bnx2x_init_block(bp, BLOCK_XCM, PHASE_COMMON);
a2fbb9ea 6582
34f80b04
EG
6583 bnx2x_read_dmae(bp, XSEM_REG_PASSIVE_BUFFER, 3);
6584 bnx2x_read_dmae(bp, CSEM_REG_PASSIVE_BUFFER, 3);
6585 bnx2x_read_dmae(bp, TSEM_REG_PASSIVE_BUFFER, 3);
6586 bnx2x_read_dmae(bp, USEM_REG_PASSIVE_BUFFER, 3);
6587
619c5cb6 6588 bnx2x_init_block(bp, BLOCK_QM, PHASE_COMMON);
37b091ba 6589
f85582f8 6590
523224a3
DK
6591 /* QM queues pointers table */
6592 bnx2x_qm_init_ptr_table(bp, bp->qm_cid_count, INITOP_SET);
6593
34f80b04
EG
6594 /* soft reset pulse */
6595 REG_WR(bp, QM_REG_SOFT_RESET, 1);
6596 REG_WR(bp, QM_REG_SOFT_RESET, 0);
a2fbb9ea 6597
55c11941
MS
6598 if (CNIC_SUPPORT(bp))
6599 bnx2x_init_block(bp, BLOCK_TM, PHASE_COMMON);
a2fbb9ea 6600
619c5cb6 6601 bnx2x_init_block(bp, BLOCK_DORQ, PHASE_COMMON);
523224a3 6602 REG_WR(bp, DORQ_REG_DPM_CID_OFST, BNX2X_DB_SHIFT);
619c5cb6 6603 if (!CHIP_REV_IS_SLOW(bp))
34f80b04
EG
6604 /* enable hw interrupt from doorbell Q */
6605 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
a2fbb9ea 6606
619c5cb6 6607 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
f2e0899f 6608
619c5cb6 6609 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
26c8fa4d 6610 REG_WR(bp, PRS_REG_A_PRSU_20, 0xf);
619c5cb6 6611
f2e0899f 6612 if (!CHIP_IS_E1(bp))
619c5cb6 6613 REG_WR(bp, PRS_REG_E1HOV_MODE, bp->path_has_ovlan);
f85582f8 6614
a3348722
BW
6615 if (!CHIP_IS_E1x(bp) && !CHIP_IS_E3B0(bp)) {
6616 if (IS_MF_AFEX(bp)) {
6617 /* configure that VNTag and VLAN headers must be
6618 * received in afex mode
6619 */
6620 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC, 0xE);
6621 REG_WR(bp, PRS_REG_MUST_HAVE_HDRS, 0xA);
6622 REG_WR(bp, PRS_REG_HDRS_AFTER_TAG_0, 0x6);
6623 REG_WR(bp, PRS_REG_TAG_ETHERTYPE_0, 0x8926);
6624 REG_WR(bp, PRS_REG_TAG_LEN_0, 0x4);
6625 } else {
6626 /* Bit-map indicating which L2 hdrs may appear
6627 * after the basic Ethernet header
6628 */
6629 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC,
6630 bp->path_has_ovlan ? 7 : 6);
6631 }
6632 }
a2fbb9ea 6633
619c5cb6
VZ
6634 bnx2x_init_block(bp, BLOCK_TSDM, PHASE_COMMON);
6635 bnx2x_init_block(bp, BLOCK_CSDM, PHASE_COMMON);
6636 bnx2x_init_block(bp, BLOCK_USDM, PHASE_COMMON);
6637 bnx2x_init_block(bp, BLOCK_XSDM, PHASE_COMMON);
a2fbb9ea 6638
619c5cb6
VZ
6639 if (!CHIP_IS_E1x(bp)) {
6640 /* reset VFC memories */
6641 REG_WR(bp, TSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6642 VFC_MEMORIES_RST_REG_CAM_RST |
6643 VFC_MEMORIES_RST_REG_RAM_RST);
6644 REG_WR(bp, XSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6645 VFC_MEMORIES_RST_REG_CAM_RST |
6646 VFC_MEMORIES_RST_REG_RAM_RST);
a2fbb9ea 6647
619c5cb6
VZ
6648 msleep(20);
6649 }
a2fbb9ea 6650
619c5cb6
VZ
6651 bnx2x_init_block(bp, BLOCK_TSEM, PHASE_COMMON);
6652 bnx2x_init_block(bp, BLOCK_USEM, PHASE_COMMON);
6653 bnx2x_init_block(bp, BLOCK_CSEM, PHASE_COMMON);
6654 bnx2x_init_block(bp, BLOCK_XSEM, PHASE_COMMON);
f2e0899f 6655
34f80b04
EG
6656 /* sync semi rtc */
6657 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6658 0x80000000);
6659 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET,
6660 0x80000000);
a2fbb9ea 6661
619c5cb6
VZ
6662 bnx2x_init_block(bp, BLOCK_UPB, PHASE_COMMON);
6663 bnx2x_init_block(bp, BLOCK_XPB, PHASE_COMMON);
6664 bnx2x_init_block(bp, BLOCK_PBF, PHASE_COMMON);
a2fbb9ea 6665
a3348722
BW
6666 if (!CHIP_IS_E1x(bp)) {
6667 if (IS_MF_AFEX(bp)) {
6668 /* configure that VNTag and VLAN headers must be
6669 * sent in afex mode
6670 */
6671 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC, 0xE);
6672 REG_WR(bp, PBF_REG_MUST_HAVE_HDRS, 0xA);
6673 REG_WR(bp, PBF_REG_HDRS_AFTER_TAG_0, 0x6);
6674 REG_WR(bp, PBF_REG_TAG_ETHERTYPE_0, 0x8926);
6675 REG_WR(bp, PBF_REG_TAG_LEN_0, 0x4);
6676 } else {
6677 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC,
6678 bp->path_has_ovlan ? 7 : 6);
6679 }
6680 }
f2e0899f 6681
34f80b04 6682 REG_WR(bp, SRC_REG_SOFT_RST, 1);
f85582f8 6683
619c5cb6
VZ
6684 bnx2x_init_block(bp, BLOCK_SRC, PHASE_COMMON);
6685
55c11941
MS
6686 if (CNIC_SUPPORT(bp)) {
6687 REG_WR(bp, SRC_REG_KEYSEARCH_0, 0x63285672);
6688 REG_WR(bp, SRC_REG_KEYSEARCH_1, 0x24b8f2cc);
6689 REG_WR(bp, SRC_REG_KEYSEARCH_2, 0x223aef9b);
6690 REG_WR(bp, SRC_REG_KEYSEARCH_3, 0x26001e3a);
6691 REG_WR(bp, SRC_REG_KEYSEARCH_4, 0x7ae91116);
6692 REG_WR(bp, SRC_REG_KEYSEARCH_5, 0x5ce5230b);
6693 REG_WR(bp, SRC_REG_KEYSEARCH_6, 0x298d8adf);
6694 REG_WR(bp, SRC_REG_KEYSEARCH_7, 0x6eb0ff09);
6695 REG_WR(bp, SRC_REG_KEYSEARCH_8, 0x1830f82f);
6696 REG_WR(bp, SRC_REG_KEYSEARCH_9, 0x01e46be7);
6697 }
34f80b04 6698 REG_WR(bp, SRC_REG_SOFT_RST, 0);
a2fbb9ea 6699
34f80b04
EG
6700 if (sizeof(union cdu_context) != 1024)
6701 /* we currently assume that a context is 1024 bytes */
51c1a580
MS
6702 dev_alert(&bp->pdev->dev,
6703 "please adjust the size of cdu_context(%ld)\n",
6704 (long)sizeof(union cdu_context));
a2fbb9ea 6705
619c5cb6 6706 bnx2x_init_block(bp, BLOCK_CDU, PHASE_COMMON);
34f80b04
EG
6707 val = (4 << 24) + (0 << 12) + 1024;
6708 REG_WR(bp, CDU_REG_CDU_GLOBAL_PARAMS, val);
a2fbb9ea 6709
619c5cb6 6710 bnx2x_init_block(bp, BLOCK_CFC, PHASE_COMMON);
34f80b04 6711 REG_WR(bp, CFC_REG_INIT_REG, 0x7FF);
8d9c5f34
EG
6712 /* enable context validation interrupt from CFC */
6713 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
6714
6715 /* set the thresholds to prevent CFC/CDU race */
6716 REG_WR(bp, CFC_REG_DEBUG0, 0x20020000);
a2fbb9ea 6717
619c5cb6 6718 bnx2x_init_block(bp, BLOCK_HC, PHASE_COMMON);
f2e0899f 6719
619c5cb6 6720 if (!CHIP_IS_E1x(bp) && BP_NOMCP(bp))
f2e0899f
DK
6721 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x36);
6722
619c5cb6
VZ
6723 bnx2x_init_block(bp, BLOCK_IGU, PHASE_COMMON);
6724 bnx2x_init_block(bp, BLOCK_MISC_AEU, PHASE_COMMON);
a2fbb9ea 6725
34f80b04
EG
6726 /* Reset PCIE errors for debug */
6727 REG_WR(bp, 0x2814, 0xffffffff);
6728 REG_WR(bp, 0x3820, 0xffffffff);
a2fbb9ea 6729
619c5cb6 6730 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6731 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_CONTROL_5,
6732 (PXPCS_TL_CONTROL_5_ERR_UNSPPORT1 |
6733 PXPCS_TL_CONTROL_5_ERR_UNSPPORT));
6734 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC345_STAT,
6735 (PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4 |
6736 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3 |
6737 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2));
6738 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC678_STAT,
6739 (PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7 |
6740 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6 |
6741 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5));
6742 }
6743
619c5cb6 6744 bnx2x_init_block(bp, BLOCK_NIG, PHASE_COMMON);
f2e0899f 6745 if (!CHIP_IS_E1(bp)) {
619c5cb6
VZ
6746 /* in E3 this done in per-port section */
6747 if (!CHIP_IS_E3(bp))
6748 REG_WR(bp, NIG_REG_LLH_MF_MODE, IS_MF(bp));
f2e0899f 6749 }
619c5cb6
VZ
6750 if (CHIP_IS_E1H(bp))
6751 /* not applicable for E2 (and above ...) */
6752 REG_WR(bp, NIG_REG_LLH_E1HOV_MODE, IS_MF_SD(bp));
34f80b04
EG
6753
6754 if (CHIP_REV_IS_SLOW(bp))
6755 msleep(200);
6756
6757 /* finish CFC init */
6758 val = reg_poll(bp, CFC_REG_LL_INIT_DONE, 1, 100, 10);
6759 if (val != 1) {
6760 BNX2X_ERR("CFC LL_INIT failed\n");
6761 return -EBUSY;
6762 }
6763 val = reg_poll(bp, CFC_REG_AC_INIT_DONE, 1, 100, 10);
6764 if (val != 1) {
6765 BNX2X_ERR("CFC AC_INIT failed\n");
6766 return -EBUSY;
6767 }
6768 val = reg_poll(bp, CFC_REG_CAM_INIT_DONE, 1, 100, 10);
6769 if (val != 1) {
6770 BNX2X_ERR("CFC CAM_INIT failed\n");
6771 return -EBUSY;
6772 }
6773 REG_WR(bp, CFC_REG_DEBUG0, 0);
f1410647 6774
f2e0899f
DK
6775 if (CHIP_IS_E1(bp)) {
6776 /* read NIG statistic
6777 to see if this is our first up since powerup */
6778 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6779 val = *bnx2x_sp(bp, wb_data[0]);
34f80b04 6780
f2e0899f
DK
6781 /* do internal memory self test */
6782 if ((val == 0) && bnx2x_int_mem_test(bp)) {
6783 BNX2X_ERR("internal mem self test failed\n");
6784 return -EBUSY;
6785 }
34f80b04
EG
6786 }
6787
fd4ef40d
EG
6788 bnx2x_setup_fan_failure_detection(bp);
6789
34f80b04
EG
6790 /* clear PXP2 attentions */
6791 REG_RD(bp, PXP2_REG_PXP2_INT_STS_CLR_0);
a2fbb9ea 6792
4a33bc03 6793 bnx2x_enable_blocks_attention(bp);
c9ee9206 6794 bnx2x_enable_blocks_parity(bp);
a2fbb9ea 6795
6bbca910 6796 if (!BP_NOMCP(bp)) {
619c5cb6
VZ
6797 if (CHIP_IS_E1x(bp))
6798 bnx2x__common_init_phy(bp);
6bbca910
YR
6799 } else
6800 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
6801
34f80b04
EG
6802 return 0;
6803}
a2fbb9ea 6804
619c5cb6
VZ
6805/**
6806 * bnx2x_init_hw_common_chip - init HW at the COMMON_CHIP phase.
6807 *
6808 * @bp: driver handle
6809 */
6810static int bnx2x_init_hw_common_chip(struct bnx2x *bp)
6811{
6812 int rc = bnx2x_init_hw_common(bp);
6813
6814 if (rc)
6815 return rc;
6816
6817 /* In E2 2-PORT mode, same ext phy is used for the two paths */
6818 if (!BP_NOMCP(bp))
6819 bnx2x__common_init_phy(bp);
6820
6821 return 0;
6822}
6823
523224a3 6824static int bnx2x_init_hw_port(struct bnx2x *bp)
34f80b04
EG
6825{
6826 int port = BP_PORT(bp);
619c5cb6 6827 int init_phase = port ? PHASE_PORT1 : PHASE_PORT0;
1c06328c 6828 u32 low, high;
34f80b04 6829 u32 val;
a2fbb9ea 6830
619c5cb6 6831
51c1a580 6832 DP(NETIF_MSG_HW, "starting port init port %d\n", port);
34f80b04
EG
6833
6834 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
a2fbb9ea 6835
619c5cb6
VZ
6836 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
6837 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
6838 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
ca00392c 6839
f2e0899f
DK
6840 /* Timers bug workaround: disables the pf_master bit in pglue at
6841 * common phase, we need to enable it here before any dmae access are
6842 * attempted. Therefore we manually added the enable-master to the
6843 * port phase (it also happens in the function phase)
6844 */
619c5cb6 6845 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6846 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
6847
619c5cb6
VZ
6848 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
6849 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
6850 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
6851 bnx2x_init_block(bp, BLOCK_QM, init_phase);
6852
6853 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
6854 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
6855 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
6856 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
a2fbb9ea 6857
523224a3
DK
6858 /* QM cid (connection) count */
6859 bnx2x_qm_init_cid_count(bp, bp->qm_cid_count, INITOP_SET);
a2fbb9ea 6860
55c11941
MS
6861 if (CNIC_SUPPORT(bp)) {
6862 bnx2x_init_block(bp, BLOCK_TM, init_phase);
6863 REG_WR(bp, TM_REG_LIN0_SCAN_TIME + port*4, 20);
6864 REG_WR(bp, TM_REG_LIN0_MAX_ACTIVE_CID + port*4, 31);
6865 }
cdaa7cb8 6866
619c5cb6 6867 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
f2e0899f 6868
2b674047
DK
6869 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
6870
f2e0899f 6871 if (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp)) {
619c5cb6
VZ
6872
6873 if (IS_MF(bp))
6874 low = ((bp->flags & ONE_PORT_FLAG) ? 160 : 246);
6875 else if (bp->dev->mtu > 4096) {
6876 if (bp->flags & ONE_PORT_FLAG)
6877 low = 160;
6878 else {
6879 val = bp->dev->mtu;
6880 /* (24*1024 + val*4)/256 */
6881 low = 96 + (val/64) +
6882 ((val % 64) ? 1 : 0);
6883 }
6884 } else
6885 low = ((bp->flags & ONE_PORT_FLAG) ? 80 : 160);
6886 high = low + 56; /* 14*1024/256 */
f2e0899f
DK
6887 REG_WR(bp, BRB1_REG_PAUSE_LOW_THRESHOLD_0 + port*4, low);
6888 REG_WR(bp, BRB1_REG_PAUSE_HIGH_THRESHOLD_0 + port*4, high);
1c06328c 6889 }
1c06328c 6890
619c5cb6
VZ
6891 if (CHIP_MODE_IS_4_PORT(bp))
6892 REG_WR(bp, (BP_PORT(bp) ?
6893 BRB1_REG_MAC_GUARANTIED_1 :
6894 BRB1_REG_MAC_GUARANTIED_0), 40);
1c06328c 6895
ca00392c 6896
619c5cb6 6897 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
a3348722
BW
6898 if (CHIP_IS_E3B0(bp)) {
6899 if (IS_MF_AFEX(bp)) {
6900 /* configure headers for AFEX mode */
6901 REG_WR(bp, BP_PORT(bp) ?
6902 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
6903 PRS_REG_HDRS_AFTER_BASIC_PORT_0, 0xE);
6904 REG_WR(bp, BP_PORT(bp) ?
6905 PRS_REG_HDRS_AFTER_TAG_0_PORT_1 :
6906 PRS_REG_HDRS_AFTER_TAG_0_PORT_0, 0x6);
6907 REG_WR(bp, BP_PORT(bp) ?
6908 PRS_REG_MUST_HAVE_HDRS_PORT_1 :
6909 PRS_REG_MUST_HAVE_HDRS_PORT_0, 0xA);
6910 } else {
6911 /* Ovlan exists only if we are in multi-function +
6912 * switch-dependent mode, in switch-independent there
6913 * is no ovlan headers
6914 */
6915 REG_WR(bp, BP_PORT(bp) ?
6916 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
6917 PRS_REG_HDRS_AFTER_BASIC_PORT_0,
6918 (bp->path_has_ovlan ? 7 : 6));
6919 }
6920 }
356e2385 6921
619c5cb6
VZ
6922 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
6923 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
6924 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
6925 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
356e2385 6926
619c5cb6
VZ
6927 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
6928 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
6929 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
6930 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
34f80b04 6931
619c5cb6
VZ
6932 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
6933 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
a2fbb9ea 6934
619c5cb6
VZ
6935 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
6936
6937 if (CHIP_IS_E1x(bp)) {
f2e0899f
DK
6938 /* configure PBF to work without PAUSE mtu 9000 */
6939 REG_WR(bp, PBF_REG_P0_PAUSE_ENABLE + port*4, 0);
a2fbb9ea 6940
f2e0899f
DK
6941 /* update threshold */
6942 REG_WR(bp, PBF_REG_P0_ARB_THRSH + port*4, (9040/16));
6943 /* update init credit */
6944 REG_WR(bp, PBF_REG_P0_INIT_CRD + port*4, (9040/16) + 553 - 22);
a2fbb9ea 6945
f2e0899f
DK
6946 /* probe changes */
6947 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 1);
6948 udelay(50);
6949 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 0);
6950 }
a2fbb9ea 6951
55c11941
MS
6952 if (CNIC_SUPPORT(bp))
6953 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
6954
619c5cb6
VZ
6955 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
6956 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04
EG
6957
6958 if (CHIP_IS_E1(bp)) {
6959 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
6960 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
6961 }
619c5cb6 6962 bnx2x_init_block(bp, BLOCK_HC, init_phase);
34f80b04 6963
619c5cb6 6964 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 6965
619c5cb6 6966 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
34f80b04
EG
6967 /* init aeu_mask_attn_func_0/1:
6968 * - SF mode: bits 3-7 are masked. only bits 0-2 are in use
6969 * - MF mode: bit 3 is masked. bits 0-2 are in use as in SF
6970 * bits 4-7 are used for "per vn group attention" */
e4901dde
VZ
6971 val = IS_MF(bp) ? 0xF7 : 0x7;
6972 /* Enable DCBX attention for all but E1 */
6973 val |= CHIP_IS_E1(bp) ? 0 : 0x10;
6974 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, val);
34f80b04 6975
619c5cb6
VZ
6976 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
6977
6978 if (!CHIP_IS_E1x(bp)) {
6979 /* Bit-map indicating which L2 hdrs may appear after the
6980 * basic Ethernet header
6981 */
a3348722
BW
6982 if (IS_MF_AFEX(bp))
6983 REG_WR(bp, BP_PORT(bp) ?
6984 NIG_REG_P1_HDRS_AFTER_BASIC :
6985 NIG_REG_P0_HDRS_AFTER_BASIC, 0xE);
6986 else
6987 REG_WR(bp, BP_PORT(bp) ?
6988 NIG_REG_P1_HDRS_AFTER_BASIC :
6989 NIG_REG_P0_HDRS_AFTER_BASIC,
6990 IS_MF_SD(bp) ? 7 : 6);
619c5cb6
VZ
6991
6992 if (CHIP_IS_E3(bp))
6993 REG_WR(bp, BP_PORT(bp) ?
6994 NIG_REG_LLH1_MF_MODE :
6995 NIG_REG_LLH_MF_MODE, IS_MF(bp));
6996 }
6997 if (!CHIP_IS_E3(bp))
6998 REG_WR(bp, NIG_REG_XGXS_SERDES0_MODE_SEL + port*4, 1);
34f80b04 6999
f2e0899f 7000 if (!CHIP_IS_E1(bp)) {
fb3bff17 7001 /* 0x2 disable mf_ov, 0x1 enable */
34f80b04 7002 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK_MF + port*4,
0793f83f 7003 (IS_MF_SD(bp) ? 0x1 : 0x2));
34f80b04 7004
619c5cb6 7005 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7006 val = 0;
7007 switch (bp->mf_mode) {
7008 case MULTI_FUNCTION_SD:
7009 val = 1;
7010 break;
7011 case MULTI_FUNCTION_SI:
a3348722 7012 case MULTI_FUNCTION_AFEX:
f2e0899f
DK
7013 val = 2;
7014 break;
7015 }
7016
7017 REG_WR(bp, (BP_PORT(bp) ? NIG_REG_LLH1_CLS_TYPE :
7018 NIG_REG_LLH0_CLS_TYPE), val);
7019 }
1c06328c
EG
7020 {
7021 REG_WR(bp, NIG_REG_LLFC_ENABLE_0 + port*4, 0);
7022 REG_WR(bp, NIG_REG_LLFC_OUT_EN_0 + port*4, 0);
7023 REG_WR(bp, NIG_REG_PAUSE_ENABLE_0 + port*4, 1);
7024 }
34f80b04
EG
7025 }
7026
619c5cb6
VZ
7027
7028 /* If SPIO5 is set to generate interrupts, enable it for this port */
7029 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 7030 if (val & MISC_SPIO_SPIO5) {
4d295db0
EG
7031 u32 reg_addr = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
7032 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
7033 val = REG_RD(bp, reg_addr);
f1410647 7034 val |= AEU_INPUTS_ATTN_BITS_SPIO5;
4d295db0 7035 REG_WR(bp, reg_addr, val);
f1410647 7036 }
a2fbb9ea 7037
34f80b04
EG
7038 return 0;
7039}
7040
34f80b04
EG
7041static void bnx2x_ilt_wr(struct bnx2x *bp, u32 index, dma_addr_t addr)
7042{
7043 int reg;
32d68de1 7044 u32 wb_write[2];
34f80b04 7045
f2e0899f 7046 if (CHIP_IS_E1(bp))
34f80b04 7047 reg = PXP2_REG_RQ_ONCHIP_AT + index*8;
f2e0899f
DK
7048 else
7049 reg = PXP2_REG_RQ_ONCHIP_AT_B0 + index*8;
34f80b04 7050
32d68de1
YM
7051 wb_write[0] = ONCHIP_ADDR1(addr);
7052 wb_write[1] = ONCHIP_ADDR2(addr);
7053 REG_WR_DMAE(bp, reg, wb_write, 2);
34f80b04
EG
7054}
7055
1191cb83
ED
7056static void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func,
7057 u8 idu_sb_id, bool is_Pf)
7058{
7059 u32 data, ctl, cnt = 100;
7060 u32 igu_addr_data = IGU_REG_COMMAND_REG_32LSB_DATA;
7061 u32 igu_addr_ctl = IGU_REG_COMMAND_REG_CTRL;
7062 u32 igu_addr_ack = IGU_REG_CSTORM_TYPE_0_SB_CLEANUP + (idu_sb_id/32)*4;
7063 u32 sb_bit = 1 << (idu_sb_id%32);
7064 u32 func_encode = func | (is_Pf ? 1 : 0) << IGU_FID_ENCODE_IS_PF_SHIFT;
7065 u32 addr_encode = IGU_CMD_E2_PROD_UPD_BASE + idu_sb_id;
7066
7067 /* Not supported in BC mode */
7068 if (CHIP_INT_MODE_IS_BC(bp))
7069 return;
7070
7071 data = (IGU_USE_REGISTER_cstorm_type_0_sb_cleanup
7072 << IGU_REGULAR_CLEANUP_TYPE_SHIFT) |
7073 IGU_REGULAR_CLEANUP_SET |
7074 IGU_REGULAR_BCLEANUP;
7075
7076 ctl = addr_encode << IGU_CTRL_REG_ADDRESS_SHIFT |
7077 func_encode << IGU_CTRL_REG_FID_SHIFT |
7078 IGU_CTRL_CMD_TYPE_WR << IGU_CTRL_REG_TYPE_SHIFT;
7079
7080 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7081 data, igu_addr_data);
7082 REG_WR(bp, igu_addr_data, data);
7083 mmiowb();
7084 barrier();
7085 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7086 ctl, igu_addr_ctl);
7087 REG_WR(bp, igu_addr_ctl, ctl);
7088 mmiowb();
7089 barrier();
7090
7091 /* wait for clean up to finish */
7092 while (!(REG_RD(bp, igu_addr_ack) & sb_bit) && --cnt)
7093 msleep(20);
7094
7095
7096 if (!(REG_RD(bp, igu_addr_ack) & sb_bit)) {
7097 DP(NETIF_MSG_HW,
7098 "Unable to finish IGU cleanup: idu_sb_id %d offset %d bit %d (cnt %d)\n",
7099 idu_sb_id, idu_sb_id/32, idu_sb_id%32, cnt);
7100 }
7101}
7102
7103static void bnx2x_igu_clear_sb(struct bnx2x *bp, u8 idu_sb_id)
f2e0899f 7104{
619c5cb6 7105 bnx2x_igu_clear_sb_gen(bp, BP_FUNC(bp), idu_sb_id, true /*PF*/);
f2e0899f
DK
7106}
7107
1191cb83 7108static void bnx2x_clear_func_ilt(struct bnx2x *bp, u32 func)
f2e0899f
DK
7109{
7110 u32 i, base = FUNC_ILT_BASE(func);
7111 for (i = base; i < base + ILT_PER_FUNC; i++)
7112 bnx2x_ilt_wr(bp, i, 0);
7113}
7114
55c11941 7115
910cc727 7116static void bnx2x_init_searcher(struct bnx2x *bp)
55c11941
MS
7117{
7118 int port = BP_PORT(bp);
7119 bnx2x_src_init_t2(bp, bp->t2, bp->t2_mapping, SRC_CONN_NUM);
7120 /* T1 hash bits value determines the T1 number of entries */
7121 REG_WR(bp, SRC_REG_NUMBER_HASH_BITS0 + port*4, SRC_HASH_BITS);
7122}
7123
7124static inline int bnx2x_func_switch_update(struct bnx2x *bp, int suspend)
7125{
7126 int rc;
7127 struct bnx2x_func_state_params func_params = {NULL};
7128 struct bnx2x_func_switch_update_params *switch_update_params =
7129 &func_params.params.switch_update;
7130
7131 /* Prepare parameters for function state transitions */
7132 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
7133 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
7134
7135 func_params.f_obj = &bp->func_obj;
7136 func_params.cmd = BNX2X_F_CMD_SWITCH_UPDATE;
7137
7138 /* Function parameters */
7139 switch_update_params->suspend = suspend;
7140
7141 rc = bnx2x_func_state_change(bp, &func_params);
7142
7143 return rc;
7144}
7145
910cc727 7146static int bnx2x_reset_nic_mode(struct bnx2x *bp)
55c11941
MS
7147{
7148 int rc, i, port = BP_PORT(bp);
7149 int vlan_en = 0, mac_en[NUM_MACS];
7150
7151
7152 /* Close input from network */
7153 if (bp->mf_mode == SINGLE_FUNCTION) {
7154 bnx2x_set_rx_filter(&bp->link_params, 0);
7155 } else {
7156 vlan_en = REG_RD(bp, port ? NIG_REG_LLH1_FUNC_EN :
7157 NIG_REG_LLH0_FUNC_EN);
7158 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7159 NIG_REG_LLH0_FUNC_EN, 0);
7160 for (i = 0; i < NUM_MACS; i++) {
7161 mac_en[i] = REG_RD(bp, port ?
7162 (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7163 4 * i) :
7164 (NIG_REG_LLH0_FUNC_MEM_ENABLE +
7165 4 * i));
7166 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7167 4 * i) :
7168 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i), 0);
7169 }
7170 }
7171
7172 /* Close BMC to host */
7173 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7174 NIG_REG_P1_TX_MNG_HOST_ENABLE, 0);
7175
7176 /* Suspend Tx switching to the PF. Completion of this ramrod
7177 * further guarantees that all the packets of that PF / child
7178 * VFs in BRB were processed by the Parser, so it is safe to
7179 * change the NIC_MODE register.
7180 */
7181 rc = bnx2x_func_switch_update(bp, 1);
7182 if (rc) {
7183 BNX2X_ERR("Can't suspend tx-switching!\n");
7184 return rc;
7185 }
7186
7187 /* Change NIC_MODE register */
7188 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7189
7190 /* Open input from network */
7191 if (bp->mf_mode == SINGLE_FUNCTION) {
7192 bnx2x_set_rx_filter(&bp->link_params, 1);
7193 } else {
7194 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7195 NIG_REG_LLH0_FUNC_EN, vlan_en);
7196 for (i = 0; i < NUM_MACS; i++) {
7197 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7198 4 * i) :
7199 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i),
7200 mac_en[i]);
7201 }
7202 }
7203
7204 /* Enable BMC to host */
7205 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7206 NIG_REG_P1_TX_MNG_HOST_ENABLE, 1);
7207
7208 /* Resume Tx switching to the PF */
7209 rc = bnx2x_func_switch_update(bp, 0);
7210 if (rc) {
7211 BNX2X_ERR("Can't resume tx-switching!\n");
7212 return rc;
7213 }
7214
7215 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7216 return 0;
7217}
7218
7219int bnx2x_init_hw_func_cnic(struct bnx2x *bp)
7220{
7221 int rc;
7222
7223 bnx2x_ilt_init_op_cnic(bp, INITOP_SET);
7224
7225 if (CONFIGURE_NIC_MODE(bp)) {
7226 /* Configrue searcher as part of function hw init */
7227 bnx2x_init_searcher(bp);
7228
7229 /* Reset NIC mode */
7230 rc = bnx2x_reset_nic_mode(bp);
7231 if (rc)
7232 BNX2X_ERR("Can't change NIC mode!\n");
7233 return rc;
7234 }
7235
7236 return 0;
7237}
7238
523224a3 7239static int bnx2x_init_hw_func(struct bnx2x *bp)
34f80b04
EG
7240{
7241 int port = BP_PORT(bp);
7242 int func = BP_FUNC(bp);
619c5cb6 7243 int init_phase = PHASE_PF0 + func;
523224a3
DK
7244 struct bnx2x_ilt *ilt = BP_ILT(bp);
7245 u16 cdu_ilt_start;
8badd27a 7246 u32 addr, val;
f4a66897 7247 u32 main_mem_base, main_mem_size, main_mem_prty_clr;
89db4ad8 7248 int i, main_mem_width, rc;
34f80b04 7249
51c1a580 7250 DP(NETIF_MSG_HW, "starting func init func %d\n", func);
34f80b04 7251
619c5cb6 7252 /* FLR cleanup - hmmm */
89db4ad8
AE
7253 if (!CHIP_IS_E1x(bp)) {
7254 rc = bnx2x_pf_flr_clnup(bp);
7255 if (rc)
7256 return rc;
7257 }
619c5cb6 7258
8badd27a 7259 /* set MSI reconfigure capability */
f2e0899f
DK
7260 if (bp->common.int_block == INT_BLOCK_HC) {
7261 addr = (port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0);
7262 val = REG_RD(bp, addr);
7263 val |= HC_CONFIG_0_REG_MSI_ATTN_EN_0;
7264 REG_WR(bp, addr, val);
7265 }
8badd27a 7266
619c5cb6
VZ
7267 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7268 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
7269
523224a3
DK
7270 ilt = BP_ILT(bp);
7271 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
37b091ba 7272
290ca2bb
AE
7273 if (IS_SRIOV(bp))
7274 cdu_ilt_start += BNX2X_FIRST_VF_CID/ILT_PAGE_CIDS;
7275 cdu_ilt_start = bnx2x_iov_init_ilt(bp, cdu_ilt_start);
7276
7277 /* since BNX2X_FIRST_VF_CID > 0 the PF L2 cids precedes
7278 * those of the VFs, so start line should be reset
7279 */
7280 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
523224a3 7281 for (i = 0; i < L2_ILT_LINES(bp); i++) {
a052997e 7282 ilt->lines[cdu_ilt_start + i].page = bp->context[i].vcxt;
523224a3 7283 ilt->lines[cdu_ilt_start + i].page_mapping =
a052997e
MS
7284 bp->context[i].cxt_mapping;
7285 ilt->lines[cdu_ilt_start + i].size = bp->context[i].size;
37b091ba 7286 }
290ca2bb 7287
523224a3 7288 bnx2x_ilt_init_op(bp, INITOP_SET);
f85582f8 7289
55c11941
MS
7290 if (!CONFIGURE_NIC_MODE(bp)) {
7291 bnx2x_init_searcher(bp);
7292 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7293 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7294 } else {
7295 /* Set NIC mode */
7296 REG_WR(bp, PRS_REG_NIC_MODE, 1);
7297 DP(NETIF_MSG_IFUP, "NIC MODE configrued\n");
37b091ba 7298
55c11941 7299 }
37b091ba 7300
619c5cb6 7301 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7302 u32 pf_conf = IGU_PF_CONF_FUNC_EN;
7303
7304 /* Turn on a single ISR mode in IGU if driver is going to use
7305 * INT#x or MSI
7306 */
7307 if (!(bp->flags & USING_MSIX_FLAG))
7308 pf_conf |= IGU_PF_CONF_SINGLE_ISR_EN;
7309 /*
7310 * Timers workaround bug: function init part.
7311 * Need to wait 20msec after initializing ILT,
7312 * needed to make sure there are no requests in
7313 * one of the PXP internal queues with "old" ILT addresses
7314 */
7315 msleep(20);
7316 /*
7317 * Master enable - Due to WB DMAE writes performed before this
7318 * register is re-initialized as part of the regular function
7319 * init
7320 */
7321 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
7322 /* Enable the function in IGU */
7323 REG_WR(bp, IGU_REG_PF_CONFIGURATION, pf_conf);
7324 }
7325
523224a3 7326 bp->dmae_ready = 1;
34f80b04 7327
619c5cb6 7328 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
523224a3 7329
619c5cb6 7330 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7331 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR, func);
7332
619c5cb6
VZ
7333 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
7334 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
7335 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
7336 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
7337 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
7338 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
7339 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
7340 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
7341 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
7342 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
7343 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
7344 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
7345 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
7346
7347 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7348 REG_WR(bp, QM_REG_PF_EN, 1);
7349
619c5cb6
VZ
7350 if (!CHIP_IS_E1x(bp)) {
7351 REG_WR(bp, TSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7352 REG_WR(bp, USEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7353 REG_WR(bp, CSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7354 REG_WR(bp, XSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7355 }
7356 bnx2x_init_block(bp, BLOCK_QM, init_phase);
7357
7358 bnx2x_init_block(bp, BLOCK_TM, init_phase);
7359 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
7360 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
7361 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
7362 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
7363 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
7364 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
7365 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
7366 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
7367 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
7368 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
7369 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7370 REG_WR(bp, PBF_REG_DISABLE_PF, 0);
7371
619c5cb6 7372 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
523224a3 7373
619c5cb6 7374 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04 7375
619c5cb6 7376 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7377 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 1);
7378
fb3bff17 7379 if (IS_MF(bp)) {
34f80b04 7380 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
fb3bff17 7381 REG_WR(bp, NIG_REG_LLH0_FUNC_VLAN_ID + port*8, bp->mf_ov);
34f80b04
EG
7382 }
7383
619c5cb6 7384 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
523224a3 7385
34f80b04 7386 /* HC init per function */
f2e0899f
DK
7387 if (bp->common.int_block == INT_BLOCK_HC) {
7388 if (CHIP_IS_E1H(bp)) {
7389 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7390
7391 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
7392 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
7393 }
619c5cb6 7394 bnx2x_init_block(bp, BLOCK_HC, init_phase);
f2e0899f
DK
7395
7396 } else {
7397 int num_segs, sb_idx, prod_offset;
7398
34f80b04
EG
7399 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7400
619c5cb6 7401 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7402 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
7403 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
7404 }
7405
619c5cb6 7406 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 7407
619c5cb6 7408 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7409 int dsb_idx = 0;
7410 /**
7411 * Producer memory:
7412 * E2 mode: address 0-135 match to the mapping memory;
7413 * 136 - PF0 default prod; 137 - PF1 default prod;
7414 * 138 - PF2 default prod; 139 - PF3 default prod;
7415 * 140 - PF0 attn prod; 141 - PF1 attn prod;
7416 * 142 - PF2 attn prod; 143 - PF3 attn prod;
7417 * 144-147 reserved.
7418 *
7419 * E1.5 mode - In backward compatible mode;
7420 * for non default SB; each even line in the memory
7421 * holds the U producer and each odd line hold
7422 * the C producer. The first 128 producers are for
7423 * NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The last 20
7424 * producers are for the DSB for each PF.
7425 * Each PF has five segments: (the order inside each
7426 * segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
7427 * 132-135 C prods; 136-139 X prods; 140-143 T prods;
7428 * 144-147 attn prods;
7429 */
7430 /* non-default-status-blocks */
7431 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7432 IGU_BC_NDSB_NUM_SEGS : IGU_NORM_NDSB_NUM_SEGS;
7433 for (sb_idx = 0; sb_idx < bp->igu_sb_cnt; sb_idx++) {
7434 prod_offset = (bp->igu_base_sb + sb_idx) *
7435 num_segs;
7436
7437 for (i = 0; i < num_segs; i++) {
7438 addr = IGU_REG_PROD_CONS_MEMORY +
7439 (prod_offset + i) * 4;
7440 REG_WR(bp, addr, 0);
7441 }
7442 /* send consumer update with value 0 */
7443 bnx2x_ack_sb(bp, bp->igu_base_sb + sb_idx,
7444 USTORM_ID, 0, IGU_INT_NOP, 1);
7445 bnx2x_igu_clear_sb(bp,
7446 bp->igu_base_sb + sb_idx);
7447 }
7448
7449 /* default-status-blocks */
7450 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7451 IGU_BC_DSB_NUM_SEGS : IGU_NORM_DSB_NUM_SEGS;
7452
7453 if (CHIP_MODE_IS_4_PORT(bp))
7454 dsb_idx = BP_FUNC(bp);
7455 else
3395a033 7456 dsb_idx = BP_VN(bp);
f2e0899f
DK
7457
7458 prod_offset = (CHIP_INT_MODE_IS_BC(bp) ?
7459 IGU_BC_BASE_DSB_PROD + dsb_idx :
7460 IGU_NORM_BASE_DSB_PROD + dsb_idx);
7461
3395a033
DK
7462 /*
7463 * igu prods come in chunks of E1HVN_MAX (4) -
7464 * does not matters what is the current chip mode
7465 */
f2e0899f
DK
7466 for (i = 0; i < (num_segs * E1HVN_MAX);
7467 i += E1HVN_MAX) {
7468 addr = IGU_REG_PROD_CONS_MEMORY +
7469 (prod_offset + i)*4;
7470 REG_WR(bp, addr, 0);
7471 }
7472 /* send consumer update with 0 */
7473 if (CHIP_INT_MODE_IS_BC(bp)) {
7474 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7475 USTORM_ID, 0, IGU_INT_NOP, 1);
7476 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7477 CSTORM_ID, 0, IGU_INT_NOP, 1);
7478 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7479 XSTORM_ID, 0, IGU_INT_NOP, 1);
7480 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7481 TSTORM_ID, 0, IGU_INT_NOP, 1);
7482 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7483 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7484 } else {
7485 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7486 USTORM_ID, 0, IGU_INT_NOP, 1);
7487 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7488 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7489 }
7490 bnx2x_igu_clear_sb(bp, bp->igu_dsb_id);
7491
7492 /* !!! these should become driver const once
7493 rf-tool supports split-68 const */
7494 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_LSB, 0);
7495 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_MSB, 0);
7496 REG_WR(bp, IGU_REG_SB_MASK_LSB, 0);
7497 REG_WR(bp, IGU_REG_SB_MASK_MSB, 0);
7498 REG_WR(bp, IGU_REG_PBA_STATUS_LSB, 0);
7499 REG_WR(bp, IGU_REG_PBA_STATUS_MSB, 0);
7500 }
34f80b04 7501 }
34f80b04 7502
c14423fe 7503 /* Reset PCIE errors for debug */
a2fbb9ea
ET
7504 REG_WR(bp, 0x2114, 0xffffffff);
7505 REG_WR(bp, 0x2120, 0xffffffff);
523224a3 7506
f4a66897
VZ
7507 if (CHIP_IS_E1x(bp)) {
7508 main_mem_size = HC_REG_MAIN_MEMORY_SIZE / 2; /*dwords*/
7509 main_mem_base = HC_REG_MAIN_MEMORY +
7510 BP_PORT(bp) * (main_mem_size * 4);
7511 main_mem_prty_clr = HC_REG_HC_PRTY_STS_CLR;
7512 main_mem_width = 8;
7513
7514 val = REG_RD(bp, main_mem_prty_clr);
7515 if (val)
51c1a580
MS
7516 DP(NETIF_MSG_HW,
7517 "Hmmm... Parity errors in HC block during function init (0x%x)!\n",
7518 val);
f4a66897
VZ
7519
7520 /* Clear "false" parity errors in MSI-X table */
7521 for (i = main_mem_base;
7522 i < main_mem_base + main_mem_size * 4;
7523 i += main_mem_width) {
7524 bnx2x_read_dmae(bp, i, main_mem_width / 4);
7525 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data),
7526 i, main_mem_width / 4);
7527 }
7528 /* Clear HC parity attention */
7529 REG_RD(bp, main_mem_prty_clr);
7530 }
7531
619c5cb6
VZ
7532#ifdef BNX2X_STOP_ON_ERROR
7533 /* Enable STORMs SP logging */
7534 REG_WR8(bp, BAR_USTRORM_INTMEM +
7535 USTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7536 REG_WR8(bp, BAR_TSTRORM_INTMEM +
7537 TSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7538 REG_WR8(bp, BAR_CSTRORM_INTMEM +
7539 CSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7540 REG_WR8(bp, BAR_XSTRORM_INTMEM +
7541 XSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7542#endif
7543
b7737c9b 7544 bnx2x_phy_probe(&bp->link_params);
f85582f8 7545
34f80b04
EG
7546 return 0;
7547}
7548
a2fbb9ea 7549
55c11941
MS
7550void bnx2x_free_mem_cnic(struct bnx2x *bp)
7551{
7552 bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_FREE);
7553
7554 if (!CHIP_IS_E1x(bp))
7555 BNX2X_PCI_FREE(bp->cnic_sb.e2_sb, bp->cnic_sb_mapping,
7556 sizeof(struct host_hc_status_block_e2));
7557 else
7558 BNX2X_PCI_FREE(bp->cnic_sb.e1x_sb, bp->cnic_sb_mapping,
7559 sizeof(struct host_hc_status_block_e1x));
7560
7561 BNX2X_PCI_FREE(bp->t2, bp->t2_mapping, SRC_T2_SZ);
7562}
7563
9f6c9258 7564void bnx2x_free_mem(struct bnx2x *bp)
a2fbb9ea 7565{
a052997e
MS
7566 int i;
7567
a2fbb9ea 7568 /* fastpath */
b3b83c3f 7569 bnx2x_free_fp_mem(bp);
a2fbb9ea
ET
7570 /* end of fastpath */
7571
7572 BNX2X_PCI_FREE(bp->def_status_blk, bp->def_status_blk_mapping,
523224a3 7573 sizeof(struct host_sp_status_block));
a2fbb9ea 7574
619c5cb6
VZ
7575 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
7576 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
7577
a2fbb9ea 7578 BNX2X_PCI_FREE(bp->slowpath, bp->slowpath_mapping,
34f80b04 7579 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7580
a052997e
MS
7581 for (i = 0; i < L2_ILT_LINES(bp); i++)
7582 BNX2X_PCI_FREE(bp->context[i].vcxt, bp->context[i].cxt_mapping,
7583 bp->context[i].size);
523224a3
DK
7584 bnx2x_ilt_mem_op(bp, ILT_MEMOP_FREE);
7585
7586 BNX2X_FREE(bp->ilt->lines);
f85582f8 7587
7a9b2557 7588 BNX2X_PCI_FREE(bp->spq, bp->spq_mapping, BCM_PAGE_SIZE);
a2fbb9ea 7589
523224a3
DK
7590 BNX2X_PCI_FREE(bp->eq_ring, bp->eq_mapping,
7591 BCM_PAGE_SIZE * NUM_EQ_PAGES);
619c5cb6
VZ
7592}
7593
1191cb83 7594static int bnx2x_alloc_fw_stats_mem(struct bnx2x *bp)
619c5cb6
VZ
7595{
7596 int num_groups;
50f0a562 7597 int is_fcoe_stats = NO_FCOE(bp) ? 0 : 1;
619c5cb6 7598
50f0a562
BW
7599 /* number of queues for statistics is number of eth queues + FCoE */
7600 u8 num_queue_stats = BNX2X_NUM_ETH_QUEUES(bp) + is_fcoe_stats;
619c5cb6
VZ
7601
7602 /* Total number of FW statistics requests =
50f0a562
BW
7603 * 1 for port stats + 1 for PF stats + potential 1 for FCoE stats +
7604 * num of queues
7605 */
7606 bp->fw_stats_num = 2 + is_fcoe_stats + num_queue_stats;
523224a3 7607
619c5cb6
VZ
7608
7609 /* Request is built from stats_query_header and an array of
7610 * stats_query_cmd_group each of which contains
7611 * STATS_QUERY_CMD_COUNT rules. The real number or requests is
7612 * configured in the stats_query_header.
7613 */
50f0a562
BW
7614 num_groups = ((bp->fw_stats_num) / STATS_QUERY_CMD_COUNT) +
7615 (((bp->fw_stats_num) % STATS_QUERY_CMD_COUNT) ? 1 : 0);
619c5cb6
VZ
7616
7617 bp->fw_stats_req_sz = sizeof(struct stats_query_header) +
7618 num_groups * sizeof(struct stats_query_cmd_group);
7619
7620 /* Data for statistics requests + stats_conter
7621 *
7622 * stats_counter holds per-STORM counters that are incremented
7623 * when STORM has finished with the current request.
50f0a562
BW
7624 *
7625 * memory for FCoE offloaded statistics are counted anyway,
7626 * even if they will not be sent.
619c5cb6
VZ
7627 */
7628 bp->fw_stats_data_sz = sizeof(struct per_port_stats) +
7629 sizeof(struct per_pf_stats) +
50f0a562 7630 sizeof(struct fcoe_statistics_params) +
619c5cb6
VZ
7631 sizeof(struct per_queue_stats) * num_queue_stats +
7632 sizeof(struct stats_counter);
7633
7634 BNX2X_PCI_ALLOC(bp->fw_stats, &bp->fw_stats_mapping,
7635 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
7636
7637 /* Set shortcuts */
7638 bp->fw_stats_req = (struct bnx2x_fw_stats_req *)bp->fw_stats;
7639 bp->fw_stats_req_mapping = bp->fw_stats_mapping;
7640
7641 bp->fw_stats_data = (struct bnx2x_fw_stats_data *)
7642 ((u8 *)bp->fw_stats + bp->fw_stats_req_sz);
7643
7644 bp->fw_stats_data_mapping = bp->fw_stats_mapping +
7645 bp->fw_stats_req_sz;
7646 return 0;
7647
7648alloc_mem_err:
7649 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
7650 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
51c1a580 7651 BNX2X_ERR("Can't allocate memory\n");
619c5cb6 7652 return -ENOMEM;
a2fbb9ea
ET
7653}
7654
55c11941 7655int bnx2x_alloc_mem_cnic(struct bnx2x *bp)
a2fbb9ea 7656{
619c5cb6
VZ
7657 if (!CHIP_IS_E1x(bp))
7658 /* size = the status block + ramrod buffers */
f2e0899f
DK
7659 BNX2X_PCI_ALLOC(bp->cnic_sb.e2_sb, &bp->cnic_sb_mapping,
7660 sizeof(struct host_hc_status_block_e2));
7661 else
55c11941
MS
7662 BNX2X_PCI_ALLOC(bp->cnic_sb.e1x_sb,
7663 &bp->cnic_sb_mapping,
7664 sizeof(struct
7665 host_hc_status_block_e1x));
8badd27a 7666
55c11941
MS
7667 if (CONFIGURE_NIC_MODE(bp))
7668 /* allocate searcher T2 table, as it wan't allocated before */
7669 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
7670
7671 /* write address to which L5 should insert its values */
7672 bp->cnic_eth_dev.addr_drv_info_to_mcp =
7673 &bp->slowpath->drv_info_to_mcp;
7674
7675 if (bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_ALLOC))
7676 goto alloc_mem_err;
7677
7678 return 0;
7679
7680alloc_mem_err:
7681 bnx2x_free_mem_cnic(bp);
7682 BNX2X_ERR("Can't allocate memory\n");
7683 return -ENOMEM;
7684}
7685
7686int bnx2x_alloc_mem(struct bnx2x *bp)
7687{
7688 int i, allocated, context_size;
a2fbb9ea 7689
55c11941
MS
7690 if (!CONFIGURE_NIC_MODE(bp))
7691 /* allocate searcher T2 table */
7692 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
8badd27a 7693
523224a3
DK
7694 BNX2X_PCI_ALLOC(bp->def_status_blk, &bp->def_status_blk_mapping,
7695 sizeof(struct host_sp_status_block));
a2fbb9ea 7696
523224a3
DK
7697 BNX2X_PCI_ALLOC(bp->slowpath, &bp->slowpath_mapping,
7698 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7699
619c5cb6
VZ
7700 /* Allocated memory for FW statistics */
7701 if (bnx2x_alloc_fw_stats_mem(bp))
7702 goto alloc_mem_err;
7703
a052997e
MS
7704 /* Allocate memory for CDU context:
7705 * This memory is allocated separately and not in the generic ILT
7706 * functions because CDU differs in few aspects:
7707 * 1. There are multiple entities allocating memory for context -
7708 * 'regular' driver, CNIC and SRIOV driver. Each separately controls
7709 * its own ILT lines.
7710 * 2. Since CDU page-size is not a single 4KB page (which is the case
7711 * for the other ILT clients), to be efficient we want to support
7712 * allocation of sub-page-size in the last entry.
7713 * 3. Context pointers are used by the driver to pass to FW / update
7714 * the context (for the other ILT clients the pointers are used just to
7715 * free the memory during unload).
7716 */
7717 context_size = sizeof(union cdu_context) * BNX2X_L2_CID_COUNT(bp);
65abd74d 7718
a052997e
MS
7719 for (i = 0, allocated = 0; allocated < context_size; i++) {
7720 bp->context[i].size = min(CDU_ILT_PAGE_SZ,
7721 (context_size - allocated));
7722 BNX2X_PCI_ALLOC(bp->context[i].vcxt,
7723 &bp->context[i].cxt_mapping,
7724 bp->context[i].size);
7725 allocated += bp->context[i].size;
7726 }
523224a3 7727 BNX2X_ALLOC(bp->ilt->lines, sizeof(struct ilt_line) * ILT_MAX_LINES);
65abd74d 7728
523224a3
DK
7729 if (bnx2x_ilt_mem_op(bp, ILT_MEMOP_ALLOC))
7730 goto alloc_mem_err;
65abd74d 7731
9f6c9258
DK
7732 /* Slow path ring */
7733 BNX2X_PCI_ALLOC(bp->spq, &bp->spq_mapping, BCM_PAGE_SIZE);
65abd74d 7734
523224a3
DK
7735 /* EQ */
7736 BNX2X_PCI_ALLOC(bp->eq_ring, &bp->eq_mapping,
7737 BCM_PAGE_SIZE * NUM_EQ_PAGES);
ab532cf3 7738
b3b83c3f
DK
7739
7740 /* fastpath */
7741 /* need to be done at the end, since it's self adjusting to amount
7742 * of memory available for RSS queues
7743 */
7744 if (bnx2x_alloc_fp_mem(bp))
7745 goto alloc_mem_err;
9f6c9258 7746 return 0;
e1510706 7747
9f6c9258
DK
7748alloc_mem_err:
7749 bnx2x_free_mem(bp);
51c1a580 7750 BNX2X_ERR("Can't allocate memory\n");
9f6c9258 7751 return -ENOMEM;
65abd74d
YG
7752}
7753
a2fbb9ea
ET
7754/*
7755 * Init service functions
7756 */
a2fbb9ea 7757
619c5cb6
VZ
7758int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
7759 struct bnx2x_vlan_mac_obj *obj, bool set,
7760 int mac_type, unsigned long *ramrod_flags)
a2fbb9ea 7761{
619c5cb6
VZ
7762 int rc;
7763 struct bnx2x_vlan_mac_ramrod_params ramrod_param;
a2fbb9ea 7764
619c5cb6 7765 memset(&ramrod_param, 0, sizeof(ramrod_param));
a2fbb9ea 7766
619c5cb6
VZ
7767 /* Fill general parameters */
7768 ramrod_param.vlan_mac_obj = obj;
7769 ramrod_param.ramrod_flags = *ramrod_flags;
a2fbb9ea 7770
619c5cb6
VZ
7771 /* Fill a user request section if needed */
7772 if (!test_bit(RAMROD_CONT, ramrod_flags)) {
7773 memcpy(ramrod_param.user_req.u.mac.mac, mac, ETH_ALEN);
a2fbb9ea 7774
619c5cb6 7775 __set_bit(mac_type, &ramrod_param.user_req.vlan_mac_flags);
e3553b29 7776
619c5cb6
VZ
7777 /* Set the command: ADD or DEL */
7778 if (set)
7779 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_ADD;
7780 else
7781 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_DEL;
a2fbb9ea
ET
7782 }
7783
619c5cb6 7784 rc = bnx2x_config_vlan_mac(bp, &ramrod_param);
7b5342d9
YM
7785
7786 if (rc == -EEXIST) {
7787 DP(BNX2X_MSG_SP, "Failed to schedule ADD operations: %d\n", rc);
7788 /* do not treat adding same MAC as error */
7789 rc = 0;
7790 } else if (rc < 0)
619c5cb6 7791 BNX2X_ERR("%s MAC failed\n", (set ? "Set" : "Del"));
7b5342d9 7792
619c5cb6 7793 return rc;
a2fbb9ea
ET
7794}
7795
619c5cb6
VZ
7796int bnx2x_del_all_macs(struct bnx2x *bp,
7797 struct bnx2x_vlan_mac_obj *mac_obj,
7798 int mac_type, bool wait_for_comp)
e665bfda 7799{
619c5cb6
VZ
7800 int rc;
7801 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
0793f83f 7802
619c5cb6
VZ
7803 /* Wait for completion of requested */
7804 if (wait_for_comp)
7805 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
0793f83f 7806
619c5cb6
VZ
7807 /* Set the mac type of addresses we want to clear */
7808 __set_bit(mac_type, &vlan_mac_flags);
0793f83f 7809
619c5cb6
VZ
7810 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags, &ramrod_flags);
7811 if (rc < 0)
7812 BNX2X_ERR("Failed to delete MACs: %d\n", rc);
0793f83f 7813
619c5cb6 7814 return rc;
0793f83f
DK
7815}
7816
619c5cb6 7817int bnx2x_set_eth_mac(struct bnx2x *bp, bool set)
523224a3 7818{
619c5cb6 7819 unsigned long ramrod_flags = 0;
e665bfda 7820
a3348722
BW
7821 if (is_zero_ether_addr(bp->dev->dev_addr) &&
7822 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))) {
51c1a580
MS
7823 DP(NETIF_MSG_IFUP | NETIF_MSG_IFDOWN,
7824 "Ignoring Zero MAC for STORAGE SD mode\n");
614c76df
DK
7825 return 0;
7826 }
614c76df 7827
619c5cb6 7828 DP(NETIF_MSG_IFUP, "Adding Eth MAC\n");
0793f83f 7829
619c5cb6
VZ
7830 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
7831 /* Eth MAC is set on RSS leading client (fp[0]) */
15192a8c
BW
7832 return bnx2x_set_mac_one(bp, bp->dev->dev_addr, &bp->sp_objs->mac_obj,
7833 set, BNX2X_ETH_MAC, &ramrod_flags);
e665bfda 7834}
6e30dd4e 7835
619c5cb6 7836int bnx2x_setup_leading(struct bnx2x *bp)
ec6ba945 7837{
619c5cb6 7838 return bnx2x_setup_queue(bp, &bp->fp[0], 1);
993ac7b5 7839}
a2fbb9ea 7840
d6214d7a 7841/**
e8920674 7842 * bnx2x_set_int_mode - configure interrupt mode
d6214d7a 7843 *
e8920674 7844 * @bp: driver handle
d6214d7a 7845 *
e8920674 7846 * In case of MSI-X it will also try to enable MSI-X.
d6214d7a 7847 */
1ab4434c 7848int bnx2x_set_int_mode(struct bnx2x *bp)
ca00392c 7849{
1ab4434c
AE
7850 int rc = 0;
7851
7852 if (IS_VF(bp) && int_mode != BNX2X_INT_MODE_MSIX)
7853 return -EINVAL;
7854
9ee3d37b 7855 switch (int_mode) {
1ab4434c
AE
7856 case BNX2X_INT_MODE_MSIX:
7857 /* attempt to enable msix */
7858 rc = bnx2x_enable_msix(bp);
7859
7860 /* msix attained */
7861 if (!rc)
7862 return 0;
7863
7864 /* vfs use only msix */
7865 if (rc && IS_VF(bp))
7866 return rc;
7867
7868 /* failed to enable multiple MSI-X */
7869 BNX2X_DEV_INFO("Failed to enable multiple MSI-X (%d), set number of queues to %d\n",
7870 bp->num_queues,
7871 1 + bp->num_cnic_queues);
7872
7873 /* falling through... */
7874 case BNX2X_INT_MODE_MSI:
d6214d7a 7875 bnx2x_enable_msi(bp);
1ab4434c 7876
d6214d7a 7877 /* falling through... */
1ab4434c 7878 case BNX2X_INT_MODE_INTX:
55c11941
MS
7879 bp->num_ethernet_queues = 1;
7880 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
51c1a580 7881 BNX2X_DEV_INFO("set number of queues to 1\n");
ca00392c 7882 break;
d6214d7a 7883 default:
1ab4434c
AE
7884 BNX2X_DEV_INFO("unknown value in int_mode module parameter\n");
7885 return -EINVAL;
9f6c9258 7886 }
1ab4434c 7887 return 0;
a2fbb9ea
ET
7888}
7889
1ab4434c 7890/* must be called prior to any HW initializations */
c2bff63f
DK
7891static inline u16 bnx2x_cid_ilt_lines(struct bnx2x *bp)
7892{
290ca2bb
AE
7893 if (IS_SRIOV(bp))
7894 return (BNX2X_FIRST_VF_CID + BNX2X_VF_CIDS)/ILT_PAGE_CIDS;
c2bff63f
DK
7895 return L2_ILT_LINES(bp);
7896}
7897
523224a3
DK
7898void bnx2x_ilt_set_info(struct bnx2x *bp)
7899{
7900 struct ilt_client_info *ilt_client;
7901 struct bnx2x_ilt *ilt = BP_ILT(bp);
7902 u16 line = 0;
7903
7904 ilt->start_line = FUNC_ILT_BASE(BP_FUNC(bp));
7905 DP(BNX2X_MSG_SP, "ilt starts at line %d\n", ilt->start_line);
7906
7907 /* CDU */
7908 ilt_client = &ilt->clients[ILT_CLIENT_CDU];
7909 ilt_client->client_num = ILT_CLIENT_CDU;
7910 ilt_client->page_size = CDU_ILT_PAGE_SZ;
7911 ilt_client->flags = ILT_CLIENT_SKIP_MEM;
7912 ilt_client->start = line;
619c5cb6 7913 line += bnx2x_cid_ilt_lines(bp);
55c11941
MS
7914
7915 if (CNIC_SUPPORT(bp))
7916 line += CNIC_ILT_LINES;
523224a3
DK
7917 ilt_client->end = line - 1;
7918
51c1a580 7919 DP(NETIF_MSG_IFUP, "ilt client[CDU]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
7920 ilt_client->start,
7921 ilt_client->end,
7922 ilt_client->page_size,
7923 ilt_client->flags,
7924 ilog2(ilt_client->page_size >> 12));
7925
7926 /* QM */
7927 if (QM_INIT(bp->qm_cid_count)) {
7928 ilt_client = &ilt->clients[ILT_CLIENT_QM];
7929 ilt_client->client_num = ILT_CLIENT_QM;
7930 ilt_client->page_size = QM_ILT_PAGE_SZ;
7931 ilt_client->flags = 0;
7932 ilt_client->start = line;
7933
7934 /* 4 bytes for each cid */
7935 line += DIV_ROUND_UP(bp->qm_cid_count * QM_QUEUES_PER_FUNC * 4,
7936 QM_ILT_PAGE_SZ);
7937
7938 ilt_client->end = line - 1;
7939
51c1a580
MS
7940 DP(NETIF_MSG_IFUP,
7941 "ilt client[QM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
7942 ilt_client->start,
7943 ilt_client->end,
7944 ilt_client->page_size,
7945 ilt_client->flags,
7946 ilog2(ilt_client->page_size >> 12));
7947
7948 }
523224a3 7949
55c11941
MS
7950 if (CNIC_SUPPORT(bp)) {
7951 /* SRC */
7952 ilt_client = &ilt->clients[ILT_CLIENT_SRC];
7953 ilt_client->client_num = ILT_CLIENT_SRC;
7954 ilt_client->page_size = SRC_ILT_PAGE_SZ;
7955 ilt_client->flags = 0;
7956 ilt_client->start = line;
7957 line += SRC_ILT_LINES;
7958 ilt_client->end = line - 1;
523224a3 7959
55c11941
MS
7960 DP(NETIF_MSG_IFUP,
7961 "ilt client[SRC]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
7962 ilt_client->start,
7963 ilt_client->end,
7964 ilt_client->page_size,
7965 ilt_client->flags,
7966 ilog2(ilt_client->page_size >> 12));
9f6c9258 7967
55c11941
MS
7968 /* TM */
7969 ilt_client = &ilt->clients[ILT_CLIENT_TM];
7970 ilt_client->client_num = ILT_CLIENT_TM;
7971 ilt_client->page_size = TM_ILT_PAGE_SZ;
7972 ilt_client->flags = 0;
7973 ilt_client->start = line;
7974 line += TM_ILT_LINES;
7975 ilt_client->end = line - 1;
523224a3 7976
55c11941
MS
7977 DP(NETIF_MSG_IFUP,
7978 "ilt client[TM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
7979 ilt_client->start,
7980 ilt_client->end,
7981 ilt_client->page_size,
7982 ilt_client->flags,
7983 ilog2(ilt_client->page_size >> 12));
7984 }
9f6c9258 7985
619c5cb6 7986 BUG_ON(line > ILT_MAX_LINES);
523224a3 7987}
f85582f8 7988
619c5cb6
VZ
7989/**
7990 * bnx2x_pf_q_prep_init - prepare INIT transition parameters
7991 *
7992 * @bp: driver handle
7993 * @fp: pointer to fastpath
7994 * @init_params: pointer to parameters structure
7995 *
7996 * parameters configured:
7997 * - HC configuration
7998 * - Queue's CDU context
7999 */
1191cb83 8000static void bnx2x_pf_q_prep_init(struct bnx2x *bp,
619c5cb6 8001 struct bnx2x_fastpath *fp, struct bnx2x_queue_init_params *init_params)
a2fbb9ea 8002{
6383c0b3
AE
8003
8004 u8 cos;
a052997e
MS
8005 int cxt_index, cxt_offset;
8006
619c5cb6
VZ
8007 /* FCoE Queue uses Default SB, thus has no HC capabilities */
8008 if (!IS_FCOE_FP(fp)) {
8009 __set_bit(BNX2X_Q_FLG_HC, &init_params->rx.flags);
8010 __set_bit(BNX2X_Q_FLG_HC, &init_params->tx.flags);
8011
8012 /* If HC is supporterd, enable host coalescing in the transition
8013 * to INIT state.
8014 */
8015 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->rx.flags);
8016 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->tx.flags);
8017
8018 /* HC rate */
8019 init_params->rx.hc_rate = bp->rx_ticks ?
8020 (1000000 / bp->rx_ticks) : 0;
8021 init_params->tx.hc_rate = bp->tx_ticks ?
8022 (1000000 / bp->tx_ticks) : 0;
8023
8024 /* FW SB ID */
8025 init_params->rx.fw_sb_id = init_params->tx.fw_sb_id =
8026 fp->fw_sb_id;
8027
8028 /*
8029 * CQ index among the SB indices: FCoE clients uses the default
8030 * SB, therefore it's different.
8031 */
6383c0b3
AE
8032 init_params->rx.sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
8033 init_params->tx.sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS;
619c5cb6
VZ
8034 }
8035
6383c0b3
AE
8036 /* set maximum number of COSs supported by this queue */
8037 init_params->max_cos = fp->max_cos;
8038
51c1a580 8039 DP(NETIF_MSG_IFUP, "fp: %d setting queue params max cos to: %d\n",
6383c0b3
AE
8040 fp->index, init_params->max_cos);
8041
8042 /* set the context pointers queue object */
a052997e 8043 for (cos = FIRST_TX_COS_INDEX; cos < init_params->max_cos; cos++) {
65565884
MS
8044 cxt_index = fp->txdata_ptr[cos]->cid / ILT_PAGE_CIDS;
8045 cxt_offset = fp->txdata_ptr[cos]->cid - (cxt_index *
a052997e 8046 ILT_PAGE_CIDS);
6383c0b3 8047 init_params->cxts[cos] =
a052997e
MS
8048 &bp->context[cxt_index].vcxt[cxt_offset].eth;
8049 }
619c5cb6
VZ
8050}
8051
910cc727 8052static int bnx2x_setup_tx_only(struct bnx2x *bp, struct bnx2x_fastpath *fp,
6383c0b3
AE
8053 struct bnx2x_queue_state_params *q_params,
8054 struct bnx2x_queue_setup_tx_only_params *tx_only_params,
8055 int tx_index, bool leading)
8056{
8057 memset(tx_only_params, 0, sizeof(*tx_only_params));
8058
8059 /* Set the command */
8060 q_params->cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
8061
8062 /* Set tx-only QUEUE flags: don't zero statistics */
8063 tx_only_params->flags = bnx2x_get_common_flags(bp, fp, false);
8064
8065 /* choose the index of the cid to send the slow path on */
8066 tx_only_params->cid_index = tx_index;
8067
8068 /* Set general TX_ONLY_SETUP parameters */
8069 bnx2x_pf_q_prep_general(bp, fp, &tx_only_params->gen_params, tx_index);
8070
8071 /* Set Tx TX_ONLY_SETUP parameters */
8072 bnx2x_pf_tx_q_prep(bp, fp, &tx_only_params->txq_params, tx_index);
8073
51c1a580
MS
8074 DP(NETIF_MSG_IFUP,
8075 "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
8076 tx_index, q_params->q_obj->cids[FIRST_TX_COS_INDEX],
8077 q_params->q_obj->cids[tx_index], q_params->q_obj->cl_id,
8078 tx_only_params->gen_params.spcl_id, tx_only_params->flags);
8079
8080 /* send the ramrod */
8081 return bnx2x_queue_state_change(bp, q_params);
8082}
8083
8084
619c5cb6
VZ
8085/**
8086 * bnx2x_setup_queue - setup queue
8087 *
8088 * @bp: driver handle
8089 * @fp: pointer to fastpath
8090 * @leading: is leading
8091 *
8092 * This function performs 2 steps in a Queue state machine
8093 * actually: 1) RESET->INIT 2) INIT->SETUP
8094 */
8095
8096int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
8097 bool leading)
8098{
3b603066 8099 struct bnx2x_queue_state_params q_params = {NULL};
619c5cb6
VZ
8100 struct bnx2x_queue_setup_params *setup_params =
8101 &q_params.params.setup;
6383c0b3
AE
8102 struct bnx2x_queue_setup_tx_only_params *tx_only_params =
8103 &q_params.params.tx_only;
a2fbb9ea 8104 int rc;
6383c0b3
AE
8105 u8 tx_index;
8106
51c1a580 8107 DP(NETIF_MSG_IFUP, "setting up queue %d\n", fp->index);
a2fbb9ea 8108
ec6ba945
VZ
8109 /* reset IGU state skip FCoE L2 queue */
8110 if (!IS_FCOE_FP(fp))
8111 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0,
523224a3 8112 IGU_INT_ENABLE, 0);
a2fbb9ea 8113
15192a8c 8114 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8115 /* We want to wait for completion in this context */
8116 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8117
619c5cb6
VZ
8118 /* Prepare the INIT parameters */
8119 bnx2x_pf_q_prep_init(bp, fp, &q_params.params.init);
ec6ba945 8120
619c5cb6
VZ
8121 /* Set the command */
8122 q_params.cmd = BNX2X_Q_CMD_INIT;
8123
8124 /* Change the state to INIT */
8125 rc = bnx2x_queue_state_change(bp, &q_params);
8126 if (rc) {
6383c0b3 8127 BNX2X_ERR("Queue(%d) INIT failed\n", fp->index);
619c5cb6
VZ
8128 return rc;
8129 }
ec6ba945 8130
51c1a580 8131 DP(NETIF_MSG_IFUP, "init complete\n");
6383c0b3
AE
8132
8133
619c5cb6
VZ
8134 /* Now move the Queue to the SETUP state... */
8135 memset(setup_params, 0, sizeof(*setup_params));
a2fbb9ea 8136
619c5cb6
VZ
8137 /* Set QUEUE flags */
8138 setup_params->flags = bnx2x_get_q_flags(bp, fp, leading);
523224a3 8139
619c5cb6 8140 /* Set general SETUP parameters */
6383c0b3
AE
8141 bnx2x_pf_q_prep_general(bp, fp, &setup_params->gen_params,
8142 FIRST_TX_COS_INDEX);
619c5cb6 8143
6383c0b3 8144 bnx2x_pf_rx_q_prep(bp, fp, &setup_params->pause_params,
619c5cb6
VZ
8145 &setup_params->rxq_params);
8146
6383c0b3
AE
8147 bnx2x_pf_tx_q_prep(bp, fp, &setup_params->txq_params,
8148 FIRST_TX_COS_INDEX);
619c5cb6
VZ
8149
8150 /* Set the command */
8151 q_params.cmd = BNX2X_Q_CMD_SETUP;
8152
55c11941
MS
8153 if (IS_FCOE_FP(fp))
8154 bp->fcoe_init = true;
8155
619c5cb6
VZ
8156 /* Change the state to SETUP */
8157 rc = bnx2x_queue_state_change(bp, &q_params);
6383c0b3
AE
8158 if (rc) {
8159 BNX2X_ERR("Queue(%d) SETUP failed\n", fp->index);
8160 return rc;
8161 }
8162
8163 /* loop through the relevant tx-only indices */
8164 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8165 tx_index < fp->max_cos;
8166 tx_index++) {
8167
8168 /* prepare and send tx-only ramrod*/
8169 rc = bnx2x_setup_tx_only(bp, fp, &q_params,
8170 tx_only_params, tx_index, leading);
8171 if (rc) {
8172 BNX2X_ERR("Queue(%d.%d) TX_ONLY_SETUP failed\n",
8173 fp->index, tx_index);
8174 return rc;
8175 }
8176 }
523224a3 8177
34f80b04 8178 return rc;
a2fbb9ea
ET
8179}
8180
619c5cb6 8181static int bnx2x_stop_queue(struct bnx2x *bp, int index)
a2fbb9ea 8182{
619c5cb6 8183 struct bnx2x_fastpath *fp = &bp->fp[index];
6383c0b3 8184 struct bnx2x_fp_txdata *txdata;
3b603066 8185 struct bnx2x_queue_state_params q_params = {NULL};
6383c0b3
AE
8186 int rc, tx_index;
8187
51c1a580 8188 DP(NETIF_MSG_IFDOWN, "stopping queue %d cid %d\n", index, fp->cid);
a2fbb9ea 8189
15192a8c 8190 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8191 /* We want to wait for completion in this context */
8192 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8193
6383c0b3
AE
8194
8195 /* close tx-only connections */
8196 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8197 tx_index < fp->max_cos;
8198 tx_index++){
8199
8200 /* ascertain this is a normal queue*/
65565884 8201 txdata = fp->txdata_ptr[tx_index];
6383c0b3 8202
51c1a580 8203 DP(NETIF_MSG_IFDOWN, "stopping tx-only queue %d\n",
6383c0b3
AE
8204 txdata->txq_index);
8205
8206 /* send halt terminate on tx-only connection */
8207 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
8208 memset(&q_params.params.terminate, 0,
8209 sizeof(q_params.params.terminate));
8210 q_params.params.terminate.cid_index = tx_index;
8211
8212 rc = bnx2x_queue_state_change(bp, &q_params);
8213 if (rc)
8214 return rc;
8215
8216 /* send halt terminate on tx-only connection */
8217 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
8218 memset(&q_params.params.cfc_del, 0,
8219 sizeof(q_params.params.cfc_del));
8220 q_params.params.cfc_del.cid_index = tx_index;
8221 rc = bnx2x_queue_state_change(bp, &q_params);
8222 if (rc)
8223 return rc;
8224 }
8225 /* Stop the primary connection: */
8226 /* ...halt the connection */
619c5cb6
VZ
8227 q_params.cmd = BNX2X_Q_CMD_HALT;
8228 rc = bnx2x_queue_state_change(bp, &q_params);
8229 if (rc)
da5a662a 8230 return rc;
a2fbb9ea 8231
6383c0b3 8232 /* ...terminate the connection */
619c5cb6 8233 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
6383c0b3
AE
8234 memset(&q_params.params.terminate, 0,
8235 sizeof(q_params.params.terminate));
8236 q_params.params.terminate.cid_index = FIRST_TX_COS_INDEX;
619c5cb6
VZ
8237 rc = bnx2x_queue_state_change(bp, &q_params);
8238 if (rc)
523224a3 8239 return rc;
6383c0b3 8240 /* ...delete cfc entry */
619c5cb6 8241 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
6383c0b3
AE
8242 memset(&q_params.params.cfc_del, 0,
8243 sizeof(q_params.params.cfc_del));
8244 q_params.params.cfc_del.cid_index = FIRST_TX_COS_INDEX;
619c5cb6 8245 return bnx2x_queue_state_change(bp, &q_params);
523224a3
DK
8246}
8247
8248
34f80b04
EG
8249static void bnx2x_reset_func(struct bnx2x *bp)
8250{
8251 int port = BP_PORT(bp);
8252 int func = BP_FUNC(bp);
f2e0899f 8253 int i;
523224a3
DK
8254
8255 /* Disable the function in the FW */
8256 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(func), 0);
8257 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(func), 0);
8258 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(func), 0);
8259 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(func), 0);
8260
8261 /* FP SBs */
ec6ba945 8262 for_each_eth_queue(bp, i) {
523224a3 8263 struct bnx2x_fastpath *fp = &bp->fp[i];
619c5cb6 8264 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8265 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET(fp->fw_sb_id),
8266 SB_DISABLED);
523224a3
DK
8267 }
8268
55c11941
MS
8269 if (CNIC_LOADED(bp))
8270 /* CNIC SB */
8271 REG_WR8(bp, BAR_CSTRORM_INTMEM +
8272 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET
8273 (bnx2x_cnic_fw_sb_id(bp)), SB_DISABLED);
8274
523224a3 8275 /* SP SB */
619c5cb6 8276 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8277 CSTORM_SP_STATUS_BLOCK_DATA_STATE_OFFSET(func),
8278 SB_DISABLED);
523224a3
DK
8279
8280 for (i = 0; i < XSTORM_SPQ_DATA_SIZE / 4; i++)
8281 REG_WR(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_DATA_OFFSET(func),
8282 0);
34f80b04
EG
8283
8284 /* Configure IGU */
f2e0899f
DK
8285 if (bp->common.int_block == INT_BLOCK_HC) {
8286 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
8287 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
8288 } else {
8289 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
8290 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
8291 }
34f80b04 8292
55c11941
MS
8293 if (CNIC_LOADED(bp)) {
8294 /* Disable Timer scan */
8295 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
8296 /*
8297 * Wait for at least 10ms and up to 2 second for the timers
8298 * scan to complete
8299 */
8300 for (i = 0; i < 200; i++) {
8301 msleep(10);
8302 if (!REG_RD(bp, TM_REG_LIN0_SCAN_ON + port*4))
8303 break;
8304 }
37b091ba 8305 }
34f80b04 8306 /* Clear ILT */
f2e0899f
DK
8307 bnx2x_clear_func_ilt(bp, func);
8308
8309 /* Timers workaround bug for E2: if this is vnic-3,
8310 * we need to set the entire ilt range for this timers.
8311 */
619c5cb6 8312 if (!CHIP_IS_E1x(bp) && BP_VN(bp) == 3) {
f2e0899f
DK
8313 struct ilt_client_info ilt_cli;
8314 /* use dummy TM client */
8315 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
8316 ilt_cli.start = 0;
8317 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
8318 ilt_cli.client_num = ILT_CLIENT_TM;
8319
8320 bnx2x_ilt_boundry_init_op(bp, &ilt_cli, 0, INITOP_CLEAR);
8321 }
8322
8323 /* this assumes that reset_port() called before reset_func()*/
619c5cb6 8324 if (!CHIP_IS_E1x(bp))
f2e0899f 8325 bnx2x_pf_disable(bp);
523224a3
DK
8326
8327 bp->dmae_ready = 0;
34f80b04
EG
8328}
8329
8330static void bnx2x_reset_port(struct bnx2x *bp)
8331{
8332 int port = BP_PORT(bp);
8333 u32 val;
8334
619c5cb6
VZ
8335 /* Reset physical Link */
8336 bnx2x__link_reset(bp);
8337
34f80b04
EG
8338 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
8339
8340 /* Do not rcv packets to BRB */
8341 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK + port*4, 0x0);
8342 /* Do not direct rcv packets that are not for MCP to the BRB */
8343 REG_WR(bp, (port ? NIG_REG_LLH1_BRB1_NOT_MCP :
8344 NIG_REG_LLH0_BRB1_NOT_MCP), 0x0);
8345
8346 /* Configure AEU */
8347 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, 0);
8348
8349 msleep(100);
8350 /* Check for BRB port occupancy */
8351 val = REG_RD(bp, BRB1_REG_PORT_NUM_OCC_BLOCKS_0 + port*4);
8352 if (val)
8353 DP(NETIF_MSG_IFDOWN,
33471629 8354 "BRB1 is not empty %d blocks are occupied\n", val);
34f80b04
EG
8355
8356 /* TODO: Close Doorbell port? */
8357}
8358
1191cb83 8359static int bnx2x_reset_hw(struct bnx2x *bp, u32 load_code)
34f80b04 8360{
3b603066 8361 struct bnx2x_func_state_params func_params = {NULL};
34f80b04 8362
619c5cb6
VZ
8363 /* Prepare parameters for function state transitions */
8364 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
34f80b04 8365
619c5cb6
VZ
8366 func_params.f_obj = &bp->func_obj;
8367 func_params.cmd = BNX2X_F_CMD_HW_RESET;
34f80b04 8368
619c5cb6 8369 func_params.params.hw_init.load_phase = load_code;
49d66772 8370
619c5cb6 8371 return bnx2x_func_state_change(bp, &func_params);
34f80b04
EG
8372}
8373
1191cb83 8374static int bnx2x_func_stop(struct bnx2x *bp)
ec6ba945 8375{
3b603066 8376 struct bnx2x_func_state_params func_params = {NULL};
619c5cb6 8377 int rc;
228241eb 8378
619c5cb6
VZ
8379 /* Prepare parameters for function state transitions */
8380 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
8381 func_params.f_obj = &bp->func_obj;
8382 func_params.cmd = BNX2X_F_CMD_STOP;
da5a662a 8383
619c5cb6
VZ
8384 /*
8385 * Try to stop the function the 'good way'. If fails (in case
8386 * of a parity error during bnx2x_chip_cleanup()) and we are
8387 * not in a debug mode, perform a state transaction in order to
8388 * enable further HW_RESET transaction.
8389 */
8390 rc = bnx2x_func_state_change(bp, &func_params);
8391 if (rc) {
34f80b04 8392#ifdef BNX2X_STOP_ON_ERROR
619c5cb6 8393 return rc;
34f80b04 8394#else
51c1a580 8395 BNX2X_ERR("FUNC_STOP ramrod failed. Running a dry transaction\n");
619c5cb6
VZ
8396 __set_bit(RAMROD_DRV_CLR_ONLY, &func_params.ramrod_flags);
8397 return bnx2x_func_state_change(bp, &func_params);
34f80b04 8398#endif
228241eb 8399 }
a2fbb9ea 8400
619c5cb6
VZ
8401 return 0;
8402}
523224a3 8403
619c5cb6
VZ
8404/**
8405 * bnx2x_send_unload_req - request unload mode from the MCP.
8406 *
8407 * @bp: driver handle
8408 * @unload_mode: requested function's unload mode
8409 *
8410 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
8411 */
8412u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode)
8413{
8414 u32 reset_code = 0;
8415 int port = BP_PORT(bp);
3101c2bc 8416
619c5cb6 8417 /* Select the UNLOAD request mode */
65abd74d
YG
8418 if (unload_mode == UNLOAD_NORMAL)
8419 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
8420
7d0446c2 8421 else if (bp->flags & NO_WOL_FLAG)
65abd74d 8422 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP;
65abd74d 8423
7d0446c2 8424 else if (bp->wol) {
65abd74d
YG
8425 u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0;
8426 u8 *mac_addr = bp->dev->dev_addr;
8427 u32 val;
f9977903
DK
8428 u16 pmc;
8429
65abd74d 8430 /* The mac address is written to entries 1-4 to
f9977903
DK
8431 * preserve entry 0 which is used by the PMF
8432 */
3395a033 8433 u8 entry = (BP_VN(bp) + 1)*8;
65abd74d
YG
8434
8435 val = (mac_addr[0] << 8) | mac_addr[1];
8436 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val);
8437
8438 val = (mac_addr[2] << 24) | (mac_addr[3] << 16) |
8439 (mac_addr[4] << 8) | mac_addr[5];
8440 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val);
8441
f9977903
DK
8442 /* Enable the PME and clear the status */
8443 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmc);
8444 pmc |= PCI_PM_CTRL_PME_ENABLE | PCI_PM_CTRL_PME_STATUS;
8445 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, pmc);
8446
65abd74d
YG
8447 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN;
8448
8449 } else
8450 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
da5a662a 8451
619c5cb6
VZ
8452 /* Send the request to the MCP */
8453 if (!BP_NOMCP(bp))
8454 reset_code = bnx2x_fw_command(bp, reset_code, 0);
8455 else {
8456 int path = BP_PATH(bp);
8457
51c1a580 8458 DP(NETIF_MSG_IFDOWN, "NO MCP - load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8459 path, load_count[path][0], load_count[path][1],
8460 load_count[path][2]);
8461 load_count[path][0]--;
8462 load_count[path][1 + port]--;
51c1a580 8463 DP(NETIF_MSG_IFDOWN, "NO MCP - new load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8464 path, load_count[path][0], load_count[path][1],
8465 load_count[path][2]);
8466 if (load_count[path][0] == 0)
8467 reset_code = FW_MSG_CODE_DRV_UNLOAD_COMMON;
8468 else if (load_count[path][1 + port] == 0)
8469 reset_code = FW_MSG_CODE_DRV_UNLOAD_PORT;
8470 else
8471 reset_code = FW_MSG_CODE_DRV_UNLOAD_FUNCTION;
8472 }
8473
8474 return reset_code;
8475}
8476
8477/**
8478 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
8479 *
8480 * @bp: driver handle
5d07d868 8481 * @keep_link: true iff link should be kept up
619c5cb6 8482 */
5d07d868 8483void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link)
619c5cb6 8484{
5d07d868
YM
8485 u32 reset_param = keep_link ? DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET : 0;
8486
619c5cb6
VZ
8487 /* Report UNLOAD_DONE to MCP */
8488 if (!BP_NOMCP(bp))
5d07d868 8489 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, reset_param);
619c5cb6
VZ
8490}
8491
1191cb83 8492static int bnx2x_func_wait_started(struct bnx2x *bp)
6debea87
DK
8493{
8494 int tout = 50;
8495 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8496
8497 if (!bp->port.pmf)
8498 return 0;
8499
8500 /*
8501 * (assumption: No Attention from MCP at this stage)
8502 * PMF probably in the middle of TXdisable/enable transaction
8503 * 1. Sync IRS for default SB
8504 * 2. Sync SP queue - this guarantes us that attention handling started
8505 * 3. Wait, that TXdisable/enable transaction completes
8506 *
8507 * 1+2 guranty that if DCBx attention was scheduled it already changed
8508 * pending bit of transaction from STARTED-->TX_STOPPED, if we alredy
8509 * received complettion for the transaction the state is TX_STOPPED.
8510 * State will return to STARTED after completion of TX_STOPPED-->STARTED
8511 * transaction.
8512 */
8513
8514 /* make sure default SB ISR is done */
8515 if (msix)
8516 synchronize_irq(bp->msix_table[0].vector);
8517 else
8518 synchronize_irq(bp->pdev->irq);
8519
8520 flush_workqueue(bnx2x_wq);
8521
8522 while (bnx2x_func_get_state(bp, &bp->func_obj) !=
8523 BNX2X_F_STATE_STARTED && tout--)
8524 msleep(20);
8525
8526 if (bnx2x_func_get_state(bp, &bp->func_obj) !=
8527 BNX2X_F_STATE_STARTED) {
8528#ifdef BNX2X_STOP_ON_ERROR
51c1a580 8529 BNX2X_ERR("Wrong function state\n");
6debea87
DK
8530 return -EBUSY;
8531#else
8532 /*
8533 * Failed to complete the transaction in a "good way"
8534 * Force both transactions with CLR bit
8535 */
3b603066 8536 struct bnx2x_func_state_params func_params = {NULL};
6debea87 8537
51c1a580
MS
8538 DP(NETIF_MSG_IFDOWN,
8539 "Hmmm... unexpected function state! Forcing STARTED-->TX_ST0PPED-->STARTED\n");
6debea87
DK
8540
8541 func_params.f_obj = &bp->func_obj;
8542 __set_bit(RAMROD_DRV_CLR_ONLY,
8543 &func_params.ramrod_flags);
8544
8545 /* STARTED-->TX_ST0PPED */
8546 func_params.cmd = BNX2X_F_CMD_TX_STOP;
8547 bnx2x_func_state_change(bp, &func_params);
8548
8549 /* TX_ST0PPED-->STARTED */
8550 func_params.cmd = BNX2X_F_CMD_TX_START;
8551 return bnx2x_func_state_change(bp, &func_params);
8552#endif
8553 }
8554
8555 return 0;
8556}
8557
5d07d868 8558void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link)
619c5cb6
VZ
8559{
8560 int port = BP_PORT(bp);
6383c0b3
AE
8561 int i, rc = 0;
8562 u8 cos;
3b603066 8563 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6
VZ
8564 u32 reset_code;
8565
8566 /* Wait until tx fastpath tasks complete */
8567 for_each_tx_queue(bp, i) {
8568 struct bnx2x_fastpath *fp = &bp->fp[i];
8569
6383c0b3 8570 for_each_cos_in_tx_queue(fp, cos)
65565884 8571 rc = bnx2x_clean_tx_queue(bp, fp->txdata_ptr[cos]);
619c5cb6
VZ
8572#ifdef BNX2X_STOP_ON_ERROR
8573 if (rc)
8574 return;
8575#endif
8576 }
8577
8578 /* Give HW time to discard old tx messages */
8579 usleep_range(1000, 1000);
8580
8581 /* Clean all ETH MACs */
15192a8c
BW
8582 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_ETH_MAC,
8583 false);
619c5cb6
VZ
8584 if (rc < 0)
8585 BNX2X_ERR("Failed to delete all ETH macs: %d\n", rc);
8586
8587 /* Clean up UC list */
15192a8c 8588 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_UC_LIST_MAC,
619c5cb6
VZ
8589 true);
8590 if (rc < 0)
51c1a580
MS
8591 BNX2X_ERR("Failed to schedule DEL commands for UC MACs list: %d\n",
8592 rc);
619c5cb6
VZ
8593
8594 /* Disable LLH */
8595 if (!CHIP_IS_E1(bp))
8596 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
8597
8598 /* Set "drop all" (stop Rx).
8599 * We need to take a netif_addr_lock() here in order to prevent
8600 * a race between the completion code and this code.
8601 */
8602 netif_addr_lock_bh(bp->dev);
8603 /* Schedule the rx_mode command */
8604 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
8605 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
8606 else
8607 bnx2x_set_storm_rx_mode(bp);
8608
8609 /* Cleanup multicast configuration */
8610 rparam.mcast_obj = &bp->mcast_obj;
8611 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
8612 if (rc < 0)
8613 BNX2X_ERR("Failed to send DEL multicast command: %d\n", rc);
8614
8615 netif_addr_unlock_bh(bp->dev);
8616
8617
6debea87
DK
8618
8619 /*
8620 * Send the UNLOAD_REQUEST to the MCP. This will return if
8621 * this function should perform FUNC, PORT or COMMON HW
8622 * reset.
8623 */
8624 reset_code = bnx2x_send_unload_req(bp, unload_mode);
8625
8626 /*
8627 * (assumption: No Attention from MCP at this stage)
8628 * PMF probably in the middle of TXdisable/enable transaction
8629 */
8630 rc = bnx2x_func_wait_started(bp);
8631 if (rc) {
8632 BNX2X_ERR("bnx2x_func_wait_started failed\n");
8633#ifdef BNX2X_STOP_ON_ERROR
8634 return;
8635#endif
8636 }
8637
34f80b04 8638 /* Close multi and leading connections
619c5cb6
VZ
8639 * Completions for ramrods are collected in a synchronous way
8640 */
55c11941 8641 for_each_eth_queue(bp, i)
619c5cb6 8642 if (bnx2x_stop_queue(bp, i))
523224a3
DK
8643#ifdef BNX2X_STOP_ON_ERROR
8644 return;
8645#else
228241eb 8646 goto unload_error;
523224a3 8647#endif
55c11941
MS
8648
8649 if (CNIC_LOADED(bp)) {
8650 for_each_cnic_queue(bp, i)
8651 if (bnx2x_stop_queue(bp, i))
8652#ifdef BNX2X_STOP_ON_ERROR
8653 return;
8654#else
8655 goto unload_error;
8656#endif
8657 }
8658
619c5cb6
VZ
8659 /* If SP settings didn't get completed so far - something
8660 * very wrong has happen.
8661 */
8662 if (!bnx2x_wait_sp_comp(bp, ~0x0UL))
8663 BNX2X_ERR("Hmmm... Common slow path ramrods got stuck!\n");
a2fbb9ea 8664
619c5cb6
VZ
8665#ifndef BNX2X_STOP_ON_ERROR
8666unload_error:
8667#endif
523224a3 8668 rc = bnx2x_func_stop(bp);
da5a662a 8669 if (rc) {
523224a3 8670 BNX2X_ERR("Function stop failed!\n");
da5a662a 8671#ifdef BNX2X_STOP_ON_ERROR
523224a3 8672 return;
523224a3 8673#endif
34f80b04 8674 }
a2fbb9ea 8675
523224a3
DK
8676 /* Disable HW interrupts, NAPI */
8677 bnx2x_netif_stop(bp, 1);
26614ba5
MS
8678 /* Delete all NAPI objects */
8679 bnx2x_del_all_napi(bp);
55c11941
MS
8680 if (CNIC_LOADED(bp))
8681 bnx2x_del_all_napi_cnic(bp);
523224a3
DK
8682
8683 /* Release IRQs */
d6214d7a 8684 bnx2x_free_irq(bp);
523224a3 8685
a2fbb9ea 8686 /* Reset the chip */
619c5cb6
VZ
8687 rc = bnx2x_reset_hw(bp, reset_code);
8688 if (rc)
8689 BNX2X_ERR("HW_RESET failed\n");
a2fbb9ea 8690
356e2385 8691
619c5cb6 8692 /* Report UNLOAD_DONE to MCP */
5d07d868 8693 bnx2x_send_unload_done(bp, keep_link);
72fd0718
VZ
8694}
8695
9f6c9258 8696void bnx2x_disable_close_the_gate(struct bnx2x *bp)
72fd0718
VZ
8697{
8698 u32 val;
8699
51c1a580 8700 DP(NETIF_MSG_IFDOWN, "Disabling \"close the gates\"\n");
72fd0718
VZ
8701
8702 if (CHIP_IS_E1(bp)) {
8703 int port = BP_PORT(bp);
8704 u32 addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
8705 MISC_REG_AEU_MASK_ATTN_FUNC_0;
8706
8707 val = REG_RD(bp, addr);
8708 val &= ~(0x300);
8709 REG_WR(bp, addr, val);
619c5cb6 8710 } else {
72fd0718
VZ
8711 val = REG_RD(bp, MISC_REG_AEU_GENERAL_MASK);
8712 val &= ~(MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK |
8713 MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK);
8714 REG_WR(bp, MISC_REG_AEU_GENERAL_MASK, val);
8715 }
8716}
8717
72fd0718
VZ
8718/* Close gates #2, #3 and #4: */
8719static void bnx2x_set_234_gates(struct bnx2x *bp, bool close)
8720{
c9ee9206 8721 u32 val;
72fd0718
VZ
8722
8723 /* Gates #2 and #4a are closed/opened for "not E1" only */
8724 if (!CHIP_IS_E1(bp)) {
8725 /* #4 */
c9ee9206 8726 REG_WR(bp, PXP_REG_HST_DISCARD_DOORBELLS, !!close);
72fd0718 8727 /* #2 */
c9ee9206 8728 REG_WR(bp, PXP_REG_HST_DISCARD_INTERNAL_WRITES, !!close);
72fd0718
VZ
8729 }
8730
8731 /* #3 */
c9ee9206
VZ
8732 if (CHIP_IS_E1x(bp)) {
8733 /* Prevent interrupts from HC on both ports */
8734 val = REG_RD(bp, HC_REG_CONFIG_1);
8735 REG_WR(bp, HC_REG_CONFIG_1,
8736 (!close) ? (val | HC_CONFIG_1_REG_BLOCK_DISABLE_1) :
8737 (val & ~(u32)HC_CONFIG_1_REG_BLOCK_DISABLE_1));
8738
8739 val = REG_RD(bp, HC_REG_CONFIG_0);
8740 REG_WR(bp, HC_REG_CONFIG_0,
8741 (!close) ? (val | HC_CONFIG_0_REG_BLOCK_DISABLE_0) :
8742 (val & ~(u32)HC_CONFIG_0_REG_BLOCK_DISABLE_0));
8743 } else {
8744 /* Prevent incomming interrupts in IGU */
8745 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
8746
8747 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION,
8748 (!close) ?
8749 (val | IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE) :
8750 (val & ~(u32)IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE));
8751 }
72fd0718 8752
51c1a580 8753 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "%s gates #2, #3 and #4\n",
72fd0718
VZ
8754 close ? "closing" : "opening");
8755 mmiowb();
8756}
8757
8758#define SHARED_MF_CLP_MAGIC 0x80000000 /* `magic' bit */
8759
8760static void bnx2x_clp_reset_prep(struct bnx2x *bp, u32 *magic_val)
8761{
8762 /* Do some magic... */
8763 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8764 *magic_val = val & SHARED_MF_CLP_MAGIC;
8765 MF_CFG_WR(bp, shared_mf_config.clp_mb, val | SHARED_MF_CLP_MAGIC);
8766}
8767
e8920674
DK
8768/**
8769 * bnx2x_clp_reset_done - restore the value of the `magic' bit.
72fd0718 8770 *
e8920674
DK
8771 * @bp: driver handle
8772 * @magic_val: old value of the `magic' bit.
72fd0718
VZ
8773 */
8774static void bnx2x_clp_reset_done(struct bnx2x *bp, u32 magic_val)
8775{
8776 /* Restore the `magic' bit value... */
72fd0718
VZ
8777 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8778 MF_CFG_WR(bp, shared_mf_config.clp_mb,
8779 (val & (~SHARED_MF_CLP_MAGIC)) | magic_val);
8780}
8781
f85582f8 8782/**
e8920674 8783 * bnx2x_reset_mcp_prep - prepare for MCP reset.
72fd0718 8784 *
e8920674
DK
8785 * @bp: driver handle
8786 * @magic_val: old value of 'magic' bit.
8787 *
8788 * Takes care of CLP configurations.
72fd0718
VZ
8789 */
8790static void bnx2x_reset_mcp_prep(struct bnx2x *bp, u32 *magic_val)
8791{
8792 u32 shmem;
8793 u32 validity_offset;
8794
51c1a580 8795 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "Starting\n");
72fd0718
VZ
8796
8797 /* Set `magic' bit in order to save MF config */
8798 if (!CHIP_IS_E1(bp))
8799 bnx2x_clp_reset_prep(bp, magic_val);
8800
8801 /* Get shmem offset */
8802 shmem = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
c55e771b
BW
8803 validity_offset =
8804 offsetof(struct shmem_region, validity_map[BP_PORT(bp)]);
72fd0718
VZ
8805
8806 /* Clear validity map flags */
8807 if (shmem > 0)
8808 REG_WR(bp, shmem + validity_offset, 0);
8809}
8810
8811#define MCP_TIMEOUT 5000 /* 5 seconds (in ms) */
8812#define MCP_ONE_TIMEOUT 100 /* 100 ms */
8813
e8920674
DK
8814/**
8815 * bnx2x_mcp_wait_one - wait for MCP_ONE_TIMEOUT
72fd0718 8816 *
e8920674 8817 * @bp: driver handle
72fd0718 8818 */
1191cb83 8819static void bnx2x_mcp_wait_one(struct bnx2x *bp)
72fd0718
VZ
8820{
8821 /* special handling for emulation and FPGA,
8822 wait 10 times longer */
8823 if (CHIP_REV_IS_SLOW(bp))
8824 msleep(MCP_ONE_TIMEOUT*10);
8825 else
8826 msleep(MCP_ONE_TIMEOUT);
8827}
8828
1b6e2ceb
DK
8829/*
8830 * initializes bp->common.shmem_base and waits for validity signature to appear
8831 */
8832static int bnx2x_init_shmem(struct bnx2x *bp)
72fd0718 8833{
1b6e2ceb
DK
8834 int cnt = 0;
8835 u32 val = 0;
72fd0718 8836
1b6e2ceb
DK
8837 do {
8838 bp->common.shmem_base = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
8839 if (bp->common.shmem_base) {
8840 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
8841 if (val & SHR_MEM_VALIDITY_MB)
8842 return 0;
8843 }
72fd0718 8844
1b6e2ceb 8845 bnx2x_mcp_wait_one(bp);
72fd0718 8846
1b6e2ceb 8847 } while (cnt++ < (MCP_TIMEOUT / MCP_ONE_TIMEOUT));
72fd0718 8848
1b6e2ceb 8849 BNX2X_ERR("BAD MCP validity signature\n");
72fd0718 8850
1b6e2ceb
DK
8851 return -ENODEV;
8852}
72fd0718 8853
1b6e2ceb
DK
8854static int bnx2x_reset_mcp_comp(struct bnx2x *bp, u32 magic_val)
8855{
8856 int rc = bnx2x_init_shmem(bp);
72fd0718 8857
72fd0718
VZ
8858 /* Restore the `magic' bit value */
8859 if (!CHIP_IS_E1(bp))
8860 bnx2x_clp_reset_done(bp, magic_val);
8861
8862 return rc;
8863}
8864
8865static void bnx2x_pxp_prep(struct bnx2x *bp)
8866{
8867 if (!CHIP_IS_E1(bp)) {
8868 REG_WR(bp, PXP2_REG_RD_START_INIT, 0);
8869 REG_WR(bp, PXP2_REG_RQ_RBC_DONE, 0);
72fd0718
VZ
8870 mmiowb();
8871 }
8872}
8873
8874/*
8875 * Reset the whole chip except for:
8876 * - PCIE core
8877 * - PCI Glue, PSWHST, PXP/PXP2 RF (all controlled by
8878 * one reset bit)
8879 * - IGU
8880 * - MISC (including AEU)
8881 * - GRC
8882 * - RBCN, RBCP
8883 */
c9ee9206 8884static void bnx2x_process_kill_chip_reset(struct bnx2x *bp, bool global)
72fd0718
VZ
8885{
8886 u32 not_reset_mask1, reset_mask1, not_reset_mask2, reset_mask2;
8736c826 8887 u32 global_bits2, stay_reset2;
c9ee9206
VZ
8888
8889 /*
8890 * Bits that have to be set in reset_mask2 if we want to reset 'global'
8891 * (per chip) blocks.
8892 */
8893 global_bits2 =
8894 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CPU |
8895 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CORE;
72fd0718 8896
c55e771b
BW
8897 /* Don't reset the following blocks.
8898 * Important: per port blocks (such as EMAC, BMAC, UMAC) can't be
8899 * reset, as in 4 port device they might still be owned
8900 * by the MCP (there is only one leader per path).
8901 */
72fd0718
VZ
8902 not_reset_mask1 =
8903 MISC_REGISTERS_RESET_REG_1_RST_HC |
8904 MISC_REGISTERS_RESET_REG_1_RST_PXPV |
8905 MISC_REGISTERS_RESET_REG_1_RST_PXP;
8906
8907 not_reset_mask2 =
c9ee9206 8908 MISC_REGISTERS_RESET_REG_2_RST_PCI_MDIO |
72fd0718
VZ
8909 MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE |
8910 MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE |
8911 MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE |
8912 MISC_REGISTERS_RESET_REG_2_RST_RBCN |
8913 MISC_REGISTERS_RESET_REG_2_RST_GRC |
8914 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE |
8736c826
VZ
8915 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B |
8916 MISC_REGISTERS_RESET_REG_2_RST_ATC |
c55e771b
BW
8917 MISC_REGISTERS_RESET_REG_2_PGLC |
8918 MISC_REGISTERS_RESET_REG_2_RST_BMAC0 |
8919 MISC_REGISTERS_RESET_REG_2_RST_BMAC1 |
8920 MISC_REGISTERS_RESET_REG_2_RST_EMAC0 |
8921 MISC_REGISTERS_RESET_REG_2_RST_EMAC1 |
8922 MISC_REGISTERS_RESET_REG_2_UMAC0 |
8923 MISC_REGISTERS_RESET_REG_2_UMAC1;
72fd0718 8924
8736c826
VZ
8925 /*
8926 * Keep the following blocks in reset:
8927 * - all xxMACs are handled by the bnx2x_link code.
8928 */
8929 stay_reset2 =
8736c826
VZ
8930 MISC_REGISTERS_RESET_REG_2_XMAC |
8931 MISC_REGISTERS_RESET_REG_2_XMAC_SOFT;
8932
8933 /* Full reset masks according to the chip */
72fd0718
VZ
8934 reset_mask1 = 0xffffffff;
8935
8936 if (CHIP_IS_E1(bp))
8937 reset_mask2 = 0xffff;
8736c826 8938 else if (CHIP_IS_E1H(bp))
72fd0718 8939 reset_mask2 = 0x1ffff;
8736c826
VZ
8940 else if (CHIP_IS_E2(bp))
8941 reset_mask2 = 0xfffff;
8942 else /* CHIP_IS_E3 */
8943 reset_mask2 = 0x3ffffff;
c9ee9206
VZ
8944
8945 /* Don't reset global blocks unless we need to */
8946 if (!global)
8947 reset_mask2 &= ~global_bits2;
8948
8949 /*
8950 * In case of attention in the QM, we need to reset PXP
8951 * (MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR) before QM
8952 * because otherwise QM reset would release 'close the gates' shortly
8953 * before resetting the PXP, then the PSWRQ would send a write
8954 * request to PGLUE. Then when PXP is reset, PGLUE would try to
8955 * read the payload data from PSWWR, but PSWWR would not
8956 * respond. The write queue in PGLUE would stuck, dmae commands
8957 * would not return. Therefore it's important to reset the second
8958 * reset register (containing the
8959 * MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR bit) before the
8960 * first one (containing the MISC_REGISTERS_RESET_REG_1_RST_QM
8961 * bit).
8962 */
72fd0718
VZ
8963 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR,
8964 reset_mask2 & (~not_reset_mask2));
8965
c9ee9206
VZ
8966 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
8967 reset_mask1 & (~not_reset_mask1));
8968
72fd0718
VZ
8969 barrier();
8970 mmiowb();
8971
8736c826
VZ
8972 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET,
8973 reset_mask2 & (~stay_reset2));
8974
8975 barrier();
8976 mmiowb();
8977
c9ee9206 8978 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, reset_mask1);
72fd0718
VZ
8979 mmiowb();
8980}
8981
c9ee9206
VZ
8982/**
8983 * bnx2x_er_poll_igu_vq - poll for pending writes bit.
8984 * It should get cleared in no more than 1s.
8985 *
8986 * @bp: driver handle
8987 *
8988 * It should get cleared in no more than 1s. Returns 0 if
8989 * pending writes bit gets cleared.
8990 */
8991static int bnx2x_er_poll_igu_vq(struct bnx2x *bp)
8992{
8993 u32 cnt = 1000;
8994 u32 pend_bits = 0;
8995
8996 do {
8997 pend_bits = REG_RD(bp, IGU_REG_PENDING_BITS_STATUS);
8998
8999 if (pend_bits == 0)
9000 break;
9001
9002 usleep_range(1000, 1000);
9003 } while (cnt-- > 0);
9004
9005 if (cnt <= 0) {
9006 BNX2X_ERR("Still pending IGU requests pend_bits=%x!\n",
9007 pend_bits);
9008 return -EBUSY;
9009 }
9010
9011 return 0;
9012}
9013
9014static int bnx2x_process_kill(struct bnx2x *bp, bool global)
72fd0718
VZ
9015{
9016 int cnt = 1000;
9017 u32 val = 0;
9018 u32 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1, pgl_exp_rom2;
c55e771b 9019 u32 tags_63_32 = 0;
72fd0718
VZ
9020
9021
9022 /* Empty the Tetris buffer, wait for 1s */
9023 do {
9024 sr_cnt = REG_RD(bp, PXP2_REG_RD_SR_CNT);
9025 blk_cnt = REG_RD(bp, PXP2_REG_RD_BLK_CNT);
9026 port_is_idle_0 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_0);
9027 port_is_idle_1 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_1);
9028 pgl_exp_rom2 = REG_RD(bp, PXP2_REG_PGL_EXP_ROM2);
c55e771b
BW
9029 if (CHIP_IS_E3(bp))
9030 tags_63_32 = REG_RD(bp, PGLUE_B_REG_TAGS_63_32);
9031
72fd0718
VZ
9032 if ((sr_cnt == 0x7e) && (blk_cnt == 0xa0) &&
9033 ((port_is_idle_0 & 0x1) == 0x1) &&
9034 ((port_is_idle_1 & 0x1) == 0x1) &&
c55e771b
BW
9035 (pgl_exp_rom2 == 0xffffffff) &&
9036 (!CHIP_IS_E3(bp) || (tags_63_32 == 0xffffffff)))
72fd0718 9037 break;
c9ee9206 9038 usleep_range(1000, 1000);
72fd0718
VZ
9039 } while (cnt-- > 0);
9040
9041 if (cnt <= 0) {
51c1a580
MS
9042 BNX2X_ERR("Tetris buffer didn't get empty or there are still outstanding read requests after 1s!\n");
9043 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
9044 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1,
9045 pgl_exp_rom2);
9046 return -EAGAIN;
9047 }
9048
9049 barrier();
9050
9051 /* Close gates #2, #3 and #4 */
9052 bnx2x_set_234_gates(bp, true);
9053
c9ee9206
VZ
9054 /* Poll for IGU VQs for 57712 and newer chips */
9055 if (!CHIP_IS_E1x(bp) && bnx2x_er_poll_igu_vq(bp))
9056 return -EAGAIN;
9057
9058
72fd0718
VZ
9059 /* TBD: Indicate that "process kill" is in progress to MCP */
9060
9061 /* Clear "unprepared" bit */
9062 REG_WR(bp, MISC_REG_UNPREPARED, 0);
9063 barrier();
9064
9065 /* Make sure all is written to the chip before the reset */
9066 mmiowb();
9067
9068 /* Wait for 1ms to empty GLUE and PCI-E core queues,
9069 * PSWHST, GRC and PSWRD Tetris buffer.
9070 */
c9ee9206 9071 usleep_range(1000, 1000);
72fd0718
VZ
9072
9073 /* Prepare to chip reset: */
9074 /* MCP */
c9ee9206
VZ
9075 if (global)
9076 bnx2x_reset_mcp_prep(bp, &val);
72fd0718
VZ
9077
9078 /* PXP */
9079 bnx2x_pxp_prep(bp);
9080 barrier();
9081
9082 /* reset the chip */
c9ee9206 9083 bnx2x_process_kill_chip_reset(bp, global);
72fd0718
VZ
9084 barrier();
9085
9086 /* Recover after reset: */
9087 /* MCP */
c9ee9206 9088 if (global && bnx2x_reset_mcp_comp(bp, val))
72fd0718
VZ
9089 return -EAGAIN;
9090
c9ee9206
VZ
9091 /* TBD: Add resetting the NO_MCP mode DB here */
9092
72fd0718
VZ
9093 /* Open the gates #2, #3 and #4 */
9094 bnx2x_set_234_gates(bp, false);
9095
9096 /* TBD: IGU/AEU preparation bring back the AEU/IGU to a
9097 * reset state, re-enable attentions. */
9098
a2fbb9ea
ET
9099 return 0;
9100}
9101
910cc727 9102static int bnx2x_leader_reset(struct bnx2x *bp)
72fd0718
VZ
9103{
9104 int rc = 0;
c9ee9206 9105 bool global = bnx2x_reset_is_global(bp);
95c6c616
AE
9106 u32 load_code;
9107
9108 /* if not going to reset MCP - load "fake" driver to reset HW while
9109 * driver is owner of the HW
9110 */
9111 if (!global && !BP_NOMCP(bp)) {
5d07d868
YM
9112 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ,
9113 DRV_MSG_CODE_LOAD_REQ_WITH_LFA);
95c6c616
AE
9114 if (!load_code) {
9115 BNX2X_ERR("MCP response failure, aborting\n");
9116 rc = -EAGAIN;
9117 goto exit_leader_reset;
9118 }
9119 if ((load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) &&
9120 (load_code != FW_MSG_CODE_DRV_LOAD_COMMON)) {
9121 BNX2X_ERR("MCP unexpected resp, aborting\n");
9122 rc = -EAGAIN;
9123 goto exit_leader_reset2;
9124 }
9125 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
9126 if (!load_code) {
9127 BNX2X_ERR("MCP response failure, aborting\n");
9128 rc = -EAGAIN;
9129 goto exit_leader_reset2;
9130 }
9131 }
c9ee9206 9132
72fd0718 9133 /* Try to recover after the failure */
c9ee9206 9134 if (bnx2x_process_kill(bp, global)) {
51c1a580
MS
9135 BNX2X_ERR("Something bad had happen on engine %d! Aii!\n",
9136 BP_PATH(bp));
72fd0718 9137 rc = -EAGAIN;
95c6c616 9138 goto exit_leader_reset2;
72fd0718
VZ
9139 }
9140
c9ee9206
VZ
9141 /*
9142 * Clear RESET_IN_PROGRES and RESET_GLOBAL bits and update the driver
9143 * state.
9144 */
72fd0718 9145 bnx2x_set_reset_done(bp);
c9ee9206
VZ
9146 if (global)
9147 bnx2x_clear_reset_global(bp);
72fd0718 9148
95c6c616
AE
9149exit_leader_reset2:
9150 /* unload "fake driver" if it was loaded */
9151 if (!global && !BP_NOMCP(bp)) {
9152 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
9153 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
9154 }
72fd0718
VZ
9155exit_leader_reset:
9156 bp->is_leader = 0;
c9ee9206
VZ
9157 bnx2x_release_leader_lock(bp);
9158 smp_mb();
72fd0718
VZ
9159 return rc;
9160}
9161
1191cb83 9162static void bnx2x_recovery_failed(struct bnx2x *bp)
c9ee9206
VZ
9163{
9164 netdev_err(bp->dev, "Recovery has failed. Power cycle is needed.\n");
9165
9166 /* Disconnect this device */
9167 netif_device_detach(bp->dev);
9168
9169 /*
9170 * Block ifup for all function on this engine until "process kill"
9171 * or power cycle.
9172 */
9173 bnx2x_set_reset_in_progress(bp);
9174
9175 /* Shut down the power */
9176 bnx2x_set_power_state(bp, PCI_D3hot);
9177
9178 bp->recovery_state = BNX2X_RECOVERY_FAILED;
9179
9180 smp_mb();
9181}
9182
9183/*
9184 * Assumption: runs under rtnl lock. This together with the fact
6383c0b3 9185 * that it's called only from bnx2x_sp_rtnl() ensure that it
72fd0718
VZ
9186 * will never be called when netif_running(bp->dev) is false.
9187 */
9188static void bnx2x_parity_recover(struct bnx2x *bp)
9189{
c9ee9206 9190 bool global = false;
7a752993 9191 u32 error_recovered, error_unrecovered;
95c6c616 9192 bool is_parity;
c9ee9206 9193
72fd0718
VZ
9194 DP(NETIF_MSG_HW, "Handling parity\n");
9195 while (1) {
9196 switch (bp->recovery_state) {
9197 case BNX2X_RECOVERY_INIT:
9198 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_INIT\n");
95c6c616
AE
9199 is_parity = bnx2x_chk_parity_attn(bp, &global, false);
9200 WARN_ON(!is_parity);
c9ee9206 9201
72fd0718 9202 /* Try to get a LEADER_LOCK HW lock */
c9ee9206
VZ
9203 if (bnx2x_trylock_leader_lock(bp)) {
9204 bnx2x_set_reset_in_progress(bp);
9205 /*
9206 * Check if there is a global attention and if
9207 * there was a global attention, set the global
9208 * reset bit.
9209 */
9210
9211 if (global)
9212 bnx2x_set_reset_global(bp);
9213
72fd0718 9214 bp->is_leader = 1;
c9ee9206 9215 }
72fd0718
VZ
9216
9217 /* Stop the driver */
9218 /* If interface has been removed - break */
5d07d868 9219 if (bnx2x_nic_unload(bp, UNLOAD_RECOVERY, false))
72fd0718
VZ
9220 return;
9221
9222 bp->recovery_state = BNX2X_RECOVERY_WAIT;
c9ee9206 9223
c9ee9206
VZ
9224 /* Ensure "is_leader", MCP command sequence and
9225 * "recovery_state" update values are seen on other
9226 * CPUs.
72fd0718 9227 */
c9ee9206 9228 smp_mb();
72fd0718
VZ
9229 break;
9230
9231 case BNX2X_RECOVERY_WAIT:
9232 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_WAIT\n");
9233 if (bp->is_leader) {
c9ee9206 9234 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3
AE
9235 bool other_load_status =
9236 bnx2x_get_load_status(bp, other_engine);
9237 bool load_status =
9238 bnx2x_get_load_status(bp, BP_PATH(bp));
c9ee9206
VZ
9239 global = bnx2x_reset_is_global(bp);
9240
9241 /*
9242 * In case of a parity in a global block, let
9243 * the first leader that performs a
9244 * leader_reset() reset the global blocks in
9245 * order to clear global attentions. Otherwise
9246 * the the gates will remain closed for that
9247 * engine.
9248 */
889b9af3
AE
9249 if (load_status ||
9250 (global && other_load_status)) {
72fd0718
VZ
9251 /* Wait until all other functions get
9252 * down.
9253 */
7be08a72 9254 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9255 HZ/10);
9256 return;
9257 } else {
9258 /* If all other functions got down -
9259 * try to bring the chip back to
9260 * normal. In any case it's an exit
9261 * point for a leader.
9262 */
c9ee9206
VZ
9263 if (bnx2x_leader_reset(bp)) {
9264 bnx2x_recovery_failed(bp);
72fd0718
VZ
9265 return;
9266 }
9267
c9ee9206
VZ
9268 /* If we are here, means that the
9269 * leader has succeeded and doesn't
9270 * want to be a leader any more. Try
9271 * to continue as a none-leader.
9272 */
9273 break;
72fd0718
VZ
9274 }
9275 } else { /* non-leader */
c9ee9206 9276 if (!bnx2x_reset_is_done(bp, BP_PATH(bp))) {
72fd0718
VZ
9277 /* Try to get a LEADER_LOCK HW lock as
9278 * long as a former leader may have
9279 * been unloaded by the user or
9280 * released a leadership by another
9281 * reason.
9282 */
c9ee9206 9283 if (bnx2x_trylock_leader_lock(bp)) {
72fd0718
VZ
9284 /* I'm a leader now! Restart a
9285 * switch case.
9286 */
9287 bp->is_leader = 1;
9288 break;
9289 }
9290
7be08a72 9291 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9292 HZ/10);
9293 return;
9294
c9ee9206
VZ
9295 } else {
9296 /*
9297 * If there was a global attention, wait
9298 * for it to be cleared.
9299 */
9300 if (bnx2x_reset_is_global(bp)) {
9301 schedule_delayed_work(
7be08a72
AE
9302 &bp->sp_rtnl_task,
9303 HZ/10);
c9ee9206
VZ
9304 return;
9305 }
9306
7a752993
AE
9307 error_recovered =
9308 bp->eth_stats.recoverable_error;
9309 error_unrecovered =
9310 bp->eth_stats.unrecoverable_error;
95c6c616
AE
9311 bp->recovery_state =
9312 BNX2X_RECOVERY_NIC_LOADING;
9313 if (bnx2x_nic_load(bp, LOAD_NORMAL)) {
7a752993 9314 error_unrecovered++;
95c6c616 9315 netdev_err(bp->dev,
51c1a580 9316 "Recovery failed. Power cycle needed\n");
95c6c616
AE
9317 /* Disconnect this device */
9318 netif_device_detach(bp->dev);
9319 /* Shut down the power */
9320 bnx2x_set_power_state(
9321 bp, PCI_D3hot);
9322 smp_mb();
9323 } else {
c9ee9206
VZ
9324 bp->recovery_state =
9325 BNX2X_RECOVERY_DONE;
7a752993 9326 error_recovered++;
c9ee9206
VZ
9327 smp_mb();
9328 }
7a752993
AE
9329 bp->eth_stats.recoverable_error =
9330 error_recovered;
9331 bp->eth_stats.unrecoverable_error =
9332 error_unrecovered;
c9ee9206 9333
72fd0718
VZ
9334 return;
9335 }
9336 }
9337 default:
9338 return;
9339 }
9340 }
9341}
9342
56ad3152
MS
9343static int bnx2x_close(struct net_device *dev);
9344
72fd0718
VZ
9345/* bnx2x_nic_unload() flushes the bnx2x_wq, thus reset task is
9346 * scheduled on a general queue in order to prevent a dead lock.
9347 */
7be08a72 9348static void bnx2x_sp_rtnl_task(struct work_struct *work)
34f80b04 9349{
7be08a72 9350 struct bnx2x *bp = container_of(work, struct bnx2x, sp_rtnl_task.work);
34f80b04
EG
9351
9352 rtnl_lock();
9353
9354 if (!netif_running(bp->dev))
7be08a72
AE
9355 goto sp_rtnl_exit;
9356
9357 /* if stop on error is defined no recovery flows should be executed */
9358#ifdef BNX2X_STOP_ON_ERROR
51c1a580 9359 BNX2X_ERR("recovery flow called but STOP_ON_ERROR defined so reset not done to allow debug dump,\n"
7be08a72 9360 "you will need to reboot when done\n");
b1fb8740 9361 goto sp_rtnl_not_reset;
7be08a72 9362#endif
34f80b04 9363
7be08a72
AE
9364 if (unlikely(bp->recovery_state != BNX2X_RECOVERY_DONE)) {
9365 /*
b1fb8740
VZ
9366 * Clear all pending SP commands as we are going to reset the
9367 * function anyway.
7be08a72 9368 */
b1fb8740
VZ
9369 bp->sp_rtnl_state = 0;
9370 smp_mb();
9371
72fd0718 9372 bnx2x_parity_recover(bp);
b1fb8740
VZ
9373
9374 goto sp_rtnl_exit;
9375 }
9376
9377 if (test_and_clear_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state)) {
9378 /*
9379 * Clear all pending SP commands as we are going to reset the
9380 * function anyway.
9381 */
9382 bp->sp_rtnl_state = 0;
9383 smp_mb();
9384
5d07d868 9385 bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
72fd0718 9386 bnx2x_nic_load(bp, LOAD_NORMAL);
b1fb8740
VZ
9387
9388 goto sp_rtnl_exit;
72fd0718 9389 }
b1fb8740
VZ
9390#ifdef BNX2X_STOP_ON_ERROR
9391sp_rtnl_not_reset:
9392#endif
9393 if (test_and_clear_bit(BNX2X_SP_RTNL_SETUP_TC, &bp->sp_rtnl_state))
9394 bnx2x_setup_tc(bp->dev, bp->dcbx_port_params.ets.num_of_cos);
a3348722
BW
9395 if (test_and_clear_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE, &bp->sp_rtnl_state))
9396 bnx2x_after_function_update(bp);
8304859a
AE
9397 /*
9398 * in case of fan failure we need to reset id if the "stop on error"
9399 * debug flag is set, since we trying to prevent permanent overheating
9400 * damage
9401 */
9402 if (test_and_clear_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state)) {
51c1a580 9403 DP(NETIF_MSG_HW, "fan failure detected. Unloading driver\n");
8304859a
AE
9404 netif_device_detach(bp->dev);
9405 bnx2x_close(bp->dev);
9406 }
9407
381ac16b
AE
9408 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_MCAST, &bp->sp_rtnl_state)) {
9409 DP(BNX2X_MSG_SP,
9410 "sending set mcast vf pf channel message from rtnl sp-task\n");
9411 bnx2x_vfpf_set_mcast(bp->dev);
9412 }
9413
9414 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_STORM_RX_MODE,
9415 &bp->sp_rtnl_state)) {
9416 DP(BNX2X_MSG_SP,
9417 "sending set storm rx mode vf pf channel message from rtnl sp-task\n");
9418 bnx2x_vfpf_storm_rx_mode(bp);
9419 }
9420
7be08a72 9421sp_rtnl_exit:
34f80b04
EG
9422 rtnl_unlock();
9423}
9424
a2fbb9ea
ET
9425/* end of nic load/unload */
9426
3deb8167
YR
9427static void bnx2x_period_task(struct work_struct *work)
9428{
9429 struct bnx2x *bp = container_of(work, struct bnx2x, period_task.work);
9430
9431 if (!netif_running(bp->dev))
9432 goto period_task_exit;
9433
9434 if (CHIP_REV_IS_SLOW(bp)) {
9435 BNX2X_ERR("period task called on emulation, ignoring\n");
9436 goto period_task_exit;
9437 }
9438
9439 bnx2x_acquire_phy_lock(bp);
9440 /*
9441 * The barrier is needed to ensure the ordering between the writing to
9442 * the bp->port.pmf in the bnx2x_nic_load() or bnx2x_pmf_update() and
9443 * the reading here.
9444 */
9445 smp_mb();
9446 if (bp->port.pmf) {
9447 bnx2x_period_func(&bp->link_params, &bp->link_vars);
9448
9449 /* Re-queue task in 1 sec */
9450 queue_delayed_work(bnx2x_wq, &bp->period_task, 1*HZ);
9451 }
9452
9453 bnx2x_release_phy_lock(bp);
9454period_task_exit:
9455 return;
9456}
9457
a2fbb9ea
ET
9458/*
9459 * Init service functions
9460 */
9461
8d96286a 9462static u32 bnx2x_get_pretend_reg(struct bnx2x *bp)
f2e0899f
DK
9463{
9464 u32 base = PXP2_REG_PGL_PRETEND_FUNC_F0;
9465 u32 stride = PXP2_REG_PGL_PRETEND_FUNC_F1 - base;
9466 return base + (BP_ABS_FUNC(bp)) * stride;
f1ef27ef
EG
9467}
9468
f2e0899f 9469static void bnx2x_undi_int_disable_e1h(struct bnx2x *bp)
f1ef27ef 9470{
f2e0899f 9471 u32 reg = bnx2x_get_pretend_reg(bp);
f1ef27ef
EG
9472
9473 /* Flush all outstanding writes */
9474 mmiowb();
9475
9476 /* Pretend to be function 0 */
9477 REG_WR(bp, reg, 0);
f2e0899f 9478 REG_RD(bp, reg); /* Flush the GRC transaction (in the chip) */
f1ef27ef
EG
9479
9480 /* From now we are in the "like-E1" mode */
9481 bnx2x_int_disable(bp);
9482
9483 /* Flush all outstanding writes */
9484 mmiowb();
9485
f2e0899f
DK
9486 /* Restore the original function */
9487 REG_WR(bp, reg, BP_ABS_FUNC(bp));
9488 REG_RD(bp, reg);
f1ef27ef
EG
9489}
9490
f2e0899f 9491static inline void bnx2x_undi_int_disable(struct bnx2x *bp)
f1ef27ef 9492{
f2e0899f 9493 if (CHIP_IS_E1(bp))
f1ef27ef 9494 bnx2x_int_disable(bp);
f2e0899f
DK
9495 else
9496 bnx2x_undi_int_disable_e1h(bp);
f1ef27ef
EG
9497}
9498
0329aba1 9499static void bnx2x_prev_unload_close_mac(struct bnx2x *bp)
34f80b04 9500{
452427b0
YM
9501 u32 val, base_addr, offset, mask, reset_reg;
9502 bool mac_stopped = false;
9503 u8 port = BP_PORT(bp);
34f80b04 9504
452427b0 9505 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_2);
f16da43b 9506
452427b0
YM
9507 if (!CHIP_IS_E3(bp)) {
9508 val = REG_RD(bp, NIG_REG_BMAC0_REGS_OUT_EN + port * 4);
9509 mask = MISC_REGISTERS_RESET_REG_2_RST_BMAC0 << port;
9510 if ((mask & reset_reg) && val) {
9511 u32 wb_data[2];
9512 BNX2X_DEV_INFO("Disable bmac Rx\n");
9513 base_addr = BP_PORT(bp) ? NIG_REG_INGRESS_BMAC1_MEM
9514 : NIG_REG_INGRESS_BMAC0_MEM;
9515 offset = CHIP_IS_E2(bp) ? BIGMAC2_REGISTER_BMAC_CONTROL
9516 : BIGMAC_REGISTER_BMAC_CONTROL;
7a06a122 9517
452427b0
YM
9518 /*
9519 * use rd/wr since we cannot use dmae. This is safe
9520 * since MCP won't access the bus due to the request
9521 * to unload, and no function on the path can be
9522 * loaded at this time.
9523 */
9524 wb_data[0] = REG_RD(bp, base_addr + offset);
9525 wb_data[1] = REG_RD(bp, base_addr + offset + 0x4);
9526 wb_data[0] &= ~BMAC_CONTROL_RX_ENABLE;
9527 REG_WR(bp, base_addr + offset, wb_data[0]);
9528 REG_WR(bp, base_addr + offset + 0x4, wb_data[1]);
9529
9530 }
9531 BNX2X_DEV_INFO("Disable emac Rx\n");
9532 REG_WR(bp, NIG_REG_NIG_EMAC0_EN + BP_PORT(bp)*4, 0);
9533
9534 mac_stopped = true;
9535 } else {
9536 if (reset_reg & MISC_REGISTERS_RESET_REG_2_XMAC) {
9537 BNX2X_DEV_INFO("Disable xmac Rx\n");
9538 base_addr = BP_PORT(bp) ? GRCBASE_XMAC1 : GRCBASE_XMAC0;
9539 val = REG_RD(bp, base_addr + XMAC_REG_PFC_CTRL_HI);
9540 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9541 val & ~(1 << 1));
9542 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9543 val | (1 << 1));
9544 REG_WR(bp, base_addr + XMAC_REG_CTRL, 0);
9545 mac_stopped = true;
9546 }
9547 mask = MISC_REGISTERS_RESET_REG_2_UMAC0 << port;
9548 if (mask & reset_reg) {
9549 BNX2X_DEV_INFO("Disable umac Rx\n");
9550 base_addr = BP_PORT(bp) ? GRCBASE_UMAC1 : GRCBASE_UMAC0;
9551 REG_WR(bp, base_addr + UMAC_REG_COMMAND_CONFIG, 0);
9552 mac_stopped = true;
9553 }
9554 }
9555
9556 if (mac_stopped)
9557 msleep(20);
9558
9559}
9560
9561#define BNX2X_PREV_UNDI_PROD_ADDR(p) (BAR_TSTRORM_INTMEM + 0x1508 + ((p) << 4))
9562#define BNX2X_PREV_UNDI_RCQ(val) ((val) & 0xffff)
9563#define BNX2X_PREV_UNDI_BD(val) ((val) >> 16 & 0xffff)
9564#define BNX2X_PREV_UNDI_PROD(rcq, bd) ((bd) << 16 | (rcq))
9565
1dd06ae8 9566static void bnx2x_prev_unload_undi_inc(struct bnx2x *bp, u8 port, u8 inc)
452427b0
YM
9567{
9568 u16 rcq, bd;
9569 u32 tmp_reg = REG_RD(bp, BNX2X_PREV_UNDI_PROD_ADDR(port));
9570
9571 rcq = BNX2X_PREV_UNDI_RCQ(tmp_reg) + inc;
9572 bd = BNX2X_PREV_UNDI_BD(tmp_reg) + inc;
9573
9574 tmp_reg = BNX2X_PREV_UNDI_PROD(rcq, bd);
9575 REG_WR(bp, BNX2X_PREV_UNDI_PROD_ADDR(port), tmp_reg);
9576
9577 BNX2X_DEV_INFO("UNDI producer [%d] rings bd -> 0x%04x, rcq -> 0x%04x\n",
9578 port, bd, rcq);
9579}
9580
0329aba1 9581static int bnx2x_prev_mcp_done(struct bnx2x *bp)
452427b0 9582{
5d07d868
YM
9583 u32 rc = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE,
9584 DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET);
452427b0
YM
9585 if (!rc) {
9586 BNX2X_ERR("MCP response failure, aborting\n");
9587 return -EBUSY;
9588 }
9589
9590 return 0;
9591}
9592
c63da990
BW
9593static struct bnx2x_prev_path_list *
9594 bnx2x_prev_path_get_entry(struct bnx2x *bp)
9595{
9596 struct bnx2x_prev_path_list *tmp_list;
9597
9598 list_for_each_entry(tmp_list, &bnx2x_prev_list, list)
9599 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
9600 bp->pdev->bus->number == tmp_list->bus &&
9601 BP_PATH(bp) == tmp_list->path)
9602 return tmp_list;
9603
9604 return NULL;
9605}
9606
0329aba1 9607static bool bnx2x_prev_is_path_marked(struct bnx2x *bp)
452427b0
YM
9608{
9609 struct bnx2x_prev_path_list *tmp_list;
9610 int rc = false;
9611
9612 if (down_trylock(&bnx2x_prev_sem))
9613 return false;
9614
9615 list_for_each_entry(tmp_list, &bnx2x_prev_list, list) {
9616 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
9617 bp->pdev->bus->number == tmp_list->bus &&
9618 BP_PATH(bp) == tmp_list->path) {
9619 rc = true;
9620 BNX2X_DEV_INFO("Path %d was already cleaned from previous drivers\n",
9621 BP_PATH(bp));
9622 break;
9623 }
9624 }
9625
9626 up(&bnx2x_prev_sem);
9627
9628 return rc;
9629}
9630
c63da990 9631static int bnx2x_prev_mark_path(struct bnx2x *bp, bool after_undi)
452427b0
YM
9632{
9633 struct bnx2x_prev_path_list *tmp_list;
9634 int rc;
9635
ea4b3857 9636 tmp_list = kmalloc(sizeof(struct bnx2x_prev_path_list), GFP_KERNEL);
452427b0
YM
9637 if (!tmp_list) {
9638 BNX2X_ERR("Failed to allocate 'bnx2x_prev_path_list'\n");
9639 return -ENOMEM;
9640 }
9641
9642 tmp_list->bus = bp->pdev->bus->number;
9643 tmp_list->slot = PCI_SLOT(bp->pdev->devfn);
9644 tmp_list->path = BP_PATH(bp);
c63da990 9645 tmp_list->undi = after_undi ? (1 << BP_PORT(bp)) : 0;
452427b0
YM
9646
9647 rc = down_interruptible(&bnx2x_prev_sem);
9648 if (rc) {
9649 BNX2X_ERR("Received %d when tried to take lock\n", rc);
9650 kfree(tmp_list);
9651 } else {
9652 BNX2X_DEV_INFO("Marked path [%d] - finished previous unload\n",
9653 BP_PATH(bp));
9654 list_add(&tmp_list->list, &bnx2x_prev_list);
9655 up(&bnx2x_prev_sem);
9656 }
9657
9658 return rc;
9659}
9660
0329aba1 9661static int bnx2x_do_flr(struct bnx2x *bp)
452427b0 9662{
2a80eebc 9663 int i;
452427b0
YM
9664 u16 status;
9665 struct pci_dev *dev = bp->pdev;
9666
8eee694c
YM
9667
9668 if (CHIP_IS_E1x(bp)) {
9669 BNX2X_DEV_INFO("FLR not supported in E1/E1H\n");
9670 return -EINVAL;
9671 }
9672
9673 /* only bootcode REQ_BC_VER_4_INITIATE_FLR and onwards support flr */
9674 if (bp->common.bc_ver < REQ_BC_VER_4_INITIATE_FLR) {
9675 BNX2X_ERR("FLR not supported by BC_VER: 0x%x\n",
9676 bp->common.bc_ver);
9677 return -EINVAL;
9678 }
452427b0 9679
452427b0
YM
9680 /* Wait for Transaction Pending bit clean */
9681 for (i = 0; i < 4; i++) {
9682 if (i)
9683 msleep((1 << (i - 1)) * 100);
9684
2a80eebc 9685 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
452427b0
YM
9686 if (!(status & PCI_EXP_DEVSTA_TRPND))
9687 goto clear;
9688 }
9689
9690 dev_err(&dev->dev,
9691 "transaction is not cleared; proceeding with reset anyway\n");
9692
9693clear:
452427b0 9694
8eee694c 9695 BNX2X_DEV_INFO("Initiating FLR\n");
452427b0
YM
9696 bnx2x_fw_command(bp, DRV_MSG_CODE_INITIATE_FLR, 0);
9697
9698 return 0;
9699}
9700
0329aba1 9701static int bnx2x_prev_unload_uncommon(struct bnx2x *bp)
452427b0
YM
9702{
9703 int rc;
9704
9705 BNX2X_DEV_INFO("Uncommon unload Flow\n");
9706
9707 /* Test if previous unload process was already finished for this path */
9708 if (bnx2x_prev_is_path_marked(bp))
9709 return bnx2x_prev_mcp_done(bp);
9710
9711 /* If function has FLR capabilities, and existing FW version matches
9712 * the one required, then FLR will be sufficient to clean any residue
9713 * left by previous driver
9714 */
ad5afc89 9715 rc = bnx2x_nic_load_analyze_req(bp, FW_MSG_CODE_DRV_LOAD_FUNCTION);
8eee694c
YM
9716
9717 if (!rc) {
9718 /* fw version is good */
9719 BNX2X_DEV_INFO("FW version matches our own. Attempting FLR\n");
9720 rc = bnx2x_do_flr(bp);
9721 }
9722
9723 if (!rc) {
9724 /* FLR was performed */
9725 BNX2X_DEV_INFO("FLR successful\n");
9726 return 0;
9727 }
9728
9729 BNX2X_DEV_INFO("Could not FLR\n");
452427b0
YM
9730
9731 /* Close the MCP request, return failure*/
9732 rc = bnx2x_prev_mcp_done(bp);
9733 if (!rc)
9734 rc = BNX2X_PREV_WAIT_NEEDED;
9735
9736 return rc;
9737}
9738
0329aba1 9739static int bnx2x_prev_unload_common(struct bnx2x *bp)
452427b0
YM
9740{
9741 u32 reset_reg, tmp_reg = 0, rc;
c63da990 9742 bool prev_undi = false;
452427b0
YM
9743 /* It is possible a previous function received 'common' answer,
9744 * but hasn't loaded yet, therefore creating a scenario of
9745 * multiple functions receiving 'common' on the same path.
9746 */
9747 BNX2X_DEV_INFO("Common unload Flow\n");
9748
9749 if (bnx2x_prev_is_path_marked(bp))
9750 return bnx2x_prev_mcp_done(bp);
9751
9752 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
9753
9754 /* Reset should be performed after BRB is emptied */
9755 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_BRB1) {
9756 u32 timer_count = 1000;
452427b0
YM
9757
9758 /* Close the MAC Rx to prevent BRB from filling up */
9759 bnx2x_prev_unload_close_mac(bp);
9760
9761 /* Check if the UNDI driver was previously loaded
34f80b04
EG
9762 * UNDI driver initializes CID offset for normal bell to 0x7
9763 */
452427b0
YM
9764 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
9765 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_DORQ) {
9766 tmp_reg = REG_RD(bp, DORQ_REG_NORM_CID_OFST);
9767 if (tmp_reg == 0x7) {
9768 BNX2X_DEV_INFO("UNDI previously loaded\n");
9769 prev_undi = true;
9770 /* clear the UNDI indication */
9771 REG_WR(bp, DORQ_REG_NORM_CID_OFST, 0);
34f80b04 9772 }
452427b0
YM
9773 }
9774 /* wait until BRB is empty */
9775 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9776 while (timer_count) {
9777 u32 prev_brb = tmp_reg;
34f80b04 9778
452427b0
YM
9779 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9780 if (!tmp_reg)
9781 break;
619c5cb6 9782
452427b0 9783 BNX2X_DEV_INFO("BRB still has 0x%08x\n", tmp_reg);
619c5cb6 9784
452427b0
YM
9785 /* reset timer as long as BRB actually gets emptied */
9786 if (prev_brb > tmp_reg)
9787 timer_count = 1000;
9788 else
9789 timer_count--;
da5a662a 9790
452427b0
YM
9791 /* If UNDI resides in memory, manually increment it */
9792 if (prev_undi)
9793 bnx2x_prev_unload_undi_inc(bp, BP_PORT(bp), 1);
da5a662a 9794
452427b0 9795 udelay(10);
7a06a122 9796 }
452427b0
YM
9797
9798 if (!timer_count)
9799 BNX2X_ERR("Failed to empty BRB, hope for the best\n");
9800
34f80b04 9801 }
f16da43b 9802
452427b0
YM
9803 /* No packets are in the pipeline, path is ready for reset */
9804 bnx2x_reset_common(bp);
9805
c63da990 9806 rc = bnx2x_prev_mark_path(bp, prev_undi);
452427b0
YM
9807 if (rc) {
9808 bnx2x_prev_mcp_done(bp);
9809 return rc;
9810 }
9811
9812 return bnx2x_prev_mcp_done(bp);
9813}
9814
24f06716
AE
9815/* previous driver DMAE transaction may have occurred when pre-boot stage ended
9816 * and boot began, or when kdump kernel was loaded. Either case would invalidate
9817 * the addresses of the transaction, resulting in was-error bit set in the pci
9818 * causing all hw-to-host pcie transactions to timeout. If this happened we want
9819 * to clear the interrupt which detected this from the pglueb and the was done
9820 * bit
9821 */
0329aba1 9822static void bnx2x_prev_interrupted_dmae(struct bnx2x *bp)
24f06716 9823{
4a25417c
AE
9824 if (!CHIP_IS_E1x(bp)) {
9825 u32 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS);
9826 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN) {
9827 BNX2X_ERR("was error bit was found to be set in pglueb upon startup. Clearing");
9828 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR,
9829 1 << BP_FUNC(bp));
9830 }
24f06716
AE
9831 }
9832}
9833
0329aba1 9834static int bnx2x_prev_unload(struct bnx2x *bp)
452427b0
YM
9835{
9836 int time_counter = 10;
9837 u32 rc, fw, hw_lock_reg, hw_lock_val;
c63da990 9838 struct bnx2x_prev_path_list *prev_list;
452427b0
YM
9839 BNX2X_DEV_INFO("Entering Previous Unload Flow\n");
9840
24f06716
AE
9841 /* clear hw from errors which may have resulted from an interrupted
9842 * dmae transaction.
9843 */
9844 bnx2x_prev_interrupted_dmae(bp);
9845
9846 /* Release previously held locks */
452427b0
YM
9847 hw_lock_reg = (BP_FUNC(bp) <= 5) ?
9848 (MISC_REG_DRIVER_CONTROL_1 + BP_FUNC(bp) * 8) :
9849 (MISC_REG_DRIVER_CONTROL_7 + (BP_FUNC(bp) - 6) * 8);
9850
9851 hw_lock_val = (REG_RD(bp, hw_lock_reg));
9852 if (hw_lock_val) {
9853 if (hw_lock_val & HW_LOCK_RESOURCE_NVRAM) {
9854 BNX2X_DEV_INFO("Release Previously held NVRAM lock\n");
9855 REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
9856 (MCPR_NVM_SW_ARB_ARB_REQ_CLR1 << BP_PORT(bp)));
9857 }
9858
9859 BNX2X_DEV_INFO("Release Previously held hw lock\n");
9860 REG_WR(bp, hw_lock_reg, 0xffffffff);
9861 } else
9862 BNX2X_DEV_INFO("No need to release hw/nvram locks\n");
9863
9864 if (MCPR_ACCESS_LOCK_LOCK & REG_RD(bp, MCP_REG_MCPR_ACCESS_LOCK)) {
9865 BNX2X_DEV_INFO("Release previously held alr\n");
9866 REG_WR(bp, MCP_REG_MCPR_ACCESS_LOCK, 0);
9867 }
9868
9869
9870 do {
9871 /* Lock MCP using an unload request */
9872 fw = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS, 0);
9873 if (!fw) {
9874 BNX2X_ERR("MCP response failure, aborting\n");
9875 rc = -EBUSY;
9876 break;
9877 }
9878
9879 if (fw == FW_MSG_CODE_DRV_UNLOAD_COMMON) {
9880 rc = bnx2x_prev_unload_common(bp);
9881 break;
9882 }
9883
9884 /* non-common reply from MCP night require looping */
9885 rc = bnx2x_prev_unload_uncommon(bp);
9886 if (rc != BNX2X_PREV_WAIT_NEEDED)
9887 break;
9888
9889 msleep(20);
9890 } while (--time_counter);
9891
9892 if (!time_counter || rc) {
9893 BNX2X_ERR("Failed unloading previous driver, aborting\n");
9894 rc = -EBUSY;
9895 }
9896
c63da990
BW
9897 /* Mark function if its port was used to boot from SAN */
9898 prev_list = bnx2x_prev_path_get_entry(bp);
9899 if (prev_list && (prev_list->undi & (1 << BP_PORT(bp))))
9900 bp->link_params.feature_config_flags |=
9901 FEATURE_CONFIG_BOOT_FROM_SAN;
9902
452427b0
YM
9903 BNX2X_DEV_INFO("Finished Previous Unload Flow [%d]\n", rc);
9904
9905 return rc;
34f80b04
EG
9906}
9907
0329aba1 9908static void bnx2x_get_common_hwinfo(struct bnx2x *bp)
34f80b04 9909{
1d187b34 9910 u32 val, val2, val3, val4, id, boot_mode;
72ce58c3 9911 u16 pmc;
34f80b04
EG
9912
9913 /* Get the chip revision id and number. */
9914 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
9915 val = REG_RD(bp, MISC_REG_CHIP_NUM);
9916 id = ((val & 0xffff) << 16);
9917 val = REG_RD(bp, MISC_REG_CHIP_REV);
9918 id |= ((val & 0xf) << 12);
9919 val = REG_RD(bp, MISC_REG_CHIP_METAL);
9920 id |= ((val & 0xff) << 4);
5a40e08e 9921 val = REG_RD(bp, MISC_REG_BOND_ID);
34f80b04
EG
9922 id |= (val & 0xf);
9923 bp->common.chip_id = id;
523224a3 9924
7e8e02df
BW
9925 /* force 57811 according to MISC register */
9926 if (REG_RD(bp, MISC_REG_CHIP_TYPE) & MISC_REG_CHIP_TYPE_57811_MASK) {
9927 if (CHIP_IS_57810(bp))
9928 bp->common.chip_id = (CHIP_NUM_57811 << 16) |
9929 (bp->common.chip_id & 0x0000FFFF);
9930 else if (CHIP_IS_57810_MF(bp))
9931 bp->common.chip_id = (CHIP_NUM_57811_MF << 16) |
9932 (bp->common.chip_id & 0x0000FFFF);
9933 bp->common.chip_id |= 0x1;
9934 }
9935
523224a3
DK
9936 /* Set doorbell size */
9937 bp->db_size = (1 << BNX2X_DB_SHIFT);
9938
619c5cb6 9939 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
9940 val = REG_RD(bp, MISC_REG_PORT4MODE_EN_OVWR);
9941 if ((val & 1) == 0)
9942 val = REG_RD(bp, MISC_REG_PORT4MODE_EN);
9943 else
9944 val = (val >> 1) & 1;
9945 BNX2X_DEV_INFO("chip is in %s\n", val ? "4_PORT_MODE" :
9946 "2_PORT_MODE");
9947 bp->common.chip_port_mode = val ? CHIP_4_PORT_MODE :
9948 CHIP_2_PORT_MODE;
9949
9950 if (CHIP_MODE_IS_4_PORT(bp))
9951 bp->pfid = (bp->pf_num >> 1); /* 0..3 */
9952 else
9953 bp->pfid = (bp->pf_num & 0x6); /* 0, 2, 4, 6 */
9954 } else {
9955 bp->common.chip_port_mode = CHIP_PORT_MODE_NONE; /* N/A */
9956 bp->pfid = bp->pf_num; /* 0..7 */
9957 }
9958
51c1a580
MS
9959 BNX2X_DEV_INFO("pf_id: %x", bp->pfid);
9960
f2e0899f
DK
9961 bp->link_params.chip_id = bp->common.chip_id;
9962 BNX2X_DEV_INFO("chip ID is 0x%x\n", id);
523224a3 9963
1c06328c
EG
9964 val = (REG_RD(bp, 0x2874) & 0x55);
9965 if ((bp->common.chip_id & 0x1) ||
9966 (CHIP_IS_E1(bp) && val) || (CHIP_IS_E1H(bp) && (val == 0x55))) {
9967 bp->flags |= ONE_PORT_FLAG;
9968 BNX2X_DEV_INFO("single port device\n");
9969 }
9970
34f80b04 9971 val = REG_RD(bp, MCP_REG_MCPR_NVM_CFG4);
754a2f52 9972 bp->common.flash_size = (BNX2X_NVRAM_1MB_SIZE <<
34f80b04
EG
9973 (val & MCPR_NVM_CFG4_FLASH_SIZE));
9974 BNX2X_DEV_INFO("flash_size 0x%x (%d)\n",
9975 bp->common.flash_size, bp->common.flash_size);
9976
1b6e2ceb
DK
9977 bnx2x_init_shmem(bp);
9978
619c5cb6
VZ
9979
9980
f2e0899f
DK
9981 bp->common.shmem2_base = REG_RD(bp, (BP_PATH(bp) ?
9982 MISC_REG_GENERIC_CR_1 :
9983 MISC_REG_GENERIC_CR_0));
1b6e2ceb 9984
34f80b04 9985 bp->link_params.shmem_base = bp->common.shmem_base;
a22f0788 9986 bp->link_params.shmem2_base = bp->common.shmem2_base;
b884d95b
YR
9987 if (SHMEM2_RD(bp, size) >
9988 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
9989 bp->link_params.lfa_base =
9990 REG_RD(bp, bp->common.shmem2_base +
9991 (u32)offsetof(struct shmem2_region,
9992 lfa_host_addr[BP_PORT(bp)]));
9993 else
9994 bp->link_params.lfa_base = 0;
2691d51d
EG
9995 BNX2X_DEV_INFO("shmem offset 0x%x shmem2 offset 0x%x\n",
9996 bp->common.shmem_base, bp->common.shmem2_base);
34f80b04 9997
f2e0899f 9998 if (!bp->common.shmem_base) {
34f80b04
EG
9999 BNX2X_DEV_INFO("MCP not active\n");
10000 bp->flags |= NO_MCP_FLAG;
10001 return;
10002 }
10003
34f80b04 10004 bp->common.hw_config = SHMEM_RD(bp, dev_info.shared_hw_config.config);
35b19ba5 10005 BNX2X_DEV_INFO("hw_config 0x%08x\n", bp->common.hw_config);
34f80b04
EG
10006
10007 bp->link_params.hw_led_mode = ((bp->common.hw_config &
10008 SHARED_HW_CFG_LED_MODE_MASK) >>
10009 SHARED_HW_CFG_LED_MODE_SHIFT);
10010
c2c8b03e
EG
10011 bp->link_params.feature_config_flags = 0;
10012 val = SHMEM_RD(bp, dev_info.shared_feature_config.config);
10013 if (val & SHARED_FEAT_CFG_OVERRIDE_PREEMPHASIS_CFG_ENABLED)
10014 bp->link_params.feature_config_flags |=
10015 FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10016 else
10017 bp->link_params.feature_config_flags &=
10018 ~FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10019
34f80b04
EG
10020 val = SHMEM_RD(bp, dev_info.bc_rev) >> 8;
10021 bp->common.bc_ver = val;
10022 BNX2X_DEV_INFO("bc_ver %X\n", val);
10023 if (val < BNX2X_BC_VER) {
10024 /* for now only warn
10025 * later we might need to enforce this */
51c1a580
MS
10026 BNX2X_ERR("This driver needs bc_ver %X but found %X, please upgrade BC\n",
10027 BNX2X_BC_VER, val);
34f80b04 10028 }
4d295db0 10029 bp->link_params.feature_config_flags |=
a22f0788 10030 (val >= REQ_BC_VER_4_VRFY_FIRST_PHY_OPT_MDL) ?
f85582f8
DK
10031 FEATURE_CONFIG_BC_SUPPORTS_OPT_MDL_VRFY : 0;
10032
a22f0788
YR
10033 bp->link_params.feature_config_flags |=
10034 (val >= REQ_BC_VER_4_VRFY_SPECIFIC_PHY_OPT_MDL) ?
10035 FEATURE_CONFIG_BC_SUPPORTS_DUAL_PHY_OPT_MDL_VRFY : 0;
a3348722
BW
10036 bp->link_params.feature_config_flags |=
10037 (val >= REQ_BC_VER_4_VRFY_AFEX_SUPPORTED) ?
10038 FEATURE_CONFIG_BC_SUPPORTS_AFEX : 0;
85242eea
YR
10039 bp->link_params.feature_config_flags |=
10040 (val >= REQ_BC_VER_4_SFP_TX_DISABLE_SUPPORTED) ?
10041 FEATURE_CONFIG_BC_SUPPORTS_SFP_TX_DISABLED : 0;
55386fe8
YR
10042
10043 bp->link_params.feature_config_flags |=
10044 (val >= REQ_BC_VER_4_MT_SUPPORTED) ?
10045 FEATURE_CONFIG_MT_SUPPORT : 0;
10046
0e898dd7
BW
10047 bp->flags |= (val >= REQ_BC_VER_4_PFC_STATS_SUPPORTED) ?
10048 BC_SUPPORTS_PFC_STATS : 0;
85242eea 10049
2e499d3c
BW
10050 bp->flags |= (val >= REQ_BC_VER_4_FCOE_FEATURES) ?
10051 BC_SUPPORTS_FCOE_FEATURES : 0;
10052
9876879f
BW
10053 bp->flags |= (val >= REQ_BC_VER_4_DCBX_ADMIN_MSG_NON_PMF) ?
10054 BC_SUPPORTS_DCBX_MSG_NON_PMF : 0;
1d187b34
BW
10055 boot_mode = SHMEM_RD(bp,
10056 dev_info.port_feature_config[BP_PORT(bp)].mba_config) &
10057 PORT_FEATURE_MBA_BOOT_AGENT_TYPE_MASK;
10058 switch (boot_mode) {
10059 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_PXE:
10060 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_PXE;
10061 break;
10062 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_ISCSIB:
10063 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_ISCSI;
10064 break;
10065 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_FCOE_BOOT:
10066 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_FCOE;
10067 break;
10068 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_NONE:
10069 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_NONE;
10070 break;
10071 }
10072
f9a3ebbe
DK
10073 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_PMC, &pmc);
10074 bp->flags |= (pmc & PCI_PM_CAP_PME_D3cold) ? 0 : NO_WOL_FLAG;
10075
72ce58c3 10076 BNX2X_DEV_INFO("%sWoL capable\n",
f5372251 10077 (bp->flags & NO_WOL_FLAG) ? "not " : "");
34f80b04
EG
10078
10079 val = SHMEM_RD(bp, dev_info.shared_hw_config.part_num);
10080 val2 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[4]);
10081 val3 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[8]);
10082 val4 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[12]);
10083
cdaa7cb8
VZ
10084 dev_info(&bp->pdev->dev, "part number %X-%X-%X-%X\n",
10085 val, val2, val3, val4);
34f80b04
EG
10086}
10087
f2e0899f
DK
10088#define IGU_FID(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_FID)
10089#define IGU_VEC(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_VECTOR)
10090
0329aba1 10091static int bnx2x_get_igu_cam_info(struct bnx2x *bp)
f2e0899f
DK
10092{
10093 int pfid = BP_FUNC(bp);
f2e0899f
DK
10094 int igu_sb_id;
10095 u32 val;
6383c0b3 10096 u8 fid, igu_sb_cnt = 0;
f2e0899f
DK
10097
10098 bp->igu_base_sb = 0xff;
f2e0899f 10099 if (CHIP_INT_MODE_IS_BC(bp)) {
3395a033 10100 int vn = BP_VN(bp);
6383c0b3 10101 igu_sb_cnt = bp->igu_sb_cnt;
f2e0899f
DK
10102 bp->igu_base_sb = (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn) *
10103 FP_SB_MAX_E1x;
10104
10105 bp->igu_dsb_id = E1HVN_MAX * FP_SB_MAX_E1x +
10106 (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn);
10107
9b341bb1 10108 return 0;
f2e0899f
DK
10109 }
10110
10111 /* IGU in normal mode - read CAM */
10112 for (igu_sb_id = 0; igu_sb_id < IGU_REG_MAPPING_MEMORY_SIZE;
10113 igu_sb_id++) {
10114 val = REG_RD(bp, IGU_REG_MAPPING_MEMORY + igu_sb_id * 4);
10115 if (!(val & IGU_REG_MAPPING_MEMORY_VALID))
10116 continue;
10117 fid = IGU_FID(val);
10118 if ((fid & IGU_FID_ENCODE_IS_PF)) {
10119 if ((fid & IGU_FID_PF_NUM_MASK) != pfid)
10120 continue;
10121 if (IGU_VEC(val) == 0)
10122 /* default status block */
10123 bp->igu_dsb_id = igu_sb_id;
10124 else {
10125 if (bp->igu_base_sb == 0xff)
10126 bp->igu_base_sb = igu_sb_id;
6383c0b3 10127 igu_sb_cnt++;
f2e0899f
DK
10128 }
10129 }
10130 }
619c5cb6 10131
6383c0b3 10132#ifdef CONFIG_PCI_MSI
185d4c8b
AE
10133 /* Due to new PF resource allocation by MFW T7.4 and above, it's
10134 * optional that number of CAM entries will not be equal to the value
10135 * advertised in PCI.
10136 * Driver should use the minimal value of both as the actual status
10137 * block count
619c5cb6 10138 */
185d4c8b 10139 bp->igu_sb_cnt = min_t(int, bp->igu_sb_cnt, igu_sb_cnt);
6383c0b3 10140#endif
619c5cb6 10141
9b341bb1 10142 if (igu_sb_cnt == 0) {
f2e0899f 10143 BNX2X_ERR("CAM configuration error\n");
9b341bb1
BW
10144 return -EINVAL;
10145 }
10146
10147 return 0;
f2e0899f
DK
10148}
10149
1dd06ae8 10150static void bnx2x_link_settings_supported(struct bnx2x *bp, u32 switch_cfg)
a2fbb9ea 10151{
a22f0788
YR
10152 int cfg_size = 0, idx, port = BP_PORT(bp);
10153
10154 /* Aggregation of supported attributes of all external phys */
10155 bp->port.supported[0] = 0;
10156 bp->port.supported[1] = 0;
b7737c9b
YR
10157 switch (bp->link_params.num_phys) {
10158 case 1:
a22f0788
YR
10159 bp->port.supported[0] = bp->link_params.phy[INT_PHY].supported;
10160 cfg_size = 1;
10161 break;
b7737c9b 10162 case 2:
a22f0788
YR
10163 bp->port.supported[0] = bp->link_params.phy[EXT_PHY1].supported;
10164 cfg_size = 1;
10165 break;
10166 case 3:
10167 if (bp->link_params.multi_phy_config &
10168 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
10169 bp->port.supported[1] =
10170 bp->link_params.phy[EXT_PHY1].supported;
10171 bp->port.supported[0] =
10172 bp->link_params.phy[EXT_PHY2].supported;
10173 } else {
10174 bp->port.supported[0] =
10175 bp->link_params.phy[EXT_PHY1].supported;
10176 bp->port.supported[1] =
10177 bp->link_params.phy[EXT_PHY2].supported;
10178 }
10179 cfg_size = 2;
10180 break;
b7737c9b 10181 }
a2fbb9ea 10182
a22f0788 10183 if (!(bp->port.supported[0] || bp->port.supported[1])) {
51c1a580 10184 BNX2X_ERR("NVRAM config error. BAD phy config. PHY1 config 0x%x, PHY2 config 0x%x\n",
b7737c9b 10185 SHMEM_RD(bp,
a22f0788
YR
10186 dev_info.port_hw_config[port].external_phy_config),
10187 SHMEM_RD(bp,
10188 dev_info.port_hw_config[port].external_phy_config2));
a2fbb9ea 10189 return;
f85582f8 10190 }
a2fbb9ea 10191
619c5cb6
VZ
10192 if (CHIP_IS_E3(bp))
10193 bp->port.phy_addr = REG_RD(bp, MISC_REG_WC0_CTRL_PHY_ADDR);
10194 else {
10195 switch (switch_cfg) {
10196 case SWITCH_CFG_1G:
10197 bp->port.phy_addr = REG_RD(
10198 bp, NIG_REG_SERDES0_CTRL_PHY_ADDR + port*0x10);
10199 break;
10200 case SWITCH_CFG_10G:
10201 bp->port.phy_addr = REG_RD(
10202 bp, NIG_REG_XGXS0_CTRL_PHY_ADDR + port*0x18);
10203 break;
10204 default:
10205 BNX2X_ERR("BAD switch_cfg link_config 0x%x\n",
10206 bp->port.link_config[0]);
10207 return;
10208 }
a2fbb9ea 10209 }
619c5cb6 10210 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp->port.phy_addr);
a22f0788
YR
10211 /* mask what we support according to speed_cap_mask per configuration */
10212 for (idx = 0; idx < cfg_size; idx++) {
10213 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10214 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF))
a22f0788 10215 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Half;
a2fbb9ea 10216
a22f0788 10217 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10218 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL))
a22f0788 10219 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Full;
a2fbb9ea 10220
a22f0788 10221 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10222 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF))
a22f0788 10223 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Half;
a2fbb9ea 10224
a22f0788 10225 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10226 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL))
a22f0788 10227 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Full;
a2fbb9ea 10228
a22f0788 10229 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10230 PORT_HW_CFG_SPEED_CAPABILITY_D0_1G))
a22f0788 10231 bp->port.supported[idx] &= ~(SUPPORTED_1000baseT_Half |
f85582f8 10232 SUPPORTED_1000baseT_Full);
a2fbb9ea 10233
a22f0788 10234 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10235 PORT_HW_CFG_SPEED_CAPABILITY_D0_2_5G))
a22f0788 10236 bp->port.supported[idx] &= ~SUPPORTED_2500baseX_Full;
a2fbb9ea 10237
a22f0788 10238 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10239 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G))
a22f0788
YR
10240 bp->port.supported[idx] &= ~SUPPORTED_10000baseT_Full;
10241
10242 }
a2fbb9ea 10243
a22f0788
YR
10244 BNX2X_DEV_INFO("supported 0x%x 0x%x\n", bp->port.supported[0],
10245 bp->port.supported[1]);
a2fbb9ea
ET
10246}
10247
0329aba1 10248static void bnx2x_link_settings_requested(struct bnx2x *bp)
a2fbb9ea 10249{
a22f0788
YR
10250 u32 link_config, idx, cfg_size = 0;
10251 bp->port.advertising[0] = 0;
10252 bp->port.advertising[1] = 0;
10253 switch (bp->link_params.num_phys) {
10254 case 1:
10255 case 2:
10256 cfg_size = 1;
10257 break;
10258 case 3:
10259 cfg_size = 2;
10260 break;
10261 }
10262 for (idx = 0; idx < cfg_size; idx++) {
10263 bp->link_params.req_duplex[idx] = DUPLEX_FULL;
10264 link_config = bp->port.link_config[idx];
10265 switch (link_config & PORT_FEATURE_LINK_SPEED_MASK) {
f85582f8 10266 case PORT_FEATURE_LINK_SPEED_AUTO:
a22f0788
YR
10267 if (bp->port.supported[idx] & SUPPORTED_Autoneg) {
10268 bp->link_params.req_line_speed[idx] =
10269 SPEED_AUTO_NEG;
10270 bp->port.advertising[idx] |=
10271 bp->port.supported[idx];
10bd1f24
MY
10272 if (bp->link_params.phy[EXT_PHY1].type ==
10273 PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM84833)
10274 bp->port.advertising[idx] |=
10275 (SUPPORTED_100baseT_Half |
10276 SUPPORTED_100baseT_Full);
f85582f8
DK
10277 } else {
10278 /* force 10G, no AN */
a22f0788
YR
10279 bp->link_params.req_line_speed[idx] =
10280 SPEED_10000;
10281 bp->port.advertising[idx] |=
10282 (ADVERTISED_10000baseT_Full |
f85582f8 10283 ADVERTISED_FIBRE);
a22f0788 10284 continue;
f85582f8
DK
10285 }
10286 break;
a2fbb9ea 10287
f85582f8 10288 case PORT_FEATURE_LINK_SPEED_10M_FULL:
a22f0788
YR
10289 if (bp->port.supported[idx] & SUPPORTED_10baseT_Full) {
10290 bp->link_params.req_line_speed[idx] =
10291 SPEED_10;
10292 bp->port.advertising[idx] |=
10293 (ADVERTISED_10baseT_Full |
f85582f8
DK
10294 ADVERTISED_TP);
10295 } else {
51c1a580 10296 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8 10297 link_config,
a22f0788 10298 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10299 return;
10300 }
10301 break;
a2fbb9ea 10302
f85582f8 10303 case PORT_FEATURE_LINK_SPEED_10M_HALF:
a22f0788
YR
10304 if (bp->port.supported[idx] & SUPPORTED_10baseT_Half) {
10305 bp->link_params.req_line_speed[idx] =
10306 SPEED_10;
10307 bp->link_params.req_duplex[idx] =
10308 DUPLEX_HALF;
10309 bp->port.advertising[idx] |=
10310 (ADVERTISED_10baseT_Half |
f85582f8
DK
10311 ADVERTISED_TP);
10312 } else {
51c1a580 10313 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10314 link_config,
10315 bp->link_params.speed_cap_mask[idx]);
10316 return;
10317 }
10318 break;
a2fbb9ea 10319
f85582f8
DK
10320 case PORT_FEATURE_LINK_SPEED_100M_FULL:
10321 if (bp->port.supported[idx] &
10322 SUPPORTED_100baseT_Full) {
a22f0788
YR
10323 bp->link_params.req_line_speed[idx] =
10324 SPEED_100;
10325 bp->port.advertising[idx] |=
10326 (ADVERTISED_100baseT_Full |
f85582f8
DK
10327 ADVERTISED_TP);
10328 } else {
51c1a580 10329 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10330 link_config,
10331 bp->link_params.speed_cap_mask[idx]);
10332 return;
10333 }
10334 break;
a2fbb9ea 10335
f85582f8
DK
10336 case PORT_FEATURE_LINK_SPEED_100M_HALF:
10337 if (bp->port.supported[idx] &
10338 SUPPORTED_100baseT_Half) {
10339 bp->link_params.req_line_speed[idx] =
10340 SPEED_100;
10341 bp->link_params.req_duplex[idx] =
10342 DUPLEX_HALF;
a22f0788
YR
10343 bp->port.advertising[idx] |=
10344 (ADVERTISED_100baseT_Half |
f85582f8
DK
10345 ADVERTISED_TP);
10346 } else {
51c1a580 10347 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10348 link_config,
10349 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10350 return;
10351 }
10352 break;
a2fbb9ea 10353
f85582f8 10354 case PORT_FEATURE_LINK_SPEED_1G:
a22f0788
YR
10355 if (bp->port.supported[idx] &
10356 SUPPORTED_1000baseT_Full) {
10357 bp->link_params.req_line_speed[idx] =
10358 SPEED_1000;
10359 bp->port.advertising[idx] |=
10360 (ADVERTISED_1000baseT_Full |
f85582f8
DK
10361 ADVERTISED_TP);
10362 } else {
51c1a580 10363 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10364 link_config,
10365 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10366 return;
10367 }
10368 break;
a2fbb9ea 10369
f85582f8 10370 case PORT_FEATURE_LINK_SPEED_2_5G:
a22f0788
YR
10371 if (bp->port.supported[idx] &
10372 SUPPORTED_2500baseX_Full) {
10373 bp->link_params.req_line_speed[idx] =
10374 SPEED_2500;
10375 bp->port.advertising[idx] |=
10376 (ADVERTISED_2500baseX_Full |
34f80b04 10377 ADVERTISED_TP);
f85582f8 10378 } else {
51c1a580 10379 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10380 link_config,
f85582f8
DK
10381 bp->link_params.speed_cap_mask[idx]);
10382 return;
10383 }
10384 break;
a2fbb9ea 10385
f85582f8 10386 case PORT_FEATURE_LINK_SPEED_10G_CX4:
a22f0788
YR
10387 if (bp->port.supported[idx] &
10388 SUPPORTED_10000baseT_Full) {
10389 bp->link_params.req_line_speed[idx] =
10390 SPEED_10000;
10391 bp->port.advertising[idx] |=
10392 (ADVERTISED_10000baseT_Full |
34f80b04 10393 ADVERTISED_FIBRE);
f85582f8 10394 } else {
51c1a580 10395 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10396 link_config,
f85582f8
DK
10397 bp->link_params.speed_cap_mask[idx]);
10398 return;
10399 }
10400 break;
3c9ada22
YR
10401 case PORT_FEATURE_LINK_SPEED_20G:
10402 bp->link_params.req_line_speed[idx] = SPEED_20000;
a2fbb9ea 10403
3c9ada22 10404 break;
f85582f8 10405 default:
51c1a580 10406 BNX2X_ERR("NVRAM config error. BAD link speed link_config 0x%x\n",
754a2f52 10407 link_config);
f85582f8
DK
10408 bp->link_params.req_line_speed[idx] =
10409 SPEED_AUTO_NEG;
10410 bp->port.advertising[idx] =
10411 bp->port.supported[idx];
10412 break;
10413 }
a2fbb9ea 10414
a22f0788 10415 bp->link_params.req_flow_ctrl[idx] = (link_config &
34f80b04 10416 PORT_FEATURE_FLOW_CONTROL_MASK);
cd1dfce2
YM
10417 if (bp->link_params.req_flow_ctrl[idx] ==
10418 BNX2X_FLOW_CTRL_AUTO) {
10419 if (!(bp->port.supported[idx] & SUPPORTED_Autoneg))
10420 bp->link_params.req_flow_ctrl[idx] =
10421 BNX2X_FLOW_CTRL_NONE;
10422 else
10423 bnx2x_set_requested_fc(bp);
a22f0788 10424 }
a2fbb9ea 10425
51c1a580 10426 BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x advertising 0x%x\n",
a22f0788
YR
10427 bp->link_params.req_line_speed[idx],
10428 bp->link_params.req_duplex[idx],
10429 bp->link_params.req_flow_ctrl[idx],
10430 bp->port.advertising[idx]);
10431 }
a2fbb9ea
ET
10432}
10433
0329aba1 10434static void bnx2x_set_mac_buf(u8 *mac_buf, u32 mac_lo, u16 mac_hi)
e665bfda
MC
10435{
10436 mac_hi = cpu_to_be16(mac_hi);
10437 mac_lo = cpu_to_be32(mac_lo);
10438 memcpy(mac_buf, &mac_hi, sizeof(mac_hi));
10439 memcpy(mac_buf + sizeof(mac_hi), &mac_lo, sizeof(mac_lo));
10440}
10441
0329aba1 10442static void bnx2x_get_port_hwinfo(struct bnx2x *bp)
a2fbb9ea 10443{
34f80b04 10444 int port = BP_PORT(bp);
589abe3a 10445 u32 config;
c8c60d88 10446 u32 ext_phy_type, ext_phy_config, eee_mode;
a2fbb9ea 10447
c18487ee 10448 bp->link_params.bp = bp;
34f80b04 10449 bp->link_params.port = port;
c18487ee 10450
c18487ee 10451 bp->link_params.lane_config =
a2fbb9ea 10452 SHMEM_RD(bp, dev_info.port_hw_config[port].lane_config);
4d295db0 10453
a22f0788 10454 bp->link_params.speed_cap_mask[0] =
a2fbb9ea
ET
10455 SHMEM_RD(bp,
10456 dev_info.port_hw_config[port].speed_capability_mask);
a22f0788
YR
10457 bp->link_params.speed_cap_mask[1] =
10458 SHMEM_RD(bp,
10459 dev_info.port_hw_config[port].speed_capability_mask2);
10460 bp->port.link_config[0] =
a2fbb9ea
ET
10461 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config);
10462
a22f0788
YR
10463 bp->port.link_config[1] =
10464 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config2);
c2c8b03e 10465
a22f0788
YR
10466 bp->link_params.multi_phy_config =
10467 SHMEM_RD(bp, dev_info.port_hw_config[port].multi_phy_config);
3ce2c3f9
EG
10468 /* If the device is capable of WoL, set the default state according
10469 * to the HW
10470 */
4d295db0 10471 config = SHMEM_RD(bp, dev_info.port_feature_config[port].config);
3ce2c3f9
EG
10472 bp->wol = (!(bp->flags & NO_WOL_FLAG) &&
10473 (config & PORT_FEATURE_WOL_ENABLED));
10474
51c1a580 10475 BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n",
c18487ee 10476 bp->link_params.lane_config,
a22f0788
YR
10477 bp->link_params.speed_cap_mask[0],
10478 bp->port.link_config[0]);
a2fbb9ea 10479
a22f0788 10480 bp->link_params.switch_cfg = (bp->port.link_config[0] &
f85582f8 10481 PORT_FEATURE_CONNECTED_SWITCH_MASK);
b7737c9b 10482 bnx2x_phy_probe(&bp->link_params);
c18487ee 10483 bnx2x_link_settings_supported(bp, bp->link_params.switch_cfg);
a2fbb9ea
ET
10484
10485 bnx2x_link_settings_requested(bp);
10486
01cd4528
EG
10487 /*
10488 * If connected directly, work with the internal PHY, otherwise, work
10489 * with the external PHY
10490 */
b7737c9b
YR
10491 ext_phy_config =
10492 SHMEM_RD(bp,
10493 dev_info.port_hw_config[port].external_phy_config);
10494 ext_phy_type = XGXS_EXT_PHY_TYPE(ext_phy_config);
01cd4528 10495 if (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_DIRECT)
b7737c9b 10496 bp->mdio.prtad = bp->port.phy_addr;
01cd4528
EG
10497
10498 else if ((ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE) &&
10499 (ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN))
10500 bp->mdio.prtad =
b7737c9b 10501 XGXS_EXT_PHY_ADDR(ext_phy_config);
5866df6d 10502
c8c60d88
YM
10503 /* Configure link feature according to nvram value */
10504 eee_mode = (((SHMEM_RD(bp, dev_info.
10505 port_feature_config[port].eee_power_mode)) &
10506 PORT_FEAT_CFG_EEE_POWER_MODE_MASK) >>
10507 PORT_FEAT_CFG_EEE_POWER_MODE_SHIFT);
10508 if (eee_mode != PORT_FEAT_CFG_EEE_POWER_MODE_DISABLED) {
10509 bp->link_params.eee_mode = EEE_MODE_ADV_LPI |
10510 EEE_MODE_ENABLE_LPI |
10511 EEE_MODE_OUTPUT_TIME;
10512 } else {
10513 bp->link_params.eee_mode = 0;
10514 }
0793f83f 10515}
01cd4528 10516
b306f5ed 10517void bnx2x_get_iscsi_info(struct bnx2x *bp)
2ba45142 10518{
9e62e912 10519 u32 no_flags = NO_ISCSI_FLAG;
bf61ee14 10520 int port = BP_PORT(bp);
2ba45142 10521 u32 max_iscsi_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
bf61ee14 10522 drv_lic_key[port].max_iscsi_conn);
2ba45142 10523
55c11941
MS
10524 if (!CNIC_SUPPORT(bp)) {
10525 bp->flags |= no_flags;
10526 return;
10527 }
10528
b306f5ed 10529 /* Get the number of maximum allowed iSCSI connections */
2ba45142
VZ
10530 bp->cnic_eth_dev.max_iscsi_conn =
10531 (max_iscsi_conn & BNX2X_MAX_ISCSI_INIT_CONN_MASK) >>
10532 BNX2X_MAX_ISCSI_INIT_CONN_SHIFT;
10533
b306f5ed
DK
10534 BNX2X_DEV_INFO("max_iscsi_conn 0x%x\n",
10535 bp->cnic_eth_dev.max_iscsi_conn);
10536
10537 /*
10538 * If maximum allowed number of connections is zero -
10539 * disable the feature.
10540 */
10541 if (!bp->cnic_eth_dev.max_iscsi_conn)
9e62e912 10542 bp->flags |= no_flags;
55c11941 10543
b306f5ed
DK
10544}
10545
0329aba1 10546static void bnx2x_get_ext_wwn_info(struct bnx2x *bp, int func)
9e62e912
DK
10547{
10548 /* Port info */
10549 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10550 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_upper);
10551 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10552 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_lower);
10553
10554 /* Node info */
10555 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10556 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_upper);
10557 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10558 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_lower);
10559}
0329aba1 10560static void bnx2x_get_fcoe_info(struct bnx2x *bp)
b306f5ed
DK
10561{
10562 int port = BP_PORT(bp);
10563 int func = BP_ABS_FUNC(bp);
b306f5ed
DK
10564 u32 max_fcoe_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
10565 drv_lic_key[port].max_fcoe_conn);
10566
55c11941
MS
10567 if (!CNIC_SUPPORT(bp)) {
10568 bp->flags |= NO_FCOE_FLAG;
10569 return;
10570 }
10571
b306f5ed 10572 /* Get the number of maximum allowed FCoE connections */
2ba45142
VZ
10573 bp->cnic_eth_dev.max_fcoe_conn =
10574 (max_fcoe_conn & BNX2X_MAX_FCOE_INIT_CONN_MASK) >>
10575 BNX2X_MAX_FCOE_INIT_CONN_SHIFT;
10576
bf61ee14
VZ
10577 /* Read the WWN: */
10578 if (!IS_MF(bp)) {
10579 /* Port info */
10580 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10581 SHMEM_RD(bp,
10582 dev_info.port_hw_config[port].
10583 fcoe_wwn_port_name_upper);
10584 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10585 SHMEM_RD(bp,
10586 dev_info.port_hw_config[port].
10587 fcoe_wwn_port_name_lower);
10588
10589 /* Node info */
10590 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10591 SHMEM_RD(bp,
10592 dev_info.port_hw_config[port].
10593 fcoe_wwn_node_name_upper);
10594 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10595 SHMEM_RD(bp,
10596 dev_info.port_hw_config[port].
10597 fcoe_wwn_node_name_lower);
10598 } else if (!IS_MF_SD(bp)) {
bf61ee14
VZ
10599 /*
10600 * Read the WWN info only if the FCoE feature is enabled for
10601 * this function.
10602 */
7b5342d9 10603 if (BNX2X_MF_EXT_PROTOCOL_FCOE(bp) && !CHIP_IS_E1x(bp))
9e62e912
DK
10604 bnx2x_get_ext_wwn_info(bp, func);
10605
382e513a 10606 } else if (IS_MF_FCOE_SD(bp) && !CHIP_IS_E1x(bp)) {
9e62e912 10607 bnx2x_get_ext_wwn_info(bp, func);
382e513a 10608 }
bf61ee14 10609
b306f5ed 10610 BNX2X_DEV_INFO("max_fcoe_conn 0x%x\n", bp->cnic_eth_dev.max_fcoe_conn);
2ba45142 10611
bf61ee14
VZ
10612 /*
10613 * If maximum allowed number of connections is zero -
2ba45142
VZ
10614 * disable the feature.
10615 */
2ba45142
VZ
10616 if (!bp->cnic_eth_dev.max_fcoe_conn)
10617 bp->flags |= NO_FCOE_FLAG;
10618}
b306f5ed 10619
0329aba1 10620static void bnx2x_get_cnic_info(struct bnx2x *bp)
b306f5ed
DK
10621{
10622 /*
10623 * iSCSI may be dynamically disabled but reading
10624 * info here we will decrease memory usage by driver
10625 * if the feature is disabled for good
10626 */
10627 bnx2x_get_iscsi_info(bp);
10628 bnx2x_get_fcoe_info(bp);
10629}
2ba45142 10630
0329aba1 10631static void bnx2x_get_cnic_mac_hwinfo(struct bnx2x *bp)
0793f83f
DK
10632{
10633 u32 val, val2;
10634 int func = BP_ABS_FUNC(bp);
10635 int port = BP_PORT(bp);
2ba45142
VZ
10636 u8 *iscsi_mac = bp->cnic_eth_dev.iscsi_mac;
10637 u8 *fip_mac = bp->fip_mac;
0793f83f 10638
55c11941
MS
10639 if (IS_MF(bp)) {
10640 /* iSCSI and FCoE NPAR MACs: if there is no either iSCSI or
2ba45142 10641 * FCoE MAC then the appropriate feature should be disabled.
55c11941
MS
10642 * In non SD mode features configuration comes from struct
10643 * func_ext_config.
2ba45142 10644 */
55c11941 10645 if (!IS_MF_SD(bp) && !CHIP_IS_E1x(bp)) {
0793f83f
DK
10646 u32 cfg = MF_CFG_RD(bp, func_ext_config[func].func_cfg);
10647 if (cfg & MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD) {
10648 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10649 iscsi_mac_addr_upper);
0793f83f 10650 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10651 iscsi_mac_addr_lower);
2ba45142 10652 bnx2x_set_mac_buf(iscsi_mac, val, val2);
55c11941
MS
10653 BNX2X_DEV_INFO
10654 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10655 } else {
2ba45142 10656 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
55c11941 10657 }
2ba45142
VZ
10658
10659 if (cfg & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD) {
10660 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10661 fcoe_mac_addr_upper);
2ba45142 10662 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10663 fcoe_mac_addr_lower);
2ba45142 10664 bnx2x_set_mac_buf(fip_mac, val, val2);
55c11941
MS
10665 BNX2X_DEV_INFO
10666 ("Read FCoE L2 MAC: %pM\n", fip_mac);
10667 } else {
2ba45142 10668 bp->flags |= NO_FCOE_FLAG;
55c11941 10669 }
a3348722
BW
10670
10671 bp->mf_ext_config = cfg;
10672
9e62e912 10673 } else { /* SD MODE */
55c11941
MS
10674 if (BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp)) {
10675 /* use primary mac as iscsi mac */
10676 memcpy(iscsi_mac, bp->dev->dev_addr, ETH_ALEN);
10677
10678 BNX2X_DEV_INFO("SD ISCSI MODE\n");
10679 BNX2X_DEV_INFO
10680 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10681 } else if (BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)) {
10682 /* use primary mac as fip mac */
10683 memcpy(fip_mac, bp->dev->dev_addr, ETH_ALEN);
10684 BNX2X_DEV_INFO("SD FCoE MODE\n");
10685 BNX2X_DEV_INFO
10686 ("Read FIP MAC: %pM\n", fip_mac);
614c76df 10687 }
0793f83f 10688 }
a3348722 10689
55c11941
MS
10690 if (IS_MF_STORAGE_SD(bp))
10691 /* Zero primary MAC configuration */
10692 memset(bp->dev->dev_addr, 0, ETH_ALEN);
10693
a3348722
BW
10694 if (IS_MF_FCOE_AFEX(bp))
10695 /* use FIP MAC as primary MAC */
10696 memcpy(bp->dev->dev_addr, fip_mac, ETH_ALEN);
10697
0793f83f 10698 } else {
0793f83f 10699 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10700 iscsi_mac_upper);
0793f83f 10701 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10702 iscsi_mac_lower);
2ba45142 10703 bnx2x_set_mac_buf(iscsi_mac, val, val2);
c03bd39c
VZ
10704
10705 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10706 fcoe_fip_mac_upper);
c03bd39c 10707 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10708 fcoe_fip_mac_lower);
c03bd39c 10709 bnx2x_set_mac_buf(fip_mac, val, val2);
0793f83f
DK
10710 }
10711
55c11941 10712 /* Disable iSCSI OOO if MAC configuration is invalid. */
426b9241 10713 if (!is_valid_ether_addr(iscsi_mac)) {
55c11941 10714 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
426b9241
DK
10715 memset(iscsi_mac, 0, ETH_ALEN);
10716 }
10717
55c11941 10718 /* Disable FCoE if MAC configuration is invalid. */
426b9241
DK
10719 if (!is_valid_ether_addr(fip_mac)) {
10720 bp->flags |= NO_FCOE_FLAG;
10721 memset(bp->fip_mac, 0, ETH_ALEN);
10722 }
55c11941
MS
10723}
10724
0329aba1 10725static void bnx2x_get_mac_hwinfo(struct bnx2x *bp)
55c11941
MS
10726{
10727 u32 val, val2;
10728 int func = BP_ABS_FUNC(bp);
10729 int port = BP_PORT(bp);
10730
10731 /* Zero primary MAC configuration */
10732 memset(bp->dev->dev_addr, 0, ETH_ALEN);
10733
10734 if (BP_NOMCP(bp)) {
10735 BNX2X_ERROR("warning: random MAC workaround active\n");
10736 eth_hw_addr_random(bp->dev);
10737 } else if (IS_MF(bp)) {
10738 val2 = MF_CFG_RD(bp, func_mf_config[func].mac_upper);
10739 val = MF_CFG_RD(bp, func_mf_config[func].mac_lower);
10740 if ((val2 != FUNC_MF_CFG_UPPERMAC_DEFAULT) &&
10741 (val != FUNC_MF_CFG_LOWERMAC_DEFAULT))
10742 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10743
10744 if (CNIC_SUPPORT(bp))
10745 bnx2x_get_cnic_mac_hwinfo(bp);
10746 } else {
10747 /* in SF read MACs from port configuration */
10748 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_upper);
10749 val = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_lower);
10750 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10751
10752 if (CNIC_SUPPORT(bp))
10753 bnx2x_get_cnic_mac_hwinfo(bp);
10754 }
10755
10756 memcpy(bp->link_params.mac_addr, bp->dev->dev_addr, ETH_ALEN);
10757 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, ETH_ALEN);
619c5cb6 10758
614c76df 10759 if (!bnx2x_is_valid_ether_addr(bp, bp->dev->dev_addr))
619c5cb6 10760 dev_err(&bp->pdev->dev,
51c1a580
MS
10761 "bad Ethernet MAC address configuration: %pM\n"
10762 "change it manually before bringing up the appropriate network interface\n",
0f9dad10 10763 bp->dev->dev_addr);
7964211d 10764}
51c1a580 10765
0329aba1 10766static bool bnx2x_get_dropless_info(struct bnx2x *bp)
7964211d
YM
10767{
10768 int tmp;
10769 u32 cfg;
51c1a580 10770
7964211d
YM
10771 if (IS_MF(bp) && !CHIP_IS_E1x(bp)) {
10772 /* Take function: tmp = func */
10773 tmp = BP_ABS_FUNC(bp);
10774 cfg = MF_CFG_RD(bp, func_ext_config[tmp].func_cfg);
10775 cfg = !!(cfg & MACP_FUNC_CFG_PAUSE_ON_HOST_RING);
10776 } else {
10777 /* Take port: tmp = port */
10778 tmp = BP_PORT(bp);
10779 cfg = SHMEM_RD(bp,
10780 dev_info.port_hw_config[tmp].generic_features);
10781 cfg = !!(cfg & PORT_HW_CFG_PAUSE_ON_HOST_RING_ENABLED);
10782 }
10783 return cfg;
34f80b04
EG
10784}
10785
0329aba1 10786static int bnx2x_get_hwinfo(struct bnx2x *bp)
34f80b04 10787{
0793f83f 10788 int /*abs*/func = BP_ABS_FUNC(bp);
b8ee8328 10789 int vn;
0793f83f 10790 u32 val = 0;
34f80b04 10791 int rc = 0;
a2fbb9ea 10792
34f80b04 10793 bnx2x_get_common_hwinfo(bp);
a2fbb9ea 10794
6383c0b3
AE
10795 /*
10796 * initialize IGU parameters
10797 */
f2e0899f
DK
10798 if (CHIP_IS_E1x(bp)) {
10799 bp->common.int_block = INT_BLOCK_HC;
10800
10801 bp->igu_dsb_id = DEF_SB_IGU_ID;
10802 bp->igu_base_sb = 0;
f2e0899f
DK
10803 } else {
10804 bp->common.int_block = INT_BLOCK_IGU;
7a06a122
DK
10805
10806 /* do not allow device reset during IGU info preocessing */
10807 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
10808
f2e0899f 10809 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
619c5cb6
VZ
10810
10811 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
10812 int tout = 5000;
10813
10814 BNX2X_DEV_INFO("FORCING Normal Mode\n");
10815
10816 val &= ~(IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN);
10817 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION, val);
10818 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x7f);
10819
10820 while (tout && REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10821 tout--;
10822 usleep_range(1000, 1000);
10823 }
10824
10825 if (REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10826 dev_err(&bp->pdev->dev,
10827 "FORCING Normal Mode failed!!!\n");
9b341bb1
BW
10828 bnx2x_release_hw_lock(bp,
10829 HW_LOCK_RESOURCE_RESET);
619c5cb6
VZ
10830 return -EPERM;
10831 }
10832 }
10833
f2e0899f 10834 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
619c5cb6 10835 BNX2X_DEV_INFO("IGU Backward Compatible Mode\n");
f2e0899f
DK
10836 bp->common.int_block |= INT_BLOCK_MODE_BW_COMP;
10837 } else
619c5cb6 10838 BNX2X_DEV_INFO("IGU Normal Mode\n");
523224a3 10839
9b341bb1 10840 rc = bnx2x_get_igu_cam_info(bp);
7a06a122 10841 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
9b341bb1
BW
10842 if (rc)
10843 return rc;
f2e0899f 10844 }
619c5cb6
VZ
10845
10846 /*
10847 * set base FW non-default (fast path) status block id, this value is
10848 * used to initialize the fw_sb_id saved on the fp/queue structure to
10849 * determine the id used by the FW.
10850 */
10851 if (CHIP_IS_E1x(bp))
10852 bp->base_fw_ndsb = BP_PORT(bp) * FP_SB_MAX_E1x + BP_L_ID(bp);
10853 else /*
10854 * 57712 - we currently use one FW SB per IGU SB (Rx and Tx of
10855 * the same queue are indicated on the same IGU SB). So we prefer
10856 * FW and IGU SBs to be the same value.
10857 */
10858 bp->base_fw_ndsb = bp->igu_base_sb;
10859
10860 BNX2X_DEV_INFO("igu_dsb_id %d igu_base_sb %d igu_sb_cnt %d\n"
10861 "base_fw_ndsb %d\n", bp->igu_dsb_id, bp->igu_base_sb,
10862 bp->igu_sb_cnt, bp->base_fw_ndsb);
f2e0899f
DK
10863
10864 /*
10865 * Initialize MF configuration
10866 */
523224a3 10867
fb3bff17
DK
10868 bp->mf_ov = 0;
10869 bp->mf_mode = 0;
3395a033 10870 vn = BP_VN(bp);
0793f83f 10871
f2e0899f 10872 if (!CHIP_IS_E1(bp) && !BP_NOMCP(bp)) {
619c5cb6
VZ
10873 BNX2X_DEV_INFO("shmem2base 0x%x, size %d, mfcfg offset %d\n",
10874 bp->common.shmem2_base, SHMEM2_RD(bp, size),
10875 (u32)offsetof(struct shmem2_region, mf_cfg_addr));
10876
f2e0899f
DK
10877 if (SHMEM2_HAS(bp, mf_cfg_addr))
10878 bp->common.mf_cfg_base = SHMEM2_RD(bp, mf_cfg_addr);
10879 else
10880 bp->common.mf_cfg_base = bp->common.shmem_base +
523224a3
DK
10881 offsetof(struct shmem_region, func_mb) +
10882 E1H_FUNC_MAX * sizeof(struct drv_func_mb);
0793f83f
DK
10883 /*
10884 * get mf configuration:
25985edc 10885 * 1. existence of MF configuration
0793f83f
DK
10886 * 2. MAC address must be legal (check only upper bytes)
10887 * for Switch-Independent mode;
10888 * OVLAN must be legal for Switch-Dependent mode
10889 * 3. SF_MODE configures specific MF mode
10890 */
10891 if (bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
10892 /* get mf configuration */
10893 val = SHMEM_RD(bp,
10894 dev_info.shared_feature_config.config);
10895 val &= SHARED_FEAT_CFG_FORCE_SF_MODE_MASK;
10896
10897 switch (val) {
10898 case SHARED_FEAT_CFG_FORCE_SF_MODE_SWITCH_INDEPT:
10899 val = MF_CFG_RD(bp, func_mf_config[func].
10900 mac_upper);
10901 /* check for legal mac (upper bytes)*/
10902 if (val != 0xffff) {
10903 bp->mf_mode = MULTI_FUNCTION_SI;
10904 bp->mf_config[vn] = MF_CFG_RD(bp,
10905 func_mf_config[func].config);
10906 } else
51c1a580 10907 BNX2X_DEV_INFO("illegal MAC address for SI\n");
0793f83f 10908 break;
a3348722
BW
10909 case SHARED_FEAT_CFG_FORCE_SF_MODE_AFEX_MODE:
10910 if ((!CHIP_IS_E1x(bp)) &&
10911 (MF_CFG_RD(bp, func_mf_config[func].
10912 mac_upper) != 0xffff) &&
10913 (SHMEM2_HAS(bp,
10914 afex_driver_support))) {
10915 bp->mf_mode = MULTI_FUNCTION_AFEX;
10916 bp->mf_config[vn] = MF_CFG_RD(bp,
10917 func_mf_config[func].config);
10918 } else {
10919 BNX2X_DEV_INFO("can not configure afex mode\n");
10920 }
10921 break;
0793f83f
DK
10922 case SHARED_FEAT_CFG_FORCE_SF_MODE_MF_ALLOWED:
10923 /* get OV configuration */
10924 val = MF_CFG_RD(bp,
10925 func_mf_config[FUNC_0].e1hov_tag);
10926 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
10927
10928 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
10929 bp->mf_mode = MULTI_FUNCTION_SD;
10930 bp->mf_config[vn] = MF_CFG_RD(bp,
10931 func_mf_config[func].config);
10932 } else
754a2f52 10933 BNX2X_DEV_INFO("illegal OV for SD\n");
0793f83f
DK
10934 break;
10935 default:
10936 /* Unknown configuration: reset mf_config */
10937 bp->mf_config[vn] = 0;
51c1a580 10938 BNX2X_DEV_INFO("unknown MF mode 0x%x\n", val);
0793f83f
DK
10939 }
10940 }
a2fbb9ea 10941
2691d51d 10942 BNX2X_DEV_INFO("%s function mode\n",
fb3bff17 10943 IS_MF(bp) ? "multi" : "single");
2691d51d 10944
0793f83f
DK
10945 switch (bp->mf_mode) {
10946 case MULTI_FUNCTION_SD:
10947 val = MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
10948 FUNC_MF_CFG_E1HOV_TAG_MASK;
2691d51d 10949 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
fb3bff17 10950 bp->mf_ov = val;
619c5cb6
VZ
10951 bp->path_has_ovlan = true;
10952
51c1a580
MS
10953 BNX2X_DEV_INFO("MF OV for func %d is %d (0x%04x)\n",
10954 func, bp->mf_ov, bp->mf_ov);
2691d51d 10955 } else {
619c5cb6 10956 dev_err(&bp->pdev->dev,
51c1a580
MS
10957 "No valid MF OV for func %d, aborting\n",
10958 func);
619c5cb6 10959 return -EPERM;
34f80b04 10960 }
0793f83f 10961 break;
a3348722
BW
10962 case MULTI_FUNCTION_AFEX:
10963 BNX2X_DEV_INFO("func %d is in MF afex mode\n", func);
10964 break;
0793f83f 10965 case MULTI_FUNCTION_SI:
51c1a580
MS
10966 BNX2X_DEV_INFO("func %d is in MF switch-independent mode\n",
10967 func);
0793f83f
DK
10968 break;
10969 default:
10970 if (vn) {
619c5cb6 10971 dev_err(&bp->pdev->dev,
51c1a580
MS
10972 "VN %d is in a single function mode, aborting\n",
10973 vn);
619c5cb6 10974 return -EPERM;
2691d51d 10975 }
0793f83f 10976 break;
34f80b04 10977 }
0793f83f 10978
619c5cb6
VZ
10979 /* check if other port on the path needs ovlan:
10980 * Since MF configuration is shared between ports
10981 * Possible mixed modes are only
10982 * {SF, SI} {SF, SD} {SD, SF} {SI, SF}
10983 */
10984 if (CHIP_MODE_IS_4_PORT(bp) &&
10985 !bp->path_has_ovlan &&
10986 !IS_MF(bp) &&
10987 bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
10988 u8 other_port = !BP_PORT(bp);
10989 u8 other_func = BP_PATH(bp) + 2*other_port;
10990 val = MF_CFG_RD(bp,
10991 func_mf_config[other_func].e1hov_tag);
10992 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT)
10993 bp->path_has_ovlan = true;
10994 }
34f80b04 10995 }
a2fbb9ea 10996
f2e0899f
DK
10997 /* adjust igu_sb_cnt to MF for E1x */
10998 if (CHIP_IS_E1x(bp) && IS_MF(bp))
523224a3
DK
10999 bp->igu_sb_cnt /= E1HVN_MAX;
11000
619c5cb6
VZ
11001 /* port info */
11002 bnx2x_get_port_hwinfo(bp);
f2e0899f 11003
0793f83f
DK
11004 /* Get MAC addresses */
11005 bnx2x_get_mac_hwinfo(bp);
a2fbb9ea 11006
2ba45142 11007 bnx2x_get_cnic_info(bp);
2ba45142 11008
34f80b04
EG
11009 return rc;
11010}
11011
0329aba1 11012static void bnx2x_read_fwinfo(struct bnx2x *bp)
34f24c7f
VZ
11013{
11014 int cnt, i, block_end, rodi;
fcdf95cb 11015 char vpd_start[BNX2X_VPD_LEN+1];
34f24c7f
VZ
11016 char str_id_reg[VENDOR_ID_LEN+1];
11017 char str_id_cap[VENDOR_ID_LEN+1];
fcdf95cb
BW
11018 char *vpd_data;
11019 char *vpd_extended_data = NULL;
34f24c7f
VZ
11020 u8 len;
11021
fcdf95cb 11022 cnt = pci_read_vpd(bp->pdev, 0, BNX2X_VPD_LEN, vpd_start);
34f24c7f
VZ
11023 memset(bp->fw_ver, 0, sizeof(bp->fw_ver));
11024
11025 if (cnt < BNX2X_VPD_LEN)
11026 goto out_not_found;
11027
fcdf95cb
BW
11028 /* VPD RO tag should be first tag after identifier string, hence
11029 * we should be able to find it in first BNX2X_VPD_LEN chars
11030 */
11031 i = pci_vpd_find_tag(vpd_start, 0, BNX2X_VPD_LEN,
34f24c7f
VZ
11032 PCI_VPD_LRDT_RO_DATA);
11033 if (i < 0)
11034 goto out_not_found;
11035
34f24c7f 11036 block_end = i + PCI_VPD_LRDT_TAG_SIZE +
fcdf95cb 11037 pci_vpd_lrdt_size(&vpd_start[i]);
34f24c7f
VZ
11038
11039 i += PCI_VPD_LRDT_TAG_SIZE;
11040
fcdf95cb
BW
11041 if (block_end > BNX2X_VPD_LEN) {
11042 vpd_extended_data = kmalloc(block_end, GFP_KERNEL);
11043 if (vpd_extended_data == NULL)
11044 goto out_not_found;
11045
11046 /* read rest of vpd image into vpd_extended_data */
11047 memcpy(vpd_extended_data, vpd_start, BNX2X_VPD_LEN);
11048 cnt = pci_read_vpd(bp->pdev, BNX2X_VPD_LEN,
11049 block_end - BNX2X_VPD_LEN,
11050 vpd_extended_data + BNX2X_VPD_LEN);
11051 if (cnt < (block_end - BNX2X_VPD_LEN))
11052 goto out_not_found;
11053 vpd_data = vpd_extended_data;
11054 } else
11055 vpd_data = vpd_start;
11056
11057 /* now vpd_data holds full vpd content in both cases */
34f24c7f
VZ
11058
11059 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
11060 PCI_VPD_RO_KEYWORD_MFR_ID);
11061 if (rodi < 0)
11062 goto out_not_found;
11063
11064 len = pci_vpd_info_field_size(&vpd_data[rodi]);
11065
11066 if (len != VENDOR_ID_LEN)
11067 goto out_not_found;
11068
11069 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
11070
11071 /* vendor specific info */
11072 snprintf(str_id_reg, VENDOR_ID_LEN + 1, "%04x", PCI_VENDOR_ID_DELL);
11073 snprintf(str_id_cap, VENDOR_ID_LEN + 1, "%04X", PCI_VENDOR_ID_DELL);
11074 if (!strncmp(str_id_reg, &vpd_data[rodi], VENDOR_ID_LEN) ||
11075 !strncmp(str_id_cap, &vpd_data[rodi], VENDOR_ID_LEN)) {
11076
11077 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
11078 PCI_VPD_RO_KEYWORD_VENDOR0);
11079 if (rodi >= 0) {
11080 len = pci_vpd_info_field_size(&vpd_data[rodi]);
11081
11082 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
11083
11084 if (len < 32 && (len + rodi) <= BNX2X_VPD_LEN) {
11085 memcpy(bp->fw_ver, &vpd_data[rodi], len);
11086 bp->fw_ver[len] = ' ';
11087 }
11088 }
fcdf95cb 11089 kfree(vpd_extended_data);
34f24c7f
VZ
11090 return;
11091 }
11092out_not_found:
fcdf95cb 11093 kfree(vpd_extended_data);
34f24c7f
VZ
11094 return;
11095}
11096
0329aba1 11097static void bnx2x_set_modes_bitmap(struct bnx2x *bp)
619c5cb6
VZ
11098{
11099 u32 flags = 0;
11100
11101 if (CHIP_REV_IS_FPGA(bp))
11102 SET_FLAGS(flags, MODE_FPGA);
11103 else if (CHIP_REV_IS_EMUL(bp))
11104 SET_FLAGS(flags, MODE_EMUL);
11105 else
11106 SET_FLAGS(flags, MODE_ASIC);
11107
11108 if (CHIP_MODE_IS_4_PORT(bp))
11109 SET_FLAGS(flags, MODE_PORT4);
11110 else
11111 SET_FLAGS(flags, MODE_PORT2);
11112
11113 if (CHIP_IS_E2(bp))
11114 SET_FLAGS(flags, MODE_E2);
11115 else if (CHIP_IS_E3(bp)) {
11116 SET_FLAGS(flags, MODE_E3);
11117 if (CHIP_REV(bp) == CHIP_REV_Ax)
11118 SET_FLAGS(flags, MODE_E3_A0);
6383c0b3
AE
11119 else /*if (CHIP_REV(bp) == CHIP_REV_Bx)*/
11120 SET_FLAGS(flags, MODE_E3_B0 | MODE_COS3);
619c5cb6
VZ
11121 }
11122
11123 if (IS_MF(bp)) {
11124 SET_FLAGS(flags, MODE_MF);
11125 switch (bp->mf_mode) {
11126 case MULTI_FUNCTION_SD:
11127 SET_FLAGS(flags, MODE_MF_SD);
11128 break;
11129 case MULTI_FUNCTION_SI:
11130 SET_FLAGS(flags, MODE_MF_SI);
11131 break;
a3348722
BW
11132 case MULTI_FUNCTION_AFEX:
11133 SET_FLAGS(flags, MODE_MF_AFEX);
11134 break;
619c5cb6
VZ
11135 }
11136 } else
11137 SET_FLAGS(flags, MODE_SF);
11138
11139#if defined(__LITTLE_ENDIAN)
11140 SET_FLAGS(flags, MODE_LITTLE_ENDIAN);
11141#else /*(__BIG_ENDIAN)*/
11142 SET_FLAGS(flags, MODE_BIG_ENDIAN);
11143#endif
11144 INIT_MODE_FLAGS(bp) = flags;
11145}
11146
0329aba1 11147static int bnx2x_init_bp(struct bnx2x *bp)
34f80b04 11148{
f2e0899f 11149 int func;
34f80b04
EG
11150 int rc;
11151
34f80b04 11152 mutex_init(&bp->port.phy_mutex);
c4ff7cbf 11153 mutex_init(&bp->fw_mb_mutex);
bb7e95c8 11154 spin_lock_init(&bp->stats_lock);
55c11941 11155
a2fbb9ea 11156
1cf167f2 11157 INIT_DELAYED_WORK(&bp->sp_task, bnx2x_sp_task);
7be08a72 11158 INIT_DELAYED_WORK(&bp->sp_rtnl_task, bnx2x_sp_rtnl_task);
3deb8167 11159 INIT_DELAYED_WORK(&bp->period_task, bnx2x_period_task);
1ab4434c
AE
11160 if (IS_PF(bp)) {
11161 rc = bnx2x_get_hwinfo(bp);
11162 if (rc)
11163 return rc;
11164 } else {
11165 random_ether_addr(bp->dev->dev_addr);
11166 }
34f80b04 11167
619c5cb6
VZ
11168 bnx2x_set_modes_bitmap(bp);
11169
11170 rc = bnx2x_alloc_mem_bp(bp);
11171 if (rc)
11172 return rc;
523224a3 11173
34f24c7f 11174 bnx2x_read_fwinfo(bp);
f2e0899f
DK
11175
11176 func = BP_FUNC(bp);
11177
34f80b04 11178 /* need to reset chip if undi was active */
1ab4434c 11179 if (IS_PF(bp) && !BP_NOMCP(bp)) {
452427b0
YM
11180 /* init fw_seq */
11181 bp->fw_seq =
11182 SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
11183 DRV_MSG_SEQ_NUMBER_MASK;
11184 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
11185
11186 bnx2x_prev_unload(bp);
11187 }
11188
34f80b04
EG
11189
11190 if (CHIP_REV_IS_FPGA(bp))
cdaa7cb8 11191 dev_err(&bp->pdev->dev, "FPGA detected\n");
34f80b04
EG
11192
11193 if (BP_NOMCP(bp) && (func == 0))
51c1a580 11194 dev_err(&bp->pdev->dev, "MCP disabled, must load devices in order!\n");
34f80b04 11195
614c76df 11196 bp->disable_tpa = disable_tpa;
a3348722 11197 bp->disable_tpa |= IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp);
614c76df 11198
7a9b2557 11199 /* Set TPA flags */
614c76df 11200 if (bp->disable_tpa) {
621b4d66 11201 bp->flags &= ~(TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11202 bp->dev->features &= ~NETIF_F_LRO;
11203 } else {
621b4d66 11204 bp->flags |= (TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11205 bp->dev->features |= NETIF_F_LRO;
11206 }
11207
a18f5128
EG
11208 if (CHIP_IS_E1(bp))
11209 bp->dropless_fc = 0;
11210 else
7964211d 11211 bp->dropless_fc = dropless_fc | bnx2x_get_dropless_info(bp);
a18f5128 11212
8d5726c4 11213 bp->mrrs = mrrs;
7a9b2557 11214
a3348722 11215 bp->tx_ring_size = IS_MF_FCOE_AFEX(bp) ? 0 : MAX_TX_AVAIL;
1ab4434c
AE
11216 if (IS_VF(bp))
11217 bp->rx_ring_size = MAX_RX_AVAIL;
34f80b04 11218
7d323bfd 11219 /* make sure that the numbers are in the right granularity */
523224a3
DK
11220 bp->tx_ticks = (50 / BNX2X_BTR) * BNX2X_BTR;
11221 bp->rx_ticks = (25 / BNX2X_BTR) * BNX2X_BTR;
34f80b04 11222
fc543637 11223 bp->current_interval = CHIP_REV_IS_SLOW(bp) ? 5*HZ : HZ;
34f80b04
EG
11224
11225 init_timer(&bp->timer);
11226 bp->timer.expires = jiffies + bp->current_interval;
11227 bp->timer.data = (unsigned long) bp;
11228 bp->timer.function = bnx2x_timer;
11229
0370cf90
BW
11230 if (SHMEM2_HAS(bp, dcbx_lldp_params_offset) &&
11231 SHMEM2_HAS(bp, dcbx_lldp_dcbx_stat_offset) &&
11232 SHMEM2_RD(bp, dcbx_lldp_params_offset) &&
11233 SHMEM2_RD(bp, dcbx_lldp_dcbx_stat_offset)) {
11234 bnx2x_dcbx_set_state(bp, true, BNX2X_DCBX_ENABLED_ON_NEG_ON);
11235 bnx2x_dcbx_init_params(bp);
11236 } else {
11237 bnx2x_dcbx_set_state(bp, false, BNX2X_DCBX_ENABLED_OFF);
11238 }
e4901dde 11239
619c5cb6
VZ
11240 if (CHIP_IS_E1x(bp))
11241 bp->cnic_base_cl_id = FP_SB_MAX_E1x;
11242 else
11243 bp->cnic_base_cl_id = FP_SB_MAX_E2;
619c5cb6 11244
6383c0b3 11245 /* multiple tx priority */
1ab4434c
AE
11246 if (IS_VF(bp))
11247 bp->max_cos = 1;
11248 else if (CHIP_IS_E1x(bp))
6383c0b3 11249 bp->max_cos = BNX2X_MULTI_TX_COS_E1X;
1ab4434c 11250 else if (CHIP_IS_E2(bp) || CHIP_IS_E3A0(bp))
6383c0b3 11251 bp->max_cos = BNX2X_MULTI_TX_COS_E2_E3A0;
1ab4434c 11252 else if (CHIP_IS_E3B0(bp))
6383c0b3 11253 bp->max_cos = BNX2X_MULTI_TX_COS_E3B0;
1ab4434c
AE
11254 else
11255 BNX2X_ERR("unknown chip %x revision %x\n",
11256 CHIP_NUM(bp), CHIP_REV(bp));
11257 BNX2X_DEV_INFO("set bp->max_cos to %d\n", bp->max_cos);
6383c0b3 11258
55c11941
MS
11259 /* We need at least one default status block for slow-path events,
11260 * second status block for the L2 queue, and a third status block for
11261 * CNIC if supproted.
11262 */
11263 if (CNIC_SUPPORT(bp))
11264 bp->min_msix_vec_cnt = 3;
11265 else
11266 bp->min_msix_vec_cnt = 2;
11267 BNX2X_DEV_INFO("bp->min_msix_vec_cnt %d", bp->min_msix_vec_cnt);
11268
34f80b04 11269 return rc;
a2fbb9ea
ET
11270}
11271
a2fbb9ea 11272
de0c62db
DK
11273/****************************************************************************
11274* General service functions
11275****************************************************************************/
a2fbb9ea 11276
619c5cb6
VZ
11277/*
11278 * net_device service functions
11279 */
11280
bb2a0f7a 11281/* called with rtnl_lock */
a2fbb9ea
ET
11282static int bnx2x_open(struct net_device *dev)
11283{
11284 struct bnx2x *bp = netdev_priv(dev);
c9ee9206
VZ
11285 bool global = false;
11286 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3 11287 bool other_load_status, load_status;
a2fbb9ea 11288
1355b704
MY
11289 bp->stats_init = true;
11290
6eccabb3
EG
11291 netif_carrier_off(dev);
11292
a2fbb9ea
ET
11293 bnx2x_set_power_state(bp, PCI_D0);
11294
ad5afc89 11295 /* If parity had happen during the unload, then attentions
c9ee9206
VZ
11296 * and/or RECOVERY_IN_PROGRES may still be set. In this case we
11297 * want the first function loaded on the current engine to
11298 * complete the recovery.
ad5afc89 11299 * Parity recovery is only relevant for PF driver.
c9ee9206 11300 */
ad5afc89
AE
11301 if (IS_PF(bp)) {
11302 other_load_status = bnx2x_get_load_status(bp, other_engine);
11303 load_status = bnx2x_get_load_status(bp, BP_PATH(bp));
11304 if (!bnx2x_reset_is_done(bp, BP_PATH(bp)) ||
11305 bnx2x_chk_parity_attn(bp, &global, true)) {
11306 do {
11307 /* If there are attentions and they are in a
11308 * global blocks, set the GLOBAL_RESET bit
11309 * regardless whether it will be this function
11310 * that will complete the recovery or not.
11311 */
11312 if (global)
11313 bnx2x_set_reset_global(bp);
72fd0718 11314
ad5afc89
AE
11315 /* Only the first function on the current
11316 * engine should try to recover in open. In case
11317 * of attentions in global blocks only the first
11318 * in the chip should try to recover.
11319 */
11320 if ((!load_status &&
11321 (!global || !other_load_status)) &&
11322 bnx2x_trylock_leader_lock(bp) &&
11323 !bnx2x_leader_reset(bp)) {
11324 netdev_info(bp->dev,
11325 "Recovered in open\n");
11326 break;
11327 }
72fd0718 11328
ad5afc89
AE
11329 /* recovery has failed... */
11330 bnx2x_set_power_state(bp, PCI_D3hot);
11331 bp->recovery_state = BNX2X_RECOVERY_FAILED;
72fd0718 11332
ad5afc89
AE
11333 BNX2X_ERR("Recovery flow hasn't been properly completed yet. Try again later.\n"
11334 "If you still see this message after a few retries then power cycle is required.\n");
72fd0718 11335
ad5afc89
AE
11336 return -EAGAIN;
11337 } while (0);
11338 }
11339 }
72fd0718
VZ
11340
11341 bp->recovery_state = BNX2X_RECOVERY_DONE;
bb2a0f7a 11342 return bnx2x_nic_load(bp, LOAD_OPEN);
a2fbb9ea
ET
11343}
11344
bb2a0f7a 11345/* called with rtnl_lock */
56ad3152 11346static int bnx2x_close(struct net_device *dev)
a2fbb9ea 11347{
a2fbb9ea
ET
11348 struct bnx2x *bp = netdev_priv(dev);
11349
11350 /* Unload the driver, release IRQs */
5d07d868 11351 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
c9ee9206
VZ
11352
11353 /* Power off */
d3dbfee0 11354 bnx2x_set_power_state(bp, PCI_D3hot);
a2fbb9ea
ET
11355
11356 return 0;
11357}
11358
1191cb83
ED
11359static int bnx2x_init_mcast_macs_list(struct bnx2x *bp,
11360 struct bnx2x_mcast_ramrod_params *p)
6e30dd4e 11361{
619c5cb6
VZ
11362 int mc_count = netdev_mc_count(bp->dev);
11363 struct bnx2x_mcast_list_elem *mc_mac =
11364 kzalloc(sizeof(*mc_mac) * mc_count, GFP_ATOMIC);
11365 struct netdev_hw_addr *ha;
6e30dd4e 11366
619c5cb6
VZ
11367 if (!mc_mac)
11368 return -ENOMEM;
6e30dd4e 11369
619c5cb6 11370 INIT_LIST_HEAD(&p->mcast_list);
6e30dd4e 11371
619c5cb6
VZ
11372 netdev_for_each_mc_addr(ha, bp->dev) {
11373 mc_mac->mac = bnx2x_mc_addr(ha);
11374 list_add_tail(&mc_mac->link, &p->mcast_list);
11375 mc_mac++;
6e30dd4e 11376 }
619c5cb6
VZ
11377
11378 p->mcast_list_len = mc_count;
11379
11380 return 0;
6e30dd4e
VZ
11381}
11382
1191cb83 11383static void bnx2x_free_mcast_macs_list(
619c5cb6
VZ
11384 struct bnx2x_mcast_ramrod_params *p)
11385{
11386 struct bnx2x_mcast_list_elem *mc_mac =
11387 list_first_entry(&p->mcast_list, struct bnx2x_mcast_list_elem,
11388 link);
11389
11390 WARN_ON(!mc_mac);
11391 kfree(mc_mac);
11392}
11393
11394/**
11395 * bnx2x_set_uc_list - configure a new unicast MACs list.
11396 *
11397 * @bp: driver handle
6e30dd4e 11398 *
619c5cb6 11399 * We will use zero (0) as a MAC type for these MACs.
6e30dd4e 11400 */
1191cb83 11401static int bnx2x_set_uc_list(struct bnx2x *bp)
6e30dd4e 11402{
619c5cb6 11403 int rc;
6e30dd4e 11404 struct net_device *dev = bp->dev;
6e30dd4e 11405 struct netdev_hw_addr *ha;
15192a8c 11406 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
619c5cb6 11407 unsigned long ramrod_flags = 0;
6e30dd4e 11408
619c5cb6
VZ
11409 /* First schedule a cleanup up of old configuration */
11410 rc = bnx2x_del_all_macs(bp, mac_obj, BNX2X_UC_LIST_MAC, false);
11411 if (rc < 0) {
11412 BNX2X_ERR("Failed to schedule DELETE operations: %d\n", rc);
11413 return rc;
11414 }
6e30dd4e
VZ
11415
11416 netdev_for_each_uc_addr(ha, dev) {
619c5cb6
VZ
11417 rc = bnx2x_set_mac_one(bp, bnx2x_uc_addr(ha), mac_obj, true,
11418 BNX2X_UC_LIST_MAC, &ramrod_flags);
7b5342d9
YM
11419 if (rc == -EEXIST) {
11420 DP(BNX2X_MSG_SP,
11421 "Failed to schedule ADD operations: %d\n", rc);
11422 /* do not treat adding same MAC as error */
11423 rc = 0;
11424
11425 } else if (rc < 0) {
11426
619c5cb6
VZ
11427 BNX2X_ERR("Failed to schedule ADD operations: %d\n",
11428 rc);
11429 return rc;
6e30dd4e
VZ
11430 }
11431 }
11432
619c5cb6
VZ
11433 /* Execute the pending commands */
11434 __set_bit(RAMROD_CONT, &ramrod_flags);
11435 return bnx2x_set_mac_one(bp, NULL, mac_obj, false /* don't care */,
11436 BNX2X_UC_LIST_MAC, &ramrod_flags);
6e30dd4e
VZ
11437}
11438
1191cb83 11439static int bnx2x_set_mc_list(struct bnx2x *bp)
6e30dd4e 11440{
619c5cb6 11441 struct net_device *dev = bp->dev;
3b603066 11442 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6 11443 int rc = 0;
6e30dd4e 11444
619c5cb6 11445 rparam.mcast_obj = &bp->mcast_obj;
6e30dd4e 11446
619c5cb6
VZ
11447 /* first, clear all configured multicast MACs */
11448 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
11449 if (rc < 0) {
51c1a580 11450 BNX2X_ERR("Failed to clear multicast configuration: %d\n", rc);
619c5cb6
VZ
11451 return rc;
11452 }
6e30dd4e 11453
619c5cb6
VZ
11454 /* then, configure a new MACs list */
11455 if (netdev_mc_count(dev)) {
11456 rc = bnx2x_init_mcast_macs_list(bp, &rparam);
11457 if (rc) {
51c1a580
MS
11458 BNX2X_ERR("Failed to create multicast MACs list: %d\n",
11459 rc);
619c5cb6
VZ
11460 return rc;
11461 }
6e30dd4e 11462
619c5cb6
VZ
11463 /* Now add the new MACs */
11464 rc = bnx2x_config_mcast(bp, &rparam,
11465 BNX2X_MCAST_CMD_ADD);
11466 if (rc < 0)
51c1a580
MS
11467 BNX2X_ERR("Failed to set a new multicast configuration: %d\n",
11468 rc);
6e30dd4e 11469
619c5cb6
VZ
11470 bnx2x_free_mcast_macs_list(&rparam);
11471 }
6e30dd4e 11472
619c5cb6 11473 return rc;
6e30dd4e
VZ
11474}
11475
6e30dd4e 11476
619c5cb6 11477/* If bp->state is OPEN, should be called with netif_addr_lock_bh() */
9f6c9258 11478void bnx2x_set_rx_mode(struct net_device *dev)
34f80b04
EG
11479{
11480 struct bnx2x *bp = netdev_priv(dev);
11481 u32 rx_mode = BNX2X_RX_MODE_NORMAL;
34f80b04
EG
11482
11483 if (bp->state != BNX2X_STATE_OPEN) {
11484 DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
11485 return;
11486 }
11487
619c5cb6 11488 DP(NETIF_MSG_IFUP, "dev->flags = %x\n", bp->dev->flags);
34f80b04
EG
11489
11490 if (dev->flags & IFF_PROMISC)
11491 rx_mode = BNX2X_RX_MODE_PROMISC;
619c5cb6
VZ
11492 else if ((dev->flags & IFF_ALLMULTI) ||
11493 ((netdev_mc_count(dev) > BNX2X_MAX_MULTICAST) &&
11494 CHIP_IS_E1(bp)))
34f80b04 11495 rx_mode = BNX2X_RX_MODE_ALLMULTI;
6e30dd4e 11496 else {
381ac16b
AE
11497 if (IS_PF(bp)) {
11498 /* some multicasts */
11499 if (bnx2x_set_mc_list(bp) < 0)
11500 rx_mode = BNX2X_RX_MODE_ALLMULTI;
34f80b04 11501
381ac16b
AE
11502 if (bnx2x_set_uc_list(bp) < 0)
11503 rx_mode = BNX2X_RX_MODE_PROMISC;
11504 } else {
11505 /* configuring mcast to a vf involves sleeping (when we
11506 * wait for the pf's response). Since this function is
11507 * called from non sleepable context we must schedule
11508 * a work item for this purpose
11509 */
11510 smp_mb__before_clear_bit();
11511 set_bit(BNX2X_SP_RTNL_VFPF_MCAST,
11512 &bp->sp_rtnl_state);
11513 smp_mb__after_clear_bit();
11514 schedule_delayed_work(&bp->sp_rtnl_task, 0);
11515 }
34f80b04
EG
11516 }
11517
11518 bp->rx_mode = rx_mode;
614c76df
DK
11519 /* handle ISCSI SD mode */
11520 if (IS_MF_ISCSI_SD(bp))
11521 bp->rx_mode = BNX2X_RX_MODE_NONE;
619c5cb6
VZ
11522
11523 /* Schedule the rx_mode command */
11524 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state)) {
11525 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
11526 return;
11527 }
11528
381ac16b
AE
11529 if (IS_PF(bp)) {
11530 bnx2x_set_storm_rx_mode(bp);
11531 } else {
11532 /* configuring rx mode to storms in a vf involves sleeping (when
11533 * we wait for the pf's response). Since this function is
11534 * called from non sleepable context we must schedule
11535 * a work item for this purpose
11536 */
11537 smp_mb__before_clear_bit();
11538 set_bit(BNX2X_SP_RTNL_VFPF_STORM_RX_MODE,
11539 &bp->sp_rtnl_state);
11540 smp_mb__after_clear_bit();
11541 schedule_delayed_work(&bp->sp_rtnl_task, 0);
11542 }
34f80b04
EG
11543}
11544
c18487ee 11545/* called with rtnl_lock */
01cd4528
EG
11546static int bnx2x_mdio_read(struct net_device *netdev, int prtad,
11547 int devad, u16 addr)
a2fbb9ea 11548{
01cd4528
EG
11549 struct bnx2x *bp = netdev_priv(netdev);
11550 u16 value;
11551 int rc;
a2fbb9ea 11552
01cd4528
EG
11553 DP(NETIF_MSG_LINK, "mdio_read: prtad 0x%x, devad 0x%x, addr 0x%x\n",
11554 prtad, devad, addr);
a2fbb9ea 11555
01cd4528
EG
11556 /* The HW expects different devad if CL22 is used */
11557 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
c18487ee 11558
01cd4528 11559 bnx2x_acquire_phy_lock(bp);
e10bc84d 11560 rc = bnx2x_phy_read(&bp->link_params, prtad, devad, addr, &value);
01cd4528
EG
11561 bnx2x_release_phy_lock(bp);
11562 DP(NETIF_MSG_LINK, "mdio_read_val 0x%x rc = 0x%x\n", value, rc);
a2fbb9ea 11563
01cd4528
EG
11564 if (!rc)
11565 rc = value;
11566 return rc;
11567}
a2fbb9ea 11568
01cd4528
EG
11569/* called with rtnl_lock */
11570static int bnx2x_mdio_write(struct net_device *netdev, int prtad, int devad,
11571 u16 addr, u16 value)
11572{
11573 struct bnx2x *bp = netdev_priv(netdev);
01cd4528
EG
11574 int rc;
11575
51c1a580
MS
11576 DP(NETIF_MSG_LINK,
11577 "mdio_write: prtad 0x%x, devad 0x%x, addr 0x%x, value 0x%x\n",
11578 prtad, devad, addr, value);
01cd4528 11579
01cd4528
EG
11580 /* The HW expects different devad if CL22 is used */
11581 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
a2fbb9ea 11582
01cd4528 11583 bnx2x_acquire_phy_lock(bp);
e10bc84d 11584 rc = bnx2x_phy_write(&bp->link_params, prtad, devad, addr, value);
01cd4528
EG
11585 bnx2x_release_phy_lock(bp);
11586 return rc;
11587}
c18487ee 11588
01cd4528
EG
11589/* called with rtnl_lock */
11590static int bnx2x_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11591{
11592 struct bnx2x *bp = netdev_priv(dev);
11593 struct mii_ioctl_data *mdio = if_mii(ifr);
a2fbb9ea 11594
01cd4528
EG
11595 DP(NETIF_MSG_LINK, "ioctl: phy id 0x%x, reg 0x%x, val_in 0x%x\n",
11596 mdio->phy_id, mdio->reg_num, mdio->val_in);
a2fbb9ea 11597
01cd4528
EG
11598 if (!netif_running(dev))
11599 return -EAGAIN;
11600
11601 return mdio_mii_ioctl(&bp->mdio, mdio, cmd);
a2fbb9ea
ET
11602}
11603
257ddbda 11604#ifdef CONFIG_NET_POLL_CONTROLLER
a2fbb9ea
ET
11605static void poll_bnx2x(struct net_device *dev)
11606{
11607 struct bnx2x *bp = netdev_priv(dev);
14a15d61 11608 int i;
a2fbb9ea 11609
14a15d61
MS
11610 for_each_eth_queue(bp, i) {
11611 struct bnx2x_fastpath *fp = &bp->fp[i];
11612 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
11613 }
a2fbb9ea
ET
11614}
11615#endif
11616
614c76df
DK
11617static int bnx2x_validate_addr(struct net_device *dev)
11618{
11619 struct bnx2x *bp = netdev_priv(dev);
11620
51c1a580
MS
11621 if (!bnx2x_is_valid_ether_addr(bp, dev->dev_addr)) {
11622 BNX2X_ERR("Non-valid Ethernet address\n");
614c76df 11623 return -EADDRNOTAVAIL;
51c1a580 11624 }
614c76df
DK
11625 return 0;
11626}
11627
c64213cd
SH
11628static const struct net_device_ops bnx2x_netdev_ops = {
11629 .ndo_open = bnx2x_open,
11630 .ndo_stop = bnx2x_close,
11631 .ndo_start_xmit = bnx2x_start_xmit,
8307fa3e 11632 .ndo_select_queue = bnx2x_select_queue,
6e30dd4e 11633 .ndo_set_rx_mode = bnx2x_set_rx_mode,
c64213cd 11634 .ndo_set_mac_address = bnx2x_change_mac_addr,
614c76df 11635 .ndo_validate_addr = bnx2x_validate_addr,
c64213cd
SH
11636 .ndo_do_ioctl = bnx2x_ioctl,
11637 .ndo_change_mtu = bnx2x_change_mtu,
66371c44
MM
11638 .ndo_fix_features = bnx2x_fix_features,
11639 .ndo_set_features = bnx2x_set_features,
c64213cd 11640 .ndo_tx_timeout = bnx2x_tx_timeout,
257ddbda 11641#ifdef CONFIG_NET_POLL_CONTROLLER
c64213cd
SH
11642 .ndo_poll_controller = poll_bnx2x,
11643#endif
6383c0b3
AE
11644 .ndo_setup_tc = bnx2x_setup_tc,
11645
55c11941 11646#ifdef NETDEV_FCOE_WWNN
bf61ee14
VZ
11647 .ndo_fcoe_get_wwn = bnx2x_fcoe_get_wwn,
11648#endif
c64213cd
SH
11649};
11650
1191cb83 11651static int bnx2x_set_coherency_mask(struct bnx2x *bp)
619c5cb6
VZ
11652{
11653 struct device *dev = &bp->pdev->dev;
11654
11655 if (dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) {
11656 bp->flags |= USING_DAC_FLAG;
11657 if (dma_set_coherent_mask(dev, DMA_BIT_MASK(64)) != 0) {
51c1a580 11658 dev_err(dev, "dma_set_coherent_mask failed, aborting\n");
619c5cb6
VZ
11659 return -EIO;
11660 }
11661 } else if (dma_set_mask(dev, DMA_BIT_MASK(32)) != 0) {
11662 dev_err(dev, "System does not support DMA, aborting\n");
11663 return -EIO;
11664 }
11665
11666 return 0;
11667}
11668
1ab4434c
AE
11669static int bnx2x_init_dev(struct bnx2x *bp, struct pci_dev *pdev,
11670 struct net_device *dev, unsigned long board_type)
a2fbb9ea 11671{
a2fbb9ea 11672 int rc;
c22610d0 11673 u32 pci_cfg_dword;
65087cfe
AE
11674 bool chip_is_e1x = (board_type == BCM57710 ||
11675 board_type == BCM57711 ||
11676 board_type == BCM57711E);
a2fbb9ea
ET
11677
11678 SET_NETDEV_DEV(dev, &pdev->dev);
a2fbb9ea 11679
34f80b04
EG
11680 bp->dev = dev;
11681 bp->pdev = pdev;
a2fbb9ea
ET
11682
11683 rc = pci_enable_device(pdev);
11684 if (rc) {
cdaa7cb8
VZ
11685 dev_err(&bp->pdev->dev,
11686 "Cannot enable PCI device, aborting\n");
a2fbb9ea
ET
11687 goto err_out;
11688 }
11689
11690 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
cdaa7cb8
VZ
11691 dev_err(&bp->pdev->dev,
11692 "Cannot find PCI device base address, aborting\n");
a2fbb9ea
ET
11693 rc = -ENODEV;
11694 goto err_out_disable;
11695 }
11696
1ab4434c
AE
11697 if (IS_PF(bp) && !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
11698 dev_err(&bp->pdev->dev, "Cannot find second PCI device base address, aborting\n");
a2fbb9ea
ET
11699 rc = -ENODEV;
11700 goto err_out_disable;
11701 }
11702
092a5fc9
YR
11703 pci_read_config_dword(pdev, PCICFG_REVISION_ID_OFFSET, &pci_cfg_dword);
11704 if ((pci_cfg_dword & PCICFG_REVESION_ID_MASK) ==
11705 PCICFG_REVESION_ID_ERROR_VAL) {
11706 pr_err("PCI device error, probably due to fan failure, aborting\n");
11707 rc = -ENODEV;
11708 goto err_out_disable;
11709 }
11710
34f80b04
EG
11711 if (atomic_read(&pdev->enable_cnt) == 1) {
11712 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
11713 if (rc) {
cdaa7cb8
VZ
11714 dev_err(&bp->pdev->dev,
11715 "Cannot obtain PCI resources, aborting\n");
34f80b04
EG
11716 goto err_out_disable;
11717 }
a2fbb9ea 11718
34f80b04
EG
11719 pci_set_master(pdev);
11720 pci_save_state(pdev);
11721 }
a2fbb9ea 11722
1ab4434c
AE
11723 if (IS_PF(bp)) {
11724 bp->pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
11725 if (bp->pm_cap == 0) {
11726 dev_err(&bp->pdev->dev,
11727 "Cannot find power management capability, aborting\n");
11728 rc = -EIO;
11729 goto err_out_release;
11730 }
a2fbb9ea
ET
11731 }
11732
77c98e6a 11733 if (!pci_is_pcie(pdev)) {
51c1a580 11734 dev_err(&bp->pdev->dev, "Not PCI Express, aborting\n");
a2fbb9ea
ET
11735 rc = -EIO;
11736 goto err_out_release;
11737 }
11738
619c5cb6
VZ
11739 rc = bnx2x_set_coherency_mask(bp);
11740 if (rc)
a2fbb9ea 11741 goto err_out_release;
a2fbb9ea 11742
34f80b04
EG
11743 dev->mem_start = pci_resource_start(pdev, 0);
11744 dev->base_addr = dev->mem_start;
11745 dev->mem_end = pci_resource_end(pdev, 0);
a2fbb9ea
ET
11746
11747 dev->irq = pdev->irq;
11748
275f165f 11749 bp->regview = pci_ioremap_bar(pdev, 0);
a2fbb9ea 11750 if (!bp->regview) {
cdaa7cb8
VZ
11751 dev_err(&bp->pdev->dev,
11752 "Cannot map register space, aborting\n");
a2fbb9ea
ET
11753 rc = -ENOMEM;
11754 goto err_out_release;
11755 }
11756
c22610d0
AE
11757 /* In E1/E1H use pci device function given by kernel.
11758 * In E2/E3 read physical function from ME register since these chips
11759 * support Physical Device Assignment where kernel BDF maybe arbitrary
11760 * (depending on hypervisor).
11761 */
11762 if (chip_is_e1x)
11763 bp->pf_num = PCI_FUNC(pdev->devfn);
11764 else {/* chip is E2/3*/
11765 pci_read_config_dword(bp->pdev,
11766 PCICFG_ME_REGISTER, &pci_cfg_dword);
11767 bp->pf_num = (u8)((pci_cfg_dword & ME_REG_ABS_PF_NUM) >>
11768 ME_REG_ABS_PF_NUM_SHIFT);
11769 }
51c1a580 11770 BNX2X_DEV_INFO("me reg PF num: %d\n", bp->pf_num);
c22610d0 11771
a2fbb9ea
ET
11772 bnx2x_set_power_state(bp, PCI_D0);
11773
34f80b04
EG
11774 /* clean indirect addresses */
11775 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
11776 PCICFG_VENDOR_ID_OFFSET);
a5c53dbc
DK
11777 /*
11778 * Clean the following indirect addresses for all functions since it
9f0096a1
DK
11779 * is not used by the driver.
11780 */
1ab4434c
AE
11781 if (IS_PF(bp)) {
11782 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F0, 0);
11783 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F0, 0);
11784 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F0, 0);
11785 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F0, 0);
11786
11787 if (chip_is_e1x) {
11788 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F1, 0);
11789 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F1, 0);
11790 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F1, 0);
11791 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F1, 0);
11792 }
a5c53dbc 11793
1ab4434c
AE
11794 /* Enable internal target-read (in case we are probed after PF
11795 * FLR). Must be done prior to any BAR read access. Only for
11796 * 57712 and up
11797 */
11798 if (!chip_is_e1x)
11799 REG_WR(bp,
11800 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
a5c53dbc 11801 }
a2fbb9ea 11802
34f80b04 11803 dev->watchdog_timeo = TX_TIMEOUT;
a2fbb9ea 11804
c64213cd 11805 dev->netdev_ops = &bnx2x_netdev_ops;
de0c62db 11806 bnx2x_set_ethtool_ops(dev);
5316bc0b 11807
01789349
JP
11808 dev->priv_flags |= IFF_UNICAST_FLT;
11809
66371c44 11810 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
621b4d66
DK
11811 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
11812 NETIF_F_RXCSUM | NETIF_F_LRO | NETIF_F_GRO |
11813 NETIF_F_RXHASH | NETIF_F_HW_VLAN_TX;
66371c44
MM
11814
11815 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
11816 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_HIGHDMA;
11817
11818 dev->features |= dev->hw_features | NETIF_F_HW_VLAN_RX;
5316bc0b 11819 if (bp->flags & USING_DAC_FLAG)
66371c44 11820 dev->features |= NETIF_F_HIGHDMA;
a2fbb9ea 11821
538dd2e3
MB
11822 /* Add Loopback capability to the device */
11823 dev->hw_features |= NETIF_F_LOOPBACK;
11824
98507672 11825#ifdef BCM_DCBNL
785b9b1a
SR
11826 dev->dcbnl_ops = &bnx2x_dcbnl_ops;
11827#endif
11828
01cd4528
EG
11829 /* get_port_hwinfo() will set prtad and mmds properly */
11830 bp->mdio.prtad = MDIO_PRTAD_NONE;
11831 bp->mdio.mmds = 0;
11832 bp->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
11833 bp->mdio.dev = dev;
11834 bp->mdio.mdio_read = bnx2x_mdio_read;
11835 bp->mdio.mdio_write = bnx2x_mdio_write;
11836
a2fbb9ea
ET
11837 return 0;
11838
a2fbb9ea 11839err_out_release:
34f80b04
EG
11840 if (atomic_read(&pdev->enable_cnt) == 1)
11841 pci_release_regions(pdev);
a2fbb9ea
ET
11842
11843err_out_disable:
11844 pci_disable_device(pdev);
11845 pci_set_drvdata(pdev, NULL);
11846
11847err_out:
11848 return rc;
11849}
11850
1dd06ae8 11851static void bnx2x_get_pcie_width_speed(struct bnx2x *bp, int *width, int *speed)
25047950 11852{
1ab4434c 11853 u32 val = 0;
25047950 11854
1ab4434c 11855 pci_read_config_dword(bp->pdev, PCICFG_LINK_CONTROL, &val);
37f9ce62 11856 *width = (val & PCICFG_LINK_WIDTH) >> PCICFG_LINK_WIDTH_SHIFT;
25047950 11857
37f9ce62
EG
11858 /* return value of 1=2.5GHz 2=5GHz */
11859 *speed = (val & PCICFG_LINK_SPEED) >> PCICFG_LINK_SPEED_SHIFT;
25047950 11860}
37f9ce62 11861
6891dd25 11862static int bnx2x_check_firmware(struct bnx2x *bp)
94a78b79 11863{
37f9ce62 11864 const struct firmware *firmware = bp->firmware;
94a78b79
VZ
11865 struct bnx2x_fw_file_hdr *fw_hdr;
11866 struct bnx2x_fw_file_section *sections;
94a78b79 11867 u32 offset, len, num_ops;
37f9ce62 11868 u16 *ops_offsets;
94a78b79 11869 int i;
37f9ce62 11870 const u8 *fw_ver;
94a78b79 11871
51c1a580
MS
11872 if (firmware->size < sizeof(struct bnx2x_fw_file_hdr)) {
11873 BNX2X_ERR("Wrong FW size\n");
94a78b79 11874 return -EINVAL;
51c1a580 11875 }
94a78b79
VZ
11876
11877 fw_hdr = (struct bnx2x_fw_file_hdr *)firmware->data;
11878 sections = (struct bnx2x_fw_file_section *)fw_hdr;
11879
11880 /* Make sure none of the offsets and sizes make us read beyond
11881 * the end of the firmware data */
11882 for (i = 0; i < sizeof(*fw_hdr) / sizeof(*sections); i++) {
11883 offset = be32_to_cpu(sections[i].offset);
11884 len = be32_to_cpu(sections[i].len);
11885 if (offset + len > firmware->size) {
51c1a580 11886 BNX2X_ERR("Section %d length is out of bounds\n", i);
94a78b79
VZ
11887 return -EINVAL;
11888 }
11889 }
11890
11891 /* Likewise for the init_ops offsets */
11892 offset = be32_to_cpu(fw_hdr->init_ops_offsets.offset);
11893 ops_offsets = (u16 *)(firmware->data + offset);
11894 num_ops = be32_to_cpu(fw_hdr->init_ops.len) / sizeof(struct raw_op);
11895
11896 for (i = 0; i < be32_to_cpu(fw_hdr->init_ops_offsets.len) / 2; i++) {
11897 if (be16_to_cpu(ops_offsets[i]) > num_ops) {
51c1a580 11898 BNX2X_ERR("Section offset %d is out of bounds\n", i);
94a78b79
VZ
11899 return -EINVAL;
11900 }
11901 }
11902
11903 /* Check FW version */
11904 offset = be32_to_cpu(fw_hdr->fw_version.offset);
11905 fw_ver = firmware->data + offset;
11906 if ((fw_ver[0] != BCM_5710_FW_MAJOR_VERSION) ||
11907 (fw_ver[1] != BCM_5710_FW_MINOR_VERSION) ||
11908 (fw_ver[2] != BCM_5710_FW_REVISION_VERSION) ||
11909 (fw_ver[3] != BCM_5710_FW_ENGINEERING_VERSION)) {
51c1a580
MS
11910 BNX2X_ERR("Bad FW version:%d.%d.%d.%d. Should be %d.%d.%d.%d\n",
11911 fw_ver[0], fw_ver[1], fw_ver[2], fw_ver[3],
11912 BCM_5710_FW_MAJOR_VERSION,
94a78b79
VZ
11913 BCM_5710_FW_MINOR_VERSION,
11914 BCM_5710_FW_REVISION_VERSION,
11915 BCM_5710_FW_ENGINEERING_VERSION);
ab6ad5a4 11916 return -EINVAL;
94a78b79
VZ
11917 }
11918
11919 return 0;
11920}
11921
1191cb83 11922static void be32_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 11923{
ab6ad5a4
EG
11924 const __be32 *source = (const __be32 *)_source;
11925 u32 *target = (u32 *)_target;
94a78b79 11926 u32 i;
94a78b79
VZ
11927
11928 for (i = 0; i < n/4; i++)
11929 target[i] = be32_to_cpu(source[i]);
11930}
11931
11932/*
11933 Ops array is stored in the following format:
11934 {op(8bit), offset(24bit, big endian), data(32bit, big endian)}
11935 */
1191cb83 11936static void bnx2x_prep_ops(const u8 *_source, u8 *_target, u32 n)
94a78b79 11937{
ab6ad5a4
EG
11938 const __be32 *source = (const __be32 *)_source;
11939 struct raw_op *target = (struct raw_op *)_target;
94a78b79 11940 u32 i, j, tmp;
94a78b79 11941
ab6ad5a4 11942 for (i = 0, j = 0; i < n/8; i++, j += 2) {
94a78b79
VZ
11943 tmp = be32_to_cpu(source[j]);
11944 target[i].op = (tmp >> 24) & 0xff;
cdaa7cb8
VZ
11945 target[i].offset = tmp & 0xffffff;
11946 target[i].raw_data = be32_to_cpu(source[j + 1]);
94a78b79
VZ
11947 }
11948}
ab6ad5a4 11949
1aa8b471 11950/* IRO array is stored in the following format:
523224a3
DK
11951 * {base(24bit), m1(16bit), m2(16bit), m3(16bit), size(16bit) }
11952 */
1191cb83 11953static void bnx2x_prep_iro(const u8 *_source, u8 *_target, u32 n)
523224a3
DK
11954{
11955 const __be32 *source = (const __be32 *)_source;
11956 struct iro *target = (struct iro *)_target;
11957 u32 i, j, tmp;
11958
11959 for (i = 0, j = 0; i < n/sizeof(struct iro); i++) {
11960 target[i].base = be32_to_cpu(source[j]);
11961 j++;
11962 tmp = be32_to_cpu(source[j]);
11963 target[i].m1 = (tmp >> 16) & 0xffff;
11964 target[i].m2 = tmp & 0xffff;
11965 j++;
11966 tmp = be32_to_cpu(source[j]);
11967 target[i].m3 = (tmp >> 16) & 0xffff;
11968 target[i].size = tmp & 0xffff;
11969 j++;
11970 }
11971}
11972
1191cb83 11973static void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 11974{
ab6ad5a4
EG
11975 const __be16 *source = (const __be16 *)_source;
11976 u16 *target = (u16 *)_target;
94a78b79 11977 u32 i;
94a78b79
VZ
11978
11979 for (i = 0; i < n/2; i++)
11980 target[i] = be16_to_cpu(source[i]);
11981}
11982
7995c64e
JP
11983#define BNX2X_ALLOC_AND_SET(arr, lbl, func) \
11984do { \
11985 u32 len = be32_to_cpu(fw_hdr->arr.len); \
11986 bp->arr = kmalloc(len, GFP_KERNEL); \
e404decb 11987 if (!bp->arr) \
7995c64e 11988 goto lbl; \
7995c64e
JP
11989 func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
11990 (u8 *)bp->arr, len); \
11991} while (0)
94a78b79 11992
3b603066 11993static int bnx2x_init_firmware(struct bnx2x *bp)
94a78b79 11994{
c0ea452e 11995 const char *fw_file_name;
94a78b79 11996 struct bnx2x_fw_file_hdr *fw_hdr;
45229b42 11997 int rc;
94a78b79 11998
c0ea452e
MS
11999 if (bp->firmware)
12000 return 0;
94a78b79 12001
c0ea452e
MS
12002 if (CHIP_IS_E1(bp))
12003 fw_file_name = FW_FILE_NAME_E1;
12004 else if (CHIP_IS_E1H(bp))
12005 fw_file_name = FW_FILE_NAME_E1H;
12006 else if (!CHIP_IS_E1x(bp))
12007 fw_file_name = FW_FILE_NAME_E2;
12008 else {
12009 BNX2X_ERR("Unsupported chip revision\n");
12010 return -EINVAL;
12011 }
12012 BNX2X_DEV_INFO("Loading %s\n", fw_file_name);
94a78b79 12013
c0ea452e
MS
12014 rc = request_firmware(&bp->firmware, fw_file_name, &bp->pdev->dev);
12015 if (rc) {
12016 BNX2X_ERR("Can't load firmware file %s\n",
12017 fw_file_name);
12018 goto request_firmware_exit;
12019 }
eb2afd4a 12020
c0ea452e
MS
12021 rc = bnx2x_check_firmware(bp);
12022 if (rc) {
12023 BNX2X_ERR("Corrupt firmware file %s\n", fw_file_name);
12024 goto request_firmware_exit;
94a78b79
VZ
12025 }
12026
12027 fw_hdr = (struct bnx2x_fw_file_hdr *)bp->firmware->data;
12028
12029 /* Initialize the pointers to the init arrays */
12030 /* Blob */
12031 BNX2X_ALLOC_AND_SET(init_data, request_firmware_exit, be32_to_cpu_n);
12032
12033 /* Opcodes */
12034 BNX2X_ALLOC_AND_SET(init_ops, init_ops_alloc_err, bnx2x_prep_ops);
12035
12036 /* Offsets */
ab6ad5a4
EG
12037 BNX2X_ALLOC_AND_SET(init_ops_offsets, init_offsets_alloc_err,
12038 be16_to_cpu_n);
94a78b79
VZ
12039
12040 /* STORMs firmware */
573f2035
EG
12041 INIT_TSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12042 be32_to_cpu(fw_hdr->tsem_int_table_data.offset);
12043 INIT_TSEM_PRAM_DATA(bp) = bp->firmware->data +
12044 be32_to_cpu(fw_hdr->tsem_pram_data.offset);
12045 INIT_USEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12046 be32_to_cpu(fw_hdr->usem_int_table_data.offset);
12047 INIT_USEM_PRAM_DATA(bp) = bp->firmware->data +
12048 be32_to_cpu(fw_hdr->usem_pram_data.offset);
12049 INIT_XSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12050 be32_to_cpu(fw_hdr->xsem_int_table_data.offset);
12051 INIT_XSEM_PRAM_DATA(bp) = bp->firmware->data +
12052 be32_to_cpu(fw_hdr->xsem_pram_data.offset);
12053 INIT_CSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12054 be32_to_cpu(fw_hdr->csem_int_table_data.offset);
12055 INIT_CSEM_PRAM_DATA(bp) = bp->firmware->data +
12056 be32_to_cpu(fw_hdr->csem_pram_data.offset);
523224a3
DK
12057 /* IRO */
12058 BNX2X_ALLOC_AND_SET(iro_arr, iro_alloc_err, bnx2x_prep_iro);
94a78b79
VZ
12059
12060 return 0;
ab6ad5a4 12061
523224a3
DK
12062iro_alloc_err:
12063 kfree(bp->init_ops_offsets);
94a78b79
VZ
12064init_offsets_alloc_err:
12065 kfree(bp->init_ops);
12066init_ops_alloc_err:
12067 kfree(bp->init_data);
12068request_firmware_exit:
12069 release_firmware(bp->firmware);
127d0a19 12070 bp->firmware = NULL;
94a78b79
VZ
12071
12072 return rc;
12073}
12074
619c5cb6
VZ
12075static void bnx2x_release_firmware(struct bnx2x *bp)
12076{
12077 kfree(bp->init_ops_offsets);
12078 kfree(bp->init_ops);
12079 kfree(bp->init_data);
12080 release_firmware(bp->firmware);
eb2afd4a 12081 bp->firmware = NULL;
619c5cb6
VZ
12082}
12083
12084
12085static struct bnx2x_func_sp_drv_ops bnx2x_func_sp_drv = {
12086 .init_hw_cmn_chip = bnx2x_init_hw_common_chip,
12087 .init_hw_cmn = bnx2x_init_hw_common,
12088 .init_hw_port = bnx2x_init_hw_port,
12089 .init_hw_func = bnx2x_init_hw_func,
12090
12091 .reset_hw_cmn = bnx2x_reset_common,
12092 .reset_hw_port = bnx2x_reset_port,
12093 .reset_hw_func = bnx2x_reset_func,
12094
12095 .gunzip_init = bnx2x_gunzip_init,
12096 .gunzip_end = bnx2x_gunzip_end,
12097
12098 .init_fw = bnx2x_init_firmware,
12099 .release_fw = bnx2x_release_firmware,
12100};
12101
12102void bnx2x__init_func_obj(struct bnx2x *bp)
12103{
12104 /* Prepare DMAE related driver resources */
12105 bnx2x_setup_dmae(bp);
12106
12107 bnx2x_init_func_obj(bp, &bp->func_obj,
12108 bnx2x_sp(bp, func_rdata),
12109 bnx2x_sp_mapping(bp, func_rdata),
a3348722
BW
12110 bnx2x_sp(bp, func_afex_rdata),
12111 bnx2x_sp_mapping(bp, func_afex_rdata),
619c5cb6
VZ
12112 &bnx2x_func_sp_drv);
12113}
12114
12115/* must be called after sriov-enable */
1191cb83 12116static int bnx2x_set_qm_cid_count(struct bnx2x *bp)
523224a3 12117{
37ae41a9 12118 int cid_count = BNX2X_L2_MAX_CID(bp);
94a78b79 12119
290ca2bb
AE
12120 if (IS_SRIOV(bp))
12121 cid_count += BNX2X_VF_CIDS;
12122
55c11941
MS
12123 if (CNIC_SUPPORT(bp))
12124 cid_count += CNIC_CID_MAX;
290ca2bb 12125
523224a3
DK
12126 return roundup(cid_count, QM_CID_ROUND);
12127}
f85582f8 12128
619c5cb6 12129/**
6383c0b3 12130 * bnx2x_get_num_none_def_sbs - return the number of none default SBs
619c5cb6
VZ
12131 *
12132 * @dev: pci device
12133 *
12134 */
55c11941 12135static int bnx2x_get_num_non_def_sbs(struct pci_dev *pdev,
1ab4434c 12136 int cnic_cnt, bool is_vf)
619c5cb6 12137{
1ab4434c
AE
12138 int pos, index;
12139 u16 control = 0;
619c5cb6
VZ
12140
12141 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
6383c0b3
AE
12142
12143 /*
12144 * If MSI-X is not supported - return number of SBs needed to support
12145 * one fast path queue: one FP queue + SB for CNIC
12146 */
1ab4434c
AE
12147 if (!pos) {
12148 dev_info(&pdev->dev, "no msix capability found\n");
55c11941 12149 return 1 + cnic_cnt;
1ab4434c
AE
12150 }
12151 dev_info(&pdev->dev, "msix capability found\n");
619c5cb6 12152
6383c0b3
AE
12153 /*
12154 * The value in the PCI configuration space is the index of the last
12155 * entry, namely one less than the actual size of the table, which is
12156 * exactly what we want to return from this function: number of all SBs
12157 * without the default SB.
1ab4434c 12158 * For VFs there is no default SB, then we return (index+1).
6383c0b3 12159 */
619c5cb6 12160 pci_read_config_word(pdev, pos + PCI_MSI_FLAGS, &control);
619c5cb6 12161
1ab4434c 12162 index = control & PCI_MSIX_FLAGS_QSIZE;
4bd9b0ff 12163
1ab4434c
AE
12164 return is_vf ? index + 1 : index;
12165}
523224a3 12166
1ab4434c
AE
12167static int set_max_cos_est(int chip_id)
12168{
12169 switch (chip_id) {
f2e0899f
DK
12170 case BCM57710:
12171 case BCM57711:
12172 case BCM57711E:
1ab4434c 12173 return BNX2X_MULTI_TX_COS_E1X;
f2e0899f 12174 case BCM57712:
619c5cb6 12175 case BCM57712_MF:
1ab4434c
AE
12176 case BCM57712_VF:
12177 return BNX2X_MULTI_TX_COS_E2_E3A0;
619c5cb6
VZ
12178 case BCM57800:
12179 case BCM57800_MF:
1ab4434c 12180 case BCM57800_VF:
619c5cb6
VZ
12181 case BCM57810:
12182 case BCM57810_MF:
c3def943
YM
12183 case BCM57840_4_10:
12184 case BCM57840_2_20:
1ab4434c 12185 case BCM57840_O:
c3def943 12186 case BCM57840_MFO:
1ab4434c 12187 case BCM57810_VF:
619c5cb6 12188 case BCM57840_MF:
1ab4434c 12189 case BCM57840_VF:
7e8e02df
BW
12190 case BCM57811:
12191 case BCM57811_MF:
1ab4434c
AE
12192 case BCM57811_VF:
12193 return BNX2X_MULTI_TX_COS_E3B0;
12194 return 1;
f2e0899f 12195 default:
1ab4434c 12196 pr_err("Unknown board_type (%d), aborting\n", chip_id);
870634b0 12197 return -ENODEV;
f2e0899f 12198 }
1ab4434c 12199}
f2e0899f 12200
1ab4434c
AE
12201static int set_is_vf(int chip_id)
12202{
12203 switch (chip_id) {
12204 case BCM57712_VF:
12205 case BCM57800_VF:
12206 case BCM57810_VF:
12207 case BCM57840_VF:
12208 case BCM57811_VF:
12209 return true;
12210 default:
12211 return false;
12212 }
12213}
6383c0b3 12214
1ab4434c
AE
12215struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev);
12216
12217static int bnx2x_init_one(struct pci_dev *pdev,
12218 const struct pci_device_id *ent)
12219{
12220 struct net_device *dev = NULL;
12221 struct bnx2x *bp;
12222 int pcie_width, pcie_speed;
12223 int rc, max_non_def_sbs;
12224 int rx_count, tx_count, rss_count, doorbell_size;
12225 int max_cos_est;
12226 bool is_vf;
12227 int cnic_cnt;
12228
12229 /* An estimated maximum supported CoS number according to the chip
12230 * version.
12231 * We will try to roughly estimate the maximum number of CoSes this chip
12232 * may support in order to minimize the memory allocated for Tx
12233 * netdev_queue's. This number will be accurately calculated during the
12234 * initialization of bp->max_cos based on the chip versions AND chip
12235 * revision in the bnx2x_init_bp().
12236 */
12237 max_cos_est = set_max_cos_est(ent->driver_data);
12238 if (max_cos_est < 0)
12239 return max_cos_est;
12240 is_vf = set_is_vf(ent->driver_data);
12241 cnic_cnt = is_vf ? 0 : 1;
12242
12243 max_non_def_sbs = bnx2x_get_num_non_def_sbs(pdev, cnic_cnt, is_vf);
6383c0b3
AE
12244
12245 /* Maximum number of RSS queues: one IGU SB goes to CNIC */
1ab4434c
AE
12246 rss_count = is_vf ? 1 : max_non_def_sbs - cnic_cnt;
12247
12248 if (rss_count < 1)
12249 return -EINVAL;
6383c0b3
AE
12250
12251 /* Maximum number of netdev Rx queues: RSS + FCoE L2 */
55c11941 12252 rx_count = rss_count + cnic_cnt;
6383c0b3 12253
1ab4434c 12254 /* Maximum number of netdev Tx queues:
37ae41a9 12255 * Maximum TSS queues * Maximum supported number of CoS + FCoE L2
6383c0b3 12256 */
55c11941 12257 tx_count = rss_count * max_cos_est + cnic_cnt;
f85582f8 12258
a2fbb9ea 12259 /* dev zeroed in init_etherdev */
6383c0b3 12260 dev = alloc_etherdev_mqs(sizeof(*bp), tx_count, rx_count);
41de8d4c 12261 if (!dev)
a2fbb9ea
ET
12262 return -ENOMEM;
12263
a2fbb9ea 12264 bp = netdev_priv(dev);
a2fbb9ea 12265
1ab4434c
AE
12266 bp->flags = 0;
12267 if (is_vf)
12268 bp->flags |= IS_VF_FLAG;
12269
6383c0b3 12270 bp->igu_sb_cnt = max_non_def_sbs;
1ab4434c 12271 bp->igu_base_addr = IS_VF(bp) ? PXP_VF_ADDR_IGU_START : BAR_IGU_INTMEM;
6383c0b3 12272 bp->msg_enable = debug;
55c11941 12273 bp->cnic_support = cnic_cnt;
4bd9b0ff 12274 bp->cnic_probe = bnx2x_cnic_probe;
55c11941 12275
6383c0b3 12276 pci_set_drvdata(pdev, dev);
523224a3 12277
1ab4434c 12278 rc = bnx2x_init_dev(bp, pdev, dev, ent->driver_data);
a2fbb9ea
ET
12279 if (rc < 0) {
12280 free_netdev(dev);
12281 return rc;
12282 }
12283
1ab4434c
AE
12284 BNX2X_DEV_INFO("This is a %s function\n",
12285 IS_PF(bp) ? "physical" : "virtual");
55c11941 12286 BNX2X_DEV_INFO("Cnic support is %s\n", CNIC_SUPPORT(bp) ? "on" : "off");
1ab4434c 12287 BNX2X_DEV_INFO("Max num of status blocks %d\n", max_non_def_sbs);
60aa0509
MS
12288 BNX2X_DEV_INFO("Allocated netdev with %d tx and %d rx queues\n",
12289 tx_count, rx_count);
12290
34f80b04 12291 rc = bnx2x_init_bp(bp);
693fc0d1
EG
12292 if (rc)
12293 goto init_one_exit;
12294
1ab4434c
AE
12295 /* Map doorbells here as we need the real value of bp->max_cos which
12296 * is initialized in bnx2x_init_bp() to determine the number of
12297 * l2 connections.
6383c0b3 12298 */
1ab4434c
AE
12299 if (IS_VF(bp)) {
12300 /* vf doorbells are embedded within the regview */
12301 bp->doorbells = bp->regview + PXP_VF_ADDR_DB_START;
12302
12303 /* allocate vf2pf mailbox for vf to pf channel */
12304 BNX2X_PCI_ALLOC(bp->vf2pf_mbox, &bp->vf2pf_mbox_mapping,
12305 sizeof(struct bnx2x_vf_mbx_msg));
12306 } else {
12307 doorbell_size = BNX2X_L2_MAX_CID(bp) * (1 << BNX2X_DB_SHIFT);
12308 if (doorbell_size > pci_resource_len(pdev, 2)) {
12309 dev_err(&bp->pdev->dev,
12310 "Cannot map doorbells, bar size too small, aborting\n");
12311 rc = -ENOMEM;
12312 goto init_one_exit;
12313 }
12314 bp->doorbells = ioremap_nocache(pci_resource_start(pdev, 2),
12315 doorbell_size);
37ae41a9 12316 }
6383c0b3
AE
12317 if (!bp->doorbells) {
12318 dev_err(&bp->pdev->dev,
12319 "Cannot map doorbell space, aborting\n");
12320 rc = -ENOMEM;
12321 goto init_one_exit;
12322 }
12323
be1f1ffa
AE
12324 if (IS_VF(bp)) {
12325 rc = bnx2x_vfpf_acquire(bp, tx_count, rx_count);
12326 if (rc)
12327 goto init_one_exit;
12328 }
12329
290ca2bb
AE
12330 /* Enable SRIOV if capability found in configuration space.
12331 * Once the generic SR-IOV framework makes it in from the
12332 * pci tree this will be revised, to allow dynamic control
12333 * over the number of VFs. Right now, change the num of vfs
12334 * param below to enable SR-IOV.
12335 */
12336 rc = bnx2x_iov_init_one(bp, int_mode, 0/*num vfs*/);
12337 if (rc)
12338 goto init_one_exit;
12339
523224a3 12340 /* calc qm_cid_count */
6383c0b3 12341 bp->qm_cid_count = bnx2x_set_qm_cid_count(bp);
1ab4434c 12342 BNX2X_DEV_INFO("qm_cid_count %d\n", bp->qm_cid_count);
523224a3 12343
55c11941 12344 /* disable FCOE L2 queue for E1x*/
62ac0dc9 12345 if (CHIP_IS_E1x(bp))
ec6ba945
VZ
12346 bp->flags |= NO_FCOE_FLAG;
12347
477864dd
DK
12348 /* disable FCOE for 57840 device, until FW supports it */
12349 switch (ent->driver_data) {
12350 case BCM57840_O:
12351 case BCM57840_4_10:
12352 case BCM57840_2_20:
12353 case BCM57840_MFO:
12354 case BCM57840_MF:
12355 bp->flags |= NO_FCOE_FLAG;
12356 }
0e8d2ec5
MS
12357
12358 /* Set bp->num_queues for MSI-X mode*/
12359 bnx2x_set_num_queues(bp);
12360
25985edc 12361 /* Configure interrupt mode: try to enable MSI-X/MSI if
0e8d2ec5 12362 * needed.
d6214d7a 12363 */
1ab4434c
AE
12364 rc = bnx2x_set_int_mode(bp);
12365 if (rc) {
12366 dev_err(&pdev->dev, "Cannot set interrupts\n");
12367 goto init_one_exit;
12368 }
d6214d7a 12369
1ab4434c 12370 /* register the net device */
b340007f
VZ
12371 rc = register_netdev(dev);
12372 if (rc) {
12373 dev_err(&pdev->dev, "Cannot register net device\n");
12374 goto init_one_exit;
12375 }
1ab4434c 12376 BNX2X_DEV_INFO("device name after netdev register %s\n", dev->name);
b340007f 12377
55c11941 12378
ec6ba945
VZ
12379 if (!NO_FCOE(bp)) {
12380 /* Add storage MAC address */
12381 rtnl_lock();
12382 dev_addr_add(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12383 rtnl_unlock();
12384 }
ec6ba945 12385
37f9ce62 12386 bnx2x_get_pcie_width_speed(bp, &pcie_width, &pcie_speed);
1ab4434c
AE
12387 BNX2X_DEV_INFO("got pcie width %d and speed %d\n",
12388 pcie_width, pcie_speed);
d6214d7a 12389
51c1a580
MS
12390 BNX2X_DEV_INFO(
12391 "%s (%c%d) PCI-E x%d %s found at mem %lx, IRQ %d, node addr %pM\n",
94f05b0f
JP
12392 board_info[ent->driver_data].name,
12393 (CHIP_REV(bp) >> 12) + 'A', (CHIP_METAL(bp) >> 4),
12394 pcie_width,
12395 ((!CHIP_IS_E2(bp) && pcie_speed == 2) ||
12396 (CHIP_IS_E2(bp) && pcie_speed == 1)) ?
12397 "5GHz (Gen2)" : "2.5GHz",
12398 dev->base_addr, bp->pdev->irq, dev->dev_addr);
c016201c 12399
a2fbb9ea 12400 return 0;
34f80b04 12401
1ab4434c
AE
12402alloc_mem_err:
12403 BNX2X_PCI_FREE(bp->vf2pf_mbox, bp->vf2pf_mbox_mapping,
12404 sizeof(struct bnx2x_vf_mbx_msg));
12405 rc = -ENOMEM;
12406
34f80b04
EG
12407init_one_exit:
12408 if (bp->regview)
12409 iounmap(bp->regview);
12410
1ab4434c 12411 if (IS_PF(bp) && bp->doorbells)
34f80b04
EG
12412 iounmap(bp->doorbells);
12413
12414 free_netdev(dev);
12415
12416 if (atomic_read(&pdev->enable_cnt) == 1)
12417 pci_release_regions(pdev);
12418
12419 pci_disable_device(pdev);
12420 pci_set_drvdata(pdev, NULL);
12421
12422 return rc;
a2fbb9ea
ET
12423}
12424
0329aba1 12425static void bnx2x_remove_one(struct pci_dev *pdev)
a2fbb9ea
ET
12426{
12427 struct net_device *dev = pci_get_drvdata(pdev);
228241eb
ET
12428 struct bnx2x *bp;
12429
12430 if (!dev) {
cdaa7cb8 12431 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
228241eb
ET
12432 return;
12433 }
228241eb 12434 bp = netdev_priv(dev);
a2fbb9ea 12435
ec6ba945
VZ
12436 /* Delete storage MAC address */
12437 if (!NO_FCOE(bp)) {
12438 rtnl_lock();
12439 dev_addr_del(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12440 rtnl_unlock();
12441 }
ec6ba945 12442
98507672
SR
12443#ifdef BCM_DCBNL
12444 /* Delete app tlvs from dcbnl */
12445 bnx2x_dcbnl_update_applist(bp, true);
12446#endif
12447
a2fbb9ea
ET
12448 unregister_netdev(dev);
12449
084d6cbb 12450 /* Power on: we can't let PCI layer write to us while we are in D3 */
1ab4434c
AE
12451 if (IS_PF(bp))
12452 bnx2x_set_power_state(bp, PCI_D0);
084d6cbb 12453
d6214d7a
DK
12454 /* Disable MSI/MSI-X */
12455 bnx2x_disable_msi(bp);
f85582f8 12456
084d6cbb 12457 /* Power off */
1ab4434c
AE
12458 if (IS_PF(bp))
12459 bnx2x_set_power_state(bp, PCI_D3hot);
084d6cbb 12460
72fd0718 12461 /* Make sure RESET task is not scheduled before continuing */
7be08a72 12462 cancel_delayed_work_sync(&bp->sp_rtnl_task);
290ca2bb
AE
12463
12464 bnx2x_iov_remove_one(bp);
12465
4513f925
AE
12466 /* send message via vfpf channel to release the resources of this vf */
12467 if (IS_VF(bp))
12468 bnx2x_vfpf_release(bp);
72fd0718 12469
a2fbb9ea
ET
12470 if (bp->regview)
12471 iounmap(bp->regview);
12472
1ab4434c
AE
12473 /* for vf doorbells are part of the regview and were unmapped along with
12474 * it. FW is only loaded by PF.
12475 */
12476 if (IS_PF(bp)) {
12477 if (bp->doorbells)
12478 iounmap(bp->doorbells);
eb2afd4a 12479
1ab4434c
AE
12480 bnx2x_release_firmware(bp);
12481 }
523224a3
DK
12482 bnx2x_free_mem_bp(bp);
12483
a2fbb9ea 12484 free_netdev(dev);
34f80b04
EG
12485
12486 if (atomic_read(&pdev->enable_cnt) == 1)
12487 pci_release_regions(pdev);
12488
a2fbb9ea
ET
12489 pci_disable_device(pdev);
12490 pci_set_drvdata(pdev, NULL);
12491}
12492
f8ef6e44
YG
12493static int bnx2x_eeh_nic_unload(struct bnx2x *bp)
12494{
12495 int i;
12496
12497 bp->state = BNX2X_STATE_ERROR;
12498
12499 bp->rx_mode = BNX2X_RX_MODE_NONE;
12500
55c11941
MS
12501 if (CNIC_LOADED(bp))
12502 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
12503
619c5cb6
VZ
12504 /* Stop Tx */
12505 bnx2x_tx_disable(bp);
12506
f8ef6e44 12507 bnx2x_netif_stop(bp, 0);
26614ba5
MS
12508 /* Delete all NAPI objects */
12509 bnx2x_del_all_napi(bp);
55c11941
MS
12510 if (CNIC_LOADED(bp))
12511 bnx2x_del_all_napi_cnic(bp);
f8ef6e44
YG
12512
12513 del_timer_sync(&bp->timer);
619c5cb6
VZ
12514
12515 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
f8ef6e44
YG
12516
12517 /* Release IRQs */
d6214d7a 12518 bnx2x_free_irq(bp);
f8ef6e44 12519
f8ef6e44
YG
12520 /* Free SKBs, SGEs, TPA pool and driver internals */
12521 bnx2x_free_skbs(bp);
523224a3 12522
ec6ba945 12523 for_each_rx_queue(bp, i)
f8ef6e44 12524 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
d6214d7a 12525
f8ef6e44
YG
12526 bnx2x_free_mem(bp);
12527
12528 bp->state = BNX2X_STATE_CLOSED;
12529
619c5cb6
VZ
12530 netif_carrier_off(bp->dev);
12531
f8ef6e44
YG
12532 return 0;
12533}
12534
12535static void bnx2x_eeh_recover(struct bnx2x *bp)
12536{
12537 u32 val;
12538
12539 mutex_init(&bp->port.phy_mutex);
12540
f8ef6e44
YG
12541
12542 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
12543 if ((val & (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12544 != (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12545 BNX2X_ERR("BAD MCP validity signature\n");
f8ef6e44
YG
12546}
12547
493adb1f
WX
12548/**
12549 * bnx2x_io_error_detected - called when PCI error is detected
12550 * @pdev: Pointer to PCI device
12551 * @state: The current pci connection state
12552 *
12553 * This function is called after a PCI bus error affecting
12554 * this device has been detected.
12555 */
12556static pci_ers_result_t bnx2x_io_error_detected(struct pci_dev *pdev,
12557 pci_channel_state_t state)
12558{
12559 struct net_device *dev = pci_get_drvdata(pdev);
12560 struct bnx2x *bp = netdev_priv(dev);
12561
12562 rtnl_lock();
12563
12564 netif_device_detach(dev);
12565
07ce50e4
DN
12566 if (state == pci_channel_io_perm_failure) {
12567 rtnl_unlock();
12568 return PCI_ERS_RESULT_DISCONNECT;
12569 }
12570
493adb1f 12571 if (netif_running(dev))
f8ef6e44 12572 bnx2x_eeh_nic_unload(bp);
493adb1f
WX
12573
12574 pci_disable_device(pdev);
12575
12576 rtnl_unlock();
12577
12578 /* Request a slot reset */
12579 return PCI_ERS_RESULT_NEED_RESET;
12580}
12581
12582/**
12583 * bnx2x_io_slot_reset - called after the PCI bus has been reset
12584 * @pdev: Pointer to PCI device
12585 *
12586 * Restart the card from scratch, as if from a cold-boot.
12587 */
12588static pci_ers_result_t bnx2x_io_slot_reset(struct pci_dev *pdev)
12589{
12590 struct net_device *dev = pci_get_drvdata(pdev);
12591 struct bnx2x *bp = netdev_priv(dev);
12592
12593 rtnl_lock();
12594
12595 if (pci_enable_device(pdev)) {
12596 dev_err(&pdev->dev,
12597 "Cannot re-enable PCI device after reset\n");
12598 rtnl_unlock();
12599 return PCI_ERS_RESULT_DISCONNECT;
12600 }
12601
12602 pci_set_master(pdev);
12603 pci_restore_state(pdev);
12604
12605 if (netif_running(dev))
12606 bnx2x_set_power_state(bp, PCI_D0);
12607
12608 rtnl_unlock();
12609
12610 return PCI_ERS_RESULT_RECOVERED;
12611}
12612
12613/**
12614 * bnx2x_io_resume - called when traffic can start flowing again
12615 * @pdev: Pointer to PCI device
12616 *
12617 * This callback is called when the error recovery driver tells us that
12618 * its OK to resume normal operation.
12619 */
12620static void bnx2x_io_resume(struct pci_dev *pdev)
12621{
12622 struct net_device *dev = pci_get_drvdata(pdev);
12623 struct bnx2x *bp = netdev_priv(dev);
12624
72fd0718 12625 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 12626 netdev_err(bp->dev, "Handling parity error recovery. Try again later\n");
72fd0718
VZ
12627 return;
12628 }
12629
493adb1f
WX
12630 rtnl_lock();
12631
f8ef6e44
YG
12632 bnx2x_eeh_recover(bp);
12633
493adb1f 12634 if (netif_running(dev))
f8ef6e44 12635 bnx2x_nic_load(bp, LOAD_NORMAL);
493adb1f
WX
12636
12637 netif_device_attach(dev);
12638
12639 rtnl_unlock();
12640}
12641
3646f0e5 12642static const struct pci_error_handlers bnx2x_err_handler = {
493adb1f 12643 .error_detected = bnx2x_io_error_detected,
356e2385
EG
12644 .slot_reset = bnx2x_io_slot_reset,
12645 .resume = bnx2x_io_resume,
493adb1f
WX
12646};
12647
a2fbb9ea 12648static struct pci_driver bnx2x_pci_driver = {
493adb1f
WX
12649 .name = DRV_MODULE_NAME,
12650 .id_table = bnx2x_pci_tbl,
12651 .probe = bnx2x_init_one,
0329aba1 12652 .remove = bnx2x_remove_one,
493adb1f
WX
12653 .suspend = bnx2x_suspend,
12654 .resume = bnx2x_resume,
12655 .err_handler = &bnx2x_err_handler,
a2fbb9ea
ET
12656};
12657
12658static int __init bnx2x_init(void)
12659{
dd21ca6d
SG
12660 int ret;
12661
7995c64e 12662 pr_info("%s", version);
938cf541 12663
1cf167f2
EG
12664 bnx2x_wq = create_singlethread_workqueue("bnx2x");
12665 if (bnx2x_wq == NULL) {
7995c64e 12666 pr_err("Cannot create workqueue\n");
1cf167f2
EG
12667 return -ENOMEM;
12668 }
12669
dd21ca6d
SG
12670 ret = pci_register_driver(&bnx2x_pci_driver);
12671 if (ret) {
7995c64e 12672 pr_err("Cannot register driver\n");
dd21ca6d
SG
12673 destroy_workqueue(bnx2x_wq);
12674 }
12675 return ret;
a2fbb9ea
ET
12676}
12677
12678static void __exit bnx2x_cleanup(void)
12679{
452427b0 12680 struct list_head *pos, *q;
a2fbb9ea 12681 pci_unregister_driver(&bnx2x_pci_driver);
1cf167f2
EG
12682
12683 destroy_workqueue(bnx2x_wq);
452427b0
YM
12684
12685 /* Free globablly allocated resources */
12686 list_for_each_safe(pos, q, &bnx2x_prev_list) {
12687 struct bnx2x_prev_path_list *tmp =
12688 list_entry(pos, struct bnx2x_prev_path_list, list);
12689 list_del(pos);
12690 kfree(tmp);
12691 }
a2fbb9ea
ET
12692}
12693
3deb8167
YR
12694void bnx2x_notify_link_changed(struct bnx2x *bp)
12695{
12696 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + BP_FUNC(bp)*sizeof(u32), 1);
12697}
12698
a2fbb9ea
ET
12699module_init(bnx2x_init);
12700module_exit(bnx2x_cleanup);
12701
619c5cb6
VZ
12702/**
12703 * bnx2x_set_iscsi_eth_mac_addr - set iSCSI MAC(s).
12704 *
12705 * @bp: driver handle
12706 * @set: set or clear the CAM entry
12707 *
12708 * This function will wait until the ramdord completion returns.
12709 * Return 0 if success, -ENODEV if ramrod doesn't return.
12710 */
1191cb83 12711static int bnx2x_set_iscsi_eth_mac_addr(struct bnx2x *bp)
619c5cb6
VZ
12712{
12713 unsigned long ramrod_flags = 0;
12714
12715 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
12716 return bnx2x_set_mac_one(bp, bp->cnic_eth_dev.iscsi_mac,
12717 &bp->iscsi_l2_mac_obj, true,
12718 BNX2X_ISCSI_ETH_MAC, &ramrod_flags);
12719}
993ac7b5
MC
12720
12721/* count denotes the number of new completions we have seen */
12722static void bnx2x_cnic_sp_post(struct bnx2x *bp, int count)
12723{
12724 struct eth_spe *spe;
a052997e 12725 int cxt_index, cxt_offset;
993ac7b5
MC
12726
12727#ifdef BNX2X_STOP_ON_ERROR
12728 if (unlikely(bp->panic))
12729 return;
12730#endif
12731
12732 spin_lock_bh(&bp->spq_lock);
c2bff63f 12733 BUG_ON(bp->cnic_spq_pending < count);
993ac7b5
MC
12734 bp->cnic_spq_pending -= count;
12735
993ac7b5 12736
c2bff63f
DK
12737 for (; bp->cnic_kwq_pending; bp->cnic_kwq_pending--) {
12738 u16 type = (le16_to_cpu(bp->cnic_kwq_cons->hdr.type)
12739 & SPE_HDR_CONN_TYPE) >>
12740 SPE_HDR_CONN_TYPE_SHIFT;
619c5cb6
VZ
12741 u8 cmd = (le32_to_cpu(bp->cnic_kwq_cons->hdr.conn_and_cmd_data)
12742 >> SPE_HDR_CMD_ID_SHIFT) & 0xff;
c2bff63f
DK
12743
12744 /* Set validation for iSCSI L2 client before sending SETUP
12745 * ramrod
12746 */
12747 if (type == ETH_CONNECTION_TYPE) {
a052997e 12748 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP) {
37ae41a9 12749 cxt_index = BNX2X_ISCSI_ETH_CID(bp) /
a052997e 12750 ILT_PAGE_CIDS;
37ae41a9 12751 cxt_offset = BNX2X_ISCSI_ETH_CID(bp) -
a052997e
MS
12752 (cxt_index * ILT_PAGE_CIDS);
12753 bnx2x_set_ctx_validation(bp,
12754 &bp->context[cxt_index].
12755 vcxt[cxt_offset].eth,
37ae41a9 12756 BNX2X_ISCSI_ETH_CID(bp));
a052997e 12757 }
c2bff63f
DK
12758 }
12759
619c5cb6
VZ
12760 /*
12761 * There may be not more than 8 L2, not more than 8 L5 SPEs
12762 * and in the air. We also check that number of outstanding
6e30dd4e
VZ
12763 * COMMON ramrods is not more than the EQ and SPQ can
12764 * accommodate.
c2bff63f 12765 */
6e30dd4e
VZ
12766 if (type == ETH_CONNECTION_TYPE) {
12767 if (!atomic_read(&bp->cq_spq_left))
12768 break;
12769 else
12770 atomic_dec(&bp->cq_spq_left);
12771 } else if (type == NONE_CONNECTION_TYPE) {
12772 if (!atomic_read(&bp->eq_spq_left))
c2bff63f
DK
12773 break;
12774 else
6e30dd4e 12775 atomic_dec(&bp->eq_spq_left);
ec6ba945
VZ
12776 } else if ((type == ISCSI_CONNECTION_TYPE) ||
12777 (type == FCOE_CONNECTION_TYPE)) {
c2bff63f
DK
12778 if (bp->cnic_spq_pending >=
12779 bp->cnic_eth_dev.max_kwqe_pending)
12780 break;
12781 else
12782 bp->cnic_spq_pending++;
12783 } else {
12784 BNX2X_ERR("Unknown SPE type: %d\n", type);
12785 bnx2x_panic();
993ac7b5 12786 break;
c2bff63f 12787 }
993ac7b5
MC
12788
12789 spe = bnx2x_sp_get_next(bp);
12790 *spe = *bp->cnic_kwq_cons;
12791
51c1a580 12792 DP(BNX2X_MSG_SP, "pending on SPQ %d, on KWQ %d count %d\n",
993ac7b5
MC
12793 bp->cnic_spq_pending, bp->cnic_kwq_pending, count);
12794
12795 if (bp->cnic_kwq_cons == bp->cnic_kwq_last)
12796 bp->cnic_kwq_cons = bp->cnic_kwq;
12797 else
12798 bp->cnic_kwq_cons++;
12799 }
12800 bnx2x_sp_prod_update(bp);
12801 spin_unlock_bh(&bp->spq_lock);
12802}
12803
12804static int bnx2x_cnic_sp_queue(struct net_device *dev,
12805 struct kwqe_16 *kwqes[], u32 count)
12806{
12807 struct bnx2x *bp = netdev_priv(dev);
12808 int i;
12809
12810#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
12811 if (unlikely(bp->panic)) {
12812 BNX2X_ERR("Can't post to SP queue while panic\n");
993ac7b5 12813 return -EIO;
51c1a580 12814 }
993ac7b5
MC
12815#endif
12816
95c6c616
AE
12817 if ((bp->recovery_state != BNX2X_RECOVERY_DONE) &&
12818 (bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
51c1a580 12819 BNX2X_ERR("Handling parity error recovery. Try again later\n");
95c6c616
AE
12820 return -EAGAIN;
12821 }
12822
993ac7b5
MC
12823 spin_lock_bh(&bp->spq_lock);
12824
12825 for (i = 0; i < count; i++) {
12826 struct eth_spe *spe = (struct eth_spe *)kwqes[i];
12827
12828 if (bp->cnic_kwq_pending == MAX_SP_DESC_CNT)
12829 break;
12830
12831 *bp->cnic_kwq_prod = *spe;
12832
12833 bp->cnic_kwq_pending++;
12834
51c1a580 12835 DP(BNX2X_MSG_SP, "L5 SPQE %x %x %x:%x pos %d\n",
993ac7b5 12836 spe->hdr.conn_and_cmd_data, spe->hdr.type,
523224a3
DK
12837 spe->data.update_data_addr.hi,
12838 spe->data.update_data_addr.lo,
993ac7b5
MC
12839 bp->cnic_kwq_pending);
12840
12841 if (bp->cnic_kwq_prod == bp->cnic_kwq_last)
12842 bp->cnic_kwq_prod = bp->cnic_kwq;
12843 else
12844 bp->cnic_kwq_prod++;
12845 }
12846
12847 spin_unlock_bh(&bp->spq_lock);
12848
12849 if (bp->cnic_spq_pending < bp->cnic_eth_dev.max_kwqe_pending)
12850 bnx2x_cnic_sp_post(bp, 0);
12851
12852 return i;
12853}
12854
12855static int bnx2x_cnic_ctl_send(struct bnx2x *bp, struct cnic_ctl_info *ctl)
12856{
12857 struct cnic_ops *c_ops;
12858 int rc = 0;
12859
12860 mutex_lock(&bp->cnic_mutex);
13707f9e
ED
12861 c_ops = rcu_dereference_protected(bp->cnic_ops,
12862 lockdep_is_held(&bp->cnic_mutex));
993ac7b5
MC
12863 if (c_ops)
12864 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
12865 mutex_unlock(&bp->cnic_mutex);
12866
12867 return rc;
12868}
12869
12870static int bnx2x_cnic_ctl_send_bh(struct bnx2x *bp, struct cnic_ctl_info *ctl)
12871{
12872 struct cnic_ops *c_ops;
12873 int rc = 0;
12874
12875 rcu_read_lock();
12876 c_ops = rcu_dereference(bp->cnic_ops);
12877 if (c_ops)
12878 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
12879 rcu_read_unlock();
12880
12881 return rc;
12882}
12883
12884/*
12885 * for commands that have no data
12886 */
9f6c9258 12887int bnx2x_cnic_notify(struct bnx2x *bp, int cmd)
993ac7b5
MC
12888{
12889 struct cnic_ctl_info ctl = {0};
12890
12891 ctl.cmd = cmd;
12892
12893 return bnx2x_cnic_ctl_send(bp, &ctl);
12894}
12895
619c5cb6 12896static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err)
993ac7b5 12897{
619c5cb6 12898 struct cnic_ctl_info ctl = {0};
993ac7b5
MC
12899
12900 /* first we tell CNIC and only then we count this as a completion */
12901 ctl.cmd = CNIC_CTL_COMPLETION_CMD;
12902 ctl.data.comp.cid = cid;
619c5cb6 12903 ctl.data.comp.error = err;
993ac7b5
MC
12904
12905 bnx2x_cnic_ctl_send_bh(bp, &ctl);
c2bff63f 12906 bnx2x_cnic_sp_post(bp, 0);
993ac7b5
MC
12907}
12908
619c5cb6
VZ
12909
12910/* Called with netif_addr_lock_bh() taken.
12911 * Sets an rx_mode config for an iSCSI ETH client.
12912 * Doesn't block.
12913 * Completion should be checked outside.
12914 */
12915static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start)
12916{
12917 unsigned long accept_flags = 0, ramrod_flags = 0;
12918 u8 cl_id = bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
12919 int sched_state = BNX2X_FILTER_ISCSI_ETH_STOP_SCHED;
12920
12921 if (start) {
12922 /* Start accepting on iSCSI L2 ring. Accept all multicasts
12923 * because it's the only way for UIO Queue to accept
12924 * multicasts (in non-promiscuous mode only one Queue per
12925 * function will receive multicast packets (leading in our
12926 * case).
12927 */
12928 __set_bit(BNX2X_ACCEPT_UNICAST, &accept_flags);
12929 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &accept_flags);
12930 __set_bit(BNX2X_ACCEPT_BROADCAST, &accept_flags);
12931 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &accept_flags);
12932
12933 /* Clear STOP_PENDING bit if START is requested */
12934 clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &bp->sp_state);
12935
12936 sched_state = BNX2X_FILTER_ISCSI_ETH_START_SCHED;
12937 } else
12938 /* Clear START_PENDING bit if STOP is requested */
12939 clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &bp->sp_state);
12940
12941 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
12942 set_bit(sched_state, &bp->sp_state);
12943 else {
12944 __set_bit(RAMROD_RX, &ramrod_flags);
12945 bnx2x_set_q_rx_mode(bp, cl_id, 0, accept_flags, 0,
12946 ramrod_flags);
12947 }
12948}
12949
12950
993ac7b5
MC
12951static int bnx2x_drv_ctl(struct net_device *dev, struct drv_ctl_info *ctl)
12952{
12953 struct bnx2x *bp = netdev_priv(dev);
12954 int rc = 0;
12955
12956 switch (ctl->cmd) {
12957 case DRV_CTL_CTXTBL_WR_CMD: {
12958 u32 index = ctl->data.io.offset;
12959 dma_addr_t addr = ctl->data.io.dma_addr;
12960
12961 bnx2x_ilt_wr(bp, index, addr);
12962 break;
12963 }
12964
c2bff63f
DK
12965 case DRV_CTL_RET_L5_SPQ_CREDIT_CMD: {
12966 int count = ctl->data.credit.credit_count;
993ac7b5
MC
12967
12968 bnx2x_cnic_sp_post(bp, count);
12969 break;
12970 }
12971
12972 /* rtnl_lock is held. */
12973 case DRV_CTL_START_L2_CMD: {
619c5cb6
VZ
12974 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
12975 unsigned long sp_bits = 0;
12976
12977 /* Configure the iSCSI classification object */
12978 bnx2x_init_mac_obj(bp, &bp->iscsi_l2_mac_obj,
12979 cp->iscsi_l2_client_id,
12980 cp->iscsi_l2_cid, BP_FUNC(bp),
12981 bnx2x_sp(bp, mac_rdata),
12982 bnx2x_sp_mapping(bp, mac_rdata),
12983 BNX2X_FILTER_MAC_PENDING,
12984 &bp->sp_state, BNX2X_OBJ_TYPE_RX,
12985 &bp->macs_pool);
ec6ba945 12986
523224a3 12987 /* Set iSCSI MAC address */
619c5cb6
VZ
12988 rc = bnx2x_set_iscsi_eth_mac_addr(bp);
12989 if (rc)
12990 break;
523224a3
DK
12991
12992 mmiowb();
12993 barrier();
12994
619c5cb6
VZ
12995 /* Start accepting on iSCSI L2 ring */
12996
12997 netif_addr_lock_bh(dev);
12998 bnx2x_set_iscsi_eth_rx_mode(bp, true);
12999 netif_addr_unlock_bh(dev);
13000
13001 /* bits to wait on */
13002 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
13003 __set_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &sp_bits);
13004
13005 if (!bnx2x_wait_sp_comp(bp, sp_bits))
13006 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3 13007
993ac7b5
MC
13008 break;
13009 }
13010
13011 /* rtnl_lock is held. */
13012 case DRV_CTL_STOP_L2_CMD: {
619c5cb6 13013 unsigned long sp_bits = 0;
993ac7b5 13014
523224a3 13015 /* Stop accepting on iSCSI L2 ring */
619c5cb6
VZ
13016 netif_addr_lock_bh(dev);
13017 bnx2x_set_iscsi_eth_rx_mode(bp, false);
13018 netif_addr_unlock_bh(dev);
13019
13020 /* bits to wait on */
13021 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
13022 __set_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &sp_bits);
13023
13024 if (!bnx2x_wait_sp_comp(bp, sp_bits))
13025 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3
DK
13026
13027 mmiowb();
13028 barrier();
13029
13030 /* Unset iSCSI L2 MAC */
619c5cb6
VZ
13031 rc = bnx2x_del_all_macs(bp, &bp->iscsi_l2_mac_obj,
13032 BNX2X_ISCSI_ETH_MAC, true);
993ac7b5
MC
13033 break;
13034 }
c2bff63f
DK
13035 case DRV_CTL_RET_L2_SPQ_CREDIT_CMD: {
13036 int count = ctl->data.credit.credit_count;
13037
13038 smp_mb__before_atomic_inc();
6e30dd4e 13039 atomic_add(count, &bp->cq_spq_left);
c2bff63f
DK
13040 smp_mb__after_atomic_inc();
13041 break;
13042 }
1d187b34 13043 case DRV_CTL_ULP_REGISTER_CMD: {
2e499d3c 13044 int ulp_type = ctl->data.register_data.ulp_type;
1d187b34
BW
13045
13046 if (CHIP_IS_E3(bp)) {
13047 int idx = BP_FW_MB_IDX(bp);
2e499d3c
BW
13048 u32 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
13049 int path = BP_PATH(bp);
13050 int port = BP_PORT(bp);
13051 int i;
13052 u32 scratch_offset;
13053 u32 *host_addr;
1d187b34 13054
2e499d3c 13055 /* first write capability to shmem2 */
1d187b34
BW
13056 if (ulp_type == CNIC_ULP_ISCSI)
13057 cap |= DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
13058 else if (ulp_type == CNIC_ULP_FCOE)
13059 cap |= DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
13060 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
2e499d3c
BW
13061
13062 if ((ulp_type != CNIC_ULP_FCOE) ||
13063 (!SHMEM2_HAS(bp, ncsi_oem_data_addr)) ||
13064 (!(bp->flags & BC_SUPPORTS_FCOE_FEATURES)))
13065 break;
13066
13067 /* if reached here - should write fcoe capabilities */
13068 scratch_offset = SHMEM2_RD(bp, ncsi_oem_data_addr);
13069 if (!scratch_offset)
13070 break;
13071 scratch_offset += offsetof(struct glob_ncsi_oem_data,
13072 fcoe_features[path][port]);
13073 host_addr = (u32 *) &(ctl->data.register_data.
13074 fcoe_features);
13075 for (i = 0; i < sizeof(struct fcoe_capabilities);
13076 i += 4)
13077 REG_WR(bp, scratch_offset + i,
13078 *(host_addr + i/4));
1d187b34
BW
13079 }
13080 break;
13081 }
2e499d3c 13082
1d187b34
BW
13083 case DRV_CTL_ULP_UNREGISTER_CMD: {
13084 int ulp_type = ctl->data.ulp_type;
13085
13086 if (CHIP_IS_E3(bp)) {
13087 int idx = BP_FW_MB_IDX(bp);
13088 u32 cap;
13089
13090 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
13091 if (ulp_type == CNIC_ULP_ISCSI)
13092 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
13093 else if (ulp_type == CNIC_ULP_FCOE)
13094 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
13095 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
13096 }
13097 break;
13098 }
993ac7b5
MC
13099
13100 default:
13101 BNX2X_ERR("unknown command %x\n", ctl->cmd);
13102 rc = -EINVAL;
13103 }
13104
13105 return rc;
13106}
13107
9f6c9258 13108void bnx2x_setup_cnic_irq_info(struct bnx2x *bp)
993ac7b5
MC
13109{
13110 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13111
13112 if (bp->flags & USING_MSIX_FLAG) {
13113 cp->drv_state |= CNIC_DRV_STATE_USING_MSIX;
13114 cp->irq_arr[0].irq_flags |= CNIC_IRQ_FL_MSIX;
13115 cp->irq_arr[0].vector = bp->msix_table[1].vector;
13116 } else {
13117 cp->drv_state &= ~CNIC_DRV_STATE_USING_MSIX;
13118 cp->irq_arr[0].irq_flags &= ~CNIC_IRQ_FL_MSIX;
13119 }
619c5cb6 13120 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
13121 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e2_sb;
13122 else
13123 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e1x_sb;
13124
619c5cb6
VZ
13125 cp->irq_arr[0].status_blk_num = bnx2x_cnic_fw_sb_id(bp);
13126 cp->irq_arr[0].status_blk_num2 = bnx2x_cnic_igu_sb_id(bp);
993ac7b5
MC
13127 cp->irq_arr[1].status_blk = bp->def_status_blk;
13128 cp->irq_arr[1].status_blk_num = DEF_SB_ID;
523224a3 13129 cp->irq_arr[1].status_blk_num2 = DEF_SB_IGU_ID;
993ac7b5
MC
13130
13131 cp->num_irq = 2;
13132}
13133
37ae41a9
MS
13134void bnx2x_setup_cnic_info(struct bnx2x *bp)
13135{
13136 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13137
13138
13139 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
13140 bnx2x_cid_ilt_lines(bp);
13141 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
13142 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
13143 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
13144
13145 if (NO_ISCSI_OOO(bp))
13146 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
13147}
13148
993ac7b5
MC
13149static int bnx2x_register_cnic(struct net_device *dev, struct cnic_ops *ops,
13150 void *data)
13151{
13152 struct bnx2x *bp = netdev_priv(dev);
13153 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
55c11941
MS
13154 int rc;
13155
13156 DP(NETIF_MSG_IFUP, "Register_cnic called\n");
993ac7b5 13157
51c1a580
MS
13158 if (ops == NULL) {
13159 BNX2X_ERR("NULL ops received\n");
993ac7b5 13160 return -EINVAL;
51c1a580 13161 }
993ac7b5 13162
55c11941
MS
13163 if (!CNIC_SUPPORT(bp)) {
13164 BNX2X_ERR("Can't register CNIC when not supported\n");
13165 return -EOPNOTSUPP;
13166 }
13167
13168 if (!CNIC_LOADED(bp)) {
13169 rc = bnx2x_load_cnic(bp);
13170 if (rc) {
13171 BNX2X_ERR("CNIC-related load failed\n");
13172 return rc;
13173 }
13174
13175 }
13176
13177 bp->cnic_enabled = true;
13178
993ac7b5
MC
13179 bp->cnic_kwq = kzalloc(PAGE_SIZE, GFP_KERNEL);
13180 if (!bp->cnic_kwq)
13181 return -ENOMEM;
13182
13183 bp->cnic_kwq_cons = bp->cnic_kwq;
13184 bp->cnic_kwq_prod = bp->cnic_kwq;
13185 bp->cnic_kwq_last = bp->cnic_kwq + MAX_SP_DESC_CNT;
13186
13187 bp->cnic_spq_pending = 0;
13188 bp->cnic_kwq_pending = 0;
13189
13190 bp->cnic_data = data;
13191
13192 cp->num_irq = 0;
619c5cb6 13193 cp->drv_state |= CNIC_DRV_STATE_REGD;
523224a3 13194 cp->iro_arr = bp->iro_arr;
993ac7b5 13195
993ac7b5 13196 bnx2x_setup_cnic_irq_info(bp);
c2bff63f 13197
993ac7b5
MC
13198 rcu_assign_pointer(bp->cnic_ops, ops);
13199
13200 return 0;
13201}
13202
13203static int bnx2x_unregister_cnic(struct net_device *dev)
13204{
13205 struct bnx2x *bp = netdev_priv(dev);
13206 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13207
13208 mutex_lock(&bp->cnic_mutex);
993ac7b5 13209 cp->drv_state = 0;
2cfa5a04 13210 RCU_INIT_POINTER(bp->cnic_ops, NULL);
993ac7b5
MC
13211 mutex_unlock(&bp->cnic_mutex);
13212 synchronize_rcu();
13213 kfree(bp->cnic_kwq);
13214 bp->cnic_kwq = NULL;
13215
13216 return 0;
13217}
13218
13219struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev)
13220{
13221 struct bnx2x *bp = netdev_priv(dev);
13222 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13223
2ba45142
VZ
13224 /* If both iSCSI and FCoE are disabled - return NULL in
13225 * order to indicate CNIC that it should not try to work
13226 * with this device.
13227 */
13228 if (NO_ISCSI(bp) && NO_FCOE(bp))
13229 return NULL;
13230
993ac7b5
MC
13231 cp->drv_owner = THIS_MODULE;
13232 cp->chip_id = CHIP_ID(bp);
13233 cp->pdev = bp->pdev;
13234 cp->io_base = bp->regview;
13235 cp->io_base2 = bp->doorbells;
13236 cp->max_kwqe_pending = 8;
523224a3 13237 cp->ctx_blk_size = CDU_ILT_PAGE_SZ;
c2bff63f
DK
13238 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
13239 bnx2x_cid_ilt_lines(bp);
993ac7b5 13240 cp->ctx_tbl_len = CNIC_ILT_LINES;
c2bff63f 13241 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
993ac7b5
MC
13242 cp->drv_submit_kwqes_16 = bnx2x_cnic_sp_queue;
13243 cp->drv_ctl = bnx2x_drv_ctl;
13244 cp->drv_register_cnic = bnx2x_register_cnic;
13245 cp->drv_unregister_cnic = bnx2x_unregister_cnic;
37ae41a9 13246 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
619c5cb6
VZ
13247 cp->iscsi_l2_client_id =
13248 bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
37ae41a9 13249 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
c2bff63f 13250
2ba45142
VZ
13251 if (NO_ISCSI_OOO(bp))
13252 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
13253
13254 if (NO_ISCSI(bp))
13255 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI;
13256
13257 if (NO_FCOE(bp))
13258 cp->drv_state |= CNIC_DRV_STATE_NO_FCOE;
13259
51c1a580
MS
13260 BNX2X_DEV_INFO(
13261 "page_size %d, tbl_offset %d, tbl_lines %d, starting cid %d\n",
c2bff63f
DK
13262 cp->ctx_blk_size,
13263 cp->ctx_tbl_offset,
13264 cp->ctx_tbl_len,
13265 cp->starting_cid);
993ac7b5
MC
13266 return cp;
13267}
993ac7b5 13268
be1f1ffa
AE
13269int bnx2x_send_msg2pf(struct bnx2x *bp, u8 *done, dma_addr_t msg_mapping)
13270{
13271 struct cstorm_vf_zone_data __iomem *zone_data =
13272 REG_ADDR(bp, PXP_VF_ADDR_CSDM_GLOBAL_START);
13273 int tout = 600, interval = 100; /* wait for 60 seconds */
13274
13275 if (*done) {
13276 BNX2X_ERR("done was non zero before message to pf was sent\n");
13277 WARN_ON(true);
13278 return -EINVAL;
13279 }
13280
13281 /* Write message address */
13282 writel(U64_LO(msg_mapping),
13283 &zone_data->non_trigger.vf_pf_channel.msg_addr_lo);
13284 writel(U64_HI(msg_mapping),
13285 &zone_data->non_trigger.vf_pf_channel.msg_addr_hi);
13286
13287 /* make sure the address is written before FW accesses it */
13288 wmb();
13289
13290 /* Trigger the PF FW */
13291 writeb(1, &zone_data->trigger.vf_pf_channel.addr_valid);
13292
13293 /* Wait for PF to complete */
13294 while ((tout >= 0) && (!*done)) {
13295 msleep(interval);
13296 tout -= 1;
13297
13298 /* progress indicator - HV can take its own sweet time in
13299 * answering VFs...
13300 */
13301 DP_CONT(BNX2X_MSG_IOV, ".");
13302 }
13303
13304 if (!*done) {
13305 BNX2X_ERR("PF response has timed out\n");
13306 return -EAGAIN;
13307 }
13308 DP(BNX2X_MSG_SP, "Got a response from PF\n");
13309 return 0;
13310}
13311
13312int bnx2x_get_vf_id(struct bnx2x *bp, u32 *vf_id)
13313{
13314 u32 me_reg;
13315 int tout = 10, interval = 100; /* Wait for 1 sec */
13316
13317 do {
13318 /* pxp traps vf read of doorbells and returns me reg value */
13319 me_reg = readl(bp->doorbells);
13320 if (GOOD_ME_REG(me_reg))
13321 break;
13322
13323 msleep(interval);
13324
13325 BNX2X_ERR("Invalid ME register value: 0x%08x\n. Is pf driver up?",
13326 me_reg);
13327 } while (tout-- > 0);
13328
13329 if (!GOOD_ME_REG(me_reg)) {
13330 BNX2X_ERR("Invalid ME register value: 0x%08x\n", me_reg);
13331 return -EINVAL;
13332 }
13333
13334 BNX2X_ERR("valid ME register value: 0x%08x\n", me_reg);
13335
13336 *vf_id = (me_reg & ME_REG_VF_NUM_MASK) >> ME_REG_VF_NUM_SHIFT;
94a78b79 13337
be1f1ffa
AE
13338 return 0;
13339}
13340
13341int bnx2x_vfpf_acquire(struct bnx2x *bp, u8 tx_count, u8 rx_count)
13342{
13343 int rc = 0, attempts = 0;
13344 struct vfpf_acquire_tlv *req = &bp->vf2pf_mbox->req.acquire;
13345 struct pfvf_acquire_resp_tlv *resp = &bp->vf2pf_mbox->resp.acquire_resp;
13346 u32 vf_id;
13347 bool resources_acquired = false;
13348
13349 /* clear mailbox and prep first tlv */
13350 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_ACQUIRE, sizeof(*req));
13351
13352 if (bnx2x_get_vf_id(bp, &vf_id))
13353 return -EAGAIN;
13354
13355 req->vfdev_info.vf_id = vf_id;
13356 req->vfdev_info.vf_os = 0;
13357
13358 req->resc_request.num_rxqs = rx_count;
13359 req->resc_request.num_txqs = tx_count;
13360 req->resc_request.num_sbs = bp->igu_sb_cnt;
13361 req->resc_request.num_mac_filters = VF_ACQUIRE_MAC_FILTERS;
13362 req->resc_request.num_mc_filters = VF_ACQUIRE_MC_FILTERS;
13363
13364 /* add list termination tlv */
13365 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13366 sizeof(struct channel_list_end_tlv));
13367
13368 /* output tlvs list */
13369 bnx2x_dp_tlv_list(bp, req);
13370
13371 while (!resources_acquired) {
13372 DP(BNX2X_MSG_SP, "attempting to acquire resources\n");
13373
13374 /* send acquire request */
13375 rc = bnx2x_send_msg2pf(bp,
13376 &resp->hdr.status,
13377 bp->vf2pf_mbox_mapping);
13378
13379 /* PF timeout */
13380 if (rc)
13381 return rc;
13382
13383 /* copy acquire response from buffer to bp */
13384 memcpy(&bp->acquire_resp, resp, sizeof(bp->acquire_resp));
13385
13386 attempts++;
13387
13388 /* test whether the PF accepted our request. If not, humble the
13389 * the request and try again.
13390 */
13391 if (bp->acquire_resp.hdr.status == PFVF_STATUS_SUCCESS) {
13392 DP(BNX2X_MSG_SP, "resources acquired\n");
13393 resources_acquired = true;
13394 } else if (bp->acquire_resp.hdr.status ==
13395 PFVF_STATUS_NO_RESOURCE &&
13396 attempts < VF_ACQUIRE_THRESH) {
13397 DP(BNX2X_MSG_SP,
13398 "PF unwilling to fulfill resource request. Try PF recommended amount\n");
13399
13400 /* humble our request */
13401 req->resc_request.num_txqs =
13402 bp->acquire_resp.resc.num_txqs;
13403 req->resc_request.num_rxqs =
13404 bp->acquire_resp.resc.num_rxqs;
13405 req->resc_request.num_sbs =
13406 bp->acquire_resp.resc.num_sbs;
13407 req->resc_request.num_mac_filters =
13408 bp->acquire_resp.resc.num_mac_filters;
13409 req->resc_request.num_vlan_filters =
13410 bp->acquire_resp.resc.num_vlan_filters;
13411 req->resc_request.num_mc_filters =
13412 bp->acquire_resp.resc.num_mc_filters;
13413
13414 /* Clear response buffer */
13415 memset(&bp->vf2pf_mbox->resp, 0,
13416 sizeof(union pfvf_tlvs));
13417 } else {
13418 /* PF reports error */
13419 BNX2X_ERR("Failed to get the requested amount of resources: %d. Breaking...\n",
13420 bp->acquire_resp.hdr.status);
13421 return -EAGAIN;
13422 }
13423 }
13424
13425 /* get HW info */
13426 bp->common.chip_id |= (bp->acquire_resp.pfdev_info.chip_num & 0xffff);
13427 bp->link_params.chip_id = bp->common.chip_id;
13428 bp->db_size = bp->acquire_resp.pfdev_info.db_size;
13429 bp->common.int_block = INT_BLOCK_IGU;
13430 bp->common.chip_port_mode = CHIP_2_PORT_MODE;
13431 bp->igu_dsb_id = -1;
13432 bp->mf_ov = 0;
13433 bp->mf_mode = 0;
13434 bp->common.flash_size = 0;
13435 bp->flags |=
13436 NO_WOL_FLAG | NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG | NO_FCOE_FLAG;
13437 bp->igu_sb_cnt = 1;
13438 bp->igu_base_sb = bp->acquire_resp.resc.hw_sbs[0].hw_sb_id;
13439 strlcpy(bp->fw_ver, bp->acquire_resp.pfdev_info.fw_ver,
13440 sizeof(bp->fw_ver));
13441
13442 if (is_valid_ether_addr(bp->acquire_resp.resc.current_mac_addr))
13443 memcpy(bp->dev->dev_addr,
13444 bp->acquire_resp.resc.current_mac_addr,
13445 ETH_ALEN);
13446
13447 return 0;
13448}
4513f925
AE
13449
13450int bnx2x_vfpf_release(struct bnx2x *bp)
13451{
13452 struct vfpf_release_tlv *req = &bp->vf2pf_mbox->req.release;
13453 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13454 u32 rc = 0, vf_id;
13455
13456 /* clear mailbox and prep first tlv */
13457 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_RELEASE, sizeof(*req));
13458
13459 if (bnx2x_get_vf_id(bp, &vf_id))
13460 return -EAGAIN;
13461
13462 req->vf_id = vf_id;
13463
13464 /* add list termination tlv */
13465 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13466 sizeof(struct channel_list_end_tlv));
13467
13468 /* output tlvs list */
13469 bnx2x_dp_tlv_list(bp, req);
13470
13471 /* send release request */
13472 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13473
13474 if (rc)
13475 /* PF timeout */
13476 return rc;
13477 if (resp->hdr.status == PFVF_STATUS_SUCCESS) {
13478 /* PF released us */
13479 DP(BNX2X_MSG_SP, "vf released\n");
13480 } else {
13481 /* PF reports error */
13482 BNX2X_ERR("PF failed our release request - are we out of sync? response status: %d\n",
13483 resp->hdr.status);
13484 return -EAGAIN;
13485 }
13486
13487 return 0;
13488}
8d9ac297
AE
13489
13490/* Tell PF about SB addresses */
13491int bnx2x_vfpf_init(struct bnx2x *bp)
13492{
13493 struct vfpf_init_tlv *req = &bp->vf2pf_mbox->req.init;
13494 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13495 int rc, i;
13496
13497 /* clear mailbox and prep first tlv */
13498 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_INIT, sizeof(*req));
13499
13500 /* status blocks */
13501 for_each_eth_queue(bp, i)
13502 req->sb_addr[i] = (dma_addr_t)bnx2x_fp(bp, i,
13503 status_blk_mapping);
13504
13505 /* statistics - requests only supports single queue for now */
13506 req->stats_addr = bp->fw_stats_data_mapping +
13507 offsetof(struct bnx2x_fw_stats_data, queue_stats);
13508
13509 /* add list termination tlv */
13510 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13511 sizeof(struct channel_list_end_tlv));
13512
13513 /* output tlvs list */
13514 bnx2x_dp_tlv_list(bp, req);
13515
13516 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13517 if (rc)
13518 return rc;
13519
13520 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13521 BNX2X_ERR("INIT VF failed: %d. Breaking...\n",
13522 resp->hdr.status);
13523 return -EAGAIN;
13524 }
13525
13526 DP(BNX2X_MSG_SP, "INIT VF Succeeded\n");
13527 return 0;
13528}
13529
9b176b6b
AE
13530/* CLOSE VF - opposite to INIT_VF */
13531void bnx2x_vfpf_close_vf(struct bnx2x *bp)
13532{
13533 struct vfpf_close_tlv *req = &bp->vf2pf_mbox->req.close;
13534 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13535 int i, rc;
13536 u32 vf_id;
13537
13538 /* If we haven't got a valid VF id, there is no sense to
13539 * continue with sending messages
13540 */
13541 if (bnx2x_get_vf_id(bp, &vf_id))
13542 goto free_irq;
13543
13544 /* Close the queues */
13545 for_each_queue(bp, i)
13546 bnx2x_vfpf_teardown_queue(bp, i);
13547
13548 /* clear mailbox and prep first tlv */
13549 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_CLOSE, sizeof(*req));
13550
13551 req->vf_id = vf_id;
13552
13553 /* add list termination tlv */
13554 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13555 sizeof(struct channel_list_end_tlv));
13556
13557 /* output tlvs list */
13558 bnx2x_dp_tlv_list(bp, req);
13559
13560 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13561
13562 if (rc)
13563 BNX2X_ERR("Sending CLOSE failed. rc was: %d\n", rc);
13564
13565 else if (resp->hdr.status != PFVF_STATUS_SUCCESS)
13566 BNX2X_ERR("Sending CLOSE failed: pf response was %d\n",
13567 resp->hdr.status);
13568
13569free_irq:
13570 /* Disable HW interrupts, NAPI */
13571 bnx2x_netif_stop(bp, 0);
13572 /* Delete all NAPI objects */
13573 bnx2x_del_all_napi(bp);
13574
13575 /* Release IRQs */
13576 bnx2x_free_irq(bp);
13577}
13578
8d9ac297
AE
13579/* ask the pf to open a queue for the vf */
13580int bnx2x_vfpf_setup_q(struct bnx2x *bp, int fp_idx)
13581{
13582 struct vfpf_setup_q_tlv *req = &bp->vf2pf_mbox->req.setup_q;
13583 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13584 struct bnx2x_fastpath *fp = &bp->fp[fp_idx];
13585 u16 tpa_agg_size = 0, flags = 0;
13586 int rc;
13587
13588 /* clear mailbox and prep first tlv */
13589 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SETUP_Q, sizeof(*req));
13590
13591 /* select tpa mode to request */
13592 if (!fp->disable_tpa) {
13593 flags |= VFPF_QUEUE_FLG_TPA;
13594 flags |= VFPF_QUEUE_FLG_TPA_IPV6;
13595 if (fp->mode == TPA_MODE_GRO)
13596 flags |= VFPF_QUEUE_FLG_TPA_GRO;
13597 tpa_agg_size = TPA_AGG_SIZE;
13598 }
13599
13600 /* calculate queue flags */
13601 flags |= VFPF_QUEUE_FLG_STATS;
13602 flags |= VFPF_QUEUE_FLG_CACHE_ALIGN;
13603 flags |= IS_MF_SD(bp) ? VFPF_QUEUE_FLG_OV : 0;
13604 flags |= VFPF_QUEUE_FLG_VLAN;
13605 DP(NETIF_MSG_IFUP, "vlan removal enabled\n");
13606
13607 /* Common */
13608 req->vf_qid = fp_idx;
13609 req->param_valid = VFPF_RXQ_VALID | VFPF_TXQ_VALID;
13610
13611 /* Rx */
13612 req->rxq.rcq_addr = fp->rx_comp_mapping;
13613 req->rxq.rcq_np_addr = fp->rx_comp_mapping + BCM_PAGE_SIZE;
13614 req->rxq.rxq_addr = fp->rx_desc_mapping;
13615 req->rxq.sge_addr = fp->rx_sge_mapping;
13616 req->rxq.vf_sb = fp_idx;
13617 req->rxq.sb_index = HC_INDEX_ETH_RX_CQ_CONS;
13618 req->rxq.hc_rate = bp->rx_ticks ? 1000000/bp->rx_ticks : 0;
13619 req->rxq.mtu = bp->dev->mtu;
13620 req->rxq.buf_sz = fp->rx_buf_size;
13621 req->rxq.sge_buf_sz = BCM_PAGE_SIZE * PAGES_PER_SGE;
13622 req->rxq.tpa_agg_sz = tpa_agg_size;
13623 req->rxq.max_sge_pkt = SGE_PAGE_ALIGN(bp->dev->mtu) >> SGE_PAGE_SHIFT;
13624 req->rxq.max_sge_pkt = ((req->rxq.max_sge_pkt + PAGES_PER_SGE - 1) &
13625 (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
13626 req->rxq.flags = flags;
13627 req->rxq.drop_flags = 0;
13628 req->rxq.cache_line_log = BNX2X_RX_ALIGN_SHIFT;
13629 req->rxq.stat_id = -1; /* No stats at the moment */
13630
13631 /* Tx */
13632 req->txq.txq_addr = fp->txdata_ptr[FIRST_TX_COS_INDEX]->tx_desc_mapping;
13633 req->txq.vf_sb = fp_idx;
13634 req->txq.sb_index = HC_INDEX_ETH_TX_CQ_CONS_COS0;
13635 req->txq.hc_rate = bp->tx_ticks ? 1000000/bp->tx_ticks : 0;
13636 req->txq.flags = flags;
13637 req->txq.traffic_type = LLFC_TRAFFIC_TYPE_NW;
13638
13639 /* add list termination tlv */
13640 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13641 sizeof(struct channel_list_end_tlv));
13642
13643 /* output tlvs list */
13644 bnx2x_dp_tlv_list(bp, req);
13645
13646 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13647 if (rc)
13648 BNX2X_ERR("Sending SETUP_Q message for queue[%d] failed!\n",
13649 fp_idx);
13650
13651 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13652 BNX2X_ERR("Status of SETUP_Q for queue[%d] is %d\n",
13653 fp_idx, resp->hdr.status);
13654 return -EINVAL;
13655 }
13656 return rc;
13657}
13658
9b176b6b
AE
13659int bnx2x_vfpf_teardown_queue(struct bnx2x *bp, int qidx)
13660{
13661 struct vfpf_q_op_tlv *req = &bp->vf2pf_mbox->req.q_op;
13662 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13663 int rc;
13664
13665 /* clear mailbox and prep first tlv */
13666 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_TEARDOWN_Q,
13667 sizeof(*req));
13668
13669 req->vf_qid = qidx;
13670
13671 /* add list termination tlv */
13672 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13673 sizeof(struct channel_list_end_tlv));
13674
13675 /* output tlvs list */
13676 bnx2x_dp_tlv_list(bp, req);
13677
13678 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13679
13680 if (rc) {
13681 BNX2X_ERR("Sending TEARDOWN for queue %d failed: %d\n", qidx,
13682 rc);
13683 return rc;
13684 }
13685
13686 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13687 BNX2X_ERR("TEARDOWN for queue %d failed: %d\n", qidx,
13688 resp->hdr.status);
13689 return -EINVAL;
13690 }
13691
13692 return 0;
13693}
13694
8d9ac297
AE
13695/* request pf to add a mac for the vf */
13696int bnx2x_vfpf_set_mac(struct bnx2x *bp)
13697{
13698 struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
13699 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13700 int rc;
13701
13702 /* clear mailbox and prep first tlv */
13703 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
13704 sizeof(*req));
13705
13706 req->flags = VFPF_SET_Q_FILTERS_MAC_VLAN_CHANGED;
13707 req->vf_qid = 0;
13708 req->n_mac_vlan_filters = 1;
13709 req->filters[0].flags =
13710 VFPF_Q_FILTER_DEST_MAC_VALID | VFPF_Q_FILTER_SET_MAC;
13711
13712 /* copy mac from device to request */
13713 memcpy(req->filters[0].mac, bp->dev->dev_addr, ETH_ALEN);
13714
13715 /* add list termination tlv */
13716 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13717 sizeof(struct channel_list_end_tlv));
13718
13719 /* output tlvs list */
13720 bnx2x_dp_tlv_list(bp, req);
13721
13722 /* send message to pf */
13723 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13724 if (rc) {
13725 BNX2X_ERR("failed to send message to pf. rc was %d\n", rc);
13726 return rc;
13727 }
13728
13729 /* PF failed the transaction */
13730 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13731 BNX2X_ERR("vfpf SET MAC failed: %d\n", resp->hdr.status);
13732 return -EINVAL;
13733 }
13734
13735 return 0;
13736}
381ac16b
AE
13737
13738int bnx2x_vfpf_set_mcast(struct net_device *dev)
13739{
13740 struct bnx2x *bp = netdev_priv(dev);
13741 struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
13742 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13743 int rc, i = 0;
13744 struct netdev_hw_addr *ha;
13745
13746 if (bp->state != BNX2X_STATE_OPEN) {
13747 DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
13748 return -EINVAL;
13749 }
13750
13751 /* clear mailbox and prep first tlv */
13752 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
13753 sizeof(*req));
13754
13755 /* Get Rx mode requested */
13756 DP(NETIF_MSG_IFUP, "dev->flags = %x\n", dev->flags);
13757
13758 netdev_for_each_mc_addr(ha, dev) {
13759 DP(NETIF_MSG_IFUP, "Adding mcast MAC: %pM\n",
13760 bnx2x_mc_addr(ha));
13761 memcpy(req->multicast[i], bnx2x_mc_addr(ha), ETH_ALEN);
13762 i++;
13763 }
13764
13765 /* We support four PFVF_MAX_MULTICAST_PER_VF mcast
13766 * addresses tops
13767 */
13768 if (i >= PFVF_MAX_MULTICAST_PER_VF) {
13769 DP(NETIF_MSG_IFUP,
13770 "VF supports not more than %d multicast MAC addresses\n",
13771 PFVF_MAX_MULTICAST_PER_VF);
13772 return -EINVAL;
13773 }
13774
13775 req->n_multicast = i;
13776 req->flags |= VFPF_SET_Q_FILTERS_MULTICAST_CHANGED;
13777 req->vf_qid = 0;
13778
13779 /* add list termination tlv */
13780 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13781 sizeof(struct channel_list_end_tlv));
13782
13783 /* output tlvs list */
13784 bnx2x_dp_tlv_list(bp, req);
13785
13786 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13787 if (rc) {
13788 BNX2X_ERR("Sending a message failed: %d\n", rc);
13789 return rc;
13790 }
13791
13792 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13793 BNX2X_ERR("Set Rx mode/multicast failed: %d\n",
13794 resp->hdr.status);
13795 return -EINVAL;
13796 }
13797
13798 return 0;
13799}
13800
13801int bnx2x_vfpf_storm_rx_mode(struct bnx2x *bp)
13802{
13803 int mode = bp->rx_mode;
13804 struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
13805 struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
13806 int rc;
13807
13808 /* clear mailbox and prep first tlv */
13809 bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
13810 sizeof(*req));
13811
13812 DP(NETIF_MSG_IFUP, "Rx mode is %d\n", mode);
13813
13814 switch (mode) {
13815 case BNX2X_RX_MODE_NONE: /* no Rx */
13816 req->rx_mask = VFPF_RX_MASK_ACCEPT_NONE;
13817 break;
13818 case BNX2X_RX_MODE_NORMAL:
13819 req->rx_mask = VFPF_RX_MASK_ACCEPT_MATCHED_MULTICAST;
13820 req->rx_mask |= VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST;
13821 req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
13822 break;
13823 case BNX2X_RX_MODE_ALLMULTI:
13824 req->rx_mask = VFPF_RX_MASK_ACCEPT_ALL_MULTICAST;
13825 req->rx_mask |= VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST;
13826 req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
13827 break;
13828 case BNX2X_RX_MODE_PROMISC:
13829 req->rx_mask = VFPF_RX_MASK_ACCEPT_ALL_UNICAST;
13830 req->rx_mask |= VFPF_RX_MASK_ACCEPT_ALL_MULTICAST;
13831 req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
13832 break;
13833 default:
13834 BNX2X_ERR("BAD rx mode (%d)\n", mode);
13835 return -EINVAL;
13836 }
13837
13838 req->flags |= VFPF_SET_Q_FILTERS_RX_MASK_CHANGED;
13839 req->vf_qid = 0;
13840
13841 /* add list termination tlv */
13842 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
13843 sizeof(struct channel_list_end_tlv));
13844
13845 /* output tlvs list */
13846 bnx2x_dp_tlv_list(bp, req);
13847
13848 rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
13849 if (rc)
13850 BNX2X_ERR("Sending a message failed: %d\n", rc);
13851
13852 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
13853 BNX2X_ERR("Set Rx mode failed: %d\n", resp->hdr.status);
13854 return -EINVAL;
13855 }
13856
13857 return rc;
13858}
This page took 3.197626 seconds and 5 git commands to generate.