]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
net: fec: make local function fec_poll_controller() static
[thirdparty/linux.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_main.c
CommitLineData
34f80b04 1/* bnx2x_main.c: Broadcom Everest network driver.
a2fbb9ea 2 *
247fa82b 3 * Copyright (c) 2007-2013 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 62#include "bnx2x_vfpf.h"
e4901dde 63#include "bnx2x_dcb.h"
042181f5 64#include "bnx2x_sp.h"
a2fbb9ea 65
94a78b79
VZ
66#include <linux/firmware.h>
67#include "bnx2x_fw_file_hdr.h"
68/* FW files */
45229b42
BH
69#define FW_FILE_VERSION \
70 __stringify(BCM_5710_FW_MAJOR_VERSION) "." \
71 __stringify(BCM_5710_FW_MINOR_VERSION) "." \
72 __stringify(BCM_5710_FW_REVISION_VERSION) "." \
73 __stringify(BCM_5710_FW_ENGINEERING_VERSION)
560131f3
DK
74#define FW_FILE_NAME_E1 "bnx2x/bnx2x-e1-" FW_FILE_VERSION ".fw"
75#define FW_FILE_NAME_E1H "bnx2x/bnx2x-e1h-" FW_FILE_VERSION ".fw"
f2e0899f 76#define FW_FILE_NAME_E2 "bnx2x/bnx2x-e2-" FW_FILE_VERSION ".fw"
94a78b79 77
34f80b04
EG
78/* Time in jiffies before concluding the transmitter is hung */
79#define TX_TIMEOUT (5*HZ)
a2fbb9ea 80
0329aba1 81static char version[] =
619c5cb6 82 "Broadcom NetXtreme II 5771x/578xx 10/20-Gigabit Ethernet Driver "
a2fbb9ea
ET
83 DRV_MODULE_NAME " " DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
84
24e3fcef 85MODULE_AUTHOR("Eliezer Tamir");
f2e0899f 86MODULE_DESCRIPTION("Broadcom NetXtreme II "
619c5cb6
VZ
87 "BCM57710/57711/57711E/"
88 "57712/57712_MF/57800/57800_MF/57810/57810_MF/"
89 "57840/57840_MF Driver");
a2fbb9ea
ET
90MODULE_LICENSE("GPL");
91MODULE_VERSION(DRV_MODULE_VERSION);
45229b42
BH
92MODULE_FIRMWARE(FW_FILE_NAME_E1);
93MODULE_FIRMWARE(FW_FILE_NAME_E1H);
f2e0899f 94MODULE_FIRMWARE(FW_FILE_NAME_E2);
a2fbb9ea 95
ca00392c 96
d6214d7a 97int num_queues;
54b9ddaa 98module_param(num_queues, int, 0);
96305234
DK
99MODULE_PARM_DESC(num_queues,
100 " Set number of queues (default is as a number of CPUs)");
555f6c78 101
19680c48 102static int disable_tpa;
19680c48 103module_param(disable_tpa, int, 0);
9898f86d 104MODULE_PARM_DESC(disable_tpa, " Disable the TPA (LRO) feature");
8badd27a 105
9ee3d37b
DK
106#define INT_MODE_INTx 1
107#define INT_MODE_MSI 2
0e8d2ec5 108int int_mode;
8badd27a 109module_param(int_mode, int, 0);
619c5cb6 110MODULE_PARM_DESC(int_mode, " Force interrupt mode other than MSI-X "
cdaa7cb8 111 "(1 INT#x; 2 MSI)");
8badd27a 112
a18f5128
EG
113static int dropless_fc;
114module_param(dropless_fc, int, 0);
115MODULE_PARM_DESC(dropless_fc, " Pause on exhausted host ring");
116
8d5726c4
EG
117static int mrrs = -1;
118module_param(mrrs, int, 0);
119MODULE_PARM_DESC(mrrs, " Force Max Read Req Size (0..3) (for debug)");
120
9898f86d 121static int debug;
a2fbb9ea 122module_param(debug, int, 0);
9898f86d
EG
123MODULE_PARM_DESC(debug, " Default debug msglevel");
124
a2fbb9ea 125
619c5cb6
VZ
126
127struct workqueue_struct *bnx2x_wq;
ec6ba945 128
1ef1d45a
BW
129struct bnx2x_mac_vals {
130 u32 xmac_addr;
131 u32 xmac_val;
132 u32 emac_addr;
133 u32 emac_val;
134 u32 umac_addr;
135 u32 umac_val;
136 u32 bmac_addr;
137 u32 bmac_val[2];
138};
139
a2fbb9ea
ET
140enum bnx2x_board_type {
141 BCM57710 = 0,
619c5cb6
VZ
142 BCM57711,
143 BCM57711E,
144 BCM57712,
145 BCM57712_MF,
1ab4434c 146 BCM57712_VF,
619c5cb6
VZ
147 BCM57800,
148 BCM57800_MF,
1ab4434c 149 BCM57800_VF,
619c5cb6
VZ
150 BCM57810,
151 BCM57810_MF,
1ab4434c 152 BCM57810_VF,
c3def943
YM
153 BCM57840_4_10,
154 BCM57840_2_20,
7e8e02df 155 BCM57840_MF,
1ab4434c 156 BCM57840_VF,
7e8e02df 157 BCM57811,
1ab4434c
AE
158 BCM57811_MF,
159 BCM57840_O,
160 BCM57840_MFO,
161 BCM57811_VF
a2fbb9ea
ET
162};
163
34f80b04 164/* indexed by board_type, above */
53a10565 165static struct {
a2fbb9ea 166 char *name;
0329aba1 167} board_info[] = {
1ab4434c
AE
168 [BCM57710] = { "Broadcom NetXtreme II BCM57710 10 Gigabit PCIe [Everest]" },
169 [BCM57711] = { "Broadcom NetXtreme II BCM57711 10 Gigabit PCIe" },
170 [BCM57711E] = { "Broadcom NetXtreme II BCM57711E 10 Gigabit PCIe" },
171 [BCM57712] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet" },
172 [BCM57712_MF] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function" },
173 [BCM57712_VF] = { "Broadcom NetXtreme II BCM57712 10 Gigabit Ethernet Virtual Function" },
174 [BCM57800] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet" },
175 [BCM57800_MF] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet Multi Function" },
176 [BCM57800_VF] = { "Broadcom NetXtreme II BCM57800 10 Gigabit Ethernet Virtual Function" },
177 [BCM57810] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet" },
178 [BCM57810_MF] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet Multi Function" },
179 [BCM57810_VF] = { "Broadcom NetXtreme II BCM57810 10 Gigabit Ethernet Virtual Function" },
180 [BCM57840_4_10] = { "Broadcom NetXtreme II BCM57840 10 Gigabit Ethernet" },
181 [BCM57840_2_20] = { "Broadcom NetXtreme II BCM57840 20 Gigabit Ethernet" },
182 [BCM57840_MF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function" },
183 [BCM57840_VF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function" },
184 [BCM57811] = { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet" },
185 [BCM57811_MF] = { "Broadcom NetXtreme II BCM57811 10 Gigabit Ethernet Multi Function" },
186 [BCM57840_O] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet" },
187 [BCM57840_MFO] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function" },
188 [BCM57811_VF] = { "Broadcom NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function" }
a2fbb9ea
ET
189};
190
619c5cb6
VZ
191#ifndef PCI_DEVICE_ID_NX2_57710
192#define PCI_DEVICE_ID_NX2_57710 CHIP_NUM_57710
193#endif
194#ifndef PCI_DEVICE_ID_NX2_57711
195#define PCI_DEVICE_ID_NX2_57711 CHIP_NUM_57711
196#endif
197#ifndef PCI_DEVICE_ID_NX2_57711E
198#define PCI_DEVICE_ID_NX2_57711E CHIP_NUM_57711E
199#endif
200#ifndef PCI_DEVICE_ID_NX2_57712
201#define PCI_DEVICE_ID_NX2_57712 CHIP_NUM_57712
202#endif
203#ifndef PCI_DEVICE_ID_NX2_57712_MF
204#define PCI_DEVICE_ID_NX2_57712_MF CHIP_NUM_57712_MF
205#endif
8395be5e
AE
206#ifndef PCI_DEVICE_ID_NX2_57712_VF
207#define PCI_DEVICE_ID_NX2_57712_VF CHIP_NUM_57712_VF
208#endif
619c5cb6
VZ
209#ifndef PCI_DEVICE_ID_NX2_57800
210#define PCI_DEVICE_ID_NX2_57800 CHIP_NUM_57800
211#endif
212#ifndef PCI_DEVICE_ID_NX2_57800_MF
213#define PCI_DEVICE_ID_NX2_57800_MF CHIP_NUM_57800_MF
214#endif
8395be5e
AE
215#ifndef PCI_DEVICE_ID_NX2_57800_VF
216#define PCI_DEVICE_ID_NX2_57800_VF CHIP_NUM_57800_VF
217#endif
619c5cb6
VZ
218#ifndef PCI_DEVICE_ID_NX2_57810
219#define PCI_DEVICE_ID_NX2_57810 CHIP_NUM_57810
220#endif
221#ifndef PCI_DEVICE_ID_NX2_57810_MF
222#define PCI_DEVICE_ID_NX2_57810_MF CHIP_NUM_57810_MF
223#endif
c3def943
YM
224#ifndef PCI_DEVICE_ID_NX2_57840_O
225#define PCI_DEVICE_ID_NX2_57840_O CHIP_NUM_57840_OBSOLETE
226#endif
8395be5e
AE
227#ifndef PCI_DEVICE_ID_NX2_57810_VF
228#define PCI_DEVICE_ID_NX2_57810_VF CHIP_NUM_57810_VF
229#endif
c3def943
YM
230#ifndef PCI_DEVICE_ID_NX2_57840_4_10
231#define PCI_DEVICE_ID_NX2_57840_4_10 CHIP_NUM_57840_4_10
232#endif
233#ifndef PCI_DEVICE_ID_NX2_57840_2_20
234#define PCI_DEVICE_ID_NX2_57840_2_20 CHIP_NUM_57840_2_20
235#endif
236#ifndef PCI_DEVICE_ID_NX2_57840_MFO
237#define PCI_DEVICE_ID_NX2_57840_MFO CHIP_NUM_57840_MF_OBSOLETE
619c5cb6
VZ
238#endif
239#ifndef PCI_DEVICE_ID_NX2_57840_MF
240#define PCI_DEVICE_ID_NX2_57840_MF CHIP_NUM_57840_MF
241#endif
8395be5e
AE
242#ifndef PCI_DEVICE_ID_NX2_57840_VF
243#define PCI_DEVICE_ID_NX2_57840_VF CHIP_NUM_57840_VF
244#endif
7e8e02df
BW
245#ifndef PCI_DEVICE_ID_NX2_57811
246#define PCI_DEVICE_ID_NX2_57811 CHIP_NUM_57811
247#endif
248#ifndef PCI_DEVICE_ID_NX2_57811_MF
249#define PCI_DEVICE_ID_NX2_57811_MF CHIP_NUM_57811_MF
250#endif
8395be5e
AE
251#ifndef PCI_DEVICE_ID_NX2_57811_VF
252#define PCI_DEVICE_ID_NX2_57811_VF CHIP_NUM_57811_VF
253#endif
254
a3aa1884 255static DEFINE_PCI_DEVICE_TABLE(bnx2x_pci_tbl) = {
e4ed7113
EG
256 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57710), BCM57710 },
257 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711), BCM57711 },
258 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57711E), BCM57711E },
f2e0899f 259 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712), BCM57712 },
619c5cb6 260 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712_MF), BCM57712_MF },
8395be5e 261 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57712_VF), BCM57712_VF },
619c5cb6
VZ
262 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800), BCM57800 },
263 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800_MF), BCM57800_MF },
8395be5e 264 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57800_VF), BCM57800_VF },
619c5cb6
VZ
265 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810), BCM57810 },
266 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810_MF), BCM57810_MF },
c3def943
YM
267 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_O), BCM57840_O },
268 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_4_10), BCM57840_4_10 },
269 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_2_20), BCM57840_2_20 },
8395be5e 270 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57810_VF), BCM57810_VF },
c3def943 271 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MFO), BCM57840_MFO },
619c5cb6 272 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_MF), BCM57840_MF },
8395be5e 273 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57840_VF), BCM57840_VF },
7e8e02df
BW
274 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811), BCM57811 },
275 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811_MF), BCM57811_MF },
8395be5e 276 { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_57811_VF), BCM57811_VF },
a2fbb9ea
ET
277 { 0 }
278};
279
280MODULE_DEVICE_TABLE(pci, bnx2x_pci_tbl);
281
452427b0
YM
282/* Global resources for unloading a previously loaded device */
283#define BNX2X_PREV_WAIT_NEEDED 1
284static DEFINE_SEMAPHORE(bnx2x_prev_sem);
285static LIST_HEAD(bnx2x_prev_list);
a2fbb9ea
ET
286/****************************************************************************
287* General service functions
288****************************************************************************/
289
1191cb83 290static void __storm_memset_dma_mapping(struct bnx2x *bp,
619c5cb6
VZ
291 u32 addr, dma_addr_t mapping)
292{
293 REG_WR(bp, addr, U64_LO(mapping));
294 REG_WR(bp, addr + 4, U64_HI(mapping));
295}
296
1191cb83
ED
297static void storm_memset_spq_addr(struct bnx2x *bp,
298 dma_addr_t mapping, u16 abs_fid)
619c5cb6
VZ
299{
300 u32 addr = XSEM_REG_FAST_MEMORY +
301 XSTORM_SPQ_PAGE_BASE_OFFSET(abs_fid);
302
303 __storm_memset_dma_mapping(bp, addr, mapping);
304}
305
1191cb83
ED
306static void storm_memset_vf_to_pf(struct bnx2x *bp, u16 abs_fid,
307 u16 pf_id)
523224a3 308{
619c5cb6
VZ
309 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_VF_TO_PF_OFFSET(abs_fid),
310 pf_id);
311 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_VF_TO_PF_OFFSET(abs_fid),
312 pf_id);
313 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_VF_TO_PF_OFFSET(abs_fid),
314 pf_id);
315 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_VF_TO_PF_OFFSET(abs_fid),
316 pf_id);
523224a3
DK
317}
318
1191cb83
ED
319static void storm_memset_func_en(struct bnx2x *bp, u16 abs_fid,
320 u8 enable)
619c5cb6
VZ
321{
322 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(abs_fid),
323 enable);
324 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(abs_fid),
325 enable);
326 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(abs_fid),
327 enable);
328 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(abs_fid),
329 enable);
330}
523224a3 331
1191cb83
ED
332static void storm_memset_eq_data(struct bnx2x *bp,
333 struct event_ring_data *eq_data,
523224a3
DK
334 u16 pfid)
335{
336 size_t size = sizeof(struct event_ring_data);
337
338 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_DATA_OFFSET(pfid);
339
340 __storm_memset_struct(bp, addr, size, (u32 *)eq_data);
341}
342
1191cb83
ED
343static void storm_memset_eq_prod(struct bnx2x *bp, u16 eq_prod,
344 u16 pfid)
523224a3
DK
345{
346 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_PROD_OFFSET(pfid);
347 REG_WR16(bp, addr, eq_prod);
348}
349
a2fbb9ea
ET
350/* used only at init
351 * locking is done by mcp
352 */
8d96286a 353static void bnx2x_reg_wr_ind(struct bnx2x *bp, u32 addr, u32 val)
a2fbb9ea
ET
354{
355 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
356 pci_write_config_dword(bp->pdev, PCICFG_GRC_DATA, val);
357 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
358 PCICFG_VENDOR_ID_OFFSET);
359}
360
a2fbb9ea
ET
361static u32 bnx2x_reg_rd_ind(struct bnx2x *bp, u32 addr)
362{
363 u32 val;
364
365 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
366 pci_read_config_dword(bp->pdev, PCICFG_GRC_DATA, &val);
367 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
368 PCICFG_VENDOR_ID_OFFSET);
369
370 return val;
371}
a2fbb9ea 372
f2e0899f
DK
373#define DMAE_DP_SRC_GRC "grc src_addr [%08x]"
374#define DMAE_DP_SRC_PCI "pci src_addr [%x:%08x]"
375#define DMAE_DP_DST_GRC "grc dst_addr [%08x]"
376#define DMAE_DP_DST_PCI "pci dst_addr [%x:%08x]"
377#define DMAE_DP_DST_NONE "dst_addr [none]"
378
fd1fc79d
AE
379void bnx2x_dp_dmae(struct bnx2x *bp, struct dmae_command *dmae, int msglvl)
380{
381 u32 src_type = dmae->opcode & DMAE_COMMAND_SRC;
382
383 switch (dmae->opcode & DMAE_COMMAND_DST) {
384 case DMAE_CMD_DST_PCI:
385 if (src_type == DMAE_CMD_SRC_PCI)
386 DP(msglvl, "DMAE: opcode 0x%08x\n"
387 "src [%x:%08x], len [%d*4], dst [%x:%08x]\n"
388 "comp_addr [%x:%08x], comp_val 0x%08x\n",
389 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
390 dmae->len, dmae->dst_addr_hi, dmae->dst_addr_lo,
391 dmae->comp_addr_hi, dmae->comp_addr_lo,
392 dmae->comp_val);
393 else
394 DP(msglvl, "DMAE: opcode 0x%08x\n"
395 "src [%08x], len [%d*4], dst [%x:%08x]\n"
396 "comp_addr [%x:%08x], comp_val 0x%08x\n",
397 dmae->opcode, dmae->src_addr_lo >> 2,
398 dmae->len, dmae->dst_addr_hi, dmae->dst_addr_lo,
399 dmae->comp_addr_hi, dmae->comp_addr_lo,
400 dmae->comp_val);
401 break;
402 case DMAE_CMD_DST_GRC:
403 if (src_type == DMAE_CMD_SRC_PCI)
404 DP(msglvl, "DMAE: opcode 0x%08x\n"
405 "src [%x:%08x], len [%d*4], dst_addr [%08x]\n"
406 "comp_addr [%x:%08x], comp_val 0x%08x\n",
407 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
408 dmae->len, dmae->dst_addr_lo >> 2,
409 dmae->comp_addr_hi, dmae->comp_addr_lo,
410 dmae->comp_val);
411 else
412 DP(msglvl, "DMAE: opcode 0x%08x\n"
413 "src [%08x], len [%d*4], dst [%08x]\n"
414 "comp_addr [%x:%08x], comp_val 0x%08x\n",
415 dmae->opcode, dmae->src_addr_lo >> 2,
416 dmae->len, dmae->dst_addr_lo >> 2,
417 dmae->comp_addr_hi, dmae->comp_addr_lo,
418 dmae->comp_val);
419 break;
420 default:
421 if (src_type == DMAE_CMD_SRC_PCI)
422 DP(msglvl, "DMAE: opcode 0x%08x\n"
423 "src_addr [%x:%08x] len [%d * 4] dst_addr [none]\n"
424 "comp_addr [%x:%08x] comp_val 0x%08x\n",
425 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
426 dmae->len, dmae->comp_addr_hi, dmae->comp_addr_lo,
427 dmae->comp_val);
428 else
429 DP(msglvl, "DMAE: opcode 0x%08x\n"
430 "src_addr [%08x] len [%d * 4] dst_addr [none]\n"
431 "comp_addr [%x:%08x] comp_val 0x%08x\n",
432 dmae->opcode, dmae->src_addr_lo >> 2,
433 dmae->len, dmae->comp_addr_hi, dmae->comp_addr_lo,
434 dmae->comp_val);
435 break;
436 }
437}
f2e0899f 438
a2fbb9ea 439/* copy command into DMAE command memory and set DMAE command go */
6c719d00 440void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx)
a2fbb9ea
ET
441{
442 u32 cmd_offset;
443 int i;
444
445 cmd_offset = (DMAE_REG_CMD_MEM + sizeof(struct dmae_command) * idx);
446 for (i = 0; i < (sizeof(struct dmae_command)/4); i++) {
447 REG_WR(bp, cmd_offset + i*4, *(((u32 *)dmae) + i));
a2fbb9ea
ET
448 }
449 REG_WR(bp, dmae_reg_go_c[idx], 1);
450}
451
f2e0899f 452u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type)
a2fbb9ea 453{
f2e0899f
DK
454 return opcode | ((comp_type << DMAE_COMMAND_C_DST_SHIFT) |
455 DMAE_CMD_C_ENABLE);
456}
ad8d3948 457
f2e0899f
DK
458u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode)
459{
460 return opcode & ~DMAE_CMD_SRC_RESET;
461}
ad8d3948 462
f2e0899f
DK
463u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
464 bool with_comp, u8 comp_type)
465{
466 u32 opcode = 0;
467
468 opcode |= ((src_type << DMAE_COMMAND_SRC_SHIFT) |
469 (dst_type << DMAE_COMMAND_DST_SHIFT));
ad8d3948 470
f2e0899f
DK
471 opcode |= (DMAE_CMD_SRC_RESET | DMAE_CMD_DST_RESET);
472
473 opcode |= (BP_PORT(bp) ? DMAE_CMD_PORT_1 : DMAE_CMD_PORT_0);
3395a033
DK
474 opcode |= ((BP_VN(bp) << DMAE_CMD_E1HVN_SHIFT) |
475 (BP_VN(bp) << DMAE_COMMAND_DST_VN_SHIFT));
f2e0899f 476 opcode |= (DMAE_COM_SET_ERR << DMAE_COMMAND_ERR_POLICY_SHIFT);
a2fbb9ea 477
a2fbb9ea 478#ifdef __BIG_ENDIAN
f2e0899f 479 opcode |= DMAE_CMD_ENDIANITY_B_DW_SWAP;
a2fbb9ea 480#else
f2e0899f 481 opcode |= DMAE_CMD_ENDIANITY_DW_SWAP;
a2fbb9ea 482#endif
f2e0899f
DK
483 if (with_comp)
484 opcode = bnx2x_dmae_opcode_add_comp(opcode, comp_type);
485 return opcode;
486}
487
fd1fc79d 488void bnx2x_prep_dmae_with_comp(struct bnx2x *bp,
8d96286a 489 struct dmae_command *dmae,
490 u8 src_type, u8 dst_type)
f2e0899f
DK
491{
492 memset(dmae, 0, sizeof(struct dmae_command));
493
494 /* set the opcode */
495 dmae->opcode = bnx2x_dmae_opcode(bp, src_type, dst_type,
496 true, DMAE_COMP_PCI);
497
498 /* fill in the completion parameters */
499 dmae->comp_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_comp));
500 dmae->comp_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_comp));
501 dmae->comp_val = DMAE_COMP_VAL;
502}
503
fd1fc79d
AE
504/* issue a dmae command over the init-channel and wait for completion */
505int bnx2x_issue_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae)
f2e0899f
DK
506{
507 u32 *wb_comp = bnx2x_sp(bp, wb_comp);
5e374b5a 508 int cnt = CHIP_REV_IS_SLOW(bp) ? (400000) : 4000;
f2e0899f
DK
509 int rc = 0;
510
619c5cb6
VZ
511 /*
512 * Lock the dmae channel. Disable BHs to prevent a dead-lock
513 * as long as this code is called both from syscall context and
514 * from ndo_set_rx_mode() flow that may be called from BH.
515 */
6e30dd4e 516 spin_lock_bh(&bp->dmae_lock);
5ff7b6d4 517
f2e0899f 518 /* reset completion */
a2fbb9ea
ET
519 *wb_comp = 0;
520
f2e0899f
DK
521 /* post the command on the channel used for initializations */
522 bnx2x_post_dmae(bp, dmae, INIT_DMAE_C(bp));
a2fbb9ea 523
f2e0899f 524 /* wait for completion */
a2fbb9ea 525 udelay(5);
f2e0899f 526 while ((*wb_comp & ~DMAE_PCI_ERR_FLAG) != DMAE_COMP_VAL) {
ad8d3948 527
95c6c616
AE
528 if (!cnt ||
529 (bp->recovery_state != BNX2X_RECOVERY_DONE &&
530 bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
c3eefaf6 531 BNX2X_ERR("DMAE timeout!\n");
f2e0899f
DK
532 rc = DMAE_TIMEOUT;
533 goto unlock;
a2fbb9ea 534 }
ad8d3948 535 cnt--;
f2e0899f 536 udelay(50);
a2fbb9ea 537 }
f2e0899f
DK
538 if (*wb_comp & DMAE_PCI_ERR_FLAG) {
539 BNX2X_ERR("DMAE PCI error!\n");
540 rc = DMAE_PCI_ERROR;
541 }
542
f2e0899f 543unlock:
6e30dd4e 544 spin_unlock_bh(&bp->dmae_lock);
f2e0899f
DK
545 return rc;
546}
547
548void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
549 u32 len32)
550{
551 struct dmae_command dmae;
552
553 if (!bp->dmae_ready) {
554 u32 *data = bnx2x_sp(bp, wb_data[0]);
555
127a425e
AE
556 if (CHIP_IS_E1(bp))
557 bnx2x_init_ind_wr(bp, dst_addr, data, len32);
558 else
559 bnx2x_init_str_wr(bp, dst_addr, data, len32);
f2e0899f
DK
560 return;
561 }
562
563 /* set opcode and fixed command fields */
564 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_PCI, DMAE_DST_GRC);
565
566 /* fill in addresses and len */
567 dmae.src_addr_lo = U64_LO(dma_addr);
568 dmae.src_addr_hi = U64_HI(dma_addr);
569 dmae.dst_addr_lo = dst_addr >> 2;
570 dmae.dst_addr_hi = 0;
571 dmae.len = len32;
572
f2e0899f
DK
573 /* issue the command and wait for completion */
574 bnx2x_issue_dmae_with_comp(bp, &dmae);
a2fbb9ea
ET
575}
576
c18487ee 577void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32)
a2fbb9ea 578{
5ff7b6d4 579 struct dmae_command dmae;
ad8d3948
EG
580
581 if (!bp->dmae_ready) {
582 u32 *data = bnx2x_sp(bp, wb_data[0]);
583 int i;
584
51c1a580 585 if (CHIP_IS_E1(bp))
127a425e
AE
586 for (i = 0; i < len32; i++)
587 data[i] = bnx2x_reg_rd_ind(bp, src_addr + i*4);
51c1a580 588 else
127a425e
AE
589 for (i = 0; i < len32; i++)
590 data[i] = REG_RD(bp, src_addr + i*4);
591
ad8d3948
EG
592 return;
593 }
594
f2e0899f
DK
595 /* set opcode and fixed command fields */
596 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_GRC, DMAE_DST_PCI);
a2fbb9ea 597
f2e0899f 598 /* fill in addresses and len */
5ff7b6d4
EG
599 dmae.src_addr_lo = src_addr >> 2;
600 dmae.src_addr_hi = 0;
601 dmae.dst_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_data));
602 dmae.dst_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_data));
603 dmae.len = len32;
ad8d3948 604
f2e0899f
DK
605 /* issue the command and wait for completion */
606 bnx2x_issue_dmae_with_comp(bp, &dmae);
ad8d3948
EG
607}
608
8d96286a 609static void bnx2x_write_dmae_phys_len(struct bnx2x *bp, dma_addr_t phys_addr,
610 u32 addr, u32 len)
573f2035 611{
02e3c6cb 612 int dmae_wr_max = DMAE_LEN32_WR_MAX(bp);
573f2035
EG
613 int offset = 0;
614
02e3c6cb 615 while (len > dmae_wr_max) {
573f2035 616 bnx2x_write_dmae(bp, phys_addr + offset,
02e3c6cb
VZ
617 addr + offset, dmae_wr_max);
618 offset += dmae_wr_max * 4;
619 len -= dmae_wr_max;
573f2035
EG
620 }
621
622 bnx2x_write_dmae(bp, phys_addr + offset, addr + offset, len);
623}
624
a2fbb9ea
ET
625static int bnx2x_mc_assert(struct bnx2x *bp)
626{
a2fbb9ea 627 char last_idx;
34f80b04
EG
628 int i, rc = 0;
629 u32 row0, row1, row2, row3;
630
631 /* XSTORM */
632 last_idx = REG_RD8(bp, BAR_XSTRORM_INTMEM +
633 XSTORM_ASSERT_LIST_INDEX_OFFSET);
634 if (last_idx)
635 BNX2X_ERR("XSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
636
637 /* print the asserts */
638 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
639
640 row0 = REG_RD(bp, BAR_XSTRORM_INTMEM +
641 XSTORM_ASSERT_LIST_OFFSET(i));
642 row1 = REG_RD(bp, BAR_XSTRORM_INTMEM +
643 XSTORM_ASSERT_LIST_OFFSET(i) + 4);
644 row2 = REG_RD(bp, BAR_XSTRORM_INTMEM +
645 XSTORM_ASSERT_LIST_OFFSET(i) + 8);
646 row3 = REG_RD(bp, BAR_XSTRORM_INTMEM +
647 XSTORM_ASSERT_LIST_OFFSET(i) + 12);
648
649 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 650 BNX2X_ERR("XSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
651 i, row3, row2, row1, row0);
652 rc++;
653 } else {
654 break;
655 }
656 }
657
658 /* TSTORM */
659 last_idx = REG_RD8(bp, BAR_TSTRORM_INTMEM +
660 TSTORM_ASSERT_LIST_INDEX_OFFSET);
661 if (last_idx)
662 BNX2X_ERR("TSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
663
664 /* print the asserts */
665 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
666
667 row0 = REG_RD(bp, BAR_TSTRORM_INTMEM +
668 TSTORM_ASSERT_LIST_OFFSET(i));
669 row1 = REG_RD(bp, BAR_TSTRORM_INTMEM +
670 TSTORM_ASSERT_LIST_OFFSET(i) + 4);
671 row2 = REG_RD(bp, BAR_TSTRORM_INTMEM +
672 TSTORM_ASSERT_LIST_OFFSET(i) + 8);
673 row3 = REG_RD(bp, BAR_TSTRORM_INTMEM +
674 TSTORM_ASSERT_LIST_OFFSET(i) + 12);
675
676 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 677 BNX2X_ERR("TSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
678 i, row3, row2, row1, row0);
679 rc++;
680 } else {
681 break;
682 }
683 }
684
685 /* CSTORM */
686 last_idx = REG_RD8(bp, BAR_CSTRORM_INTMEM +
687 CSTORM_ASSERT_LIST_INDEX_OFFSET);
688 if (last_idx)
689 BNX2X_ERR("CSTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
690
691 /* print the asserts */
692 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
693
694 row0 = REG_RD(bp, BAR_CSTRORM_INTMEM +
695 CSTORM_ASSERT_LIST_OFFSET(i));
696 row1 = REG_RD(bp, BAR_CSTRORM_INTMEM +
697 CSTORM_ASSERT_LIST_OFFSET(i) + 4);
698 row2 = REG_RD(bp, BAR_CSTRORM_INTMEM +
699 CSTORM_ASSERT_LIST_OFFSET(i) + 8);
700 row3 = REG_RD(bp, BAR_CSTRORM_INTMEM +
701 CSTORM_ASSERT_LIST_OFFSET(i) + 12);
702
703 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 704 BNX2X_ERR("CSTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
705 i, row3, row2, row1, row0);
706 rc++;
707 } else {
708 break;
709 }
710 }
711
712 /* USTORM */
713 last_idx = REG_RD8(bp, BAR_USTRORM_INTMEM +
714 USTORM_ASSERT_LIST_INDEX_OFFSET);
715 if (last_idx)
716 BNX2X_ERR("USTORM_ASSERT_LIST_INDEX 0x%x\n", last_idx);
717
718 /* print the asserts */
719 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
720
721 row0 = REG_RD(bp, BAR_USTRORM_INTMEM +
722 USTORM_ASSERT_LIST_OFFSET(i));
723 row1 = REG_RD(bp, BAR_USTRORM_INTMEM +
724 USTORM_ASSERT_LIST_OFFSET(i) + 4);
725 row2 = REG_RD(bp, BAR_USTRORM_INTMEM +
726 USTORM_ASSERT_LIST_OFFSET(i) + 8);
727 row3 = REG_RD(bp, BAR_USTRORM_INTMEM +
728 USTORM_ASSERT_LIST_OFFSET(i) + 12);
729
730 if (row0 != COMMON_ASM_INVALID_ASSERT_OPCODE) {
51c1a580 731 BNX2X_ERR("USTORM_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
34f80b04
EG
732 i, row3, row2, row1, row0);
733 rc++;
734 } else {
735 break;
a2fbb9ea
ET
736 }
737 }
34f80b04 738
a2fbb9ea
ET
739 return rc;
740}
c14423fe 741
7a25cc73 742void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl)
a2fbb9ea 743{
7a25cc73 744 u32 addr, val;
a2fbb9ea 745 u32 mark, offset;
4781bfad 746 __be32 data[9];
a2fbb9ea 747 int word;
f2e0899f 748 u32 trace_shmem_base;
2145a920
VZ
749 if (BP_NOMCP(bp)) {
750 BNX2X_ERR("NO MCP - can not dump\n");
751 return;
752 }
7a25cc73
DK
753 netdev_printk(lvl, bp->dev, "bc %d.%d.%d\n",
754 (bp->common.bc_ver & 0xff0000) >> 16,
755 (bp->common.bc_ver & 0xff00) >> 8,
756 (bp->common.bc_ver & 0xff));
757
758 val = REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER);
759 if (val == REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER))
51c1a580 760 BNX2X_ERR("%s" "MCP PC at 0x%x\n", lvl, val);
cdaa7cb8 761
f2e0899f
DK
762 if (BP_PATH(bp) == 0)
763 trace_shmem_base = bp->common.shmem_base;
764 else
765 trace_shmem_base = SHMEM2_RD(bp, other_shmem_base_addr);
de128804
DK
766 addr = trace_shmem_base - 0x800;
767
768 /* validate TRCB signature */
769 mark = REG_RD(bp, addr);
770 if (mark != MFW_TRACE_SIGNATURE) {
771 BNX2X_ERR("Trace buffer signature is missing.");
772 return ;
773 }
774
775 /* read cyclic buffer pointer */
776 addr += 4;
cdaa7cb8 777 mark = REG_RD(bp, addr);
f2e0899f
DK
778 mark = (CHIP_IS_E1x(bp) ? MCP_REG_MCPR_SCRATCH : MCP_A_REG_MCPR_SCRATCH)
779 + ((mark + 0x3) & ~0x3) - 0x08000000;
7a25cc73 780 printk("%s" "begin fw dump (mark 0x%x)\n", lvl, mark);
a2fbb9ea 781
7a25cc73 782 printk("%s", lvl);
2de67439
YM
783
784 /* dump buffer after the mark */
f2e0899f 785 for (offset = mark; offset <= trace_shmem_base; offset += 0x8*4) {
a2fbb9ea 786 for (word = 0; word < 8; word++)
cdaa7cb8 787 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 788 data[8] = 0x0;
7995c64e 789 pr_cont("%s", (char *)data);
a2fbb9ea 790 }
2de67439
YM
791
792 /* dump buffer before the mark */
cdaa7cb8 793 for (offset = addr + 4; offset <= mark; offset += 0x8*4) {
a2fbb9ea 794 for (word = 0; word < 8; word++)
cdaa7cb8 795 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 796 data[8] = 0x0;
7995c64e 797 pr_cont("%s", (char *)data);
a2fbb9ea 798 }
7a25cc73
DK
799 printk("%s" "end of fw dump\n", lvl);
800}
801
1191cb83 802static void bnx2x_fw_dump(struct bnx2x *bp)
7a25cc73
DK
803{
804 bnx2x_fw_dump_lvl(bp, KERN_ERR);
a2fbb9ea
ET
805}
806
823e1d90
YM
807static void bnx2x_hc_int_disable(struct bnx2x *bp)
808{
809 int port = BP_PORT(bp);
810 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
811 u32 val = REG_RD(bp, addr);
812
813 /* in E1 we must use only PCI configuration space to disable
814 * MSI/MSIX capablility
815 * It's forbitten to disable IGU_PF_CONF_MSI_MSIX_EN in HC block
816 */
817 if (CHIP_IS_E1(bp)) {
818 /* Since IGU_PF_CONF_MSI_MSIX_EN still always on
819 * Use mask register to prevent from HC sending interrupts
820 * after we exit the function
821 */
822 REG_WR(bp, HC_REG_INT_MASK + port*4, 0);
823
824 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
825 HC_CONFIG_0_REG_INT_LINE_EN_0 |
826 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
827 } else
828 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
829 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
830 HC_CONFIG_0_REG_INT_LINE_EN_0 |
831 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
832
833 DP(NETIF_MSG_IFDOWN,
834 "write %x to HC %d (addr 0x%x)\n",
835 val, port, addr);
836
837 /* flush all outstanding writes */
838 mmiowb();
839
840 REG_WR(bp, addr, val);
841 if (REG_RD(bp, addr) != val)
842 BNX2X_ERR("BUG! proper val not read from IGU!\n");
843}
844
845static void bnx2x_igu_int_disable(struct bnx2x *bp)
846{
847 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
848
849 val &= ~(IGU_PF_CONF_MSI_MSIX_EN |
850 IGU_PF_CONF_INT_LINE_EN |
851 IGU_PF_CONF_ATTN_BIT_EN);
852
853 DP(NETIF_MSG_IFDOWN, "write %x to IGU\n", val);
854
855 /* flush all outstanding writes */
856 mmiowb();
857
858 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
859 if (REG_RD(bp, IGU_REG_PF_CONFIGURATION) != val)
860 BNX2X_ERR("BUG! proper val not read from IGU!\n");
861}
862
863static void bnx2x_int_disable(struct bnx2x *bp)
864{
865 if (bp->common.int_block == INT_BLOCK_HC)
866 bnx2x_hc_int_disable(bp);
867 else
868 bnx2x_igu_int_disable(bp);
869}
870
871void bnx2x_panic_dump(struct bnx2x *bp, bool disable_int)
a2fbb9ea
ET
872{
873 int i;
523224a3
DK
874 u16 j;
875 struct hc_sp_status_block_data sp_sb_data;
876 int func = BP_FUNC(bp);
877#ifdef BNX2X_STOP_ON_ERROR
878 u16 start = 0, end = 0;
6383c0b3 879 u8 cos;
523224a3 880#endif
823e1d90
YM
881 if (disable_int)
882 bnx2x_int_disable(bp);
a2fbb9ea 883
66e855f3 884 bp->stats_state = STATS_STATE_DISABLED;
7a752993 885 bp->eth_stats.unrecoverable_error++;
66e855f3
YG
886 DP(BNX2X_MSG_STATS, "stats_state - DISABLED\n");
887
a2fbb9ea
ET
888 BNX2X_ERR("begin crash dump -----------------\n");
889
8440d2b6
EG
890 /* Indices */
891 /* Common */
51c1a580 892 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
893 bp->def_idx, bp->def_att_idx, bp->attn_state,
894 bp->spq_prod_idx, bp->stats_counter);
523224a3
DK
895 BNX2X_ERR("DSB: attn bits(0x%x) ack(0x%x) id(0x%x) idx(0x%x)\n",
896 bp->def_status_blk->atten_status_block.attn_bits,
897 bp->def_status_blk->atten_status_block.attn_bits_ack,
898 bp->def_status_blk->atten_status_block.status_block_id,
899 bp->def_status_blk->atten_status_block.attn_bits_index);
900 BNX2X_ERR(" def (");
901 for (i = 0; i < HC_SP_SB_MAX_INDICES; i++)
902 pr_cont("0x%x%s",
f1deab50
JP
903 bp->def_status_blk->sp_sb.index_values[i],
904 (i == HC_SP_SB_MAX_INDICES - 1) ? ") " : " ");
523224a3
DK
905
906 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
907 *((u32 *)&sp_sb_data + i) = REG_RD(bp, BAR_CSTRORM_INTMEM +
908 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
909 i*sizeof(u32));
910
f1deab50 911 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
912 sp_sb_data.igu_sb_id,
913 sp_sb_data.igu_seg_id,
914 sp_sb_data.p_func.pf_id,
915 sp_sb_data.p_func.vnic_id,
916 sp_sb_data.p_func.vf_id,
619c5cb6
VZ
917 sp_sb_data.p_func.vf_valid,
918 sp_sb_data.state);
523224a3 919
8440d2b6 920
ec6ba945 921 for_each_eth_queue(bp, i) {
a2fbb9ea 922 struct bnx2x_fastpath *fp = &bp->fp[i];
523224a3 923 int loop;
f2e0899f 924 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
925 struct hc_status_block_data_e1x sb_data_e1x;
926 struct hc_status_block_sm *hc_sm_p =
619c5cb6
VZ
927 CHIP_IS_E1x(bp) ?
928 sb_data_e1x.common.state_machine :
929 sb_data_e2.common.state_machine;
523224a3 930 struct hc_index_data *hc_index_p =
619c5cb6
VZ
931 CHIP_IS_E1x(bp) ?
932 sb_data_e1x.index_data :
933 sb_data_e2.index_data;
6383c0b3 934 u8 data_size, cos;
523224a3 935 u32 *sb_data_p;
6383c0b3 936 struct bnx2x_fp_txdata txdata;
523224a3
DK
937
938 /* Rx */
51c1a580 939 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 940 i, fp->rx_bd_prod, fp->rx_bd_cons,
523224a3 941 fp->rx_comp_prod,
66e855f3 942 fp->rx_comp_cons, le16_to_cpu(*fp->rx_cons_sb));
51c1a580 943 BNX2X_ERR(" rx_sge_prod(0x%x) last_max_sge(0x%x) fp_hc_idx(0x%x)\n",
8440d2b6 944 fp->rx_sge_prod, fp->last_max_sge,
523224a3 945 le16_to_cpu(fp->fp_hc_idx));
a2fbb9ea 946
523224a3 947 /* Tx */
6383c0b3
AE
948 for_each_cos_in_tx_queue(fp, cos)
949 {
65565884 950 txdata = *fp->txdata_ptr[cos];
51c1a580 951 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
952 i, txdata.tx_pkt_prod,
953 txdata.tx_pkt_cons, txdata.tx_bd_prod,
954 txdata.tx_bd_cons,
955 le16_to_cpu(*txdata.tx_cons_sb));
956 }
523224a3 957
619c5cb6
VZ
958 loop = CHIP_IS_E1x(bp) ?
959 HC_SB_MAX_INDICES_E1X : HC_SB_MAX_INDICES_E2;
523224a3
DK
960
961 /* host sb data */
962
ec6ba945
VZ
963 if (IS_FCOE_FP(fp))
964 continue;
55c11941 965
523224a3
DK
966 BNX2X_ERR(" run indexes (");
967 for (j = 0; j < HC_SB_MAX_SM; j++)
968 pr_cont("0x%x%s",
969 fp->sb_running_index[j],
970 (j == HC_SB_MAX_SM - 1) ? ")" : " ");
971
972 BNX2X_ERR(" indexes (");
973 for (j = 0; j < loop; j++)
974 pr_cont("0x%x%s",
975 fp->sb_index_values[j],
976 (j == loop - 1) ? ")" : " ");
977 /* fw sb data */
619c5cb6
VZ
978 data_size = CHIP_IS_E1x(bp) ?
979 sizeof(struct hc_status_block_data_e1x) :
980 sizeof(struct hc_status_block_data_e2);
523224a3 981 data_size /= sizeof(u32);
619c5cb6
VZ
982 sb_data_p = CHIP_IS_E1x(bp) ?
983 (u32 *)&sb_data_e1x :
984 (u32 *)&sb_data_e2;
523224a3
DK
985 /* copy sb data in here */
986 for (j = 0; j < data_size; j++)
987 *(sb_data_p + j) = REG_RD(bp, BAR_CSTRORM_INTMEM +
988 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp->fw_sb_id) +
989 j * sizeof(u32));
990
619c5cb6 991 if (!CHIP_IS_E1x(bp)) {
51c1a580 992 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
993 sb_data_e2.common.p_func.pf_id,
994 sb_data_e2.common.p_func.vf_id,
995 sb_data_e2.common.p_func.vf_valid,
996 sb_data_e2.common.p_func.vnic_id,
619c5cb6
VZ
997 sb_data_e2.common.same_igu_sb_1b,
998 sb_data_e2.common.state);
f2e0899f 999 } else {
51c1a580 1000 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
1001 sb_data_e1x.common.p_func.pf_id,
1002 sb_data_e1x.common.p_func.vf_id,
1003 sb_data_e1x.common.p_func.vf_valid,
1004 sb_data_e1x.common.p_func.vnic_id,
619c5cb6
VZ
1005 sb_data_e1x.common.same_igu_sb_1b,
1006 sb_data_e1x.common.state);
f2e0899f 1007 }
523224a3
DK
1008
1009 /* SB_SMs data */
1010 for (j = 0; j < HC_SB_MAX_SM; j++) {
51c1a580
MS
1011 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",
1012 j, hc_sm_p[j].__flags,
1013 hc_sm_p[j].igu_sb_id,
1014 hc_sm_p[j].igu_seg_id,
1015 hc_sm_p[j].time_to_expire,
1016 hc_sm_p[j].timer_value);
523224a3
DK
1017 }
1018
1019 /* Indecies data */
1020 for (j = 0; j < loop; j++) {
51c1a580 1021 pr_cont("INDEX[%d] flags (0x%x) timeout (0x%x)\n", j,
523224a3
DK
1022 hc_index_p[j].flags,
1023 hc_index_p[j].timeout);
1024 }
8440d2b6 1025 }
a2fbb9ea 1026
523224a3 1027#ifdef BNX2X_STOP_ON_ERROR
04c46736
YM
1028
1029 /* event queue */
1030 for (i = 0; i < NUM_EQ_DESC; i++) {
1031 u32 *data = (u32 *)&bp->eq_ring[i].message.data;
1032
1033 BNX2X_ERR("event queue [%d]: header: opcode %d, error %d\n",
1034 i, bp->eq_ring[i].message.opcode,
1035 bp->eq_ring[i].message.error);
1036 BNX2X_ERR("data: %x %x %x\n", data[0], data[1], data[2]);
1037 }
1038
8440d2b6
EG
1039 /* Rings */
1040 /* Rx */
55c11941 1041 for_each_valid_rx_queue(bp, i) {
8440d2b6 1042 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea
ET
1043
1044 start = RX_BD(le16_to_cpu(*fp->rx_cons_sb) - 10);
1045 end = RX_BD(le16_to_cpu(*fp->rx_cons_sb) + 503);
8440d2b6 1046 for (j = start; j != end; j = RX_BD(j + 1)) {
a2fbb9ea
ET
1047 u32 *rx_bd = (u32 *)&fp->rx_desc_ring[j];
1048 struct sw_rx_bd *sw_bd = &fp->rx_buf_ring[j];
1049
c3eefaf6 1050 BNX2X_ERR("fp%d: rx_bd[%x]=[%x:%x] sw_bd=[%p]\n",
44151acb 1051 i, j, rx_bd[1], rx_bd[0], sw_bd->data);
a2fbb9ea
ET
1052 }
1053
3196a88a
EG
1054 start = RX_SGE(fp->rx_sge_prod);
1055 end = RX_SGE(fp->last_max_sge);
8440d2b6 1056 for (j = start; j != end; j = RX_SGE(j + 1)) {
7a9b2557
VZ
1057 u32 *rx_sge = (u32 *)&fp->rx_sge_ring[j];
1058 struct sw_rx_page *sw_page = &fp->rx_page_ring[j];
1059
c3eefaf6
EG
1060 BNX2X_ERR("fp%d: rx_sge[%x]=[%x:%x] sw_page=[%p]\n",
1061 i, j, rx_sge[1], rx_sge[0], sw_page->page);
7a9b2557
VZ
1062 }
1063
a2fbb9ea
ET
1064 start = RCQ_BD(fp->rx_comp_cons - 10);
1065 end = RCQ_BD(fp->rx_comp_cons + 503);
8440d2b6 1066 for (j = start; j != end; j = RCQ_BD(j + 1)) {
a2fbb9ea
ET
1067 u32 *cqe = (u32 *)&fp->rx_comp_ring[j];
1068
c3eefaf6
EG
1069 BNX2X_ERR("fp%d: cqe[%x]=[%x:%x:%x:%x]\n",
1070 i, j, cqe[0], cqe[1], cqe[2], cqe[3]);
a2fbb9ea
ET
1071 }
1072 }
1073
8440d2b6 1074 /* Tx */
55c11941 1075 for_each_valid_tx_queue(bp, i) {
8440d2b6 1076 struct bnx2x_fastpath *fp = &bp->fp[i];
6383c0b3 1077 for_each_cos_in_tx_queue(fp, cos) {
65565884 1078 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3
AE
1079
1080 start = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) - 10);
1081 end = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) + 245);
1082 for (j = start; j != end; j = TX_BD(j + 1)) {
1083 struct sw_tx_bd *sw_bd =
1084 &txdata->tx_buf_ring[j];
1085
51c1a580 1086 BNX2X_ERR("fp%d: txdata %d, packet[%x]=[%p,%x]\n",
6383c0b3
AE
1087 i, cos, j, sw_bd->skb,
1088 sw_bd->first_bd);
1089 }
8440d2b6 1090
6383c0b3
AE
1091 start = TX_BD(txdata->tx_bd_cons - 10);
1092 end = TX_BD(txdata->tx_bd_cons + 254);
1093 for (j = start; j != end; j = TX_BD(j + 1)) {
1094 u32 *tx_bd = (u32 *)&txdata->tx_desc_ring[j];
8440d2b6 1095
51c1a580 1096 BNX2X_ERR("fp%d: txdata %d, tx_bd[%x]=[%x:%x:%x:%x]\n",
6383c0b3
AE
1097 i, cos, j, tx_bd[0], tx_bd[1],
1098 tx_bd[2], tx_bd[3]);
1099 }
8440d2b6
EG
1100 }
1101 }
523224a3 1102#endif
34f80b04 1103 bnx2x_fw_dump(bp);
a2fbb9ea
ET
1104 bnx2x_mc_assert(bp);
1105 BNX2X_ERR("end crash dump -----------------\n");
a2fbb9ea
ET
1106}
1107
619c5cb6
VZ
1108/*
1109 * FLR Support for E2
1110 *
1111 * bnx2x_pf_flr_clnup() is called during nic_load in the per function HW
1112 * initialization.
1113 */
1114#define FLR_WAIT_USEC 10000 /* 10 miliseconds */
89db4ad8
AE
1115#define FLR_WAIT_INTERVAL 50 /* usec */
1116#define FLR_POLL_CNT (FLR_WAIT_USEC/FLR_WAIT_INTERVAL) /* 200 */
619c5cb6
VZ
1117
1118struct pbf_pN_buf_regs {
1119 int pN;
1120 u32 init_crd;
1121 u32 crd;
1122 u32 crd_freed;
1123};
1124
1125struct pbf_pN_cmd_regs {
1126 int pN;
1127 u32 lines_occup;
1128 u32 lines_freed;
1129};
1130
1131static void bnx2x_pbf_pN_buf_flushed(struct bnx2x *bp,
1132 struct pbf_pN_buf_regs *regs,
1133 u32 poll_count)
1134{
1135 u32 init_crd, crd, crd_start, crd_freed, crd_freed_start;
1136 u32 cur_cnt = poll_count;
1137
1138 crd_freed = crd_freed_start = REG_RD(bp, regs->crd_freed);
1139 crd = crd_start = REG_RD(bp, regs->crd);
1140 init_crd = REG_RD(bp, regs->init_crd);
1141
1142 DP(BNX2X_MSG_SP, "INIT CREDIT[%d] : %x\n", regs->pN, init_crd);
1143 DP(BNX2X_MSG_SP, "CREDIT[%d] : s:%x\n", regs->pN, crd);
1144 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: s:%x\n", regs->pN, crd_freed);
1145
1146 while ((crd != init_crd) && ((u32)SUB_S32(crd_freed, crd_freed_start) <
1147 (init_crd - crd_start))) {
1148 if (cur_cnt--) {
89db4ad8 1149 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1150 crd = REG_RD(bp, regs->crd);
1151 crd_freed = REG_RD(bp, regs->crd_freed);
1152 } else {
1153 DP(BNX2X_MSG_SP, "PBF tx buffer[%d] timed out\n",
1154 regs->pN);
1155 DP(BNX2X_MSG_SP, "CREDIT[%d] : c:%x\n",
1156 regs->pN, crd);
1157 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: c:%x\n",
1158 regs->pN, crd_freed);
1159 break;
1160 }
1161 }
1162 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF tx buffer[%d]\n",
89db4ad8 1163 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1164}
1165
1166static void bnx2x_pbf_pN_cmd_flushed(struct bnx2x *bp,
1167 struct pbf_pN_cmd_regs *regs,
1168 u32 poll_count)
1169{
1170 u32 occup, to_free, freed, freed_start;
1171 u32 cur_cnt = poll_count;
1172
1173 occup = to_free = REG_RD(bp, regs->lines_occup);
1174 freed = freed_start = REG_RD(bp, regs->lines_freed);
1175
1176 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n", regs->pN, occup);
1177 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n", regs->pN, freed);
1178
1179 while (occup && ((u32)SUB_S32(freed, freed_start) < to_free)) {
1180 if (cur_cnt--) {
89db4ad8 1181 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1182 occup = REG_RD(bp, regs->lines_occup);
1183 freed = REG_RD(bp, regs->lines_freed);
1184 } else {
1185 DP(BNX2X_MSG_SP, "PBF cmd queue[%d] timed out\n",
1186 regs->pN);
1187 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n",
1188 regs->pN, occup);
1189 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n",
1190 regs->pN, freed);
1191 break;
1192 }
1193 }
1194 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF cmd queue[%d]\n",
89db4ad8 1195 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1196}
1197
1191cb83
ED
1198static u32 bnx2x_flr_clnup_reg_poll(struct bnx2x *bp, u32 reg,
1199 u32 expected, u32 poll_count)
619c5cb6
VZ
1200{
1201 u32 cur_cnt = poll_count;
1202 u32 val;
1203
1204 while ((val = REG_RD(bp, reg)) != expected && cur_cnt--)
89db4ad8 1205 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1206
1207 return val;
1208}
1209
d16132ce
AE
1210int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
1211 char *msg, u32 poll_cnt)
619c5cb6
VZ
1212{
1213 u32 val = bnx2x_flr_clnup_reg_poll(bp, reg, 0, poll_cnt);
1214 if (val != 0) {
1215 BNX2X_ERR("%s usage count=%d\n", msg, val);
1216 return 1;
1217 }
1218 return 0;
1219}
1220
d16132ce
AE
1221/* Common routines with VF FLR cleanup */
1222u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp)
619c5cb6
VZ
1223{
1224 /* adjust polling timeout */
1225 if (CHIP_REV_IS_EMUL(bp))
1226 return FLR_POLL_CNT * 2000;
1227
1228 if (CHIP_REV_IS_FPGA(bp))
1229 return FLR_POLL_CNT * 120;
1230
1231 return FLR_POLL_CNT;
1232}
1233
d16132ce 1234void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count)
619c5cb6
VZ
1235{
1236 struct pbf_pN_cmd_regs cmd_regs[] = {
1237 {0, (CHIP_IS_E3B0(bp)) ?
1238 PBF_REG_TQ_OCCUPANCY_Q0 :
1239 PBF_REG_P0_TQ_OCCUPANCY,
1240 (CHIP_IS_E3B0(bp)) ?
1241 PBF_REG_TQ_LINES_FREED_CNT_Q0 :
1242 PBF_REG_P0_TQ_LINES_FREED_CNT},
1243 {1, (CHIP_IS_E3B0(bp)) ?
1244 PBF_REG_TQ_OCCUPANCY_Q1 :
1245 PBF_REG_P1_TQ_OCCUPANCY,
1246 (CHIP_IS_E3B0(bp)) ?
1247 PBF_REG_TQ_LINES_FREED_CNT_Q1 :
1248 PBF_REG_P1_TQ_LINES_FREED_CNT},
1249 {4, (CHIP_IS_E3B0(bp)) ?
1250 PBF_REG_TQ_OCCUPANCY_LB_Q :
1251 PBF_REG_P4_TQ_OCCUPANCY,
1252 (CHIP_IS_E3B0(bp)) ?
1253 PBF_REG_TQ_LINES_FREED_CNT_LB_Q :
1254 PBF_REG_P4_TQ_LINES_FREED_CNT}
1255 };
1256
1257 struct pbf_pN_buf_regs buf_regs[] = {
1258 {0, (CHIP_IS_E3B0(bp)) ?
1259 PBF_REG_INIT_CRD_Q0 :
1260 PBF_REG_P0_INIT_CRD ,
1261 (CHIP_IS_E3B0(bp)) ?
1262 PBF_REG_CREDIT_Q0 :
1263 PBF_REG_P0_CREDIT,
1264 (CHIP_IS_E3B0(bp)) ?
1265 PBF_REG_INTERNAL_CRD_FREED_CNT_Q0 :
1266 PBF_REG_P0_INTERNAL_CRD_FREED_CNT},
1267 {1, (CHIP_IS_E3B0(bp)) ?
1268 PBF_REG_INIT_CRD_Q1 :
1269 PBF_REG_P1_INIT_CRD,
1270 (CHIP_IS_E3B0(bp)) ?
1271 PBF_REG_CREDIT_Q1 :
1272 PBF_REG_P1_CREDIT,
1273 (CHIP_IS_E3B0(bp)) ?
1274 PBF_REG_INTERNAL_CRD_FREED_CNT_Q1 :
1275 PBF_REG_P1_INTERNAL_CRD_FREED_CNT},
1276 {4, (CHIP_IS_E3B0(bp)) ?
1277 PBF_REG_INIT_CRD_LB_Q :
1278 PBF_REG_P4_INIT_CRD,
1279 (CHIP_IS_E3B0(bp)) ?
1280 PBF_REG_CREDIT_LB_Q :
1281 PBF_REG_P4_CREDIT,
1282 (CHIP_IS_E3B0(bp)) ?
1283 PBF_REG_INTERNAL_CRD_FREED_CNT_LB_Q :
1284 PBF_REG_P4_INTERNAL_CRD_FREED_CNT},
1285 };
1286
1287 int i;
1288
1289 /* Verify the command queues are flushed P0, P1, P4 */
1290 for (i = 0; i < ARRAY_SIZE(cmd_regs); i++)
1291 bnx2x_pbf_pN_cmd_flushed(bp, &cmd_regs[i], poll_count);
1292
1293
1294 /* Verify the transmission buffers are flushed P0, P1, P4 */
1295 for (i = 0; i < ARRAY_SIZE(buf_regs); i++)
1296 bnx2x_pbf_pN_buf_flushed(bp, &buf_regs[i], poll_count);
1297}
1298
1299#define OP_GEN_PARAM(param) \
1300 (((param) << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM)
1301
1302#define OP_GEN_TYPE(type) \
1303 (((type) << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE)
1304
1305#define OP_GEN_AGG_VECT(index) \
1306 (((index) << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX)
1307
1308
d16132ce 1309int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func, u32 poll_cnt)
619c5cb6 1310{
86564c3f 1311 u32 op_gen_command = 0;
619c5cb6
VZ
1312
1313 u32 comp_addr = BAR_CSTRORM_INTMEM +
1314 CSTORM_FINAL_CLEANUP_COMPLETE_OFFSET(clnup_func);
1315 int ret = 0;
1316
1317 if (REG_RD(bp, comp_addr)) {
89db4ad8 1318 BNX2X_ERR("Cleanup complete was not 0 before sending\n");
619c5cb6
VZ
1319 return 1;
1320 }
1321
86564c3f
YM
1322 op_gen_command |= OP_GEN_PARAM(XSTORM_AGG_INT_FINAL_CLEANUP_INDEX);
1323 op_gen_command |= OP_GEN_TYPE(XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE);
1324 op_gen_command |= OP_GEN_AGG_VECT(clnup_func);
1325 op_gen_command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
619c5cb6 1326
89db4ad8 1327 DP(BNX2X_MSG_SP, "sending FW Final cleanup\n");
86564c3f 1328 REG_WR(bp, XSDM_REG_OPERATION_GEN, op_gen_command);
619c5cb6
VZ
1329
1330 if (bnx2x_flr_clnup_reg_poll(bp, comp_addr, 1, poll_cnt) != 1) {
1331 BNX2X_ERR("FW final cleanup did not succeed\n");
51c1a580
MS
1332 DP(BNX2X_MSG_SP, "At timeout completion address contained %x\n",
1333 (REG_RD(bp, comp_addr)));
d16132ce
AE
1334 bnx2x_panic();
1335 return 1;
619c5cb6
VZ
1336 }
1337 /* Zero completion for nxt FLR */
1338 REG_WR(bp, comp_addr, 0);
1339
1340 return ret;
1341}
1342
b56e9670 1343u8 bnx2x_is_pcie_pending(struct pci_dev *dev)
619c5cb6 1344{
619c5cb6
VZ
1345 u16 status;
1346
2a80eebc 1347 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
619c5cb6
VZ
1348 return status & PCI_EXP_DEVSTA_TRPND;
1349}
1350
1351/* PF FLR specific routines
1352*/
1353static int bnx2x_poll_hw_usage_counters(struct bnx2x *bp, u32 poll_cnt)
1354{
1355
1356 /* wait for CFC PF usage-counter to zero (includes all the VFs) */
1357 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1358 CFC_REG_NUM_LCIDS_INSIDE_PF,
1359 "CFC PF usage counter timed out",
1360 poll_cnt))
1361 return 1;
1362
1363
1364 /* Wait for DQ PF usage-counter to zero (until DQ cleanup) */
1365 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1366 DORQ_REG_PF_USAGE_CNT,
1367 "DQ PF usage counter timed out",
1368 poll_cnt))
1369 return 1;
1370
1371 /* Wait for QM PF usage-counter to zero (until DQ cleanup) */
1372 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1373 QM_REG_PF_USG_CNT_0 + 4*BP_FUNC(bp),
1374 "QM PF usage counter timed out",
1375 poll_cnt))
1376 return 1;
1377
1378 /* Wait for Timer PF usage-counters to zero (until DQ cleanup) */
1379 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1380 TM_REG_LIN0_VNIC_UC + 4*BP_PORT(bp),
1381 "Timers VNIC usage counter timed out",
1382 poll_cnt))
1383 return 1;
1384 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1385 TM_REG_LIN0_NUM_SCANS + 4*BP_PORT(bp),
1386 "Timers NUM_SCANS usage counter timed out",
1387 poll_cnt))
1388 return 1;
1389
1390 /* Wait DMAE PF usage counter to zero */
1391 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1392 dmae_reg_go_c[INIT_DMAE_C(bp)],
1393 "DMAE dommand register timed out",
1394 poll_cnt))
1395 return 1;
1396
1397 return 0;
1398}
1399
1400static void bnx2x_hw_enable_status(struct bnx2x *bp)
1401{
1402 u32 val;
1403
1404 val = REG_RD(bp, CFC_REG_WEAK_ENABLE_PF);
1405 DP(BNX2X_MSG_SP, "CFC_REG_WEAK_ENABLE_PF is 0x%x\n", val);
1406
1407 val = REG_RD(bp, PBF_REG_DISABLE_PF);
1408 DP(BNX2X_MSG_SP, "PBF_REG_DISABLE_PF is 0x%x\n", val);
1409
1410 val = REG_RD(bp, IGU_REG_PCI_PF_MSI_EN);
1411 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSI_EN is 0x%x\n", val);
1412
1413 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_EN);
1414 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_EN is 0x%x\n", val);
1415
1416 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_FUNC_MASK);
1417 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_FUNC_MASK is 0x%x\n", val);
1418
1419 val = REG_RD(bp, PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR);
1420 DP(BNX2X_MSG_SP, "PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR is 0x%x\n", val);
1421
1422 val = REG_RD(bp, PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR);
1423 DP(BNX2X_MSG_SP, "PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR is 0x%x\n", val);
1424
1425 val = REG_RD(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
1426 DP(BNX2X_MSG_SP, "PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER is 0x%x\n",
1427 val);
1428}
1429
1430static int bnx2x_pf_flr_clnup(struct bnx2x *bp)
1431{
1432 u32 poll_cnt = bnx2x_flr_clnup_poll_count(bp);
1433
1434 DP(BNX2X_MSG_SP, "Cleanup after FLR PF[%d]\n", BP_ABS_FUNC(bp));
1435
1436 /* Re-enable PF target read access */
1437 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
1438
1439 /* Poll HW usage counters */
89db4ad8 1440 DP(BNX2X_MSG_SP, "Polling usage counters\n");
619c5cb6
VZ
1441 if (bnx2x_poll_hw_usage_counters(bp, poll_cnt))
1442 return -EBUSY;
1443
1444 /* Zero the igu 'trailing edge' and 'leading edge' */
1445
1446 /* Send the FW cleanup command */
1447 if (bnx2x_send_final_clnup(bp, (u8)BP_FUNC(bp), poll_cnt))
1448 return -EBUSY;
1449
1450 /* ATC cleanup */
1451
1452 /* Verify TX hw is flushed */
1453 bnx2x_tx_hw_flushed(bp, poll_cnt);
1454
1455 /* Wait 100ms (not adjusted according to platform) */
1456 msleep(100);
1457
1458 /* Verify no pending pci transactions */
1459 if (bnx2x_is_pcie_pending(bp->pdev))
1460 BNX2X_ERR("PCIE Transactions still pending\n");
1461
1462 /* Debug */
1463 bnx2x_hw_enable_status(bp);
1464
1465 /*
1466 * Master enable - Due to WB DMAE writes performed before this
1467 * register is re-initialized as part of the regular function init
1468 */
1469 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
1470
1471 return 0;
1472}
1473
f2e0899f 1474static void bnx2x_hc_int_enable(struct bnx2x *bp)
a2fbb9ea 1475{
34f80b04 1476 int port = BP_PORT(bp);
a2fbb9ea
ET
1477 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1478 u32 val = REG_RD(bp, addr);
69c326b3
DK
1479 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1480 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1481 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
a2fbb9ea
ET
1482
1483 if (msix) {
8badd27a
EG
1484 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1485 HC_CONFIG_0_REG_INT_LINE_EN_0);
a2fbb9ea
ET
1486 val |= (HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1487 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
69c326b3
DK
1488 if (single_msix)
1489 val |= HC_CONFIG_0_REG_SINGLE_ISR_EN_0;
8badd27a
EG
1490 } else if (msi) {
1491 val &= ~HC_CONFIG_0_REG_INT_LINE_EN_0;
1492 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1493 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1494 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea
ET
1495 } else {
1496 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
615f8fd9 1497 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
a2fbb9ea
ET
1498 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1499 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
615f8fd9 1500
a0fd065c 1501 if (!CHIP_IS_E1(bp)) {
51c1a580
MS
1502 DP(NETIF_MSG_IFUP,
1503 "write %x to HC %d (addr 0x%x)\n", val, port, addr);
615f8fd9 1504
a0fd065c 1505 REG_WR(bp, addr, val);
615f8fd9 1506
a0fd065c
DK
1507 val &= ~HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0;
1508 }
a2fbb9ea
ET
1509 }
1510
a0fd065c
DK
1511 if (CHIP_IS_E1(bp))
1512 REG_WR(bp, HC_REG_INT_MASK + port*4, 0x1FFFF);
1513
51c1a580
MS
1514 DP(NETIF_MSG_IFUP,
1515 "write %x to HC %d (addr 0x%x) mode %s\n", val, port, addr,
1516 (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
a2fbb9ea
ET
1517
1518 REG_WR(bp, addr, val);
37dbbf32
EG
1519 /*
1520 * Ensure that HC_CONFIG is written before leading/trailing edge config
1521 */
1522 mmiowb();
1523 barrier();
34f80b04 1524
f2e0899f 1525 if (!CHIP_IS_E1(bp)) {
34f80b04 1526 /* init leading/trailing edge */
fb3bff17 1527 if (IS_MF(bp)) {
3395a033 1528 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
34f80b04 1529 if (bp->port.pmf)
4acac6a5
EG
1530 /* enable nig and gpio3 attention */
1531 val |= 0x1100;
34f80b04
EG
1532 } else
1533 val = 0xffff;
1534
1535 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
1536 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
1537 }
37dbbf32
EG
1538
1539 /* Make sure that interrupts are indeed enabled from here on */
1540 mmiowb();
a2fbb9ea
ET
1541}
1542
f2e0899f
DK
1543static void bnx2x_igu_int_enable(struct bnx2x *bp)
1544{
1545 u32 val;
30a5de77
DK
1546 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1547 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1548 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
f2e0899f
DK
1549
1550 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1551
1552 if (msix) {
1553 val &= ~(IGU_PF_CONF_INT_LINE_EN |
1554 IGU_PF_CONF_SINGLE_ISR_EN);
ebe61d80 1555 val |= (IGU_PF_CONF_MSI_MSIX_EN |
f2e0899f 1556 IGU_PF_CONF_ATTN_BIT_EN);
30a5de77
DK
1557
1558 if (single_msix)
1559 val |= IGU_PF_CONF_SINGLE_ISR_EN;
f2e0899f
DK
1560 } else if (msi) {
1561 val &= ~IGU_PF_CONF_INT_LINE_EN;
ebe61d80 1562 val |= (IGU_PF_CONF_MSI_MSIX_EN |
f2e0899f
DK
1563 IGU_PF_CONF_ATTN_BIT_EN |
1564 IGU_PF_CONF_SINGLE_ISR_EN);
1565 } else {
1566 val &= ~IGU_PF_CONF_MSI_MSIX_EN;
ebe61d80 1567 val |= (IGU_PF_CONF_INT_LINE_EN |
f2e0899f
DK
1568 IGU_PF_CONF_ATTN_BIT_EN |
1569 IGU_PF_CONF_SINGLE_ISR_EN);
1570 }
1571
ebe61d80
YM
1572 /* Clean previous status - need to configure igu prior to ack*/
1573 if ((!msix) || single_msix) {
1574 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1575 bnx2x_ack_int(bp);
1576 }
1577
1578 val |= IGU_PF_CONF_FUNC_EN;
1579
51c1a580 1580 DP(NETIF_MSG_IFUP, "write 0x%x to IGU mode %s\n",
f2e0899f
DK
1581 val, (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
1582
1583 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1584
79a8557a
YM
1585 if (val & IGU_PF_CONF_INT_LINE_EN)
1586 pci_intx(bp->pdev, true);
1587
f2e0899f
DK
1588 barrier();
1589
1590 /* init leading/trailing edge */
1591 if (IS_MF(bp)) {
3395a033 1592 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
1593 if (bp->port.pmf)
1594 /* enable nig and gpio3 attention */
1595 val |= 0x1100;
1596 } else
1597 val = 0xffff;
1598
1599 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
1600 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
1601
1602 /* Make sure that interrupts are indeed enabled from here on */
1603 mmiowb();
1604}
1605
1606void bnx2x_int_enable(struct bnx2x *bp)
1607{
1608 if (bp->common.int_block == INT_BLOCK_HC)
1609 bnx2x_hc_int_enable(bp);
1610 else
1611 bnx2x_igu_int_enable(bp);
1612}
1613
9f6c9258 1614void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw)
a2fbb9ea 1615{
a2fbb9ea 1616 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8badd27a 1617 int i, offset;
a2fbb9ea 1618
f8ef6e44
YG
1619 if (disable_hw)
1620 /* prevent the HW from sending interrupts */
1621 bnx2x_int_disable(bp);
a2fbb9ea
ET
1622
1623 /* make sure all ISRs are done */
1624 if (msix) {
8badd27a
EG
1625 synchronize_irq(bp->msix_table[0].vector);
1626 offset = 1;
55c11941
MS
1627 if (CNIC_SUPPORT(bp))
1628 offset++;
ec6ba945 1629 for_each_eth_queue(bp, i)
754a2f52 1630 synchronize_irq(bp->msix_table[offset++].vector);
a2fbb9ea
ET
1631 } else
1632 synchronize_irq(bp->pdev->irq);
1633
1634 /* make sure sp_task is not running */
1cf167f2 1635 cancel_delayed_work(&bp->sp_task);
3deb8167 1636 cancel_delayed_work(&bp->period_task);
1cf167f2 1637 flush_workqueue(bnx2x_wq);
a2fbb9ea
ET
1638}
1639
34f80b04 1640/* fast path */
a2fbb9ea
ET
1641
1642/*
34f80b04 1643 * General service functions
a2fbb9ea
ET
1644 */
1645
72fd0718
VZ
1646/* Return true if succeeded to acquire the lock */
1647static bool bnx2x_trylock_hw_lock(struct bnx2x *bp, u32 resource)
1648{
1649 u32 lock_status;
1650 u32 resource_bit = (1 << resource);
1651 int func = BP_FUNC(bp);
1652 u32 hw_lock_control_reg;
1653
51c1a580
MS
1654 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1655 "Trying to take a lock on resource %d\n", resource);
72fd0718
VZ
1656
1657 /* Validating that the resource is within range */
1658 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1659 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
72fd0718
VZ
1660 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1661 resource, HW_LOCK_MAX_RESOURCE_VALUE);
0fdf4d09 1662 return false;
72fd0718
VZ
1663 }
1664
1665 if (func <= 5)
1666 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1667 else
1668 hw_lock_control_reg =
1669 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1670
1671 /* Try to acquire the lock */
1672 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1673 lock_status = REG_RD(bp, hw_lock_control_reg);
1674 if (lock_status & resource_bit)
1675 return true;
1676
51c1a580
MS
1677 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1678 "Failed to get a lock on resource %d\n", resource);
72fd0718
VZ
1679 return false;
1680}
1681
c9ee9206
VZ
1682/**
1683 * bnx2x_get_leader_lock_resource - get the recovery leader resource id
1684 *
1685 * @bp: driver handle
1686 *
1687 * Returns the recovery leader resource id according to the engine this function
1688 * belongs to. Currently only only 2 engines is supported.
1689 */
1191cb83 1690static int bnx2x_get_leader_lock_resource(struct bnx2x *bp)
c9ee9206
VZ
1691{
1692 if (BP_PATH(bp))
1693 return HW_LOCK_RESOURCE_RECOVERY_LEADER_1;
1694 else
1695 return HW_LOCK_RESOURCE_RECOVERY_LEADER_0;
1696}
1697
1698/**
2de67439 1699 * bnx2x_trylock_leader_lock- try to acquire a leader lock.
c9ee9206
VZ
1700 *
1701 * @bp: driver handle
1702 *
2de67439 1703 * Tries to acquire a leader lock for current engine.
c9ee9206 1704 */
1191cb83 1705static bool bnx2x_trylock_leader_lock(struct bnx2x *bp)
c9ee9206
VZ
1706{
1707 return bnx2x_trylock_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1708}
1709
619c5cb6 1710static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err);
55c11941 1711
fd1fc79d
AE
1712/* schedule the sp task and mark that interrupt occurred (runs from ISR) */
1713static int bnx2x_schedule_sp_task(struct bnx2x *bp)
1714{
1715 /* Set the interrupt occurred bit for the sp-task to recognize it
1716 * must ack the interrupt and transition according to the IGU
1717 * state machine.
1718 */
1719 atomic_set(&bp->interrupt_occurred, 1);
1720
1721 /* The sp_task must execute only after this bit
1722 * is set, otherwise we will get out of sync and miss all
1723 * further interrupts. Hence, the barrier.
1724 */
1725 smp_wmb();
1726
1727 /* schedule sp_task to workqueue */
1728 return queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
1729}
3196a88a 1730
619c5cb6 1731void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe)
a2fbb9ea
ET
1732{
1733 struct bnx2x *bp = fp->bp;
1734 int cid = SW_CID(rr_cqe->ramrod_cqe.conn_and_cmd_data);
1735 int command = CQE_CMD(rr_cqe->ramrod_cqe.conn_and_cmd_data);
619c5cb6 1736 enum bnx2x_queue_cmd drv_cmd = BNX2X_Q_CMD_MAX;
15192a8c 1737 struct bnx2x_queue_sp_obj *q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a2fbb9ea 1738
34f80b04 1739 DP(BNX2X_MSG_SP,
a2fbb9ea 1740 "fp %d cid %d got ramrod #%d state is %x type is %d\n",
0626b899 1741 fp->index, cid, command, bp->state,
34f80b04 1742 rr_cqe->ramrod_cqe.ramrod_type);
a2fbb9ea 1743
fd1fc79d
AE
1744 /* If cid is within VF range, replace the slowpath object with the
1745 * one corresponding to this VF
1746 */
1747 if (cid >= BNX2X_FIRST_VF_CID &&
1748 cid < BNX2X_FIRST_VF_CID + BNX2X_VF_CIDS)
1749 bnx2x_iov_set_queue_sp_obj(bp, cid, &q_obj);
1750
619c5cb6
VZ
1751 switch (command) {
1752 case (RAMROD_CMD_ID_ETH_CLIENT_UPDATE):
d6cae238 1753 DP(BNX2X_MSG_SP, "got UPDATE ramrod. CID %d\n", cid);
619c5cb6
VZ
1754 drv_cmd = BNX2X_Q_CMD_UPDATE;
1755 break;
d6cae238 1756
619c5cb6 1757 case (RAMROD_CMD_ID_ETH_CLIENT_SETUP):
d6cae238 1758 DP(BNX2X_MSG_SP, "got MULTI[%d] setup ramrod\n", cid);
619c5cb6 1759 drv_cmd = BNX2X_Q_CMD_SETUP;
a2fbb9ea
ET
1760 break;
1761
6383c0b3 1762 case (RAMROD_CMD_ID_ETH_TX_QUEUE_SETUP):
51c1a580 1763 DP(BNX2X_MSG_SP, "got MULTI[%d] tx-only setup ramrod\n", cid);
6383c0b3
AE
1764 drv_cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
1765 break;
1766
619c5cb6 1767 case (RAMROD_CMD_ID_ETH_HALT):
d6cae238 1768 DP(BNX2X_MSG_SP, "got MULTI[%d] halt ramrod\n", cid);
619c5cb6 1769 drv_cmd = BNX2X_Q_CMD_HALT;
a2fbb9ea
ET
1770 break;
1771
619c5cb6 1772 case (RAMROD_CMD_ID_ETH_TERMINATE):
d6cae238 1773 DP(BNX2X_MSG_SP, "got MULTI[%d] teminate ramrod\n", cid);
619c5cb6 1774 drv_cmd = BNX2X_Q_CMD_TERMINATE;
a2fbb9ea
ET
1775 break;
1776
619c5cb6 1777 case (RAMROD_CMD_ID_ETH_EMPTY):
d6cae238 1778 DP(BNX2X_MSG_SP, "got MULTI[%d] empty ramrod\n", cid);
619c5cb6 1779 drv_cmd = BNX2X_Q_CMD_EMPTY;
993ac7b5 1780 break;
619c5cb6
VZ
1781
1782 default:
1783 BNX2X_ERR("unexpected MC reply (%d) on fp[%d]\n",
1784 command, fp->index);
1785 return;
523224a3 1786 }
3196a88a 1787
619c5cb6
VZ
1788 if ((drv_cmd != BNX2X_Q_CMD_MAX) &&
1789 q_obj->complete_cmd(bp, q_obj, drv_cmd))
1790 /* q_obj->complete_cmd() failure means that this was
1791 * an unexpected completion.
1792 *
1793 * In this case we don't want to increase the bp->spq_left
1794 * because apparently we haven't sent this command the first
1795 * place.
1796 */
1797#ifdef BNX2X_STOP_ON_ERROR
1798 bnx2x_panic();
1799#else
1800 return;
1801#endif
fd1fc79d
AE
1802 /* SRIOV: reschedule any 'in_progress' operations */
1803 bnx2x_iov_sp_event(bp, cid, true);
619c5cb6 1804
8fe23fbd 1805 smp_mb__before_atomic_inc();
6e30dd4e 1806 atomic_inc(&bp->cq_spq_left);
619c5cb6
VZ
1807 /* push the change in bp->spq_left and towards the memory */
1808 smp_mb__after_atomic_inc();
49d66772 1809
d6cae238
VZ
1810 DP(BNX2X_MSG_SP, "bp->cq_spq_left %x\n", atomic_read(&bp->cq_spq_left));
1811
a3348722
BW
1812 if ((drv_cmd == BNX2X_Q_CMD_UPDATE) && (IS_FCOE_FP(fp)) &&
1813 (!!test_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state))) {
1814 /* if Q update ramrod is completed for last Q in AFEX vif set
1815 * flow, then ACK MCP at the end
1816 *
1817 * mark pending ACK to MCP bit.
1818 * prevent case that both bits are cleared.
1819 * At the end of load/unload driver checks that
2de67439 1820 * sp_state is cleared, and this order prevents
a3348722
BW
1821 * races
1822 */
1823 smp_mb__before_clear_bit();
1824 set_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK, &bp->sp_state);
1825 wmb();
1826 clear_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
1827 smp_mb__after_clear_bit();
1828
fd1fc79d
AE
1829 /* schedule the sp task as mcp ack is required */
1830 bnx2x_schedule_sp_task(bp);
a3348722
BW
1831 }
1832
523224a3 1833 return;
a2fbb9ea
ET
1834}
1835
9f6c9258 1836irqreturn_t bnx2x_interrupt(int irq, void *dev_instance)
a2fbb9ea 1837{
555f6c78 1838 struct bnx2x *bp = netdev_priv(dev_instance);
a2fbb9ea 1839 u16 status = bnx2x_ack_int(bp);
34f80b04 1840 u16 mask;
ca00392c 1841 int i;
6383c0b3 1842 u8 cos;
a2fbb9ea 1843
34f80b04 1844 /* Return here if interrupt is shared and it's not for us */
a2fbb9ea
ET
1845 if (unlikely(status == 0)) {
1846 DP(NETIF_MSG_INTR, "not our interrupt!\n");
1847 return IRQ_NONE;
1848 }
f5372251 1849 DP(NETIF_MSG_INTR, "got an interrupt status 0x%x\n", status);
a2fbb9ea 1850
3196a88a
EG
1851#ifdef BNX2X_STOP_ON_ERROR
1852 if (unlikely(bp->panic))
1853 return IRQ_HANDLED;
1854#endif
1855
ec6ba945 1856 for_each_eth_queue(bp, i) {
ca00392c 1857 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea 1858
55c11941 1859 mask = 0x2 << (fp->index + CNIC_SUPPORT(bp));
ca00392c 1860 if (status & mask) {
619c5cb6 1861 /* Handle Rx or Tx according to SB id */
54b9ddaa 1862 prefetch(fp->rx_cons_sb);
6383c0b3 1863 for_each_cos_in_tx_queue(fp, cos)
65565884 1864 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
523224a3 1865 prefetch(&fp->sb_running_index[SM_RX_ID]);
54b9ddaa 1866 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
ca00392c
EG
1867 status &= ~mask;
1868 }
a2fbb9ea
ET
1869 }
1870
55c11941
MS
1871 if (CNIC_SUPPORT(bp)) {
1872 mask = 0x2;
1873 if (status & (mask | 0x1)) {
1874 struct cnic_ops *c_ops = NULL;
993ac7b5 1875
ad9b4359
MC
1876 rcu_read_lock();
1877 c_ops = rcu_dereference(bp->cnic_ops);
1878 if (c_ops && (bp->cnic_eth_dev.drv_state &
1879 CNIC_DRV_STATE_HANDLES_IRQ))
1880 c_ops->cnic_handler(bp->cnic_data, NULL);
1881 rcu_read_unlock();
993ac7b5 1882
55c11941
MS
1883 status &= ~mask;
1884 }
993ac7b5 1885 }
a2fbb9ea 1886
34f80b04 1887 if (unlikely(status & 0x1)) {
fd1fc79d
AE
1888
1889 /* schedule sp task to perform default status block work, ack
1890 * attentions and enable interrupts.
1891 */
1892 bnx2x_schedule_sp_task(bp);
a2fbb9ea
ET
1893
1894 status &= ~0x1;
1895 if (!status)
1896 return IRQ_HANDLED;
1897 }
1898
cdaa7cb8
VZ
1899 if (unlikely(status))
1900 DP(NETIF_MSG_INTR, "got an unknown interrupt! (status 0x%x)\n",
34f80b04 1901 status);
a2fbb9ea 1902
c18487ee 1903 return IRQ_HANDLED;
a2fbb9ea
ET
1904}
1905
c18487ee
YR
1906/* Link */
1907
1908/*
1909 * General service functions
1910 */
a2fbb9ea 1911
9f6c9258 1912int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1913{
1914 u32 lock_status;
1915 u32 resource_bit = (1 << resource);
4a37fb66
YG
1916 int func = BP_FUNC(bp);
1917 u32 hw_lock_control_reg;
c18487ee 1918 int cnt;
a2fbb9ea 1919
c18487ee
YR
1920 /* Validating that the resource is within range */
1921 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1922 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1923 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1924 return -EINVAL;
1925 }
a2fbb9ea 1926
4a37fb66
YG
1927 if (func <= 5) {
1928 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1929 } else {
1930 hw_lock_control_reg =
1931 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1932 }
1933
c18487ee 1934 /* Validating that the resource is not already taken */
4a37fb66 1935 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1936 if (lock_status & resource_bit) {
51c1a580 1937 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x\n",
c18487ee
YR
1938 lock_status, resource_bit);
1939 return -EEXIST;
1940 }
a2fbb9ea 1941
46230476
EG
1942 /* Try for 5 second every 5ms */
1943 for (cnt = 0; cnt < 1000; cnt++) {
c18487ee 1944 /* Try to acquire the lock */
4a37fb66
YG
1945 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1946 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee
YR
1947 if (lock_status & resource_bit)
1948 return 0;
a2fbb9ea 1949
c18487ee 1950 msleep(5);
a2fbb9ea 1951 }
51c1a580 1952 BNX2X_ERR("Timeout\n");
c18487ee
YR
1953 return -EAGAIN;
1954}
a2fbb9ea 1955
c9ee9206
VZ
1956int bnx2x_release_leader_lock(struct bnx2x *bp)
1957{
1958 return bnx2x_release_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1959}
1960
9f6c9258 1961int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1962{
1963 u32 lock_status;
1964 u32 resource_bit = (1 << resource);
4a37fb66
YG
1965 int func = BP_FUNC(bp);
1966 u32 hw_lock_control_reg;
a2fbb9ea 1967
c18487ee
YR
1968 /* Validating that the resource is within range */
1969 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1970 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1971 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1972 return -EINVAL;
1973 }
1974
4a37fb66
YG
1975 if (func <= 5) {
1976 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1977 } else {
1978 hw_lock_control_reg =
1979 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1980 }
1981
c18487ee 1982 /* Validating that the resource is currently taken */
4a37fb66 1983 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 1984 if (!(lock_status & resource_bit)) {
51c1a580 1985 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x. unlock was called but lock wasn't taken!\n",
c18487ee
YR
1986 lock_status, resource_bit);
1987 return -EFAULT;
a2fbb9ea
ET
1988 }
1989
9f6c9258
DK
1990 REG_WR(bp, hw_lock_control_reg, resource_bit);
1991 return 0;
c18487ee 1992}
a2fbb9ea 1993
9f6c9258 1994
4acac6a5
EG
1995int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port)
1996{
1997 /* The GPIO should be swapped if swap register is set and active */
1998 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
1999 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
2000 int gpio_shift = gpio_num +
2001 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2002 u32 gpio_mask = (1 << gpio_shift);
2003 u32 gpio_reg;
2004 int value;
2005
2006 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2007 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2008 return -EINVAL;
2009 }
2010
2011 /* read GPIO value */
2012 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
2013
2014 /* get the requested pin value */
2015 if ((gpio_reg & gpio_mask) == gpio_mask)
2016 value = 1;
2017 else
2018 value = 0;
2019
2020 DP(NETIF_MSG_LINK, "pin %d value 0x%x\n", gpio_num, value);
2021
2022 return value;
2023}
2024
17de50b7 2025int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
c18487ee
YR
2026{
2027 /* The GPIO should be swapped if swap register is set and active */
2028 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
17de50b7 2029 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
c18487ee
YR
2030 int gpio_shift = gpio_num +
2031 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2032 u32 gpio_mask = (1 << gpio_shift);
2033 u32 gpio_reg;
a2fbb9ea 2034
c18487ee
YR
2035 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2036 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2037 return -EINVAL;
2038 }
a2fbb9ea 2039
4a37fb66 2040 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
c18487ee
YR
2041 /* read GPIO and mask except the float bits */
2042 gpio_reg = (REG_RD(bp, MISC_REG_GPIO) & MISC_REGISTERS_GPIO_FLOAT);
a2fbb9ea 2043
c18487ee
YR
2044 switch (mode) {
2045 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
51c1a580
MS
2046 DP(NETIF_MSG_LINK,
2047 "Set GPIO %d (shift %d) -> output low\n",
c18487ee
YR
2048 gpio_num, gpio_shift);
2049 /* clear FLOAT and set CLR */
2050 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2051 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_CLR_POS);
2052 break;
a2fbb9ea 2053
c18487ee 2054 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
51c1a580
MS
2055 DP(NETIF_MSG_LINK,
2056 "Set GPIO %d (shift %d) -> output high\n",
c18487ee
YR
2057 gpio_num, gpio_shift);
2058 /* clear FLOAT and set SET */
2059 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2060 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_SET_POS);
2061 break;
a2fbb9ea 2062
17de50b7 2063 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
51c1a580
MS
2064 DP(NETIF_MSG_LINK,
2065 "Set GPIO %d (shift %d) -> input\n",
c18487ee
YR
2066 gpio_num, gpio_shift);
2067 /* set FLOAT */
2068 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2069 break;
a2fbb9ea 2070
c18487ee
YR
2071 default:
2072 break;
a2fbb9ea
ET
2073 }
2074
c18487ee 2075 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
4a37fb66 2076 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
f1410647 2077
c18487ee 2078 return 0;
a2fbb9ea
ET
2079}
2080
0d40f0d4
YR
2081int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode)
2082{
2083 u32 gpio_reg = 0;
2084 int rc = 0;
2085
2086 /* Any port swapping should be handled by caller. */
2087
2088 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2089 /* read GPIO and mask except the float bits */
2090 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
2091 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_FLOAT_POS);
2092 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_CLR_POS);
2093 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_SET_POS);
2094
2095 switch (mode) {
2096 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
2097 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output low\n", pins);
2098 /* set CLR */
2099 gpio_reg |= (pins << MISC_REGISTERS_GPIO_CLR_POS);
2100 break;
2101
2102 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
2103 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output high\n", pins);
2104 /* set SET */
2105 gpio_reg |= (pins << MISC_REGISTERS_GPIO_SET_POS);
2106 break;
2107
2108 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
2109 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> input\n", pins);
2110 /* set FLOAT */
2111 gpio_reg |= (pins << MISC_REGISTERS_GPIO_FLOAT_POS);
2112 break;
2113
2114 default:
2115 BNX2X_ERR("Invalid GPIO mode assignment %d\n", mode);
2116 rc = -EINVAL;
2117 break;
2118 }
2119
2120 if (rc == 0)
2121 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
2122
2123 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2124
2125 return rc;
2126}
2127
4acac6a5
EG
2128int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
2129{
2130 /* The GPIO should be swapped if swap register is set and active */
2131 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
2132 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
2133 int gpio_shift = gpio_num +
2134 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2135 u32 gpio_mask = (1 << gpio_shift);
2136 u32 gpio_reg;
2137
2138 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2139 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2140 return -EINVAL;
2141 }
2142
2143 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2144 /* read GPIO int */
2145 gpio_reg = REG_RD(bp, MISC_REG_GPIO_INT);
2146
2147 switch (mode) {
2148 case MISC_REGISTERS_GPIO_INT_OUTPUT_CLR:
51c1a580
MS
2149 DP(NETIF_MSG_LINK,
2150 "Clear GPIO INT %d (shift %d) -> output low\n",
2151 gpio_num, gpio_shift);
4acac6a5
EG
2152 /* clear SET and set CLR */
2153 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2154 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2155 break;
2156
2157 case MISC_REGISTERS_GPIO_INT_OUTPUT_SET:
51c1a580
MS
2158 DP(NETIF_MSG_LINK,
2159 "Set GPIO INT %d (shift %d) -> output high\n",
2160 gpio_num, gpio_shift);
4acac6a5
EG
2161 /* clear CLR and set SET */
2162 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2163 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2164 break;
2165
2166 default:
2167 break;
2168 }
2169
2170 REG_WR(bp, MISC_REG_GPIO_INT, gpio_reg);
2171 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2172
2173 return 0;
2174}
2175
d6d99a3f 2176static int bnx2x_set_spio(struct bnx2x *bp, int spio, u32 mode)
a2fbb9ea 2177{
c18487ee 2178 u32 spio_reg;
a2fbb9ea 2179
d6d99a3f
YM
2180 /* Only 2 SPIOs are configurable */
2181 if ((spio != MISC_SPIO_SPIO4) && (spio != MISC_SPIO_SPIO5)) {
2182 BNX2X_ERR("Invalid SPIO 0x%x\n", spio);
c18487ee 2183 return -EINVAL;
a2fbb9ea
ET
2184 }
2185
4a37fb66 2186 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2187 /* read SPIO and mask except the float bits */
d6d99a3f 2188 spio_reg = (REG_RD(bp, MISC_REG_SPIO) & MISC_SPIO_FLOAT);
a2fbb9ea 2189
c18487ee 2190 switch (mode) {
d6d99a3f
YM
2191 case MISC_SPIO_OUTPUT_LOW:
2192 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output low\n", spio);
c18487ee 2193 /* clear FLOAT and set CLR */
d6d99a3f
YM
2194 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2195 spio_reg |= (spio << MISC_SPIO_CLR_POS);
c18487ee 2196 break;
a2fbb9ea 2197
d6d99a3f
YM
2198 case MISC_SPIO_OUTPUT_HIGH:
2199 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output high\n", spio);
c18487ee 2200 /* clear FLOAT and set SET */
d6d99a3f
YM
2201 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2202 spio_reg |= (spio << MISC_SPIO_SET_POS);
c18487ee 2203 break;
a2fbb9ea 2204
d6d99a3f
YM
2205 case MISC_SPIO_INPUT_HI_Z:
2206 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> input\n", spio);
c18487ee 2207 /* set FLOAT */
d6d99a3f 2208 spio_reg |= (spio << MISC_SPIO_FLOAT_POS);
c18487ee 2209 break;
a2fbb9ea 2210
c18487ee
YR
2211 default:
2212 break;
a2fbb9ea
ET
2213 }
2214
c18487ee 2215 REG_WR(bp, MISC_REG_SPIO, spio_reg);
4a37fb66 2216 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2217
a2fbb9ea
ET
2218 return 0;
2219}
2220
9f6c9258 2221void bnx2x_calc_fc_adv(struct bnx2x *bp)
a2fbb9ea 2222{
a22f0788 2223 u8 cfg_idx = bnx2x_get_link_cfg_idx(bp);
ad33ea3a
EG
2224 switch (bp->link_vars.ieee_fc &
2225 MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK) {
c18487ee 2226 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_NONE:
a22f0788 2227 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2228 ADVERTISED_Pause);
c18487ee 2229 break;
356e2385 2230
c18487ee 2231 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH:
a22f0788 2232 bp->port.advertising[cfg_idx] |= (ADVERTISED_Asym_Pause |
f85582f8 2233 ADVERTISED_Pause);
c18487ee 2234 break;
356e2385 2235
c18487ee 2236 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC:
a22f0788 2237 bp->port.advertising[cfg_idx] |= ADVERTISED_Asym_Pause;
c18487ee 2238 break;
356e2385 2239
c18487ee 2240 default:
a22f0788 2241 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
f85582f8 2242 ADVERTISED_Pause);
c18487ee
YR
2243 break;
2244 }
2245}
f1410647 2246
cd1dfce2 2247static void bnx2x_set_requested_fc(struct bnx2x *bp)
c18487ee 2248{
cd1dfce2
YM
2249 /* Initialize link parameters structure variables
2250 * It is recommended to turn off RX FC for jumbo frames
2251 * for better performance
2252 */
2253 if (CHIP_IS_E1x(bp) && (bp->dev->mtu > 5000))
2254 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_TX;
2255 else
2256 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_BOTH;
2257}
a2fbb9ea 2258
cd1dfce2
YM
2259int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode)
2260{
2261 int rc, cfx_idx = bnx2x_get_link_cfg_idx(bp);
2262 u16 req_line_speed = bp->link_params.req_line_speed[cfx_idx];
2263
2264 if (!BP_NOMCP(bp)) {
2265 bnx2x_set_requested_fc(bp);
4a37fb66 2266 bnx2x_acquire_phy_lock(bp);
b5bf9068 2267
a22f0788 2268 if (load_mode == LOAD_DIAG) {
1cb0c788
YR
2269 struct link_params *lp = &bp->link_params;
2270 lp->loopback_mode = LOOPBACK_XGXS;
2271 /* do PHY loopback at 10G speed, if possible */
2272 if (lp->req_line_speed[cfx_idx] < SPEED_10000) {
2273 if (lp->speed_cap_mask[cfx_idx] &
2274 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G)
2275 lp->req_line_speed[cfx_idx] =
2276 SPEED_10000;
2277 else
2278 lp->req_line_speed[cfx_idx] =
2279 SPEED_1000;
2280 }
a22f0788 2281 }
b5bf9068 2282
8970b2e4
MS
2283 if (load_mode == LOAD_LOOPBACK_EXT) {
2284 struct link_params *lp = &bp->link_params;
2285 lp->loopback_mode = LOOPBACK_EXT;
2286 }
2287
19680c48 2288 rc = bnx2x_phy_init(&bp->link_params, &bp->link_vars);
b5bf9068 2289
4a37fb66 2290 bnx2x_release_phy_lock(bp);
a2fbb9ea 2291
3c96c68b
EG
2292 bnx2x_calc_fc_adv(bp);
2293
cd1dfce2 2294 if (bp->link_vars.link_up) {
b5bf9068 2295 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
19680c48 2296 bnx2x_link_report(bp);
cd1dfce2
YM
2297 }
2298 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
a22f0788 2299 bp->link_params.req_line_speed[cfx_idx] = req_line_speed;
19680c48
EG
2300 return rc;
2301 }
f5372251 2302 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
19680c48 2303 return -EINVAL;
a2fbb9ea
ET
2304}
2305
9f6c9258 2306void bnx2x_link_set(struct bnx2x *bp)
a2fbb9ea 2307{
19680c48 2308 if (!BP_NOMCP(bp)) {
4a37fb66 2309 bnx2x_acquire_phy_lock(bp);
19680c48 2310 bnx2x_phy_init(&bp->link_params, &bp->link_vars);
4a37fb66 2311 bnx2x_release_phy_lock(bp);
a2fbb9ea 2312
19680c48
EG
2313 bnx2x_calc_fc_adv(bp);
2314 } else
f5372251 2315 BNX2X_ERR("Bootcode is missing - can not set link\n");
c18487ee 2316}
a2fbb9ea 2317
c18487ee
YR
2318static void bnx2x__link_reset(struct bnx2x *bp)
2319{
19680c48 2320 if (!BP_NOMCP(bp)) {
4a37fb66 2321 bnx2x_acquire_phy_lock(bp);
5d07d868 2322 bnx2x_lfa_reset(&bp->link_params, &bp->link_vars);
4a37fb66 2323 bnx2x_release_phy_lock(bp);
19680c48 2324 } else
f5372251 2325 BNX2X_ERR("Bootcode is missing - can not reset link\n");
c18487ee 2326}
a2fbb9ea 2327
5d07d868
YM
2328void bnx2x_force_link_reset(struct bnx2x *bp)
2329{
2330 bnx2x_acquire_phy_lock(bp);
2331 bnx2x_link_reset(&bp->link_params, &bp->link_vars, 1);
2332 bnx2x_release_phy_lock(bp);
2333}
2334
a22f0788 2335u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes)
c18487ee 2336{
2145a920 2337 u8 rc = 0;
a2fbb9ea 2338
2145a920
VZ
2339 if (!BP_NOMCP(bp)) {
2340 bnx2x_acquire_phy_lock(bp);
a22f0788
YR
2341 rc = bnx2x_test_link(&bp->link_params, &bp->link_vars,
2342 is_serdes);
2145a920
VZ
2343 bnx2x_release_phy_lock(bp);
2344 } else
2345 BNX2X_ERR("Bootcode is missing - can not test link\n");
a2fbb9ea 2346
c18487ee
YR
2347 return rc;
2348}
a2fbb9ea 2349
34f80b04 2350
2691d51d
EG
2351/* Calculates the sum of vn_min_rates.
2352 It's needed for further normalizing of the min_rates.
2353 Returns:
2354 sum of vn_min_rates.
2355 or
2356 0 - if all the min_rates are 0.
2357 In the later case fainess algorithm should be deactivated.
2358 If not all min_rates are zero then those that are zeroes will be set to 1.
2359 */
b475d78f
YM
2360static void bnx2x_calc_vn_min(struct bnx2x *bp,
2361 struct cmng_init_input *input)
2691d51d
EG
2362{
2363 int all_zero = 1;
2691d51d
EG
2364 int vn;
2365
3395a033 2366 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
f2e0899f 2367 u32 vn_cfg = bp->mf_config[vn];
2691d51d
EG
2368 u32 vn_min_rate = ((vn_cfg & FUNC_MF_CFG_MIN_BW_MASK) >>
2369 FUNC_MF_CFG_MIN_BW_SHIFT) * 100;
2370
2371 /* Skip hidden vns */
2372 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
b475d78f 2373 vn_min_rate = 0;
2691d51d 2374 /* If min rate is zero - set it to 1 */
b475d78f 2375 else if (!vn_min_rate)
2691d51d
EG
2376 vn_min_rate = DEF_MIN_RATE;
2377 else
2378 all_zero = 0;
2379
b475d78f 2380 input->vnic_min_rate[vn] = vn_min_rate;
2691d51d
EG
2381 }
2382
30ae438b
DK
2383 /* if ETS or all min rates are zeros - disable fairness */
2384 if (BNX2X_IS_ETS_ENABLED(bp)) {
b475d78f 2385 input->flags.cmng_enables &=
30ae438b
DK
2386 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2387 DP(NETIF_MSG_IFUP, "Fairness will be disabled due to ETS\n");
2388 } else if (all_zero) {
b475d78f 2389 input->flags.cmng_enables &=
b015e3d1 2390 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
b475d78f
YM
2391 DP(NETIF_MSG_IFUP,
2392 "All MIN values are zeroes fairness will be disabled\n");
b015e3d1 2393 } else
b475d78f 2394 input->flags.cmng_enables |=
b015e3d1 2395 CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2691d51d
EG
2396}
2397
b475d78f
YM
2398static void bnx2x_calc_vn_max(struct bnx2x *bp, int vn,
2399 struct cmng_init_input *input)
34f80b04 2400{
b475d78f 2401 u16 vn_max_rate;
f2e0899f 2402 u32 vn_cfg = bp->mf_config[vn];
34f80b04 2403
b475d78f 2404 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
34f80b04 2405 vn_max_rate = 0;
b475d78f 2406 else {
faa6fcbb
DK
2407 u32 maxCfg = bnx2x_extract_max_cfg(bp, vn_cfg);
2408
b475d78f 2409 if (IS_MF_SI(bp)) {
faa6fcbb
DK
2410 /* maxCfg in percents of linkspeed */
2411 vn_max_rate = (bp->link_vars.line_speed * maxCfg) / 100;
b475d78f 2412 } else /* SD modes */
faa6fcbb
DK
2413 /* maxCfg is absolute in 100Mb units */
2414 vn_max_rate = maxCfg * 100;
34f80b04 2415 }
f85582f8 2416
b475d78f 2417 DP(NETIF_MSG_IFUP, "vn %d: vn_max_rate %d\n", vn, vn_max_rate);
34f80b04 2418
b475d78f 2419 input->vnic_max_rate[vn] = vn_max_rate;
34f80b04 2420}
f85582f8 2421
b475d78f 2422
523224a3
DK
2423static int bnx2x_get_cmng_fns_mode(struct bnx2x *bp)
2424{
2425 if (CHIP_REV_IS_SLOW(bp))
2426 return CMNG_FNS_NONE;
fb3bff17 2427 if (IS_MF(bp))
523224a3
DK
2428 return CMNG_FNS_MINMAX;
2429
2430 return CMNG_FNS_NONE;
2431}
2432
2ae17f66 2433void bnx2x_read_mf_cfg(struct bnx2x *bp)
523224a3 2434{
0793f83f 2435 int vn, n = (CHIP_MODE_IS_4_PORT(bp) ? 2 : 1);
523224a3
DK
2436
2437 if (BP_NOMCP(bp))
2438 return; /* what should be the default bvalue in this case */
2439
0793f83f
DK
2440 /* For 2 port configuration the absolute function number formula
2441 * is:
2442 * abs_func = 2 * vn + BP_PORT + BP_PATH
2443 *
2444 * and there are 4 functions per port
2445 *
2446 * For 4 port configuration it is
2447 * abs_func = 4 * vn + 2 * BP_PORT + BP_PATH
2448 *
2449 * and there are 2 functions per port
2450 */
3395a033 2451 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
0793f83f
DK
2452 int /*abs*/func = n * (2 * vn + BP_PORT(bp)) + BP_PATH(bp);
2453
2454 if (func >= E1H_FUNC_MAX)
2455 break;
2456
f2e0899f 2457 bp->mf_config[vn] =
523224a3
DK
2458 MF_CFG_RD(bp, func_mf_config[func].config);
2459 }
a3348722
BW
2460 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
2461 DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n");
2462 bp->flags |= MF_FUNC_DIS;
2463 } else {
2464 DP(NETIF_MSG_IFUP, "mf_cfg function enabled\n");
2465 bp->flags &= ~MF_FUNC_DIS;
2466 }
523224a3
DK
2467}
2468
2469static void bnx2x_cmng_fns_init(struct bnx2x *bp, u8 read_cfg, u8 cmng_type)
2470{
b475d78f
YM
2471 struct cmng_init_input input;
2472 memset(&input, 0, sizeof(struct cmng_init_input));
2473
2474 input.port_rate = bp->link_vars.line_speed;
523224a3
DK
2475
2476 if (cmng_type == CMNG_FNS_MINMAX) {
2477 int vn;
2478
523224a3
DK
2479 /* read mf conf from shmem */
2480 if (read_cfg)
2481 bnx2x_read_mf_cfg(bp);
2482
523224a3 2483 /* vn_weight_sum and enable fairness if not 0 */
b475d78f 2484 bnx2x_calc_vn_min(bp, &input);
523224a3
DK
2485
2486 /* calculate and set min-max rate for each vn */
c4154f25 2487 if (bp->port.pmf)
3395a033 2488 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++)
b475d78f 2489 bnx2x_calc_vn_max(bp, vn, &input);
523224a3
DK
2490
2491 /* always enable rate shaping and fairness */
b475d78f 2492 input.flags.cmng_enables |=
523224a3 2493 CMNG_FLAGS_PER_PORT_RATE_SHAPING_VN;
b475d78f
YM
2494
2495 bnx2x_init_cmng(&input, &bp->cmng);
523224a3
DK
2496 return;
2497 }
2498
2499 /* rate shaping and fairness are disabled */
2500 DP(NETIF_MSG_IFUP,
2501 "rate shaping and fairness are disabled\n");
2502}
34f80b04 2503
1191cb83
ED
2504static void storm_memset_cmng(struct bnx2x *bp,
2505 struct cmng_init *cmng,
2506 u8 port)
2507{
2508 int vn;
2509 size_t size = sizeof(struct cmng_struct_per_port);
2510
2511 u32 addr = BAR_XSTRORM_INTMEM +
2512 XSTORM_CMNG_PER_PORT_VARS_OFFSET(port);
2513
2514 __storm_memset_struct(bp, addr, size, (u32 *)&cmng->port);
2515
2516 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
2517 int func = func_by_vn(bp, vn);
2518
2519 addr = BAR_XSTRORM_INTMEM +
2520 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(func);
2521 size = sizeof(struct rate_shaping_vars_per_vn);
2522 __storm_memset_struct(bp, addr, size,
2523 (u32 *)&cmng->vnic.vnic_max_rate[vn]);
2524
2525 addr = BAR_XSTRORM_INTMEM +
2526 XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(func);
2527 size = sizeof(struct fairness_vars_per_vn);
2528 __storm_memset_struct(bp, addr, size,
2529 (u32 *)&cmng->vnic.vnic_min_rate[vn]);
2530 }
2531}
2532
c18487ee
YR
2533/* This function is called upon link interrupt */
2534static void bnx2x_link_attn(struct bnx2x *bp)
2535{
bb2a0f7a
YG
2536 /* Make sure that we are synced with the current statistics */
2537 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2538
c18487ee 2539 bnx2x_link_update(&bp->link_params, &bp->link_vars);
a2fbb9ea 2540
bb2a0f7a
YG
2541 if (bp->link_vars.link_up) {
2542
1c06328c 2543 /* dropless flow control */
f2e0899f 2544 if (!CHIP_IS_E1(bp) && bp->dropless_fc) {
1c06328c
EG
2545 int port = BP_PORT(bp);
2546 u32 pause_enabled = 0;
2547
2548 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
2549 pause_enabled = 1;
2550
2551 REG_WR(bp, BAR_USTRORM_INTMEM +
ca00392c 2552 USTORM_ETH_PAUSE_ENABLED_OFFSET(port),
1c06328c
EG
2553 pause_enabled);
2554 }
2555
619c5cb6 2556 if (bp->link_vars.mac_type != MAC_TYPE_EMAC) {
bb2a0f7a
YG
2557 struct host_port_stats *pstats;
2558
2559 pstats = bnx2x_sp(bp, port_stats);
619c5cb6 2560 /* reset old mac stats */
bb2a0f7a
YG
2561 memset(&(pstats->mac_stx[0]), 0,
2562 sizeof(struct mac_stx));
2563 }
f34d28ea 2564 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a
YG
2565 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2566 }
2567
f2e0899f
DK
2568 if (bp->link_vars.link_up && bp->link_vars.line_speed) {
2569 int cmng_fns = bnx2x_get_cmng_fns_mode(bp);
8a1c38d1 2570
f2e0899f
DK
2571 if (cmng_fns != CMNG_FNS_NONE) {
2572 bnx2x_cmng_fns_init(bp, false, cmng_fns);
2573 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
2574 } else
2575 /* rate shaping and fairness are disabled */
2576 DP(NETIF_MSG_IFUP,
2577 "single function mode without fairness\n");
34f80b04 2578 }
9fdc3e95 2579
2ae17f66
VZ
2580 __bnx2x_link_report(bp);
2581
9fdc3e95
DK
2582 if (IS_MF(bp))
2583 bnx2x_link_sync_notify(bp);
c18487ee 2584}
a2fbb9ea 2585
9f6c9258 2586void bnx2x__link_status_update(struct bnx2x *bp)
c18487ee 2587{
2ae17f66 2588 if (bp->state != BNX2X_STATE_OPEN)
c18487ee 2589 return;
a2fbb9ea 2590
00253a8c 2591 /* read updated dcb configuration */
ad5afc89
AE
2592 if (IS_PF(bp)) {
2593 bnx2x_dcbx_pmf_update(bp);
2594 bnx2x_link_status_update(&bp->link_params, &bp->link_vars);
2595 if (bp->link_vars.link_up)
2596 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2597 else
2598 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2599 /* indicate link status */
2600 bnx2x_link_report(bp);
a2fbb9ea 2601
ad5afc89
AE
2602 } else { /* VF */
2603 bp->port.supported[0] |= (SUPPORTED_10baseT_Half |
2604 SUPPORTED_10baseT_Full |
2605 SUPPORTED_100baseT_Half |
2606 SUPPORTED_100baseT_Full |
2607 SUPPORTED_1000baseT_Full |
2608 SUPPORTED_2500baseX_Full |
2609 SUPPORTED_10000baseT_Full |
2610 SUPPORTED_TP |
2611 SUPPORTED_FIBRE |
2612 SUPPORTED_Autoneg |
2613 SUPPORTED_Pause |
2614 SUPPORTED_Asym_Pause);
2615 bp->port.advertising[0] = bp->port.supported[0];
2616
2617 bp->link_params.bp = bp;
2618 bp->link_params.port = BP_PORT(bp);
2619 bp->link_params.req_duplex[0] = DUPLEX_FULL;
2620 bp->link_params.req_flow_ctrl[0] = BNX2X_FLOW_CTRL_NONE;
2621 bp->link_params.req_line_speed[0] = SPEED_10000;
2622 bp->link_params.speed_cap_mask[0] = 0x7f0000;
2623 bp->link_params.switch_cfg = SWITCH_CFG_10G;
2624 bp->link_vars.mac_type = MAC_TYPE_BMAC;
2625 bp->link_vars.line_speed = SPEED_10000;
2626 bp->link_vars.link_status =
2627 (LINK_STATUS_LINK_UP |
2628 LINK_STATUS_SPEED_AND_DUPLEX_10GTFD);
2629 bp->link_vars.link_up = 1;
2630 bp->link_vars.duplex = DUPLEX_FULL;
2631 bp->link_vars.flow_ctrl = BNX2X_FLOW_CTRL_NONE;
2632 __bnx2x_link_report(bp);
bb2a0f7a 2633 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
ad5afc89 2634 }
a2fbb9ea 2635}
a2fbb9ea 2636
a3348722
BW
2637static int bnx2x_afex_func_update(struct bnx2x *bp, u16 vifid,
2638 u16 vlan_val, u8 allowed_prio)
2639{
86564c3f 2640 struct bnx2x_func_state_params func_params = {NULL};
a3348722
BW
2641 struct bnx2x_func_afex_update_params *f_update_params =
2642 &func_params.params.afex_update;
2643
2644 func_params.f_obj = &bp->func_obj;
2645 func_params.cmd = BNX2X_F_CMD_AFEX_UPDATE;
2646
2647 /* no need to wait for RAMROD completion, so don't
2648 * set RAMROD_COMP_WAIT flag
2649 */
2650
2651 f_update_params->vif_id = vifid;
2652 f_update_params->afex_default_vlan = vlan_val;
2653 f_update_params->allowed_priorities = allowed_prio;
2654
2655 /* if ramrod can not be sent, response to MCP immediately */
2656 if (bnx2x_func_state_change(bp, &func_params) < 0)
2657 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
2658
2659 return 0;
2660}
2661
2662static int bnx2x_afex_handle_vif_list_cmd(struct bnx2x *bp, u8 cmd_type,
2663 u16 vif_index, u8 func_bit_map)
2664{
86564c3f 2665 struct bnx2x_func_state_params func_params = {NULL};
a3348722
BW
2666 struct bnx2x_func_afex_viflists_params *update_params =
2667 &func_params.params.afex_viflists;
2668 int rc;
2669 u32 drv_msg_code;
2670
2671 /* validate only LIST_SET and LIST_GET are received from switch */
2672 if ((cmd_type != VIF_LIST_RULE_GET) && (cmd_type != VIF_LIST_RULE_SET))
2673 BNX2X_ERR("BUG! afex_handle_vif_list_cmd invalid type 0x%x\n",
2674 cmd_type);
2675
2676 func_params.f_obj = &bp->func_obj;
2677 func_params.cmd = BNX2X_F_CMD_AFEX_VIFLISTS;
2678
2679 /* set parameters according to cmd_type */
2680 update_params->afex_vif_list_command = cmd_type;
86564c3f 2681 update_params->vif_list_index = vif_index;
a3348722
BW
2682 update_params->func_bit_map =
2683 (cmd_type == VIF_LIST_RULE_GET) ? 0 : func_bit_map;
2684 update_params->func_to_clear = 0;
2685 drv_msg_code =
2686 (cmd_type == VIF_LIST_RULE_GET) ?
2687 DRV_MSG_CODE_AFEX_LISTGET_ACK :
2688 DRV_MSG_CODE_AFEX_LISTSET_ACK;
2689
2690 /* if ramrod can not be sent, respond to MCP immediately for
2691 * SET and GET requests (other are not triggered from MCP)
2692 */
2693 rc = bnx2x_func_state_change(bp, &func_params);
2694 if (rc < 0)
2695 bnx2x_fw_command(bp, drv_msg_code, 0);
2696
2697 return 0;
2698}
2699
2700static void bnx2x_handle_afex_cmd(struct bnx2x *bp, u32 cmd)
2701{
2702 struct afex_stats afex_stats;
2703 u32 func = BP_ABS_FUNC(bp);
2704 u32 mf_config;
2705 u16 vlan_val;
2706 u32 vlan_prio;
2707 u16 vif_id;
2708 u8 allowed_prio;
2709 u8 vlan_mode;
2710 u32 addr_to_write, vifid, addrs, stats_type, i;
2711
2712 if (cmd & DRV_STATUS_AFEX_LISTGET_REQ) {
2713 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2714 DP(BNX2X_MSG_MCP,
2715 "afex: got MCP req LISTGET_REQ for vifid 0x%x\n", vifid);
2716 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_GET, vifid, 0);
2717 }
2718
2719 if (cmd & DRV_STATUS_AFEX_LISTSET_REQ) {
2720 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2721 addrs = SHMEM2_RD(bp, afex_param2_to_driver[BP_FW_MB_IDX(bp)]);
2722 DP(BNX2X_MSG_MCP,
2723 "afex: got MCP req LISTSET_REQ for vifid 0x%x addrs 0x%x\n",
2724 vifid, addrs);
2725 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_SET, vifid,
2726 addrs);
2727 }
2728
2729 if (cmd & DRV_STATUS_AFEX_STATSGET_REQ) {
2730 addr_to_write = SHMEM2_RD(bp,
2731 afex_scratchpad_addr_to_write[BP_FW_MB_IDX(bp)]);
2732 stats_type = SHMEM2_RD(bp,
2733 afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2734
2735 DP(BNX2X_MSG_MCP,
2736 "afex: got MCP req STATSGET_REQ, write to addr 0x%x\n",
2737 addr_to_write);
2738
2739 bnx2x_afex_collect_stats(bp, (void *)&afex_stats, stats_type);
2740
2741 /* write response to scratchpad, for MCP */
2742 for (i = 0; i < (sizeof(struct afex_stats)/sizeof(u32)); i++)
2743 REG_WR(bp, addr_to_write + i*sizeof(u32),
2744 *(((u32 *)(&afex_stats))+i));
2745
2746 /* send ack message to MCP */
2747 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_STATSGET_ACK, 0);
2748 }
2749
2750 if (cmd & DRV_STATUS_AFEX_VIFSET_REQ) {
2751 mf_config = MF_CFG_RD(bp, func_mf_config[func].config);
2752 bp->mf_config[BP_VN(bp)] = mf_config;
2753 DP(BNX2X_MSG_MCP,
2754 "afex: got MCP req VIFSET_REQ, mf_config 0x%x\n",
2755 mf_config);
2756
2757 /* if VIF_SET is "enabled" */
2758 if (!(mf_config & FUNC_MF_CFG_FUNC_DISABLED)) {
2759 /* set rate limit directly to internal RAM */
2760 struct cmng_init_input cmng_input;
2761 struct rate_shaping_vars_per_vn m_rs_vn;
2762 size_t size = sizeof(struct rate_shaping_vars_per_vn);
2763 u32 addr = BAR_XSTRORM_INTMEM +
2764 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(BP_FUNC(bp));
2765
2766 bp->mf_config[BP_VN(bp)] = mf_config;
2767
2768 bnx2x_calc_vn_max(bp, BP_VN(bp), &cmng_input);
2769 m_rs_vn.vn_counter.rate =
2770 cmng_input.vnic_max_rate[BP_VN(bp)];
2771 m_rs_vn.vn_counter.quota =
2772 (m_rs_vn.vn_counter.rate *
2773 RS_PERIODIC_TIMEOUT_USEC) / 8;
2774
2775 __storm_memset_struct(bp, addr, size, (u32 *)&m_rs_vn);
2776
2777 /* read relevant values from mf_cfg struct in shmem */
2778 vif_id =
2779 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2780 FUNC_MF_CFG_E1HOV_TAG_MASK) >>
2781 FUNC_MF_CFG_E1HOV_TAG_SHIFT;
2782 vlan_val =
2783 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2784 FUNC_MF_CFG_AFEX_VLAN_MASK) >>
2785 FUNC_MF_CFG_AFEX_VLAN_SHIFT;
2786 vlan_prio = (mf_config &
2787 FUNC_MF_CFG_TRANSMIT_PRIORITY_MASK) >>
2788 FUNC_MF_CFG_TRANSMIT_PRIORITY_SHIFT;
2789 vlan_val |= (vlan_prio << VLAN_PRIO_SHIFT);
2790 vlan_mode =
2791 (MF_CFG_RD(bp,
2792 func_mf_config[func].afex_config) &
2793 FUNC_MF_CFG_AFEX_VLAN_MODE_MASK) >>
2794 FUNC_MF_CFG_AFEX_VLAN_MODE_SHIFT;
2795 allowed_prio =
2796 (MF_CFG_RD(bp,
2797 func_mf_config[func].afex_config) &
2798 FUNC_MF_CFG_AFEX_COS_FILTER_MASK) >>
2799 FUNC_MF_CFG_AFEX_COS_FILTER_SHIFT;
2800
2801 /* send ramrod to FW, return in case of failure */
2802 if (bnx2x_afex_func_update(bp, vif_id, vlan_val,
2803 allowed_prio))
2804 return;
2805
2806 bp->afex_def_vlan_tag = vlan_val;
2807 bp->afex_vlan_mode = vlan_mode;
2808 } else {
2809 /* notify link down because BP->flags is disabled */
2810 bnx2x_link_report(bp);
2811
2812 /* send INVALID VIF ramrod to FW */
2813 bnx2x_afex_func_update(bp, 0xFFFF, 0, 0);
2814
2815 /* Reset the default afex VLAN */
2816 bp->afex_def_vlan_tag = -1;
2817 }
2818 }
2819}
2820
34f80b04
EG
2821static void bnx2x_pmf_update(struct bnx2x *bp)
2822{
2823 int port = BP_PORT(bp);
2824 u32 val;
2825
2826 bp->port.pmf = 1;
51c1a580 2827 DP(BNX2X_MSG_MCP, "pmf %d\n", bp->port.pmf);
34f80b04 2828
3deb8167
YR
2829 /*
2830 * We need the mb() to ensure the ordering between the writing to
2831 * bp->port.pmf here and reading it from the bnx2x_periodic_task().
2832 */
2833 smp_mb();
2834
2835 /* queue a periodic task */
2836 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
2837
ef01854e
DK
2838 bnx2x_dcbx_pmf_update(bp);
2839
34f80b04 2840 /* enable nig attention */
3395a033 2841 val = (0xff0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
2842 if (bp->common.int_block == INT_BLOCK_HC) {
2843 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
2844 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
619c5cb6 2845 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
2846 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
2847 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
2848 }
bb2a0f7a
YG
2849
2850 bnx2x_stats_handle(bp, STATS_EVENT_PMF);
34f80b04
EG
2851}
2852
c18487ee 2853/* end of Link */
a2fbb9ea
ET
2854
2855/* slow path */
2856
2857/*
2858 * General service functions
2859 */
2860
2691d51d 2861/* send the MCP a request, block until there is a reply */
a22f0788 2862u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param)
2691d51d 2863{
f2e0899f 2864 int mb_idx = BP_FW_MB_IDX(bp);
a5971d43 2865 u32 seq;
2691d51d
EG
2866 u32 rc = 0;
2867 u32 cnt = 1;
2868 u8 delay = CHIP_REV_IS_SLOW(bp) ? 100 : 10;
2869
c4ff7cbf 2870 mutex_lock(&bp->fw_mb_mutex);
a5971d43 2871 seq = ++bp->fw_seq;
f2e0899f
DK
2872 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_param, param);
2873 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_header, (command | seq));
2874
754a2f52
DK
2875 DP(BNX2X_MSG_MCP, "wrote command (%x) to FW MB param 0x%08x\n",
2876 (command | seq), param);
2691d51d
EG
2877
2878 do {
2879 /* let the FW do it's magic ... */
2880 msleep(delay);
2881
f2e0899f 2882 rc = SHMEM_RD(bp, func_mb[mb_idx].fw_mb_header);
2691d51d 2883
c4ff7cbf
EG
2884 /* Give the FW up to 5 second (500*10ms) */
2885 } while ((seq != (rc & FW_MSG_SEQ_NUMBER_MASK)) && (cnt++ < 500));
2691d51d
EG
2886
2887 DP(BNX2X_MSG_MCP, "[after %d ms] read (%x) seq is (%x) from FW MB\n",
2888 cnt*delay, rc, seq);
2889
2890 /* is this a reply to our command? */
2891 if (seq == (rc & FW_MSG_SEQ_NUMBER_MASK))
2892 rc &= FW_MSG_CODE_MASK;
2893 else {
2894 /* FW BUG! */
2895 BNX2X_ERR("FW failed to respond!\n");
2896 bnx2x_fw_dump(bp);
2897 rc = 0;
2898 }
c4ff7cbf 2899 mutex_unlock(&bp->fw_mb_mutex);
2691d51d
EG
2900
2901 return rc;
2902}
2903
ec6ba945 2904
1191cb83
ED
2905static void storm_memset_func_cfg(struct bnx2x *bp,
2906 struct tstorm_eth_function_common_config *tcfg,
2907 u16 abs_fid)
2908{
2909 size_t size = sizeof(struct tstorm_eth_function_common_config);
2910
2911 u32 addr = BAR_TSTRORM_INTMEM +
2912 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid);
2913
2914 __storm_memset_struct(bp, addr, size, (u32 *)tcfg);
2915}
2916
619c5cb6
VZ
2917void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p)
2918{
2919 if (CHIP_IS_E1x(bp)) {
2920 struct tstorm_eth_function_common_config tcfg = {0};
2921
2922 storm_memset_func_cfg(bp, &tcfg, p->func_id);
2923 }
2924
2925 /* Enable the function in the FW */
2926 storm_memset_vf_to_pf(bp, p->func_id, p->pf_id);
2927 storm_memset_func_en(bp, p->func_id, 1);
2928
2929 /* spq */
2930 if (p->func_flgs & FUNC_FLG_SPQ) {
2931 storm_memset_spq_addr(bp, p->spq_map, p->func_id);
2932 REG_WR(bp, XSEM_REG_FAST_MEMORY +
2933 XSTORM_SPQ_PROD_OFFSET(p->func_id), p->spq_prod);
2934 }
2935}
2936
6383c0b3
AE
2937/**
2938 * bnx2x_get_tx_only_flags - Return common flags
2939 *
2940 * @bp device handle
2941 * @fp queue handle
2942 * @zero_stats TRUE if statistics zeroing is needed
2943 *
2944 * Return the flags that are common for the Tx-only and not normal connections.
2945 */
1191cb83
ED
2946static unsigned long bnx2x_get_common_flags(struct bnx2x *bp,
2947 struct bnx2x_fastpath *fp,
2948 bool zero_stats)
28912902 2949{
619c5cb6
VZ
2950 unsigned long flags = 0;
2951
2952 /* PF driver will always initialize the Queue to an ACTIVE state */
2953 __set_bit(BNX2X_Q_FLG_ACTIVE, &flags);
28912902 2954
6383c0b3 2955 /* tx only connections collect statistics (on the same index as the
91226790
DK
2956 * parent connection). The statistics are zeroed when the parent
2957 * connection is initialized.
6383c0b3 2958 */
50f0a562
BW
2959
2960 __set_bit(BNX2X_Q_FLG_STATS, &flags);
2961 if (zero_stats)
2962 __set_bit(BNX2X_Q_FLG_ZERO_STATS, &flags);
2963
91226790 2964 __set_bit(BNX2X_Q_FLG_PCSUM_ON_PKT, &flags);
6383c0b3 2965
823e1d90
YM
2966#ifdef BNX2X_STOP_ON_ERROR
2967 __set_bit(BNX2X_Q_FLG_TX_SEC, &flags);
2968#endif
2969
6383c0b3
AE
2970 return flags;
2971}
2972
1191cb83
ED
2973static unsigned long bnx2x_get_q_flags(struct bnx2x *bp,
2974 struct bnx2x_fastpath *fp,
2975 bool leading)
6383c0b3
AE
2976{
2977 unsigned long flags = 0;
2978
619c5cb6
VZ
2979 /* calculate other queue flags */
2980 if (IS_MF_SD(bp))
2981 __set_bit(BNX2X_Q_FLG_OV, &flags);
28912902 2982
a3348722 2983 if (IS_FCOE_FP(fp)) {
619c5cb6 2984 __set_bit(BNX2X_Q_FLG_FCOE, &flags);
a3348722
BW
2985 /* For FCoE - force usage of default priority (for afex) */
2986 __set_bit(BNX2X_Q_FLG_FORCE_DEFAULT_PRI, &flags);
2987 }
523224a3 2988
f5219d8e 2989 if (!fp->disable_tpa) {
619c5cb6 2990 __set_bit(BNX2X_Q_FLG_TPA, &flags);
f5219d8e 2991 __set_bit(BNX2X_Q_FLG_TPA_IPV6, &flags);
621b4d66
DK
2992 if (fp->mode == TPA_MODE_GRO)
2993 __set_bit(BNX2X_Q_FLG_TPA_GRO, &flags);
f5219d8e 2994 }
619c5cb6 2995
619c5cb6
VZ
2996 if (leading) {
2997 __set_bit(BNX2X_Q_FLG_LEADING_RSS, &flags);
2998 __set_bit(BNX2X_Q_FLG_MCAST, &flags);
2999 }
523224a3 3000
619c5cb6
VZ
3001 /* Always set HW VLAN stripping */
3002 __set_bit(BNX2X_Q_FLG_VLAN, &flags);
523224a3 3003
a3348722
BW
3004 /* configure silent vlan removal */
3005 if (IS_MF_AFEX(bp))
3006 __set_bit(BNX2X_Q_FLG_SILENT_VLAN_REM, &flags);
3007
6383c0b3
AE
3008
3009 return flags | bnx2x_get_common_flags(bp, fp, true);
523224a3
DK
3010}
3011
619c5cb6 3012static void bnx2x_pf_q_prep_general(struct bnx2x *bp,
6383c0b3
AE
3013 struct bnx2x_fastpath *fp, struct bnx2x_general_setup_params *gen_init,
3014 u8 cos)
619c5cb6
VZ
3015{
3016 gen_init->stat_id = bnx2x_stats_id(fp);
3017 gen_init->spcl_id = fp->cl_id;
3018
3019 /* Always use mini-jumbo MTU for FCoE L2 ring */
3020 if (IS_FCOE_FP(fp))
3021 gen_init->mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
3022 else
3023 gen_init->mtu = bp->dev->mtu;
6383c0b3
AE
3024
3025 gen_init->cos = cos;
619c5cb6
VZ
3026}
3027
3028static void bnx2x_pf_rx_q_prep(struct bnx2x *bp,
523224a3 3029 struct bnx2x_fastpath *fp, struct rxq_pause_params *pause,
619c5cb6 3030 struct bnx2x_rxq_setup_params *rxq_init)
523224a3 3031{
619c5cb6 3032 u8 max_sge = 0;
523224a3
DK
3033 u16 sge_sz = 0;
3034 u16 tpa_agg_size = 0;
3035
523224a3 3036 if (!fp->disable_tpa) {
dfacf138
DK
3037 pause->sge_th_lo = SGE_TH_LO(bp);
3038 pause->sge_th_hi = SGE_TH_HI(bp);
3039
3040 /* validate SGE ring has enough to cross high threshold */
3041 WARN_ON(bp->dropless_fc &&
3042 pause->sge_th_hi + FW_PREFETCH_CNT >
3043 MAX_RX_SGE_CNT * NUM_RX_SGE_PAGES);
3044
924d75ab 3045 tpa_agg_size = TPA_AGG_SIZE;
523224a3
DK
3046 max_sge = SGE_PAGE_ALIGN(bp->dev->mtu) >>
3047 SGE_PAGE_SHIFT;
3048 max_sge = ((max_sge + PAGES_PER_SGE - 1) &
3049 (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
924d75ab 3050 sge_sz = (u16)min_t(u32, SGE_PAGES, 0xffff);
523224a3
DK
3051 }
3052
3053 /* pause - not for e1 */
3054 if (!CHIP_IS_E1(bp)) {
dfacf138
DK
3055 pause->bd_th_lo = BD_TH_LO(bp);
3056 pause->bd_th_hi = BD_TH_HI(bp);
3057
3058 pause->rcq_th_lo = RCQ_TH_LO(bp);
3059 pause->rcq_th_hi = RCQ_TH_HI(bp);
3060 /*
3061 * validate that rings have enough entries to cross
3062 * high thresholds
3063 */
3064 WARN_ON(bp->dropless_fc &&
3065 pause->bd_th_hi + FW_PREFETCH_CNT >
3066 bp->rx_ring_size);
3067 WARN_ON(bp->dropless_fc &&
3068 pause->rcq_th_hi + FW_PREFETCH_CNT >
3069 NUM_RCQ_RINGS * MAX_RCQ_DESC_CNT);
619c5cb6 3070
523224a3
DK
3071 pause->pri_map = 1;
3072 }
3073
3074 /* rxq setup */
523224a3
DK
3075 rxq_init->dscr_map = fp->rx_desc_mapping;
3076 rxq_init->sge_map = fp->rx_sge_mapping;
3077 rxq_init->rcq_map = fp->rx_comp_mapping;
3078 rxq_init->rcq_np_map = fp->rx_comp_mapping + BCM_PAGE_SIZE;
a8c94b91 3079
619c5cb6
VZ
3080 /* This should be a maximum number of data bytes that may be
3081 * placed on the BD (not including paddings).
3082 */
e52fcb24
ED
3083 rxq_init->buf_sz = fp->rx_buf_size - BNX2X_FW_RX_ALIGN_START -
3084 BNX2X_FW_RX_ALIGN_END - IP_HEADER_ALIGNMENT_PADDING;
a8c94b91 3085
523224a3 3086 rxq_init->cl_qzone_id = fp->cl_qzone_id;
523224a3
DK
3087 rxq_init->tpa_agg_sz = tpa_agg_size;
3088 rxq_init->sge_buf_sz = sge_sz;
3089 rxq_init->max_sges_pkt = max_sge;
619c5cb6 3090 rxq_init->rss_engine_id = BP_FUNC(bp);
259afa1f 3091 rxq_init->mcast_engine_id = BP_FUNC(bp);
619c5cb6
VZ
3092
3093 /* Maximum number or simultaneous TPA aggregation for this Queue.
3094 *
2de67439 3095 * For PF Clients it should be the maximum available number.
619c5cb6
VZ
3096 * VF driver(s) may want to define it to a smaller value.
3097 */
dfacf138 3098 rxq_init->max_tpa_queues = MAX_AGG_QS(bp);
619c5cb6 3099
523224a3
DK
3100 rxq_init->cache_line_log = BNX2X_RX_ALIGN_SHIFT;
3101 rxq_init->fw_sb_id = fp->fw_sb_id;
3102
ec6ba945
VZ
3103 if (IS_FCOE_FP(fp))
3104 rxq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS;
3105 else
6383c0b3 3106 rxq_init->sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
a3348722
BW
3107 /* configure silent vlan removal
3108 * if multi function mode is afex, then mask default vlan
3109 */
3110 if (IS_MF_AFEX(bp)) {
3111 rxq_init->silent_removal_value = bp->afex_def_vlan_tag;
3112 rxq_init->silent_removal_mask = VLAN_VID_MASK;
3113 }
523224a3
DK
3114}
3115
619c5cb6 3116static void bnx2x_pf_tx_q_prep(struct bnx2x *bp,
6383c0b3
AE
3117 struct bnx2x_fastpath *fp, struct bnx2x_txq_setup_params *txq_init,
3118 u8 cos)
523224a3 3119{
65565884 3120 txq_init->dscr_map = fp->txdata_ptr[cos]->tx_desc_mapping;
6383c0b3 3121 txq_init->sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS + cos;
523224a3
DK
3122 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_NW;
3123 txq_init->fw_sb_id = fp->fw_sb_id;
ec6ba945 3124
619c5cb6
VZ
3125 /*
3126 * set the tss leading client id for TX classfication ==
3127 * leading RSS client id
3128 */
3129 txq_init->tss_leading_cl_id = bnx2x_fp(bp, 0, cl_id);
3130
ec6ba945
VZ
3131 if (IS_FCOE_FP(fp)) {
3132 txq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS;
3133 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_FCOE;
3134 }
523224a3
DK
3135}
3136
8d96286a 3137static void bnx2x_pf_init(struct bnx2x *bp)
523224a3
DK
3138{
3139 struct bnx2x_func_init_params func_init = {0};
523224a3
DK
3140 struct event_ring_data eq_data = { {0} };
3141 u16 flags;
3142
619c5cb6 3143 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3144 /* reset IGU PF statistics: MSIX + ATTN */
3145 /* PF */
3146 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3147 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3148 (CHIP_MODE_IS_4_PORT(bp) ?
3149 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3150 /* ATTN */
3151 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3152 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3153 BNX2X_IGU_STAS_MSG_PF_CNT*4 +
3154 (CHIP_MODE_IS_4_PORT(bp) ?
3155 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3156 }
3157
523224a3
DK
3158 /* function setup flags */
3159 flags = (FUNC_FLG_STATS | FUNC_FLG_LEADING | FUNC_FLG_SPQ);
3160
619c5cb6
VZ
3161 /* This flag is relevant for E1x only.
3162 * E2 doesn't have a TPA configuration in a function level.
523224a3 3163 */
619c5cb6 3164 flags |= (bp->flags & TPA_ENABLE_FLAG) ? FUNC_FLG_TPA : 0;
523224a3
DK
3165
3166 func_init.func_flgs = flags;
3167 func_init.pf_id = BP_FUNC(bp);
3168 func_init.func_id = BP_FUNC(bp);
523224a3
DK
3169 func_init.spq_map = bp->spq_mapping;
3170 func_init.spq_prod = bp->spq_prod_idx;
3171
3172 bnx2x_func_init(bp, &func_init);
3173
3174 memset(&(bp->cmng), 0, sizeof(struct cmng_struct_per_port));
3175
3176 /*
619c5cb6
VZ
3177 * Congestion management values depend on the link rate
3178 * There is no active link so initial link rate is set to 10 Gbps.
3179 * When the link comes up The congestion management values are
3180 * re-calculated according to the actual link rate.
3181 */
523224a3
DK
3182 bp->link_vars.line_speed = SPEED_10000;
3183 bnx2x_cmng_fns_init(bp, true, bnx2x_get_cmng_fns_mode(bp));
3184
3185 /* Only the PMF sets the HW */
3186 if (bp->port.pmf)
3187 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3188
86564c3f 3189 /* init Event Queue - PCI bus guarantees correct endianity*/
523224a3
DK
3190 eq_data.base_addr.hi = U64_HI(bp->eq_mapping);
3191 eq_data.base_addr.lo = U64_LO(bp->eq_mapping);
3192 eq_data.producer = bp->eq_prod;
3193 eq_data.index_id = HC_SP_INDEX_EQ_CONS;
3194 eq_data.sb_id = DEF_SB_ID;
3195 storm_memset_eq_data(bp, &eq_data, BP_FUNC(bp));
3196}
3197
3198
3199static void bnx2x_e1h_disable(struct bnx2x *bp)
3200{
3201 int port = BP_PORT(bp);
3202
619c5cb6 3203 bnx2x_tx_disable(bp);
523224a3
DK
3204
3205 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
523224a3
DK
3206}
3207
3208static void bnx2x_e1h_enable(struct bnx2x *bp)
3209{
3210 int port = BP_PORT(bp);
3211
3212 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
3213
3214 /* Tx queue should be only reenabled */
3215 netif_tx_wake_all_queues(bp->dev);
3216
3217 /*
3218 * Should not call netif_carrier_on since it will be called if the link
3219 * is up when checking for link state
3220 */
3221}
3222
1d187b34
BW
3223#define DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED 3
3224
3225static void bnx2x_drv_info_ether_stat(struct bnx2x *bp)
3226{
3227 struct eth_stats_info *ether_stat =
3228 &bp->slowpath->drv_info_to_mcp.ether_stat;
3ec9f9ca
AE
3229 struct bnx2x_vlan_mac_obj *mac_obj =
3230 &bp->sp_objs->mac_obj;
3231 int i;
1d187b34 3232
786fdf0b
DC
3233 strlcpy(ether_stat->version, DRV_MODULE_VERSION,
3234 ETH_STAT_INFO_VERSION_LEN);
1d187b34 3235
3ec9f9ca
AE
3236 /* get DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED macs, placing them in the
3237 * mac_local field in ether_stat struct. The base address is offset by 2
3238 * bytes to account for the field being 8 bytes but a mac address is
3239 * only 6 bytes. Likewise, the stride for the get_n_elements function is
3240 * 2 bytes to compensate from the 6 bytes of a mac to the 8 bytes
3241 * allocated by the ether_stat struct, so the macs will land in their
3242 * proper positions.
3243 */
3244 for (i = 0; i < DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED; i++)
3245 memset(ether_stat->mac_local + i, 0,
3246 sizeof(ether_stat->mac_local[0]));
3247 mac_obj->get_n_elements(bp, &bp->sp_objs[0].mac_obj,
3248 DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED,
3249 ether_stat->mac_local + MAC_PAD, MAC_PAD,
3250 ETH_ALEN);
1d187b34 3251 ether_stat->mtu_size = bp->dev->mtu;
1d187b34
BW
3252 if (bp->dev->features & NETIF_F_RXCSUM)
3253 ether_stat->feature_flags |= FEATURE_ETH_CHKSUM_OFFLOAD_MASK;
3254 if (bp->dev->features & NETIF_F_TSO)
3255 ether_stat->feature_flags |= FEATURE_ETH_LSO_MASK;
3256 ether_stat->feature_flags |= bp->common.boot_mode;
3257
3258 ether_stat->promiscuous_mode = (bp->dev->flags & IFF_PROMISC) ? 1 : 0;
3259
3260 ether_stat->txq_size = bp->tx_ring_size;
3261 ether_stat->rxq_size = bp->rx_ring_size;
3262}
3263
3264static void bnx2x_drv_info_fcoe_stat(struct bnx2x *bp)
3265{
3266 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3267 struct fcoe_stats_info *fcoe_stat =
3268 &bp->slowpath->drv_info_to_mcp.fcoe_stat;
3269
55c11941
MS
3270 if (!CNIC_LOADED(bp))
3271 return;
3272
3ec9f9ca 3273 memcpy(fcoe_stat->mac_local + MAC_PAD, bp->fip_mac, ETH_ALEN);
1d187b34
BW
3274
3275 fcoe_stat->qos_priority =
3276 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_FCOE];
3277
3278 /* insert FCoE stats from ramrod response */
3279 if (!NO_FCOE(bp)) {
3280 struct tstorm_per_queue_stats *fcoe_q_tstorm_stats =
65565884 3281 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3282 tstorm_queue_statistics;
3283
3284 struct xstorm_per_queue_stats *fcoe_q_xstorm_stats =
65565884 3285 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3286 xstorm_queue_statistics;
3287
3288 struct fcoe_statistics_params *fw_fcoe_stat =
3289 &bp->fw_stats_data->fcoe;
3290
86564c3f
YM
3291 ADD_64_LE(fcoe_stat->rx_bytes_hi, LE32_0,
3292 fcoe_stat->rx_bytes_lo,
3293 fw_fcoe_stat->rx_stat0.fcoe_rx_byte_cnt);
1d187b34 3294
86564c3f
YM
3295 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3296 fcoe_q_tstorm_stats->rcv_ucast_bytes.hi,
3297 fcoe_stat->rx_bytes_lo,
3298 fcoe_q_tstorm_stats->rcv_ucast_bytes.lo);
1d187b34 3299
86564c3f
YM
3300 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3301 fcoe_q_tstorm_stats->rcv_bcast_bytes.hi,
3302 fcoe_stat->rx_bytes_lo,
3303 fcoe_q_tstorm_stats->rcv_bcast_bytes.lo);
1d187b34 3304
86564c3f
YM
3305 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3306 fcoe_q_tstorm_stats->rcv_mcast_bytes.hi,
3307 fcoe_stat->rx_bytes_lo,
3308 fcoe_q_tstorm_stats->rcv_mcast_bytes.lo);
1d187b34 3309
86564c3f
YM
3310 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3311 fcoe_stat->rx_frames_lo,
3312 fw_fcoe_stat->rx_stat0.fcoe_rx_pkt_cnt);
1d187b34 3313
86564c3f
YM
3314 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3315 fcoe_stat->rx_frames_lo,
3316 fcoe_q_tstorm_stats->rcv_ucast_pkts);
1d187b34 3317
86564c3f
YM
3318 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3319 fcoe_stat->rx_frames_lo,
3320 fcoe_q_tstorm_stats->rcv_bcast_pkts);
1d187b34 3321
86564c3f
YM
3322 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3323 fcoe_stat->rx_frames_lo,
3324 fcoe_q_tstorm_stats->rcv_mcast_pkts);
1d187b34 3325
86564c3f
YM
3326 ADD_64_LE(fcoe_stat->tx_bytes_hi, LE32_0,
3327 fcoe_stat->tx_bytes_lo,
3328 fw_fcoe_stat->tx_stat.fcoe_tx_byte_cnt);
1d187b34 3329
86564c3f
YM
3330 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3331 fcoe_q_xstorm_stats->ucast_bytes_sent.hi,
3332 fcoe_stat->tx_bytes_lo,
3333 fcoe_q_xstorm_stats->ucast_bytes_sent.lo);
1d187b34 3334
86564c3f
YM
3335 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3336 fcoe_q_xstorm_stats->bcast_bytes_sent.hi,
3337 fcoe_stat->tx_bytes_lo,
3338 fcoe_q_xstorm_stats->bcast_bytes_sent.lo);
1d187b34 3339
86564c3f
YM
3340 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3341 fcoe_q_xstorm_stats->mcast_bytes_sent.hi,
3342 fcoe_stat->tx_bytes_lo,
3343 fcoe_q_xstorm_stats->mcast_bytes_sent.lo);
1d187b34 3344
86564c3f
YM
3345 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3346 fcoe_stat->tx_frames_lo,
3347 fw_fcoe_stat->tx_stat.fcoe_tx_pkt_cnt);
1d187b34 3348
86564c3f
YM
3349 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3350 fcoe_stat->tx_frames_lo,
3351 fcoe_q_xstorm_stats->ucast_pkts_sent);
1d187b34 3352
86564c3f
YM
3353 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3354 fcoe_stat->tx_frames_lo,
3355 fcoe_q_xstorm_stats->bcast_pkts_sent);
1d187b34 3356
86564c3f
YM
3357 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3358 fcoe_stat->tx_frames_lo,
3359 fcoe_q_xstorm_stats->mcast_pkts_sent);
1d187b34
BW
3360 }
3361
1d187b34
BW
3362 /* ask L5 driver to add data to the struct */
3363 bnx2x_cnic_notify(bp, CNIC_CTL_FCOE_STATS_GET_CMD);
1d187b34
BW
3364}
3365
3366static void bnx2x_drv_info_iscsi_stat(struct bnx2x *bp)
3367{
3368 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3369 struct iscsi_stats_info *iscsi_stat =
3370 &bp->slowpath->drv_info_to_mcp.iscsi_stat;
3371
55c11941
MS
3372 if (!CNIC_LOADED(bp))
3373 return;
3374
3ec9f9ca
AE
3375 memcpy(iscsi_stat->mac_local + MAC_PAD, bp->cnic_eth_dev.iscsi_mac,
3376 ETH_ALEN);
1d187b34
BW
3377
3378 iscsi_stat->qos_priority =
3379 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_ISCSI];
3380
1d187b34
BW
3381 /* ask L5 driver to add data to the struct */
3382 bnx2x_cnic_notify(bp, CNIC_CTL_ISCSI_STATS_GET_CMD);
1d187b34
BW
3383}
3384
0793f83f
DK
3385/* called due to MCP event (on pmf):
3386 * reread new bandwidth configuration
3387 * configure FW
3388 * notify others function about the change
3389 */
1191cb83 3390static void bnx2x_config_mf_bw(struct bnx2x *bp)
0793f83f
DK
3391{
3392 if (bp->link_vars.link_up) {
3393 bnx2x_cmng_fns_init(bp, true, CMNG_FNS_MINMAX);
3394 bnx2x_link_sync_notify(bp);
3395 }
3396 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3397}
3398
1191cb83 3399static void bnx2x_set_mf_bw(struct bnx2x *bp)
0793f83f
DK
3400{
3401 bnx2x_config_mf_bw(bp);
3402 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW_ACK, 0);
3403}
3404
c8c60d88
YM
3405static void bnx2x_handle_eee_event(struct bnx2x *bp)
3406{
3407 DP(BNX2X_MSG_MCP, "EEE - LLDP event\n");
3408 bnx2x_fw_command(bp, DRV_MSG_CODE_EEE_RESULTS_ACK, 0);
3409}
3410
1d187b34
BW
3411static void bnx2x_handle_drv_info_req(struct bnx2x *bp)
3412{
3413 enum drv_info_opcode op_code;
3414 u32 drv_info_ctl = SHMEM2_RD(bp, drv_info_control);
3415
3416 /* if drv_info version supported by MFW doesn't match - send NACK */
3417 if ((drv_info_ctl & DRV_INFO_CONTROL_VER_MASK) != DRV_INFO_CUR_VER) {
3418 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3419 return;
3420 }
3421
3422 op_code = (drv_info_ctl & DRV_INFO_CONTROL_OP_CODE_MASK) >>
3423 DRV_INFO_CONTROL_OP_CODE_SHIFT;
3424
3425 memset(&bp->slowpath->drv_info_to_mcp, 0,
3426 sizeof(union drv_info_to_mcp));
3427
3428 switch (op_code) {
3429 case ETH_STATS_OPCODE:
3430 bnx2x_drv_info_ether_stat(bp);
3431 break;
3432 case FCOE_STATS_OPCODE:
3433 bnx2x_drv_info_fcoe_stat(bp);
3434 break;
3435 case ISCSI_STATS_OPCODE:
3436 bnx2x_drv_info_iscsi_stat(bp);
3437 break;
3438 default:
3439 /* if op code isn't supported - send NACK */
3440 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3441 return;
3442 }
3443
3444 /* if we got drv_info attn from MFW then these fields are defined in
3445 * shmem2 for sure
3446 */
3447 SHMEM2_WR(bp, drv_info_host_addr_lo,
3448 U64_LO(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3449 SHMEM2_WR(bp, drv_info_host_addr_hi,
3450 U64_HI(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3451
3452 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_ACK, 0);
3453}
3454
523224a3
DK
3455static void bnx2x_dcc_event(struct bnx2x *bp, u32 dcc_event)
3456{
3457 DP(BNX2X_MSG_MCP, "dcc_event 0x%x\n", dcc_event);
3458
3459 if (dcc_event & DRV_STATUS_DCC_DISABLE_ENABLE_PF) {
3460
3461 /*
3462 * This is the only place besides the function initialization
3463 * where the bp->flags can change so it is done without any
3464 * locks
3465 */
f2e0899f 3466 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
51c1a580 3467 DP(BNX2X_MSG_MCP, "mf_cfg function disabled\n");
523224a3
DK
3468 bp->flags |= MF_FUNC_DIS;
3469
3470 bnx2x_e1h_disable(bp);
3471 } else {
51c1a580 3472 DP(BNX2X_MSG_MCP, "mf_cfg function enabled\n");
523224a3
DK
3473 bp->flags &= ~MF_FUNC_DIS;
3474
3475 bnx2x_e1h_enable(bp);
3476 }
3477 dcc_event &= ~DRV_STATUS_DCC_DISABLE_ENABLE_PF;
3478 }
3479 if (dcc_event & DRV_STATUS_DCC_BANDWIDTH_ALLOCATION) {
0793f83f 3480 bnx2x_config_mf_bw(bp);
523224a3
DK
3481 dcc_event &= ~DRV_STATUS_DCC_BANDWIDTH_ALLOCATION;
3482 }
3483
3484 /* Report results to MCP */
3485 if (dcc_event)
3486 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_FAILURE, 0);
3487 else
3488 bnx2x_fw_command(bp, DRV_MSG_CODE_DCC_OK, 0);
3489}
3490
3491/* must be called under the spq lock */
1191cb83 3492static struct eth_spe *bnx2x_sp_get_next(struct bnx2x *bp)
523224a3
DK
3493{
3494 struct eth_spe *next_spe = bp->spq_prod_bd;
3495
3496 if (bp->spq_prod_bd == bp->spq_last_bd) {
3497 bp->spq_prod_bd = bp->spq;
3498 bp->spq_prod_idx = 0;
51c1a580 3499 DP(BNX2X_MSG_SP, "end of spq\n");
523224a3
DK
3500 } else {
3501 bp->spq_prod_bd++;
3502 bp->spq_prod_idx++;
3503 }
3504 return next_spe;
3505}
3506
3507/* must be called under the spq lock */
1191cb83 3508static void bnx2x_sp_prod_update(struct bnx2x *bp)
28912902
MC
3509{
3510 int func = BP_FUNC(bp);
3511
53e51e2f
VZ
3512 /*
3513 * Make sure that BD data is updated before writing the producer:
3514 * BD data is written to the memory, the producer is read from the
3515 * memory, thus we need a full memory barrier to ensure the ordering.
3516 */
3517 mb();
28912902 3518
523224a3 3519 REG_WR16(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_PROD_OFFSET(func),
f85582f8 3520 bp->spq_prod_idx);
28912902
MC
3521 mmiowb();
3522}
3523
619c5cb6
VZ
3524/**
3525 * bnx2x_is_contextless_ramrod - check if the current command ends on EQ
3526 *
3527 * @cmd: command to check
3528 * @cmd_type: command type
3529 */
1191cb83 3530static bool bnx2x_is_contextless_ramrod(int cmd, int cmd_type)
619c5cb6
VZ
3531{
3532 if ((cmd_type == NONE_CONNECTION_TYPE) ||
6383c0b3 3533 (cmd == RAMROD_CMD_ID_ETH_FORWARD_SETUP) ||
619c5cb6
VZ
3534 (cmd == RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES) ||
3535 (cmd == RAMROD_CMD_ID_ETH_FILTER_RULES) ||
3536 (cmd == RAMROD_CMD_ID_ETH_MULTICAST_RULES) ||
3537 (cmd == RAMROD_CMD_ID_ETH_SET_MAC) ||
3538 (cmd == RAMROD_CMD_ID_ETH_RSS_UPDATE))
3539 return true;
3540 else
3541 return false;
3542
3543}
3544
3545
3546/**
3547 * bnx2x_sp_post - place a single command on an SP ring
3548 *
3549 * @bp: driver handle
3550 * @command: command to place (e.g. SETUP, FILTER_RULES, etc.)
3551 * @cid: SW CID the command is related to
3552 * @data_hi: command private data address (high 32 bits)
3553 * @data_lo: command private data address (low 32 bits)
3554 * @cmd_type: command type (e.g. NONE, ETH)
3555 *
3556 * SP data is handled as if it's always an address pair, thus data fields are
3557 * not swapped to little endian in upper functions. Instead this function swaps
3558 * data as if it's two u32 fields.
3559 */
9f6c9258 3560int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
619c5cb6 3561 u32 data_hi, u32 data_lo, int cmd_type)
a2fbb9ea 3562{
28912902 3563 struct eth_spe *spe;
523224a3 3564 u16 type;
619c5cb6 3565 bool common = bnx2x_is_contextless_ramrod(command, cmd_type);
a2fbb9ea 3566
a2fbb9ea 3567#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
3568 if (unlikely(bp->panic)) {
3569 BNX2X_ERR("Can't post SP when there is panic\n");
a2fbb9ea 3570 return -EIO;
51c1a580 3571 }
a2fbb9ea
ET
3572#endif
3573
34f80b04 3574 spin_lock_bh(&bp->spq_lock);
a2fbb9ea 3575
6e30dd4e
VZ
3576 if (common) {
3577 if (!atomic_read(&bp->eq_spq_left)) {
3578 BNX2X_ERR("BUG! EQ ring full!\n");
3579 spin_unlock_bh(&bp->spq_lock);
3580 bnx2x_panic();
3581 return -EBUSY;
3582 }
3583 } else if (!atomic_read(&bp->cq_spq_left)) {
3584 BNX2X_ERR("BUG! SPQ ring full!\n");
3585 spin_unlock_bh(&bp->spq_lock);
3586 bnx2x_panic();
3587 return -EBUSY;
a2fbb9ea 3588 }
f1410647 3589
28912902
MC
3590 spe = bnx2x_sp_get_next(bp);
3591
a2fbb9ea 3592 /* CID needs port number to be encoded int it */
28912902 3593 spe->hdr.conn_and_cmd_data =
cdaa7cb8
VZ
3594 cpu_to_le32((command << SPE_HDR_CMD_ID_SHIFT) |
3595 HW_CID(bp, cid));
523224a3 3596
619c5cb6 3597 type = (cmd_type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
a2fbb9ea 3598
523224a3
DK
3599 type |= ((BP_FUNC(bp) << SPE_HDR_FUNCTION_ID_SHIFT) &
3600 SPE_HDR_FUNCTION_ID);
a2fbb9ea 3601
523224a3
DK
3602 spe->hdr.type = cpu_to_le16(type);
3603
3604 spe->data.update_data_addr.hi = cpu_to_le32(data_hi);
3605 spe->data.update_data_addr.lo = cpu_to_le32(data_lo);
3606
d6cae238
VZ
3607 /*
3608 * It's ok if the actual decrement is issued towards the memory
3609 * somewhere between the spin_lock and spin_unlock. Thus no
3610 * more explict memory barrier is needed.
3611 */
3612 if (common)
3613 atomic_dec(&bp->eq_spq_left);
3614 else
3615 atomic_dec(&bp->cq_spq_left);
6e30dd4e 3616
a2fbb9ea 3617
51c1a580
MS
3618 DP(BNX2X_MSG_SP,
3619 "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
3620 bp->spq_prod_idx, (u32)U64_HI(bp->spq_mapping),
3621 (u32)(U64_LO(bp->spq_mapping) +
d6cae238 3622 (void *)bp->spq_prod_bd - (void *)bp->spq), command, common,
6e30dd4e
VZ
3623 HW_CID(bp, cid), data_hi, data_lo, type,
3624 atomic_read(&bp->cq_spq_left), atomic_read(&bp->eq_spq_left));
cdaa7cb8 3625
28912902 3626 bnx2x_sp_prod_update(bp);
34f80b04 3627 spin_unlock_bh(&bp->spq_lock);
a2fbb9ea
ET
3628 return 0;
3629}
3630
3631/* acquire split MCP access lock register */
4a37fb66 3632static int bnx2x_acquire_alr(struct bnx2x *bp)
a2fbb9ea 3633{
72fd0718 3634 u32 j, val;
34f80b04 3635 int rc = 0;
a2fbb9ea
ET
3636
3637 might_sleep();
72fd0718 3638 for (j = 0; j < 1000; j++) {
a2fbb9ea
ET
3639 val = (1UL << 31);
3640 REG_WR(bp, GRCBASE_MCP + 0x9c, val);
3641 val = REG_RD(bp, GRCBASE_MCP + 0x9c);
3642 if (val & (1L << 31))
3643 break;
3644
3645 msleep(5);
3646 }
a2fbb9ea 3647 if (!(val & (1L << 31))) {
19680c48 3648 BNX2X_ERR("Cannot acquire MCP access lock register\n");
a2fbb9ea
ET
3649 rc = -EBUSY;
3650 }
3651
3652 return rc;
3653}
3654
4a37fb66
YG
3655/* release split MCP access lock register */
3656static void bnx2x_release_alr(struct bnx2x *bp)
a2fbb9ea 3657{
72fd0718 3658 REG_WR(bp, GRCBASE_MCP + 0x9c, 0);
a2fbb9ea
ET
3659}
3660
523224a3
DK
3661#define BNX2X_DEF_SB_ATT_IDX 0x0001
3662#define BNX2X_DEF_SB_IDX 0x0002
3663
1191cb83 3664static u16 bnx2x_update_dsb_idx(struct bnx2x *bp)
a2fbb9ea 3665{
523224a3 3666 struct host_sp_status_block *def_sb = bp->def_status_blk;
a2fbb9ea
ET
3667 u16 rc = 0;
3668
3669 barrier(); /* status block is written to by the chip */
a2fbb9ea
ET
3670 if (bp->def_att_idx != def_sb->atten_status_block.attn_bits_index) {
3671 bp->def_att_idx = def_sb->atten_status_block.attn_bits_index;
523224a3 3672 rc |= BNX2X_DEF_SB_ATT_IDX;
a2fbb9ea 3673 }
523224a3
DK
3674
3675 if (bp->def_idx != def_sb->sp_sb.running_index) {
3676 bp->def_idx = def_sb->sp_sb.running_index;
3677 rc |= BNX2X_DEF_SB_IDX;
a2fbb9ea 3678 }
523224a3
DK
3679
3680 /* Do not reorder: indecies reading should complete before handling */
3681 barrier();
a2fbb9ea
ET
3682 return rc;
3683}
3684
3685/*
3686 * slow path service functions
3687 */
3688
3689static void bnx2x_attn_int_asserted(struct bnx2x *bp, u32 asserted)
3690{
34f80b04 3691 int port = BP_PORT(bp);
a2fbb9ea
ET
3692 u32 aeu_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
3693 MISC_REG_AEU_MASK_ATTN_FUNC_0;
877e9aa4
ET
3694 u32 nig_int_mask_addr = port ? NIG_REG_MASK_INTERRUPT_PORT1 :
3695 NIG_REG_MASK_INTERRUPT_PORT0;
3fcaf2e5 3696 u32 aeu_mask;
87942b46 3697 u32 nig_mask = 0;
f2e0899f 3698 u32 reg_addr;
a2fbb9ea 3699
a2fbb9ea
ET
3700 if (bp->attn_state & asserted)
3701 BNX2X_ERR("IGU ERROR\n");
3702
3fcaf2e5
EG
3703 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
3704 aeu_mask = REG_RD(bp, aeu_addr);
3705
a2fbb9ea 3706 DP(NETIF_MSG_HW, "aeu_mask %x newly asserted %x\n",
3fcaf2e5 3707 aeu_mask, asserted);
72fd0718 3708 aeu_mask &= ~(asserted & 0x3ff);
3fcaf2e5 3709 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 3710
3fcaf2e5
EG
3711 REG_WR(bp, aeu_addr, aeu_mask);
3712 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea 3713
3fcaf2e5 3714 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
a2fbb9ea 3715 bp->attn_state |= asserted;
3fcaf2e5 3716 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
a2fbb9ea
ET
3717
3718 if (asserted & ATTN_HARD_WIRED_MASK) {
3719 if (asserted & ATTN_NIG_FOR_FUNC) {
a2fbb9ea 3720
a5e9a7cf
EG
3721 bnx2x_acquire_phy_lock(bp);
3722
877e9aa4 3723 /* save nig interrupt mask */
87942b46 3724 nig_mask = REG_RD(bp, nig_int_mask_addr);
a2fbb9ea 3725
361c391e
YR
3726 /* If nig_mask is not set, no need to call the update
3727 * function.
3728 */
3729 if (nig_mask) {
3730 REG_WR(bp, nig_int_mask_addr, 0);
3731
3732 bnx2x_link_attn(bp);
3733 }
a2fbb9ea
ET
3734
3735 /* handle unicore attn? */
3736 }
3737 if (asserted & ATTN_SW_TIMER_4_FUNC)
3738 DP(NETIF_MSG_HW, "ATTN_SW_TIMER_4_FUNC!\n");
3739
3740 if (asserted & GPIO_2_FUNC)
3741 DP(NETIF_MSG_HW, "GPIO_2_FUNC!\n");
3742
3743 if (asserted & GPIO_3_FUNC)
3744 DP(NETIF_MSG_HW, "GPIO_3_FUNC!\n");
3745
3746 if (asserted & GPIO_4_FUNC)
3747 DP(NETIF_MSG_HW, "GPIO_4_FUNC!\n");
3748
3749 if (port == 0) {
3750 if (asserted & ATTN_GENERAL_ATTN_1) {
3751 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_1!\n");
3752 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_1, 0x0);
3753 }
3754 if (asserted & ATTN_GENERAL_ATTN_2) {
3755 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_2!\n");
3756 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_2, 0x0);
3757 }
3758 if (asserted & ATTN_GENERAL_ATTN_3) {
3759 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_3!\n");
3760 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_3, 0x0);
3761 }
3762 } else {
3763 if (asserted & ATTN_GENERAL_ATTN_4) {
3764 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_4!\n");
3765 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_4, 0x0);
3766 }
3767 if (asserted & ATTN_GENERAL_ATTN_5) {
3768 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_5!\n");
3769 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_5, 0x0);
3770 }
3771 if (asserted & ATTN_GENERAL_ATTN_6) {
3772 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_6!\n");
3773 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_6, 0x0);
3774 }
3775 }
3776
3777 } /* if hardwired */
3778
f2e0899f
DK
3779 if (bp->common.int_block == INT_BLOCK_HC)
3780 reg_addr = (HC_REG_COMMAND_REG + port*32 +
3781 COMMAND_REG_ATTN_BITS_SET);
3782 else
3783 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_SET_UPPER*8);
3784
3785 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", asserted,
3786 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
3787 REG_WR(bp, reg_addr, asserted);
a2fbb9ea
ET
3788
3789 /* now set back the mask */
a5e9a7cf 3790 if (asserted & ATTN_NIG_FOR_FUNC) {
27c1151c
YR
3791 /* Verify that IGU ack through BAR was written before restoring
3792 * NIG mask. This loop should exit after 2-3 iterations max.
3793 */
3794 if (bp->common.int_block != INT_BLOCK_HC) {
3795 u32 cnt = 0, igu_acked;
3796 do {
3797 igu_acked = REG_RD(bp,
3798 IGU_REG_ATTENTION_ACK_BITS);
3799 } while (((igu_acked & ATTN_NIG_FOR_FUNC) == 0) &&
3800 (++cnt < MAX_IGU_ATTN_ACK_TO));
3801 if (!igu_acked)
3802 DP(NETIF_MSG_HW,
3803 "Failed to verify IGU ack on time\n");
3804 barrier();
3805 }
87942b46 3806 REG_WR(bp, nig_int_mask_addr, nig_mask);
a5e9a7cf
EG
3807 bnx2x_release_phy_lock(bp);
3808 }
a2fbb9ea
ET
3809}
3810
1191cb83 3811static void bnx2x_fan_failure(struct bnx2x *bp)
fd4ef40d
EG
3812{
3813 int port = BP_PORT(bp);
b7737c9b 3814 u32 ext_phy_config;
fd4ef40d 3815 /* mark the failure */
b7737c9b
YR
3816 ext_phy_config =
3817 SHMEM_RD(bp,
3818 dev_info.port_hw_config[port].external_phy_config);
3819
3820 ext_phy_config &= ~PORT_HW_CFG_XGXS_EXT_PHY_TYPE_MASK;
3821 ext_phy_config |= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE;
fd4ef40d 3822 SHMEM_WR(bp, dev_info.port_hw_config[port].external_phy_config,
b7737c9b 3823 ext_phy_config);
fd4ef40d
EG
3824
3825 /* log the failure */
51c1a580
MS
3826 netdev_err(bp->dev, "Fan Failure on Network Controller has caused the driver to shutdown the card to prevent permanent damage.\n"
3827 "Please contact OEM Support for assistance\n");
8304859a
AE
3828
3829 /*
2de67439 3830 * Schedule device reset (unload)
8304859a
AE
3831 * This is due to some boards consuming sufficient power when driver is
3832 * up to overheat if fan fails.
3833 */
3834 smp_mb__before_clear_bit();
3835 set_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state);
3836 smp_mb__after_clear_bit();
3837 schedule_delayed_work(&bp->sp_rtnl_task, 0);
3838
fd4ef40d 3839}
ab6ad5a4 3840
1191cb83 3841static void bnx2x_attn_int_deasserted0(struct bnx2x *bp, u32 attn)
a2fbb9ea 3842{
34f80b04 3843 int port = BP_PORT(bp);
877e9aa4 3844 int reg_offset;
d90d96ba 3845 u32 val;
877e9aa4 3846
34f80b04
EG
3847 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
3848 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
877e9aa4 3849
34f80b04 3850 if (attn & AEU_INPUTS_ATTN_BITS_SPIO5) {
877e9aa4
ET
3851
3852 val = REG_RD(bp, reg_offset);
3853 val &= ~AEU_INPUTS_ATTN_BITS_SPIO5;
3854 REG_WR(bp, reg_offset, val);
3855
3856 BNX2X_ERR("SPIO5 hw attention\n");
3857
fd4ef40d 3858 /* Fan failure attention */
d90d96ba 3859 bnx2x_hw_reset_phy(&bp->link_params);
fd4ef40d 3860 bnx2x_fan_failure(bp);
877e9aa4 3861 }
34f80b04 3862
3deb8167 3863 if ((attn & bp->link_vars.aeu_int_mask) && bp->port.pmf) {
589abe3a
EG
3864 bnx2x_acquire_phy_lock(bp);
3865 bnx2x_handle_module_detect_int(&bp->link_params);
3866 bnx2x_release_phy_lock(bp);
3867 }
3868
34f80b04
EG
3869 if (attn & HW_INTERRUT_ASSERT_SET_0) {
3870
3871 val = REG_RD(bp, reg_offset);
3872 val &= ~(attn & HW_INTERRUT_ASSERT_SET_0);
3873 REG_WR(bp, reg_offset, val);
3874
3875 BNX2X_ERR("FATAL HW block attention set0 0x%x\n",
0fc5d009 3876 (u32)(attn & HW_INTERRUT_ASSERT_SET_0));
34f80b04
EG
3877 bnx2x_panic();
3878 }
877e9aa4
ET
3879}
3880
1191cb83 3881static void bnx2x_attn_int_deasserted1(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3882{
3883 u32 val;
3884
0626b899 3885 if (attn & AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT) {
877e9aa4
ET
3886
3887 val = REG_RD(bp, DORQ_REG_DORQ_INT_STS_CLR);
3888 BNX2X_ERR("DB hw attention 0x%x\n", val);
3889 /* DORQ discard attention */
3890 if (val & 0x2)
3891 BNX2X_ERR("FATAL error from DORQ\n");
3892 }
34f80b04
EG
3893
3894 if (attn & HW_INTERRUT_ASSERT_SET_1) {
3895
3896 int port = BP_PORT(bp);
3897 int reg_offset;
3898
3899 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1 :
3900 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1);
3901
3902 val = REG_RD(bp, reg_offset);
3903 val &= ~(attn & HW_INTERRUT_ASSERT_SET_1);
3904 REG_WR(bp, reg_offset, val);
3905
3906 BNX2X_ERR("FATAL HW block attention set1 0x%x\n",
0fc5d009 3907 (u32)(attn & HW_INTERRUT_ASSERT_SET_1));
34f80b04
EG
3908 bnx2x_panic();
3909 }
877e9aa4
ET
3910}
3911
1191cb83 3912static void bnx2x_attn_int_deasserted2(struct bnx2x *bp, u32 attn)
877e9aa4
ET
3913{
3914 u32 val;
3915
3916 if (attn & AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT) {
3917
3918 val = REG_RD(bp, CFC_REG_CFC_INT_STS_CLR);
3919 BNX2X_ERR("CFC hw attention 0x%x\n", val);
3920 /* CFC error attention */
3921 if (val & 0x2)
3922 BNX2X_ERR("FATAL error from CFC\n");
3923 }
3924
3925 if (attn & AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT) {
877e9aa4 3926 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_0);
619c5cb6 3927 BNX2X_ERR("PXP hw attention-0 0x%x\n", val);
877e9aa4
ET
3928 /* RQ_USDMDP_FIFO_OVERFLOW */
3929 if (val & 0x18000)
3930 BNX2X_ERR("FATAL error from PXP\n");
619c5cb6
VZ
3931
3932 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3933 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_1);
3934 BNX2X_ERR("PXP hw attention-1 0x%x\n", val);
3935 }
877e9aa4 3936 }
34f80b04
EG
3937
3938 if (attn & HW_INTERRUT_ASSERT_SET_2) {
3939
3940 int port = BP_PORT(bp);
3941 int reg_offset;
3942
3943 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2 :
3944 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2);
3945
3946 val = REG_RD(bp, reg_offset);
3947 val &= ~(attn & HW_INTERRUT_ASSERT_SET_2);
3948 REG_WR(bp, reg_offset, val);
3949
3950 BNX2X_ERR("FATAL HW block attention set2 0x%x\n",
0fc5d009 3951 (u32)(attn & HW_INTERRUT_ASSERT_SET_2));
34f80b04
EG
3952 bnx2x_panic();
3953 }
877e9aa4
ET
3954}
3955
1191cb83 3956static void bnx2x_attn_int_deasserted3(struct bnx2x *bp, u32 attn)
877e9aa4 3957{
34f80b04
EG
3958 u32 val;
3959
877e9aa4
ET
3960 if (attn & EVEREST_GEN_ATTN_IN_USE_MASK) {
3961
34f80b04
EG
3962 if (attn & BNX2X_PMF_LINK_ASSERT) {
3963 int func = BP_FUNC(bp);
3964
3965 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
a3348722 3966 bnx2x_read_mf_cfg(bp);
f2e0899f
DK
3967 bp->mf_config[BP_VN(bp)] = MF_CFG_RD(bp,
3968 func_mf_config[BP_ABS_FUNC(bp)].config);
3969 val = SHMEM_RD(bp,
3970 func_mb[BP_FW_MB_IDX(bp)].drv_status);
2691d51d
EG
3971 if (val & DRV_STATUS_DCC_EVENT_MASK)
3972 bnx2x_dcc_event(bp,
3973 (val & DRV_STATUS_DCC_EVENT_MASK));
0793f83f
DK
3974
3975 if (val & DRV_STATUS_SET_MF_BW)
3976 bnx2x_set_mf_bw(bp);
3977
1d187b34
BW
3978 if (val & DRV_STATUS_DRV_INFO_REQ)
3979 bnx2x_handle_drv_info_req(bp);
d16132ce
AE
3980
3981 if (val & DRV_STATUS_VF_DISABLED)
3982 bnx2x_vf_handle_flr_event(bp);
3983
2691d51d 3984 if ((bp->port.pmf == 0) && (val & DRV_STATUS_PMF))
34f80b04
EG
3985 bnx2x_pmf_update(bp);
3986
e4901dde 3987 if (bp->port.pmf &&
785b9b1a
SR
3988 (val & DRV_STATUS_DCBX_NEGOTIATION_RESULTS) &&
3989 bp->dcbx_enabled > 0)
e4901dde
VZ
3990 /* start dcbx state machine */
3991 bnx2x_dcbx_set_params(bp,
3992 BNX2X_DCBX_STATE_NEG_RECEIVED);
a3348722
BW
3993 if (val & DRV_STATUS_AFEX_EVENT_MASK)
3994 bnx2x_handle_afex_cmd(bp,
3995 val & DRV_STATUS_AFEX_EVENT_MASK);
c8c60d88
YM
3996 if (val & DRV_STATUS_EEE_NEGOTIATION_RESULTS)
3997 bnx2x_handle_eee_event(bp);
3deb8167
YR
3998 if (bp->link_vars.periodic_flags &
3999 PERIODIC_FLAGS_LINK_EVENT) {
4000 /* sync with link */
4001 bnx2x_acquire_phy_lock(bp);
4002 bp->link_vars.periodic_flags &=
4003 ~PERIODIC_FLAGS_LINK_EVENT;
4004 bnx2x_release_phy_lock(bp);
4005 if (IS_MF(bp))
4006 bnx2x_link_sync_notify(bp);
4007 bnx2x_link_report(bp);
4008 }
4009 /* Always call it here: bnx2x_link_report() will
4010 * prevent the link indication duplication.
4011 */
4012 bnx2x__link_status_update(bp);
34f80b04 4013 } else if (attn & BNX2X_MC_ASSERT_BITS) {
877e9aa4
ET
4014
4015 BNX2X_ERR("MC assert!\n");
d6cae238 4016 bnx2x_mc_assert(bp);
877e9aa4
ET
4017 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_10, 0);
4018 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_9, 0);
4019 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_8, 0);
4020 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_7, 0);
4021 bnx2x_panic();
4022
4023 } else if (attn & BNX2X_MCP_ASSERT) {
4024
4025 BNX2X_ERR("MCP assert!\n");
4026 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_11, 0);
34f80b04 4027 bnx2x_fw_dump(bp);
877e9aa4
ET
4028
4029 } else
4030 BNX2X_ERR("Unknown HW assert! (attn 0x%x)\n", attn);
4031 }
4032
4033 if (attn & EVEREST_LATCHED_ATTN_IN_USE_MASK) {
34f80b04
EG
4034 BNX2X_ERR("LATCHED attention 0x%08x (masked)\n", attn);
4035 if (attn & BNX2X_GRC_TIMEOUT) {
f2e0899f
DK
4036 val = CHIP_IS_E1(bp) ? 0 :
4037 REG_RD(bp, MISC_REG_GRC_TIMEOUT_ATTN);
34f80b04
EG
4038 BNX2X_ERR("GRC time-out 0x%08x\n", val);
4039 }
4040 if (attn & BNX2X_GRC_RSV) {
f2e0899f
DK
4041 val = CHIP_IS_E1(bp) ? 0 :
4042 REG_RD(bp, MISC_REG_GRC_RSV_ATTN);
34f80b04
EG
4043 BNX2X_ERR("GRC reserved 0x%08x\n", val);
4044 }
877e9aa4 4045 REG_WR(bp, MISC_REG_AEU_CLR_LATCH_SIGNAL, 0x7ff);
877e9aa4
ET
4046 }
4047}
4048
c9ee9206
VZ
4049/*
4050 * Bits map:
4051 * 0-7 - Engine0 load counter.
4052 * 8-15 - Engine1 load counter.
4053 * 16 - Engine0 RESET_IN_PROGRESS bit.
4054 * 17 - Engine1 RESET_IN_PROGRESS bit.
4055 * 18 - Engine0 ONE_IS_LOADED. Set when there is at least one active function
4056 * on the engine
4057 * 19 - Engine1 ONE_IS_LOADED.
4058 * 20 - Chip reset flow bit. When set none-leader must wait for both engines
4059 * leader to complete (check for both RESET_IN_PROGRESS bits and not for
4060 * just the one belonging to its engine).
4061 *
4062 */
4063#define BNX2X_RECOVERY_GLOB_REG MISC_REG_GENERIC_POR_1
4064
4065#define BNX2X_PATH0_LOAD_CNT_MASK 0x000000ff
4066#define BNX2X_PATH0_LOAD_CNT_SHIFT 0
4067#define BNX2X_PATH1_LOAD_CNT_MASK 0x0000ff00
4068#define BNX2X_PATH1_LOAD_CNT_SHIFT 8
4069#define BNX2X_PATH0_RST_IN_PROG_BIT 0x00010000
4070#define BNX2X_PATH1_RST_IN_PROG_BIT 0x00020000
4071#define BNX2X_GLOBAL_RESET_BIT 0x00040000
4072
4073/*
4074 * Set the GLOBAL_RESET bit.
4075 *
4076 * Should be run under rtnl lock
4077 */
4078void bnx2x_set_reset_global(struct bnx2x *bp)
4079{
f16da43b
AE
4080 u32 val;
4081 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4082 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 4083 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val | BNX2X_GLOBAL_RESET_BIT);
f16da43b 4084 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206
VZ
4085}
4086
4087/*
4088 * Clear the GLOBAL_RESET bit.
4089 *
4090 * Should be run under rtnl lock
4091 */
1191cb83 4092static void bnx2x_clear_reset_global(struct bnx2x *bp)
c9ee9206 4093{
f16da43b
AE
4094 u32 val;
4095 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4096 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 4097 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val & (~BNX2X_GLOBAL_RESET_BIT));
f16da43b 4098 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206 4099}
f85582f8 4100
72fd0718 4101/*
c9ee9206
VZ
4102 * Checks the GLOBAL_RESET bit.
4103 *
72fd0718
VZ
4104 * should be run under rtnl lock
4105 */
1191cb83 4106static bool bnx2x_reset_is_global(struct bnx2x *bp)
c9ee9206
VZ
4107{
4108 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4109
4110 DP(NETIF_MSG_HW, "GEN_REG_VAL=0x%08x\n", val);
4111 return (val & BNX2X_GLOBAL_RESET_BIT) ? true : false;
4112}
4113
4114/*
4115 * Clear RESET_IN_PROGRESS bit for the current engine.
4116 *
4117 * Should be run under rtnl lock
4118 */
1191cb83 4119static void bnx2x_set_reset_done(struct bnx2x *bp)
72fd0718 4120{
f16da43b 4121 u32 val;
c9ee9206
VZ
4122 u32 bit = BP_PATH(bp) ?
4123 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
4124 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4125 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4126
4127 /* Clear the bit */
4128 val &= ~bit;
4129 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4130
4131 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4132}
4133
4134/*
c9ee9206
VZ
4135 * Set RESET_IN_PROGRESS for the current engine.
4136 *
72fd0718
VZ
4137 * should be run under rtnl lock
4138 */
c9ee9206 4139void bnx2x_set_reset_in_progress(struct bnx2x *bp)
72fd0718 4140{
f16da43b 4141 u32 val;
c9ee9206
VZ
4142 u32 bit = BP_PATH(bp) ?
4143 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
4144 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4145 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4146
4147 /* Set the bit */
4148 val |= bit;
4149 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 4150 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4151}
4152
4153/*
c9ee9206 4154 * Checks the RESET_IN_PROGRESS bit for the given engine.
72fd0718
VZ
4155 * should be run under rtnl lock
4156 */
c9ee9206 4157bool bnx2x_reset_is_done(struct bnx2x *bp, int engine)
72fd0718 4158{
c9ee9206
VZ
4159 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4160 u32 bit = engine ?
4161 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
4162
4163 /* return false if bit is set */
4164 return (val & bit) ? false : true;
72fd0718
VZ
4165}
4166
4167/*
889b9af3 4168 * set pf load for the current pf.
c9ee9206 4169 *
72fd0718
VZ
4170 * should be run under rtnl lock
4171 */
889b9af3 4172void bnx2x_set_pf_load(struct bnx2x *bp)
72fd0718 4173{
f16da43b 4174 u32 val1, val;
c9ee9206
VZ
4175 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4176 BNX2X_PATH0_LOAD_CNT_MASK;
4177 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4178 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4179
f16da43b
AE
4180 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4181 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4182
51c1a580 4183 DP(NETIF_MSG_IFUP, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4184
c9ee9206
VZ
4185 /* get the current counter value */
4186 val1 = (val & mask) >> shift;
4187
889b9af3
AE
4188 /* set bit of that PF */
4189 val1 |= (1 << bp->pf_num);
c9ee9206
VZ
4190
4191 /* clear the old value */
4192 val &= ~mask;
4193
4194 /* set the new one */
4195 val |= ((val1 << shift) & mask);
4196
4197 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 4198 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4199}
4200
c9ee9206 4201/**
889b9af3 4202 * bnx2x_clear_pf_load - clear pf load mark
c9ee9206
VZ
4203 *
4204 * @bp: driver handle
4205 *
4206 * Should be run under rtnl lock.
4207 * Decrements the load counter for the current engine. Returns
889b9af3 4208 * whether other functions are still loaded
72fd0718 4209 */
889b9af3 4210bool bnx2x_clear_pf_load(struct bnx2x *bp)
72fd0718 4211{
f16da43b 4212 u32 val1, val;
c9ee9206
VZ
4213 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4214 BNX2X_PATH0_LOAD_CNT_MASK;
4215 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4216 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4217
f16da43b
AE
4218 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4219 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
51c1a580 4220 DP(NETIF_MSG_IFDOWN, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4221
c9ee9206
VZ
4222 /* get the current counter value */
4223 val1 = (val & mask) >> shift;
4224
889b9af3
AE
4225 /* clear bit of that PF */
4226 val1 &= ~(1 << bp->pf_num);
c9ee9206
VZ
4227
4228 /* clear the old value */
4229 val &= ~mask;
4230
4231 /* set the new one */
4232 val |= ((val1 << shift) & mask);
4233
4234 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4235 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4236 return val1 != 0;
72fd0718
VZ
4237}
4238
4239/*
889b9af3 4240 * Read the load status for the current engine.
c9ee9206 4241 *
72fd0718
VZ
4242 * should be run under rtnl lock
4243 */
1191cb83 4244static bool bnx2x_get_load_status(struct bnx2x *bp, int engine)
72fd0718 4245{
c9ee9206
VZ
4246 u32 mask = (engine ? BNX2X_PATH1_LOAD_CNT_MASK :
4247 BNX2X_PATH0_LOAD_CNT_MASK);
4248 u32 shift = (engine ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4249 BNX2X_PATH0_LOAD_CNT_SHIFT);
4250 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4251
51c1a580 4252 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "GLOB_REG=0x%08x\n", val);
c9ee9206
VZ
4253
4254 val = (val & mask) >> shift;
4255
51c1a580
MS
4256 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "load mask for engine %d = 0x%x\n",
4257 engine, val);
c9ee9206 4258
889b9af3 4259 return val != 0;
72fd0718
VZ
4260}
4261
1191cb83 4262static void _print_next_block(int idx, const char *blk)
72fd0718 4263{
f1deab50 4264 pr_cont("%s%s", idx ? ", " : "", blk);
72fd0718
VZ
4265}
4266
1191cb83
ED
4267static int bnx2x_check_blocks_with_parity0(u32 sig, int par_num,
4268 bool print)
72fd0718
VZ
4269{
4270 int i = 0;
4271 u32 cur_bit = 0;
4272 for (i = 0; sig; i++) {
4273 cur_bit = ((u32)0x1 << i);
4274 if (sig & cur_bit) {
4275 switch (cur_bit) {
4276 case AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR:
c9ee9206
VZ
4277 if (print)
4278 _print_next_block(par_num++, "BRB");
72fd0718
VZ
4279 break;
4280 case AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR:
c9ee9206
VZ
4281 if (print)
4282 _print_next_block(par_num++, "PARSER");
72fd0718
VZ
4283 break;
4284 case AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR:
c9ee9206
VZ
4285 if (print)
4286 _print_next_block(par_num++, "TSDM");
72fd0718
VZ
4287 break;
4288 case AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR:
c9ee9206
VZ
4289 if (print)
4290 _print_next_block(par_num++,
4291 "SEARCHER");
4292 break;
4293 case AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR:
4294 if (print)
4295 _print_next_block(par_num++, "TCM");
72fd0718
VZ
4296 break;
4297 case AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR:
c9ee9206
VZ
4298 if (print)
4299 _print_next_block(par_num++, "TSEMI");
4300 break;
4301 case AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR:
4302 if (print)
4303 _print_next_block(par_num++, "XPB");
72fd0718
VZ
4304 break;
4305 }
4306
4307 /* Clear the bit */
4308 sig &= ~cur_bit;
4309 }
4310 }
4311
4312 return par_num;
4313}
4314
1191cb83
ED
4315static int bnx2x_check_blocks_with_parity1(u32 sig, int par_num,
4316 bool *global, bool print)
72fd0718
VZ
4317{
4318 int i = 0;
4319 u32 cur_bit = 0;
4320 for (i = 0; sig; i++) {
4321 cur_bit = ((u32)0x1 << i);
4322 if (sig & cur_bit) {
4323 switch (cur_bit) {
c9ee9206
VZ
4324 case AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR:
4325 if (print)
4326 _print_next_block(par_num++, "PBF");
72fd0718
VZ
4327 break;
4328 case AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR:
c9ee9206
VZ
4329 if (print)
4330 _print_next_block(par_num++, "QM");
4331 break;
4332 case AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR:
4333 if (print)
4334 _print_next_block(par_num++, "TM");
72fd0718
VZ
4335 break;
4336 case AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR:
c9ee9206
VZ
4337 if (print)
4338 _print_next_block(par_num++, "XSDM");
4339 break;
4340 case AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR:
4341 if (print)
4342 _print_next_block(par_num++, "XCM");
72fd0718
VZ
4343 break;
4344 case AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR:
c9ee9206
VZ
4345 if (print)
4346 _print_next_block(par_num++, "XSEMI");
72fd0718
VZ
4347 break;
4348 case AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR:
c9ee9206
VZ
4349 if (print)
4350 _print_next_block(par_num++,
4351 "DOORBELLQ");
4352 break;
4353 case AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR:
4354 if (print)
4355 _print_next_block(par_num++, "NIG");
72fd0718
VZ
4356 break;
4357 case AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR:
c9ee9206
VZ
4358 if (print)
4359 _print_next_block(par_num++,
4360 "VAUX PCI CORE");
4361 *global = true;
72fd0718
VZ
4362 break;
4363 case AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR:
c9ee9206
VZ
4364 if (print)
4365 _print_next_block(par_num++, "DEBUG");
72fd0718
VZ
4366 break;
4367 case AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR:
c9ee9206
VZ
4368 if (print)
4369 _print_next_block(par_num++, "USDM");
72fd0718 4370 break;
8736c826
VZ
4371 case AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR:
4372 if (print)
4373 _print_next_block(par_num++, "UCM");
4374 break;
72fd0718 4375 case AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR:
c9ee9206
VZ
4376 if (print)
4377 _print_next_block(par_num++, "USEMI");
72fd0718
VZ
4378 break;
4379 case AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR:
c9ee9206
VZ
4380 if (print)
4381 _print_next_block(par_num++, "UPB");
72fd0718
VZ
4382 break;
4383 case AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR:
c9ee9206
VZ
4384 if (print)
4385 _print_next_block(par_num++, "CSDM");
72fd0718 4386 break;
8736c826
VZ
4387 case AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR:
4388 if (print)
4389 _print_next_block(par_num++, "CCM");
4390 break;
72fd0718
VZ
4391 }
4392
4393 /* Clear the bit */
4394 sig &= ~cur_bit;
4395 }
4396 }
4397
4398 return par_num;
4399}
4400
1191cb83
ED
4401static int bnx2x_check_blocks_with_parity2(u32 sig, int par_num,
4402 bool print)
72fd0718
VZ
4403{
4404 int i = 0;
4405 u32 cur_bit = 0;
4406 for (i = 0; sig; i++) {
4407 cur_bit = ((u32)0x1 << i);
4408 if (sig & cur_bit) {
4409 switch (cur_bit) {
4410 case AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR:
c9ee9206
VZ
4411 if (print)
4412 _print_next_block(par_num++, "CSEMI");
72fd0718
VZ
4413 break;
4414 case AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR:
c9ee9206
VZ
4415 if (print)
4416 _print_next_block(par_num++, "PXP");
72fd0718
VZ
4417 break;
4418 case AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR:
c9ee9206
VZ
4419 if (print)
4420 _print_next_block(par_num++,
72fd0718
VZ
4421 "PXPPCICLOCKCLIENT");
4422 break;
4423 case AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR:
c9ee9206
VZ
4424 if (print)
4425 _print_next_block(par_num++, "CFC");
72fd0718
VZ
4426 break;
4427 case AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR:
c9ee9206
VZ
4428 if (print)
4429 _print_next_block(par_num++, "CDU");
4430 break;
4431 case AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR:
4432 if (print)
4433 _print_next_block(par_num++, "DMAE");
72fd0718
VZ
4434 break;
4435 case AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR:
c9ee9206
VZ
4436 if (print)
4437 _print_next_block(par_num++, "IGU");
72fd0718
VZ
4438 break;
4439 case AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR:
c9ee9206
VZ
4440 if (print)
4441 _print_next_block(par_num++, "MISC");
72fd0718
VZ
4442 break;
4443 }
4444
4445 /* Clear the bit */
4446 sig &= ~cur_bit;
4447 }
4448 }
4449
4450 return par_num;
4451}
4452
1191cb83
ED
4453static int bnx2x_check_blocks_with_parity3(u32 sig, int par_num,
4454 bool *global, bool print)
72fd0718
VZ
4455{
4456 int i = 0;
4457 u32 cur_bit = 0;
4458 for (i = 0; sig; i++) {
4459 cur_bit = ((u32)0x1 << i);
4460 if (sig & cur_bit) {
4461 switch (cur_bit) {
4462 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY:
c9ee9206
VZ
4463 if (print)
4464 _print_next_block(par_num++, "MCP ROM");
4465 *global = true;
72fd0718
VZ
4466 break;
4467 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY:
c9ee9206
VZ
4468 if (print)
4469 _print_next_block(par_num++,
4470 "MCP UMP RX");
4471 *global = true;
72fd0718
VZ
4472 break;
4473 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY:
c9ee9206
VZ
4474 if (print)
4475 _print_next_block(par_num++,
4476 "MCP UMP TX");
4477 *global = true;
72fd0718
VZ
4478 break;
4479 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY:
c9ee9206
VZ
4480 if (print)
4481 _print_next_block(par_num++,
4482 "MCP SCPAD");
4483 *global = true;
72fd0718
VZ
4484 break;
4485 }
4486
4487 /* Clear the bit */
4488 sig &= ~cur_bit;
4489 }
4490 }
4491
4492 return par_num;
4493}
4494
1191cb83
ED
4495static int bnx2x_check_blocks_with_parity4(u32 sig, int par_num,
4496 bool print)
8736c826
VZ
4497{
4498 int i = 0;
4499 u32 cur_bit = 0;
4500 for (i = 0; sig; i++) {
4501 cur_bit = ((u32)0x1 << i);
4502 if (sig & cur_bit) {
4503 switch (cur_bit) {
4504 case AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR:
4505 if (print)
4506 _print_next_block(par_num++, "PGLUE_B");
4507 break;
4508 case AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR:
4509 if (print)
4510 _print_next_block(par_num++, "ATC");
4511 break;
4512 }
4513
4514 /* Clear the bit */
4515 sig &= ~cur_bit;
4516 }
4517 }
4518
4519 return par_num;
4520}
4521
1191cb83
ED
4522static bool bnx2x_parity_attn(struct bnx2x *bp, bool *global, bool print,
4523 u32 *sig)
72fd0718 4524{
8736c826
VZ
4525 if ((sig[0] & HW_PRTY_ASSERT_SET_0) ||
4526 (sig[1] & HW_PRTY_ASSERT_SET_1) ||
4527 (sig[2] & HW_PRTY_ASSERT_SET_2) ||
4528 (sig[3] & HW_PRTY_ASSERT_SET_3) ||
4529 (sig[4] & HW_PRTY_ASSERT_SET_4)) {
72fd0718 4530 int par_num = 0;
51c1a580
MS
4531 DP(NETIF_MSG_HW, "Was parity error: HW block parity attention:\n"
4532 "[0]:0x%08x [1]:0x%08x [2]:0x%08x [3]:0x%08x [4]:0x%08x\n",
8736c826
VZ
4533 sig[0] & HW_PRTY_ASSERT_SET_0,
4534 sig[1] & HW_PRTY_ASSERT_SET_1,
4535 sig[2] & HW_PRTY_ASSERT_SET_2,
4536 sig[3] & HW_PRTY_ASSERT_SET_3,
4537 sig[4] & HW_PRTY_ASSERT_SET_4);
c9ee9206
VZ
4538 if (print)
4539 netdev_err(bp->dev,
4540 "Parity errors detected in blocks: ");
4541 par_num = bnx2x_check_blocks_with_parity0(
8736c826 4542 sig[0] & HW_PRTY_ASSERT_SET_0, par_num, print);
c9ee9206 4543 par_num = bnx2x_check_blocks_with_parity1(
8736c826 4544 sig[1] & HW_PRTY_ASSERT_SET_1, par_num, global, print);
c9ee9206 4545 par_num = bnx2x_check_blocks_with_parity2(
8736c826 4546 sig[2] & HW_PRTY_ASSERT_SET_2, par_num, print);
c9ee9206 4547 par_num = bnx2x_check_blocks_with_parity3(
8736c826
VZ
4548 sig[3] & HW_PRTY_ASSERT_SET_3, par_num, global, print);
4549 par_num = bnx2x_check_blocks_with_parity4(
4550 sig[4] & HW_PRTY_ASSERT_SET_4, par_num, print);
4551
c9ee9206
VZ
4552 if (print)
4553 pr_cont("\n");
8736c826 4554
72fd0718
VZ
4555 return true;
4556 } else
4557 return false;
4558}
4559
c9ee9206
VZ
4560/**
4561 * bnx2x_chk_parity_attn - checks for parity attentions.
4562 *
4563 * @bp: driver handle
4564 * @global: true if there was a global attention
4565 * @print: show parity attention in syslog
4566 */
4567bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print)
877e9aa4 4568{
8736c826 4569 struct attn_route attn = { {0} };
72fd0718
VZ
4570 int port = BP_PORT(bp);
4571
4572 attn.sig[0] = REG_RD(bp,
4573 MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 +
4574 port*4);
4575 attn.sig[1] = REG_RD(bp,
4576 MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 +
4577 port*4);
4578 attn.sig[2] = REG_RD(bp,
4579 MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 +
4580 port*4);
4581 attn.sig[3] = REG_RD(bp,
4582 MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 +
4583 port*4);
4584
8736c826
VZ
4585 if (!CHIP_IS_E1x(bp))
4586 attn.sig[4] = REG_RD(bp,
4587 MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 +
4588 port*4);
4589
4590 return bnx2x_parity_attn(bp, global, print, attn.sig);
72fd0718
VZ
4591}
4592
f2e0899f 4593
1191cb83 4594static void bnx2x_attn_int_deasserted4(struct bnx2x *bp, u32 attn)
f2e0899f
DK
4595{
4596 u32 val;
4597 if (attn & AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT) {
4598
4599 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS_CLR);
4600 BNX2X_ERR("PGLUE hw attention 0x%x\n", val);
4601 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR)
51c1a580 4602 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR\n");
f2e0899f 4603 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR)
51c1a580 4604 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR\n");
f2e0899f 4605 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN)
51c1a580 4606 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN\n");
f2e0899f 4607 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN)
51c1a580 4608 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN\n");
f2e0899f
DK
4609 if (val &
4610 PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN)
51c1a580 4611 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN\n");
f2e0899f
DK
4612 if (val &
4613 PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN)
51c1a580 4614 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN\n");
f2e0899f 4615 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN)
51c1a580 4616 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN\n");
f2e0899f 4617 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN)
51c1a580 4618 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN\n");
f2e0899f 4619 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW)
51c1a580 4620 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW\n");
f2e0899f
DK
4621 }
4622 if (attn & AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT) {
4623 val = REG_RD(bp, ATC_REG_ATC_INT_STS_CLR);
4624 BNX2X_ERR("ATC hw attention 0x%x\n", val);
4625 if (val & ATC_ATC_INT_STS_REG_ADDRESS_ERROR)
4626 BNX2X_ERR("ATC_ATC_INT_STS_REG_ADDRESS_ERROR\n");
4627 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND)
51c1a580 4628 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND\n");
f2e0899f 4629 if (val & ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS)
51c1a580 4630 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS\n");
f2e0899f 4631 if (val & ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT)
51c1a580 4632 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT\n");
f2e0899f
DK
4633 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR)
4634 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR\n");
4635 if (val & ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU)
51c1a580 4636 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU\n");
f2e0899f
DK
4637 }
4638
4639 if (attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4640 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)) {
4641 BNX2X_ERR("FATAL parity attention set4 0x%x\n",
4642 (u32)(attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
4643 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)));
4644 }
4645
4646}
4647
72fd0718
VZ
4648static void bnx2x_attn_int_deasserted(struct bnx2x *bp, u32 deasserted)
4649{
4650 struct attn_route attn, *group_mask;
34f80b04 4651 int port = BP_PORT(bp);
877e9aa4 4652 int index;
a2fbb9ea
ET
4653 u32 reg_addr;
4654 u32 val;
3fcaf2e5 4655 u32 aeu_mask;
c9ee9206 4656 bool global = false;
a2fbb9ea
ET
4657
4658 /* need to take HW lock because MCP or other port might also
4659 try to handle this event */
4a37fb66 4660 bnx2x_acquire_alr(bp);
a2fbb9ea 4661
c9ee9206
VZ
4662 if (bnx2x_chk_parity_attn(bp, &global, true)) {
4663#ifndef BNX2X_STOP_ON_ERROR
72fd0718 4664 bp->recovery_state = BNX2X_RECOVERY_INIT;
7be08a72 4665 schedule_delayed_work(&bp->sp_rtnl_task, 0);
72fd0718
VZ
4666 /* Disable HW interrupts */
4667 bnx2x_int_disable(bp);
72fd0718
VZ
4668 /* In case of parity errors don't handle attentions so that
4669 * other function would "see" parity errors.
4670 */
c9ee9206
VZ
4671#else
4672 bnx2x_panic();
4673#endif
4674 bnx2x_release_alr(bp);
72fd0718
VZ
4675 return;
4676 }
4677
a2fbb9ea
ET
4678 attn.sig[0] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + port*4);
4679 attn.sig[1] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 + port*4);
4680 attn.sig[2] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 + port*4);
4681 attn.sig[3] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 + port*4);
619c5cb6 4682 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
4683 attn.sig[4] =
4684 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 + port*4);
4685 else
4686 attn.sig[4] = 0;
4687
4688 DP(NETIF_MSG_HW, "attn: %08x %08x %08x %08x %08x\n",
4689 attn.sig[0], attn.sig[1], attn.sig[2], attn.sig[3], attn.sig[4]);
a2fbb9ea
ET
4690
4691 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
4692 if (deasserted & (1 << index)) {
72fd0718 4693 group_mask = &bp->attn_group[index];
a2fbb9ea 4694
51c1a580 4695 DP(NETIF_MSG_HW, "group[%d]: %08x %08x %08x %08x %08x\n",
f2e0899f
DK
4696 index,
4697 group_mask->sig[0], group_mask->sig[1],
4698 group_mask->sig[2], group_mask->sig[3],
4699 group_mask->sig[4]);
a2fbb9ea 4700
f2e0899f
DK
4701 bnx2x_attn_int_deasserted4(bp,
4702 attn.sig[4] & group_mask->sig[4]);
877e9aa4 4703 bnx2x_attn_int_deasserted3(bp,
72fd0718 4704 attn.sig[3] & group_mask->sig[3]);
877e9aa4 4705 bnx2x_attn_int_deasserted1(bp,
72fd0718 4706 attn.sig[1] & group_mask->sig[1]);
877e9aa4 4707 bnx2x_attn_int_deasserted2(bp,
72fd0718 4708 attn.sig[2] & group_mask->sig[2]);
877e9aa4 4709 bnx2x_attn_int_deasserted0(bp,
72fd0718 4710 attn.sig[0] & group_mask->sig[0]);
a2fbb9ea
ET
4711 }
4712 }
4713
4a37fb66 4714 bnx2x_release_alr(bp);
a2fbb9ea 4715
f2e0899f
DK
4716 if (bp->common.int_block == INT_BLOCK_HC)
4717 reg_addr = (HC_REG_COMMAND_REG + port*32 +
4718 COMMAND_REG_ATTN_BITS_CLR);
4719 else
4720 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_CLR_UPPER*8);
a2fbb9ea
ET
4721
4722 val = ~deasserted;
f2e0899f
DK
4723 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", val,
4724 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
5c862848 4725 REG_WR(bp, reg_addr, val);
a2fbb9ea 4726
a2fbb9ea 4727 if (~bp->attn_state & deasserted)
3fcaf2e5 4728 BNX2X_ERR("IGU ERROR\n");
a2fbb9ea
ET
4729
4730 reg_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
4731 MISC_REG_AEU_MASK_ATTN_FUNC_0;
4732
3fcaf2e5
EG
4733 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
4734 aeu_mask = REG_RD(bp, reg_addr);
4735
4736 DP(NETIF_MSG_HW, "aeu_mask %x newly deasserted %x\n",
4737 aeu_mask, deasserted);
72fd0718 4738 aeu_mask |= (deasserted & 0x3ff);
3fcaf2e5 4739 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 4740
3fcaf2e5
EG
4741 REG_WR(bp, reg_addr, aeu_mask);
4742 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea
ET
4743
4744 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
4745 bp->attn_state &= ~deasserted;
4746 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
4747}
4748
4749static void bnx2x_attn_int(struct bnx2x *bp)
4750{
4751 /* read local copy of bits */
68d59484
EG
4752 u32 attn_bits = le32_to_cpu(bp->def_status_blk->atten_status_block.
4753 attn_bits);
4754 u32 attn_ack = le32_to_cpu(bp->def_status_blk->atten_status_block.
4755 attn_bits_ack);
a2fbb9ea
ET
4756 u32 attn_state = bp->attn_state;
4757
4758 /* look for changed bits */
4759 u32 asserted = attn_bits & ~attn_ack & ~attn_state;
4760 u32 deasserted = ~attn_bits & attn_ack & attn_state;
4761
4762 DP(NETIF_MSG_HW,
4763 "attn_bits %x attn_ack %x asserted %x deasserted %x\n",
4764 attn_bits, attn_ack, asserted, deasserted);
4765
4766 if (~(attn_bits ^ attn_ack) & (attn_bits ^ attn_state))
34f80b04 4767 BNX2X_ERR("BAD attention state\n");
a2fbb9ea
ET
4768
4769 /* handle bits that were raised */
4770 if (asserted)
4771 bnx2x_attn_int_asserted(bp, asserted);
4772
4773 if (deasserted)
4774 bnx2x_attn_int_deasserted(bp, deasserted);
4775}
4776
619c5cb6
VZ
4777void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
4778 u16 index, u8 op, u8 update)
4779{
dc1ba591
AE
4780 u32 igu_addr = bp->igu_base_addr;
4781 igu_addr += (IGU_CMD_INT_ACK_BASE + igu_sb_id)*8;
619c5cb6
VZ
4782 bnx2x_igu_ack_sb_gen(bp, igu_sb_id, segment, index, op, update,
4783 igu_addr);
4784}
4785
1191cb83 4786static void bnx2x_update_eq_prod(struct bnx2x *bp, u16 prod)
523224a3
DK
4787{
4788 /* No memory barriers */
4789 storm_memset_eq_prod(bp, prod, BP_FUNC(bp));
4790 mmiowb(); /* keep prod updates ordered */
4791}
4792
523224a3
DK
4793static int bnx2x_cnic_handle_cfc_del(struct bnx2x *bp, u32 cid,
4794 union event_ring_elem *elem)
4795{
619c5cb6
VZ
4796 u8 err = elem->message.error;
4797
523224a3 4798 if (!bp->cnic_eth_dev.starting_cid ||
c3a8ce61
VZ
4799 (cid < bp->cnic_eth_dev.starting_cid &&
4800 cid != bp->cnic_eth_dev.iscsi_l2_cid))
523224a3
DK
4801 return 1;
4802
4803 DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid);
4804
619c5cb6
VZ
4805 if (unlikely(err)) {
4806
523224a3
DK
4807 BNX2X_ERR("got delete ramrod for CNIC CID %d with error!\n",
4808 cid);
823e1d90 4809 bnx2x_panic_dump(bp, false);
523224a3 4810 }
619c5cb6 4811 bnx2x_cnic_cfc_comp(bp, cid, err);
523224a3
DK
4812 return 0;
4813}
523224a3 4814
1191cb83 4815static void bnx2x_handle_mcast_eqe(struct bnx2x *bp)
619c5cb6
VZ
4816{
4817 struct bnx2x_mcast_ramrod_params rparam;
4818 int rc;
4819
4820 memset(&rparam, 0, sizeof(rparam));
4821
4822 rparam.mcast_obj = &bp->mcast_obj;
4823
4824 netif_addr_lock_bh(bp->dev);
4825
4826 /* Clear pending state for the last command */
4827 bp->mcast_obj.raw.clear_pending(&bp->mcast_obj.raw);
4828
4829 /* If there are pending mcast commands - send them */
4830 if (bp->mcast_obj.check_pending(&bp->mcast_obj)) {
4831 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
4832 if (rc < 0)
4833 BNX2X_ERR("Failed to send pending mcast commands: %d\n",
4834 rc);
4835 }
4836
4837 netif_addr_unlock_bh(bp->dev);
4838}
4839
1191cb83
ED
4840static void bnx2x_handle_classification_eqe(struct bnx2x *bp,
4841 union event_ring_elem *elem)
619c5cb6
VZ
4842{
4843 unsigned long ramrod_flags = 0;
4844 int rc = 0;
4845 u32 cid = elem->message.data.eth_event.echo & BNX2X_SWCID_MASK;
4846 struct bnx2x_vlan_mac_obj *vlan_mac_obj;
4847
4848 /* Always push next commands out, don't wait here */
4849 __set_bit(RAMROD_CONT, &ramrod_flags);
4850
86564c3f
YM
4851 switch (le32_to_cpu((__force __le32)elem->message.data.eth_event.echo)
4852 >> BNX2X_SWCID_SHIFT) {
619c5cb6 4853 case BNX2X_FILTER_MAC_PENDING:
51c1a580 4854 DP(BNX2X_MSG_SP, "Got SETUP_MAC completions\n");
55c11941 4855 if (CNIC_LOADED(bp) && (cid == BNX2X_ISCSI_ETH_CID(bp)))
619c5cb6
VZ
4856 vlan_mac_obj = &bp->iscsi_l2_mac_obj;
4857 else
15192a8c 4858 vlan_mac_obj = &bp->sp_objs[cid].mac_obj;
619c5cb6
VZ
4859
4860 break;
619c5cb6 4861 case BNX2X_FILTER_MCAST_PENDING:
51c1a580 4862 DP(BNX2X_MSG_SP, "Got SETUP_MCAST completions\n");
619c5cb6
VZ
4863 /* This is only relevant for 57710 where multicast MACs are
4864 * configured as unicast MACs using the same ramrod.
4865 */
4866 bnx2x_handle_mcast_eqe(bp);
4867 return;
4868 default:
4869 BNX2X_ERR("Unsupported classification command: %d\n",
4870 elem->message.data.eth_event.echo);
4871 return;
4872 }
4873
4874 rc = vlan_mac_obj->complete(bp, vlan_mac_obj, elem, &ramrod_flags);
4875
4876 if (rc < 0)
4877 BNX2X_ERR("Failed to schedule new commands: %d\n", rc);
4878 else if (rc > 0)
4879 DP(BNX2X_MSG_SP, "Scheduled next pending commands...\n");
4880
4881}
4882
619c5cb6 4883static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start);
619c5cb6 4884
1191cb83 4885static void bnx2x_handle_rx_mode_eqe(struct bnx2x *bp)
619c5cb6
VZ
4886{
4887 netif_addr_lock_bh(bp->dev);
4888
4889 clear_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
4890
4891 /* Send rx_mode command again if was requested */
4892 if (test_and_clear_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state))
4893 bnx2x_set_storm_rx_mode(bp);
619c5cb6
VZ
4894 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED,
4895 &bp->sp_state))
4896 bnx2x_set_iscsi_eth_rx_mode(bp, true);
4897 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED,
4898 &bp->sp_state))
4899 bnx2x_set_iscsi_eth_rx_mode(bp, false);
619c5cb6
VZ
4900
4901 netif_addr_unlock_bh(bp->dev);
4902}
4903
1191cb83 4904static void bnx2x_after_afex_vif_lists(struct bnx2x *bp,
a3348722
BW
4905 union event_ring_elem *elem)
4906{
4907 if (elem->message.data.vif_list_event.echo == VIF_LIST_RULE_GET) {
4908 DP(BNX2X_MSG_SP,
4909 "afex: ramrod completed VIF LIST_GET, addrs 0x%x\n",
4910 elem->message.data.vif_list_event.func_bit_map);
4911 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTGET_ACK,
4912 elem->message.data.vif_list_event.func_bit_map);
4913 } else if (elem->message.data.vif_list_event.echo ==
4914 VIF_LIST_RULE_SET) {
4915 DP(BNX2X_MSG_SP, "afex: ramrod completed VIF LIST_SET\n");
4916 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTSET_ACK, 0);
4917 }
4918}
4919
4920/* called with rtnl_lock */
1191cb83 4921static void bnx2x_after_function_update(struct bnx2x *bp)
a3348722
BW
4922{
4923 int q, rc;
4924 struct bnx2x_fastpath *fp;
4925 struct bnx2x_queue_state_params queue_params = {NULL};
4926 struct bnx2x_queue_update_params *q_update_params =
4927 &queue_params.params.update;
4928
2de67439 4929 /* Send Q update command with afex vlan removal values for all Qs */
a3348722
BW
4930 queue_params.cmd = BNX2X_Q_CMD_UPDATE;
4931
4932 /* set silent vlan removal values according to vlan mode */
4933 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG,
4934 &q_update_params->update_flags);
4935 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM,
4936 &q_update_params->update_flags);
4937 __set_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4938
4939 /* in access mode mark mask and value are 0 to strip all vlans */
4940 if (bp->afex_vlan_mode == FUNC_MF_CFG_AFEX_VLAN_ACCESS_MODE) {
4941 q_update_params->silent_removal_value = 0;
4942 q_update_params->silent_removal_mask = 0;
4943 } else {
4944 q_update_params->silent_removal_value =
4945 (bp->afex_def_vlan_tag & VLAN_VID_MASK);
4946 q_update_params->silent_removal_mask = VLAN_VID_MASK;
4947 }
4948
4949 for_each_eth_queue(bp, q) {
4950 /* Set the appropriate Queue object */
4951 fp = &bp->fp[q];
15192a8c 4952 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4953
4954 /* send the ramrod */
4955 rc = bnx2x_queue_state_change(bp, &queue_params);
4956 if (rc < 0)
4957 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4958 q);
4959 }
4960
a3348722 4961 if (!NO_FCOE(bp)) {
65565884 4962 fp = &bp->fp[FCOE_IDX(bp)];
15192a8c 4963 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
4964
4965 /* clear pending completion bit */
4966 __clear_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
4967
4968 /* mark latest Q bit */
4969 smp_mb__before_clear_bit();
4970 set_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
4971 smp_mb__after_clear_bit();
4972
4973 /* send Q update ramrod for FCoE Q */
4974 rc = bnx2x_queue_state_change(bp, &queue_params);
4975 if (rc < 0)
4976 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
4977 q);
4978 } else {
4979 /* If no FCoE ring - ACK MCP now */
4980 bnx2x_link_report(bp);
4981 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
4982 }
a3348722
BW
4983}
4984
1191cb83 4985static struct bnx2x_queue_sp_obj *bnx2x_cid_to_q_obj(
619c5cb6
VZ
4986 struct bnx2x *bp, u32 cid)
4987{
94f05b0f 4988 DP(BNX2X_MSG_SP, "retrieving fp from cid %d\n", cid);
55c11941
MS
4989
4990 if (CNIC_LOADED(bp) && (cid == BNX2X_FCOE_ETH_CID(bp)))
15192a8c 4991 return &bnx2x_fcoe_sp_obj(bp, q_obj);
619c5cb6 4992 else
15192a8c 4993 return &bp->sp_objs[CID_TO_FP(cid, bp)].q_obj;
619c5cb6
VZ
4994}
4995
523224a3
DK
4996static void bnx2x_eq_int(struct bnx2x *bp)
4997{
4998 u16 hw_cons, sw_cons, sw_prod;
4999 union event_ring_elem *elem;
55c11941 5000 u8 echo;
523224a3
DK
5001 u32 cid;
5002 u8 opcode;
fd1fc79d 5003 int rc, spqe_cnt = 0;
619c5cb6
VZ
5004 struct bnx2x_queue_sp_obj *q_obj;
5005 struct bnx2x_func_sp_obj *f_obj = &bp->func_obj;
5006 struct bnx2x_raw_obj *rss_raw = &bp->rss_conf_obj.raw;
523224a3
DK
5007
5008 hw_cons = le16_to_cpu(*bp->eq_cons_sb);
5009
5010 /* The hw_cos range is 1-255, 257 - the sw_cons range is 0-254, 256.
5011 * when we get the the next-page we nned to adjust so the loop
5012 * condition below will be met. The next element is the size of a
5013 * regular element and hence incrementing by 1
5014 */
5015 if ((hw_cons & EQ_DESC_MAX_PAGE) == EQ_DESC_MAX_PAGE)
5016 hw_cons++;
5017
25985edc 5018 /* This function may never run in parallel with itself for a
523224a3
DK
5019 * specific bp, thus there is no need in "paired" read memory
5020 * barrier here.
5021 */
5022 sw_cons = bp->eq_cons;
5023 sw_prod = bp->eq_prod;
5024
d6cae238 5025 DP(BNX2X_MSG_SP, "EQ: hw_cons %u sw_cons %u bp->eq_spq_left %x\n",
6e30dd4e 5026 hw_cons, sw_cons, atomic_read(&bp->eq_spq_left));
523224a3
DK
5027
5028 for (; sw_cons != hw_cons;
5029 sw_prod = NEXT_EQ_IDX(sw_prod), sw_cons = NEXT_EQ_IDX(sw_cons)) {
5030
523224a3
DK
5031 elem = &bp->eq_ring[EQ_DESC(sw_cons)];
5032
fd1fc79d
AE
5033 rc = bnx2x_iov_eq_sp_event(bp, elem);
5034 if (!rc) {
5035 DP(BNX2X_MSG_IOV, "bnx2x_iov_eq_sp_event returned %d\n",
5036 rc);
5037 goto next_spqe;
5038 }
523224a3 5039
86564c3f
YM
5040 /* elem CID originates from FW; actually LE */
5041 cid = SW_CID((__force __le32)
5042 elem->message.data.cfc_del_event.cid);
5043 opcode = elem->message.opcode;
523224a3
DK
5044
5045 /* handle eq element */
5046 switch (opcode) {
fd1fc79d
AE
5047 case EVENT_RING_OPCODE_VF_PF_CHANNEL:
5048 DP(BNX2X_MSG_IOV, "vf pf channel element on eq\n");
5049 bnx2x_vf_mbx(bp, &elem->message.data.vf_pf_event);
5050 continue;
5051
523224a3 5052 case EVENT_RING_OPCODE_STAT_QUERY:
51c1a580
MS
5053 DP(BNX2X_MSG_SP | BNX2X_MSG_STATS,
5054 "got statistics comp event %d\n",
619c5cb6 5055 bp->stats_comp++);
523224a3 5056 /* nothing to do with stats comp */
d6cae238 5057 goto next_spqe;
523224a3
DK
5058
5059 case EVENT_RING_OPCODE_CFC_DEL:
5060 /* handle according to cid range */
5061 /*
5062 * we may want to verify here that the bp state is
5063 * HALTING
5064 */
d6cae238 5065 DP(BNX2X_MSG_SP,
523224a3 5066 "got delete ramrod for MULTI[%d]\n", cid);
55c11941
MS
5067
5068 if (CNIC_LOADED(bp) &&
5069 !bnx2x_cnic_handle_cfc_del(bp, cid, elem))
523224a3 5070 goto next_spqe;
55c11941 5071
619c5cb6
VZ
5072 q_obj = bnx2x_cid_to_q_obj(bp, cid);
5073
5074 if (q_obj->complete_cmd(bp, q_obj, BNX2X_Q_CMD_CFC_DEL))
5075 break;
5076
5077
523224a3
DK
5078
5079 goto next_spqe;
e4901dde
VZ
5080
5081 case EVENT_RING_OPCODE_STOP_TRAFFIC:
51c1a580 5082 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got STOP TRAFFIC\n");
6debea87
DK
5083 if (f_obj->complete_cmd(bp, f_obj,
5084 BNX2X_F_CMD_TX_STOP))
5085 break;
e4901dde
VZ
5086 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_PAUSED);
5087 goto next_spqe;
619c5cb6 5088
e4901dde 5089 case EVENT_RING_OPCODE_START_TRAFFIC:
51c1a580 5090 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got START TRAFFIC\n");
6debea87
DK
5091 if (f_obj->complete_cmd(bp, f_obj,
5092 BNX2X_F_CMD_TX_START))
5093 break;
e4901dde
VZ
5094 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_RELEASED);
5095 goto next_spqe;
55c11941 5096
a3348722 5097 case EVENT_RING_OPCODE_FUNCTION_UPDATE:
55c11941
MS
5098 echo = elem->message.data.function_update_event.echo;
5099 if (echo == SWITCH_UPDATE) {
5100 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5101 "got FUNC_SWITCH_UPDATE ramrod\n");
5102 if (f_obj->complete_cmd(
5103 bp, f_obj, BNX2X_F_CMD_SWITCH_UPDATE))
5104 break;
a3348722 5105
55c11941
MS
5106 } else {
5107 DP(BNX2X_MSG_SP | BNX2X_MSG_MCP,
5108 "AFEX: ramrod completed FUNCTION_UPDATE\n");
5109 f_obj->complete_cmd(bp, f_obj,
5110 BNX2X_F_CMD_AFEX_UPDATE);
5111
5112 /* We will perform the Queues update from
5113 * sp_rtnl task as all Queue SP operations
5114 * should run under rtnl_lock.
5115 */
5116 smp_mb__before_clear_bit();
5117 set_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE,
5118 &bp->sp_rtnl_state);
5119 smp_mb__after_clear_bit();
5120
5121 schedule_delayed_work(&bp->sp_rtnl_task, 0);
5122 }
a3348722 5123
a3348722
BW
5124 goto next_spqe;
5125
5126 case EVENT_RING_OPCODE_AFEX_VIF_LISTS:
5127 f_obj->complete_cmd(bp, f_obj,
5128 BNX2X_F_CMD_AFEX_VIFLISTS);
5129 bnx2x_after_afex_vif_lists(bp, elem);
5130 goto next_spqe;
619c5cb6 5131 case EVENT_RING_OPCODE_FUNCTION_START:
51c1a580
MS
5132 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5133 "got FUNC_START ramrod\n");
619c5cb6
VZ
5134 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_START))
5135 break;
5136
5137 goto next_spqe;
5138
5139 case EVENT_RING_OPCODE_FUNCTION_STOP:
51c1a580
MS
5140 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5141 "got FUNC_STOP ramrod\n");
619c5cb6
VZ
5142 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_STOP))
5143 break;
5144
5145 goto next_spqe;
523224a3
DK
5146 }
5147
5148 switch (opcode | bp->state) {
619c5cb6
VZ
5149 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
5150 BNX2X_STATE_OPEN):
5151 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
523224a3 5152 BNX2X_STATE_OPENING_WAIT4_PORT):
619c5cb6
VZ
5153 cid = elem->message.data.eth_event.echo &
5154 BNX2X_SWCID_MASK;
d6cae238 5155 DP(BNX2X_MSG_SP, "got RSS_UPDATE ramrod. CID %d\n",
619c5cb6
VZ
5156 cid);
5157 rss_raw->clear_pending(rss_raw);
523224a3
DK
5158 break;
5159
619c5cb6
VZ
5160 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_OPEN):
5161 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_DIAG):
5162 case (EVENT_RING_OPCODE_SET_MAC |
523224a3 5163 BNX2X_STATE_CLOSING_WAIT4_HALT):
619c5cb6
VZ
5164 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5165 BNX2X_STATE_OPEN):
5166 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5167 BNX2X_STATE_DIAG):
5168 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5169 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5170 DP(BNX2X_MSG_SP, "got (un)set mac ramrod\n");
619c5cb6 5171 bnx2x_handle_classification_eqe(bp, elem);
523224a3
DK
5172 break;
5173
619c5cb6
VZ
5174 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5175 BNX2X_STATE_OPEN):
5176 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5177 BNX2X_STATE_DIAG):
5178 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5179 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5180 DP(BNX2X_MSG_SP, "got mcast ramrod\n");
619c5cb6 5181 bnx2x_handle_mcast_eqe(bp);
523224a3
DK
5182 break;
5183
619c5cb6
VZ
5184 case (EVENT_RING_OPCODE_FILTERS_RULES |
5185 BNX2X_STATE_OPEN):
5186 case (EVENT_RING_OPCODE_FILTERS_RULES |
5187 BNX2X_STATE_DIAG):
5188 case (EVENT_RING_OPCODE_FILTERS_RULES |
523224a3 5189 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5190 DP(BNX2X_MSG_SP, "got rx_mode ramrod\n");
619c5cb6 5191 bnx2x_handle_rx_mode_eqe(bp);
523224a3
DK
5192 break;
5193 default:
5194 /* unknown event log error and continue */
619c5cb6
VZ
5195 BNX2X_ERR("Unknown EQ event %d, bp->state 0x%x\n",
5196 elem->message.opcode, bp->state);
523224a3
DK
5197 }
5198next_spqe:
5199 spqe_cnt++;
5200 } /* for */
5201
8fe23fbd 5202 smp_mb__before_atomic_inc();
6e30dd4e 5203 atomic_add(spqe_cnt, &bp->eq_spq_left);
523224a3
DK
5204
5205 bp->eq_cons = sw_cons;
5206 bp->eq_prod = sw_prod;
5207 /* Make sure that above mem writes were issued towards the memory */
5208 smp_wmb();
5209
5210 /* update producer */
5211 bnx2x_update_eq_prod(bp, bp->eq_prod);
5212}
5213
a2fbb9ea
ET
5214static void bnx2x_sp_task(struct work_struct *work)
5215{
1cf167f2 5216 struct bnx2x *bp = container_of(work, struct bnx2x, sp_task.work);
a2fbb9ea 5217
fd1fc79d 5218 DP(BNX2X_MSG_SP, "sp task invoked\n");
a2fbb9ea 5219
fd1fc79d
AE
5220 /* make sure the atomic interupt_occurred has been written */
5221 smp_rmb();
5222 if (atomic_read(&bp->interrupt_occurred)) {
a2fbb9ea 5223
fd1fc79d
AE
5224 /* what work needs to be performed? */
5225 u16 status = bnx2x_update_dsb_idx(bp);
cdaa7cb8 5226
fd1fc79d
AE
5227 DP(BNX2X_MSG_SP, "status %x\n", status);
5228 DP(BNX2X_MSG_SP, "setting interrupt_occurred to 0\n");
5229 atomic_set(&bp->interrupt_occurred, 0);
5230
5231 /* HW attentions */
5232 if (status & BNX2X_DEF_SB_ATT_IDX) {
5233 bnx2x_attn_int(bp);
5234 status &= ~BNX2X_DEF_SB_ATT_IDX;
5235 }
5236
5237 /* SP events: STAT_QUERY and others */
5238 if (status & BNX2X_DEF_SB_IDX) {
5239 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
523224a3 5240
55c11941 5241 if (FCOE_INIT(bp) &&
fd1fc79d
AE
5242 (bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
5243 /* Prevent local bottom-halves from running as
5244 * we are going to change the local NAPI list.
5245 */
5246 local_bh_disable();
5247 napi_schedule(&bnx2x_fcoe(bp, napi));
5248 local_bh_enable();
5249 }
5250
5251 /* Handle EQ completions */
5252 bnx2x_eq_int(bp);
5253 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID,
5254 le16_to_cpu(bp->def_idx), IGU_INT_NOP, 1);
5255
5256 status &= ~BNX2X_DEF_SB_IDX;
019dbb4c 5257 }
55c11941 5258
fd1fc79d
AE
5259 /* if status is non zero then perhaps something went wrong */
5260 if (unlikely(status))
5261 DP(BNX2X_MSG_SP,
5262 "got an unknown interrupt! (status 0x%x)\n", status);
523224a3 5263
fd1fc79d
AE
5264 /* ack status block only if something was actually handled */
5265 bnx2x_ack_sb(bp, bp->igu_dsb_id, ATTENTION_ID,
5266 le16_to_cpu(bp->def_att_idx), IGU_INT_ENABLE, 1);
523224a3 5267
cdaa7cb8
VZ
5268 }
5269
fd1fc79d
AE
5270 /* must be called after the EQ processing (since eq leads to sriov
5271 * ramrod completion flows).
5272 * This flow may have been scheduled by the arrival of a ramrod
5273 * completion, or by the sriov code rescheduling itself.
5274 */
5275 bnx2x_iov_sp_task(bp);
a3348722
BW
5276
5277 /* afex - poll to check if VIFSET_ACK should be sent to MFW */
5278 if (test_and_clear_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK,
5279 &bp->sp_state)) {
5280 bnx2x_link_report(bp);
5281 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
5282 }
a2fbb9ea
ET
5283}
5284
9f6c9258 5285irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance)
a2fbb9ea
ET
5286{
5287 struct net_device *dev = dev_instance;
5288 struct bnx2x *bp = netdev_priv(dev);
5289
523224a3
DK
5290 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0,
5291 IGU_INT_DISABLE, 0);
a2fbb9ea
ET
5292
5293#ifdef BNX2X_STOP_ON_ERROR
5294 if (unlikely(bp->panic))
5295 return IRQ_HANDLED;
5296#endif
5297
55c11941 5298 if (CNIC_LOADED(bp)) {
993ac7b5
MC
5299 struct cnic_ops *c_ops;
5300
5301 rcu_read_lock();
5302 c_ops = rcu_dereference(bp->cnic_ops);
5303 if (c_ops)
5304 c_ops->cnic_handler(bp->cnic_data, NULL);
5305 rcu_read_unlock();
5306 }
55c11941 5307
fd1fc79d
AE
5308 /* schedule sp task to perform default status block work, ack
5309 * attentions and enable interrupts.
5310 */
5311 bnx2x_schedule_sp_task(bp);
a2fbb9ea
ET
5312
5313 return IRQ_HANDLED;
5314}
5315
5316/* end of slow path */
5317
619c5cb6
VZ
5318
5319void bnx2x_drv_pulse(struct bnx2x *bp)
5320{
5321 SHMEM_WR(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb,
5322 bp->fw_drv_pulse_wr_seq);
5323}
5324
a2fbb9ea
ET
5325static void bnx2x_timer(unsigned long data)
5326{
5327 struct bnx2x *bp = (struct bnx2x *) data;
5328
5329 if (!netif_running(bp->dev))
5330 return;
5331
67c431a5
AE
5332 if (IS_PF(bp) &&
5333 !BP_NOMCP(bp)) {
f2e0899f 5334 int mb_idx = BP_FW_MB_IDX(bp);
a2fbb9ea
ET
5335 u32 drv_pulse;
5336 u32 mcp_pulse;
5337
5338 ++bp->fw_drv_pulse_wr_seq;
5339 bp->fw_drv_pulse_wr_seq &= DRV_PULSE_SEQ_MASK;
5340 /* TBD - add SYSTEM_TIME */
5341 drv_pulse = bp->fw_drv_pulse_wr_seq;
619c5cb6 5342 bnx2x_drv_pulse(bp);
a2fbb9ea 5343
f2e0899f 5344 mcp_pulse = (SHMEM_RD(bp, func_mb[mb_idx].mcp_pulse_mb) &
a2fbb9ea
ET
5345 MCP_PULSE_SEQ_MASK);
5346 /* The delta between driver pulse and mcp response
5347 * should be 1 (before mcp response) or 0 (after mcp response)
5348 */
5349 if ((drv_pulse != mcp_pulse) &&
5350 (drv_pulse != ((mcp_pulse + 1) & MCP_PULSE_SEQ_MASK))) {
5351 /* someone lost a heartbeat... */
5352 BNX2X_ERR("drv_pulse (0x%x) != mcp_pulse (0x%x)\n",
5353 drv_pulse, mcp_pulse);
5354 }
5355 }
5356
f34d28ea 5357 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a 5358 bnx2x_stats_handle(bp, STATS_EVENT_UPDATE);
a2fbb9ea 5359
abc5a021
AE
5360 /* sample pf vf bulletin board for new posts from pf */
5361 if (IS_VF(bp))
5362 bnx2x_sample_bulletin(bp);
5363
a2fbb9ea
ET
5364 mod_timer(&bp->timer, jiffies + bp->current_interval);
5365}
5366
5367/* end of Statistics */
5368
5369/* nic init */
5370
5371/*
5372 * nic init service functions
5373 */
5374
1191cb83 5375static void bnx2x_fill(struct bnx2x *bp, u32 addr, int fill, u32 len)
a2fbb9ea 5376{
523224a3
DK
5377 u32 i;
5378 if (!(len%4) && !(addr%4))
5379 for (i = 0; i < len; i += 4)
5380 REG_WR(bp, addr + i, fill);
5381 else
5382 for (i = 0; i < len; i++)
5383 REG_WR8(bp, addr + i, fill);
34f80b04 5384
34f80b04
EG
5385}
5386
523224a3 5387/* helper: writes FP SP data to FW - data_size in dwords */
1191cb83
ED
5388static void bnx2x_wr_fp_sb_data(struct bnx2x *bp,
5389 int fw_sb_id,
5390 u32 *sb_data_p,
5391 u32 data_size)
34f80b04 5392{
a2fbb9ea 5393 int index;
523224a3
DK
5394 for (index = 0; index < data_size; index++)
5395 REG_WR(bp, BAR_CSTRORM_INTMEM +
5396 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id) +
5397 sizeof(u32)*index,
5398 *(sb_data_p + index));
5399}
a2fbb9ea 5400
1191cb83 5401static void bnx2x_zero_fp_sb(struct bnx2x *bp, int fw_sb_id)
523224a3
DK
5402{
5403 u32 *sb_data_p;
5404 u32 data_size = 0;
f2e0899f 5405 struct hc_status_block_data_e2 sb_data_e2;
523224a3 5406 struct hc_status_block_data_e1x sb_data_e1x;
a2fbb9ea 5407
523224a3 5408 /* disable the function first */
619c5cb6 5409 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5410 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5411 sb_data_e2.common.state = SB_DISABLED;
f2e0899f
DK
5412 sb_data_e2.common.p_func.vf_valid = false;
5413 sb_data_p = (u32 *)&sb_data_e2;
5414 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
5415 } else {
5416 memset(&sb_data_e1x, 0,
5417 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5418 sb_data_e1x.common.state = SB_DISABLED;
f2e0899f
DK
5419 sb_data_e1x.common.p_func.vf_valid = false;
5420 sb_data_p = (u32 *)&sb_data_e1x;
5421 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
5422 }
523224a3 5423 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
a2fbb9ea 5424
523224a3
DK
5425 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5426 CSTORM_STATUS_BLOCK_OFFSET(fw_sb_id), 0,
5427 CSTORM_STATUS_BLOCK_SIZE);
5428 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5429 CSTORM_SYNC_BLOCK_OFFSET(fw_sb_id), 0,
5430 CSTORM_SYNC_BLOCK_SIZE);
5431}
34f80b04 5432
523224a3 5433/* helper: writes SP SB data to FW */
1191cb83 5434static void bnx2x_wr_sp_sb_data(struct bnx2x *bp,
523224a3
DK
5435 struct hc_sp_status_block_data *sp_sb_data)
5436{
5437 int func = BP_FUNC(bp);
5438 int i;
5439 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
5440 REG_WR(bp, BAR_CSTRORM_INTMEM +
5441 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
5442 i*sizeof(u32),
5443 *((u32 *)sp_sb_data + i));
34f80b04
EG
5444}
5445
1191cb83 5446static void bnx2x_zero_sp_sb(struct bnx2x *bp)
34f80b04
EG
5447{
5448 int func = BP_FUNC(bp);
523224a3
DK
5449 struct hc_sp_status_block_data sp_sb_data;
5450 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
a2fbb9ea 5451
619c5cb6 5452 sp_sb_data.state = SB_DISABLED;
523224a3
DK
5453 sp_sb_data.p_func.vf_valid = false;
5454
5455 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
5456
5457 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5458 CSTORM_SP_STATUS_BLOCK_OFFSET(func), 0,
5459 CSTORM_SP_STATUS_BLOCK_SIZE);
5460 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5461 CSTORM_SP_SYNC_BLOCK_OFFSET(func), 0,
5462 CSTORM_SP_SYNC_BLOCK_SIZE);
5463
5464}
5465
5466
1191cb83 5467static void bnx2x_setup_ndsb_state_machine(struct hc_status_block_sm *hc_sm,
523224a3
DK
5468 int igu_sb_id, int igu_seg_id)
5469{
5470 hc_sm->igu_sb_id = igu_sb_id;
5471 hc_sm->igu_seg_id = igu_seg_id;
5472 hc_sm->timer_value = 0xFF;
5473 hc_sm->time_to_expire = 0xFFFFFFFF;
a2fbb9ea
ET
5474}
5475
150966ad
AE
5476
5477/* allocates state machine ids. */
1191cb83 5478static void bnx2x_map_sb_state_machines(struct hc_index_data *index_data)
150966ad
AE
5479{
5480 /* zero out state machine indices */
5481 /* rx indices */
5482 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5483
5484 /* tx indices */
5485 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5486 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags &= ~HC_INDEX_DATA_SM_ID;
5487 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags &= ~HC_INDEX_DATA_SM_ID;
5488 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags &= ~HC_INDEX_DATA_SM_ID;
5489
5490 /* map indices */
5491 /* rx indices */
5492 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags |=
5493 SM_RX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5494
5495 /* tx indices */
5496 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags |=
5497 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5498 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags |=
5499 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5500 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags |=
5501 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5502 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags |=
5503 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5504}
5505
b93288d5 5506void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
523224a3 5507 u8 vf_valid, int fw_sb_id, int igu_sb_id)
a2fbb9ea 5508{
523224a3
DK
5509 int igu_seg_id;
5510
f2e0899f 5511 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
5512 struct hc_status_block_data_e1x sb_data_e1x;
5513 struct hc_status_block_sm *hc_sm_p;
523224a3
DK
5514 int data_size;
5515 u32 *sb_data_p;
5516
f2e0899f
DK
5517 if (CHIP_INT_MODE_IS_BC(bp))
5518 igu_seg_id = HC_SEG_ACCESS_NORM;
5519 else
5520 igu_seg_id = IGU_SEG_ACCESS_NORM;
523224a3
DK
5521
5522 bnx2x_zero_fp_sb(bp, fw_sb_id);
5523
619c5cb6 5524 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5525 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5526 sb_data_e2.common.state = SB_ENABLED;
f2e0899f
DK
5527 sb_data_e2.common.p_func.pf_id = BP_FUNC(bp);
5528 sb_data_e2.common.p_func.vf_id = vfid;
5529 sb_data_e2.common.p_func.vf_valid = vf_valid;
5530 sb_data_e2.common.p_func.vnic_id = BP_VN(bp);
5531 sb_data_e2.common.same_igu_sb_1b = true;
5532 sb_data_e2.common.host_sb_addr.hi = U64_HI(mapping);
5533 sb_data_e2.common.host_sb_addr.lo = U64_LO(mapping);
5534 hc_sm_p = sb_data_e2.common.state_machine;
f2e0899f
DK
5535 sb_data_p = (u32 *)&sb_data_e2;
5536 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
150966ad 5537 bnx2x_map_sb_state_machines(sb_data_e2.index_data);
f2e0899f
DK
5538 } else {
5539 memset(&sb_data_e1x, 0,
5540 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5541 sb_data_e1x.common.state = SB_ENABLED;
f2e0899f
DK
5542 sb_data_e1x.common.p_func.pf_id = BP_FUNC(bp);
5543 sb_data_e1x.common.p_func.vf_id = 0xff;
5544 sb_data_e1x.common.p_func.vf_valid = false;
5545 sb_data_e1x.common.p_func.vnic_id = BP_VN(bp);
5546 sb_data_e1x.common.same_igu_sb_1b = true;
5547 sb_data_e1x.common.host_sb_addr.hi = U64_HI(mapping);
5548 sb_data_e1x.common.host_sb_addr.lo = U64_LO(mapping);
5549 hc_sm_p = sb_data_e1x.common.state_machine;
f2e0899f
DK
5550 sb_data_p = (u32 *)&sb_data_e1x;
5551 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
150966ad 5552 bnx2x_map_sb_state_machines(sb_data_e1x.index_data);
f2e0899f 5553 }
523224a3
DK
5554
5555 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_RX_ID],
5556 igu_sb_id, igu_seg_id);
5557 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_TX_ID],
5558 igu_sb_id, igu_seg_id);
5559
51c1a580 5560 DP(NETIF_MSG_IFUP, "Init FW SB %d\n", fw_sb_id);
523224a3 5561
86564c3f 5562 /* write indices to HW - PCI guarantees endianity of regpairs */
523224a3
DK
5563 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
5564}
5565
619c5cb6 5566static void bnx2x_update_coalesce_sb(struct bnx2x *bp, u8 fw_sb_id,
523224a3
DK
5567 u16 tx_usec, u16 rx_usec)
5568{
6383c0b3 5569 bnx2x_update_coalesce_sb_index(bp, fw_sb_id, HC_INDEX_ETH_RX_CQ_CONS,
523224a3 5570 false, rx_usec);
6383c0b3
AE
5571 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5572 HC_INDEX_ETH_TX_CQ_CONS_COS0, false,
5573 tx_usec);
5574 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5575 HC_INDEX_ETH_TX_CQ_CONS_COS1, false,
5576 tx_usec);
5577 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
5578 HC_INDEX_ETH_TX_CQ_CONS_COS2, false,
5579 tx_usec);
523224a3 5580}
f2e0899f 5581
523224a3
DK
5582static void bnx2x_init_def_sb(struct bnx2x *bp)
5583{
5584 struct host_sp_status_block *def_sb = bp->def_status_blk;
5585 dma_addr_t mapping = bp->def_status_blk_mapping;
5586 int igu_sp_sb_index;
5587 int igu_seg_id;
34f80b04
EG
5588 int port = BP_PORT(bp);
5589 int func = BP_FUNC(bp);
f2eaeb58 5590 int reg_offset, reg_offset_en5;
a2fbb9ea 5591 u64 section;
523224a3
DK
5592 int index;
5593 struct hc_sp_status_block_data sp_sb_data;
5594 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
5595
f2e0899f
DK
5596 if (CHIP_INT_MODE_IS_BC(bp)) {
5597 igu_sp_sb_index = DEF_SB_IGU_ID;
5598 igu_seg_id = HC_SEG_ACCESS_DEF;
5599 } else {
5600 igu_sp_sb_index = bp->igu_dsb_id;
5601 igu_seg_id = IGU_SEG_ACCESS_DEF;
5602 }
a2fbb9ea
ET
5603
5604 /* ATTN */
523224a3 5605 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
a2fbb9ea 5606 atten_status_block);
523224a3 5607 def_sb->atten_status_block.status_block_id = igu_sp_sb_index;
a2fbb9ea 5608
49d66772
ET
5609 bp->attn_state = 0;
5610
a2fbb9ea
ET
5611 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
5612 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
f2eaeb58
DK
5613 reg_offset_en5 = (port ? MISC_REG_AEU_ENABLE5_FUNC_1_OUT_0 :
5614 MISC_REG_AEU_ENABLE5_FUNC_0_OUT_0);
34f80b04 5615 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
523224a3
DK
5616 int sindex;
5617 /* take care of sig[0]..sig[4] */
5618 for (sindex = 0; sindex < 4; sindex++)
5619 bp->attn_group[index].sig[sindex] =
5620 REG_RD(bp, reg_offset + sindex*0x4 + 0x10*index);
f2e0899f 5621
619c5cb6 5622 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
5623 /*
5624 * enable5 is separate from the rest of the registers,
5625 * and therefore the address skip is 4
5626 * and not 16 between the different groups
5627 */
5628 bp->attn_group[index].sig[4] = REG_RD(bp,
f2eaeb58 5629 reg_offset_en5 + 0x4*index);
f2e0899f
DK
5630 else
5631 bp->attn_group[index].sig[4] = 0;
a2fbb9ea
ET
5632 }
5633
f2e0899f
DK
5634 if (bp->common.int_block == INT_BLOCK_HC) {
5635 reg_offset = (port ? HC_REG_ATTN_MSG1_ADDR_L :
5636 HC_REG_ATTN_MSG0_ADDR_L);
5637
5638 REG_WR(bp, reg_offset, U64_LO(section));
5639 REG_WR(bp, reg_offset + 4, U64_HI(section));
619c5cb6 5640 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5641 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_L, U64_LO(section));
5642 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_H, U64_HI(section));
5643 }
a2fbb9ea 5644
523224a3
DK
5645 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
5646 sp_sb);
a2fbb9ea 5647
523224a3 5648 bnx2x_zero_sp_sb(bp);
a2fbb9ea 5649
86564c3f 5650 /* PCI guarantees endianity of regpairs */
619c5cb6 5651 sp_sb_data.state = SB_ENABLED;
523224a3
DK
5652 sp_sb_data.host_sb_addr.lo = U64_LO(section);
5653 sp_sb_data.host_sb_addr.hi = U64_HI(section);
5654 sp_sb_data.igu_sb_id = igu_sp_sb_index;
5655 sp_sb_data.igu_seg_id = igu_seg_id;
5656 sp_sb_data.p_func.pf_id = func;
f2e0899f 5657 sp_sb_data.p_func.vnic_id = BP_VN(bp);
523224a3 5658 sp_sb_data.p_func.vf_id = 0xff;
a2fbb9ea 5659
523224a3 5660 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
49d66772 5661
523224a3 5662 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0, IGU_INT_ENABLE, 0);
a2fbb9ea
ET
5663}
5664
9f6c9258 5665void bnx2x_update_coalesce(struct bnx2x *bp)
a2fbb9ea 5666{
a2fbb9ea
ET
5667 int i;
5668
ec6ba945 5669 for_each_eth_queue(bp, i)
523224a3 5670 bnx2x_update_coalesce_sb(bp, bp->fp[i].fw_sb_id,
423cfa7e 5671 bp->tx_ticks, bp->rx_ticks);
a2fbb9ea
ET
5672}
5673
a2fbb9ea
ET
5674static void bnx2x_init_sp_ring(struct bnx2x *bp)
5675{
a2fbb9ea 5676 spin_lock_init(&bp->spq_lock);
6e30dd4e 5677 atomic_set(&bp->cq_spq_left, MAX_SPQ_PENDING);
a2fbb9ea 5678
a2fbb9ea 5679 bp->spq_prod_idx = 0;
a2fbb9ea
ET
5680 bp->dsb_sp_prod = BNX2X_SP_DSB_INDEX;
5681 bp->spq_prod_bd = bp->spq;
5682 bp->spq_last_bd = bp->spq_prod_bd + MAX_SP_DESC_CNT;
a2fbb9ea
ET
5683}
5684
523224a3 5685static void bnx2x_init_eq_ring(struct bnx2x *bp)
a2fbb9ea
ET
5686{
5687 int i;
523224a3
DK
5688 for (i = 1; i <= NUM_EQ_PAGES; i++) {
5689 union event_ring_elem *elem =
5690 &bp->eq_ring[EQ_DESC_CNT_PAGE * i - 1];
a2fbb9ea 5691
523224a3
DK
5692 elem->next_page.addr.hi =
5693 cpu_to_le32(U64_HI(bp->eq_mapping +
5694 BCM_PAGE_SIZE * (i % NUM_EQ_PAGES)));
5695 elem->next_page.addr.lo =
5696 cpu_to_le32(U64_LO(bp->eq_mapping +
5697 BCM_PAGE_SIZE*(i % NUM_EQ_PAGES)));
a2fbb9ea 5698 }
523224a3
DK
5699 bp->eq_cons = 0;
5700 bp->eq_prod = NUM_EQ_DESC;
5701 bp->eq_cons_sb = BNX2X_EQ_INDEX;
6e30dd4e
VZ
5702 /* we want a warning message before it gets rought... */
5703 atomic_set(&bp->eq_spq_left,
5704 min_t(int, MAX_SP_DESC_CNT - MAX_SPQ_PENDING, NUM_EQ_DESC) - 1);
a2fbb9ea
ET
5705}
5706
619c5cb6 5707/* called with netif_addr_lock_bh() */
924d75ab
YM
5708int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
5709 unsigned long rx_mode_flags,
5710 unsigned long rx_accept_flags,
5711 unsigned long tx_accept_flags,
5712 unsigned long ramrod_flags)
ab532cf3 5713{
619c5cb6
VZ
5714 struct bnx2x_rx_mode_ramrod_params ramrod_param;
5715 int rc;
5716
5717 memset(&ramrod_param, 0, sizeof(ramrod_param));
5718
5719 /* Prepare ramrod parameters */
5720 ramrod_param.cid = 0;
5721 ramrod_param.cl_id = cl_id;
5722 ramrod_param.rx_mode_obj = &bp->rx_mode_obj;
5723 ramrod_param.func_id = BP_FUNC(bp);
ab532cf3 5724
619c5cb6
VZ
5725 ramrod_param.pstate = &bp->sp_state;
5726 ramrod_param.state = BNX2X_FILTER_RX_MODE_PENDING;
ab532cf3 5727
619c5cb6
VZ
5728 ramrod_param.rdata = bnx2x_sp(bp, rx_mode_rdata);
5729 ramrod_param.rdata_mapping = bnx2x_sp_mapping(bp, rx_mode_rdata);
5730
5731 set_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
5732
5733 ramrod_param.ramrod_flags = ramrod_flags;
5734 ramrod_param.rx_mode_flags = rx_mode_flags;
5735
5736 ramrod_param.rx_accept_flags = rx_accept_flags;
5737 ramrod_param.tx_accept_flags = tx_accept_flags;
5738
5739 rc = bnx2x_config_rx_mode(bp, &ramrod_param);
5740 if (rc < 0) {
5741 BNX2X_ERR("Set rx_mode %d failed\n", bp->rx_mode);
924d75ab 5742 return rc;
619c5cb6 5743 }
924d75ab
YM
5744
5745 return 0;
a2fbb9ea
ET
5746}
5747
86564c3f
YM
5748static int bnx2x_fill_accept_flags(struct bnx2x *bp, u32 rx_mode,
5749 unsigned long *rx_accept_flags,
5750 unsigned long *tx_accept_flags)
471de716 5751{
924d75ab
YM
5752 /* Clear the flags first */
5753 *rx_accept_flags = 0;
5754 *tx_accept_flags = 0;
619c5cb6 5755
924d75ab 5756 switch (rx_mode) {
619c5cb6
VZ
5757 case BNX2X_RX_MODE_NONE:
5758 /*
5759 * 'drop all' supersedes any accept flags that may have been
5760 * passed to the function.
5761 */
5762 break;
5763 case BNX2X_RX_MODE_NORMAL:
924d75ab
YM
5764 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
5765 __set_bit(BNX2X_ACCEPT_MULTICAST, rx_accept_flags);
5766 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
5767
5768 /* internal switching mode */
924d75ab
YM
5769 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
5770 __set_bit(BNX2X_ACCEPT_MULTICAST, tx_accept_flags);
5771 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6
VZ
5772
5773 break;
5774 case BNX2X_RX_MODE_ALLMULTI:
924d75ab
YM
5775 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
5776 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, rx_accept_flags);
5777 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
5778
5779 /* internal switching mode */
924d75ab
YM
5780 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
5781 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, tx_accept_flags);
5782 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6
VZ
5783
5784 break;
5785 case BNX2X_RX_MODE_PROMISC:
5786 /* According to deffinition of SI mode, iface in promisc mode
5787 * should receive matched and unmatched (in resolution of port)
5788 * unicast packets.
5789 */
924d75ab
YM
5790 __set_bit(BNX2X_ACCEPT_UNMATCHED, rx_accept_flags);
5791 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
5792 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, rx_accept_flags);
5793 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
5794
5795 /* internal switching mode */
924d75ab
YM
5796 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, tx_accept_flags);
5797 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6
VZ
5798
5799 if (IS_MF_SI(bp))
924d75ab 5800 __set_bit(BNX2X_ACCEPT_ALL_UNICAST, tx_accept_flags);
619c5cb6 5801 else
924d75ab 5802 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
619c5cb6
VZ
5803
5804 break;
5805 default:
924d75ab
YM
5806 BNX2X_ERR("Unknown rx_mode: %d\n", rx_mode);
5807 return -EINVAL;
619c5cb6 5808 }
de832a55 5809
924d75ab 5810 /* Set ACCEPT_ANY_VLAN as we do not enable filtering by VLAN */
619c5cb6 5811 if (bp->rx_mode != BNX2X_RX_MODE_NONE) {
924d75ab
YM
5812 __set_bit(BNX2X_ACCEPT_ANY_VLAN, rx_accept_flags);
5813 __set_bit(BNX2X_ACCEPT_ANY_VLAN, tx_accept_flags);
34f80b04
EG
5814 }
5815
924d75ab
YM
5816 return 0;
5817}
5818
5819/* called with netif_addr_lock_bh() */
5820int bnx2x_set_storm_rx_mode(struct bnx2x *bp)
5821{
5822 unsigned long rx_mode_flags = 0, ramrod_flags = 0;
5823 unsigned long rx_accept_flags = 0, tx_accept_flags = 0;
5824 int rc;
5825
5826 if (!NO_FCOE(bp))
5827 /* Configure rx_mode of FCoE Queue */
5828 __set_bit(BNX2X_RX_MODE_FCOE_ETH, &rx_mode_flags);
5829
5830 rc = bnx2x_fill_accept_flags(bp, bp->rx_mode, &rx_accept_flags,
5831 &tx_accept_flags);
5832 if (rc)
5833 return rc;
5834
619c5cb6
VZ
5835 __set_bit(RAMROD_RX, &ramrod_flags);
5836 __set_bit(RAMROD_TX, &ramrod_flags);
5837
924d75ab
YM
5838 return bnx2x_set_q_rx_mode(bp, bp->fp->cl_id, rx_mode_flags,
5839 rx_accept_flags, tx_accept_flags,
5840 ramrod_flags);
619c5cb6
VZ
5841}
5842
5843static void bnx2x_init_internal_common(struct bnx2x *bp)
5844{
5845 int i;
5846
0793f83f
DK
5847 if (IS_MF_SI(bp))
5848 /*
5849 * In switch independent mode, the TSTORM needs to accept
5850 * packets that failed classification, since approximate match
5851 * mac addresses aren't written to NIG LLH
5852 */
5853 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5854 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 2);
619c5cb6
VZ
5855 else if (!CHIP_IS_E1(bp)) /* 57710 doesn't support MF */
5856 REG_WR8(bp, BAR_TSTRORM_INTMEM +
5857 TSTORM_ACCEPT_CLASSIFY_FAILED_OFFSET, 0);
0793f83f 5858
523224a3
DK
5859 /* Zero this manually as its initialization is
5860 currently missing in the initTool */
5861 for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++)
ca00392c 5862 REG_WR(bp, BAR_USTRORM_INTMEM +
523224a3 5863 USTORM_AGG_DATA_OFFSET + i * 4, 0);
619c5cb6 5864 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
5865 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_IGU_MODE_OFFSET,
5866 CHIP_INT_MODE_IS_BC(bp) ?
5867 HC_IGU_BC_MODE : HC_IGU_NBC_MODE);
5868 }
523224a3 5869}
8a1c38d1 5870
471de716
EG
5871static void bnx2x_init_internal(struct bnx2x *bp, u32 load_code)
5872{
5873 switch (load_code) {
5874 case FW_MSG_CODE_DRV_LOAD_COMMON:
f2e0899f 5875 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP:
471de716
EG
5876 bnx2x_init_internal_common(bp);
5877 /* no break */
5878
5879 case FW_MSG_CODE_DRV_LOAD_PORT:
619c5cb6 5880 /* nothing to do */
471de716
EG
5881 /* no break */
5882
5883 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
523224a3
DK
5884 /* internal memory per function is
5885 initialized inside bnx2x_pf_init */
471de716
EG
5886 break;
5887
5888 default:
5889 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code);
5890 break;
5891 }
5892}
5893
619c5cb6 5894static inline u8 bnx2x_fp_igu_sb_id(struct bnx2x_fastpath *fp)
523224a3 5895{
55c11941 5896 return fp->bp->igu_base_sb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6 5897}
523224a3 5898
619c5cb6
VZ
5899static inline u8 bnx2x_fp_fw_sb_id(struct bnx2x_fastpath *fp)
5900{
55c11941 5901 return fp->bp->base_fw_ndsb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6
VZ
5902}
5903
1191cb83 5904static u8 bnx2x_fp_cl_id(struct bnx2x_fastpath *fp)
619c5cb6
VZ
5905{
5906 if (CHIP_IS_E1x(fp->bp))
5907 return BP_L_ID(fp->bp) + fp->index;
5908 else /* We want Client ID to be the same as IGU SB ID for 57712 */
5909 return bnx2x_fp_igu_sb_id(fp);
5910}
5911
6383c0b3 5912static void bnx2x_init_eth_fp(struct bnx2x *bp, int fp_idx)
619c5cb6
VZ
5913{
5914 struct bnx2x_fastpath *fp = &bp->fp[fp_idx];
6383c0b3 5915 u8 cos;
619c5cb6 5916 unsigned long q_type = 0;
6383c0b3 5917 u32 cids[BNX2X_MULTI_TX_COS] = { 0 };
f233cafe 5918 fp->rx_queue = fp_idx;
b3b83c3f 5919 fp->cid = fp_idx;
619c5cb6
VZ
5920 fp->cl_id = bnx2x_fp_cl_id(fp);
5921 fp->fw_sb_id = bnx2x_fp_fw_sb_id(fp);
5922 fp->igu_sb_id = bnx2x_fp_igu_sb_id(fp);
523224a3 5923 /* qZone id equals to FW (per path) client id */
619c5cb6
VZ
5924 fp->cl_qzone_id = bnx2x_fp_qzone_id(fp);
5925
523224a3 5926 /* init shortcut */
619c5cb6 5927 fp->ustorm_rx_prods_offset = bnx2x_rx_ustorm_prods_offset(fp);
7a752993 5928
523224a3
DK
5929 /* Setup SB indicies */
5930 fp->rx_cons_sb = BNX2X_RX_SB_INDEX;
523224a3 5931
619c5cb6
VZ
5932 /* Configure Queue State object */
5933 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
5934 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
6383c0b3
AE
5935
5936 BUG_ON(fp->max_cos > BNX2X_MULTI_TX_COS);
5937
5938 /* init tx data */
5939 for_each_cos_in_tx_queue(fp, cos) {
65565884
MS
5940 bnx2x_init_txdata(bp, fp->txdata_ptr[cos],
5941 CID_COS_TO_TX_ONLY_CID(fp->cid, cos, bp),
5942 FP_COS_TO_TXQ(fp, cos, bp),
5943 BNX2X_TX_SB_INDEX_BASE + cos, fp);
5944 cids[cos] = fp->txdata_ptr[cos]->cid;
6383c0b3
AE
5945 }
5946
ad5afc89
AE
5947 /* nothing more for vf to do here */
5948 if (IS_VF(bp))
5949 return;
5950
5951 bnx2x_init_sb(bp, fp->status_blk_mapping, BNX2X_VF_ID_INVALID, false,
5952 fp->fw_sb_id, fp->igu_sb_id);
5953 bnx2x_update_fpsb_idx(fp);
15192a8c
BW
5954 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id, cids,
5955 fp->max_cos, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
6383c0b3 5956 bnx2x_sp_mapping(bp, q_rdata), q_type);
619c5cb6
VZ
5957
5958 /**
5959 * Configure classification DBs: Always enable Tx switching
5960 */
5961 bnx2x_init_vlan_mac_fp_objs(fp, BNX2X_OBJ_TYPE_RX_TX);
5962
ad5afc89
AE
5963 DP(NETIF_MSG_IFUP,
5964 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
5965 fp_idx, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
5966 fp->igu_sb_id);
523224a3
DK
5967}
5968
1191cb83
ED
5969static void bnx2x_init_tx_ring_one(struct bnx2x_fp_txdata *txdata)
5970{
5971 int i;
5972
5973 for (i = 1; i <= NUM_TX_RINGS; i++) {
5974 struct eth_tx_next_bd *tx_next_bd =
5975 &txdata->tx_desc_ring[TX_DESC_CNT * i - 1].next_bd;
5976
5977 tx_next_bd->addr_hi =
5978 cpu_to_le32(U64_HI(txdata->tx_desc_mapping +
5979 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5980 tx_next_bd->addr_lo =
5981 cpu_to_le32(U64_LO(txdata->tx_desc_mapping +
5982 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
5983 }
5984
5985 SET_FLAG(txdata->tx_db.data.header.header, DOORBELL_HDR_DB_TYPE, 1);
5986 txdata->tx_db.data.zero_fill1 = 0;
5987 txdata->tx_db.data.prod = 0;
5988
5989 txdata->tx_pkt_prod = 0;
5990 txdata->tx_pkt_cons = 0;
5991 txdata->tx_bd_prod = 0;
5992 txdata->tx_bd_cons = 0;
5993 txdata->tx_pkt = 0;
5994}
5995
55c11941
MS
5996static void bnx2x_init_tx_rings_cnic(struct bnx2x *bp)
5997{
5998 int i;
5999
6000 for_each_tx_queue_cnic(bp, i)
6001 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[0]);
6002}
1191cb83
ED
6003static void bnx2x_init_tx_rings(struct bnx2x *bp)
6004{
6005 int i;
6006 u8 cos;
6007
55c11941 6008 for_each_eth_queue(bp, i)
1191cb83 6009 for_each_cos_in_tx_queue(&bp->fp[i], cos)
65565884 6010 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[cos]);
1191cb83
ED
6011}
6012
55c11941 6013void bnx2x_nic_init_cnic(struct bnx2x *bp)
a2fbb9ea 6014{
ec6ba945
VZ
6015 if (!NO_FCOE(bp))
6016 bnx2x_init_fcoe_fp(bp);
523224a3
DK
6017
6018 bnx2x_init_sb(bp, bp->cnic_sb_mapping,
6019 BNX2X_VF_ID_INVALID, false,
619c5cb6 6020 bnx2x_cnic_fw_sb_id(bp), bnx2x_cnic_igu_sb_id(bp));
523224a3 6021
55c11941
MS
6022 /* ensure status block indices were read */
6023 rmb();
6024 bnx2x_init_rx_rings_cnic(bp);
6025 bnx2x_init_tx_rings_cnic(bp);
6026
6027 /* flush all */
6028 mb();
6029 mmiowb();
6030}
a2fbb9ea 6031
55c11941
MS
6032void bnx2x_nic_init(struct bnx2x *bp, u32 load_code)
6033{
6034 int i;
6035
6036 for_each_eth_queue(bp, i)
6037 bnx2x_init_eth_fp(bp, i);
ad5afc89
AE
6038
6039 /* ensure status block indices were read */
6040 rmb();
6041 bnx2x_init_rx_rings(bp);
6042 bnx2x_init_tx_rings(bp);
6043
6044 if (IS_VF(bp))
6045 return;
6046
020c7e3f
YR
6047 /* Initialize MOD_ABS interrupts */
6048 bnx2x_init_mod_abs_int(bp, &bp->link_vars, bp->common.chip_id,
6049 bp->common.shmem_base, bp->common.shmem2_base,
6050 BP_PORT(bp));
16119785 6051
523224a3 6052 bnx2x_init_def_sb(bp);
5c862848 6053 bnx2x_update_dsb_idx(bp);
a2fbb9ea 6054 bnx2x_init_sp_ring(bp);
523224a3 6055 bnx2x_init_eq_ring(bp);
471de716 6056 bnx2x_init_internal(bp, load_code);
523224a3 6057 bnx2x_pf_init(bp);
0ef00459
EG
6058 bnx2x_stats_init(bp);
6059
0ef00459
EG
6060 /* flush all before enabling interrupts */
6061 mb();
6062 mmiowb();
6063
615f8fd9 6064 bnx2x_int_enable(bp);
eb8da205
EG
6065
6066 /* Check for SPIO5 */
6067 bnx2x_attn_int_deasserted0(bp,
6068 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + BP_PORT(bp)*4) &
6069 AEU_INPUTS_ATTN_BITS_SPIO5);
a2fbb9ea
ET
6070}
6071
6072/* end of nic init */
6073
6074/*
6075 * gzip service functions
6076 */
6077
6078static int bnx2x_gunzip_init(struct bnx2x *bp)
6079{
1a983142
FT
6080 bp->gunzip_buf = dma_alloc_coherent(&bp->pdev->dev, FW_BUF_SIZE,
6081 &bp->gunzip_mapping, GFP_KERNEL);
a2fbb9ea
ET
6082 if (bp->gunzip_buf == NULL)
6083 goto gunzip_nomem1;
6084
6085 bp->strm = kmalloc(sizeof(*bp->strm), GFP_KERNEL);
6086 if (bp->strm == NULL)
6087 goto gunzip_nomem2;
6088
7ab24bfd 6089 bp->strm->workspace = vmalloc(zlib_inflate_workspacesize());
a2fbb9ea
ET
6090 if (bp->strm->workspace == NULL)
6091 goto gunzip_nomem3;
6092
6093 return 0;
6094
6095gunzip_nomem3:
6096 kfree(bp->strm);
6097 bp->strm = NULL;
6098
6099gunzip_nomem2:
1a983142
FT
6100 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
6101 bp->gunzip_mapping);
a2fbb9ea
ET
6102 bp->gunzip_buf = NULL;
6103
6104gunzip_nomem1:
51c1a580 6105 BNX2X_ERR("Cannot allocate firmware buffer for un-compression\n");
a2fbb9ea
ET
6106 return -ENOMEM;
6107}
6108
6109static void bnx2x_gunzip_end(struct bnx2x *bp)
6110{
b3b83c3f 6111 if (bp->strm) {
7ab24bfd 6112 vfree(bp->strm->workspace);
b3b83c3f
DK
6113 kfree(bp->strm);
6114 bp->strm = NULL;
6115 }
a2fbb9ea
ET
6116
6117 if (bp->gunzip_buf) {
1a983142
FT
6118 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
6119 bp->gunzip_mapping);
a2fbb9ea
ET
6120 bp->gunzip_buf = NULL;
6121 }
6122}
6123
94a78b79 6124static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len)
a2fbb9ea
ET
6125{
6126 int n, rc;
6127
6128 /* check gzip header */
94a78b79
VZ
6129 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) {
6130 BNX2X_ERR("Bad gzip header\n");
a2fbb9ea 6131 return -EINVAL;
94a78b79 6132 }
a2fbb9ea
ET
6133
6134 n = 10;
6135
34f80b04 6136#define FNAME 0x8
a2fbb9ea
ET
6137
6138 if (zbuf[3] & FNAME)
6139 while ((zbuf[n++] != 0) && (n < len));
6140
94a78b79 6141 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n;
a2fbb9ea
ET
6142 bp->strm->avail_in = len - n;
6143 bp->strm->next_out = bp->gunzip_buf;
6144 bp->strm->avail_out = FW_BUF_SIZE;
6145
6146 rc = zlib_inflateInit2(bp->strm, -MAX_WBITS);
6147 if (rc != Z_OK)
6148 return rc;
6149
6150 rc = zlib_inflate(bp->strm, Z_FINISH);
6151 if ((rc != Z_OK) && (rc != Z_STREAM_END))
7995c64e
JP
6152 netdev_err(bp->dev, "Firmware decompression error: %s\n",
6153 bp->strm->msg);
a2fbb9ea
ET
6154
6155 bp->gunzip_outlen = (FW_BUF_SIZE - bp->strm->avail_out);
6156 if (bp->gunzip_outlen & 0x3)
51c1a580
MS
6157 netdev_err(bp->dev,
6158 "Firmware decompression error: gunzip_outlen (%d) not aligned\n",
cdaa7cb8 6159 bp->gunzip_outlen);
a2fbb9ea
ET
6160 bp->gunzip_outlen >>= 2;
6161
6162 zlib_inflateEnd(bp->strm);
6163
6164 if (rc == Z_STREAM_END)
6165 return 0;
6166
6167 return rc;
6168}
6169
6170/* nic load/unload */
6171
6172/*
34f80b04 6173 * General service functions
a2fbb9ea
ET
6174 */
6175
6176/* send a NIG loopback debug packet */
6177static void bnx2x_lb_pckt(struct bnx2x *bp)
6178{
a2fbb9ea 6179 u32 wb_write[3];
a2fbb9ea
ET
6180
6181 /* Ethernet source and destination addresses */
a2fbb9ea
ET
6182 wb_write[0] = 0x55555555;
6183 wb_write[1] = 0x55555555;
34f80b04 6184 wb_write[2] = 0x20; /* SOP */
a2fbb9ea 6185 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
6186
6187 /* NON-IP protocol */
a2fbb9ea
ET
6188 wb_write[0] = 0x09000000;
6189 wb_write[1] = 0x55555555;
34f80b04 6190 wb_write[2] = 0x10; /* EOP, eop_bvalid = 0 */
a2fbb9ea 6191 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
6192}
6193
6194/* some of the internal memories
6195 * are not directly readable from the driver
6196 * to test them we send debug packets
6197 */
6198static int bnx2x_int_mem_test(struct bnx2x *bp)
6199{
6200 int factor;
6201 int count, i;
6202 u32 val = 0;
6203
ad8d3948 6204 if (CHIP_REV_IS_FPGA(bp))
a2fbb9ea 6205 factor = 120;
ad8d3948
EG
6206 else if (CHIP_REV_IS_EMUL(bp))
6207 factor = 200;
6208 else
a2fbb9ea 6209 factor = 1;
a2fbb9ea 6210
a2fbb9ea
ET
6211 /* Disable inputs of parser neighbor blocks */
6212 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6213 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6214 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6215 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6216
6217 /* Write 0 to parser credits for CFC search request */
6218 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6219
6220 /* send Ethernet packet */
6221 bnx2x_lb_pckt(bp);
6222
6223 /* TODO do i reset NIG statistic? */
6224 /* Wait until NIG register shows 1 packet of size 0x10 */
6225 count = 1000 * factor;
6226 while (count) {
34f80b04 6227
a2fbb9ea
ET
6228 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6229 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6230 if (val == 0x10)
6231 break;
6232
6233 msleep(10);
6234 count--;
6235 }
6236 if (val != 0x10) {
6237 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6238 return -1;
6239 }
6240
6241 /* Wait until PRS register shows 1 packet */
6242 count = 1000 * factor;
6243 while (count) {
6244 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
a2fbb9ea
ET
6245 if (val == 1)
6246 break;
6247
6248 msleep(10);
6249 count--;
6250 }
6251 if (val != 0x1) {
6252 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6253 return -2;
6254 }
6255
6256 /* Reset and init BRB, PRS */
34f80b04 6257 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
a2fbb9ea 6258 msleep(50);
34f80b04 6259 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
a2fbb9ea 6260 msleep(50);
619c5cb6
VZ
6261 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6262 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
a2fbb9ea
ET
6263
6264 DP(NETIF_MSG_HW, "part2\n");
6265
6266 /* Disable inputs of parser neighbor blocks */
6267 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6268 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6269 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6270 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6271
6272 /* Write 0 to parser credits for CFC search request */
6273 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6274
6275 /* send 10 Ethernet packets */
6276 for (i = 0; i < 10; i++)
6277 bnx2x_lb_pckt(bp);
6278
6279 /* Wait until NIG register shows 10 + 1
6280 packets of size 11*0x10 = 0xb0 */
6281 count = 1000 * factor;
6282 while (count) {
34f80b04 6283
a2fbb9ea
ET
6284 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6285 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6286 if (val == 0xb0)
6287 break;
6288
6289 msleep(10);
6290 count--;
6291 }
6292 if (val != 0xb0) {
6293 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6294 return -3;
6295 }
6296
6297 /* Wait until PRS register shows 2 packets */
6298 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6299 if (val != 2)
6300 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6301
6302 /* Write 1 to parser credits for CFC search request */
6303 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x1);
6304
6305 /* Wait until PRS register shows 3 packets */
6306 msleep(10 * factor);
6307 /* Wait until NIG register shows 1 packet of size 0x10 */
6308 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6309 if (val != 3)
6310 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6311
6312 /* clear NIG EOP FIFO */
6313 for (i = 0; i < 11; i++)
6314 REG_RD(bp, NIG_REG_INGRESS_EOP_LB_FIFO);
6315 val = REG_RD(bp, NIG_REG_INGRESS_EOP_LB_EMPTY);
6316 if (val != 1) {
6317 BNX2X_ERR("clear of NIG failed\n");
6318 return -4;
6319 }
6320
6321 /* Reset and init BRB, PRS, NIG */
6322 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
6323 msleep(50);
6324 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
6325 msleep(50);
619c5cb6
VZ
6326 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6327 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
55c11941
MS
6328 if (!CNIC_SUPPORT(bp))
6329 /* set NIC mode */
6330 REG_WR(bp, PRS_REG_NIC_MODE, 1);
a2fbb9ea
ET
6331
6332 /* Enable inputs of parser neighbor blocks */
6333 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x7fffffff);
6334 REG_WR(bp, TCM_REG_PRS_IFEN, 0x1);
6335 REG_WR(bp, CFC_REG_DEBUG0, 0x0);
3196a88a 6336 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x1);
a2fbb9ea
ET
6337
6338 DP(NETIF_MSG_HW, "done\n");
6339
6340 return 0; /* OK */
6341}
6342
4a33bc03 6343static void bnx2x_enable_blocks_attention(struct bnx2x *bp)
a2fbb9ea 6344{
b343d002
YM
6345 u32 val;
6346
a2fbb9ea 6347 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
619c5cb6 6348 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6349 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0x40);
6350 else
6351 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0);
a2fbb9ea
ET
6352 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
6353 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
f2e0899f
DK
6354 /*
6355 * mask read length error interrupts in brb for parser
6356 * (parsing unit and 'checksum and crc' unit)
6357 * these errors are legal (PU reads fixed length and CAC can cause
6358 * read length error on truncated packets)
6359 */
6360 REG_WR(bp, BRB1_REG_BRB1_INT_MASK, 0xFC00);
a2fbb9ea
ET
6361 REG_WR(bp, QM_REG_QM_INT_MASK, 0);
6362 REG_WR(bp, TM_REG_TM_INT_MASK, 0);
6363 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_0, 0);
6364 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_1, 0);
6365 REG_WR(bp, XCM_REG_XCM_INT_MASK, 0);
34f80b04
EG
6366/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_0, 0); */
6367/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6368 REG_WR(bp, USDM_REG_USDM_INT_MASK_0, 0);
6369 REG_WR(bp, USDM_REG_USDM_INT_MASK_1, 0);
6370 REG_WR(bp, UCM_REG_UCM_INT_MASK, 0);
34f80b04
EG
6371/* REG_WR(bp, USEM_REG_USEM_INT_MASK_0, 0); */
6372/* REG_WR(bp, USEM_REG_USEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6373 REG_WR(bp, GRCBASE_UPB + PB_REG_PB_INT_MASK, 0);
6374 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_0, 0);
6375 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_1, 0);
6376 REG_WR(bp, CCM_REG_CCM_INT_MASK, 0);
34f80b04
EG
6377/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_0, 0); */
6378/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_1, 0); */
f85582f8 6379
b343d002
YM
6380 val = PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT |
6381 PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF |
6382 PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN;
6383 if (!CHIP_IS_E1x(bp))
6384 val |= PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED |
6385 PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED;
6386 REG_WR(bp, PXP2_REG_PXP2_INT_MASK_0, val);
6387
a2fbb9ea
ET
6388 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_0, 0);
6389 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_1, 0);
6390 REG_WR(bp, TCM_REG_TCM_INT_MASK, 0);
34f80b04 6391/* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_0, 0); */
619c5cb6
VZ
6392
6393 if (!CHIP_IS_E1x(bp))
6394 /* enable VFC attentions: bits 11 and 12, bits 31:13 reserved */
6395 REG_WR(bp, TSEM_REG_TSEM_INT_MASK_1, 0x07ff);
6396
a2fbb9ea
ET
6397 REG_WR(bp, CDU_REG_CDU_INT_MASK, 0);
6398 REG_WR(bp, DMAE_REG_DMAE_INT_MASK, 0);
34f80b04 6399/* REG_WR(bp, MISC_REG_MISC_INT_MASK, 0); */
4a33bc03 6400 REG_WR(bp, PBF_REG_PBF_INT_MASK, 0x18); /* bit 3,4 masked */
a2fbb9ea
ET
6401}
6402
81f75bbf
EG
6403static void bnx2x_reset_common(struct bnx2x *bp)
6404{
619c5cb6
VZ
6405 u32 val = 0x1400;
6406
81f75bbf
EG
6407 /* reset_common */
6408 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6409 0xd3ffff7f);
619c5cb6
VZ
6410
6411 if (CHIP_IS_E3(bp)) {
6412 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6413 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6414 }
6415
6416 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR, val);
6417}
6418
6419static void bnx2x_setup_dmae(struct bnx2x *bp)
6420{
6421 bp->dmae_ready = 0;
6422 spin_lock_init(&bp->dmae_lock);
81f75bbf
EG
6423}
6424
573f2035
EG
6425static void bnx2x_init_pxp(struct bnx2x *bp)
6426{
6427 u16 devctl;
6428 int r_order, w_order;
6429
2a80eebc 6430 pcie_capability_read_word(bp->pdev, PCI_EXP_DEVCTL, &devctl);
573f2035
EG
6431 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl);
6432 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
6433 if (bp->mrrs == -1)
6434 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12);
6435 else {
6436 DP(NETIF_MSG_HW, "force read order to %d\n", bp->mrrs);
6437 r_order = bp->mrrs;
6438 }
6439
6440 bnx2x_init_pxp_arb(bp, r_order, w_order);
6441}
fd4ef40d
EG
6442
6443static void bnx2x_setup_fan_failure_detection(struct bnx2x *bp)
6444{
2145a920 6445 int is_required;
fd4ef40d 6446 u32 val;
2145a920 6447 int port;
fd4ef40d 6448
2145a920
VZ
6449 if (BP_NOMCP(bp))
6450 return;
6451
6452 is_required = 0;
fd4ef40d
EG
6453 val = SHMEM_RD(bp, dev_info.shared_hw_config.config2) &
6454 SHARED_HW_CFG_FAN_FAILURE_MASK;
6455
6456 if (val == SHARED_HW_CFG_FAN_FAILURE_ENABLED)
6457 is_required = 1;
6458
6459 /*
6460 * The fan failure mechanism is usually related to the PHY type since
6461 * the power consumption of the board is affected by the PHY. Currently,
6462 * fan is required for most designs with SFX7101, BCM8727 and BCM8481.
6463 */
6464 else if (val == SHARED_HW_CFG_FAN_FAILURE_PHY_TYPE)
6465 for (port = PORT_0; port < PORT_MAX; port++) {
fd4ef40d 6466 is_required |=
d90d96ba
YR
6467 bnx2x_fan_failure_det_req(
6468 bp,
6469 bp->common.shmem_base,
a22f0788 6470 bp->common.shmem2_base,
d90d96ba 6471 port);
fd4ef40d
EG
6472 }
6473
6474 DP(NETIF_MSG_HW, "fan detection setting: %d\n", is_required);
6475
6476 if (is_required == 0)
6477 return;
6478
6479 /* Fan failure is indicated by SPIO 5 */
d6d99a3f 6480 bnx2x_set_spio(bp, MISC_SPIO_SPIO5, MISC_SPIO_INPUT_HI_Z);
fd4ef40d
EG
6481
6482 /* set to active low mode */
6483 val = REG_RD(bp, MISC_REG_SPIO_INT);
d6d99a3f 6484 val |= (MISC_SPIO_SPIO5 << MISC_SPIO_INT_OLD_SET_POS);
fd4ef40d
EG
6485 REG_WR(bp, MISC_REG_SPIO_INT, val);
6486
6487 /* enable interrupt to signal the IGU */
6488 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 6489 val |= MISC_SPIO_SPIO5;
fd4ef40d
EG
6490 REG_WR(bp, MISC_REG_SPIO_EVENT_EN, val);
6491}
6492
c9ee9206 6493void bnx2x_pf_disable(struct bnx2x *bp)
f2e0899f
DK
6494{
6495 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
6496 val &= ~IGU_PF_CONF_FUNC_EN;
6497
6498 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
6499 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6500 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 0);
6501}
6502
1191cb83 6503static void bnx2x__common_init_phy(struct bnx2x *bp)
619c5cb6
VZ
6504{
6505 u32 shmem_base[2], shmem2_base[2];
b884d95b
YR
6506 /* Avoid common init in case MFW supports LFA */
6507 if (SHMEM2_RD(bp, size) >
6508 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
6509 return;
619c5cb6
VZ
6510 shmem_base[0] = bp->common.shmem_base;
6511 shmem2_base[0] = bp->common.shmem2_base;
6512 if (!CHIP_IS_E1x(bp)) {
6513 shmem_base[1] =
6514 SHMEM2_RD(bp, other_shmem_base_addr);
6515 shmem2_base[1] =
6516 SHMEM2_RD(bp, other_shmem2_base_addr);
6517 }
6518 bnx2x_acquire_phy_lock(bp);
6519 bnx2x_common_init_phy(bp, shmem_base, shmem2_base,
6520 bp->common.chip_id);
6521 bnx2x_release_phy_lock(bp);
6522}
6523
6524/**
6525 * bnx2x_init_hw_common - initialize the HW at the COMMON phase.
6526 *
6527 * @bp: driver handle
6528 */
6529static int bnx2x_init_hw_common(struct bnx2x *bp)
a2fbb9ea 6530{
619c5cb6 6531 u32 val;
a2fbb9ea 6532
51c1a580 6533 DP(NETIF_MSG_HW, "starting common init func %d\n", BP_ABS_FUNC(bp));
a2fbb9ea 6534
2031bd3a 6535 /*
2de67439 6536 * take the RESET lock to protect undi_unload flow from accessing
2031bd3a
DK
6537 * registers while we're resetting the chip
6538 */
7a06a122 6539 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6540
81f75bbf 6541 bnx2x_reset_common(bp);
34f80b04 6542 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0xffffffff);
a2fbb9ea 6543
619c5cb6
VZ
6544 val = 0xfffc;
6545 if (CHIP_IS_E3(bp)) {
6546 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6547 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6548 }
6549 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET, val);
6550
7a06a122 6551 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 6552
619c5cb6 6553 bnx2x_init_block(bp, BLOCK_MISC, PHASE_COMMON);
a2fbb9ea 6554
619c5cb6
VZ
6555 if (!CHIP_IS_E1x(bp)) {
6556 u8 abs_func_id;
f2e0899f
DK
6557
6558 /**
6559 * 4-port mode or 2-port mode we need to turn of master-enable
6560 * for everyone, after that, turn it back on for self.
6561 * so, we disregard multi-function or not, and always disable
6562 * for all functions on the given path, this means 0,2,4,6 for
6563 * path 0 and 1,3,5,7 for path 1
6564 */
619c5cb6
VZ
6565 for (abs_func_id = BP_PATH(bp);
6566 abs_func_id < E2_FUNC_MAX*2; abs_func_id += 2) {
6567 if (abs_func_id == BP_ABS_FUNC(bp)) {
f2e0899f
DK
6568 REG_WR(bp,
6569 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER,
6570 1);
6571 continue;
6572 }
6573
619c5cb6 6574 bnx2x_pretend_func(bp, abs_func_id);
f2e0899f
DK
6575 /* clear pf enable */
6576 bnx2x_pf_disable(bp);
6577 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6578 }
6579 }
a2fbb9ea 6580
619c5cb6 6581 bnx2x_init_block(bp, BLOCK_PXP, PHASE_COMMON);
34f80b04
EG
6582 if (CHIP_IS_E1(bp)) {
6583 /* enable HW interrupt from PXP on USDM overflow
6584 bit 16 on INT_MASK_0 */
6585 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
6586 }
a2fbb9ea 6587
619c5cb6 6588 bnx2x_init_block(bp, BLOCK_PXP2, PHASE_COMMON);
34f80b04 6589 bnx2x_init_pxp(bp);
a2fbb9ea
ET
6590
6591#ifdef __BIG_ENDIAN
34f80b04
EG
6592 REG_WR(bp, PXP2_REG_RQ_QM_ENDIAN_M, 1);
6593 REG_WR(bp, PXP2_REG_RQ_TM_ENDIAN_M, 1);
6594 REG_WR(bp, PXP2_REG_RQ_SRC_ENDIAN_M, 1);
6595 REG_WR(bp, PXP2_REG_RQ_CDU_ENDIAN_M, 1);
6596 REG_WR(bp, PXP2_REG_RQ_DBG_ENDIAN_M, 1);
8badd27a
EG
6597 /* make sure this value is 0 */
6598 REG_WR(bp, PXP2_REG_RQ_HC_ENDIAN_M, 0);
34f80b04
EG
6599
6600/* REG_WR(bp, PXP2_REG_RD_PBF_SWAP_MODE, 1); */
6601 REG_WR(bp, PXP2_REG_RD_QM_SWAP_MODE, 1);
6602 REG_WR(bp, PXP2_REG_RD_TM_SWAP_MODE, 1);
6603 REG_WR(bp, PXP2_REG_RD_SRC_SWAP_MODE, 1);
6604 REG_WR(bp, PXP2_REG_RD_CDURD_SWAP_MODE, 1);
a2fbb9ea
ET
6605#endif
6606
523224a3
DK
6607 bnx2x_ilt_init_page_size(bp, INITOP_SET);
6608
34f80b04
EG
6609 if (CHIP_REV_IS_FPGA(bp) && CHIP_IS_E1H(bp))
6610 REG_WR(bp, PXP2_REG_PGL_TAGS_LIMIT, 0x1);
a2fbb9ea 6611
34f80b04
EG
6612 /* let the HW do it's magic ... */
6613 msleep(100);
6614 /* finish PXP init */
6615 val = REG_RD(bp, PXP2_REG_RQ_CFG_DONE);
6616 if (val != 1) {
6617 BNX2X_ERR("PXP2 CFG failed\n");
6618 return -EBUSY;
6619 }
6620 val = REG_RD(bp, PXP2_REG_RD_INIT_DONE);
6621 if (val != 1) {
6622 BNX2X_ERR("PXP2 RD_INIT failed\n");
6623 return -EBUSY;
6624 }
a2fbb9ea 6625
f2e0899f
DK
6626 /* Timers bug workaround E2 only. We need to set the entire ILT to
6627 * have entries with value "0" and valid bit on.
6628 * This needs to be done by the first PF that is loaded in a path
6629 * (i.e. common phase)
6630 */
619c5cb6
VZ
6631 if (!CHIP_IS_E1x(bp)) {
6632/* In E2 there is a bug in the timers block that can cause function 6 / 7
6633 * (i.e. vnic3) to start even if it is marked as "scan-off".
6634 * This occurs when a different function (func2,3) is being marked
6635 * as "scan-off". Real-life scenario for example: if a driver is being
6636 * load-unloaded while func6,7 are down. This will cause the timer to access
6637 * the ilt, translate to a logical address and send a request to read/write.
6638 * Since the ilt for the function that is down is not valid, this will cause
6639 * a translation error which is unrecoverable.
6640 * The Workaround is intended to make sure that when this happens nothing fatal
6641 * will occur. The workaround:
6642 * 1. First PF driver which loads on a path will:
6643 * a. After taking the chip out of reset, by using pretend,
6644 * it will write "0" to the following registers of
6645 * the other vnics.
6646 * REG_WR(pdev, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6647 * REG_WR(pdev, CFC_REG_WEAK_ENABLE_PF,0);
6648 * REG_WR(pdev, CFC_REG_STRONG_ENABLE_PF,0);
6649 * And for itself it will write '1' to
6650 * PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER to enable
6651 * dmae-operations (writing to pram for example.)
6652 * note: can be done for only function 6,7 but cleaner this
6653 * way.
6654 * b. Write zero+valid to the entire ILT.
6655 * c. Init the first_timers_ilt_entry, last_timers_ilt_entry of
6656 * VNIC3 (of that port). The range allocated will be the
6657 * entire ILT. This is needed to prevent ILT range error.
6658 * 2. Any PF driver load flow:
6659 * a. ILT update with the physical addresses of the allocated
6660 * logical pages.
6661 * b. Wait 20msec. - note that this timeout is needed to make
6662 * sure there are no requests in one of the PXP internal
6663 * queues with "old" ILT addresses.
6664 * c. PF enable in the PGLC.
6665 * d. Clear the was_error of the PF in the PGLC. (could have
2de67439 6666 * occurred while driver was down)
619c5cb6
VZ
6667 * e. PF enable in the CFC (WEAK + STRONG)
6668 * f. Timers scan enable
6669 * 3. PF driver unload flow:
6670 * a. Clear the Timers scan_en.
6671 * b. Polling for scan_on=0 for that PF.
6672 * c. Clear the PF enable bit in the PXP.
6673 * d. Clear the PF enable in the CFC (WEAK + STRONG)
6674 * e. Write zero+valid to all ILT entries (The valid bit must
6675 * stay set)
6676 * f. If this is VNIC 3 of a port then also init
6677 * first_timers_ilt_entry to zero and last_timers_ilt_entry
6678 * to the last enrty in the ILT.
6679 *
6680 * Notes:
6681 * Currently the PF error in the PGLC is non recoverable.
6682 * In the future the there will be a recovery routine for this error.
6683 * Currently attention is masked.
6684 * Having an MCP lock on the load/unload process does not guarantee that
6685 * there is no Timer disable during Func6/7 enable. This is because the
6686 * Timers scan is currently being cleared by the MCP on FLR.
6687 * Step 2.d can be done only for PF6/7 and the driver can also check if
6688 * there is error before clearing it. But the flow above is simpler and
6689 * more general.
6690 * All ILT entries are written by zero+valid and not just PF6/7
6691 * ILT entries since in the future the ILT entries allocation for
6692 * PF-s might be dynamic.
6693 */
f2e0899f
DK
6694 struct ilt_client_info ilt_cli;
6695 struct bnx2x_ilt ilt;
6696 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
6697 memset(&ilt, 0, sizeof(struct bnx2x_ilt));
6698
b595076a 6699 /* initialize dummy TM client */
f2e0899f
DK
6700 ilt_cli.start = 0;
6701 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
6702 ilt_cli.client_num = ILT_CLIENT_TM;
6703
6704 /* Step 1: set zeroes to all ilt page entries with valid bit on
6705 * Step 2: set the timers first/last ilt entry to point
6706 * to the entire range to prevent ILT range error for 3rd/4th
2de67439 6707 * vnic (this code assumes existence of the vnic)
f2e0899f
DK
6708 *
6709 * both steps performed by call to bnx2x_ilt_client_init_op()
6710 * with dummy TM client
6711 *
6712 * we must use pretend since PXP2_REG_RQ_##blk##_FIRST_ILT
6713 * and his brother are split registers
6714 */
6715 bnx2x_pretend_func(bp, (BP_PATH(bp) + 6));
6716 bnx2x_ilt_client_init_op_ilt(bp, &ilt, &ilt_cli, INITOP_CLEAR);
6717 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
6718
6719 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN, BNX2X_PXP_DRAM_ALIGN);
6720 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_RD, BNX2X_PXP_DRAM_ALIGN);
6721 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_SEL, 1);
6722 }
6723
34f80b04
EG
6724 REG_WR(bp, PXP2_REG_RQ_DISABLE_INPUTS, 0);
6725 REG_WR(bp, PXP2_REG_RD_DISABLE_INPUTS, 0);
a2fbb9ea 6726
619c5cb6 6727 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6728 int factor = CHIP_REV_IS_EMUL(bp) ? 1000 :
6729 (CHIP_REV_IS_FPGA(bp) ? 400 : 0);
619c5cb6 6730 bnx2x_init_block(bp, BLOCK_PGLUE_B, PHASE_COMMON);
f2e0899f 6731
619c5cb6 6732 bnx2x_init_block(bp, BLOCK_ATC, PHASE_COMMON);
f2e0899f
DK
6733
6734 /* let the HW do it's magic ... */
6735 do {
6736 msleep(200);
6737 val = REG_RD(bp, ATC_REG_ATC_INIT_DONE);
6738 } while (factor-- && (val != 1));
6739
6740 if (val != 1) {
6741 BNX2X_ERR("ATC_INIT failed\n");
6742 return -EBUSY;
6743 }
6744 }
6745
619c5cb6 6746 bnx2x_init_block(bp, BLOCK_DMAE, PHASE_COMMON);
a2fbb9ea 6747
b56e9670
AE
6748 bnx2x_iov_init_dmae(bp);
6749
34f80b04
EG
6750 /* clean the DMAE memory */
6751 bp->dmae_ready = 1;
619c5cb6
VZ
6752 bnx2x_init_fill(bp, TSEM_REG_PRAM, 0, 8, 1);
6753
6754 bnx2x_init_block(bp, BLOCK_TCM, PHASE_COMMON);
6755
6756 bnx2x_init_block(bp, BLOCK_UCM, PHASE_COMMON);
6757
6758 bnx2x_init_block(bp, BLOCK_CCM, PHASE_COMMON);
a2fbb9ea 6759
619c5cb6 6760 bnx2x_init_block(bp, BLOCK_XCM, PHASE_COMMON);
a2fbb9ea 6761
34f80b04
EG
6762 bnx2x_read_dmae(bp, XSEM_REG_PASSIVE_BUFFER, 3);
6763 bnx2x_read_dmae(bp, CSEM_REG_PASSIVE_BUFFER, 3);
6764 bnx2x_read_dmae(bp, TSEM_REG_PASSIVE_BUFFER, 3);
6765 bnx2x_read_dmae(bp, USEM_REG_PASSIVE_BUFFER, 3);
6766
619c5cb6 6767 bnx2x_init_block(bp, BLOCK_QM, PHASE_COMMON);
37b091ba 6768
f85582f8 6769
523224a3
DK
6770 /* QM queues pointers table */
6771 bnx2x_qm_init_ptr_table(bp, bp->qm_cid_count, INITOP_SET);
6772
34f80b04
EG
6773 /* soft reset pulse */
6774 REG_WR(bp, QM_REG_SOFT_RESET, 1);
6775 REG_WR(bp, QM_REG_SOFT_RESET, 0);
a2fbb9ea 6776
55c11941
MS
6777 if (CNIC_SUPPORT(bp))
6778 bnx2x_init_block(bp, BLOCK_TM, PHASE_COMMON);
a2fbb9ea 6779
619c5cb6 6780 bnx2x_init_block(bp, BLOCK_DORQ, PHASE_COMMON);
523224a3 6781 REG_WR(bp, DORQ_REG_DPM_CID_OFST, BNX2X_DB_SHIFT);
619c5cb6 6782 if (!CHIP_REV_IS_SLOW(bp))
34f80b04
EG
6783 /* enable hw interrupt from doorbell Q */
6784 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
a2fbb9ea 6785
619c5cb6 6786 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
f2e0899f 6787
619c5cb6 6788 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
26c8fa4d 6789 REG_WR(bp, PRS_REG_A_PRSU_20, 0xf);
619c5cb6 6790
f2e0899f 6791 if (!CHIP_IS_E1(bp))
619c5cb6 6792 REG_WR(bp, PRS_REG_E1HOV_MODE, bp->path_has_ovlan);
f85582f8 6793
a3348722
BW
6794 if (!CHIP_IS_E1x(bp) && !CHIP_IS_E3B0(bp)) {
6795 if (IS_MF_AFEX(bp)) {
6796 /* configure that VNTag and VLAN headers must be
6797 * received in afex mode
6798 */
6799 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC, 0xE);
6800 REG_WR(bp, PRS_REG_MUST_HAVE_HDRS, 0xA);
6801 REG_WR(bp, PRS_REG_HDRS_AFTER_TAG_0, 0x6);
6802 REG_WR(bp, PRS_REG_TAG_ETHERTYPE_0, 0x8926);
6803 REG_WR(bp, PRS_REG_TAG_LEN_0, 0x4);
6804 } else {
6805 /* Bit-map indicating which L2 hdrs may appear
6806 * after the basic Ethernet header
6807 */
6808 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC,
6809 bp->path_has_ovlan ? 7 : 6);
6810 }
6811 }
a2fbb9ea 6812
619c5cb6
VZ
6813 bnx2x_init_block(bp, BLOCK_TSDM, PHASE_COMMON);
6814 bnx2x_init_block(bp, BLOCK_CSDM, PHASE_COMMON);
6815 bnx2x_init_block(bp, BLOCK_USDM, PHASE_COMMON);
6816 bnx2x_init_block(bp, BLOCK_XSDM, PHASE_COMMON);
a2fbb9ea 6817
619c5cb6
VZ
6818 if (!CHIP_IS_E1x(bp)) {
6819 /* reset VFC memories */
6820 REG_WR(bp, TSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6821 VFC_MEMORIES_RST_REG_CAM_RST |
6822 VFC_MEMORIES_RST_REG_RAM_RST);
6823 REG_WR(bp, XSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
6824 VFC_MEMORIES_RST_REG_CAM_RST |
6825 VFC_MEMORIES_RST_REG_RAM_RST);
a2fbb9ea 6826
619c5cb6
VZ
6827 msleep(20);
6828 }
a2fbb9ea 6829
619c5cb6
VZ
6830 bnx2x_init_block(bp, BLOCK_TSEM, PHASE_COMMON);
6831 bnx2x_init_block(bp, BLOCK_USEM, PHASE_COMMON);
6832 bnx2x_init_block(bp, BLOCK_CSEM, PHASE_COMMON);
6833 bnx2x_init_block(bp, BLOCK_XSEM, PHASE_COMMON);
f2e0899f 6834
34f80b04
EG
6835 /* sync semi rtc */
6836 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6837 0x80000000);
6838 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET,
6839 0x80000000);
a2fbb9ea 6840
619c5cb6
VZ
6841 bnx2x_init_block(bp, BLOCK_UPB, PHASE_COMMON);
6842 bnx2x_init_block(bp, BLOCK_XPB, PHASE_COMMON);
6843 bnx2x_init_block(bp, BLOCK_PBF, PHASE_COMMON);
a2fbb9ea 6844
a3348722
BW
6845 if (!CHIP_IS_E1x(bp)) {
6846 if (IS_MF_AFEX(bp)) {
6847 /* configure that VNTag and VLAN headers must be
6848 * sent in afex mode
6849 */
6850 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC, 0xE);
6851 REG_WR(bp, PBF_REG_MUST_HAVE_HDRS, 0xA);
6852 REG_WR(bp, PBF_REG_HDRS_AFTER_TAG_0, 0x6);
6853 REG_WR(bp, PBF_REG_TAG_ETHERTYPE_0, 0x8926);
6854 REG_WR(bp, PBF_REG_TAG_LEN_0, 0x4);
6855 } else {
6856 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC,
6857 bp->path_has_ovlan ? 7 : 6);
6858 }
6859 }
f2e0899f 6860
34f80b04 6861 REG_WR(bp, SRC_REG_SOFT_RST, 1);
f85582f8 6862
619c5cb6
VZ
6863 bnx2x_init_block(bp, BLOCK_SRC, PHASE_COMMON);
6864
55c11941
MS
6865 if (CNIC_SUPPORT(bp)) {
6866 REG_WR(bp, SRC_REG_KEYSEARCH_0, 0x63285672);
6867 REG_WR(bp, SRC_REG_KEYSEARCH_1, 0x24b8f2cc);
6868 REG_WR(bp, SRC_REG_KEYSEARCH_2, 0x223aef9b);
6869 REG_WR(bp, SRC_REG_KEYSEARCH_3, 0x26001e3a);
6870 REG_WR(bp, SRC_REG_KEYSEARCH_4, 0x7ae91116);
6871 REG_WR(bp, SRC_REG_KEYSEARCH_5, 0x5ce5230b);
6872 REG_WR(bp, SRC_REG_KEYSEARCH_6, 0x298d8adf);
6873 REG_WR(bp, SRC_REG_KEYSEARCH_7, 0x6eb0ff09);
6874 REG_WR(bp, SRC_REG_KEYSEARCH_8, 0x1830f82f);
6875 REG_WR(bp, SRC_REG_KEYSEARCH_9, 0x01e46be7);
6876 }
34f80b04 6877 REG_WR(bp, SRC_REG_SOFT_RST, 0);
a2fbb9ea 6878
34f80b04
EG
6879 if (sizeof(union cdu_context) != 1024)
6880 /* we currently assume that a context is 1024 bytes */
51c1a580
MS
6881 dev_alert(&bp->pdev->dev,
6882 "please adjust the size of cdu_context(%ld)\n",
6883 (long)sizeof(union cdu_context));
a2fbb9ea 6884
619c5cb6 6885 bnx2x_init_block(bp, BLOCK_CDU, PHASE_COMMON);
34f80b04
EG
6886 val = (4 << 24) + (0 << 12) + 1024;
6887 REG_WR(bp, CDU_REG_CDU_GLOBAL_PARAMS, val);
a2fbb9ea 6888
619c5cb6 6889 bnx2x_init_block(bp, BLOCK_CFC, PHASE_COMMON);
34f80b04 6890 REG_WR(bp, CFC_REG_INIT_REG, 0x7FF);
8d9c5f34
EG
6891 /* enable context validation interrupt from CFC */
6892 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
6893
6894 /* set the thresholds to prevent CFC/CDU race */
6895 REG_WR(bp, CFC_REG_DEBUG0, 0x20020000);
a2fbb9ea 6896
619c5cb6 6897 bnx2x_init_block(bp, BLOCK_HC, PHASE_COMMON);
f2e0899f 6898
619c5cb6 6899 if (!CHIP_IS_E1x(bp) && BP_NOMCP(bp))
f2e0899f
DK
6900 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x36);
6901
619c5cb6
VZ
6902 bnx2x_init_block(bp, BLOCK_IGU, PHASE_COMMON);
6903 bnx2x_init_block(bp, BLOCK_MISC_AEU, PHASE_COMMON);
a2fbb9ea 6904
34f80b04
EG
6905 /* Reset PCIE errors for debug */
6906 REG_WR(bp, 0x2814, 0xffffffff);
6907 REG_WR(bp, 0x3820, 0xffffffff);
a2fbb9ea 6908
619c5cb6 6909 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6910 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_CONTROL_5,
6911 (PXPCS_TL_CONTROL_5_ERR_UNSPPORT1 |
6912 PXPCS_TL_CONTROL_5_ERR_UNSPPORT));
6913 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC345_STAT,
6914 (PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4 |
6915 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3 |
6916 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2));
6917 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC678_STAT,
6918 (PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7 |
6919 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6 |
6920 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5));
6921 }
6922
619c5cb6 6923 bnx2x_init_block(bp, BLOCK_NIG, PHASE_COMMON);
f2e0899f 6924 if (!CHIP_IS_E1(bp)) {
619c5cb6
VZ
6925 /* in E3 this done in per-port section */
6926 if (!CHIP_IS_E3(bp))
6927 REG_WR(bp, NIG_REG_LLH_MF_MODE, IS_MF(bp));
f2e0899f 6928 }
619c5cb6
VZ
6929 if (CHIP_IS_E1H(bp))
6930 /* not applicable for E2 (and above ...) */
6931 REG_WR(bp, NIG_REG_LLH_E1HOV_MODE, IS_MF_SD(bp));
34f80b04
EG
6932
6933 if (CHIP_REV_IS_SLOW(bp))
6934 msleep(200);
6935
6936 /* finish CFC init */
6937 val = reg_poll(bp, CFC_REG_LL_INIT_DONE, 1, 100, 10);
6938 if (val != 1) {
6939 BNX2X_ERR("CFC LL_INIT failed\n");
6940 return -EBUSY;
6941 }
6942 val = reg_poll(bp, CFC_REG_AC_INIT_DONE, 1, 100, 10);
6943 if (val != 1) {
6944 BNX2X_ERR("CFC AC_INIT failed\n");
6945 return -EBUSY;
6946 }
6947 val = reg_poll(bp, CFC_REG_CAM_INIT_DONE, 1, 100, 10);
6948 if (val != 1) {
6949 BNX2X_ERR("CFC CAM_INIT failed\n");
6950 return -EBUSY;
6951 }
6952 REG_WR(bp, CFC_REG_DEBUG0, 0);
f1410647 6953
f2e0899f
DK
6954 if (CHIP_IS_E1(bp)) {
6955 /* read NIG statistic
6956 to see if this is our first up since powerup */
6957 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6958 val = *bnx2x_sp(bp, wb_data[0]);
34f80b04 6959
f2e0899f
DK
6960 /* do internal memory self test */
6961 if ((val == 0) && bnx2x_int_mem_test(bp)) {
6962 BNX2X_ERR("internal mem self test failed\n");
6963 return -EBUSY;
6964 }
34f80b04
EG
6965 }
6966
fd4ef40d
EG
6967 bnx2x_setup_fan_failure_detection(bp);
6968
34f80b04
EG
6969 /* clear PXP2 attentions */
6970 REG_RD(bp, PXP2_REG_PXP2_INT_STS_CLR_0);
a2fbb9ea 6971
4a33bc03 6972 bnx2x_enable_blocks_attention(bp);
c9ee9206 6973 bnx2x_enable_blocks_parity(bp);
a2fbb9ea 6974
6bbca910 6975 if (!BP_NOMCP(bp)) {
619c5cb6
VZ
6976 if (CHIP_IS_E1x(bp))
6977 bnx2x__common_init_phy(bp);
6bbca910
YR
6978 } else
6979 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
6980
34f80b04
EG
6981 return 0;
6982}
a2fbb9ea 6983
619c5cb6
VZ
6984/**
6985 * bnx2x_init_hw_common_chip - init HW at the COMMON_CHIP phase.
6986 *
6987 * @bp: driver handle
6988 */
6989static int bnx2x_init_hw_common_chip(struct bnx2x *bp)
6990{
6991 int rc = bnx2x_init_hw_common(bp);
6992
6993 if (rc)
6994 return rc;
6995
6996 /* In E2 2-PORT mode, same ext phy is used for the two paths */
6997 if (!BP_NOMCP(bp))
6998 bnx2x__common_init_phy(bp);
6999
7000 return 0;
7001}
7002
523224a3 7003static int bnx2x_init_hw_port(struct bnx2x *bp)
34f80b04
EG
7004{
7005 int port = BP_PORT(bp);
619c5cb6 7006 int init_phase = port ? PHASE_PORT1 : PHASE_PORT0;
1c06328c 7007 u32 low, high;
34f80b04 7008 u32 val;
a2fbb9ea 7009
619c5cb6 7010
51c1a580 7011 DP(NETIF_MSG_HW, "starting port init port %d\n", port);
34f80b04
EG
7012
7013 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
a2fbb9ea 7014
619c5cb6
VZ
7015 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
7016 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7017 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
ca00392c 7018
f2e0899f
DK
7019 /* Timers bug workaround: disables the pf_master bit in pglue at
7020 * common phase, we need to enable it here before any dmae access are
7021 * attempted. Therefore we manually added the enable-master to the
7022 * port phase (it also happens in the function phase)
7023 */
619c5cb6 7024 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7025 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
7026
619c5cb6
VZ
7027 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
7028 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
7029 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
7030 bnx2x_init_block(bp, BLOCK_QM, init_phase);
7031
7032 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
7033 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
7034 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
7035 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
a2fbb9ea 7036
523224a3
DK
7037 /* QM cid (connection) count */
7038 bnx2x_qm_init_cid_count(bp, bp->qm_cid_count, INITOP_SET);
a2fbb9ea 7039
55c11941
MS
7040 if (CNIC_SUPPORT(bp)) {
7041 bnx2x_init_block(bp, BLOCK_TM, init_phase);
7042 REG_WR(bp, TM_REG_LIN0_SCAN_TIME + port*4, 20);
7043 REG_WR(bp, TM_REG_LIN0_MAX_ACTIVE_CID + port*4, 31);
7044 }
cdaa7cb8 7045
619c5cb6 7046 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
f2e0899f 7047
2b674047
DK
7048 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
7049
f2e0899f 7050 if (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp)) {
619c5cb6
VZ
7051
7052 if (IS_MF(bp))
7053 low = ((bp->flags & ONE_PORT_FLAG) ? 160 : 246);
7054 else if (bp->dev->mtu > 4096) {
7055 if (bp->flags & ONE_PORT_FLAG)
7056 low = 160;
7057 else {
7058 val = bp->dev->mtu;
7059 /* (24*1024 + val*4)/256 */
7060 low = 96 + (val/64) +
7061 ((val % 64) ? 1 : 0);
7062 }
7063 } else
7064 low = ((bp->flags & ONE_PORT_FLAG) ? 80 : 160);
7065 high = low + 56; /* 14*1024/256 */
f2e0899f
DK
7066 REG_WR(bp, BRB1_REG_PAUSE_LOW_THRESHOLD_0 + port*4, low);
7067 REG_WR(bp, BRB1_REG_PAUSE_HIGH_THRESHOLD_0 + port*4, high);
1c06328c 7068 }
1c06328c 7069
619c5cb6
VZ
7070 if (CHIP_MODE_IS_4_PORT(bp))
7071 REG_WR(bp, (BP_PORT(bp) ?
7072 BRB1_REG_MAC_GUARANTIED_1 :
7073 BRB1_REG_MAC_GUARANTIED_0), 40);
1c06328c 7074
ca00392c 7075
619c5cb6 7076 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
a3348722
BW
7077 if (CHIP_IS_E3B0(bp)) {
7078 if (IS_MF_AFEX(bp)) {
7079 /* configure headers for AFEX mode */
7080 REG_WR(bp, BP_PORT(bp) ?
7081 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
7082 PRS_REG_HDRS_AFTER_BASIC_PORT_0, 0xE);
7083 REG_WR(bp, BP_PORT(bp) ?
7084 PRS_REG_HDRS_AFTER_TAG_0_PORT_1 :
7085 PRS_REG_HDRS_AFTER_TAG_0_PORT_0, 0x6);
7086 REG_WR(bp, BP_PORT(bp) ?
7087 PRS_REG_MUST_HAVE_HDRS_PORT_1 :
7088 PRS_REG_MUST_HAVE_HDRS_PORT_0, 0xA);
7089 } else {
7090 /* Ovlan exists only if we are in multi-function +
7091 * switch-dependent mode, in switch-independent there
7092 * is no ovlan headers
7093 */
7094 REG_WR(bp, BP_PORT(bp) ?
7095 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
7096 PRS_REG_HDRS_AFTER_BASIC_PORT_0,
7097 (bp->path_has_ovlan ? 7 : 6));
7098 }
7099 }
356e2385 7100
619c5cb6
VZ
7101 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
7102 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
7103 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
7104 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
356e2385 7105
619c5cb6
VZ
7106 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
7107 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
7108 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
7109 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
34f80b04 7110
619c5cb6
VZ
7111 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
7112 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
a2fbb9ea 7113
619c5cb6
VZ
7114 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
7115
7116 if (CHIP_IS_E1x(bp)) {
f2e0899f
DK
7117 /* configure PBF to work without PAUSE mtu 9000 */
7118 REG_WR(bp, PBF_REG_P0_PAUSE_ENABLE + port*4, 0);
a2fbb9ea 7119
f2e0899f
DK
7120 /* update threshold */
7121 REG_WR(bp, PBF_REG_P0_ARB_THRSH + port*4, (9040/16));
7122 /* update init credit */
7123 REG_WR(bp, PBF_REG_P0_INIT_CRD + port*4, (9040/16) + 553 - 22);
a2fbb9ea 7124
f2e0899f
DK
7125 /* probe changes */
7126 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 1);
7127 udelay(50);
7128 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 0);
7129 }
a2fbb9ea 7130
55c11941
MS
7131 if (CNIC_SUPPORT(bp))
7132 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
7133
619c5cb6
VZ
7134 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
7135 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04
EG
7136
7137 if (CHIP_IS_E1(bp)) {
7138 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
7139 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
7140 }
619c5cb6 7141 bnx2x_init_block(bp, BLOCK_HC, init_phase);
34f80b04 7142
619c5cb6 7143 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 7144
619c5cb6 7145 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
34f80b04
EG
7146 /* init aeu_mask_attn_func_0/1:
7147 * - SF mode: bits 3-7 are masked. only bits 0-2 are in use
7148 * - MF mode: bit 3 is masked. bits 0-2 are in use as in SF
7149 * bits 4-7 are used for "per vn group attention" */
e4901dde
VZ
7150 val = IS_MF(bp) ? 0xF7 : 0x7;
7151 /* Enable DCBX attention for all but E1 */
7152 val |= CHIP_IS_E1(bp) ? 0 : 0x10;
7153 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, val);
34f80b04 7154
619c5cb6
VZ
7155 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
7156
7157 if (!CHIP_IS_E1x(bp)) {
7158 /* Bit-map indicating which L2 hdrs may appear after the
7159 * basic Ethernet header
7160 */
a3348722
BW
7161 if (IS_MF_AFEX(bp))
7162 REG_WR(bp, BP_PORT(bp) ?
7163 NIG_REG_P1_HDRS_AFTER_BASIC :
7164 NIG_REG_P0_HDRS_AFTER_BASIC, 0xE);
7165 else
7166 REG_WR(bp, BP_PORT(bp) ?
7167 NIG_REG_P1_HDRS_AFTER_BASIC :
7168 NIG_REG_P0_HDRS_AFTER_BASIC,
7169 IS_MF_SD(bp) ? 7 : 6);
619c5cb6
VZ
7170
7171 if (CHIP_IS_E3(bp))
7172 REG_WR(bp, BP_PORT(bp) ?
7173 NIG_REG_LLH1_MF_MODE :
7174 NIG_REG_LLH_MF_MODE, IS_MF(bp));
7175 }
7176 if (!CHIP_IS_E3(bp))
7177 REG_WR(bp, NIG_REG_XGXS_SERDES0_MODE_SEL + port*4, 1);
34f80b04 7178
f2e0899f 7179 if (!CHIP_IS_E1(bp)) {
fb3bff17 7180 /* 0x2 disable mf_ov, 0x1 enable */
34f80b04 7181 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK_MF + port*4,
0793f83f 7182 (IS_MF_SD(bp) ? 0x1 : 0x2));
34f80b04 7183
619c5cb6 7184 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7185 val = 0;
7186 switch (bp->mf_mode) {
7187 case MULTI_FUNCTION_SD:
7188 val = 1;
7189 break;
7190 case MULTI_FUNCTION_SI:
a3348722 7191 case MULTI_FUNCTION_AFEX:
f2e0899f
DK
7192 val = 2;
7193 break;
7194 }
7195
7196 REG_WR(bp, (BP_PORT(bp) ? NIG_REG_LLH1_CLS_TYPE :
7197 NIG_REG_LLH0_CLS_TYPE), val);
7198 }
1c06328c
EG
7199 {
7200 REG_WR(bp, NIG_REG_LLFC_ENABLE_0 + port*4, 0);
7201 REG_WR(bp, NIG_REG_LLFC_OUT_EN_0 + port*4, 0);
7202 REG_WR(bp, NIG_REG_PAUSE_ENABLE_0 + port*4, 1);
7203 }
34f80b04
EG
7204 }
7205
619c5cb6
VZ
7206 /* If SPIO5 is set to generate interrupts, enable it for this port */
7207 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 7208 if (val & MISC_SPIO_SPIO5) {
4d295db0
EG
7209 u32 reg_addr = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
7210 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
7211 val = REG_RD(bp, reg_addr);
f1410647 7212 val |= AEU_INPUTS_ATTN_BITS_SPIO5;
4d295db0 7213 REG_WR(bp, reg_addr, val);
f1410647 7214 }
a2fbb9ea 7215
34f80b04
EG
7216 return 0;
7217}
7218
34f80b04
EG
7219static void bnx2x_ilt_wr(struct bnx2x *bp, u32 index, dma_addr_t addr)
7220{
7221 int reg;
32d68de1 7222 u32 wb_write[2];
34f80b04 7223
f2e0899f 7224 if (CHIP_IS_E1(bp))
34f80b04 7225 reg = PXP2_REG_RQ_ONCHIP_AT + index*8;
f2e0899f
DK
7226 else
7227 reg = PXP2_REG_RQ_ONCHIP_AT_B0 + index*8;
34f80b04 7228
32d68de1
YM
7229 wb_write[0] = ONCHIP_ADDR1(addr);
7230 wb_write[1] = ONCHIP_ADDR2(addr);
7231 REG_WR_DMAE(bp, reg, wb_write, 2);
34f80b04
EG
7232}
7233
b56e9670 7234void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func, u8 idu_sb_id, bool is_pf)
1191cb83
ED
7235{
7236 u32 data, ctl, cnt = 100;
7237 u32 igu_addr_data = IGU_REG_COMMAND_REG_32LSB_DATA;
7238 u32 igu_addr_ctl = IGU_REG_COMMAND_REG_CTRL;
7239 u32 igu_addr_ack = IGU_REG_CSTORM_TYPE_0_SB_CLEANUP + (idu_sb_id/32)*4;
7240 u32 sb_bit = 1 << (idu_sb_id%32);
b56e9670 7241 u32 func_encode = func | (is_pf ? 1 : 0) << IGU_FID_ENCODE_IS_PF_SHIFT;
1191cb83
ED
7242 u32 addr_encode = IGU_CMD_E2_PROD_UPD_BASE + idu_sb_id;
7243
7244 /* Not supported in BC mode */
7245 if (CHIP_INT_MODE_IS_BC(bp))
7246 return;
7247
7248 data = (IGU_USE_REGISTER_cstorm_type_0_sb_cleanup
7249 << IGU_REGULAR_CLEANUP_TYPE_SHIFT) |
7250 IGU_REGULAR_CLEANUP_SET |
7251 IGU_REGULAR_BCLEANUP;
7252
7253 ctl = addr_encode << IGU_CTRL_REG_ADDRESS_SHIFT |
7254 func_encode << IGU_CTRL_REG_FID_SHIFT |
7255 IGU_CTRL_CMD_TYPE_WR << IGU_CTRL_REG_TYPE_SHIFT;
7256
7257 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7258 data, igu_addr_data);
7259 REG_WR(bp, igu_addr_data, data);
7260 mmiowb();
7261 barrier();
7262 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7263 ctl, igu_addr_ctl);
7264 REG_WR(bp, igu_addr_ctl, ctl);
7265 mmiowb();
7266 barrier();
7267
7268 /* wait for clean up to finish */
7269 while (!(REG_RD(bp, igu_addr_ack) & sb_bit) && --cnt)
7270 msleep(20);
7271
7272
7273 if (!(REG_RD(bp, igu_addr_ack) & sb_bit)) {
7274 DP(NETIF_MSG_HW,
7275 "Unable to finish IGU cleanup: idu_sb_id %d offset %d bit %d (cnt %d)\n",
7276 idu_sb_id, idu_sb_id/32, idu_sb_id%32, cnt);
7277 }
7278}
7279
7280static void bnx2x_igu_clear_sb(struct bnx2x *bp, u8 idu_sb_id)
f2e0899f 7281{
619c5cb6 7282 bnx2x_igu_clear_sb_gen(bp, BP_FUNC(bp), idu_sb_id, true /*PF*/);
f2e0899f
DK
7283}
7284
1191cb83 7285static void bnx2x_clear_func_ilt(struct bnx2x *bp, u32 func)
f2e0899f
DK
7286{
7287 u32 i, base = FUNC_ILT_BASE(func);
7288 for (i = base; i < base + ILT_PER_FUNC; i++)
7289 bnx2x_ilt_wr(bp, i, 0);
7290}
7291
55c11941 7292
910cc727 7293static void bnx2x_init_searcher(struct bnx2x *bp)
55c11941
MS
7294{
7295 int port = BP_PORT(bp);
7296 bnx2x_src_init_t2(bp, bp->t2, bp->t2_mapping, SRC_CONN_NUM);
7297 /* T1 hash bits value determines the T1 number of entries */
7298 REG_WR(bp, SRC_REG_NUMBER_HASH_BITS0 + port*4, SRC_HASH_BITS);
7299}
7300
7301static inline int bnx2x_func_switch_update(struct bnx2x *bp, int suspend)
7302{
7303 int rc;
7304 struct bnx2x_func_state_params func_params = {NULL};
7305 struct bnx2x_func_switch_update_params *switch_update_params =
7306 &func_params.params.switch_update;
7307
7308 /* Prepare parameters for function state transitions */
7309 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
7310 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
7311
7312 func_params.f_obj = &bp->func_obj;
7313 func_params.cmd = BNX2X_F_CMD_SWITCH_UPDATE;
7314
7315 /* Function parameters */
7316 switch_update_params->suspend = suspend;
7317
7318 rc = bnx2x_func_state_change(bp, &func_params);
7319
7320 return rc;
7321}
7322
910cc727 7323static int bnx2x_reset_nic_mode(struct bnx2x *bp)
55c11941
MS
7324{
7325 int rc, i, port = BP_PORT(bp);
7326 int vlan_en = 0, mac_en[NUM_MACS];
7327
7328
7329 /* Close input from network */
7330 if (bp->mf_mode == SINGLE_FUNCTION) {
7331 bnx2x_set_rx_filter(&bp->link_params, 0);
7332 } else {
7333 vlan_en = REG_RD(bp, port ? NIG_REG_LLH1_FUNC_EN :
7334 NIG_REG_LLH0_FUNC_EN);
7335 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7336 NIG_REG_LLH0_FUNC_EN, 0);
7337 for (i = 0; i < NUM_MACS; i++) {
7338 mac_en[i] = REG_RD(bp, port ?
7339 (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7340 4 * i) :
7341 (NIG_REG_LLH0_FUNC_MEM_ENABLE +
7342 4 * i));
7343 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7344 4 * i) :
7345 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i), 0);
7346 }
7347 }
7348
7349 /* Close BMC to host */
7350 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7351 NIG_REG_P1_TX_MNG_HOST_ENABLE, 0);
7352
7353 /* Suspend Tx switching to the PF. Completion of this ramrod
7354 * further guarantees that all the packets of that PF / child
7355 * VFs in BRB were processed by the Parser, so it is safe to
7356 * change the NIC_MODE register.
7357 */
7358 rc = bnx2x_func_switch_update(bp, 1);
7359 if (rc) {
7360 BNX2X_ERR("Can't suspend tx-switching!\n");
7361 return rc;
7362 }
7363
7364 /* Change NIC_MODE register */
7365 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7366
7367 /* Open input from network */
7368 if (bp->mf_mode == SINGLE_FUNCTION) {
7369 bnx2x_set_rx_filter(&bp->link_params, 1);
7370 } else {
7371 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7372 NIG_REG_LLH0_FUNC_EN, vlan_en);
7373 for (i = 0; i < NUM_MACS; i++) {
7374 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7375 4 * i) :
7376 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i),
7377 mac_en[i]);
7378 }
7379 }
7380
7381 /* Enable BMC to host */
7382 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7383 NIG_REG_P1_TX_MNG_HOST_ENABLE, 1);
7384
7385 /* Resume Tx switching to the PF */
7386 rc = bnx2x_func_switch_update(bp, 0);
7387 if (rc) {
7388 BNX2X_ERR("Can't resume tx-switching!\n");
7389 return rc;
7390 }
7391
7392 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7393 return 0;
7394}
7395
7396int bnx2x_init_hw_func_cnic(struct bnx2x *bp)
7397{
7398 int rc;
7399
7400 bnx2x_ilt_init_op_cnic(bp, INITOP_SET);
7401
7402 if (CONFIGURE_NIC_MODE(bp)) {
7403 /* Configrue searcher as part of function hw init */
7404 bnx2x_init_searcher(bp);
7405
7406 /* Reset NIC mode */
7407 rc = bnx2x_reset_nic_mode(bp);
7408 if (rc)
7409 BNX2X_ERR("Can't change NIC mode!\n");
7410 return rc;
7411 }
7412
7413 return 0;
7414}
7415
523224a3 7416static int bnx2x_init_hw_func(struct bnx2x *bp)
34f80b04
EG
7417{
7418 int port = BP_PORT(bp);
7419 int func = BP_FUNC(bp);
619c5cb6 7420 int init_phase = PHASE_PF0 + func;
523224a3
DK
7421 struct bnx2x_ilt *ilt = BP_ILT(bp);
7422 u16 cdu_ilt_start;
8badd27a 7423 u32 addr, val;
f4a66897 7424 u32 main_mem_base, main_mem_size, main_mem_prty_clr;
89db4ad8 7425 int i, main_mem_width, rc;
34f80b04 7426
51c1a580 7427 DP(NETIF_MSG_HW, "starting func init func %d\n", func);
34f80b04 7428
619c5cb6 7429 /* FLR cleanup - hmmm */
89db4ad8
AE
7430 if (!CHIP_IS_E1x(bp)) {
7431 rc = bnx2x_pf_flr_clnup(bp);
04c46736
YM
7432 if (rc) {
7433 bnx2x_fw_dump(bp);
89db4ad8 7434 return rc;
04c46736 7435 }
89db4ad8 7436 }
619c5cb6 7437
8badd27a 7438 /* set MSI reconfigure capability */
f2e0899f
DK
7439 if (bp->common.int_block == INT_BLOCK_HC) {
7440 addr = (port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0);
7441 val = REG_RD(bp, addr);
7442 val |= HC_CONFIG_0_REG_MSI_ATTN_EN_0;
7443 REG_WR(bp, addr, val);
7444 }
8badd27a 7445
619c5cb6
VZ
7446 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7447 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
7448
523224a3
DK
7449 ilt = BP_ILT(bp);
7450 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
37b091ba 7451
290ca2bb
AE
7452 if (IS_SRIOV(bp))
7453 cdu_ilt_start += BNX2X_FIRST_VF_CID/ILT_PAGE_CIDS;
7454 cdu_ilt_start = bnx2x_iov_init_ilt(bp, cdu_ilt_start);
7455
7456 /* since BNX2X_FIRST_VF_CID > 0 the PF L2 cids precedes
7457 * those of the VFs, so start line should be reset
7458 */
7459 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
523224a3 7460 for (i = 0; i < L2_ILT_LINES(bp); i++) {
a052997e 7461 ilt->lines[cdu_ilt_start + i].page = bp->context[i].vcxt;
523224a3 7462 ilt->lines[cdu_ilt_start + i].page_mapping =
a052997e
MS
7463 bp->context[i].cxt_mapping;
7464 ilt->lines[cdu_ilt_start + i].size = bp->context[i].size;
37b091ba 7465 }
290ca2bb 7466
523224a3 7467 bnx2x_ilt_init_op(bp, INITOP_SET);
f85582f8 7468
55c11941
MS
7469 if (!CONFIGURE_NIC_MODE(bp)) {
7470 bnx2x_init_searcher(bp);
7471 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7472 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7473 } else {
7474 /* Set NIC mode */
7475 REG_WR(bp, PRS_REG_NIC_MODE, 1);
7476 DP(NETIF_MSG_IFUP, "NIC MODE configrued\n");
37b091ba 7477
55c11941 7478 }
37b091ba 7479
619c5cb6 7480 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7481 u32 pf_conf = IGU_PF_CONF_FUNC_EN;
7482
7483 /* Turn on a single ISR mode in IGU if driver is going to use
7484 * INT#x or MSI
7485 */
7486 if (!(bp->flags & USING_MSIX_FLAG))
7487 pf_conf |= IGU_PF_CONF_SINGLE_ISR_EN;
7488 /*
7489 * Timers workaround bug: function init part.
7490 * Need to wait 20msec after initializing ILT,
7491 * needed to make sure there are no requests in
7492 * one of the PXP internal queues with "old" ILT addresses
7493 */
7494 msleep(20);
7495 /*
7496 * Master enable - Due to WB DMAE writes performed before this
7497 * register is re-initialized as part of the regular function
7498 * init
7499 */
7500 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
7501 /* Enable the function in IGU */
7502 REG_WR(bp, IGU_REG_PF_CONFIGURATION, pf_conf);
7503 }
7504
523224a3 7505 bp->dmae_ready = 1;
34f80b04 7506
619c5cb6 7507 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
523224a3 7508
619c5cb6 7509 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7510 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR, func);
7511
619c5cb6
VZ
7512 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
7513 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
7514 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
7515 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
7516 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
7517 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
7518 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
7519 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
7520 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
7521 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
7522 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
7523 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
7524 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
7525
7526 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7527 REG_WR(bp, QM_REG_PF_EN, 1);
7528
619c5cb6
VZ
7529 if (!CHIP_IS_E1x(bp)) {
7530 REG_WR(bp, TSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7531 REG_WR(bp, USEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7532 REG_WR(bp, CSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7533 REG_WR(bp, XSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
7534 }
7535 bnx2x_init_block(bp, BLOCK_QM, init_phase);
7536
7537 bnx2x_init_block(bp, BLOCK_TM, init_phase);
7538 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
b56e9670
AE
7539
7540 bnx2x_iov_init_dq(bp);
7541
619c5cb6
VZ
7542 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
7543 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
7544 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
7545 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
7546 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
7547 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
7548 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
7549 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
7550 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
7551 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7552 REG_WR(bp, PBF_REG_DISABLE_PF, 0);
7553
619c5cb6 7554 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
523224a3 7555
619c5cb6 7556 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04 7557
619c5cb6 7558 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7559 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 1);
7560
fb3bff17 7561 if (IS_MF(bp)) {
34f80b04 7562 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 1);
fb3bff17 7563 REG_WR(bp, NIG_REG_LLH0_FUNC_VLAN_ID + port*8, bp->mf_ov);
34f80b04
EG
7564 }
7565
619c5cb6 7566 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
523224a3 7567
34f80b04 7568 /* HC init per function */
f2e0899f
DK
7569 if (bp->common.int_block == INT_BLOCK_HC) {
7570 if (CHIP_IS_E1H(bp)) {
7571 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7572
7573 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
7574 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
7575 }
619c5cb6 7576 bnx2x_init_block(bp, BLOCK_HC, init_phase);
f2e0899f
DK
7577
7578 } else {
7579 int num_segs, sb_idx, prod_offset;
7580
34f80b04
EG
7581 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
7582
619c5cb6 7583 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7584 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
7585 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
7586 }
7587
619c5cb6 7588 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 7589
619c5cb6 7590 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7591 int dsb_idx = 0;
7592 /**
7593 * Producer memory:
7594 * E2 mode: address 0-135 match to the mapping memory;
7595 * 136 - PF0 default prod; 137 - PF1 default prod;
7596 * 138 - PF2 default prod; 139 - PF3 default prod;
7597 * 140 - PF0 attn prod; 141 - PF1 attn prod;
7598 * 142 - PF2 attn prod; 143 - PF3 attn prod;
7599 * 144-147 reserved.
7600 *
7601 * E1.5 mode - In backward compatible mode;
7602 * for non default SB; each even line in the memory
7603 * holds the U producer and each odd line hold
7604 * the C producer. The first 128 producers are for
7605 * NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The last 20
7606 * producers are for the DSB for each PF.
7607 * Each PF has five segments: (the order inside each
7608 * segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
7609 * 132-135 C prods; 136-139 X prods; 140-143 T prods;
7610 * 144-147 attn prods;
7611 */
7612 /* non-default-status-blocks */
7613 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7614 IGU_BC_NDSB_NUM_SEGS : IGU_NORM_NDSB_NUM_SEGS;
7615 for (sb_idx = 0; sb_idx < bp->igu_sb_cnt; sb_idx++) {
7616 prod_offset = (bp->igu_base_sb + sb_idx) *
7617 num_segs;
7618
7619 for (i = 0; i < num_segs; i++) {
7620 addr = IGU_REG_PROD_CONS_MEMORY +
7621 (prod_offset + i) * 4;
7622 REG_WR(bp, addr, 0);
7623 }
7624 /* send consumer update with value 0 */
7625 bnx2x_ack_sb(bp, bp->igu_base_sb + sb_idx,
7626 USTORM_ID, 0, IGU_INT_NOP, 1);
7627 bnx2x_igu_clear_sb(bp,
7628 bp->igu_base_sb + sb_idx);
7629 }
7630
7631 /* default-status-blocks */
7632 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
7633 IGU_BC_DSB_NUM_SEGS : IGU_NORM_DSB_NUM_SEGS;
7634
7635 if (CHIP_MODE_IS_4_PORT(bp))
7636 dsb_idx = BP_FUNC(bp);
7637 else
3395a033 7638 dsb_idx = BP_VN(bp);
f2e0899f
DK
7639
7640 prod_offset = (CHIP_INT_MODE_IS_BC(bp) ?
7641 IGU_BC_BASE_DSB_PROD + dsb_idx :
7642 IGU_NORM_BASE_DSB_PROD + dsb_idx);
7643
3395a033
DK
7644 /*
7645 * igu prods come in chunks of E1HVN_MAX (4) -
7646 * does not matters what is the current chip mode
7647 */
f2e0899f
DK
7648 for (i = 0; i < (num_segs * E1HVN_MAX);
7649 i += E1HVN_MAX) {
7650 addr = IGU_REG_PROD_CONS_MEMORY +
7651 (prod_offset + i)*4;
7652 REG_WR(bp, addr, 0);
7653 }
7654 /* send consumer update with 0 */
7655 if (CHIP_INT_MODE_IS_BC(bp)) {
7656 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7657 USTORM_ID, 0, IGU_INT_NOP, 1);
7658 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7659 CSTORM_ID, 0, IGU_INT_NOP, 1);
7660 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7661 XSTORM_ID, 0, IGU_INT_NOP, 1);
7662 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7663 TSTORM_ID, 0, IGU_INT_NOP, 1);
7664 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7665 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7666 } else {
7667 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7668 USTORM_ID, 0, IGU_INT_NOP, 1);
7669 bnx2x_ack_sb(bp, bp->igu_dsb_id,
7670 ATTENTION_ID, 0, IGU_INT_NOP, 1);
7671 }
7672 bnx2x_igu_clear_sb(bp, bp->igu_dsb_id);
7673
7674 /* !!! these should become driver const once
7675 rf-tool supports split-68 const */
7676 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_LSB, 0);
7677 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_MSB, 0);
7678 REG_WR(bp, IGU_REG_SB_MASK_LSB, 0);
7679 REG_WR(bp, IGU_REG_SB_MASK_MSB, 0);
7680 REG_WR(bp, IGU_REG_PBA_STATUS_LSB, 0);
7681 REG_WR(bp, IGU_REG_PBA_STATUS_MSB, 0);
7682 }
34f80b04 7683 }
34f80b04 7684
c14423fe 7685 /* Reset PCIE errors for debug */
a2fbb9ea
ET
7686 REG_WR(bp, 0x2114, 0xffffffff);
7687 REG_WR(bp, 0x2120, 0xffffffff);
523224a3 7688
f4a66897
VZ
7689 if (CHIP_IS_E1x(bp)) {
7690 main_mem_size = HC_REG_MAIN_MEMORY_SIZE / 2; /*dwords*/
7691 main_mem_base = HC_REG_MAIN_MEMORY +
7692 BP_PORT(bp) * (main_mem_size * 4);
7693 main_mem_prty_clr = HC_REG_HC_PRTY_STS_CLR;
7694 main_mem_width = 8;
7695
7696 val = REG_RD(bp, main_mem_prty_clr);
7697 if (val)
51c1a580
MS
7698 DP(NETIF_MSG_HW,
7699 "Hmmm... Parity errors in HC block during function init (0x%x)!\n",
7700 val);
f4a66897
VZ
7701
7702 /* Clear "false" parity errors in MSI-X table */
7703 for (i = main_mem_base;
7704 i < main_mem_base + main_mem_size * 4;
7705 i += main_mem_width) {
7706 bnx2x_read_dmae(bp, i, main_mem_width / 4);
7707 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data),
7708 i, main_mem_width / 4);
7709 }
7710 /* Clear HC parity attention */
7711 REG_RD(bp, main_mem_prty_clr);
7712 }
7713
619c5cb6
VZ
7714#ifdef BNX2X_STOP_ON_ERROR
7715 /* Enable STORMs SP logging */
7716 REG_WR8(bp, BAR_USTRORM_INTMEM +
7717 USTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7718 REG_WR8(bp, BAR_TSTRORM_INTMEM +
7719 TSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7720 REG_WR8(bp, BAR_CSTRORM_INTMEM +
7721 CSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7722 REG_WR8(bp, BAR_XSTRORM_INTMEM +
7723 XSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
7724#endif
7725
b7737c9b 7726 bnx2x_phy_probe(&bp->link_params);
f85582f8 7727
34f80b04
EG
7728 return 0;
7729}
7730
a2fbb9ea 7731
55c11941
MS
7732void bnx2x_free_mem_cnic(struct bnx2x *bp)
7733{
7734 bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_FREE);
7735
7736 if (!CHIP_IS_E1x(bp))
7737 BNX2X_PCI_FREE(bp->cnic_sb.e2_sb, bp->cnic_sb_mapping,
7738 sizeof(struct host_hc_status_block_e2));
7739 else
7740 BNX2X_PCI_FREE(bp->cnic_sb.e1x_sb, bp->cnic_sb_mapping,
7741 sizeof(struct host_hc_status_block_e1x));
7742
7743 BNX2X_PCI_FREE(bp->t2, bp->t2_mapping, SRC_T2_SZ);
7744}
7745
9f6c9258 7746void bnx2x_free_mem(struct bnx2x *bp)
a2fbb9ea 7747{
a052997e
MS
7748 int i;
7749
a2fbb9ea 7750 BNX2X_PCI_FREE(bp->def_status_blk, bp->def_status_blk_mapping,
523224a3 7751 sizeof(struct host_sp_status_block));
a2fbb9ea 7752
619c5cb6
VZ
7753 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
7754 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
7755
a2fbb9ea 7756 BNX2X_PCI_FREE(bp->slowpath, bp->slowpath_mapping,
34f80b04 7757 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7758
a052997e
MS
7759 for (i = 0; i < L2_ILT_LINES(bp); i++)
7760 BNX2X_PCI_FREE(bp->context[i].vcxt, bp->context[i].cxt_mapping,
7761 bp->context[i].size);
523224a3
DK
7762 bnx2x_ilt_mem_op(bp, ILT_MEMOP_FREE);
7763
7764 BNX2X_FREE(bp->ilt->lines);
f85582f8 7765
7a9b2557 7766 BNX2X_PCI_FREE(bp->spq, bp->spq_mapping, BCM_PAGE_SIZE);
a2fbb9ea 7767
523224a3
DK
7768 BNX2X_PCI_FREE(bp->eq_ring, bp->eq_mapping,
7769 BCM_PAGE_SIZE * NUM_EQ_PAGES);
580d9d08
YM
7770
7771 bnx2x_iov_free_mem(bp);
619c5cb6
VZ
7772}
7773
a2fbb9ea 7774
55c11941 7775int bnx2x_alloc_mem_cnic(struct bnx2x *bp)
a2fbb9ea 7776{
619c5cb6
VZ
7777 if (!CHIP_IS_E1x(bp))
7778 /* size = the status block + ramrod buffers */
f2e0899f
DK
7779 BNX2X_PCI_ALLOC(bp->cnic_sb.e2_sb, &bp->cnic_sb_mapping,
7780 sizeof(struct host_hc_status_block_e2));
7781 else
55c11941
MS
7782 BNX2X_PCI_ALLOC(bp->cnic_sb.e1x_sb,
7783 &bp->cnic_sb_mapping,
7784 sizeof(struct
7785 host_hc_status_block_e1x));
8badd27a 7786
55c11941
MS
7787 if (CONFIGURE_NIC_MODE(bp))
7788 /* allocate searcher T2 table, as it wan't allocated before */
7789 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
7790
7791 /* write address to which L5 should insert its values */
7792 bp->cnic_eth_dev.addr_drv_info_to_mcp =
7793 &bp->slowpath->drv_info_to_mcp;
7794
7795 if (bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_ALLOC))
7796 goto alloc_mem_err;
7797
7798 return 0;
7799
7800alloc_mem_err:
7801 bnx2x_free_mem_cnic(bp);
7802 BNX2X_ERR("Can't allocate memory\n");
7803 return -ENOMEM;
7804}
7805
7806int bnx2x_alloc_mem(struct bnx2x *bp)
7807{
7808 int i, allocated, context_size;
a2fbb9ea 7809
55c11941
MS
7810 if (!CONFIGURE_NIC_MODE(bp))
7811 /* allocate searcher T2 table */
7812 BNX2X_PCI_ALLOC(bp->t2, &bp->t2_mapping, SRC_T2_SZ);
8badd27a 7813
523224a3
DK
7814 BNX2X_PCI_ALLOC(bp->def_status_blk, &bp->def_status_blk_mapping,
7815 sizeof(struct host_sp_status_block));
a2fbb9ea 7816
523224a3
DK
7817 BNX2X_PCI_ALLOC(bp->slowpath, &bp->slowpath_mapping,
7818 sizeof(struct bnx2x_slowpath));
a2fbb9ea 7819
a052997e
MS
7820 /* Allocate memory for CDU context:
7821 * This memory is allocated separately and not in the generic ILT
7822 * functions because CDU differs in few aspects:
7823 * 1. There are multiple entities allocating memory for context -
7824 * 'regular' driver, CNIC and SRIOV driver. Each separately controls
7825 * its own ILT lines.
7826 * 2. Since CDU page-size is not a single 4KB page (which is the case
7827 * for the other ILT clients), to be efficient we want to support
7828 * allocation of sub-page-size in the last entry.
7829 * 3. Context pointers are used by the driver to pass to FW / update
7830 * the context (for the other ILT clients the pointers are used just to
7831 * free the memory during unload).
7832 */
7833 context_size = sizeof(union cdu_context) * BNX2X_L2_CID_COUNT(bp);
65abd74d 7834
a052997e
MS
7835 for (i = 0, allocated = 0; allocated < context_size; i++) {
7836 bp->context[i].size = min(CDU_ILT_PAGE_SZ,
7837 (context_size - allocated));
7838 BNX2X_PCI_ALLOC(bp->context[i].vcxt,
7839 &bp->context[i].cxt_mapping,
7840 bp->context[i].size);
7841 allocated += bp->context[i].size;
7842 }
523224a3 7843 BNX2X_ALLOC(bp->ilt->lines, sizeof(struct ilt_line) * ILT_MAX_LINES);
65abd74d 7844
523224a3
DK
7845 if (bnx2x_ilt_mem_op(bp, ILT_MEMOP_ALLOC))
7846 goto alloc_mem_err;
65abd74d 7847
67c431a5
AE
7848 if (bnx2x_iov_alloc_mem(bp))
7849 goto alloc_mem_err;
7850
9f6c9258
DK
7851 /* Slow path ring */
7852 BNX2X_PCI_ALLOC(bp->spq, &bp->spq_mapping, BCM_PAGE_SIZE);
65abd74d 7853
523224a3
DK
7854 /* EQ */
7855 BNX2X_PCI_ALLOC(bp->eq_ring, &bp->eq_mapping,
7856 BCM_PAGE_SIZE * NUM_EQ_PAGES);
ab532cf3 7857
9f6c9258 7858 return 0;
e1510706 7859
9f6c9258
DK
7860alloc_mem_err:
7861 bnx2x_free_mem(bp);
51c1a580 7862 BNX2X_ERR("Can't allocate memory\n");
9f6c9258 7863 return -ENOMEM;
65abd74d
YG
7864}
7865
a2fbb9ea
ET
7866/*
7867 * Init service functions
7868 */
a2fbb9ea 7869
619c5cb6
VZ
7870int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
7871 struct bnx2x_vlan_mac_obj *obj, bool set,
7872 int mac_type, unsigned long *ramrod_flags)
a2fbb9ea 7873{
619c5cb6
VZ
7874 int rc;
7875 struct bnx2x_vlan_mac_ramrod_params ramrod_param;
a2fbb9ea 7876
619c5cb6 7877 memset(&ramrod_param, 0, sizeof(ramrod_param));
a2fbb9ea 7878
619c5cb6
VZ
7879 /* Fill general parameters */
7880 ramrod_param.vlan_mac_obj = obj;
7881 ramrod_param.ramrod_flags = *ramrod_flags;
a2fbb9ea 7882
619c5cb6
VZ
7883 /* Fill a user request section if needed */
7884 if (!test_bit(RAMROD_CONT, ramrod_flags)) {
7885 memcpy(ramrod_param.user_req.u.mac.mac, mac, ETH_ALEN);
a2fbb9ea 7886
619c5cb6 7887 __set_bit(mac_type, &ramrod_param.user_req.vlan_mac_flags);
e3553b29 7888
619c5cb6
VZ
7889 /* Set the command: ADD or DEL */
7890 if (set)
7891 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_ADD;
7892 else
7893 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_DEL;
a2fbb9ea
ET
7894 }
7895
619c5cb6 7896 rc = bnx2x_config_vlan_mac(bp, &ramrod_param);
7b5342d9
YM
7897
7898 if (rc == -EEXIST) {
7899 DP(BNX2X_MSG_SP, "Failed to schedule ADD operations: %d\n", rc);
7900 /* do not treat adding same MAC as error */
7901 rc = 0;
7902 } else if (rc < 0)
619c5cb6 7903 BNX2X_ERR("%s MAC failed\n", (set ? "Set" : "Del"));
7b5342d9 7904
619c5cb6 7905 return rc;
a2fbb9ea
ET
7906}
7907
619c5cb6
VZ
7908int bnx2x_del_all_macs(struct bnx2x *bp,
7909 struct bnx2x_vlan_mac_obj *mac_obj,
7910 int mac_type, bool wait_for_comp)
e665bfda 7911{
619c5cb6
VZ
7912 int rc;
7913 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
0793f83f 7914
619c5cb6
VZ
7915 /* Wait for completion of requested */
7916 if (wait_for_comp)
7917 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
0793f83f 7918
619c5cb6
VZ
7919 /* Set the mac type of addresses we want to clear */
7920 __set_bit(mac_type, &vlan_mac_flags);
0793f83f 7921
619c5cb6
VZ
7922 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags, &ramrod_flags);
7923 if (rc < 0)
7924 BNX2X_ERR("Failed to delete MACs: %d\n", rc);
0793f83f 7925
619c5cb6 7926 return rc;
0793f83f
DK
7927}
7928
619c5cb6 7929int bnx2x_set_eth_mac(struct bnx2x *bp, bool set)
523224a3 7930{
619c5cb6 7931 unsigned long ramrod_flags = 0;
e665bfda 7932
a3348722
BW
7933 if (is_zero_ether_addr(bp->dev->dev_addr) &&
7934 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))) {
51c1a580
MS
7935 DP(NETIF_MSG_IFUP | NETIF_MSG_IFDOWN,
7936 "Ignoring Zero MAC for STORAGE SD mode\n");
614c76df
DK
7937 return 0;
7938 }
614c76df 7939
619c5cb6 7940 DP(NETIF_MSG_IFUP, "Adding Eth MAC\n");
0793f83f 7941
619c5cb6
VZ
7942 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
7943 /* Eth MAC is set on RSS leading client (fp[0]) */
15192a8c
BW
7944 return bnx2x_set_mac_one(bp, bp->dev->dev_addr, &bp->sp_objs->mac_obj,
7945 set, BNX2X_ETH_MAC, &ramrod_flags);
e665bfda 7946}
6e30dd4e 7947
619c5cb6 7948int bnx2x_setup_leading(struct bnx2x *bp)
ec6ba945 7949{
619c5cb6 7950 return bnx2x_setup_queue(bp, &bp->fp[0], 1);
993ac7b5 7951}
a2fbb9ea 7952
d6214d7a 7953/**
e8920674 7954 * bnx2x_set_int_mode - configure interrupt mode
d6214d7a 7955 *
e8920674 7956 * @bp: driver handle
d6214d7a 7957 *
e8920674 7958 * In case of MSI-X it will also try to enable MSI-X.
d6214d7a 7959 */
1ab4434c 7960int bnx2x_set_int_mode(struct bnx2x *bp)
ca00392c 7961{
1ab4434c
AE
7962 int rc = 0;
7963
7964 if (IS_VF(bp) && int_mode != BNX2X_INT_MODE_MSIX)
7965 return -EINVAL;
7966
9ee3d37b 7967 switch (int_mode) {
1ab4434c
AE
7968 case BNX2X_INT_MODE_MSIX:
7969 /* attempt to enable msix */
7970 rc = bnx2x_enable_msix(bp);
7971
7972 /* msix attained */
7973 if (!rc)
7974 return 0;
7975
7976 /* vfs use only msix */
7977 if (rc && IS_VF(bp))
7978 return rc;
7979
7980 /* failed to enable multiple MSI-X */
7981 BNX2X_DEV_INFO("Failed to enable multiple MSI-X (%d), set number of queues to %d\n",
7982 bp->num_queues,
7983 1 + bp->num_cnic_queues);
7984
7985 /* falling through... */
7986 case BNX2X_INT_MODE_MSI:
d6214d7a 7987 bnx2x_enable_msi(bp);
1ab4434c 7988
d6214d7a 7989 /* falling through... */
1ab4434c 7990 case BNX2X_INT_MODE_INTX:
55c11941
MS
7991 bp->num_ethernet_queues = 1;
7992 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
51c1a580 7993 BNX2X_DEV_INFO("set number of queues to 1\n");
ca00392c 7994 break;
d6214d7a 7995 default:
1ab4434c
AE
7996 BNX2X_DEV_INFO("unknown value in int_mode module parameter\n");
7997 return -EINVAL;
9f6c9258 7998 }
1ab4434c 7999 return 0;
a2fbb9ea
ET
8000}
8001
1ab4434c 8002/* must be called prior to any HW initializations */
c2bff63f
DK
8003static inline u16 bnx2x_cid_ilt_lines(struct bnx2x *bp)
8004{
290ca2bb
AE
8005 if (IS_SRIOV(bp))
8006 return (BNX2X_FIRST_VF_CID + BNX2X_VF_CIDS)/ILT_PAGE_CIDS;
c2bff63f
DK
8007 return L2_ILT_LINES(bp);
8008}
8009
523224a3
DK
8010void bnx2x_ilt_set_info(struct bnx2x *bp)
8011{
8012 struct ilt_client_info *ilt_client;
8013 struct bnx2x_ilt *ilt = BP_ILT(bp);
8014 u16 line = 0;
8015
8016 ilt->start_line = FUNC_ILT_BASE(BP_FUNC(bp));
8017 DP(BNX2X_MSG_SP, "ilt starts at line %d\n", ilt->start_line);
8018
8019 /* CDU */
8020 ilt_client = &ilt->clients[ILT_CLIENT_CDU];
8021 ilt_client->client_num = ILT_CLIENT_CDU;
8022 ilt_client->page_size = CDU_ILT_PAGE_SZ;
8023 ilt_client->flags = ILT_CLIENT_SKIP_MEM;
8024 ilt_client->start = line;
619c5cb6 8025 line += bnx2x_cid_ilt_lines(bp);
55c11941
MS
8026
8027 if (CNIC_SUPPORT(bp))
8028 line += CNIC_ILT_LINES;
523224a3
DK
8029 ilt_client->end = line - 1;
8030
51c1a580 8031 DP(NETIF_MSG_IFUP, "ilt client[CDU]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
8032 ilt_client->start,
8033 ilt_client->end,
8034 ilt_client->page_size,
8035 ilt_client->flags,
8036 ilog2(ilt_client->page_size >> 12));
8037
8038 /* QM */
8039 if (QM_INIT(bp->qm_cid_count)) {
8040 ilt_client = &ilt->clients[ILT_CLIENT_QM];
8041 ilt_client->client_num = ILT_CLIENT_QM;
8042 ilt_client->page_size = QM_ILT_PAGE_SZ;
8043 ilt_client->flags = 0;
8044 ilt_client->start = line;
8045
8046 /* 4 bytes for each cid */
8047 line += DIV_ROUND_UP(bp->qm_cid_count * QM_QUEUES_PER_FUNC * 4,
8048 QM_ILT_PAGE_SZ);
8049
8050 ilt_client->end = line - 1;
8051
51c1a580
MS
8052 DP(NETIF_MSG_IFUP,
8053 "ilt client[QM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
8054 ilt_client->start,
8055 ilt_client->end,
8056 ilt_client->page_size,
8057 ilt_client->flags,
8058 ilog2(ilt_client->page_size >> 12));
8059
8060 }
523224a3 8061
55c11941
MS
8062 if (CNIC_SUPPORT(bp)) {
8063 /* SRC */
8064 ilt_client = &ilt->clients[ILT_CLIENT_SRC];
8065 ilt_client->client_num = ILT_CLIENT_SRC;
8066 ilt_client->page_size = SRC_ILT_PAGE_SZ;
8067 ilt_client->flags = 0;
8068 ilt_client->start = line;
8069 line += SRC_ILT_LINES;
8070 ilt_client->end = line - 1;
523224a3 8071
55c11941
MS
8072 DP(NETIF_MSG_IFUP,
8073 "ilt client[SRC]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
8074 ilt_client->start,
8075 ilt_client->end,
8076 ilt_client->page_size,
8077 ilt_client->flags,
8078 ilog2(ilt_client->page_size >> 12));
9f6c9258 8079
55c11941
MS
8080 /* TM */
8081 ilt_client = &ilt->clients[ILT_CLIENT_TM];
8082 ilt_client->client_num = ILT_CLIENT_TM;
8083 ilt_client->page_size = TM_ILT_PAGE_SZ;
8084 ilt_client->flags = 0;
8085 ilt_client->start = line;
8086 line += TM_ILT_LINES;
8087 ilt_client->end = line - 1;
523224a3 8088
55c11941
MS
8089 DP(NETIF_MSG_IFUP,
8090 "ilt client[TM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
8091 ilt_client->start,
8092 ilt_client->end,
8093 ilt_client->page_size,
8094 ilt_client->flags,
8095 ilog2(ilt_client->page_size >> 12));
8096 }
9f6c9258 8097
619c5cb6 8098 BUG_ON(line > ILT_MAX_LINES);
523224a3 8099}
f85582f8 8100
619c5cb6
VZ
8101/**
8102 * bnx2x_pf_q_prep_init - prepare INIT transition parameters
8103 *
8104 * @bp: driver handle
8105 * @fp: pointer to fastpath
8106 * @init_params: pointer to parameters structure
8107 *
8108 * parameters configured:
8109 * - HC configuration
8110 * - Queue's CDU context
8111 */
1191cb83 8112static void bnx2x_pf_q_prep_init(struct bnx2x *bp,
619c5cb6 8113 struct bnx2x_fastpath *fp, struct bnx2x_queue_init_params *init_params)
a2fbb9ea 8114{
6383c0b3
AE
8115
8116 u8 cos;
a052997e
MS
8117 int cxt_index, cxt_offset;
8118
619c5cb6
VZ
8119 /* FCoE Queue uses Default SB, thus has no HC capabilities */
8120 if (!IS_FCOE_FP(fp)) {
8121 __set_bit(BNX2X_Q_FLG_HC, &init_params->rx.flags);
8122 __set_bit(BNX2X_Q_FLG_HC, &init_params->tx.flags);
8123
8124 /* If HC is supporterd, enable host coalescing in the transition
8125 * to INIT state.
8126 */
8127 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->rx.flags);
8128 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->tx.flags);
8129
8130 /* HC rate */
8131 init_params->rx.hc_rate = bp->rx_ticks ?
8132 (1000000 / bp->rx_ticks) : 0;
8133 init_params->tx.hc_rate = bp->tx_ticks ?
8134 (1000000 / bp->tx_ticks) : 0;
8135
8136 /* FW SB ID */
8137 init_params->rx.fw_sb_id = init_params->tx.fw_sb_id =
8138 fp->fw_sb_id;
8139
8140 /*
8141 * CQ index among the SB indices: FCoE clients uses the default
8142 * SB, therefore it's different.
8143 */
6383c0b3
AE
8144 init_params->rx.sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
8145 init_params->tx.sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS;
619c5cb6
VZ
8146 }
8147
6383c0b3
AE
8148 /* set maximum number of COSs supported by this queue */
8149 init_params->max_cos = fp->max_cos;
8150
51c1a580 8151 DP(NETIF_MSG_IFUP, "fp: %d setting queue params max cos to: %d\n",
6383c0b3
AE
8152 fp->index, init_params->max_cos);
8153
8154 /* set the context pointers queue object */
a052997e 8155 for (cos = FIRST_TX_COS_INDEX; cos < init_params->max_cos; cos++) {
65565884
MS
8156 cxt_index = fp->txdata_ptr[cos]->cid / ILT_PAGE_CIDS;
8157 cxt_offset = fp->txdata_ptr[cos]->cid - (cxt_index *
a052997e 8158 ILT_PAGE_CIDS);
6383c0b3 8159 init_params->cxts[cos] =
a052997e
MS
8160 &bp->context[cxt_index].vcxt[cxt_offset].eth;
8161 }
619c5cb6
VZ
8162}
8163
910cc727 8164static int bnx2x_setup_tx_only(struct bnx2x *bp, struct bnx2x_fastpath *fp,
6383c0b3
AE
8165 struct bnx2x_queue_state_params *q_params,
8166 struct bnx2x_queue_setup_tx_only_params *tx_only_params,
8167 int tx_index, bool leading)
8168{
8169 memset(tx_only_params, 0, sizeof(*tx_only_params));
8170
8171 /* Set the command */
8172 q_params->cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
8173
8174 /* Set tx-only QUEUE flags: don't zero statistics */
8175 tx_only_params->flags = bnx2x_get_common_flags(bp, fp, false);
8176
8177 /* choose the index of the cid to send the slow path on */
8178 tx_only_params->cid_index = tx_index;
8179
8180 /* Set general TX_ONLY_SETUP parameters */
8181 bnx2x_pf_q_prep_general(bp, fp, &tx_only_params->gen_params, tx_index);
8182
8183 /* Set Tx TX_ONLY_SETUP parameters */
8184 bnx2x_pf_tx_q_prep(bp, fp, &tx_only_params->txq_params, tx_index);
8185
51c1a580
MS
8186 DP(NETIF_MSG_IFUP,
8187 "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
8188 tx_index, q_params->q_obj->cids[FIRST_TX_COS_INDEX],
8189 q_params->q_obj->cids[tx_index], q_params->q_obj->cl_id,
8190 tx_only_params->gen_params.spcl_id, tx_only_params->flags);
8191
8192 /* send the ramrod */
8193 return bnx2x_queue_state_change(bp, q_params);
8194}
8195
8196
619c5cb6
VZ
8197/**
8198 * bnx2x_setup_queue - setup queue
8199 *
8200 * @bp: driver handle
8201 * @fp: pointer to fastpath
8202 * @leading: is leading
8203 *
8204 * This function performs 2 steps in a Queue state machine
8205 * actually: 1) RESET->INIT 2) INIT->SETUP
8206 */
8207
8208int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
8209 bool leading)
8210{
3b603066 8211 struct bnx2x_queue_state_params q_params = {NULL};
619c5cb6
VZ
8212 struct bnx2x_queue_setup_params *setup_params =
8213 &q_params.params.setup;
6383c0b3
AE
8214 struct bnx2x_queue_setup_tx_only_params *tx_only_params =
8215 &q_params.params.tx_only;
a2fbb9ea 8216 int rc;
6383c0b3
AE
8217 u8 tx_index;
8218
51c1a580 8219 DP(NETIF_MSG_IFUP, "setting up queue %d\n", fp->index);
a2fbb9ea 8220
ec6ba945
VZ
8221 /* reset IGU state skip FCoE L2 queue */
8222 if (!IS_FCOE_FP(fp))
8223 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0,
523224a3 8224 IGU_INT_ENABLE, 0);
a2fbb9ea 8225
15192a8c 8226 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8227 /* We want to wait for completion in this context */
8228 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8229
619c5cb6
VZ
8230 /* Prepare the INIT parameters */
8231 bnx2x_pf_q_prep_init(bp, fp, &q_params.params.init);
ec6ba945 8232
619c5cb6
VZ
8233 /* Set the command */
8234 q_params.cmd = BNX2X_Q_CMD_INIT;
8235
8236 /* Change the state to INIT */
8237 rc = bnx2x_queue_state_change(bp, &q_params);
8238 if (rc) {
6383c0b3 8239 BNX2X_ERR("Queue(%d) INIT failed\n", fp->index);
619c5cb6
VZ
8240 return rc;
8241 }
ec6ba945 8242
51c1a580 8243 DP(NETIF_MSG_IFUP, "init complete\n");
6383c0b3
AE
8244
8245
619c5cb6
VZ
8246 /* Now move the Queue to the SETUP state... */
8247 memset(setup_params, 0, sizeof(*setup_params));
a2fbb9ea 8248
619c5cb6
VZ
8249 /* Set QUEUE flags */
8250 setup_params->flags = bnx2x_get_q_flags(bp, fp, leading);
523224a3 8251
619c5cb6 8252 /* Set general SETUP parameters */
6383c0b3
AE
8253 bnx2x_pf_q_prep_general(bp, fp, &setup_params->gen_params,
8254 FIRST_TX_COS_INDEX);
619c5cb6 8255
6383c0b3 8256 bnx2x_pf_rx_q_prep(bp, fp, &setup_params->pause_params,
619c5cb6
VZ
8257 &setup_params->rxq_params);
8258
6383c0b3
AE
8259 bnx2x_pf_tx_q_prep(bp, fp, &setup_params->txq_params,
8260 FIRST_TX_COS_INDEX);
619c5cb6
VZ
8261
8262 /* Set the command */
8263 q_params.cmd = BNX2X_Q_CMD_SETUP;
8264
55c11941
MS
8265 if (IS_FCOE_FP(fp))
8266 bp->fcoe_init = true;
8267
619c5cb6
VZ
8268 /* Change the state to SETUP */
8269 rc = bnx2x_queue_state_change(bp, &q_params);
6383c0b3
AE
8270 if (rc) {
8271 BNX2X_ERR("Queue(%d) SETUP failed\n", fp->index);
8272 return rc;
8273 }
8274
8275 /* loop through the relevant tx-only indices */
8276 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8277 tx_index < fp->max_cos;
8278 tx_index++) {
8279
8280 /* prepare and send tx-only ramrod*/
8281 rc = bnx2x_setup_tx_only(bp, fp, &q_params,
8282 tx_only_params, tx_index, leading);
8283 if (rc) {
8284 BNX2X_ERR("Queue(%d.%d) TX_ONLY_SETUP failed\n",
8285 fp->index, tx_index);
8286 return rc;
8287 }
8288 }
523224a3 8289
34f80b04 8290 return rc;
a2fbb9ea
ET
8291}
8292
619c5cb6 8293static int bnx2x_stop_queue(struct bnx2x *bp, int index)
a2fbb9ea 8294{
619c5cb6 8295 struct bnx2x_fastpath *fp = &bp->fp[index];
6383c0b3 8296 struct bnx2x_fp_txdata *txdata;
3b603066 8297 struct bnx2x_queue_state_params q_params = {NULL};
6383c0b3
AE
8298 int rc, tx_index;
8299
51c1a580 8300 DP(NETIF_MSG_IFDOWN, "stopping queue %d cid %d\n", index, fp->cid);
a2fbb9ea 8301
15192a8c 8302 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8303 /* We want to wait for completion in this context */
8304 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8305
6383c0b3
AE
8306
8307 /* close tx-only connections */
8308 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8309 tx_index < fp->max_cos;
8310 tx_index++){
8311
8312 /* ascertain this is a normal queue*/
65565884 8313 txdata = fp->txdata_ptr[tx_index];
6383c0b3 8314
51c1a580 8315 DP(NETIF_MSG_IFDOWN, "stopping tx-only queue %d\n",
6383c0b3
AE
8316 txdata->txq_index);
8317
8318 /* send halt terminate on tx-only connection */
8319 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
8320 memset(&q_params.params.terminate, 0,
8321 sizeof(q_params.params.terminate));
8322 q_params.params.terminate.cid_index = tx_index;
8323
8324 rc = bnx2x_queue_state_change(bp, &q_params);
8325 if (rc)
8326 return rc;
8327
8328 /* send halt terminate on tx-only connection */
8329 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
8330 memset(&q_params.params.cfc_del, 0,
8331 sizeof(q_params.params.cfc_del));
8332 q_params.params.cfc_del.cid_index = tx_index;
8333 rc = bnx2x_queue_state_change(bp, &q_params);
8334 if (rc)
8335 return rc;
8336 }
8337 /* Stop the primary connection: */
8338 /* ...halt the connection */
619c5cb6
VZ
8339 q_params.cmd = BNX2X_Q_CMD_HALT;
8340 rc = bnx2x_queue_state_change(bp, &q_params);
8341 if (rc)
da5a662a 8342 return rc;
a2fbb9ea 8343
6383c0b3 8344 /* ...terminate the connection */
619c5cb6 8345 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
6383c0b3
AE
8346 memset(&q_params.params.terminate, 0,
8347 sizeof(q_params.params.terminate));
8348 q_params.params.terminate.cid_index = FIRST_TX_COS_INDEX;
619c5cb6
VZ
8349 rc = bnx2x_queue_state_change(bp, &q_params);
8350 if (rc)
523224a3 8351 return rc;
6383c0b3 8352 /* ...delete cfc entry */
619c5cb6 8353 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
6383c0b3
AE
8354 memset(&q_params.params.cfc_del, 0,
8355 sizeof(q_params.params.cfc_del));
8356 q_params.params.cfc_del.cid_index = FIRST_TX_COS_INDEX;
619c5cb6 8357 return bnx2x_queue_state_change(bp, &q_params);
523224a3
DK
8358}
8359
8360
34f80b04
EG
8361static void bnx2x_reset_func(struct bnx2x *bp)
8362{
8363 int port = BP_PORT(bp);
8364 int func = BP_FUNC(bp);
f2e0899f 8365 int i;
523224a3
DK
8366
8367 /* Disable the function in the FW */
8368 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(func), 0);
8369 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(func), 0);
8370 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(func), 0);
8371 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(func), 0);
8372
8373 /* FP SBs */
ec6ba945 8374 for_each_eth_queue(bp, i) {
523224a3 8375 struct bnx2x_fastpath *fp = &bp->fp[i];
619c5cb6 8376 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8377 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET(fp->fw_sb_id),
8378 SB_DISABLED);
523224a3
DK
8379 }
8380
55c11941
MS
8381 if (CNIC_LOADED(bp))
8382 /* CNIC SB */
8383 REG_WR8(bp, BAR_CSTRORM_INTMEM +
8384 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET
8385 (bnx2x_cnic_fw_sb_id(bp)), SB_DISABLED);
8386
523224a3 8387 /* SP SB */
619c5cb6 8388 REG_WR8(bp, BAR_CSTRORM_INTMEM +
2de67439
YM
8389 CSTORM_SP_STATUS_BLOCK_DATA_STATE_OFFSET(func),
8390 SB_DISABLED);
523224a3
DK
8391
8392 for (i = 0; i < XSTORM_SPQ_DATA_SIZE / 4; i++)
8393 REG_WR(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_DATA_OFFSET(func),
8394 0);
34f80b04
EG
8395
8396 /* Configure IGU */
f2e0899f
DK
8397 if (bp->common.int_block == INT_BLOCK_HC) {
8398 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
8399 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
8400 } else {
8401 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
8402 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
8403 }
34f80b04 8404
55c11941
MS
8405 if (CNIC_LOADED(bp)) {
8406 /* Disable Timer scan */
8407 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
8408 /*
8409 * Wait for at least 10ms and up to 2 second for the timers
8410 * scan to complete
8411 */
8412 for (i = 0; i < 200; i++) {
8413 msleep(10);
8414 if (!REG_RD(bp, TM_REG_LIN0_SCAN_ON + port*4))
8415 break;
8416 }
37b091ba 8417 }
34f80b04 8418 /* Clear ILT */
f2e0899f
DK
8419 bnx2x_clear_func_ilt(bp, func);
8420
8421 /* Timers workaround bug for E2: if this is vnic-3,
8422 * we need to set the entire ilt range for this timers.
8423 */
619c5cb6 8424 if (!CHIP_IS_E1x(bp) && BP_VN(bp) == 3) {
f2e0899f
DK
8425 struct ilt_client_info ilt_cli;
8426 /* use dummy TM client */
8427 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
8428 ilt_cli.start = 0;
8429 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
8430 ilt_cli.client_num = ILT_CLIENT_TM;
8431
8432 bnx2x_ilt_boundry_init_op(bp, &ilt_cli, 0, INITOP_CLEAR);
8433 }
8434
8435 /* this assumes that reset_port() called before reset_func()*/
619c5cb6 8436 if (!CHIP_IS_E1x(bp))
f2e0899f 8437 bnx2x_pf_disable(bp);
523224a3
DK
8438
8439 bp->dmae_ready = 0;
34f80b04
EG
8440}
8441
8442static void bnx2x_reset_port(struct bnx2x *bp)
8443{
8444 int port = BP_PORT(bp);
8445 u32 val;
8446
619c5cb6
VZ
8447 /* Reset physical Link */
8448 bnx2x__link_reset(bp);
8449
34f80b04
EG
8450 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
8451
8452 /* Do not rcv packets to BRB */
8453 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK + port*4, 0x0);
8454 /* Do not direct rcv packets that are not for MCP to the BRB */
8455 REG_WR(bp, (port ? NIG_REG_LLH1_BRB1_NOT_MCP :
8456 NIG_REG_LLH0_BRB1_NOT_MCP), 0x0);
8457
8458 /* Configure AEU */
8459 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, 0);
8460
8461 msleep(100);
8462 /* Check for BRB port occupancy */
8463 val = REG_RD(bp, BRB1_REG_PORT_NUM_OCC_BLOCKS_0 + port*4);
8464 if (val)
8465 DP(NETIF_MSG_IFDOWN,
33471629 8466 "BRB1 is not empty %d blocks are occupied\n", val);
34f80b04
EG
8467
8468 /* TODO: Close Doorbell port? */
8469}
8470
1191cb83 8471static int bnx2x_reset_hw(struct bnx2x *bp, u32 load_code)
34f80b04 8472{
3b603066 8473 struct bnx2x_func_state_params func_params = {NULL};
34f80b04 8474
619c5cb6
VZ
8475 /* Prepare parameters for function state transitions */
8476 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
34f80b04 8477
619c5cb6
VZ
8478 func_params.f_obj = &bp->func_obj;
8479 func_params.cmd = BNX2X_F_CMD_HW_RESET;
34f80b04 8480
619c5cb6 8481 func_params.params.hw_init.load_phase = load_code;
49d66772 8482
619c5cb6 8483 return bnx2x_func_state_change(bp, &func_params);
34f80b04
EG
8484}
8485
1191cb83 8486static int bnx2x_func_stop(struct bnx2x *bp)
ec6ba945 8487{
3b603066 8488 struct bnx2x_func_state_params func_params = {NULL};
619c5cb6 8489 int rc;
228241eb 8490
619c5cb6
VZ
8491 /* Prepare parameters for function state transitions */
8492 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
8493 func_params.f_obj = &bp->func_obj;
8494 func_params.cmd = BNX2X_F_CMD_STOP;
da5a662a 8495
619c5cb6
VZ
8496 /*
8497 * Try to stop the function the 'good way'. If fails (in case
8498 * of a parity error during bnx2x_chip_cleanup()) and we are
8499 * not in a debug mode, perform a state transaction in order to
8500 * enable further HW_RESET transaction.
8501 */
8502 rc = bnx2x_func_state_change(bp, &func_params);
8503 if (rc) {
34f80b04 8504#ifdef BNX2X_STOP_ON_ERROR
619c5cb6 8505 return rc;
34f80b04 8506#else
51c1a580 8507 BNX2X_ERR("FUNC_STOP ramrod failed. Running a dry transaction\n");
619c5cb6
VZ
8508 __set_bit(RAMROD_DRV_CLR_ONLY, &func_params.ramrod_flags);
8509 return bnx2x_func_state_change(bp, &func_params);
34f80b04 8510#endif
228241eb 8511 }
a2fbb9ea 8512
619c5cb6
VZ
8513 return 0;
8514}
523224a3 8515
619c5cb6
VZ
8516/**
8517 * bnx2x_send_unload_req - request unload mode from the MCP.
8518 *
8519 * @bp: driver handle
8520 * @unload_mode: requested function's unload mode
8521 *
8522 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
8523 */
8524u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode)
8525{
8526 u32 reset_code = 0;
8527 int port = BP_PORT(bp);
3101c2bc 8528
619c5cb6 8529 /* Select the UNLOAD request mode */
65abd74d
YG
8530 if (unload_mode == UNLOAD_NORMAL)
8531 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
8532
7d0446c2 8533 else if (bp->flags & NO_WOL_FLAG)
65abd74d 8534 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP;
65abd74d 8535
7d0446c2 8536 else if (bp->wol) {
65abd74d
YG
8537 u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0;
8538 u8 *mac_addr = bp->dev->dev_addr;
8539 u32 val;
f9977903
DK
8540 u16 pmc;
8541
65abd74d 8542 /* The mac address is written to entries 1-4 to
f9977903
DK
8543 * preserve entry 0 which is used by the PMF
8544 */
3395a033 8545 u8 entry = (BP_VN(bp) + 1)*8;
65abd74d
YG
8546
8547 val = (mac_addr[0] << 8) | mac_addr[1];
8548 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val);
8549
8550 val = (mac_addr[2] << 24) | (mac_addr[3] << 16) |
8551 (mac_addr[4] << 8) | mac_addr[5];
8552 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val);
8553
f9977903
DK
8554 /* Enable the PME and clear the status */
8555 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmc);
8556 pmc |= PCI_PM_CTRL_PME_ENABLE | PCI_PM_CTRL_PME_STATUS;
8557 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, pmc);
8558
65abd74d
YG
8559 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN;
8560
8561 } else
8562 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
da5a662a 8563
619c5cb6
VZ
8564 /* Send the request to the MCP */
8565 if (!BP_NOMCP(bp))
8566 reset_code = bnx2x_fw_command(bp, reset_code, 0);
8567 else {
8568 int path = BP_PATH(bp);
8569
51c1a580 8570 DP(NETIF_MSG_IFDOWN, "NO MCP - load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8571 path, load_count[path][0], load_count[path][1],
8572 load_count[path][2]);
8573 load_count[path][0]--;
8574 load_count[path][1 + port]--;
51c1a580 8575 DP(NETIF_MSG_IFDOWN, "NO MCP - new load counts[%d] %d, %d, %d\n",
619c5cb6
VZ
8576 path, load_count[path][0], load_count[path][1],
8577 load_count[path][2]);
8578 if (load_count[path][0] == 0)
8579 reset_code = FW_MSG_CODE_DRV_UNLOAD_COMMON;
8580 else if (load_count[path][1 + port] == 0)
8581 reset_code = FW_MSG_CODE_DRV_UNLOAD_PORT;
8582 else
8583 reset_code = FW_MSG_CODE_DRV_UNLOAD_FUNCTION;
8584 }
8585
8586 return reset_code;
8587}
8588
8589/**
8590 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
8591 *
8592 * @bp: driver handle
5d07d868 8593 * @keep_link: true iff link should be kept up
619c5cb6 8594 */
5d07d868 8595void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link)
619c5cb6 8596{
5d07d868
YM
8597 u32 reset_param = keep_link ? DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET : 0;
8598
619c5cb6
VZ
8599 /* Report UNLOAD_DONE to MCP */
8600 if (!BP_NOMCP(bp))
5d07d868 8601 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, reset_param);
619c5cb6
VZ
8602}
8603
1191cb83 8604static int bnx2x_func_wait_started(struct bnx2x *bp)
6debea87
DK
8605{
8606 int tout = 50;
8607 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8608
8609 if (!bp->port.pmf)
8610 return 0;
8611
8612 /*
8613 * (assumption: No Attention from MCP at this stage)
8614 * PMF probably in the middle of TXdisable/enable transaction
8615 * 1. Sync IRS for default SB
8616 * 2. Sync SP queue - this guarantes us that attention handling started
8617 * 3. Wait, that TXdisable/enable transaction completes
8618 *
8619 * 1+2 guranty that if DCBx attention was scheduled it already changed
8620 * pending bit of transaction from STARTED-->TX_STOPPED, if we alredy
8621 * received complettion for the transaction the state is TX_STOPPED.
8622 * State will return to STARTED after completion of TX_STOPPED-->STARTED
8623 * transaction.
8624 */
8625
8626 /* make sure default SB ISR is done */
8627 if (msix)
8628 synchronize_irq(bp->msix_table[0].vector);
8629 else
8630 synchronize_irq(bp->pdev->irq);
8631
8632 flush_workqueue(bnx2x_wq);
8633
8634 while (bnx2x_func_get_state(bp, &bp->func_obj) !=
8635 BNX2X_F_STATE_STARTED && tout--)
8636 msleep(20);
8637
8638 if (bnx2x_func_get_state(bp, &bp->func_obj) !=
8639 BNX2X_F_STATE_STARTED) {
8640#ifdef BNX2X_STOP_ON_ERROR
51c1a580 8641 BNX2X_ERR("Wrong function state\n");
6debea87
DK
8642 return -EBUSY;
8643#else
8644 /*
8645 * Failed to complete the transaction in a "good way"
8646 * Force both transactions with CLR bit
8647 */
3b603066 8648 struct bnx2x_func_state_params func_params = {NULL};
6debea87 8649
51c1a580
MS
8650 DP(NETIF_MSG_IFDOWN,
8651 "Hmmm... unexpected function state! Forcing STARTED-->TX_ST0PPED-->STARTED\n");
6debea87
DK
8652
8653 func_params.f_obj = &bp->func_obj;
8654 __set_bit(RAMROD_DRV_CLR_ONLY,
8655 &func_params.ramrod_flags);
8656
8657 /* STARTED-->TX_ST0PPED */
8658 func_params.cmd = BNX2X_F_CMD_TX_STOP;
8659 bnx2x_func_state_change(bp, &func_params);
8660
8661 /* TX_ST0PPED-->STARTED */
8662 func_params.cmd = BNX2X_F_CMD_TX_START;
8663 return bnx2x_func_state_change(bp, &func_params);
8664#endif
8665 }
8666
8667 return 0;
8668}
8669
5d07d868 8670void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link)
619c5cb6
VZ
8671{
8672 int port = BP_PORT(bp);
6383c0b3
AE
8673 int i, rc = 0;
8674 u8 cos;
3b603066 8675 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6
VZ
8676 u32 reset_code;
8677
8678 /* Wait until tx fastpath tasks complete */
8679 for_each_tx_queue(bp, i) {
8680 struct bnx2x_fastpath *fp = &bp->fp[i];
8681
6383c0b3 8682 for_each_cos_in_tx_queue(fp, cos)
65565884 8683 rc = bnx2x_clean_tx_queue(bp, fp->txdata_ptr[cos]);
619c5cb6
VZ
8684#ifdef BNX2X_STOP_ON_ERROR
8685 if (rc)
8686 return;
8687#endif
8688 }
8689
8690 /* Give HW time to discard old tx messages */
0926d499 8691 usleep_range(1000, 2000);
619c5cb6
VZ
8692
8693 /* Clean all ETH MACs */
15192a8c
BW
8694 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_ETH_MAC,
8695 false);
619c5cb6
VZ
8696 if (rc < 0)
8697 BNX2X_ERR("Failed to delete all ETH macs: %d\n", rc);
8698
8699 /* Clean up UC list */
15192a8c 8700 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_UC_LIST_MAC,
619c5cb6
VZ
8701 true);
8702 if (rc < 0)
51c1a580
MS
8703 BNX2X_ERR("Failed to schedule DEL commands for UC MACs list: %d\n",
8704 rc);
619c5cb6
VZ
8705
8706 /* Disable LLH */
8707 if (!CHIP_IS_E1(bp))
8708 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
8709
8710 /* Set "drop all" (stop Rx).
8711 * We need to take a netif_addr_lock() here in order to prevent
8712 * a race between the completion code and this code.
8713 */
8714 netif_addr_lock_bh(bp->dev);
8715 /* Schedule the rx_mode command */
8716 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
8717 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
8718 else
8719 bnx2x_set_storm_rx_mode(bp);
8720
8721 /* Cleanup multicast configuration */
8722 rparam.mcast_obj = &bp->mcast_obj;
8723 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
8724 if (rc < 0)
8725 BNX2X_ERR("Failed to send DEL multicast command: %d\n", rc);
8726
8727 netif_addr_unlock_bh(bp->dev);
8728
f1929b01 8729 bnx2x_iov_chip_cleanup(bp);
619c5cb6 8730
6debea87
DK
8731
8732 /*
8733 * Send the UNLOAD_REQUEST to the MCP. This will return if
8734 * this function should perform FUNC, PORT or COMMON HW
8735 * reset.
8736 */
8737 reset_code = bnx2x_send_unload_req(bp, unload_mode);
8738
8739 /*
8740 * (assumption: No Attention from MCP at this stage)
8741 * PMF probably in the middle of TXdisable/enable transaction
8742 */
8743 rc = bnx2x_func_wait_started(bp);
8744 if (rc) {
8745 BNX2X_ERR("bnx2x_func_wait_started failed\n");
8746#ifdef BNX2X_STOP_ON_ERROR
8747 return;
8748#endif
8749 }
8750
34f80b04 8751 /* Close multi and leading connections
619c5cb6
VZ
8752 * Completions for ramrods are collected in a synchronous way
8753 */
55c11941 8754 for_each_eth_queue(bp, i)
619c5cb6 8755 if (bnx2x_stop_queue(bp, i))
523224a3
DK
8756#ifdef BNX2X_STOP_ON_ERROR
8757 return;
8758#else
228241eb 8759 goto unload_error;
523224a3 8760#endif
55c11941
MS
8761
8762 if (CNIC_LOADED(bp)) {
8763 for_each_cnic_queue(bp, i)
8764 if (bnx2x_stop_queue(bp, i))
8765#ifdef BNX2X_STOP_ON_ERROR
8766 return;
8767#else
8768 goto unload_error;
8769#endif
8770 }
8771
619c5cb6
VZ
8772 /* If SP settings didn't get completed so far - something
8773 * very wrong has happen.
8774 */
8775 if (!bnx2x_wait_sp_comp(bp, ~0x0UL))
8776 BNX2X_ERR("Hmmm... Common slow path ramrods got stuck!\n");
a2fbb9ea 8777
619c5cb6
VZ
8778#ifndef BNX2X_STOP_ON_ERROR
8779unload_error:
8780#endif
523224a3 8781 rc = bnx2x_func_stop(bp);
da5a662a 8782 if (rc) {
523224a3 8783 BNX2X_ERR("Function stop failed!\n");
da5a662a 8784#ifdef BNX2X_STOP_ON_ERROR
523224a3 8785 return;
523224a3 8786#endif
34f80b04 8787 }
a2fbb9ea 8788
523224a3
DK
8789 /* Disable HW interrupts, NAPI */
8790 bnx2x_netif_stop(bp, 1);
26614ba5
MS
8791 /* Delete all NAPI objects */
8792 bnx2x_del_all_napi(bp);
55c11941
MS
8793 if (CNIC_LOADED(bp))
8794 bnx2x_del_all_napi_cnic(bp);
523224a3
DK
8795
8796 /* Release IRQs */
d6214d7a 8797 bnx2x_free_irq(bp);
523224a3 8798
a2fbb9ea 8799 /* Reset the chip */
619c5cb6
VZ
8800 rc = bnx2x_reset_hw(bp, reset_code);
8801 if (rc)
8802 BNX2X_ERR("HW_RESET failed\n");
a2fbb9ea 8803
356e2385 8804
619c5cb6 8805 /* Report UNLOAD_DONE to MCP */
5d07d868 8806 bnx2x_send_unload_done(bp, keep_link);
72fd0718
VZ
8807}
8808
9f6c9258 8809void bnx2x_disable_close_the_gate(struct bnx2x *bp)
72fd0718
VZ
8810{
8811 u32 val;
8812
51c1a580 8813 DP(NETIF_MSG_IFDOWN, "Disabling \"close the gates\"\n");
72fd0718
VZ
8814
8815 if (CHIP_IS_E1(bp)) {
8816 int port = BP_PORT(bp);
8817 u32 addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
8818 MISC_REG_AEU_MASK_ATTN_FUNC_0;
8819
8820 val = REG_RD(bp, addr);
8821 val &= ~(0x300);
8822 REG_WR(bp, addr, val);
619c5cb6 8823 } else {
72fd0718
VZ
8824 val = REG_RD(bp, MISC_REG_AEU_GENERAL_MASK);
8825 val &= ~(MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK |
8826 MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK);
8827 REG_WR(bp, MISC_REG_AEU_GENERAL_MASK, val);
8828 }
8829}
8830
72fd0718
VZ
8831/* Close gates #2, #3 and #4: */
8832static void bnx2x_set_234_gates(struct bnx2x *bp, bool close)
8833{
c9ee9206 8834 u32 val;
72fd0718
VZ
8835
8836 /* Gates #2 and #4a are closed/opened for "not E1" only */
8837 if (!CHIP_IS_E1(bp)) {
8838 /* #4 */
c9ee9206 8839 REG_WR(bp, PXP_REG_HST_DISCARD_DOORBELLS, !!close);
72fd0718 8840 /* #2 */
c9ee9206 8841 REG_WR(bp, PXP_REG_HST_DISCARD_INTERNAL_WRITES, !!close);
72fd0718
VZ
8842 }
8843
8844 /* #3 */
c9ee9206
VZ
8845 if (CHIP_IS_E1x(bp)) {
8846 /* Prevent interrupts from HC on both ports */
8847 val = REG_RD(bp, HC_REG_CONFIG_1);
8848 REG_WR(bp, HC_REG_CONFIG_1,
8849 (!close) ? (val | HC_CONFIG_1_REG_BLOCK_DISABLE_1) :
8850 (val & ~(u32)HC_CONFIG_1_REG_BLOCK_DISABLE_1));
8851
8852 val = REG_RD(bp, HC_REG_CONFIG_0);
8853 REG_WR(bp, HC_REG_CONFIG_0,
8854 (!close) ? (val | HC_CONFIG_0_REG_BLOCK_DISABLE_0) :
8855 (val & ~(u32)HC_CONFIG_0_REG_BLOCK_DISABLE_0));
8856 } else {
d82603c6 8857 /* Prevent incoming interrupts in IGU */
c9ee9206
VZ
8858 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
8859
8860 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION,
8861 (!close) ?
8862 (val | IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE) :
8863 (val & ~(u32)IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE));
8864 }
72fd0718 8865
51c1a580 8866 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "%s gates #2, #3 and #4\n",
72fd0718
VZ
8867 close ? "closing" : "opening");
8868 mmiowb();
8869}
8870
8871#define SHARED_MF_CLP_MAGIC 0x80000000 /* `magic' bit */
8872
8873static void bnx2x_clp_reset_prep(struct bnx2x *bp, u32 *magic_val)
8874{
8875 /* Do some magic... */
8876 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8877 *magic_val = val & SHARED_MF_CLP_MAGIC;
8878 MF_CFG_WR(bp, shared_mf_config.clp_mb, val | SHARED_MF_CLP_MAGIC);
8879}
8880
e8920674
DK
8881/**
8882 * bnx2x_clp_reset_done - restore the value of the `magic' bit.
72fd0718 8883 *
e8920674
DK
8884 * @bp: driver handle
8885 * @magic_val: old value of the `magic' bit.
72fd0718
VZ
8886 */
8887static void bnx2x_clp_reset_done(struct bnx2x *bp, u32 magic_val)
8888{
8889 /* Restore the `magic' bit value... */
72fd0718
VZ
8890 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
8891 MF_CFG_WR(bp, shared_mf_config.clp_mb,
8892 (val & (~SHARED_MF_CLP_MAGIC)) | magic_val);
8893}
8894
f85582f8 8895/**
e8920674 8896 * bnx2x_reset_mcp_prep - prepare for MCP reset.
72fd0718 8897 *
e8920674
DK
8898 * @bp: driver handle
8899 * @magic_val: old value of 'magic' bit.
8900 *
8901 * Takes care of CLP configurations.
72fd0718
VZ
8902 */
8903static void bnx2x_reset_mcp_prep(struct bnx2x *bp, u32 *magic_val)
8904{
8905 u32 shmem;
8906 u32 validity_offset;
8907
51c1a580 8908 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "Starting\n");
72fd0718
VZ
8909
8910 /* Set `magic' bit in order to save MF config */
8911 if (!CHIP_IS_E1(bp))
8912 bnx2x_clp_reset_prep(bp, magic_val);
8913
8914 /* Get shmem offset */
8915 shmem = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
c55e771b
BW
8916 validity_offset =
8917 offsetof(struct shmem_region, validity_map[BP_PORT(bp)]);
72fd0718
VZ
8918
8919 /* Clear validity map flags */
8920 if (shmem > 0)
8921 REG_WR(bp, shmem + validity_offset, 0);
8922}
8923
8924#define MCP_TIMEOUT 5000 /* 5 seconds (in ms) */
8925#define MCP_ONE_TIMEOUT 100 /* 100 ms */
8926
e8920674
DK
8927/**
8928 * bnx2x_mcp_wait_one - wait for MCP_ONE_TIMEOUT
72fd0718 8929 *
e8920674 8930 * @bp: driver handle
72fd0718 8931 */
1191cb83 8932static void bnx2x_mcp_wait_one(struct bnx2x *bp)
72fd0718
VZ
8933{
8934 /* special handling for emulation and FPGA,
8935 wait 10 times longer */
8936 if (CHIP_REV_IS_SLOW(bp))
8937 msleep(MCP_ONE_TIMEOUT*10);
8938 else
8939 msleep(MCP_ONE_TIMEOUT);
8940}
8941
1b6e2ceb
DK
8942/*
8943 * initializes bp->common.shmem_base and waits for validity signature to appear
8944 */
8945static int bnx2x_init_shmem(struct bnx2x *bp)
72fd0718 8946{
1b6e2ceb
DK
8947 int cnt = 0;
8948 u32 val = 0;
72fd0718 8949
1b6e2ceb
DK
8950 do {
8951 bp->common.shmem_base = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
8952 if (bp->common.shmem_base) {
8953 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
8954 if (val & SHR_MEM_VALIDITY_MB)
8955 return 0;
8956 }
72fd0718 8957
1b6e2ceb 8958 bnx2x_mcp_wait_one(bp);
72fd0718 8959
1b6e2ceb 8960 } while (cnt++ < (MCP_TIMEOUT / MCP_ONE_TIMEOUT));
72fd0718 8961
1b6e2ceb 8962 BNX2X_ERR("BAD MCP validity signature\n");
72fd0718 8963
1b6e2ceb
DK
8964 return -ENODEV;
8965}
72fd0718 8966
1b6e2ceb
DK
8967static int bnx2x_reset_mcp_comp(struct bnx2x *bp, u32 magic_val)
8968{
8969 int rc = bnx2x_init_shmem(bp);
72fd0718 8970
72fd0718
VZ
8971 /* Restore the `magic' bit value */
8972 if (!CHIP_IS_E1(bp))
8973 bnx2x_clp_reset_done(bp, magic_val);
8974
8975 return rc;
8976}
8977
8978static void bnx2x_pxp_prep(struct bnx2x *bp)
8979{
8980 if (!CHIP_IS_E1(bp)) {
8981 REG_WR(bp, PXP2_REG_RD_START_INIT, 0);
8982 REG_WR(bp, PXP2_REG_RQ_RBC_DONE, 0);
72fd0718
VZ
8983 mmiowb();
8984 }
8985}
8986
8987/*
8988 * Reset the whole chip except for:
8989 * - PCIE core
8990 * - PCI Glue, PSWHST, PXP/PXP2 RF (all controlled by
8991 * one reset bit)
8992 * - IGU
8993 * - MISC (including AEU)
8994 * - GRC
8995 * - RBCN, RBCP
8996 */
c9ee9206 8997static void bnx2x_process_kill_chip_reset(struct bnx2x *bp, bool global)
72fd0718
VZ
8998{
8999 u32 not_reset_mask1, reset_mask1, not_reset_mask2, reset_mask2;
8736c826 9000 u32 global_bits2, stay_reset2;
c9ee9206
VZ
9001
9002 /*
9003 * Bits that have to be set in reset_mask2 if we want to reset 'global'
9004 * (per chip) blocks.
9005 */
9006 global_bits2 =
9007 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CPU |
9008 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CORE;
72fd0718 9009
c55e771b
BW
9010 /* Don't reset the following blocks.
9011 * Important: per port blocks (such as EMAC, BMAC, UMAC) can't be
9012 * reset, as in 4 port device they might still be owned
9013 * by the MCP (there is only one leader per path).
9014 */
72fd0718
VZ
9015 not_reset_mask1 =
9016 MISC_REGISTERS_RESET_REG_1_RST_HC |
9017 MISC_REGISTERS_RESET_REG_1_RST_PXPV |
9018 MISC_REGISTERS_RESET_REG_1_RST_PXP;
9019
9020 not_reset_mask2 =
c9ee9206 9021 MISC_REGISTERS_RESET_REG_2_RST_PCI_MDIO |
72fd0718
VZ
9022 MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE |
9023 MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE |
9024 MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE |
9025 MISC_REGISTERS_RESET_REG_2_RST_RBCN |
9026 MISC_REGISTERS_RESET_REG_2_RST_GRC |
9027 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE |
8736c826
VZ
9028 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B |
9029 MISC_REGISTERS_RESET_REG_2_RST_ATC |
c55e771b
BW
9030 MISC_REGISTERS_RESET_REG_2_PGLC |
9031 MISC_REGISTERS_RESET_REG_2_RST_BMAC0 |
9032 MISC_REGISTERS_RESET_REG_2_RST_BMAC1 |
9033 MISC_REGISTERS_RESET_REG_2_RST_EMAC0 |
9034 MISC_REGISTERS_RESET_REG_2_RST_EMAC1 |
9035 MISC_REGISTERS_RESET_REG_2_UMAC0 |
9036 MISC_REGISTERS_RESET_REG_2_UMAC1;
72fd0718 9037
8736c826
VZ
9038 /*
9039 * Keep the following blocks in reset:
9040 * - all xxMACs are handled by the bnx2x_link code.
9041 */
9042 stay_reset2 =
8736c826
VZ
9043 MISC_REGISTERS_RESET_REG_2_XMAC |
9044 MISC_REGISTERS_RESET_REG_2_XMAC_SOFT;
9045
9046 /* Full reset masks according to the chip */
72fd0718
VZ
9047 reset_mask1 = 0xffffffff;
9048
9049 if (CHIP_IS_E1(bp))
9050 reset_mask2 = 0xffff;
8736c826 9051 else if (CHIP_IS_E1H(bp))
72fd0718 9052 reset_mask2 = 0x1ffff;
8736c826
VZ
9053 else if (CHIP_IS_E2(bp))
9054 reset_mask2 = 0xfffff;
9055 else /* CHIP_IS_E3 */
9056 reset_mask2 = 0x3ffffff;
c9ee9206
VZ
9057
9058 /* Don't reset global blocks unless we need to */
9059 if (!global)
9060 reset_mask2 &= ~global_bits2;
9061
9062 /*
9063 * In case of attention in the QM, we need to reset PXP
9064 * (MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR) before QM
9065 * because otherwise QM reset would release 'close the gates' shortly
9066 * before resetting the PXP, then the PSWRQ would send a write
9067 * request to PGLUE. Then when PXP is reset, PGLUE would try to
9068 * read the payload data from PSWWR, but PSWWR would not
9069 * respond. The write queue in PGLUE would stuck, dmae commands
9070 * would not return. Therefore it's important to reset the second
9071 * reset register (containing the
9072 * MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR bit) before the
9073 * first one (containing the MISC_REGISTERS_RESET_REG_1_RST_QM
9074 * bit).
9075 */
72fd0718
VZ
9076 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR,
9077 reset_mask2 & (~not_reset_mask2));
9078
c9ee9206
VZ
9079 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
9080 reset_mask1 & (~not_reset_mask1));
9081
72fd0718
VZ
9082 barrier();
9083 mmiowb();
9084
8736c826
VZ
9085 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET,
9086 reset_mask2 & (~stay_reset2));
9087
9088 barrier();
9089 mmiowb();
9090
c9ee9206 9091 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, reset_mask1);
72fd0718
VZ
9092 mmiowb();
9093}
9094
c9ee9206
VZ
9095/**
9096 * bnx2x_er_poll_igu_vq - poll for pending writes bit.
9097 * It should get cleared in no more than 1s.
9098 *
9099 * @bp: driver handle
9100 *
9101 * It should get cleared in no more than 1s. Returns 0 if
9102 * pending writes bit gets cleared.
9103 */
9104static int bnx2x_er_poll_igu_vq(struct bnx2x *bp)
9105{
9106 u32 cnt = 1000;
9107 u32 pend_bits = 0;
9108
9109 do {
9110 pend_bits = REG_RD(bp, IGU_REG_PENDING_BITS_STATUS);
9111
9112 if (pend_bits == 0)
9113 break;
9114
0926d499 9115 usleep_range(1000, 2000);
c9ee9206
VZ
9116 } while (cnt-- > 0);
9117
9118 if (cnt <= 0) {
9119 BNX2X_ERR("Still pending IGU requests pend_bits=%x!\n",
9120 pend_bits);
9121 return -EBUSY;
9122 }
9123
9124 return 0;
9125}
9126
9127static int bnx2x_process_kill(struct bnx2x *bp, bool global)
72fd0718
VZ
9128{
9129 int cnt = 1000;
9130 u32 val = 0;
9131 u32 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1, pgl_exp_rom2;
2de67439 9132 u32 tags_63_32 = 0;
72fd0718
VZ
9133
9134 /* Empty the Tetris buffer, wait for 1s */
9135 do {
9136 sr_cnt = REG_RD(bp, PXP2_REG_RD_SR_CNT);
9137 blk_cnt = REG_RD(bp, PXP2_REG_RD_BLK_CNT);
9138 port_is_idle_0 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_0);
9139 port_is_idle_1 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_1);
9140 pgl_exp_rom2 = REG_RD(bp, PXP2_REG_PGL_EXP_ROM2);
c55e771b
BW
9141 if (CHIP_IS_E3(bp))
9142 tags_63_32 = REG_RD(bp, PGLUE_B_REG_TAGS_63_32);
9143
72fd0718
VZ
9144 if ((sr_cnt == 0x7e) && (blk_cnt == 0xa0) &&
9145 ((port_is_idle_0 & 0x1) == 0x1) &&
9146 ((port_is_idle_1 & 0x1) == 0x1) &&
c55e771b
BW
9147 (pgl_exp_rom2 == 0xffffffff) &&
9148 (!CHIP_IS_E3(bp) || (tags_63_32 == 0xffffffff)))
72fd0718 9149 break;
0926d499 9150 usleep_range(1000, 2000);
72fd0718
VZ
9151 } while (cnt-- > 0);
9152
9153 if (cnt <= 0) {
51c1a580
MS
9154 BNX2X_ERR("Tetris buffer didn't get empty or there are still outstanding read requests after 1s!\n");
9155 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
9156 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1,
9157 pgl_exp_rom2);
9158 return -EAGAIN;
9159 }
9160
9161 barrier();
9162
9163 /* Close gates #2, #3 and #4 */
9164 bnx2x_set_234_gates(bp, true);
9165
c9ee9206
VZ
9166 /* Poll for IGU VQs for 57712 and newer chips */
9167 if (!CHIP_IS_E1x(bp) && bnx2x_er_poll_igu_vq(bp))
9168 return -EAGAIN;
9169
9170
72fd0718
VZ
9171 /* TBD: Indicate that "process kill" is in progress to MCP */
9172
9173 /* Clear "unprepared" bit */
9174 REG_WR(bp, MISC_REG_UNPREPARED, 0);
9175 barrier();
9176
9177 /* Make sure all is written to the chip before the reset */
9178 mmiowb();
9179
9180 /* Wait for 1ms to empty GLUE and PCI-E core queues,
9181 * PSWHST, GRC and PSWRD Tetris buffer.
9182 */
0926d499 9183 usleep_range(1000, 2000);
72fd0718
VZ
9184
9185 /* Prepare to chip reset: */
9186 /* MCP */
c9ee9206
VZ
9187 if (global)
9188 bnx2x_reset_mcp_prep(bp, &val);
72fd0718
VZ
9189
9190 /* PXP */
9191 bnx2x_pxp_prep(bp);
9192 barrier();
9193
9194 /* reset the chip */
c9ee9206 9195 bnx2x_process_kill_chip_reset(bp, global);
72fd0718
VZ
9196 barrier();
9197
9198 /* Recover after reset: */
9199 /* MCP */
c9ee9206 9200 if (global && bnx2x_reset_mcp_comp(bp, val))
72fd0718
VZ
9201 return -EAGAIN;
9202
c9ee9206
VZ
9203 /* TBD: Add resetting the NO_MCP mode DB here */
9204
72fd0718
VZ
9205 /* Open the gates #2, #3 and #4 */
9206 bnx2x_set_234_gates(bp, false);
9207
9208 /* TBD: IGU/AEU preparation bring back the AEU/IGU to a
9209 * reset state, re-enable attentions. */
9210
a2fbb9ea
ET
9211 return 0;
9212}
9213
910cc727 9214static int bnx2x_leader_reset(struct bnx2x *bp)
72fd0718
VZ
9215{
9216 int rc = 0;
c9ee9206 9217 bool global = bnx2x_reset_is_global(bp);
95c6c616
AE
9218 u32 load_code;
9219
9220 /* if not going to reset MCP - load "fake" driver to reset HW while
9221 * driver is owner of the HW
9222 */
9223 if (!global && !BP_NOMCP(bp)) {
5d07d868
YM
9224 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ,
9225 DRV_MSG_CODE_LOAD_REQ_WITH_LFA);
95c6c616
AE
9226 if (!load_code) {
9227 BNX2X_ERR("MCP response failure, aborting\n");
9228 rc = -EAGAIN;
9229 goto exit_leader_reset;
9230 }
9231 if ((load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) &&
9232 (load_code != FW_MSG_CODE_DRV_LOAD_COMMON)) {
9233 BNX2X_ERR("MCP unexpected resp, aborting\n");
9234 rc = -EAGAIN;
9235 goto exit_leader_reset2;
9236 }
9237 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
9238 if (!load_code) {
9239 BNX2X_ERR("MCP response failure, aborting\n");
9240 rc = -EAGAIN;
9241 goto exit_leader_reset2;
9242 }
9243 }
c9ee9206 9244
72fd0718 9245 /* Try to recover after the failure */
c9ee9206 9246 if (bnx2x_process_kill(bp, global)) {
51c1a580
MS
9247 BNX2X_ERR("Something bad had happen on engine %d! Aii!\n",
9248 BP_PATH(bp));
72fd0718 9249 rc = -EAGAIN;
95c6c616 9250 goto exit_leader_reset2;
72fd0718
VZ
9251 }
9252
c9ee9206
VZ
9253 /*
9254 * Clear RESET_IN_PROGRES and RESET_GLOBAL bits and update the driver
9255 * state.
9256 */
72fd0718 9257 bnx2x_set_reset_done(bp);
c9ee9206
VZ
9258 if (global)
9259 bnx2x_clear_reset_global(bp);
72fd0718 9260
95c6c616
AE
9261exit_leader_reset2:
9262 /* unload "fake driver" if it was loaded */
9263 if (!global && !BP_NOMCP(bp)) {
9264 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
9265 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
9266 }
72fd0718
VZ
9267exit_leader_reset:
9268 bp->is_leader = 0;
c9ee9206
VZ
9269 bnx2x_release_leader_lock(bp);
9270 smp_mb();
72fd0718
VZ
9271 return rc;
9272}
9273
1191cb83 9274static void bnx2x_recovery_failed(struct bnx2x *bp)
c9ee9206
VZ
9275{
9276 netdev_err(bp->dev, "Recovery has failed. Power cycle is needed.\n");
9277
9278 /* Disconnect this device */
9279 netif_device_detach(bp->dev);
9280
9281 /*
9282 * Block ifup for all function on this engine until "process kill"
9283 * or power cycle.
9284 */
9285 bnx2x_set_reset_in_progress(bp);
9286
9287 /* Shut down the power */
9288 bnx2x_set_power_state(bp, PCI_D3hot);
9289
9290 bp->recovery_state = BNX2X_RECOVERY_FAILED;
9291
9292 smp_mb();
9293}
9294
9295/*
9296 * Assumption: runs under rtnl lock. This together with the fact
6383c0b3 9297 * that it's called only from bnx2x_sp_rtnl() ensure that it
72fd0718
VZ
9298 * will never be called when netif_running(bp->dev) is false.
9299 */
9300static void bnx2x_parity_recover(struct bnx2x *bp)
9301{
c9ee9206 9302 bool global = false;
7a752993 9303 u32 error_recovered, error_unrecovered;
95c6c616 9304 bool is_parity;
c9ee9206 9305
72fd0718
VZ
9306 DP(NETIF_MSG_HW, "Handling parity\n");
9307 while (1) {
9308 switch (bp->recovery_state) {
9309 case BNX2X_RECOVERY_INIT:
9310 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_INIT\n");
95c6c616
AE
9311 is_parity = bnx2x_chk_parity_attn(bp, &global, false);
9312 WARN_ON(!is_parity);
c9ee9206 9313
72fd0718 9314 /* Try to get a LEADER_LOCK HW lock */
c9ee9206
VZ
9315 if (bnx2x_trylock_leader_lock(bp)) {
9316 bnx2x_set_reset_in_progress(bp);
9317 /*
9318 * Check if there is a global attention and if
9319 * there was a global attention, set the global
9320 * reset bit.
9321 */
9322
9323 if (global)
9324 bnx2x_set_reset_global(bp);
9325
72fd0718 9326 bp->is_leader = 1;
c9ee9206 9327 }
72fd0718
VZ
9328
9329 /* Stop the driver */
9330 /* If interface has been removed - break */
5d07d868 9331 if (bnx2x_nic_unload(bp, UNLOAD_RECOVERY, false))
72fd0718
VZ
9332 return;
9333
9334 bp->recovery_state = BNX2X_RECOVERY_WAIT;
c9ee9206 9335
c9ee9206
VZ
9336 /* Ensure "is_leader", MCP command sequence and
9337 * "recovery_state" update values are seen on other
9338 * CPUs.
72fd0718 9339 */
c9ee9206 9340 smp_mb();
72fd0718
VZ
9341 break;
9342
9343 case BNX2X_RECOVERY_WAIT:
9344 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_WAIT\n");
9345 if (bp->is_leader) {
c9ee9206 9346 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3
AE
9347 bool other_load_status =
9348 bnx2x_get_load_status(bp, other_engine);
9349 bool load_status =
9350 bnx2x_get_load_status(bp, BP_PATH(bp));
c9ee9206
VZ
9351 global = bnx2x_reset_is_global(bp);
9352
9353 /*
9354 * In case of a parity in a global block, let
9355 * the first leader that performs a
9356 * leader_reset() reset the global blocks in
9357 * order to clear global attentions. Otherwise
9358 * the the gates will remain closed for that
9359 * engine.
9360 */
889b9af3
AE
9361 if (load_status ||
9362 (global && other_load_status)) {
72fd0718
VZ
9363 /* Wait until all other functions get
9364 * down.
9365 */
7be08a72 9366 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9367 HZ/10);
9368 return;
9369 } else {
9370 /* If all other functions got down -
9371 * try to bring the chip back to
9372 * normal. In any case it's an exit
9373 * point for a leader.
9374 */
c9ee9206
VZ
9375 if (bnx2x_leader_reset(bp)) {
9376 bnx2x_recovery_failed(bp);
72fd0718
VZ
9377 return;
9378 }
9379
c9ee9206
VZ
9380 /* If we are here, means that the
9381 * leader has succeeded and doesn't
9382 * want to be a leader any more. Try
9383 * to continue as a none-leader.
9384 */
9385 break;
72fd0718
VZ
9386 }
9387 } else { /* non-leader */
c9ee9206 9388 if (!bnx2x_reset_is_done(bp, BP_PATH(bp))) {
72fd0718
VZ
9389 /* Try to get a LEADER_LOCK HW lock as
9390 * long as a former leader may have
9391 * been unloaded by the user or
9392 * released a leadership by another
9393 * reason.
9394 */
c9ee9206 9395 if (bnx2x_trylock_leader_lock(bp)) {
72fd0718
VZ
9396 /* I'm a leader now! Restart a
9397 * switch case.
9398 */
9399 bp->is_leader = 1;
9400 break;
9401 }
9402
7be08a72 9403 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9404 HZ/10);
9405 return;
9406
c9ee9206
VZ
9407 } else {
9408 /*
9409 * If there was a global attention, wait
9410 * for it to be cleared.
9411 */
9412 if (bnx2x_reset_is_global(bp)) {
9413 schedule_delayed_work(
7be08a72
AE
9414 &bp->sp_rtnl_task,
9415 HZ/10);
c9ee9206
VZ
9416 return;
9417 }
9418
7a752993
AE
9419 error_recovered =
9420 bp->eth_stats.recoverable_error;
9421 error_unrecovered =
9422 bp->eth_stats.unrecoverable_error;
95c6c616
AE
9423 bp->recovery_state =
9424 BNX2X_RECOVERY_NIC_LOADING;
9425 if (bnx2x_nic_load(bp, LOAD_NORMAL)) {
7a752993 9426 error_unrecovered++;
95c6c616 9427 netdev_err(bp->dev,
51c1a580 9428 "Recovery failed. Power cycle needed\n");
95c6c616
AE
9429 /* Disconnect this device */
9430 netif_device_detach(bp->dev);
9431 /* Shut down the power */
9432 bnx2x_set_power_state(
9433 bp, PCI_D3hot);
9434 smp_mb();
9435 } else {
c9ee9206
VZ
9436 bp->recovery_state =
9437 BNX2X_RECOVERY_DONE;
7a752993 9438 error_recovered++;
c9ee9206
VZ
9439 smp_mb();
9440 }
7a752993
AE
9441 bp->eth_stats.recoverable_error =
9442 error_recovered;
9443 bp->eth_stats.unrecoverable_error =
9444 error_unrecovered;
c9ee9206 9445
72fd0718
VZ
9446 return;
9447 }
9448 }
9449 default:
9450 return;
9451 }
9452 }
9453}
9454
56ad3152
MS
9455static int bnx2x_close(struct net_device *dev);
9456
72fd0718
VZ
9457/* bnx2x_nic_unload() flushes the bnx2x_wq, thus reset task is
9458 * scheduled on a general queue in order to prevent a dead lock.
9459 */
7be08a72 9460static void bnx2x_sp_rtnl_task(struct work_struct *work)
34f80b04 9461{
7be08a72 9462 struct bnx2x *bp = container_of(work, struct bnx2x, sp_rtnl_task.work);
34f80b04
EG
9463
9464 rtnl_lock();
9465
8395be5e
AE
9466 if (!netif_running(bp->dev)) {
9467 rtnl_unlock();
9468 return;
9469 }
7be08a72
AE
9470
9471 /* if stop on error is defined no recovery flows should be executed */
9472#ifdef BNX2X_STOP_ON_ERROR
51c1a580 9473 BNX2X_ERR("recovery flow called but STOP_ON_ERROR defined so reset not done to allow debug dump,\n"
7be08a72 9474 "you will need to reboot when done\n");
b1fb8740 9475 goto sp_rtnl_not_reset;
7be08a72 9476#endif
34f80b04 9477
7be08a72
AE
9478 if (unlikely(bp->recovery_state != BNX2X_RECOVERY_DONE)) {
9479 /*
b1fb8740
VZ
9480 * Clear all pending SP commands as we are going to reset the
9481 * function anyway.
7be08a72 9482 */
b1fb8740
VZ
9483 bp->sp_rtnl_state = 0;
9484 smp_mb();
9485
72fd0718 9486 bnx2x_parity_recover(bp);
b1fb8740 9487
8395be5e
AE
9488 rtnl_unlock();
9489 return;
b1fb8740
VZ
9490 }
9491
9492 if (test_and_clear_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state)) {
9493 /*
9494 * Clear all pending SP commands as we are going to reset the
9495 * function anyway.
9496 */
9497 bp->sp_rtnl_state = 0;
9498 smp_mb();
9499
5d07d868 9500 bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
72fd0718 9501 bnx2x_nic_load(bp, LOAD_NORMAL);
b1fb8740 9502
8395be5e
AE
9503 rtnl_unlock();
9504 return;
72fd0718 9505 }
b1fb8740
VZ
9506#ifdef BNX2X_STOP_ON_ERROR
9507sp_rtnl_not_reset:
9508#endif
9509 if (test_and_clear_bit(BNX2X_SP_RTNL_SETUP_TC, &bp->sp_rtnl_state))
9510 bnx2x_setup_tc(bp->dev, bp->dcbx_port_params.ets.num_of_cos);
a3348722
BW
9511 if (test_and_clear_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE, &bp->sp_rtnl_state))
9512 bnx2x_after_function_update(bp);
8304859a
AE
9513 /*
9514 * in case of fan failure we need to reset id if the "stop on error"
9515 * debug flag is set, since we trying to prevent permanent overheating
9516 * damage
9517 */
9518 if (test_and_clear_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state)) {
51c1a580 9519 DP(NETIF_MSG_HW, "fan failure detected. Unloading driver\n");
8304859a
AE
9520 netif_device_detach(bp->dev);
9521 bnx2x_close(bp->dev);
8395be5e
AE
9522 rtnl_unlock();
9523 return;
8304859a
AE
9524 }
9525
381ac16b
AE
9526 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_MCAST, &bp->sp_rtnl_state)) {
9527 DP(BNX2X_MSG_SP,
9528 "sending set mcast vf pf channel message from rtnl sp-task\n");
9529 bnx2x_vfpf_set_mcast(bp->dev);
9530 }
9531
9532 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_STORM_RX_MODE,
9533 &bp->sp_rtnl_state)) {
9534 DP(BNX2X_MSG_SP,
9535 "sending set storm rx mode vf pf channel message from rtnl sp-task\n");
9536 bnx2x_vfpf_storm_rx_mode(bp);
9537 }
9538
3ec9f9ca
AE
9539 if (test_and_clear_bit(BNX2X_SP_RTNL_HYPERVISOR_VLAN,
9540 &bp->sp_rtnl_state))
9541 bnx2x_pf_set_vfs_vlan(bp);
9542
8395be5e
AE
9543 /* work which needs rtnl lock not-taken (as it takes the lock itself and
9544 * can be called from other contexts as well)
9545 */
34f80b04 9546 rtnl_unlock();
8395be5e 9547
6411280a 9548 /* enable SR-IOV if applicable */
8395be5e 9549 if (IS_SRIOV(bp) && test_and_clear_bit(BNX2X_SP_RTNL_ENABLE_SRIOV,
3c76feff
AE
9550 &bp->sp_rtnl_state)) {
9551 bnx2x_disable_sriov(bp);
6411280a 9552 bnx2x_enable_sriov(bp);
3c76feff 9553 }
34f80b04
EG
9554}
9555
3deb8167
YR
9556static void bnx2x_period_task(struct work_struct *work)
9557{
9558 struct bnx2x *bp = container_of(work, struct bnx2x, period_task.work);
9559
9560 if (!netif_running(bp->dev))
9561 goto period_task_exit;
9562
9563 if (CHIP_REV_IS_SLOW(bp)) {
9564 BNX2X_ERR("period task called on emulation, ignoring\n");
9565 goto period_task_exit;
9566 }
9567
9568 bnx2x_acquire_phy_lock(bp);
9569 /*
9570 * The barrier is needed to ensure the ordering between the writing to
9571 * the bp->port.pmf in the bnx2x_nic_load() or bnx2x_pmf_update() and
9572 * the reading here.
9573 */
9574 smp_mb();
9575 if (bp->port.pmf) {
9576 bnx2x_period_func(&bp->link_params, &bp->link_vars);
9577
9578 /* Re-queue task in 1 sec */
9579 queue_delayed_work(bnx2x_wq, &bp->period_task, 1*HZ);
9580 }
9581
9582 bnx2x_release_phy_lock(bp);
9583period_task_exit:
9584 return;
9585}
9586
a2fbb9ea
ET
9587/*
9588 * Init service functions
9589 */
9590
b56e9670 9591u32 bnx2x_get_pretend_reg(struct bnx2x *bp)
f2e0899f
DK
9592{
9593 u32 base = PXP2_REG_PGL_PRETEND_FUNC_F0;
9594 u32 stride = PXP2_REG_PGL_PRETEND_FUNC_F1 - base;
9595 return base + (BP_ABS_FUNC(bp)) * stride;
f1ef27ef
EG
9596}
9597
1ef1d45a
BW
9598static void bnx2x_prev_unload_close_mac(struct bnx2x *bp,
9599 struct bnx2x_mac_vals *vals)
34f80b04 9600{
452427b0
YM
9601 u32 val, base_addr, offset, mask, reset_reg;
9602 bool mac_stopped = false;
9603 u8 port = BP_PORT(bp);
34f80b04 9604
1ef1d45a
BW
9605 /* reset addresses as they also mark which values were changed */
9606 vals->bmac_addr = 0;
9607 vals->umac_addr = 0;
9608 vals->xmac_addr = 0;
9609 vals->emac_addr = 0;
9610
452427b0 9611 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_2);
f16da43b 9612
452427b0
YM
9613 if (!CHIP_IS_E3(bp)) {
9614 val = REG_RD(bp, NIG_REG_BMAC0_REGS_OUT_EN + port * 4);
9615 mask = MISC_REGISTERS_RESET_REG_2_RST_BMAC0 << port;
9616 if ((mask & reset_reg) && val) {
9617 u32 wb_data[2];
9618 BNX2X_DEV_INFO("Disable bmac Rx\n");
9619 base_addr = BP_PORT(bp) ? NIG_REG_INGRESS_BMAC1_MEM
9620 : NIG_REG_INGRESS_BMAC0_MEM;
9621 offset = CHIP_IS_E2(bp) ? BIGMAC2_REGISTER_BMAC_CONTROL
9622 : BIGMAC_REGISTER_BMAC_CONTROL;
7a06a122 9623
452427b0
YM
9624 /*
9625 * use rd/wr since we cannot use dmae. This is safe
9626 * since MCP won't access the bus due to the request
9627 * to unload, and no function on the path can be
9628 * loaded at this time.
9629 */
9630 wb_data[0] = REG_RD(bp, base_addr + offset);
9631 wb_data[1] = REG_RD(bp, base_addr + offset + 0x4);
1ef1d45a
BW
9632 vals->bmac_addr = base_addr + offset;
9633 vals->bmac_val[0] = wb_data[0];
9634 vals->bmac_val[1] = wb_data[1];
452427b0 9635 wb_data[0] &= ~BMAC_CONTROL_RX_ENABLE;
1ef1d45a
BW
9636 REG_WR(bp, vals->bmac_addr, wb_data[0]);
9637 REG_WR(bp, vals->bmac_addr + 0x4, wb_data[1]);
452427b0
YM
9638
9639 }
9640 BNX2X_DEV_INFO("Disable emac Rx\n");
1ef1d45a
BW
9641 vals->emac_addr = NIG_REG_NIG_EMAC0_EN + BP_PORT(bp)*4;
9642 vals->emac_val = REG_RD(bp, vals->emac_addr);
9643 REG_WR(bp, vals->emac_addr, 0);
452427b0
YM
9644 mac_stopped = true;
9645 } else {
9646 if (reset_reg & MISC_REGISTERS_RESET_REG_2_XMAC) {
9647 BNX2X_DEV_INFO("Disable xmac Rx\n");
9648 base_addr = BP_PORT(bp) ? GRCBASE_XMAC1 : GRCBASE_XMAC0;
9649 val = REG_RD(bp, base_addr + XMAC_REG_PFC_CTRL_HI);
9650 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9651 val & ~(1 << 1));
9652 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
9653 val | (1 << 1));
1ef1d45a
BW
9654 vals->xmac_addr = base_addr + XMAC_REG_CTRL;
9655 vals->xmac_val = REG_RD(bp, vals->xmac_addr);
9656 REG_WR(bp, vals->xmac_addr, 0);
452427b0
YM
9657 mac_stopped = true;
9658 }
9659 mask = MISC_REGISTERS_RESET_REG_2_UMAC0 << port;
9660 if (mask & reset_reg) {
9661 BNX2X_DEV_INFO("Disable umac Rx\n");
9662 base_addr = BP_PORT(bp) ? GRCBASE_UMAC1 : GRCBASE_UMAC0;
1ef1d45a
BW
9663 vals->umac_addr = base_addr + UMAC_REG_COMMAND_CONFIG;
9664 vals->umac_val = REG_RD(bp, vals->umac_addr);
9665 REG_WR(bp, vals->umac_addr, 0);
452427b0
YM
9666 mac_stopped = true;
9667 }
9668 }
9669
9670 if (mac_stopped)
9671 msleep(20);
9672
9673}
9674
9675#define BNX2X_PREV_UNDI_PROD_ADDR(p) (BAR_TSTRORM_INTMEM + 0x1508 + ((p) << 4))
9676#define BNX2X_PREV_UNDI_RCQ(val) ((val) & 0xffff)
9677#define BNX2X_PREV_UNDI_BD(val) ((val) >> 16 & 0xffff)
9678#define BNX2X_PREV_UNDI_PROD(rcq, bd) ((bd) << 16 | (rcq))
9679
1dd06ae8 9680static void bnx2x_prev_unload_undi_inc(struct bnx2x *bp, u8 port, u8 inc)
452427b0
YM
9681{
9682 u16 rcq, bd;
9683 u32 tmp_reg = REG_RD(bp, BNX2X_PREV_UNDI_PROD_ADDR(port));
9684
9685 rcq = BNX2X_PREV_UNDI_RCQ(tmp_reg) + inc;
9686 bd = BNX2X_PREV_UNDI_BD(tmp_reg) + inc;
9687
9688 tmp_reg = BNX2X_PREV_UNDI_PROD(rcq, bd);
9689 REG_WR(bp, BNX2X_PREV_UNDI_PROD_ADDR(port), tmp_reg);
9690
9691 BNX2X_DEV_INFO("UNDI producer [%d] rings bd -> 0x%04x, rcq -> 0x%04x\n",
9692 port, bd, rcq);
9693}
9694
0329aba1 9695static int bnx2x_prev_mcp_done(struct bnx2x *bp)
452427b0 9696{
5d07d868
YM
9697 u32 rc = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE,
9698 DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET);
452427b0
YM
9699 if (!rc) {
9700 BNX2X_ERR("MCP response failure, aborting\n");
9701 return -EBUSY;
9702 }
9703
9704 return 0;
9705}
9706
c63da990
BW
9707static struct bnx2x_prev_path_list *
9708 bnx2x_prev_path_get_entry(struct bnx2x *bp)
9709{
9710 struct bnx2x_prev_path_list *tmp_list;
9711
9712 list_for_each_entry(tmp_list, &bnx2x_prev_list, list)
9713 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
9714 bp->pdev->bus->number == tmp_list->bus &&
9715 BP_PATH(bp) == tmp_list->path)
9716 return tmp_list;
9717
9718 return NULL;
9719}
9720
0329aba1 9721static bool bnx2x_prev_is_path_marked(struct bnx2x *bp)
452427b0
YM
9722{
9723 struct bnx2x_prev_path_list *tmp_list;
9724 int rc = false;
9725
9726 if (down_trylock(&bnx2x_prev_sem))
9727 return false;
9728
9729 list_for_each_entry(tmp_list, &bnx2x_prev_list, list) {
9730 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
9731 bp->pdev->bus->number == tmp_list->bus &&
9732 BP_PATH(bp) == tmp_list->path) {
9733 rc = true;
9734 BNX2X_DEV_INFO("Path %d was already cleaned from previous drivers\n",
9735 BP_PATH(bp));
9736 break;
9737 }
9738 }
9739
9740 up(&bnx2x_prev_sem);
9741
9742 return rc;
9743}
9744
c63da990 9745static int bnx2x_prev_mark_path(struct bnx2x *bp, bool after_undi)
452427b0
YM
9746{
9747 struct bnx2x_prev_path_list *tmp_list;
9748 int rc;
9749
ea4b3857 9750 tmp_list = kmalloc(sizeof(struct bnx2x_prev_path_list), GFP_KERNEL);
452427b0
YM
9751 if (!tmp_list) {
9752 BNX2X_ERR("Failed to allocate 'bnx2x_prev_path_list'\n");
9753 return -ENOMEM;
9754 }
9755
9756 tmp_list->bus = bp->pdev->bus->number;
9757 tmp_list->slot = PCI_SLOT(bp->pdev->devfn);
9758 tmp_list->path = BP_PATH(bp);
c63da990 9759 tmp_list->undi = after_undi ? (1 << BP_PORT(bp)) : 0;
452427b0
YM
9760
9761 rc = down_interruptible(&bnx2x_prev_sem);
9762 if (rc) {
9763 BNX2X_ERR("Received %d when tried to take lock\n", rc);
9764 kfree(tmp_list);
9765 } else {
9766 BNX2X_DEV_INFO("Marked path [%d] - finished previous unload\n",
9767 BP_PATH(bp));
9768 list_add(&tmp_list->list, &bnx2x_prev_list);
9769 up(&bnx2x_prev_sem);
9770 }
9771
9772 return rc;
9773}
9774
0329aba1 9775static int bnx2x_do_flr(struct bnx2x *bp)
452427b0 9776{
2a80eebc 9777 int i;
452427b0
YM
9778 u16 status;
9779 struct pci_dev *dev = bp->pdev;
9780
8eee694c
YM
9781
9782 if (CHIP_IS_E1x(bp)) {
9783 BNX2X_DEV_INFO("FLR not supported in E1/E1H\n");
9784 return -EINVAL;
9785 }
9786
9787 /* only bootcode REQ_BC_VER_4_INITIATE_FLR and onwards support flr */
9788 if (bp->common.bc_ver < REQ_BC_VER_4_INITIATE_FLR) {
9789 BNX2X_ERR("FLR not supported by BC_VER: 0x%x\n",
9790 bp->common.bc_ver);
9791 return -EINVAL;
9792 }
452427b0 9793
452427b0
YM
9794 /* Wait for Transaction Pending bit clean */
9795 for (i = 0; i < 4; i++) {
9796 if (i)
9797 msleep((1 << (i - 1)) * 100);
9798
2a80eebc 9799 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
452427b0
YM
9800 if (!(status & PCI_EXP_DEVSTA_TRPND))
9801 goto clear;
9802 }
9803
9804 dev_err(&dev->dev,
9805 "transaction is not cleared; proceeding with reset anyway\n");
9806
9807clear:
452427b0 9808
8eee694c 9809 BNX2X_DEV_INFO("Initiating FLR\n");
452427b0
YM
9810 bnx2x_fw_command(bp, DRV_MSG_CODE_INITIATE_FLR, 0);
9811
9812 return 0;
9813}
9814
0329aba1 9815static int bnx2x_prev_unload_uncommon(struct bnx2x *bp)
452427b0
YM
9816{
9817 int rc;
9818
9819 BNX2X_DEV_INFO("Uncommon unload Flow\n");
9820
9821 /* Test if previous unload process was already finished for this path */
9822 if (bnx2x_prev_is_path_marked(bp))
9823 return bnx2x_prev_mcp_done(bp);
9824
04c46736
YM
9825 BNX2X_DEV_INFO("Path is unmarked\n");
9826
452427b0
YM
9827 /* If function has FLR capabilities, and existing FW version matches
9828 * the one required, then FLR will be sufficient to clean any residue
9829 * left by previous driver
9830 */
ad5afc89 9831 rc = bnx2x_nic_load_analyze_req(bp, FW_MSG_CODE_DRV_LOAD_FUNCTION);
8eee694c
YM
9832
9833 if (!rc) {
9834 /* fw version is good */
9835 BNX2X_DEV_INFO("FW version matches our own. Attempting FLR\n");
9836 rc = bnx2x_do_flr(bp);
9837 }
9838
9839 if (!rc) {
9840 /* FLR was performed */
9841 BNX2X_DEV_INFO("FLR successful\n");
9842 return 0;
9843 }
9844
9845 BNX2X_DEV_INFO("Could not FLR\n");
452427b0
YM
9846
9847 /* Close the MCP request, return failure*/
9848 rc = bnx2x_prev_mcp_done(bp);
9849 if (!rc)
9850 rc = BNX2X_PREV_WAIT_NEEDED;
9851
9852 return rc;
9853}
9854
0329aba1 9855static int bnx2x_prev_unload_common(struct bnx2x *bp)
452427b0
YM
9856{
9857 u32 reset_reg, tmp_reg = 0, rc;
c63da990 9858 bool prev_undi = false;
1ef1d45a
BW
9859 struct bnx2x_mac_vals mac_vals;
9860
452427b0
YM
9861 /* It is possible a previous function received 'common' answer,
9862 * but hasn't loaded yet, therefore creating a scenario of
9863 * multiple functions receiving 'common' on the same path.
9864 */
9865 BNX2X_DEV_INFO("Common unload Flow\n");
9866
1ef1d45a
BW
9867 memset(&mac_vals, 0, sizeof(mac_vals));
9868
452427b0
YM
9869 if (bnx2x_prev_is_path_marked(bp))
9870 return bnx2x_prev_mcp_done(bp);
9871
9872 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
9873
9874 /* Reset should be performed after BRB is emptied */
9875 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_BRB1) {
9876 u32 timer_count = 1000;
452427b0
YM
9877
9878 /* Close the MAC Rx to prevent BRB from filling up */
1ef1d45a
BW
9879 bnx2x_prev_unload_close_mac(bp, &mac_vals);
9880
9881 /* close LLH filters towards the BRB */
9882 bnx2x_set_rx_filter(&bp->link_params, 0);
452427b0
YM
9883
9884 /* Check if the UNDI driver was previously loaded
34f80b04
EG
9885 * UNDI driver initializes CID offset for normal bell to 0x7
9886 */
452427b0
YM
9887 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_DORQ) {
9888 tmp_reg = REG_RD(bp, DORQ_REG_NORM_CID_OFST);
9889 if (tmp_reg == 0x7) {
9890 BNX2X_DEV_INFO("UNDI previously loaded\n");
9891 prev_undi = true;
9892 /* clear the UNDI indication */
9893 REG_WR(bp, DORQ_REG_NORM_CID_OFST, 0);
a74801c5
YM
9894 /* clear possible idle check errors */
9895 REG_RD(bp, NIG_REG_NIG_INT_STS_CLR_0);
34f80b04 9896 }
452427b0
YM
9897 }
9898 /* wait until BRB is empty */
9899 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9900 while (timer_count) {
9901 u32 prev_brb = tmp_reg;
34f80b04 9902
452427b0
YM
9903 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
9904 if (!tmp_reg)
9905 break;
619c5cb6 9906
452427b0 9907 BNX2X_DEV_INFO("BRB still has 0x%08x\n", tmp_reg);
619c5cb6 9908
452427b0
YM
9909 /* reset timer as long as BRB actually gets emptied */
9910 if (prev_brb > tmp_reg)
9911 timer_count = 1000;
9912 else
9913 timer_count--;
da5a662a 9914
452427b0
YM
9915 /* If UNDI resides in memory, manually increment it */
9916 if (prev_undi)
9917 bnx2x_prev_unload_undi_inc(bp, BP_PORT(bp), 1);
da5a662a 9918
452427b0 9919 udelay(10);
7a06a122 9920 }
452427b0
YM
9921
9922 if (!timer_count)
9923 BNX2X_ERR("Failed to empty BRB, hope for the best\n");
9924
34f80b04 9925 }
f16da43b 9926
452427b0
YM
9927 /* No packets are in the pipeline, path is ready for reset */
9928 bnx2x_reset_common(bp);
9929
1ef1d45a
BW
9930 if (mac_vals.xmac_addr)
9931 REG_WR(bp, mac_vals.xmac_addr, mac_vals.xmac_val);
9932 if (mac_vals.umac_addr)
9933 REG_WR(bp, mac_vals.umac_addr, mac_vals.umac_val);
9934 if (mac_vals.emac_addr)
9935 REG_WR(bp, mac_vals.emac_addr, mac_vals.emac_val);
9936 if (mac_vals.bmac_addr) {
9937 REG_WR(bp, mac_vals.bmac_addr, mac_vals.bmac_val[0]);
9938 REG_WR(bp, mac_vals.bmac_addr + 4, mac_vals.bmac_val[1]);
9939 }
9940
c63da990 9941 rc = bnx2x_prev_mark_path(bp, prev_undi);
452427b0
YM
9942 if (rc) {
9943 bnx2x_prev_mcp_done(bp);
9944 return rc;
9945 }
9946
9947 return bnx2x_prev_mcp_done(bp);
9948}
9949
24f06716
AE
9950/* previous driver DMAE transaction may have occurred when pre-boot stage ended
9951 * and boot began, or when kdump kernel was loaded. Either case would invalidate
9952 * the addresses of the transaction, resulting in was-error bit set in the pci
9953 * causing all hw-to-host pcie transactions to timeout. If this happened we want
9954 * to clear the interrupt which detected this from the pglueb and the was done
9955 * bit
9956 */
0329aba1 9957static void bnx2x_prev_interrupted_dmae(struct bnx2x *bp)
24f06716 9958{
4a25417c
AE
9959 if (!CHIP_IS_E1x(bp)) {
9960 u32 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS);
9961 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN) {
04c46736
YM
9962 DP(BNX2X_MSG_SP,
9963 "'was error' bit was found to be set in pglueb upon startup. Clearing\n");
4a25417c
AE
9964 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR,
9965 1 << BP_FUNC(bp));
9966 }
24f06716
AE
9967 }
9968}
9969
0329aba1 9970static int bnx2x_prev_unload(struct bnx2x *bp)
452427b0
YM
9971{
9972 int time_counter = 10;
9973 u32 rc, fw, hw_lock_reg, hw_lock_val;
c63da990 9974 struct bnx2x_prev_path_list *prev_list;
452427b0
YM
9975 BNX2X_DEV_INFO("Entering Previous Unload Flow\n");
9976
24f06716
AE
9977 /* clear hw from errors which may have resulted from an interrupted
9978 * dmae transaction.
9979 */
9980 bnx2x_prev_interrupted_dmae(bp);
9981
9982 /* Release previously held locks */
452427b0
YM
9983 hw_lock_reg = (BP_FUNC(bp) <= 5) ?
9984 (MISC_REG_DRIVER_CONTROL_1 + BP_FUNC(bp) * 8) :
9985 (MISC_REG_DRIVER_CONTROL_7 + (BP_FUNC(bp) - 6) * 8);
9986
9987 hw_lock_val = (REG_RD(bp, hw_lock_reg));
9988 if (hw_lock_val) {
9989 if (hw_lock_val & HW_LOCK_RESOURCE_NVRAM) {
9990 BNX2X_DEV_INFO("Release Previously held NVRAM lock\n");
9991 REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
9992 (MCPR_NVM_SW_ARB_ARB_REQ_CLR1 << BP_PORT(bp)));
9993 }
9994
9995 BNX2X_DEV_INFO("Release Previously held hw lock\n");
9996 REG_WR(bp, hw_lock_reg, 0xffffffff);
9997 } else
9998 BNX2X_DEV_INFO("No need to release hw/nvram locks\n");
9999
10000 if (MCPR_ACCESS_LOCK_LOCK & REG_RD(bp, MCP_REG_MCPR_ACCESS_LOCK)) {
10001 BNX2X_DEV_INFO("Release previously held alr\n");
10002 REG_WR(bp, MCP_REG_MCPR_ACCESS_LOCK, 0);
10003 }
10004
452427b0
YM
10005 do {
10006 /* Lock MCP using an unload request */
10007 fw = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS, 0);
10008 if (!fw) {
10009 BNX2X_ERR("MCP response failure, aborting\n");
10010 rc = -EBUSY;
10011 break;
10012 }
10013
10014 if (fw == FW_MSG_CODE_DRV_UNLOAD_COMMON) {
10015 rc = bnx2x_prev_unload_common(bp);
10016 break;
10017 }
10018
10019 /* non-common reply from MCP night require looping */
10020 rc = bnx2x_prev_unload_uncommon(bp);
10021 if (rc != BNX2X_PREV_WAIT_NEEDED)
10022 break;
10023
10024 msleep(20);
10025 } while (--time_counter);
10026
10027 if (!time_counter || rc) {
10028 BNX2X_ERR("Failed unloading previous driver, aborting\n");
10029 rc = -EBUSY;
10030 }
10031
c63da990
BW
10032 /* Mark function if its port was used to boot from SAN */
10033 prev_list = bnx2x_prev_path_get_entry(bp);
10034 if (prev_list && (prev_list->undi & (1 << BP_PORT(bp))))
10035 bp->link_params.feature_config_flags |=
10036 FEATURE_CONFIG_BOOT_FROM_SAN;
10037
452427b0
YM
10038 BNX2X_DEV_INFO("Finished Previous Unload Flow [%d]\n", rc);
10039
10040 return rc;
34f80b04
EG
10041}
10042
0329aba1 10043static void bnx2x_get_common_hwinfo(struct bnx2x *bp)
34f80b04 10044{
1d187b34 10045 u32 val, val2, val3, val4, id, boot_mode;
72ce58c3 10046 u16 pmc;
34f80b04
EG
10047
10048 /* Get the chip revision id and number. */
10049 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
10050 val = REG_RD(bp, MISC_REG_CHIP_NUM);
10051 id = ((val & 0xffff) << 16);
10052 val = REG_RD(bp, MISC_REG_CHIP_REV);
10053 id |= ((val & 0xf) << 12);
f22fdf25
YM
10054
10055 /* Metal is read from PCI regs, but we can't access >=0x400 from
10056 * the configuration space (so we need to reg_rd)
10057 */
10058 val = REG_RD(bp, PCICFG_OFFSET + PCI_ID_VAL3);
10059 id |= (((val >> 24) & 0xf) << 4);
5a40e08e 10060 val = REG_RD(bp, MISC_REG_BOND_ID);
34f80b04
EG
10061 id |= (val & 0xf);
10062 bp->common.chip_id = id;
523224a3 10063
7e8e02df
BW
10064 /* force 57811 according to MISC register */
10065 if (REG_RD(bp, MISC_REG_CHIP_TYPE) & MISC_REG_CHIP_TYPE_57811_MASK) {
10066 if (CHIP_IS_57810(bp))
10067 bp->common.chip_id = (CHIP_NUM_57811 << 16) |
10068 (bp->common.chip_id & 0x0000FFFF);
10069 else if (CHIP_IS_57810_MF(bp))
10070 bp->common.chip_id = (CHIP_NUM_57811_MF << 16) |
10071 (bp->common.chip_id & 0x0000FFFF);
10072 bp->common.chip_id |= 0x1;
10073 }
10074
523224a3
DK
10075 /* Set doorbell size */
10076 bp->db_size = (1 << BNX2X_DB_SHIFT);
10077
619c5cb6 10078 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
10079 val = REG_RD(bp, MISC_REG_PORT4MODE_EN_OVWR);
10080 if ((val & 1) == 0)
10081 val = REG_RD(bp, MISC_REG_PORT4MODE_EN);
10082 else
10083 val = (val >> 1) & 1;
10084 BNX2X_DEV_INFO("chip is in %s\n", val ? "4_PORT_MODE" :
10085 "2_PORT_MODE");
10086 bp->common.chip_port_mode = val ? CHIP_4_PORT_MODE :
10087 CHIP_2_PORT_MODE;
10088
10089 if (CHIP_MODE_IS_4_PORT(bp))
10090 bp->pfid = (bp->pf_num >> 1); /* 0..3 */
10091 else
10092 bp->pfid = (bp->pf_num & 0x6); /* 0, 2, 4, 6 */
10093 } else {
10094 bp->common.chip_port_mode = CHIP_PORT_MODE_NONE; /* N/A */
10095 bp->pfid = bp->pf_num; /* 0..7 */
10096 }
10097
51c1a580
MS
10098 BNX2X_DEV_INFO("pf_id: %x", bp->pfid);
10099
f2e0899f
DK
10100 bp->link_params.chip_id = bp->common.chip_id;
10101 BNX2X_DEV_INFO("chip ID is 0x%x\n", id);
523224a3 10102
1c06328c
EG
10103 val = (REG_RD(bp, 0x2874) & 0x55);
10104 if ((bp->common.chip_id & 0x1) ||
10105 (CHIP_IS_E1(bp) && val) || (CHIP_IS_E1H(bp) && (val == 0x55))) {
10106 bp->flags |= ONE_PORT_FLAG;
10107 BNX2X_DEV_INFO("single port device\n");
10108 }
10109
34f80b04 10110 val = REG_RD(bp, MCP_REG_MCPR_NVM_CFG4);
754a2f52 10111 bp->common.flash_size = (BNX2X_NVRAM_1MB_SIZE <<
34f80b04
EG
10112 (val & MCPR_NVM_CFG4_FLASH_SIZE));
10113 BNX2X_DEV_INFO("flash_size 0x%x (%d)\n",
10114 bp->common.flash_size, bp->common.flash_size);
10115
1b6e2ceb
DK
10116 bnx2x_init_shmem(bp);
10117
619c5cb6
VZ
10118
10119
f2e0899f
DK
10120 bp->common.shmem2_base = REG_RD(bp, (BP_PATH(bp) ?
10121 MISC_REG_GENERIC_CR_1 :
10122 MISC_REG_GENERIC_CR_0));
1b6e2ceb 10123
34f80b04 10124 bp->link_params.shmem_base = bp->common.shmem_base;
a22f0788 10125 bp->link_params.shmem2_base = bp->common.shmem2_base;
b884d95b
YR
10126 if (SHMEM2_RD(bp, size) >
10127 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
10128 bp->link_params.lfa_base =
10129 REG_RD(bp, bp->common.shmem2_base +
10130 (u32)offsetof(struct shmem2_region,
10131 lfa_host_addr[BP_PORT(bp)]));
10132 else
10133 bp->link_params.lfa_base = 0;
2691d51d
EG
10134 BNX2X_DEV_INFO("shmem offset 0x%x shmem2 offset 0x%x\n",
10135 bp->common.shmem_base, bp->common.shmem2_base);
34f80b04 10136
f2e0899f 10137 if (!bp->common.shmem_base) {
34f80b04
EG
10138 BNX2X_DEV_INFO("MCP not active\n");
10139 bp->flags |= NO_MCP_FLAG;
10140 return;
10141 }
10142
34f80b04 10143 bp->common.hw_config = SHMEM_RD(bp, dev_info.shared_hw_config.config);
35b19ba5 10144 BNX2X_DEV_INFO("hw_config 0x%08x\n", bp->common.hw_config);
34f80b04
EG
10145
10146 bp->link_params.hw_led_mode = ((bp->common.hw_config &
10147 SHARED_HW_CFG_LED_MODE_MASK) >>
10148 SHARED_HW_CFG_LED_MODE_SHIFT);
10149
c2c8b03e
EG
10150 bp->link_params.feature_config_flags = 0;
10151 val = SHMEM_RD(bp, dev_info.shared_feature_config.config);
10152 if (val & SHARED_FEAT_CFG_OVERRIDE_PREEMPHASIS_CFG_ENABLED)
10153 bp->link_params.feature_config_flags |=
10154 FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10155 else
10156 bp->link_params.feature_config_flags &=
10157 ~FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10158
34f80b04
EG
10159 val = SHMEM_RD(bp, dev_info.bc_rev) >> 8;
10160 bp->common.bc_ver = val;
10161 BNX2X_DEV_INFO("bc_ver %X\n", val);
10162 if (val < BNX2X_BC_VER) {
10163 /* for now only warn
10164 * later we might need to enforce this */
51c1a580
MS
10165 BNX2X_ERR("This driver needs bc_ver %X but found %X, please upgrade BC\n",
10166 BNX2X_BC_VER, val);
34f80b04 10167 }
4d295db0 10168 bp->link_params.feature_config_flags |=
a22f0788 10169 (val >= REQ_BC_VER_4_VRFY_FIRST_PHY_OPT_MDL) ?
f85582f8
DK
10170 FEATURE_CONFIG_BC_SUPPORTS_OPT_MDL_VRFY : 0;
10171
a22f0788
YR
10172 bp->link_params.feature_config_flags |=
10173 (val >= REQ_BC_VER_4_VRFY_SPECIFIC_PHY_OPT_MDL) ?
10174 FEATURE_CONFIG_BC_SUPPORTS_DUAL_PHY_OPT_MDL_VRFY : 0;
a3348722
BW
10175 bp->link_params.feature_config_flags |=
10176 (val >= REQ_BC_VER_4_VRFY_AFEX_SUPPORTED) ?
10177 FEATURE_CONFIG_BC_SUPPORTS_AFEX : 0;
85242eea
YR
10178 bp->link_params.feature_config_flags |=
10179 (val >= REQ_BC_VER_4_SFP_TX_DISABLE_SUPPORTED) ?
10180 FEATURE_CONFIG_BC_SUPPORTS_SFP_TX_DISABLED : 0;
55386fe8
YR
10181
10182 bp->link_params.feature_config_flags |=
10183 (val >= REQ_BC_VER_4_MT_SUPPORTED) ?
10184 FEATURE_CONFIG_MT_SUPPORT : 0;
10185
0e898dd7
BW
10186 bp->flags |= (val >= REQ_BC_VER_4_PFC_STATS_SUPPORTED) ?
10187 BC_SUPPORTS_PFC_STATS : 0;
85242eea 10188
2e499d3c
BW
10189 bp->flags |= (val >= REQ_BC_VER_4_FCOE_FEATURES) ?
10190 BC_SUPPORTS_FCOE_FEATURES : 0;
10191
9876879f
BW
10192 bp->flags |= (val >= REQ_BC_VER_4_DCBX_ADMIN_MSG_NON_PMF) ?
10193 BC_SUPPORTS_DCBX_MSG_NON_PMF : 0;
1d187b34
BW
10194 boot_mode = SHMEM_RD(bp,
10195 dev_info.port_feature_config[BP_PORT(bp)].mba_config) &
10196 PORT_FEATURE_MBA_BOOT_AGENT_TYPE_MASK;
10197 switch (boot_mode) {
10198 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_PXE:
10199 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_PXE;
10200 break;
10201 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_ISCSIB:
10202 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_ISCSI;
10203 break;
10204 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_FCOE_BOOT:
10205 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_FCOE;
10206 break;
10207 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_NONE:
10208 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_NONE;
10209 break;
10210 }
10211
f9a3ebbe
DK
10212 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_PMC, &pmc);
10213 bp->flags |= (pmc & PCI_PM_CAP_PME_D3cold) ? 0 : NO_WOL_FLAG;
10214
72ce58c3 10215 BNX2X_DEV_INFO("%sWoL capable\n",
f5372251 10216 (bp->flags & NO_WOL_FLAG) ? "not " : "");
34f80b04
EG
10217
10218 val = SHMEM_RD(bp, dev_info.shared_hw_config.part_num);
10219 val2 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[4]);
10220 val3 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[8]);
10221 val4 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[12]);
10222
cdaa7cb8
VZ
10223 dev_info(&bp->pdev->dev, "part number %X-%X-%X-%X\n",
10224 val, val2, val3, val4);
34f80b04
EG
10225}
10226
f2e0899f
DK
10227#define IGU_FID(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_FID)
10228#define IGU_VEC(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_VECTOR)
10229
0329aba1 10230static int bnx2x_get_igu_cam_info(struct bnx2x *bp)
f2e0899f
DK
10231{
10232 int pfid = BP_FUNC(bp);
f2e0899f
DK
10233 int igu_sb_id;
10234 u32 val;
6383c0b3 10235 u8 fid, igu_sb_cnt = 0;
f2e0899f
DK
10236
10237 bp->igu_base_sb = 0xff;
f2e0899f 10238 if (CHIP_INT_MODE_IS_BC(bp)) {
3395a033 10239 int vn = BP_VN(bp);
6383c0b3 10240 igu_sb_cnt = bp->igu_sb_cnt;
f2e0899f
DK
10241 bp->igu_base_sb = (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn) *
10242 FP_SB_MAX_E1x;
10243
10244 bp->igu_dsb_id = E1HVN_MAX * FP_SB_MAX_E1x +
10245 (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn);
10246
9b341bb1 10247 return 0;
f2e0899f
DK
10248 }
10249
10250 /* IGU in normal mode - read CAM */
10251 for (igu_sb_id = 0; igu_sb_id < IGU_REG_MAPPING_MEMORY_SIZE;
10252 igu_sb_id++) {
10253 val = REG_RD(bp, IGU_REG_MAPPING_MEMORY + igu_sb_id * 4);
10254 if (!(val & IGU_REG_MAPPING_MEMORY_VALID))
10255 continue;
10256 fid = IGU_FID(val);
10257 if ((fid & IGU_FID_ENCODE_IS_PF)) {
10258 if ((fid & IGU_FID_PF_NUM_MASK) != pfid)
10259 continue;
10260 if (IGU_VEC(val) == 0)
10261 /* default status block */
10262 bp->igu_dsb_id = igu_sb_id;
10263 else {
10264 if (bp->igu_base_sb == 0xff)
10265 bp->igu_base_sb = igu_sb_id;
6383c0b3 10266 igu_sb_cnt++;
f2e0899f
DK
10267 }
10268 }
10269 }
619c5cb6 10270
6383c0b3 10271#ifdef CONFIG_PCI_MSI
185d4c8b
AE
10272 /* Due to new PF resource allocation by MFW T7.4 and above, it's
10273 * optional that number of CAM entries will not be equal to the value
10274 * advertised in PCI.
10275 * Driver should use the minimal value of both as the actual status
10276 * block count
619c5cb6 10277 */
185d4c8b 10278 bp->igu_sb_cnt = min_t(int, bp->igu_sb_cnt, igu_sb_cnt);
6383c0b3 10279#endif
619c5cb6 10280
9b341bb1 10281 if (igu_sb_cnt == 0) {
f2e0899f 10282 BNX2X_ERR("CAM configuration error\n");
9b341bb1
BW
10283 return -EINVAL;
10284 }
10285
10286 return 0;
f2e0899f
DK
10287}
10288
1dd06ae8 10289static void bnx2x_link_settings_supported(struct bnx2x *bp, u32 switch_cfg)
a2fbb9ea 10290{
a22f0788
YR
10291 int cfg_size = 0, idx, port = BP_PORT(bp);
10292
10293 /* Aggregation of supported attributes of all external phys */
10294 bp->port.supported[0] = 0;
10295 bp->port.supported[1] = 0;
b7737c9b
YR
10296 switch (bp->link_params.num_phys) {
10297 case 1:
a22f0788
YR
10298 bp->port.supported[0] = bp->link_params.phy[INT_PHY].supported;
10299 cfg_size = 1;
10300 break;
b7737c9b 10301 case 2:
a22f0788
YR
10302 bp->port.supported[0] = bp->link_params.phy[EXT_PHY1].supported;
10303 cfg_size = 1;
10304 break;
10305 case 3:
10306 if (bp->link_params.multi_phy_config &
10307 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
10308 bp->port.supported[1] =
10309 bp->link_params.phy[EXT_PHY1].supported;
10310 bp->port.supported[0] =
10311 bp->link_params.phy[EXT_PHY2].supported;
10312 } else {
10313 bp->port.supported[0] =
10314 bp->link_params.phy[EXT_PHY1].supported;
10315 bp->port.supported[1] =
10316 bp->link_params.phy[EXT_PHY2].supported;
10317 }
10318 cfg_size = 2;
10319 break;
b7737c9b 10320 }
a2fbb9ea 10321
a22f0788 10322 if (!(bp->port.supported[0] || bp->port.supported[1])) {
51c1a580 10323 BNX2X_ERR("NVRAM config error. BAD phy config. PHY1 config 0x%x, PHY2 config 0x%x\n",
b7737c9b 10324 SHMEM_RD(bp,
a22f0788
YR
10325 dev_info.port_hw_config[port].external_phy_config),
10326 SHMEM_RD(bp,
10327 dev_info.port_hw_config[port].external_phy_config2));
a2fbb9ea 10328 return;
f85582f8 10329 }
a2fbb9ea 10330
619c5cb6
VZ
10331 if (CHIP_IS_E3(bp))
10332 bp->port.phy_addr = REG_RD(bp, MISC_REG_WC0_CTRL_PHY_ADDR);
10333 else {
10334 switch (switch_cfg) {
10335 case SWITCH_CFG_1G:
10336 bp->port.phy_addr = REG_RD(
10337 bp, NIG_REG_SERDES0_CTRL_PHY_ADDR + port*0x10);
10338 break;
10339 case SWITCH_CFG_10G:
10340 bp->port.phy_addr = REG_RD(
10341 bp, NIG_REG_XGXS0_CTRL_PHY_ADDR + port*0x18);
10342 break;
10343 default:
10344 BNX2X_ERR("BAD switch_cfg link_config 0x%x\n",
10345 bp->port.link_config[0]);
10346 return;
10347 }
a2fbb9ea 10348 }
619c5cb6 10349 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp->port.phy_addr);
a22f0788
YR
10350 /* mask what we support according to speed_cap_mask per configuration */
10351 for (idx = 0; idx < cfg_size; idx++) {
10352 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10353 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF))
a22f0788 10354 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Half;
a2fbb9ea 10355
a22f0788 10356 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10357 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL))
a22f0788 10358 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Full;
a2fbb9ea 10359
a22f0788 10360 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10361 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF))
a22f0788 10362 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Half;
a2fbb9ea 10363
a22f0788 10364 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10365 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL))
a22f0788 10366 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Full;
a2fbb9ea 10367
a22f0788 10368 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10369 PORT_HW_CFG_SPEED_CAPABILITY_D0_1G))
a22f0788 10370 bp->port.supported[idx] &= ~(SUPPORTED_1000baseT_Half |
f85582f8 10371 SUPPORTED_1000baseT_Full);
a2fbb9ea 10372
a22f0788 10373 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10374 PORT_HW_CFG_SPEED_CAPABILITY_D0_2_5G))
a22f0788 10375 bp->port.supported[idx] &= ~SUPPORTED_2500baseX_Full;
a2fbb9ea 10376
a22f0788 10377 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 10378 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G))
a22f0788
YR
10379 bp->port.supported[idx] &= ~SUPPORTED_10000baseT_Full;
10380
10381 }
a2fbb9ea 10382
a22f0788
YR
10383 BNX2X_DEV_INFO("supported 0x%x 0x%x\n", bp->port.supported[0],
10384 bp->port.supported[1]);
a2fbb9ea
ET
10385}
10386
0329aba1 10387static void bnx2x_link_settings_requested(struct bnx2x *bp)
a2fbb9ea 10388{
a22f0788
YR
10389 u32 link_config, idx, cfg_size = 0;
10390 bp->port.advertising[0] = 0;
10391 bp->port.advertising[1] = 0;
10392 switch (bp->link_params.num_phys) {
10393 case 1:
10394 case 2:
10395 cfg_size = 1;
10396 break;
10397 case 3:
10398 cfg_size = 2;
10399 break;
10400 }
10401 for (idx = 0; idx < cfg_size; idx++) {
10402 bp->link_params.req_duplex[idx] = DUPLEX_FULL;
10403 link_config = bp->port.link_config[idx];
10404 switch (link_config & PORT_FEATURE_LINK_SPEED_MASK) {
f85582f8 10405 case PORT_FEATURE_LINK_SPEED_AUTO:
a22f0788
YR
10406 if (bp->port.supported[idx] & SUPPORTED_Autoneg) {
10407 bp->link_params.req_line_speed[idx] =
10408 SPEED_AUTO_NEG;
10409 bp->port.advertising[idx] |=
10410 bp->port.supported[idx];
10bd1f24
MY
10411 if (bp->link_params.phy[EXT_PHY1].type ==
10412 PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM84833)
10413 bp->port.advertising[idx] |=
10414 (SUPPORTED_100baseT_Half |
10415 SUPPORTED_100baseT_Full);
f85582f8
DK
10416 } else {
10417 /* force 10G, no AN */
a22f0788
YR
10418 bp->link_params.req_line_speed[idx] =
10419 SPEED_10000;
10420 bp->port.advertising[idx] |=
10421 (ADVERTISED_10000baseT_Full |
f85582f8 10422 ADVERTISED_FIBRE);
a22f0788 10423 continue;
f85582f8
DK
10424 }
10425 break;
a2fbb9ea 10426
f85582f8 10427 case PORT_FEATURE_LINK_SPEED_10M_FULL:
a22f0788
YR
10428 if (bp->port.supported[idx] & SUPPORTED_10baseT_Full) {
10429 bp->link_params.req_line_speed[idx] =
10430 SPEED_10;
10431 bp->port.advertising[idx] |=
10432 (ADVERTISED_10baseT_Full |
f85582f8
DK
10433 ADVERTISED_TP);
10434 } else {
51c1a580 10435 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8 10436 link_config,
a22f0788 10437 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10438 return;
10439 }
10440 break;
a2fbb9ea 10441
f85582f8 10442 case PORT_FEATURE_LINK_SPEED_10M_HALF:
a22f0788
YR
10443 if (bp->port.supported[idx] & SUPPORTED_10baseT_Half) {
10444 bp->link_params.req_line_speed[idx] =
10445 SPEED_10;
10446 bp->link_params.req_duplex[idx] =
10447 DUPLEX_HALF;
10448 bp->port.advertising[idx] |=
10449 (ADVERTISED_10baseT_Half |
f85582f8
DK
10450 ADVERTISED_TP);
10451 } else {
51c1a580 10452 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10453 link_config,
10454 bp->link_params.speed_cap_mask[idx]);
10455 return;
10456 }
10457 break;
a2fbb9ea 10458
f85582f8
DK
10459 case PORT_FEATURE_LINK_SPEED_100M_FULL:
10460 if (bp->port.supported[idx] &
10461 SUPPORTED_100baseT_Full) {
a22f0788
YR
10462 bp->link_params.req_line_speed[idx] =
10463 SPEED_100;
10464 bp->port.advertising[idx] |=
10465 (ADVERTISED_100baseT_Full |
f85582f8
DK
10466 ADVERTISED_TP);
10467 } else {
51c1a580 10468 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
10469 link_config,
10470 bp->link_params.speed_cap_mask[idx]);
10471 return;
10472 }
10473 break;
a2fbb9ea 10474
f85582f8
DK
10475 case PORT_FEATURE_LINK_SPEED_100M_HALF:
10476 if (bp->port.supported[idx] &
10477 SUPPORTED_100baseT_Half) {
10478 bp->link_params.req_line_speed[idx] =
10479 SPEED_100;
10480 bp->link_params.req_duplex[idx] =
10481 DUPLEX_HALF;
a22f0788
YR
10482 bp->port.advertising[idx] |=
10483 (ADVERTISED_100baseT_Half |
f85582f8
DK
10484 ADVERTISED_TP);
10485 } else {
51c1a580 10486 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10487 link_config,
10488 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10489 return;
10490 }
10491 break;
a2fbb9ea 10492
f85582f8 10493 case PORT_FEATURE_LINK_SPEED_1G:
a22f0788
YR
10494 if (bp->port.supported[idx] &
10495 SUPPORTED_1000baseT_Full) {
10496 bp->link_params.req_line_speed[idx] =
10497 SPEED_1000;
10498 bp->port.advertising[idx] |=
10499 (ADVERTISED_1000baseT_Full |
f85582f8
DK
10500 ADVERTISED_TP);
10501 } else {
51c1a580 10502 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
10503 link_config,
10504 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
10505 return;
10506 }
10507 break;
a2fbb9ea 10508
f85582f8 10509 case PORT_FEATURE_LINK_SPEED_2_5G:
a22f0788
YR
10510 if (bp->port.supported[idx] &
10511 SUPPORTED_2500baseX_Full) {
10512 bp->link_params.req_line_speed[idx] =
10513 SPEED_2500;
10514 bp->port.advertising[idx] |=
10515 (ADVERTISED_2500baseX_Full |
34f80b04 10516 ADVERTISED_TP);
f85582f8 10517 } else {
51c1a580 10518 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10519 link_config,
f85582f8
DK
10520 bp->link_params.speed_cap_mask[idx]);
10521 return;
10522 }
10523 break;
a2fbb9ea 10524
f85582f8 10525 case PORT_FEATURE_LINK_SPEED_10G_CX4:
a22f0788
YR
10526 if (bp->port.supported[idx] &
10527 SUPPORTED_10000baseT_Full) {
10528 bp->link_params.req_line_speed[idx] =
10529 SPEED_10000;
10530 bp->port.advertising[idx] |=
10531 (ADVERTISED_10000baseT_Full |
34f80b04 10532 ADVERTISED_FIBRE);
f85582f8 10533 } else {
51c1a580 10534 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 10535 link_config,
f85582f8
DK
10536 bp->link_params.speed_cap_mask[idx]);
10537 return;
10538 }
10539 break;
3c9ada22
YR
10540 case PORT_FEATURE_LINK_SPEED_20G:
10541 bp->link_params.req_line_speed[idx] = SPEED_20000;
a2fbb9ea 10542
3c9ada22 10543 break;
f85582f8 10544 default:
51c1a580 10545 BNX2X_ERR("NVRAM config error. BAD link speed link_config 0x%x\n",
754a2f52 10546 link_config);
f85582f8
DK
10547 bp->link_params.req_line_speed[idx] =
10548 SPEED_AUTO_NEG;
10549 bp->port.advertising[idx] =
10550 bp->port.supported[idx];
10551 break;
10552 }
a2fbb9ea 10553
a22f0788 10554 bp->link_params.req_flow_ctrl[idx] = (link_config &
34f80b04 10555 PORT_FEATURE_FLOW_CONTROL_MASK);
cd1dfce2
YM
10556 if (bp->link_params.req_flow_ctrl[idx] ==
10557 BNX2X_FLOW_CTRL_AUTO) {
10558 if (!(bp->port.supported[idx] & SUPPORTED_Autoneg))
10559 bp->link_params.req_flow_ctrl[idx] =
10560 BNX2X_FLOW_CTRL_NONE;
10561 else
10562 bnx2x_set_requested_fc(bp);
a22f0788 10563 }
a2fbb9ea 10564
51c1a580 10565 BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x advertising 0x%x\n",
a22f0788
YR
10566 bp->link_params.req_line_speed[idx],
10567 bp->link_params.req_duplex[idx],
10568 bp->link_params.req_flow_ctrl[idx],
10569 bp->port.advertising[idx]);
10570 }
a2fbb9ea
ET
10571}
10572
0329aba1 10573static void bnx2x_set_mac_buf(u8 *mac_buf, u32 mac_lo, u16 mac_hi)
e665bfda 10574{
86564c3f
YM
10575 __be16 mac_hi_be = cpu_to_be16(mac_hi);
10576 __be32 mac_lo_be = cpu_to_be32(mac_lo);
10577 memcpy(mac_buf, &mac_hi_be, sizeof(mac_hi_be));
10578 memcpy(mac_buf + sizeof(mac_hi_be), &mac_lo_be, sizeof(mac_lo_be));
e665bfda
MC
10579}
10580
0329aba1 10581static void bnx2x_get_port_hwinfo(struct bnx2x *bp)
a2fbb9ea 10582{
34f80b04 10583 int port = BP_PORT(bp);
589abe3a 10584 u32 config;
c8c60d88 10585 u32 ext_phy_type, ext_phy_config, eee_mode;
a2fbb9ea 10586
c18487ee 10587 bp->link_params.bp = bp;
34f80b04 10588 bp->link_params.port = port;
c18487ee 10589
c18487ee 10590 bp->link_params.lane_config =
a2fbb9ea 10591 SHMEM_RD(bp, dev_info.port_hw_config[port].lane_config);
4d295db0 10592
a22f0788 10593 bp->link_params.speed_cap_mask[0] =
a2fbb9ea
ET
10594 SHMEM_RD(bp,
10595 dev_info.port_hw_config[port].speed_capability_mask);
a22f0788
YR
10596 bp->link_params.speed_cap_mask[1] =
10597 SHMEM_RD(bp,
10598 dev_info.port_hw_config[port].speed_capability_mask2);
10599 bp->port.link_config[0] =
a2fbb9ea
ET
10600 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config);
10601
a22f0788
YR
10602 bp->port.link_config[1] =
10603 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config2);
c2c8b03e 10604
a22f0788
YR
10605 bp->link_params.multi_phy_config =
10606 SHMEM_RD(bp, dev_info.port_hw_config[port].multi_phy_config);
3ce2c3f9
EG
10607 /* If the device is capable of WoL, set the default state according
10608 * to the HW
10609 */
4d295db0 10610 config = SHMEM_RD(bp, dev_info.port_feature_config[port].config);
3ce2c3f9
EG
10611 bp->wol = (!(bp->flags & NO_WOL_FLAG) &&
10612 (config & PORT_FEATURE_WOL_ENABLED));
10613
4ba7699b
YM
10614 if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) ==
10615 PORT_FEAT_CFG_STORAGE_PERSONALITY_FCOE && !IS_MF(bp))
10616 bp->flags |= NO_ISCSI_FLAG;
10617 if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) ==
10618 PORT_FEAT_CFG_STORAGE_PERSONALITY_ISCSI && !(IS_MF(bp)))
10619 bp->flags |= NO_FCOE_FLAG;
10620
51c1a580 10621 BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n",
c18487ee 10622 bp->link_params.lane_config,
a22f0788
YR
10623 bp->link_params.speed_cap_mask[0],
10624 bp->port.link_config[0]);
a2fbb9ea 10625
a22f0788 10626 bp->link_params.switch_cfg = (bp->port.link_config[0] &
f85582f8 10627 PORT_FEATURE_CONNECTED_SWITCH_MASK);
b7737c9b 10628 bnx2x_phy_probe(&bp->link_params);
c18487ee 10629 bnx2x_link_settings_supported(bp, bp->link_params.switch_cfg);
a2fbb9ea
ET
10630
10631 bnx2x_link_settings_requested(bp);
10632
01cd4528
EG
10633 /*
10634 * If connected directly, work with the internal PHY, otherwise, work
10635 * with the external PHY
10636 */
b7737c9b
YR
10637 ext_phy_config =
10638 SHMEM_RD(bp,
10639 dev_info.port_hw_config[port].external_phy_config);
10640 ext_phy_type = XGXS_EXT_PHY_TYPE(ext_phy_config);
01cd4528 10641 if (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_DIRECT)
b7737c9b 10642 bp->mdio.prtad = bp->port.phy_addr;
01cd4528
EG
10643
10644 else if ((ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE) &&
10645 (ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN))
10646 bp->mdio.prtad =
b7737c9b 10647 XGXS_EXT_PHY_ADDR(ext_phy_config);
5866df6d 10648
c8c60d88
YM
10649 /* Configure link feature according to nvram value */
10650 eee_mode = (((SHMEM_RD(bp, dev_info.
10651 port_feature_config[port].eee_power_mode)) &
10652 PORT_FEAT_CFG_EEE_POWER_MODE_MASK) >>
10653 PORT_FEAT_CFG_EEE_POWER_MODE_SHIFT);
10654 if (eee_mode != PORT_FEAT_CFG_EEE_POWER_MODE_DISABLED) {
10655 bp->link_params.eee_mode = EEE_MODE_ADV_LPI |
10656 EEE_MODE_ENABLE_LPI |
10657 EEE_MODE_OUTPUT_TIME;
10658 } else {
10659 bp->link_params.eee_mode = 0;
10660 }
0793f83f 10661}
01cd4528 10662
b306f5ed 10663void bnx2x_get_iscsi_info(struct bnx2x *bp)
2ba45142 10664{
9e62e912 10665 u32 no_flags = NO_ISCSI_FLAG;
bf61ee14 10666 int port = BP_PORT(bp);
2ba45142 10667 u32 max_iscsi_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
bf61ee14 10668 drv_lic_key[port].max_iscsi_conn);
2ba45142 10669
55c11941
MS
10670 if (!CNIC_SUPPORT(bp)) {
10671 bp->flags |= no_flags;
10672 return;
10673 }
10674
b306f5ed 10675 /* Get the number of maximum allowed iSCSI connections */
2ba45142
VZ
10676 bp->cnic_eth_dev.max_iscsi_conn =
10677 (max_iscsi_conn & BNX2X_MAX_ISCSI_INIT_CONN_MASK) >>
10678 BNX2X_MAX_ISCSI_INIT_CONN_SHIFT;
10679
b306f5ed
DK
10680 BNX2X_DEV_INFO("max_iscsi_conn 0x%x\n",
10681 bp->cnic_eth_dev.max_iscsi_conn);
10682
10683 /*
10684 * If maximum allowed number of connections is zero -
10685 * disable the feature.
10686 */
10687 if (!bp->cnic_eth_dev.max_iscsi_conn)
9e62e912 10688 bp->flags |= no_flags;
55c11941 10689
b306f5ed
DK
10690}
10691
0329aba1 10692static void bnx2x_get_ext_wwn_info(struct bnx2x *bp, int func)
9e62e912
DK
10693{
10694 /* Port info */
10695 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10696 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_upper);
10697 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10698 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_lower);
10699
10700 /* Node info */
10701 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10702 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_upper);
10703 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10704 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_lower);
10705}
0329aba1 10706static void bnx2x_get_fcoe_info(struct bnx2x *bp)
b306f5ed
DK
10707{
10708 int port = BP_PORT(bp);
10709 int func = BP_ABS_FUNC(bp);
b306f5ed
DK
10710 u32 max_fcoe_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
10711 drv_lic_key[port].max_fcoe_conn);
10712
55c11941
MS
10713 if (!CNIC_SUPPORT(bp)) {
10714 bp->flags |= NO_FCOE_FLAG;
10715 return;
10716 }
10717
b306f5ed 10718 /* Get the number of maximum allowed FCoE connections */
2ba45142
VZ
10719 bp->cnic_eth_dev.max_fcoe_conn =
10720 (max_fcoe_conn & BNX2X_MAX_FCOE_INIT_CONN_MASK) >>
10721 BNX2X_MAX_FCOE_INIT_CONN_SHIFT;
10722
bf61ee14
VZ
10723 /* Read the WWN: */
10724 if (!IS_MF(bp)) {
10725 /* Port info */
10726 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
10727 SHMEM_RD(bp,
2de67439 10728 dev_info.port_hw_config[port].
bf61ee14
VZ
10729 fcoe_wwn_port_name_upper);
10730 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
10731 SHMEM_RD(bp,
2de67439 10732 dev_info.port_hw_config[port].
bf61ee14
VZ
10733 fcoe_wwn_port_name_lower);
10734
10735 /* Node info */
10736 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
10737 SHMEM_RD(bp,
2de67439 10738 dev_info.port_hw_config[port].
bf61ee14
VZ
10739 fcoe_wwn_node_name_upper);
10740 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
10741 SHMEM_RD(bp,
2de67439 10742 dev_info.port_hw_config[port].
bf61ee14
VZ
10743 fcoe_wwn_node_name_lower);
10744 } else if (!IS_MF_SD(bp)) {
bf61ee14
VZ
10745 /*
10746 * Read the WWN info only if the FCoE feature is enabled for
10747 * this function.
10748 */
7b5342d9 10749 if (BNX2X_MF_EXT_PROTOCOL_FCOE(bp) && !CHIP_IS_E1x(bp))
9e62e912
DK
10750 bnx2x_get_ext_wwn_info(bp, func);
10751
382e513a 10752 } else if (IS_MF_FCOE_SD(bp) && !CHIP_IS_E1x(bp)) {
9e62e912 10753 bnx2x_get_ext_wwn_info(bp, func);
382e513a 10754 }
bf61ee14 10755
b306f5ed 10756 BNX2X_DEV_INFO("max_fcoe_conn 0x%x\n", bp->cnic_eth_dev.max_fcoe_conn);
2ba45142 10757
bf61ee14
VZ
10758 /*
10759 * If maximum allowed number of connections is zero -
2ba45142
VZ
10760 * disable the feature.
10761 */
2ba45142
VZ
10762 if (!bp->cnic_eth_dev.max_fcoe_conn)
10763 bp->flags |= NO_FCOE_FLAG;
10764}
b306f5ed 10765
0329aba1 10766static void bnx2x_get_cnic_info(struct bnx2x *bp)
b306f5ed
DK
10767{
10768 /*
10769 * iSCSI may be dynamically disabled but reading
10770 * info here we will decrease memory usage by driver
10771 * if the feature is disabled for good
10772 */
10773 bnx2x_get_iscsi_info(bp);
10774 bnx2x_get_fcoe_info(bp);
10775}
2ba45142 10776
0329aba1 10777static void bnx2x_get_cnic_mac_hwinfo(struct bnx2x *bp)
0793f83f
DK
10778{
10779 u32 val, val2;
10780 int func = BP_ABS_FUNC(bp);
10781 int port = BP_PORT(bp);
2ba45142
VZ
10782 u8 *iscsi_mac = bp->cnic_eth_dev.iscsi_mac;
10783 u8 *fip_mac = bp->fip_mac;
0793f83f 10784
55c11941
MS
10785 if (IS_MF(bp)) {
10786 /* iSCSI and FCoE NPAR MACs: if there is no either iSCSI or
2ba45142 10787 * FCoE MAC then the appropriate feature should be disabled.
55c11941
MS
10788 * In non SD mode features configuration comes from struct
10789 * func_ext_config.
2ba45142 10790 */
55c11941 10791 if (!IS_MF_SD(bp) && !CHIP_IS_E1x(bp)) {
0793f83f
DK
10792 u32 cfg = MF_CFG_RD(bp, func_ext_config[func].func_cfg);
10793 if (cfg & MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD) {
10794 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10795 iscsi_mac_addr_upper);
0793f83f 10796 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10797 iscsi_mac_addr_lower);
2ba45142 10798 bnx2x_set_mac_buf(iscsi_mac, val, val2);
55c11941
MS
10799 BNX2X_DEV_INFO
10800 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10801 } else {
2ba45142 10802 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
55c11941 10803 }
2ba45142
VZ
10804
10805 if (cfg & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD) {
10806 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10807 fcoe_mac_addr_upper);
2ba45142 10808 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 10809 fcoe_mac_addr_lower);
2ba45142 10810 bnx2x_set_mac_buf(fip_mac, val, val2);
55c11941
MS
10811 BNX2X_DEV_INFO
10812 ("Read FCoE L2 MAC: %pM\n", fip_mac);
10813 } else {
2ba45142 10814 bp->flags |= NO_FCOE_FLAG;
55c11941 10815 }
a3348722
BW
10816
10817 bp->mf_ext_config = cfg;
10818
9e62e912 10819 } else { /* SD MODE */
55c11941
MS
10820 if (BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp)) {
10821 /* use primary mac as iscsi mac */
10822 memcpy(iscsi_mac, bp->dev->dev_addr, ETH_ALEN);
10823
10824 BNX2X_DEV_INFO("SD ISCSI MODE\n");
10825 BNX2X_DEV_INFO
10826 ("Read iSCSI MAC: %pM\n", iscsi_mac);
10827 } else if (BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)) {
10828 /* use primary mac as fip mac */
10829 memcpy(fip_mac, bp->dev->dev_addr, ETH_ALEN);
10830 BNX2X_DEV_INFO("SD FCoE MODE\n");
10831 BNX2X_DEV_INFO
10832 ("Read FIP MAC: %pM\n", fip_mac);
614c76df 10833 }
0793f83f 10834 }
a3348722 10835
82594f8f
YM
10836 /* If this is a storage-only interface, use SAN mac as
10837 * primary MAC. Notice that for SD this is already the case,
10838 * as the SAN mac was copied from the primary MAC.
10839 */
10840 if (IS_MF_FCOE_AFEX(bp))
a3348722 10841 memcpy(bp->dev->dev_addr, fip_mac, ETH_ALEN);
0793f83f 10842 } else {
0793f83f 10843 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10844 iscsi_mac_upper);
0793f83f 10845 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10846 iscsi_mac_lower);
2ba45142 10847 bnx2x_set_mac_buf(iscsi_mac, val, val2);
c03bd39c
VZ
10848
10849 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10850 fcoe_fip_mac_upper);
c03bd39c 10851 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 10852 fcoe_fip_mac_lower);
c03bd39c 10853 bnx2x_set_mac_buf(fip_mac, val, val2);
0793f83f
DK
10854 }
10855
55c11941 10856 /* Disable iSCSI OOO if MAC configuration is invalid. */
426b9241 10857 if (!is_valid_ether_addr(iscsi_mac)) {
55c11941 10858 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
426b9241
DK
10859 memset(iscsi_mac, 0, ETH_ALEN);
10860 }
10861
55c11941 10862 /* Disable FCoE if MAC configuration is invalid. */
426b9241
DK
10863 if (!is_valid_ether_addr(fip_mac)) {
10864 bp->flags |= NO_FCOE_FLAG;
10865 memset(bp->fip_mac, 0, ETH_ALEN);
10866 }
55c11941
MS
10867}
10868
0329aba1 10869static void bnx2x_get_mac_hwinfo(struct bnx2x *bp)
55c11941
MS
10870{
10871 u32 val, val2;
10872 int func = BP_ABS_FUNC(bp);
10873 int port = BP_PORT(bp);
10874
10875 /* Zero primary MAC configuration */
10876 memset(bp->dev->dev_addr, 0, ETH_ALEN);
10877
10878 if (BP_NOMCP(bp)) {
10879 BNX2X_ERROR("warning: random MAC workaround active\n");
10880 eth_hw_addr_random(bp->dev);
10881 } else if (IS_MF(bp)) {
10882 val2 = MF_CFG_RD(bp, func_mf_config[func].mac_upper);
10883 val = MF_CFG_RD(bp, func_mf_config[func].mac_lower);
10884 if ((val2 != FUNC_MF_CFG_UPPERMAC_DEFAULT) &&
10885 (val != FUNC_MF_CFG_LOWERMAC_DEFAULT))
10886 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10887
10888 if (CNIC_SUPPORT(bp))
10889 bnx2x_get_cnic_mac_hwinfo(bp);
10890 } else {
10891 /* in SF read MACs from port configuration */
10892 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_upper);
10893 val = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_lower);
10894 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
10895
10896 if (CNIC_SUPPORT(bp))
10897 bnx2x_get_cnic_mac_hwinfo(bp);
10898 }
10899
10900 memcpy(bp->link_params.mac_addr, bp->dev->dev_addr, ETH_ALEN);
619c5cb6 10901
614c76df 10902 if (!bnx2x_is_valid_ether_addr(bp, bp->dev->dev_addr))
619c5cb6 10903 dev_err(&bp->pdev->dev,
51c1a580
MS
10904 "bad Ethernet MAC address configuration: %pM\n"
10905 "change it manually before bringing up the appropriate network interface\n",
0f9dad10 10906 bp->dev->dev_addr);
7964211d 10907}
51c1a580 10908
0329aba1 10909static bool bnx2x_get_dropless_info(struct bnx2x *bp)
7964211d
YM
10910{
10911 int tmp;
10912 u32 cfg;
51c1a580 10913
7964211d
YM
10914 if (IS_MF(bp) && !CHIP_IS_E1x(bp)) {
10915 /* Take function: tmp = func */
10916 tmp = BP_ABS_FUNC(bp);
10917 cfg = MF_CFG_RD(bp, func_ext_config[tmp].func_cfg);
10918 cfg = !!(cfg & MACP_FUNC_CFG_PAUSE_ON_HOST_RING);
10919 } else {
10920 /* Take port: tmp = port */
10921 tmp = BP_PORT(bp);
10922 cfg = SHMEM_RD(bp,
10923 dev_info.port_hw_config[tmp].generic_features);
10924 cfg = !!(cfg & PORT_HW_CFG_PAUSE_ON_HOST_RING_ENABLED);
10925 }
10926 return cfg;
34f80b04
EG
10927}
10928
0329aba1 10929static int bnx2x_get_hwinfo(struct bnx2x *bp)
34f80b04 10930{
0793f83f 10931 int /*abs*/func = BP_ABS_FUNC(bp);
b8ee8328 10932 int vn;
0793f83f 10933 u32 val = 0;
34f80b04 10934 int rc = 0;
a2fbb9ea 10935
34f80b04 10936 bnx2x_get_common_hwinfo(bp);
a2fbb9ea 10937
6383c0b3
AE
10938 /*
10939 * initialize IGU parameters
10940 */
f2e0899f
DK
10941 if (CHIP_IS_E1x(bp)) {
10942 bp->common.int_block = INT_BLOCK_HC;
10943
10944 bp->igu_dsb_id = DEF_SB_IGU_ID;
10945 bp->igu_base_sb = 0;
f2e0899f
DK
10946 } else {
10947 bp->common.int_block = INT_BLOCK_IGU;
7a06a122
DK
10948
10949 /* do not allow device reset during IGU info preocessing */
10950 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
10951
f2e0899f 10952 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
619c5cb6
VZ
10953
10954 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
10955 int tout = 5000;
10956
10957 BNX2X_DEV_INFO("FORCING Normal Mode\n");
10958
10959 val &= ~(IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN);
10960 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION, val);
10961 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x7f);
10962
10963 while (tout && REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10964 tout--;
0926d499 10965 usleep_range(1000, 2000);
619c5cb6
VZ
10966 }
10967
10968 if (REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
10969 dev_err(&bp->pdev->dev,
10970 "FORCING Normal Mode failed!!!\n");
9b341bb1
BW
10971 bnx2x_release_hw_lock(bp,
10972 HW_LOCK_RESOURCE_RESET);
619c5cb6
VZ
10973 return -EPERM;
10974 }
10975 }
10976
f2e0899f 10977 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
619c5cb6 10978 BNX2X_DEV_INFO("IGU Backward Compatible Mode\n");
f2e0899f
DK
10979 bp->common.int_block |= INT_BLOCK_MODE_BW_COMP;
10980 } else
619c5cb6 10981 BNX2X_DEV_INFO("IGU Normal Mode\n");
523224a3 10982
9b341bb1 10983 rc = bnx2x_get_igu_cam_info(bp);
7a06a122 10984 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
9b341bb1
BW
10985 if (rc)
10986 return rc;
f2e0899f 10987 }
619c5cb6
VZ
10988
10989 /*
10990 * set base FW non-default (fast path) status block id, this value is
10991 * used to initialize the fw_sb_id saved on the fp/queue structure to
10992 * determine the id used by the FW.
10993 */
10994 if (CHIP_IS_E1x(bp))
10995 bp->base_fw_ndsb = BP_PORT(bp) * FP_SB_MAX_E1x + BP_L_ID(bp);
10996 else /*
10997 * 57712 - we currently use one FW SB per IGU SB (Rx and Tx of
10998 * the same queue are indicated on the same IGU SB). So we prefer
10999 * FW and IGU SBs to be the same value.
11000 */
11001 bp->base_fw_ndsb = bp->igu_base_sb;
11002
11003 BNX2X_DEV_INFO("igu_dsb_id %d igu_base_sb %d igu_sb_cnt %d\n"
11004 "base_fw_ndsb %d\n", bp->igu_dsb_id, bp->igu_base_sb,
11005 bp->igu_sb_cnt, bp->base_fw_ndsb);
f2e0899f
DK
11006
11007 /*
11008 * Initialize MF configuration
11009 */
523224a3 11010
fb3bff17
DK
11011 bp->mf_ov = 0;
11012 bp->mf_mode = 0;
3395a033 11013 vn = BP_VN(bp);
0793f83f 11014
f2e0899f 11015 if (!CHIP_IS_E1(bp) && !BP_NOMCP(bp)) {
619c5cb6
VZ
11016 BNX2X_DEV_INFO("shmem2base 0x%x, size %d, mfcfg offset %d\n",
11017 bp->common.shmem2_base, SHMEM2_RD(bp, size),
11018 (u32)offsetof(struct shmem2_region, mf_cfg_addr));
11019
f2e0899f
DK
11020 if (SHMEM2_HAS(bp, mf_cfg_addr))
11021 bp->common.mf_cfg_base = SHMEM2_RD(bp, mf_cfg_addr);
11022 else
11023 bp->common.mf_cfg_base = bp->common.shmem_base +
523224a3
DK
11024 offsetof(struct shmem_region, func_mb) +
11025 E1H_FUNC_MAX * sizeof(struct drv_func_mb);
0793f83f
DK
11026 /*
11027 * get mf configuration:
25985edc 11028 * 1. existence of MF configuration
0793f83f
DK
11029 * 2. MAC address must be legal (check only upper bytes)
11030 * for Switch-Independent mode;
11031 * OVLAN must be legal for Switch-Dependent mode
11032 * 3. SF_MODE configures specific MF mode
11033 */
11034 if (bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
11035 /* get mf configuration */
11036 val = SHMEM_RD(bp,
11037 dev_info.shared_feature_config.config);
11038 val &= SHARED_FEAT_CFG_FORCE_SF_MODE_MASK;
11039
11040 switch (val) {
11041 case SHARED_FEAT_CFG_FORCE_SF_MODE_SWITCH_INDEPT:
11042 val = MF_CFG_RD(bp, func_mf_config[func].
11043 mac_upper);
11044 /* check for legal mac (upper bytes)*/
11045 if (val != 0xffff) {
11046 bp->mf_mode = MULTI_FUNCTION_SI;
11047 bp->mf_config[vn] = MF_CFG_RD(bp,
11048 func_mf_config[func].config);
11049 } else
51c1a580 11050 BNX2X_DEV_INFO("illegal MAC address for SI\n");
0793f83f 11051 break;
a3348722
BW
11052 case SHARED_FEAT_CFG_FORCE_SF_MODE_AFEX_MODE:
11053 if ((!CHIP_IS_E1x(bp)) &&
11054 (MF_CFG_RD(bp, func_mf_config[func].
11055 mac_upper) != 0xffff) &&
11056 (SHMEM2_HAS(bp,
11057 afex_driver_support))) {
11058 bp->mf_mode = MULTI_FUNCTION_AFEX;
11059 bp->mf_config[vn] = MF_CFG_RD(bp,
11060 func_mf_config[func].config);
11061 } else {
11062 BNX2X_DEV_INFO("can not configure afex mode\n");
11063 }
11064 break;
0793f83f
DK
11065 case SHARED_FEAT_CFG_FORCE_SF_MODE_MF_ALLOWED:
11066 /* get OV configuration */
11067 val = MF_CFG_RD(bp,
11068 func_mf_config[FUNC_0].e1hov_tag);
11069 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
11070
11071 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
11072 bp->mf_mode = MULTI_FUNCTION_SD;
11073 bp->mf_config[vn] = MF_CFG_RD(bp,
11074 func_mf_config[func].config);
11075 } else
754a2f52 11076 BNX2X_DEV_INFO("illegal OV for SD\n");
0793f83f 11077 break;
3786b942
AE
11078 case SHARED_FEAT_CFG_FORCE_SF_MODE_FORCED_SF:
11079 bp->mf_config[vn] = 0;
11080 break;
0793f83f
DK
11081 default:
11082 /* Unknown configuration: reset mf_config */
11083 bp->mf_config[vn] = 0;
51c1a580 11084 BNX2X_DEV_INFO("unknown MF mode 0x%x\n", val);
0793f83f
DK
11085 }
11086 }
a2fbb9ea 11087
2691d51d 11088 BNX2X_DEV_INFO("%s function mode\n",
fb3bff17 11089 IS_MF(bp) ? "multi" : "single");
2691d51d 11090
0793f83f
DK
11091 switch (bp->mf_mode) {
11092 case MULTI_FUNCTION_SD:
11093 val = MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
11094 FUNC_MF_CFG_E1HOV_TAG_MASK;
2691d51d 11095 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
fb3bff17 11096 bp->mf_ov = val;
619c5cb6
VZ
11097 bp->path_has_ovlan = true;
11098
51c1a580
MS
11099 BNX2X_DEV_INFO("MF OV for func %d is %d (0x%04x)\n",
11100 func, bp->mf_ov, bp->mf_ov);
2691d51d 11101 } else {
619c5cb6 11102 dev_err(&bp->pdev->dev,
51c1a580
MS
11103 "No valid MF OV for func %d, aborting\n",
11104 func);
619c5cb6 11105 return -EPERM;
34f80b04 11106 }
0793f83f 11107 break;
a3348722
BW
11108 case MULTI_FUNCTION_AFEX:
11109 BNX2X_DEV_INFO("func %d is in MF afex mode\n", func);
11110 break;
0793f83f 11111 case MULTI_FUNCTION_SI:
51c1a580
MS
11112 BNX2X_DEV_INFO("func %d is in MF switch-independent mode\n",
11113 func);
0793f83f
DK
11114 break;
11115 default:
11116 if (vn) {
619c5cb6 11117 dev_err(&bp->pdev->dev,
51c1a580
MS
11118 "VN %d is in a single function mode, aborting\n",
11119 vn);
619c5cb6 11120 return -EPERM;
2691d51d 11121 }
0793f83f 11122 break;
34f80b04 11123 }
0793f83f 11124
619c5cb6
VZ
11125 /* check if other port on the path needs ovlan:
11126 * Since MF configuration is shared between ports
11127 * Possible mixed modes are only
11128 * {SF, SI} {SF, SD} {SD, SF} {SI, SF}
11129 */
11130 if (CHIP_MODE_IS_4_PORT(bp) &&
11131 !bp->path_has_ovlan &&
11132 !IS_MF(bp) &&
11133 bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
11134 u8 other_port = !BP_PORT(bp);
11135 u8 other_func = BP_PATH(bp) + 2*other_port;
11136 val = MF_CFG_RD(bp,
11137 func_mf_config[other_func].e1hov_tag);
11138 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT)
11139 bp->path_has_ovlan = true;
11140 }
34f80b04 11141 }
a2fbb9ea 11142
f2e0899f
DK
11143 /* adjust igu_sb_cnt to MF for E1x */
11144 if (CHIP_IS_E1x(bp) && IS_MF(bp))
523224a3
DK
11145 bp->igu_sb_cnt /= E1HVN_MAX;
11146
619c5cb6
VZ
11147 /* port info */
11148 bnx2x_get_port_hwinfo(bp);
f2e0899f 11149
0793f83f
DK
11150 /* Get MAC addresses */
11151 bnx2x_get_mac_hwinfo(bp);
a2fbb9ea 11152
2ba45142 11153 bnx2x_get_cnic_info(bp);
2ba45142 11154
34f80b04
EG
11155 return rc;
11156}
11157
0329aba1 11158static void bnx2x_read_fwinfo(struct bnx2x *bp)
34f24c7f
VZ
11159{
11160 int cnt, i, block_end, rodi;
fcdf95cb 11161 char vpd_start[BNX2X_VPD_LEN+1];
34f24c7f
VZ
11162 char str_id_reg[VENDOR_ID_LEN+1];
11163 char str_id_cap[VENDOR_ID_LEN+1];
fcdf95cb
BW
11164 char *vpd_data;
11165 char *vpd_extended_data = NULL;
34f24c7f
VZ
11166 u8 len;
11167
fcdf95cb 11168 cnt = pci_read_vpd(bp->pdev, 0, BNX2X_VPD_LEN, vpd_start);
34f24c7f
VZ
11169 memset(bp->fw_ver, 0, sizeof(bp->fw_ver));
11170
11171 if (cnt < BNX2X_VPD_LEN)
11172 goto out_not_found;
11173
fcdf95cb
BW
11174 /* VPD RO tag should be first tag after identifier string, hence
11175 * we should be able to find it in first BNX2X_VPD_LEN chars
11176 */
11177 i = pci_vpd_find_tag(vpd_start, 0, BNX2X_VPD_LEN,
34f24c7f
VZ
11178 PCI_VPD_LRDT_RO_DATA);
11179 if (i < 0)
11180 goto out_not_found;
11181
34f24c7f 11182 block_end = i + PCI_VPD_LRDT_TAG_SIZE +
fcdf95cb 11183 pci_vpd_lrdt_size(&vpd_start[i]);
34f24c7f
VZ
11184
11185 i += PCI_VPD_LRDT_TAG_SIZE;
11186
fcdf95cb
BW
11187 if (block_end > BNX2X_VPD_LEN) {
11188 vpd_extended_data = kmalloc(block_end, GFP_KERNEL);
11189 if (vpd_extended_data == NULL)
11190 goto out_not_found;
11191
11192 /* read rest of vpd image into vpd_extended_data */
11193 memcpy(vpd_extended_data, vpd_start, BNX2X_VPD_LEN);
11194 cnt = pci_read_vpd(bp->pdev, BNX2X_VPD_LEN,
11195 block_end - BNX2X_VPD_LEN,
11196 vpd_extended_data + BNX2X_VPD_LEN);
11197 if (cnt < (block_end - BNX2X_VPD_LEN))
11198 goto out_not_found;
11199 vpd_data = vpd_extended_data;
11200 } else
11201 vpd_data = vpd_start;
11202
11203 /* now vpd_data holds full vpd content in both cases */
34f24c7f
VZ
11204
11205 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
11206 PCI_VPD_RO_KEYWORD_MFR_ID);
11207 if (rodi < 0)
11208 goto out_not_found;
11209
11210 len = pci_vpd_info_field_size(&vpd_data[rodi]);
11211
11212 if (len != VENDOR_ID_LEN)
11213 goto out_not_found;
11214
11215 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
11216
11217 /* vendor specific info */
11218 snprintf(str_id_reg, VENDOR_ID_LEN + 1, "%04x", PCI_VENDOR_ID_DELL);
11219 snprintf(str_id_cap, VENDOR_ID_LEN + 1, "%04X", PCI_VENDOR_ID_DELL);
11220 if (!strncmp(str_id_reg, &vpd_data[rodi], VENDOR_ID_LEN) ||
11221 !strncmp(str_id_cap, &vpd_data[rodi], VENDOR_ID_LEN)) {
11222
11223 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
11224 PCI_VPD_RO_KEYWORD_VENDOR0);
11225 if (rodi >= 0) {
11226 len = pci_vpd_info_field_size(&vpd_data[rodi]);
11227
11228 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
11229
11230 if (len < 32 && (len + rodi) <= BNX2X_VPD_LEN) {
11231 memcpy(bp->fw_ver, &vpd_data[rodi], len);
11232 bp->fw_ver[len] = ' ';
11233 }
11234 }
fcdf95cb 11235 kfree(vpd_extended_data);
34f24c7f
VZ
11236 return;
11237 }
11238out_not_found:
fcdf95cb 11239 kfree(vpd_extended_data);
34f24c7f
VZ
11240 return;
11241}
11242
0329aba1 11243static void bnx2x_set_modes_bitmap(struct bnx2x *bp)
619c5cb6
VZ
11244{
11245 u32 flags = 0;
11246
11247 if (CHIP_REV_IS_FPGA(bp))
11248 SET_FLAGS(flags, MODE_FPGA);
11249 else if (CHIP_REV_IS_EMUL(bp))
11250 SET_FLAGS(flags, MODE_EMUL);
11251 else
11252 SET_FLAGS(flags, MODE_ASIC);
11253
11254 if (CHIP_MODE_IS_4_PORT(bp))
11255 SET_FLAGS(flags, MODE_PORT4);
11256 else
11257 SET_FLAGS(flags, MODE_PORT2);
11258
11259 if (CHIP_IS_E2(bp))
11260 SET_FLAGS(flags, MODE_E2);
11261 else if (CHIP_IS_E3(bp)) {
11262 SET_FLAGS(flags, MODE_E3);
11263 if (CHIP_REV(bp) == CHIP_REV_Ax)
11264 SET_FLAGS(flags, MODE_E3_A0);
6383c0b3
AE
11265 else /*if (CHIP_REV(bp) == CHIP_REV_Bx)*/
11266 SET_FLAGS(flags, MODE_E3_B0 | MODE_COS3);
619c5cb6
VZ
11267 }
11268
11269 if (IS_MF(bp)) {
11270 SET_FLAGS(flags, MODE_MF);
11271 switch (bp->mf_mode) {
11272 case MULTI_FUNCTION_SD:
11273 SET_FLAGS(flags, MODE_MF_SD);
11274 break;
11275 case MULTI_FUNCTION_SI:
11276 SET_FLAGS(flags, MODE_MF_SI);
11277 break;
a3348722
BW
11278 case MULTI_FUNCTION_AFEX:
11279 SET_FLAGS(flags, MODE_MF_AFEX);
11280 break;
619c5cb6
VZ
11281 }
11282 } else
11283 SET_FLAGS(flags, MODE_SF);
11284
11285#if defined(__LITTLE_ENDIAN)
11286 SET_FLAGS(flags, MODE_LITTLE_ENDIAN);
11287#else /*(__BIG_ENDIAN)*/
11288 SET_FLAGS(flags, MODE_BIG_ENDIAN);
11289#endif
11290 INIT_MODE_FLAGS(bp) = flags;
11291}
11292
0329aba1 11293static int bnx2x_init_bp(struct bnx2x *bp)
34f80b04 11294{
f2e0899f 11295 int func;
34f80b04
EG
11296 int rc;
11297
34f80b04 11298 mutex_init(&bp->port.phy_mutex);
c4ff7cbf 11299 mutex_init(&bp->fw_mb_mutex);
bb7e95c8 11300 spin_lock_init(&bp->stats_lock);
55c11941 11301
a2fbb9ea 11302
1cf167f2 11303 INIT_DELAYED_WORK(&bp->sp_task, bnx2x_sp_task);
7be08a72 11304 INIT_DELAYED_WORK(&bp->sp_rtnl_task, bnx2x_sp_rtnl_task);
3deb8167 11305 INIT_DELAYED_WORK(&bp->period_task, bnx2x_period_task);
1ab4434c
AE
11306 if (IS_PF(bp)) {
11307 rc = bnx2x_get_hwinfo(bp);
11308 if (rc)
11309 return rc;
11310 } else {
11311 random_ether_addr(bp->dev->dev_addr);
11312 }
34f80b04 11313
619c5cb6
VZ
11314 bnx2x_set_modes_bitmap(bp);
11315
11316 rc = bnx2x_alloc_mem_bp(bp);
11317 if (rc)
11318 return rc;
523224a3 11319
34f24c7f 11320 bnx2x_read_fwinfo(bp);
f2e0899f
DK
11321
11322 func = BP_FUNC(bp);
11323
34f80b04 11324 /* need to reset chip if undi was active */
1ab4434c 11325 if (IS_PF(bp) && !BP_NOMCP(bp)) {
452427b0
YM
11326 /* init fw_seq */
11327 bp->fw_seq =
11328 SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
11329 DRV_MSG_SEQ_NUMBER_MASK;
11330 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
11331
11332 bnx2x_prev_unload(bp);
11333 }
11334
34f80b04
EG
11335
11336 if (CHIP_REV_IS_FPGA(bp))
cdaa7cb8 11337 dev_err(&bp->pdev->dev, "FPGA detected\n");
34f80b04
EG
11338
11339 if (BP_NOMCP(bp) && (func == 0))
51c1a580 11340 dev_err(&bp->pdev->dev, "MCP disabled, must load devices in order!\n");
34f80b04 11341
614c76df 11342 bp->disable_tpa = disable_tpa;
a3348722 11343 bp->disable_tpa |= IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp);
614c76df 11344
7a9b2557 11345 /* Set TPA flags */
614c76df 11346 if (bp->disable_tpa) {
621b4d66 11347 bp->flags &= ~(TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11348 bp->dev->features &= ~NETIF_F_LRO;
11349 } else {
621b4d66 11350 bp->flags |= (TPA_ENABLE_FLAG | GRO_ENABLE_FLAG);
7a9b2557
VZ
11351 bp->dev->features |= NETIF_F_LRO;
11352 }
11353
a18f5128
EG
11354 if (CHIP_IS_E1(bp))
11355 bp->dropless_fc = 0;
11356 else
7964211d 11357 bp->dropless_fc = dropless_fc | bnx2x_get_dropless_info(bp);
a18f5128 11358
8d5726c4 11359 bp->mrrs = mrrs;
7a9b2557 11360
a3348722 11361 bp->tx_ring_size = IS_MF_FCOE_AFEX(bp) ? 0 : MAX_TX_AVAIL;
1ab4434c
AE
11362 if (IS_VF(bp))
11363 bp->rx_ring_size = MAX_RX_AVAIL;
34f80b04 11364
7d323bfd 11365 /* make sure that the numbers are in the right granularity */
523224a3
DK
11366 bp->tx_ticks = (50 / BNX2X_BTR) * BNX2X_BTR;
11367 bp->rx_ticks = (25 / BNX2X_BTR) * BNX2X_BTR;
34f80b04 11368
fc543637 11369 bp->current_interval = CHIP_REV_IS_SLOW(bp) ? 5*HZ : HZ;
34f80b04
EG
11370
11371 init_timer(&bp->timer);
11372 bp->timer.expires = jiffies + bp->current_interval;
11373 bp->timer.data = (unsigned long) bp;
11374 bp->timer.function = bnx2x_timer;
11375
0370cf90
BW
11376 if (SHMEM2_HAS(bp, dcbx_lldp_params_offset) &&
11377 SHMEM2_HAS(bp, dcbx_lldp_dcbx_stat_offset) &&
11378 SHMEM2_RD(bp, dcbx_lldp_params_offset) &&
11379 SHMEM2_RD(bp, dcbx_lldp_dcbx_stat_offset)) {
11380 bnx2x_dcbx_set_state(bp, true, BNX2X_DCBX_ENABLED_ON_NEG_ON);
11381 bnx2x_dcbx_init_params(bp);
11382 } else {
11383 bnx2x_dcbx_set_state(bp, false, BNX2X_DCBX_ENABLED_OFF);
11384 }
e4901dde 11385
619c5cb6
VZ
11386 if (CHIP_IS_E1x(bp))
11387 bp->cnic_base_cl_id = FP_SB_MAX_E1x;
11388 else
11389 bp->cnic_base_cl_id = FP_SB_MAX_E2;
619c5cb6 11390
6383c0b3 11391 /* multiple tx priority */
1ab4434c
AE
11392 if (IS_VF(bp))
11393 bp->max_cos = 1;
11394 else if (CHIP_IS_E1x(bp))
6383c0b3 11395 bp->max_cos = BNX2X_MULTI_TX_COS_E1X;
1ab4434c 11396 else if (CHIP_IS_E2(bp) || CHIP_IS_E3A0(bp))
6383c0b3 11397 bp->max_cos = BNX2X_MULTI_TX_COS_E2_E3A0;
1ab4434c 11398 else if (CHIP_IS_E3B0(bp))
6383c0b3 11399 bp->max_cos = BNX2X_MULTI_TX_COS_E3B0;
1ab4434c
AE
11400 else
11401 BNX2X_ERR("unknown chip %x revision %x\n",
11402 CHIP_NUM(bp), CHIP_REV(bp));
11403 BNX2X_DEV_INFO("set bp->max_cos to %d\n", bp->max_cos);
6383c0b3 11404
55c11941
MS
11405 /* We need at least one default status block for slow-path events,
11406 * second status block for the L2 queue, and a third status block for
11407 * CNIC if supproted.
11408 */
11409 if (CNIC_SUPPORT(bp))
11410 bp->min_msix_vec_cnt = 3;
11411 else
11412 bp->min_msix_vec_cnt = 2;
11413 BNX2X_DEV_INFO("bp->min_msix_vec_cnt %d", bp->min_msix_vec_cnt);
11414
34f80b04 11415 return rc;
a2fbb9ea
ET
11416}
11417
a2fbb9ea 11418
de0c62db
DK
11419/****************************************************************************
11420* General service functions
11421****************************************************************************/
a2fbb9ea 11422
619c5cb6
VZ
11423/*
11424 * net_device service functions
11425 */
11426
bb2a0f7a 11427/* called with rtnl_lock */
a2fbb9ea
ET
11428static int bnx2x_open(struct net_device *dev)
11429{
11430 struct bnx2x *bp = netdev_priv(dev);
c9ee9206
VZ
11431 bool global = false;
11432 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3 11433 bool other_load_status, load_status;
8395be5e 11434 int rc;
a2fbb9ea 11435
1355b704
MY
11436 bp->stats_init = true;
11437
6eccabb3
EG
11438 netif_carrier_off(dev);
11439
a2fbb9ea
ET
11440 bnx2x_set_power_state(bp, PCI_D0);
11441
ad5afc89 11442 /* If parity had happen during the unload, then attentions
c9ee9206
VZ
11443 * and/or RECOVERY_IN_PROGRES may still be set. In this case we
11444 * want the first function loaded on the current engine to
11445 * complete the recovery.
ad5afc89 11446 * Parity recovery is only relevant for PF driver.
c9ee9206 11447 */
ad5afc89
AE
11448 if (IS_PF(bp)) {
11449 other_load_status = bnx2x_get_load_status(bp, other_engine);
11450 load_status = bnx2x_get_load_status(bp, BP_PATH(bp));
11451 if (!bnx2x_reset_is_done(bp, BP_PATH(bp)) ||
11452 bnx2x_chk_parity_attn(bp, &global, true)) {
11453 do {
11454 /* If there are attentions and they are in a
11455 * global blocks, set the GLOBAL_RESET bit
11456 * regardless whether it will be this function
11457 * that will complete the recovery or not.
11458 */
11459 if (global)
11460 bnx2x_set_reset_global(bp);
72fd0718 11461
ad5afc89
AE
11462 /* Only the first function on the current
11463 * engine should try to recover in open. In case
11464 * of attentions in global blocks only the first
11465 * in the chip should try to recover.
11466 */
11467 if ((!load_status &&
11468 (!global || !other_load_status)) &&
11469 bnx2x_trylock_leader_lock(bp) &&
11470 !bnx2x_leader_reset(bp)) {
11471 netdev_info(bp->dev,
11472 "Recovered in open\n");
11473 break;
11474 }
72fd0718 11475
ad5afc89
AE
11476 /* recovery has failed... */
11477 bnx2x_set_power_state(bp, PCI_D3hot);
11478 bp->recovery_state = BNX2X_RECOVERY_FAILED;
72fd0718 11479
ad5afc89
AE
11480 BNX2X_ERR("Recovery flow hasn't been properly completed yet. Try again later.\n"
11481 "If you still see this message after a few retries then power cycle is required.\n");
72fd0718 11482
ad5afc89
AE
11483 return -EAGAIN;
11484 } while (0);
11485 }
11486 }
72fd0718
VZ
11487
11488 bp->recovery_state = BNX2X_RECOVERY_DONE;
8395be5e
AE
11489 rc = bnx2x_nic_load(bp, LOAD_OPEN);
11490 if (rc)
11491 return rc;
11492 return bnx2x_open_epilog(bp);
a2fbb9ea
ET
11493}
11494
bb2a0f7a 11495/* called with rtnl_lock */
56ad3152 11496static int bnx2x_close(struct net_device *dev)
a2fbb9ea 11497{
a2fbb9ea
ET
11498 struct bnx2x *bp = netdev_priv(dev);
11499
11500 /* Unload the driver, release IRQs */
5d07d868 11501 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
c9ee9206
VZ
11502
11503 /* Power off */
d3dbfee0 11504 bnx2x_set_power_state(bp, PCI_D3hot);
a2fbb9ea
ET
11505
11506 return 0;
11507}
11508
1191cb83
ED
11509static int bnx2x_init_mcast_macs_list(struct bnx2x *bp,
11510 struct bnx2x_mcast_ramrod_params *p)
6e30dd4e 11511{
619c5cb6
VZ
11512 int mc_count = netdev_mc_count(bp->dev);
11513 struct bnx2x_mcast_list_elem *mc_mac =
11514 kzalloc(sizeof(*mc_mac) * mc_count, GFP_ATOMIC);
11515 struct netdev_hw_addr *ha;
6e30dd4e 11516
619c5cb6
VZ
11517 if (!mc_mac)
11518 return -ENOMEM;
6e30dd4e 11519
619c5cb6 11520 INIT_LIST_HEAD(&p->mcast_list);
6e30dd4e 11521
619c5cb6
VZ
11522 netdev_for_each_mc_addr(ha, bp->dev) {
11523 mc_mac->mac = bnx2x_mc_addr(ha);
11524 list_add_tail(&mc_mac->link, &p->mcast_list);
11525 mc_mac++;
6e30dd4e 11526 }
619c5cb6
VZ
11527
11528 p->mcast_list_len = mc_count;
11529
11530 return 0;
6e30dd4e
VZ
11531}
11532
1191cb83 11533static void bnx2x_free_mcast_macs_list(
619c5cb6
VZ
11534 struct bnx2x_mcast_ramrod_params *p)
11535{
11536 struct bnx2x_mcast_list_elem *mc_mac =
11537 list_first_entry(&p->mcast_list, struct bnx2x_mcast_list_elem,
11538 link);
11539
11540 WARN_ON(!mc_mac);
11541 kfree(mc_mac);
11542}
11543
11544/**
11545 * bnx2x_set_uc_list - configure a new unicast MACs list.
11546 *
11547 * @bp: driver handle
6e30dd4e 11548 *
619c5cb6 11549 * We will use zero (0) as a MAC type for these MACs.
6e30dd4e 11550 */
1191cb83 11551static int bnx2x_set_uc_list(struct bnx2x *bp)
6e30dd4e 11552{
619c5cb6 11553 int rc;
6e30dd4e 11554 struct net_device *dev = bp->dev;
6e30dd4e 11555 struct netdev_hw_addr *ha;
15192a8c 11556 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
619c5cb6 11557 unsigned long ramrod_flags = 0;
6e30dd4e 11558
619c5cb6
VZ
11559 /* First schedule a cleanup up of old configuration */
11560 rc = bnx2x_del_all_macs(bp, mac_obj, BNX2X_UC_LIST_MAC, false);
11561 if (rc < 0) {
11562 BNX2X_ERR("Failed to schedule DELETE operations: %d\n", rc);
11563 return rc;
11564 }
6e30dd4e
VZ
11565
11566 netdev_for_each_uc_addr(ha, dev) {
619c5cb6
VZ
11567 rc = bnx2x_set_mac_one(bp, bnx2x_uc_addr(ha), mac_obj, true,
11568 BNX2X_UC_LIST_MAC, &ramrod_flags);
7b5342d9
YM
11569 if (rc == -EEXIST) {
11570 DP(BNX2X_MSG_SP,
11571 "Failed to schedule ADD operations: %d\n", rc);
11572 /* do not treat adding same MAC as error */
11573 rc = 0;
11574
11575 } else if (rc < 0) {
11576
619c5cb6
VZ
11577 BNX2X_ERR("Failed to schedule ADD operations: %d\n",
11578 rc);
11579 return rc;
6e30dd4e
VZ
11580 }
11581 }
11582
619c5cb6
VZ
11583 /* Execute the pending commands */
11584 __set_bit(RAMROD_CONT, &ramrod_flags);
11585 return bnx2x_set_mac_one(bp, NULL, mac_obj, false /* don't care */,
11586 BNX2X_UC_LIST_MAC, &ramrod_flags);
6e30dd4e
VZ
11587}
11588
1191cb83 11589static int bnx2x_set_mc_list(struct bnx2x *bp)
6e30dd4e 11590{
619c5cb6 11591 struct net_device *dev = bp->dev;
3b603066 11592 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6 11593 int rc = 0;
6e30dd4e 11594
619c5cb6 11595 rparam.mcast_obj = &bp->mcast_obj;
6e30dd4e 11596
619c5cb6
VZ
11597 /* first, clear all configured multicast MACs */
11598 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
11599 if (rc < 0) {
51c1a580 11600 BNX2X_ERR("Failed to clear multicast configuration: %d\n", rc);
619c5cb6
VZ
11601 return rc;
11602 }
6e30dd4e 11603
619c5cb6
VZ
11604 /* then, configure a new MACs list */
11605 if (netdev_mc_count(dev)) {
11606 rc = bnx2x_init_mcast_macs_list(bp, &rparam);
11607 if (rc) {
51c1a580
MS
11608 BNX2X_ERR("Failed to create multicast MACs list: %d\n",
11609 rc);
619c5cb6
VZ
11610 return rc;
11611 }
6e30dd4e 11612
619c5cb6
VZ
11613 /* Now add the new MACs */
11614 rc = bnx2x_config_mcast(bp, &rparam,
11615 BNX2X_MCAST_CMD_ADD);
11616 if (rc < 0)
51c1a580
MS
11617 BNX2X_ERR("Failed to set a new multicast configuration: %d\n",
11618 rc);
6e30dd4e 11619
619c5cb6
VZ
11620 bnx2x_free_mcast_macs_list(&rparam);
11621 }
6e30dd4e 11622
619c5cb6 11623 return rc;
6e30dd4e
VZ
11624}
11625
619c5cb6 11626/* If bp->state is OPEN, should be called with netif_addr_lock_bh() */
9f6c9258 11627void bnx2x_set_rx_mode(struct net_device *dev)
34f80b04
EG
11628{
11629 struct bnx2x *bp = netdev_priv(dev);
11630 u32 rx_mode = BNX2X_RX_MODE_NORMAL;
34f80b04
EG
11631
11632 if (bp->state != BNX2X_STATE_OPEN) {
11633 DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
11634 return;
11635 }
11636
619c5cb6 11637 DP(NETIF_MSG_IFUP, "dev->flags = %x\n", bp->dev->flags);
34f80b04
EG
11638
11639 if (dev->flags & IFF_PROMISC)
11640 rx_mode = BNX2X_RX_MODE_PROMISC;
619c5cb6
VZ
11641 else if ((dev->flags & IFF_ALLMULTI) ||
11642 ((netdev_mc_count(dev) > BNX2X_MAX_MULTICAST) &&
11643 CHIP_IS_E1(bp)))
34f80b04 11644 rx_mode = BNX2X_RX_MODE_ALLMULTI;
6e30dd4e 11645 else {
381ac16b
AE
11646 if (IS_PF(bp)) {
11647 /* some multicasts */
11648 if (bnx2x_set_mc_list(bp) < 0)
11649 rx_mode = BNX2X_RX_MODE_ALLMULTI;
34f80b04 11650
381ac16b
AE
11651 if (bnx2x_set_uc_list(bp) < 0)
11652 rx_mode = BNX2X_RX_MODE_PROMISC;
11653 } else {
11654 /* configuring mcast to a vf involves sleeping (when we
11655 * wait for the pf's response). Since this function is
11656 * called from non sleepable context we must schedule
11657 * a work item for this purpose
11658 */
11659 smp_mb__before_clear_bit();
11660 set_bit(BNX2X_SP_RTNL_VFPF_MCAST,
11661 &bp->sp_rtnl_state);
11662 smp_mb__after_clear_bit();
11663 schedule_delayed_work(&bp->sp_rtnl_task, 0);
11664 }
34f80b04
EG
11665 }
11666
11667 bp->rx_mode = rx_mode;
614c76df
DK
11668 /* handle ISCSI SD mode */
11669 if (IS_MF_ISCSI_SD(bp))
11670 bp->rx_mode = BNX2X_RX_MODE_NONE;
619c5cb6
VZ
11671
11672 /* Schedule the rx_mode command */
11673 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state)) {
11674 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
11675 return;
11676 }
11677
381ac16b
AE
11678 if (IS_PF(bp)) {
11679 bnx2x_set_storm_rx_mode(bp);
11680 } else {
11681 /* configuring rx mode to storms in a vf involves sleeping (when
11682 * we wait for the pf's response). Since this function is
11683 * called from non sleepable context we must schedule
11684 * a work item for this purpose
11685 */
11686 smp_mb__before_clear_bit();
11687 set_bit(BNX2X_SP_RTNL_VFPF_STORM_RX_MODE,
11688 &bp->sp_rtnl_state);
11689 smp_mb__after_clear_bit();
11690 schedule_delayed_work(&bp->sp_rtnl_task, 0);
11691 }
34f80b04
EG
11692}
11693
c18487ee 11694/* called with rtnl_lock */
01cd4528
EG
11695static int bnx2x_mdio_read(struct net_device *netdev, int prtad,
11696 int devad, u16 addr)
a2fbb9ea 11697{
01cd4528
EG
11698 struct bnx2x *bp = netdev_priv(netdev);
11699 u16 value;
11700 int rc;
a2fbb9ea 11701
01cd4528
EG
11702 DP(NETIF_MSG_LINK, "mdio_read: prtad 0x%x, devad 0x%x, addr 0x%x\n",
11703 prtad, devad, addr);
a2fbb9ea 11704
01cd4528
EG
11705 /* The HW expects different devad if CL22 is used */
11706 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
c18487ee 11707
01cd4528 11708 bnx2x_acquire_phy_lock(bp);
e10bc84d 11709 rc = bnx2x_phy_read(&bp->link_params, prtad, devad, addr, &value);
01cd4528
EG
11710 bnx2x_release_phy_lock(bp);
11711 DP(NETIF_MSG_LINK, "mdio_read_val 0x%x rc = 0x%x\n", value, rc);
a2fbb9ea 11712
01cd4528
EG
11713 if (!rc)
11714 rc = value;
11715 return rc;
11716}
a2fbb9ea 11717
01cd4528
EG
11718/* called with rtnl_lock */
11719static int bnx2x_mdio_write(struct net_device *netdev, int prtad, int devad,
11720 u16 addr, u16 value)
11721{
11722 struct bnx2x *bp = netdev_priv(netdev);
01cd4528
EG
11723 int rc;
11724
51c1a580
MS
11725 DP(NETIF_MSG_LINK,
11726 "mdio_write: prtad 0x%x, devad 0x%x, addr 0x%x, value 0x%x\n",
11727 prtad, devad, addr, value);
01cd4528 11728
01cd4528
EG
11729 /* The HW expects different devad if CL22 is used */
11730 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
a2fbb9ea 11731
01cd4528 11732 bnx2x_acquire_phy_lock(bp);
e10bc84d 11733 rc = bnx2x_phy_write(&bp->link_params, prtad, devad, addr, value);
01cd4528
EG
11734 bnx2x_release_phy_lock(bp);
11735 return rc;
11736}
c18487ee 11737
01cd4528
EG
11738/* called with rtnl_lock */
11739static int bnx2x_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11740{
11741 struct bnx2x *bp = netdev_priv(dev);
11742 struct mii_ioctl_data *mdio = if_mii(ifr);
a2fbb9ea 11743
01cd4528
EG
11744 DP(NETIF_MSG_LINK, "ioctl: phy id 0x%x, reg 0x%x, val_in 0x%x\n",
11745 mdio->phy_id, mdio->reg_num, mdio->val_in);
a2fbb9ea 11746
01cd4528
EG
11747 if (!netif_running(dev))
11748 return -EAGAIN;
11749
11750 return mdio_mii_ioctl(&bp->mdio, mdio, cmd);
a2fbb9ea
ET
11751}
11752
257ddbda 11753#ifdef CONFIG_NET_POLL_CONTROLLER
a2fbb9ea
ET
11754static void poll_bnx2x(struct net_device *dev)
11755{
11756 struct bnx2x *bp = netdev_priv(dev);
14a15d61 11757 int i;
a2fbb9ea 11758
14a15d61
MS
11759 for_each_eth_queue(bp, i) {
11760 struct bnx2x_fastpath *fp = &bp->fp[i];
11761 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
11762 }
a2fbb9ea
ET
11763}
11764#endif
11765
614c76df
DK
11766static int bnx2x_validate_addr(struct net_device *dev)
11767{
11768 struct bnx2x *bp = netdev_priv(dev);
11769
51c1a580
MS
11770 if (!bnx2x_is_valid_ether_addr(bp, dev->dev_addr)) {
11771 BNX2X_ERR("Non-valid Ethernet address\n");
614c76df 11772 return -EADDRNOTAVAIL;
51c1a580 11773 }
614c76df
DK
11774 return 0;
11775}
11776
c64213cd
SH
11777static const struct net_device_ops bnx2x_netdev_ops = {
11778 .ndo_open = bnx2x_open,
11779 .ndo_stop = bnx2x_close,
11780 .ndo_start_xmit = bnx2x_start_xmit,
8307fa3e 11781 .ndo_select_queue = bnx2x_select_queue,
6e30dd4e 11782 .ndo_set_rx_mode = bnx2x_set_rx_mode,
c64213cd 11783 .ndo_set_mac_address = bnx2x_change_mac_addr,
614c76df 11784 .ndo_validate_addr = bnx2x_validate_addr,
c64213cd
SH
11785 .ndo_do_ioctl = bnx2x_ioctl,
11786 .ndo_change_mtu = bnx2x_change_mtu,
66371c44
MM
11787 .ndo_fix_features = bnx2x_fix_features,
11788 .ndo_set_features = bnx2x_set_features,
c64213cd 11789 .ndo_tx_timeout = bnx2x_tx_timeout,
257ddbda 11790#ifdef CONFIG_NET_POLL_CONTROLLER
c64213cd
SH
11791 .ndo_poll_controller = poll_bnx2x,
11792#endif
6383c0b3 11793 .ndo_setup_tc = bnx2x_setup_tc,
6411280a 11794#ifdef CONFIG_BNX2X_SRIOV
abc5a021 11795 .ndo_set_vf_mac = bnx2x_set_vf_mac,
3ec9f9ca
AE
11796 .ndo_set_vf_vlan = bnx2x_set_vf_vlan,
11797 .ndo_get_vf_config = bnx2x_get_vf_config,
6411280a 11798#endif
55c11941 11799#ifdef NETDEV_FCOE_WWNN
bf61ee14
VZ
11800 .ndo_fcoe_get_wwn = bnx2x_fcoe_get_wwn,
11801#endif
c64213cd
SH
11802};
11803
1191cb83 11804static int bnx2x_set_coherency_mask(struct bnx2x *bp)
619c5cb6
VZ
11805{
11806 struct device *dev = &bp->pdev->dev;
11807
11808 if (dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) {
11809 bp->flags |= USING_DAC_FLAG;
11810 if (dma_set_coherent_mask(dev, DMA_BIT_MASK(64)) != 0) {
51c1a580 11811 dev_err(dev, "dma_set_coherent_mask failed, aborting\n");
619c5cb6
VZ
11812 return -EIO;
11813 }
11814 } else if (dma_set_mask(dev, DMA_BIT_MASK(32)) != 0) {
11815 dev_err(dev, "System does not support DMA, aborting\n");
11816 return -EIO;
11817 }
11818
11819 return 0;
11820}
11821
1ab4434c
AE
11822static int bnx2x_init_dev(struct bnx2x *bp, struct pci_dev *pdev,
11823 struct net_device *dev, unsigned long board_type)
a2fbb9ea 11824{
a2fbb9ea 11825 int rc;
c22610d0 11826 u32 pci_cfg_dword;
65087cfe
AE
11827 bool chip_is_e1x = (board_type == BCM57710 ||
11828 board_type == BCM57711 ||
11829 board_type == BCM57711E);
a2fbb9ea
ET
11830
11831 SET_NETDEV_DEV(dev, &pdev->dev);
a2fbb9ea 11832
34f80b04
EG
11833 bp->dev = dev;
11834 bp->pdev = pdev;
a2fbb9ea
ET
11835
11836 rc = pci_enable_device(pdev);
11837 if (rc) {
cdaa7cb8
VZ
11838 dev_err(&bp->pdev->dev,
11839 "Cannot enable PCI device, aborting\n");
a2fbb9ea
ET
11840 goto err_out;
11841 }
11842
11843 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
cdaa7cb8
VZ
11844 dev_err(&bp->pdev->dev,
11845 "Cannot find PCI device base address, aborting\n");
a2fbb9ea
ET
11846 rc = -ENODEV;
11847 goto err_out_disable;
11848 }
11849
1ab4434c
AE
11850 if (IS_PF(bp) && !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
11851 dev_err(&bp->pdev->dev, "Cannot find second PCI device base address, aborting\n");
a2fbb9ea
ET
11852 rc = -ENODEV;
11853 goto err_out_disable;
11854 }
11855
092a5fc9
YR
11856 pci_read_config_dword(pdev, PCICFG_REVISION_ID_OFFSET, &pci_cfg_dword);
11857 if ((pci_cfg_dword & PCICFG_REVESION_ID_MASK) ==
11858 PCICFG_REVESION_ID_ERROR_VAL) {
11859 pr_err("PCI device error, probably due to fan failure, aborting\n");
11860 rc = -ENODEV;
11861 goto err_out_disable;
11862 }
11863
34f80b04
EG
11864 if (atomic_read(&pdev->enable_cnt) == 1) {
11865 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
11866 if (rc) {
cdaa7cb8
VZ
11867 dev_err(&bp->pdev->dev,
11868 "Cannot obtain PCI resources, aborting\n");
34f80b04
EG
11869 goto err_out_disable;
11870 }
a2fbb9ea 11871
34f80b04
EG
11872 pci_set_master(pdev);
11873 pci_save_state(pdev);
11874 }
a2fbb9ea 11875
1ab4434c
AE
11876 if (IS_PF(bp)) {
11877 bp->pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
11878 if (bp->pm_cap == 0) {
11879 dev_err(&bp->pdev->dev,
11880 "Cannot find power management capability, aborting\n");
11881 rc = -EIO;
11882 goto err_out_release;
11883 }
a2fbb9ea
ET
11884 }
11885
77c98e6a 11886 if (!pci_is_pcie(pdev)) {
51c1a580 11887 dev_err(&bp->pdev->dev, "Not PCI Express, aborting\n");
a2fbb9ea
ET
11888 rc = -EIO;
11889 goto err_out_release;
11890 }
11891
619c5cb6
VZ
11892 rc = bnx2x_set_coherency_mask(bp);
11893 if (rc)
a2fbb9ea 11894 goto err_out_release;
a2fbb9ea 11895
34f80b04
EG
11896 dev->mem_start = pci_resource_start(pdev, 0);
11897 dev->base_addr = dev->mem_start;
11898 dev->mem_end = pci_resource_end(pdev, 0);
a2fbb9ea
ET
11899
11900 dev->irq = pdev->irq;
11901
275f165f 11902 bp->regview = pci_ioremap_bar(pdev, 0);
a2fbb9ea 11903 if (!bp->regview) {
cdaa7cb8
VZ
11904 dev_err(&bp->pdev->dev,
11905 "Cannot map register space, aborting\n");
a2fbb9ea
ET
11906 rc = -ENOMEM;
11907 goto err_out_release;
11908 }
11909
c22610d0
AE
11910 /* In E1/E1H use pci device function given by kernel.
11911 * In E2/E3 read physical function from ME register since these chips
11912 * support Physical Device Assignment where kernel BDF maybe arbitrary
11913 * (depending on hypervisor).
11914 */
2de67439 11915 if (chip_is_e1x) {
c22610d0 11916 bp->pf_num = PCI_FUNC(pdev->devfn);
2de67439
YM
11917 } else {
11918 /* chip is E2/3*/
c22610d0
AE
11919 pci_read_config_dword(bp->pdev,
11920 PCICFG_ME_REGISTER, &pci_cfg_dword);
11921 bp->pf_num = (u8)((pci_cfg_dword & ME_REG_ABS_PF_NUM) >>
2de67439 11922 ME_REG_ABS_PF_NUM_SHIFT);
c22610d0 11923 }
51c1a580 11924 BNX2X_DEV_INFO("me reg PF num: %d\n", bp->pf_num);
c22610d0 11925
a2fbb9ea
ET
11926 bnx2x_set_power_state(bp, PCI_D0);
11927
34f80b04
EG
11928 /* clean indirect addresses */
11929 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
11930 PCICFG_VENDOR_ID_OFFSET);
a5c53dbc
DK
11931 /*
11932 * Clean the following indirect addresses for all functions since it
9f0096a1
DK
11933 * is not used by the driver.
11934 */
1ab4434c
AE
11935 if (IS_PF(bp)) {
11936 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F0, 0);
11937 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F0, 0);
11938 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F0, 0);
11939 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F0, 0);
11940
11941 if (chip_is_e1x) {
11942 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F1, 0);
11943 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F1, 0);
11944 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F1, 0);
11945 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F1, 0);
11946 }
a5c53dbc 11947
1ab4434c
AE
11948 /* Enable internal target-read (in case we are probed after PF
11949 * FLR). Must be done prior to any BAR read access. Only for
11950 * 57712 and up
11951 */
11952 if (!chip_is_e1x)
11953 REG_WR(bp,
11954 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
a5c53dbc 11955 }
a2fbb9ea 11956
34f80b04 11957 dev->watchdog_timeo = TX_TIMEOUT;
a2fbb9ea 11958
c64213cd 11959 dev->netdev_ops = &bnx2x_netdev_ops;
005a07ba 11960 bnx2x_set_ethtool_ops(bp, dev);
5316bc0b 11961
01789349
JP
11962 dev->priv_flags |= IFF_UNICAST_FLT;
11963
66371c44 11964 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
621b4d66
DK
11965 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
11966 NETIF_F_RXCSUM | NETIF_F_LRO | NETIF_F_GRO |
11967 NETIF_F_RXHASH | NETIF_F_HW_VLAN_TX;
a848ade4
DK
11968 if (!CHIP_IS_E1x(bp)) {
11969 dev->hw_features |= NETIF_F_GSO_GRE;
11970 dev->hw_enc_features =
11971 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
11972 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
11973 NETIF_F_GSO_GRE;
11974 }
66371c44
MM
11975
11976 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
11977 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_HIGHDMA;
11978
11979 dev->features |= dev->hw_features | NETIF_F_HW_VLAN_RX;
5316bc0b 11980 if (bp->flags & USING_DAC_FLAG)
66371c44 11981 dev->features |= NETIF_F_HIGHDMA;
a2fbb9ea 11982
538dd2e3
MB
11983 /* Add Loopback capability to the device */
11984 dev->hw_features |= NETIF_F_LOOPBACK;
11985
98507672 11986#ifdef BCM_DCBNL
785b9b1a
SR
11987 dev->dcbnl_ops = &bnx2x_dcbnl_ops;
11988#endif
11989
01cd4528
EG
11990 /* get_port_hwinfo() will set prtad and mmds properly */
11991 bp->mdio.prtad = MDIO_PRTAD_NONE;
11992 bp->mdio.mmds = 0;
11993 bp->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
11994 bp->mdio.dev = dev;
11995 bp->mdio.mdio_read = bnx2x_mdio_read;
11996 bp->mdio.mdio_write = bnx2x_mdio_write;
11997
a2fbb9ea
ET
11998 return 0;
11999
a2fbb9ea 12000err_out_release:
34f80b04
EG
12001 if (atomic_read(&pdev->enable_cnt) == 1)
12002 pci_release_regions(pdev);
a2fbb9ea
ET
12003
12004err_out_disable:
12005 pci_disable_device(pdev);
12006 pci_set_drvdata(pdev, NULL);
12007
12008err_out:
12009 return rc;
12010}
12011
1dd06ae8 12012static void bnx2x_get_pcie_width_speed(struct bnx2x *bp, int *width, int *speed)
25047950 12013{
1ab4434c 12014 u32 val = 0;
25047950 12015
1ab4434c 12016 pci_read_config_dword(bp->pdev, PCICFG_LINK_CONTROL, &val);
37f9ce62 12017 *width = (val & PCICFG_LINK_WIDTH) >> PCICFG_LINK_WIDTH_SHIFT;
25047950 12018
37f9ce62
EG
12019 /* return value of 1=2.5GHz 2=5GHz */
12020 *speed = (val & PCICFG_LINK_SPEED) >> PCICFG_LINK_SPEED_SHIFT;
25047950 12021}
37f9ce62 12022
6891dd25 12023static int bnx2x_check_firmware(struct bnx2x *bp)
94a78b79 12024{
37f9ce62 12025 const struct firmware *firmware = bp->firmware;
94a78b79
VZ
12026 struct bnx2x_fw_file_hdr *fw_hdr;
12027 struct bnx2x_fw_file_section *sections;
94a78b79 12028 u32 offset, len, num_ops;
86564c3f 12029 __be16 *ops_offsets;
94a78b79 12030 int i;
37f9ce62 12031 const u8 *fw_ver;
94a78b79 12032
51c1a580
MS
12033 if (firmware->size < sizeof(struct bnx2x_fw_file_hdr)) {
12034 BNX2X_ERR("Wrong FW size\n");
94a78b79 12035 return -EINVAL;
51c1a580 12036 }
94a78b79
VZ
12037
12038 fw_hdr = (struct bnx2x_fw_file_hdr *)firmware->data;
12039 sections = (struct bnx2x_fw_file_section *)fw_hdr;
12040
12041 /* Make sure none of the offsets and sizes make us read beyond
12042 * the end of the firmware data */
12043 for (i = 0; i < sizeof(*fw_hdr) / sizeof(*sections); i++) {
12044 offset = be32_to_cpu(sections[i].offset);
12045 len = be32_to_cpu(sections[i].len);
12046 if (offset + len > firmware->size) {
51c1a580 12047 BNX2X_ERR("Section %d length is out of bounds\n", i);
94a78b79
VZ
12048 return -EINVAL;
12049 }
12050 }
12051
12052 /* Likewise for the init_ops offsets */
12053 offset = be32_to_cpu(fw_hdr->init_ops_offsets.offset);
86564c3f 12054 ops_offsets = (__force __be16 *)(firmware->data + offset);
94a78b79
VZ
12055 num_ops = be32_to_cpu(fw_hdr->init_ops.len) / sizeof(struct raw_op);
12056
12057 for (i = 0; i < be32_to_cpu(fw_hdr->init_ops_offsets.len) / 2; i++) {
12058 if (be16_to_cpu(ops_offsets[i]) > num_ops) {
51c1a580 12059 BNX2X_ERR("Section offset %d is out of bounds\n", i);
94a78b79
VZ
12060 return -EINVAL;
12061 }
12062 }
12063
12064 /* Check FW version */
12065 offset = be32_to_cpu(fw_hdr->fw_version.offset);
12066 fw_ver = firmware->data + offset;
12067 if ((fw_ver[0] != BCM_5710_FW_MAJOR_VERSION) ||
12068 (fw_ver[1] != BCM_5710_FW_MINOR_VERSION) ||
12069 (fw_ver[2] != BCM_5710_FW_REVISION_VERSION) ||
12070 (fw_ver[3] != BCM_5710_FW_ENGINEERING_VERSION)) {
51c1a580
MS
12071 BNX2X_ERR("Bad FW version:%d.%d.%d.%d. Should be %d.%d.%d.%d\n",
12072 fw_ver[0], fw_ver[1], fw_ver[2], fw_ver[3],
12073 BCM_5710_FW_MAJOR_VERSION,
94a78b79
VZ
12074 BCM_5710_FW_MINOR_VERSION,
12075 BCM_5710_FW_REVISION_VERSION,
12076 BCM_5710_FW_ENGINEERING_VERSION);
ab6ad5a4 12077 return -EINVAL;
94a78b79
VZ
12078 }
12079
12080 return 0;
12081}
12082
1191cb83 12083static void be32_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 12084{
ab6ad5a4
EG
12085 const __be32 *source = (const __be32 *)_source;
12086 u32 *target = (u32 *)_target;
94a78b79 12087 u32 i;
94a78b79
VZ
12088
12089 for (i = 0; i < n/4; i++)
12090 target[i] = be32_to_cpu(source[i]);
12091}
12092
12093/*
12094 Ops array is stored in the following format:
12095 {op(8bit), offset(24bit, big endian), data(32bit, big endian)}
12096 */
1191cb83 12097static void bnx2x_prep_ops(const u8 *_source, u8 *_target, u32 n)
94a78b79 12098{
ab6ad5a4
EG
12099 const __be32 *source = (const __be32 *)_source;
12100 struct raw_op *target = (struct raw_op *)_target;
94a78b79 12101 u32 i, j, tmp;
94a78b79 12102
ab6ad5a4 12103 for (i = 0, j = 0; i < n/8; i++, j += 2) {
94a78b79
VZ
12104 tmp = be32_to_cpu(source[j]);
12105 target[i].op = (tmp >> 24) & 0xff;
cdaa7cb8
VZ
12106 target[i].offset = tmp & 0xffffff;
12107 target[i].raw_data = be32_to_cpu(source[j + 1]);
94a78b79
VZ
12108 }
12109}
ab6ad5a4 12110
1aa8b471 12111/* IRO array is stored in the following format:
523224a3
DK
12112 * {base(24bit), m1(16bit), m2(16bit), m3(16bit), size(16bit) }
12113 */
1191cb83 12114static void bnx2x_prep_iro(const u8 *_source, u8 *_target, u32 n)
523224a3
DK
12115{
12116 const __be32 *source = (const __be32 *)_source;
12117 struct iro *target = (struct iro *)_target;
12118 u32 i, j, tmp;
12119
12120 for (i = 0, j = 0; i < n/sizeof(struct iro); i++) {
12121 target[i].base = be32_to_cpu(source[j]);
12122 j++;
12123 tmp = be32_to_cpu(source[j]);
12124 target[i].m1 = (tmp >> 16) & 0xffff;
12125 target[i].m2 = tmp & 0xffff;
12126 j++;
12127 tmp = be32_to_cpu(source[j]);
12128 target[i].m3 = (tmp >> 16) & 0xffff;
12129 target[i].size = tmp & 0xffff;
12130 j++;
12131 }
12132}
12133
1191cb83 12134static void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 12135{
ab6ad5a4
EG
12136 const __be16 *source = (const __be16 *)_source;
12137 u16 *target = (u16 *)_target;
94a78b79 12138 u32 i;
94a78b79
VZ
12139
12140 for (i = 0; i < n/2; i++)
12141 target[i] = be16_to_cpu(source[i]);
12142}
12143
7995c64e
JP
12144#define BNX2X_ALLOC_AND_SET(arr, lbl, func) \
12145do { \
12146 u32 len = be32_to_cpu(fw_hdr->arr.len); \
12147 bp->arr = kmalloc(len, GFP_KERNEL); \
e404decb 12148 if (!bp->arr) \
7995c64e 12149 goto lbl; \
7995c64e
JP
12150 func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
12151 (u8 *)bp->arr, len); \
12152} while (0)
94a78b79 12153
3b603066 12154static int bnx2x_init_firmware(struct bnx2x *bp)
94a78b79 12155{
c0ea452e 12156 const char *fw_file_name;
94a78b79 12157 struct bnx2x_fw_file_hdr *fw_hdr;
45229b42 12158 int rc;
94a78b79 12159
c0ea452e
MS
12160 if (bp->firmware)
12161 return 0;
94a78b79 12162
c0ea452e
MS
12163 if (CHIP_IS_E1(bp))
12164 fw_file_name = FW_FILE_NAME_E1;
12165 else if (CHIP_IS_E1H(bp))
12166 fw_file_name = FW_FILE_NAME_E1H;
12167 else if (!CHIP_IS_E1x(bp))
12168 fw_file_name = FW_FILE_NAME_E2;
12169 else {
12170 BNX2X_ERR("Unsupported chip revision\n");
12171 return -EINVAL;
12172 }
12173 BNX2X_DEV_INFO("Loading %s\n", fw_file_name);
94a78b79 12174
c0ea452e
MS
12175 rc = request_firmware(&bp->firmware, fw_file_name, &bp->pdev->dev);
12176 if (rc) {
12177 BNX2X_ERR("Can't load firmware file %s\n",
12178 fw_file_name);
12179 goto request_firmware_exit;
12180 }
eb2afd4a 12181
c0ea452e
MS
12182 rc = bnx2x_check_firmware(bp);
12183 if (rc) {
12184 BNX2X_ERR("Corrupt firmware file %s\n", fw_file_name);
12185 goto request_firmware_exit;
94a78b79
VZ
12186 }
12187
12188 fw_hdr = (struct bnx2x_fw_file_hdr *)bp->firmware->data;
12189
12190 /* Initialize the pointers to the init arrays */
12191 /* Blob */
12192 BNX2X_ALLOC_AND_SET(init_data, request_firmware_exit, be32_to_cpu_n);
12193
12194 /* Opcodes */
12195 BNX2X_ALLOC_AND_SET(init_ops, init_ops_alloc_err, bnx2x_prep_ops);
12196
12197 /* Offsets */
ab6ad5a4
EG
12198 BNX2X_ALLOC_AND_SET(init_ops_offsets, init_offsets_alloc_err,
12199 be16_to_cpu_n);
94a78b79
VZ
12200
12201 /* STORMs firmware */
573f2035
EG
12202 INIT_TSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12203 be32_to_cpu(fw_hdr->tsem_int_table_data.offset);
12204 INIT_TSEM_PRAM_DATA(bp) = bp->firmware->data +
12205 be32_to_cpu(fw_hdr->tsem_pram_data.offset);
12206 INIT_USEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12207 be32_to_cpu(fw_hdr->usem_int_table_data.offset);
12208 INIT_USEM_PRAM_DATA(bp) = bp->firmware->data +
12209 be32_to_cpu(fw_hdr->usem_pram_data.offset);
12210 INIT_XSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12211 be32_to_cpu(fw_hdr->xsem_int_table_data.offset);
12212 INIT_XSEM_PRAM_DATA(bp) = bp->firmware->data +
12213 be32_to_cpu(fw_hdr->xsem_pram_data.offset);
12214 INIT_CSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
12215 be32_to_cpu(fw_hdr->csem_int_table_data.offset);
12216 INIT_CSEM_PRAM_DATA(bp) = bp->firmware->data +
12217 be32_to_cpu(fw_hdr->csem_pram_data.offset);
523224a3
DK
12218 /* IRO */
12219 BNX2X_ALLOC_AND_SET(iro_arr, iro_alloc_err, bnx2x_prep_iro);
94a78b79
VZ
12220
12221 return 0;
ab6ad5a4 12222
523224a3
DK
12223iro_alloc_err:
12224 kfree(bp->init_ops_offsets);
94a78b79
VZ
12225init_offsets_alloc_err:
12226 kfree(bp->init_ops);
12227init_ops_alloc_err:
12228 kfree(bp->init_data);
12229request_firmware_exit:
12230 release_firmware(bp->firmware);
127d0a19 12231 bp->firmware = NULL;
94a78b79
VZ
12232
12233 return rc;
12234}
12235
619c5cb6
VZ
12236static void bnx2x_release_firmware(struct bnx2x *bp)
12237{
12238 kfree(bp->init_ops_offsets);
12239 kfree(bp->init_ops);
12240 kfree(bp->init_data);
12241 release_firmware(bp->firmware);
eb2afd4a 12242 bp->firmware = NULL;
619c5cb6
VZ
12243}
12244
12245
12246static struct bnx2x_func_sp_drv_ops bnx2x_func_sp_drv = {
12247 .init_hw_cmn_chip = bnx2x_init_hw_common_chip,
12248 .init_hw_cmn = bnx2x_init_hw_common,
12249 .init_hw_port = bnx2x_init_hw_port,
12250 .init_hw_func = bnx2x_init_hw_func,
12251
12252 .reset_hw_cmn = bnx2x_reset_common,
12253 .reset_hw_port = bnx2x_reset_port,
12254 .reset_hw_func = bnx2x_reset_func,
12255
12256 .gunzip_init = bnx2x_gunzip_init,
12257 .gunzip_end = bnx2x_gunzip_end,
12258
12259 .init_fw = bnx2x_init_firmware,
12260 .release_fw = bnx2x_release_firmware,
12261};
12262
12263void bnx2x__init_func_obj(struct bnx2x *bp)
12264{
12265 /* Prepare DMAE related driver resources */
12266 bnx2x_setup_dmae(bp);
12267
12268 bnx2x_init_func_obj(bp, &bp->func_obj,
12269 bnx2x_sp(bp, func_rdata),
12270 bnx2x_sp_mapping(bp, func_rdata),
a3348722
BW
12271 bnx2x_sp(bp, func_afex_rdata),
12272 bnx2x_sp_mapping(bp, func_afex_rdata),
619c5cb6
VZ
12273 &bnx2x_func_sp_drv);
12274}
12275
12276/* must be called after sriov-enable */
1191cb83 12277static int bnx2x_set_qm_cid_count(struct bnx2x *bp)
523224a3 12278{
37ae41a9 12279 int cid_count = BNX2X_L2_MAX_CID(bp);
94a78b79 12280
290ca2bb
AE
12281 if (IS_SRIOV(bp))
12282 cid_count += BNX2X_VF_CIDS;
12283
55c11941
MS
12284 if (CNIC_SUPPORT(bp))
12285 cid_count += CNIC_CID_MAX;
290ca2bb 12286
523224a3
DK
12287 return roundup(cid_count, QM_CID_ROUND);
12288}
f85582f8 12289
619c5cb6 12290/**
6383c0b3 12291 * bnx2x_get_num_none_def_sbs - return the number of none default SBs
619c5cb6
VZ
12292 *
12293 * @dev: pci device
12294 *
12295 */
55c11941 12296static int bnx2x_get_num_non_def_sbs(struct pci_dev *pdev,
1ab4434c 12297 int cnic_cnt, bool is_vf)
619c5cb6 12298{
1ab4434c
AE
12299 int pos, index;
12300 u16 control = 0;
619c5cb6
VZ
12301
12302 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
6383c0b3
AE
12303
12304 /*
12305 * If MSI-X is not supported - return number of SBs needed to support
12306 * one fast path queue: one FP queue + SB for CNIC
12307 */
1ab4434c
AE
12308 if (!pos) {
12309 dev_info(&pdev->dev, "no msix capability found\n");
55c11941 12310 return 1 + cnic_cnt;
1ab4434c
AE
12311 }
12312 dev_info(&pdev->dev, "msix capability found\n");
619c5cb6 12313
6383c0b3
AE
12314 /*
12315 * The value in the PCI configuration space is the index of the last
12316 * entry, namely one less than the actual size of the table, which is
12317 * exactly what we want to return from this function: number of all SBs
12318 * without the default SB.
1ab4434c 12319 * For VFs there is no default SB, then we return (index+1).
6383c0b3 12320 */
619c5cb6 12321 pci_read_config_word(pdev, pos + PCI_MSI_FLAGS, &control);
619c5cb6 12322
1ab4434c 12323 index = control & PCI_MSIX_FLAGS_QSIZE;
4bd9b0ff 12324
1ab4434c
AE
12325 return is_vf ? index + 1 : index;
12326}
523224a3 12327
1ab4434c
AE
12328static int set_max_cos_est(int chip_id)
12329{
12330 switch (chip_id) {
f2e0899f
DK
12331 case BCM57710:
12332 case BCM57711:
12333 case BCM57711E:
1ab4434c 12334 return BNX2X_MULTI_TX_COS_E1X;
f2e0899f 12335 case BCM57712:
619c5cb6 12336 case BCM57712_MF:
1ab4434c
AE
12337 case BCM57712_VF:
12338 return BNX2X_MULTI_TX_COS_E2_E3A0;
619c5cb6
VZ
12339 case BCM57800:
12340 case BCM57800_MF:
1ab4434c 12341 case BCM57800_VF:
619c5cb6
VZ
12342 case BCM57810:
12343 case BCM57810_MF:
c3def943
YM
12344 case BCM57840_4_10:
12345 case BCM57840_2_20:
1ab4434c 12346 case BCM57840_O:
c3def943 12347 case BCM57840_MFO:
1ab4434c 12348 case BCM57810_VF:
619c5cb6 12349 case BCM57840_MF:
1ab4434c 12350 case BCM57840_VF:
7e8e02df
BW
12351 case BCM57811:
12352 case BCM57811_MF:
1ab4434c
AE
12353 case BCM57811_VF:
12354 return BNX2X_MULTI_TX_COS_E3B0;
12355 return 1;
f2e0899f 12356 default:
1ab4434c 12357 pr_err("Unknown board_type (%d), aborting\n", chip_id);
870634b0 12358 return -ENODEV;
f2e0899f 12359 }
1ab4434c 12360}
f2e0899f 12361
1ab4434c
AE
12362static int set_is_vf(int chip_id)
12363{
12364 switch (chip_id) {
12365 case BCM57712_VF:
12366 case BCM57800_VF:
12367 case BCM57810_VF:
12368 case BCM57840_VF:
12369 case BCM57811_VF:
12370 return true;
12371 default:
12372 return false;
12373 }
12374}
6383c0b3 12375
1ab4434c
AE
12376struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev);
12377
12378static int bnx2x_init_one(struct pci_dev *pdev,
12379 const struct pci_device_id *ent)
12380{
12381 struct net_device *dev = NULL;
12382 struct bnx2x *bp;
12383 int pcie_width, pcie_speed;
12384 int rc, max_non_def_sbs;
12385 int rx_count, tx_count, rss_count, doorbell_size;
12386 int max_cos_est;
12387 bool is_vf;
12388 int cnic_cnt;
12389
12390 /* An estimated maximum supported CoS number according to the chip
12391 * version.
12392 * We will try to roughly estimate the maximum number of CoSes this chip
12393 * may support in order to minimize the memory allocated for Tx
12394 * netdev_queue's. This number will be accurately calculated during the
12395 * initialization of bp->max_cos based on the chip versions AND chip
12396 * revision in the bnx2x_init_bp().
12397 */
12398 max_cos_est = set_max_cos_est(ent->driver_data);
12399 if (max_cos_est < 0)
12400 return max_cos_est;
12401 is_vf = set_is_vf(ent->driver_data);
12402 cnic_cnt = is_vf ? 0 : 1;
12403
12404 max_non_def_sbs = bnx2x_get_num_non_def_sbs(pdev, cnic_cnt, is_vf);
6383c0b3
AE
12405
12406 /* Maximum number of RSS queues: one IGU SB goes to CNIC */
1ab4434c
AE
12407 rss_count = is_vf ? 1 : max_non_def_sbs - cnic_cnt;
12408
12409 if (rss_count < 1)
12410 return -EINVAL;
6383c0b3
AE
12411
12412 /* Maximum number of netdev Rx queues: RSS + FCoE L2 */
55c11941 12413 rx_count = rss_count + cnic_cnt;
6383c0b3 12414
1ab4434c 12415 /* Maximum number of netdev Tx queues:
37ae41a9 12416 * Maximum TSS queues * Maximum supported number of CoS + FCoE L2
6383c0b3 12417 */
55c11941 12418 tx_count = rss_count * max_cos_est + cnic_cnt;
f85582f8 12419
a2fbb9ea 12420 /* dev zeroed in init_etherdev */
6383c0b3 12421 dev = alloc_etherdev_mqs(sizeof(*bp), tx_count, rx_count);
41de8d4c 12422 if (!dev)
a2fbb9ea
ET
12423 return -ENOMEM;
12424
a2fbb9ea 12425 bp = netdev_priv(dev);
a2fbb9ea 12426
1ab4434c
AE
12427 bp->flags = 0;
12428 if (is_vf)
12429 bp->flags |= IS_VF_FLAG;
12430
6383c0b3 12431 bp->igu_sb_cnt = max_non_def_sbs;
1ab4434c 12432 bp->igu_base_addr = IS_VF(bp) ? PXP_VF_ADDR_IGU_START : BAR_IGU_INTMEM;
6383c0b3 12433 bp->msg_enable = debug;
55c11941 12434 bp->cnic_support = cnic_cnt;
4bd9b0ff 12435 bp->cnic_probe = bnx2x_cnic_probe;
55c11941 12436
6383c0b3 12437 pci_set_drvdata(pdev, dev);
523224a3 12438
1ab4434c 12439 rc = bnx2x_init_dev(bp, pdev, dev, ent->driver_data);
a2fbb9ea
ET
12440 if (rc < 0) {
12441 free_netdev(dev);
12442 return rc;
12443 }
12444
1ab4434c
AE
12445 BNX2X_DEV_INFO("This is a %s function\n",
12446 IS_PF(bp) ? "physical" : "virtual");
55c11941 12447 BNX2X_DEV_INFO("Cnic support is %s\n", CNIC_SUPPORT(bp) ? "on" : "off");
1ab4434c 12448 BNX2X_DEV_INFO("Max num of status blocks %d\n", max_non_def_sbs);
60aa0509 12449 BNX2X_DEV_INFO("Allocated netdev with %d tx and %d rx queues\n",
2de67439 12450 tx_count, rx_count);
60aa0509 12451
34f80b04 12452 rc = bnx2x_init_bp(bp);
693fc0d1
EG
12453 if (rc)
12454 goto init_one_exit;
12455
1ab4434c
AE
12456 /* Map doorbells here as we need the real value of bp->max_cos which
12457 * is initialized in bnx2x_init_bp() to determine the number of
12458 * l2 connections.
6383c0b3 12459 */
1ab4434c 12460 if (IS_VF(bp)) {
6411280a
AE
12461 bnx2x_vf_map_doorbells(bp);
12462 rc = bnx2x_vf_pci_alloc(bp);
12463 if (rc)
12464 goto init_one_exit;
1ab4434c
AE
12465 } else {
12466 doorbell_size = BNX2X_L2_MAX_CID(bp) * (1 << BNX2X_DB_SHIFT);
12467 if (doorbell_size > pci_resource_len(pdev, 2)) {
12468 dev_err(&bp->pdev->dev,
12469 "Cannot map doorbells, bar size too small, aborting\n");
12470 rc = -ENOMEM;
12471 goto init_one_exit;
12472 }
12473 bp->doorbells = ioremap_nocache(pci_resource_start(pdev, 2),
12474 doorbell_size);
37ae41a9 12475 }
6383c0b3
AE
12476 if (!bp->doorbells) {
12477 dev_err(&bp->pdev->dev,
12478 "Cannot map doorbell space, aborting\n");
12479 rc = -ENOMEM;
12480 goto init_one_exit;
12481 }
12482
be1f1ffa
AE
12483 if (IS_VF(bp)) {
12484 rc = bnx2x_vfpf_acquire(bp, tx_count, rx_count);
12485 if (rc)
12486 goto init_one_exit;
12487 }
12488
3c76feff
AE
12489 /* Enable SRIOV if capability found in configuration space */
12490 rc = bnx2x_iov_init_one(bp, int_mode, BNX2X_MAX_NUM_OF_VFS);
290ca2bb
AE
12491 if (rc)
12492 goto init_one_exit;
12493
523224a3 12494 /* calc qm_cid_count */
6383c0b3 12495 bp->qm_cid_count = bnx2x_set_qm_cid_count(bp);
1ab4434c 12496 BNX2X_DEV_INFO("qm_cid_count %d\n", bp->qm_cid_count);
523224a3 12497
55c11941 12498 /* disable FCOE L2 queue for E1x*/
62ac0dc9 12499 if (CHIP_IS_E1x(bp))
ec6ba945
VZ
12500 bp->flags |= NO_FCOE_FLAG;
12501
0e8d2ec5
MS
12502 /* Set bp->num_queues for MSI-X mode*/
12503 bnx2x_set_num_queues(bp);
12504
25985edc 12505 /* Configure interrupt mode: try to enable MSI-X/MSI if
0e8d2ec5 12506 * needed.
d6214d7a 12507 */
1ab4434c
AE
12508 rc = bnx2x_set_int_mode(bp);
12509 if (rc) {
12510 dev_err(&pdev->dev, "Cannot set interrupts\n");
12511 goto init_one_exit;
12512 }
04c46736 12513 BNX2X_DEV_INFO("set interrupts successfully\n");
d6214d7a 12514
1ab4434c 12515 /* register the net device */
b340007f
VZ
12516 rc = register_netdev(dev);
12517 if (rc) {
12518 dev_err(&pdev->dev, "Cannot register net device\n");
12519 goto init_one_exit;
12520 }
1ab4434c 12521 BNX2X_DEV_INFO("device name after netdev register %s\n", dev->name);
b340007f 12522
55c11941 12523
ec6ba945
VZ
12524 if (!NO_FCOE(bp)) {
12525 /* Add storage MAC address */
12526 rtnl_lock();
12527 dev_addr_add(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12528 rtnl_unlock();
12529 }
ec6ba945 12530
37f9ce62 12531 bnx2x_get_pcie_width_speed(bp, &pcie_width, &pcie_speed);
1ab4434c
AE
12532 BNX2X_DEV_INFO("got pcie width %d and speed %d\n",
12533 pcie_width, pcie_speed);
d6214d7a 12534
51c1a580
MS
12535 BNX2X_DEV_INFO(
12536 "%s (%c%d) PCI-E x%d %s found at mem %lx, IRQ %d, node addr %pM\n",
94f05b0f
JP
12537 board_info[ent->driver_data].name,
12538 (CHIP_REV(bp) >> 12) + 'A', (CHIP_METAL(bp) >> 4),
12539 pcie_width,
12540 ((!CHIP_IS_E2(bp) && pcie_speed == 2) ||
12541 (CHIP_IS_E2(bp) && pcie_speed == 1)) ?
12542 "5GHz (Gen2)" : "2.5GHz",
12543 dev->base_addr, bp->pdev->irq, dev->dev_addr);
c016201c 12544
a2fbb9ea 12545 return 0;
34f80b04
EG
12546
12547init_one_exit:
12548 if (bp->regview)
12549 iounmap(bp->regview);
12550
1ab4434c 12551 if (IS_PF(bp) && bp->doorbells)
34f80b04
EG
12552 iounmap(bp->doorbells);
12553
12554 free_netdev(dev);
12555
12556 if (atomic_read(&pdev->enable_cnt) == 1)
12557 pci_release_regions(pdev);
12558
12559 pci_disable_device(pdev);
12560 pci_set_drvdata(pdev, NULL);
12561
12562 return rc;
a2fbb9ea
ET
12563}
12564
0329aba1 12565static void bnx2x_remove_one(struct pci_dev *pdev)
a2fbb9ea
ET
12566{
12567 struct net_device *dev = pci_get_drvdata(pdev);
228241eb
ET
12568 struct bnx2x *bp;
12569
12570 if (!dev) {
cdaa7cb8 12571 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
228241eb
ET
12572 return;
12573 }
228241eb 12574 bp = netdev_priv(dev);
a2fbb9ea 12575
ec6ba945
VZ
12576 /* Delete storage MAC address */
12577 if (!NO_FCOE(bp)) {
12578 rtnl_lock();
12579 dev_addr_del(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
12580 rtnl_unlock();
12581 }
ec6ba945 12582
98507672
SR
12583#ifdef BCM_DCBNL
12584 /* Delete app tlvs from dcbnl */
12585 bnx2x_dcbnl_update_applist(bp, true);
12586#endif
12587
a2fbb9ea
ET
12588 unregister_netdev(dev);
12589
084d6cbb 12590 /* Power on: we can't let PCI layer write to us while we are in D3 */
1ab4434c
AE
12591 if (IS_PF(bp))
12592 bnx2x_set_power_state(bp, PCI_D0);
084d6cbb 12593
d6214d7a
DK
12594 /* Disable MSI/MSI-X */
12595 bnx2x_disable_msi(bp);
f85582f8 12596
084d6cbb 12597 /* Power off */
1ab4434c
AE
12598 if (IS_PF(bp))
12599 bnx2x_set_power_state(bp, PCI_D3hot);
084d6cbb 12600
72fd0718 12601 /* Make sure RESET task is not scheduled before continuing */
7be08a72 12602 cancel_delayed_work_sync(&bp->sp_rtnl_task);
290ca2bb
AE
12603
12604 bnx2x_iov_remove_one(bp);
12605
4513f925
AE
12606 /* send message via vfpf channel to release the resources of this vf */
12607 if (IS_VF(bp))
12608 bnx2x_vfpf_release(bp);
72fd0718 12609
a2fbb9ea
ET
12610 if (bp->regview)
12611 iounmap(bp->regview);
12612
1ab4434c
AE
12613 /* for vf doorbells are part of the regview and were unmapped along with
12614 * it. FW is only loaded by PF.
12615 */
12616 if (IS_PF(bp)) {
12617 if (bp->doorbells)
12618 iounmap(bp->doorbells);
eb2afd4a 12619
1ab4434c
AE
12620 bnx2x_release_firmware(bp);
12621 }
523224a3
DK
12622 bnx2x_free_mem_bp(bp);
12623
a2fbb9ea 12624 free_netdev(dev);
34f80b04
EG
12625
12626 if (atomic_read(&pdev->enable_cnt) == 1)
12627 pci_release_regions(pdev);
12628
a2fbb9ea
ET
12629 pci_disable_device(pdev);
12630 pci_set_drvdata(pdev, NULL);
12631}
12632
f8ef6e44
YG
12633static int bnx2x_eeh_nic_unload(struct bnx2x *bp)
12634{
12635 int i;
12636
12637 bp->state = BNX2X_STATE_ERROR;
12638
12639 bp->rx_mode = BNX2X_RX_MODE_NONE;
12640
55c11941
MS
12641 if (CNIC_LOADED(bp))
12642 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
12643
619c5cb6
VZ
12644 /* Stop Tx */
12645 bnx2x_tx_disable(bp);
12646
f8ef6e44 12647 bnx2x_netif_stop(bp, 0);
26614ba5
MS
12648 /* Delete all NAPI objects */
12649 bnx2x_del_all_napi(bp);
55c11941
MS
12650 if (CNIC_LOADED(bp))
12651 bnx2x_del_all_napi_cnic(bp);
f8ef6e44
YG
12652
12653 del_timer_sync(&bp->timer);
619c5cb6
VZ
12654
12655 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
f8ef6e44
YG
12656
12657 /* Release IRQs */
d6214d7a 12658 bnx2x_free_irq(bp);
f8ef6e44 12659
f8ef6e44
YG
12660 /* Free SKBs, SGEs, TPA pool and driver internals */
12661 bnx2x_free_skbs(bp);
523224a3 12662
ec6ba945 12663 for_each_rx_queue(bp, i)
f8ef6e44 12664 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
d6214d7a 12665
f8ef6e44
YG
12666 bnx2x_free_mem(bp);
12667
12668 bp->state = BNX2X_STATE_CLOSED;
12669
619c5cb6
VZ
12670 netif_carrier_off(bp->dev);
12671
f8ef6e44
YG
12672 return 0;
12673}
12674
12675static void bnx2x_eeh_recover(struct bnx2x *bp)
12676{
12677 u32 val;
12678
12679 mutex_init(&bp->port.phy_mutex);
12680
f8ef6e44
YG
12681
12682 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
12683 if ((val & (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12684 != (SHR_MEM_VALIDITY_DEV_INFO | SHR_MEM_VALIDITY_MB))
12685 BNX2X_ERR("BAD MCP validity signature\n");
f8ef6e44
YG
12686}
12687
493adb1f
WX
12688/**
12689 * bnx2x_io_error_detected - called when PCI error is detected
12690 * @pdev: Pointer to PCI device
12691 * @state: The current pci connection state
12692 *
12693 * This function is called after a PCI bus error affecting
12694 * this device has been detected.
12695 */
12696static pci_ers_result_t bnx2x_io_error_detected(struct pci_dev *pdev,
12697 pci_channel_state_t state)
12698{
12699 struct net_device *dev = pci_get_drvdata(pdev);
12700 struct bnx2x *bp = netdev_priv(dev);
12701
12702 rtnl_lock();
12703
12704 netif_device_detach(dev);
12705
07ce50e4
DN
12706 if (state == pci_channel_io_perm_failure) {
12707 rtnl_unlock();
12708 return PCI_ERS_RESULT_DISCONNECT;
12709 }
12710
493adb1f 12711 if (netif_running(dev))
f8ef6e44 12712 bnx2x_eeh_nic_unload(bp);
493adb1f
WX
12713
12714 pci_disable_device(pdev);
12715
12716 rtnl_unlock();
12717
12718 /* Request a slot reset */
12719 return PCI_ERS_RESULT_NEED_RESET;
12720}
12721
12722/**
12723 * bnx2x_io_slot_reset - called after the PCI bus has been reset
12724 * @pdev: Pointer to PCI device
12725 *
12726 * Restart the card from scratch, as if from a cold-boot.
12727 */
12728static pci_ers_result_t bnx2x_io_slot_reset(struct pci_dev *pdev)
12729{
12730 struct net_device *dev = pci_get_drvdata(pdev);
12731 struct bnx2x *bp = netdev_priv(dev);
12732
12733 rtnl_lock();
12734
12735 if (pci_enable_device(pdev)) {
12736 dev_err(&pdev->dev,
12737 "Cannot re-enable PCI device after reset\n");
12738 rtnl_unlock();
12739 return PCI_ERS_RESULT_DISCONNECT;
12740 }
12741
12742 pci_set_master(pdev);
12743 pci_restore_state(pdev);
12744
12745 if (netif_running(dev))
12746 bnx2x_set_power_state(bp, PCI_D0);
12747
12748 rtnl_unlock();
12749
12750 return PCI_ERS_RESULT_RECOVERED;
12751}
12752
12753/**
12754 * bnx2x_io_resume - called when traffic can start flowing again
12755 * @pdev: Pointer to PCI device
12756 *
12757 * This callback is called when the error recovery driver tells us that
12758 * its OK to resume normal operation.
12759 */
12760static void bnx2x_io_resume(struct pci_dev *pdev)
12761{
12762 struct net_device *dev = pci_get_drvdata(pdev);
12763 struct bnx2x *bp = netdev_priv(dev);
12764
72fd0718 12765 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 12766 netdev_err(bp->dev, "Handling parity error recovery. Try again later\n");
72fd0718
VZ
12767 return;
12768 }
12769
493adb1f
WX
12770 rtnl_lock();
12771
f8ef6e44
YG
12772 bnx2x_eeh_recover(bp);
12773
493adb1f 12774 if (netif_running(dev))
f8ef6e44 12775 bnx2x_nic_load(bp, LOAD_NORMAL);
493adb1f
WX
12776
12777 netif_device_attach(dev);
12778
12779 rtnl_unlock();
12780}
12781
3646f0e5 12782static const struct pci_error_handlers bnx2x_err_handler = {
493adb1f 12783 .error_detected = bnx2x_io_error_detected,
356e2385
EG
12784 .slot_reset = bnx2x_io_slot_reset,
12785 .resume = bnx2x_io_resume,
493adb1f
WX
12786};
12787
a2fbb9ea 12788static struct pci_driver bnx2x_pci_driver = {
493adb1f
WX
12789 .name = DRV_MODULE_NAME,
12790 .id_table = bnx2x_pci_tbl,
12791 .probe = bnx2x_init_one,
0329aba1 12792 .remove = bnx2x_remove_one,
493adb1f
WX
12793 .suspend = bnx2x_suspend,
12794 .resume = bnx2x_resume,
12795 .err_handler = &bnx2x_err_handler,
3c76feff
AE
12796#ifdef CONFIG_BNX2X_SRIOV
12797 .sriov_configure = bnx2x_sriov_configure,
12798#endif
a2fbb9ea
ET
12799};
12800
12801static int __init bnx2x_init(void)
12802{
dd21ca6d
SG
12803 int ret;
12804
7995c64e 12805 pr_info("%s", version);
938cf541 12806
1cf167f2
EG
12807 bnx2x_wq = create_singlethread_workqueue("bnx2x");
12808 if (bnx2x_wq == NULL) {
7995c64e 12809 pr_err("Cannot create workqueue\n");
1cf167f2
EG
12810 return -ENOMEM;
12811 }
12812
dd21ca6d
SG
12813 ret = pci_register_driver(&bnx2x_pci_driver);
12814 if (ret) {
7995c64e 12815 pr_err("Cannot register driver\n");
dd21ca6d
SG
12816 destroy_workqueue(bnx2x_wq);
12817 }
12818 return ret;
a2fbb9ea
ET
12819}
12820
12821static void __exit bnx2x_cleanup(void)
12822{
452427b0 12823 struct list_head *pos, *q;
a2fbb9ea 12824 pci_unregister_driver(&bnx2x_pci_driver);
1cf167f2
EG
12825
12826 destroy_workqueue(bnx2x_wq);
452427b0
YM
12827
12828 /* Free globablly allocated resources */
12829 list_for_each_safe(pos, q, &bnx2x_prev_list) {
12830 struct bnx2x_prev_path_list *tmp =
12831 list_entry(pos, struct bnx2x_prev_path_list, list);
12832 list_del(pos);
12833 kfree(tmp);
12834 }
a2fbb9ea
ET
12835}
12836
3deb8167
YR
12837void bnx2x_notify_link_changed(struct bnx2x *bp)
12838{
12839 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + BP_FUNC(bp)*sizeof(u32), 1);
12840}
12841
a2fbb9ea
ET
12842module_init(bnx2x_init);
12843module_exit(bnx2x_cleanup);
12844
619c5cb6
VZ
12845/**
12846 * bnx2x_set_iscsi_eth_mac_addr - set iSCSI MAC(s).
12847 *
12848 * @bp: driver handle
12849 * @set: set or clear the CAM entry
12850 *
12851 * This function will wait until the ramdord completion returns.
12852 * Return 0 if success, -ENODEV if ramrod doesn't return.
12853 */
1191cb83 12854static int bnx2x_set_iscsi_eth_mac_addr(struct bnx2x *bp)
619c5cb6
VZ
12855{
12856 unsigned long ramrod_flags = 0;
12857
12858 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
12859 return bnx2x_set_mac_one(bp, bp->cnic_eth_dev.iscsi_mac,
12860 &bp->iscsi_l2_mac_obj, true,
12861 BNX2X_ISCSI_ETH_MAC, &ramrod_flags);
12862}
993ac7b5
MC
12863
12864/* count denotes the number of new completions we have seen */
12865static void bnx2x_cnic_sp_post(struct bnx2x *bp, int count)
12866{
12867 struct eth_spe *spe;
a052997e 12868 int cxt_index, cxt_offset;
993ac7b5
MC
12869
12870#ifdef BNX2X_STOP_ON_ERROR
12871 if (unlikely(bp->panic))
12872 return;
12873#endif
12874
12875 spin_lock_bh(&bp->spq_lock);
c2bff63f 12876 BUG_ON(bp->cnic_spq_pending < count);
993ac7b5
MC
12877 bp->cnic_spq_pending -= count;
12878
993ac7b5 12879
c2bff63f
DK
12880 for (; bp->cnic_kwq_pending; bp->cnic_kwq_pending--) {
12881 u16 type = (le16_to_cpu(bp->cnic_kwq_cons->hdr.type)
12882 & SPE_HDR_CONN_TYPE) >>
12883 SPE_HDR_CONN_TYPE_SHIFT;
619c5cb6
VZ
12884 u8 cmd = (le32_to_cpu(bp->cnic_kwq_cons->hdr.conn_and_cmd_data)
12885 >> SPE_HDR_CMD_ID_SHIFT) & 0xff;
c2bff63f
DK
12886
12887 /* Set validation for iSCSI L2 client before sending SETUP
12888 * ramrod
12889 */
12890 if (type == ETH_CONNECTION_TYPE) {
a052997e 12891 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP) {
37ae41a9 12892 cxt_index = BNX2X_ISCSI_ETH_CID(bp) /
a052997e 12893 ILT_PAGE_CIDS;
37ae41a9 12894 cxt_offset = BNX2X_ISCSI_ETH_CID(bp) -
a052997e
MS
12895 (cxt_index * ILT_PAGE_CIDS);
12896 bnx2x_set_ctx_validation(bp,
12897 &bp->context[cxt_index].
12898 vcxt[cxt_offset].eth,
37ae41a9 12899 BNX2X_ISCSI_ETH_CID(bp));
a052997e 12900 }
c2bff63f
DK
12901 }
12902
619c5cb6
VZ
12903 /*
12904 * There may be not more than 8 L2, not more than 8 L5 SPEs
12905 * and in the air. We also check that number of outstanding
6e30dd4e
VZ
12906 * COMMON ramrods is not more than the EQ and SPQ can
12907 * accommodate.
c2bff63f 12908 */
6e30dd4e
VZ
12909 if (type == ETH_CONNECTION_TYPE) {
12910 if (!atomic_read(&bp->cq_spq_left))
12911 break;
12912 else
12913 atomic_dec(&bp->cq_spq_left);
12914 } else if (type == NONE_CONNECTION_TYPE) {
12915 if (!atomic_read(&bp->eq_spq_left))
c2bff63f
DK
12916 break;
12917 else
6e30dd4e 12918 atomic_dec(&bp->eq_spq_left);
ec6ba945
VZ
12919 } else if ((type == ISCSI_CONNECTION_TYPE) ||
12920 (type == FCOE_CONNECTION_TYPE)) {
c2bff63f
DK
12921 if (bp->cnic_spq_pending >=
12922 bp->cnic_eth_dev.max_kwqe_pending)
12923 break;
12924 else
12925 bp->cnic_spq_pending++;
12926 } else {
12927 BNX2X_ERR("Unknown SPE type: %d\n", type);
12928 bnx2x_panic();
993ac7b5 12929 break;
c2bff63f 12930 }
993ac7b5
MC
12931
12932 spe = bnx2x_sp_get_next(bp);
12933 *spe = *bp->cnic_kwq_cons;
12934
51c1a580 12935 DP(BNX2X_MSG_SP, "pending on SPQ %d, on KWQ %d count %d\n",
993ac7b5
MC
12936 bp->cnic_spq_pending, bp->cnic_kwq_pending, count);
12937
12938 if (bp->cnic_kwq_cons == bp->cnic_kwq_last)
12939 bp->cnic_kwq_cons = bp->cnic_kwq;
12940 else
12941 bp->cnic_kwq_cons++;
12942 }
12943 bnx2x_sp_prod_update(bp);
12944 spin_unlock_bh(&bp->spq_lock);
12945}
12946
12947static int bnx2x_cnic_sp_queue(struct net_device *dev,
12948 struct kwqe_16 *kwqes[], u32 count)
12949{
12950 struct bnx2x *bp = netdev_priv(dev);
12951 int i;
12952
12953#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
12954 if (unlikely(bp->panic)) {
12955 BNX2X_ERR("Can't post to SP queue while panic\n");
993ac7b5 12956 return -EIO;
51c1a580 12957 }
993ac7b5
MC
12958#endif
12959
95c6c616
AE
12960 if ((bp->recovery_state != BNX2X_RECOVERY_DONE) &&
12961 (bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
51c1a580 12962 BNX2X_ERR("Handling parity error recovery. Try again later\n");
95c6c616
AE
12963 return -EAGAIN;
12964 }
12965
993ac7b5
MC
12966 spin_lock_bh(&bp->spq_lock);
12967
12968 for (i = 0; i < count; i++) {
12969 struct eth_spe *spe = (struct eth_spe *)kwqes[i];
12970
12971 if (bp->cnic_kwq_pending == MAX_SP_DESC_CNT)
12972 break;
12973
12974 *bp->cnic_kwq_prod = *spe;
12975
12976 bp->cnic_kwq_pending++;
12977
51c1a580 12978 DP(BNX2X_MSG_SP, "L5 SPQE %x %x %x:%x pos %d\n",
993ac7b5 12979 spe->hdr.conn_and_cmd_data, spe->hdr.type,
523224a3
DK
12980 spe->data.update_data_addr.hi,
12981 spe->data.update_data_addr.lo,
993ac7b5
MC
12982 bp->cnic_kwq_pending);
12983
12984 if (bp->cnic_kwq_prod == bp->cnic_kwq_last)
12985 bp->cnic_kwq_prod = bp->cnic_kwq;
12986 else
12987 bp->cnic_kwq_prod++;
12988 }
12989
12990 spin_unlock_bh(&bp->spq_lock);
12991
12992 if (bp->cnic_spq_pending < bp->cnic_eth_dev.max_kwqe_pending)
12993 bnx2x_cnic_sp_post(bp, 0);
12994
12995 return i;
12996}
12997
12998static int bnx2x_cnic_ctl_send(struct bnx2x *bp, struct cnic_ctl_info *ctl)
12999{
13000 struct cnic_ops *c_ops;
13001 int rc = 0;
13002
13003 mutex_lock(&bp->cnic_mutex);
13707f9e
ED
13004 c_ops = rcu_dereference_protected(bp->cnic_ops,
13005 lockdep_is_held(&bp->cnic_mutex));
993ac7b5
MC
13006 if (c_ops)
13007 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
13008 mutex_unlock(&bp->cnic_mutex);
13009
13010 return rc;
13011}
13012
13013static int bnx2x_cnic_ctl_send_bh(struct bnx2x *bp, struct cnic_ctl_info *ctl)
13014{
13015 struct cnic_ops *c_ops;
13016 int rc = 0;
13017
13018 rcu_read_lock();
13019 c_ops = rcu_dereference(bp->cnic_ops);
13020 if (c_ops)
13021 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
13022 rcu_read_unlock();
13023
13024 return rc;
13025}
13026
13027/*
13028 * for commands that have no data
13029 */
9f6c9258 13030int bnx2x_cnic_notify(struct bnx2x *bp, int cmd)
993ac7b5
MC
13031{
13032 struct cnic_ctl_info ctl = {0};
13033
13034 ctl.cmd = cmd;
13035
13036 return bnx2x_cnic_ctl_send(bp, &ctl);
13037}
13038
619c5cb6 13039static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err)
993ac7b5 13040{
619c5cb6 13041 struct cnic_ctl_info ctl = {0};
993ac7b5
MC
13042
13043 /* first we tell CNIC and only then we count this as a completion */
13044 ctl.cmd = CNIC_CTL_COMPLETION_CMD;
13045 ctl.data.comp.cid = cid;
619c5cb6 13046 ctl.data.comp.error = err;
993ac7b5
MC
13047
13048 bnx2x_cnic_ctl_send_bh(bp, &ctl);
c2bff63f 13049 bnx2x_cnic_sp_post(bp, 0);
993ac7b5
MC
13050}
13051
619c5cb6
VZ
13052
13053/* Called with netif_addr_lock_bh() taken.
13054 * Sets an rx_mode config for an iSCSI ETH client.
13055 * Doesn't block.
13056 * Completion should be checked outside.
13057 */
13058static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start)
13059{
13060 unsigned long accept_flags = 0, ramrod_flags = 0;
13061 u8 cl_id = bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
13062 int sched_state = BNX2X_FILTER_ISCSI_ETH_STOP_SCHED;
13063
13064 if (start) {
13065 /* Start accepting on iSCSI L2 ring. Accept all multicasts
13066 * because it's the only way for UIO Queue to accept
13067 * multicasts (in non-promiscuous mode only one Queue per
13068 * function will receive multicast packets (leading in our
13069 * case).
13070 */
13071 __set_bit(BNX2X_ACCEPT_UNICAST, &accept_flags);
13072 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &accept_flags);
13073 __set_bit(BNX2X_ACCEPT_BROADCAST, &accept_flags);
13074 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &accept_flags);
13075
13076 /* Clear STOP_PENDING bit if START is requested */
13077 clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &bp->sp_state);
13078
13079 sched_state = BNX2X_FILTER_ISCSI_ETH_START_SCHED;
13080 } else
13081 /* Clear START_PENDING bit if STOP is requested */
13082 clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &bp->sp_state);
13083
13084 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
13085 set_bit(sched_state, &bp->sp_state);
13086 else {
13087 __set_bit(RAMROD_RX, &ramrod_flags);
13088 bnx2x_set_q_rx_mode(bp, cl_id, 0, accept_flags, 0,
13089 ramrod_flags);
13090 }
13091}
13092
13093
993ac7b5
MC
13094static int bnx2x_drv_ctl(struct net_device *dev, struct drv_ctl_info *ctl)
13095{
13096 struct bnx2x *bp = netdev_priv(dev);
13097 int rc = 0;
13098
13099 switch (ctl->cmd) {
13100 case DRV_CTL_CTXTBL_WR_CMD: {
13101 u32 index = ctl->data.io.offset;
13102 dma_addr_t addr = ctl->data.io.dma_addr;
13103
13104 bnx2x_ilt_wr(bp, index, addr);
13105 break;
13106 }
13107
c2bff63f
DK
13108 case DRV_CTL_RET_L5_SPQ_CREDIT_CMD: {
13109 int count = ctl->data.credit.credit_count;
993ac7b5
MC
13110
13111 bnx2x_cnic_sp_post(bp, count);
13112 break;
13113 }
13114
13115 /* rtnl_lock is held. */
13116 case DRV_CTL_START_L2_CMD: {
619c5cb6
VZ
13117 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13118 unsigned long sp_bits = 0;
13119
13120 /* Configure the iSCSI classification object */
13121 bnx2x_init_mac_obj(bp, &bp->iscsi_l2_mac_obj,
13122 cp->iscsi_l2_client_id,
13123 cp->iscsi_l2_cid, BP_FUNC(bp),
13124 bnx2x_sp(bp, mac_rdata),
13125 bnx2x_sp_mapping(bp, mac_rdata),
13126 BNX2X_FILTER_MAC_PENDING,
13127 &bp->sp_state, BNX2X_OBJ_TYPE_RX,
13128 &bp->macs_pool);
ec6ba945 13129
523224a3 13130 /* Set iSCSI MAC address */
619c5cb6
VZ
13131 rc = bnx2x_set_iscsi_eth_mac_addr(bp);
13132 if (rc)
13133 break;
523224a3
DK
13134
13135 mmiowb();
13136 barrier();
13137
619c5cb6
VZ
13138 /* Start accepting on iSCSI L2 ring */
13139
13140 netif_addr_lock_bh(dev);
13141 bnx2x_set_iscsi_eth_rx_mode(bp, true);
13142 netif_addr_unlock_bh(dev);
13143
13144 /* bits to wait on */
13145 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
13146 __set_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &sp_bits);
13147
13148 if (!bnx2x_wait_sp_comp(bp, sp_bits))
13149 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3 13150
993ac7b5
MC
13151 break;
13152 }
13153
13154 /* rtnl_lock is held. */
13155 case DRV_CTL_STOP_L2_CMD: {
619c5cb6 13156 unsigned long sp_bits = 0;
993ac7b5 13157
523224a3 13158 /* Stop accepting on iSCSI L2 ring */
619c5cb6
VZ
13159 netif_addr_lock_bh(dev);
13160 bnx2x_set_iscsi_eth_rx_mode(bp, false);
13161 netif_addr_unlock_bh(dev);
13162
13163 /* bits to wait on */
13164 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
13165 __set_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &sp_bits);
13166
13167 if (!bnx2x_wait_sp_comp(bp, sp_bits))
13168 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3
DK
13169
13170 mmiowb();
13171 barrier();
13172
13173 /* Unset iSCSI L2 MAC */
619c5cb6
VZ
13174 rc = bnx2x_del_all_macs(bp, &bp->iscsi_l2_mac_obj,
13175 BNX2X_ISCSI_ETH_MAC, true);
993ac7b5
MC
13176 break;
13177 }
c2bff63f
DK
13178 case DRV_CTL_RET_L2_SPQ_CREDIT_CMD: {
13179 int count = ctl->data.credit.credit_count;
13180
13181 smp_mb__before_atomic_inc();
6e30dd4e 13182 atomic_add(count, &bp->cq_spq_left);
c2bff63f
DK
13183 smp_mb__after_atomic_inc();
13184 break;
13185 }
1d187b34 13186 case DRV_CTL_ULP_REGISTER_CMD: {
2e499d3c 13187 int ulp_type = ctl->data.register_data.ulp_type;
1d187b34
BW
13188
13189 if (CHIP_IS_E3(bp)) {
13190 int idx = BP_FW_MB_IDX(bp);
2e499d3c
BW
13191 u32 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
13192 int path = BP_PATH(bp);
13193 int port = BP_PORT(bp);
13194 int i;
13195 u32 scratch_offset;
13196 u32 *host_addr;
1d187b34 13197
2e499d3c 13198 /* first write capability to shmem2 */
1d187b34
BW
13199 if (ulp_type == CNIC_ULP_ISCSI)
13200 cap |= DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
13201 else if (ulp_type == CNIC_ULP_FCOE)
13202 cap |= DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
13203 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
2e499d3c
BW
13204
13205 if ((ulp_type != CNIC_ULP_FCOE) ||
13206 (!SHMEM2_HAS(bp, ncsi_oem_data_addr)) ||
13207 (!(bp->flags & BC_SUPPORTS_FCOE_FEATURES)))
13208 break;
13209
13210 /* if reached here - should write fcoe capabilities */
13211 scratch_offset = SHMEM2_RD(bp, ncsi_oem_data_addr);
13212 if (!scratch_offset)
13213 break;
13214 scratch_offset += offsetof(struct glob_ncsi_oem_data,
13215 fcoe_features[path][port]);
13216 host_addr = (u32 *) &(ctl->data.register_data.
13217 fcoe_features);
13218 for (i = 0; i < sizeof(struct fcoe_capabilities);
13219 i += 4)
13220 REG_WR(bp, scratch_offset + i,
13221 *(host_addr + i/4));
1d187b34
BW
13222 }
13223 break;
13224 }
2e499d3c 13225
1d187b34
BW
13226 case DRV_CTL_ULP_UNREGISTER_CMD: {
13227 int ulp_type = ctl->data.ulp_type;
13228
13229 if (CHIP_IS_E3(bp)) {
13230 int idx = BP_FW_MB_IDX(bp);
13231 u32 cap;
13232
13233 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
13234 if (ulp_type == CNIC_ULP_ISCSI)
13235 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
13236 else if (ulp_type == CNIC_ULP_FCOE)
13237 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
13238 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
13239 }
13240 break;
13241 }
993ac7b5
MC
13242
13243 default:
13244 BNX2X_ERR("unknown command %x\n", ctl->cmd);
13245 rc = -EINVAL;
13246 }
13247
13248 return rc;
13249}
13250
9f6c9258 13251void bnx2x_setup_cnic_irq_info(struct bnx2x *bp)
993ac7b5
MC
13252{
13253 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13254
13255 if (bp->flags & USING_MSIX_FLAG) {
13256 cp->drv_state |= CNIC_DRV_STATE_USING_MSIX;
13257 cp->irq_arr[0].irq_flags |= CNIC_IRQ_FL_MSIX;
13258 cp->irq_arr[0].vector = bp->msix_table[1].vector;
13259 } else {
13260 cp->drv_state &= ~CNIC_DRV_STATE_USING_MSIX;
13261 cp->irq_arr[0].irq_flags &= ~CNIC_IRQ_FL_MSIX;
13262 }
619c5cb6 13263 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
13264 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e2_sb;
13265 else
13266 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e1x_sb;
13267
619c5cb6
VZ
13268 cp->irq_arr[0].status_blk_num = bnx2x_cnic_fw_sb_id(bp);
13269 cp->irq_arr[0].status_blk_num2 = bnx2x_cnic_igu_sb_id(bp);
993ac7b5
MC
13270 cp->irq_arr[1].status_blk = bp->def_status_blk;
13271 cp->irq_arr[1].status_blk_num = DEF_SB_ID;
523224a3 13272 cp->irq_arr[1].status_blk_num2 = DEF_SB_IGU_ID;
993ac7b5
MC
13273
13274 cp->num_irq = 2;
13275}
13276
37ae41a9
MS
13277void bnx2x_setup_cnic_info(struct bnx2x *bp)
13278{
13279 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13280
13281
13282 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
13283 bnx2x_cid_ilt_lines(bp);
13284 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
13285 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
13286 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
13287
13288 if (NO_ISCSI_OOO(bp))
13289 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
13290}
13291
993ac7b5
MC
13292static int bnx2x_register_cnic(struct net_device *dev, struct cnic_ops *ops,
13293 void *data)
13294{
13295 struct bnx2x *bp = netdev_priv(dev);
13296 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
55c11941
MS
13297 int rc;
13298
13299 DP(NETIF_MSG_IFUP, "Register_cnic called\n");
993ac7b5 13300
51c1a580
MS
13301 if (ops == NULL) {
13302 BNX2X_ERR("NULL ops received\n");
993ac7b5 13303 return -EINVAL;
51c1a580 13304 }
993ac7b5 13305
55c11941
MS
13306 if (!CNIC_SUPPORT(bp)) {
13307 BNX2X_ERR("Can't register CNIC when not supported\n");
13308 return -EOPNOTSUPP;
13309 }
13310
13311 if (!CNIC_LOADED(bp)) {
13312 rc = bnx2x_load_cnic(bp);
13313 if (rc) {
13314 BNX2X_ERR("CNIC-related load failed\n");
13315 return rc;
13316 }
13317
13318 }
13319
13320 bp->cnic_enabled = true;
13321
993ac7b5
MC
13322 bp->cnic_kwq = kzalloc(PAGE_SIZE, GFP_KERNEL);
13323 if (!bp->cnic_kwq)
13324 return -ENOMEM;
13325
13326 bp->cnic_kwq_cons = bp->cnic_kwq;
13327 bp->cnic_kwq_prod = bp->cnic_kwq;
13328 bp->cnic_kwq_last = bp->cnic_kwq + MAX_SP_DESC_CNT;
13329
13330 bp->cnic_spq_pending = 0;
13331 bp->cnic_kwq_pending = 0;
13332
13333 bp->cnic_data = data;
13334
13335 cp->num_irq = 0;
619c5cb6 13336 cp->drv_state |= CNIC_DRV_STATE_REGD;
523224a3 13337 cp->iro_arr = bp->iro_arr;
993ac7b5 13338
993ac7b5 13339 bnx2x_setup_cnic_irq_info(bp);
c2bff63f 13340
993ac7b5
MC
13341 rcu_assign_pointer(bp->cnic_ops, ops);
13342
13343 return 0;
13344}
13345
13346static int bnx2x_unregister_cnic(struct net_device *dev)
13347{
13348 struct bnx2x *bp = netdev_priv(dev);
13349 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13350
13351 mutex_lock(&bp->cnic_mutex);
993ac7b5 13352 cp->drv_state = 0;
2cfa5a04 13353 RCU_INIT_POINTER(bp->cnic_ops, NULL);
993ac7b5
MC
13354 mutex_unlock(&bp->cnic_mutex);
13355 synchronize_rcu();
13356 kfree(bp->cnic_kwq);
13357 bp->cnic_kwq = NULL;
13358
13359 return 0;
13360}
13361
13362struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev)
13363{
13364 struct bnx2x *bp = netdev_priv(dev);
13365 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
13366
2ba45142
VZ
13367 /* If both iSCSI and FCoE are disabled - return NULL in
13368 * order to indicate CNIC that it should not try to work
13369 * with this device.
13370 */
13371 if (NO_ISCSI(bp) && NO_FCOE(bp))
13372 return NULL;
13373
993ac7b5
MC
13374 cp->drv_owner = THIS_MODULE;
13375 cp->chip_id = CHIP_ID(bp);
13376 cp->pdev = bp->pdev;
13377 cp->io_base = bp->regview;
13378 cp->io_base2 = bp->doorbells;
13379 cp->max_kwqe_pending = 8;
523224a3 13380 cp->ctx_blk_size = CDU_ILT_PAGE_SZ;
c2bff63f
DK
13381 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
13382 bnx2x_cid_ilt_lines(bp);
993ac7b5 13383 cp->ctx_tbl_len = CNIC_ILT_LINES;
c2bff63f 13384 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
993ac7b5
MC
13385 cp->drv_submit_kwqes_16 = bnx2x_cnic_sp_queue;
13386 cp->drv_ctl = bnx2x_drv_ctl;
13387 cp->drv_register_cnic = bnx2x_register_cnic;
13388 cp->drv_unregister_cnic = bnx2x_unregister_cnic;
37ae41a9 13389 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
619c5cb6
VZ
13390 cp->iscsi_l2_client_id =
13391 bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
37ae41a9 13392 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
c2bff63f 13393
2ba45142
VZ
13394 if (NO_ISCSI_OOO(bp))
13395 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
13396
13397 if (NO_ISCSI(bp))
13398 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI;
13399
13400 if (NO_FCOE(bp))
13401 cp->drv_state |= CNIC_DRV_STATE_NO_FCOE;
13402
51c1a580
MS
13403 BNX2X_DEV_INFO(
13404 "page_size %d, tbl_offset %d, tbl_lines %d, starting cid %d\n",
c2bff63f
DK
13405 cp->ctx_blk_size,
13406 cp->ctx_tbl_offset,
13407 cp->ctx_tbl_len,
13408 cp->starting_cid);
993ac7b5
MC
13409 return cp;
13410}
993ac7b5 13411
6411280a 13412u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp)
9b176b6b 13413{
6411280a
AE
13414 struct bnx2x *bp = fp->bp;
13415 u32 offset = BAR_USTRORM_INTMEM;
abc5a021 13416
6411280a
AE
13417 if (IS_VF(bp))
13418 return bnx2x_vf_ustorm_prods_offset(bp, fp);
13419 else if (!CHIP_IS_E1x(bp))
13420 offset += USTORM_RX_PRODS_E2_OFFSET(fp->cl_qzone_id);
13421 else
13422 offset += USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp), fp->cl_id);
8d9ac297 13423
6411280a 13424 return offset;
8d9ac297 13425}
381ac16b 13426
6411280a
AE
13427/* called only on E1H or E2.
13428 * When pretending to be PF, the pretend value is the function number 0...7
13429 * When pretending to be VF, the pretend val is the PF-num:VF-valid:ABS-VFID
13430 * combination
13431 */
13432int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val)
381ac16b 13433{
6411280a 13434 u32 pretend_reg;
381ac16b 13435
23826850 13436 if (CHIP_IS_E1H(bp) && pretend_func_val >= E1H_FUNC_MAX)
6411280a 13437 return -1;
381ac16b 13438
6411280a
AE
13439 /* get my own pretend register */
13440 pretend_reg = bnx2x_get_pretend_reg(bp);
13441 REG_WR(bp, pretend_reg, pretend_func_val);
13442 REG_RD(bp, pretend_reg);
381ac16b
AE
13443 return 0;
13444}