]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
Merge branch 'dsa-multi-swtich'
[mirror_ubuntu-bionic-kernel.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_main.c
CommitLineData
4ad79e13 1/* bnx2x_main.c: QLogic Everest network driver.
a2fbb9ea 2 *
247fa82b 3 * Copyright (c) 2007-2013 Broadcom Corporation
4ad79e13
YM
4 * Copyright (c) 2014 QLogic Corporation
5 * All rights reserved
a2fbb9ea
ET
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation.
10 *
08f6dd89 11 * Maintained by: Ariel Elior <ariel.elior@qlogic.com>
24e3fcef 12 * Written by: Eliezer Tamir
a2fbb9ea
ET
13 * Based on code from Michael Chan's bnx2 driver
14 * UDP CSUM errata workaround by Arik Gendelman
ca00392c 15 * Slowpath and fastpath rework by Vladislav Zolotarov
c14423fe 16 * Statistics and Link management by Yitchak Gertner
a2fbb9ea
ET
17 *
18 */
19
f1deab50
JP
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
a2fbb9ea
ET
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/kernel.h>
25#include <linux/device.h> /* for dev_info() */
26#include <linux/timer.h>
27#include <linux/errno.h>
28#include <linux/ioport.h>
29#include <linux/slab.h>
a2fbb9ea
ET
30#include <linux/interrupt.h>
31#include <linux/pci.h>
33d8e6a5 32#include <linux/aer.h>
a2fbb9ea
ET
33#include <linux/init.h>
34#include <linux/netdevice.h>
35#include <linux/etherdevice.h>
36#include <linux/skbuff.h>
37#include <linux/dma-mapping.h>
38#include <linux/bitops.h>
39#include <linux/irq.h>
40#include <linux/delay.h>
41#include <asm/byteorder.h>
42#include <linux/time.h>
43#include <linux/ethtool.h>
44#include <linux/mii.h>
0c6671b0 45#include <linux/if_vlan.h>
c9931896 46#include <linux/crash_dump.h>
a2fbb9ea 47#include <net/ip.h>
619c5cb6 48#include <net/ipv6.h>
a2fbb9ea 49#include <net/tcp.h>
51de7bb9 50#include <net/vxlan.h>
a2fbb9ea 51#include <net/checksum.h>
34f80b04 52#include <net/ip6_checksum.h>
a2fbb9ea
ET
53#include <linux/workqueue.h>
54#include <linux/crc32.h>
34f80b04 55#include <linux/crc32c.h>
a2fbb9ea
ET
56#include <linux/prefetch.h>
57#include <linux/zlib.h>
a2fbb9ea 58#include <linux/io.h>
452427b0 59#include <linux/semaphore.h>
45229b42 60#include <linux/stringify.h>
7ab24bfd 61#include <linux/vmalloc.h>
a2fbb9ea 62
a2fbb9ea
ET
63#include "bnx2x.h"
64#include "bnx2x_init.h"
94a78b79 65#include "bnx2x_init_ops.h"
9f6c9258 66#include "bnx2x_cmn.h"
1ab4434c 67#include "bnx2x_vfpf.h"
e4901dde 68#include "bnx2x_dcb.h"
042181f5 69#include "bnx2x_sp.h"
94a78b79
VZ
70#include <linux/firmware.h>
71#include "bnx2x_fw_file_hdr.h"
72/* FW files */
45229b42
BH
73#define FW_FILE_VERSION \
74 __stringify(BCM_5710_FW_MAJOR_VERSION) "." \
75 __stringify(BCM_5710_FW_MINOR_VERSION) "." \
76 __stringify(BCM_5710_FW_REVISION_VERSION) "." \
77 __stringify(BCM_5710_FW_ENGINEERING_VERSION)
560131f3
DK
78#define FW_FILE_NAME_E1 "bnx2x/bnx2x-e1-" FW_FILE_VERSION ".fw"
79#define FW_FILE_NAME_E1H "bnx2x/bnx2x-e1h-" FW_FILE_VERSION ".fw"
f2e0899f 80#define FW_FILE_NAME_E2 "bnx2x/bnx2x-e2-" FW_FILE_VERSION ".fw"
94a78b79 81
34f80b04
EG
82/* Time in jiffies before concluding the transmitter is hung */
83#define TX_TIMEOUT (5*HZ)
a2fbb9ea 84
0329aba1 85static char version[] =
4ad79e13 86 "QLogic 5771x/578xx 10/20-Gigabit Ethernet Driver "
a2fbb9ea
ET
87 DRV_MODULE_NAME " " DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
88
24e3fcef 89MODULE_AUTHOR("Eliezer Tamir");
4ad79e13 90MODULE_DESCRIPTION("QLogic "
619c5cb6
VZ
91 "BCM57710/57711/57711E/"
92 "57712/57712_MF/57800/57800_MF/57810/57810_MF/"
93 "57840/57840_MF Driver");
a2fbb9ea
ET
94MODULE_LICENSE("GPL");
95MODULE_VERSION(DRV_MODULE_VERSION);
45229b42
BH
96MODULE_FIRMWARE(FW_FILE_NAME_E1);
97MODULE_FIRMWARE(FW_FILE_NAME_E1H);
f2e0899f 98MODULE_FIRMWARE(FW_FILE_NAME_E2);
a2fbb9ea 99
a8f47eb7 100int bnx2x_num_queues;
1c8bb760 101module_param_named(num_queues, bnx2x_num_queues, int, S_IRUGO);
96305234
DK
102MODULE_PARM_DESC(num_queues,
103 " Set number of queues (default is as a number of CPUs)");
555f6c78 104
19680c48 105static int disable_tpa;
1c8bb760 106module_param(disable_tpa, int, S_IRUGO);
9898f86d 107MODULE_PARM_DESC(disable_tpa, " Disable the TPA (LRO) feature");
8badd27a 108
a8f47eb7 109static int int_mode;
1c8bb760 110module_param(int_mode, int, S_IRUGO);
619c5cb6 111MODULE_PARM_DESC(int_mode, " Force interrupt mode other than MSI-X "
cdaa7cb8 112 "(1 INT#x; 2 MSI)");
8badd27a 113
a18f5128 114static int dropless_fc;
1c8bb760 115module_param(dropless_fc, int, S_IRUGO);
a18f5128
EG
116MODULE_PARM_DESC(dropless_fc, " Pause on exhausted host ring");
117
8d5726c4 118static int mrrs = -1;
1c8bb760 119module_param(mrrs, int, S_IRUGO);
8d5726c4
EG
120MODULE_PARM_DESC(mrrs, " Force Max Read Req Size (0..3) (for debug)");
121
9898f86d 122static int debug;
1c8bb760 123module_param(debug, int, S_IRUGO);
9898f86d
EG
124MODULE_PARM_DESC(debug, " Default debug msglevel");
125
370d4a26
YM
126static struct workqueue_struct *bnx2x_wq;
127struct workqueue_struct *bnx2x_iov_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;
3d6b7253
YM
134 u32 umac_addr[2];
135 u32 umac_val[2];
1ef1d45a
BW
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[] = {
4ad79e13
YM
168 [BCM57710] = { "QLogic BCM57710 10 Gigabit PCIe [Everest]" },
169 [BCM57711] = { "QLogic BCM57711 10 Gigabit PCIe" },
170 [BCM57711E] = { "QLogic BCM57711E 10 Gigabit PCIe" },
171 [BCM57712] = { "QLogic BCM57712 10 Gigabit Ethernet" },
172 [BCM57712_MF] = { "QLogic BCM57712 10 Gigabit Ethernet Multi Function" },
173 [BCM57712_VF] = { "QLogic BCM57712 10 Gigabit Ethernet Virtual Function" },
174 [BCM57800] = { "QLogic BCM57800 10 Gigabit Ethernet" },
175 [BCM57800_MF] = { "QLogic BCM57800 10 Gigabit Ethernet Multi Function" },
176 [BCM57800_VF] = { "QLogic BCM57800 10 Gigabit Ethernet Virtual Function" },
177 [BCM57810] = { "QLogic BCM57810 10 Gigabit Ethernet" },
178 [BCM57810_MF] = { "QLogic BCM57810 10 Gigabit Ethernet Multi Function" },
179 [BCM57810_VF] = { "QLogic BCM57810 10 Gigabit Ethernet Virtual Function" },
180 [BCM57840_4_10] = { "QLogic BCM57840 10 Gigabit Ethernet" },
181 [BCM57840_2_20] = { "QLogic BCM57840 20 Gigabit Ethernet" },
182 [BCM57840_MF] = { "QLogic BCM57840 10/20 Gigabit Ethernet Multi Function" },
183 [BCM57840_VF] = { "QLogic BCM57840 10/20 Gigabit Ethernet Virtual Function" },
184 [BCM57811] = { "QLogic BCM57811 10 Gigabit Ethernet" },
185 [BCM57811_MF] = { "QLogic BCM57811 10 Gigabit Ethernet Multi Function" },
186 [BCM57840_O] = { "QLogic BCM57840 10/20 Gigabit Ethernet" },
187 [BCM57840_MFO] = { "QLogic BCM57840 10/20 Gigabit Ethernet Multi Function" },
188 [BCM57811_VF] = { "QLogic 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
9baa3c34 255static const struct pci_device_id 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);
a8f47eb7 286
287/* Forward declaration */
288static struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev);
289static u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp);
290static int bnx2x_set_storm_rx_mode(struct bnx2x *bp);
291
a2fbb9ea
ET
292/****************************************************************************
293* General service functions
294****************************************************************************/
295
eeed018c
MK
296static int bnx2x_hwtstamp_ioctl(struct bnx2x *bp, struct ifreq *ifr);
297
1191cb83 298static void __storm_memset_dma_mapping(struct bnx2x *bp,
619c5cb6
VZ
299 u32 addr, dma_addr_t mapping)
300{
301 REG_WR(bp, addr, U64_LO(mapping));
302 REG_WR(bp, addr + 4, U64_HI(mapping));
303}
304
1191cb83
ED
305static void storm_memset_spq_addr(struct bnx2x *bp,
306 dma_addr_t mapping, u16 abs_fid)
619c5cb6
VZ
307{
308 u32 addr = XSEM_REG_FAST_MEMORY +
309 XSTORM_SPQ_PAGE_BASE_OFFSET(abs_fid);
310
311 __storm_memset_dma_mapping(bp, addr, mapping);
312}
313
1191cb83
ED
314static void storm_memset_vf_to_pf(struct bnx2x *bp, u16 abs_fid,
315 u16 pf_id)
523224a3 316{
619c5cb6
VZ
317 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_VF_TO_PF_OFFSET(abs_fid),
318 pf_id);
319 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_VF_TO_PF_OFFSET(abs_fid),
320 pf_id);
321 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_VF_TO_PF_OFFSET(abs_fid),
322 pf_id);
323 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_VF_TO_PF_OFFSET(abs_fid),
324 pf_id);
523224a3
DK
325}
326
1191cb83
ED
327static void storm_memset_func_en(struct bnx2x *bp, u16 abs_fid,
328 u8 enable)
619c5cb6
VZ
329{
330 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(abs_fid),
331 enable);
332 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(abs_fid),
333 enable);
334 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(abs_fid),
335 enable);
336 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(abs_fid),
337 enable);
338}
523224a3 339
1191cb83
ED
340static void storm_memset_eq_data(struct bnx2x *bp,
341 struct event_ring_data *eq_data,
523224a3
DK
342 u16 pfid)
343{
344 size_t size = sizeof(struct event_ring_data);
345
346 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_DATA_OFFSET(pfid);
347
348 __storm_memset_struct(bp, addr, size, (u32 *)eq_data);
349}
350
1191cb83
ED
351static void storm_memset_eq_prod(struct bnx2x *bp, u16 eq_prod,
352 u16 pfid)
523224a3
DK
353{
354 u32 addr = BAR_CSTRORM_INTMEM + CSTORM_EVENT_RING_PROD_OFFSET(pfid);
355 REG_WR16(bp, addr, eq_prod);
356}
357
a2fbb9ea
ET
358/* used only at init
359 * locking is done by mcp
360 */
8d96286a 361static void bnx2x_reg_wr_ind(struct bnx2x *bp, u32 addr, u32 val)
a2fbb9ea
ET
362{
363 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
364 pci_write_config_dword(bp->pdev, PCICFG_GRC_DATA, val);
365 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
366 PCICFG_VENDOR_ID_OFFSET);
367}
368
a2fbb9ea
ET
369static u32 bnx2x_reg_rd_ind(struct bnx2x *bp, u32 addr)
370{
371 u32 val;
372
373 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS, addr);
374 pci_read_config_dword(bp->pdev, PCICFG_GRC_DATA, &val);
375 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
376 PCICFG_VENDOR_ID_OFFSET);
377
378 return val;
379}
a2fbb9ea 380
f2e0899f
DK
381#define DMAE_DP_SRC_GRC "grc src_addr [%08x]"
382#define DMAE_DP_SRC_PCI "pci src_addr [%x:%08x]"
383#define DMAE_DP_DST_GRC "grc dst_addr [%08x]"
384#define DMAE_DP_DST_PCI "pci dst_addr [%x:%08x]"
385#define DMAE_DP_DST_NONE "dst_addr [none]"
386
6bf07b8e
YM
387static void bnx2x_dp_dmae(struct bnx2x *bp,
388 struct dmae_command *dmae, int msglvl)
fd1fc79d
AE
389{
390 u32 src_type = dmae->opcode & DMAE_COMMAND_SRC;
6bf07b8e 391 int i;
fd1fc79d
AE
392
393 switch (dmae->opcode & DMAE_COMMAND_DST) {
394 case DMAE_CMD_DST_PCI:
395 if (src_type == DMAE_CMD_SRC_PCI)
396 DP(msglvl, "DMAE: opcode 0x%08x\n"
397 "src [%x:%08x], len [%d*4], dst [%x:%08x]\n"
398 "comp_addr [%x:%08x], comp_val 0x%08x\n",
399 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
400 dmae->len, dmae->dst_addr_hi, dmae->dst_addr_lo,
401 dmae->comp_addr_hi, dmae->comp_addr_lo,
402 dmae->comp_val);
403 else
404 DP(msglvl, "DMAE: opcode 0x%08x\n"
405 "src [%08x], len [%d*4], dst [%x:%08x]\n"
406 "comp_addr [%x:%08x], comp_val 0x%08x\n",
407 dmae->opcode, dmae->src_addr_lo >> 2,
408 dmae->len, dmae->dst_addr_hi, dmae->dst_addr_lo,
409 dmae->comp_addr_hi, dmae->comp_addr_lo,
410 dmae->comp_val);
411 break;
412 case DMAE_CMD_DST_GRC:
413 if (src_type == DMAE_CMD_SRC_PCI)
414 DP(msglvl, "DMAE: opcode 0x%08x\n"
415 "src [%x:%08x], len [%d*4], dst_addr [%08x]\n"
416 "comp_addr [%x:%08x], comp_val 0x%08x\n",
417 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
418 dmae->len, dmae->dst_addr_lo >> 2,
419 dmae->comp_addr_hi, dmae->comp_addr_lo,
420 dmae->comp_val);
421 else
422 DP(msglvl, "DMAE: opcode 0x%08x\n"
423 "src [%08x], len [%d*4], dst [%08x]\n"
424 "comp_addr [%x:%08x], comp_val 0x%08x\n",
425 dmae->opcode, dmae->src_addr_lo >> 2,
426 dmae->len, dmae->dst_addr_lo >> 2,
427 dmae->comp_addr_hi, dmae->comp_addr_lo,
428 dmae->comp_val);
429 break;
430 default:
431 if (src_type == DMAE_CMD_SRC_PCI)
432 DP(msglvl, "DMAE: opcode 0x%08x\n"
433 "src_addr [%x:%08x] len [%d * 4] dst_addr [none]\n"
434 "comp_addr [%x:%08x] comp_val 0x%08x\n",
435 dmae->opcode, dmae->src_addr_hi, dmae->src_addr_lo,
436 dmae->len, dmae->comp_addr_hi, dmae->comp_addr_lo,
437 dmae->comp_val);
438 else
439 DP(msglvl, "DMAE: opcode 0x%08x\n"
440 "src_addr [%08x] len [%d * 4] dst_addr [none]\n"
441 "comp_addr [%x:%08x] comp_val 0x%08x\n",
442 dmae->opcode, dmae->src_addr_lo >> 2,
443 dmae->len, dmae->comp_addr_hi, dmae->comp_addr_lo,
444 dmae->comp_val);
445 break;
446 }
6bf07b8e
YM
447
448 for (i = 0; i < (sizeof(struct dmae_command)/4); i++)
449 DP(msglvl, "DMAE RAW [%02d]: 0x%08x\n",
450 i, *(((u32 *)dmae) + i));
fd1fc79d 451}
f2e0899f 452
a2fbb9ea 453/* copy command into DMAE command memory and set DMAE command go */
6c719d00 454void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx)
a2fbb9ea
ET
455{
456 u32 cmd_offset;
457 int i;
458
459 cmd_offset = (DMAE_REG_CMD_MEM + sizeof(struct dmae_command) * idx);
460 for (i = 0; i < (sizeof(struct dmae_command)/4); i++) {
461 REG_WR(bp, cmd_offset + i*4, *(((u32 *)dmae) + i));
a2fbb9ea
ET
462 }
463 REG_WR(bp, dmae_reg_go_c[idx], 1);
464}
465
f2e0899f 466u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type)
a2fbb9ea 467{
f2e0899f
DK
468 return opcode | ((comp_type << DMAE_COMMAND_C_DST_SHIFT) |
469 DMAE_CMD_C_ENABLE);
470}
ad8d3948 471
f2e0899f
DK
472u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode)
473{
474 return opcode & ~DMAE_CMD_SRC_RESET;
475}
ad8d3948 476
f2e0899f
DK
477u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
478 bool with_comp, u8 comp_type)
479{
480 u32 opcode = 0;
481
482 opcode |= ((src_type << DMAE_COMMAND_SRC_SHIFT) |
483 (dst_type << DMAE_COMMAND_DST_SHIFT));
ad8d3948 484
f2e0899f
DK
485 opcode |= (DMAE_CMD_SRC_RESET | DMAE_CMD_DST_RESET);
486
487 opcode |= (BP_PORT(bp) ? DMAE_CMD_PORT_1 : DMAE_CMD_PORT_0);
3395a033
DK
488 opcode |= ((BP_VN(bp) << DMAE_CMD_E1HVN_SHIFT) |
489 (BP_VN(bp) << DMAE_COMMAND_DST_VN_SHIFT));
f2e0899f 490 opcode |= (DMAE_COM_SET_ERR << DMAE_COMMAND_ERR_POLICY_SHIFT);
a2fbb9ea 491
a2fbb9ea 492#ifdef __BIG_ENDIAN
f2e0899f 493 opcode |= DMAE_CMD_ENDIANITY_B_DW_SWAP;
a2fbb9ea 494#else
f2e0899f 495 opcode |= DMAE_CMD_ENDIANITY_DW_SWAP;
a2fbb9ea 496#endif
f2e0899f
DK
497 if (with_comp)
498 opcode = bnx2x_dmae_opcode_add_comp(opcode, comp_type);
499 return opcode;
500}
501
fd1fc79d 502void bnx2x_prep_dmae_with_comp(struct bnx2x *bp,
8d96286a 503 struct dmae_command *dmae,
504 u8 src_type, u8 dst_type)
f2e0899f
DK
505{
506 memset(dmae, 0, sizeof(struct dmae_command));
507
508 /* set the opcode */
509 dmae->opcode = bnx2x_dmae_opcode(bp, src_type, dst_type,
510 true, DMAE_COMP_PCI);
511
512 /* fill in the completion parameters */
513 dmae->comp_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_comp));
514 dmae->comp_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_comp));
515 dmae->comp_val = DMAE_COMP_VAL;
516}
517
fd1fc79d 518/* issue a dmae command over the init-channel and wait for completion */
32316a46
AE
519int bnx2x_issue_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae,
520 u32 *comp)
f2e0899f 521{
5e374b5a 522 int cnt = CHIP_REV_IS_SLOW(bp) ? (400000) : 4000;
f2e0899f
DK
523 int rc = 0;
524
6bf07b8e
YM
525 bnx2x_dp_dmae(bp, dmae, BNX2X_MSG_DMAE);
526
527 /* Lock the dmae channel. Disable BHs to prevent a dead-lock
619c5cb6
VZ
528 * as long as this code is called both from syscall context and
529 * from ndo_set_rx_mode() flow that may be called from BH.
530 */
eeed018c 531
6e30dd4e 532 spin_lock_bh(&bp->dmae_lock);
5ff7b6d4 533
f2e0899f 534 /* reset completion */
32316a46 535 *comp = 0;
a2fbb9ea 536
f2e0899f
DK
537 /* post the command on the channel used for initializations */
538 bnx2x_post_dmae(bp, dmae, INIT_DMAE_C(bp));
a2fbb9ea 539
f2e0899f 540 /* wait for completion */
a2fbb9ea 541 udelay(5);
32316a46 542 while ((*comp & ~DMAE_PCI_ERR_FLAG) != DMAE_COMP_VAL) {
ad8d3948 543
95c6c616
AE
544 if (!cnt ||
545 (bp->recovery_state != BNX2X_RECOVERY_DONE &&
546 bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
c3eefaf6 547 BNX2X_ERR("DMAE timeout!\n");
f2e0899f
DK
548 rc = DMAE_TIMEOUT;
549 goto unlock;
a2fbb9ea 550 }
ad8d3948 551 cnt--;
f2e0899f 552 udelay(50);
a2fbb9ea 553 }
32316a46 554 if (*comp & DMAE_PCI_ERR_FLAG) {
f2e0899f
DK
555 BNX2X_ERR("DMAE PCI error!\n");
556 rc = DMAE_PCI_ERROR;
557 }
558
f2e0899f 559unlock:
eeed018c 560
6e30dd4e 561 spin_unlock_bh(&bp->dmae_lock);
eeed018c 562
f2e0899f
DK
563 return rc;
564}
565
566void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
567 u32 len32)
568{
6bf07b8e 569 int rc;
f2e0899f
DK
570 struct dmae_command dmae;
571
572 if (!bp->dmae_ready) {
573 u32 *data = bnx2x_sp(bp, wb_data[0]);
574
127a425e
AE
575 if (CHIP_IS_E1(bp))
576 bnx2x_init_ind_wr(bp, dst_addr, data, len32);
577 else
578 bnx2x_init_str_wr(bp, dst_addr, data, len32);
f2e0899f
DK
579 return;
580 }
581
582 /* set opcode and fixed command fields */
583 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_PCI, DMAE_DST_GRC);
584
585 /* fill in addresses and len */
586 dmae.src_addr_lo = U64_LO(dma_addr);
587 dmae.src_addr_hi = U64_HI(dma_addr);
588 dmae.dst_addr_lo = dst_addr >> 2;
589 dmae.dst_addr_hi = 0;
590 dmae.len = len32;
591
f2e0899f 592 /* issue the command and wait for completion */
32316a46 593 rc = bnx2x_issue_dmae_with_comp(bp, &dmae, bnx2x_sp(bp, wb_comp));
6bf07b8e
YM
594 if (rc) {
595 BNX2X_ERR("DMAE returned failure %d\n", rc);
9dcd9acd 596#ifdef BNX2X_STOP_ON_ERROR
6bf07b8e 597 bnx2x_panic();
9dcd9acd 598#endif
6bf07b8e 599 }
a2fbb9ea
ET
600}
601
c18487ee 602void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32)
a2fbb9ea 603{
6bf07b8e 604 int rc;
5ff7b6d4 605 struct dmae_command dmae;
ad8d3948
EG
606
607 if (!bp->dmae_ready) {
608 u32 *data = bnx2x_sp(bp, wb_data[0]);
609 int i;
610
51c1a580 611 if (CHIP_IS_E1(bp))
127a425e
AE
612 for (i = 0; i < len32; i++)
613 data[i] = bnx2x_reg_rd_ind(bp, src_addr + i*4);
51c1a580 614 else
127a425e
AE
615 for (i = 0; i < len32; i++)
616 data[i] = REG_RD(bp, src_addr + i*4);
617
ad8d3948
EG
618 return;
619 }
620
f2e0899f
DK
621 /* set opcode and fixed command fields */
622 bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_GRC, DMAE_DST_PCI);
a2fbb9ea 623
f2e0899f 624 /* fill in addresses and len */
5ff7b6d4
EG
625 dmae.src_addr_lo = src_addr >> 2;
626 dmae.src_addr_hi = 0;
627 dmae.dst_addr_lo = U64_LO(bnx2x_sp_mapping(bp, wb_data));
628 dmae.dst_addr_hi = U64_HI(bnx2x_sp_mapping(bp, wb_data));
629 dmae.len = len32;
ad8d3948 630
f2e0899f 631 /* issue the command and wait for completion */
32316a46 632 rc = bnx2x_issue_dmae_with_comp(bp, &dmae, bnx2x_sp(bp, wb_comp));
6bf07b8e
YM
633 if (rc) {
634 BNX2X_ERR("DMAE returned failure %d\n", rc);
9dcd9acd 635#ifdef BNX2X_STOP_ON_ERROR
6bf07b8e 636 bnx2x_panic();
9dcd9acd 637#endif
c957d09f 638 }
ad8d3948
EG
639}
640
8d96286a 641static void bnx2x_write_dmae_phys_len(struct bnx2x *bp, dma_addr_t phys_addr,
642 u32 addr, u32 len)
573f2035 643{
02e3c6cb 644 int dmae_wr_max = DMAE_LEN32_WR_MAX(bp);
573f2035
EG
645 int offset = 0;
646
02e3c6cb 647 while (len > dmae_wr_max) {
573f2035 648 bnx2x_write_dmae(bp, phys_addr + offset,
02e3c6cb
VZ
649 addr + offset, dmae_wr_max);
650 offset += dmae_wr_max * 4;
651 len -= dmae_wr_max;
573f2035
EG
652 }
653
654 bnx2x_write_dmae(bp, phys_addr + offset, addr + offset, len);
655}
656
97539f1e
AE
657enum storms {
658 XSTORM,
659 TSTORM,
660 CSTORM,
661 USTORM,
662 MAX_STORMS
663};
34f80b04 664
97539f1e
AE
665#define STORMS_NUM 4
666#define REGS_IN_ENTRY 4
34f80b04 667
97539f1e
AE
668static inline int bnx2x_get_assert_list_entry(struct bnx2x *bp,
669 enum storms storm,
670 int entry)
671{
672 switch (storm) {
673 case XSTORM:
674 return XSTORM_ASSERT_LIST_OFFSET(entry);
675 case TSTORM:
676 return TSTORM_ASSERT_LIST_OFFSET(entry);
677 case CSTORM:
678 return CSTORM_ASSERT_LIST_OFFSET(entry);
679 case USTORM:
680 return USTORM_ASSERT_LIST_OFFSET(entry);
681 case MAX_STORMS:
682 default:
683 BNX2X_ERR("unknown storm\n");
34f80b04 684 }
97539f1e
AE
685 return -EINVAL;
686}
34f80b04 687
97539f1e
AE
688static int bnx2x_mc_assert(struct bnx2x *bp)
689{
690 char last_idx;
691 int i, j, rc = 0;
692 enum storms storm;
693 u32 regs[REGS_IN_ENTRY];
694 u32 bar_storm_intmem[STORMS_NUM] = {
695 BAR_XSTRORM_INTMEM,
696 BAR_TSTRORM_INTMEM,
697 BAR_CSTRORM_INTMEM,
698 BAR_USTRORM_INTMEM
699 };
700 u32 storm_assert_list_index[STORMS_NUM] = {
701 XSTORM_ASSERT_LIST_INDEX_OFFSET,
702 TSTORM_ASSERT_LIST_INDEX_OFFSET,
703 CSTORM_ASSERT_LIST_INDEX_OFFSET,
704 USTORM_ASSERT_LIST_INDEX_OFFSET
705 };
706 char *storms_string[STORMS_NUM] = {
707 "XSTORM",
708 "TSTORM",
709 "CSTORM",
710 "USTORM"
711 };
712
713 for (storm = XSTORM; storm < MAX_STORMS; storm++) {
714 last_idx = REG_RD8(bp, bar_storm_intmem[storm] +
715 storm_assert_list_index[storm]);
716 if (last_idx)
717 BNX2X_ERR("%s_ASSERT_LIST_INDEX 0x%x\n",
718 storms_string[storm], last_idx);
719
720 /* print the asserts */
721 for (i = 0; i < STROM_ASSERT_ARRAY_SIZE; i++) {
722 /* read a single assert entry */
723 for (j = 0; j < REGS_IN_ENTRY; j++)
724 regs[j] = REG_RD(bp, bar_storm_intmem[storm] +
725 bnx2x_get_assert_list_entry(bp,
726 storm,
727 i) +
728 sizeof(u32) * j);
729
730 /* log entry if it contains a valid assert */
731 if (regs[0] != COMMON_ASM_INVALID_ASSERT_OPCODE) {
732 BNX2X_ERR("%s_ASSERT_INDEX 0x%x = 0x%08x 0x%08x 0x%08x 0x%08x\n",
733 storms_string[storm], i, regs[3],
734 regs[2], regs[1], regs[0]);
735 rc++;
736 } else {
737 break;
738 }
a2fbb9ea
ET
739 }
740 }
34f80b04 741
97539f1e
AE
742 BNX2X_ERR("Chip Revision: %s, FW Version: %d_%d_%d\n",
743 CHIP_IS_E1(bp) ? "everest1" :
744 CHIP_IS_E1H(bp) ? "everest1h" :
745 CHIP_IS_E2(bp) ? "everest2" : "everest3",
746 BCM_5710_FW_MAJOR_VERSION,
747 BCM_5710_FW_MINOR_VERSION,
748 BCM_5710_FW_REVISION_VERSION);
749
a2fbb9ea
ET
750 return rc;
751}
c14423fe 752
1a6974b2
YM
753#define MCPR_TRACE_BUFFER_SIZE (0x800)
754#define SCRATCH_BUFFER_SIZE(bp) \
755 (CHIP_IS_E1(bp) ? 0x10000 : (CHIP_IS_E1H(bp) ? 0x20000 : 0x28000))
756
7a25cc73 757void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl)
a2fbb9ea 758{
7a25cc73 759 u32 addr, val;
a2fbb9ea 760 u32 mark, offset;
4781bfad 761 __be32 data[9];
a2fbb9ea 762 int word;
f2e0899f 763 u32 trace_shmem_base;
2145a920
VZ
764 if (BP_NOMCP(bp)) {
765 BNX2X_ERR("NO MCP - can not dump\n");
766 return;
767 }
7a25cc73
DK
768 netdev_printk(lvl, bp->dev, "bc %d.%d.%d\n",
769 (bp->common.bc_ver & 0xff0000) >> 16,
770 (bp->common.bc_ver & 0xff00) >> 8,
771 (bp->common.bc_ver & 0xff));
772
773 val = REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER);
774 if (val == REG_RD(bp, MCP_REG_MCPR_CPU_PROGRAM_COUNTER))
51c1a580 775 BNX2X_ERR("%s" "MCP PC at 0x%x\n", lvl, val);
cdaa7cb8 776
f2e0899f
DK
777 if (BP_PATH(bp) == 0)
778 trace_shmem_base = bp->common.shmem_base;
779 else
780 trace_shmem_base = SHMEM2_RD(bp, other_shmem_base_addr);
1a6974b2
YM
781
782 /* sanity */
783 if (trace_shmem_base < MCPR_SCRATCH_BASE(bp) + MCPR_TRACE_BUFFER_SIZE ||
784 trace_shmem_base >= MCPR_SCRATCH_BASE(bp) +
785 SCRATCH_BUFFER_SIZE(bp)) {
786 BNX2X_ERR("Unable to dump trace buffer (mark %x)\n",
787 trace_shmem_base);
788 return;
789 }
790
791 addr = trace_shmem_base - MCPR_TRACE_BUFFER_SIZE;
de128804
DK
792
793 /* validate TRCB signature */
794 mark = REG_RD(bp, addr);
795 if (mark != MFW_TRACE_SIGNATURE) {
796 BNX2X_ERR("Trace buffer signature is missing.");
797 return ;
798 }
799
800 /* read cyclic buffer pointer */
801 addr += 4;
cdaa7cb8 802 mark = REG_RD(bp, addr);
1a6974b2
YM
803 mark = MCPR_SCRATCH_BASE(bp) + ((mark + 0x3) & ~0x3) - 0x08000000;
804 if (mark >= trace_shmem_base || mark < addr + 4) {
805 BNX2X_ERR("Mark doesn't fall inside Trace Buffer\n");
806 return;
807 }
7a25cc73 808 printk("%s" "begin fw dump (mark 0x%x)\n", lvl, mark);
a2fbb9ea 809
7a25cc73 810 printk("%s", lvl);
2de67439
YM
811
812 /* dump buffer after the mark */
1a6974b2 813 for (offset = mark; offset < trace_shmem_base; offset += 0x8*4) {
a2fbb9ea 814 for (word = 0; word < 8; word++)
cdaa7cb8 815 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 816 data[8] = 0x0;
7995c64e 817 pr_cont("%s", (char *)data);
a2fbb9ea 818 }
2de67439
YM
819
820 /* dump buffer before the mark */
cdaa7cb8 821 for (offset = addr + 4; offset <= mark; offset += 0x8*4) {
a2fbb9ea 822 for (word = 0; word < 8; word++)
cdaa7cb8 823 data[word] = htonl(REG_RD(bp, offset + 4*word));
a2fbb9ea 824 data[8] = 0x0;
7995c64e 825 pr_cont("%s", (char *)data);
a2fbb9ea 826 }
7a25cc73
DK
827 printk("%s" "end of fw dump\n", lvl);
828}
829
1191cb83 830static void bnx2x_fw_dump(struct bnx2x *bp)
7a25cc73
DK
831{
832 bnx2x_fw_dump_lvl(bp, KERN_ERR);
a2fbb9ea
ET
833}
834
823e1d90
YM
835static void bnx2x_hc_int_disable(struct bnx2x *bp)
836{
837 int port = BP_PORT(bp);
838 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
839 u32 val = REG_RD(bp, addr);
840
841 /* in E1 we must use only PCI configuration space to disable
16a5fd92
YM
842 * MSI/MSIX capability
843 * It's forbidden to disable IGU_PF_CONF_MSI_MSIX_EN in HC block
823e1d90
YM
844 */
845 if (CHIP_IS_E1(bp)) {
846 /* Since IGU_PF_CONF_MSI_MSIX_EN still always on
847 * Use mask register to prevent from HC sending interrupts
848 * after we exit the function
849 */
850 REG_WR(bp, HC_REG_INT_MASK + port*4, 0);
851
852 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
853 HC_CONFIG_0_REG_INT_LINE_EN_0 |
854 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
855 } else
856 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
857 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
858 HC_CONFIG_0_REG_INT_LINE_EN_0 |
859 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
860
861 DP(NETIF_MSG_IFDOWN,
862 "write %x to HC %d (addr 0x%x)\n",
863 val, port, addr);
864
865 /* flush all outstanding writes */
866 mmiowb();
867
868 REG_WR(bp, addr, val);
869 if (REG_RD(bp, addr) != val)
6bf07b8e 870 BNX2X_ERR("BUG! Proper val not read from IGU!\n");
823e1d90
YM
871}
872
873static void bnx2x_igu_int_disable(struct bnx2x *bp)
874{
875 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
876
877 val &= ~(IGU_PF_CONF_MSI_MSIX_EN |
878 IGU_PF_CONF_INT_LINE_EN |
879 IGU_PF_CONF_ATTN_BIT_EN);
880
881 DP(NETIF_MSG_IFDOWN, "write %x to IGU\n", val);
882
883 /* flush all outstanding writes */
884 mmiowb();
885
886 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
887 if (REG_RD(bp, IGU_REG_PF_CONFIGURATION) != val)
6bf07b8e 888 BNX2X_ERR("BUG! Proper val not read from IGU!\n");
823e1d90
YM
889}
890
891static void bnx2x_int_disable(struct bnx2x *bp)
892{
893 if (bp->common.int_block == INT_BLOCK_HC)
894 bnx2x_hc_int_disable(bp);
895 else
896 bnx2x_igu_int_disable(bp);
897}
898
899void bnx2x_panic_dump(struct bnx2x *bp, bool disable_int)
a2fbb9ea
ET
900{
901 int i;
523224a3
DK
902 u16 j;
903 struct hc_sp_status_block_data sp_sb_data;
904 int func = BP_FUNC(bp);
905#ifdef BNX2X_STOP_ON_ERROR
906 u16 start = 0, end = 0;
6383c0b3 907 u8 cos;
523224a3 908#endif
0155a27c 909 if (IS_PF(bp) && disable_int)
823e1d90 910 bnx2x_int_disable(bp);
a2fbb9ea 911
66e855f3 912 bp->stats_state = STATS_STATE_DISABLED;
7a752993 913 bp->eth_stats.unrecoverable_error++;
66e855f3
YG
914 DP(BNX2X_MSG_STATS, "stats_state - DISABLED\n");
915
a2fbb9ea
ET
916 BNX2X_ERR("begin crash dump -----------------\n");
917
8440d2b6
EG
918 /* Indices */
919 /* Common */
0155a27c
YM
920 if (IS_PF(bp)) {
921 struct host_sp_status_block *def_sb = bp->def_status_blk;
922 int data_size, cstorm_offset;
923
924 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",
925 bp->def_idx, bp->def_att_idx, bp->attn_state,
926 bp->spq_prod_idx, bp->stats_counter);
927 BNX2X_ERR("DSB: attn bits(0x%x) ack(0x%x) id(0x%x) idx(0x%x)\n",
928 def_sb->atten_status_block.attn_bits,
929 def_sb->atten_status_block.attn_bits_ack,
930 def_sb->atten_status_block.status_block_id,
931 def_sb->atten_status_block.attn_bits_index);
932 BNX2X_ERR(" def (");
933 for (i = 0; i < HC_SP_SB_MAX_INDICES; i++)
934 pr_cont("0x%x%s",
935 def_sb->sp_sb.index_values[i],
936 (i == HC_SP_SB_MAX_INDICES - 1) ? ") " : " ");
937
938 data_size = sizeof(struct hc_sp_status_block_data) /
939 sizeof(u32);
940 cstorm_offset = CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func);
941 for (i = 0; i < data_size; i++)
942 *((u32 *)&sp_sb_data + i) =
943 REG_RD(bp, BAR_CSTRORM_INTMEM + cstorm_offset +
944 i * sizeof(u32));
945
946 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",
947 sp_sb_data.igu_sb_id,
948 sp_sb_data.igu_seg_id,
949 sp_sb_data.p_func.pf_id,
950 sp_sb_data.p_func.vnic_id,
951 sp_sb_data.p_func.vf_id,
952 sp_sb_data.p_func.vf_valid,
953 sp_sb_data.state);
954 }
523224a3 955
ec6ba945 956 for_each_eth_queue(bp, i) {
a2fbb9ea 957 struct bnx2x_fastpath *fp = &bp->fp[i];
523224a3 958 int loop;
f2e0899f 959 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
960 struct hc_status_block_data_e1x sb_data_e1x;
961 struct hc_status_block_sm *hc_sm_p =
619c5cb6
VZ
962 CHIP_IS_E1x(bp) ?
963 sb_data_e1x.common.state_machine :
964 sb_data_e2.common.state_machine;
523224a3 965 struct hc_index_data *hc_index_p =
619c5cb6
VZ
966 CHIP_IS_E1x(bp) ?
967 sb_data_e1x.index_data :
968 sb_data_e2.index_data;
6383c0b3 969 u8 data_size, cos;
523224a3 970 u32 *sb_data_p;
6383c0b3 971 struct bnx2x_fp_txdata txdata;
523224a3 972
e2611998
YM
973 if (!bp->fp)
974 break;
975
976 if (!fp->rx_cons_sb)
977 continue;
978
523224a3 979 /* Rx */
51c1a580 980 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 981 i, fp->rx_bd_prod, fp->rx_bd_cons,
523224a3 982 fp->rx_comp_prod,
66e855f3 983 fp->rx_comp_cons, le16_to_cpu(*fp->rx_cons_sb));
51c1a580 984 BNX2X_ERR(" rx_sge_prod(0x%x) last_max_sge(0x%x) fp_hc_idx(0x%x)\n",
8440d2b6 985 fp->rx_sge_prod, fp->last_max_sge,
523224a3 986 le16_to_cpu(fp->fp_hc_idx));
a2fbb9ea 987
523224a3 988 /* Tx */
6383c0b3
AE
989 for_each_cos_in_tx_queue(fp, cos)
990 {
1fc3de94 991 if (!fp->txdata_ptr[cos])
e2611998
YM
992 break;
993
65565884 994 txdata = *fp->txdata_ptr[cos];
e2611998
YM
995
996 if (!txdata.tx_cons_sb)
997 continue;
998
51c1a580 999 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
1000 i, txdata.tx_pkt_prod,
1001 txdata.tx_pkt_cons, txdata.tx_bd_prod,
1002 txdata.tx_bd_cons,
1003 le16_to_cpu(*txdata.tx_cons_sb));
1004 }
523224a3 1005
619c5cb6
VZ
1006 loop = CHIP_IS_E1x(bp) ?
1007 HC_SB_MAX_INDICES_E1X : HC_SB_MAX_INDICES_E2;
523224a3
DK
1008
1009 /* host sb data */
1010
ec6ba945
VZ
1011 if (IS_FCOE_FP(fp))
1012 continue;
55c11941 1013
523224a3
DK
1014 BNX2X_ERR(" run indexes (");
1015 for (j = 0; j < HC_SB_MAX_SM; j++)
1016 pr_cont("0x%x%s",
1017 fp->sb_running_index[j],
1018 (j == HC_SB_MAX_SM - 1) ? ")" : " ");
1019
1020 BNX2X_ERR(" indexes (");
1021 for (j = 0; j < loop; j++)
1022 pr_cont("0x%x%s",
1023 fp->sb_index_values[j],
1024 (j == loop - 1) ? ")" : " ");
0155a27c
YM
1025
1026 /* VF cannot access FW refelection for status block */
1027 if (IS_VF(bp))
1028 continue;
1029
523224a3 1030 /* fw sb data */
619c5cb6
VZ
1031 data_size = CHIP_IS_E1x(bp) ?
1032 sizeof(struct hc_status_block_data_e1x) :
1033 sizeof(struct hc_status_block_data_e2);
523224a3 1034 data_size /= sizeof(u32);
619c5cb6
VZ
1035 sb_data_p = CHIP_IS_E1x(bp) ?
1036 (u32 *)&sb_data_e1x :
1037 (u32 *)&sb_data_e2;
523224a3
DK
1038 /* copy sb data in here */
1039 for (j = 0; j < data_size; j++)
1040 *(sb_data_p + j) = REG_RD(bp, BAR_CSTRORM_INTMEM +
1041 CSTORM_STATUS_BLOCK_DATA_OFFSET(fp->fw_sb_id) +
1042 j * sizeof(u32));
1043
619c5cb6 1044 if (!CHIP_IS_E1x(bp)) {
51c1a580 1045 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
1046 sb_data_e2.common.p_func.pf_id,
1047 sb_data_e2.common.p_func.vf_id,
1048 sb_data_e2.common.p_func.vf_valid,
1049 sb_data_e2.common.p_func.vnic_id,
619c5cb6
VZ
1050 sb_data_e2.common.same_igu_sb_1b,
1051 sb_data_e2.common.state);
f2e0899f 1052 } else {
51c1a580 1053 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
1054 sb_data_e1x.common.p_func.pf_id,
1055 sb_data_e1x.common.p_func.vf_id,
1056 sb_data_e1x.common.p_func.vf_valid,
1057 sb_data_e1x.common.p_func.vnic_id,
619c5cb6
VZ
1058 sb_data_e1x.common.same_igu_sb_1b,
1059 sb_data_e1x.common.state);
f2e0899f 1060 }
523224a3
DK
1061
1062 /* SB_SMs data */
1063 for (j = 0; j < HC_SB_MAX_SM; j++) {
51c1a580
MS
1064 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",
1065 j, hc_sm_p[j].__flags,
1066 hc_sm_p[j].igu_sb_id,
1067 hc_sm_p[j].igu_seg_id,
1068 hc_sm_p[j].time_to_expire,
1069 hc_sm_p[j].timer_value);
523224a3
DK
1070 }
1071
16a5fd92 1072 /* Indices data */
523224a3 1073 for (j = 0; j < loop; j++) {
51c1a580 1074 pr_cont("INDEX[%d] flags (0x%x) timeout (0x%x)\n", j,
523224a3
DK
1075 hc_index_p[j].flags,
1076 hc_index_p[j].timeout);
1077 }
8440d2b6 1078 }
a2fbb9ea 1079
523224a3 1080#ifdef BNX2X_STOP_ON_ERROR
0155a27c
YM
1081 if (IS_PF(bp)) {
1082 /* event queue */
1083 BNX2X_ERR("eq cons %x prod %x\n", bp->eq_cons, bp->eq_prod);
1084 for (i = 0; i < NUM_EQ_DESC; i++) {
1085 u32 *data = (u32 *)&bp->eq_ring[i].message.data;
1086
1087 BNX2X_ERR("event queue [%d]: header: opcode %d, error %d\n",
1088 i, bp->eq_ring[i].message.opcode,
1089 bp->eq_ring[i].message.error);
1090 BNX2X_ERR("data: %x %x %x\n",
1091 data[0], data[1], data[2]);
1092 }
04c46736
YM
1093 }
1094
8440d2b6
EG
1095 /* Rings */
1096 /* Rx */
55c11941 1097 for_each_valid_rx_queue(bp, i) {
8440d2b6 1098 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea 1099
e2611998
YM
1100 if (!bp->fp)
1101 break;
1102
1103 if (!fp->rx_cons_sb)
1104 continue;
1105
a2fbb9ea
ET
1106 start = RX_BD(le16_to_cpu(*fp->rx_cons_sb) - 10);
1107 end = RX_BD(le16_to_cpu(*fp->rx_cons_sb) + 503);
8440d2b6 1108 for (j = start; j != end; j = RX_BD(j + 1)) {
a2fbb9ea
ET
1109 u32 *rx_bd = (u32 *)&fp->rx_desc_ring[j];
1110 struct sw_rx_bd *sw_bd = &fp->rx_buf_ring[j];
1111
c3eefaf6 1112 BNX2X_ERR("fp%d: rx_bd[%x]=[%x:%x] sw_bd=[%p]\n",
44151acb 1113 i, j, rx_bd[1], rx_bd[0], sw_bd->data);
a2fbb9ea
ET
1114 }
1115
3196a88a
EG
1116 start = RX_SGE(fp->rx_sge_prod);
1117 end = RX_SGE(fp->last_max_sge);
8440d2b6 1118 for (j = start; j != end; j = RX_SGE(j + 1)) {
7a9b2557
VZ
1119 u32 *rx_sge = (u32 *)&fp->rx_sge_ring[j];
1120 struct sw_rx_page *sw_page = &fp->rx_page_ring[j];
1121
c3eefaf6
EG
1122 BNX2X_ERR("fp%d: rx_sge[%x]=[%x:%x] sw_page=[%p]\n",
1123 i, j, rx_sge[1], rx_sge[0], sw_page->page);
7a9b2557
VZ
1124 }
1125
a2fbb9ea
ET
1126 start = RCQ_BD(fp->rx_comp_cons - 10);
1127 end = RCQ_BD(fp->rx_comp_cons + 503);
8440d2b6 1128 for (j = start; j != end; j = RCQ_BD(j + 1)) {
a2fbb9ea
ET
1129 u32 *cqe = (u32 *)&fp->rx_comp_ring[j];
1130
c3eefaf6
EG
1131 BNX2X_ERR("fp%d: cqe[%x]=[%x:%x:%x:%x]\n",
1132 i, j, cqe[0], cqe[1], cqe[2], cqe[3]);
a2fbb9ea
ET
1133 }
1134 }
1135
8440d2b6 1136 /* Tx */
55c11941 1137 for_each_valid_tx_queue(bp, i) {
8440d2b6 1138 struct bnx2x_fastpath *fp = &bp->fp[i];
e2611998
YM
1139
1140 if (!bp->fp)
1141 break;
1142
6383c0b3 1143 for_each_cos_in_tx_queue(fp, cos) {
65565884 1144 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3 1145
1fc3de94 1146 if (!fp->txdata_ptr[cos])
e2611998
YM
1147 break;
1148
ea36475a 1149 if (!txdata->tx_cons_sb)
e2611998
YM
1150 continue;
1151
6383c0b3
AE
1152 start = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) - 10);
1153 end = TX_BD(le16_to_cpu(*txdata->tx_cons_sb) + 245);
1154 for (j = start; j != end; j = TX_BD(j + 1)) {
1155 struct sw_tx_bd *sw_bd =
1156 &txdata->tx_buf_ring[j];
1157
51c1a580 1158 BNX2X_ERR("fp%d: txdata %d, packet[%x]=[%p,%x]\n",
6383c0b3
AE
1159 i, cos, j, sw_bd->skb,
1160 sw_bd->first_bd);
1161 }
8440d2b6 1162
6383c0b3
AE
1163 start = TX_BD(txdata->tx_bd_cons - 10);
1164 end = TX_BD(txdata->tx_bd_cons + 254);
1165 for (j = start; j != end; j = TX_BD(j + 1)) {
1166 u32 *tx_bd = (u32 *)&txdata->tx_desc_ring[j];
8440d2b6 1167
51c1a580 1168 BNX2X_ERR("fp%d: txdata %d, tx_bd[%x]=[%x:%x:%x:%x]\n",
6383c0b3
AE
1169 i, cos, j, tx_bd[0], tx_bd[1],
1170 tx_bd[2], tx_bd[3]);
1171 }
8440d2b6
EG
1172 }
1173 }
523224a3 1174#endif
0155a27c
YM
1175 if (IS_PF(bp)) {
1176 bnx2x_fw_dump(bp);
1177 bnx2x_mc_assert(bp);
1178 }
a2fbb9ea 1179 BNX2X_ERR("end crash dump -----------------\n");
a2fbb9ea
ET
1180}
1181
619c5cb6
VZ
1182/*
1183 * FLR Support for E2
1184 *
1185 * bnx2x_pf_flr_clnup() is called during nic_load in the per function HW
1186 * initialization.
1187 */
16a5fd92 1188#define FLR_WAIT_USEC 10000 /* 10 milliseconds */
89db4ad8
AE
1189#define FLR_WAIT_INTERVAL 50 /* usec */
1190#define FLR_POLL_CNT (FLR_WAIT_USEC/FLR_WAIT_INTERVAL) /* 200 */
619c5cb6
VZ
1191
1192struct pbf_pN_buf_regs {
1193 int pN;
1194 u32 init_crd;
1195 u32 crd;
1196 u32 crd_freed;
1197};
1198
1199struct pbf_pN_cmd_regs {
1200 int pN;
1201 u32 lines_occup;
1202 u32 lines_freed;
1203};
1204
1205static void bnx2x_pbf_pN_buf_flushed(struct bnx2x *bp,
1206 struct pbf_pN_buf_regs *regs,
1207 u32 poll_count)
1208{
1209 u32 init_crd, crd, crd_start, crd_freed, crd_freed_start;
1210 u32 cur_cnt = poll_count;
1211
1212 crd_freed = crd_freed_start = REG_RD(bp, regs->crd_freed);
1213 crd = crd_start = REG_RD(bp, regs->crd);
1214 init_crd = REG_RD(bp, regs->init_crd);
1215
1216 DP(BNX2X_MSG_SP, "INIT CREDIT[%d] : %x\n", regs->pN, init_crd);
1217 DP(BNX2X_MSG_SP, "CREDIT[%d] : s:%x\n", regs->pN, crd);
1218 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: s:%x\n", regs->pN, crd_freed);
1219
1220 while ((crd != init_crd) && ((u32)SUB_S32(crd_freed, crd_freed_start) <
1221 (init_crd - crd_start))) {
1222 if (cur_cnt--) {
89db4ad8 1223 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1224 crd = REG_RD(bp, regs->crd);
1225 crd_freed = REG_RD(bp, regs->crd_freed);
1226 } else {
1227 DP(BNX2X_MSG_SP, "PBF tx buffer[%d] timed out\n",
1228 regs->pN);
1229 DP(BNX2X_MSG_SP, "CREDIT[%d] : c:%x\n",
1230 regs->pN, crd);
1231 DP(BNX2X_MSG_SP, "CREDIT_FREED[%d]: c:%x\n",
1232 regs->pN, crd_freed);
1233 break;
1234 }
1235 }
1236 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF tx buffer[%d]\n",
89db4ad8 1237 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1238}
1239
1240static void bnx2x_pbf_pN_cmd_flushed(struct bnx2x *bp,
1241 struct pbf_pN_cmd_regs *regs,
1242 u32 poll_count)
1243{
1244 u32 occup, to_free, freed, freed_start;
1245 u32 cur_cnt = poll_count;
1246
1247 occup = to_free = REG_RD(bp, regs->lines_occup);
1248 freed = freed_start = REG_RD(bp, regs->lines_freed);
1249
1250 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n", regs->pN, occup);
1251 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n", regs->pN, freed);
1252
1253 while (occup && ((u32)SUB_S32(freed, freed_start) < to_free)) {
1254 if (cur_cnt--) {
89db4ad8 1255 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1256 occup = REG_RD(bp, regs->lines_occup);
1257 freed = REG_RD(bp, regs->lines_freed);
1258 } else {
1259 DP(BNX2X_MSG_SP, "PBF cmd queue[%d] timed out\n",
1260 regs->pN);
1261 DP(BNX2X_MSG_SP, "OCCUPANCY[%d] : s:%x\n",
1262 regs->pN, occup);
1263 DP(BNX2X_MSG_SP, "LINES_FREED[%d] : s:%x\n",
1264 regs->pN, freed);
1265 break;
1266 }
1267 }
1268 DP(BNX2X_MSG_SP, "Waited %d*%d usec for PBF cmd queue[%d]\n",
89db4ad8 1269 poll_count-cur_cnt, FLR_WAIT_INTERVAL, regs->pN);
619c5cb6
VZ
1270}
1271
1191cb83
ED
1272static u32 bnx2x_flr_clnup_reg_poll(struct bnx2x *bp, u32 reg,
1273 u32 expected, u32 poll_count)
619c5cb6
VZ
1274{
1275 u32 cur_cnt = poll_count;
1276 u32 val;
1277
1278 while ((val = REG_RD(bp, reg)) != expected && cur_cnt--)
89db4ad8 1279 udelay(FLR_WAIT_INTERVAL);
619c5cb6
VZ
1280
1281 return val;
1282}
1283
d16132ce
AE
1284int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
1285 char *msg, u32 poll_cnt)
619c5cb6
VZ
1286{
1287 u32 val = bnx2x_flr_clnup_reg_poll(bp, reg, 0, poll_cnt);
1288 if (val != 0) {
1289 BNX2X_ERR("%s usage count=%d\n", msg, val);
1290 return 1;
1291 }
1292 return 0;
1293}
1294
d16132ce
AE
1295/* Common routines with VF FLR cleanup */
1296u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp)
619c5cb6
VZ
1297{
1298 /* adjust polling timeout */
1299 if (CHIP_REV_IS_EMUL(bp))
1300 return FLR_POLL_CNT * 2000;
1301
1302 if (CHIP_REV_IS_FPGA(bp))
1303 return FLR_POLL_CNT * 120;
1304
1305 return FLR_POLL_CNT;
1306}
1307
d16132ce 1308void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count)
619c5cb6
VZ
1309{
1310 struct pbf_pN_cmd_regs cmd_regs[] = {
1311 {0, (CHIP_IS_E3B0(bp)) ?
1312 PBF_REG_TQ_OCCUPANCY_Q0 :
1313 PBF_REG_P0_TQ_OCCUPANCY,
1314 (CHIP_IS_E3B0(bp)) ?
1315 PBF_REG_TQ_LINES_FREED_CNT_Q0 :
1316 PBF_REG_P0_TQ_LINES_FREED_CNT},
1317 {1, (CHIP_IS_E3B0(bp)) ?
1318 PBF_REG_TQ_OCCUPANCY_Q1 :
1319 PBF_REG_P1_TQ_OCCUPANCY,
1320 (CHIP_IS_E3B0(bp)) ?
1321 PBF_REG_TQ_LINES_FREED_CNT_Q1 :
1322 PBF_REG_P1_TQ_LINES_FREED_CNT},
1323 {4, (CHIP_IS_E3B0(bp)) ?
1324 PBF_REG_TQ_OCCUPANCY_LB_Q :
1325 PBF_REG_P4_TQ_OCCUPANCY,
1326 (CHIP_IS_E3B0(bp)) ?
1327 PBF_REG_TQ_LINES_FREED_CNT_LB_Q :
1328 PBF_REG_P4_TQ_LINES_FREED_CNT}
1329 };
1330
1331 struct pbf_pN_buf_regs buf_regs[] = {
1332 {0, (CHIP_IS_E3B0(bp)) ?
1333 PBF_REG_INIT_CRD_Q0 :
1334 PBF_REG_P0_INIT_CRD ,
1335 (CHIP_IS_E3B0(bp)) ?
1336 PBF_REG_CREDIT_Q0 :
1337 PBF_REG_P0_CREDIT,
1338 (CHIP_IS_E3B0(bp)) ?
1339 PBF_REG_INTERNAL_CRD_FREED_CNT_Q0 :
1340 PBF_REG_P0_INTERNAL_CRD_FREED_CNT},
1341 {1, (CHIP_IS_E3B0(bp)) ?
1342 PBF_REG_INIT_CRD_Q1 :
1343 PBF_REG_P1_INIT_CRD,
1344 (CHIP_IS_E3B0(bp)) ?
1345 PBF_REG_CREDIT_Q1 :
1346 PBF_REG_P1_CREDIT,
1347 (CHIP_IS_E3B0(bp)) ?
1348 PBF_REG_INTERNAL_CRD_FREED_CNT_Q1 :
1349 PBF_REG_P1_INTERNAL_CRD_FREED_CNT},
1350 {4, (CHIP_IS_E3B0(bp)) ?
1351 PBF_REG_INIT_CRD_LB_Q :
1352 PBF_REG_P4_INIT_CRD,
1353 (CHIP_IS_E3B0(bp)) ?
1354 PBF_REG_CREDIT_LB_Q :
1355 PBF_REG_P4_CREDIT,
1356 (CHIP_IS_E3B0(bp)) ?
1357 PBF_REG_INTERNAL_CRD_FREED_CNT_LB_Q :
1358 PBF_REG_P4_INTERNAL_CRD_FREED_CNT},
1359 };
1360
1361 int i;
1362
1363 /* Verify the command queues are flushed P0, P1, P4 */
1364 for (i = 0; i < ARRAY_SIZE(cmd_regs); i++)
1365 bnx2x_pbf_pN_cmd_flushed(bp, &cmd_regs[i], poll_count);
1366
619c5cb6
VZ
1367 /* Verify the transmission buffers are flushed P0, P1, P4 */
1368 for (i = 0; i < ARRAY_SIZE(buf_regs); i++)
1369 bnx2x_pbf_pN_buf_flushed(bp, &buf_regs[i], poll_count);
1370}
1371
1372#define OP_GEN_PARAM(param) \
1373 (((param) << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM)
1374
1375#define OP_GEN_TYPE(type) \
1376 (((type) << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE)
1377
1378#define OP_GEN_AGG_VECT(index) \
1379 (((index) << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX)
1380
d16132ce 1381int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func, u32 poll_cnt)
619c5cb6 1382{
86564c3f 1383 u32 op_gen_command = 0;
619c5cb6
VZ
1384 u32 comp_addr = BAR_CSTRORM_INTMEM +
1385 CSTORM_FINAL_CLEANUP_COMPLETE_OFFSET(clnup_func);
1386 int ret = 0;
1387
1388 if (REG_RD(bp, comp_addr)) {
89db4ad8 1389 BNX2X_ERR("Cleanup complete was not 0 before sending\n");
619c5cb6
VZ
1390 return 1;
1391 }
1392
86564c3f
YM
1393 op_gen_command |= OP_GEN_PARAM(XSTORM_AGG_INT_FINAL_CLEANUP_INDEX);
1394 op_gen_command |= OP_GEN_TYPE(XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE);
1395 op_gen_command |= OP_GEN_AGG_VECT(clnup_func);
1396 op_gen_command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
619c5cb6 1397
89db4ad8 1398 DP(BNX2X_MSG_SP, "sending FW Final cleanup\n");
86564c3f 1399 REG_WR(bp, XSDM_REG_OPERATION_GEN, op_gen_command);
619c5cb6
VZ
1400
1401 if (bnx2x_flr_clnup_reg_poll(bp, comp_addr, 1, poll_cnt) != 1) {
1402 BNX2X_ERR("FW final cleanup did not succeed\n");
51c1a580
MS
1403 DP(BNX2X_MSG_SP, "At timeout completion address contained %x\n",
1404 (REG_RD(bp, comp_addr)));
d16132ce
AE
1405 bnx2x_panic();
1406 return 1;
619c5cb6 1407 }
16a5fd92 1408 /* Zero completion for next FLR */
619c5cb6
VZ
1409 REG_WR(bp, comp_addr, 0);
1410
1411 return ret;
1412}
1413
b56e9670 1414u8 bnx2x_is_pcie_pending(struct pci_dev *dev)
619c5cb6 1415{
619c5cb6
VZ
1416 u16 status;
1417
2a80eebc 1418 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
619c5cb6
VZ
1419 return status & PCI_EXP_DEVSTA_TRPND;
1420}
1421
1422/* PF FLR specific routines
1423*/
1424static int bnx2x_poll_hw_usage_counters(struct bnx2x *bp, u32 poll_cnt)
1425{
619c5cb6
VZ
1426 /* wait for CFC PF usage-counter to zero (includes all the VFs) */
1427 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1428 CFC_REG_NUM_LCIDS_INSIDE_PF,
1429 "CFC PF usage counter timed out",
1430 poll_cnt))
1431 return 1;
1432
619c5cb6
VZ
1433 /* Wait for DQ PF usage-counter to zero (until DQ cleanup) */
1434 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1435 DORQ_REG_PF_USAGE_CNT,
1436 "DQ PF usage counter timed out",
1437 poll_cnt))
1438 return 1;
1439
1440 /* Wait for QM PF usage-counter to zero (until DQ cleanup) */
1441 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1442 QM_REG_PF_USG_CNT_0 + 4*BP_FUNC(bp),
1443 "QM PF usage counter timed out",
1444 poll_cnt))
1445 return 1;
1446
1447 /* Wait for Timer PF usage-counters to zero (until DQ cleanup) */
1448 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1449 TM_REG_LIN0_VNIC_UC + 4*BP_PORT(bp),
1450 "Timers VNIC usage counter timed out",
1451 poll_cnt))
1452 return 1;
1453 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1454 TM_REG_LIN0_NUM_SCANS + 4*BP_PORT(bp),
1455 "Timers NUM_SCANS usage counter timed out",
1456 poll_cnt))
1457 return 1;
1458
1459 /* Wait DMAE PF usage counter to zero */
1460 if (bnx2x_flr_clnup_poll_hw_counter(bp,
1461 dmae_reg_go_c[INIT_DMAE_C(bp)],
6bf07b8e 1462 "DMAE command register timed out",
619c5cb6
VZ
1463 poll_cnt))
1464 return 1;
1465
1466 return 0;
1467}
1468
1469static void bnx2x_hw_enable_status(struct bnx2x *bp)
1470{
1471 u32 val;
1472
1473 val = REG_RD(bp, CFC_REG_WEAK_ENABLE_PF);
1474 DP(BNX2X_MSG_SP, "CFC_REG_WEAK_ENABLE_PF is 0x%x\n", val);
1475
1476 val = REG_RD(bp, PBF_REG_DISABLE_PF);
1477 DP(BNX2X_MSG_SP, "PBF_REG_DISABLE_PF is 0x%x\n", val);
1478
1479 val = REG_RD(bp, IGU_REG_PCI_PF_MSI_EN);
1480 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSI_EN is 0x%x\n", val);
1481
1482 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_EN);
1483 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_EN is 0x%x\n", val);
1484
1485 val = REG_RD(bp, IGU_REG_PCI_PF_MSIX_FUNC_MASK);
1486 DP(BNX2X_MSG_SP, "IGU_REG_PCI_PF_MSIX_FUNC_MASK is 0x%x\n", val);
1487
1488 val = REG_RD(bp, PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR);
1489 DP(BNX2X_MSG_SP, "PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR is 0x%x\n", val);
1490
1491 val = REG_RD(bp, PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR);
1492 DP(BNX2X_MSG_SP, "PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR is 0x%x\n", val);
1493
1494 val = REG_RD(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
1495 DP(BNX2X_MSG_SP, "PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER is 0x%x\n",
1496 val);
1497}
1498
1499static int bnx2x_pf_flr_clnup(struct bnx2x *bp)
1500{
1501 u32 poll_cnt = bnx2x_flr_clnup_poll_count(bp);
1502
1503 DP(BNX2X_MSG_SP, "Cleanup after FLR PF[%d]\n", BP_ABS_FUNC(bp));
1504
1505 /* Re-enable PF target read access */
1506 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
1507
1508 /* Poll HW usage counters */
89db4ad8 1509 DP(BNX2X_MSG_SP, "Polling usage counters\n");
619c5cb6
VZ
1510 if (bnx2x_poll_hw_usage_counters(bp, poll_cnt))
1511 return -EBUSY;
1512
1513 /* Zero the igu 'trailing edge' and 'leading edge' */
1514
1515 /* Send the FW cleanup command */
1516 if (bnx2x_send_final_clnup(bp, (u8)BP_FUNC(bp), poll_cnt))
1517 return -EBUSY;
1518
1519 /* ATC cleanup */
1520
1521 /* Verify TX hw is flushed */
1522 bnx2x_tx_hw_flushed(bp, poll_cnt);
1523
1524 /* Wait 100ms (not adjusted according to platform) */
1525 msleep(100);
1526
1527 /* Verify no pending pci transactions */
1528 if (bnx2x_is_pcie_pending(bp->pdev))
1529 BNX2X_ERR("PCIE Transactions still pending\n");
1530
1531 /* Debug */
1532 bnx2x_hw_enable_status(bp);
1533
1534 /*
1535 * Master enable - Due to WB DMAE writes performed before this
1536 * register is re-initialized as part of the regular function init
1537 */
1538 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
1539
1540 return 0;
1541}
1542
f2e0899f 1543static void bnx2x_hc_int_enable(struct bnx2x *bp)
a2fbb9ea 1544{
34f80b04 1545 int port = BP_PORT(bp);
a2fbb9ea
ET
1546 u32 addr = port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0;
1547 u32 val = REG_RD(bp, addr);
69c326b3
DK
1548 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1549 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1550 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
a2fbb9ea
ET
1551
1552 if (msix) {
8badd27a
EG
1553 val &= ~(HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1554 HC_CONFIG_0_REG_INT_LINE_EN_0);
a2fbb9ea
ET
1555 val |= (HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1556 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
69c326b3
DK
1557 if (single_msix)
1558 val |= HC_CONFIG_0_REG_SINGLE_ISR_EN_0;
8badd27a
EG
1559 } else if (msi) {
1560 val &= ~HC_CONFIG_0_REG_INT_LINE_EN_0;
1561 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
1562 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
1563 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
a2fbb9ea
ET
1564 } else {
1565 val |= (HC_CONFIG_0_REG_SINGLE_ISR_EN_0 |
615f8fd9 1566 HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0 |
a2fbb9ea
ET
1567 HC_CONFIG_0_REG_INT_LINE_EN_0 |
1568 HC_CONFIG_0_REG_ATTN_BIT_EN_0);
615f8fd9 1569
a0fd065c 1570 if (!CHIP_IS_E1(bp)) {
51c1a580
MS
1571 DP(NETIF_MSG_IFUP,
1572 "write %x to HC %d (addr 0x%x)\n", val, port, addr);
615f8fd9 1573
a0fd065c 1574 REG_WR(bp, addr, val);
615f8fd9 1575
a0fd065c
DK
1576 val &= ~HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0;
1577 }
a2fbb9ea
ET
1578 }
1579
a0fd065c
DK
1580 if (CHIP_IS_E1(bp))
1581 REG_WR(bp, HC_REG_INT_MASK + port*4, 0x1FFFF);
1582
51c1a580
MS
1583 DP(NETIF_MSG_IFUP,
1584 "write %x to HC %d (addr 0x%x) mode %s\n", val, port, addr,
1585 (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
a2fbb9ea
ET
1586
1587 REG_WR(bp, addr, val);
37dbbf32
EG
1588 /*
1589 * Ensure that HC_CONFIG is written before leading/trailing edge config
1590 */
1591 mmiowb();
1592 barrier();
34f80b04 1593
f2e0899f 1594 if (!CHIP_IS_E1(bp)) {
34f80b04 1595 /* init leading/trailing edge */
fb3bff17 1596 if (IS_MF(bp)) {
3395a033 1597 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
34f80b04 1598 if (bp->port.pmf)
4acac6a5
EG
1599 /* enable nig and gpio3 attention */
1600 val |= 0x1100;
34f80b04
EG
1601 } else
1602 val = 0xffff;
1603
1604 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
1605 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
1606 }
37dbbf32
EG
1607
1608 /* Make sure that interrupts are indeed enabled from here on */
1609 mmiowb();
a2fbb9ea
ET
1610}
1611
f2e0899f
DK
1612static void bnx2x_igu_int_enable(struct bnx2x *bp)
1613{
1614 u32 val;
30a5de77
DK
1615 bool msix = (bp->flags & USING_MSIX_FLAG) ? true : false;
1616 bool single_msix = (bp->flags & USING_SINGLE_MSIX_FLAG) ? true : false;
1617 bool msi = (bp->flags & USING_MSI_FLAG) ? true : false;
f2e0899f
DK
1618
1619 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
1620
1621 if (msix) {
1622 val &= ~(IGU_PF_CONF_INT_LINE_EN |
1623 IGU_PF_CONF_SINGLE_ISR_EN);
ebe61d80 1624 val |= (IGU_PF_CONF_MSI_MSIX_EN |
f2e0899f 1625 IGU_PF_CONF_ATTN_BIT_EN);
30a5de77
DK
1626
1627 if (single_msix)
1628 val |= IGU_PF_CONF_SINGLE_ISR_EN;
f2e0899f
DK
1629 } else if (msi) {
1630 val &= ~IGU_PF_CONF_INT_LINE_EN;
ebe61d80 1631 val |= (IGU_PF_CONF_MSI_MSIX_EN |
f2e0899f
DK
1632 IGU_PF_CONF_ATTN_BIT_EN |
1633 IGU_PF_CONF_SINGLE_ISR_EN);
1634 } else {
1635 val &= ~IGU_PF_CONF_MSI_MSIX_EN;
ebe61d80 1636 val |= (IGU_PF_CONF_INT_LINE_EN |
f2e0899f
DK
1637 IGU_PF_CONF_ATTN_BIT_EN |
1638 IGU_PF_CONF_SINGLE_ISR_EN);
1639 }
1640
ebe61d80
YM
1641 /* Clean previous status - need to configure igu prior to ack*/
1642 if ((!msix) || single_msix) {
1643 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1644 bnx2x_ack_int(bp);
1645 }
1646
1647 val |= IGU_PF_CONF_FUNC_EN;
1648
51c1a580 1649 DP(NETIF_MSG_IFUP, "write 0x%x to IGU mode %s\n",
f2e0899f
DK
1650 val, (msix ? "MSI-X" : (msi ? "MSI" : "INTx")));
1651
1652 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
1653
79a8557a
YM
1654 if (val & IGU_PF_CONF_INT_LINE_EN)
1655 pci_intx(bp->pdev, true);
1656
f2e0899f
DK
1657 barrier();
1658
1659 /* init leading/trailing edge */
1660 if (IS_MF(bp)) {
3395a033 1661 val = (0xee0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
1662 if (bp->port.pmf)
1663 /* enable nig and gpio3 attention */
1664 val |= 0x1100;
1665 } else
1666 val = 0xffff;
1667
1668 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
1669 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
1670
1671 /* Make sure that interrupts are indeed enabled from here on */
1672 mmiowb();
1673}
1674
1675void bnx2x_int_enable(struct bnx2x *bp)
1676{
1677 if (bp->common.int_block == INT_BLOCK_HC)
1678 bnx2x_hc_int_enable(bp);
1679 else
1680 bnx2x_igu_int_enable(bp);
1681}
1682
9f6c9258 1683void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw)
a2fbb9ea 1684{
a2fbb9ea 1685 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
8badd27a 1686 int i, offset;
a2fbb9ea 1687
f8ef6e44
YG
1688 if (disable_hw)
1689 /* prevent the HW from sending interrupts */
1690 bnx2x_int_disable(bp);
a2fbb9ea
ET
1691
1692 /* make sure all ISRs are done */
1693 if (msix) {
8badd27a
EG
1694 synchronize_irq(bp->msix_table[0].vector);
1695 offset = 1;
55c11941
MS
1696 if (CNIC_SUPPORT(bp))
1697 offset++;
ec6ba945 1698 for_each_eth_queue(bp, i)
754a2f52 1699 synchronize_irq(bp->msix_table[offset++].vector);
a2fbb9ea
ET
1700 } else
1701 synchronize_irq(bp->pdev->irq);
1702
1703 /* make sure sp_task is not running */
1cf167f2 1704 cancel_delayed_work(&bp->sp_task);
3deb8167 1705 cancel_delayed_work(&bp->period_task);
1cf167f2 1706 flush_workqueue(bnx2x_wq);
a2fbb9ea
ET
1707}
1708
34f80b04 1709/* fast path */
a2fbb9ea
ET
1710
1711/*
34f80b04 1712 * General service functions
a2fbb9ea
ET
1713 */
1714
72fd0718
VZ
1715/* Return true if succeeded to acquire the lock */
1716static bool bnx2x_trylock_hw_lock(struct bnx2x *bp, u32 resource)
1717{
1718 u32 lock_status;
1719 u32 resource_bit = (1 << resource);
1720 int func = BP_FUNC(bp);
1721 u32 hw_lock_control_reg;
1722
51c1a580
MS
1723 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1724 "Trying to take a lock on resource %d\n", resource);
72fd0718
VZ
1725
1726 /* Validating that the resource is within range */
1727 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1728 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
72fd0718
VZ
1729 "resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
1730 resource, HW_LOCK_MAX_RESOURCE_VALUE);
0fdf4d09 1731 return false;
72fd0718
VZ
1732 }
1733
1734 if (func <= 5)
1735 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
1736 else
1737 hw_lock_control_reg =
1738 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
1739
1740 /* Try to acquire the lock */
1741 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
1742 lock_status = REG_RD(bp, hw_lock_control_reg);
1743 if (lock_status & resource_bit)
1744 return true;
1745
51c1a580
MS
1746 DP(NETIF_MSG_HW | NETIF_MSG_IFUP,
1747 "Failed to get a lock on resource %d\n", resource);
72fd0718
VZ
1748 return false;
1749}
1750
c9ee9206
VZ
1751/**
1752 * bnx2x_get_leader_lock_resource - get the recovery leader resource id
1753 *
1754 * @bp: driver handle
1755 *
1756 * Returns the recovery leader resource id according to the engine this function
1757 * belongs to. Currently only only 2 engines is supported.
1758 */
1191cb83 1759static int bnx2x_get_leader_lock_resource(struct bnx2x *bp)
c9ee9206
VZ
1760{
1761 if (BP_PATH(bp))
1762 return HW_LOCK_RESOURCE_RECOVERY_LEADER_1;
1763 else
1764 return HW_LOCK_RESOURCE_RECOVERY_LEADER_0;
1765}
1766
1767/**
2de67439 1768 * bnx2x_trylock_leader_lock- try to acquire a leader lock.
c9ee9206
VZ
1769 *
1770 * @bp: driver handle
1771 *
2de67439 1772 * Tries to acquire a leader lock for current engine.
c9ee9206 1773 */
1191cb83 1774static bool bnx2x_trylock_leader_lock(struct bnx2x *bp)
c9ee9206
VZ
1775{
1776 return bnx2x_trylock_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
1777}
1778
619c5cb6 1779static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err);
55c11941 1780
fd1fc79d
AE
1781/* schedule the sp task and mark that interrupt occurred (runs from ISR) */
1782static int bnx2x_schedule_sp_task(struct bnx2x *bp)
1783{
1784 /* Set the interrupt occurred bit for the sp-task to recognize it
1785 * must ack the interrupt and transition according to the IGU
1786 * state machine.
1787 */
1788 atomic_set(&bp->interrupt_occurred, 1);
1789
1790 /* The sp_task must execute only after this bit
1791 * is set, otherwise we will get out of sync and miss all
1792 * further interrupts. Hence, the barrier.
1793 */
1794 smp_wmb();
1795
1796 /* schedule sp_task to workqueue */
1797 return queue_delayed_work(bnx2x_wq, &bp->sp_task, 0);
1798}
3196a88a 1799
619c5cb6 1800void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe)
a2fbb9ea
ET
1801{
1802 struct bnx2x *bp = fp->bp;
1803 int cid = SW_CID(rr_cqe->ramrod_cqe.conn_and_cmd_data);
1804 int command = CQE_CMD(rr_cqe->ramrod_cqe.conn_and_cmd_data);
619c5cb6 1805 enum bnx2x_queue_cmd drv_cmd = BNX2X_Q_CMD_MAX;
15192a8c 1806 struct bnx2x_queue_sp_obj *q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a2fbb9ea 1807
34f80b04 1808 DP(BNX2X_MSG_SP,
a2fbb9ea 1809 "fp %d cid %d got ramrod #%d state is %x type is %d\n",
0626b899 1810 fp->index, cid, command, bp->state,
34f80b04 1811 rr_cqe->ramrod_cqe.ramrod_type);
a2fbb9ea 1812
fd1fc79d
AE
1813 /* If cid is within VF range, replace the slowpath object with the
1814 * one corresponding to this VF
1815 */
1816 if (cid >= BNX2X_FIRST_VF_CID &&
1817 cid < BNX2X_FIRST_VF_CID + BNX2X_VF_CIDS)
1818 bnx2x_iov_set_queue_sp_obj(bp, cid, &q_obj);
1819
619c5cb6
VZ
1820 switch (command) {
1821 case (RAMROD_CMD_ID_ETH_CLIENT_UPDATE):
d6cae238 1822 DP(BNX2X_MSG_SP, "got UPDATE ramrod. CID %d\n", cid);
619c5cb6
VZ
1823 drv_cmd = BNX2X_Q_CMD_UPDATE;
1824 break;
d6cae238 1825
619c5cb6 1826 case (RAMROD_CMD_ID_ETH_CLIENT_SETUP):
d6cae238 1827 DP(BNX2X_MSG_SP, "got MULTI[%d] setup ramrod\n", cid);
619c5cb6 1828 drv_cmd = BNX2X_Q_CMD_SETUP;
a2fbb9ea
ET
1829 break;
1830
6383c0b3 1831 case (RAMROD_CMD_ID_ETH_TX_QUEUE_SETUP):
51c1a580 1832 DP(BNX2X_MSG_SP, "got MULTI[%d] tx-only setup ramrod\n", cid);
6383c0b3
AE
1833 drv_cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
1834 break;
1835
619c5cb6 1836 case (RAMROD_CMD_ID_ETH_HALT):
d6cae238 1837 DP(BNX2X_MSG_SP, "got MULTI[%d] halt ramrod\n", cid);
619c5cb6 1838 drv_cmd = BNX2X_Q_CMD_HALT;
a2fbb9ea
ET
1839 break;
1840
619c5cb6 1841 case (RAMROD_CMD_ID_ETH_TERMINATE):
6bf07b8e 1842 DP(BNX2X_MSG_SP, "got MULTI[%d] terminate ramrod\n", cid);
619c5cb6 1843 drv_cmd = BNX2X_Q_CMD_TERMINATE;
a2fbb9ea
ET
1844 break;
1845
619c5cb6 1846 case (RAMROD_CMD_ID_ETH_EMPTY):
d6cae238 1847 DP(BNX2X_MSG_SP, "got MULTI[%d] empty ramrod\n", cid);
619c5cb6 1848 drv_cmd = BNX2X_Q_CMD_EMPTY;
993ac7b5 1849 break;
619c5cb6 1850
14a94ebd
MK
1851 case (RAMROD_CMD_ID_ETH_TPA_UPDATE):
1852 DP(BNX2X_MSG_SP, "got tpa update ramrod CID=%d\n", cid);
1853 drv_cmd = BNX2X_Q_CMD_UPDATE_TPA;
1854 break;
1855
619c5cb6
VZ
1856 default:
1857 BNX2X_ERR("unexpected MC reply (%d) on fp[%d]\n",
1858 command, fp->index);
1859 return;
523224a3 1860 }
3196a88a 1861
619c5cb6
VZ
1862 if ((drv_cmd != BNX2X_Q_CMD_MAX) &&
1863 q_obj->complete_cmd(bp, q_obj, drv_cmd))
1864 /* q_obj->complete_cmd() failure means that this was
1865 * an unexpected completion.
1866 *
1867 * In this case we don't want to increase the bp->spq_left
1868 * because apparently we haven't sent this command the first
1869 * place.
1870 */
1871#ifdef BNX2X_STOP_ON_ERROR
1872 bnx2x_panic();
1873#else
1874 return;
1875#endif
1876
4e857c58 1877 smp_mb__before_atomic();
6e30dd4e 1878 atomic_inc(&bp->cq_spq_left);
619c5cb6 1879 /* push the change in bp->spq_left and towards the memory */
4e857c58 1880 smp_mb__after_atomic();
49d66772 1881
d6cae238
VZ
1882 DP(BNX2X_MSG_SP, "bp->cq_spq_left %x\n", atomic_read(&bp->cq_spq_left));
1883
a3348722
BW
1884 if ((drv_cmd == BNX2X_Q_CMD_UPDATE) && (IS_FCOE_FP(fp)) &&
1885 (!!test_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state))) {
1886 /* if Q update ramrod is completed for last Q in AFEX vif set
1887 * flow, then ACK MCP at the end
1888 *
1889 * mark pending ACK to MCP bit.
1890 * prevent case that both bits are cleared.
1891 * At the end of load/unload driver checks that
2de67439 1892 * sp_state is cleared, and this order prevents
a3348722
BW
1893 * races
1894 */
4e857c58 1895 smp_mb__before_atomic();
a3348722
BW
1896 set_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK, &bp->sp_state);
1897 wmb();
1898 clear_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
4e857c58 1899 smp_mb__after_atomic();
a3348722 1900
fd1fc79d
AE
1901 /* schedule the sp task as mcp ack is required */
1902 bnx2x_schedule_sp_task(bp);
a3348722
BW
1903 }
1904
523224a3 1905 return;
a2fbb9ea
ET
1906}
1907
9f6c9258 1908irqreturn_t bnx2x_interrupt(int irq, void *dev_instance)
a2fbb9ea 1909{
555f6c78 1910 struct bnx2x *bp = netdev_priv(dev_instance);
a2fbb9ea 1911 u16 status = bnx2x_ack_int(bp);
34f80b04 1912 u16 mask;
ca00392c 1913 int i;
6383c0b3 1914 u8 cos;
a2fbb9ea 1915
34f80b04 1916 /* Return here if interrupt is shared and it's not for us */
a2fbb9ea
ET
1917 if (unlikely(status == 0)) {
1918 DP(NETIF_MSG_INTR, "not our interrupt!\n");
1919 return IRQ_NONE;
1920 }
f5372251 1921 DP(NETIF_MSG_INTR, "got an interrupt status 0x%x\n", status);
a2fbb9ea 1922
3196a88a
EG
1923#ifdef BNX2X_STOP_ON_ERROR
1924 if (unlikely(bp->panic))
1925 return IRQ_HANDLED;
1926#endif
1927
ec6ba945 1928 for_each_eth_queue(bp, i) {
ca00392c 1929 struct bnx2x_fastpath *fp = &bp->fp[i];
a2fbb9ea 1930
55c11941 1931 mask = 0x2 << (fp->index + CNIC_SUPPORT(bp));
ca00392c 1932 if (status & mask) {
619c5cb6 1933 /* Handle Rx or Tx according to SB id */
6383c0b3 1934 for_each_cos_in_tx_queue(fp, cos)
65565884 1935 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
523224a3 1936 prefetch(&fp->sb_running_index[SM_RX_ID]);
f5fbf115 1937 napi_schedule_irqoff(&bnx2x_fp(bp, fp->index, napi));
ca00392c
EG
1938 status &= ~mask;
1939 }
a2fbb9ea
ET
1940 }
1941
55c11941
MS
1942 if (CNIC_SUPPORT(bp)) {
1943 mask = 0x2;
1944 if (status & (mask | 0x1)) {
1945 struct cnic_ops *c_ops = NULL;
993ac7b5 1946
ad9b4359
MC
1947 rcu_read_lock();
1948 c_ops = rcu_dereference(bp->cnic_ops);
1949 if (c_ops && (bp->cnic_eth_dev.drv_state &
1950 CNIC_DRV_STATE_HANDLES_IRQ))
1951 c_ops->cnic_handler(bp->cnic_data, NULL);
1952 rcu_read_unlock();
993ac7b5 1953
55c11941
MS
1954 status &= ~mask;
1955 }
993ac7b5 1956 }
a2fbb9ea 1957
34f80b04 1958 if (unlikely(status & 0x1)) {
fd1fc79d
AE
1959
1960 /* schedule sp task to perform default status block work, ack
1961 * attentions and enable interrupts.
1962 */
1963 bnx2x_schedule_sp_task(bp);
a2fbb9ea
ET
1964
1965 status &= ~0x1;
1966 if (!status)
1967 return IRQ_HANDLED;
1968 }
1969
cdaa7cb8
VZ
1970 if (unlikely(status))
1971 DP(NETIF_MSG_INTR, "got an unknown interrupt! (status 0x%x)\n",
34f80b04 1972 status);
a2fbb9ea 1973
c18487ee 1974 return IRQ_HANDLED;
a2fbb9ea
ET
1975}
1976
c18487ee
YR
1977/* Link */
1978
1979/*
1980 * General service functions
1981 */
a2fbb9ea 1982
9f6c9258 1983int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
1984{
1985 u32 lock_status;
1986 u32 resource_bit = (1 << resource);
4a37fb66
YG
1987 int func = BP_FUNC(bp);
1988 u32 hw_lock_control_reg;
c18487ee 1989 int cnt;
a2fbb9ea 1990
c18487ee
YR
1991 /* Validating that the resource is within range */
1992 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 1993 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
1994 resource, HW_LOCK_MAX_RESOURCE_VALUE);
1995 return -EINVAL;
1996 }
a2fbb9ea 1997
4a37fb66
YG
1998 if (func <= 5) {
1999 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
2000 } else {
2001 hw_lock_control_reg =
2002 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
2003 }
2004
c18487ee 2005 /* Validating that the resource is not already taken */
4a37fb66 2006 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 2007 if (lock_status & resource_bit) {
51c1a580 2008 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x\n",
c18487ee
YR
2009 lock_status, resource_bit);
2010 return -EEXIST;
2011 }
a2fbb9ea 2012
46230476
EG
2013 /* Try for 5 second every 5ms */
2014 for (cnt = 0; cnt < 1000; cnt++) {
c18487ee 2015 /* Try to acquire the lock */
4a37fb66
YG
2016 REG_WR(bp, hw_lock_control_reg + 4, resource_bit);
2017 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee
YR
2018 if (lock_status & resource_bit)
2019 return 0;
a2fbb9ea 2020
639d65b8 2021 usleep_range(5000, 10000);
a2fbb9ea 2022 }
51c1a580 2023 BNX2X_ERR("Timeout\n");
c18487ee
YR
2024 return -EAGAIN;
2025}
a2fbb9ea 2026
c9ee9206
VZ
2027int bnx2x_release_leader_lock(struct bnx2x *bp)
2028{
2029 return bnx2x_release_hw_lock(bp, bnx2x_get_leader_lock_resource(bp));
2030}
2031
9f6c9258 2032int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource)
c18487ee
YR
2033{
2034 u32 lock_status;
2035 u32 resource_bit = (1 << resource);
4a37fb66
YG
2036 int func = BP_FUNC(bp);
2037 u32 hw_lock_control_reg;
a2fbb9ea 2038
c18487ee
YR
2039 /* Validating that the resource is within range */
2040 if (resource > HW_LOCK_MAX_RESOURCE_VALUE) {
51c1a580 2041 BNX2X_ERR("resource(0x%x) > HW_LOCK_MAX_RESOURCE_VALUE(0x%x)\n",
c18487ee
YR
2042 resource, HW_LOCK_MAX_RESOURCE_VALUE);
2043 return -EINVAL;
2044 }
2045
4a37fb66
YG
2046 if (func <= 5) {
2047 hw_lock_control_reg = (MISC_REG_DRIVER_CONTROL_1 + func*8);
2048 } else {
2049 hw_lock_control_reg =
2050 (MISC_REG_DRIVER_CONTROL_7 + (func - 6)*8);
2051 }
2052
c18487ee 2053 /* Validating that the resource is currently taken */
4a37fb66 2054 lock_status = REG_RD(bp, hw_lock_control_reg);
c18487ee 2055 if (!(lock_status & resource_bit)) {
6bf07b8e
YM
2056 BNX2X_ERR("lock_status 0x%x resource_bit 0x%x. Unlock was called but lock wasn't taken!\n",
2057 lock_status, resource_bit);
c18487ee 2058 return -EFAULT;
a2fbb9ea
ET
2059 }
2060
9f6c9258
DK
2061 REG_WR(bp, hw_lock_control_reg, resource_bit);
2062 return 0;
c18487ee 2063}
a2fbb9ea 2064
4acac6a5
EG
2065int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port)
2066{
2067 /* The GPIO should be swapped if swap register is set and active */
2068 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
2069 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
2070 int gpio_shift = gpio_num +
2071 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2072 u32 gpio_mask = (1 << gpio_shift);
2073 u32 gpio_reg;
2074 int value;
2075
2076 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2077 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2078 return -EINVAL;
2079 }
2080
2081 /* read GPIO value */
2082 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
2083
2084 /* get the requested pin value */
2085 if ((gpio_reg & gpio_mask) == gpio_mask)
2086 value = 1;
2087 else
2088 value = 0;
2089
4acac6a5
EG
2090 return value;
2091}
2092
17de50b7 2093int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
c18487ee
YR
2094{
2095 /* The GPIO should be swapped if swap register is set and active */
2096 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
17de50b7 2097 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
c18487ee
YR
2098 int gpio_shift = gpio_num +
2099 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2100 u32 gpio_mask = (1 << gpio_shift);
2101 u32 gpio_reg;
a2fbb9ea 2102
c18487ee
YR
2103 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2104 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2105 return -EINVAL;
2106 }
a2fbb9ea 2107
4a37fb66 2108 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
c18487ee
YR
2109 /* read GPIO and mask except the float bits */
2110 gpio_reg = (REG_RD(bp, MISC_REG_GPIO) & MISC_REGISTERS_GPIO_FLOAT);
a2fbb9ea 2111
c18487ee
YR
2112 switch (mode) {
2113 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
51c1a580
MS
2114 DP(NETIF_MSG_LINK,
2115 "Set GPIO %d (shift %d) -> output low\n",
c18487ee
YR
2116 gpio_num, gpio_shift);
2117 /* clear FLOAT and set CLR */
2118 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2119 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_CLR_POS);
2120 break;
a2fbb9ea 2121
c18487ee 2122 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
51c1a580
MS
2123 DP(NETIF_MSG_LINK,
2124 "Set GPIO %d (shift %d) -> output high\n",
c18487ee
YR
2125 gpio_num, gpio_shift);
2126 /* clear FLOAT and set SET */
2127 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2128 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_SET_POS);
2129 break;
a2fbb9ea 2130
17de50b7 2131 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
51c1a580
MS
2132 DP(NETIF_MSG_LINK,
2133 "Set GPIO %d (shift %d) -> input\n",
c18487ee
YR
2134 gpio_num, gpio_shift);
2135 /* set FLOAT */
2136 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_FLOAT_POS);
2137 break;
a2fbb9ea 2138
c18487ee
YR
2139 default:
2140 break;
a2fbb9ea
ET
2141 }
2142
c18487ee 2143 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
4a37fb66 2144 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
f1410647 2145
c18487ee 2146 return 0;
a2fbb9ea
ET
2147}
2148
0d40f0d4
YR
2149int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode)
2150{
2151 u32 gpio_reg = 0;
2152 int rc = 0;
2153
2154 /* Any port swapping should be handled by caller. */
2155
2156 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2157 /* read GPIO and mask except the float bits */
2158 gpio_reg = REG_RD(bp, MISC_REG_GPIO);
2159 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_FLOAT_POS);
2160 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_CLR_POS);
2161 gpio_reg &= ~(pins << MISC_REGISTERS_GPIO_SET_POS);
2162
2163 switch (mode) {
2164 case MISC_REGISTERS_GPIO_OUTPUT_LOW:
2165 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output low\n", pins);
2166 /* set CLR */
2167 gpio_reg |= (pins << MISC_REGISTERS_GPIO_CLR_POS);
2168 break;
2169
2170 case MISC_REGISTERS_GPIO_OUTPUT_HIGH:
2171 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> output high\n", pins);
2172 /* set SET */
2173 gpio_reg |= (pins << MISC_REGISTERS_GPIO_SET_POS);
2174 break;
2175
2176 case MISC_REGISTERS_GPIO_INPUT_HI_Z:
2177 DP(NETIF_MSG_LINK, "Set GPIO 0x%x -> input\n", pins);
2178 /* set FLOAT */
2179 gpio_reg |= (pins << MISC_REGISTERS_GPIO_FLOAT_POS);
2180 break;
2181
2182 default:
2183 BNX2X_ERR("Invalid GPIO mode assignment %d\n", mode);
2184 rc = -EINVAL;
2185 break;
2186 }
2187
2188 if (rc == 0)
2189 REG_WR(bp, MISC_REG_GPIO, gpio_reg);
2190
2191 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2192
2193 return rc;
2194}
2195
4acac6a5
EG
2196int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port)
2197{
2198 /* The GPIO should be swapped if swap register is set and active */
2199 int gpio_port = (REG_RD(bp, NIG_REG_PORT_SWAP) &&
2200 REG_RD(bp, NIG_REG_STRAP_OVERRIDE)) ^ port;
2201 int gpio_shift = gpio_num +
2202 (gpio_port ? MISC_REGISTERS_GPIO_PORT_SHIFT : 0);
2203 u32 gpio_mask = (1 << gpio_shift);
2204 u32 gpio_reg;
2205
2206 if (gpio_num > MISC_REGISTERS_GPIO_3) {
2207 BNX2X_ERR("Invalid GPIO %d\n", gpio_num);
2208 return -EINVAL;
2209 }
2210
2211 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2212 /* read GPIO int */
2213 gpio_reg = REG_RD(bp, MISC_REG_GPIO_INT);
2214
2215 switch (mode) {
2216 case MISC_REGISTERS_GPIO_INT_OUTPUT_CLR:
51c1a580
MS
2217 DP(NETIF_MSG_LINK,
2218 "Clear GPIO INT %d (shift %d) -> output low\n",
2219 gpio_num, gpio_shift);
4acac6a5
EG
2220 /* clear SET and set CLR */
2221 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2222 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2223 break;
2224
2225 case MISC_REGISTERS_GPIO_INT_OUTPUT_SET:
51c1a580
MS
2226 DP(NETIF_MSG_LINK,
2227 "Set GPIO INT %d (shift %d) -> output high\n",
2228 gpio_num, gpio_shift);
4acac6a5
EG
2229 /* clear CLR and set SET */
2230 gpio_reg &= ~(gpio_mask << MISC_REGISTERS_GPIO_INT_CLR_POS);
2231 gpio_reg |= (gpio_mask << MISC_REGISTERS_GPIO_INT_SET_POS);
2232 break;
2233
2234 default:
2235 break;
2236 }
2237
2238 REG_WR(bp, MISC_REG_GPIO_INT, gpio_reg);
2239 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_GPIO);
2240
2241 return 0;
2242}
2243
d6d99a3f 2244static int bnx2x_set_spio(struct bnx2x *bp, int spio, u32 mode)
a2fbb9ea 2245{
c18487ee 2246 u32 spio_reg;
a2fbb9ea 2247
d6d99a3f
YM
2248 /* Only 2 SPIOs are configurable */
2249 if ((spio != MISC_SPIO_SPIO4) && (spio != MISC_SPIO_SPIO5)) {
2250 BNX2X_ERR("Invalid SPIO 0x%x\n", spio);
c18487ee 2251 return -EINVAL;
a2fbb9ea
ET
2252 }
2253
4a37fb66 2254 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2255 /* read SPIO and mask except the float bits */
d6d99a3f 2256 spio_reg = (REG_RD(bp, MISC_REG_SPIO) & MISC_SPIO_FLOAT);
a2fbb9ea 2257
c18487ee 2258 switch (mode) {
d6d99a3f
YM
2259 case MISC_SPIO_OUTPUT_LOW:
2260 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output low\n", spio);
c18487ee 2261 /* clear FLOAT and set CLR */
d6d99a3f
YM
2262 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2263 spio_reg |= (spio << MISC_SPIO_CLR_POS);
c18487ee 2264 break;
a2fbb9ea 2265
d6d99a3f
YM
2266 case MISC_SPIO_OUTPUT_HIGH:
2267 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> output high\n", spio);
c18487ee 2268 /* clear FLOAT and set SET */
d6d99a3f
YM
2269 spio_reg &= ~(spio << MISC_SPIO_FLOAT_POS);
2270 spio_reg |= (spio << MISC_SPIO_SET_POS);
c18487ee 2271 break;
a2fbb9ea 2272
d6d99a3f
YM
2273 case MISC_SPIO_INPUT_HI_Z:
2274 DP(NETIF_MSG_HW, "Set SPIO 0x%x -> input\n", spio);
c18487ee 2275 /* set FLOAT */
d6d99a3f 2276 spio_reg |= (spio << MISC_SPIO_FLOAT_POS);
c18487ee 2277 break;
a2fbb9ea 2278
c18487ee
YR
2279 default:
2280 break;
a2fbb9ea
ET
2281 }
2282
c18487ee 2283 REG_WR(bp, MISC_REG_SPIO, spio_reg);
4a37fb66 2284 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_SPIO);
c18487ee 2285
a2fbb9ea
ET
2286 return 0;
2287}
2288
9f6c9258 2289void bnx2x_calc_fc_adv(struct bnx2x *bp)
a2fbb9ea 2290{
a22f0788 2291 u8 cfg_idx = bnx2x_get_link_cfg_idx(bp);
1359d73c
YM
2292
2293 bp->port.advertising[cfg_idx] &= ~(ADVERTISED_Asym_Pause |
2294 ADVERTISED_Pause);
ad33ea3a
EG
2295 switch (bp->link_vars.ieee_fc &
2296 MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK) {
c18487ee 2297 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH:
a22f0788 2298 bp->port.advertising[cfg_idx] |= (ADVERTISED_Asym_Pause |
f85582f8 2299 ADVERTISED_Pause);
c18487ee 2300 break;
356e2385 2301
c18487ee 2302 case MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC:
a22f0788 2303 bp->port.advertising[cfg_idx] |= ADVERTISED_Asym_Pause;
c18487ee 2304 break;
356e2385 2305
c18487ee 2306 default:
c18487ee
YR
2307 break;
2308 }
2309}
f1410647 2310
cd1dfce2 2311static void bnx2x_set_requested_fc(struct bnx2x *bp)
c18487ee 2312{
cd1dfce2
YM
2313 /* Initialize link parameters structure variables
2314 * It is recommended to turn off RX FC for jumbo frames
2315 * for better performance
2316 */
2317 if (CHIP_IS_E1x(bp) && (bp->dev->mtu > 5000))
2318 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_TX;
2319 else
2320 bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_BOTH;
2321}
a2fbb9ea 2322
9156b30b
DK
2323static void bnx2x_init_dropless_fc(struct bnx2x *bp)
2324{
2325 u32 pause_enabled = 0;
2326
2327 if (!CHIP_IS_E1(bp) && bp->dropless_fc && bp->link_vars.link_up) {
2328 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
2329 pause_enabled = 1;
2330
2331 REG_WR(bp, BAR_USTRORM_INTMEM +
2332 USTORM_ETH_PAUSE_ENABLED_OFFSET(BP_PORT(bp)),
2333 pause_enabled);
2334 }
2335
2336 DP(NETIF_MSG_IFUP | NETIF_MSG_LINK, "dropless_fc is %s\n",
2337 pause_enabled ? "enabled" : "disabled");
2338}
2339
cd1dfce2
YM
2340int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode)
2341{
2342 int rc, cfx_idx = bnx2x_get_link_cfg_idx(bp);
2343 u16 req_line_speed = bp->link_params.req_line_speed[cfx_idx];
2344
2345 if (!BP_NOMCP(bp)) {
2346 bnx2x_set_requested_fc(bp);
4a37fb66 2347 bnx2x_acquire_phy_lock(bp);
b5bf9068 2348
a22f0788 2349 if (load_mode == LOAD_DIAG) {
1cb0c788
YR
2350 struct link_params *lp = &bp->link_params;
2351 lp->loopback_mode = LOOPBACK_XGXS;
2f43b821
YM
2352 /* Prefer doing PHY loopback at highest speed */
2353 if (lp->req_line_speed[cfx_idx] < SPEED_20000) {
1cb0c788 2354 if (lp->speed_cap_mask[cfx_idx] &
2f43b821 2355 PORT_HW_CFG_SPEED_CAPABILITY_D0_20G)
1cb0c788 2356 lp->req_line_speed[cfx_idx] =
2f43b821
YM
2357 SPEED_20000;
2358 else if (lp->speed_cap_mask[cfx_idx] &
2359 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G)
2360 lp->req_line_speed[cfx_idx] =
2361 SPEED_10000;
1cb0c788
YR
2362 else
2363 lp->req_line_speed[cfx_idx] =
2364 SPEED_1000;
2365 }
a22f0788 2366 }
b5bf9068 2367
8970b2e4
MS
2368 if (load_mode == LOAD_LOOPBACK_EXT) {
2369 struct link_params *lp = &bp->link_params;
2370 lp->loopback_mode = LOOPBACK_EXT;
2371 }
2372
19680c48 2373 rc = bnx2x_phy_init(&bp->link_params, &bp->link_vars);
b5bf9068 2374
4a37fb66 2375 bnx2x_release_phy_lock(bp);
a2fbb9ea 2376
9156b30b
DK
2377 bnx2x_init_dropless_fc(bp);
2378
3c96c68b
EG
2379 bnx2x_calc_fc_adv(bp);
2380
cd1dfce2 2381 if (bp->link_vars.link_up) {
b5bf9068 2382 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
19680c48 2383 bnx2x_link_report(bp);
cd1dfce2
YM
2384 }
2385 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
a22f0788 2386 bp->link_params.req_line_speed[cfx_idx] = req_line_speed;
19680c48
EG
2387 return rc;
2388 }
f5372251 2389 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
19680c48 2390 return -EINVAL;
a2fbb9ea
ET
2391}
2392
9f6c9258 2393void bnx2x_link_set(struct bnx2x *bp)
a2fbb9ea 2394{
19680c48 2395 if (!BP_NOMCP(bp)) {
4a37fb66 2396 bnx2x_acquire_phy_lock(bp);
19680c48 2397 bnx2x_phy_init(&bp->link_params, &bp->link_vars);
4a37fb66 2398 bnx2x_release_phy_lock(bp);
a2fbb9ea 2399
9156b30b
DK
2400 bnx2x_init_dropless_fc(bp);
2401
19680c48
EG
2402 bnx2x_calc_fc_adv(bp);
2403 } else
f5372251 2404 BNX2X_ERR("Bootcode is missing - can not set link\n");
c18487ee 2405}
a2fbb9ea 2406
c18487ee
YR
2407static void bnx2x__link_reset(struct bnx2x *bp)
2408{
19680c48 2409 if (!BP_NOMCP(bp)) {
4a37fb66 2410 bnx2x_acquire_phy_lock(bp);
5d07d868 2411 bnx2x_lfa_reset(&bp->link_params, &bp->link_vars);
4a37fb66 2412 bnx2x_release_phy_lock(bp);
19680c48 2413 } else
f5372251 2414 BNX2X_ERR("Bootcode is missing - can not reset link\n");
c18487ee 2415}
a2fbb9ea 2416
5d07d868
YM
2417void bnx2x_force_link_reset(struct bnx2x *bp)
2418{
2419 bnx2x_acquire_phy_lock(bp);
2420 bnx2x_link_reset(&bp->link_params, &bp->link_vars, 1);
2421 bnx2x_release_phy_lock(bp);
2422}
2423
a22f0788 2424u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes)
c18487ee 2425{
2145a920 2426 u8 rc = 0;
a2fbb9ea 2427
2145a920
VZ
2428 if (!BP_NOMCP(bp)) {
2429 bnx2x_acquire_phy_lock(bp);
a22f0788
YR
2430 rc = bnx2x_test_link(&bp->link_params, &bp->link_vars,
2431 is_serdes);
2145a920
VZ
2432 bnx2x_release_phy_lock(bp);
2433 } else
2434 BNX2X_ERR("Bootcode is missing - can not test link\n");
a2fbb9ea 2435
c18487ee
YR
2436 return rc;
2437}
a2fbb9ea 2438
2691d51d
EG
2439/* Calculates the sum of vn_min_rates.
2440 It's needed for further normalizing of the min_rates.
2441 Returns:
2442 sum of vn_min_rates.
2443 or
2444 0 - if all the min_rates are 0.
16a5fd92 2445 In the later case fairness algorithm should be deactivated.
2691d51d
EG
2446 If not all min_rates are zero then those that are zeroes will be set to 1.
2447 */
b475d78f
YM
2448static void bnx2x_calc_vn_min(struct bnx2x *bp,
2449 struct cmng_init_input *input)
2691d51d
EG
2450{
2451 int all_zero = 1;
2691d51d
EG
2452 int vn;
2453
3395a033 2454 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
f2e0899f 2455 u32 vn_cfg = bp->mf_config[vn];
2691d51d
EG
2456 u32 vn_min_rate = ((vn_cfg & FUNC_MF_CFG_MIN_BW_MASK) >>
2457 FUNC_MF_CFG_MIN_BW_SHIFT) * 100;
2458
2459 /* Skip hidden vns */
2460 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
b475d78f 2461 vn_min_rate = 0;
2691d51d 2462 /* If min rate is zero - set it to 1 */
b475d78f 2463 else if (!vn_min_rate)
2691d51d
EG
2464 vn_min_rate = DEF_MIN_RATE;
2465 else
2466 all_zero = 0;
2467
b475d78f 2468 input->vnic_min_rate[vn] = vn_min_rate;
2691d51d
EG
2469 }
2470
30ae438b
DK
2471 /* if ETS or all min rates are zeros - disable fairness */
2472 if (BNX2X_IS_ETS_ENABLED(bp)) {
b475d78f 2473 input->flags.cmng_enables &=
30ae438b
DK
2474 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2475 DP(NETIF_MSG_IFUP, "Fairness will be disabled due to ETS\n");
2476 } else if (all_zero) {
b475d78f 2477 input->flags.cmng_enables &=
b015e3d1 2478 ~CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
b475d78f
YM
2479 DP(NETIF_MSG_IFUP,
2480 "All MIN values are zeroes fairness will be disabled\n");
b015e3d1 2481 } else
b475d78f 2482 input->flags.cmng_enables |=
b015e3d1 2483 CMNG_FLAGS_PER_PORT_FAIRNESS_VN;
2691d51d
EG
2484}
2485
b475d78f
YM
2486static void bnx2x_calc_vn_max(struct bnx2x *bp, int vn,
2487 struct cmng_init_input *input)
34f80b04 2488{
b475d78f 2489 u16 vn_max_rate;
f2e0899f 2490 u32 vn_cfg = bp->mf_config[vn];
34f80b04 2491
b475d78f 2492 if (vn_cfg & FUNC_MF_CFG_FUNC_HIDE)
34f80b04 2493 vn_max_rate = 0;
b475d78f 2494 else {
faa6fcbb
DK
2495 u32 maxCfg = bnx2x_extract_max_cfg(bp, vn_cfg);
2496
da3cc2da 2497 if (IS_MF_PERCENT_BW(bp)) {
faa6fcbb
DK
2498 /* maxCfg in percents of linkspeed */
2499 vn_max_rate = (bp->link_vars.line_speed * maxCfg) / 100;
b475d78f 2500 } else /* SD modes */
faa6fcbb
DK
2501 /* maxCfg is absolute in 100Mb units */
2502 vn_max_rate = maxCfg * 100;
34f80b04 2503 }
f85582f8 2504
b475d78f 2505 DP(NETIF_MSG_IFUP, "vn %d: vn_max_rate %d\n", vn, vn_max_rate);
34f80b04 2506
b475d78f 2507 input->vnic_max_rate[vn] = vn_max_rate;
34f80b04 2508}
f85582f8 2509
523224a3
DK
2510static int bnx2x_get_cmng_fns_mode(struct bnx2x *bp)
2511{
2512 if (CHIP_REV_IS_SLOW(bp))
2513 return CMNG_FNS_NONE;
fb3bff17 2514 if (IS_MF(bp))
523224a3
DK
2515 return CMNG_FNS_MINMAX;
2516
2517 return CMNG_FNS_NONE;
2518}
2519
2ae17f66 2520void bnx2x_read_mf_cfg(struct bnx2x *bp)
523224a3 2521{
0793f83f 2522 int vn, n = (CHIP_MODE_IS_4_PORT(bp) ? 2 : 1);
523224a3
DK
2523
2524 if (BP_NOMCP(bp))
16a5fd92 2525 return; /* what should be the default value in this case */
523224a3 2526
0793f83f
DK
2527 /* For 2 port configuration the absolute function number formula
2528 * is:
2529 * abs_func = 2 * vn + BP_PORT + BP_PATH
2530 *
2531 * and there are 4 functions per port
2532 *
2533 * For 4 port configuration it is
2534 * abs_func = 4 * vn + 2 * BP_PORT + BP_PATH
2535 *
2536 * and there are 2 functions per port
2537 */
3395a033 2538 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
0793f83f
DK
2539 int /*abs*/func = n * (2 * vn + BP_PORT(bp)) + BP_PATH(bp);
2540
2541 if (func >= E1H_FUNC_MAX)
2542 break;
2543
f2e0899f 2544 bp->mf_config[vn] =
523224a3
DK
2545 MF_CFG_RD(bp, func_mf_config[func].config);
2546 }
a3348722
BW
2547 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
2548 DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n");
2549 bp->flags |= MF_FUNC_DIS;
2550 } else {
2551 DP(NETIF_MSG_IFUP, "mf_cfg function enabled\n");
2552 bp->flags &= ~MF_FUNC_DIS;
2553 }
523224a3
DK
2554}
2555
2556static void bnx2x_cmng_fns_init(struct bnx2x *bp, u8 read_cfg, u8 cmng_type)
2557{
b475d78f
YM
2558 struct cmng_init_input input;
2559 memset(&input, 0, sizeof(struct cmng_init_input));
2560
2561 input.port_rate = bp->link_vars.line_speed;
523224a3 2562
568e2426 2563 if (cmng_type == CMNG_FNS_MINMAX && input.port_rate) {
523224a3
DK
2564 int vn;
2565
523224a3
DK
2566 /* read mf conf from shmem */
2567 if (read_cfg)
2568 bnx2x_read_mf_cfg(bp);
2569
523224a3 2570 /* vn_weight_sum and enable fairness if not 0 */
b475d78f 2571 bnx2x_calc_vn_min(bp, &input);
523224a3
DK
2572
2573 /* calculate and set min-max rate for each vn */
c4154f25 2574 if (bp->port.pmf)
3395a033 2575 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++)
b475d78f 2576 bnx2x_calc_vn_max(bp, vn, &input);
523224a3
DK
2577
2578 /* always enable rate shaping and fairness */
b475d78f 2579 input.flags.cmng_enables |=
523224a3 2580 CMNG_FLAGS_PER_PORT_RATE_SHAPING_VN;
b475d78f
YM
2581
2582 bnx2x_init_cmng(&input, &bp->cmng);
523224a3
DK
2583 return;
2584 }
2585
2586 /* rate shaping and fairness are disabled */
2587 DP(NETIF_MSG_IFUP,
2588 "rate shaping and fairness are disabled\n");
2589}
34f80b04 2590
1191cb83
ED
2591static void storm_memset_cmng(struct bnx2x *bp,
2592 struct cmng_init *cmng,
2593 u8 port)
2594{
2595 int vn;
2596 size_t size = sizeof(struct cmng_struct_per_port);
2597
2598 u32 addr = BAR_XSTRORM_INTMEM +
2599 XSTORM_CMNG_PER_PORT_VARS_OFFSET(port);
2600
2601 __storm_memset_struct(bp, addr, size, (u32 *)&cmng->port);
2602
2603 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
2604 int func = func_by_vn(bp, vn);
2605
2606 addr = BAR_XSTRORM_INTMEM +
2607 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(func);
2608 size = sizeof(struct rate_shaping_vars_per_vn);
2609 __storm_memset_struct(bp, addr, size,
2610 (u32 *)&cmng->vnic.vnic_max_rate[vn]);
2611
2612 addr = BAR_XSTRORM_INTMEM +
2613 XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(func);
2614 size = sizeof(struct fairness_vars_per_vn);
2615 __storm_memset_struct(bp, addr, size,
2616 (u32 *)&cmng->vnic.vnic_min_rate[vn]);
2617 }
2618}
2619
568e2426
DK
2620/* init cmng mode in HW according to local configuration */
2621void bnx2x_set_local_cmng(struct bnx2x *bp)
2622{
2623 int cmng_fns = bnx2x_get_cmng_fns_mode(bp);
2624
2625 if (cmng_fns != CMNG_FNS_NONE) {
2626 bnx2x_cmng_fns_init(bp, false, cmng_fns);
2627 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
2628 } else {
2629 /* rate shaping and fairness are disabled */
2630 DP(NETIF_MSG_IFUP,
2631 "single function mode without fairness\n");
2632 }
2633}
2634
c18487ee
YR
2635/* This function is called upon link interrupt */
2636static void bnx2x_link_attn(struct bnx2x *bp)
2637{
bb2a0f7a
YG
2638 /* Make sure that we are synced with the current statistics */
2639 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2640
c18487ee 2641 bnx2x_link_update(&bp->link_params, &bp->link_vars);
a2fbb9ea 2642
9156b30b 2643 bnx2x_init_dropless_fc(bp);
1c06328c 2644
9156b30b 2645 if (bp->link_vars.link_up) {
1c06328c 2646
619c5cb6 2647 if (bp->link_vars.mac_type != MAC_TYPE_EMAC) {
bb2a0f7a
YG
2648 struct host_port_stats *pstats;
2649
2650 pstats = bnx2x_sp(bp, port_stats);
619c5cb6 2651 /* reset old mac stats */
bb2a0f7a
YG
2652 memset(&(pstats->mac_stx[0]), 0,
2653 sizeof(struct mac_stx));
2654 }
f34d28ea 2655 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a
YG
2656 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2657 }
2658
568e2426
DK
2659 if (bp->link_vars.link_up && bp->link_vars.line_speed)
2660 bnx2x_set_local_cmng(bp);
9fdc3e95 2661
2ae17f66
VZ
2662 __bnx2x_link_report(bp);
2663
9fdc3e95
DK
2664 if (IS_MF(bp))
2665 bnx2x_link_sync_notify(bp);
c18487ee 2666}
a2fbb9ea 2667
9f6c9258 2668void bnx2x__link_status_update(struct bnx2x *bp)
c18487ee 2669{
2ae17f66 2670 if (bp->state != BNX2X_STATE_OPEN)
c18487ee 2671 return;
a2fbb9ea 2672
00253a8c 2673 /* read updated dcb configuration */
ad5afc89
AE
2674 if (IS_PF(bp)) {
2675 bnx2x_dcbx_pmf_update(bp);
2676 bnx2x_link_status_update(&bp->link_params, &bp->link_vars);
2677 if (bp->link_vars.link_up)
2678 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
2679 else
2680 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2681 /* indicate link status */
2682 bnx2x_link_report(bp);
a2fbb9ea 2683
ad5afc89
AE
2684 } else { /* VF */
2685 bp->port.supported[0] |= (SUPPORTED_10baseT_Half |
2686 SUPPORTED_10baseT_Full |
2687 SUPPORTED_100baseT_Half |
2688 SUPPORTED_100baseT_Full |
2689 SUPPORTED_1000baseT_Full |
2690 SUPPORTED_2500baseX_Full |
2691 SUPPORTED_10000baseT_Full |
2692 SUPPORTED_TP |
2693 SUPPORTED_FIBRE |
2694 SUPPORTED_Autoneg |
2695 SUPPORTED_Pause |
2696 SUPPORTED_Asym_Pause);
2697 bp->port.advertising[0] = bp->port.supported[0];
2698
2699 bp->link_params.bp = bp;
2700 bp->link_params.port = BP_PORT(bp);
2701 bp->link_params.req_duplex[0] = DUPLEX_FULL;
2702 bp->link_params.req_flow_ctrl[0] = BNX2X_FLOW_CTRL_NONE;
2703 bp->link_params.req_line_speed[0] = SPEED_10000;
2704 bp->link_params.speed_cap_mask[0] = 0x7f0000;
2705 bp->link_params.switch_cfg = SWITCH_CFG_10G;
2706 bp->link_vars.mac_type = MAC_TYPE_BMAC;
2707 bp->link_vars.line_speed = SPEED_10000;
2708 bp->link_vars.link_status =
2709 (LINK_STATUS_LINK_UP |
2710 LINK_STATUS_SPEED_AND_DUPLEX_10GTFD);
2711 bp->link_vars.link_up = 1;
2712 bp->link_vars.duplex = DUPLEX_FULL;
2713 bp->link_vars.flow_ctrl = BNX2X_FLOW_CTRL_NONE;
2714 __bnx2x_link_report(bp);
6495d15a
DK
2715
2716 bnx2x_sample_bulletin(bp);
2717
2718 /* if bulletin board did not have an update for link status
2719 * __bnx2x_link_report will report current status
2720 * but it will NOT duplicate report in case of already reported
2721 * during sampling bulletin board.
2722 */
bb2a0f7a 2723 bnx2x_stats_handle(bp, STATS_EVENT_LINK_UP);
ad5afc89 2724 }
a2fbb9ea 2725}
a2fbb9ea 2726
a3348722
BW
2727static int bnx2x_afex_func_update(struct bnx2x *bp, u16 vifid,
2728 u16 vlan_val, u8 allowed_prio)
2729{
86564c3f 2730 struct bnx2x_func_state_params func_params = {NULL};
a3348722
BW
2731 struct bnx2x_func_afex_update_params *f_update_params =
2732 &func_params.params.afex_update;
2733
2734 func_params.f_obj = &bp->func_obj;
2735 func_params.cmd = BNX2X_F_CMD_AFEX_UPDATE;
2736
2737 /* no need to wait for RAMROD completion, so don't
2738 * set RAMROD_COMP_WAIT flag
2739 */
2740
2741 f_update_params->vif_id = vifid;
2742 f_update_params->afex_default_vlan = vlan_val;
2743 f_update_params->allowed_priorities = allowed_prio;
2744
2745 /* if ramrod can not be sent, response to MCP immediately */
2746 if (bnx2x_func_state_change(bp, &func_params) < 0)
2747 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
2748
2749 return 0;
2750}
2751
2752static int bnx2x_afex_handle_vif_list_cmd(struct bnx2x *bp, u8 cmd_type,
2753 u16 vif_index, u8 func_bit_map)
2754{
86564c3f 2755 struct bnx2x_func_state_params func_params = {NULL};
a3348722
BW
2756 struct bnx2x_func_afex_viflists_params *update_params =
2757 &func_params.params.afex_viflists;
2758 int rc;
2759 u32 drv_msg_code;
2760
2761 /* validate only LIST_SET and LIST_GET are received from switch */
2762 if ((cmd_type != VIF_LIST_RULE_GET) && (cmd_type != VIF_LIST_RULE_SET))
2763 BNX2X_ERR("BUG! afex_handle_vif_list_cmd invalid type 0x%x\n",
2764 cmd_type);
2765
2766 func_params.f_obj = &bp->func_obj;
2767 func_params.cmd = BNX2X_F_CMD_AFEX_VIFLISTS;
2768
2769 /* set parameters according to cmd_type */
2770 update_params->afex_vif_list_command = cmd_type;
86564c3f 2771 update_params->vif_list_index = vif_index;
a3348722
BW
2772 update_params->func_bit_map =
2773 (cmd_type == VIF_LIST_RULE_GET) ? 0 : func_bit_map;
2774 update_params->func_to_clear = 0;
2775 drv_msg_code =
2776 (cmd_type == VIF_LIST_RULE_GET) ?
2777 DRV_MSG_CODE_AFEX_LISTGET_ACK :
2778 DRV_MSG_CODE_AFEX_LISTSET_ACK;
2779
2780 /* if ramrod can not be sent, respond to MCP immediately for
2781 * SET and GET requests (other are not triggered from MCP)
2782 */
2783 rc = bnx2x_func_state_change(bp, &func_params);
2784 if (rc < 0)
2785 bnx2x_fw_command(bp, drv_msg_code, 0);
2786
2787 return 0;
2788}
2789
2790static void bnx2x_handle_afex_cmd(struct bnx2x *bp, u32 cmd)
2791{
2792 struct afex_stats afex_stats;
2793 u32 func = BP_ABS_FUNC(bp);
2794 u32 mf_config;
2795 u16 vlan_val;
2796 u32 vlan_prio;
2797 u16 vif_id;
2798 u8 allowed_prio;
2799 u8 vlan_mode;
2800 u32 addr_to_write, vifid, addrs, stats_type, i;
2801
2802 if (cmd & DRV_STATUS_AFEX_LISTGET_REQ) {
2803 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2804 DP(BNX2X_MSG_MCP,
2805 "afex: got MCP req LISTGET_REQ for vifid 0x%x\n", vifid);
2806 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_GET, vifid, 0);
2807 }
2808
2809 if (cmd & DRV_STATUS_AFEX_LISTSET_REQ) {
2810 vifid = SHMEM2_RD(bp, afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2811 addrs = SHMEM2_RD(bp, afex_param2_to_driver[BP_FW_MB_IDX(bp)]);
2812 DP(BNX2X_MSG_MCP,
2813 "afex: got MCP req LISTSET_REQ for vifid 0x%x addrs 0x%x\n",
2814 vifid, addrs);
2815 bnx2x_afex_handle_vif_list_cmd(bp, VIF_LIST_RULE_SET, vifid,
2816 addrs);
2817 }
2818
2819 if (cmd & DRV_STATUS_AFEX_STATSGET_REQ) {
2820 addr_to_write = SHMEM2_RD(bp,
2821 afex_scratchpad_addr_to_write[BP_FW_MB_IDX(bp)]);
2822 stats_type = SHMEM2_RD(bp,
2823 afex_param1_to_driver[BP_FW_MB_IDX(bp)]);
2824
2825 DP(BNX2X_MSG_MCP,
2826 "afex: got MCP req STATSGET_REQ, write to addr 0x%x\n",
2827 addr_to_write);
2828
2829 bnx2x_afex_collect_stats(bp, (void *)&afex_stats, stats_type);
2830
2831 /* write response to scratchpad, for MCP */
2832 for (i = 0; i < (sizeof(struct afex_stats)/sizeof(u32)); i++)
2833 REG_WR(bp, addr_to_write + i*sizeof(u32),
2834 *(((u32 *)(&afex_stats))+i));
2835
2836 /* send ack message to MCP */
2837 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_STATSGET_ACK, 0);
2838 }
2839
2840 if (cmd & DRV_STATUS_AFEX_VIFSET_REQ) {
2841 mf_config = MF_CFG_RD(bp, func_mf_config[func].config);
2842 bp->mf_config[BP_VN(bp)] = mf_config;
2843 DP(BNX2X_MSG_MCP,
2844 "afex: got MCP req VIFSET_REQ, mf_config 0x%x\n",
2845 mf_config);
2846
2847 /* if VIF_SET is "enabled" */
2848 if (!(mf_config & FUNC_MF_CFG_FUNC_DISABLED)) {
2849 /* set rate limit directly to internal RAM */
2850 struct cmng_init_input cmng_input;
2851 struct rate_shaping_vars_per_vn m_rs_vn;
2852 size_t size = sizeof(struct rate_shaping_vars_per_vn);
2853 u32 addr = BAR_XSTRORM_INTMEM +
2854 XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(BP_FUNC(bp));
2855
2856 bp->mf_config[BP_VN(bp)] = mf_config;
2857
2858 bnx2x_calc_vn_max(bp, BP_VN(bp), &cmng_input);
2859 m_rs_vn.vn_counter.rate =
2860 cmng_input.vnic_max_rate[BP_VN(bp)];
2861 m_rs_vn.vn_counter.quota =
2862 (m_rs_vn.vn_counter.rate *
2863 RS_PERIODIC_TIMEOUT_USEC) / 8;
2864
2865 __storm_memset_struct(bp, addr, size, (u32 *)&m_rs_vn);
2866
2867 /* read relevant values from mf_cfg struct in shmem */
2868 vif_id =
2869 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2870 FUNC_MF_CFG_E1HOV_TAG_MASK) >>
2871 FUNC_MF_CFG_E1HOV_TAG_SHIFT;
2872 vlan_val =
2873 (MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2874 FUNC_MF_CFG_AFEX_VLAN_MASK) >>
2875 FUNC_MF_CFG_AFEX_VLAN_SHIFT;
2876 vlan_prio = (mf_config &
2877 FUNC_MF_CFG_TRANSMIT_PRIORITY_MASK) >>
2878 FUNC_MF_CFG_TRANSMIT_PRIORITY_SHIFT;
2879 vlan_val |= (vlan_prio << VLAN_PRIO_SHIFT);
2880 vlan_mode =
2881 (MF_CFG_RD(bp,
2882 func_mf_config[func].afex_config) &
2883 FUNC_MF_CFG_AFEX_VLAN_MODE_MASK) >>
2884 FUNC_MF_CFG_AFEX_VLAN_MODE_SHIFT;
2885 allowed_prio =
2886 (MF_CFG_RD(bp,
2887 func_mf_config[func].afex_config) &
2888 FUNC_MF_CFG_AFEX_COS_FILTER_MASK) >>
2889 FUNC_MF_CFG_AFEX_COS_FILTER_SHIFT;
2890
2891 /* send ramrod to FW, return in case of failure */
2892 if (bnx2x_afex_func_update(bp, vif_id, vlan_val,
2893 allowed_prio))
2894 return;
2895
2896 bp->afex_def_vlan_tag = vlan_val;
2897 bp->afex_vlan_mode = vlan_mode;
2898 } else {
2899 /* notify link down because BP->flags is disabled */
2900 bnx2x_link_report(bp);
2901
2902 /* send INVALID VIF ramrod to FW */
2903 bnx2x_afex_func_update(bp, 0xFFFF, 0, 0);
2904
2905 /* Reset the default afex VLAN */
2906 bp->afex_def_vlan_tag = -1;
2907 }
2908 }
2909}
2910
7609647e
YM
2911static void bnx2x_handle_update_svid_cmd(struct bnx2x *bp)
2912{
2913 struct bnx2x_func_switch_update_params *switch_update_params;
2914 struct bnx2x_func_state_params func_params;
2915
2916 memset(&func_params, 0, sizeof(struct bnx2x_func_state_params));
2917 switch_update_params = &func_params.params.switch_update;
2918 func_params.f_obj = &bp->func_obj;
2919 func_params.cmd = BNX2X_F_CMD_SWITCH_UPDATE;
2920
230d00eb 2921 if (IS_MF_UFP(bp) || IS_MF_BD(bp)) {
7609647e
YM
2922 int func = BP_ABS_FUNC(bp);
2923 u32 val;
2924
2925 /* Re-learn the S-tag from shmem */
2926 val = MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
2927 FUNC_MF_CFG_E1HOV_TAG_MASK;
2928 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
2929 bp->mf_ov = val;
2930 } else {
2931 BNX2X_ERR("Got an SVID event, but no tag is configured in shmem\n");
2932 goto fail;
2933 }
2934
2935 /* Configure new S-tag in LLH */
2936 REG_WR(bp, NIG_REG_LLH0_FUNC_VLAN_ID + BP_PORT(bp) * 8,
2937 bp->mf_ov);
2938
2939 /* Send Ramrod to update FW of change */
2940 __set_bit(BNX2X_F_UPDATE_SD_VLAN_TAG_CHNG,
2941 &switch_update_params->changes);
2942 switch_update_params->vlan = bp->mf_ov;
2943
2944 if (bnx2x_func_state_change(bp, &func_params) < 0) {
2945 BNX2X_ERR("Failed to configure FW of S-tag Change to %02x\n",
2946 bp->mf_ov);
2947 goto fail;
230d00eb
YM
2948 } else {
2949 DP(BNX2X_MSG_MCP, "Configured S-tag %02x\n",
2950 bp->mf_ov);
7609647e 2951 }
230d00eb
YM
2952 } else {
2953 goto fail;
7609647e
YM
2954 }
2955
230d00eb
YM
2956 bnx2x_fw_command(bp, DRV_MSG_CODE_OEM_UPDATE_SVID_OK, 0);
2957 return;
7609647e
YM
2958fail:
2959 bnx2x_fw_command(bp, DRV_MSG_CODE_OEM_UPDATE_SVID_FAILURE, 0);
2960}
2961
34f80b04
EG
2962static void bnx2x_pmf_update(struct bnx2x *bp)
2963{
2964 int port = BP_PORT(bp);
2965 u32 val;
2966
2967 bp->port.pmf = 1;
51c1a580 2968 DP(BNX2X_MSG_MCP, "pmf %d\n", bp->port.pmf);
34f80b04 2969
3deb8167
YR
2970 /*
2971 * We need the mb() to ensure the ordering between the writing to
2972 * bp->port.pmf here and reading it from the bnx2x_periodic_task().
2973 */
2974 smp_mb();
2975
2976 /* queue a periodic task */
2977 queue_delayed_work(bnx2x_wq, &bp->period_task, 0);
2978
ef01854e
DK
2979 bnx2x_dcbx_pmf_update(bp);
2980
34f80b04 2981 /* enable nig attention */
3395a033 2982 val = (0xff0f | (1 << (BP_VN(bp) + 4)));
f2e0899f
DK
2983 if (bp->common.int_block == INT_BLOCK_HC) {
2984 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, val);
2985 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, val);
619c5cb6 2986 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
2987 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, val);
2988 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, val);
2989 }
bb2a0f7a
YG
2990
2991 bnx2x_stats_handle(bp, STATS_EVENT_PMF);
34f80b04
EG
2992}
2993
c18487ee 2994/* end of Link */
a2fbb9ea
ET
2995
2996/* slow path */
2997
2998/*
2999 * General service functions
3000 */
3001
2691d51d 3002/* send the MCP a request, block until there is a reply */
a22f0788 3003u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param)
2691d51d 3004{
f2e0899f 3005 int mb_idx = BP_FW_MB_IDX(bp);
a5971d43 3006 u32 seq;
2691d51d
EG
3007 u32 rc = 0;
3008 u32 cnt = 1;
3009 u8 delay = CHIP_REV_IS_SLOW(bp) ? 100 : 10;
3010
c4ff7cbf 3011 mutex_lock(&bp->fw_mb_mutex);
a5971d43 3012 seq = ++bp->fw_seq;
f2e0899f
DK
3013 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_param, param);
3014 SHMEM_WR(bp, func_mb[mb_idx].drv_mb_header, (command | seq));
3015
754a2f52
DK
3016 DP(BNX2X_MSG_MCP, "wrote command (%x) to FW MB param 0x%08x\n",
3017 (command | seq), param);
2691d51d
EG
3018
3019 do {
3020 /* let the FW do it's magic ... */
3021 msleep(delay);
3022
f2e0899f 3023 rc = SHMEM_RD(bp, func_mb[mb_idx].fw_mb_header);
2691d51d 3024
c4ff7cbf
EG
3025 /* Give the FW up to 5 second (500*10ms) */
3026 } while ((seq != (rc & FW_MSG_SEQ_NUMBER_MASK)) && (cnt++ < 500));
2691d51d
EG
3027
3028 DP(BNX2X_MSG_MCP, "[after %d ms] read (%x) seq is (%x) from FW MB\n",
3029 cnt*delay, rc, seq);
3030
3031 /* is this a reply to our command? */
3032 if (seq == (rc & FW_MSG_SEQ_NUMBER_MASK))
3033 rc &= FW_MSG_CODE_MASK;
3034 else {
3035 /* FW BUG! */
3036 BNX2X_ERR("FW failed to respond!\n");
3037 bnx2x_fw_dump(bp);
3038 rc = 0;
3039 }
c4ff7cbf 3040 mutex_unlock(&bp->fw_mb_mutex);
2691d51d
EG
3041
3042 return rc;
3043}
3044
1191cb83
ED
3045static void storm_memset_func_cfg(struct bnx2x *bp,
3046 struct tstorm_eth_function_common_config *tcfg,
3047 u16 abs_fid)
3048{
3049 size_t size = sizeof(struct tstorm_eth_function_common_config);
3050
3051 u32 addr = BAR_TSTRORM_INTMEM +
3052 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid);
3053
3054 __storm_memset_struct(bp, addr, size, (u32 *)tcfg);
3055}
3056
619c5cb6
VZ
3057void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p)
3058{
3059 if (CHIP_IS_E1x(bp)) {
3060 struct tstorm_eth_function_common_config tcfg = {0};
3061
3062 storm_memset_func_cfg(bp, &tcfg, p->func_id);
3063 }
3064
3065 /* Enable the function in the FW */
3066 storm_memset_vf_to_pf(bp, p->func_id, p->pf_id);
3067 storm_memset_func_en(bp, p->func_id, 1);
3068
3069 /* spq */
05cc5a39 3070 if (p->spq_active) {
619c5cb6
VZ
3071 storm_memset_spq_addr(bp, p->spq_map, p->func_id);
3072 REG_WR(bp, XSEM_REG_FAST_MEMORY +
3073 XSTORM_SPQ_PROD_OFFSET(p->func_id), p->spq_prod);
3074 }
3075}
3076
6383c0b3 3077/**
16a5fd92 3078 * bnx2x_get_common_flags - Return common flags
6383c0b3
AE
3079 *
3080 * @bp device handle
3081 * @fp queue handle
3082 * @zero_stats TRUE if statistics zeroing is needed
3083 *
3084 * Return the flags that are common for the Tx-only and not normal connections.
3085 */
1191cb83
ED
3086static unsigned long bnx2x_get_common_flags(struct bnx2x *bp,
3087 struct bnx2x_fastpath *fp,
3088 bool zero_stats)
28912902 3089{
619c5cb6
VZ
3090 unsigned long flags = 0;
3091
3092 /* PF driver will always initialize the Queue to an ACTIVE state */
3093 __set_bit(BNX2X_Q_FLG_ACTIVE, &flags);
28912902 3094
6383c0b3 3095 /* tx only connections collect statistics (on the same index as the
91226790
DK
3096 * parent connection). The statistics are zeroed when the parent
3097 * connection is initialized.
6383c0b3 3098 */
50f0a562
BW
3099
3100 __set_bit(BNX2X_Q_FLG_STATS, &flags);
3101 if (zero_stats)
3102 __set_bit(BNX2X_Q_FLG_ZERO_STATS, &flags);
3103
c14db202
YM
3104 if (bp->flags & TX_SWITCHING)
3105 __set_bit(BNX2X_Q_FLG_TX_SWITCH, &flags);
3106
91226790 3107 __set_bit(BNX2X_Q_FLG_PCSUM_ON_PKT, &flags);
e287a75c 3108 __set_bit(BNX2X_Q_FLG_TUN_INC_INNER_IP_ID, &flags);
6383c0b3 3109
823e1d90
YM
3110#ifdef BNX2X_STOP_ON_ERROR
3111 __set_bit(BNX2X_Q_FLG_TX_SEC, &flags);
3112#endif
3113
6383c0b3
AE
3114 return flags;
3115}
3116
1191cb83
ED
3117static unsigned long bnx2x_get_q_flags(struct bnx2x *bp,
3118 struct bnx2x_fastpath *fp,
3119 bool leading)
6383c0b3
AE
3120{
3121 unsigned long flags = 0;
3122
619c5cb6
VZ
3123 /* calculate other queue flags */
3124 if (IS_MF_SD(bp))
3125 __set_bit(BNX2X_Q_FLG_OV, &flags);
28912902 3126
a3348722 3127 if (IS_FCOE_FP(fp)) {
619c5cb6 3128 __set_bit(BNX2X_Q_FLG_FCOE, &flags);
a3348722
BW
3129 /* For FCoE - force usage of default priority (for afex) */
3130 __set_bit(BNX2X_Q_FLG_FORCE_DEFAULT_PRI, &flags);
3131 }
523224a3 3132
7e6b4d44 3133 if (fp->mode != TPA_MODE_DISABLED) {
619c5cb6 3134 __set_bit(BNX2X_Q_FLG_TPA, &flags);
f5219d8e 3135 __set_bit(BNX2X_Q_FLG_TPA_IPV6, &flags);
621b4d66
DK
3136 if (fp->mode == TPA_MODE_GRO)
3137 __set_bit(BNX2X_Q_FLG_TPA_GRO, &flags);
f5219d8e 3138 }
619c5cb6 3139
619c5cb6
VZ
3140 if (leading) {
3141 __set_bit(BNX2X_Q_FLG_LEADING_RSS, &flags);
3142 __set_bit(BNX2X_Q_FLG_MCAST, &flags);
3143 }
523224a3 3144
619c5cb6
VZ
3145 /* Always set HW VLAN stripping */
3146 __set_bit(BNX2X_Q_FLG_VLAN, &flags);
523224a3 3147
a3348722
BW
3148 /* configure silent vlan removal */
3149 if (IS_MF_AFEX(bp))
3150 __set_bit(BNX2X_Q_FLG_SILENT_VLAN_REM, &flags);
3151
6383c0b3 3152 return flags | bnx2x_get_common_flags(bp, fp, true);
523224a3
DK
3153}
3154
619c5cb6 3155static void bnx2x_pf_q_prep_general(struct bnx2x *bp,
6383c0b3
AE
3156 struct bnx2x_fastpath *fp, struct bnx2x_general_setup_params *gen_init,
3157 u8 cos)
619c5cb6
VZ
3158{
3159 gen_init->stat_id = bnx2x_stats_id(fp);
3160 gen_init->spcl_id = fp->cl_id;
3161
3162 /* Always use mini-jumbo MTU for FCoE L2 ring */
3163 if (IS_FCOE_FP(fp))
3164 gen_init->mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
3165 else
3166 gen_init->mtu = bp->dev->mtu;
6383c0b3
AE
3167
3168 gen_init->cos = cos;
02dc4025
YM
3169
3170 gen_init->fp_hsi = ETH_FP_HSI_VERSION;
619c5cb6
VZ
3171}
3172
3173static void bnx2x_pf_rx_q_prep(struct bnx2x *bp,
523224a3 3174 struct bnx2x_fastpath *fp, struct rxq_pause_params *pause,
619c5cb6 3175 struct bnx2x_rxq_setup_params *rxq_init)
523224a3 3176{
619c5cb6 3177 u8 max_sge = 0;
523224a3
DK
3178 u16 sge_sz = 0;
3179 u16 tpa_agg_size = 0;
3180
7e6b4d44 3181 if (fp->mode != TPA_MODE_DISABLED) {
dfacf138
DK
3182 pause->sge_th_lo = SGE_TH_LO(bp);
3183 pause->sge_th_hi = SGE_TH_HI(bp);
3184
3185 /* validate SGE ring has enough to cross high threshold */
3186 WARN_ON(bp->dropless_fc &&
3187 pause->sge_th_hi + FW_PREFETCH_CNT >
3188 MAX_RX_SGE_CNT * NUM_RX_SGE_PAGES);
3189
924d75ab 3190 tpa_agg_size = TPA_AGG_SIZE;
523224a3
DK
3191 max_sge = SGE_PAGE_ALIGN(bp->dev->mtu) >>
3192 SGE_PAGE_SHIFT;
3193 max_sge = ((max_sge + PAGES_PER_SGE - 1) &
3194 (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
924d75ab 3195 sge_sz = (u16)min_t(u32, SGE_PAGES, 0xffff);
523224a3
DK
3196 }
3197
3198 /* pause - not for e1 */
3199 if (!CHIP_IS_E1(bp)) {
dfacf138
DK
3200 pause->bd_th_lo = BD_TH_LO(bp);
3201 pause->bd_th_hi = BD_TH_HI(bp);
3202
3203 pause->rcq_th_lo = RCQ_TH_LO(bp);
3204 pause->rcq_th_hi = RCQ_TH_HI(bp);
3205 /*
3206 * validate that rings have enough entries to cross
3207 * high thresholds
3208 */
3209 WARN_ON(bp->dropless_fc &&
3210 pause->bd_th_hi + FW_PREFETCH_CNT >
3211 bp->rx_ring_size);
3212 WARN_ON(bp->dropless_fc &&
3213 pause->rcq_th_hi + FW_PREFETCH_CNT >
3214 NUM_RCQ_RINGS * MAX_RCQ_DESC_CNT);
619c5cb6 3215
523224a3
DK
3216 pause->pri_map = 1;
3217 }
3218
3219 /* rxq setup */
523224a3
DK
3220 rxq_init->dscr_map = fp->rx_desc_mapping;
3221 rxq_init->sge_map = fp->rx_sge_mapping;
3222 rxq_init->rcq_map = fp->rx_comp_mapping;
3223 rxq_init->rcq_np_map = fp->rx_comp_mapping + BCM_PAGE_SIZE;
a8c94b91 3224
619c5cb6
VZ
3225 /* This should be a maximum number of data bytes that may be
3226 * placed on the BD (not including paddings).
3227 */
e52fcb24 3228 rxq_init->buf_sz = fp->rx_buf_size - BNX2X_FW_RX_ALIGN_START -
3cdeec22 3229 BNX2X_FW_RX_ALIGN_END - IP_HEADER_ALIGNMENT_PADDING;
a8c94b91 3230
523224a3 3231 rxq_init->cl_qzone_id = fp->cl_qzone_id;
523224a3
DK
3232 rxq_init->tpa_agg_sz = tpa_agg_size;
3233 rxq_init->sge_buf_sz = sge_sz;
3234 rxq_init->max_sges_pkt = max_sge;
619c5cb6 3235 rxq_init->rss_engine_id = BP_FUNC(bp);
259afa1f 3236 rxq_init->mcast_engine_id = BP_FUNC(bp);
619c5cb6
VZ
3237
3238 /* Maximum number or simultaneous TPA aggregation for this Queue.
3239 *
2de67439 3240 * For PF Clients it should be the maximum available number.
619c5cb6
VZ
3241 * VF driver(s) may want to define it to a smaller value.
3242 */
dfacf138 3243 rxq_init->max_tpa_queues = MAX_AGG_QS(bp);
619c5cb6 3244
523224a3
DK
3245 rxq_init->cache_line_log = BNX2X_RX_ALIGN_SHIFT;
3246 rxq_init->fw_sb_id = fp->fw_sb_id;
3247
ec6ba945
VZ
3248 if (IS_FCOE_FP(fp))
3249 rxq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS;
3250 else
6383c0b3 3251 rxq_init->sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
a3348722
BW
3252 /* configure silent vlan removal
3253 * if multi function mode is afex, then mask default vlan
3254 */
3255 if (IS_MF_AFEX(bp)) {
3256 rxq_init->silent_removal_value = bp->afex_def_vlan_tag;
3257 rxq_init->silent_removal_mask = VLAN_VID_MASK;
3258 }
523224a3
DK
3259}
3260
619c5cb6 3261static void bnx2x_pf_tx_q_prep(struct bnx2x *bp,
6383c0b3
AE
3262 struct bnx2x_fastpath *fp, struct bnx2x_txq_setup_params *txq_init,
3263 u8 cos)
523224a3 3264{
65565884 3265 txq_init->dscr_map = fp->txdata_ptr[cos]->tx_desc_mapping;
6383c0b3 3266 txq_init->sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS + cos;
523224a3
DK
3267 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_NW;
3268 txq_init->fw_sb_id = fp->fw_sb_id;
ec6ba945 3269
619c5cb6 3270 /*
16a5fd92 3271 * set the tss leading client id for TX classification ==
619c5cb6
VZ
3272 * leading RSS client id
3273 */
3274 txq_init->tss_leading_cl_id = bnx2x_fp(bp, 0, cl_id);
3275
ec6ba945
VZ
3276 if (IS_FCOE_FP(fp)) {
3277 txq_init->sb_cq_index = HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS;
3278 txq_init->traffic_type = LLFC_TRAFFIC_TYPE_FCOE;
3279 }
523224a3
DK
3280}
3281
8d96286a 3282static void bnx2x_pf_init(struct bnx2x *bp)
523224a3
DK
3283{
3284 struct bnx2x_func_init_params func_init = {0};
523224a3 3285 struct event_ring_data eq_data = { {0} };
523224a3 3286
619c5cb6 3287 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
3288 /* reset IGU PF statistics: MSIX + ATTN */
3289 /* PF */
3290 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3291 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3292 (CHIP_MODE_IS_4_PORT(bp) ?
3293 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3294 /* ATTN */
3295 REG_WR(bp, IGU_REG_STATISTIC_NUM_MESSAGE_SENT +
3296 BNX2X_IGU_STAS_MSG_VF_CNT*4 +
3297 BNX2X_IGU_STAS_MSG_PF_CNT*4 +
3298 (CHIP_MODE_IS_4_PORT(bp) ?
3299 BP_FUNC(bp) : BP_VN(bp))*4, 0);
3300 }
3301
05cc5a39 3302 func_init.spq_active = true;
523224a3
DK
3303 func_init.pf_id = BP_FUNC(bp);
3304 func_init.func_id = BP_FUNC(bp);
523224a3
DK
3305 func_init.spq_map = bp->spq_mapping;
3306 func_init.spq_prod = bp->spq_prod_idx;
3307
3308 bnx2x_func_init(bp, &func_init);
3309
3310 memset(&(bp->cmng), 0, sizeof(struct cmng_struct_per_port));
3311
3312 /*
619c5cb6
VZ
3313 * Congestion management values depend on the link rate
3314 * There is no active link so initial link rate is set to 10 Gbps.
3315 * When the link comes up The congestion management values are
3316 * re-calculated according to the actual link rate.
3317 */
523224a3
DK
3318 bp->link_vars.line_speed = SPEED_10000;
3319 bnx2x_cmng_fns_init(bp, true, bnx2x_get_cmng_fns_mode(bp));
3320
3321 /* Only the PMF sets the HW */
3322 if (bp->port.pmf)
3323 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3324
86564c3f 3325 /* init Event Queue - PCI bus guarantees correct endianity*/
523224a3
DK
3326 eq_data.base_addr.hi = U64_HI(bp->eq_mapping);
3327 eq_data.base_addr.lo = U64_LO(bp->eq_mapping);
3328 eq_data.producer = bp->eq_prod;
3329 eq_data.index_id = HC_SP_INDEX_EQ_CONS;
3330 eq_data.sb_id = DEF_SB_ID;
3331 storm_memset_eq_data(bp, &eq_data, BP_FUNC(bp));
3332}
3333
523224a3
DK
3334static void bnx2x_e1h_disable(struct bnx2x *bp)
3335{
3336 int port = BP_PORT(bp);
3337
619c5cb6 3338 bnx2x_tx_disable(bp);
523224a3
DK
3339
3340 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
523224a3
DK
3341}
3342
3343static void bnx2x_e1h_enable(struct bnx2x *bp)
3344{
3345 int port = BP_PORT(bp);
3346
7609647e
YM
3347 if (!(IS_MF_UFP(bp) && BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)))
3348 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port * 8, 1);
523224a3 3349
16a5fd92 3350 /* Tx queue should be only re-enabled */
523224a3
DK
3351 netif_tx_wake_all_queues(bp->dev);
3352
3353 /*
3354 * Should not call netif_carrier_on since it will be called if the link
3355 * is up when checking for link state
3356 */
3357}
3358
1d187b34
BW
3359#define DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED 3
3360
3361static void bnx2x_drv_info_ether_stat(struct bnx2x *bp)
3362{
3363 struct eth_stats_info *ether_stat =
3364 &bp->slowpath->drv_info_to_mcp.ether_stat;
3ec9f9ca
AE
3365 struct bnx2x_vlan_mac_obj *mac_obj =
3366 &bp->sp_objs->mac_obj;
3367 int i;
1d187b34 3368
786fdf0b
DC
3369 strlcpy(ether_stat->version, DRV_MODULE_VERSION,
3370 ETH_STAT_INFO_VERSION_LEN);
1d187b34 3371
3ec9f9ca
AE
3372 /* get DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED macs, placing them in the
3373 * mac_local field in ether_stat struct. The base address is offset by 2
3374 * bytes to account for the field being 8 bytes but a mac address is
3375 * only 6 bytes. Likewise, the stride for the get_n_elements function is
3376 * 2 bytes to compensate from the 6 bytes of a mac to the 8 bytes
3377 * allocated by the ether_stat struct, so the macs will land in their
3378 * proper positions.
3379 */
3380 for (i = 0; i < DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED; i++)
3381 memset(ether_stat->mac_local + i, 0,
3382 sizeof(ether_stat->mac_local[0]));
3383 mac_obj->get_n_elements(bp, &bp->sp_objs[0].mac_obj,
3384 DRV_INFO_ETH_STAT_NUM_MACS_REQUIRED,
3385 ether_stat->mac_local + MAC_PAD, MAC_PAD,
3386 ETH_ALEN);
1d187b34 3387 ether_stat->mtu_size = bp->dev->mtu;
1d187b34
BW
3388 if (bp->dev->features & NETIF_F_RXCSUM)
3389 ether_stat->feature_flags |= FEATURE_ETH_CHKSUM_OFFLOAD_MASK;
3390 if (bp->dev->features & NETIF_F_TSO)
3391 ether_stat->feature_flags |= FEATURE_ETH_LSO_MASK;
3392 ether_stat->feature_flags |= bp->common.boot_mode;
3393
3394 ether_stat->promiscuous_mode = (bp->dev->flags & IFF_PROMISC) ? 1 : 0;
3395
3396 ether_stat->txq_size = bp->tx_ring_size;
3397 ether_stat->rxq_size = bp->rx_ring_size;
0c757dee 3398
fcf93a0a 3399#ifdef CONFIG_BNX2X_SRIOV
0c757dee 3400 ether_stat->vf_cnt = IS_SRIOV(bp) ? bp->vfdb->sriov.nr_virtfn : 0;
fcf93a0a 3401#endif
1d187b34
BW
3402}
3403
3404static void bnx2x_drv_info_fcoe_stat(struct bnx2x *bp)
3405{
3406 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3407 struct fcoe_stats_info *fcoe_stat =
3408 &bp->slowpath->drv_info_to_mcp.fcoe_stat;
3409
55c11941
MS
3410 if (!CNIC_LOADED(bp))
3411 return;
3412
3ec9f9ca 3413 memcpy(fcoe_stat->mac_local + MAC_PAD, bp->fip_mac, ETH_ALEN);
1d187b34
BW
3414
3415 fcoe_stat->qos_priority =
3416 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_FCOE];
3417
3418 /* insert FCoE stats from ramrod response */
3419 if (!NO_FCOE(bp)) {
3420 struct tstorm_per_queue_stats *fcoe_q_tstorm_stats =
65565884 3421 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3422 tstorm_queue_statistics;
3423
3424 struct xstorm_per_queue_stats *fcoe_q_xstorm_stats =
65565884 3425 &bp->fw_stats_data->queue_stats[FCOE_IDX(bp)].
1d187b34
BW
3426 xstorm_queue_statistics;
3427
3428 struct fcoe_statistics_params *fw_fcoe_stat =
3429 &bp->fw_stats_data->fcoe;
3430
86564c3f
YM
3431 ADD_64_LE(fcoe_stat->rx_bytes_hi, LE32_0,
3432 fcoe_stat->rx_bytes_lo,
3433 fw_fcoe_stat->rx_stat0.fcoe_rx_byte_cnt);
1d187b34 3434
86564c3f
YM
3435 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3436 fcoe_q_tstorm_stats->rcv_ucast_bytes.hi,
3437 fcoe_stat->rx_bytes_lo,
3438 fcoe_q_tstorm_stats->rcv_ucast_bytes.lo);
1d187b34 3439
86564c3f
YM
3440 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3441 fcoe_q_tstorm_stats->rcv_bcast_bytes.hi,
3442 fcoe_stat->rx_bytes_lo,
3443 fcoe_q_tstorm_stats->rcv_bcast_bytes.lo);
1d187b34 3444
86564c3f
YM
3445 ADD_64_LE(fcoe_stat->rx_bytes_hi,
3446 fcoe_q_tstorm_stats->rcv_mcast_bytes.hi,
3447 fcoe_stat->rx_bytes_lo,
3448 fcoe_q_tstorm_stats->rcv_mcast_bytes.lo);
1d187b34 3449
86564c3f
YM
3450 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3451 fcoe_stat->rx_frames_lo,
3452 fw_fcoe_stat->rx_stat0.fcoe_rx_pkt_cnt);
1d187b34 3453
86564c3f
YM
3454 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3455 fcoe_stat->rx_frames_lo,
3456 fcoe_q_tstorm_stats->rcv_ucast_pkts);
1d187b34 3457
86564c3f
YM
3458 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3459 fcoe_stat->rx_frames_lo,
3460 fcoe_q_tstorm_stats->rcv_bcast_pkts);
1d187b34 3461
86564c3f
YM
3462 ADD_64_LE(fcoe_stat->rx_frames_hi, LE32_0,
3463 fcoe_stat->rx_frames_lo,
3464 fcoe_q_tstorm_stats->rcv_mcast_pkts);
1d187b34 3465
86564c3f
YM
3466 ADD_64_LE(fcoe_stat->tx_bytes_hi, LE32_0,
3467 fcoe_stat->tx_bytes_lo,
3468 fw_fcoe_stat->tx_stat.fcoe_tx_byte_cnt);
1d187b34 3469
86564c3f
YM
3470 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3471 fcoe_q_xstorm_stats->ucast_bytes_sent.hi,
3472 fcoe_stat->tx_bytes_lo,
3473 fcoe_q_xstorm_stats->ucast_bytes_sent.lo);
1d187b34 3474
86564c3f
YM
3475 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3476 fcoe_q_xstorm_stats->bcast_bytes_sent.hi,
3477 fcoe_stat->tx_bytes_lo,
3478 fcoe_q_xstorm_stats->bcast_bytes_sent.lo);
1d187b34 3479
86564c3f
YM
3480 ADD_64_LE(fcoe_stat->tx_bytes_hi,
3481 fcoe_q_xstorm_stats->mcast_bytes_sent.hi,
3482 fcoe_stat->tx_bytes_lo,
3483 fcoe_q_xstorm_stats->mcast_bytes_sent.lo);
1d187b34 3484
86564c3f
YM
3485 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3486 fcoe_stat->tx_frames_lo,
3487 fw_fcoe_stat->tx_stat.fcoe_tx_pkt_cnt);
1d187b34 3488
86564c3f
YM
3489 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3490 fcoe_stat->tx_frames_lo,
3491 fcoe_q_xstorm_stats->ucast_pkts_sent);
1d187b34 3492
86564c3f
YM
3493 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3494 fcoe_stat->tx_frames_lo,
3495 fcoe_q_xstorm_stats->bcast_pkts_sent);
1d187b34 3496
86564c3f
YM
3497 ADD_64_LE(fcoe_stat->tx_frames_hi, LE32_0,
3498 fcoe_stat->tx_frames_lo,
3499 fcoe_q_xstorm_stats->mcast_pkts_sent);
1d187b34
BW
3500 }
3501
1d187b34
BW
3502 /* ask L5 driver to add data to the struct */
3503 bnx2x_cnic_notify(bp, CNIC_CTL_FCOE_STATS_GET_CMD);
1d187b34
BW
3504}
3505
3506static void bnx2x_drv_info_iscsi_stat(struct bnx2x *bp)
3507{
3508 struct bnx2x_dcbx_app_params *app = &bp->dcbx_port_params.app;
3509 struct iscsi_stats_info *iscsi_stat =
3510 &bp->slowpath->drv_info_to_mcp.iscsi_stat;
3511
55c11941
MS
3512 if (!CNIC_LOADED(bp))
3513 return;
3514
3ec9f9ca
AE
3515 memcpy(iscsi_stat->mac_local + MAC_PAD, bp->cnic_eth_dev.iscsi_mac,
3516 ETH_ALEN);
1d187b34
BW
3517
3518 iscsi_stat->qos_priority =
3519 app->traffic_type_priority[LLFC_TRAFFIC_TYPE_ISCSI];
3520
1d187b34
BW
3521 /* ask L5 driver to add data to the struct */
3522 bnx2x_cnic_notify(bp, CNIC_CTL_ISCSI_STATS_GET_CMD);
1d187b34
BW
3523}
3524
0793f83f
DK
3525/* called due to MCP event (on pmf):
3526 * reread new bandwidth configuration
3527 * configure FW
3528 * notify others function about the change
3529 */
1191cb83 3530static void bnx2x_config_mf_bw(struct bnx2x *bp)
0793f83f
DK
3531{
3532 if (bp->link_vars.link_up) {
3533 bnx2x_cmng_fns_init(bp, true, CMNG_FNS_MINMAX);
3534 bnx2x_link_sync_notify(bp);
3535 }
3536 storm_memset_cmng(bp, &bp->cmng, BP_PORT(bp));
3537}
3538
1191cb83 3539static void bnx2x_set_mf_bw(struct bnx2x *bp)
0793f83f
DK
3540{
3541 bnx2x_config_mf_bw(bp);
3542 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW_ACK, 0);
3543}
3544
c8c60d88
YM
3545static void bnx2x_handle_eee_event(struct bnx2x *bp)
3546{
3547 DP(BNX2X_MSG_MCP, "EEE - LLDP event\n");
3548 bnx2x_fw_command(bp, DRV_MSG_CODE_EEE_RESULTS_ACK, 0);
3549}
3550
42f8277f
YM
3551#define BNX2X_UPDATE_DRV_INFO_IND_LENGTH (20)
3552#define BNX2X_UPDATE_DRV_INFO_IND_COUNT (25)
3553
1d187b34
BW
3554static void bnx2x_handle_drv_info_req(struct bnx2x *bp)
3555{
3556 enum drv_info_opcode op_code;
3557 u32 drv_info_ctl = SHMEM2_RD(bp, drv_info_control);
42f8277f
YM
3558 bool release = false;
3559 int wait;
1d187b34
BW
3560
3561 /* if drv_info version supported by MFW doesn't match - send NACK */
3562 if ((drv_info_ctl & DRV_INFO_CONTROL_VER_MASK) != DRV_INFO_CUR_VER) {
3563 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
3564 return;
3565 }
3566
3567 op_code = (drv_info_ctl & DRV_INFO_CONTROL_OP_CODE_MASK) >>
3568 DRV_INFO_CONTROL_OP_CODE_SHIFT;
3569
42f8277f
YM
3570 /* Must prevent other flows from accessing drv_info_to_mcp */
3571 mutex_lock(&bp->drv_info_mutex);
3572
1d187b34
BW
3573 memset(&bp->slowpath->drv_info_to_mcp, 0,
3574 sizeof(union drv_info_to_mcp));
3575
3576 switch (op_code) {
3577 case ETH_STATS_OPCODE:
3578 bnx2x_drv_info_ether_stat(bp);
3579 break;
3580 case FCOE_STATS_OPCODE:
3581 bnx2x_drv_info_fcoe_stat(bp);
3582 break;
3583 case ISCSI_STATS_OPCODE:
3584 bnx2x_drv_info_iscsi_stat(bp);
3585 break;
3586 default:
3587 /* if op code isn't supported - send NACK */
3588 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_NACK, 0);
42f8277f 3589 goto out;
1d187b34
BW
3590 }
3591
3592 /* if we got drv_info attn from MFW then these fields are defined in
3593 * shmem2 for sure
3594 */
3595 SHMEM2_WR(bp, drv_info_host_addr_lo,
3596 U64_LO(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3597 SHMEM2_WR(bp, drv_info_host_addr_hi,
3598 U64_HI(bnx2x_sp_mapping(bp, drv_info_to_mcp)));
3599
3600 bnx2x_fw_command(bp, DRV_MSG_CODE_DRV_INFO_ACK, 0);
42f8277f
YM
3601
3602 /* Since possible management wants both this and get_driver_version
3603 * need to wait until management notifies us it finished utilizing
3604 * the buffer.
3605 */
3606 if (!SHMEM2_HAS(bp, mfw_drv_indication)) {
3607 DP(BNX2X_MSG_MCP, "Management does not support indication\n");
3608 } else if (!bp->drv_info_mng_owner) {
3609 u32 bit = MFW_DRV_IND_READ_DONE_OFFSET((BP_ABS_FUNC(bp) >> 1));
3610
3611 for (wait = 0; wait < BNX2X_UPDATE_DRV_INFO_IND_COUNT; wait++) {
3612 u32 indication = SHMEM2_RD(bp, mfw_drv_indication);
3613
3614 /* Management is done; need to clear indication */
3615 if (indication & bit) {
3616 SHMEM2_WR(bp, mfw_drv_indication,
3617 indication & ~bit);
3618 release = true;
3619 break;
3620 }
3621
3622 msleep(BNX2X_UPDATE_DRV_INFO_IND_LENGTH);
3623 }
3624 }
3625 if (!release) {
3626 DP(BNX2X_MSG_MCP, "Management did not release indication\n");
3627 bp->drv_info_mng_owner = true;
3628 }
3629
3630out:
3631 mutex_unlock(&bp->drv_info_mutex);
3632}
3633
3634static u32 bnx2x_update_mng_version_utility(u8 *version, bool bnx2x_format)
3635{
3636 u8 vals[4];
3637 int i = 0;
3638
3639 if (bnx2x_format) {
3640 i = sscanf(version, "1.%c%hhd.%hhd.%hhd",
3641 &vals[0], &vals[1], &vals[2], &vals[3]);
3642 if (i > 0)
3643 vals[0] -= '0';
3644 } else {
3645 i = sscanf(version, "%hhd.%hhd.%hhd.%hhd",
3646 &vals[0], &vals[1], &vals[2], &vals[3]);
3647 }
3648
3649 while (i < 4)
3650 vals[i++] = 0;
3651
3652 return (vals[0] << 24) | (vals[1] << 16) | (vals[2] << 8) | vals[3];
3653}
3654
3655void bnx2x_update_mng_version(struct bnx2x *bp)
3656{
3657 u32 iscsiver = DRV_VER_NOT_LOADED;
3658 u32 fcoever = DRV_VER_NOT_LOADED;
3659 u32 ethver = DRV_VER_NOT_LOADED;
3660 int idx = BP_FW_MB_IDX(bp);
3661 u8 *version;
3662
3663 if (!SHMEM2_HAS(bp, func_os_drv_ver))
3664 return;
3665
3666 mutex_lock(&bp->drv_info_mutex);
3667 /* Must not proceed when `bnx2x_handle_drv_info_req' is feasible */
3668 if (bp->drv_info_mng_owner)
3669 goto out;
3670
3671 if (bp->state != BNX2X_STATE_OPEN)
3672 goto out;
3673
3674 /* Parse ethernet driver version */
3675 ethver = bnx2x_update_mng_version_utility(DRV_MODULE_VERSION, true);
3676 if (!CNIC_LOADED(bp))
3677 goto out;
3678
3679 /* Try getting storage driver version via cnic */
3680 memset(&bp->slowpath->drv_info_to_mcp, 0,
3681 sizeof(union drv_info_to_mcp));
3682 bnx2x_drv_info_iscsi_stat(bp);
3683 version = bp->slowpath->drv_info_to_mcp.iscsi_stat.version;
3684 iscsiver = bnx2x_update_mng_version_utility(version, false);
3685
3686 memset(&bp->slowpath->drv_info_to_mcp, 0,
3687 sizeof(union drv_info_to_mcp));
3688 bnx2x_drv_info_fcoe_stat(bp);
3689 version = bp->slowpath->drv_info_to_mcp.fcoe_stat.version;
3690 fcoever = bnx2x_update_mng_version_utility(version, false);
3691
3692out:
3693 SHMEM2_WR(bp, func_os_drv_ver[idx].versions[DRV_PERS_ETHERNET], ethver);
3694 SHMEM2_WR(bp, func_os_drv_ver[idx].versions[DRV_PERS_ISCSI], iscsiver);
3695 SHMEM2_WR(bp, func_os_drv_ver[idx].versions[DRV_PERS_FCOE], fcoever);
3696
3697 mutex_unlock(&bp->drv_info_mutex);
3698
3699 DP(BNX2X_MSG_MCP, "Setting driver version: ETH [%08x] iSCSI [%08x] FCoE [%08x]\n",
3700 ethver, iscsiver, fcoever);
1d187b34
BW
3701}
3702
c48f350f
YM
3703void bnx2x_update_mfw_dump(struct bnx2x *bp)
3704{
3705 struct timeval epoc;
3706 u32 drv_ver;
3707 u32 valid_dump;
3708
3709 if (!SHMEM2_HAS(bp, drv_info))
3710 return;
3711
3712 /* Update Driver load time */
3713 do_gettimeofday(&epoc);
3714 SHMEM2_WR(bp, drv_info.epoc, epoc.tv_sec);
3715
3716 drv_ver = bnx2x_update_mng_version_utility(DRV_MODULE_VERSION, true);
3717 SHMEM2_WR(bp, drv_info.drv_ver, drv_ver);
3718
3719 SHMEM2_WR(bp, drv_info.fw_ver, REG_RD(bp, XSEM_REG_PRAM));
3720
3721 /* Check & notify On-Chip dump. */
3722 valid_dump = SHMEM2_RD(bp, drv_info.valid_dump);
3723
3724 if (valid_dump & FIRST_DUMP_VALID)
3725 DP(NETIF_MSG_IFUP, "A valid On-Chip MFW dump found on 1st partition\n");
3726
3727 if (valid_dump & SECOND_DUMP_VALID)
3728 DP(NETIF_MSG_IFUP, "A valid On-Chip MFW dump found on 2nd partition\n");
3729}
3730
7609647e 3731static void bnx2x_oem_event(struct bnx2x *bp, u32 event)
523224a3 3732{
7609647e
YM
3733 u32 cmd_ok, cmd_fail;
3734
3735 /* sanity */
3736 if (event & DRV_STATUS_DCC_EVENT_MASK &&
3737 event & DRV_STATUS_OEM_EVENT_MASK) {
3738 BNX2X_ERR("Received simultaneous events %08x\n", event);
3739 return;
3740 }
523224a3 3741
7609647e
YM
3742 if (event & DRV_STATUS_DCC_EVENT_MASK) {
3743 cmd_fail = DRV_MSG_CODE_DCC_FAILURE;
3744 cmd_ok = DRV_MSG_CODE_DCC_OK;
3745 } else /* if (event & DRV_STATUS_OEM_EVENT_MASK) */ {
3746 cmd_fail = DRV_MSG_CODE_OEM_FAILURE;
3747 cmd_ok = DRV_MSG_CODE_OEM_OK;
3748 }
523224a3 3749
7609647e
YM
3750 DP(BNX2X_MSG_MCP, "oem_event 0x%x\n", event);
3751
3752 if (event & (DRV_STATUS_DCC_DISABLE_ENABLE_PF |
3753 DRV_STATUS_OEM_DISABLE_ENABLE_PF)) {
3754 /* This is the only place besides the function initialization
523224a3
DK
3755 * where the bp->flags can change so it is done without any
3756 * locks
3757 */
f2e0899f 3758 if (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED) {
51c1a580 3759 DP(BNX2X_MSG_MCP, "mf_cfg function disabled\n");
523224a3
DK
3760 bp->flags |= MF_FUNC_DIS;
3761
3762 bnx2x_e1h_disable(bp);
3763 } else {
51c1a580 3764 DP(BNX2X_MSG_MCP, "mf_cfg function enabled\n");
523224a3
DK
3765 bp->flags &= ~MF_FUNC_DIS;
3766
3767 bnx2x_e1h_enable(bp);
3768 }
7609647e
YM
3769 event &= ~(DRV_STATUS_DCC_DISABLE_ENABLE_PF |
3770 DRV_STATUS_OEM_DISABLE_ENABLE_PF);
523224a3 3771 }
7609647e
YM
3772
3773 if (event & (DRV_STATUS_DCC_BANDWIDTH_ALLOCATION |
3774 DRV_STATUS_OEM_BANDWIDTH_ALLOCATION)) {
0793f83f 3775 bnx2x_config_mf_bw(bp);
7609647e
YM
3776 event &= ~(DRV_STATUS_DCC_BANDWIDTH_ALLOCATION |
3777 DRV_STATUS_OEM_BANDWIDTH_ALLOCATION);
523224a3
DK
3778 }
3779
3780 /* Report results to MCP */
7609647e
YM
3781 if (event)
3782 bnx2x_fw_command(bp, cmd_fail, 0);
523224a3 3783 else
7609647e 3784 bnx2x_fw_command(bp, cmd_ok, 0);
523224a3
DK
3785}
3786
3787/* must be called under the spq lock */
1191cb83 3788static struct eth_spe *bnx2x_sp_get_next(struct bnx2x *bp)
523224a3
DK
3789{
3790 struct eth_spe *next_spe = bp->spq_prod_bd;
3791
3792 if (bp->spq_prod_bd == bp->spq_last_bd) {
3793 bp->spq_prod_bd = bp->spq;
3794 bp->spq_prod_idx = 0;
51c1a580 3795 DP(BNX2X_MSG_SP, "end of spq\n");
523224a3
DK
3796 } else {
3797 bp->spq_prod_bd++;
3798 bp->spq_prod_idx++;
3799 }
3800 return next_spe;
3801}
3802
3803/* must be called under the spq lock */
1191cb83 3804static void bnx2x_sp_prod_update(struct bnx2x *bp)
28912902
MC
3805{
3806 int func = BP_FUNC(bp);
3807
53e51e2f
VZ
3808 /*
3809 * Make sure that BD data is updated before writing the producer:
3810 * BD data is written to the memory, the producer is read from the
3811 * memory, thus we need a full memory barrier to ensure the ordering.
3812 */
3813 mb();
28912902 3814
523224a3 3815 REG_WR16(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_PROD_OFFSET(func),
f85582f8 3816 bp->spq_prod_idx);
28912902
MC
3817 mmiowb();
3818}
3819
619c5cb6
VZ
3820/**
3821 * bnx2x_is_contextless_ramrod - check if the current command ends on EQ
3822 *
3823 * @cmd: command to check
3824 * @cmd_type: command type
3825 */
1191cb83 3826static bool bnx2x_is_contextless_ramrod(int cmd, int cmd_type)
619c5cb6
VZ
3827{
3828 if ((cmd_type == NONE_CONNECTION_TYPE) ||
6383c0b3 3829 (cmd == RAMROD_CMD_ID_ETH_FORWARD_SETUP) ||
619c5cb6
VZ
3830 (cmd == RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES) ||
3831 (cmd == RAMROD_CMD_ID_ETH_FILTER_RULES) ||
3832 (cmd == RAMROD_CMD_ID_ETH_MULTICAST_RULES) ||
3833 (cmd == RAMROD_CMD_ID_ETH_SET_MAC) ||
3834 (cmd == RAMROD_CMD_ID_ETH_RSS_UPDATE))
3835 return true;
3836 else
3837 return false;
619c5cb6
VZ
3838}
3839
619c5cb6
VZ
3840/**
3841 * bnx2x_sp_post - place a single command on an SP ring
3842 *
3843 * @bp: driver handle
3844 * @command: command to place (e.g. SETUP, FILTER_RULES, etc.)
3845 * @cid: SW CID the command is related to
3846 * @data_hi: command private data address (high 32 bits)
3847 * @data_lo: command private data address (low 32 bits)
3848 * @cmd_type: command type (e.g. NONE, ETH)
3849 *
3850 * SP data is handled as if it's always an address pair, thus data fields are
3851 * not swapped to little endian in upper functions. Instead this function swaps
3852 * data as if it's two u32 fields.
3853 */
9f6c9258 3854int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
619c5cb6 3855 u32 data_hi, u32 data_lo, int cmd_type)
a2fbb9ea 3856{
28912902 3857 struct eth_spe *spe;
523224a3 3858 u16 type;
619c5cb6 3859 bool common = bnx2x_is_contextless_ramrod(command, cmd_type);
a2fbb9ea 3860
a2fbb9ea 3861#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
3862 if (unlikely(bp->panic)) {
3863 BNX2X_ERR("Can't post SP when there is panic\n");
a2fbb9ea 3864 return -EIO;
51c1a580 3865 }
a2fbb9ea
ET
3866#endif
3867
34f80b04 3868 spin_lock_bh(&bp->spq_lock);
a2fbb9ea 3869
6e30dd4e
VZ
3870 if (common) {
3871 if (!atomic_read(&bp->eq_spq_left)) {
3872 BNX2X_ERR("BUG! EQ ring full!\n");
3873 spin_unlock_bh(&bp->spq_lock);
3874 bnx2x_panic();
3875 return -EBUSY;
3876 }
3877 } else if (!atomic_read(&bp->cq_spq_left)) {
3878 BNX2X_ERR("BUG! SPQ ring full!\n");
3879 spin_unlock_bh(&bp->spq_lock);
3880 bnx2x_panic();
3881 return -EBUSY;
a2fbb9ea 3882 }
f1410647 3883
28912902
MC
3884 spe = bnx2x_sp_get_next(bp);
3885
a2fbb9ea 3886 /* CID needs port number to be encoded int it */
28912902 3887 spe->hdr.conn_and_cmd_data =
cdaa7cb8
VZ
3888 cpu_to_le32((command << SPE_HDR_CMD_ID_SHIFT) |
3889 HW_CID(bp, cid));
523224a3 3890
14a94ebd
MK
3891 /* In some cases, type may already contain the func-id
3892 * mainly in SRIOV related use cases, so we add it here only
3893 * if it's not already set.
3894 */
3895 if (!(cmd_type & SPE_HDR_FUNCTION_ID)) {
3896 type = (cmd_type << SPE_HDR_CONN_TYPE_SHIFT) &
3897 SPE_HDR_CONN_TYPE;
3898 type |= ((BP_FUNC(bp) << SPE_HDR_FUNCTION_ID_SHIFT) &
3899 SPE_HDR_FUNCTION_ID);
3900 } else {
3901 type = cmd_type;
3902 }
a2fbb9ea 3903
523224a3
DK
3904 spe->hdr.type = cpu_to_le16(type);
3905
3906 spe->data.update_data_addr.hi = cpu_to_le32(data_hi);
3907 spe->data.update_data_addr.lo = cpu_to_le32(data_lo);
3908
d6cae238
VZ
3909 /*
3910 * It's ok if the actual decrement is issued towards the memory
3911 * somewhere between the spin_lock and spin_unlock. Thus no
16a5fd92 3912 * more explicit memory barrier is needed.
d6cae238
VZ
3913 */
3914 if (common)
3915 atomic_dec(&bp->eq_spq_left);
3916 else
3917 atomic_dec(&bp->cq_spq_left);
6e30dd4e 3918
51c1a580
MS
3919 DP(BNX2X_MSG_SP,
3920 "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
3921 bp->spq_prod_idx, (u32)U64_HI(bp->spq_mapping),
3922 (u32)(U64_LO(bp->spq_mapping) +
d6cae238 3923 (void *)bp->spq_prod_bd - (void *)bp->spq), command, common,
6e30dd4e
VZ
3924 HW_CID(bp, cid), data_hi, data_lo, type,
3925 atomic_read(&bp->cq_spq_left), atomic_read(&bp->eq_spq_left));
cdaa7cb8 3926
28912902 3927 bnx2x_sp_prod_update(bp);
34f80b04 3928 spin_unlock_bh(&bp->spq_lock);
a2fbb9ea
ET
3929 return 0;
3930}
3931
3932/* acquire split MCP access lock register */
4a37fb66 3933static int bnx2x_acquire_alr(struct bnx2x *bp)
a2fbb9ea 3934{
72fd0718 3935 u32 j, val;
34f80b04 3936 int rc = 0;
a2fbb9ea
ET
3937
3938 might_sleep();
72fd0718 3939 for (j = 0; j < 1000; j++) {
3cdeec22
YM
3940 REG_WR(bp, MCP_REG_MCPR_ACCESS_LOCK, MCPR_ACCESS_LOCK_LOCK);
3941 val = REG_RD(bp, MCP_REG_MCPR_ACCESS_LOCK);
3942 if (val & MCPR_ACCESS_LOCK_LOCK)
a2fbb9ea
ET
3943 break;
3944
639d65b8 3945 usleep_range(5000, 10000);
a2fbb9ea 3946 }
3cdeec22 3947 if (!(val & MCPR_ACCESS_LOCK_LOCK)) {
19680c48 3948 BNX2X_ERR("Cannot acquire MCP access lock register\n");
a2fbb9ea
ET
3949 rc = -EBUSY;
3950 }
3951
3952 return rc;
3953}
3954
4a37fb66
YG
3955/* release split MCP access lock register */
3956static void bnx2x_release_alr(struct bnx2x *bp)
a2fbb9ea 3957{
3cdeec22 3958 REG_WR(bp, MCP_REG_MCPR_ACCESS_LOCK, 0);
a2fbb9ea
ET
3959}
3960
523224a3
DK
3961#define BNX2X_DEF_SB_ATT_IDX 0x0001
3962#define BNX2X_DEF_SB_IDX 0x0002
3963
1191cb83 3964static u16 bnx2x_update_dsb_idx(struct bnx2x *bp)
a2fbb9ea 3965{
523224a3 3966 struct host_sp_status_block *def_sb = bp->def_status_blk;
a2fbb9ea
ET
3967 u16 rc = 0;
3968
3969 barrier(); /* status block is written to by the chip */
a2fbb9ea
ET
3970 if (bp->def_att_idx != def_sb->atten_status_block.attn_bits_index) {
3971 bp->def_att_idx = def_sb->atten_status_block.attn_bits_index;
523224a3 3972 rc |= BNX2X_DEF_SB_ATT_IDX;
a2fbb9ea 3973 }
523224a3
DK
3974
3975 if (bp->def_idx != def_sb->sp_sb.running_index) {
3976 bp->def_idx = def_sb->sp_sb.running_index;
3977 rc |= BNX2X_DEF_SB_IDX;
a2fbb9ea 3978 }
523224a3 3979
16a5fd92 3980 /* Do not reorder: indices reading should complete before handling */
523224a3 3981 barrier();
a2fbb9ea
ET
3982 return rc;
3983}
3984
3985/*
3986 * slow path service functions
3987 */
3988
3989static void bnx2x_attn_int_asserted(struct bnx2x *bp, u32 asserted)
3990{
34f80b04 3991 int port = BP_PORT(bp);
a2fbb9ea
ET
3992 u32 aeu_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
3993 MISC_REG_AEU_MASK_ATTN_FUNC_0;
877e9aa4
ET
3994 u32 nig_int_mask_addr = port ? NIG_REG_MASK_INTERRUPT_PORT1 :
3995 NIG_REG_MASK_INTERRUPT_PORT0;
3fcaf2e5 3996 u32 aeu_mask;
87942b46 3997 u32 nig_mask = 0;
f2e0899f 3998 u32 reg_addr;
a2fbb9ea 3999
a2fbb9ea
ET
4000 if (bp->attn_state & asserted)
4001 BNX2X_ERR("IGU ERROR\n");
4002
3fcaf2e5
EG
4003 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
4004 aeu_mask = REG_RD(bp, aeu_addr);
4005
a2fbb9ea 4006 DP(NETIF_MSG_HW, "aeu_mask %x newly asserted %x\n",
3fcaf2e5 4007 aeu_mask, asserted);
72fd0718 4008 aeu_mask &= ~(asserted & 0x3ff);
3fcaf2e5 4009 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 4010
3fcaf2e5
EG
4011 REG_WR(bp, aeu_addr, aeu_mask);
4012 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea 4013
3fcaf2e5 4014 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
a2fbb9ea 4015 bp->attn_state |= asserted;
3fcaf2e5 4016 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
a2fbb9ea
ET
4017
4018 if (asserted & ATTN_HARD_WIRED_MASK) {
4019 if (asserted & ATTN_NIG_FOR_FUNC) {
a2fbb9ea 4020
a5e9a7cf
EG
4021 bnx2x_acquire_phy_lock(bp);
4022
877e9aa4 4023 /* save nig interrupt mask */
87942b46 4024 nig_mask = REG_RD(bp, nig_int_mask_addr);
a2fbb9ea 4025
361c391e
YR
4026 /* If nig_mask is not set, no need to call the update
4027 * function.
4028 */
4029 if (nig_mask) {
4030 REG_WR(bp, nig_int_mask_addr, 0);
4031
4032 bnx2x_link_attn(bp);
4033 }
a2fbb9ea
ET
4034
4035 /* handle unicore attn? */
4036 }
4037 if (asserted & ATTN_SW_TIMER_4_FUNC)
4038 DP(NETIF_MSG_HW, "ATTN_SW_TIMER_4_FUNC!\n");
4039
4040 if (asserted & GPIO_2_FUNC)
4041 DP(NETIF_MSG_HW, "GPIO_2_FUNC!\n");
4042
4043 if (asserted & GPIO_3_FUNC)
4044 DP(NETIF_MSG_HW, "GPIO_3_FUNC!\n");
4045
4046 if (asserted & GPIO_4_FUNC)
4047 DP(NETIF_MSG_HW, "GPIO_4_FUNC!\n");
4048
4049 if (port == 0) {
4050 if (asserted & ATTN_GENERAL_ATTN_1) {
4051 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_1!\n");
4052 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_1, 0x0);
4053 }
4054 if (asserted & ATTN_GENERAL_ATTN_2) {
4055 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_2!\n");
4056 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_2, 0x0);
4057 }
4058 if (asserted & ATTN_GENERAL_ATTN_3) {
4059 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_3!\n");
4060 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_3, 0x0);
4061 }
4062 } else {
4063 if (asserted & ATTN_GENERAL_ATTN_4) {
4064 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_4!\n");
4065 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_4, 0x0);
4066 }
4067 if (asserted & ATTN_GENERAL_ATTN_5) {
4068 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_5!\n");
4069 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_5, 0x0);
4070 }
4071 if (asserted & ATTN_GENERAL_ATTN_6) {
4072 DP(NETIF_MSG_HW, "ATTN_GENERAL_ATTN_6!\n");
4073 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_6, 0x0);
4074 }
4075 }
4076
4077 } /* if hardwired */
4078
f2e0899f
DK
4079 if (bp->common.int_block == INT_BLOCK_HC)
4080 reg_addr = (HC_REG_COMMAND_REG + port*32 +
4081 COMMAND_REG_ATTN_BITS_SET);
4082 else
4083 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_SET_UPPER*8);
4084
4085 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", asserted,
4086 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
4087 REG_WR(bp, reg_addr, asserted);
a2fbb9ea
ET
4088
4089 /* now set back the mask */
a5e9a7cf 4090 if (asserted & ATTN_NIG_FOR_FUNC) {
27c1151c
YR
4091 /* Verify that IGU ack through BAR was written before restoring
4092 * NIG mask. This loop should exit after 2-3 iterations max.
4093 */
4094 if (bp->common.int_block != INT_BLOCK_HC) {
4095 u32 cnt = 0, igu_acked;
4096 do {
4097 igu_acked = REG_RD(bp,
4098 IGU_REG_ATTENTION_ACK_BITS);
4099 } while (((igu_acked & ATTN_NIG_FOR_FUNC) == 0) &&
4100 (++cnt < MAX_IGU_ATTN_ACK_TO));
4101 if (!igu_acked)
4102 DP(NETIF_MSG_HW,
4103 "Failed to verify IGU ack on time\n");
4104 barrier();
4105 }
87942b46 4106 REG_WR(bp, nig_int_mask_addr, nig_mask);
a5e9a7cf
EG
4107 bnx2x_release_phy_lock(bp);
4108 }
a2fbb9ea
ET
4109}
4110
1191cb83 4111static void bnx2x_fan_failure(struct bnx2x *bp)
fd4ef40d
EG
4112{
4113 int port = BP_PORT(bp);
b7737c9b 4114 u32 ext_phy_config;
fd4ef40d 4115 /* mark the failure */
b7737c9b
YR
4116 ext_phy_config =
4117 SHMEM_RD(bp,
4118 dev_info.port_hw_config[port].external_phy_config);
4119
4120 ext_phy_config &= ~PORT_HW_CFG_XGXS_EXT_PHY_TYPE_MASK;
4121 ext_phy_config |= PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE;
fd4ef40d 4122 SHMEM_WR(bp, dev_info.port_hw_config[port].external_phy_config,
b7737c9b 4123 ext_phy_config);
fd4ef40d
EG
4124
4125 /* log the failure */
51c1a580
MS
4126 netdev_err(bp->dev, "Fan Failure on Network Controller has caused the driver to shutdown the card to prevent permanent damage.\n"
4127 "Please contact OEM Support for assistance\n");
8304859a 4128
16a5fd92 4129 /* Schedule device reset (unload)
8304859a
AE
4130 * This is due to some boards consuming sufficient power when driver is
4131 * up to overheat if fan fails.
4132 */
230bb0f3 4133 bnx2x_schedule_sp_rtnl(bp, BNX2X_SP_RTNL_FAN_FAILURE, 0);
fd4ef40d 4134}
ab6ad5a4 4135
1191cb83 4136static void bnx2x_attn_int_deasserted0(struct bnx2x *bp, u32 attn)
a2fbb9ea 4137{
34f80b04 4138 int port = BP_PORT(bp);
877e9aa4 4139 int reg_offset;
d90d96ba 4140 u32 val;
877e9aa4 4141
34f80b04
EG
4142 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
4143 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
877e9aa4 4144
34f80b04 4145 if (attn & AEU_INPUTS_ATTN_BITS_SPIO5) {
877e9aa4
ET
4146
4147 val = REG_RD(bp, reg_offset);
4148 val &= ~AEU_INPUTS_ATTN_BITS_SPIO5;
4149 REG_WR(bp, reg_offset, val);
4150
4151 BNX2X_ERR("SPIO5 hw attention\n");
4152
fd4ef40d 4153 /* Fan failure attention */
d90d96ba 4154 bnx2x_hw_reset_phy(&bp->link_params);
fd4ef40d 4155 bnx2x_fan_failure(bp);
877e9aa4 4156 }
34f80b04 4157
3deb8167 4158 if ((attn & bp->link_vars.aeu_int_mask) && bp->port.pmf) {
589abe3a
EG
4159 bnx2x_acquire_phy_lock(bp);
4160 bnx2x_handle_module_detect_int(&bp->link_params);
4161 bnx2x_release_phy_lock(bp);
4162 }
4163
34f80b04
EG
4164 if (attn & HW_INTERRUT_ASSERT_SET_0) {
4165
4166 val = REG_RD(bp, reg_offset);
4167 val &= ~(attn & HW_INTERRUT_ASSERT_SET_0);
4168 REG_WR(bp, reg_offset, val);
4169
4170 BNX2X_ERR("FATAL HW block attention set0 0x%x\n",
0fc5d009 4171 (u32)(attn & HW_INTERRUT_ASSERT_SET_0));
34f80b04
EG
4172 bnx2x_panic();
4173 }
877e9aa4
ET
4174}
4175
1191cb83 4176static void bnx2x_attn_int_deasserted1(struct bnx2x *bp, u32 attn)
877e9aa4
ET
4177{
4178 u32 val;
4179
0626b899 4180 if (attn & AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT) {
877e9aa4
ET
4181
4182 val = REG_RD(bp, DORQ_REG_DORQ_INT_STS_CLR);
4183 BNX2X_ERR("DB hw attention 0x%x\n", val);
4184 /* DORQ discard attention */
4185 if (val & 0x2)
4186 BNX2X_ERR("FATAL error from DORQ\n");
4187 }
34f80b04
EG
4188
4189 if (attn & HW_INTERRUT_ASSERT_SET_1) {
4190
4191 int port = BP_PORT(bp);
4192 int reg_offset;
4193
4194 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1 :
4195 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1);
4196
4197 val = REG_RD(bp, reg_offset);
4198 val &= ~(attn & HW_INTERRUT_ASSERT_SET_1);
4199 REG_WR(bp, reg_offset, val);
4200
4201 BNX2X_ERR("FATAL HW block attention set1 0x%x\n",
0fc5d009 4202 (u32)(attn & HW_INTERRUT_ASSERT_SET_1));
34f80b04
EG
4203 bnx2x_panic();
4204 }
877e9aa4
ET
4205}
4206
1191cb83 4207static void bnx2x_attn_int_deasserted2(struct bnx2x *bp, u32 attn)
877e9aa4
ET
4208{
4209 u32 val;
4210
4211 if (attn & AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT) {
4212
4213 val = REG_RD(bp, CFC_REG_CFC_INT_STS_CLR);
4214 BNX2X_ERR("CFC hw attention 0x%x\n", val);
4215 /* CFC error attention */
4216 if (val & 0x2)
4217 BNX2X_ERR("FATAL error from CFC\n");
4218 }
4219
4220 if (attn & AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT) {
877e9aa4 4221 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_0);
619c5cb6 4222 BNX2X_ERR("PXP hw attention-0 0x%x\n", val);
877e9aa4
ET
4223 /* RQ_USDMDP_FIFO_OVERFLOW */
4224 if (val & 0x18000)
4225 BNX2X_ERR("FATAL error from PXP\n");
619c5cb6
VZ
4226
4227 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
4228 val = REG_RD(bp, PXP_REG_PXP_INT_STS_CLR_1);
4229 BNX2X_ERR("PXP hw attention-1 0x%x\n", val);
4230 }
877e9aa4 4231 }
34f80b04
EG
4232
4233 if (attn & HW_INTERRUT_ASSERT_SET_2) {
4234
4235 int port = BP_PORT(bp);
4236 int reg_offset;
4237
4238 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2 :
4239 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2);
4240
4241 val = REG_RD(bp, reg_offset);
4242 val &= ~(attn & HW_INTERRUT_ASSERT_SET_2);
4243 REG_WR(bp, reg_offset, val);
4244
4245 BNX2X_ERR("FATAL HW block attention set2 0x%x\n",
0fc5d009 4246 (u32)(attn & HW_INTERRUT_ASSERT_SET_2));
34f80b04
EG
4247 bnx2x_panic();
4248 }
877e9aa4
ET
4249}
4250
1191cb83 4251static void bnx2x_attn_int_deasserted3(struct bnx2x *bp, u32 attn)
877e9aa4 4252{
34f80b04
EG
4253 u32 val;
4254
877e9aa4
ET
4255 if (attn & EVEREST_GEN_ATTN_IN_USE_MASK) {
4256
34f80b04
EG
4257 if (attn & BNX2X_PMF_LINK_ASSERT) {
4258 int func = BP_FUNC(bp);
4259
4260 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
a3348722 4261 bnx2x_read_mf_cfg(bp);
f2e0899f
DK
4262 bp->mf_config[BP_VN(bp)] = MF_CFG_RD(bp,
4263 func_mf_config[BP_ABS_FUNC(bp)].config);
4264 val = SHMEM_RD(bp,
4265 func_mb[BP_FW_MB_IDX(bp)].drv_status);
7609647e
YM
4266
4267 if (val & (DRV_STATUS_DCC_EVENT_MASK |
4268 DRV_STATUS_OEM_EVENT_MASK))
4269 bnx2x_oem_event(bp,
4270 (val & (DRV_STATUS_DCC_EVENT_MASK |
4271 DRV_STATUS_OEM_EVENT_MASK)));
0793f83f
DK
4272
4273 if (val & DRV_STATUS_SET_MF_BW)
4274 bnx2x_set_mf_bw(bp);
4275
1d187b34
BW
4276 if (val & DRV_STATUS_DRV_INFO_REQ)
4277 bnx2x_handle_drv_info_req(bp);
d16132ce
AE
4278
4279 if (val & DRV_STATUS_VF_DISABLED)
370d4a26
YM
4280 bnx2x_schedule_iov_task(bp,
4281 BNX2X_IOV_HANDLE_FLR);
d16132ce 4282
2691d51d 4283 if ((bp->port.pmf == 0) && (val & DRV_STATUS_PMF))
34f80b04
EG
4284 bnx2x_pmf_update(bp);
4285
e4901dde 4286 if (bp->port.pmf &&
785b9b1a
SR
4287 (val & DRV_STATUS_DCBX_NEGOTIATION_RESULTS) &&
4288 bp->dcbx_enabled > 0)
e4901dde
VZ
4289 /* start dcbx state machine */
4290 bnx2x_dcbx_set_params(bp,
4291 BNX2X_DCBX_STATE_NEG_RECEIVED);
a3348722
BW
4292 if (val & DRV_STATUS_AFEX_EVENT_MASK)
4293 bnx2x_handle_afex_cmd(bp,
4294 val & DRV_STATUS_AFEX_EVENT_MASK);
c8c60d88
YM
4295 if (val & DRV_STATUS_EEE_NEGOTIATION_RESULTS)
4296 bnx2x_handle_eee_event(bp);
7609647e
YM
4297
4298 if (val & DRV_STATUS_OEM_UPDATE_SVID)
4299 bnx2x_handle_update_svid_cmd(bp);
4300
3deb8167
YR
4301 if (bp->link_vars.periodic_flags &
4302 PERIODIC_FLAGS_LINK_EVENT) {
4303 /* sync with link */
4304 bnx2x_acquire_phy_lock(bp);
4305 bp->link_vars.periodic_flags &=
4306 ~PERIODIC_FLAGS_LINK_EVENT;
4307 bnx2x_release_phy_lock(bp);
4308 if (IS_MF(bp))
4309 bnx2x_link_sync_notify(bp);
4310 bnx2x_link_report(bp);
4311 }
4312 /* Always call it here: bnx2x_link_report() will
4313 * prevent the link indication duplication.
4314 */
4315 bnx2x__link_status_update(bp);
34f80b04 4316 } else if (attn & BNX2X_MC_ASSERT_BITS) {
877e9aa4
ET
4317
4318 BNX2X_ERR("MC assert!\n");
d6cae238 4319 bnx2x_mc_assert(bp);
877e9aa4
ET
4320 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_10, 0);
4321 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_9, 0);
4322 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_8, 0);
4323 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_7, 0);
4324 bnx2x_panic();
4325
4326 } else if (attn & BNX2X_MCP_ASSERT) {
4327
4328 BNX2X_ERR("MCP assert!\n");
4329 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_11, 0);
34f80b04 4330 bnx2x_fw_dump(bp);
877e9aa4
ET
4331
4332 } else
4333 BNX2X_ERR("Unknown HW assert! (attn 0x%x)\n", attn);
4334 }
4335
4336 if (attn & EVEREST_LATCHED_ATTN_IN_USE_MASK) {
34f80b04
EG
4337 BNX2X_ERR("LATCHED attention 0x%08x (masked)\n", attn);
4338 if (attn & BNX2X_GRC_TIMEOUT) {
f2e0899f
DK
4339 val = CHIP_IS_E1(bp) ? 0 :
4340 REG_RD(bp, MISC_REG_GRC_TIMEOUT_ATTN);
34f80b04
EG
4341 BNX2X_ERR("GRC time-out 0x%08x\n", val);
4342 }
4343 if (attn & BNX2X_GRC_RSV) {
f2e0899f
DK
4344 val = CHIP_IS_E1(bp) ? 0 :
4345 REG_RD(bp, MISC_REG_GRC_RSV_ATTN);
34f80b04
EG
4346 BNX2X_ERR("GRC reserved 0x%08x\n", val);
4347 }
877e9aa4 4348 REG_WR(bp, MISC_REG_AEU_CLR_LATCH_SIGNAL, 0x7ff);
877e9aa4
ET
4349 }
4350}
4351
c9ee9206
VZ
4352/*
4353 * Bits map:
4354 * 0-7 - Engine0 load counter.
4355 * 8-15 - Engine1 load counter.
4356 * 16 - Engine0 RESET_IN_PROGRESS bit.
4357 * 17 - Engine1 RESET_IN_PROGRESS bit.
4358 * 18 - Engine0 ONE_IS_LOADED. Set when there is at least one active function
4359 * on the engine
4360 * 19 - Engine1 ONE_IS_LOADED.
4361 * 20 - Chip reset flow bit. When set none-leader must wait for both engines
4362 * leader to complete (check for both RESET_IN_PROGRESS bits and not for
4363 * just the one belonging to its engine).
4364 *
4365 */
4366#define BNX2X_RECOVERY_GLOB_REG MISC_REG_GENERIC_POR_1
4367
4368#define BNX2X_PATH0_LOAD_CNT_MASK 0x000000ff
4369#define BNX2X_PATH0_LOAD_CNT_SHIFT 0
4370#define BNX2X_PATH1_LOAD_CNT_MASK 0x0000ff00
4371#define BNX2X_PATH1_LOAD_CNT_SHIFT 8
4372#define BNX2X_PATH0_RST_IN_PROG_BIT 0x00010000
4373#define BNX2X_PATH1_RST_IN_PROG_BIT 0x00020000
4374#define BNX2X_GLOBAL_RESET_BIT 0x00040000
4375
4376/*
4377 * Set the GLOBAL_RESET bit.
4378 *
4379 * Should be run under rtnl lock
4380 */
4381void bnx2x_set_reset_global(struct bnx2x *bp)
4382{
f16da43b
AE
4383 u32 val;
4384 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4385 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 4386 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val | BNX2X_GLOBAL_RESET_BIT);
f16da43b 4387 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206
VZ
4388}
4389
4390/*
4391 * Clear the GLOBAL_RESET bit.
4392 *
4393 * Should be run under rtnl lock
4394 */
1191cb83 4395static void bnx2x_clear_reset_global(struct bnx2x *bp)
c9ee9206 4396{
f16da43b
AE
4397 u32 val;
4398 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4399 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206 4400 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val & (~BNX2X_GLOBAL_RESET_BIT));
f16da43b 4401 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
c9ee9206 4402}
f85582f8 4403
72fd0718 4404/*
c9ee9206
VZ
4405 * Checks the GLOBAL_RESET bit.
4406 *
72fd0718
VZ
4407 * should be run under rtnl lock
4408 */
1191cb83 4409static bool bnx2x_reset_is_global(struct bnx2x *bp)
c9ee9206 4410{
3cdeec22 4411 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4412
4413 DP(NETIF_MSG_HW, "GEN_REG_VAL=0x%08x\n", val);
4414 return (val & BNX2X_GLOBAL_RESET_BIT) ? true : false;
4415}
4416
4417/*
4418 * Clear RESET_IN_PROGRESS bit for the current engine.
4419 *
4420 * Should be run under rtnl lock
4421 */
1191cb83 4422static void bnx2x_set_reset_done(struct bnx2x *bp)
72fd0718 4423{
f16da43b 4424 u32 val;
c9ee9206
VZ
4425 u32 bit = BP_PATH(bp) ?
4426 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
4427 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4428 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4429
4430 /* Clear the bit */
4431 val &= ~bit;
4432 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4433
4434 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4435}
4436
4437/*
c9ee9206
VZ
4438 * Set RESET_IN_PROGRESS for the current engine.
4439 *
72fd0718
VZ
4440 * should be run under rtnl lock
4441 */
c9ee9206 4442void bnx2x_set_reset_in_progress(struct bnx2x *bp)
72fd0718 4443{
f16da43b 4444 u32 val;
c9ee9206
VZ
4445 u32 bit = BP_PATH(bp) ?
4446 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
f16da43b
AE
4447 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4448 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4449
4450 /* Set the bit */
4451 val |= bit;
4452 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 4453 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4454}
4455
4456/*
c9ee9206 4457 * Checks the RESET_IN_PROGRESS bit for the given engine.
72fd0718
VZ
4458 * should be run under rtnl lock
4459 */
c9ee9206 4460bool bnx2x_reset_is_done(struct bnx2x *bp, int engine)
72fd0718 4461{
3cdeec22 4462 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
c9ee9206
VZ
4463 u32 bit = engine ?
4464 BNX2X_PATH1_RST_IN_PROG_BIT : BNX2X_PATH0_RST_IN_PROG_BIT;
4465
4466 /* return false if bit is set */
4467 return (val & bit) ? false : true;
72fd0718
VZ
4468}
4469
4470/*
889b9af3 4471 * set pf load for the current pf.
c9ee9206 4472 *
72fd0718
VZ
4473 * should be run under rtnl lock
4474 */
889b9af3 4475void bnx2x_set_pf_load(struct bnx2x *bp)
72fd0718 4476{
f16da43b 4477 u32 val1, val;
c9ee9206
VZ
4478 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4479 BNX2X_PATH0_LOAD_CNT_MASK;
4480 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4481 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4482
f16da43b
AE
4483 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4484 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4485
51c1a580 4486 DP(NETIF_MSG_IFUP, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4487
c9ee9206
VZ
4488 /* get the current counter value */
4489 val1 = (val & mask) >> shift;
4490
889b9af3
AE
4491 /* set bit of that PF */
4492 val1 |= (1 << bp->pf_num);
c9ee9206
VZ
4493
4494 /* clear the old value */
4495 val &= ~mask;
4496
4497 /* set the new one */
4498 val |= ((val1 << shift) & mask);
4499
4500 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b 4501 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
72fd0718
VZ
4502}
4503
c9ee9206 4504/**
889b9af3 4505 * bnx2x_clear_pf_load - clear pf load mark
c9ee9206
VZ
4506 *
4507 * @bp: driver handle
4508 *
4509 * Should be run under rtnl lock.
4510 * Decrements the load counter for the current engine. Returns
889b9af3 4511 * whether other functions are still loaded
72fd0718 4512 */
889b9af3 4513bool bnx2x_clear_pf_load(struct bnx2x *bp)
72fd0718 4514{
f16da43b 4515 u32 val1, val;
c9ee9206
VZ
4516 u32 mask = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_MASK :
4517 BNX2X_PATH0_LOAD_CNT_MASK;
4518 u32 shift = BP_PATH(bp) ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4519 BNX2X_PATH0_LOAD_CNT_SHIFT;
72fd0718 4520
f16da43b
AE
4521 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4522 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
51c1a580 4523 DP(NETIF_MSG_IFDOWN, "Old GEN_REG_VAL=0x%08x\n", val);
72fd0718 4524
c9ee9206
VZ
4525 /* get the current counter value */
4526 val1 = (val & mask) >> shift;
4527
889b9af3
AE
4528 /* clear bit of that PF */
4529 val1 &= ~(1 << bp->pf_num);
c9ee9206
VZ
4530
4531 /* clear the old value */
4532 val &= ~mask;
4533
4534 /* set the new one */
4535 val |= ((val1 << shift) & mask);
4536
4537 REG_WR(bp, BNX2X_RECOVERY_GLOB_REG, val);
f16da43b
AE
4538 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RECOVERY_REG);
4539 return val1 != 0;
72fd0718
VZ
4540}
4541
4542/*
889b9af3 4543 * Read the load status for the current engine.
c9ee9206 4544 *
72fd0718
VZ
4545 * should be run under rtnl lock
4546 */
1191cb83 4547static bool bnx2x_get_load_status(struct bnx2x *bp, int engine)
72fd0718 4548{
c9ee9206
VZ
4549 u32 mask = (engine ? BNX2X_PATH1_LOAD_CNT_MASK :
4550 BNX2X_PATH0_LOAD_CNT_MASK);
4551 u32 shift = (engine ? BNX2X_PATH1_LOAD_CNT_SHIFT :
4552 BNX2X_PATH0_LOAD_CNT_SHIFT);
4553 u32 val = REG_RD(bp, BNX2X_RECOVERY_GLOB_REG);
4554
51c1a580 4555 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "GLOB_REG=0x%08x\n", val);
c9ee9206
VZ
4556
4557 val = (val & mask) >> shift;
4558
51c1a580
MS
4559 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "load mask for engine %d = 0x%x\n",
4560 engine, val);
c9ee9206 4561
889b9af3 4562 return val != 0;
72fd0718
VZ
4563}
4564
6bf07b8e
YM
4565static void _print_parity(struct bnx2x *bp, u32 reg)
4566{
4567 pr_cont(" [0x%08x] ", REG_RD(bp, reg));
4568}
4569
1191cb83 4570static void _print_next_block(int idx, const char *blk)
72fd0718 4571{
f1deab50 4572 pr_cont("%s%s", idx ? ", " : "", blk);
72fd0718
VZ
4573}
4574
4293b9f5
DK
4575static bool bnx2x_check_blocks_with_parity0(struct bnx2x *bp, u32 sig,
4576 int *par_num, bool print)
72fd0718 4577{
4293b9f5
DK
4578 u32 cur_bit;
4579 bool res;
4580 int i;
4581
4582 res = false;
4583
72fd0718 4584 for (i = 0; sig; i++) {
4293b9f5 4585 cur_bit = (0x1UL << i);
72fd0718 4586 if (sig & cur_bit) {
4293b9f5
DK
4587 res |= true; /* Each bit is real error! */
4588
4589 if (print) {
4590 switch (cur_bit) {
4591 case AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR:
4592 _print_next_block((*par_num)++, "BRB");
6bf07b8e
YM
4593 _print_parity(bp,
4594 BRB1_REG_BRB1_PRTY_STS);
4293b9f5
DK
4595 break;
4596 case AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR:
4597 _print_next_block((*par_num)++,
4598 "PARSER");
6bf07b8e 4599 _print_parity(bp, PRS_REG_PRS_PRTY_STS);
4293b9f5
DK
4600 break;
4601 case AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR:
4602 _print_next_block((*par_num)++, "TSDM");
6bf07b8e
YM
4603 _print_parity(bp,
4604 TSDM_REG_TSDM_PRTY_STS);
4293b9f5
DK
4605 break;
4606 case AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR:
4607 _print_next_block((*par_num)++,
c9ee9206 4608 "SEARCHER");
6bf07b8e 4609 _print_parity(bp, SRC_REG_SRC_PRTY_STS);
4293b9f5
DK
4610 break;
4611 case AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR:
4612 _print_next_block((*par_num)++, "TCM");
4613 _print_parity(bp, TCM_REG_TCM_PRTY_STS);
4614 break;
4615 case AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR:
4616 _print_next_block((*par_num)++,
4617 "TSEMI");
6bf07b8e
YM
4618 _print_parity(bp,
4619 TSEM_REG_TSEM_PRTY_STS_0);
4620 _print_parity(bp,
4621 TSEM_REG_TSEM_PRTY_STS_1);
4293b9f5
DK
4622 break;
4623 case AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR:
4624 _print_next_block((*par_num)++, "XPB");
6bf07b8e
YM
4625 _print_parity(bp, GRCBASE_XPB +
4626 PB_REG_PB_PRTY_STS);
4293b9f5 4627 break;
6bf07b8e 4628 }
72fd0718
VZ
4629 }
4630
4631 /* Clear the bit */
4632 sig &= ~cur_bit;
4633 }
4634 }
4635
4293b9f5 4636 return res;
72fd0718
VZ
4637}
4638
4293b9f5
DK
4639static bool bnx2x_check_blocks_with_parity1(struct bnx2x *bp, u32 sig,
4640 int *par_num, bool *global,
6bf07b8e 4641 bool print)
72fd0718 4642{
4293b9f5
DK
4643 u32 cur_bit;
4644 bool res;
4645 int i;
4646
4647 res = false;
4648
72fd0718 4649 for (i = 0; sig; i++) {
4293b9f5 4650 cur_bit = (0x1UL << i);
72fd0718 4651 if (sig & cur_bit) {
4293b9f5 4652 res |= true; /* Each bit is real error! */
72fd0718 4653 switch (cur_bit) {
c9ee9206 4654 case AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR:
6bf07b8e 4655 if (print) {
4293b9f5 4656 _print_next_block((*par_num)++, "PBF");
6bf07b8e
YM
4657 _print_parity(bp, PBF_REG_PBF_PRTY_STS);
4658 }
72fd0718
VZ
4659 break;
4660 case AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR:
6bf07b8e 4661 if (print) {
4293b9f5 4662 _print_next_block((*par_num)++, "QM");
6bf07b8e
YM
4663 _print_parity(bp, QM_REG_QM_PRTY_STS);
4664 }
c9ee9206
VZ
4665 break;
4666 case AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR:
6bf07b8e 4667 if (print) {
4293b9f5 4668 _print_next_block((*par_num)++, "TM");
6bf07b8e
YM
4669 _print_parity(bp, TM_REG_TM_PRTY_STS);
4670 }
72fd0718
VZ
4671 break;
4672 case AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR:
6bf07b8e 4673 if (print) {
4293b9f5 4674 _print_next_block((*par_num)++, "XSDM");
6bf07b8e
YM
4675 _print_parity(bp,
4676 XSDM_REG_XSDM_PRTY_STS);
4677 }
c9ee9206
VZ
4678 break;
4679 case AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR:
6bf07b8e 4680 if (print) {
4293b9f5 4681 _print_next_block((*par_num)++, "XCM");
6bf07b8e
YM
4682 _print_parity(bp, XCM_REG_XCM_PRTY_STS);
4683 }
72fd0718
VZ
4684 break;
4685 case AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR:
6bf07b8e 4686 if (print) {
4293b9f5
DK
4687 _print_next_block((*par_num)++,
4688 "XSEMI");
6bf07b8e
YM
4689 _print_parity(bp,
4690 XSEM_REG_XSEM_PRTY_STS_0);
4691 _print_parity(bp,
4692 XSEM_REG_XSEM_PRTY_STS_1);
4693 }
72fd0718
VZ
4694 break;
4695 case AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR:
6bf07b8e 4696 if (print) {
4293b9f5 4697 _print_next_block((*par_num)++,
c9ee9206 4698 "DOORBELLQ");
6bf07b8e
YM
4699 _print_parity(bp,
4700 DORQ_REG_DORQ_PRTY_STS);
4701 }
c9ee9206
VZ
4702 break;
4703 case AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR:
6bf07b8e 4704 if (print) {
4293b9f5 4705 _print_next_block((*par_num)++, "NIG");
6bf07b8e
YM
4706 if (CHIP_IS_E1x(bp)) {
4707 _print_parity(bp,
4708 NIG_REG_NIG_PRTY_STS);
4709 } else {
4710 _print_parity(bp,
4711 NIG_REG_NIG_PRTY_STS_0);
4712 _print_parity(bp,
4713 NIG_REG_NIG_PRTY_STS_1);
4714 }
4715 }
72fd0718
VZ
4716 break;
4717 case AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR:
c9ee9206 4718 if (print)
4293b9f5 4719 _print_next_block((*par_num)++,
c9ee9206
VZ
4720 "VAUX PCI CORE");
4721 *global = true;
72fd0718
VZ
4722 break;
4723 case AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR:
6bf07b8e 4724 if (print) {
4293b9f5
DK
4725 _print_next_block((*par_num)++,
4726 "DEBUG");
6bf07b8e
YM
4727 _print_parity(bp, DBG_REG_DBG_PRTY_STS);
4728 }
72fd0718
VZ
4729 break;
4730 case AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR:
6bf07b8e 4731 if (print) {
4293b9f5 4732 _print_next_block((*par_num)++, "USDM");
6bf07b8e
YM
4733 _print_parity(bp,
4734 USDM_REG_USDM_PRTY_STS);
4735 }
72fd0718 4736 break;
8736c826 4737 case AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR:
6bf07b8e 4738 if (print) {
4293b9f5 4739 _print_next_block((*par_num)++, "UCM");
6bf07b8e
YM
4740 _print_parity(bp, UCM_REG_UCM_PRTY_STS);
4741 }
8736c826 4742 break;
72fd0718 4743 case AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR:
6bf07b8e 4744 if (print) {
4293b9f5
DK
4745 _print_next_block((*par_num)++,
4746 "USEMI");
6bf07b8e
YM
4747 _print_parity(bp,
4748 USEM_REG_USEM_PRTY_STS_0);
4749 _print_parity(bp,
4750 USEM_REG_USEM_PRTY_STS_1);
4751 }
72fd0718
VZ
4752 break;
4753 case AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR:
6bf07b8e 4754 if (print) {
4293b9f5 4755 _print_next_block((*par_num)++, "UPB");
6bf07b8e
YM
4756 _print_parity(bp, GRCBASE_UPB +
4757 PB_REG_PB_PRTY_STS);
4758 }
72fd0718
VZ
4759 break;
4760 case AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR:
6bf07b8e 4761 if (print) {
4293b9f5 4762 _print_next_block((*par_num)++, "CSDM");
6bf07b8e
YM
4763 _print_parity(bp,
4764 CSDM_REG_CSDM_PRTY_STS);
4765 }
72fd0718 4766 break;
8736c826 4767 case AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR:
6bf07b8e 4768 if (print) {
4293b9f5 4769 _print_next_block((*par_num)++, "CCM");
6bf07b8e
YM
4770 _print_parity(bp, CCM_REG_CCM_PRTY_STS);
4771 }
8736c826 4772 break;
72fd0718
VZ
4773 }
4774
4775 /* Clear the bit */
4776 sig &= ~cur_bit;
4777 }
4778 }
4779
4293b9f5 4780 return res;
72fd0718
VZ
4781}
4782
4293b9f5
DK
4783static bool bnx2x_check_blocks_with_parity2(struct bnx2x *bp, u32 sig,
4784 int *par_num, bool print)
72fd0718 4785{
4293b9f5
DK
4786 u32 cur_bit;
4787 bool res;
4788 int i;
4789
4790 res = false;
4791
72fd0718 4792 for (i = 0; sig; i++) {
4293b9f5 4793 cur_bit = (0x1UL << i);
72fd0718 4794 if (sig & cur_bit) {
0c23ad37 4795 res = true; /* Each bit is real error! */
4293b9f5
DK
4796 if (print) {
4797 switch (cur_bit) {
4798 case AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR:
4799 _print_next_block((*par_num)++,
4800 "CSEMI");
6bf07b8e
YM
4801 _print_parity(bp,
4802 CSEM_REG_CSEM_PRTY_STS_0);
4803 _print_parity(bp,
4804 CSEM_REG_CSEM_PRTY_STS_1);
4293b9f5
DK
4805 break;
4806 case AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR:
4807 _print_next_block((*par_num)++, "PXP");
6bf07b8e
YM
4808 _print_parity(bp, PXP_REG_PXP_PRTY_STS);
4809 _print_parity(bp,
4810 PXP2_REG_PXP2_PRTY_STS_0);
4811 _print_parity(bp,
4812 PXP2_REG_PXP2_PRTY_STS_1);
4293b9f5
DK
4813 break;
4814 case AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR:
4815 _print_next_block((*par_num)++,
4816 "PXPPCICLOCKCLIENT");
4817 break;
4818 case AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR:
4819 _print_next_block((*par_num)++, "CFC");
6bf07b8e
YM
4820 _print_parity(bp,
4821 CFC_REG_CFC_PRTY_STS);
4293b9f5
DK
4822 break;
4823 case AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR:
4824 _print_next_block((*par_num)++, "CDU");
6bf07b8e 4825 _print_parity(bp, CDU_REG_CDU_PRTY_STS);
4293b9f5
DK
4826 break;
4827 case AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR:
4828 _print_next_block((*par_num)++, "DMAE");
6bf07b8e
YM
4829 _print_parity(bp,
4830 DMAE_REG_DMAE_PRTY_STS);
4293b9f5
DK
4831 break;
4832 case AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR:
4833 _print_next_block((*par_num)++, "IGU");
6bf07b8e
YM
4834 if (CHIP_IS_E1x(bp))
4835 _print_parity(bp,
4836 HC_REG_HC_PRTY_STS);
4837 else
4838 _print_parity(bp,
4839 IGU_REG_IGU_PRTY_STS);
4293b9f5
DK
4840 break;
4841 case AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR:
4842 _print_next_block((*par_num)++, "MISC");
6bf07b8e
YM
4843 _print_parity(bp,
4844 MISC_REG_MISC_PRTY_STS);
4293b9f5 4845 break;
6bf07b8e 4846 }
72fd0718
VZ
4847 }
4848
4849 /* Clear the bit */
4850 sig &= ~cur_bit;
4851 }
4852 }
4853
4293b9f5 4854 return res;
72fd0718
VZ
4855}
4856
4293b9f5
DK
4857static bool bnx2x_check_blocks_with_parity3(struct bnx2x *bp, u32 sig,
4858 int *par_num, bool *global,
4859 bool print)
72fd0718 4860{
4293b9f5
DK
4861 bool res = false;
4862 u32 cur_bit;
4863 int i;
4864
72fd0718 4865 for (i = 0; sig; i++) {
4293b9f5 4866 cur_bit = (0x1UL << i);
72fd0718
VZ
4867 if (sig & cur_bit) {
4868 switch (cur_bit) {
4869 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY:
c9ee9206 4870 if (print)
4293b9f5
DK
4871 _print_next_block((*par_num)++,
4872 "MCP ROM");
c9ee9206 4873 *global = true;
0c23ad37 4874 res = true;
72fd0718
VZ
4875 break;
4876 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY:
c9ee9206 4877 if (print)
4293b9f5 4878 _print_next_block((*par_num)++,
c9ee9206
VZ
4879 "MCP UMP RX");
4880 *global = true;
0c23ad37 4881 res = true;
72fd0718
VZ
4882 break;
4883 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY:
c9ee9206 4884 if (print)
4293b9f5 4885 _print_next_block((*par_num)++,
c9ee9206
VZ
4886 "MCP UMP TX");
4887 *global = true;
0c23ad37 4888 res = true;
72fd0718
VZ
4889 break;
4890 case AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY:
ad6afbe9 4891 (*par_num)++;
4293b9f5
DK
4892 /* clear latched SCPAD PATIRY from MCP */
4893 REG_WR(bp, MISC_REG_AEU_CLR_LATCH_SIGNAL,
4894 1UL << 10);
72fd0718
VZ
4895 break;
4896 }
4897
4898 /* Clear the bit */
4899 sig &= ~cur_bit;
4900 }
4901 }
4902
4293b9f5 4903 return res;
72fd0718
VZ
4904}
4905
4293b9f5
DK
4906static bool bnx2x_check_blocks_with_parity4(struct bnx2x *bp, u32 sig,
4907 int *par_num, bool print)
8736c826 4908{
4293b9f5
DK
4909 u32 cur_bit;
4910 bool res;
4911 int i;
4912
4913 res = false;
4914
8736c826 4915 for (i = 0; sig; i++) {
4293b9f5 4916 cur_bit = (0x1UL << i);
8736c826 4917 if (sig & cur_bit) {
0c23ad37 4918 res = true; /* Each bit is real error! */
4293b9f5
DK
4919 if (print) {
4920 switch (cur_bit) {
4921 case AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR:
4922 _print_next_block((*par_num)++,
4923 "PGLUE_B");
6bf07b8e 4924 _print_parity(bp,
4293b9f5
DK
4925 PGLUE_B_REG_PGLUE_B_PRTY_STS);
4926 break;
4927 case AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR:
4928 _print_next_block((*par_num)++, "ATC");
6bf07b8e
YM
4929 _print_parity(bp,
4930 ATC_REG_ATC_PRTY_STS);
4293b9f5 4931 break;
6bf07b8e 4932 }
8736c826 4933 }
8736c826
VZ
4934 /* Clear the bit */
4935 sig &= ~cur_bit;
4936 }
4937 }
4938
4293b9f5 4939 return res;
8736c826
VZ
4940}
4941
1191cb83
ED
4942static bool bnx2x_parity_attn(struct bnx2x *bp, bool *global, bool print,
4943 u32 *sig)
72fd0718 4944{
4293b9f5
DK
4945 bool res = false;
4946
8736c826
VZ
4947 if ((sig[0] & HW_PRTY_ASSERT_SET_0) ||
4948 (sig[1] & HW_PRTY_ASSERT_SET_1) ||
4949 (sig[2] & HW_PRTY_ASSERT_SET_2) ||
4950 (sig[3] & HW_PRTY_ASSERT_SET_3) ||
4951 (sig[4] & HW_PRTY_ASSERT_SET_4)) {
72fd0718 4952 int par_num = 0;
ad6afbe9 4953
51c1a580
MS
4954 DP(NETIF_MSG_HW, "Was parity error: HW block parity attention:\n"
4955 "[0]:0x%08x [1]:0x%08x [2]:0x%08x [3]:0x%08x [4]:0x%08x\n",
8736c826
VZ
4956 sig[0] & HW_PRTY_ASSERT_SET_0,
4957 sig[1] & HW_PRTY_ASSERT_SET_1,
4958 sig[2] & HW_PRTY_ASSERT_SET_2,
4959 sig[3] & HW_PRTY_ASSERT_SET_3,
4960 sig[4] & HW_PRTY_ASSERT_SET_4);
ad6afbe9
MC
4961 if (print) {
4962 if (((sig[0] & HW_PRTY_ASSERT_SET_0) ||
4963 (sig[1] & HW_PRTY_ASSERT_SET_1) ||
4964 (sig[2] & HW_PRTY_ASSERT_SET_2) ||
4965 (sig[4] & HW_PRTY_ASSERT_SET_4)) ||
4966 (sig[3] & HW_PRTY_ASSERT_SET_3_WITHOUT_SCPAD)) {
4967 netdev_err(bp->dev,
4968 "Parity errors detected in blocks: ");
4969 } else {
4970 print = false;
4971 }
4972 }
4293b9f5
DK
4973 res |= bnx2x_check_blocks_with_parity0(bp,
4974 sig[0] & HW_PRTY_ASSERT_SET_0, &par_num, print);
4975 res |= bnx2x_check_blocks_with_parity1(bp,
4976 sig[1] & HW_PRTY_ASSERT_SET_1, &par_num, global, print);
4977 res |= bnx2x_check_blocks_with_parity2(bp,
4978 sig[2] & HW_PRTY_ASSERT_SET_2, &par_num, print);
4979 res |= bnx2x_check_blocks_with_parity3(bp,
4980 sig[3] & HW_PRTY_ASSERT_SET_3, &par_num, global, print);
4981 res |= bnx2x_check_blocks_with_parity4(bp,
4982 sig[4] & HW_PRTY_ASSERT_SET_4, &par_num, print);
8736c826 4983
c9ee9206
VZ
4984 if (print)
4985 pr_cont("\n");
4293b9f5 4986 }
8736c826 4987
4293b9f5 4988 return res;
72fd0718
VZ
4989}
4990
c9ee9206
VZ
4991/**
4992 * bnx2x_chk_parity_attn - checks for parity attentions.
4993 *
4994 * @bp: driver handle
4995 * @global: true if there was a global attention
4996 * @print: show parity attention in syslog
4997 */
4998bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print)
877e9aa4 4999{
8736c826 5000 struct attn_route attn = { {0} };
72fd0718
VZ
5001 int port = BP_PORT(bp);
5002
5003 attn.sig[0] = REG_RD(bp,
5004 MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 +
5005 port*4);
5006 attn.sig[1] = REG_RD(bp,
5007 MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 +
5008 port*4);
5009 attn.sig[2] = REG_RD(bp,
5010 MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 +
5011 port*4);
5012 attn.sig[3] = REG_RD(bp,
5013 MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 +
5014 port*4);
0a5ccb75
YM
5015 /* Since MCP attentions can't be disabled inside the block, we need to
5016 * read AEU registers to see whether they're currently disabled
5017 */
5018 attn.sig[3] &= ((REG_RD(bp,
5019 !port ? MISC_REG_AEU_ENABLE4_FUNC_0_OUT_0
5020 : MISC_REG_AEU_ENABLE4_FUNC_1_OUT_0) &
5021 MISC_AEU_ENABLE_MCP_PRTY_BITS) |
5022 ~MISC_AEU_ENABLE_MCP_PRTY_BITS);
72fd0718 5023
8736c826
VZ
5024 if (!CHIP_IS_E1x(bp))
5025 attn.sig[4] = REG_RD(bp,
5026 MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 +
5027 port*4);
5028
5029 return bnx2x_parity_attn(bp, global, print, attn.sig);
72fd0718
VZ
5030}
5031
1191cb83 5032static void bnx2x_attn_int_deasserted4(struct bnx2x *bp, u32 attn)
f2e0899f
DK
5033{
5034 u32 val;
5035 if (attn & AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT) {
5036
5037 val = REG_RD(bp, PGLUE_B_REG_PGLUE_B_INT_STS_CLR);
5038 BNX2X_ERR("PGLUE hw attention 0x%x\n", val);
5039 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR)
51c1a580 5040 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR\n");
f2e0899f 5041 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR)
51c1a580 5042 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR\n");
f2e0899f 5043 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN)
51c1a580 5044 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN\n");
f2e0899f 5045 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN)
51c1a580 5046 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN\n");
f2e0899f
DK
5047 if (val &
5048 PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN)
51c1a580 5049 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN\n");
f2e0899f
DK
5050 if (val &
5051 PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN)
51c1a580 5052 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN\n");
f2e0899f 5053 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN)
51c1a580 5054 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN\n");
f2e0899f 5055 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN)
51c1a580 5056 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN\n");
f2e0899f 5057 if (val & PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW)
51c1a580 5058 BNX2X_ERR("PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW\n");
f2e0899f
DK
5059 }
5060 if (attn & AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT) {
5061 val = REG_RD(bp, ATC_REG_ATC_INT_STS_CLR);
5062 BNX2X_ERR("ATC hw attention 0x%x\n", val);
5063 if (val & ATC_ATC_INT_STS_REG_ADDRESS_ERROR)
5064 BNX2X_ERR("ATC_ATC_INT_STS_REG_ADDRESS_ERROR\n");
5065 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND)
51c1a580 5066 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND\n");
f2e0899f 5067 if (val & ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS)
51c1a580 5068 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS\n");
f2e0899f 5069 if (val & ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT)
51c1a580 5070 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT\n");
f2e0899f
DK
5071 if (val & ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR)
5072 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR\n");
5073 if (val & ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU)
51c1a580 5074 BNX2X_ERR("ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU\n");
f2e0899f
DK
5075 }
5076
5077 if (attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
5078 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)) {
5079 BNX2X_ERR("FATAL parity attention set4 0x%x\n",
5080 (u32)(attn & (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR |
5081 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)));
5082 }
f2e0899f
DK
5083}
5084
72fd0718
VZ
5085static void bnx2x_attn_int_deasserted(struct bnx2x *bp, u32 deasserted)
5086{
5087 struct attn_route attn, *group_mask;
34f80b04 5088 int port = BP_PORT(bp);
877e9aa4 5089 int index;
a2fbb9ea
ET
5090 u32 reg_addr;
5091 u32 val;
3fcaf2e5 5092 u32 aeu_mask;
c9ee9206 5093 bool global = false;
a2fbb9ea
ET
5094
5095 /* need to take HW lock because MCP or other port might also
5096 try to handle this event */
4a37fb66 5097 bnx2x_acquire_alr(bp);
a2fbb9ea 5098
c9ee9206
VZ
5099 if (bnx2x_chk_parity_attn(bp, &global, true)) {
5100#ifndef BNX2X_STOP_ON_ERROR
72fd0718 5101 bp->recovery_state = BNX2X_RECOVERY_INIT;
7be08a72 5102 schedule_delayed_work(&bp->sp_rtnl_task, 0);
72fd0718
VZ
5103 /* Disable HW interrupts */
5104 bnx2x_int_disable(bp);
72fd0718
VZ
5105 /* In case of parity errors don't handle attentions so that
5106 * other function would "see" parity errors.
5107 */
c9ee9206
VZ
5108#else
5109 bnx2x_panic();
5110#endif
5111 bnx2x_release_alr(bp);
72fd0718
VZ
5112 return;
5113 }
5114
a2fbb9ea
ET
5115 attn.sig[0] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + port*4);
5116 attn.sig[1] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_2_FUNC_0 + port*4);
5117 attn.sig[2] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_3_FUNC_0 + port*4);
5118 attn.sig[3] = REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_4_FUNC_0 + port*4);
619c5cb6 5119 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
5120 attn.sig[4] =
5121 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_5_FUNC_0 + port*4);
5122 else
5123 attn.sig[4] = 0;
5124
5125 DP(NETIF_MSG_HW, "attn: %08x %08x %08x %08x %08x\n",
5126 attn.sig[0], attn.sig[1], attn.sig[2], attn.sig[3], attn.sig[4]);
a2fbb9ea
ET
5127
5128 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
5129 if (deasserted & (1 << index)) {
72fd0718 5130 group_mask = &bp->attn_group[index];
a2fbb9ea 5131
51c1a580 5132 DP(NETIF_MSG_HW, "group[%d]: %08x %08x %08x %08x %08x\n",
f2e0899f
DK
5133 index,
5134 group_mask->sig[0], group_mask->sig[1],
5135 group_mask->sig[2], group_mask->sig[3],
5136 group_mask->sig[4]);
a2fbb9ea 5137
f2e0899f
DK
5138 bnx2x_attn_int_deasserted4(bp,
5139 attn.sig[4] & group_mask->sig[4]);
877e9aa4 5140 bnx2x_attn_int_deasserted3(bp,
72fd0718 5141 attn.sig[3] & group_mask->sig[3]);
877e9aa4 5142 bnx2x_attn_int_deasserted1(bp,
72fd0718 5143 attn.sig[1] & group_mask->sig[1]);
877e9aa4 5144 bnx2x_attn_int_deasserted2(bp,
72fd0718 5145 attn.sig[2] & group_mask->sig[2]);
877e9aa4 5146 bnx2x_attn_int_deasserted0(bp,
72fd0718 5147 attn.sig[0] & group_mask->sig[0]);
a2fbb9ea
ET
5148 }
5149 }
5150
4a37fb66 5151 bnx2x_release_alr(bp);
a2fbb9ea 5152
f2e0899f
DK
5153 if (bp->common.int_block == INT_BLOCK_HC)
5154 reg_addr = (HC_REG_COMMAND_REG + port*32 +
5155 COMMAND_REG_ATTN_BITS_CLR);
5156 else
5157 reg_addr = (BAR_IGU_INTMEM + IGU_CMD_ATTN_BIT_CLR_UPPER*8);
a2fbb9ea
ET
5158
5159 val = ~deasserted;
f2e0899f
DK
5160 DP(NETIF_MSG_HW, "about to mask 0x%08x at %s addr 0x%x\n", val,
5161 (bp->common.int_block == INT_BLOCK_HC) ? "HC" : "IGU", reg_addr);
5c862848 5162 REG_WR(bp, reg_addr, val);
a2fbb9ea 5163
a2fbb9ea 5164 if (~bp->attn_state & deasserted)
3fcaf2e5 5165 BNX2X_ERR("IGU ERROR\n");
a2fbb9ea
ET
5166
5167 reg_addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
5168 MISC_REG_AEU_MASK_ATTN_FUNC_0;
5169
3fcaf2e5
EG
5170 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
5171 aeu_mask = REG_RD(bp, reg_addr);
5172
5173 DP(NETIF_MSG_HW, "aeu_mask %x newly deasserted %x\n",
5174 aeu_mask, deasserted);
72fd0718 5175 aeu_mask |= (deasserted & 0x3ff);
3fcaf2e5 5176 DP(NETIF_MSG_HW, "new mask %x\n", aeu_mask);
a2fbb9ea 5177
3fcaf2e5
EG
5178 REG_WR(bp, reg_addr, aeu_mask);
5179 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_PORT0_ATT_MASK + port);
a2fbb9ea
ET
5180
5181 DP(NETIF_MSG_HW, "attn_state %x\n", bp->attn_state);
5182 bp->attn_state &= ~deasserted;
5183 DP(NETIF_MSG_HW, "new state %x\n", bp->attn_state);
5184}
5185
5186static void bnx2x_attn_int(struct bnx2x *bp)
5187{
5188 /* read local copy of bits */
68d59484
EG
5189 u32 attn_bits = le32_to_cpu(bp->def_status_blk->atten_status_block.
5190 attn_bits);
5191 u32 attn_ack = le32_to_cpu(bp->def_status_blk->atten_status_block.
5192 attn_bits_ack);
a2fbb9ea
ET
5193 u32 attn_state = bp->attn_state;
5194
5195 /* look for changed bits */
5196 u32 asserted = attn_bits & ~attn_ack & ~attn_state;
5197 u32 deasserted = ~attn_bits & attn_ack & attn_state;
5198
5199 DP(NETIF_MSG_HW,
5200 "attn_bits %x attn_ack %x asserted %x deasserted %x\n",
5201 attn_bits, attn_ack, asserted, deasserted);
5202
5203 if (~(attn_bits ^ attn_ack) & (attn_bits ^ attn_state))
34f80b04 5204 BNX2X_ERR("BAD attention state\n");
a2fbb9ea
ET
5205
5206 /* handle bits that were raised */
5207 if (asserted)
5208 bnx2x_attn_int_asserted(bp, asserted);
5209
5210 if (deasserted)
5211 bnx2x_attn_int_deasserted(bp, deasserted);
5212}
5213
619c5cb6
VZ
5214void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
5215 u16 index, u8 op, u8 update)
5216{
dc1ba591
AE
5217 u32 igu_addr = bp->igu_base_addr;
5218 igu_addr += (IGU_CMD_INT_ACK_BASE + igu_sb_id)*8;
619c5cb6
VZ
5219 bnx2x_igu_ack_sb_gen(bp, igu_sb_id, segment, index, op, update,
5220 igu_addr);
5221}
5222
1191cb83 5223static void bnx2x_update_eq_prod(struct bnx2x *bp, u16 prod)
523224a3
DK
5224{
5225 /* No memory barriers */
5226 storm_memset_eq_prod(bp, prod, BP_FUNC(bp));
5227 mmiowb(); /* keep prod updates ordered */
5228}
5229
523224a3
DK
5230static int bnx2x_cnic_handle_cfc_del(struct bnx2x *bp, u32 cid,
5231 union event_ring_elem *elem)
5232{
619c5cb6
VZ
5233 u8 err = elem->message.error;
5234
523224a3 5235 if (!bp->cnic_eth_dev.starting_cid ||
c3a8ce61
VZ
5236 (cid < bp->cnic_eth_dev.starting_cid &&
5237 cid != bp->cnic_eth_dev.iscsi_l2_cid))
523224a3
DK
5238 return 1;
5239
5240 DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid);
5241
619c5cb6
VZ
5242 if (unlikely(err)) {
5243
523224a3
DK
5244 BNX2X_ERR("got delete ramrod for CNIC CID %d with error!\n",
5245 cid);
823e1d90 5246 bnx2x_panic_dump(bp, false);
523224a3 5247 }
619c5cb6 5248 bnx2x_cnic_cfc_comp(bp, cid, err);
523224a3
DK
5249 return 0;
5250}
523224a3 5251
1191cb83 5252static void bnx2x_handle_mcast_eqe(struct bnx2x *bp)
619c5cb6
VZ
5253{
5254 struct bnx2x_mcast_ramrod_params rparam;
5255 int rc;
5256
5257 memset(&rparam, 0, sizeof(rparam));
5258
5259 rparam.mcast_obj = &bp->mcast_obj;
5260
5261 netif_addr_lock_bh(bp->dev);
5262
5263 /* Clear pending state for the last command */
5264 bp->mcast_obj.raw.clear_pending(&bp->mcast_obj.raw);
5265
5266 /* If there are pending mcast commands - send them */
5267 if (bp->mcast_obj.check_pending(&bp->mcast_obj)) {
5268 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
5269 if (rc < 0)
5270 BNX2X_ERR("Failed to send pending mcast commands: %d\n",
5271 rc);
5272 }
5273
5274 netif_addr_unlock_bh(bp->dev);
5275}
5276
1191cb83
ED
5277static void bnx2x_handle_classification_eqe(struct bnx2x *bp,
5278 union event_ring_elem *elem)
619c5cb6
VZ
5279{
5280 unsigned long ramrod_flags = 0;
5281 int rc = 0;
5282 u32 cid = elem->message.data.eth_event.echo & BNX2X_SWCID_MASK;
5283 struct bnx2x_vlan_mac_obj *vlan_mac_obj;
5284
5285 /* Always push next commands out, don't wait here */
5286 __set_bit(RAMROD_CONT, &ramrod_flags);
5287
86564c3f
YM
5288 switch (le32_to_cpu((__force __le32)elem->message.data.eth_event.echo)
5289 >> BNX2X_SWCID_SHIFT) {
619c5cb6 5290 case BNX2X_FILTER_MAC_PENDING:
51c1a580 5291 DP(BNX2X_MSG_SP, "Got SETUP_MAC completions\n");
55c11941 5292 if (CNIC_LOADED(bp) && (cid == BNX2X_ISCSI_ETH_CID(bp)))
619c5cb6
VZ
5293 vlan_mac_obj = &bp->iscsi_l2_mac_obj;
5294 else
15192a8c 5295 vlan_mac_obj = &bp->sp_objs[cid].mac_obj;
619c5cb6 5296
05cc5a39
YM
5297 break;
5298 case BNX2X_FILTER_VLAN_PENDING:
5299 DP(BNX2X_MSG_SP, "Got SETUP_VLAN completions\n");
5300 vlan_mac_obj = &bp->sp_objs[cid].vlan_obj;
619c5cb6 5301 break;
619c5cb6 5302 case BNX2X_FILTER_MCAST_PENDING:
51c1a580 5303 DP(BNX2X_MSG_SP, "Got SETUP_MCAST completions\n");
619c5cb6
VZ
5304 /* This is only relevant for 57710 where multicast MACs are
5305 * configured as unicast MACs using the same ramrod.
5306 */
5307 bnx2x_handle_mcast_eqe(bp);
5308 return;
5309 default:
5310 BNX2X_ERR("Unsupported classification command: %d\n",
5311 elem->message.data.eth_event.echo);
5312 return;
5313 }
5314
5315 rc = vlan_mac_obj->complete(bp, vlan_mac_obj, elem, &ramrod_flags);
5316
5317 if (rc < 0)
5318 BNX2X_ERR("Failed to schedule new commands: %d\n", rc);
5319 else if (rc > 0)
5320 DP(BNX2X_MSG_SP, "Scheduled next pending commands...\n");
619c5cb6
VZ
5321}
5322
619c5cb6 5323static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start);
619c5cb6 5324
1191cb83 5325static void bnx2x_handle_rx_mode_eqe(struct bnx2x *bp)
619c5cb6
VZ
5326{
5327 netif_addr_lock_bh(bp->dev);
5328
5329 clear_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
5330
5331 /* Send rx_mode command again if was requested */
5332 if (test_and_clear_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state))
5333 bnx2x_set_storm_rx_mode(bp);
619c5cb6
VZ
5334 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED,
5335 &bp->sp_state))
5336 bnx2x_set_iscsi_eth_rx_mode(bp, true);
5337 else if (test_and_clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED,
5338 &bp->sp_state))
5339 bnx2x_set_iscsi_eth_rx_mode(bp, false);
619c5cb6
VZ
5340
5341 netif_addr_unlock_bh(bp->dev);
5342}
5343
1191cb83 5344static void bnx2x_after_afex_vif_lists(struct bnx2x *bp,
a3348722
BW
5345 union event_ring_elem *elem)
5346{
5347 if (elem->message.data.vif_list_event.echo == VIF_LIST_RULE_GET) {
5348 DP(BNX2X_MSG_SP,
5349 "afex: ramrod completed VIF LIST_GET, addrs 0x%x\n",
5350 elem->message.data.vif_list_event.func_bit_map);
5351 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTGET_ACK,
5352 elem->message.data.vif_list_event.func_bit_map);
5353 } else if (elem->message.data.vif_list_event.echo ==
5354 VIF_LIST_RULE_SET) {
5355 DP(BNX2X_MSG_SP, "afex: ramrod completed VIF LIST_SET\n");
5356 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_LISTSET_ACK, 0);
5357 }
5358}
5359
5360/* called with rtnl_lock */
1191cb83 5361static void bnx2x_after_function_update(struct bnx2x *bp)
a3348722
BW
5362{
5363 int q, rc;
5364 struct bnx2x_fastpath *fp;
5365 struct bnx2x_queue_state_params queue_params = {NULL};
5366 struct bnx2x_queue_update_params *q_update_params =
5367 &queue_params.params.update;
5368
2de67439 5369 /* Send Q update command with afex vlan removal values for all Qs */
a3348722
BW
5370 queue_params.cmd = BNX2X_Q_CMD_UPDATE;
5371
5372 /* set silent vlan removal values according to vlan mode */
5373 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG,
5374 &q_update_params->update_flags);
5375 __set_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM,
5376 &q_update_params->update_flags);
5377 __set_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
5378
5379 /* in access mode mark mask and value are 0 to strip all vlans */
5380 if (bp->afex_vlan_mode == FUNC_MF_CFG_AFEX_VLAN_ACCESS_MODE) {
5381 q_update_params->silent_removal_value = 0;
5382 q_update_params->silent_removal_mask = 0;
5383 } else {
5384 q_update_params->silent_removal_value =
5385 (bp->afex_def_vlan_tag & VLAN_VID_MASK);
5386 q_update_params->silent_removal_mask = VLAN_VID_MASK;
5387 }
5388
5389 for_each_eth_queue(bp, q) {
5390 /* Set the appropriate Queue object */
5391 fp = &bp->fp[q];
15192a8c 5392 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
5393
5394 /* send the ramrod */
5395 rc = bnx2x_queue_state_change(bp, &queue_params);
5396 if (rc < 0)
5397 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
5398 q);
5399 }
5400
fea75645 5401 if (!NO_FCOE(bp) && CNIC_ENABLED(bp)) {
65565884 5402 fp = &bp->fp[FCOE_IDX(bp)];
15192a8c 5403 queue_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
a3348722
BW
5404
5405 /* clear pending completion bit */
5406 __clear_bit(RAMROD_COMP_WAIT, &queue_params.ramrod_flags);
5407
5408 /* mark latest Q bit */
4e857c58 5409 smp_mb__before_atomic();
a3348722 5410 set_bit(BNX2X_AFEX_FCOE_Q_UPDATE_PENDING, &bp->sp_state);
4e857c58 5411 smp_mb__after_atomic();
a3348722
BW
5412
5413 /* send Q update ramrod for FCoE Q */
5414 rc = bnx2x_queue_state_change(bp, &queue_params);
5415 if (rc < 0)
5416 BNX2X_ERR("Failed to config silent vlan rem for Q %d\n",
5417 q);
5418 } else {
5419 /* If no FCoE ring - ACK MCP now */
5420 bnx2x_link_report(bp);
5421 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
5422 }
a3348722
BW
5423}
5424
1191cb83 5425static struct bnx2x_queue_sp_obj *bnx2x_cid_to_q_obj(
619c5cb6
VZ
5426 struct bnx2x *bp, u32 cid)
5427{
94f05b0f 5428 DP(BNX2X_MSG_SP, "retrieving fp from cid %d\n", cid);
55c11941
MS
5429
5430 if (CNIC_LOADED(bp) && (cid == BNX2X_FCOE_ETH_CID(bp)))
15192a8c 5431 return &bnx2x_fcoe_sp_obj(bp, q_obj);
619c5cb6 5432 else
15192a8c 5433 return &bp->sp_objs[CID_TO_FP(cid, bp)].q_obj;
619c5cb6
VZ
5434}
5435
523224a3
DK
5436static void bnx2x_eq_int(struct bnx2x *bp)
5437{
5438 u16 hw_cons, sw_cons, sw_prod;
5439 union event_ring_elem *elem;
55c11941 5440 u8 echo;
523224a3
DK
5441 u32 cid;
5442 u8 opcode;
fd1fc79d 5443 int rc, spqe_cnt = 0;
619c5cb6
VZ
5444 struct bnx2x_queue_sp_obj *q_obj;
5445 struct bnx2x_func_sp_obj *f_obj = &bp->func_obj;
5446 struct bnx2x_raw_obj *rss_raw = &bp->rss_conf_obj.raw;
523224a3
DK
5447
5448 hw_cons = le16_to_cpu(*bp->eq_cons_sb);
5449
5450 /* The hw_cos range is 1-255, 257 - the sw_cons range is 0-254, 256.
16a5fd92 5451 * when we get the next-page we need to adjust so the loop
523224a3
DK
5452 * condition below will be met. The next element is the size of a
5453 * regular element and hence incrementing by 1
5454 */
5455 if ((hw_cons & EQ_DESC_MAX_PAGE) == EQ_DESC_MAX_PAGE)
5456 hw_cons++;
5457
25985edc 5458 /* This function may never run in parallel with itself for a
523224a3
DK
5459 * specific bp, thus there is no need in "paired" read memory
5460 * barrier here.
5461 */
5462 sw_cons = bp->eq_cons;
5463 sw_prod = bp->eq_prod;
5464
d6cae238 5465 DP(BNX2X_MSG_SP, "EQ: hw_cons %u sw_cons %u bp->eq_spq_left %x\n",
6e30dd4e 5466 hw_cons, sw_cons, atomic_read(&bp->eq_spq_left));
523224a3
DK
5467
5468 for (; sw_cons != hw_cons;
5469 sw_prod = NEXT_EQ_IDX(sw_prod), sw_cons = NEXT_EQ_IDX(sw_cons)) {
5470
523224a3
DK
5471 elem = &bp->eq_ring[EQ_DESC(sw_cons)];
5472
fd1fc79d
AE
5473 rc = bnx2x_iov_eq_sp_event(bp, elem);
5474 if (!rc) {
5475 DP(BNX2X_MSG_IOV, "bnx2x_iov_eq_sp_event returned %d\n",
5476 rc);
5477 goto next_spqe;
5478 }
523224a3 5479
86564c3f
YM
5480 /* elem CID originates from FW; actually LE */
5481 cid = SW_CID((__force __le32)
5482 elem->message.data.cfc_del_event.cid);
5483 opcode = elem->message.opcode;
523224a3
DK
5484
5485 /* handle eq element */
5486 switch (opcode) {
fd1fc79d 5487 case EVENT_RING_OPCODE_VF_PF_CHANNEL:
370d4a26
YM
5488 bnx2x_vf_mbx_schedule(bp,
5489 &elem->message.data.vf_pf_event);
fd1fc79d
AE
5490 continue;
5491
523224a3 5492 case EVENT_RING_OPCODE_STAT_QUERY:
76ca70fa
YM
5493 DP_AND((BNX2X_MSG_SP | BNX2X_MSG_STATS),
5494 "got statistics comp event %d\n",
5495 bp->stats_comp++);
523224a3 5496 /* nothing to do with stats comp */
d6cae238 5497 goto next_spqe;
523224a3
DK
5498
5499 case EVENT_RING_OPCODE_CFC_DEL:
5500 /* handle according to cid range */
5501 /*
5502 * we may want to verify here that the bp state is
5503 * HALTING
5504 */
d6cae238 5505 DP(BNX2X_MSG_SP,
523224a3 5506 "got delete ramrod for MULTI[%d]\n", cid);
55c11941
MS
5507
5508 if (CNIC_LOADED(bp) &&
5509 !bnx2x_cnic_handle_cfc_del(bp, cid, elem))
523224a3 5510 goto next_spqe;
55c11941 5511
619c5cb6
VZ
5512 q_obj = bnx2x_cid_to_q_obj(bp, cid);
5513
5514 if (q_obj->complete_cmd(bp, q_obj, BNX2X_Q_CMD_CFC_DEL))
5515 break;
5516
523224a3 5517 goto next_spqe;
e4901dde
VZ
5518
5519 case EVENT_RING_OPCODE_STOP_TRAFFIC:
51c1a580 5520 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got STOP TRAFFIC\n");
6ffa39f2 5521 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_PAUSED);
6debea87
DK
5522 if (f_obj->complete_cmd(bp, f_obj,
5523 BNX2X_F_CMD_TX_STOP))
5524 break;
e4901dde 5525 goto next_spqe;
619c5cb6 5526
e4901dde 5527 case EVENT_RING_OPCODE_START_TRAFFIC:
51c1a580 5528 DP(BNX2X_MSG_SP | BNX2X_MSG_DCB, "got START TRAFFIC\n");
6ffa39f2 5529 bnx2x_dcbx_set_params(bp, BNX2X_DCBX_STATE_TX_RELEASED);
6debea87
DK
5530 if (f_obj->complete_cmd(bp, f_obj,
5531 BNX2X_F_CMD_TX_START))
5532 break;
e4901dde 5533 goto next_spqe;
55c11941 5534
a3348722 5535 case EVENT_RING_OPCODE_FUNCTION_UPDATE:
55c11941
MS
5536 echo = elem->message.data.function_update_event.echo;
5537 if (echo == SWITCH_UPDATE) {
5538 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5539 "got FUNC_SWITCH_UPDATE ramrod\n");
5540 if (f_obj->complete_cmd(
5541 bp, f_obj, BNX2X_F_CMD_SWITCH_UPDATE))
5542 break;
a3348722 5543
55c11941 5544 } else {
230bb0f3
YM
5545 int cmd = BNX2X_SP_RTNL_AFEX_F_UPDATE;
5546
55c11941
MS
5547 DP(BNX2X_MSG_SP | BNX2X_MSG_MCP,
5548 "AFEX: ramrod completed FUNCTION_UPDATE\n");
5549 f_obj->complete_cmd(bp, f_obj,
5550 BNX2X_F_CMD_AFEX_UPDATE);
5551
5552 /* We will perform the Queues update from
5553 * sp_rtnl task as all Queue SP operations
5554 * should run under rtnl_lock.
5555 */
230bb0f3 5556 bnx2x_schedule_sp_rtnl(bp, cmd, 0);
55c11941 5557 }
a3348722 5558
a3348722
BW
5559 goto next_spqe;
5560
5561 case EVENT_RING_OPCODE_AFEX_VIF_LISTS:
5562 f_obj->complete_cmd(bp, f_obj,
5563 BNX2X_F_CMD_AFEX_VIFLISTS);
5564 bnx2x_after_afex_vif_lists(bp, elem);
5565 goto next_spqe;
619c5cb6 5566 case EVENT_RING_OPCODE_FUNCTION_START:
51c1a580
MS
5567 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5568 "got FUNC_START ramrod\n");
619c5cb6
VZ
5569 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_START))
5570 break;
5571
5572 goto next_spqe;
5573
5574 case EVENT_RING_OPCODE_FUNCTION_STOP:
51c1a580
MS
5575 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
5576 "got FUNC_STOP ramrod\n");
619c5cb6
VZ
5577 if (f_obj->complete_cmd(bp, f_obj, BNX2X_F_CMD_STOP))
5578 break;
5579
5580 goto next_spqe;
eeed018c
MK
5581
5582 case EVENT_RING_OPCODE_SET_TIMESYNC:
5583 DP(BNX2X_MSG_SP | BNX2X_MSG_PTP,
5584 "got set_timesync ramrod completion\n");
5585 if (f_obj->complete_cmd(bp, f_obj,
5586 BNX2X_F_CMD_SET_TIMESYNC))
5587 break;
5588 goto next_spqe;
523224a3
DK
5589 }
5590
5591 switch (opcode | bp->state) {
619c5cb6
VZ
5592 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
5593 BNX2X_STATE_OPEN):
5594 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
523224a3 5595 BNX2X_STATE_OPENING_WAIT4_PORT):
28311f8e
YM
5596 case (EVENT_RING_OPCODE_RSS_UPDATE_RULES |
5597 BNX2X_STATE_CLOSING_WAIT4_HALT):
619c5cb6
VZ
5598 cid = elem->message.data.eth_event.echo &
5599 BNX2X_SWCID_MASK;
d6cae238 5600 DP(BNX2X_MSG_SP, "got RSS_UPDATE ramrod. CID %d\n",
619c5cb6
VZ
5601 cid);
5602 rss_raw->clear_pending(rss_raw);
523224a3
DK
5603 break;
5604
619c5cb6
VZ
5605 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_OPEN):
5606 case (EVENT_RING_OPCODE_SET_MAC | BNX2X_STATE_DIAG):
5607 case (EVENT_RING_OPCODE_SET_MAC |
523224a3 5608 BNX2X_STATE_CLOSING_WAIT4_HALT):
619c5cb6
VZ
5609 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5610 BNX2X_STATE_OPEN):
5611 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5612 BNX2X_STATE_DIAG):
5613 case (EVENT_RING_OPCODE_CLASSIFICATION_RULES |
5614 BNX2X_STATE_CLOSING_WAIT4_HALT):
05cc5a39 5615 DP(BNX2X_MSG_SP, "got (un)set vlan/mac ramrod\n");
619c5cb6 5616 bnx2x_handle_classification_eqe(bp, elem);
523224a3
DK
5617 break;
5618
619c5cb6
VZ
5619 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5620 BNX2X_STATE_OPEN):
5621 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5622 BNX2X_STATE_DIAG):
5623 case (EVENT_RING_OPCODE_MULTICAST_RULES |
5624 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5625 DP(BNX2X_MSG_SP, "got mcast ramrod\n");
619c5cb6 5626 bnx2x_handle_mcast_eqe(bp);
523224a3
DK
5627 break;
5628
619c5cb6
VZ
5629 case (EVENT_RING_OPCODE_FILTERS_RULES |
5630 BNX2X_STATE_OPEN):
5631 case (EVENT_RING_OPCODE_FILTERS_RULES |
5632 BNX2X_STATE_DIAG):
5633 case (EVENT_RING_OPCODE_FILTERS_RULES |
523224a3 5634 BNX2X_STATE_CLOSING_WAIT4_HALT):
d6cae238 5635 DP(BNX2X_MSG_SP, "got rx_mode ramrod\n");
619c5cb6 5636 bnx2x_handle_rx_mode_eqe(bp);
523224a3
DK
5637 break;
5638 default:
5639 /* unknown event log error and continue */
619c5cb6
VZ
5640 BNX2X_ERR("Unknown EQ event %d, bp->state 0x%x\n",
5641 elem->message.opcode, bp->state);
523224a3
DK
5642 }
5643next_spqe:
5644 spqe_cnt++;
5645 } /* for */
5646
4e857c58 5647 smp_mb__before_atomic();
6e30dd4e 5648 atomic_add(spqe_cnt, &bp->eq_spq_left);
523224a3
DK
5649
5650 bp->eq_cons = sw_cons;
5651 bp->eq_prod = sw_prod;
5652 /* Make sure that above mem writes were issued towards the memory */
5653 smp_wmb();
5654
5655 /* update producer */
5656 bnx2x_update_eq_prod(bp, bp->eq_prod);
5657}
5658
a2fbb9ea
ET
5659static void bnx2x_sp_task(struct work_struct *work)
5660{
1cf167f2 5661 struct bnx2x *bp = container_of(work, struct bnx2x, sp_task.work);
a2fbb9ea 5662
fd1fc79d 5663 DP(BNX2X_MSG_SP, "sp task invoked\n");
a2fbb9ea 5664
16a5fd92 5665 /* make sure the atomic interrupt_occurred has been written */
fd1fc79d
AE
5666 smp_rmb();
5667 if (atomic_read(&bp->interrupt_occurred)) {
a2fbb9ea 5668
fd1fc79d
AE
5669 /* what work needs to be performed? */
5670 u16 status = bnx2x_update_dsb_idx(bp);
cdaa7cb8 5671
fd1fc79d
AE
5672 DP(BNX2X_MSG_SP, "status %x\n", status);
5673 DP(BNX2X_MSG_SP, "setting interrupt_occurred to 0\n");
5674 atomic_set(&bp->interrupt_occurred, 0);
5675
5676 /* HW attentions */
5677 if (status & BNX2X_DEF_SB_ATT_IDX) {
5678 bnx2x_attn_int(bp);
5679 status &= ~BNX2X_DEF_SB_ATT_IDX;
5680 }
5681
5682 /* SP events: STAT_QUERY and others */
5683 if (status & BNX2X_DEF_SB_IDX) {
5684 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
523224a3 5685
55c11941 5686 if (FCOE_INIT(bp) &&
fd1fc79d
AE
5687 (bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
5688 /* Prevent local bottom-halves from running as
5689 * we are going to change the local NAPI list.
5690 */
5691 local_bh_disable();
5692 napi_schedule(&bnx2x_fcoe(bp, napi));
5693 local_bh_enable();
5694 }
5695
5696 /* Handle EQ completions */
5697 bnx2x_eq_int(bp);
5698 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID,
5699 le16_to_cpu(bp->def_idx), IGU_INT_NOP, 1);
5700
5701 status &= ~BNX2X_DEF_SB_IDX;
019dbb4c 5702 }
55c11941 5703
fd1fc79d
AE
5704 /* if status is non zero then perhaps something went wrong */
5705 if (unlikely(status))
5706 DP(BNX2X_MSG_SP,
5707 "got an unknown interrupt! (status 0x%x)\n", status);
523224a3 5708
fd1fc79d
AE
5709 /* ack status block only if something was actually handled */
5710 bnx2x_ack_sb(bp, bp->igu_dsb_id, ATTENTION_ID,
5711 le16_to_cpu(bp->def_att_idx), IGU_INT_ENABLE, 1);
cdaa7cb8
VZ
5712 }
5713
a3348722
BW
5714 /* afex - poll to check if VIFSET_ACK should be sent to MFW */
5715 if (test_and_clear_bit(BNX2X_AFEX_PENDING_VIFSET_MCP_ACK,
5716 &bp->sp_state)) {
5717 bnx2x_link_report(bp);
5718 bnx2x_fw_command(bp, DRV_MSG_CODE_AFEX_VIFSET_ACK, 0);
5719 }
a2fbb9ea
ET
5720}
5721
9f6c9258 5722irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance)
a2fbb9ea
ET
5723{
5724 struct net_device *dev = dev_instance;
5725 struct bnx2x *bp = netdev_priv(dev);
5726
523224a3
DK
5727 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0,
5728 IGU_INT_DISABLE, 0);
a2fbb9ea
ET
5729
5730#ifdef BNX2X_STOP_ON_ERROR
5731 if (unlikely(bp->panic))
5732 return IRQ_HANDLED;
5733#endif
5734
55c11941 5735 if (CNIC_LOADED(bp)) {
993ac7b5
MC
5736 struct cnic_ops *c_ops;
5737
5738 rcu_read_lock();
5739 c_ops = rcu_dereference(bp->cnic_ops);
5740 if (c_ops)
5741 c_ops->cnic_handler(bp->cnic_data, NULL);
5742 rcu_read_unlock();
5743 }
55c11941 5744
fd1fc79d
AE
5745 /* schedule sp task to perform default status block work, ack
5746 * attentions and enable interrupts.
5747 */
5748 bnx2x_schedule_sp_task(bp);
a2fbb9ea
ET
5749
5750 return IRQ_HANDLED;
5751}
5752
5753/* end of slow path */
5754
619c5cb6
VZ
5755void bnx2x_drv_pulse(struct bnx2x *bp)
5756{
5757 SHMEM_WR(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb,
5758 bp->fw_drv_pulse_wr_seq);
5759}
5760
a2fbb9ea
ET
5761static void bnx2x_timer(unsigned long data)
5762{
5763 struct bnx2x *bp = (struct bnx2x *) data;
5764
5765 if (!netif_running(bp->dev))
5766 return;
5767
67c431a5
AE
5768 if (IS_PF(bp) &&
5769 !BP_NOMCP(bp)) {
f2e0899f 5770 int mb_idx = BP_FW_MB_IDX(bp);
4c868664
EG
5771 u16 drv_pulse;
5772 u16 mcp_pulse;
a2fbb9ea
ET
5773
5774 ++bp->fw_drv_pulse_wr_seq;
5775 bp->fw_drv_pulse_wr_seq &= DRV_PULSE_SEQ_MASK;
a2fbb9ea 5776 drv_pulse = bp->fw_drv_pulse_wr_seq;
619c5cb6 5777 bnx2x_drv_pulse(bp);
a2fbb9ea 5778
f2e0899f 5779 mcp_pulse = (SHMEM_RD(bp, func_mb[mb_idx].mcp_pulse_mb) &
a2fbb9ea
ET
5780 MCP_PULSE_SEQ_MASK);
5781 /* The delta between driver pulse and mcp response
4c868664
EG
5782 * should not get too big. If the MFW is more than 5 pulses
5783 * behind, we should worry about it enough to generate an error
5784 * log.
a2fbb9ea 5785 */
4c868664
EG
5786 if (((drv_pulse - mcp_pulse) & MCP_PULSE_SEQ_MASK) > 5)
5787 BNX2X_ERR("MFW seems hanged: drv_pulse (0x%x) != mcp_pulse (0x%x)\n",
a2fbb9ea 5788 drv_pulse, mcp_pulse);
a2fbb9ea
ET
5789 }
5790
f34d28ea 5791 if (bp->state == BNX2X_STATE_OPEN)
bb2a0f7a 5792 bnx2x_stats_handle(bp, STATS_EVENT_UPDATE);
a2fbb9ea 5793
abc5a021 5794 /* sample pf vf bulletin board for new posts from pf */
37173488
YM
5795 if (IS_VF(bp))
5796 bnx2x_timer_sriov(bp);
78c3bcc5 5797
a2fbb9ea
ET
5798 mod_timer(&bp->timer, jiffies + bp->current_interval);
5799}
5800
5801/* end of Statistics */
5802
5803/* nic init */
5804
5805/*
5806 * nic init service functions
5807 */
5808
1191cb83 5809static void bnx2x_fill(struct bnx2x *bp, u32 addr, int fill, u32 len)
a2fbb9ea 5810{
523224a3
DK
5811 u32 i;
5812 if (!(len%4) && !(addr%4))
5813 for (i = 0; i < len; i += 4)
5814 REG_WR(bp, addr + i, fill);
5815 else
5816 for (i = 0; i < len; i++)
5817 REG_WR8(bp, addr + i, fill);
34f80b04
EG
5818}
5819
523224a3 5820/* helper: writes FP SP data to FW - data_size in dwords */
1191cb83
ED
5821static void bnx2x_wr_fp_sb_data(struct bnx2x *bp,
5822 int fw_sb_id,
5823 u32 *sb_data_p,
5824 u32 data_size)
34f80b04 5825{
a2fbb9ea 5826 int index;
523224a3
DK
5827 for (index = 0; index < data_size; index++)
5828 REG_WR(bp, BAR_CSTRORM_INTMEM +
5829 CSTORM_STATUS_BLOCK_DATA_OFFSET(fw_sb_id) +
5830 sizeof(u32)*index,
5831 *(sb_data_p + index));
5832}
a2fbb9ea 5833
1191cb83 5834static void bnx2x_zero_fp_sb(struct bnx2x *bp, int fw_sb_id)
523224a3
DK
5835{
5836 u32 *sb_data_p;
5837 u32 data_size = 0;
f2e0899f 5838 struct hc_status_block_data_e2 sb_data_e2;
523224a3 5839 struct hc_status_block_data_e1x sb_data_e1x;
a2fbb9ea 5840
523224a3 5841 /* disable the function first */
619c5cb6 5842 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5843 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5844 sb_data_e2.common.state = SB_DISABLED;
f2e0899f
DK
5845 sb_data_e2.common.p_func.vf_valid = false;
5846 sb_data_p = (u32 *)&sb_data_e2;
5847 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
5848 } else {
5849 memset(&sb_data_e1x, 0,
5850 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5851 sb_data_e1x.common.state = SB_DISABLED;
f2e0899f
DK
5852 sb_data_e1x.common.p_func.vf_valid = false;
5853 sb_data_p = (u32 *)&sb_data_e1x;
5854 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
5855 }
523224a3 5856 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
a2fbb9ea 5857
523224a3
DK
5858 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5859 CSTORM_STATUS_BLOCK_OFFSET(fw_sb_id), 0,
5860 CSTORM_STATUS_BLOCK_SIZE);
5861 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5862 CSTORM_SYNC_BLOCK_OFFSET(fw_sb_id), 0,
5863 CSTORM_SYNC_BLOCK_SIZE);
5864}
34f80b04 5865
523224a3 5866/* helper: writes SP SB data to FW */
1191cb83 5867static void bnx2x_wr_sp_sb_data(struct bnx2x *bp,
523224a3
DK
5868 struct hc_sp_status_block_data *sp_sb_data)
5869{
5870 int func = BP_FUNC(bp);
5871 int i;
5872 for (i = 0; i < sizeof(struct hc_sp_status_block_data)/sizeof(u32); i++)
5873 REG_WR(bp, BAR_CSTRORM_INTMEM +
5874 CSTORM_SP_STATUS_BLOCK_DATA_OFFSET(func) +
5875 i*sizeof(u32),
5876 *((u32 *)sp_sb_data + i));
34f80b04
EG
5877}
5878
1191cb83 5879static void bnx2x_zero_sp_sb(struct bnx2x *bp)
34f80b04
EG
5880{
5881 int func = BP_FUNC(bp);
523224a3
DK
5882 struct hc_sp_status_block_data sp_sb_data;
5883 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
a2fbb9ea 5884
619c5cb6 5885 sp_sb_data.state = SB_DISABLED;
523224a3
DK
5886 sp_sb_data.p_func.vf_valid = false;
5887
5888 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
5889
5890 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5891 CSTORM_SP_STATUS_BLOCK_OFFSET(func), 0,
5892 CSTORM_SP_STATUS_BLOCK_SIZE);
5893 bnx2x_fill(bp, BAR_CSTRORM_INTMEM +
5894 CSTORM_SP_SYNC_BLOCK_OFFSET(func), 0,
5895 CSTORM_SP_SYNC_BLOCK_SIZE);
523224a3
DK
5896}
5897
1191cb83 5898static void bnx2x_setup_ndsb_state_machine(struct hc_status_block_sm *hc_sm,
523224a3
DK
5899 int igu_sb_id, int igu_seg_id)
5900{
5901 hc_sm->igu_sb_id = igu_sb_id;
5902 hc_sm->igu_seg_id = igu_seg_id;
5903 hc_sm->timer_value = 0xFF;
5904 hc_sm->time_to_expire = 0xFFFFFFFF;
a2fbb9ea
ET
5905}
5906
150966ad 5907/* allocates state machine ids. */
1191cb83 5908static void bnx2x_map_sb_state_machines(struct hc_index_data *index_data)
150966ad
AE
5909{
5910 /* zero out state machine indices */
5911 /* rx indices */
5912 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5913
5914 /* tx indices */
5915 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags &= ~HC_INDEX_DATA_SM_ID;
5916 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags &= ~HC_INDEX_DATA_SM_ID;
5917 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags &= ~HC_INDEX_DATA_SM_ID;
5918 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags &= ~HC_INDEX_DATA_SM_ID;
5919
5920 /* map indices */
5921 /* rx indices */
5922 index_data[HC_INDEX_ETH_RX_CQ_CONS].flags |=
5923 SM_RX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5924
5925 /* tx indices */
5926 index_data[HC_INDEX_OOO_TX_CQ_CONS].flags |=
5927 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5928 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS0].flags |=
5929 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5930 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS1].flags |=
5931 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5932 index_data[HC_INDEX_ETH_TX_CQ_CONS_COS2].flags |=
5933 SM_TX_ID << HC_INDEX_DATA_SM_ID_SHIFT;
5934}
5935
b93288d5 5936void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
523224a3 5937 u8 vf_valid, int fw_sb_id, int igu_sb_id)
a2fbb9ea 5938{
523224a3
DK
5939 int igu_seg_id;
5940
f2e0899f 5941 struct hc_status_block_data_e2 sb_data_e2;
523224a3
DK
5942 struct hc_status_block_data_e1x sb_data_e1x;
5943 struct hc_status_block_sm *hc_sm_p;
523224a3
DK
5944 int data_size;
5945 u32 *sb_data_p;
5946
f2e0899f
DK
5947 if (CHIP_INT_MODE_IS_BC(bp))
5948 igu_seg_id = HC_SEG_ACCESS_NORM;
5949 else
5950 igu_seg_id = IGU_SEG_ACCESS_NORM;
523224a3
DK
5951
5952 bnx2x_zero_fp_sb(bp, fw_sb_id);
5953
619c5cb6 5954 if (!CHIP_IS_E1x(bp)) {
f2e0899f 5955 memset(&sb_data_e2, 0, sizeof(struct hc_status_block_data_e2));
619c5cb6 5956 sb_data_e2.common.state = SB_ENABLED;
f2e0899f
DK
5957 sb_data_e2.common.p_func.pf_id = BP_FUNC(bp);
5958 sb_data_e2.common.p_func.vf_id = vfid;
5959 sb_data_e2.common.p_func.vf_valid = vf_valid;
5960 sb_data_e2.common.p_func.vnic_id = BP_VN(bp);
5961 sb_data_e2.common.same_igu_sb_1b = true;
5962 sb_data_e2.common.host_sb_addr.hi = U64_HI(mapping);
5963 sb_data_e2.common.host_sb_addr.lo = U64_LO(mapping);
5964 hc_sm_p = sb_data_e2.common.state_machine;
f2e0899f
DK
5965 sb_data_p = (u32 *)&sb_data_e2;
5966 data_size = sizeof(struct hc_status_block_data_e2)/sizeof(u32);
150966ad 5967 bnx2x_map_sb_state_machines(sb_data_e2.index_data);
f2e0899f
DK
5968 } else {
5969 memset(&sb_data_e1x, 0,
5970 sizeof(struct hc_status_block_data_e1x));
619c5cb6 5971 sb_data_e1x.common.state = SB_ENABLED;
f2e0899f
DK
5972 sb_data_e1x.common.p_func.pf_id = BP_FUNC(bp);
5973 sb_data_e1x.common.p_func.vf_id = 0xff;
5974 sb_data_e1x.common.p_func.vf_valid = false;
5975 sb_data_e1x.common.p_func.vnic_id = BP_VN(bp);
5976 sb_data_e1x.common.same_igu_sb_1b = true;
5977 sb_data_e1x.common.host_sb_addr.hi = U64_HI(mapping);
5978 sb_data_e1x.common.host_sb_addr.lo = U64_LO(mapping);
5979 hc_sm_p = sb_data_e1x.common.state_machine;
f2e0899f
DK
5980 sb_data_p = (u32 *)&sb_data_e1x;
5981 data_size = sizeof(struct hc_status_block_data_e1x)/sizeof(u32);
150966ad 5982 bnx2x_map_sb_state_machines(sb_data_e1x.index_data);
f2e0899f 5983 }
523224a3
DK
5984
5985 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_RX_ID],
5986 igu_sb_id, igu_seg_id);
5987 bnx2x_setup_ndsb_state_machine(&hc_sm_p[SM_TX_ID],
5988 igu_sb_id, igu_seg_id);
5989
51c1a580 5990 DP(NETIF_MSG_IFUP, "Init FW SB %d\n", fw_sb_id);
523224a3 5991
86564c3f 5992 /* write indices to HW - PCI guarantees endianity of regpairs */
523224a3
DK
5993 bnx2x_wr_fp_sb_data(bp, fw_sb_id, sb_data_p, data_size);
5994}
5995
619c5cb6 5996static void bnx2x_update_coalesce_sb(struct bnx2x *bp, u8 fw_sb_id,
523224a3
DK
5997 u16 tx_usec, u16 rx_usec)
5998{
6383c0b3 5999 bnx2x_update_coalesce_sb_index(bp, fw_sb_id, HC_INDEX_ETH_RX_CQ_CONS,
523224a3 6000 false, rx_usec);
6383c0b3
AE
6001 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
6002 HC_INDEX_ETH_TX_CQ_CONS_COS0, false,
6003 tx_usec);
6004 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
6005 HC_INDEX_ETH_TX_CQ_CONS_COS1, false,
6006 tx_usec);
6007 bnx2x_update_coalesce_sb_index(bp, fw_sb_id,
6008 HC_INDEX_ETH_TX_CQ_CONS_COS2, false,
6009 tx_usec);
523224a3 6010}
f2e0899f 6011
523224a3
DK
6012static void bnx2x_init_def_sb(struct bnx2x *bp)
6013{
6014 struct host_sp_status_block *def_sb = bp->def_status_blk;
6015 dma_addr_t mapping = bp->def_status_blk_mapping;
6016 int igu_sp_sb_index;
6017 int igu_seg_id;
34f80b04
EG
6018 int port = BP_PORT(bp);
6019 int func = BP_FUNC(bp);
f2eaeb58 6020 int reg_offset, reg_offset_en5;
a2fbb9ea 6021 u64 section;
523224a3
DK
6022 int index;
6023 struct hc_sp_status_block_data sp_sb_data;
6024 memset(&sp_sb_data, 0, sizeof(struct hc_sp_status_block_data));
6025
f2e0899f
DK
6026 if (CHIP_INT_MODE_IS_BC(bp)) {
6027 igu_sp_sb_index = DEF_SB_IGU_ID;
6028 igu_seg_id = HC_SEG_ACCESS_DEF;
6029 } else {
6030 igu_sp_sb_index = bp->igu_dsb_id;
6031 igu_seg_id = IGU_SEG_ACCESS_DEF;
6032 }
a2fbb9ea
ET
6033
6034 /* ATTN */
523224a3 6035 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
a2fbb9ea 6036 atten_status_block);
523224a3 6037 def_sb->atten_status_block.status_block_id = igu_sp_sb_index;
a2fbb9ea 6038
49d66772
ET
6039 bp->attn_state = 0;
6040
a2fbb9ea
ET
6041 reg_offset = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
6042 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
f2eaeb58
DK
6043 reg_offset_en5 = (port ? MISC_REG_AEU_ENABLE5_FUNC_1_OUT_0 :
6044 MISC_REG_AEU_ENABLE5_FUNC_0_OUT_0);
34f80b04 6045 for (index = 0; index < MAX_DYNAMIC_ATTN_GRPS; index++) {
523224a3
DK
6046 int sindex;
6047 /* take care of sig[0]..sig[4] */
6048 for (sindex = 0; sindex < 4; sindex++)
6049 bp->attn_group[index].sig[sindex] =
6050 REG_RD(bp, reg_offset + sindex*0x4 + 0x10*index);
f2e0899f 6051
619c5cb6 6052 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6053 /*
6054 * enable5 is separate from the rest of the registers,
6055 * and therefore the address skip is 4
6056 * and not 16 between the different groups
6057 */
6058 bp->attn_group[index].sig[4] = REG_RD(bp,
f2eaeb58 6059 reg_offset_en5 + 0x4*index);
f2e0899f
DK
6060 else
6061 bp->attn_group[index].sig[4] = 0;
a2fbb9ea
ET
6062 }
6063
f2e0899f
DK
6064 if (bp->common.int_block == INT_BLOCK_HC) {
6065 reg_offset = (port ? HC_REG_ATTN_MSG1_ADDR_L :
6066 HC_REG_ATTN_MSG0_ADDR_L);
6067
6068 REG_WR(bp, reg_offset, U64_LO(section));
6069 REG_WR(bp, reg_offset + 4, U64_HI(section));
619c5cb6 6070 } else if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6071 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_L, U64_LO(section));
6072 REG_WR(bp, IGU_REG_ATTN_MSG_ADDR_H, U64_HI(section));
6073 }
a2fbb9ea 6074
523224a3
DK
6075 section = ((u64)mapping) + offsetof(struct host_sp_status_block,
6076 sp_sb);
a2fbb9ea 6077
523224a3 6078 bnx2x_zero_sp_sb(bp);
a2fbb9ea 6079
86564c3f 6080 /* PCI guarantees endianity of regpairs */
619c5cb6 6081 sp_sb_data.state = SB_ENABLED;
523224a3
DK
6082 sp_sb_data.host_sb_addr.lo = U64_LO(section);
6083 sp_sb_data.host_sb_addr.hi = U64_HI(section);
6084 sp_sb_data.igu_sb_id = igu_sp_sb_index;
6085 sp_sb_data.igu_seg_id = igu_seg_id;
6086 sp_sb_data.p_func.pf_id = func;
f2e0899f 6087 sp_sb_data.p_func.vnic_id = BP_VN(bp);
523224a3 6088 sp_sb_data.p_func.vf_id = 0xff;
a2fbb9ea 6089
523224a3 6090 bnx2x_wr_sp_sb_data(bp, &sp_sb_data);
49d66772 6091
523224a3 6092 bnx2x_ack_sb(bp, bp->igu_dsb_id, USTORM_ID, 0, IGU_INT_ENABLE, 0);
a2fbb9ea
ET
6093}
6094
9f6c9258 6095void bnx2x_update_coalesce(struct bnx2x *bp)
a2fbb9ea 6096{
a2fbb9ea
ET
6097 int i;
6098
ec6ba945 6099 for_each_eth_queue(bp, i)
523224a3 6100 bnx2x_update_coalesce_sb(bp, bp->fp[i].fw_sb_id,
423cfa7e 6101 bp->tx_ticks, bp->rx_ticks);
a2fbb9ea
ET
6102}
6103
a2fbb9ea
ET
6104static void bnx2x_init_sp_ring(struct bnx2x *bp)
6105{
a2fbb9ea 6106 spin_lock_init(&bp->spq_lock);
6e30dd4e 6107 atomic_set(&bp->cq_spq_left, MAX_SPQ_PENDING);
a2fbb9ea 6108
a2fbb9ea 6109 bp->spq_prod_idx = 0;
a2fbb9ea
ET
6110 bp->dsb_sp_prod = BNX2X_SP_DSB_INDEX;
6111 bp->spq_prod_bd = bp->spq;
6112 bp->spq_last_bd = bp->spq_prod_bd + MAX_SP_DESC_CNT;
a2fbb9ea
ET
6113}
6114
523224a3 6115static void bnx2x_init_eq_ring(struct bnx2x *bp)
a2fbb9ea
ET
6116{
6117 int i;
523224a3
DK
6118 for (i = 1; i <= NUM_EQ_PAGES; i++) {
6119 union event_ring_elem *elem =
6120 &bp->eq_ring[EQ_DESC_CNT_PAGE * i - 1];
a2fbb9ea 6121
523224a3
DK
6122 elem->next_page.addr.hi =
6123 cpu_to_le32(U64_HI(bp->eq_mapping +
6124 BCM_PAGE_SIZE * (i % NUM_EQ_PAGES)));
6125 elem->next_page.addr.lo =
6126 cpu_to_le32(U64_LO(bp->eq_mapping +
6127 BCM_PAGE_SIZE*(i % NUM_EQ_PAGES)));
a2fbb9ea 6128 }
523224a3
DK
6129 bp->eq_cons = 0;
6130 bp->eq_prod = NUM_EQ_DESC;
6131 bp->eq_cons_sb = BNX2X_EQ_INDEX;
16a5fd92 6132 /* we want a warning message before it gets wrought... */
6e30dd4e
VZ
6133 atomic_set(&bp->eq_spq_left,
6134 min_t(int, MAX_SP_DESC_CNT - MAX_SPQ_PENDING, NUM_EQ_DESC) - 1);
a2fbb9ea
ET
6135}
6136
619c5cb6 6137/* called with netif_addr_lock_bh() */
a8f47eb7 6138static int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
6139 unsigned long rx_mode_flags,
6140 unsigned long rx_accept_flags,
6141 unsigned long tx_accept_flags,
6142 unsigned long ramrod_flags)
ab532cf3 6143{
619c5cb6
VZ
6144 struct bnx2x_rx_mode_ramrod_params ramrod_param;
6145 int rc;
6146
6147 memset(&ramrod_param, 0, sizeof(ramrod_param));
6148
6149 /* Prepare ramrod parameters */
6150 ramrod_param.cid = 0;
6151 ramrod_param.cl_id = cl_id;
6152 ramrod_param.rx_mode_obj = &bp->rx_mode_obj;
6153 ramrod_param.func_id = BP_FUNC(bp);
ab532cf3 6154
619c5cb6
VZ
6155 ramrod_param.pstate = &bp->sp_state;
6156 ramrod_param.state = BNX2X_FILTER_RX_MODE_PENDING;
ab532cf3 6157
619c5cb6
VZ
6158 ramrod_param.rdata = bnx2x_sp(bp, rx_mode_rdata);
6159 ramrod_param.rdata_mapping = bnx2x_sp_mapping(bp, rx_mode_rdata);
6160
6161 set_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state);
6162
6163 ramrod_param.ramrod_flags = ramrod_flags;
6164 ramrod_param.rx_mode_flags = rx_mode_flags;
6165
6166 ramrod_param.rx_accept_flags = rx_accept_flags;
6167 ramrod_param.tx_accept_flags = tx_accept_flags;
6168
6169 rc = bnx2x_config_rx_mode(bp, &ramrod_param);
6170 if (rc < 0) {
6171 BNX2X_ERR("Set rx_mode %d failed\n", bp->rx_mode);
924d75ab 6172 return rc;
619c5cb6 6173 }
924d75ab
YM
6174
6175 return 0;
a2fbb9ea
ET
6176}
6177
86564c3f
YM
6178static int bnx2x_fill_accept_flags(struct bnx2x *bp, u32 rx_mode,
6179 unsigned long *rx_accept_flags,
6180 unsigned long *tx_accept_flags)
471de716 6181{
924d75ab
YM
6182 /* Clear the flags first */
6183 *rx_accept_flags = 0;
6184 *tx_accept_flags = 0;
619c5cb6 6185
924d75ab 6186 switch (rx_mode) {
619c5cb6
VZ
6187 case BNX2X_RX_MODE_NONE:
6188 /*
6189 * 'drop all' supersedes any accept flags that may have been
6190 * passed to the function.
6191 */
6192 break;
6193 case BNX2X_RX_MODE_NORMAL:
924d75ab
YM
6194 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
6195 __set_bit(BNX2X_ACCEPT_MULTICAST, rx_accept_flags);
6196 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
6197
6198 /* internal switching mode */
924d75ab
YM
6199 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
6200 __set_bit(BNX2X_ACCEPT_MULTICAST, tx_accept_flags);
6201 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6 6202
05cc5a39
YM
6203 if (bp->accept_any_vlan) {
6204 __set_bit(BNX2X_ACCEPT_ANY_VLAN, rx_accept_flags);
6205 __set_bit(BNX2X_ACCEPT_ANY_VLAN, tx_accept_flags);
6206 }
6207
619c5cb6
VZ
6208 break;
6209 case BNX2X_RX_MODE_ALLMULTI:
924d75ab
YM
6210 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
6211 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, rx_accept_flags);
6212 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
6213
6214 /* internal switching mode */
924d75ab
YM
6215 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
6216 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, tx_accept_flags);
6217 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6 6218
05cc5a39
YM
6219 if (bp->accept_any_vlan) {
6220 __set_bit(BNX2X_ACCEPT_ANY_VLAN, rx_accept_flags);
6221 __set_bit(BNX2X_ACCEPT_ANY_VLAN, tx_accept_flags);
6222 }
6223
619c5cb6
VZ
6224 break;
6225 case BNX2X_RX_MODE_PROMISC:
16a5fd92 6226 /* According to definition of SI mode, iface in promisc mode
619c5cb6
VZ
6227 * should receive matched and unmatched (in resolution of port)
6228 * unicast packets.
6229 */
924d75ab
YM
6230 __set_bit(BNX2X_ACCEPT_UNMATCHED, rx_accept_flags);
6231 __set_bit(BNX2X_ACCEPT_UNICAST, rx_accept_flags);
6232 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, rx_accept_flags);
6233 __set_bit(BNX2X_ACCEPT_BROADCAST, rx_accept_flags);
619c5cb6
VZ
6234
6235 /* internal switching mode */
924d75ab
YM
6236 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, tx_accept_flags);
6237 __set_bit(BNX2X_ACCEPT_BROADCAST, tx_accept_flags);
619c5cb6
VZ
6238
6239 if (IS_MF_SI(bp))
924d75ab 6240 __set_bit(BNX2X_ACCEPT_ALL_UNICAST, tx_accept_flags);
619c5cb6 6241 else
924d75ab 6242 __set_bit(BNX2X_ACCEPT_UNICAST, tx_accept_flags);
619c5cb6 6243
05cc5a39
YM
6244 __set_bit(BNX2X_ACCEPT_ANY_VLAN, rx_accept_flags);
6245 __set_bit(BNX2X_ACCEPT_ANY_VLAN, tx_accept_flags);
6246
619c5cb6
VZ
6247 break;
6248 default:
924d75ab
YM
6249 BNX2X_ERR("Unknown rx_mode: %d\n", rx_mode);
6250 return -EINVAL;
619c5cb6 6251 }
de832a55 6252
924d75ab
YM
6253 return 0;
6254}
6255
6256/* called with netif_addr_lock_bh() */
a8f47eb7 6257static int bnx2x_set_storm_rx_mode(struct bnx2x *bp)
924d75ab
YM
6258{
6259 unsigned long rx_mode_flags = 0, ramrod_flags = 0;
6260 unsigned long rx_accept_flags = 0, tx_accept_flags = 0;
6261 int rc;
6262
6263 if (!NO_FCOE(bp))
6264 /* Configure rx_mode of FCoE Queue */
6265 __set_bit(BNX2X_RX_MODE_FCOE_ETH, &rx_mode_flags);
6266
6267 rc = bnx2x_fill_accept_flags(bp, bp->rx_mode, &rx_accept_flags,
6268 &tx_accept_flags);
6269 if (rc)
6270 return rc;
6271
619c5cb6
VZ
6272 __set_bit(RAMROD_RX, &ramrod_flags);
6273 __set_bit(RAMROD_TX, &ramrod_flags);
6274
924d75ab
YM
6275 return bnx2x_set_q_rx_mode(bp, bp->fp->cl_id, rx_mode_flags,
6276 rx_accept_flags, tx_accept_flags,
6277 ramrod_flags);
619c5cb6
VZ
6278}
6279
6280static void bnx2x_init_internal_common(struct bnx2x *bp)
6281{
6282 int i;
6283
523224a3
DK
6284 /* Zero this manually as its initialization is
6285 currently missing in the initTool */
6286 for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++)
ca00392c 6287 REG_WR(bp, BAR_USTRORM_INTMEM +
523224a3 6288 USTORM_AGG_DATA_OFFSET + i * 4, 0);
619c5cb6 6289 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
6290 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_IGU_MODE_OFFSET,
6291 CHIP_INT_MODE_IS_BC(bp) ?
6292 HC_IGU_BC_MODE : HC_IGU_NBC_MODE);
6293 }
523224a3 6294}
8a1c38d1 6295
471de716
EG
6296static void bnx2x_init_internal(struct bnx2x *bp, u32 load_code)
6297{
6298 switch (load_code) {
6299 case FW_MSG_CODE_DRV_LOAD_COMMON:
f2e0899f 6300 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP:
471de716
EG
6301 bnx2x_init_internal_common(bp);
6302 /* no break */
6303
6304 case FW_MSG_CODE_DRV_LOAD_PORT:
619c5cb6 6305 /* nothing to do */
471de716
EG
6306 /* no break */
6307
6308 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
523224a3
DK
6309 /* internal memory per function is
6310 initialized inside bnx2x_pf_init */
471de716
EG
6311 break;
6312
6313 default:
6314 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code);
6315 break;
6316 }
6317}
6318
619c5cb6 6319static inline u8 bnx2x_fp_igu_sb_id(struct bnx2x_fastpath *fp)
523224a3 6320{
55c11941 6321 return fp->bp->igu_base_sb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6 6322}
523224a3 6323
619c5cb6
VZ
6324static inline u8 bnx2x_fp_fw_sb_id(struct bnx2x_fastpath *fp)
6325{
55c11941 6326 return fp->bp->base_fw_ndsb + fp->index + CNIC_SUPPORT(fp->bp);
619c5cb6
VZ
6327}
6328
1191cb83 6329static u8 bnx2x_fp_cl_id(struct bnx2x_fastpath *fp)
619c5cb6
VZ
6330{
6331 if (CHIP_IS_E1x(fp->bp))
6332 return BP_L_ID(fp->bp) + fp->index;
6333 else /* We want Client ID to be the same as IGU SB ID for 57712 */
6334 return bnx2x_fp_igu_sb_id(fp);
6335}
6336
6383c0b3 6337static void bnx2x_init_eth_fp(struct bnx2x *bp, int fp_idx)
619c5cb6
VZ
6338{
6339 struct bnx2x_fastpath *fp = &bp->fp[fp_idx];
6383c0b3 6340 u8 cos;
619c5cb6 6341 unsigned long q_type = 0;
6383c0b3 6342 u32 cids[BNX2X_MULTI_TX_COS] = { 0 };
f233cafe 6343 fp->rx_queue = fp_idx;
b3b83c3f 6344 fp->cid = fp_idx;
619c5cb6
VZ
6345 fp->cl_id = bnx2x_fp_cl_id(fp);
6346 fp->fw_sb_id = bnx2x_fp_fw_sb_id(fp);
6347 fp->igu_sb_id = bnx2x_fp_igu_sb_id(fp);
523224a3 6348 /* qZone id equals to FW (per path) client id */
619c5cb6
VZ
6349 fp->cl_qzone_id = bnx2x_fp_qzone_id(fp);
6350
523224a3 6351 /* init shortcut */
619c5cb6 6352 fp->ustorm_rx_prods_offset = bnx2x_rx_ustorm_prods_offset(fp);
7a752993 6353
16a5fd92 6354 /* Setup SB indices */
523224a3 6355 fp->rx_cons_sb = BNX2X_RX_SB_INDEX;
523224a3 6356
619c5cb6
VZ
6357 /* Configure Queue State object */
6358 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
6359 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
6383c0b3
AE
6360
6361 BUG_ON(fp->max_cos > BNX2X_MULTI_TX_COS);
6362
6363 /* init tx data */
6364 for_each_cos_in_tx_queue(fp, cos) {
65565884
MS
6365 bnx2x_init_txdata(bp, fp->txdata_ptr[cos],
6366 CID_COS_TO_TX_ONLY_CID(fp->cid, cos, bp),
6367 FP_COS_TO_TXQ(fp, cos, bp),
6368 BNX2X_TX_SB_INDEX_BASE + cos, fp);
6369 cids[cos] = fp->txdata_ptr[cos]->cid;
6383c0b3
AE
6370 }
6371
ad5afc89
AE
6372 /* nothing more for vf to do here */
6373 if (IS_VF(bp))
6374 return;
6375
6376 bnx2x_init_sb(bp, fp->status_blk_mapping, BNX2X_VF_ID_INVALID, false,
6377 fp->fw_sb_id, fp->igu_sb_id);
6378 bnx2x_update_fpsb_idx(fp);
15192a8c
BW
6379 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id, cids,
6380 fp->max_cos, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
6383c0b3 6381 bnx2x_sp_mapping(bp, q_rdata), q_type);
619c5cb6
VZ
6382
6383 /**
6384 * Configure classification DBs: Always enable Tx switching
6385 */
6386 bnx2x_init_vlan_mac_fp_objs(fp, BNX2X_OBJ_TYPE_RX_TX);
6387
ad5afc89
AE
6388 DP(NETIF_MSG_IFUP,
6389 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
6390 fp_idx, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
6391 fp->igu_sb_id);
523224a3
DK
6392}
6393
1191cb83
ED
6394static void bnx2x_init_tx_ring_one(struct bnx2x_fp_txdata *txdata)
6395{
6396 int i;
6397
6398 for (i = 1; i <= NUM_TX_RINGS; i++) {
6399 struct eth_tx_next_bd *tx_next_bd =
6400 &txdata->tx_desc_ring[TX_DESC_CNT * i - 1].next_bd;
6401
6402 tx_next_bd->addr_hi =
6403 cpu_to_le32(U64_HI(txdata->tx_desc_mapping +
6404 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
6405 tx_next_bd->addr_lo =
6406 cpu_to_le32(U64_LO(txdata->tx_desc_mapping +
6407 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
6408 }
6409
639d65b8
YM
6410 *txdata->tx_cons_sb = cpu_to_le16(0);
6411
1191cb83
ED
6412 SET_FLAG(txdata->tx_db.data.header.header, DOORBELL_HDR_DB_TYPE, 1);
6413 txdata->tx_db.data.zero_fill1 = 0;
6414 txdata->tx_db.data.prod = 0;
6415
6416 txdata->tx_pkt_prod = 0;
6417 txdata->tx_pkt_cons = 0;
6418 txdata->tx_bd_prod = 0;
6419 txdata->tx_bd_cons = 0;
6420 txdata->tx_pkt = 0;
6421}
6422
55c11941
MS
6423static void bnx2x_init_tx_rings_cnic(struct bnx2x *bp)
6424{
6425 int i;
6426
6427 for_each_tx_queue_cnic(bp, i)
6428 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[0]);
6429}
d76a6111 6430
1191cb83
ED
6431static void bnx2x_init_tx_rings(struct bnx2x *bp)
6432{
6433 int i;
6434 u8 cos;
6435
55c11941 6436 for_each_eth_queue(bp, i)
1191cb83 6437 for_each_cos_in_tx_queue(&bp->fp[i], cos)
65565884 6438 bnx2x_init_tx_ring_one(bp->fp[i].txdata_ptr[cos]);
1191cb83
ED
6439}
6440
a8f47eb7 6441static void bnx2x_init_fcoe_fp(struct bnx2x *bp)
6442{
6443 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
6444 unsigned long q_type = 0;
6445
6446 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
6447 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
6448 BNX2X_FCOE_ETH_CL_ID_IDX);
6449 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
6450 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
6451 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
6452 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
6453 bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
6454 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
6455 fp);
6456
6457 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
6458
6459 /* qZone id equals to FW (per path) client id */
6460 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
6461 /* init shortcut */
6462 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
6463 bnx2x_rx_ustorm_prods_offset(fp);
6464
6465 /* Configure Queue State object */
6466 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
6467 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
6468
6469 /* No multi-CoS for FCoE L2 client */
6470 BUG_ON(fp->max_cos != 1);
6471
6472 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
6473 &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
6474 bnx2x_sp_mapping(bp, q_rdata), q_type);
6475
6476 DP(NETIF_MSG_IFUP,
6477 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
6478 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
6479 fp->igu_sb_id);
6480}
6481
55c11941 6482void bnx2x_nic_init_cnic(struct bnx2x *bp)
a2fbb9ea 6483{
ec6ba945
VZ
6484 if (!NO_FCOE(bp))
6485 bnx2x_init_fcoe_fp(bp);
523224a3
DK
6486
6487 bnx2x_init_sb(bp, bp->cnic_sb_mapping,
6488 BNX2X_VF_ID_INVALID, false,
619c5cb6 6489 bnx2x_cnic_fw_sb_id(bp), bnx2x_cnic_igu_sb_id(bp));
523224a3 6490
55c11941
MS
6491 /* ensure status block indices were read */
6492 rmb();
6493 bnx2x_init_rx_rings_cnic(bp);
6494 bnx2x_init_tx_rings_cnic(bp);
6495
6496 /* flush all */
6497 mb();
6498 mmiowb();
6499}
a2fbb9ea 6500
ecf01c22 6501void bnx2x_pre_irq_nic_init(struct bnx2x *bp)
55c11941
MS
6502{
6503 int i;
6504
ecf01c22 6505 /* Setup NIC internals and enable interrupts */
55c11941
MS
6506 for_each_eth_queue(bp, i)
6507 bnx2x_init_eth_fp(bp, i);
ad5afc89
AE
6508
6509 /* ensure status block indices were read */
6510 rmb();
6511 bnx2x_init_rx_rings(bp);
6512 bnx2x_init_tx_rings(bp);
6513
ecf01c22
YM
6514 if (IS_PF(bp)) {
6515 /* Initialize MOD_ABS interrupts */
6516 bnx2x_init_mod_abs_int(bp, &bp->link_vars, bp->common.chip_id,
6517 bp->common.shmem_base,
6518 bp->common.shmem2_base, BP_PORT(bp));
ad5afc89 6519
ecf01c22
YM
6520 /* initialize the default status block and sp ring */
6521 bnx2x_init_def_sb(bp);
6522 bnx2x_update_dsb_idx(bp);
6523 bnx2x_init_sp_ring(bp);
3cdeec22
YM
6524 } else {
6525 bnx2x_memset_stats(bp);
ecf01c22
YM
6526 }
6527}
16119785 6528
ecf01c22
YM
6529void bnx2x_post_irq_nic_init(struct bnx2x *bp, u32 load_code)
6530{
523224a3 6531 bnx2x_init_eq_ring(bp);
471de716 6532 bnx2x_init_internal(bp, load_code);
523224a3 6533 bnx2x_pf_init(bp);
0ef00459
EG
6534 bnx2x_stats_init(bp);
6535
0ef00459
EG
6536 /* flush all before enabling interrupts */
6537 mb();
6538 mmiowb();
6539
615f8fd9 6540 bnx2x_int_enable(bp);
eb8da205
EG
6541
6542 /* Check for SPIO5 */
6543 bnx2x_attn_int_deasserted0(bp,
6544 REG_RD(bp, MISC_REG_AEU_AFTER_INVERT_1_FUNC_0 + BP_PORT(bp)*4) &
6545 AEU_INPUTS_ATTN_BITS_SPIO5);
a2fbb9ea
ET
6546}
6547
ecf01c22 6548/* gzip service functions */
a2fbb9ea
ET
6549static int bnx2x_gunzip_init(struct bnx2x *bp)
6550{
1a983142
FT
6551 bp->gunzip_buf = dma_alloc_coherent(&bp->pdev->dev, FW_BUF_SIZE,
6552 &bp->gunzip_mapping, GFP_KERNEL);
a2fbb9ea
ET
6553 if (bp->gunzip_buf == NULL)
6554 goto gunzip_nomem1;
6555
6556 bp->strm = kmalloc(sizeof(*bp->strm), GFP_KERNEL);
6557 if (bp->strm == NULL)
6558 goto gunzip_nomem2;
6559
7ab24bfd 6560 bp->strm->workspace = vmalloc(zlib_inflate_workspacesize());
a2fbb9ea
ET
6561 if (bp->strm->workspace == NULL)
6562 goto gunzip_nomem3;
6563
6564 return 0;
6565
6566gunzip_nomem3:
6567 kfree(bp->strm);
6568 bp->strm = NULL;
6569
6570gunzip_nomem2:
1a983142
FT
6571 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
6572 bp->gunzip_mapping);
a2fbb9ea
ET
6573 bp->gunzip_buf = NULL;
6574
6575gunzip_nomem1:
51c1a580 6576 BNX2X_ERR("Cannot allocate firmware buffer for un-compression\n");
a2fbb9ea
ET
6577 return -ENOMEM;
6578}
6579
6580static void bnx2x_gunzip_end(struct bnx2x *bp)
6581{
b3b83c3f 6582 if (bp->strm) {
7ab24bfd 6583 vfree(bp->strm->workspace);
b3b83c3f
DK
6584 kfree(bp->strm);
6585 bp->strm = NULL;
6586 }
a2fbb9ea
ET
6587
6588 if (bp->gunzip_buf) {
1a983142
FT
6589 dma_free_coherent(&bp->pdev->dev, FW_BUF_SIZE, bp->gunzip_buf,
6590 bp->gunzip_mapping);
a2fbb9ea
ET
6591 bp->gunzip_buf = NULL;
6592 }
6593}
6594
94a78b79 6595static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len)
a2fbb9ea
ET
6596{
6597 int n, rc;
6598
6599 /* check gzip header */
94a78b79
VZ
6600 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) {
6601 BNX2X_ERR("Bad gzip header\n");
a2fbb9ea 6602 return -EINVAL;
94a78b79 6603 }
a2fbb9ea
ET
6604
6605 n = 10;
6606
34f80b04 6607#define FNAME 0x8
a2fbb9ea
ET
6608
6609 if (zbuf[3] & FNAME)
6610 while ((zbuf[n++] != 0) && (n < len));
6611
94a78b79 6612 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n;
a2fbb9ea
ET
6613 bp->strm->avail_in = len - n;
6614 bp->strm->next_out = bp->gunzip_buf;
6615 bp->strm->avail_out = FW_BUF_SIZE;
6616
6617 rc = zlib_inflateInit2(bp->strm, -MAX_WBITS);
6618 if (rc != Z_OK)
6619 return rc;
6620
6621 rc = zlib_inflate(bp->strm, Z_FINISH);
6622 if ((rc != Z_OK) && (rc != Z_STREAM_END))
7995c64e
JP
6623 netdev_err(bp->dev, "Firmware decompression error: %s\n",
6624 bp->strm->msg);
a2fbb9ea
ET
6625
6626 bp->gunzip_outlen = (FW_BUF_SIZE - bp->strm->avail_out);
6627 if (bp->gunzip_outlen & 0x3)
51c1a580
MS
6628 netdev_err(bp->dev,
6629 "Firmware decompression error: gunzip_outlen (%d) not aligned\n",
cdaa7cb8 6630 bp->gunzip_outlen);
a2fbb9ea
ET
6631 bp->gunzip_outlen >>= 2;
6632
6633 zlib_inflateEnd(bp->strm);
6634
6635 if (rc == Z_STREAM_END)
6636 return 0;
6637
6638 return rc;
6639}
6640
6641/* nic load/unload */
6642
6643/*
34f80b04 6644 * General service functions
a2fbb9ea
ET
6645 */
6646
6647/* send a NIG loopback debug packet */
6648static void bnx2x_lb_pckt(struct bnx2x *bp)
6649{
a2fbb9ea 6650 u32 wb_write[3];
a2fbb9ea
ET
6651
6652 /* Ethernet source and destination addresses */
a2fbb9ea
ET
6653 wb_write[0] = 0x55555555;
6654 wb_write[1] = 0x55555555;
34f80b04 6655 wb_write[2] = 0x20; /* SOP */
a2fbb9ea 6656 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
6657
6658 /* NON-IP protocol */
a2fbb9ea
ET
6659 wb_write[0] = 0x09000000;
6660 wb_write[1] = 0x55555555;
34f80b04 6661 wb_write[2] = 0x10; /* EOP, eop_bvalid = 0 */
a2fbb9ea 6662 REG_WR_DMAE(bp, NIG_REG_DEBUG_PACKET_LB, wb_write, 3);
a2fbb9ea
ET
6663}
6664
6665/* some of the internal memories
6666 * are not directly readable from the driver
6667 * to test them we send debug packets
6668 */
6669static int bnx2x_int_mem_test(struct bnx2x *bp)
6670{
6671 int factor;
6672 int count, i;
6673 u32 val = 0;
6674
ad8d3948 6675 if (CHIP_REV_IS_FPGA(bp))
a2fbb9ea 6676 factor = 120;
ad8d3948
EG
6677 else if (CHIP_REV_IS_EMUL(bp))
6678 factor = 200;
6679 else
a2fbb9ea 6680 factor = 1;
a2fbb9ea 6681
a2fbb9ea
ET
6682 /* Disable inputs of parser neighbor blocks */
6683 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6684 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6685 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6686 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6687
6688 /* Write 0 to parser credits for CFC search request */
6689 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6690
6691 /* send Ethernet packet */
6692 bnx2x_lb_pckt(bp);
6693
6694 /* TODO do i reset NIG statistic? */
6695 /* Wait until NIG register shows 1 packet of size 0x10 */
6696 count = 1000 * factor;
6697 while (count) {
34f80b04 6698
a2fbb9ea
ET
6699 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6700 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6701 if (val == 0x10)
6702 break;
6703
639d65b8 6704 usleep_range(10000, 20000);
a2fbb9ea
ET
6705 count--;
6706 }
6707 if (val != 0x10) {
6708 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6709 return -1;
6710 }
6711
6712 /* Wait until PRS register shows 1 packet */
6713 count = 1000 * factor;
6714 while (count) {
6715 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
a2fbb9ea
ET
6716 if (val == 1)
6717 break;
6718
639d65b8 6719 usleep_range(10000, 20000);
a2fbb9ea
ET
6720 count--;
6721 }
6722 if (val != 0x1) {
6723 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6724 return -2;
6725 }
6726
6727 /* Reset and init BRB, PRS */
34f80b04 6728 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
a2fbb9ea 6729 msleep(50);
34f80b04 6730 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
a2fbb9ea 6731 msleep(50);
619c5cb6
VZ
6732 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6733 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
a2fbb9ea
ET
6734
6735 DP(NETIF_MSG_HW, "part2\n");
6736
6737 /* Disable inputs of parser neighbor blocks */
6738 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x0);
6739 REG_WR(bp, TCM_REG_PRS_IFEN, 0x0);
6740 REG_WR(bp, CFC_REG_DEBUG0, 0x1);
3196a88a 6741 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x0);
a2fbb9ea
ET
6742
6743 /* Write 0 to parser credits for CFC search request */
6744 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x0);
6745
6746 /* send 10 Ethernet packets */
6747 for (i = 0; i < 10; i++)
6748 bnx2x_lb_pckt(bp);
6749
6750 /* Wait until NIG register shows 10 + 1
6751 packets of size 11*0x10 = 0xb0 */
6752 count = 1000 * factor;
6753 while (count) {
34f80b04 6754
a2fbb9ea
ET
6755 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
6756 val = *bnx2x_sp(bp, wb_data[0]);
a2fbb9ea
ET
6757 if (val == 0xb0)
6758 break;
6759
639d65b8 6760 usleep_range(10000, 20000);
a2fbb9ea
ET
6761 count--;
6762 }
6763 if (val != 0xb0) {
6764 BNX2X_ERR("NIG timeout val = 0x%x\n", val);
6765 return -3;
6766 }
6767
6768 /* Wait until PRS register shows 2 packets */
6769 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6770 if (val != 2)
6771 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6772
6773 /* Write 1 to parser credits for CFC search request */
6774 REG_WR(bp, PRS_REG_CFC_SEARCH_INITIAL_CREDIT, 0x1);
6775
6776 /* Wait until PRS register shows 3 packets */
6777 msleep(10 * factor);
6778 /* Wait until NIG register shows 1 packet of size 0x10 */
6779 val = REG_RD(bp, PRS_REG_NUM_OF_PACKETS);
6780 if (val != 3)
6781 BNX2X_ERR("PRS timeout val = 0x%x\n", val);
6782
6783 /* clear NIG EOP FIFO */
6784 for (i = 0; i < 11; i++)
6785 REG_RD(bp, NIG_REG_INGRESS_EOP_LB_FIFO);
6786 val = REG_RD(bp, NIG_REG_INGRESS_EOP_LB_EMPTY);
6787 if (val != 1) {
6788 BNX2X_ERR("clear of NIG failed\n");
6789 return -4;
6790 }
6791
6792 /* Reset and init BRB, PRS, NIG */
6793 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR, 0x03);
6794 msleep(50);
6795 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0x03);
6796 msleep(50);
619c5cb6
VZ
6797 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
6798 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
55c11941
MS
6799 if (!CNIC_SUPPORT(bp))
6800 /* set NIC mode */
6801 REG_WR(bp, PRS_REG_NIC_MODE, 1);
a2fbb9ea
ET
6802
6803 /* Enable inputs of parser neighbor blocks */
6804 REG_WR(bp, TSDM_REG_ENABLE_IN1, 0x7fffffff);
6805 REG_WR(bp, TCM_REG_PRS_IFEN, 0x1);
6806 REG_WR(bp, CFC_REG_DEBUG0, 0x0);
3196a88a 6807 REG_WR(bp, NIG_REG_PRS_REQ_IN_EN, 0x1);
a2fbb9ea
ET
6808
6809 DP(NETIF_MSG_HW, "done\n");
6810
6811 return 0; /* OK */
6812}
6813
4a33bc03 6814static void bnx2x_enable_blocks_attention(struct bnx2x *bp)
a2fbb9ea 6815{
b343d002
YM
6816 u32 val;
6817
a2fbb9ea 6818 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
619c5cb6 6819 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
6820 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0x40);
6821 else
6822 REG_WR(bp, PXP_REG_PXP_INT_MASK_1, 0);
a2fbb9ea
ET
6823 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
6824 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
f2e0899f
DK
6825 /*
6826 * mask read length error interrupts in brb for parser
6827 * (parsing unit and 'checksum and crc' unit)
6828 * these errors are legal (PU reads fixed length and CAC can cause
6829 * read length error on truncated packets)
6830 */
6831 REG_WR(bp, BRB1_REG_BRB1_INT_MASK, 0xFC00);
a2fbb9ea
ET
6832 REG_WR(bp, QM_REG_QM_INT_MASK, 0);
6833 REG_WR(bp, TM_REG_TM_INT_MASK, 0);
6834 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_0, 0);
6835 REG_WR(bp, XSDM_REG_XSDM_INT_MASK_1, 0);
6836 REG_WR(bp, XCM_REG_XCM_INT_MASK, 0);
34f80b04
EG
6837/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_0, 0); */
6838/* REG_WR(bp, XSEM_REG_XSEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6839 REG_WR(bp, USDM_REG_USDM_INT_MASK_0, 0);
6840 REG_WR(bp, USDM_REG_USDM_INT_MASK_1, 0);
6841 REG_WR(bp, UCM_REG_UCM_INT_MASK, 0);
34f80b04
EG
6842/* REG_WR(bp, USEM_REG_USEM_INT_MASK_0, 0); */
6843/* REG_WR(bp, USEM_REG_USEM_INT_MASK_1, 0); */
a2fbb9ea
ET
6844 REG_WR(bp, GRCBASE_UPB + PB_REG_PB_INT_MASK, 0);
6845 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_0, 0);
6846 REG_WR(bp, CSDM_REG_CSDM_INT_MASK_1, 0);
6847 REG_WR(bp, CCM_REG_CCM_INT_MASK, 0);
34f80b04
EG
6848/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_0, 0); */
6849/* REG_WR(bp, CSEM_REG_CSEM_INT_MASK_1, 0); */
f85582f8 6850
b343d002
YM
6851 val = PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT |
6852 PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF |
6853 PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN;
6854 if (!CHIP_IS_E1x(bp))
6855 val |= PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED |
6856 PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED;
6857 REG_WR(bp, PXP2_REG_PXP2_INT_MASK_0, val);
6858
a2fbb9ea
ET
6859 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_0, 0);
6860 REG_WR(bp, TSDM_REG_TSDM_INT_MASK_1, 0);
6861 REG_WR(bp, TCM_REG_TCM_INT_MASK, 0);
34f80b04 6862/* REG_WR(bp, TSEM_REG_TSEM_INT_MASK_0, 0); */
619c5cb6
VZ
6863
6864 if (!CHIP_IS_E1x(bp))
6865 /* enable VFC attentions: bits 11 and 12, bits 31:13 reserved */
6866 REG_WR(bp, TSEM_REG_TSEM_INT_MASK_1, 0x07ff);
6867
a2fbb9ea
ET
6868 REG_WR(bp, CDU_REG_CDU_INT_MASK, 0);
6869 REG_WR(bp, DMAE_REG_DMAE_INT_MASK, 0);
34f80b04 6870/* REG_WR(bp, MISC_REG_MISC_INT_MASK, 0); */
4a33bc03 6871 REG_WR(bp, PBF_REG_PBF_INT_MASK, 0x18); /* bit 3,4 masked */
a2fbb9ea
ET
6872}
6873
81f75bbf
EG
6874static void bnx2x_reset_common(struct bnx2x *bp)
6875{
619c5cb6
VZ
6876 u32 val = 0x1400;
6877
81f75bbf
EG
6878 /* reset_common */
6879 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
6880 0xd3ffff7f);
619c5cb6
VZ
6881
6882 if (CHIP_IS_E3(bp)) {
6883 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
6884 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
6885 }
6886
6887 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR, val);
6888}
6889
6890static void bnx2x_setup_dmae(struct bnx2x *bp)
6891{
6892 bp->dmae_ready = 0;
6893 spin_lock_init(&bp->dmae_lock);
81f75bbf
EG
6894}
6895
573f2035
EG
6896static void bnx2x_init_pxp(struct bnx2x *bp)
6897{
6898 u16 devctl;
6899 int r_order, w_order;
6900
2a80eebc 6901 pcie_capability_read_word(bp->pdev, PCI_EXP_DEVCTL, &devctl);
573f2035
EG
6902 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl);
6903 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
6904 if (bp->mrrs == -1)
6905 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12);
6906 else {
6907 DP(NETIF_MSG_HW, "force read order to %d\n", bp->mrrs);
6908 r_order = bp->mrrs;
6909 }
6910
6911 bnx2x_init_pxp_arb(bp, r_order, w_order);
6912}
fd4ef40d
EG
6913
6914static void bnx2x_setup_fan_failure_detection(struct bnx2x *bp)
6915{
2145a920 6916 int is_required;
fd4ef40d 6917 u32 val;
2145a920 6918 int port;
fd4ef40d 6919
2145a920
VZ
6920 if (BP_NOMCP(bp))
6921 return;
6922
6923 is_required = 0;
fd4ef40d
EG
6924 val = SHMEM_RD(bp, dev_info.shared_hw_config.config2) &
6925 SHARED_HW_CFG_FAN_FAILURE_MASK;
6926
6927 if (val == SHARED_HW_CFG_FAN_FAILURE_ENABLED)
6928 is_required = 1;
6929
6930 /*
6931 * The fan failure mechanism is usually related to the PHY type since
6932 * the power consumption of the board is affected by the PHY. Currently,
6933 * fan is required for most designs with SFX7101, BCM8727 and BCM8481.
6934 */
6935 else if (val == SHARED_HW_CFG_FAN_FAILURE_PHY_TYPE)
6936 for (port = PORT_0; port < PORT_MAX; port++) {
fd4ef40d 6937 is_required |=
d90d96ba
YR
6938 bnx2x_fan_failure_det_req(
6939 bp,
6940 bp->common.shmem_base,
a22f0788 6941 bp->common.shmem2_base,
d90d96ba 6942 port);
fd4ef40d
EG
6943 }
6944
6945 DP(NETIF_MSG_HW, "fan detection setting: %d\n", is_required);
6946
6947 if (is_required == 0)
6948 return;
6949
6950 /* Fan failure is indicated by SPIO 5 */
d6d99a3f 6951 bnx2x_set_spio(bp, MISC_SPIO_SPIO5, MISC_SPIO_INPUT_HI_Z);
fd4ef40d
EG
6952
6953 /* set to active low mode */
6954 val = REG_RD(bp, MISC_REG_SPIO_INT);
d6d99a3f 6955 val |= (MISC_SPIO_SPIO5 << MISC_SPIO_INT_OLD_SET_POS);
fd4ef40d
EG
6956 REG_WR(bp, MISC_REG_SPIO_INT, val);
6957
6958 /* enable interrupt to signal the IGU */
6959 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 6960 val |= MISC_SPIO_SPIO5;
fd4ef40d
EG
6961 REG_WR(bp, MISC_REG_SPIO_EVENT_EN, val);
6962}
6963
c9ee9206 6964void bnx2x_pf_disable(struct bnx2x *bp)
f2e0899f
DK
6965{
6966 u32 val = REG_RD(bp, IGU_REG_PF_CONFIGURATION);
6967 val &= ~IGU_PF_CONF_FUNC_EN;
6968
6969 REG_WR(bp, IGU_REG_PF_CONFIGURATION, val);
6970 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
6971 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 0);
6972}
6973
1191cb83 6974static void bnx2x__common_init_phy(struct bnx2x *bp)
619c5cb6
VZ
6975{
6976 u32 shmem_base[2], shmem2_base[2];
b884d95b
YR
6977 /* Avoid common init in case MFW supports LFA */
6978 if (SHMEM2_RD(bp, size) >
6979 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
6980 return;
619c5cb6
VZ
6981 shmem_base[0] = bp->common.shmem_base;
6982 shmem2_base[0] = bp->common.shmem2_base;
6983 if (!CHIP_IS_E1x(bp)) {
6984 shmem_base[1] =
6985 SHMEM2_RD(bp, other_shmem_base_addr);
6986 shmem2_base[1] =
6987 SHMEM2_RD(bp, other_shmem2_base_addr);
6988 }
6989 bnx2x_acquire_phy_lock(bp);
6990 bnx2x_common_init_phy(bp, shmem_base, shmem2_base,
6991 bp->common.chip_id);
6992 bnx2x_release_phy_lock(bp);
6993}
6994
04860eb7
MC
6995static void bnx2x_config_endianity(struct bnx2x *bp, u32 val)
6996{
6997 REG_WR(bp, PXP2_REG_RQ_QM_ENDIAN_M, val);
6998 REG_WR(bp, PXP2_REG_RQ_TM_ENDIAN_M, val);
6999 REG_WR(bp, PXP2_REG_RQ_SRC_ENDIAN_M, val);
7000 REG_WR(bp, PXP2_REG_RQ_CDU_ENDIAN_M, val);
7001 REG_WR(bp, PXP2_REG_RQ_DBG_ENDIAN_M, val);
7002
7003 /* make sure this value is 0 */
7004 REG_WR(bp, PXP2_REG_RQ_HC_ENDIAN_M, 0);
7005
7006 REG_WR(bp, PXP2_REG_RD_QM_SWAP_MODE, val);
7007 REG_WR(bp, PXP2_REG_RD_TM_SWAP_MODE, val);
7008 REG_WR(bp, PXP2_REG_RD_SRC_SWAP_MODE, val);
7009 REG_WR(bp, PXP2_REG_RD_CDURD_SWAP_MODE, val);
7010}
7011
7012static void bnx2x_set_endianity(struct bnx2x *bp)
7013{
7014#ifdef __BIG_ENDIAN
7015 bnx2x_config_endianity(bp, 1);
7016#else
7017 bnx2x_config_endianity(bp, 0);
7018#endif
7019}
7020
7021static void bnx2x_reset_endianity(struct bnx2x *bp)
7022{
7023 bnx2x_config_endianity(bp, 0);
7024}
7025
619c5cb6
VZ
7026/**
7027 * bnx2x_init_hw_common - initialize the HW at the COMMON phase.
7028 *
7029 * @bp: driver handle
7030 */
7031static int bnx2x_init_hw_common(struct bnx2x *bp)
a2fbb9ea 7032{
619c5cb6 7033 u32 val;
a2fbb9ea 7034
51c1a580 7035 DP(NETIF_MSG_HW, "starting common init func %d\n", BP_ABS_FUNC(bp));
a2fbb9ea 7036
2031bd3a 7037 /*
2de67439 7038 * take the RESET lock to protect undi_unload flow from accessing
2031bd3a
DK
7039 * registers while we're resetting the chip
7040 */
7a06a122 7041 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 7042
81f75bbf 7043 bnx2x_reset_common(bp);
34f80b04 7044 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, 0xffffffff);
a2fbb9ea 7045
619c5cb6
VZ
7046 val = 0xfffc;
7047 if (CHIP_IS_E3(bp)) {
7048 val |= MISC_REGISTERS_RESET_REG_2_MSTAT0;
7049 val |= MISC_REGISTERS_RESET_REG_2_MSTAT1;
7050 }
7051 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET, val);
7052
7a06a122 7053 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
2031bd3a 7054
619c5cb6 7055 bnx2x_init_block(bp, BLOCK_MISC, PHASE_COMMON);
a2fbb9ea 7056
619c5cb6
VZ
7057 if (!CHIP_IS_E1x(bp)) {
7058 u8 abs_func_id;
f2e0899f
DK
7059
7060 /**
7061 * 4-port mode or 2-port mode we need to turn of master-enable
7062 * for everyone, after that, turn it back on for self.
7063 * so, we disregard multi-function or not, and always disable
7064 * for all functions on the given path, this means 0,2,4,6 for
7065 * path 0 and 1,3,5,7 for path 1
7066 */
619c5cb6
VZ
7067 for (abs_func_id = BP_PATH(bp);
7068 abs_func_id < E2_FUNC_MAX*2; abs_func_id += 2) {
7069 if (abs_func_id == BP_ABS_FUNC(bp)) {
f2e0899f
DK
7070 REG_WR(bp,
7071 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER,
7072 1);
7073 continue;
7074 }
7075
619c5cb6 7076 bnx2x_pretend_func(bp, abs_func_id);
f2e0899f
DK
7077 /* clear pf enable */
7078 bnx2x_pf_disable(bp);
7079 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
7080 }
7081 }
a2fbb9ea 7082
619c5cb6 7083 bnx2x_init_block(bp, BLOCK_PXP, PHASE_COMMON);
34f80b04
EG
7084 if (CHIP_IS_E1(bp)) {
7085 /* enable HW interrupt from PXP on USDM overflow
7086 bit 16 on INT_MASK_0 */
7087 REG_WR(bp, PXP_REG_PXP_INT_MASK_0, 0);
7088 }
a2fbb9ea 7089
619c5cb6 7090 bnx2x_init_block(bp, BLOCK_PXP2, PHASE_COMMON);
34f80b04 7091 bnx2x_init_pxp(bp);
04860eb7 7092 bnx2x_set_endianity(bp);
523224a3
DK
7093 bnx2x_ilt_init_page_size(bp, INITOP_SET);
7094
34f80b04
EG
7095 if (CHIP_REV_IS_FPGA(bp) && CHIP_IS_E1H(bp))
7096 REG_WR(bp, PXP2_REG_PGL_TAGS_LIMIT, 0x1);
a2fbb9ea 7097
34f80b04
EG
7098 /* let the HW do it's magic ... */
7099 msleep(100);
7100 /* finish PXP init */
7101 val = REG_RD(bp, PXP2_REG_RQ_CFG_DONE);
7102 if (val != 1) {
7103 BNX2X_ERR("PXP2 CFG failed\n");
7104 return -EBUSY;
7105 }
7106 val = REG_RD(bp, PXP2_REG_RD_INIT_DONE);
7107 if (val != 1) {
7108 BNX2X_ERR("PXP2 RD_INIT failed\n");
7109 return -EBUSY;
7110 }
a2fbb9ea 7111
f2e0899f
DK
7112 /* Timers bug workaround E2 only. We need to set the entire ILT to
7113 * have entries with value "0" and valid bit on.
7114 * This needs to be done by the first PF that is loaded in a path
7115 * (i.e. common phase)
7116 */
619c5cb6
VZ
7117 if (!CHIP_IS_E1x(bp)) {
7118/* In E2 there is a bug in the timers block that can cause function 6 / 7
7119 * (i.e. vnic3) to start even if it is marked as "scan-off".
7120 * This occurs when a different function (func2,3) is being marked
7121 * as "scan-off". Real-life scenario for example: if a driver is being
7122 * load-unloaded while func6,7 are down. This will cause the timer to access
7123 * the ilt, translate to a logical address and send a request to read/write.
7124 * Since the ilt for the function that is down is not valid, this will cause
7125 * a translation error which is unrecoverable.
7126 * The Workaround is intended to make sure that when this happens nothing fatal
7127 * will occur. The workaround:
7128 * 1. First PF driver which loads on a path will:
7129 * a. After taking the chip out of reset, by using pretend,
7130 * it will write "0" to the following registers of
7131 * the other vnics.
7132 * REG_WR(pdev, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
7133 * REG_WR(pdev, CFC_REG_WEAK_ENABLE_PF,0);
7134 * REG_WR(pdev, CFC_REG_STRONG_ENABLE_PF,0);
7135 * And for itself it will write '1' to
7136 * PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER to enable
7137 * dmae-operations (writing to pram for example.)
7138 * note: can be done for only function 6,7 but cleaner this
7139 * way.
7140 * b. Write zero+valid to the entire ILT.
7141 * c. Init the first_timers_ilt_entry, last_timers_ilt_entry of
7142 * VNIC3 (of that port). The range allocated will be the
7143 * entire ILT. This is needed to prevent ILT range error.
7144 * 2. Any PF driver load flow:
7145 * a. ILT update with the physical addresses of the allocated
7146 * logical pages.
7147 * b. Wait 20msec. - note that this timeout is needed to make
7148 * sure there are no requests in one of the PXP internal
7149 * queues with "old" ILT addresses.
7150 * c. PF enable in the PGLC.
7151 * d. Clear the was_error of the PF in the PGLC. (could have
2de67439 7152 * occurred while driver was down)
619c5cb6
VZ
7153 * e. PF enable in the CFC (WEAK + STRONG)
7154 * f. Timers scan enable
7155 * 3. PF driver unload flow:
7156 * a. Clear the Timers scan_en.
7157 * b. Polling for scan_on=0 for that PF.
7158 * c. Clear the PF enable bit in the PXP.
7159 * d. Clear the PF enable in the CFC (WEAK + STRONG)
7160 * e. Write zero+valid to all ILT entries (The valid bit must
7161 * stay set)
7162 * f. If this is VNIC 3 of a port then also init
7163 * first_timers_ilt_entry to zero and last_timers_ilt_entry
16a5fd92 7164 * to the last entry in the ILT.
619c5cb6
VZ
7165 *
7166 * Notes:
7167 * Currently the PF error in the PGLC is non recoverable.
7168 * In the future the there will be a recovery routine for this error.
7169 * Currently attention is masked.
7170 * Having an MCP lock on the load/unload process does not guarantee that
7171 * there is no Timer disable during Func6/7 enable. This is because the
7172 * Timers scan is currently being cleared by the MCP on FLR.
7173 * Step 2.d can be done only for PF6/7 and the driver can also check if
7174 * there is error before clearing it. But the flow above is simpler and
7175 * more general.
7176 * All ILT entries are written by zero+valid and not just PF6/7
7177 * ILT entries since in the future the ILT entries allocation for
7178 * PF-s might be dynamic.
7179 */
f2e0899f
DK
7180 struct ilt_client_info ilt_cli;
7181 struct bnx2x_ilt ilt;
7182 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
7183 memset(&ilt, 0, sizeof(struct bnx2x_ilt));
7184
b595076a 7185 /* initialize dummy TM client */
f2e0899f
DK
7186 ilt_cli.start = 0;
7187 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
7188 ilt_cli.client_num = ILT_CLIENT_TM;
7189
7190 /* Step 1: set zeroes to all ilt page entries with valid bit on
7191 * Step 2: set the timers first/last ilt entry to point
7192 * to the entire range to prevent ILT range error for 3rd/4th
2de67439 7193 * vnic (this code assumes existence of the vnic)
f2e0899f
DK
7194 *
7195 * both steps performed by call to bnx2x_ilt_client_init_op()
7196 * with dummy TM client
7197 *
7198 * we must use pretend since PXP2_REG_RQ_##blk##_FIRST_ILT
7199 * and his brother are split registers
7200 */
7201 bnx2x_pretend_func(bp, (BP_PATH(bp) + 6));
7202 bnx2x_ilt_client_init_op_ilt(bp, &ilt, &ilt_cli, INITOP_CLEAR);
7203 bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
7204
7205 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN, BNX2X_PXP_DRAM_ALIGN);
7206 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_RD, BNX2X_PXP_DRAM_ALIGN);
7207 REG_WR(bp, PXP2_REG_RQ_DRAM_ALIGN_SEL, 1);
7208 }
7209
34f80b04
EG
7210 REG_WR(bp, PXP2_REG_RQ_DISABLE_INPUTS, 0);
7211 REG_WR(bp, PXP2_REG_RD_DISABLE_INPUTS, 0);
a2fbb9ea 7212
619c5cb6 7213 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7214 int factor = CHIP_REV_IS_EMUL(bp) ? 1000 :
7215 (CHIP_REV_IS_FPGA(bp) ? 400 : 0);
619c5cb6 7216 bnx2x_init_block(bp, BLOCK_PGLUE_B, PHASE_COMMON);
f2e0899f 7217
619c5cb6 7218 bnx2x_init_block(bp, BLOCK_ATC, PHASE_COMMON);
f2e0899f
DK
7219
7220 /* let the HW do it's magic ... */
7221 do {
7222 msleep(200);
7223 val = REG_RD(bp, ATC_REG_ATC_INIT_DONE);
7224 } while (factor-- && (val != 1));
7225
7226 if (val != 1) {
7227 BNX2X_ERR("ATC_INIT failed\n");
7228 return -EBUSY;
7229 }
7230 }
7231
619c5cb6 7232 bnx2x_init_block(bp, BLOCK_DMAE, PHASE_COMMON);
a2fbb9ea 7233
b56e9670
AE
7234 bnx2x_iov_init_dmae(bp);
7235
34f80b04
EG
7236 /* clean the DMAE memory */
7237 bp->dmae_ready = 1;
619c5cb6
VZ
7238 bnx2x_init_fill(bp, TSEM_REG_PRAM, 0, 8, 1);
7239
7240 bnx2x_init_block(bp, BLOCK_TCM, PHASE_COMMON);
7241
7242 bnx2x_init_block(bp, BLOCK_UCM, PHASE_COMMON);
7243
7244 bnx2x_init_block(bp, BLOCK_CCM, PHASE_COMMON);
a2fbb9ea 7245
619c5cb6 7246 bnx2x_init_block(bp, BLOCK_XCM, PHASE_COMMON);
a2fbb9ea 7247
34f80b04
EG
7248 bnx2x_read_dmae(bp, XSEM_REG_PASSIVE_BUFFER, 3);
7249 bnx2x_read_dmae(bp, CSEM_REG_PASSIVE_BUFFER, 3);
7250 bnx2x_read_dmae(bp, TSEM_REG_PASSIVE_BUFFER, 3);
7251 bnx2x_read_dmae(bp, USEM_REG_PASSIVE_BUFFER, 3);
7252
619c5cb6 7253 bnx2x_init_block(bp, BLOCK_QM, PHASE_COMMON);
37b091ba 7254
523224a3
DK
7255 /* QM queues pointers table */
7256 bnx2x_qm_init_ptr_table(bp, bp->qm_cid_count, INITOP_SET);
7257
34f80b04
EG
7258 /* soft reset pulse */
7259 REG_WR(bp, QM_REG_SOFT_RESET, 1);
7260 REG_WR(bp, QM_REG_SOFT_RESET, 0);
a2fbb9ea 7261
55c11941
MS
7262 if (CNIC_SUPPORT(bp))
7263 bnx2x_init_block(bp, BLOCK_TM, PHASE_COMMON);
a2fbb9ea 7264
619c5cb6 7265 bnx2x_init_block(bp, BLOCK_DORQ, PHASE_COMMON);
b9871bcf 7266
619c5cb6 7267 if (!CHIP_REV_IS_SLOW(bp))
34f80b04
EG
7268 /* enable hw interrupt from doorbell Q */
7269 REG_WR(bp, DORQ_REG_DORQ_INT_MASK, 0);
a2fbb9ea 7270
619c5cb6 7271 bnx2x_init_block(bp, BLOCK_BRB1, PHASE_COMMON);
f2e0899f 7272
619c5cb6 7273 bnx2x_init_block(bp, BLOCK_PRS, PHASE_COMMON);
26c8fa4d 7274 REG_WR(bp, PRS_REG_A_PRSU_20, 0xf);
619c5cb6 7275
f2e0899f 7276 if (!CHIP_IS_E1(bp))
619c5cb6 7277 REG_WR(bp, PRS_REG_E1HOV_MODE, bp->path_has_ovlan);
f85582f8 7278
a3348722
BW
7279 if (!CHIP_IS_E1x(bp) && !CHIP_IS_E3B0(bp)) {
7280 if (IS_MF_AFEX(bp)) {
7281 /* configure that VNTag and VLAN headers must be
7282 * received in afex mode
7283 */
7284 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC, 0xE);
7285 REG_WR(bp, PRS_REG_MUST_HAVE_HDRS, 0xA);
7286 REG_WR(bp, PRS_REG_HDRS_AFTER_TAG_0, 0x6);
7287 REG_WR(bp, PRS_REG_TAG_ETHERTYPE_0, 0x8926);
7288 REG_WR(bp, PRS_REG_TAG_LEN_0, 0x4);
7289 } else {
7290 /* Bit-map indicating which L2 hdrs may appear
7291 * after the basic Ethernet header
7292 */
7293 REG_WR(bp, PRS_REG_HDRS_AFTER_BASIC,
7294 bp->path_has_ovlan ? 7 : 6);
7295 }
7296 }
a2fbb9ea 7297
619c5cb6
VZ
7298 bnx2x_init_block(bp, BLOCK_TSDM, PHASE_COMMON);
7299 bnx2x_init_block(bp, BLOCK_CSDM, PHASE_COMMON);
7300 bnx2x_init_block(bp, BLOCK_USDM, PHASE_COMMON);
7301 bnx2x_init_block(bp, BLOCK_XSDM, PHASE_COMMON);
a2fbb9ea 7302
619c5cb6
VZ
7303 if (!CHIP_IS_E1x(bp)) {
7304 /* reset VFC memories */
7305 REG_WR(bp, TSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
7306 VFC_MEMORIES_RST_REG_CAM_RST |
7307 VFC_MEMORIES_RST_REG_RAM_RST);
7308 REG_WR(bp, XSEM_REG_FAST_MEMORY + VFC_REG_MEMORIES_RST,
7309 VFC_MEMORIES_RST_REG_CAM_RST |
7310 VFC_MEMORIES_RST_REG_RAM_RST);
a2fbb9ea 7311
619c5cb6
VZ
7312 msleep(20);
7313 }
a2fbb9ea 7314
619c5cb6
VZ
7315 bnx2x_init_block(bp, BLOCK_TSEM, PHASE_COMMON);
7316 bnx2x_init_block(bp, BLOCK_USEM, PHASE_COMMON);
7317 bnx2x_init_block(bp, BLOCK_CSEM, PHASE_COMMON);
7318 bnx2x_init_block(bp, BLOCK_XSEM, PHASE_COMMON);
f2e0899f 7319
34f80b04
EG
7320 /* sync semi rtc */
7321 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
7322 0x80000000);
7323 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET,
7324 0x80000000);
a2fbb9ea 7325
619c5cb6
VZ
7326 bnx2x_init_block(bp, BLOCK_UPB, PHASE_COMMON);
7327 bnx2x_init_block(bp, BLOCK_XPB, PHASE_COMMON);
7328 bnx2x_init_block(bp, BLOCK_PBF, PHASE_COMMON);
a2fbb9ea 7329
a3348722
BW
7330 if (!CHIP_IS_E1x(bp)) {
7331 if (IS_MF_AFEX(bp)) {
7332 /* configure that VNTag and VLAN headers must be
7333 * sent in afex mode
7334 */
7335 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC, 0xE);
7336 REG_WR(bp, PBF_REG_MUST_HAVE_HDRS, 0xA);
7337 REG_WR(bp, PBF_REG_HDRS_AFTER_TAG_0, 0x6);
7338 REG_WR(bp, PBF_REG_TAG_ETHERTYPE_0, 0x8926);
7339 REG_WR(bp, PBF_REG_TAG_LEN_0, 0x4);
7340 } else {
7341 REG_WR(bp, PBF_REG_HDRS_AFTER_BASIC,
7342 bp->path_has_ovlan ? 7 : 6);
7343 }
7344 }
f2e0899f 7345
34f80b04 7346 REG_WR(bp, SRC_REG_SOFT_RST, 1);
f85582f8 7347
619c5cb6
VZ
7348 bnx2x_init_block(bp, BLOCK_SRC, PHASE_COMMON);
7349
55c11941
MS
7350 if (CNIC_SUPPORT(bp)) {
7351 REG_WR(bp, SRC_REG_KEYSEARCH_0, 0x63285672);
7352 REG_WR(bp, SRC_REG_KEYSEARCH_1, 0x24b8f2cc);
7353 REG_WR(bp, SRC_REG_KEYSEARCH_2, 0x223aef9b);
7354 REG_WR(bp, SRC_REG_KEYSEARCH_3, 0x26001e3a);
7355 REG_WR(bp, SRC_REG_KEYSEARCH_4, 0x7ae91116);
7356 REG_WR(bp, SRC_REG_KEYSEARCH_5, 0x5ce5230b);
7357 REG_WR(bp, SRC_REG_KEYSEARCH_6, 0x298d8adf);
7358 REG_WR(bp, SRC_REG_KEYSEARCH_7, 0x6eb0ff09);
7359 REG_WR(bp, SRC_REG_KEYSEARCH_8, 0x1830f82f);
7360 REG_WR(bp, SRC_REG_KEYSEARCH_9, 0x01e46be7);
7361 }
34f80b04 7362 REG_WR(bp, SRC_REG_SOFT_RST, 0);
a2fbb9ea 7363
34f80b04
EG
7364 if (sizeof(union cdu_context) != 1024)
7365 /* we currently assume that a context is 1024 bytes */
51c1a580
MS
7366 dev_alert(&bp->pdev->dev,
7367 "please adjust the size of cdu_context(%ld)\n",
7368 (long)sizeof(union cdu_context));
a2fbb9ea 7369
619c5cb6 7370 bnx2x_init_block(bp, BLOCK_CDU, PHASE_COMMON);
34f80b04
EG
7371 val = (4 << 24) + (0 << 12) + 1024;
7372 REG_WR(bp, CDU_REG_CDU_GLOBAL_PARAMS, val);
a2fbb9ea 7373
619c5cb6 7374 bnx2x_init_block(bp, BLOCK_CFC, PHASE_COMMON);
34f80b04 7375 REG_WR(bp, CFC_REG_INIT_REG, 0x7FF);
8d9c5f34
EG
7376 /* enable context validation interrupt from CFC */
7377 REG_WR(bp, CFC_REG_CFC_INT_MASK, 0);
7378
7379 /* set the thresholds to prevent CFC/CDU race */
7380 REG_WR(bp, CFC_REG_DEBUG0, 0x20020000);
a2fbb9ea 7381
619c5cb6 7382 bnx2x_init_block(bp, BLOCK_HC, PHASE_COMMON);
f2e0899f 7383
619c5cb6 7384 if (!CHIP_IS_E1x(bp) && BP_NOMCP(bp))
f2e0899f
DK
7385 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x36);
7386
619c5cb6
VZ
7387 bnx2x_init_block(bp, BLOCK_IGU, PHASE_COMMON);
7388 bnx2x_init_block(bp, BLOCK_MISC_AEU, PHASE_COMMON);
a2fbb9ea 7389
34f80b04
EG
7390 /* Reset PCIE errors for debug */
7391 REG_WR(bp, 0x2814, 0xffffffff);
7392 REG_WR(bp, 0x3820, 0xffffffff);
a2fbb9ea 7393
619c5cb6 7394 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7395 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_CONTROL_5,
7396 (PXPCS_TL_CONTROL_5_ERR_UNSPPORT1 |
7397 PXPCS_TL_CONTROL_5_ERR_UNSPPORT));
7398 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC345_STAT,
7399 (PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4 |
7400 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3 |
7401 PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2));
7402 REG_WR(bp, PCICFG_OFFSET + PXPCS_TL_FUNC678_STAT,
7403 (PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7 |
7404 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6 |
7405 PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5));
7406 }
7407
619c5cb6 7408 bnx2x_init_block(bp, BLOCK_NIG, PHASE_COMMON);
f2e0899f 7409 if (!CHIP_IS_E1(bp)) {
619c5cb6
VZ
7410 /* in E3 this done in per-port section */
7411 if (!CHIP_IS_E3(bp))
7412 REG_WR(bp, NIG_REG_LLH_MF_MODE, IS_MF(bp));
f2e0899f 7413 }
619c5cb6
VZ
7414 if (CHIP_IS_E1H(bp))
7415 /* not applicable for E2 (and above ...) */
7416 REG_WR(bp, NIG_REG_LLH_E1HOV_MODE, IS_MF_SD(bp));
34f80b04
EG
7417
7418 if (CHIP_REV_IS_SLOW(bp))
7419 msleep(200);
7420
7421 /* finish CFC init */
7422 val = reg_poll(bp, CFC_REG_LL_INIT_DONE, 1, 100, 10);
7423 if (val != 1) {
7424 BNX2X_ERR("CFC LL_INIT failed\n");
7425 return -EBUSY;
7426 }
7427 val = reg_poll(bp, CFC_REG_AC_INIT_DONE, 1, 100, 10);
7428 if (val != 1) {
7429 BNX2X_ERR("CFC AC_INIT failed\n");
7430 return -EBUSY;
7431 }
7432 val = reg_poll(bp, CFC_REG_CAM_INIT_DONE, 1, 100, 10);
7433 if (val != 1) {
7434 BNX2X_ERR("CFC CAM_INIT failed\n");
7435 return -EBUSY;
7436 }
7437 REG_WR(bp, CFC_REG_DEBUG0, 0);
f1410647 7438
f2e0899f
DK
7439 if (CHIP_IS_E1(bp)) {
7440 /* read NIG statistic
7441 to see if this is our first up since powerup */
7442 bnx2x_read_dmae(bp, NIG_REG_STAT2_BRB_OCTET, 2);
7443 val = *bnx2x_sp(bp, wb_data[0]);
34f80b04 7444
f2e0899f
DK
7445 /* do internal memory self test */
7446 if ((val == 0) && bnx2x_int_mem_test(bp)) {
7447 BNX2X_ERR("internal mem self test failed\n");
7448 return -EBUSY;
7449 }
34f80b04
EG
7450 }
7451
fd4ef40d
EG
7452 bnx2x_setup_fan_failure_detection(bp);
7453
34f80b04
EG
7454 /* clear PXP2 attentions */
7455 REG_RD(bp, PXP2_REG_PXP2_INT_STS_CLR_0);
a2fbb9ea 7456
4a33bc03 7457 bnx2x_enable_blocks_attention(bp);
c9ee9206 7458 bnx2x_enable_blocks_parity(bp);
a2fbb9ea 7459
6bbca910 7460 if (!BP_NOMCP(bp)) {
619c5cb6
VZ
7461 if (CHIP_IS_E1x(bp))
7462 bnx2x__common_init_phy(bp);
6bbca910
YR
7463 } else
7464 BNX2X_ERR("Bootcode is missing - can not initialize link\n");
7465
230d00eb
YM
7466 if (SHMEM2_HAS(bp, netproc_fw_ver))
7467 SHMEM2_WR(bp, netproc_fw_ver, REG_RD(bp, XSEM_REG_PRAM));
7468
34f80b04
EG
7469 return 0;
7470}
a2fbb9ea 7471
619c5cb6
VZ
7472/**
7473 * bnx2x_init_hw_common_chip - init HW at the COMMON_CHIP phase.
7474 *
7475 * @bp: driver handle
7476 */
7477static int bnx2x_init_hw_common_chip(struct bnx2x *bp)
7478{
7479 int rc = bnx2x_init_hw_common(bp);
7480
7481 if (rc)
7482 return rc;
7483
7484 /* In E2 2-PORT mode, same ext phy is used for the two paths */
7485 if (!BP_NOMCP(bp))
7486 bnx2x__common_init_phy(bp);
7487
7488 return 0;
7489}
7490
523224a3 7491static int bnx2x_init_hw_port(struct bnx2x *bp)
34f80b04
EG
7492{
7493 int port = BP_PORT(bp);
619c5cb6 7494 int init_phase = port ? PHASE_PORT1 : PHASE_PORT0;
1c06328c 7495 u32 low, high;
4293b9f5 7496 u32 val, reg;
a2fbb9ea 7497
51c1a580 7498 DP(NETIF_MSG_HW, "starting port init port %d\n", port);
34f80b04
EG
7499
7500 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
a2fbb9ea 7501
619c5cb6
VZ
7502 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
7503 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7504 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
ca00392c 7505
f2e0899f
DK
7506 /* Timers bug workaround: disables the pf_master bit in pglue at
7507 * common phase, we need to enable it here before any dmae access are
7508 * attempted. Therefore we manually added the enable-master to the
7509 * port phase (it also happens in the function phase)
7510 */
619c5cb6 7511 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
7512 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
7513
619c5cb6
VZ
7514 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
7515 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
7516 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
7517 bnx2x_init_block(bp, BLOCK_QM, init_phase);
7518
7519 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
7520 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
7521 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
7522 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
a2fbb9ea 7523
523224a3
DK
7524 /* QM cid (connection) count */
7525 bnx2x_qm_init_cid_count(bp, bp->qm_cid_count, INITOP_SET);
a2fbb9ea 7526
55c11941
MS
7527 if (CNIC_SUPPORT(bp)) {
7528 bnx2x_init_block(bp, BLOCK_TM, init_phase);
7529 REG_WR(bp, TM_REG_LIN0_SCAN_TIME + port*4, 20);
7530 REG_WR(bp, TM_REG_LIN0_MAX_ACTIVE_CID + port*4, 31);
7531 }
cdaa7cb8 7532
619c5cb6 7533 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
f2e0899f 7534
2b674047
DK
7535 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
7536
f2e0899f 7537 if (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp)) {
619c5cb6
VZ
7538
7539 if (IS_MF(bp))
7540 low = ((bp->flags & ONE_PORT_FLAG) ? 160 : 246);
7541 else if (bp->dev->mtu > 4096) {
7542 if (bp->flags & ONE_PORT_FLAG)
7543 low = 160;
7544 else {
7545 val = bp->dev->mtu;
7546 /* (24*1024 + val*4)/256 */
7547 low = 96 + (val/64) +
7548 ((val % 64) ? 1 : 0);
7549 }
7550 } else
7551 low = ((bp->flags & ONE_PORT_FLAG) ? 80 : 160);
7552 high = low + 56; /* 14*1024/256 */
f2e0899f
DK
7553 REG_WR(bp, BRB1_REG_PAUSE_LOW_THRESHOLD_0 + port*4, low);
7554 REG_WR(bp, BRB1_REG_PAUSE_HIGH_THRESHOLD_0 + port*4, high);
1c06328c 7555 }
1c06328c 7556
619c5cb6
VZ
7557 if (CHIP_MODE_IS_4_PORT(bp))
7558 REG_WR(bp, (BP_PORT(bp) ?
7559 BRB1_REG_MAC_GUARANTIED_1 :
7560 BRB1_REG_MAC_GUARANTIED_0), 40);
1c06328c 7561
619c5cb6 7562 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
a3348722
BW
7563 if (CHIP_IS_E3B0(bp)) {
7564 if (IS_MF_AFEX(bp)) {
7565 /* configure headers for AFEX mode */
7566 REG_WR(bp, BP_PORT(bp) ?
7567 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
7568 PRS_REG_HDRS_AFTER_BASIC_PORT_0, 0xE);
7569 REG_WR(bp, BP_PORT(bp) ?
7570 PRS_REG_HDRS_AFTER_TAG_0_PORT_1 :
7571 PRS_REG_HDRS_AFTER_TAG_0_PORT_0, 0x6);
7572 REG_WR(bp, BP_PORT(bp) ?
7573 PRS_REG_MUST_HAVE_HDRS_PORT_1 :
7574 PRS_REG_MUST_HAVE_HDRS_PORT_0, 0xA);
7575 } else {
7576 /* Ovlan exists only if we are in multi-function +
7577 * switch-dependent mode, in switch-independent there
7578 * is no ovlan headers
7579 */
7580 REG_WR(bp, BP_PORT(bp) ?
7581 PRS_REG_HDRS_AFTER_BASIC_PORT_1 :
7582 PRS_REG_HDRS_AFTER_BASIC_PORT_0,
7583 (bp->path_has_ovlan ? 7 : 6));
7584 }
7585 }
356e2385 7586
619c5cb6
VZ
7587 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
7588 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
7589 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
7590 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
356e2385 7591
619c5cb6
VZ
7592 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
7593 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
7594 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
7595 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
34f80b04 7596
619c5cb6
VZ
7597 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
7598 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
a2fbb9ea 7599
619c5cb6
VZ
7600 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
7601
7602 if (CHIP_IS_E1x(bp)) {
f2e0899f
DK
7603 /* configure PBF to work without PAUSE mtu 9000 */
7604 REG_WR(bp, PBF_REG_P0_PAUSE_ENABLE + port*4, 0);
a2fbb9ea 7605
f2e0899f
DK
7606 /* update threshold */
7607 REG_WR(bp, PBF_REG_P0_ARB_THRSH + port*4, (9040/16));
7608 /* update init credit */
7609 REG_WR(bp, PBF_REG_P0_INIT_CRD + port*4, (9040/16) + 553 - 22);
a2fbb9ea 7610
f2e0899f
DK
7611 /* probe changes */
7612 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 1);
7613 udelay(50);
7614 REG_WR(bp, PBF_REG_INIT_P0 + port*4, 0);
7615 }
a2fbb9ea 7616
55c11941
MS
7617 if (CNIC_SUPPORT(bp))
7618 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
7619
619c5cb6
VZ
7620 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
7621 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04
EG
7622
7623 if (CHIP_IS_E1(bp)) {
7624 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
7625 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
7626 }
619c5cb6 7627 bnx2x_init_block(bp, BLOCK_HC, init_phase);
34f80b04 7628
619c5cb6 7629 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 7630
619c5cb6 7631 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
34f80b04 7632 /* init aeu_mask_attn_func_0/1:
16a5fd92
YM
7633 * - SF mode: bits 3-7 are masked. Only bits 0-2 are in use
7634 * - MF mode: bit 3 is masked. Bits 0-2 are in use as in SF
34f80b04 7635 * bits 4-7 are used for "per vn group attention" */
e4901dde
VZ
7636 val = IS_MF(bp) ? 0xF7 : 0x7;
7637 /* Enable DCBX attention for all but E1 */
7638 val |= CHIP_IS_E1(bp) ? 0 : 0x10;
7639 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, val);
34f80b04 7640
4293b9f5
DK
7641 /* SCPAD_PARITY should NOT trigger close the gates */
7642 reg = port ? MISC_REG_AEU_ENABLE4_NIG_1 : MISC_REG_AEU_ENABLE4_NIG_0;
7643 REG_WR(bp, reg,
7644 REG_RD(bp, reg) &
7645 ~AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY);
7646
7647 reg = port ? MISC_REG_AEU_ENABLE4_PXP_1 : MISC_REG_AEU_ENABLE4_PXP_0;
7648 REG_WR(bp, reg,
7649 REG_RD(bp, reg) &
7650 ~AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY);
7651
619c5cb6
VZ
7652 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
7653
7654 if (!CHIP_IS_E1x(bp)) {
7655 /* Bit-map indicating which L2 hdrs may appear after the
7656 * basic Ethernet header
7657 */
a3348722
BW
7658 if (IS_MF_AFEX(bp))
7659 REG_WR(bp, BP_PORT(bp) ?
7660 NIG_REG_P1_HDRS_AFTER_BASIC :
7661 NIG_REG_P0_HDRS_AFTER_BASIC, 0xE);
7662 else
7663 REG_WR(bp, BP_PORT(bp) ?
7664 NIG_REG_P1_HDRS_AFTER_BASIC :
7665 NIG_REG_P0_HDRS_AFTER_BASIC,
7666 IS_MF_SD(bp) ? 7 : 6);
619c5cb6
VZ
7667
7668 if (CHIP_IS_E3(bp))
7669 REG_WR(bp, BP_PORT(bp) ?
7670 NIG_REG_LLH1_MF_MODE :
7671 NIG_REG_LLH_MF_MODE, IS_MF(bp));
7672 }
7673 if (!CHIP_IS_E3(bp))
7674 REG_WR(bp, NIG_REG_XGXS_SERDES0_MODE_SEL + port*4, 1);
34f80b04 7675
f2e0899f 7676 if (!CHIP_IS_E1(bp)) {
fb3bff17 7677 /* 0x2 disable mf_ov, 0x1 enable */
34f80b04 7678 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK_MF + port*4,
0793f83f 7679 (IS_MF_SD(bp) ? 0x1 : 0x2));
34f80b04 7680
619c5cb6 7681 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7682 val = 0;
7683 switch (bp->mf_mode) {
7684 case MULTI_FUNCTION_SD:
7685 val = 1;
7686 break;
7687 case MULTI_FUNCTION_SI:
a3348722 7688 case MULTI_FUNCTION_AFEX:
f2e0899f
DK
7689 val = 2;
7690 break;
7691 }
7692
7693 REG_WR(bp, (BP_PORT(bp) ? NIG_REG_LLH1_CLS_TYPE :
7694 NIG_REG_LLH0_CLS_TYPE), val);
7695 }
1c06328c
EG
7696 {
7697 REG_WR(bp, NIG_REG_LLFC_ENABLE_0 + port*4, 0);
7698 REG_WR(bp, NIG_REG_LLFC_OUT_EN_0 + port*4, 0);
7699 REG_WR(bp, NIG_REG_PAUSE_ENABLE_0 + port*4, 1);
7700 }
34f80b04
EG
7701 }
7702
619c5cb6
VZ
7703 /* If SPIO5 is set to generate interrupts, enable it for this port */
7704 val = REG_RD(bp, MISC_REG_SPIO_EVENT_EN);
d6d99a3f 7705 if (val & MISC_SPIO_SPIO5) {
4d295db0
EG
7706 u32 reg_addr = (port ? MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0 :
7707 MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0);
7708 val = REG_RD(bp, reg_addr);
f1410647 7709 val |= AEU_INPUTS_ATTN_BITS_SPIO5;
4d295db0 7710 REG_WR(bp, reg_addr, val);
f1410647 7711 }
a2fbb9ea 7712
34f80b04
EG
7713 return 0;
7714}
7715
34f80b04
EG
7716static void bnx2x_ilt_wr(struct bnx2x *bp, u32 index, dma_addr_t addr)
7717{
7718 int reg;
32d68de1 7719 u32 wb_write[2];
34f80b04 7720
f2e0899f 7721 if (CHIP_IS_E1(bp))
34f80b04 7722 reg = PXP2_REG_RQ_ONCHIP_AT + index*8;
f2e0899f
DK
7723 else
7724 reg = PXP2_REG_RQ_ONCHIP_AT_B0 + index*8;
34f80b04 7725
32d68de1
YM
7726 wb_write[0] = ONCHIP_ADDR1(addr);
7727 wb_write[1] = ONCHIP_ADDR2(addr);
7728 REG_WR_DMAE(bp, reg, wb_write, 2);
34f80b04
EG
7729}
7730
b56e9670 7731void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func, u8 idu_sb_id, bool is_pf)
1191cb83
ED
7732{
7733 u32 data, ctl, cnt = 100;
7734 u32 igu_addr_data = IGU_REG_COMMAND_REG_32LSB_DATA;
7735 u32 igu_addr_ctl = IGU_REG_COMMAND_REG_CTRL;
7736 u32 igu_addr_ack = IGU_REG_CSTORM_TYPE_0_SB_CLEANUP + (idu_sb_id/32)*4;
7737 u32 sb_bit = 1 << (idu_sb_id%32);
b56e9670 7738 u32 func_encode = func | (is_pf ? 1 : 0) << IGU_FID_ENCODE_IS_PF_SHIFT;
1191cb83
ED
7739 u32 addr_encode = IGU_CMD_E2_PROD_UPD_BASE + idu_sb_id;
7740
7741 /* Not supported in BC mode */
7742 if (CHIP_INT_MODE_IS_BC(bp))
7743 return;
7744
7745 data = (IGU_USE_REGISTER_cstorm_type_0_sb_cleanup
7746 << IGU_REGULAR_CLEANUP_TYPE_SHIFT) |
7747 IGU_REGULAR_CLEANUP_SET |
7748 IGU_REGULAR_BCLEANUP;
7749
7750 ctl = addr_encode << IGU_CTRL_REG_ADDRESS_SHIFT |
7751 func_encode << IGU_CTRL_REG_FID_SHIFT |
7752 IGU_CTRL_CMD_TYPE_WR << IGU_CTRL_REG_TYPE_SHIFT;
7753
7754 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7755 data, igu_addr_data);
7756 REG_WR(bp, igu_addr_data, data);
7757 mmiowb();
7758 barrier();
7759 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
7760 ctl, igu_addr_ctl);
7761 REG_WR(bp, igu_addr_ctl, ctl);
7762 mmiowb();
7763 barrier();
7764
7765 /* wait for clean up to finish */
7766 while (!(REG_RD(bp, igu_addr_ack) & sb_bit) && --cnt)
7767 msleep(20);
7768
1191cb83
ED
7769 if (!(REG_RD(bp, igu_addr_ack) & sb_bit)) {
7770 DP(NETIF_MSG_HW,
7771 "Unable to finish IGU cleanup: idu_sb_id %d offset %d bit %d (cnt %d)\n",
7772 idu_sb_id, idu_sb_id/32, idu_sb_id%32, cnt);
7773 }
7774}
7775
7776static void bnx2x_igu_clear_sb(struct bnx2x *bp, u8 idu_sb_id)
f2e0899f 7777{
619c5cb6 7778 bnx2x_igu_clear_sb_gen(bp, BP_FUNC(bp), idu_sb_id, true /*PF*/);
f2e0899f
DK
7779}
7780
1191cb83 7781static void bnx2x_clear_func_ilt(struct bnx2x *bp, u32 func)
f2e0899f
DK
7782{
7783 u32 i, base = FUNC_ILT_BASE(func);
7784 for (i = base; i < base + ILT_PER_FUNC; i++)
7785 bnx2x_ilt_wr(bp, i, 0);
7786}
7787
910cc727 7788static void bnx2x_init_searcher(struct bnx2x *bp)
55c11941
MS
7789{
7790 int port = BP_PORT(bp);
7791 bnx2x_src_init_t2(bp, bp->t2, bp->t2_mapping, SRC_CONN_NUM);
7792 /* T1 hash bits value determines the T1 number of entries */
7793 REG_WR(bp, SRC_REG_NUMBER_HASH_BITS0 + port*4, SRC_HASH_BITS);
7794}
7795
7796static inline int bnx2x_func_switch_update(struct bnx2x *bp, int suspend)
7797{
7798 int rc;
7799 struct bnx2x_func_state_params func_params = {NULL};
7800 struct bnx2x_func_switch_update_params *switch_update_params =
7801 &func_params.params.switch_update;
7802
7803 /* Prepare parameters for function state transitions */
7804 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
7805 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
7806
7807 func_params.f_obj = &bp->func_obj;
7808 func_params.cmd = BNX2X_F_CMD_SWITCH_UPDATE;
7809
7810 /* Function parameters */
e42780b6
DK
7811 __set_bit(BNX2X_F_UPDATE_TX_SWITCH_SUSPEND_CHNG,
7812 &switch_update_params->changes);
7813 if (suspend)
7814 __set_bit(BNX2X_F_UPDATE_TX_SWITCH_SUSPEND,
7815 &switch_update_params->changes);
55c11941
MS
7816
7817 rc = bnx2x_func_state_change(bp, &func_params);
7818
7819 return rc;
7820}
7821
910cc727 7822static int bnx2x_reset_nic_mode(struct bnx2x *bp)
55c11941
MS
7823{
7824 int rc, i, port = BP_PORT(bp);
7825 int vlan_en = 0, mac_en[NUM_MACS];
7826
55c11941
MS
7827 /* Close input from network */
7828 if (bp->mf_mode == SINGLE_FUNCTION) {
7829 bnx2x_set_rx_filter(&bp->link_params, 0);
7830 } else {
7831 vlan_en = REG_RD(bp, port ? NIG_REG_LLH1_FUNC_EN :
7832 NIG_REG_LLH0_FUNC_EN);
7833 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7834 NIG_REG_LLH0_FUNC_EN, 0);
7835 for (i = 0; i < NUM_MACS; i++) {
7836 mac_en[i] = REG_RD(bp, port ?
7837 (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7838 4 * i) :
7839 (NIG_REG_LLH0_FUNC_MEM_ENABLE +
7840 4 * i));
7841 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7842 4 * i) :
7843 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i), 0);
7844 }
7845 }
7846
7847 /* Close BMC to host */
7848 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7849 NIG_REG_P1_TX_MNG_HOST_ENABLE, 0);
7850
7851 /* Suspend Tx switching to the PF. Completion of this ramrod
7852 * further guarantees that all the packets of that PF / child
7853 * VFs in BRB were processed by the Parser, so it is safe to
7854 * change the NIC_MODE register.
7855 */
7856 rc = bnx2x_func_switch_update(bp, 1);
7857 if (rc) {
7858 BNX2X_ERR("Can't suspend tx-switching!\n");
7859 return rc;
7860 }
7861
7862 /* Change NIC_MODE register */
7863 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7864
7865 /* Open input from network */
7866 if (bp->mf_mode == SINGLE_FUNCTION) {
7867 bnx2x_set_rx_filter(&bp->link_params, 1);
7868 } else {
7869 REG_WR(bp, port ? NIG_REG_LLH1_FUNC_EN :
7870 NIG_REG_LLH0_FUNC_EN, vlan_en);
7871 for (i = 0; i < NUM_MACS; i++) {
7872 REG_WR(bp, port ? (NIG_REG_LLH1_FUNC_MEM_ENABLE +
7873 4 * i) :
7874 (NIG_REG_LLH0_FUNC_MEM_ENABLE + 4 * i),
7875 mac_en[i]);
7876 }
7877 }
7878
7879 /* Enable BMC to host */
7880 REG_WR(bp, port ? NIG_REG_P0_TX_MNG_HOST_ENABLE :
7881 NIG_REG_P1_TX_MNG_HOST_ENABLE, 1);
7882
7883 /* Resume Tx switching to the PF */
7884 rc = bnx2x_func_switch_update(bp, 0);
7885 if (rc) {
7886 BNX2X_ERR("Can't resume tx-switching!\n");
7887 return rc;
7888 }
7889
7890 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7891 return 0;
7892}
7893
7894int bnx2x_init_hw_func_cnic(struct bnx2x *bp)
7895{
7896 int rc;
7897
7898 bnx2x_ilt_init_op_cnic(bp, INITOP_SET);
7899
7900 if (CONFIGURE_NIC_MODE(bp)) {
16a5fd92 7901 /* Configure searcher as part of function hw init */
55c11941
MS
7902 bnx2x_init_searcher(bp);
7903
7904 /* Reset NIC mode */
7905 rc = bnx2x_reset_nic_mode(bp);
7906 if (rc)
7907 BNX2X_ERR("Can't change NIC mode!\n");
7908 return rc;
7909 }
7910
7911 return 0;
7912}
7913
da254fbc
YM
7914/* previous driver DMAE transaction may have occurred when pre-boot stage ended
7915 * and boot began, or when kdump kernel was loaded. Either case would invalidate
7916 * the addresses of the transaction, resulting in was-error bit set in the pci
7917 * causing all hw-to-host pcie transactions to timeout. If this happened we want
7918 * to clear the interrupt which detected this from the pglueb and the was done
7919 * bit
7920 */
7921static void bnx2x_clean_pglue_errors(struct bnx2x *bp)
7922{
7923 if (!CHIP_IS_E1x(bp))
7924 REG_WR(bp, PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR,
7925 1 << BP_ABS_FUNC(bp));
7926}
7927
523224a3 7928static int bnx2x_init_hw_func(struct bnx2x *bp)
34f80b04
EG
7929{
7930 int port = BP_PORT(bp);
7931 int func = BP_FUNC(bp);
619c5cb6 7932 int init_phase = PHASE_PF0 + func;
523224a3
DK
7933 struct bnx2x_ilt *ilt = BP_ILT(bp);
7934 u16 cdu_ilt_start;
8badd27a 7935 u32 addr, val;
f4a66897 7936 u32 main_mem_base, main_mem_size, main_mem_prty_clr;
89db4ad8 7937 int i, main_mem_width, rc;
34f80b04 7938
51c1a580 7939 DP(NETIF_MSG_HW, "starting func init func %d\n", func);
34f80b04 7940
619c5cb6 7941 /* FLR cleanup - hmmm */
89db4ad8
AE
7942 if (!CHIP_IS_E1x(bp)) {
7943 rc = bnx2x_pf_flr_clnup(bp);
04c46736
YM
7944 if (rc) {
7945 bnx2x_fw_dump(bp);
89db4ad8 7946 return rc;
04c46736 7947 }
89db4ad8 7948 }
619c5cb6 7949
8badd27a 7950 /* set MSI reconfigure capability */
f2e0899f
DK
7951 if (bp->common.int_block == INT_BLOCK_HC) {
7952 addr = (port ? HC_REG_CONFIG_1 : HC_REG_CONFIG_0);
7953 val = REG_RD(bp, addr);
7954 val |= HC_CONFIG_0_REG_MSI_ATTN_EN_0;
7955 REG_WR(bp, addr, val);
7956 }
8badd27a 7957
619c5cb6
VZ
7958 bnx2x_init_block(bp, BLOCK_PXP, init_phase);
7959 bnx2x_init_block(bp, BLOCK_PXP2, init_phase);
7960
523224a3
DK
7961 ilt = BP_ILT(bp);
7962 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
37b091ba 7963
290ca2bb
AE
7964 if (IS_SRIOV(bp))
7965 cdu_ilt_start += BNX2X_FIRST_VF_CID/ILT_PAGE_CIDS;
7966 cdu_ilt_start = bnx2x_iov_init_ilt(bp, cdu_ilt_start);
7967
7968 /* since BNX2X_FIRST_VF_CID > 0 the PF L2 cids precedes
7969 * those of the VFs, so start line should be reset
7970 */
7971 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start;
523224a3 7972 for (i = 0; i < L2_ILT_LINES(bp); i++) {
a052997e 7973 ilt->lines[cdu_ilt_start + i].page = bp->context[i].vcxt;
523224a3 7974 ilt->lines[cdu_ilt_start + i].page_mapping =
a052997e
MS
7975 bp->context[i].cxt_mapping;
7976 ilt->lines[cdu_ilt_start + i].size = bp->context[i].size;
37b091ba 7977 }
290ca2bb 7978
523224a3 7979 bnx2x_ilt_init_op(bp, INITOP_SET);
f85582f8 7980
55c11941
MS
7981 if (!CONFIGURE_NIC_MODE(bp)) {
7982 bnx2x_init_searcher(bp);
7983 REG_WR(bp, PRS_REG_NIC_MODE, 0);
7984 DP(NETIF_MSG_IFUP, "NIC MODE disabled\n");
7985 } else {
7986 /* Set NIC mode */
7987 REG_WR(bp, PRS_REG_NIC_MODE, 1);
6bf07b8e 7988 DP(NETIF_MSG_IFUP, "NIC MODE configured\n");
55c11941 7989 }
37b091ba 7990
619c5cb6 7991 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
7992 u32 pf_conf = IGU_PF_CONF_FUNC_EN;
7993
7994 /* Turn on a single ISR mode in IGU if driver is going to use
7995 * INT#x or MSI
7996 */
7997 if (!(bp->flags & USING_MSIX_FLAG))
7998 pf_conf |= IGU_PF_CONF_SINGLE_ISR_EN;
7999 /*
8000 * Timers workaround bug: function init part.
8001 * Need to wait 20msec after initializing ILT,
8002 * needed to make sure there are no requests in
8003 * one of the PXP internal queues with "old" ILT addresses
8004 */
8005 msleep(20);
8006 /*
8007 * Master enable - Due to WB DMAE writes performed before this
8008 * register is re-initialized as part of the regular function
8009 * init
8010 */
8011 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 1);
8012 /* Enable the function in IGU */
8013 REG_WR(bp, IGU_REG_PF_CONFIGURATION, pf_conf);
8014 }
8015
523224a3 8016 bp->dmae_ready = 1;
34f80b04 8017
619c5cb6 8018 bnx2x_init_block(bp, BLOCK_PGLUE_B, init_phase);
523224a3 8019
da254fbc 8020 bnx2x_clean_pglue_errors(bp);
f2e0899f 8021
619c5cb6
VZ
8022 bnx2x_init_block(bp, BLOCK_ATC, init_phase);
8023 bnx2x_init_block(bp, BLOCK_DMAE, init_phase);
8024 bnx2x_init_block(bp, BLOCK_NIG, init_phase);
8025 bnx2x_init_block(bp, BLOCK_SRC, init_phase);
8026 bnx2x_init_block(bp, BLOCK_MISC, init_phase);
8027 bnx2x_init_block(bp, BLOCK_TCM, init_phase);
8028 bnx2x_init_block(bp, BLOCK_UCM, init_phase);
8029 bnx2x_init_block(bp, BLOCK_CCM, init_phase);
8030 bnx2x_init_block(bp, BLOCK_XCM, init_phase);
8031 bnx2x_init_block(bp, BLOCK_TSEM, init_phase);
8032 bnx2x_init_block(bp, BLOCK_USEM, init_phase);
8033 bnx2x_init_block(bp, BLOCK_CSEM, init_phase);
8034 bnx2x_init_block(bp, BLOCK_XSEM, init_phase);
8035
8036 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
8037 REG_WR(bp, QM_REG_PF_EN, 1);
8038
619c5cb6
VZ
8039 if (!CHIP_IS_E1x(bp)) {
8040 REG_WR(bp, TSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
8041 REG_WR(bp, USEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
8042 REG_WR(bp, CSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
8043 REG_WR(bp, XSEM_REG_VFPF_ERR_NUM, BNX2X_MAX_NUM_OF_VFS + func);
8044 }
8045 bnx2x_init_block(bp, BLOCK_QM, init_phase);
8046
8047 bnx2x_init_block(bp, BLOCK_TM, init_phase);
8048 bnx2x_init_block(bp, BLOCK_DORQ, init_phase);
c19d65c9 8049 REG_WR(bp, DORQ_REG_MODE_ACT, 1); /* no dpm */
b56e9670
AE
8050
8051 bnx2x_iov_init_dq(bp);
8052
619c5cb6
VZ
8053 bnx2x_init_block(bp, BLOCK_BRB1, init_phase);
8054 bnx2x_init_block(bp, BLOCK_PRS, init_phase);
8055 bnx2x_init_block(bp, BLOCK_TSDM, init_phase);
8056 bnx2x_init_block(bp, BLOCK_CSDM, init_phase);
8057 bnx2x_init_block(bp, BLOCK_USDM, init_phase);
8058 bnx2x_init_block(bp, BLOCK_XSDM, init_phase);
8059 bnx2x_init_block(bp, BLOCK_UPB, init_phase);
8060 bnx2x_init_block(bp, BLOCK_XPB, init_phase);
8061 bnx2x_init_block(bp, BLOCK_PBF, init_phase);
8062 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
8063 REG_WR(bp, PBF_REG_DISABLE_PF, 0);
8064
619c5cb6 8065 bnx2x_init_block(bp, BLOCK_CDU, init_phase);
523224a3 8066
619c5cb6 8067 bnx2x_init_block(bp, BLOCK_CFC, init_phase);
34f80b04 8068
619c5cb6 8069 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
8070 REG_WR(bp, CFC_REG_WEAK_ENABLE_PF, 1);
8071
fb3bff17 8072 if (IS_MF(bp)) {
7609647e
YM
8073 if (!(IS_MF_UFP(bp) && BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp))) {
8074 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port * 8, 1);
8075 REG_WR(bp, NIG_REG_LLH0_FUNC_VLAN_ID + port * 8,
8076 bp->mf_ov);
8077 }
34f80b04
EG
8078 }
8079
619c5cb6 8080 bnx2x_init_block(bp, BLOCK_MISC_AEU, init_phase);
523224a3 8081
34f80b04 8082 /* HC init per function */
f2e0899f
DK
8083 if (bp->common.int_block == INT_BLOCK_HC) {
8084 if (CHIP_IS_E1H(bp)) {
8085 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
8086
8087 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
8088 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
8089 }
619c5cb6 8090 bnx2x_init_block(bp, BLOCK_HC, init_phase);
f2e0899f
DK
8091
8092 } else {
8093 int num_segs, sb_idx, prod_offset;
8094
34f80b04
EG
8095 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + func*4, 0);
8096
619c5cb6 8097 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
8098 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
8099 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
8100 }
8101
619c5cb6 8102 bnx2x_init_block(bp, BLOCK_IGU, init_phase);
f2e0899f 8103
619c5cb6 8104 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
8105 int dsb_idx = 0;
8106 /**
8107 * Producer memory:
8108 * E2 mode: address 0-135 match to the mapping memory;
8109 * 136 - PF0 default prod; 137 - PF1 default prod;
8110 * 138 - PF2 default prod; 139 - PF3 default prod;
8111 * 140 - PF0 attn prod; 141 - PF1 attn prod;
8112 * 142 - PF2 attn prod; 143 - PF3 attn prod;
8113 * 144-147 reserved.
8114 *
8115 * E1.5 mode - In backward compatible mode;
8116 * for non default SB; each even line in the memory
8117 * holds the U producer and each odd line hold
8118 * the C producer. The first 128 producers are for
8119 * NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The last 20
8120 * producers are for the DSB for each PF.
8121 * Each PF has five segments: (the order inside each
8122 * segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
8123 * 132-135 C prods; 136-139 X prods; 140-143 T prods;
8124 * 144-147 attn prods;
8125 */
8126 /* non-default-status-blocks */
8127 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
8128 IGU_BC_NDSB_NUM_SEGS : IGU_NORM_NDSB_NUM_SEGS;
8129 for (sb_idx = 0; sb_idx < bp->igu_sb_cnt; sb_idx++) {
8130 prod_offset = (bp->igu_base_sb + sb_idx) *
8131 num_segs;
8132
8133 for (i = 0; i < num_segs; i++) {
8134 addr = IGU_REG_PROD_CONS_MEMORY +
8135 (prod_offset + i) * 4;
8136 REG_WR(bp, addr, 0);
8137 }
8138 /* send consumer update with value 0 */
8139 bnx2x_ack_sb(bp, bp->igu_base_sb + sb_idx,
8140 USTORM_ID, 0, IGU_INT_NOP, 1);
8141 bnx2x_igu_clear_sb(bp,
8142 bp->igu_base_sb + sb_idx);
8143 }
8144
8145 /* default-status-blocks */
8146 num_segs = CHIP_INT_MODE_IS_BC(bp) ?
8147 IGU_BC_DSB_NUM_SEGS : IGU_NORM_DSB_NUM_SEGS;
8148
8149 if (CHIP_MODE_IS_4_PORT(bp))
8150 dsb_idx = BP_FUNC(bp);
8151 else
3395a033 8152 dsb_idx = BP_VN(bp);
f2e0899f
DK
8153
8154 prod_offset = (CHIP_INT_MODE_IS_BC(bp) ?
8155 IGU_BC_BASE_DSB_PROD + dsb_idx :
8156 IGU_NORM_BASE_DSB_PROD + dsb_idx);
8157
3395a033
DK
8158 /*
8159 * igu prods come in chunks of E1HVN_MAX (4) -
8160 * does not matters what is the current chip mode
8161 */
f2e0899f
DK
8162 for (i = 0; i < (num_segs * E1HVN_MAX);
8163 i += E1HVN_MAX) {
8164 addr = IGU_REG_PROD_CONS_MEMORY +
8165 (prod_offset + i)*4;
8166 REG_WR(bp, addr, 0);
8167 }
8168 /* send consumer update with 0 */
8169 if (CHIP_INT_MODE_IS_BC(bp)) {
8170 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8171 USTORM_ID, 0, IGU_INT_NOP, 1);
8172 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8173 CSTORM_ID, 0, IGU_INT_NOP, 1);
8174 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8175 XSTORM_ID, 0, IGU_INT_NOP, 1);
8176 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8177 TSTORM_ID, 0, IGU_INT_NOP, 1);
8178 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8179 ATTENTION_ID, 0, IGU_INT_NOP, 1);
8180 } else {
8181 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8182 USTORM_ID, 0, IGU_INT_NOP, 1);
8183 bnx2x_ack_sb(bp, bp->igu_dsb_id,
8184 ATTENTION_ID, 0, IGU_INT_NOP, 1);
8185 }
8186 bnx2x_igu_clear_sb(bp, bp->igu_dsb_id);
8187
16a5fd92 8188 /* !!! These should become driver const once
f2e0899f
DK
8189 rf-tool supports split-68 const */
8190 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_LSB, 0);
8191 REG_WR(bp, IGU_REG_SB_INT_BEFORE_MASK_MSB, 0);
8192 REG_WR(bp, IGU_REG_SB_MASK_LSB, 0);
8193 REG_WR(bp, IGU_REG_SB_MASK_MSB, 0);
8194 REG_WR(bp, IGU_REG_PBA_STATUS_LSB, 0);
8195 REG_WR(bp, IGU_REG_PBA_STATUS_MSB, 0);
8196 }
34f80b04 8197 }
34f80b04 8198
c14423fe 8199 /* Reset PCIE errors for debug */
a2fbb9ea
ET
8200 REG_WR(bp, 0x2114, 0xffffffff);
8201 REG_WR(bp, 0x2120, 0xffffffff);
523224a3 8202
f4a66897
VZ
8203 if (CHIP_IS_E1x(bp)) {
8204 main_mem_size = HC_REG_MAIN_MEMORY_SIZE / 2; /*dwords*/
8205 main_mem_base = HC_REG_MAIN_MEMORY +
8206 BP_PORT(bp) * (main_mem_size * 4);
8207 main_mem_prty_clr = HC_REG_HC_PRTY_STS_CLR;
8208 main_mem_width = 8;
8209
8210 val = REG_RD(bp, main_mem_prty_clr);
8211 if (val)
51c1a580
MS
8212 DP(NETIF_MSG_HW,
8213 "Hmmm... Parity errors in HC block during function init (0x%x)!\n",
8214 val);
f4a66897
VZ
8215
8216 /* Clear "false" parity errors in MSI-X table */
8217 for (i = main_mem_base;
8218 i < main_mem_base + main_mem_size * 4;
8219 i += main_mem_width) {
8220 bnx2x_read_dmae(bp, i, main_mem_width / 4);
8221 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data),
8222 i, main_mem_width / 4);
8223 }
8224 /* Clear HC parity attention */
8225 REG_RD(bp, main_mem_prty_clr);
8226 }
8227
619c5cb6
VZ
8228#ifdef BNX2X_STOP_ON_ERROR
8229 /* Enable STORMs SP logging */
8230 REG_WR8(bp, BAR_USTRORM_INTMEM +
8231 USTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
8232 REG_WR8(bp, BAR_TSTRORM_INTMEM +
8233 TSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
8234 REG_WR8(bp, BAR_CSTRORM_INTMEM +
8235 CSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
8236 REG_WR8(bp, BAR_XSTRORM_INTMEM +
8237 XSTORM_RECORD_SLOW_PATH_OFFSET(BP_FUNC(bp)), 1);
8238#endif
8239
b7737c9b 8240 bnx2x_phy_probe(&bp->link_params);
f85582f8 8241
34f80b04
EG
8242 return 0;
8243}
8244
55c11941
MS
8245void bnx2x_free_mem_cnic(struct bnx2x *bp)
8246{
8247 bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_FREE);
8248
8249 if (!CHIP_IS_E1x(bp))
8250 BNX2X_PCI_FREE(bp->cnic_sb.e2_sb, bp->cnic_sb_mapping,
8251 sizeof(struct host_hc_status_block_e2));
8252 else
8253 BNX2X_PCI_FREE(bp->cnic_sb.e1x_sb, bp->cnic_sb_mapping,
8254 sizeof(struct host_hc_status_block_e1x));
8255
8256 BNX2X_PCI_FREE(bp->t2, bp->t2_mapping, SRC_T2_SZ);
8257}
8258
9f6c9258 8259void bnx2x_free_mem(struct bnx2x *bp)
a2fbb9ea 8260{
a052997e
MS
8261 int i;
8262
619c5cb6
VZ
8263 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
8264 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
8265
b4cddbd6
AE
8266 if (IS_VF(bp))
8267 return;
8268
8269 BNX2X_PCI_FREE(bp->def_status_blk, bp->def_status_blk_mapping,
8270 sizeof(struct host_sp_status_block));
8271
a2fbb9ea 8272 BNX2X_PCI_FREE(bp->slowpath, bp->slowpath_mapping,
34f80b04 8273 sizeof(struct bnx2x_slowpath));
a2fbb9ea 8274
a052997e
MS
8275 for (i = 0; i < L2_ILT_LINES(bp); i++)
8276 BNX2X_PCI_FREE(bp->context[i].vcxt, bp->context[i].cxt_mapping,
8277 bp->context[i].size);
523224a3
DK
8278 bnx2x_ilt_mem_op(bp, ILT_MEMOP_FREE);
8279
8280 BNX2X_FREE(bp->ilt->lines);
f85582f8 8281
7a9b2557 8282 BNX2X_PCI_FREE(bp->spq, bp->spq_mapping, BCM_PAGE_SIZE);
a2fbb9ea 8283
523224a3
DK
8284 BNX2X_PCI_FREE(bp->eq_ring, bp->eq_mapping,
8285 BCM_PAGE_SIZE * NUM_EQ_PAGES);
580d9d08 8286
05952246
YM
8287 BNX2X_PCI_FREE(bp->t2, bp->t2_mapping, SRC_T2_SZ);
8288
580d9d08 8289 bnx2x_iov_free_mem(bp);
619c5cb6
VZ
8290}
8291
55c11941 8292int bnx2x_alloc_mem_cnic(struct bnx2x *bp)
a2fbb9ea 8293{
cd2b0389 8294 if (!CHIP_IS_E1x(bp)) {
619c5cb6 8295 /* size = the status block + ramrod buffers */
cd2b0389
JP
8296 bp->cnic_sb.e2_sb = BNX2X_PCI_ALLOC(&bp->cnic_sb_mapping,
8297 sizeof(struct host_hc_status_block_e2));
8298 if (!bp->cnic_sb.e2_sb)
8299 goto alloc_mem_err;
8300 } else {
8301 bp->cnic_sb.e1x_sb = BNX2X_PCI_ALLOC(&bp->cnic_sb_mapping,
8302 sizeof(struct host_hc_status_block_e1x));
8303 if (!bp->cnic_sb.e1x_sb)
8304 goto alloc_mem_err;
8305 }
8badd27a 8306
cd2b0389 8307 if (CONFIGURE_NIC_MODE(bp) && !bp->t2) {
16a5fd92 8308 /* allocate searcher T2 table, as it wasn't allocated before */
cd2b0389
JP
8309 bp->t2 = BNX2X_PCI_ALLOC(&bp->t2_mapping, SRC_T2_SZ);
8310 if (!bp->t2)
8311 goto alloc_mem_err;
8312 }
55c11941
MS
8313
8314 /* write address to which L5 should insert its values */
8315 bp->cnic_eth_dev.addr_drv_info_to_mcp =
8316 &bp->slowpath->drv_info_to_mcp;
8317
8318 if (bnx2x_ilt_mem_op_cnic(bp, ILT_MEMOP_ALLOC))
8319 goto alloc_mem_err;
8320
8321 return 0;
8322
8323alloc_mem_err:
8324 bnx2x_free_mem_cnic(bp);
8325 BNX2X_ERR("Can't allocate memory\n");
8326 return -ENOMEM;
8327}
8328
8329int bnx2x_alloc_mem(struct bnx2x *bp)
8330{
8331 int i, allocated, context_size;
a2fbb9ea 8332
cd2b0389 8333 if (!CONFIGURE_NIC_MODE(bp) && !bp->t2) {
55c11941 8334 /* allocate searcher T2 table */
cd2b0389
JP
8335 bp->t2 = BNX2X_PCI_ALLOC(&bp->t2_mapping, SRC_T2_SZ);
8336 if (!bp->t2)
8337 goto alloc_mem_err;
8338 }
8badd27a 8339
cd2b0389
JP
8340 bp->def_status_blk = BNX2X_PCI_ALLOC(&bp->def_status_blk_mapping,
8341 sizeof(struct host_sp_status_block));
8342 if (!bp->def_status_blk)
8343 goto alloc_mem_err;
a2fbb9ea 8344
cd2b0389
JP
8345 bp->slowpath = BNX2X_PCI_ALLOC(&bp->slowpath_mapping,
8346 sizeof(struct bnx2x_slowpath));
8347 if (!bp->slowpath)
8348 goto alloc_mem_err;
a2fbb9ea 8349
a052997e
MS
8350 /* Allocate memory for CDU context:
8351 * This memory is allocated separately and not in the generic ILT
8352 * functions because CDU differs in few aspects:
8353 * 1. There are multiple entities allocating memory for context -
8354 * 'regular' driver, CNIC and SRIOV driver. Each separately controls
8355 * its own ILT lines.
8356 * 2. Since CDU page-size is not a single 4KB page (which is the case
8357 * for the other ILT clients), to be efficient we want to support
8358 * allocation of sub-page-size in the last entry.
8359 * 3. Context pointers are used by the driver to pass to FW / update
8360 * the context (for the other ILT clients the pointers are used just to
8361 * free the memory during unload).
8362 */
8363 context_size = sizeof(union cdu_context) * BNX2X_L2_CID_COUNT(bp);
65abd74d 8364
a052997e
MS
8365 for (i = 0, allocated = 0; allocated < context_size; i++) {
8366 bp->context[i].size = min(CDU_ILT_PAGE_SZ,
8367 (context_size - allocated));
cd2b0389
JP
8368 bp->context[i].vcxt = BNX2X_PCI_ALLOC(&bp->context[i].cxt_mapping,
8369 bp->context[i].size);
8370 if (!bp->context[i].vcxt)
8371 goto alloc_mem_err;
a052997e
MS
8372 allocated += bp->context[i].size;
8373 }
cd2b0389
JP
8374 bp->ilt->lines = kcalloc(ILT_MAX_LINES, sizeof(struct ilt_line),
8375 GFP_KERNEL);
8376 if (!bp->ilt->lines)
8377 goto alloc_mem_err;
65abd74d 8378
523224a3
DK
8379 if (bnx2x_ilt_mem_op(bp, ILT_MEMOP_ALLOC))
8380 goto alloc_mem_err;
65abd74d 8381
67c431a5
AE
8382 if (bnx2x_iov_alloc_mem(bp))
8383 goto alloc_mem_err;
8384
9f6c9258 8385 /* Slow path ring */
cd2b0389
JP
8386 bp->spq = BNX2X_PCI_ALLOC(&bp->spq_mapping, BCM_PAGE_SIZE);
8387 if (!bp->spq)
8388 goto alloc_mem_err;
65abd74d 8389
523224a3 8390 /* EQ */
cd2b0389
JP
8391 bp->eq_ring = BNX2X_PCI_ALLOC(&bp->eq_mapping,
8392 BCM_PAGE_SIZE * NUM_EQ_PAGES);
8393 if (!bp->eq_ring)
8394 goto alloc_mem_err;
ab532cf3 8395
9f6c9258 8396 return 0;
e1510706 8397
9f6c9258
DK
8398alloc_mem_err:
8399 bnx2x_free_mem(bp);
51c1a580 8400 BNX2X_ERR("Can't allocate memory\n");
9f6c9258 8401 return -ENOMEM;
65abd74d
YG
8402}
8403
a2fbb9ea
ET
8404/*
8405 * Init service functions
8406 */
a2fbb9ea 8407
619c5cb6
VZ
8408int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
8409 struct bnx2x_vlan_mac_obj *obj, bool set,
8410 int mac_type, unsigned long *ramrod_flags)
a2fbb9ea 8411{
619c5cb6
VZ
8412 int rc;
8413 struct bnx2x_vlan_mac_ramrod_params ramrod_param;
a2fbb9ea 8414
619c5cb6 8415 memset(&ramrod_param, 0, sizeof(ramrod_param));
a2fbb9ea 8416
619c5cb6
VZ
8417 /* Fill general parameters */
8418 ramrod_param.vlan_mac_obj = obj;
8419 ramrod_param.ramrod_flags = *ramrod_flags;
a2fbb9ea 8420
619c5cb6
VZ
8421 /* Fill a user request section if needed */
8422 if (!test_bit(RAMROD_CONT, ramrod_flags)) {
8423 memcpy(ramrod_param.user_req.u.mac.mac, mac, ETH_ALEN);
a2fbb9ea 8424
619c5cb6 8425 __set_bit(mac_type, &ramrod_param.user_req.vlan_mac_flags);
e3553b29 8426
619c5cb6
VZ
8427 /* Set the command: ADD or DEL */
8428 if (set)
8429 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_ADD;
8430 else
8431 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_DEL;
a2fbb9ea
ET
8432 }
8433
619c5cb6 8434 rc = bnx2x_config_vlan_mac(bp, &ramrod_param);
7b5342d9
YM
8435
8436 if (rc == -EEXIST) {
8437 DP(BNX2X_MSG_SP, "Failed to schedule ADD operations: %d\n", rc);
8438 /* do not treat adding same MAC as error */
8439 rc = 0;
8440 } else if (rc < 0)
619c5cb6 8441 BNX2X_ERR("%s MAC failed\n", (set ? "Set" : "Del"));
7b5342d9 8442
619c5cb6 8443 return rc;
a2fbb9ea
ET
8444}
8445
05cc5a39
YM
8446int bnx2x_set_vlan_one(struct bnx2x *bp, u16 vlan,
8447 struct bnx2x_vlan_mac_obj *obj, bool set,
8448 unsigned long *ramrod_flags)
8449{
8450 int rc;
8451 struct bnx2x_vlan_mac_ramrod_params ramrod_param;
8452
8453 memset(&ramrod_param, 0, sizeof(ramrod_param));
8454
8455 /* Fill general parameters */
8456 ramrod_param.vlan_mac_obj = obj;
8457 ramrod_param.ramrod_flags = *ramrod_flags;
8458
8459 /* Fill a user request section if needed */
8460 if (!test_bit(RAMROD_CONT, ramrod_flags)) {
8461 ramrod_param.user_req.u.vlan.vlan = vlan;
8462 /* Set the command: ADD or DEL */
8463 if (set)
8464 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_ADD;
8465 else
8466 ramrod_param.user_req.cmd = BNX2X_VLAN_MAC_DEL;
8467 }
8468
8469 rc = bnx2x_config_vlan_mac(bp, &ramrod_param);
8470
8471 if (rc == -EEXIST) {
8472 /* Do not treat adding same vlan as error. */
8473 DP(BNX2X_MSG_SP, "Failed to schedule ADD operations: %d\n", rc);
8474 rc = 0;
8475 } else if (rc < 0) {
8476 BNX2X_ERR("%s VLAN failed\n", (set ? "Set" : "Del"));
8477 }
8478
8479 return rc;
8480}
8481
619c5cb6
VZ
8482int bnx2x_del_all_macs(struct bnx2x *bp,
8483 struct bnx2x_vlan_mac_obj *mac_obj,
8484 int mac_type, bool wait_for_comp)
e665bfda 8485{
619c5cb6
VZ
8486 int rc;
8487 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
0793f83f 8488
619c5cb6
VZ
8489 /* Wait for completion of requested */
8490 if (wait_for_comp)
8491 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
0793f83f 8492
619c5cb6
VZ
8493 /* Set the mac type of addresses we want to clear */
8494 __set_bit(mac_type, &vlan_mac_flags);
0793f83f 8495
619c5cb6
VZ
8496 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags, &ramrod_flags);
8497 if (rc < 0)
8498 BNX2X_ERR("Failed to delete MACs: %d\n", rc);
0793f83f 8499
619c5cb6 8500 return rc;
0793f83f
DK
8501}
8502
619c5cb6 8503int bnx2x_set_eth_mac(struct bnx2x *bp, bool set)
523224a3 8504{
f8f4f61a
DK
8505 if (IS_PF(bp)) {
8506 unsigned long ramrod_flags = 0;
0793f83f 8507
f8f4f61a
DK
8508 DP(NETIF_MSG_IFUP, "Adding Eth MAC\n");
8509 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
8510 return bnx2x_set_mac_one(bp, bp->dev->dev_addr,
8511 &bp->sp_objs->mac_obj, set,
8512 BNX2X_ETH_MAC, &ramrod_flags);
8513 } else { /* vf */
8514 return bnx2x_vfpf_config_mac(bp, bp->dev->dev_addr,
bb9e9c1d 8515 bp->fp->index, set);
f8f4f61a 8516 }
e665bfda 8517}
6e30dd4e 8518
619c5cb6 8519int bnx2x_setup_leading(struct bnx2x *bp)
ec6ba945 8520{
60cad4e6
AE
8521 if (IS_PF(bp))
8522 return bnx2x_setup_queue(bp, &bp->fp[0], true);
8523 else /* VF */
8524 return bnx2x_vfpf_setup_q(bp, &bp->fp[0], true);
993ac7b5 8525}
a2fbb9ea 8526
d6214d7a 8527/**
e8920674 8528 * bnx2x_set_int_mode - configure interrupt mode
d6214d7a 8529 *
e8920674 8530 * @bp: driver handle
d6214d7a 8531 *
e8920674 8532 * In case of MSI-X it will also try to enable MSI-X.
d6214d7a 8533 */
1ab4434c 8534int bnx2x_set_int_mode(struct bnx2x *bp)
ca00392c 8535{
1ab4434c
AE
8536 int rc = 0;
8537
60cad4e6
AE
8538 if (IS_VF(bp) && int_mode != BNX2X_INT_MODE_MSIX) {
8539 BNX2X_ERR("VF not loaded since interrupt mode not msix\n");
1ab4434c 8540 return -EINVAL;
60cad4e6 8541 }
1ab4434c 8542
9ee3d37b 8543 switch (int_mode) {
1ab4434c
AE
8544 case BNX2X_INT_MODE_MSIX:
8545 /* attempt to enable msix */
8546 rc = bnx2x_enable_msix(bp);
8547
8548 /* msix attained */
8549 if (!rc)
8550 return 0;
8551
8552 /* vfs use only msix */
8553 if (rc && IS_VF(bp))
8554 return rc;
8555
8556 /* failed to enable multiple MSI-X */
8557 BNX2X_DEV_INFO("Failed to enable multiple MSI-X (%d), set number of queues to %d\n",
8558 bp->num_queues,
8559 1 + bp->num_cnic_queues);
8560
8561 /* falling through... */
8562 case BNX2X_INT_MODE_MSI:
d6214d7a 8563 bnx2x_enable_msi(bp);
1ab4434c 8564
d6214d7a 8565 /* falling through... */
1ab4434c 8566 case BNX2X_INT_MODE_INTX:
55c11941
MS
8567 bp->num_ethernet_queues = 1;
8568 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
51c1a580 8569 BNX2X_DEV_INFO("set number of queues to 1\n");
ca00392c 8570 break;
d6214d7a 8571 default:
1ab4434c
AE
8572 BNX2X_DEV_INFO("unknown value in int_mode module parameter\n");
8573 return -EINVAL;
9f6c9258 8574 }
1ab4434c 8575 return 0;
a2fbb9ea
ET
8576}
8577
1ab4434c 8578/* must be called prior to any HW initializations */
c2bff63f
DK
8579static inline u16 bnx2x_cid_ilt_lines(struct bnx2x *bp)
8580{
290ca2bb
AE
8581 if (IS_SRIOV(bp))
8582 return (BNX2X_FIRST_VF_CID + BNX2X_VF_CIDS)/ILT_PAGE_CIDS;
c2bff63f
DK
8583 return L2_ILT_LINES(bp);
8584}
8585
523224a3
DK
8586void bnx2x_ilt_set_info(struct bnx2x *bp)
8587{
8588 struct ilt_client_info *ilt_client;
8589 struct bnx2x_ilt *ilt = BP_ILT(bp);
8590 u16 line = 0;
8591
8592 ilt->start_line = FUNC_ILT_BASE(BP_FUNC(bp));
8593 DP(BNX2X_MSG_SP, "ilt starts at line %d\n", ilt->start_line);
8594
8595 /* CDU */
8596 ilt_client = &ilt->clients[ILT_CLIENT_CDU];
8597 ilt_client->client_num = ILT_CLIENT_CDU;
8598 ilt_client->page_size = CDU_ILT_PAGE_SZ;
8599 ilt_client->flags = ILT_CLIENT_SKIP_MEM;
8600 ilt_client->start = line;
619c5cb6 8601 line += bnx2x_cid_ilt_lines(bp);
55c11941
MS
8602
8603 if (CNIC_SUPPORT(bp))
8604 line += CNIC_ILT_LINES;
523224a3
DK
8605 ilt_client->end = line - 1;
8606
51c1a580 8607 DP(NETIF_MSG_IFUP, "ilt client[CDU]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
8608 ilt_client->start,
8609 ilt_client->end,
8610 ilt_client->page_size,
8611 ilt_client->flags,
8612 ilog2(ilt_client->page_size >> 12));
8613
8614 /* QM */
8615 if (QM_INIT(bp->qm_cid_count)) {
8616 ilt_client = &ilt->clients[ILT_CLIENT_QM];
8617 ilt_client->client_num = ILT_CLIENT_QM;
8618 ilt_client->page_size = QM_ILT_PAGE_SZ;
8619 ilt_client->flags = 0;
8620 ilt_client->start = line;
8621
8622 /* 4 bytes for each cid */
8623 line += DIV_ROUND_UP(bp->qm_cid_count * QM_QUEUES_PER_FUNC * 4,
8624 QM_ILT_PAGE_SZ);
8625
8626 ilt_client->end = line - 1;
8627
51c1a580
MS
8628 DP(NETIF_MSG_IFUP,
8629 "ilt client[QM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
523224a3
DK
8630 ilt_client->start,
8631 ilt_client->end,
8632 ilt_client->page_size,
8633 ilt_client->flags,
8634 ilog2(ilt_client->page_size >> 12));
523224a3 8635 }
523224a3 8636
55c11941
MS
8637 if (CNIC_SUPPORT(bp)) {
8638 /* SRC */
8639 ilt_client = &ilt->clients[ILT_CLIENT_SRC];
8640 ilt_client->client_num = ILT_CLIENT_SRC;
8641 ilt_client->page_size = SRC_ILT_PAGE_SZ;
8642 ilt_client->flags = 0;
8643 ilt_client->start = line;
8644 line += SRC_ILT_LINES;
8645 ilt_client->end = line - 1;
523224a3 8646
55c11941
MS
8647 DP(NETIF_MSG_IFUP,
8648 "ilt client[SRC]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
8649 ilt_client->start,
8650 ilt_client->end,
8651 ilt_client->page_size,
8652 ilt_client->flags,
8653 ilog2(ilt_client->page_size >> 12));
9f6c9258 8654
55c11941
MS
8655 /* TM */
8656 ilt_client = &ilt->clients[ILT_CLIENT_TM];
8657 ilt_client->client_num = ILT_CLIENT_TM;
8658 ilt_client->page_size = TM_ILT_PAGE_SZ;
8659 ilt_client->flags = 0;
8660 ilt_client->start = line;
8661 line += TM_ILT_LINES;
8662 ilt_client->end = line - 1;
523224a3 8663
55c11941
MS
8664 DP(NETIF_MSG_IFUP,
8665 "ilt client[TM]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n",
8666 ilt_client->start,
8667 ilt_client->end,
8668 ilt_client->page_size,
8669 ilt_client->flags,
8670 ilog2(ilt_client->page_size >> 12));
8671 }
9f6c9258 8672
619c5cb6 8673 BUG_ON(line > ILT_MAX_LINES);
523224a3 8674}
f85582f8 8675
619c5cb6
VZ
8676/**
8677 * bnx2x_pf_q_prep_init - prepare INIT transition parameters
8678 *
8679 * @bp: driver handle
8680 * @fp: pointer to fastpath
8681 * @init_params: pointer to parameters structure
8682 *
8683 * parameters configured:
8684 * - HC configuration
8685 * - Queue's CDU context
8686 */
1191cb83 8687static void bnx2x_pf_q_prep_init(struct bnx2x *bp,
619c5cb6 8688 struct bnx2x_fastpath *fp, struct bnx2x_queue_init_params *init_params)
a2fbb9ea 8689{
6383c0b3 8690 u8 cos;
a052997e
MS
8691 int cxt_index, cxt_offset;
8692
619c5cb6
VZ
8693 /* FCoE Queue uses Default SB, thus has no HC capabilities */
8694 if (!IS_FCOE_FP(fp)) {
8695 __set_bit(BNX2X_Q_FLG_HC, &init_params->rx.flags);
8696 __set_bit(BNX2X_Q_FLG_HC, &init_params->tx.flags);
8697
16a5fd92 8698 /* If HC is supported, enable host coalescing in the transition
619c5cb6
VZ
8699 * to INIT state.
8700 */
8701 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->rx.flags);
8702 __set_bit(BNX2X_Q_FLG_HC_EN, &init_params->tx.flags);
8703
8704 /* HC rate */
8705 init_params->rx.hc_rate = bp->rx_ticks ?
8706 (1000000 / bp->rx_ticks) : 0;
8707 init_params->tx.hc_rate = bp->tx_ticks ?
8708 (1000000 / bp->tx_ticks) : 0;
8709
8710 /* FW SB ID */
8711 init_params->rx.fw_sb_id = init_params->tx.fw_sb_id =
8712 fp->fw_sb_id;
8713
8714 /*
8715 * CQ index among the SB indices: FCoE clients uses the default
8716 * SB, therefore it's different.
8717 */
6383c0b3
AE
8718 init_params->rx.sb_cq_index = HC_INDEX_ETH_RX_CQ_CONS;
8719 init_params->tx.sb_cq_index = HC_INDEX_ETH_FIRST_TX_CQ_CONS;
619c5cb6
VZ
8720 }
8721
6383c0b3
AE
8722 /* set maximum number of COSs supported by this queue */
8723 init_params->max_cos = fp->max_cos;
8724
51c1a580 8725 DP(NETIF_MSG_IFUP, "fp: %d setting queue params max cos to: %d\n",
6383c0b3
AE
8726 fp->index, init_params->max_cos);
8727
8728 /* set the context pointers queue object */
a052997e 8729 for (cos = FIRST_TX_COS_INDEX; cos < init_params->max_cos; cos++) {
65565884
MS
8730 cxt_index = fp->txdata_ptr[cos]->cid / ILT_PAGE_CIDS;
8731 cxt_offset = fp->txdata_ptr[cos]->cid - (cxt_index *
a052997e 8732 ILT_PAGE_CIDS);
6383c0b3 8733 init_params->cxts[cos] =
a052997e
MS
8734 &bp->context[cxt_index].vcxt[cxt_offset].eth;
8735 }
619c5cb6
VZ
8736}
8737
910cc727 8738static int bnx2x_setup_tx_only(struct bnx2x *bp, struct bnx2x_fastpath *fp,
6383c0b3
AE
8739 struct bnx2x_queue_state_params *q_params,
8740 struct bnx2x_queue_setup_tx_only_params *tx_only_params,
8741 int tx_index, bool leading)
8742{
8743 memset(tx_only_params, 0, sizeof(*tx_only_params));
8744
8745 /* Set the command */
8746 q_params->cmd = BNX2X_Q_CMD_SETUP_TX_ONLY;
8747
8748 /* Set tx-only QUEUE flags: don't zero statistics */
8749 tx_only_params->flags = bnx2x_get_common_flags(bp, fp, false);
8750
8751 /* choose the index of the cid to send the slow path on */
8752 tx_only_params->cid_index = tx_index;
8753
8754 /* Set general TX_ONLY_SETUP parameters */
8755 bnx2x_pf_q_prep_general(bp, fp, &tx_only_params->gen_params, tx_index);
8756
8757 /* Set Tx TX_ONLY_SETUP parameters */
8758 bnx2x_pf_tx_q_prep(bp, fp, &tx_only_params->txq_params, tx_index);
8759
51c1a580
MS
8760 DP(NETIF_MSG_IFUP,
8761 "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
8762 tx_index, q_params->q_obj->cids[FIRST_TX_COS_INDEX],
8763 q_params->q_obj->cids[tx_index], q_params->q_obj->cl_id,
8764 tx_only_params->gen_params.spcl_id, tx_only_params->flags);
8765
8766 /* send the ramrod */
8767 return bnx2x_queue_state_change(bp, q_params);
8768}
8769
619c5cb6
VZ
8770/**
8771 * bnx2x_setup_queue - setup queue
8772 *
8773 * @bp: driver handle
8774 * @fp: pointer to fastpath
8775 * @leading: is leading
8776 *
8777 * This function performs 2 steps in a Queue state machine
8778 * actually: 1) RESET->INIT 2) INIT->SETUP
8779 */
8780
8781int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
8782 bool leading)
8783{
3b603066 8784 struct bnx2x_queue_state_params q_params = {NULL};
619c5cb6
VZ
8785 struct bnx2x_queue_setup_params *setup_params =
8786 &q_params.params.setup;
6383c0b3
AE
8787 struct bnx2x_queue_setup_tx_only_params *tx_only_params =
8788 &q_params.params.tx_only;
a2fbb9ea 8789 int rc;
6383c0b3
AE
8790 u8 tx_index;
8791
51c1a580 8792 DP(NETIF_MSG_IFUP, "setting up queue %d\n", fp->index);
a2fbb9ea 8793
ec6ba945
VZ
8794 /* reset IGU state skip FCoE L2 queue */
8795 if (!IS_FCOE_FP(fp))
8796 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0,
523224a3 8797 IGU_INT_ENABLE, 0);
a2fbb9ea 8798
15192a8c 8799 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8800 /* We want to wait for completion in this context */
8801 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8802
619c5cb6
VZ
8803 /* Prepare the INIT parameters */
8804 bnx2x_pf_q_prep_init(bp, fp, &q_params.params.init);
ec6ba945 8805
619c5cb6
VZ
8806 /* Set the command */
8807 q_params.cmd = BNX2X_Q_CMD_INIT;
8808
8809 /* Change the state to INIT */
8810 rc = bnx2x_queue_state_change(bp, &q_params);
8811 if (rc) {
6383c0b3 8812 BNX2X_ERR("Queue(%d) INIT failed\n", fp->index);
619c5cb6
VZ
8813 return rc;
8814 }
ec6ba945 8815
51c1a580 8816 DP(NETIF_MSG_IFUP, "init complete\n");
6383c0b3 8817
619c5cb6
VZ
8818 /* Now move the Queue to the SETUP state... */
8819 memset(setup_params, 0, sizeof(*setup_params));
a2fbb9ea 8820
619c5cb6
VZ
8821 /* Set QUEUE flags */
8822 setup_params->flags = bnx2x_get_q_flags(bp, fp, leading);
523224a3 8823
619c5cb6 8824 /* Set general SETUP parameters */
6383c0b3
AE
8825 bnx2x_pf_q_prep_general(bp, fp, &setup_params->gen_params,
8826 FIRST_TX_COS_INDEX);
619c5cb6 8827
6383c0b3 8828 bnx2x_pf_rx_q_prep(bp, fp, &setup_params->pause_params,
619c5cb6
VZ
8829 &setup_params->rxq_params);
8830
6383c0b3
AE
8831 bnx2x_pf_tx_q_prep(bp, fp, &setup_params->txq_params,
8832 FIRST_TX_COS_INDEX);
619c5cb6
VZ
8833
8834 /* Set the command */
8835 q_params.cmd = BNX2X_Q_CMD_SETUP;
8836
55c11941
MS
8837 if (IS_FCOE_FP(fp))
8838 bp->fcoe_init = true;
8839
619c5cb6
VZ
8840 /* Change the state to SETUP */
8841 rc = bnx2x_queue_state_change(bp, &q_params);
6383c0b3
AE
8842 if (rc) {
8843 BNX2X_ERR("Queue(%d) SETUP failed\n", fp->index);
8844 return rc;
8845 }
8846
8847 /* loop through the relevant tx-only indices */
8848 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8849 tx_index < fp->max_cos;
8850 tx_index++) {
8851
8852 /* prepare and send tx-only ramrod*/
8853 rc = bnx2x_setup_tx_only(bp, fp, &q_params,
8854 tx_only_params, tx_index, leading);
8855 if (rc) {
8856 BNX2X_ERR("Queue(%d.%d) TX_ONLY_SETUP failed\n",
8857 fp->index, tx_index);
8858 return rc;
8859 }
8860 }
523224a3 8861
34f80b04 8862 return rc;
a2fbb9ea
ET
8863}
8864
619c5cb6 8865static int bnx2x_stop_queue(struct bnx2x *bp, int index)
a2fbb9ea 8866{
619c5cb6 8867 struct bnx2x_fastpath *fp = &bp->fp[index];
6383c0b3 8868 struct bnx2x_fp_txdata *txdata;
3b603066 8869 struct bnx2x_queue_state_params q_params = {NULL};
6383c0b3
AE
8870 int rc, tx_index;
8871
51c1a580 8872 DP(NETIF_MSG_IFDOWN, "stopping queue %d cid %d\n", index, fp->cid);
a2fbb9ea 8873
15192a8c 8874 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
619c5cb6
VZ
8875 /* We want to wait for completion in this context */
8876 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
a2fbb9ea 8877
6383c0b3
AE
8878 /* close tx-only connections */
8879 for (tx_index = FIRST_TX_ONLY_COS_INDEX;
8880 tx_index < fp->max_cos;
8881 tx_index++){
8882
8883 /* ascertain this is a normal queue*/
65565884 8884 txdata = fp->txdata_ptr[tx_index];
6383c0b3 8885
51c1a580 8886 DP(NETIF_MSG_IFDOWN, "stopping tx-only queue %d\n",
6383c0b3
AE
8887 txdata->txq_index);
8888
8889 /* send halt terminate on tx-only connection */
8890 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
8891 memset(&q_params.params.terminate, 0,
8892 sizeof(q_params.params.terminate));
8893 q_params.params.terminate.cid_index = tx_index;
8894
8895 rc = bnx2x_queue_state_change(bp, &q_params);
8896 if (rc)
8897 return rc;
8898
8899 /* send halt terminate on tx-only connection */
8900 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
8901 memset(&q_params.params.cfc_del, 0,
8902 sizeof(q_params.params.cfc_del));
8903 q_params.params.cfc_del.cid_index = tx_index;
8904 rc = bnx2x_queue_state_change(bp, &q_params);
8905 if (rc)
8906 return rc;
8907 }
8908 /* Stop the primary connection: */
8909 /* ...halt the connection */
619c5cb6
VZ
8910 q_params.cmd = BNX2X_Q_CMD_HALT;
8911 rc = bnx2x_queue_state_change(bp, &q_params);
8912 if (rc)
da5a662a 8913 return rc;
a2fbb9ea 8914
6383c0b3 8915 /* ...terminate the connection */
619c5cb6 8916 q_params.cmd = BNX2X_Q_CMD_TERMINATE;
6383c0b3
AE
8917 memset(&q_params.params.terminate, 0,
8918 sizeof(q_params.params.terminate));
8919 q_params.params.terminate.cid_index = FIRST_TX_COS_INDEX;
619c5cb6
VZ
8920 rc = bnx2x_queue_state_change(bp, &q_params);
8921 if (rc)
523224a3 8922 return rc;
6383c0b3 8923 /* ...delete cfc entry */
619c5cb6 8924 q_params.cmd = BNX2X_Q_CMD_CFC_DEL;
6383c0b3
AE
8925 memset(&q_params.params.cfc_del, 0,
8926 sizeof(q_params.params.cfc_del));
8927 q_params.params.cfc_del.cid_index = FIRST_TX_COS_INDEX;
619c5cb6 8928 return bnx2x_queue_state_change(bp, &q_params);
523224a3
DK
8929}
8930
34f80b04
EG
8931static void bnx2x_reset_func(struct bnx2x *bp)
8932{
8933 int port = BP_PORT(bp);
8934 int func = BP_FUNC(bp);
f2e0899f 8935 int i;
523224a3
DK
8936
8937 /* Disable the function in the FW */
8938 REG_WR8(bp, BAR_XSTRORM_INTMEM + XSTORM_FUNC_EN_OFFSET(func), 0);
8939 REG_WR8(bp, BAR_CSTRORM_INTMEM + CSTORM_FUNC_EN_OFFSET(func), 0);
8940 REG_WR8(bp, BAR_TSTRORM_INTMEM + TSTORM_FUNC_EN_OFFSET(func), 0);
8941 REG_WR8(bp, BAR_USTRORM_INTMEM + USTORM_FUNC_EN_OFFSET(func), 0);
8942
8943 /* FP SBs */
ec6ba945 8944 for_each_eth_queue(bp, i) {
523224a3 8945 struct bnx2x_fastpath *fp = &bp->fp[i];
619c5cb6 8946 REG_WR8(bp, BAR_CSTRORM_INTMEM +
6383c0b3
AE
8947 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET(fp->fw_sb_id),
8948 SB_DISABLED);
523224a3
DK
8949 }
8950
55c11941
MS
8951 if (CNIC_LOADED(bp))
8952 /* CNIC SB */
8953 REG_WR8(bp, BAR_CSTRORM_INTMEM +
8954 CSTORM_STATUS_BLOCK_DATA_STATE_OFFSET
8955 (bnx2x_cnic_fw_sb_id(bp)), SB_DISABLED);
8956
523224a3 8957 /* SP SB */
619c5cb6 8958 REG_WR8(bp, BAR_CSTRORM_INTMEM +
2de67439
YM
8959 CSTORM_SP_STATUS_BLOCK_DATA_STATE_OFFSET(func),
8960 SB_DISABLED);
523224a3
DK
8961
8962 for (i = 0; i < XSTORM_SPQ_DATA_SIZE / 4; i++)
8963 REG_WR(bp, BAR_XSTRORM_INTMEM + XSTORM_SPQ_DATA_OFFSET(func),
8964 0);
34f80b04
EG
8965
8966 /* Configure IGU */
f2e0899f
DK
8967 if (bp->common.int_block == INT_BLOCK_HC) {
8968 REG_WR(bp, HC_REG_LEADING_EDGE_0 + port*8, 0);
8969 REG_WR(bp, HC_REG_TRAILING_EDGE_0 + port*8, 0);
8970 } else {
8971 REG_WR(bp, IGU_REG_LEADING_EDGE_LATCH, 0);
8972 REG_WR(bp, IGU_REG_TRAILING_EDGE_LATCH, 0);
8973 }
34f80b04 8974
55c11941
MS
8975 if (CNIC_LOADED(bp)) {
8976 /* Disable Timer scan */
8977 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
8978 /*
8979 * Wait for at least 10ms and up to 2 second for the timers
8980 * scan to complete
8981 */
8982 for (i = 0; i < 200; i++) {
639d65b8 8983 usleep_range(10000, 20000);
55c11941
MS
8984 if (!REG_RD(bp, TM_REG_LIN0_SCAN_ON + port*4))
8985 break;
8986 }
37b091ba 8987 }
34f80b04 8988 /* Clear ILT */
f2e0899f
DK
8989 bnx2x_clear_func_ilt(bp, func);
8990
8991 /* Timers workaround bug for E2: if this is vnic-3,
8992 * we need to set the entire ilt range for this timers.
8993 */
619c5cb6 8994 if (!CHIP_IS_E1x(bp) && BP_VN(bp) == 3) {
f2e0899f
DK
8995 struct ilt_client_info ilt_cli;
8996 /* use dummy TM client */
8997 memset(&ilt_cli, 0, sizeof(struct ilt_client_info));
8998 ilt_cli.start = 0;
8999 ilt_cli.end = ILT_NUM_PAGE_ENTRIES - 1;
9000 ilt_cli.client_num = ILT_CLIENT_TM;
9001
9002 bnx2x_ilt_boundry_init_op(bp, &ilt_cli, 0, INITOP_CLEAR);
9003 }
9004
9005 /* this assumes that reset_port() called before reset_func()*/
619c5cb6 9006 if (!CHIP_IS_E1x(bp))
f2e0899f 9007 bnx2x_pf_disable(bp);
523224a3
DK
9008
9009 bp->dmae_ready = 0;
34f80b04
EG
9010}
9011
9012static void bnx2x_reset_port(struct bnx2x *bp)
9013{
9014 int port = BP_PORT(bp);
9015 u32 val;
9016
619c5cb6
VZ
9017 /* Reset physical Link */
9018 bnx2x__link_reset(bp);
9019
34f80b04
EG
9020 REG_WR(bp, NIG_REG_MASK_INTERRUPT_PORT0 + port*4, 0);
9021
9022 /* Do not rcv packets to BRB */
9023 REG_WR(bp, NIG_REG_LLH0_BRB1_DRV_MASK + port*4, 0x0);
9024 /* Do not direct rcv packets that are not for MCP to the BRB */
9025 REG_WR(bp, (port ? NIG_REG_LLH1_BRB1_NOT_MCP :
9026 NIG_REG_LLH0_BRB1_NOT_MCP), 0x0);
9027
9028 /* Configure AEU */
9029 REG_WR(bp, MISC_REG_AEU_MASK_ATTN_FUNC_0 + port*4, 0);
9030
9031 msleep(100);
9032 /* Check for BRB port occupancy */
9033 val = REG_RD(bp, BRB1_REG_PORT_NUM_OCC_BLOCKS_0 + port*4);
9034 if (val)
9035 DP(NETIF_MSG_IFDOWN,
33471629 9036 "BRB1 is not empty %d blocks are occupied\n", val);
34f80b04
EG
9037
9038 /* TODO: Close Doorbell port? */
9039}
9040
1191cb83 9041static int bnx2x_reset_hw(struct bnx2x *bp, u32 load_code)
34f80b04 9042{
3b603066 9043 struct bnx2x_func_state_params func_params = {NULL};
34f80b04 9044
619c5cb6
VZ
9045 /* Prepare parameters for function state transitions */
9046 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
34f80b04 9047
619c5cb6
VZ
9048 func_params.f_obj = &bp->func_obj;
9049 func_params.cmd = BNX2X_F_CMD_HW_RESET;
34f80b04 9050
619c5cb6 9051 func_params.params.hw_init.load_phase = load_code;
49d66772 9052
619c5cb6 9053 return bnx2x_func_state_change(bp, &func_params);
34f80b04
EG
9054}
9055
1191cb83 9056static int bnx2x_func_stop(struct bnx2x *bp)
ec6ba945 9057{
3b603066 9058 struct bnx2x_func_state_params func_params = {NULL};
619c5cb6 9059 int rc;
228241eb 9060
619c5cb6
VZ
9061 /* Prepare parameters for function state transitions */
9062 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
9063 func_params.f_obj = &bp->func_obj;
9064 func_params.cmd = BNX2X_F_CMD_STOP;
da5a662a 9065
619c5cb6
VZ
9066 /*
9067 * Try to stop the function the 'good way'. If fails (in case
9068 * of a parity error during bnx2x_chip_cleanup()) and we are
9069 * not in a debug mode, perform a state transaction in order to
9070 * enable further HW_RESET transaction.
9071 */
9072 rc = bnx2x_func_state_change(bp, &func_params);
9073 if (rc) {
34f80b04 9074#ifdef BNX2X_STOP_ON_ERROR
619c5cb6 9075 return rc;
34f80b04 9076#else
51c1a580 9077 BNX2X_ERR("FUNC_STOP ramrod failed. Running a dry transaction\n");
619c5cb6
VZ
9078 __set_bit(RAMROD_DRV_CLR_ONLY, &func_params.ramrod_flags);
9079 return bnx2x_func_state_change(bp, &func_params);
34f80b04 9080#endif
228241eb 9081 }
a2fbb9ea 9082
619c5cb6
VZ
9083 return 0;
9084}
523224a3 9085
619c5cb6
VZ
9086/**
9087 * bnx2x_send_unload_req - request unload mode from the MCP.
9088 *
9089 * @bp: driver handle
9090 * @unload_mode: requested function's unload mode
9091 *
9092 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
9093 */
9094u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode)
9095{
9096 u32 reset_code = 0;
9097 int port = BP_PORT(bp);
3101c2bc 9098
619c5cb6 9099 /* Select the UNLOAD request mode */
65abd74d
YG
9100 if (unload_mode == UNLOAD_NORMAL)
9101 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
9102
7d0446c2 9103 else if (bp->flags & NO_WOL_FLAG)
65abd74d 9104 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP;
65abd74d 9105
7d0446c2 9106 else if (bp->wol) {
65abd74d
YG
9107 u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0;
9108 u8 *mac_addr = bp->dev->dev_addr;
29ed74c3 9109 struct pci_dev *pdev = bp->pdev;
65abd74d 9110 u32 val;
f9977903
DK
9111 u16 pmc;
9112
65abd74d 9113 /* The mac address is written to entries 1-4 to
f9977903
DK
9114 * preserve entry 0 which is used by the PMF
9115 */
3395a033 9116 u8 entry = (BP_VN(bp) + 1)*8;
65abd74d
YG
9117
9118 val = (mac_addr[0] << 8) | mac_addr[1];
9119 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val);
9120
9121 val = (mac_addr[2] << 24) | (mac_addr[3] << 16) |
9122 (mac_addr[4] << 8) | mac_addr[5];
9123 EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val);
9124
f9977903 9125 /* Enable the PME and clear the status */
29ed74c3 9126 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &pmc);
f9977903 9127 pmc |= PCI_PM_CTRL_PME_ENABLE | PCI_PM_CTRL_PME_STATUS;
29ed74c3 9128 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, pmc);
f9977903 9129
65abd74d
YG
9130 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN;
9131
9132 } else
9133 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS;
da5a662a 9134
619c5cb6
VZ
9135 /* Send the request to the MCP */
9136 if (!BP_NOMCP(bp))
9137 reset_code = bnx2x_fw_command(bp, reset_code, 0);
9138 else {
9139 int path = BP_PATH(bp);
9140
51c1a580 9141 DP(NETIF_MSG_IFDOWN, "NO MCP - load counts[%d] %d, %d, %d\n",
a8f47eb7 9142 path, bnx2x_load_count[path][0], bnx2x_load_count[path][1],
9143 bnx2x_load_count[path][2]);
9144 bnx2x_load_count[path][0]--;
9145 bnx2x_load_count[path][1 + port]--;
51c1a580 9146 DP(NETIF_MSG_IFDOWN, "NO MCP - new load counts[%d] %d, %d, %d\n",
a8f47eb7 9147 path, bnx2x_load_count[path][0], bnx2x_load_count[path][1],
9148 bnx2x_load_count[path][2]);
9149 if (bnx2x_load_count[path][0] == 0)
619c5cb6 9150 reset_code = FW_MSG_CODE_DRV_UNLOAD_COMMON;
a8f47eb7 9151 else if (bnx2x_load_count[path][1 + port] == 0)
619c5cb6
VZ
9152 reset_code = FW_MSG_CODE_DRV_UNLOAD_PORT;
9153 else
9154 reset_code = FW_MSG_CODE_DRV_UNLOAD_FUNCTION;
9155 }
9156
9157 return reset_code;
9158}
9159
9160/**
9161 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
9162 *
9163 * @bp: driver handle
5d07d868 9164 * @keep_link: true iff link should be kept up
619c5cb6 9165 */
5d07d868 9166void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link)
619c5cb6 9167{
5d07d868
YM
9168 u32 reset_param = keep_link ? DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET : 0;
9169
619c5cb6
VZ
9170 /* Report UNLOAD_DONE to MCP */
9171 if (!BP_NOMCP(bp))
5d07d868 9172 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, reset_param);
619c5cb6
VZ
9173}
9174
1191cb83 9175static int bnx2x_func_wait_started(struct bnx2x *bp)
6debea87
DK
9176{
9177 int tout = 50;
9178 int msix = (bp->flags & USING_MSIX_FLAG) ? 1 : 0;
9179
9180 if (!bp->port.pmf)
9181 return 0;
9182
9183 /*
9184 * (assumption: No Attention from MCP at this stage)
16a5fd92 9185 * PMF probably in the middle of TX disable/enable transaction
6debea87 9186 * 1. Sync IRS for default SB
16a5fd92
YM
9187 * 2. Sync SP queue - this guarantees us that attention handling started
9188 * 3. Wait, that TX disable/enable transaction completes
6debea87 9189 *
16a5fd92
YM
9190 * 1+2 guarantee that if DCBx attention was scheduled it already changed
9191 * pending bit of transaction from STARTED-->TX_STOPPED, if we already
9192 * received completion for the transaction the state is TX_STOPPED.
6debea87
DK
9193 * State will return to STARTED after completion of TX_STOPPED-->STARTED
9194 * transaction.
9195 */
9196
9197 /* make sure default SB ISR is done */
9198 if (msix)
9199 synchronize_irq(bp->msix_table[0].vector);
9200 else
9201 synchronize_irq(bp->pdev->irq);
9202
9203 flush_workqueue(bnx2x_wq);
370d4a26 9204 flush_workqueue(bnx2x_iov_wq);
6debea87
DK
9205
9206 while (bnx2x_func_get_state(bp, &bp->func_obj) !=
9207 BNX2X_F_STATE_STARTED && tout--)
9208 msleep(20);
9209
9210 if (bnx2x_func_get_state(bp, &bp->func_obj) !=
9211 BNX2X_F_STATE_STARTED) {
9212#ifdef BNX2X_STOP_ON_ERROR
51c1a580 9213 BNX2X_ERR("Wrong function state\n");
6debea87
DK
9214 return -EBUSY;
9215#else
9216 /*
9217 * Failed to complete the transaction in a "good way"
9218 * Force both transactions with CLR bit
9219 */
3b603066 9220 struct bnx2x_func_state_params func_params = {NULL};
6debea87 9221
51c1a580 9222 DP(NETIF_MSG_IFDOWN,
0c23ad37 9223 "Hmmm... Unexpected function state! Forcing STARTED-->TX_STOPPED-->STARTED\n");
6debea87
DK
9224
9225 func_params.f_obj = &bp->func_obj;
9226 __set_bit(RAMROD_DRV_CLR_ONLY,
9227 &func_params.ramrod_flags);
9228
9229 /* STARTED-->TX_ST0PPED */
9230 func_params.cmd = BNX2X_F_CMD_TX_STOP;
9231 bnx2x_func_state_change(bp, &func_params);
9232
9233 /* TX_ST0PPED-->STARTED */
9234 func_params.cmd = BNX2X_F_CMD_TX_START;
9235 return bnx2x_func_state_change(bp, &func_params);
9236#endif
9237 }
9238
9239 return 0;
9240}
9241
eeed018c
MK
9242static void bnx2x_disable_ptp(struct bnx2x *bp)
9243{
9244 int port = BP_PORT(bp);
9245
9246 /* Disable sending PTP packets to host */
9247 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_TO_HOST :
9248 NIG_REG_P0_LLH_PTP_TO_HOST, 0x0);
9249
9250 /* Reset PTP event detection rules */
9251 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
9252 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x7FF);
9253 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
9254 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3FFF);
9255 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_PARAM_MASK :
9256 NIG_REG_P0_TLLH_PTP_PARAM_MASK, 0x7FF);
9257 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_RULE_MASK :
9258 NIG_REG_P0_TLLH_PTP_RULE_MASK, 0x3FFF);
9259
9260 /* Disable the PTP feature */
9261 REG_WR(bp, port ? NIG_REG_P1_PTP_EN :
9262 NIG_REG_P0_PTP_EN, 0x0);
9263}
9264
9265/* Called during unload, to stop PTP-related stuff */
1444c301 9266static void bnx2x_stop_ptp(struct bnx2x *bp)
eeed018c
MK
9267{
9268 /* Cancel PTP work queue. Should be done after the Tx queues are
9269 * drained to prevent additional scheduling.
9270 */
9271 cancel_work_sync(&bp->ptp_task);
9272
9273 if (bp->ptp_tx_skb) {
9274 dev_kfree_skb_any(bp->ptp_tx_skb);
9275 bp->ptp_tx_skb = NULL;
9276 }
9277
9278 /* Disable PTP in HW */
9279 bnx2x_disable_ptp(bp);
9280
9281 DP(BNX2X_MSG_PTP, "PTP stop ended successfully\n");
9282}
9283
5d07d868 9284void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link)
619c5cb6
VZ
9285{
9286 int port = BP_PORT(bp);
6383c0b3
AE
9287 int i, rc = 0;
9288 u8 cos;
3b603066 9289 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6
VZ
9290 u32 reset_code;
9291
9292 /* Wait until tx fastpath tasks complete */
9293 for_each_tx_queue(bp, i) {
9294 struct bnx2x_fastpath *fp = &bp->fp[i];
9295
6383c0b3 9296 for_each_cos_in_tx_queue(fp, cos)
65565884 9297 rc = bnx2x_clean_tx_queue(bp, fp->txdata_ptr[cos]);
619c5cb6
VZ
9298#ifdef BNX2X_STOP_ON_ERROR
9299 if (rc)
9300 return;
9301#endif
9302 }
9303
9304 /* Give HW time to discard old tx messages */
0926d499 9305 usleep_range(1000, 2000);
619c5cb6
VZ
9306
9307 /* Clean all ETH MACs */
15192a8c
BW
9308 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_ETH_MAC,
9309 false);
619c5cb6
VZ
9310 if (rc < 0)
9311 BNX2X_ERR("Failed to delete all ETH macs: %d\n", rc);
9312
9313 /* Clean up UC list */
15192a8c 9314 rc = bnx2x_del_all_macs(bp, &bp->sp_objs[0].mac_obj, BNX2X_UC_LIST_MAC,
619c5cb6
VZ
9315 true);
9316 if (rc < 0)
51c1a580
MS
9317 BNX2X_ERR("Failed to schedule DEL commands for UC MACs list: %d\n",
9318 rc);
619c5cb6
VZ
9319
9320 /* Disable LLH */
9321 if (!CHIP_IS_E1(bp))
9322 REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
9323
9324 /* Set "drop all" (stop Rx).
9325 * We need to take a netif_addr_lock() here in order to prevent
9326 * a race between the completion code and this code.
9327 */
9328 netif_addr_lock_bh(bp->dev);
9329 /* Schedule the rx_mode command */
9330 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
9331 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
9332 else
9333 bnx2x_set_storm_rx_mode(bp);
9334
9335 /* Cleanup multicast configuration */
9336 rparam.mcast_obj = &bp->mcast_obj;
9337 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
9338 if (rc < 0)
9339 BNX2X_ERR("Failed to send DEL multicast command: %d\n", rc);
9340
9341 netif_addr_unlock_bh(bp->dev);
9342
f1929b01 9343 bnx2x_iov_chip_cleanup(bp);
619c5cb6 9344
6debea87
DK
9345 /*
9346 * Send the UNLOAD_REQUEST to the MCP. This will return if
9347 * this function should perform FUNC, PORT or COMMON HW
9348 * reset.
9349 */
9350 reset_code = bnx2x_send_unload_req(bp, unload_mode);
9351
9352 /*
9353 * (assumption: No Attention from MCP at this stage)
16a5fd92 9354 * PMF probably in the middle of TX disable/enable transaction
6debea87
DK
9355 */
9356 rc = bnx2x_func_wait_started(bp);
9357 if (rc) {
9358 BNX2X_ERR("bnx2x_func_wait_started failed\n");
9359#ifdef BNX2X_STOP_ON_ERROR
9360 return;
9361#endif
9362 }
9363
34f80b04 9364 /* Close multi and leading connections
619c5cb6
VZ
9365 * Completions for ramrods are collected in a synchronous way
9366 */
55c11941 9367 for_each_eth_queue(bp, i)
619c5cb6 9368 if (bnx2x_stop_queue(bp, i))
523224a3
DK
9369#ifdef BNX2X_STOP_ON_ERROR
9370 return;
9371#else
228241eb 9372 goto unload_error;
523224a3 9373#endif
55c11941
MS
9374
9375 if (CNIC_LOADED(bp)) {
9376 for_each_cnic_queue(bp, i)
9377 if (bnx2x_stop_queue(bp, i))
9378#ifdef BNX2X_STOP_ON_ERROR
9379 return;
9380#else
9381 goto unload_error;
9382#endif
9383 }
9384
619c5cb6
VZ
9385 /* If SP settings didn't get completed so far - something
9386 * very wrong has happen.
9387 */
9388 if (!bnx2x_wait_sp_comp(bp, ~0x0UL))
9389 BNX2X_ERR("Hmmm... Common slow path ramrods got stuck!\n");
a2fbb9ea 9390
619c5cb6
VZ
9391#ifndef BNX2X_STOP_ON_ERROR
9392unload_error:
9393#endif
523224a3 9394 rc = bnx2x_func_stop(bp);
da5a662a 9395 if (rc) {
523224a3 9396 BNX2X_ERR("Function stop failed!\n");
da5a662a 9397#ifdef BNX2X_STOP_ON_ERROR
523224a3 9398 return;
523224a3 9399#endif
34f80b04 9400 }
a2fbb9ea 9401
eeed018c
MK
9402 /* stop_ptp should be after the Tx queues are drained to prevent
9403 * scheduling to the cancelled PTP work queue. It should also be after
9404 * function stop ramrod is sent, since as part of this ramrod FW access
9405 * PTP registers.
9406 */
d53c66a5
ED
9407 if (bp->flags & PTP_SUPPORTED)
9408 bnx2x_stop_ptp(bp);
eeed018c 9409
523224a3
DK
9410 /* Disable HW interrupts, NAPI */
9411 bnx2x_netif_stop(bp, 1);
26614ba5
MS
9412 /* Delete all NAPI objects */
9413 bnx2x_del_all_napi(bp);
55c11941
MS
9414 if (CNIC_LOADED(bp))
9415 bnx2x_del_all_napi_cnic(bp);
523224a3
DK
9416
9417 /* Release IRQs */
d6214d7a 9418 bnx2x_free_irq(bp);
523224a3 9419
a2fbb9ea 9420 /* Reset the chip */
619c5cb6
VZ
9421 rc = bnx2x_reset_hw(bp, reset_code);
9422 if (rc)
9423 BNX2X_ERR("HW_RESET failed\n");
a2fbb9ea 9424
619c5cb6 9425 /* Report UNLOAD_DONE to MCP */
5d07d868 9426 bnx2x_send_unload_done(bp, keep_link);
72fd0718
VZ
9427}
9428
9f6c9258 9429void bnx2x_disable_close_the_gate(struct bnx2x *bp)
72fd0718
VZ
9430{
9431 u32 val;
9432
51c1a580 9433 DP(NETIF_MSG_IFDOWN, "Disabling \"close the gates\"\n");
72fd0718
VZ
9434
9435 if (CHIP_IS_E1(bp)) {
9436 int port = BP_PORT(bp);
9437 u32 addr = port ? MISC_REG_AEU_MASK_ATTN_FUNC_1 :
9438 MISC_REG_AEU_MASK_ATTN_FUNC_0;
9439
9440 val = REG_RD(bp, addr);
9441 val &= ~(0x300);
9442 REG_WR(bp, addr, val);
619c5cb6 9443 } else {
72fd0718
VZ
9444 val = REG_RD(bp, MISC_REG_AEU_GENERAL_MASK);
9445 val &= ~(MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK |
9446 MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK);
9447 REG_WR(bp, MISC_REG_AEU_GENERAL_MASK, val);
9448 }
9449}
9450
72fd0718
VZ
9451/* Close gates #2, #3 and #4: */
9452static void bnx2x_set_234_gates(struct bnx2x *bp, bool close)
9453{
c9ee9206 9454 u32 val;
72fd0718
VZ
9455
9456 /* Gates #2 and #4a are closed/opened for "not E1" only */
9457 if (!CHIP_IS_E1(bp)) {
9458 /* #4 */
c9ee9206 9459 REG_WR(bp, PXP_REG_HST_DISCARD_DOORBELLS, !!close);
72fd0718 9460 /* #2 */
c9ee9206 9461 REG_WR(bp, PXP_REG_HST_DISCARD_INTERNAL_WRITES, !!close);
72fd0718
VZ
9462 }
9463
9464 /* #3 */
c9ee9206
VZ
9465 if (CHIP_IS_E1x(bp)) {
9466 /* Prevent interrupts from HC on both ports */
9467 val = REG_RD(bp, HC_REG_CONFIG_1);
9468 REG_WR(bp, HC_REG_CONFIG_1,
9469 (!close) ? (val | HC_CONFIG_1_REG_BLOCK_DISABLE_1) :
9470 (val & ~(u32)HC_CONFIG_1_REG_BLOCK_DISABLE_1));
9471
9472 val = REG_RD(bp, HC_REG_CONFIG_0);
9473 REG_WR(bp, HC_REG_CONFIG_0,
9474 (!close) ? (val | HC_CONFIG_0_REG_BLOCK_DISABLE_0) :
9475 (val & ~(u32)HC_CONFIG_0_REG_BLOCK_DISABLE_0));
9476 } else {
d82603c6 9477 /* Prevent incoming interrupts in IGU */
c9ee9206
VZ
9478 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
9479
9480 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION,
9481 (!close) ?
9482 (val | IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE) :
9483 (val & ~(u32)IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE));
9484 }
72fd0718 9485
51c1a580 9486 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "%s gates #2, #3 and #4\n",
72fd0718
VZ
9487 close ? "closing" : "opening");
9488 mmiowb();
9489}
9490
9491#define SHARED_MF_CLP_MAGIC 0x80000000 /* `magic' bit */
9492
9493static void bnx2x_clp_reset_prep(struct bnx2x *bp, u32 *magic_val)
9494{
9495 /* Do some magic... */
9496 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
9497 *magic_val = val & SHARED_MF_CLP_MAGIC;
9498 MF_CFG_WR(bp, shared_mf_config.clp_mb, val | SHARED_MF_CLP_MAGIC);
9499}
9500
e8920674
DK
9501/**
9502 * bnx2x_clp_reset_done - restore the value of the `magic' bit.
72fd0718 9503 *
e8920674
DK
9504 * @bp: driver handle
9505 * @magic_val: old value of the `magic' bit.
72fd0718
VZ
9506 */
9507static void bnx2x_clp_reset_done(struct bnx2x *bp, u32 magic_val)
9508{
9509 /* Restore the `magic' bit value... */
72fd0718
VZ
9510 u32 val = MF_CFG_RD(bp, shared_mf_config.clp_mb);
9511 MF_CFG_WR(bp, shared_mf_config.clp_mb,
9512 (val & (~SHARED_MF_CLP_MAGIC)) | magic_val);
9513}
9514
f85582f8 9515/**
e8920674 9516 * bnx2x_reset_mcp_prep - prepare for MCP reset.
72fd0718 9517 *
e8920674
DK
9518 * @bp: driver handle
9519 * @magic_val: old value of 'magic' bit.
9520 *
9521 * Takes care of CLP configurations.
72fd0718
VZ
9522 */
9523static void bnx2x_reset_mcp_prep(struct bnx2x *bp, u32 *magic_val)
9524{
9525 u32 shmem;
9526 u32 validity_offset;
9527
51c1a580 9528 DP(NETIF_MSG_HW | NETIF_MSG_IFUP, "Starting\n");
72fd0718
VZ
9529
9530 /* Set `magic' bit in order to save MF config */
9531 if (!CHIP_IS_E1(bp))
9532 bnx2x_clp_reset_prep(bp, magic_val);
9533
9534 /* Get shmem offset */
9535 shmem = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
c55e771b
BW
9536 validity_offset =
9537 offsetof(struct shmem_region, validity_map[BP_PORT(bp)]);
72fd0718
VZ
9538
9539 /* Clear validity map flags */
9540 if (shmem > 0)
9541 REG_WR(bp, shmem + validity_offset, 0);
9542}
9543
9544#define MCP_TIMEOUT 5000 /* 5 seconds (in ms) */
9545#define MCP_ONE_TIMEOUT 100 /* 100 ms */
9546
e8920674
DK
9547/**
9548 * bnx2x_mcp_wait_one - wait for MCP_ONE_TIMEOUT
72fd0718 9549 *
e8920674 9550 * @bp: driver handle
72fd0718 9551 */
1191cb83 9552static void bnx2x_mcp_wait_one(struct bnx2x *bp)
72fd0718
VZ
9553{
9554 /* special handling for emulation and FPGA,
9555 wait 10 times longer */
9556 if (CHIP_REV_IS_SLOW(bp))
9557 msleep(MCP_ONE_TIMEOUT*10);
9558 else
9559 msleep(MCP_ONE_TIMEOUT);
9560}
9561
1b6e2ceb
DK
9562/*
9563 * initializes bp->common.shmem_base and waits for validity signature to appear
9564 */
9565static int bnx2x_init_shmem(struct bnx2x *bp)
72fd0718 9566{
1b6e2ceb
DK
9567 int cnt = 0;
9568 u32 val = 0;
72fd0718 9569
1b6e2ceb
DK
9570 do {
9571 bp->common.shmem_base = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
9572 if (bp->common.shmem_base) {
9573 val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
9574 if (val & SHR_MEM_VALIDITY_MB)
9575 return 0;
9576 }
72fd0718 9577
1b6e2ceb 9578 bnx2x_mcp_wait_one(bp);
72fd0718 9579
1b6e2ceb 9580 } while (cnt++ < (MCP_TIMEOUT / MCP_ONE_TIMEOUT));
72fd0718 9581
1b6e2ceb 9582 BNX2X_ERR("BAD MCP validity signature\n");
72fd0718 9583
1b6e2ceb
DK
9584 return -ENODEV;
9585}
72fd0718 9586
1b6e2ceb
DK
9587static int bnx2x_reset_mcp_comp(struct bnx2x *bp, u32 magic_val)
9588{
9589 int rc = bnx2x_init_shmem(bp);
72fd0718 9590
72fd0718
VZ
9591 /* Restore the `magic' bit value */
9592 if (!CHIP_IS_E1(bp))
9593 bnx2x_clp_reset_done(bp, magic_val);
9594
9595 return rc;
9596}
9597
9598static void bnx2x_pxp_prep(struct bnx2x *bp)
9599{
9600 if (!CHIP_IS_E1(bp)) {
9601 REG_WR(bp, PXP2_REG_RD_START_INIT, 0);
9602 REG_WR(bp, PXP2_REG_RQ_RBC_DONE, 0);
72fd0718
VZ
9603 mmiowb();
9604 }
9605}
9606
9607/*
9608 * Reset the whole chip except for:
9609 * - PCIE core
9610 * - PCI Glue, PSWHST, PXP/PXP2 RF (all controlled by
9611 * one reset bit)
9612 * - IGU
9613 * - MISC (including AEU)
9614 * - GRC
9615 * - RBCN, RBCP
9616 */
c9ee9206 9617static void bnx2x_process_kill_chip_reset(struct bnx2x *bp, bool global)
72fd0718
VZ
9618{
9619 u32 not_reset_mask1, reset_mask1, not_reset_mask2, reset_mask2;
8736c826 9620 u32 global_bits2, stay_reset2;
c9ee9206
VZ
9621
9622 /*
9623 * Bits that have to be set in reset_mask2 if we want to reset 'global'
9624 * (per chip) blocks.
9625 */
9626 global_bits2 =
9627 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CPU |
9628 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CORE;
72fd0718 9629
c55e771b
BW
9630 /* Don't reset the following blocks.
9631 * Important: per port blocks (such as EMAC, BMAC, UMAC) can't be
9632 * reset, as in 4 port device they might still be owned
9633 * by the MCP (there is only one leader per path).
9634 */
72fd0718
VZ
9635 not_reset_mask1 =
9636 MISC_REGISTERS_RESET_REG_1_RST_HC |
9637 MISC_REGISTERS_RESET_REG_1_RST_PXPV |
9638 MISC_REGISTERS_RESET_REG_1_RST_PXP;
9639
9640 not_reset_mask2 =
c9ee9206 9641 MISC_REGISTERS_RESET_REG_2_RST_PCI_MDIO |
72fd0718
VZ
9642 MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE |
9643 MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE |
9644 MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE |
9645 MISC_REGISTERS_RESET_REG_2_RST_RBCN |
9646 MISC_REGISTERS_RESET_REG_2_RST_GRC |
9647 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE |
8736c826
VZ
9648 MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B |
9649 MISC_REGISTERS_RESET_REG_2_RST_ATC |
c55e771b
BW
9650 MISC_REGISTERS_RESET_REG_2_PGLC |
9651 MISC_REGISTERS_RESET_REG_2_RST_BMAC0 |
9652 MISC_REGISTERS_RESET_REG_2_RST_BMAC1 |
9653 MISC_REGISTERS_RESET_REG_2_RST_EMAC0 |
9654 MISC_REGISTERS_RESET_REG_2_RST_EMAC1 |
9655 MISC_REGISTERS_RESET_REG_2_UMAC0 |
9656 MISC_REGISTERS_RESET_REG_2_UMAC1;
72fd0718 9657
8736c826
VZ
9658 /*
9659 * Keep the following blocks in reset:
9660 * - all xxMACs are handled by the bnx2x_link code.
9661 */
9662 stay_reset2 =
8736c826
VZ
9663 MISC_REGISTERS_RESET_REG_2_XMAC |
9664 MISC_REGISTERS_RESET_REG_2_XMAC_SOFT;
9665
9666 /* Full reset masks according to the chip */
72fd0718
VZ
9667 reset_mask1 = 0xffffffff;
9668
9669 if (CHIP_IS_E1(bp))
9670 reset_mask2 = 0xffff;
8736c826 9671 else if (CHIP_IS_E1H(bp))
72fd0718 9672 reset_mask2 = 0x1ffff;
8736c826
VZ
9673 else if (CHIP_IS_E2(bp))
9674 reset_mask2 = 0xfffff;
9675 else /* CHIP_IS_E3 */
9676 reset_mask2 = 0x3ffffff;
c9ee9206
VZ
9677
9678 /* Don't reset global blocks unless we need to */
9679 if (!global)
9680 reset_mask2 &= ~global_bits2;
9681
9682 /*
9683 * In case of attention in the QM, we need to reset PXP
9684 * (MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR) before QM
9685 * because otherwise QM reset would release 'close the gates' shortly
9686 * before resetting the PXP, then the PSWRQ would send a write
9687 * request to PGLUE. Then when PXP is reset, PGLUE would try to
9688 * read the payload data from PSWWR, but PSWWR would not
9689 * respond. The write queue in PGLUE would stuck, dmae commands
9690 * would not return. Therefore it's important to reset the second
9691 * reset register (containing the
9692 * MISC_REGISTERS_RESET_REG_2_RST_PXP_RQ_RD_WR bit) before the
9693 * first one (containing the MISC_REGISTERS_RESET_REG_1_RST_QM
9694 * bit).
9695 */
72fd0718
VZ
9696 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_CLEAR,
9697 reset_mask2 & (~not_reset_mask2));
9698
c9ee9206
VZ
9699 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_CLEAR,
9700 reset_mask1 & (~not_reset_mask1));
9701
72fd0718
VZ
9702 barrier();
9703 mmiowb();
9704
8736c826
VZ
9705 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_2_SET,
9706 reset_mask2 & (~stay_reset2));
9707
9708 barrier();
9709 mmiowb();
9710
c9ee9206 9711 REG_WR(bp, GRCBASE_MISC + MISC_REGISTERS_RESET_REG_1_SET, reset_mask1);
72fd0718
VZ
9712 mmiowb();
9713}
9714
c9ee9206
VZ
9715/**
9716 * bnx2x_er_poll_igu_vq - poll for pending writes bit.
9717 * It should get cleared in no more than 1s.
9718 *
9719 * @bp: driver handle
9720 *
9721 * It should get cleared in no more than 1s. Returns 0 if
9722 * pending writes bit gets cleared.
9723 */
9724static int bnx2x_er_poll_igu_vq(struct bnx2x *bp)
9725{
9726 u32 cnt = 1000;
9727 u32 pend_bits = 0;
9728
9729 do {
9730 pend_bits = REG_RD(bp, IGU_REG_PENDING_BITS_STATUS);
9731
9732 if (pend_bits == 0)
9733 break;
9734
0926d499 9735 usleep_range(1000, 2000);
c9ee9206
VZ
9736 } while (cnt-- > 0);
9737
9738 if (cnt <= 0) {
9739 BNX2X_ERR("Still pending IGU requests pend_bits=%x!\n",
9740 pend_bits);
9741 return -EBUSY;
9742 }
9743
9744 return 0;
9745}
9746
9747static int bnx2x_process_kill(struct bnx2x *bp, bool global)
72fd0718
VZ
9748{
9749 int cnt = 1000;
9750 u32 val = 0;
9751 u32 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1, pgl_exp_rom2;
2de67439 9752 u32 tags_63_32 = 0;
72fd0718
VZ
9753
9754 /* Empty the Tetris buffer, wait for 1s */
9755 do {
9756 sr_cnt = REG_RD(bp, PXP2_REG_RD_SR_CNT);
9757 blk_cnt = REG_RD(bp, PXP2_REG_RD_BLK_CNT);
9758 port_is_idle_0 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_0);
9759 port_is_idle_1 = REG_RD(bp, PXP2_REG_RD_PORT_IS_IDLE_1);
9760 pgl_exp_rom2 = REG_RD(bp, PXP2_REG_PGL_EXP_ROM2);
c55e771b
BW
9761 if (CHIP_IS_E3(bp))
9762 tags_63_32 = REG_RD(bp, PGLUE_B_REG_TAGS_63_32);
9763
72fd0718
VZ
9764 if ((sr_cnt == 0x7e) && (blk_cnt == 0xa0) &&
9765 ((port_is_idle_0 & 0x1) == 0x1) &&
9766 ((port_is_idle_1 & 0x1) == 0x1) &&
c55e771b
BW
9767 (pgl_exp_rom2 == 0xffffffff) &&
9768 (!CHIP_IS_E3(bp) || (tags_63_32 == 0xffffffff)))
72fd0718 9769 break;
0926d499 9770 usleep_range(1000, 2000);
72fd0718
VZ
9771 } while (cnt-- > 0);
9772
9773 if (cnt <= 0) {
51c1a580
MS
9774 BNX2X_ERR("Tetris buffer didn't get empty or there are still outstanding read requests after 1s!\n");
9775 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
9776 sr_cnt, blk_cnt, port_is_idle_0, port_is_idle_1,
9777 pgl_exp_rom2);
9778 return -EAGAIN;
9779 }
9780
9781 barrier();
9782
9783 /* Close gates #2, #3 and #4 */
9784 bnx2x_set_234_gates(bp, true);
9785
c9ee9206
VZ
9786 /* Poll for IGU VQs for 57712 and newer chips */
9787 if (!CHIP_IS_E1x(bp) && bnx2x_er_poll_igu_vq(bp))
9788 return -EAGAIN;
9789
72fd0718
VZ
9790 /* TBD: Indicate that "process kill" is in progress to MCP */
9791
9792 /* Clear "unprepared" bit */
9793 REG_WR(bp, MISC_REG_UNPREPARED, 0);
9794 barrier();
9795
9796 /* Make sure all is written to the chip before the reset */
9797 mmiowb();
9798
9799 /* Wait for 1ms to empty GLUE and PCI-E core queues,
9800 * PSWHST, GRC and PSWRD Tetris buffer.
9801 */
0926d499 9802 usleep_range(1000, 2000);
72fd0718
VZ
9803
9804 /* Prepare to chip reset: */
9805 /* MCP */
c9ee9206
VZ
9806 if (global)
9807 bnx2x_reset_mcp_prep(bp, &val);
72fd0718
VZ
9808
9809 /* PXP */
9810 bnx2x_pxp_prep(bp);
9811 barrier();
9812
9813 /* reset the chip */
c9ee9206 9814 bnx2x_process_kill_chip_reset(bp, global);
72fd0718
VZ
9815 barrier();
9816
9dcd9acd
DK
9817 /* clear errors in PGB */
9818 if (!CHIP_IS_E1x(bp))
9819 REG_WR(bp, PGLUE_B_REG_LATCHED_ERRORS_CLR, 0x7f);
9820
72fd0718
VZ
9821 /* Recover after reset: */
9822 /* MCP */
c9ee9206 9823 if (global && bnx2x_reset_mcp_comp(bp, val))
72fd0718
VZ
9824 return -EAGAIN;
9825
c9ee9206
VZ
9826 /* TBD: Add resetting the NO_MCP mode DB here */
9827
72fd0718
VZ
9828 /* Open the gates #2, #3 and #4 */
9829 bnx2x_set_234_gates(bp, false);
9830
9831 /* TBD: IGU/AEU preparation bring back the AEU/IGU to a
9832 * reset state, re-enable attentions. */
9833
a2fbb9ea
ET
9834 return 0;
9835}
9836
910cc727 9837static int bnx2x_leader_reset(struct bnx2x *bp)
72fd0718
VZ
9838{
9839 int rc = 0;
c9ee9206 9840 bool global = bnx2x_reset_is_global(bp);
95c6c616
AE
9841 u32 load_code;
9842
9843 /* if not going to reset MCP - load "fake" driver to reset HW while
9844 * driver is owner of the HW
9845 */
9846 if (!global && !BP_NOMCP(bp)) {
5d07d868
YM
9847 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ,
9848 DRV_MSG_CODE_LOAD_REQ_WITH_LFA);
95c6c616
AE
9849 if (!load_code) {
9850 BNX2X_ERR("MCP response failure, aborting\n");
9851 rc = -EAGAIN;
9852 goto exit_leader_reset;
9853 }
9854 if ((load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) &&
9855 (load_code != FW_MSG_CODE_DRV_LOAD_COMMON)) {
9856 BNX2X_ERR("MCP unexpected resp, aborting\n");
9857 rc = -EAGAIN;
9858 goto exit_leader_reset2;
9859 }
9860 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
9861 if (!load_code) {
9862 BNX2X_ERR("MCP response failure, aborting\n");
9863 rc = -EAGAIN;
9864 goto exit_leader_reset2;
9865 }
9866 }
c9ee9206 9867
72fd0718 9868 /* Try to recover after the failure */
c9ee9206 9869 if (bnx2x_process_kill(bp, global)) {
51c1a580
MS
9870 BNX2X_ERR("Something bad had happen on engine %d! Aii!\n",
9871 BP_PATH(bp));
72fd0718 9872 rc = -EAGAIN;
95c6c616 9873 goto exit_leader_reset2;
72fd0718
VZ
9874 }
9875
c9ee9206
VZ
9876 /*
9877 * Clear RESET_IN_PROGRES and RESET_GLOBAL bits and update the driver
9878 * state.
9879 */
72fd0718 9880 bnx2x_set_reset_done(bp);
c9ee9206
VZ
9881 if (global)
9882 bnx2x_clear_reset_global(bp);
72fd0718 9883
95c6c616
AE
9884exit_leader_reset2:
9885 /* unload "fake driver" if it was loaded */
9886 if (!global && !BP_NOMCP(bp)) {
9887 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
9888 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
9889 }
72fd0718
VZ
9890exit_leader_reset:
9891 bp->is_leader = 0;
c9ee9206
VZ
9892 bnx2x_release_leader_lock(bp);
9893 smp_mb();
72fd0718
VZ
9894 return rc;
9895}
9896
1191cb83 9897static void bnx2x_recovery_failed(struct bnx2x *bp)
c9ee9206
VZ
9898{
9899 netdev_err(bp->dev, "Recovery has failed. Power cycle is needed.\n");
9900
9901 /* Disconnect this device */
9902 netif_device_detach(bp->dev);
9903
9904 /*
9905 * Block ifup for all function on this engine until "process kill"
9906 * or power cycle.
9907 */
9908 bnx2x_set_reset_in_progress(bp);
9909
9910 /* Shut down the power */
9911 bnx2x_set_power_state(bp, PCI_D3hot);
9912
9913 bp->recovery_state = BNX2X_RECOVERY_FAILED;
9914
9915 smp_mb();
9916}
9917
9918/*
9919 * Assumption: runs under rtnl lock. This together with the fact
6383c0b3 9920 * that it's called only from bnx2x_sp_rtnl() ensure that it
72fd0718
VZ
9921 * will never be called when netif_running(bp->dev) is false.
9922 */
9923static void bnx2x_parity_recover(struct bnx2x *bp)
9924{
c9ee9206 9925 bool global = false;
7a752993 9926 u32 error_recovered, error_unrecovered;
95c6c616 9927 bool is_parity;
c9ee9206 9928
72fd0718
VZ
9929 DP(NETIF_MSG_HW, "Handling parity\n");
9930 while (1) {
9931 switch (bp->recovery_state) {
9932 case BNX2X_RECOVERY_INIT:
9933 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_INIT\n");
95c6c616
AE
9934 is_parity = bnx2x_chk_parity_attn(bp, &global, false);
9935 WARN_ON(!is_parity);
c9ee9206 9936
72fd0718 9937 /* Try to get a LEADER_LOCK HW lock */
c9ee9206
VZ
9938 if (bnx2x_trylock_leader_lock(bp)) {
9939 bnx2x_set_reset_in_progress(bp);
9940 /*
9941 * Check if there is a global attention and if
9942 * there was a global attention, set the global
9943 * reset bit.
9944 */
9945
9946 if (global)
9947 bnx2x_set_reset_global(bp);
9948
72fd0718 9949 bp->is_leader = 1;
c9ee9206 9950 }
72fd0718
VZ
9951
9952 /* Stop the driver */
9953 /* If interface has been removed - break */
5d07d868 9954 if (bnx2x_nic_unload(bp, UNLOAD_RECOVERY, false))
72fd0718
VZ
9955 return;
9956
9957 bp->recovery_state = BNX2X_RECOVERY_WAIT;
c9ee9206 9958
c9ee9206
VZ
9959 /* Ensure "is_leader", MCP command sequence and
9960 * "recovery_state" update values are seen on other
9961 * CPUs.
72fd0718 9962 */
c9ee9206 9963 smp_mb();
72fd0718
VZ
9964 break;
9965
9966 case BNX2X_RECOVERY_WAIT:
9967 DP(NETIF_MSG_HW, "State is BNX2X_RECOVERY_WAIT\n");
9968 if (bp->is_leader) {
c9ee9206 9969 int other_engine = BP_PATH(bp) ? 0 : 1;
889b9af3
AE
9970 bool other_load_status =
9971 bnx2x_get_load_status(bp, other_engine);
9972 bool load_status =
9973 bnx2x_get_load_status(bp, BP_PATH(bp));
c9ee9206
VZ
9974 global = bnx2x_reset_is_global(bp);
9975
9976 /*
9977 * In case of a parity in a global block, let
9978 * the first leader that performs a
9979 * leader_reset() reset the global blocks in
9980 * order to clear global attentions. Otherwise
16a5fd92 9981 * the gates will remain closed for that
c9ee9206
VZ
9982 * engine.
9983 */
889b9af3
AE
9984 if (load_status ||
9985 (global && other_load_status)) {
72fd0718
VZ
9986 /* Wait until all other functions get
9987 * down.
9988 */
7be08a72 9989 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
9990 HZ/10);
9991 return;
9992 } else {
9993 /* If all other functions got down -
9994 * try to bring the chip back to
9995 * normal. In any case it's an exit
9996 * point for a leader.
9997 */
c9ee9206
VZ
9998 if (bnx2x_leader_reset(bp)) {
9999 bnx2x_recovery_failed(bp);
72fd0718
VZ
10000 return;
10001 }
10002
c9ee9206
VZ
10003 /* If we are here, means that the
10004 * leader has succeeded and doesn't
10005 * want to be a leader any more. Try
10006 * to continue as a none-leader.
10007 */
10008 break;
72fd0718
VZ
10009 }
10010 } else { /* non-leader */
c9ee9206 10011 if (!bnx2x_reset_is_done(bp, BP_PATH(bp))) {
72fd0718
VZ
10012 /* Try to get a LEADER_LOCK HW lock as
10013 * long as a former leader may have
10014 * been unloaded by the user or
10015 * released a leadership by another
10016 * reason.
10017 */
c9ee9206 10018 if (bnx2x_trylock_leader_lock(bp)) {
72fd0718
VZ
10019 /* I'm a leader now! Restart a
10020 * switch case.
10021 */
10022 bp->is_leader = 1;
10023 break;
10024 }
10025
7be08a72 10026 schedule_delayed_work(&bp->sp_rtnl_task,
72fd0718
VZ
10027 HZ/10);
10028 return;
10029
c9ee9206
VZ
10030 } else {
10031 /*
10032 * If there was a global attention, wait
10033 * for it to be cleared.
10034 */
10035 if (bnx2x_reset_is_global(bp)) {
10036 schedule_delayed_work(
7be08a72
AE
10037 &bp->sp_rtnl_task,
10038 HZ/10);
c9ee9206
VZ
10039 return;
10040 }
10041
7a752993
AE
10042 error_recovered =
10043 bp->eth_stats.recoverable_error;
10044 error_unrecovered =
10045 bp->eth_stats.unrecoverable_error;
95c6c616
AE
10046 bp->recovery_state =
10047 BNX2X_RECOVERY_NIC_LOADING;
10048 if (bnx2x_nic_load(bp, LOAD_NORMAL)) {
7a752993 10049 error_unrecovered++;
95c6c616 10050 netdev_err(bp->dev,
51c1a580 10051 "Recovery failed. Power cycle needed\n");
95c6c616
AE
10052 /* Disconnect this device */
10053 netif_device_detach(bp->dev);
10054 /* Shut down the power */
10055 bnx2x_set_power_state(
10056 bp, PCI_D3hot);
10057 smp_mb();
10058 } else {
c9ee9206
VZ
10059 bp->recovery_state =
10060 BNX2X_RECOVERY_DONE;
7a752993 10061 error_recovered++;
c9ee9206
VZ
10062 smp_mb();
10063 }
7a752993
AE
10064 bp->eth_stats.recoverable_error =
10065 error_recovered;
10066 bp->eth_stats.unrecoverable_error =
10067 error_unrecovered;
c9ee9206 10068
72fd0718
VZ
10069 return;
10070 }
10071 }
10072 default:
10073 return;
10074 }
10075 }
10076}
10077
56ad3152
MS
10078static int bnx2x_close(struct net_device *dev);
10079
72fd0718
VZ
10080/* bnx2x_nic_unload() flushes the bnx2x_wq, thus reset task is
10081 * scheduled on a general queue in order to prevent a dead lock.
10082 */
7be08a72 10083static void bnx2x_sp_rtnl_task(struct work_struct *work)
34f80b04 10084{
7be08a72 10085 struct bnx2x *bp = container_of(work, struct bnx2x, sp_rtnl_task.work);
34f80b04
EG
10086
10087 rtnl_lock();
10088
8395be5e
AE
10089 if (!netif_running(bp->dev)) {
10090 rtnl_unlock();
10091 return;
10092 }
7be08a72 10093
6bf07b8e 10094 if (unlikely(bp->recovery_state != BNX2X_RECOVERY_DONE)) {
7be08a72 10095#ifdef BNX2X_STOP_ON_ERROR
6bf07b8e
YM
10096 BNX2X_ERR("recovery flow called but STOP_ON_ERROR defined so reset not done to allow debug dump,\n"
10097 "you will need to reboot when done\n");
10098 goto sp_rtnl_not_reset;
7be08a72 10099#endif
7be08a72 10100 /*
b1fb8740
VZ
10101 * Clear all pending SP commands as we are going to reset the
10102 * function anyway.
7be08a72 10103 */
b1fb8740
VZ
10104 bp->sp_rtnl_state = 0;
10105 smp_mb();
10106
72fd0718 10107 bnx2x_parity_recover(bp);
b1fb8740 10108
8395be5e
AE
10109 rtnl_unlock();
10110 return;
b1fb8740
VZ
10111 }
10112
10113 if (test_and_clear_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state)) {
6bf07b8e
YM
10114#ifdef BNX2X_STOP_ON_ERROR
10115 BNX2X_ERR("recovery flow called but STOP_ON_ERROR defined so reset not done to allow debug dump,\n"
10116 "you will need to reboot when done\n");
10117 goto sp_rtnl_not_reset;
10118#endif
10119
b1fb8740
VZ
10120 /*
10121 * Clear all pending SP commands as we are going to reset the
10122 * function anyway.
10123 */
10124 bp->sp_rtnl_state = 0;
10125 smp_mb();
10126
5d07d868 10127 bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
72fd0718 10128 bnx2x_nic_load(bp, LOAD_NORMAL);
b1fb8740 10129
8395be5e
AE
10130 rtnl_unlock();
10131 return;
72fd0718 10132 }
b1fb8740
VZ
10133#ifdef BNX2X_STOP_ON_ERROR
10134sp_rtnl_not_reset:
10135#endif
10136 if (test_and_clear_bit(BNX2X_SP_RTNL_SETUP_TC, &bp->sp_rtnl_state))
10137 bnx2x_setup_tc(bp->dev, bp->dcbx_port_params.ets.num_of_cos);
a3348722
BW
10138 if (test_and_clear_bit(BNX2X_SP_RTNL_AFEX_F_UPDATE, &bp->sp_rtnl_state))
10139 bnx2x_after_function_update(bp);
8304859a
AE
10140 /*
10141 * in case of fan failure we need to reset id if the "stop on error"
10142 * debug flag is set, since we trying to prevent permanent overheating
10143 * damage
10144 */
10145 if (test_and_clear_bit(BNX2X_SP_RTNL_FAN_FAILURE, &bp->sp_rtnl_state)) {
51c1a580 10146 DP(NETIF_MSG_HW, "fan failure detected. Unloading driver\n");
8304859a
AE
10147 netif_device_detach(bp->dev);
10148 bnx2x_close(bp->dev);
8395be5e
AE
10149 rtnl_unlock();
10150 return;
8304859a
AE
10151 }
10152
381ac16b
AE
10153 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_MCAST, &bp->sp_rtnl_state)) {
10154 DP(BNX2X_MSG_SP,
10155 "sending set mcast vf pf channel message from rtnl sp-task\n");
10156 bnx2x_vfpf_set_mcast(bp->dev);
10157 }
78c3bcc5
AE
10158 if (test_and_clear_bit(BNX2X_SP_RTNL_VFPF_CHANNEL_DOWN,
10159 &bp->sp_rtnl_state)){
10160 if (!test_bit(__LINK_STATE_NOCARRIER, &bp->dev->state)) {
10161 bnx2x_tx_disable(bp);
10162 BNX2X_ERR("PF indicated channel is not servicable anymore. This means this VF device is no longer operational\n");
10163 }
10164 }
381ac16b 10165
8b09be5f
YM
10166 if (test_and_clear_bit(BNX2X_SP_RTNL_RX_MODE, &bp->sp_rtnl_state)) {
10167 DP(BNX2X_MSG_SP, "Handling Rx Mode setting\n");
10168 bnx2x_set_rx_mode_inner(bp);
381ac16b
AE
10169 }
10170
3ec9f9ca
AE
10171 if (test_and_clear_bit(BNX2X_SP_RTNL_HYPERVISOR_VLAN,
10172 &bp->sp_rtnl_state))
10173 bnx2x_pf_set_vfs_vlan(bp);
10174
6ffa39f2 10175 if (test_and_clear_bit(BNX2X_SP_RTNL_TX_STOP, &bp->sp_rtnl_state)) {
07b4eb3b 10176 bnx2x_dcbx_stop_hw_tx(bp);
07b4eb3b 10177 bnx2x_dcbx_resume_hw_tx(bp);
6ffa39f2 10178 }
07b4eb3b 10179
42f8277f
YM
10180 if (test_and_clear_bit(BNX2X_SP_RTNL_GET_DRV_VERSION,
10181 &bp->sp_rtnl_state))
10182 bnx2x_update_mng_version(bp);
10183
8395be5e
AE
10184 /* work which needs rtnl lock not-taken (as it takes the lock itself and
10185 * can be called from other contexts as well)
10186 */
34f80b04 10187 rtnl_unlock();
8395be5e 10188
6411280a 10189 /* enable SR-IOV if applicable */
8395be5e 10190 if (IS_SRIOV(bp) && test_and_clear_bit(BNX2X_SP_RTNL_ENABLE_SRIOV,
3c76feff
AE
10191 &bp->sp_rtnl_state)) {
10192 bnx2x_disable_sriov(bp);
6411280a 10193 bnx2x_enable_sriov(bp);
3c76feff 10194 }
34f80b04
EG
10195}
10196
3deb8167
YR
10197static void bnx2x_period_task(struct work_struct *work)
10198{
10199 struct bnx2x *bp = container_of(work, struct bnx2x, period_task.work);
10200
10201 if (!netif_running(bp->dev))
10202 goto period_task_exit;
10203
10204 if (CHIP_REV_IS_SLOW(bp)) {
10205 BNX2X_ERR("period task called on emulation, ignoring\n");
10206 goto period_task_exit;
10207 }
10208
10209 bnx2x_acquire_phy_lock(bp);
10210 /*
10211 * The barrier is needed to ensure the ordering between the writing to
10212 * the bp->port.pmf in the bnx2x_nic_load() or bnx2x_pmf_update() and
10213 * the reading here.
10214 */
10215 smp_mb();
10216 if (bp->port.pmf) {
10217 bnx2x_period_func(&bp->link_params, &bp->link_vars);
10218
10219 /* Re-queue task in 1 sec */
10220 queue_delayed_work(bnx2x_wq, &bp->period_task, 1*HZ);
10221 }
10222
10223 bnx2x_release_phy_lock(bp);
10224period_task_exit:
10225 return;
10226}
10227
a2fbb9ea
ET
10228/*
10229 * Init service functions
10230 */
10231
a8f47eb7 10232static u32 bnx2x_get_pretend_reg(struct bnx2x *bp)
f2e0899f
DK
10233{
10234 u32 base = PXP2_REG_PGL_PRETEND_FUNC_F0;
10235 u32 stride = PXP2_REG_PGL_PRETEND_FUNC_F1 - base;
10236 return base + (BP_ABS_FUNC(bp)) * stride;
f1ef27ef
EG
10237}
10238
3d6b7253
YM
10239static bool bnx2x_prev_unload_close_umac(struct bnx2x *bp,
10240 u8 port, u32 reset_reg,
10241 struct bnx2x_mac_vals *vals)
10242{
10243 u32 mask = MISC_REGISTERS_RESET_REG_2_UMAC0 << port;
10244 u32 base_addr;
10245
10246 if (!(mask & reset_reg))
10247 return false;
10248
10249 BNX2X_DEV_INFO("Disable umac Rx %02x\n", port);
10250 base_addr = port ? GRCBASE_UMAC1 : GRCBASE_UMAC0;
10251 vals->umac_addr[port] = base_addr + UMAC_REG_COMMAND_CONFIG;
10252 vals->umac_val[port] = REG_RD(bp, vals->umac_addr[port]);
10253 REG_WR(bp, vals->umac_addr[port], 0);
10254
10255 return true;
10256}
10257
1ef1d45a
BW
10258static void bnx2x_prev_unload_close_mac(struct bnx2x *bp,
10259 struct bnx2x_mac_vals *vals)
34f80b04 10260{
452427b0
YM
10261 u32 val, base_addr, offset, mask, reset_reg;
10262 bool mac_stopped = false;
10263 u8 port = BP_PORT(bp);
34f80b04 10264
1ef1d45a 10265 /* reset addresses as they also mark which values were changed */
3d6b7253 10266 memset(vals, 0, sizeof(*vals));
1ef1d45a 10267
452427b0 10268 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_2);
f16da43b 10269
452427b0
YM
10270 if (!CHIP_IS_E3(bp)) {
10271 val = REG_RD(bp, NIG_REG_BMAC0_REGS_OUT_EN + port * 4);
10272 mask = MISC_REGISTERS_RESET_REG_2_RST_BMAC0 << port;
10273 if ((mask & reset_reg) && val) {
10274 u32 wb_data[2];
10275 BNX2X_DEV_INFO("Disable bmac Rx\n");
10276 base_addr = BP_PORT(bp) ? NIG_REG_INGRESS_BMAC1_MEM
10277 : NIG_REG_INGRESS_BMAC0_MEM;
10278 offset = CHIP_IS_E2(bp) ? BIGMAC2_REGISTER_BMAC_CONTROL
10279 : BIGMAC_REGISTER_BMAC_CONTROL;
7a06a122 10280
452427b0
YM
10281 /*
10282 * use rd/wr since we cannot use dmae. This is safe
10283 * since MCP won't access the bus due to the request
10284 * to unload, and no function on the path can be
10285 * loaded at this time.
10286 */
10287 wb_data[0] = REG_RD(bp, base_addr + offset);
10288 wb_data[1] = REG_RD(bp, base_addr + offset + 0x4);
1ef1d45a
BW
10289 vals->bmac_addr = base_addr + offset;
10290 vals->bmac_val[0] = wb_data[0];
10291 vals->bmac_val[1] = wb_data[1];
452427b0 10292 wb_data[0] &= ~BMAC_CONTROL_RX_ENABLE;
1ef1d45a
BW
10293 REG_WR(bp, vals->bmac_addr, wb_data[0]);
10294 REG_WR(bp, vals->bmac_addr + 0x4, wb_data[1]);
452427b0
YM
10295 }
10296 BNX2X_DEV_INFO("Disable emac Rx\n");
1ef1d45a
BW
10297 vals->emac_addr = NIG_REG_NIG_EMAC0_EN + BP_PORT(bp)*4;
10298 vals->emac_val = REG_RD(bp, vals->emac_addr);
10299 REG_WR(bp, vals->emac_addr, 0);
452427b0
YM
10300 mac_stopped = true;
10301 } else {
10302 if (reset_reg & MISC_REGISTERS_RESET_REG_2_XMAC) {
10303 BNX2X_DEV_INFO("Disable xmac Rx\n");
10304 base_addr = BP_PORT(bp) ? GRCBASE_XMAC1 : GRCBASE_XMAC0;
10305 val = REG_RD(bp, base_addr + XMAC_REG_PFC_CTRL_HI);
10306 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
10307 val & ~(1 << 1));
10308 REG_WR(bp, base_addr + XMAC_REG_PFC_CTRL_HI,
10309 val | (1 << 1));
1ef1d45a
BW
10310 vals->xmac_addr = base_addr + XMAC_REG_CTRL;
10311 vals->xmac_val = REG_RD(bp, vals->xmac_addr);
10312 REG_WR(bp, vals->xmac_addr, 0);
452427b0
YM
10313 mac_stopped = true;
10314 }
3d6b7253
YM
10315
10316 mac_stopped |= bnx2x_prev_unload_close_umac(bp, 0,
10317 reset_reg, vals);
10318 mac_stopped |= bnx2x_prev_unload_close_umac(bp, 1,
10319 reset_reg, vals);
452427b0
YM
10320 }
10321
10322 if (mac_stopped)
10323 msleep(20);
452427b0
YM
10324}
10325
10326#define BNX2X_PREV_UNDI_PROD_ADDR(p) (BAR_TSTRORM_INTMEM + 0x1508 + ((p) << 4))
7c3afd85
YM
10327#define BNX2X_PREV_UNDI_PROD_ADDR_H(f) (BAR_TSTRORM_INTMEM + \
10328 0x1848 + ((f) << 4))
452427b0
YM
10329#define BNX2X_PREV_UNDI_RCQ(val) ((val) & 0xffff)
10330#define BNX2X_PREV_UNDI_BD(val) ((val) >> 16 & 0xffff)
10331#define BNX2X_PREV_UNDI_PROD(rcq, bd) ((bd) << 16 | (rcq))
10332
91ebb929
YM
10333#define BCM_5710_UNDI_FW_MF_MAJOR (0x07)
10334#define BCM_5710_UNDI_FW_MF_MINOR (0x08)
10335#define BCM_5710_UNDI_FW_MF_VERS (0x05)
b17b0ca1
YM
10336
10337static bool bnx2x_prev_is_after_undi(struct bnx2x *bp)
10338{
10339 /* UNDI marks its presence in DORQ -
10340 * it initializes CID offset for normal bell to 0x7
10341 */
10342 if (!(REG_RD(bp, MISC_REG_RESET_REG_1) &
10343 MISC_REGISTERS_RESET_REG_1_RST_DORQ))
10344 return false;
10345
10346 if (REG_RD(bp, DORQ_REG_NORM_CID_OFST) == 0x7) {
10347 BNX2X_DEV_INFO("UNDI previously loaded\n");
10348 return true;
10349 }
10350
10351 return false;
10352}
10353
7c3afd85 10354static void bnx2x_prev_unload_undi_inc(struct bnx2x *bp, u8 inc)
452427b0
YM
10355{
10356 u16 rcq, bd;
7c3afd85 10357 u32 addr, tmp_reg;
452427b0 10358
7c3afd85
YM
10359 if (BP_FUNC(bp) < 2)
10360 addr = BNX2X_PREV_UNDI_PROD_ADDR(BP_PORT(bp));
10361 else
10362 addr = BNX2X_PREV_UNDI_PROD_ADDR_H(BP_FUNC(bp) - 2);
10363
10364 tmp_reg = REG_RD(bp, addr);
452427b0
YM
10365 rcq = BNX2X_PREV_UNDI_RCQ(tmp_reg) + inc;
10366 bd = BNX2X_PREV_UNDI_BD(tmp_reg) + inc;
10367
10368 tmp_reg = BNX2X_PREV_UNDI_PROD(rcq, bd);
7c3afd85 10369 REG_WR(bp, addr, tmp_reg);
452427b0 10370
7c3afd85
YM
10371 BNX2X_DEV_INFO("UNDI producer [%d/%d][%08x] rings bd -> 0x%04x, rcq -> 0x%04x\n",
10372 BP_PORT(bp), BP_FUNC(bp), addr, bd, rcq);
452427b0
YM
10373}
10374
0329aba1 10375static int bnx2x_prev_mcp_done(struct bnx2x *bp)
452427b0 10376{
5d07d868
YM
10377 u32 rc = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE,
10378 DRV_MSG_CODE_UNLOAD_SKIP_LINK_RESET);
452427b0
YM
10379 if (!rc) {
10380 BNX2X_ERR("MCP response failure, aborting\n");
10381 return -EBUSY;
10382 }
10383
10384 return 0;
10385}
10386
c63da990
BW
10387static struct bnx2x_prev_path_list *
10388 bnx2x_prev_path_get_entry(struct bnx2x *bp)
10389{
10390 struct bnx2x_prev_path_list *tmp_list;
10391
10392 list_for_each_entry(tmp_list, &bnx2x_prev_list, list)
10393 if (PCI_SLOT(bp->pdev->devfn) == tmp_list->slot &&
10394 bp->pdev->bus->number == tmp_list->bus &&
10395 BP_PATH(bp) == tmp_list->path)
10396 return tmp_list;
10397
10398 return NULL;
10399}
10400
7fa6f340
YM
10401static int bnx2x_prev_path_mark_eeh(struct bnx2x *bp)
10402{
10403 struct bnx2x_prev_path_list *tmp_list;
10404 int rc;
10405
10406 rc = down_interruptible(&bnx2x_prev_sem);
10407 if (rc) {
10408 BNX2X_ERR("Received %d when tried to take lock\n", rc);
10409 return rc;
10410 }
10411
10412 tmp_list = bnx2x_prev_path_get_entry(bp);
10413 if (tmp_list) {
10414 tmp_list->aer = 1;
10415 rc = 0;
10416 } else {
10417 BNX2X_ERR("path %d: Entry does not exist for eeh; Flow occurs before initial insmod is over ?\n",
10418 BP_PATH(bp));
10419 }
10420
10421 up(&bnx2x_prev_sem);
10422
10423 return rc;
10424}
10425
0329aba1 10426static bool bnx2x_prev_is_path_marked(struct bnx2x *bp)
452427b0
YM
10427{
10428 struct bnx2x_prev_path_list *tmp_list;
b85d717c 10429 bool rc = false;
452427b0
YM
10430
10431 if (down_trylock(&bnx2x_prev_sem))
10432 return false;
10433
7fa6f340
YM
10434 tmp_list = bnx2x_prev_path_get_entry(bp);
10435 if (tmp_list) {
10436 if (tmp_list->aer) {
10437 DP(NETIF_MSG_HW, "Path %d was marked by AER\n",
10438 BP_PATH(bp));
10439 } else {
452427b0
YM
10440 rc = true;
10441 BNX2X_DEV_INFO("Path %d was already cleaned from previous drivers\n",
10442 BP_PATH(bp));
452427b0
YM
10443 }
10444 }
10445
10446 up(&bnx2x_prev_sem);
10447
10448 return rc;
10449}
10450
178135c1
DK
10451bool bnx2x_port_after_undi(struct bnx2x *bp)
10452{
10453 struct bnx2x_prev_path_list *entry;
10454 bool val;
10455
10456 down(&bnx2x_prev_sem);
10457
10458 entry = bnx2x_prev_path_get_entry(bp);
10459 val = !!(entry && (entry->undi & (1 << BP_PORT(bp))));
10460
10461 up(&bnx2x_prev_sem);
10462
10463 return val;
10464}
10465
c63da990 10466static int bnx2x_prev_mark_path(struct bnx2x *bp, bool after_undi)
452427b0
YM
10467{
10468 struct bnx2x_prev_path_list *tmp_list;
10469 int rc;
10470
7fa6f340
YM
10471 rc = down_interruptible(&bnx2x_prev_sem);
10472 if (rc) {
10473 BNX2X_ERR("Received %d when tried to take lock\n", rc);
10474 return rc;
10475 }
10476
10477 /* Check whether the entry for this path already exists */
10478 tmp_list = bnx2x_prev_path_get_entry(bp);
10479 if (tmp_list) {
10480 if (!tmp_list->aer) {
10481 BNX2X_ERR("Re-Marking the path.\n");
10482 } else {
10483 DP(NETIF_MSG_HW, "Removing AER indication from path %d\n",
10484 BP_PATH(bp));
10485 tmp_list->aer = 0;
10486 }
10487 up(&bnx2x_prev_sem);
10488 return 0;
10489 }
10490 up(&bnx2x_prev_sem);
10491
10492 /* Create an entry for this path and add it */
ea4b3857 10493 tmp_list = kmalloc(sizeof(struct bnx2x_prev_path_list), GFP_KERNEL);
452427b0
YM
10494 if (!tmp_list) {
10495 BNX2X_ERR("Failed to allocate 'bnx2x_prev_path_list'\n");
10496 return -ENOMEM;
10497 }
10498
10499 tmp_list->bus = bp->pdev->bus->number;
10500 tmp_list->slot = PCI_SLOT(bp->pdev->devfn);
10501 tmp_list->path = BP_PATH(bp);
7fa6f340 10502 tmp_list->aer = 0;
c63da990 10503 tmp_list->undi = after_undi ? (1 << BP_PORT(bp)) : 0;
452427b0
YM
10504
10505 rc = down_interruptible(&bnx2x_prev_sem);
10506 if (rc) {
10507 BNX2X_ERR("Received %d when tried to take lock\n", rc);
10508 kfree(tmp_list);
10509 } else {
7fa6f340
YM
10510 DP(NETIF_MSG_HW, "Marked path [%d] - finished previous unload\n",
10511 BP_PATH(bp));
452427b0
YM
10512 list_add(&tmp_list->list, &bnx2x_prev_list);
10513 up(&bnx2x_prev_sem);
10514 }
10515
10516 return rc;
10517}
10518
0329aba1 10519static int bnx2x_do_flr(struct bnx2x *bp)
452427b0 10520{
452427b0
YM
10521 struct pci_dev *dev = bp->pdev;
10522
8eee694c
YM
10523 if (CHIP_IS_E1x(bp)) {
10524 BNX2X_DEV_INFO("FLR not supported in E1/E1H\n");
10525 return -EINVAL;
10526 }
10527
10528 /* only bootcode REQ_BC_VER_4_INITIATE_FLR and onwards support flr */
10529 if (bp->common.bc_ver < REQ_BC_VER_4_INITIATE_FLR) {
10530 BNX2X_ERR("FLR not supported by BC_VER: 0x%x\n",
10531 bp->common.bc_ver);
10532 return -EINVAL;
10533 }
452427b0 10534
8903b9eb
CL
10535 if (!pci_wait_for_pending_transaction(dev))
10536 dev_err(&dev->dev, "transaction is not cleared; proceeding with reset anyway\n");
452427b0 10537
8eee694c 10538 BNX2X_DEV_INFO("Initiating FLR\n");
452427b0
YM
10539 bnx2x_fw_command(bp, DRV_MSG_CODE_INITIATE_FLR, 0);
10540
10541 return 0;
10542}
10543
0329aba1 10544static int bnx2x_prev_unload_uncommon(struct bnx2x *bp)
452427b0
YM
10545{
10546 int rc;
10547
10548 BNX2X_DEV_INFO("Uncommon unload Flow\n");
10549
10550 /* Test if previous unload process was already finished for this path */
10551 if (bnx2x_prev_is_path_marked(bp))
10552 return bnx2x_prev_mcp_done(bp);
10553
04c46736
YM
10554 BNX2X_DEV_INFO("Path is unmarked\n");
10555
b17b0ca1
YM
10556 /* Cannot proceed with FLR if UNDI is loaded, since FW does not match */
10557 if (bnx2x_prev_is_after_undi(bp))
10558 goto out;
10559
452427b0
YM
10560 /* If function has FLR capabilities, and existing FW version matches
10561 * the one required, then FLR will be sufficient to clean any residue
10562 * left by previous driver
10563 */
91ebb929 10564 rc = bnx2x_compare_fw_ver(bp, FW_MSG_CODE_DRV_LOAD_FUNCTION, false);
8eee694c
YM
10565
10566 if (!rc) {
10567 /* fw version is good */
10568 BNX2X_DEV_INFO("FW version matches our own. Attempting FLR\n");
10569 rc = bnx2x_do_flr(bp);
10570 }
10571
10572 if (!rc) {
10573 /* FLR was performed */
10574 BNX2X_DEV_INFO("FLR successful\n");
10575 return 0;
10576 }
10577
10578 BNX2X_DEV_INFO("Could not FLR\n");
452427b0 10579
b17b0ca1 10580out:
452427b0
YM
10581 /* Close the MCP request, return failure*/
10582 rc = bnx2x_prev_mcp_done(bp);
10583 if (!rc)
10584 rc = BNX2X_PREV_WAIT_NEEDED;
10585
10586 return rc;
10587}
10588
0329aba1 10589static int bnx2x_prev_unload_common(struct bnx2x *bp)
452427b0
YM
10590{
10591 u32 reset_reg, tmp_reg = 0, rc;
c63da990 10592 bool prev_undi = false;
1ef1d45a
BW
10593 struct bnx2x_mac_vals mac_vals;
10594
452427b0
YM
10595 /* It is possible a previous function received 'common' answer,
10596 * but hasn't loaded yet, therefore creating a scenario of
10597 * multiple functions receiving 'common' on the same path.
10598 */
10599 BNX2X_DEV_INFO("Common unload Flow\n");
10600
1ef1d45a
BW
10601 memset(&mac_vals, 0, sizeof(mac_vals));
10602
452427b0
YM
10603 if (bnx2x_prev_is_path_marked(bp))
10604 return bnx2x_prev_mcp_done(bp);
10605
10606 reset_reg = REG_RD(bp, MISC_REG_RESET_REG_1);
10607
10608 /* Reset should be performed after BRB is emptied */
10609 if (reset_reg & MISC_REGISTERS_RESET_REG_1_RST_BRB1) {
10610 u32 timer_count = 1000;
452427b0
YM
10611
10612 /* Close the MAC Rx to prevent BRB from filling up */
1ef1d45a
BW
10613 bnx2x_prev_unload_close_mac(bp, &mac_vals);
10614
3d6b7253 10615 /* close LLH filters for both ports towards the BRB */
1ef1d45a 10616 bnx2x_set_rx_filter(&bp->link_params, 0);
3d6b7253 10617 bp->link_params.port ^= 1;
1ef1d45a 10618 bnx2x_set_rx_filter(&bp->link_params, 0);
3d6b7253 10619 bp->link_params.port ^= 1;
452427b0 10620
b17b0ca1
YM
10621 /* Check if the UNDI driver was previously loaded */
10622 if (bnx2x_prev_is_after_undi(bp)) {
10623 prev_undi = true;
10624 /* clear the UNDI indication */
10625 REG_WR(bp, DORQ_REG_NORM_CID_OFST, 0);
10626 /* clear possible idle check errors */
10627 REG_RD(bp, NIG_REG_NIG_INT_STS_CLR_0);
452427b0 10628 }
d46f7c4d
DK
10629 if (!CHIP_IS_E1x(bp))
10630 /* block FW from writing to host */
10631 REG_WR(bp, PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, 0);
10632
452427b0
YM
10633 /* wait until BRB is empty */
10634 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
10635 while (timer_count) {
10636 u32 prev_brb = tmp_reg;
34f80b04 10637
452427b0
YM
10638 tmp_reg = REG_RD(bp, BRB1_REG_NUM_OF_FULL_BLOCKS);
10639 if (!tmp_reg)
10640 break;
619c5cb6 10641
452427b0 10642 BNX2X_DEV_INFO("BRB still has 0x%08x\n", tmp_reg);
619c5cb6 10643
452427b0
YM
10644 /* reset timer as long as BRB actually gets emptied */
10645 if (prev_brb > tmp_reg)
10646 timer_count = 1000;
10647 else
10648 timer_count--;
da5a662a 10649
7c3afd85
YM
10650 /* If UNDI resides in memory, manually increment it */
10651 if (prev_undi)
10652 bnx2x_prev_unload_undi_inc(bp, 1);
10653
452427b0 10654 udelay(10);
7a06a122 10655 }
452427b0
YM
10656
10657 if (!timer_count)
10658 BNX2X_ERR("Failed to empty BRB, hope for the best\n");
34f80b04 10659 }
f16da43b 10660
452427b0
YM
10661 /* No packets are in the pipeline, path is ready for reset */
10662 bnx2x_reset_common(bp);
10663
1ef1d45a
BW
10664 if (mac_vals.xmac_addr)
10665 REG_WR(bp, mac_vals.xmac_addr, mac_vals.xmac_val);
3d6b7253
YM
10666 if (mac_vals.umac_addr[0])
10667 REG_WR(bp, mac_vals.umac_addr[0], mac_vals.umac_val[0]);
10668 if (mac_vals.umac_addr[1])
10669 REG_WR(bp, mac_vals.umac_addr[1], mac_vals.umac_val[1]);
1ef1d45a
BW
10670 if (mac_vals.emac_addr)
10671 REG_WR(bp, mac_vals.emac_addr, mac_vals.emac_val);
10672 if (mac_vals.bmac_addr) {
10673 REG_WR(bp, mac_vals.bmac_addr, mac_vals.bmac_val[0]);
10674 REG_WR(bp, mac_vals.bmac_addr + 4, mac_vals.bmac_val[1]);
10675 }
10676
c63da990 10677 rc = bnx2x_prev_mark_path(bp, prev_undi);
452427b0
YM
10678 if (rc) {
10679 bnx2x_prev_mcp_done(bp);
10680 return rc;
10681 }
10682
10683 return bnx2x_prev_mcp_done(bp);
10684}
10685
0329aba1 10686static int bnx2x_prev_unload(struct bnx2x *bp)
452427b0
YM
10687{
10688 int time_counter = 10;
10689 u32 rc, fw, hw_lock_reg, hw_lock_val;
10690 BNX2X_DEV_INFO("Entering Previous Unload Flow\n");
10691
24f06716
AE
10692 /* clear hw from errors which may have resulted from an interrupted
10693 * dmae transaction.
10694 */
da254fbc 10695 bnx2x_clean_pglue_errors(bp);
24f06716
AE
10696
10697 /* Release previously held locks */
452427b0
YM
10698 hw_lock_reg = (BP_FUNC(bp) <= 5) ?
10699 (MISC_REG_DRIVER_CONTROL_1 + BP_FUNC(bp) * 8) :
10700 (MISC_REG_DRIVER_CONTROL_7 + (BP_FUNC(bp) - 6) * 8);
10701
3cdeec22 10702 hw_lock_val = REG_RD(bp, hw_lock_reg);
452427b0
YM
10703 if (hw_lock_val) {
10704 if (hw_lock_val & HW_LOCK_RESOURCE_NVRAM) {
10705 BNX2X_DEV_INFO("Release Previously held NVRAM lock\n");
10706 REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
10707 (MCPR_NVM_SW_ARB_ARB_REQ_CLR1 << BP_PORT(bp)));
10708 }
10709
10710 BNX2X_DEV_INFO("Release Previously held hw lock\n");
10711 REG_WR(bp, hw_lock_reg, 0xffffffff);
10712 } else
10713 BNX2X_DEV_INFO("No need to release hw/nvram locks\n");
10714
10715 if (MCPR_ACCESS_LOCK_LOCK & REG_RD(bp, MCP_REG_MCPR_ACCESS_LOCK)) {
10716 BNX2X_DEV_INFO("Release previously held alr\n");
3cdeec22 10717 bnx2x_release_alr(bp);
452427b0
YM
10718 }
10719
452427b0 10720 do {
7fa6f340 10721 int aer = 0;
452427b0
YM
10722 /* Lock MCP using an unload request */
10723 fw = bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS, 0);
10724 if (!fw) {
10725 BNX2X_ERR("MCP response failure, aborting\n");
10726 rc = -EBUSY;
10727 break;
10728 }
10729
7fa6f340
YM
10730 rc = down_interruptible(&bnx2x_prev_sem);
10731 if (rc) {
10732 BNX2X_ERR("Cannot check for AER; Received %d when tried to take lock\n",
10733 rc);
10734 } else {
10735 /* If Path is marked by EEH, ignore unload status */
10736 aer = !!(bnx2x_prev_path_get_entry(bp) &&
10737 bnx2x_prev_path_get_entry(bp)->aer);
60cde81f 10738 up(&bnx2x_prev_sem);
7fa6f340 10739 }
7fa6f340
YM
10740
10741 if (fw == FW_MSG_CODE_DRV_UNLOAD_COMMON || aer) {
452427b0
YM
10742 rc = bnx2x_prev_unload_common(bp);
10743 break;
10744 }
10745
16a5fd92 10746 /* non-common reply from MCP might require looping */
452427b0
YM
10747 rc = bnx2x_prev_unload_uncommon(bp);
10748 if (rc != BNX2X_PREV_WAIT_NEEDED)
10749 break;
10750
10751 msleep(20);
10752 } while (--time_counter);
10753
10754 if (!time_counter || rc) {
91ebb929
YM
10755 BNX2X_DEV_INFO("Unloading previous driver did not occur, Possibly due to MF UNDI\n");
10756 rc = -EPROBE_DEFER;
452427b0
YM
10757 }
10758
c63da990 10759 /* Mark function if its port was used to boot from SAN */
178135c1 10760 if (bnx2x_port_after_undi(bp))
c63da990
BW
10761 bp->link_params.feature_config_flags |=
10762 FEATURE_CONFIG_BOOT_FROM_SAN;
10763
452427b0
YM
10764 BNX2X_DEV_INFO("Finished Previous Unload Flow [%d]\n", rc);
10765
10766 return rc;
34f80b04
EG
10767}
10768
0329aba1 10769static void bnx2x_get_common_hwinfo(struct bnx2x *bp)
34f80b04 10770{
1d187b34 10771 u32 val, val2, val3, val4, id, boot_mode;
72ce58c3 10772 u16 pmc;
34f80b04
EG
10773
10774 /* Get the chip revision id and number. */
10775 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
10776 val = REG_RD(bp, MISC_REG_CHIP_NUM);
10777 id = ((val & 0xffff) << 16);
10778 val = REG_RD(bp, MISC_REG_CHIP_REV);
10779 id |= ((val & 0xf) << 12);
f22fdf25
YM
10780
10781 /* Metal is read from PCI regs, but we can't access >=0x400 from
10782 * the configuration space (so we need to reg_rd)
10783 */
10784 val = REG_RD(bp, PCICFG_OFFSET + PCI_ID_VAL3);
10785 id |= (((val >> 24) & 0xf) << 4);
5a40e08e 10786 val = REG_RD(bp, MISC_REG_BOND_ID);
34f80b04
EG
10787 id |= (val & 0xf);
10788 bp->common.chip_id = id;
523224a3 10789
7e8e02df
BW
10790 /* force 57811 according to MISC register */
10791 if (REG_RD(bp, MISC_REG_CHIP_TYPE) & MISC_REG_CHIP_TYPE_57811_MASK) {
10792 if (CHIP_IS_57810(bp))
10793 bp->common.chip_id = (CHIP_NUM_57811 << 16) |
10794 (bp->common.chip_id & 0x0000FFFF);
10795 else if (CHIP_IS_57810_MF(bp))
10796 bp->common.chip_id = (CHIP_NUM_57811_MF << 16) |
10797 (bp->common.chip_id & 0x0000FFFF);
10798 bp->common.chip_id |= 0x1;
10799 }
10800
523224a3
DK
10801 /* Set doorbell size */
10802 bp->db_size = (1 << BNX2X_DB_SHIFT);
10803
619c5cb6 10804 if (!CHIP_IS_E1x(bp)) {
f2e0899f
DK
10805 val = REG_RD(bp, MISC_REG_PORT4MODE_EN_OVWR);
10806 if ((val & 1) == 0)
10807 val = REG_RD(bp, MISC_REG_PORT4MODE_EN);
10808 else
10809 val = (val >> 1) & 1;
10810 BNX2X_DEV_INFO("chip is in %s\n", val ? "4_PORT_MODE" :
10811 "2_PORT_MODE");
10812 bp->common.chip_port_mode = val ? CHIP_4_PORT_MODE :
10813 CHIP_2_PORT_MODE;
10814
10815 if (CHIP_MODE_IS_4_PORT(bp))
10816 bp->pfid = (bp->pf_num >> 1); /* 0..3 */
10817 else
10818 bp->pfid = (bp->pf_num & 0x6); /* 0, 2, 4, 6 */
10819 } else {
10820 bp->common.chip_port_mode = CHIP_PORT_MODE_NONE; /* N/A */
10821 bp->pfid = bp->pf_num; /* 0..7 */
10822 }
10823
51c1a580
MS
10824 BNX2X_DEV_INFO("pf_id: %x", bp->pfid);
10825
f2e0899f
DK
10826 bp->link_params.chip_id = bp->common.chip_id;
10827 BNX2X_DEV_INFO("chip ID is 0x%x\n", id);
523224a3 10828
1c06328c
EG
10829 val = (REG_RD(bp, 0x2874) & 0x55);
10830 if ((bp->common.chip_id & 0x1) ||
10831 (CHIP_IS_E1(bp) && val) || (CHIP_IS_E1H(bp) && (val == 0x55))) {
10832 bp->flags |= ONE_PORT_FLAG;
10833 BNX2X_DEV_INFO("single port device\n");
10834 }
10835
34f80b04 10836 val = REG_RD(bp, MCP_REG_MCPR_NVM_CFG4);
754a2f52 10837 bp->common.flash_size = (BNX2X_NVRAM_1MB_SIZE <<
34f80b04
EG
10838 (val & MCPR_NVM_CFG4_FLASH_SIZE));
10839 BNX2X_DEV_INFO("flash_size 0x%x (%d)\n",
10840 bp->common.flash_size, bp->common.flash_size);
10841
1b6e2ceb
DK
10842 bnx2x_init_shmem(bp);
10843
f2e0899f
DK
10844 bp->common.shmem2_base = REG_RD(bp, (BP_PATH(bp) ?
10845 MISC_REG_GENERIC_CR_1 :
10846 MISC_REG_GENERIC_CR_0));
1b6e2ceb 10847
34f80b04 10848 bp->link_params.shmem_base = bp->common.shmem_base;
a22f0788 10849 bp->link_params.shmem2_base = bp->common.shmem2_base;
b884d95b
YR
10850 if (SHMEM2_RD(bp, size) >
10851 (u32)offsetof(struct shmem2_region, lfa_host_addr[BP_PORT(bp)]))
10852 bp->link_params.lfa_base =
10853 REG_RD(bp, bp->common.shmem2_base +
10854 (u32)offsetof(struct shmem2_region,
10855 lfa_host_addr[BP_PORT(bp)]));
10856 else
10857 bp->link_params.lfa_base = 0;
2691d51d
EG
10858 BNX2X_DEV_INFO("shmem offset 0x%x shmem2 offset 0x%x\n",
10859 bp->common.shmem_base, bp->common.shmem2_base);
34f80b04 10860
f2e0899f 10861 if (!bp->common.shmem_base) {
34f80b04
EG
10862 BNX2X_DEV_INFO("MCP not active\n");
10863 bp->flags |= NO_MCP_FLAG;
10864 return;
10865 }
10866
34f80b04 10867 bp->common.hw_config = SHMEM_RD(bp, dev_info.shared_hw_config.config);
35b19ba5 10868 BNX2X_DEV_INFO("hw_config 0x%08x\n", bp->common.hw_config);
34f80b04
EG
10869
10870 bp->link_params.hw_led_mode = ((bp->common.hw_config &
10871 SHARED_HW_CFG_LED_MODE_MASK) >>
10872 SHARED_HW_CFG_LED_MODE_SHIFT);
10873
c2c8b03e
EG
10874 bp->link_params.feature_config_flags = 0;
10875 val = SHMEM_RD(bp, dev_info.shared_feature_config.config);
10876 if (val & SHARED_FEAT_CFG_OVERRIDE_PREEMPHASIS_CFG_ENABLED)
10877 bp->link_params.feature_config_flags |=
10878 FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10879 else
10880 bp->link_params.feature_config_flags &=
10881 ~FEATURE_CONFIG_OVERRIDE_PREEMPHASIS_ENABLED;
10882
34f80b04
EG
10883 val = SHMEM_RD(bp, dev_info.bc_rev) >> 8;
10884 bp->common.bc_ver = val;
10885 BNX2X_DEV_INFO("bc_ver %X\n", val);
10886 if (val < BNX2X_BC_VER) {
10887 /* for now only warn
10888 * later we might need to enforce this */
51c1a580
MS
10889 BNX2X_ERR("This driver needs bc_ver %X but found %X, please upgrade BC\n",
10890 BNX2X_BC_VER, val);
34f80b04 10891 }
4d295db0 10892 bp->link_params.feature_config_flags |=
a22f0788 10893 (val >= REQ_BC_VER_4_VRFY_FIRST_PHY_OPT_MDL) ?
f85582f8
DK
10894 FEATURE_CONFIG_BC_SUPPORTS_OPT_MDL_VRFY : 0;
10895
a22f0788
YR
10896 bp->link_params.feature_config_flags |=
10897 (val >= REQ_BC_VER_4_VRFY_SPECIFIC_PHY_OPT_MDL) ?
10898 FEATURE_CONFIG_BC_SUPPORTS_DUAL_PHY_OPT_MDL_VRFY : 0;
a3348722
BW
10899 bp->link_params.feature_config_flags |=
10900 (val >= REQ_BC_VER_4_VRFY_AFEX_SUPPORTED) ?
10901 FEATURE_CONFIG_BC_SUPPORTS_AFEX : 0;
85242eea
YR
10902 bp->link_params.feature_config_flags |=
10903 (val >= REQ_BC_VER_4_SFP_TX_DISABLE_SUPPORTED) ?
10904 FEATURE_CONFIG_BC_SUPPORTS_SFP_TX_DISABLED : 0;
55386fe8
YR
10905
10906 bp->link_params.feature_config_flags |=
10907 (val >= REQ_BC_VER_4_MT_SUPPORTED) ?
10908 FEATURE_CONFIG_MT_SUPPORT : 0;
10909
0e898dd7
BW
10910 bp->flags |= (val >= REQ_BC_VER_4_PFC_STATS_SUPPORTED) ?
10911 BC_SUPPORTS_PFC_STATS : 0;
85242eea 10912
2e499d3c
BW
10913 bp->flags |= (val >= REQ_BC_VER_4_FCOE_FEATURES) ?
10914 BC_SUPPORTS_FCOE_FEATURES : 0;
10915
9876879f
BW
10916 bp->flags |= (val >= REQ_BC_VER_4_DCBX_ADMIN_MSG_NON_PMF) ?
10917 BC_SUPPORTS_DCBX_MSG_NON_PMF : 0;
a6d3a5ba
BW
10918
10919 bp->flags |= (val >= REQ_BC_VER_4_RMMOD_CMD) ?
10920 BC_SUPPORTS_RMMOD_CMD : 0;
10921
1d187b34
BW
10922 boot_mode = SHMEM_RD(bp,
10923 dev_info.port_feature_config[BP_PORT(bp)].mba_config) &
10924 PORT_FEATURE_MBA_BOOT_AGENT_TYPE_MASK;
10925 switch (boot_mode) {
10926 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_PXE:
10927 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_PXE;
10928 break;
10929 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_ISCSIB:
10930 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_ISCSI;
10931 break;
10932 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_FCOE_BOOT:
10933 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_FCOE;
10934 break;
10935 case PORT_FEATURE_MBA_BOOT_AGENT_TYPE_NONE:
10936 bp->common.boot_mode = FEATURE_ETH_BOOTMODE_NONE;
10937 break;
10938 }
10939
29ed74c3 10940 pci_read_config_word(bp->pdev, bp->pdev->pm_cap + PCI_PM_PMC, &pmc);
f9a3ebbe
DK
10941 bp->flags |= (pmc & PCI_PM_CAP_PME_D3cold) ? 0 : NO_WOL_FLAG;
10942
72ce58c3 10943 BNX2X_DEV_INFO("%sWoL capable\n",
f5372251 10944 (bp->flags & NO_WOL_FLAG) ? "not " : "");
34f80b04
EG
10945
10946 val = SHMEM_RD(bp, dev_info.shared_hw_config.part_num);
10947 val2 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[4]);
10948 val3 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[8]);
10949 val4 = SHMEM_RD(bp, dev_info.shared_hw_config.part_num[12]);
10950
cdaa7cb8
VZ
10951 dev_info(&bp->pdev->dev, "part number %X-%X-%X-%X\n",
10952 val, val2, val3, val4);
34f80b04
EG
10953}
10954
f2e0899f
DK
10955#define IGU_FID(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_FID)
10956#define IGU_VEC(val) GET_FIELD((val), IGU_REG_MAPPING_MEMORY_VECTOR)
10957
0329aba1 10958static int bnx2x_get_igu_cam_info(struct bnx2x *bp)
f2e0899f
DK
10959{
10960 int pfid = BP_FUNC(bp);
f2e0899f
DK
10961 int igu_sb_id;
10962 u32 val;
6383c0b3 10963 u8 fid, igu_sb_cnt = 0;
f2e0899f
DK
10964
10965 bp->igu_base_sb = 0xff;
f2e0899f 10966 if (CHIP_INT_MODE_IS_BC(bp)) {
3395a033 10967 int vn = BP_VN(bp);
6383c0b3 10968 igu_sb_cnt = bp->igu_sb_cnt;
f2e0899f
DK
10969 bp->igu_base_sb = (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn) *
10970 FP_SB_MAX_E1x;
10971
10972 bp->igu_dsb_id = E1HVN_MAX * FP_SB_MAX_E1x +
10973 (CHIP_MODE_IS_4_PORT(bp) ? pfid : vn);
10974
9b341bb1 10975 return 0;
f2e0899f
DK
10976 }
10977
10978 /* IGU in normal mode - read CAM */
10979 for (igu_sb_id = 0; igu_sb_id < IGU_REG_MAPPING_MEMORY_SIZE;
10980 igu_sb_id++) {
10981 val = REG_RD(bp, IGU_REG_MAPPING_MEMORY + igu_sb_id * 4);
10982 if (!(val & IGU_REG_MAPPING_MEMORY_VALID))
10983 continue;
10984 fid = IGU_FID(val);
10985 if ((fid & IGU_FID_ENCODE_IS_PF)) {
10986 if ((fid & IGU_FID_PF_NUM_MASK) != pfid)
10987 continue;
10988 if (IGU_VEC(val) == 0)
10989 /* default status block */
10990 bp->igu_dsb_id = igu_sb_id;
10991 else {
10992 if (bp->igu_base_sb == 0xff)
10993 bp->igu_base_sb = igu_sb_id;
6383c0b3 10994 igu_sb_cnt++;
f2e0899f
DK
10995 }
10996 }
10997 }
619c5cb6 10998
6383c0b3 10999#ifdef CONFIG_PCI_MSI
185d4c8b
AE
11000 /* Due to new PF resource allocation by MFW T7.4 and above, it's
11001 * optional that number of CAM entries will not be equal to the value
11002 * advertised in PCI.
11003 * Driver should use the minimal value of both as the actual status
11004 * block count
619c5cb6 11005 */
185d4c8b 11006 bp->igu_sb_cnt = min_t(int, bp->igu_sb_cnt, igu_sb_cnt);
6383c0b3 11007#endif
619c5cb6 11008
9b341bb1 11009 if (igu_sb_cnt == 0) {
f2e0899f 11010 BNX2X_ERR("CAM configuration error\n");
9b341bb1
BW
11011 return -EINVAL;
11012 }
11013
11014 return 0;
f2e0899f
DK
11015}
11016
1dd06ae8 11017static void bnx2x_link_settings_supported(struct bnx2x *bp, u32 switch_cfg)
a2fbb9ea 11018{
a22f0788
YR
11019 int cfg_size = 0, idx, port = BP_PORT(bp);
11020
11021 /* Aggregation of supported attributes of all external phys */
11022 bp->port.supported[0] = 0;
11023 bp->port.supported[1] = 0;
b7737c9b
YR
11024 switch (bp->link_params.num_phys) {
11025 case 1:
a22f0788
YR
11026 bp->port.supported[0] = bp->link_params.phy[INT_PHY].supported;
11027 cfg_size = 1;
11028 break;
b7737c9b 11029 case 2:
a22f0788
YR
11030 bp->port.supported[0] = bp->link_params.phy[EXT_PHY1].supported;
11031 cfg_size = 1;
11032 break;
11033 case 3:
11034 if (bp->link_params.multi_phy_config &
11035 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
11036 bp->port.supported[1] =
11037 bp->link_params.phy[EXT_PHY1].supported;
11038 bp->port.supported[0] =
11039 bp->link_params.phy[EXT_PHY2].supported;
11040 } else {
11041 bp->port.supported[0] =
11042 bp->link_params.phy[EXT_PHY1].supported;
11043 bp->port.supported[1] =
11044 bp->link_params.phy[EXT_PHY2].supported;
11045 }
11046 cfg_size = 2;
11047 break;
b7737c9b 11048 }
a2fbb9ea 11049
a22f0788 11050 if (!(bp->port.supported[0] || bp->port.supported[1])) {
51c1a580 11051 BNX2X_ERR("NVRAM config error. BAD phy config. PHY1 config 0x%x, PHY2 config 0x%x\n",
b7737c9b 11052 SHMEM_RD(bp,
a22f0788
YR
11053 dev_info.port_hw_config[port].external_phy_config),
11054 SHMEM_RD(bp,
11055 dev_info.port_hw_config[port].external_phy_config2));
a2fbb9ea 11056 return;
f85582f8 11057 }
a2fbb9ea 11058
619c5cb6
VZ
11059 if (CHIP_IS_E3(bp))
11060 bp->port.phy_addr = REG_RD(bp, MISC_REG_WC0_CTRL_PHY_ADDR);
11061 else {
11062 switch (switch_cfg) {
11063 case SWITCH_CFG_1G:
11064 bp->port.phy_addr = REG_RD(
11065 bp, NIG_REG_SERDES0_CTRL_PHY_ADDR + port*0x10);
11066 break;
11067 case SWITCH_CFG_10G:
11068 bp->port.phy_addr = REG_RD(
11069 bp, NIG_REG_XGXS0_CTRL_PHY_ADDR + port*0x18);
11070 break;
11071 default:
11072 BNX2X_ERR("BAD switch_cfg link_config 0x%x\n",
11073 bp->port.link_config[0]);
11074 return;
11075 }
a2fbb9ea 11076 }
619c5cb6 11077 BNX2X_DEV_INFO("phy_addr 0x%x\n", bp->port.phy_addr);
a22f0788
YR
11078 /* mask what we support according to speed_cap_mask per configuration */
11079 for (idx = 0; idx < cfg_size; idx++) {
11080 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11081 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF))
a22f0788 11082 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Half;
a2fbb9ea 11083
a22f0788 11084 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11085 PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL))
a22f0788 11086 bp->port.supported[idx] &= ~SUPPORTED_10baseT_Full;
a2fbb9ea 11087
a22f0788 11088 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11089 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF))
a22f0788 11090 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Half;
a2fbb9ea 11091
a22f0788 11092 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11093 PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL))
a22f0788 11094 bp->port.supported[idx] &= ~SUPPORTED_100baseT_Full;
a2fbb9ea 11095
a22f0788 11096 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11097 PORT_HW_CFG_SPEED_CAPABILITY_D0_1G))
a22f0788 11098 bp->port.supported[idx] &= ~(SUPPORTED_1000baseT_Half |
f85582f8 11099 SUPPORTED_1000baseT_Full);
a2fbb9ea 11100
a22f0788 11101 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11102 PORT_HW_CFG_SPEED_CAPABILITY_D0_2_5G))
a22f0788 11103 bp->port.supported[idx] &= ~SUPPORTED_2500baseX_Full;
a2fbb9ea 11104
a22f0788 11105 if (!(bp->link_params.speed_cap_mask[idx] &
c18487ee 11106 PORT_HW_CFG_SPEED_CAPABILITY_D0_10G))
a22f0788 11107 bp->port.supported[idx] &= ~SUPPORTED_10000baseT_Full;
b8e0d884
YR
11108
11109 if (!(bp->link_params.speed_cap_mask[idx] &
11110 PORT_HW_CFG_SPEED_CAPABILITY_D0_20G))
11111 bp->port.supported[idx] &= ~SUPPORTED_20000baseKR2_Full;
a22f0788 11112 }
a2fbb9ea 11113
a22f0788
YR
11114 BNX2X_DEV_INFO("supported 0x%x 0x%x\n", bp->port.supported[0],
11115 bp->port.supported[1]);
a2fbb9ea
ET
11116}
11117
0329aba1 11118static void bnx2x_link_settings_requested(struct bnx2x *bp)
a2fbb9ea 11119{
a22f0788
YR
11120 u32 link_config, idx, cfg_size = 0;
11121 bp->port.advertising[0] = 0;
11122 bp->port.advertising[1] = 0;
11123 switch (bp->link_params.num_phys) {
11124 case 1:
11125 case 2:
11126 cfg_size = 1;
11127 break;
11128 case 3:
11129 cfg_size = 2;
11130 break;
11131 }
11132 for (idx = 0; idx < cfg_size; idx++) {
11133 bp->link_params.req_duplex[idx] = DUPLEX_FULL;
11134 link_config = bp->port.link_config[idx];
11135 switch (link_config & PORT_FEATURE_LINK_SPEED_MASK) {
f85582f8 11136 case PORT_FEATURE_LINK_SPEED_AUTO:
a22f0788
YR
11137 if (bp->port.supported[idx] & SUPPORTED_Autoneg) {
11138 bp->link_params.req_line_speed[idx] =
11139 SPEED_AUTO_NEG;
11140 bp->port.advertising[idx] |=
11141 bp->port.supported[idx];
10bd1f24
MY
11142 if (bp->link_params.phy[EXT_PHY1].type ==
11143 PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM84833)
11144 bp->port.advertising[idx] |=
11145 (SUPPORTED_100baseT_Half |
11146 SUPPORTED_100baseT_Full);
f85582f8
DK
11147 } else {
11148 /* force 10G, no AN */
a22f0788
YR
11149 bp->link_params.req_line_speed[idx] =
11150 SPEED_10000;
11151 bp->port.advertising[idx] |=
11152 (ADVERTISED_10000baseT_Full |
f85582f8 11153 ADVERTISED_FIBRE);
a22f0788 11154 continue;
f85582f8
DK
11155 }
11156 break;
a2fbb9ea 11157
f85582f8 11158 case PORT_FEATURE_LINK_SPEED_10M_FULL:
a22f0788
YR
11159 if (bp->port.supported[idx] & SUPPORTED_10baseT_Full) {
11160 bp->link_params.req_line_speed[idx] =
11161 SPEED_10;
11162 bp->port.advertising[idx] |=
11163 (ADVERTISED_10baseT_Full |
f85582f8
DK
11164 ADVERTISED_TP);
11165 } else {
51c1a580 11166 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8 11167 link_config,
a22f0788 11168 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
11169 return;
11170 }
11171 break;
a2fbb9ea 11172
f85582f8 11173 case PORT_FEATURE_LINK_SPEED_10M_HALF:
a22f0788
YR
11174 if (bp->port.supported[idx] & SUPPORTED_10baseT_Half) {
11175 bp->link_params.req_line_speed[idx] =
11176 SPEED_10;
11177 bp->link_params.req_duplex[idx] =
11178 DUPLEX_HALF;
11179 bp->port.advertising[idx] |=
11180 (ADVERTISED_10baseT_Half |
f85582f8
DK
11181 ADVERTISED_TP);
11182 } else {
51c1a580 11183 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
11184 link_config,
11185 bp->link_params.speed_cap_mask[idx]);
11186 return;
11187 }
11188 break;
a2fbb9ea 11189
f85582f8
DK
11190 case PORT_FEATURE_LINK_SPEED_100M_FULL:
11191 if (bp->port.supported[idx] &
11192 SUPPORTED_100baseT_Full) {
a22f0788
YR
11193 bp->link_params.req_line_speed[idx] =
11194 SPEED_100;
11195 bp->port.advertising[idx] |=
11196 (ADVERTISED_100baseT_Full |
f85582f8
DK
11197 ADVERTISED_TP);
11198 } else {
51c1a580 11199 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
f85582f8
DK
11200 link_config,
11201 bp->link_params.speed_cap_mask[idx]);
11202 return;
11203 }
11204 break;
a2fbb9ea 11205
f85582f8
DK
11206 case PORT_FEATURE_LINK_SPEED_100M_HALF:
11207 if (bp->port.supported[idx] &
11208 SUPPORTED_100baseT_Half) {
11209 bp->link_params.req_line_speed[idx] =
11210 SPEED_100;
11211 bp->link_params.req_duplex[idx] =
11212 DUPLEX_HALF;
a22f0788
YR
11213 bp->port.advertising[idx] |=
11214 (ADVERTISED_100baseT_Half |
f85582f8
DK
11215 ADVERTISED_TP);
11216 } else {
51c1a580 11217 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
11218 link_config,
11219 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
11220 return;
11221 }
11222 break;
a2fbb9ea 11223
f85582f8 11224 case PORT_FEATURE_LINK_SPEED_1G:
a22f0788
YR
11225 if (bp->port.supported[idx] &
11226 SUPPORTED_1000baseT_Full) {
11227 bp->link_params.req_line_speed[idx] =
11228 SPEED_1000;
11229 bp->port.advertising[idx] |=
11230 (ADVERTISED_1000baseT_Full |
f85582f8 11231 ADVERTISED_TP);
5d67c1c5
YM
11232 } else if (bp->port.supported[idx] &
11233 SUPPORTED_1000baseKX_Full) {
11234 bp->link_params.req_line_speed[idx] =
11235 SPEED_1000;
11236 bp->port.advertising[idx] |=
11237 ADVERTISED_1000baseKX_Full;
f85582f8 11238 } else {
51c1a580 11239 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788
YR
11240 link_config,
11241 bp->link_params.speed_cap_mask[idx]);
f85582f8
DK
11242 return;
11243 }
11244 break;
a2fbb9ea 11245
f85582f8 11246 case PORT_FEATURE_LINK_SPEED_2_5G:
a22f0788
YR
11247 if (bp->port.supported[idx] &
11248 SUPPORTED_2500baseX_Full) {
11249 bp->link_params.req_line_speed[idx] =
11250 SPEED_2500;
11251 bp->port.advertising[idx] |=
11252 (ADVERTISED_2500baseX_Full |
34f80b04 11253 ADVERTISED_TP);
f85582f8 11254 } else {
51c1a580 11255 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 11256 link_config,
f85582f8
DK
11257 bp->link_params.speed_cap_mask[idx]);
11258 return;
11259 }
11260 break;
a2fbb9ea 11261
f85582f8 11262 case PORT_FEATURE_LINK_SPEED_10G_CX4:
a22f0788
YR
11263 if (bp->port.supported[idx] &
11264 SUPPORTED_10000baseT_Full) {
11265 bp->link_params.req_line_speed[idx] =
11266 SPEED_10000;
11267 bp->port.advertising[idx] |=
11268 (ADVERTISED_10000baseT_Full |
34f80b04 11269 ADVERTISED_FIBRE);
5d67c1c5
YM
11270 } else if (bp->port.supported[idx] &
11271 SUPPORTED_10000baseKR_Full) {
11272 bp->link_params.req_line_speed[idx] =
11273 SPEED_10000;
11274 bp->port.advertising[idx] |=
11275 (ADVERTISED_10000baseKR_Full |
11276 ADVERTISED_FIBRE);
f85582f8 11277 } else {
51c1a580 11278 BNX2X_ERR("NVRAM config error. Invalid link_config 0x%x speed_cap_mask 0x%x\n",
a22f0788 11279 link_config,
f85582f8
DK
11280 bp->link_params.speed_cap_mask[idx]);
11281 return;
11282 }
11283 break;
3c9ada22
YR
11284 case PORT_FEATURE_LINK_SPEED_20G:
11285 bp->link_params.req_line_speed[idx] = SPEED_20000;
a2fbb9ea 11286
3c9ada22 11287 break;
f85582f8 11288 default:
51c1a580 11289 BNX2X_ERR("NVRAM config error. BAD link speed link_config 0x%x\n",
754a2f52 11290 link_config);
f85582f8
DK
11291 bp->link_params.req_line_speed[idx] =
11292 SPEED_AUTO_NEG;
11293 bp->port.advertising[idx] =
11294 bp->port.supported[idx];
11295 break;
11296 }
a2fbb9ea 11297
a22f0788 11298 bp->link_params.req_flow_ctrl[idx] = (link_config &
34f80b04 11299 PORT_FEATURE_FLOW_CONTROL_MASK);
cd1dfce2
YM
11300 if (bp->link_params.req_flow_ctrl[idx] ==
11301 BNX2X_FLOW_CTRL_AUTO) {
11302 if (!(bp->port.supported[idx] & SUPPORTED_Autoneg))
11303 bp->link_params.req_flow_ctrl[idx] =
11304 BNX2X_FLOW_CTRL_NONE;
11305 else
11306 bnx2x_set_requested_fc(bp);
a22f0788 11307 }
a2fbb9ea 11308
51c1a580 11309 BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x advertising 0x%x\n",
a22f0788
YR
11310 bp->link_params.req_line_speed[idx],
11311 bp->link_params.req_duplex[idx],
11312 bp->link_params.req_flow_ctrl[idx],
11313 bp->port.advertising[idx]);
11314 }
a2fbb9ea
ET
11315}
11316
0329aba1 11317static void bnx2x_set_mac_buf(u8 *mac_buf, u32 mac_lo, u16 mac_hi)
e665bfda 11318{
86564c3f
YM
11319 __be16 mac_hi_be = cpu_to_be16(mac_hi);
11320 __be32 mac_lo_be = cpu_to_be32(mac_lo);
11321 memcpy(mac_buf, &mac_hi_be, sizeof(mac_hi_be));
11322 memcpy(mac_buf + sizeof(mac_hi_be), &mac_lo_be, sizeof(mac_lo_be));
e665bfda
MC
11323}
11324
0329aba1 11325static void bnx2x_get_port_hwinfo(struct bnx2x *bp)
a2fbb9ea 11326{
34f80b04 11327 int port = BP_PORT(bp);
589abe3a 11328 u32 config;
c8c60d88 11329 u32 ext_phy_type, ext_phy_config, eee_mode;
a2fbb9ea 11330
c18487ee 11331 bp->link_params.bp = bp;
34f80b04 11332 bp->link_params.port = port;
c18487ee 11333
c18487ee 11334 bp->link_params.lane_config =
a2fbb9ea 11335 SHMEM_RD(bp, dev_info.port_hw_config[port].lane_config);
4d295db0 11336
a22f0788 11337 bp->link_params.speed_cap_mask[0] =
a2fbb9ea 11338 SHMEM_RD(bp,
b0261926
YR
11339 dev_info.port_hw_config[port].speed_capability_mask) &
11340 PORT_HW_CFG_SPEED_CAPABILITY_D0_MASK;
a22f0788
YR
11341 bp->link_params.speed_cap_mask[1] =
11342 SHMEM_RD(bp,
b0261926
YR
11343 dev_info.port_hw_config[port].speed_capability_mask2) &
11344 PORT_HW_CFG_SPEED_CAPABILITY_D0_MASK;
a22f0788 11345 bp->port.link_config[0] =
a2fbb9ea
ET
11346 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config);
11347
a22f0788
YR
11348 bp->port.link_config[1] =
11349 SHMEM_RD(bp, dev_info.port_feature_config[port].link_config2);
c2c8b03e 11350
a22f0788
YR
11351 bp->link_params.multi_phy_config =
11352 SHMEM_RD(bp, dev_info.port_hw_config[port].multi_phy_config);
3ce2c3f9
EG
11353 /* If the device is capable of WoL, set the default state according
11354 * to the HW
11355 */
4d295db0 11356 config = SHMEM_RD(bp, dev_info.port_feature_config[port].config);
3ce2c3f9
EG
11357 bp->wol = (!(bp->flags & NO_WOL_FLAG) &&
11358 (config & PORT_FEATURE_WOL_ENABLED));
11359
4ba7699b
YM
11360 if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) ==
11361 PORT_FEAT_CFG_STORAGE_PERSONALITY_FCOE && !IS_MF(bp))
11362 bp->flags |= NO_ISCSI_FLAG;
11363 if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) ==
11364 PORT_FEAT_CFG_STORAGE_PERSONALITY_ISCSI && !(IS_MF(bp)))
11365 bp->flags |= NO_FCOE_FLAG;
11366
51c1a580 11367 BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n",
c18487ee 11368 bp->link_params.lane_config,
a22f0788
YR
11369 bp->link_params.speed_cap_mask[0],
11370 bp->port.link_config[0]);
a2fbb9ea 11371
a22f0788 11372 bp->link_params.switch_cfg = (bp->port.link_config[0] &
f85582f8 11373 PORT_FEATURE_CONNECTED_SWITCH_MASK);
b7737c9b 11374 bnx2x_phy_probe(&bp->link_params);
c18487ee 11375 bnx2x_link_settings_supported(bp, bp->link_params.switch_cfg);
a2fbb9ea
ET
11376
11377 bnx2x_link_settings_requested(bp);
11378
01cd4528
EG
11379 /*
11380 * If connected directly, work with the internal PHY, otherwise, work
11381 * with the external PHY
11382 */
b7737c9b
YR
11383 ext_phy_config =
11384 SHMEM_RD(bp,
11385 dev_info.port_hw_config[port].external_phy_config);
11386 ext_phy_type = XGXS_EXT_PHY_TYPE(ext_phy_config);
01cd4528 11387 if (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_DIRECT)
b7737c9b 11388 bp->mdio.prtad = bp->port.phy_addr;
01cd4528
EG
11389
11390 else if ((ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_FAILURE) &&
11391 (ext_phy_type != PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN))
11392 bp->mdio.prtad =
b7737c9b 11393 XGXS_EXT_PHY_ADDR(ext_phy_config);
5866df6d 11394
c8c60d88
YM
11395 /* Configure link feature according to nvram value */
11396 eee_mode = (((SHMEM_RD(bp, dev_info.
11397 port_feature_config[port].eee_power_mode)) &
11398 PORT_FEAT_CFG_EEE_POWER_MODE_MASK) >>
11399 PORT_FEAT_CFG_EEE_POWER_MODE_SHIFT);
11400 if (eee_mode != PORT_FEAT_CFG_EEE_POWER_MODE_DISABLED) {
11401 bp->link_params.eee_mode = EEE_MODE_ADV_LPI |
11402 EEE_MODE_ENABLE_LPI |
11403 EEE_MODE_OUTPUT_TIME;
11404 } else {
11405 bp->link_params.eee_mode = 0;
11406 }
0793f83f 11407}
01cd4528 11408
b306f5ed 11409void bnx2x_get_iscsi_info(struct bnx2x *bp)
2ba45142 11410{
9e62e912 11411 u32 no_flags = NO_ISCSI_FLAG;
bf61ee14 11412 int port = BP_PORT(bp);
2ba45142 11413 u32 max_iscsi_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
bf61ee14 11414 drv_lic_key[port].max_iscsi_conn);
2ba45142 11415
55c11941
MS
11416 if (!CNIC_SUPPORT(bp)) {
11417 bp->flags |= no_flags;
11418 return;
11419 }
11420
b306f5ed 11421 /* Get the number of maximum allowed iSCSI connections */
2ba45142
VZ
11422 bp->cnic_eth_dev.max_iscsi_conn =
11423 (max_iscsi_conn & BNX2X_MAX_ISCSI_INIT_CONN_MASK) >>
11424 BNX2X_MAX_ISCSI_INIT_CONN_SHIFT;
11425
b306f5ed
DK
11426 BNX2X_DEV_INFO("max_iscsi_conn 0x%x\n",
11427 bp->cnic_eth_dev.max_iscsi_conn);
11428
11429 /*
11430 * If maximum allowed number of connections is zero -
11431 * disable the feature.
11432 */
11433 if (!bp->cnic_eth_dev.max_iscsi_conn)
9e62e912 11434 bp->flags |= no_flags;
b306f5ed
DK
11435}
11436
0329aba1 11437static void bnx2x_get_ext_wwn_info(struct bnx2x *bp, int func)
9e62e912
DK
11438{
11439 /* Port info */
11440 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
11441 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_upper);
11442 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
11443 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_port_name_lower);
11444
11445 /* Node info */
11446 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
11447 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_upper);
11448 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
11449 MF_CFG_RD(bp, func_ext_config[func].fcoe_wwn_node_name_lower);
11450}
86800194
DK
11451
11452static int bnx2x_shared_fcoe_funcs(struct bnx2x *bp)
11453{
11454 u8 count = 0;
11455
11456 if (IS_MF(bp)) {
11457 u8 fid;
11458
11459 /* iterate over absolute function ids for this path: */
11460 for (fid = BP_PATH(bp); fid < E2_FUNC_MAX * 2; fid += 2) {
11461 if (IS_MF_SD(bp)) {
11462 u32 cfg = MF_CFG_RD(bp,
11463 func_mf_config[fid].config);
11464
11465 if (!(cfg & FUNC_MF_CFG_FUNC_HIDE) &&
11466 ((cfg & FUNC_MF_CFG_PROTOCOL_MASK) ==
11467 FUNC_MF_CFG_PROTOCOL_FCOE))
11468 count++;
11469 } else {
11470 u32 cfg = MF_CFG_RD(bp,
11471 func_ext_config[fid].
11472 func_cfg);
11473
11474 if ((cfg & MACP_FUNC_CFG_FLAGS_ENABLED) &&
11475 (cfg & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD))
11476 count++;
11477 }
11478 }
11479 } else { /* SF */
11480 int port, port_cnt = CHIP_MODE_IS_4_PORT(bp) ? 2 : 1;
11481
11482 for (port = 0; port < port_cnt; port++) {
11483 u32 lic = SHMEM_RD(bp,
11484 drv_lic_key[port].max_fcoe_conn) ^
11485 FW_ENCODE_32BIT_PATTERN;
11486 if (lic)
11487 count++;
11488 }
11489 }
11490
11491 return count;
11492}
11493
0329aba1 11494static void bnx2x_get_fcoe_info(struct bnx2x *bp)
b306f5ed
DK
11495{
11496 int port = BP_PORT(bp);
11497 int func = BP_ABS_FUNC(bp);
b306f5ed
DK
11498 u32 max_fcoe_conn = FW_ENCODE_32BIT_PATTERN ^ SHMEM_RD(bp,
11499 drv_lic_key[port].max_fcoe_conn);
86800194 11500 u8 num_fcoe_func = bnx2x_shared_fcoe_funcs(bp);
b306f5ed 11501
55c11941
MS
11502 if (!CNIC_SUPPORT(bp)) {
11503 bp->flags |= NO_FCOE_FLAG;
11504 return;
11505 }
11506
b306f5ed 11507 /* Get the number of maximum allowed FCoE connections */
2ba45142
VZ
11508 bp->cnic_eth_dev.max_fcoe_conn =
11509 (max_fcoe_conn & BNX2X_MAX_FCOE_INIT_CONN_MASK) >>
11510 BNX2X_MAX_FCOE_INIT_CONN_SHIFT;
11511
0eb43b4b
BPG
11512 /* Calculate the number of maximum allowed FCoE tasks */
11513 bp->cnic_eth_dev.max_fcoe_exchanges = MAX_NUM_FCOE_TASKS_PER_ENGINE;
86800194
DK
11514
11515 /* check if FCoE resources must be shared between different functions */
11516 if (num_fcoe_func)
11517 bp->cnic_eth_dev.max_fcoe_exchanges /= num_fcoe_func;
0eb43b4b 11518
bf61ee14
VZ
11519 /* Read the WWN: */
11520 if (!IS_MF(bp)) {
11521 /* Port info */
11522 bp->cnic_eth_dev.fcoe_wwn_port_name_hi =
11523 SHMEM_RD(bp,
2de67439 11524 dev_info.port_hw_config[port].
bf61ee14
VZ
11525 fcoe_wwn_port_name_upper);
11526 bp->cnic_eth_dev.fcoe_wwn_port_name_lo =
11527 SHMEM_RD(bp,
2de67439 11528 dev_info.port_hw_config[port].
bf61ee14
VZ
11529 fcoe_wwn_port_name_lower);
11530
11531 /* Node info */
11532 bp->cnic_eth_dev.fcoe_wwn_node_name_hi =
11533 SHMEM_RD(bp,
2de67439 11534 dev_info.port_hw_config[port].
bf61ee14
VZ
11535 fcoe_wwn_node_name_upper);
11536 bp->cnic_eth_dev.fcoe_wwn_node_name_lo =
11537 SHMEM_RD(bp,
2de67439 11538 dev_info.port_hw_config[port].
bf61ee14
VZ
11539 fcoe_wwn_node_name_lower);
11540 } else if (!IS_MF_SD(bp)) {
2e98ffc2 11541 /* Read the WWN info only if the FCoE feature is enabled for
bf61ee14
VZ
11542 * this function.
11543 */
2e98ffc2
DK
11544 if (BNX2X_HAS_MF_EXT_PROTOCOL_FCOE(bp))
11545 bnx2x_get_ext_wwn_info(bp, func);
11546 } else {
11547 if (BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp) && !CHIP_IS_E1x(bp))
9e62e912 11548 bnx2x_get_ext_wwn_info(bp, func);
382e513a 11549 }
bf61ee14 11550
b306f5ed 11551 BNX2X_DEV_INFO("max_fcoe_conn 0x%x\n", bp->cnic_eth_dev.max_fcoe_conn);
2ba45142 11552
bf61ee14
VZ
11553 /*
11554 * If maximum allowed number of connections is zero -
2ba45142
VZ
11555 * disable the feature.
11556 */
2ba45142
VZ
11557 if (!bp->cnic_eth_dev.max_fcoe_conn)
11558 bp->flags |= NO_FCOE_FLAG;
11559}
b306f5ed 11560
0329aba1 11561static void bnx2x_get_cnic_info(struct bnx2x *bp)
b306f5ed
DK
11562{
11563 /*
11564 * iSCSI may be dynamically disabled but reading
11565 * info here we will decrease memory usage by driver
11566 * if the feature is disabled for good
11567 */
11568 bnx2x_get_iscsi_info(bp);
11569 bnx2x_get_fcoe_info(bp);
11570}
2ba45142 11571
0329aba1 11572static void bnx2x_get_cnic_mac_hwinfo(struct bnx2x *bp)
0793f83f
DK
11573{
11574 u32 val, val2;
11575 int func = BP_ABS_FUNC(bp);
11576 int port = BP_PORT(bp);
2ba45142
VZ
11577 u8 *iscsi_mac = bp->cnic_eth_dev.iscsi_mac;
11578 u8 *fip_mac = bp->fip_mac;
0793f83f 11579
55c11941
MS
11580 if (IS_MF(bp)) {
11581 /* iSCSI and FCoE NPAR MACs: if there is no either iSCSI or
2ba45142 11582 * FCoE MAC then the appropriate feature should be disabled.
55c11941
MS
11583 * In non SD mode features configuration comes from struct
11584 * func_ext_config.
2ba45142 11585 */
2e98ffc2 11586 if (!IS_MF_SD(bp)) {
0793f83f
DK
11587 u32 cfg = MF_CFG_RD(bp, func_ext_config[func].func_cfg);
11588 if (cfg & MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD) {
11589 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 11590 iscsi_mac_addr_upper);
0793f83f 11591 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 11592 iscsi_mac_addr_lower);
2ba45142 11593 bnx2x_set_mac_buf(iscsi_mac, val, val2);
55c11941
MS
11594 BNX2X_DEV_INFO
11595 ("Read iSCSI MAC: %pM\n", iscsi_mac);
11596 } else {
2ba45142 11597 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
55c11941 11598 }
2ba45142
VZ
11599
11600 if (cfg & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD) {
11601 val2 = MF_CFG_RD(bp, func_ext_config[func].
55c11941 11602 fcoe_mac_addr_upper);
2ba45142 11603 val = MF_CFG_RD(bp, func_ext_config[func].
55c11941 11604 fcoe_mac_addr_lower);
2ba45142 11605 bnx2x_set_mac_buf(fip_mac, val, val2);
55c11941
MS
11606 BNX2X_DEV_INFO
11607 ("Read FCoE L2 MAC: %pM\n", fip_mac);
11608 } else {
2ba45142 11609 bp->flags |= NO_FCOE_FLAG;
55c11941 11610 }
a3348722
BW
11611
11612 bp->mf_ext_config = cfg;
11613
9e62e912 11614 } else { /* SD MODE */
55c11941
MS
11615 if (BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp)) {
11616 /* use primary mac as iscsi mac */
11617 memcpy(iscsi_mac, bp->dev->dev_addr, ETH_ALEN);
11618
11619 BNX2X_DEV_INFO("SD ISCSI MODE\n");
11620 BNX2X_DEV_INFO
11621 ("Read iSCSI MAC: %pM\n", iscsi_mac);
11622 } else if (BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)) {
11623 /* use primary mac as fip mac */
11624 memcpy(fip_mac, bp->dev->dev_addr, ETH_ALEN);
11625 BNX2X_DEV_INFO("SD FCoE MODE\n");
11626 BNX2X_DEV_INFO
11627 ("Read FIP MAC: %pM\n", fip_mac);
614c76df 11628 }
0793f83f 11629 }
a3348722 11630
82594f8f
YM
11631 /* If this is a storage-only interface, use SAN mac as
11632 * primary MAC. Notice that for SD this is already the case,
11633 * as the SAN mac was copied from the primary MAC.
11634 */
11635 if (IS_MF_FCOE_AFEX(bp))
a3348722 11636 memcpy(bp->dev->dev_addr, fip_mac, ETH_ALEN);
0793f83f 11637 } else {
0793f83f 11638 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 11639 iscsi_mac_upper);
0793f83f 11640 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 11641 iscsi_mac_lower);
2ba45142 11642 bnx2x_set_mac_buf(iscsi_mac, val, val2);
c03bd39c
VZ
11643
11644 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 11645 fcoe_fip_mac_upper);
c03bd39c 11646 val = SHMEM_RD(bp, dev_info.port_hw_config[port].
55c11941 11647 fcoe_fip_mac_lower);
c03bd39c 11648 bnx2x_set_mac_buf(fip_mac, val, val2);
0793f83f
DK
11649 }
11650
55c11941 11651 /* Disable iSCSI OOO if MAC configuration is invalid. */
426b9241 11652 if (!is_valid_ether_addr(iscsi_mac)) {
55c11941 11653 bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
c7bf7169 11654 eth_zero_addr(iscsi_mac);
426b9241
DK
11655 }
11656
55c11941 11657 /* Disable FCoE if MAC configuration is invalid. */
426b9241
DK
11658 if (!is_valid_ether_addr(fip_mac)) {
11659 bp->flags |= NO_FCOE_FLAG;
c7bf7169 11660 eth_zero_addr(bp->fip_mac);
426b9241 11661 }
55c11941
MS
11662}
11663
0329aba1 11664static void bnx2x_get_mac_hwinfo(struct bnx2x *bp)
55c11941
MS
11665{
11666 u32 val, val2;
11667 int func = BP_ABS_FUNC(bp);
11668 int port = BP_PORT(bp);
11669
11670 /* Zero primary MAC configuration */
c7bf7169 11671 eth_zero_addr(bp->dev->dev_addr);
55c11941
MS
11672
11673 if (BP_NOMCP(bp)) {
11674 BNX2X_ERROR("warning: random MAC workaround active\n");
11675 eth_hw_addr_random(bp->dev);
11676 } else if (IS_MF(bp)) {
11677 val2 = MF_CFG_RD(bp, func_mf_config[func].mac_upper);
11678 val = MF_CFG_RD(bp, func_mf_config[func].mac_lower);
11679 if ((val2 != FUNC_MF_CFG_UPPERMAC_DEFAULT) &&
11680 (val != FUNC_MF_CFG_LOWERMAC_DEFAULT))
11681 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
11682
11683 if (CNIC_SUPPORT(bp))
11684 bnx2x_get_cnic_mac_hwinfo(bp);
11685 } else {
11686 /* in SF read MACs from port configuration */
11687 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_upper);
11688 val = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_lower);
11689 bnx2x_set_mac_buf(bp->dev->dev_addr, val, val2);
11690
11691 if (CNIC_SUPPORT(bp))
11692 bnx2x_get_cnic_mac_hwinfo(bp);
11693 }
11694
3d7d562c
YM
11695 if (!BP_NOMCP(bp)) {
11696 /* Read physical port identifier from shmem */
11697 val2 = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_upper);
11698 val = SHMEM_RD(bp, dev_info.port_hw_config[port].mac_lower);
11699 bnx2x_set_mac_buf(bp->phys_port_id, val, val2);
11700 bp->flags |= HAS_PHYS_PORT_ID;
11701 }
11702
55c11941 11703 memcpy(bp->link_params.mac_addr, bp->dev->dev_addr, ETH_ALEN);
619c5cb6 11704
2e98ffc2 11705 if (!is_valid_ether_addr(bp->dev->dev_addr))
619c5cb6 11706 dev_err(&bp->pdev->dev,
51c1a580
MS
11707 "bad Ethernet MAC address configuration: %pM\n"
11708 "change it manually before bringing up the appropriate network interface\n",
0f9dad10 11709 bp->dev->dev_addr);
7964211d 11710}
51c1a580 11711
0329aba1 11712static bool bnx2x_get_dropless_info(struct bnx2x *bp)
7964211d
YM
11713{
11714 int tmp;
11715 u32 cfg;
51c1a580 11716
aeeddb8b 11717 if (IS_VF(bp))
4e833c59 11718 return false;
aeeddb8b 11719
7964211d
YM
11720 if (IS_MF(bp) && !CHIP_IS_E1x(bp)) {
11721 /* Take function: tmp = func */
11722 tmp = BP_ABS_FUNC(bp);
11723 cfg = MF_CFG_RD(bp, func_ext_config[tmp].func_cfg);
11724 cfg = !!(cfg & MACP_FUNC_CFG_PAUSE_ON_HOST_RING);
11725 } else {
11726 /* Take port: tmp = port */
11727 tmp = BP_PORT(bp);
11728 cfg = SHMEM_RD(bp,
11729 dev_info.port_hw_config[tmp].generic_features);
11730 cfg = !!(cfg & PORT_HW_CFG_PAUSE_ON_HOST_RING_ENABLED);
11731 }
11732 return cfg;
34f80b04
EG
11733}
11734
83bad206
YM
11735static void validate_set_si_mode(struct bnx2x *bp)
11736{
11737 u8 func = BP_ABS_FUNC(bp);
11738 u32 val;
11739
11740 val = MF_CFG_RD(bp, func_mf_config[func].mac_upper);
11741
11742 /* check for legal mac (upper bytes) */
11743 if (val != 0xffff) {
11744 bp->mf_mode = MULTI_FUNCTION_SI;
11745 bp->mf_config[BP_VN(bp)] =
11746 MF_CFG_RD(bp, func_mf_config[func].config);
11747 } else
11748 BNX2X_DEV_INFO("illegal MAC address for SI\n");
11749}
11750
0329aba1 11751static int bnx2x_get_hwinfo(struct bnx2x *bp)
34f80b04 11752{
0793f83f 11753 int /*abs*/func = BP_ABS_FUNC(bp);
230d00eb 11754 int vn, mfw_vn;
83bad206 11755 u32 val = 0, val2 = 0;
34f80b04 11756 int rc = 0;
a2fbb9ea 11757
0f587f1b
YM
11758 /* Validate that chip access is feasible */
11759 if (REG_RD(bp, MISC_REG_CHIP_NUM) == 0xffffffff) {
11760 dev_err(&bp->pdev->dev,
11761 "Chip read returns all Fs. Preventing probe from continuing\n");
11762 return -EINVAL;
11763 }
11764
34f80b04 11765 bnx2x_get_common_hwinfo(bp);
a2fbb9ea 11766
6383c0b3
AE
11767 /*
11768 * initialize IGU parameters
11769 */
f2e0899f
DK
11770 if (CHIP_IS_E1x(bp)) {
11771 bp->common.int_block = INT_BLOCK_HC;
11772
11773 bp->igu_dsb_id = DEF_SB_IGU_ID;
11774 bp->igu_base_sb = 0;
f2e0899f
DK
11775 } else {
11776 bp->common.int_block = INT_BLOCK_IGU;
7a06a122 11777
16a5fd92 11778 /* do not allow device reset during IGU info processing */
7a06a122
DK
11779 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
11780
f2e0899f 11781 val = REG_RD(bp, IGU_REG_BLOCK_CONFIGURATION);
619c5cb6
VZ
11782
11783 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
11784 int tout = 5000;
11785
11786 BNX2X_DEV_INFO("FORCING Normal Mode\n");
11787
11788 val &= ~(IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN);
11789 REG_WR(bp, IGU_REG_BLOCK_CONFIGURATION, val);
11790 REG_WR(bp, IGU_REG_RESET_MEMORIES, 0x7f);
11791
11792 while (tout && REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
11793 tout--;
0926d499 11794 usleep_range(1000, 2000);
619c5cb6
VZ
11795 }
11796
11797 if (REG_RD(bp, IGU_REG_RESET_MEMORIES)) {
11798 dev_err(&bp->pdev->dev,
11799 "FORCING Normal Mode failed!!!\n");
9b341bb1
BW
11800 bnx2x_release_hw_lock(bp,
11801 HW_LOCK_RESOURCE_RESET);
619c5cb6
VZ
11802 return -EPERM;
11803 }
11804 }
11805
f2e0899f 11806 if (val & IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN) {
619c5cb6 11807 BNX2X_DEV_INFO("IGU Backward Compatible Mode\n");
f2e0899f
DK
11808 bp->common.int_block |= INT_BLOCK_MODE_BW_COMP;
11809 } else
619c5cb6 11810 BNX2X_DEV_INFO("IGU Normal Mode\n");
523224a3 11811
9b341bb1 11812 rc = bnx2x_get_igu_cam_info(bp);
7a06a122 11813 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_RESET);
9b341bb1
BW
11814 if (rc)
11815 return rc;
f2e0899f 11816 }
619c5cb6
VZ
11817
11818 /*
11819 * set base FW non-default (fast path) status block id, this value is
11820 * used to initialize the fw_sb_id saved on the fp/queue structure to
11821 * determine the id used by the FW.
11822 */
11823 if (CHIP_IS_E1x(bp))
11824 bp->base_fw_ndsb = BP_PORT(bp) * FP_SB_MAX_E1x + BP_L_ID(bp);
11825 else /*
11826 * 57712 - we currently use one FW SB per IGU SB (Rx and Tx of
11827 * the same queue are indicated on the same IGU SB). So we prefer
11828 * FW and IGU SBs to be the same value.
11829 */
11830 bp->base_fw_ndsb = bp->igu_base_sb;
11831
11832 BNX2X_DEV_INFO("igu_dsb_id %d igu_base_sb %d igu_sb_cnt %d\n"
11833 "base_fw_ndsb %d\n", bp->igu_dsb_id, bp->igu_base_sb,
11834 bp->igu_sb_cnt, bp->base_fw_ndsb);
f2e0899f
DK
11835
11836 /*
11837 * Initialize MF configuration
11838 */
523224a3 11839
fb3bff17
DK
11840 bp->mf_ov = 0;
11841 bp->mf_mode = 0;
7609647e 11842 bp->mf_sub_mode = 0;
3395a033 11843 vn = BP_VN(bp);
230d00eb 11844 mfw_vn = BP_FW_MB_IDX(bp);
0793f83f 11845
f2e0899f 11846 if (!CHIP_IS_E1(bp) && !BP_NOMCP(bp)) {
619c5cb6
VZ
11847 BNX2X_DEV_INFO("shmem2base 0x%x, size %d, mfcfg offset %d\n",
11848 bp->common.shmem2_base, SHMEM2_RD(bp, size),
11849 (u32)offsetof(struct shmem2_region, mf_cfg_addr));
11850
f2e0899f
DK
11851 if (SHMEM2_HAS(bp, mf_cfg_addr))
11852 bp->common.mf_cfg_base = SHMEM2_RD(bp, mf_cfg_addr);
11853 else
11854 bp->common.mf_cfg_base = bp->common.shmem_base +
523224a3
DK
11855 offsetof(struct shmem_region, func_mb) +
11856 E1H_FUNC_MAX * sizeof(struct drv_func_mb);
0793f83f
DK
11857 /*
11858 * get mf configuration:
16a5fd92 11859 * 1. Existence of MF configuration
0793f83f
DK
11860 * 2. MAC address must be legal (check only upper bytes)
11861 * for Switch-Independent mode;
11862 * OVLAN must be legal for Switch-Dependent mode
11863 * 3. SF_MODE configures specific MF mode
11864 */
11865 if (bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
11866 /* get mf configuration */
11867 val = SHMEM_RD(bp,
11868 dev_info.shared_feature_config.config);
11869 val &= SHARED_FEAT_CFG_FORCE_SF_MODE_MASK;
11870
11871 switch (val) {
11872 case SHARED_FEAT_CFG_FORCE_SF_MODE_SWITCH_INDEPT:
83bad206 11873 validate_set_si_mode(bp);
0793f83f 11874 break;
a3348722
BW
11875 case SHARED_FEAT_CFG_FORCE_SF_MODE_AFEX_MODE:
11876 if ((!CHIP_IS_E1x(bp)) &&
11877 (MF_CFG_RD(bp, func_mf_config[func].
11878 mac_upper) != 0xffff) &&
11879 (SHMEM2_HAS(bp,
11880 afex_driver_support))) {
11881 bp->mf_mode = MULTI_FUNCTION_AFEX;
11882 bp->mf_config[vn] = MF_CFG_RD(bp,
11883 func_mf_config[func].config);
11884 } else {
11885 BNX2X_DEV_INFO("can not configure afex mode\n");
11886 }
11887 break;
0793f83f
DK
11888 case SHARED_FEAT_CFG_FORCE_SF_MODE_MF_ALLOWED:
11889 /* get OV configuration */
11890 val = MF_CFG_RD(bp,
11891 func_mf_config[FUNC_0].e1hov_tag);
11892 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
11893
11894 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
11895 bp->mf_mode = MULTI_FUNCTION_SD;
11896 bp->mf_config[vn] = MF_CFG_RD(bp,
11897 func_mf_config[func].config);
11898 } else
754a2f52 11899 BNX2X_DEV_INFO("illegal OV for SD\n");
0793f83f 11900 break;
230d00eb
YM
11901 case SHARED_FEAT_CFG_FORCE_SF_MODE_BD_MODE:
11902 bp->mf_mode = MULTI_FUNCTION_SD;
11903 bp->mf_sub_mode = SUB_MF_MODE_BD;
11904 bp->mf_config[vn] =
11905 MF_CFG_RD(bp,
11906 func_mf_config[func].config);
11907
11908 if (SHMEM2_HAS(bp, mtu_size)) {
11909 int mtu_idx = BP_FW_MB_IDX(bp);
11910 u16 mtu_size;
11911 u32 mtu;
11912
11913 mtu = SHMEM2_RD(bp, mtu_size[mtu_idx]);
11914 mtu_size = (u16)mtu;
11915 DP(NETIF_MSG_IFUP, "Read MTU size %04x [%08x]\n",
11916 mtu_size, mtu);
11917
11918 /* if valid: update device mtu */
11919 if (((mtu_size + ETH_HLEN) >=
11920 ETH_MIN_PACKET_SIZE) &&
11921 (mtu_size <=
11922 ETH_MAX_JUMBO_PACKET_SIZE))
11923 bp->dev->mtu = mtu_size;
11924 }
11925 break;
7609647e
YM
11926 case SHARED_FEAT_CFG_FORCE_SF_MODE_UFP_MODE:
11927 bp->mf_mode = MULTI_FUNCTION_SD;
11928 bp->mf_sub_mode = SUB_MF_MODE_UFP;
11929 bp->mf_config[vn] =
11930 MF_CFG_RD(bp,
11931 func_mf_config[func].config);
11932 break;
3786b942
AE
11933 case SHARED_FEAT_CFG_FORCE_SF_MODE_FORCED_SF:
11934 bp->mf_config[vn] = 0;
11935 break;
83bad206
YM
11936 case SHARED_FEAT_CFG_FORCE_SF_MODE_EXTENDED_MODE:
11937 val2 = SHMEM_RD(bp,
11938 dev_info.shared_hw_config.config_3);
11939 val2 &= SHARED_HW_CFG_EXTENDED_MF_MODE_MASK;
11940 switch (val2) {
11941 case SHARED_HW_CFG_EXTENDED_MF_MODE_NPAR1_DOT_5:
11942 validate_set_si_mode(bp);
11943 bp->mf_sub_mode =
11944 SUB_MF_MODE_NPAR1_DOT_5;
11945 break;
11946 default:
11947 /* Unknown configuration */
11948 bp->mf_config[vn] = 0;
11949 BNX2X_DEV_INFO("unknown extended MF mode 0x%x\n",
11950 val);
11951 }
11952 break;
0793f83f
DK
11953 default:
11954 /* Unknown configuration: reset mf_config */
11955 bp->mf_config[vn] = 0;
51c1a580 11956 BNX2X_DEV_INFO("unknown MF mode 0x%x\n", val);
0793f83f
DK
11957 }
11958 }
a2fbb9ea 11959
2691d51d 11960 BNX2X_DEV_INFO("%s function mode\n",
fb3bff17 11961 IS_MF(bp) ? "multi" : "single");
2691d51d 11962
0793f83f
DK
11963 switch (bp->mf_mode) {
11964 case MULTI_FUNCTION_SD:
11965 val = MF_CFG_RD(bp, func_mf_config[func].e1hov_tag) &
11966 FUNC_MF_CFG_E1HOV_TAG_MASK;
2691d51d 11967 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
fb3bff17 11968 bp->mf_ov = val;
619c5cb6
VZ
11969 bp->path_has_ovlan = true;
11970
51c1a580
MS
11971 BNX2X_DEV_INFO("MF OV for func %d is %d (0x%04x)\n",
11972 func, bp->mf_ov, bp->mf_ov);
230d00eb
YM
11973 } else if ((bp->mf_sub_mode == SUB_MF_MODE_UFP) ||
11974 (bp->mf_sub_mode == SUB_MF_MODE_BD)) {
7609647e 11975 dev_err(&bp->pdev->dev,
230d00eb 11976 "Unexpected - no valid MF OV for func %d in UFP/BD mode\n",
7609647e
YM
11977 func);
11978 bp->path_has_ovlan = true;
2691d51d 11979 } else {
619c5cb6 11980 dev_err(&bp->pdev->dev,
51c1a580
MS
11981 "No valid MF OV for func %d, aborting\n",
11982 func);
619c5cb6 11983 return -EPERM;
34f80b04 11984 }
0793f83f 11985 break;
a3348722
BW
11986 case MULTI_FUNCTION_AFEX:
11987 BNX2X_DEV_INFO("func %d is in MF afex mode\n", func);
11988 break;
0793f83f 11989 case MULTI_FUNCTION_SI:
51c1a580
MS
11990 BNX2X_DEV_INFO("func %d is in MF switch-independent mode\n",
11991 func);
0793f83f
DK
11992 break;
11993 default:
11994 if (vn) {
619c5cb6 11995 dev_err(&bp->pdev->dev,
51c1a580
MS
11996 "VN %d is in a single function mode, aborting\n",
11997 vn);
619c5cb6 11998 return -EPERM;
2691d51d 11999 }
0793f83f 12000 break;
34f80b04 12001 }
0793f83f 12002
619c5cb6
VZ
12003 /* check if other port on the path needs ovlan:
12004 * Since MF configuration is shared between ports
12005 * Possible mixed modes are only
12006 * {SF, SI} {SF, SD} {SD, SF} {SI, SF}
12007 */
12008 if (CHIP_MODE_IS_4_PORT(bp) &&
12009 !bp->path_has_ovlan &&
12010 !IS_MF(bp) &&
12011 bp->common.mf_cfg_base != SHMEM_MF_CFG_ADDR_NONE) {
12012 u8 other_port = !BP_PORT(bp);
12013 u8 other_func = BP_PATH(bp) + 2*other_port;
12014 val = MF_CFG_RD(bp,
12015 func_mf_config[other_func].e1hov_tag);
12016 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT)
12017 bp->path_has_ovlan = true;
12018 }
34f80b04 12019 }
a2fbb9ea 12020
e848582c
DK
12021 /* adjust igu_sb_cnt to MF for E1H */
12022 if (CHIP_IS_E1H(bp) && IS_MF(bp))
12023 bp->igu_sb_cnt = min_t(u8, bp->igu_sb_cnt, E1H_MAX_MF_SB_COUNT);
523224a3 12024
619c5cb6
VZ
12025 /* port info */
12026 bnx2x_get_port_hwinfo(bp);
f2e0899f 12027
0793f83f
DK
12028 /* Get MAC addresses */
12029 bnx2x_get_mac_hwinfo(bp);
a2fbb9ea 12030
2ba45142 12031 bnx2x_get_cnic_info(bp);
2ba45142 12032
34f80b04
EG
12033 return rc;
12034}
12035
0329aba1 12036static void bnx2x_read_fwinfo(struct bnx2x *bp)
34f24c7f
VZ
12037{
12038 int cnt, i, block_end, rodi;
fcdf95cb 12039 char vpd_start[BNX2X_VPD_LEN+1];
34f24c7f
VZ
12040 char str_id_reg[VENDOR_ID_LEN+1];
12041 char str_id_cap[VENDOR_ID_LEN+1];
fcdf95cb
BW
12042 char *vpd_data;
12043 char *vpd_extended_data = NULL;
34f24c7f
VZ
12044 u8 len;
12045
fcdf95cb 12046 cnt = pci_read_vpd(bp->pdev, 0, BNX2X_VPD_LEN, vpd_start);
34f24c7f
VZ
12047 memset(bp->fw_ver, 0, sizeof(bp->fw_ver));
12048
12049 if (cnt < BNX2X_VPD_LEN)
12050 goto out_not_found;
12051
fcdf95cb
BW
12052 /* VPD RO tag should be first tag after identifier string, hence
12053 * we should be able to find it in first BNX2X_VPD_LEN chars
12054 */
12055 i = pci_vpd_find_tag(vpd_start, 0, BNX2X_VPD_LEN,
34f24c7f
VZ
12056 PCI_VPD_LRDT_RO_DATA);
12057 if (i < 0)
12058 goto out_not_found;
12059
34f24c7f 12060 block_end = i + PCI_VPD_LRDT_TAG_SIZE +
fcdf95cb 12061 pci_vpd_lrdt_size(&vpd_start[i]);
34f24c7f
VZ
12062
12063 i += PCI_VPD_LRDT_TAG_SIZE;
12064
fcdf95cb
BW
12065 if (block_end > BNX2X_VPD_LEN) {
12066 vpd_extended_data = kmalloc(block_end, GFP_KERNEL);
12067 if (vpd_extended_data == NULL)
12068 goto out_not_found;
12069
12070 /* read rest of vpd image into vpd_extended_data */
12071 memcpy(vpd_extended_data, vpd_start, BNX2X_VPD_LEN);
12072 cnt = pci_read_vpd(bp->pdev, BNX2X_VPD_LEN,
12073 block_end - BNX2X_VPD_LEN,
12074 vpd_extended_data + BNX2X_VPD_LEN);
12075 if (cnt < (block_end - BNX2X_VPD_LEN))
12076 goto out_not_found;
12077 vpd_data = vpd_extended_data;
12078 } else
12079 vpd_data = vpd_start;
12080
12081 /* now vpd_data holds full vpd content in both cases */
34f24c7f
VZ
12082
12083 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
12084 PCI_VPD_RO_KEYWORD_MFR_ID);
12085 if (rodi < 0)
12086 goto out_not_found;
12087
12088 len = pci_vpd_info_field_size(&vpd_data[rodi]);
12089
12090 if (len != VENDOR_ID_LEN)
12091 goto out_not_found;
12092
12093 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
12094
12095 /* vendor specific info */
12096 snprintf(str_id_reg, VENDOR_ID_LEN + 1, "%04x", PCI_VENDOR_ID_DELL);
12097 snprintf(str_id_cap, VENDOR_ID_LEN + 1, "%04X", PCI_VENDOR_ID_DELL);
12098 if (!strncmp(str_id_reg, &vpd_data[rodi], VENDOR_ID_LEN) ||
12099 !strncmp(str_id_cap, &vpd_data[rodi], VENDOR_ID_LEN)) {
12100
12101 rodi = pci_vpd_find_info_keyword(vpd_data, i, block_end,
12102 PCI_VPD_RO_KEYWORD_VENDOR0);
12103 if (rodi >= 0) {
12104 len = pci_vpd_info_field_size(&vpd_data[rodi]);
12105
12106 rodi += PCI_VPD_INFO_FLD_HDR_SIZE;
12107
12108 if (len < 32 && (len + rodi) <= BNX2X_VPD_LEN) {
12109 memcpy(bp->fw_ver, &vpd_data[rodi], len);
12110 bp->fw_ver[len] = ' ';
12111 }
12112 }
fcdf95cb 12113 kfree(vpd_extended_data);
34f24c7f
VZ
12114 return;
12115 }
12116out_not_found:
fcdf95cb 12117 kfree(vpd_extended_data);
34f24c7f
VZ
12118 return;
12119}
12120
0329aba1 12121static void bnx2x_set_modes_bitmap(struct bnx2x *bp)
619c5cb6
VZ
12122{
12123 u32 flags = 0;
12124
12125 if (CHIP_REV_IS_FPGA(bp))
12126 SET_FLAGS(flags, MODE_FPGA);
12127 else if (CHIP_REV_IS_EMUL(bp))
12128 SET_FLAGS(flags, MODE_EMUL);
12129 else
12130 SET_FLAGS(flags, MODE_ASIC);
12131
12132 if (CHIP_MODE_IS_4_PORT(bp))
12133 SET_FLAGS(flags, MODE_PORT4);
12134 else
12135 SET_FLAGS(flags, MODE_PORT2);
12136
12137 if (CHIP_IS_E2(bp))
12138 SET_FLAGS(flags, MODE_E2);
12139 else if (CHIP_IS_E3(bp)) {
12140 SET_FLAGS(flags, MODE_E3);
12141 if (CHIP_REV(bp) == CHIP_REV_Ax)
12142 SET_FLAGS(flags, MODE_E3_A0);
6383c0b3
AE
12143 else /*if (CHIP_REV(bp) == CHIP_REV_Bx)*/
12144 SET_FLAGS(flags, MODE_E3_B0 | MODE_COS3);
619c5cb6
VZ
12145 }
12146
12147 if (IS_MF(bp)) {
12148 SET_FLAGS(flags, MODE_MF);
12149 switch (bp->mf_mode) {
12150 case MULTI_FUNCTION_SD:
12151 SET_FLAGS(flags, MODE_MF_SD);
12152 break;
12153 case MULTI_FUNCTION_SI:
12154 SET_FLAGS(flags, MODE_MF_SI);
12155 break;
a3348722
BW
12156 case MULTI_FUNCTION_AFEX:
12157 SET_FLAGS(flags, MODE_MF_AFEX);
12158 break;
619c5cb6
VZ
12159 }
12160 } else
12161 SET_FLAGS(flags, MODE_SF);
12162
12163#if defined(__LITTLE_ENDIAN)
12164 SET_FLAGS(flags, MODE_LITTLE_ENDIAN);
12165#else /*(__BIG_ENDIAN)*/
12166 SET_FLAGS(flags, MODE_BIG_ENDIAN);
12167#endif
12168 INIT_MODE_FLAGS(bp) = flags;
12169}
12170
0329aba1 12171static int bnx2x_init_bp(struct bnx2x *bp)
34f80b04 12172{
f2e0899f 12173 int func;
34f80b04
EG
12174 int rc;
12175
34f80b04 12176 mutex_init(&bp->port.phy_mutex);
c4ff7cbf 12177 mutex_init(&bp->fw_mb_mutex);
42f8277f 12178 mutex_init(&bp->drv_info_mutex);
c6e36d8c 12179 sema_init(&bp->stats_lock, 1);
42f8277f 12180 bp->drv_info_mng_owner = false;
05cc5a39 12181 INIT_LIST_HEAD(&bp->vlan_reg);
55c11941 12182
1cf167f2 12183 INIT_DELAYED_WORK(&bp->sp_task, bnx2x_sp_task);
7be08a72 12184 INIT_DELAYED_WORK(&bp->sp_rtnl_task, bnx2x_sp_rtnl_task);
3deb8167 12185 INIT_DELAYED_WORK(&bp->period_task, bnx2x_period_task);
370d4a26 12186 INIT_DELAYED_WORK(&bp->iov_task, bnx2x_iov_task);
1ab4434c
AE
12187 if (IS_PF(bp)) {
12188 rc = bnx2x_get_hwinfo(bp);
12189 if (rc)
12190 return rc;
12191 } else {
e09b74d0 12192 eth_zero_addr(bp->dev->dev_addr);
1ab4434c 12193 }
34f80b04 12194
619c5cb6
VZ
12195 bnx2x_set_modes_bitmap(bp);
12196
12197 rc = bnx2x_alloc_mem_bp(bp);
12198 if (rc)
12199 return rc;
523224a3 12200
34f24c7f 12201 bnx2x_read_fwinfo(bp);
f2e0899f
DK
12202
12203 func = BP_FUNC(bp);
12204
34f80b04 12205 /* need to reset chip if undi was active */
1ab4434c 12206 if (IS_PF(bp) && !BP_NOMCP(bp)) {
452427b0
YM
12207 /* init fw_seq */
12208 bp->fw_seq =
12209 SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
12210 DRV_MSG_SEQ_NUMBER_MASK;
12211 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
12212
91ebb929
YM
12213 rc = bnx2x_prev_unload(bp);
12214 if (rc) {
12215 bnx2x_free_mem_bp(bp);
12216 return rc;
12217 }
452427b0
YM
12218 }
12219
34f80b04 12220 if (CHIP_REV_IS_FPGA(bp))
cdaa7cb8 12221 dev_err(&bp->pdev->dev, "FPGA detected\n");
34f80b04
EG
12222
12223 if (BP_NOMCP(bp) && (func == 0))
51c1a580 12224 dev_err(&bp->pdev->dev, "MCP disabled, must load devices in order!\n");
34f80b04 12225
614c76df 12226 bp->disable_tpa = disable_tpa;
2e98ffc2 12227 bp->disable_tpa |= !!IS_MF_STORAGE_ONLY(bp);
94d9de3c 12228 /* Reduce memory usage in kdump environment by disabling TPA */
c9931896 12229 bp->disable_tpa |= is_kdump_kernel();
614c76df 12230
7a9b2557 12231 /* Set TPA flags */
614c76df 12232 if (bp->disable_tpa) {
d9b9e860 12233 bp->dev->hw_features &= ~NETIF_F_LRO;
7a9b2557 12234 bp->dev->features &= ~NETIF_F_LRO;
7a9b2557
VZ
12235 }
12236
a18f5128
EG
12237 if (CHIP_IS_E1(bp))
12238 bp->dropless_fc = 0;
12239 else
7964211d 12240 bp->dropless_fc = dropless_fc | bnx2x_get_dropless_info(bp);
a18f5128 12241
8d5726c4 12242 bp->mrrs = mrrs;
7a9b2557 12243
2e98ffc2 12244 bp->tx_ring_size = IS_MF_STORAGE_ONLY(bp) ? 0 : MAX_TX_AVAIL;
1ab4434c
AE
12245 if (IS_VF(bp))
12246 bp->rx_ring_size = MAX_RX_AVAIL;
34f80b04 12247
7d323bfd 12248 /* make sure that the numbers are in the right granularity */
523224a3
DK
12249 bp->tx_ticks = (50 / BNX2X_BTR) * BNX2X_BTR;
12250 bp->rx_ticks = (25 / BNX2X_BTR) * BNX2X_BTR;
34f80b04 12251
fc543637 12252 bp->current_interval = CHIP_REV_IS_SLOW(bp) ? 5*HZ : HZ;
34f80b04
EG
12253
12254 init_timer(&bp->timer);
12255 bp->timer.expires = jiffies + bp->current_interval;
12256 bp->timer.data = (unsigned long) bp;
12257 bp->timer.function = bnx2x_timer;
12258
0370cf90
BW
12259 if (SHMEM2_HAS(bp, dcbx_lldp_params_offset) &&
12260 SHMEM2_HAS(bp, dcbx_lldp_dcbx_stat_offset) &&
12261 SHMEM2_RD(bp, dcbx_lldp_params_offset) &&
12262 SHMEM2_RD(bp, dcbx_lldp_dcbx_stat_offset)) {
12263 bnx2x_dcbx_set_state(bp, true, BNX2X_DCBX_ENABLED_ON_NEG_ON);
12264 bnx2x_dcbx_init_params(bp);
12265 } else {
12266 bnx2x_dcbx_set_state(bp, false, BNX2X_DCBX_ENABLED_OFF);
12267 }
e4901dde 12268
619c5cb6
VZ
12269 if (CHIP_IS_E1x(bp))
12270 bp->cnic_base_cl_id = FP_SB_MAX_E1x;
12271 else
12272 bp->cnic_base_cl_id = FP_SB_MAX_E2;
619c5cb6 12273
6383c0b3 12274 /* multiple tx priority */
1ab4434c
AE
12275 if (IS_VF(bp))
12276 bp->max_cos = 1;
12277 else if (CHIP_IS_E1x(bp))
6383c0b3 12278 bp->max_cos = BNX2X_MULTI_TX_COS_E1X;
1ab4434c 12279 else if (CHIP_IS_E2(bp) || CHIP_IS_E3A0(bp))
6383c0b3 12280 bp->max_cos = BNX2X_MULTI_TX_COS_E2_E3A0;
1ab4434c 12281 else if (CHIP_IS_E3B0(bp))
6383c0b3 12282 bp->max_cos = BNX2X_MULTI_TX_COS_E3B0;
1ab4434c
AE
12283 else
12284 BNX2X_ERR("unknown chip %x revision %x\n",
12285 CHIP_NUM(bp), CHIP_REV(bp));
12286 BNX2X_DEV_INFO("set bp->max_cos to %d\n", bp->max_cos);
6383c0b3 12287
55c11941
MS
12288 /* We need at least one default status block for slow-path events,
12289 * second status block for the L2 queue, and a third status block for
16a5fd92 12290 * CNIC if supported.
55c11941 12291 */
60cad4e6
AE
12292 if (IS_VF(bp))
12293 bp->min_msix_vec_cnt = 1;
12294 else if (CNIC_SUPPORT(bp))
55c11941 12295 bp->min_msix_vec_cnt = 3;
60cad4e6 12296 else /* PF w/o cnic */
55c11941
MS
12297 bp->min_msix_vec_cnt = 2;
12298 BNX2X_DEV_INFO("bp->min_msix_vec_cnt %d", bp->min_msix_vec_cnt);
12299
5bb680d6
MS
12300 bp->dump_preset_idx = 1;
12301
eeed018c
MK
12302 if (CHIP_IS_E3B0(bp))
12303 bp->flags |= PTP_SUPPORTED;
12304
34f80b04 12305 return rc;
a2fbb9ea
ET
12306}
12307
de0c62db
DK
12308/****************************************************************************
12309* General service functions
12310****************************************************************************/
a2fbb9ea 12311
619c5cb6
VZ
12312/*
12313 * net_device service functions
12314 */
12315
bb2a0f7a 12316/* called with rtnl_lock */
a2fbb9ea
ET
12317static int bnx2x_open(struct net_device *dev)
12318{
12319 struct bnx2x *bp = netdev_priv(dev);
8395be5e 12320 int rc;
a2fbb9ea 12321
1355b704
MY
12322 bp->stats_init = true;
12323
6eccabb3
EG
12324 netif_carrier_off(dev);
12325
a2fbb9ea
ET
12326 bnx2x_set_power_state(bp, PCI_D0);
12327
ad5afc89 12328 /* If parity had happen during the unload, then attentions
c9ee9206
VZ
12329 * and/or RECOVERY_IN_PROGRES may still be set. In this case we
12330 * want the first function loaded on the current engine to
12331 * complete the recovery.
ad5afc89 12332 * Parity recovery is only relevant for PF driver.
c9ee9206 12333 */
ad5afc89 12334 if (IS_PF(bp)) {
1a6974b2
YM
12335 int other_engine = BP_PATH(bp) ? 0 : 1;
12336 bool other_load_status, load_status;
12337 bool global = false;
12338
ad5afc89
AE
12339 other_load_status = bnx2x_get_load_status(bp, other_engine);
12340 load_status = bnx2x_get_load_status(bp, BP_PATH(bp));
12341 if (!bnx2x_reset_is_done(bp, BP_PATH(bp)) ||
12342 bnx2x_chk_parity_attn(bp, &global, true)) {
12343 do {
12344 /* If there are attentions and they are in a
12345 * global blocks, set the GLOBAL_RESET bit
12346 * regardless whether it will be this function
12347 * that will complete the recovery or not.
12348 */
12349 if (global)
12350 bnx2x_set_reset_global(bp);
72fd0718 12351
ad5afc89
AE
12352 /* Only the first function on the current
12353 * engine should try to recover in open. In case
12354 * of attentions in global blocks only the first
12355 * in the chip should try to recover.
12356 */
12357 if ((!load_status &&
12358 (!global || !other_load_status)) &&
12359 bnx2x_trylock_leader_lock(bp) &&
12360 !bnx2x_leader_reset(bp)) {
12361 netdev_info(bp->dev,
12362 "Recovered in open\n");
12363 break;
12364 }
72fd0718 12365
ad5afc89
AE
12366 /* recovery has failed... */
12367 bnx2x_set_power_state(bp, PCI_D3hot);
12368 bp->recovery_state = BNX2X_RECOVERY_FAILED;
72fd0718 12369
ad5afc89
AE
12370 BNX2X_ERR("Recovery flow hasn't been properly completed yet. Try again later.\n"
12371 "If you still see this message after a few retries then power cycle is required.\n");
72fd0718 12372
ad5afc89
AE
12373 return -EAGAIN;
12374 } while (0);
12375 }
12376 }
72fd0718
VZ
12377
12378 bp->recovery_state = BNX2X_RECOVERY_DONE;
8395be5e
AE
12379 rc = bnx2x_nic_load(bp, LOAD_OPEN);
12380 if (rc)
12381 return rc;
9a8130bc 12382 return 0;
a2fbb9ea
ET
12383}
12384
bb2a0f7a 12385/* called with rtnl_lock */
56ad3152 12386static int bnx2x_close(struct net_device *dev)
a2fbb9ea 12387{
a2fbb9ea
ET
12388 struct bnx2x *bp = netdev_priv(dev);
12389
12390 /* Unload the driver, release IRQs */
5d07d868 12391 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
c9ee9206 12392
a2fbb9ea
ET
12393 return 0;
12394}
12395
1191cb83
ED
12396static int bnx2x_init_mcast_macs_list(struct bnx2x *bp,
12397 struct bnx2x_mcast_ramrod_params *p)
6e30dd4e 12398{
619c5cb6
VZ
12399 int mc_count = netdev_mc_count(bp->dev);
12400 struct bnx2x_mcast_list_elem *mc_mac =
cd2b0389 12401 kcalloc(mc_count, sizeof(*mc_mac), GFP_ATOMIC);
619c5cb6 12402 struct netdev_hw_addr *ha;
6e30dd4e 12403
619c5cb6
VZ
12404 if (!mc_mac)
12405 return -ENOMEM;
6e30dd4e 12406
619c5cb6 12407 INIT_LIST_HEAD(&p->mcast_list);
6e30dd4e 12408
619c5cb6
VZ
12409 netdev_for_each_mc_addr(ha, bp->dev) {
12410 mc_mac->mac = bnx2x_mc_addr(ha);
12411 list_add_tail(&mc_mac->link, &p->mcast_list);
12412 mc_mac++;
6e30dd4e 12413 }
619c5cb6
VZ
12414
12415 p->mcast_list_len = mc_count;
12416
12417 return 0;
6e30dd4e
VZ
12418}
12419
1191cb83 12420static void bnx2x_free_mcast_macs_list(
619c5cb6
VZ
12421 struct bnx2x_mcast_ramrod_params *p)
12422{
12423 struct bnx2x_mcast_list_elem *mc_mac =
12424 list_first_entry(&p->mcast_list, struct bnx2x_mcast_list_elem,
12425 link);
12426
12427 WARN_ON(!mc_mac);
12428 kfree(mc_mac);
12429}
12430
12431/**
12432 * bnx2x_set_uc_list - configure a new unicast MACs list.
12433 *
12434 * @bp: driver handle
6e30dd4e 12435 *
619c5cb6 12436 * We will use zero (0) as a MAC type for these MACs.
6e30dd4e 12437 */
1191cb83 12438static int bnx2x_set_uc_list(struct bnx2x *bp)
6e30dd4e 12439{
619c5cb6 12440 int rc;
6e30dd4e 12441 struct net_device *dev = bp->dev;
6e30dd4e 12442 struct netdev_hw_addr *ha;
15192a8c 12443 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
619c5cb6 12444 unsigned long ramrod_flags = 0;
6e30dd4e 12445
619c5cb6
VZ
12446 /* First schedule a cleanup up of old configuration */
12447 rc = bnx2x_del_all_macs(bp, mac_obj, BNX2X_UC_LIST_MAC, false);
12448 if (rc < 0) {
12449 BNX2X_ERR("Failed to schedule DELETE operations: %d\n", rc);
12450 return rc;
12451 }
6e30dd4e
VZ
12452
12453 netdev_for_each_uc_addr(ha, dev) {
619c5cb6
VZ
12454 rc = bnx2x_set_mac_one(bp, bnx2x_uc_addr(ha), mac_obj, true,
12455 BNX2X_UC_LIST_MAC, &ramrod_flags);
7b5342d9
YM
12456 if (rc == -EEXIST) {
12457 DP(BNX2X_MSG_SP,
12458 "Failed to schedule ADD operations: %d\n", rc);
12459 /* do not treat adding same MAC as error */
12460 rc = 0;
12461
12462 } else if (rc < 0) {
12463
619c5cb6
VZ
12464 BNX2X_ERR("Failed to schedule ADD operations: %d\n",
12465 rc);
12466 return rc;
6e30dd4e
VZ
12467 }
12468 }
12469
619c5cb6
VZ
12470 /* Execute the pending commands */
12471 __set_bit(RAMROD_CONT, &ramrod_flags);
12472 return bnx2x_set_mac_one(bp, NULL, mac_obj, false /* don't care */,
12473 BNX2X_UC_LIST_MAC, &ramrod_flags);
6e30dd4e
VZ
12474}
12475
1191cb83 12476static int bnx2x_set_mc_list(struct bnx2x *bp)
6e30dd4e 12477{
619c5cb6 12478 struct net_device *dev = bp->dev;
3b603066 12479 struct bnx2x_mcast_ramrod_params rparam = {NULL};
619c5cb6 12480 int rc = 0;
6e30dd4e 12481
619c5cb6 12482 rparam.mcast_obj = &bp->mcast_obj;
6e30dd4e 12483
619c5cb6
VZ
12484 /* first, clear all configured multicast MACs */
12485 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
12486 if (rc < 0) {
51c1a580 12487 BNX2X_ERR("Failed to clear multicast configuration: %d\n", rc);
619c5cb6
VZ
12488 return rc;
12489 }
6e30dd4e 12490
619c5cb6
VZ
12491 /* then, configure a new MACs list */
12492 if (netdev_mc_count(dev)) {
12493 rc = bnx2x_init_mcast_macs_list(bp, &rparam);
12494 if (rc) {
51c1a580
MS
12495 BNX2X_ERR("Failed to create multicast MACs list: %d\n",
12496 rc);
619c5cb6
VZ
12497 return rc;
12498 }
6e30dd4e 12499
619c5cb6
VZ
12500 /* Now add the new MACs */
12501 rc = bnx2x_config_mcast(bp, &rparam,
12502 BNX2X_MCAST_CMD_ADD);
12503 if (rc < 0)
51c1a580
MS
12504 BNX2X_ERR("Failed to set a new multicast configuration: %d\n",
12505 rc);
6e30dd4e 12506
619c5cb6
VZ
12507 bnx2x_free_mcast_macs_list(&rparam);
12508 }
6e30dd4e 12509
619c5cb6 12510 return rc;
6e30dd4e
VZ
12511}
12512
619c5cb6 12513/* If bp->state is OPEN, should be called with netif_addr_lock_bh() */
a8f47eb7 12514static void bnx2x_set_rx_mode(struct net_device *dev)
34f80b04
EG
12515{
12516 struct bnx2x *bp = netdev_priv(dev);
34f80b04
EG
12517
12518 if (bp->state != BNX2X_STATE_OPEN) {
12519 DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
12520 return;
8b09be5f
YM
12521 } else {
12522 /* Schedule an SP task to handle rest of change */
230bb0f3
YM
12523 bnx2x_schedule_sp_rtnl(bp, BNX2X_SP_RTNL_RX_MODE,
12524 NETIF_MSG_IFUP);
34f80b04 12525 }
8b09be5f
YM
12526}
12527
12528void bnx2x_set_rx_mode_inner(struct bnx2x *bp)
12529{
12530 u32 rx_mode = BNX2X_RX_MODE_NORMAL;
34f80b04 12531
619c5cb6 12532 DP(NETIF_MSG_IFUP, "dev->flags = %x\n", bp->dev->flags);
34f80b04 12533
8b09be5f
YM
12534 netif_addr_lock_bh(bp->dev);
12535
12536 if (bp->dev->flags & IFF_PROMISC) {
34f80b04 12537 rx_mode = BNX2X_RX_MODE_PROMISC;
8b09be5f
YM
12538 } else if ((bp->dev->flags & IFF_ALLMULTI) ||
12539 ((netdev_mc_count(bp->dev) > BNX2X_MAX_MULTICAST) &&
12540 CHIP_IS_E1(bp))) {
34f80b04 12541 rx_mode = BNX2X_RX_MODE_ALLMULTI;
8b09be5f 12542 } else {
381ac16b
AE
12543 if (IS_PF(bp)) {
12544 /* some multicasts */
12545 if (bnx2x_set_mc_list(bp) < 0)
12546 rx_mode = BNX2X_RX_MODE_ALLMULTI;
34f80b04 12547
8b09be5f
YM
12548 /* release bh lock, as bnx2x_set_uc_list might sleep */
12549 netif_addr_unlock_bh(bp->dev);
381ac16b
AE
12550 if (bnx2x_set_uc_list(bp) < 0)
12551 rx_mode = BNX2X_RX_MODE_PROMISC;
8b09be5f 12552 netif_addr_lock_bh(bp->dev);
381ac16b
AE
12553 } else {
12554 /* configuring mcast to a vf involves sleeping (when we
8b09be5f 12555 * wait for the pf's response).
381ac16b 12556 */
230bb0f3
YM
12557 bnx2x_schedule_sp_rtnl(bp,
12558 BNX2X_SP_RTNL_VFPF_MCAST, 0);
381ac16b 12559 }
34f80b04
EG
12560 }
12561
12562 bp->rx_mode = rx_mode;
614c76df 12563 /* handle ISCSI SD mode */
2e98ffc2 12564 if (IS_MF_ISCSI_ONLY(bp))
614c76df 12565 bp->rx_mode = BNX2X_RX_MODE_NONE;
619c5cb6
VZ
12566
12567 /* Schedule the rx_mode command */
12568 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state)) {
12569 set_bit(BNX2X_FILTER_RX_MODE_SCHED, &bp->sp_state);
8b09be5f 12570 netif_addr_unlock_bh(bp->dev);
619c5cb6
VZ
12571 return;
12572 }
12573
381ac16b
AE
12574 if (IS_PF(bp)) {
12575 bnx2x_set_storm_rx_mode(bp);
8b09be5f 12576 netif_addr_unlock_bh(bp->dev);
381ac16b 12577 } else {
8b09be5f
YM
12578 /* VF will need to request the PF to make this change, and so
12579 * the VF needs to release the bottom-half lock prior to the
12580 * request (as it will likely require sleep on the VF side)
381ac16b 12581 */
8b09be5f
YM
12582 netif_addr_unlock_bh(bp->dev);
12583 bnx2x_vfpf_storm_rx_mode(bp);
381ac16b 12584 }
34f80b04
EG
12585}
12586
c18487ee 12587/* called with rtnl_lock */
01cd4528
EG
12588static int bnx2x_mdio_read(struct net_device *netdev, int prtad,
12589 int devad, u16 addr)
a2fbb9ea 12590{
01cd4528
EG
12591 struct bnx2x *bp = netdev_priv(netdev);
12592 u16 value;
12593 int rc;
a2fbb9ea 12594
01cd4528
EG
12595 DP(NETIF_MSG_LINK, "mdio_read: prtad 0x%x, devad 0x%x, addr 0x%x\n",
12596 prtad, devad, addr);
a2fbb9ea 12597
01cd4528
EG
12598 /* The HW expects different devad if CL22 is used */
12599 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
c18487ee 12600
01cd4528 12601 bnx2x_acquire_phy_lock(bp);
e10bc84d 12602 rc = bnx2x_phy_read(&bp->link_params, prtad, devad, addr, &value);
01cd4528
EG
12603 bnx2x_release_phy_lock(bp);
12604 DP(NETIF_MSG_LINK, "mdio_read_val 0x%x rc = 0x%x\n", value, rc);
a2fbb9ea 12605
01cd4528
EG
12606 if (!rc)
12607 rc = value;
12608 return rc;
12609}
a2fbb9ea 12610
01cd4528
EG
12611/* called with rtnl_lock */
12612static int bnx2x_mdio_write(struct net_device *netdev, int prtad, int devad,
12613 u16 addr, u16 value)
12614{
12615 struct bnx2x *bp = netdev_priv(netdev);
01cd4528
EG
12616 int rc;
12617
51c1a580
MS
12618 DP(NETIF_MSG_LINK,
12619 "mdio_write: prtad 0x%x, devad 0x%x, addr 0x%x, value 0x%x\n",
12620 prtad, devad, addr, value);
01cd4528 12621
01cd4528
EG
12622 /* The HW expects different devad if CL22 is used */
12623 devad = (devad == MDIO_DEVAD_NONE) ? DEFAULT_PHY_DEV_ADDR : devad;
a2fbb9ea 12624
01cd4528 12625 bnx2x_acquire_phy_lock(bp);
e10bc84d 12626 rc = bnx2x_phy_write(&bp->link_params, prtad, devad, addr, value);
01cd4528
EG
12627 bnx2x_release_phy_lock(bp);
12628 return rc;
12629}
c18487ee 12630
01cd4528
EG
12631/* called with rtnl_lock */
12632static int bnx2x_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
12633{
12634 struct bnx2x *bp = netdev_priv(dev);
12635 struct mii_ioctl_data *mdio = if_mii(ifr);
a2fbb9ea 12636
01cd4528
EG
12637 if (!netif_running(dev))
12638 return -EAGAIN;
12639
eeed018c
MK
12640 switch (cmd) {
12641 case SIOCSHWTSTAMP:
12642 return bnx2x_hwtstamp_ioctl(bp, ifr);
12643 default:
12644 DP(NETIF_MSG_LINK, "ioctl: phy id 0x%x, reg 0x%x, val_in 0x%x\n",
12645 mdio->phy_id, mdio->reg_num, mdio->val_in);
12646 return mdio_mii_ioctl(&bp->mdio, mdio, cmd);
12647 }
a2fbb9ea
ET
12648}
12649
257ddbda 12650#ifdef CONFIG_NET_POLL_CONTROLLER
a2fbb9ea
ET
12651static void poll_bnx2x(struct net_device *dev)
12652{
12653 struct bnx2x *bp = netdev_priv(dev);
14a15d61 12654 int i;
a2fbb9ea 12655
14a15d61
MS
12656 for_each_eth_queue(bp, i) {
12657 struct bnx2x_fastpath *fp = &bp->fp[i];
12658 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
12659 }
a2fbb9ea
ET
12660}
12661#endif
12662
614c76df
DK
12663static int bnx2x_validate_addr(struct net_device *dev)
12664{
12665 struct bnx2x *bp = netdev_priv(dev);
12666
e09b74d0
AE
12667 /* query the bulletin board for mac address configured by the PF */
12668 if (IS_VF(bp))
12669 bnx2x_sample_bulletin(bp);
12670
2e98ffc2 12671 if (!is_valid_ether_addr(dev->dev_addr)) {
51c1a580 12672 BNX2X_ERR("Non-valid Ethernet address\n");
614c76df 12673 return -EADDRNOTAVAIL;
51c1a580 12674 }
614c76df
DK
12675 return 0;
12676}
12677
3d7d562c 12678static int bnx2x_get_phys_port_id(struct net_device *netdev,
02637fce 12679 struct netdev_phys_item_id *ppid)
3d7d562c
YM
12680{
12681 struct bnx2x *bp = netdev_priv(netdev);
12682
12683 if (!(bp->flags & HAS_PHYS_PORT_ID))
12684 return -EOPNOTSUPP;
12685
12686 ppid->id_len = sizeof(bp->phys_port_id);
12687 memcpy(ppid->id, bp->phys_port_id, ppid->id_len);
12688
12689 return 0;
12690}
12691
5f35227e
JG
12692static netdev_features_t bnx2x_features_check(struct sk_buff *skb,
12693 struct net_device *dev,
12694 netdev_features_t features)
51de7bb9 12695{
8cb65d00 12696 features = vlan_features_check(skb, features);
5f35227e 12697 return vxlan_features_check(skb, features);
51de7bb9
JS
12698}
12699
05cc5a39
YM
12700static int __bnx2x_vlan_configure_vid(struct bnx2x *bp, u16 vid, bool add)
12701{
12702 int rc;
12703
12704 if (IS_PF(bp)) {
12705 unsigned long ramrod_flags = 0;
12706
12707 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
12708 rc = bnx2x_set_vlan_one(bp, vid, &bp->sp_objs->vlan_obj,
12709 add, &ramrod_flags);
12710 } else {
12711 rc = bnx2x_vfpf_update_vlan(bp, vid, bp->fp->index, add);
12712 }
12713
12714 return rc;
12715}
12716
12717int bnx2x_vlan_reconfigure_vid(struct bnx2x *bp)
12718{
12719 struct bnx2x_vlan_entry *vlan;
12720 int rc = 0;
12721
12722 if (!bp->vlan_cnt) {
12723 DP(NETIF_MSG_IFUP, "No need to re-configure vlan filters\n");
12724 return 0;
12725 }
12726
12727 list_for_each_entry(vlan, &bp->vlan_reg, link) {
12728 /* Prepare for cleanup in case of errors */
12729 if (rc) {
12730 vlan->hw = false;
12731 continue;
12732 }
12733
12734 if (!vlan->hw)
12735 continue;
12736
12737 DP(NETIF_MSG_IFUP, "Re-configuring vlan 0x%04x\n", vlan->vid);
12738
12739 rc = __bnx2x_vlan_configure_vid(bp, vlan->vid, true);
12740 if (rc) {
12741 BNX2X_ERR("Unable to configure VLAN %d\n", vlan->vid);
12742 vlan->hw = false;
12743 rc = -EINVAL;
12744 continue;
12745 }
12746 }
12747
12748 return rc;
12749}
12750
12751static int bnx2x_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
12752{
12753 struct bnx2x *bp = netdev_priv(dev);
12754 struct bnx2x_vlan_entry *vlan;
12755 bool hw = false;
12756 int rc = 0;
12757
12758 if (!netif_running(bp->dev)) {
12759 DP(NETIF_MSG_IFUP,
12760 "Ignoring VLAN configuration the interface is down\n");
12761 return -EFAULT;
12762 }
12763
12764 DP(NETIF_MSG_IFUP, "Adding VLAN %d\n", vid);
12765
12766 vlan = kmalloc(sizeof(*vlan), GFP_KERNEL);
12767 if (!vlan)
12768 return -ENOMEM;
12769
12770 bp->vlan_cnt++;
12771 if (bp->vlan_cnt > bp->vlan_credit && !bp->accept_any_vlan) {
12772 DP(NETIF_MSG_IFUP, "Accept all VLAN raised\n");
12773 bp->accept_any_vlan = true;
12774 if (IS_PF(bp))
12775 bnx2x_set_rx_mode_inner(bp);
12776 else
12777 bnx2x_vfpf_storm_rx_mode(bp);
12778 } else if (bp->vlan_cnt <= bp->vlan_credit) {
12779 rc = __bnx2x_vlan_configure_vid(bp, vid, true);
12780 hw = true;
12781 }
12782
12783 vlan->vid = vid;
12784 vlan->hw = hw;
12785
12786 if (!rc) {
12787 list_add(&vlan->link, &bp->vlan_reg);
12788 } else {
12789 bp->vlan_cnt--;
12790 kfree(vlan);
12791 }
12792
12793 DP(NETIF_MSG_IFUP, "Adding VLAN result %d\n", rc);
12794
12795 return rc;
12796}
12797
12798static int bnx2x_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
12799{
12800 struct bnx2x *bp = netdev_priv(dev);
12801 struct bnx2x_vlan_entry *vlan;
12802 int rc = 0;
12803
12804 if (!netif_running(bp->dev)) {
12805 DP(NETIF_MSG_IFUP,
12806 "Ignoring VLAN configuration the interface is down\n");
12807 return -EFAULT;
12808 }
12809
12810 DP(NETIF_MSG_IFUP, "Removing VLAN %d\n", vid);
12811
12812 if (!bp->vlan_cnt) {
12813 BNX2X_ERR("Unable to kill VLAN %d\n", vid);
12814 return -EINVAL;
12815 }
12816
12817 list_for_each_entry(vlan, &bp->vlan_reg, link)
12818 if (vlan->vid == vid)
12819 break;
12820
12821 if (vlan->vid != vid) {
12822 BNX2X_ERR("Unable to kill VLAN %d - not found\n", vid);
12823 return -EINVAL;
12824 }
12825
12826 if (vlan->hw)
12827 rc = __bnx2x_vlan_configure_vid(bp, vid, false);
12828
12829 list_del(&vlan->link);
12830 kfree(vlan);
12831
12832 bp->vlan_cnt--;
12833
12834 if (bp->vlan_cnt <= bp->vlan_credit && bp->accept_any_vlan) {
12835 /* Configure all non-configured entries */
12836 list_for_each_entry(vlan, &bp->vlan_reg, link) {
12837 if (vlan->hw)
12838 continue;
12839
12840 rc = __bnx2x_vlan_configure_vid(bp, vlan->vid, true);
12841 if (rc) {
12842 BNX2X_ERR("Unable to config VLAN %d\n",
12843 vlan->vid);
12844 continue;
12845 }
12846 DP(NETIF_MSG_IFUP, "HW configured for VLAN %d\n",
12847 vlan->vid);
12848 vlan->hw = true;
12849 }
12850 DP(NETIF_MSG_IFUP, "Accept all VLAN Removed\n");
12851 bp->accept_any_vlan = false;
12852 if (IS_PF(bp))
12853 bnx2x_set_rx_mode_inner(bp);
12854 else
12855 bnx2x_vfpf_storm_rx_mode(bp);
12856 }
12857
12858 DP(NETIF_MSG_IFUP, "Removing VLAN result %d\n", rc);
12859
12860 return rc;
12861}
12862
c64213cd
SH
12863static const struct net_device_ops bnx2x_netdev_ops = {
12864 .ndo_open = bnx2x_open,
12865 .ndo_stop = bnx2x_close,
12866 .ndo_start_xmit = bnx2x_start_xmit,
8307fa3e 12867 .ndo_select_queue = bnx2x_select_queue,
6e30dd4e 12868 .ndo_set_rx_mode = bnx2x_set_rx_mode,
c64213cd 12869 .ndo_set_mac_address = bnx2x_change_mac_addr,
614c76df 12870 .ndo_validate_addr = bnx2x_validate_addr,
c64213cd
SH
12871 .ndo_do_ioctl = bnx2x_ioctl,
12872 .ndo_change_mtu = bnx2x_change_mtu,
66371c44
MM
12873 .ndo_fix_features = bnx2x_fix_features,
12874 .ndo_set_features = bnx2x_set_features,
c64213cd 12875 .ndo_tx_timeout = bnx2x_tx_timeout,
05cc5a39
YM
12876 .ndo_vlan_rx_add_vid = bnx2x_vlan_rx_add_vid,
12877 .ndo_vlan_rx_kill_vid = bnx2x_vlan_rx_kill_vid,
257ddbda 12878#ifdef CONFIG_NET_POLL_CONTROLLER
c64213cd
SH
12879 .ndo_poll_controller = poll_bnx2x,
12880#endif
6383c0b3 12881 .ndo_setup_tc = bnx2x_setup_tc,
6411280a 12882#ifdef CONFIG_BNX2X_SRIOV
abc5a021 12883 .ndo_set_vf_mac = bnx2x_set_vf_mac,
3cdeec22 12884 .ndo_set_vf_vlan = bnx2x_set_vf_vlan,
3ec9f9ca 12885 .ndo_get_vf_config = bnx2x_get_vf_config,
6411280a 12886#endif
55c11941 12887#ifdef NETDEV_FCOE_WWNN
bf61ee14
VZ
12888 .ndo_fcoe_get_wwn = bnx2x_fcoe_get_wwn,
12889#endif
8f20aa57 12890
e0d1095a 12891#ifdef CONFIG_NET_RX_BUSY_POLL
8b80cda5 12892 .ndo_busy_poll = bnx2x_low_latency_recv,
8f20aa57 12893#endif
3d7d562c 12894 .ndo_get_phys_port_id = bnx2x_get_phys_port_id,
6495d15a 12895 .ndo_set_vf_link_state = bnx2x_set_vf_link_state,
5f35227e 12896 .ndo_features_check = bnx2x_features_check,
c64213cd
SH
12897};
12898
1191cb83 12899static int bnx2x_set_coherency_mask(struct bnx2x *bp)
619c5cb6
VZ
12900{
12901 struct device *dev = &bp->pdev->dev;
12902
8ceafbfa
LT
12903 if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)) != 0 &&
12904 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32)) != 0) {
619c5cb6
VZ
12905 dev_err(dev, "System does not support DMA, aborting\n");
12906 return -EIO;
12907 }
12908
12909 return 0;
12910}
12911
33d8e6a5
YM
12912static void bnx2x_disable_pcie_error_reporting(struct bnx2x *bp)
12913{
12914 if (bp->flags & AER_ENABLED) {
12915 pci_disable_pcie_error_reporting(bp->pdev);
12916 bp->flags &= ~AER_ENABLED;
12917 }
12918}
12919
1ab4434c
AE
12920static int bnx2x_init_dev(struct bnx2x *bp, struct pci_dev *pdev,
12921 struct net_device *dev, unsigned long board_type)
a2fbb9ea 12922{
a2fbb9ea 12923 int rc;
c22610d0 12924 u32 pci_cfg_dword;
65087cfe
AE
12925 bool chip_is_e1x = (board_type == BCM57710 ||
12926 board_type == BCM57711 ||
12927 board_type == BCM57711E);
a2fbb9ea
ET
12928
12929 SET_NETDEV_DEV(dev, &pdev->dev);
a2fbb9ea 12930
34f80b04
EG
12931 bp->dev = dev;
12932 bp->pdev = pdev;
a2fbb9ea
ET
12933
12934 rc = pci_enable_device(pdev);
12935 if (rc) {
cdaa7cb8
VZ
12936 dev_err(&bp->pdev->dev,
12937 "Cannot enable PCI device, aborting\n");
a2fbb9ea
ET
12938 goto err_out;
12939 }
12940
12941 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
cdaa7cb8
VZ
12942 dev_err(&bp->pdev->dev,
12943 "Cannot find PCI device base address, aborting\n");
a2fbb9ea
ET
12944 rc = -ENODEV;
12945 goto err_out_disable;
12946 }
12947
1ab4434c
AE
12948 if (IS_PF(bp) && !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
12949 dev_err(&bp->pdev->dev, "Cannot find second PCI device base address, aborting\n");
a2fbb9ea
ET
12950 rc = -ENODEV;
12951 goto err_out_disable;
12952 }
12953
092a5fc9
YR
12954 pci_read_config_dword(pdev, PCICFG_REVISION_ID_OFFSET, &pci_cfg_dword);
12955 if ((pci_cfg_dword & PCICFG_REVESION_ID_MASK) ==
12956 PCICFG_REVESION_ID_ERROR_VAL) {
12957 pr_err("PCI device error, probably due to fan failure, aborting\n");
12958 rc = -ENODEV;
12959 goto err_out_disable;
12960 }
12961
34f80b04
EG
12962 if (atomic_read(&pdev->enable_cnt) == 1) {
12963 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
12964 if (rc) {
cdaa7cb8
VZ
12965 dev_err(&bp->pdev->dev,
12966 "Cannot obtain PCI resources, aborting\n");
34f80b04
EG
12967 goto err_out_disable;
12968 }
a2fbb9ea 12969
34f80b04
EG
12970 pci_set_master(pdev);
12971 pci_save_state(pdev);
12972 }
a2fbb9ea 12973
1ab4434c 12974 if (IS_PF(bp)) {
29ed74c3 12975 if (!pdev->pm_cap) {
1ab4434c
AE
12976 dev_err(&bp->pdev->dev,
12977 "Cannot find power management capability, aborting\n");
12978 rc = -EIO;
12979 goto err_out_release;
12980 }
a2fbb9ea
ET
12981 }
12982
77c98e6a 12983 if (!pci_is_pcie(pdev)) {
51c1a580 12984 dev_err(&bp->pdev->dev, "Not PCI Express, aborting\n");
a2fbb9ea
ET
12985 rc = -EIO;
12986 goto err_out_release;
12987 }
12988
619c5cb6
VZ
12989 rc = bnx2x_set_coherency_mask(bp);
12990 if (rc)
a2fbb9ea 12991 goto err_out_release;
a2fbb9ea 12992
34f80b04
EG
12993 dev->mem_start = pci_resource_start(pdev, 0);
12994 dev->base_addr = dev->mem_start;
12995 dev->mem_end = pci_resource_end(pdev, 0);
a2fbb9ea
ET
12996
12997 dev->irq = pdev->irq;
12998
275f165f 12999 bp->regview = pci_ioremap_bar(pdev, 0);
a2fbb9ea 13000 if (!bp->regview) {
cdaa7cb8
VZ
13001 dev_err(&bp->pdev->dev,
13002 "Cannot map register space, aborting\n");
a2fbb9ea
ET
13003 rc = -ENOMEM;
13004 goto err_out_release;
13005 }
13006
c22610d0
AE
13007 /* In E1/E1H use pci device function given by kernel.
13008 * In E2/E3 read physical function from ME register since these chips
13009 * support Physical Device Assignment where kernel BDF maybe arbitrary
13010 * (depending on hypervisor).
13011 */
2de67439 13012 if (chip_is_e1x) {
c22610d0 13013 bp->pf_num = PCI_FUNC(pdev->devfn);
2de67439
YM
13014 } else {
13015 /* chip is E2/3*/
c22610d0
AE
13016 pci_read_config_dword(bp->pdev,
13017 PCICFG_ME_REGISTER, &pci_cfg_dword);
13018 bp->pf_num = (u8)((pci_cfg_dword & ME_REG_ABS_PF_NUM) >>
2de67439 13019 ME_REG_ABS_PF_NUM_SHIFT);
c22610d0 13020 }
51c1a580 13021 BNX2X_DEV_INFO("me reg PF num: %d\n", bp->pf_num);
c22610d0 13022
34f80b04
EG
13023 /* clean indirect addresses */
13024 pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
13025 PCICFG_VENDOR_ID_OFFSET);
33d8e6a5 13026
da293700
BK
13027 /* Set PCIe reset type to fundamental for EEH recovery */
13028 pdev->needs_freset = 1;
13029
33d8e6a5
YM
13030 /* AER (Advanced Error reporting) configuration */
13031 rc = pci_enable_pcie_error_reporting(pdev);
13032 if (!rc)
13033 bp->flags |= AER_ENABLED;
13034 else
13035 BNX2X_DEV_INFO("Failed To configure PCIe AER [%d]\n", rc);
13036
a5c53dbc
DK
13037 /*
13038 * Clean the following indirect addresses for all functions since it
9f0096a1
DK
13039 * is not used by the driver.
13040 */
1ab4434c
AE
13041 if (IS_PF(bp)) {
13042 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F0, 0);
13043 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F0, 0);
13044 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F0, 0);
13045 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F0, 0);
13046
13047 if (chip_is_e1x) {
13048 REG_WR(bp, PXP2_REG_PGL_ADDR_88_F1, 0);
13049 REG_WR(bp, PXP2_REG_PGL_ADDR_8C_F1, 0);
13050 REG_WR(bp, PXP2_REG_PGL_ADDR_90_F1, 0);
13051 REG_WR(bp, PXP2_REG_PGL_ADDR_94_F1, 0);
13052 }
a5c53dbc 13053
1ab4434c
AE
13054 /* Enable internal target-read (in case we are probed after PF
13055 * FLR). Must be done prior to any BAR read access. Only for
13056 * 57712 and up
13057 */
13058 if (!chip_is_e1x)
13059 REG_WR(bp,
13060 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
a5c53dbc 13061 }
a2fbb9ea 13062
34f80b04 13063 dev->watchdog_timeo = TX_TIMEOUT;
a2fbb9ea 13064
c64213cd 13065 dev->netdev_ops = &bnx2x_netdev_ops;
005a07ba 13066 bnx2x_set_ethtool_ops(bp, dev);
5316bc0b 13067
01789349
JP
13068 dev->priv_flags |= IFF_UNICAST_FLT;
13069
66371c44 13070 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
621b4d66
DK
13071 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
13072 NETIF_F_RXCSUM | NETIF_F_LRO | NETIF_F_GRO |
f646968f 13073 NETIF_F_RXHASH | NETIF_F_HW_VLAN_CTAG_TX;
a8e0c246 13074 if (!chip_is_e1x) {
117401ee 13075 dev->hw_features |= NETIF_F_GSO_GRE | NETIF_F_GSO_UDP_TUNNEL |
2e3bd6a4 13076 NETIF_F_GSO_IPIP | NETIF_F_GSO_SIT;
a848ade4
DK
13077 dev->hw_enc_features =
13078 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
13079 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 |
117401ee 13080 NETIF_F_GSO_IPIP |
2e3bd6a4 13081 NETIF_F_GSO_SIT |
65bc0cfe 13082 NETIF_F_GSO_GRE | NETIF_F_GSO_UDP_TUNNEL;
a848ade4 13083 }
66371c44
MM
13084
13085 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
13086 NETIF_F_TSO | NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_HIGHDMA;
13087
05cc5a39
YM
13088 /* VF with OLD Hypervisor or old PF do not support filtering */
13089 if (IS_PF(bp)) {
13090 if (CHIP_IS_E1x(bp))
13091 bp->accept_any_vlan = true;
13092 else
13093 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
ce7fa78c 13094#ifdef CONFIG_BNX2X_SRIOV
05cc5a39
YM
13095 } else if (bp->acquire_resp.pfdev_info.pf_cap & PFVF_CAP_VLAN_FILTER) {
13096 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
ce7fa78c 13097#endif
05cc5a39
YM
13098 }
13099
f646968f 13100 dev->features |= dev->hw_features | NETIF_F_HW_VLAN_CTAG_RX;
edd31476 13101 dev->features |= NETIF_F_HIGHDMA;
a2fbb9ea 13102
538dd2e3
MB
13103 /* Add Loopback capability to the device */
13104 dev->hw_features |= NETIF_F_LOOPBACK;
13105
98507672 13106#ifdef BCM_DCBNL
785b9b1a
SR
13107 dev->dcbnl_ops = &bnx2x_dcbnl_ops;
13108#endif
13109
01cd4528
EG
13110 /* get_port_hwinfo() will set prtad and mmds properly */
13111 bp->mdio.prtad = MDIO_PRTAD_NONE;
13112 bp->mdio.mmds = 0;
13113 bp->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
13114 bp->mdio.dev = dev;
13115 bp->mdio.mdio_read = bnx2x_mdio_read;
13116 bp->mdio.mdio_write = bnx2x_mdio_write;
13117
a2fbb9ea
ET
13118 return 0;
13119
a2fbb9ea 13120err_out_release:
34f80b04
EG
13121 if (atomic_read(&pdev->enable_cnt) == 1)
13122 pci_release_regions(pdev);
a2fbb9ea
ET
13123
13124err_out_disable:
13125 pci_disable_device(pdev);
a2fbb9ea
ET
13126
13127err_out:
13128 return rc;
13129}
13130
6891dd25 13131static int bnx2x_check_firmware(struct bnx2x *bp)
94a78b79 13132{
37f9ce62 13133 const struct firmware *firmware = bp->firmware;
94a78b79
VZ
13134 struct bnx2x_fw_file_hdr *fw_hdr;
13135 struct bnx2x_fw_file_section *sections;
94a78b79 13136 u32 offset, len, num_ops;
86564c3f 13137 __be16 *ops_offsets;
94a78b79 13138 int i;
37f9ce62 13139 const u8 *fw_ver;
94a78b79 13140
51c1a580
MS
13141 if (firmware->size < sizeof(struct bnx2x_fw_file_hdr)) {
13142 BNX2X_ERR("Wrong FW size\n");
94a78b79 13143 return -EINVAL;
51c1a580 13144 }
94a78b79
VZ
13145
13146 fw_hdr = (struct bnx2x_fw_file_hdr *)firmware->data;
13147 sections = (struct bnx2x_fw_file_section *)fw_hdr;
13148
13149 /* Make sure none of the offsets and sizes make us read beyond
13150 * the end of the firmware data */
13151 for (i = 0; i < sizeof(*fw_hdr) / sizeof(*sections); i++) {
13152 offset = be32_to_cpu(sections[i].offset);
13153 len = be32_to_cpu(sections[i].len);
13154 if (offset + len > firmware->size) {
51c1a580 13155 BNX2X_ERR("Section %d length is out of bounds\n", i);
94a78b79
VZ
13156 return -EINVAL;
13157 }
13158 }
13159
13160 /* Likewise for the init_ops offsets */
13161 offset = be32_to_cpu(fw_hdr->init_ops_offsets.offset);
86564c3f 13162 ops_offsets = (__force __be16 *)(firmware->data + offset);
94a78b79
VZ
13163 num_ops = be32_to_cpu(fw_hdr->init_ops.len) / sizeof(struct raw_op);
13164
13165 for (i = 0; i < be32_to_cpu(fw_hdr->init_ops_offsets.len) / 2; i++) {
13166 if (be16_to_cpu(ops_offsets[i]) > num_ops) {
51c1a580 13167 BNX2X_ERR("Section offset %d is out of bounds\n", i);
94a78b79
VZ
13168 return -EINVAL;
13169 }
13170 }
13171
13172 /* Check FW version */
13173 offset = be32_to_cpu(fw_hdr->fw_version.offset);
13174 fw_ver = firmware->data + offset;
13175 if ((fw_ver[0] != BCM_5710_FW_MAJOR_VERSION) ||
13176 (fw_ver[1] != BCM_5710_FW_MINOR_VERSION) ||
13177 (fw_ver[2] != BCM_5710_FW_REVISION_VERSION) ||
13178 (fw_ver[3] != BCM_5710_FW_ENGINEERING_VERSION)) {
51c1a580
MS
13179 BNX2X_ERR("Bad FW version:%d.%d.%d.%d. Should be %d.%d.%d.%d\n",
13180 fw_ver[0], fw_ver[1], fw_ver[2], fw_ver[3],
13181 BCM_5710_FW_MAJOR_VERSION,
94a78b79
VZ
13182 BCM_5710_FW_MINOR_VERSION,
13183 BCM_5710_FW_REVISION_VERSION,
13184 BCM_5710_FW_ENGINEERING_VERSION);
ab6ad5a4 13185 return -EINVAL;
94a78b79
VZ
13186 }
13187
13188 return 0;
13189}
13190
1191cb83 13191static void be32_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 13192{
ab6ad5a4
EG
13193 const __be32 *source = (const __be32 *)_source;
13194 u32 *target = (u32 *)_target;
94a78b79 13195 u32 i;
94a78b79
VZ
13196
13197 for (i = 0; i < n/4; i++)
13198 target[i] = be32_to_cpu(source[i]);
13199}
13200
13201/*
13202 Ops array is stored in the following format:
13203 {op(8bit), offset(24bit, big endian), data(32bit, big endian)}
13204 */
1191cb83 13205static void bnx2x_prep_ops(const u8 *_source, u8 *_target, u32 n)
94a78b79 13206{
ab6ad5a4
EG
13207 const __be32 *source = (const __be32 *)_source;
13208 struct raw_op *target = (struct raw_op *)_target;
94a78b79 13209 u32 i, j, tmp;
94a78b79 13210
ab6ad5a4 13211 for (i = 0, j = 0; i < n/8; i++, j += 2) {
94a78b79
VZ
13212 tmp = be32_to_cpu(source[j]);
13213 target[i].op = (tmp >> 24) & 0xff;
cdaa7cb8
VZ
13214 target[i].offset = tmp & 0xffffff;
13215 target[i].raw_data = be32_to_cpu(source[j + 1]);
94a78b79
VZ
13216 }
13217}
ab6ad5a4 13218
1aa8b471 13219/* IRO array is stored in the following format:
523224a3
DK
13220 * {base(24bit), m1(16bit), m2(16bit), m3(16bit), size(16bit) }
13221 */
1191cb83 13222static void bnx2x_prep_iro(const u8 *_source, u8 *_target, u32 n)
523224a3
DK
13223{
13224 const __be32 *source = (const __be32 *)_source;
13225 struct iro *target = (struct iro *)_target;
13226 u32 i, j, tmp;
13227
13228 for (i = 0, j = 0; i < n/sizeof(struct iro); i++) {
13229 target[i].base = be32_to_cpu(source[j]);
13230 j++;
13231 tmp = be32_to_cpu(source[j]);
13232 target[i].m1 = (tmp >> 16) & 0xffff;
13233 target[i].m2 = tmp & 0xffff;
13234 j++;
13235 tmp = be32_to_cpu(source[j]);
13236 target[i].m3 = (tmp >> 16) & 0xffff;
13237 target[i].size = tmp & 0xffff;
13238 j++;
13239 }
13240}
13241
1191cb83 13242static void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
94a78b79 13243{
ab6ad5a4
EG
13244 const __be16 *source = (const __be16 *)_source;
13245 u16 *target = (u16 *)_target;
94a78b79 13246 u32 i;
94a78b79
VZ
13247
13248 for (i = 0; i < n/2; i++)
13249 target[i] = be16_to_cpu(source[i]);
13250}
13251
7995c64e
JP
13252#define BNX2X_ALLOC_AND_SET(arr, lbl, func) \
13253do { \
13254 u32 len = be32_to_cpu(fw_hdr->arr.len); \
13255 bp->arr = kmalloc(len, GFP_KERNEL); \
e404decb 13256 if (!bp->arr) \
7995c64e 13257 goto lbl; \
7995c64e
JP
13258 func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
13259 (u8 *)bp->arr, len); \
13260} while (0)
94a78b79 13261
3b603066 13262static int bnx2x_init_firmware(struct bnx2x *bp)
94a78b79 13263{
c0ea452e 13264 const char *fw_file_name;
94a78b79 13265 struct bnx2x_fw_file_hdr *fw_hdr;
45229b42 13266 int rc;
94a78b79 13267
c0ea452e
MS
13268 if (bp->firmware)
13269 return 0;
94a78b79 13270
c0ea452e
MS
13271 if (CHIP_IS_E1(bp))
13272 fw_file_name = FW_FILE_NAME_E1;
13273 else if (CHIP_IS_E1H(bp))
13274 fw_file_name = FW_FILE_NAME_E1H;
13275 else if (!CHIP_IS_E1x(bp))
13276 fw_file_name = FW_FILE_NAME_E2;
13277 else {
13278 BNX2X_ERR("Unsupported chip revision\n");
13279 return -EINVAL;
13280 }
13281 BNX2X_DEV_INFO("Loading %s\n", fw_file_name);
94a78b79 13282
c0ea452e
MS
13283 rc = request_firmware(&bp->firmware, fw_file_name, &bp->pdev->dev);
13284 if (rc) {
13285 BNX2X_ERR("Can't load firmware file %s\n",
13286 fw_file_name);
13287 goto request_firmware_exit;
13288 }
eb2afd4a 13289
c0ea452e
MS
13290 rc = bnx2x_check_firmware(bp);
13291 if (rc) {
13292 BNX2X_ERR("Corrupt firmware file %s\n", fw_file_name);
13293 goto request_firmware_exit;
94a78b79
VZ
13294 }
13295
13296 fw_hdr = (struct bnx2x_fw_file_hdr *)bp->firmware->data;
13297
13298 /* Initialize the pointers to the init arrays */
13299 /* Blob */
13300 BNX2X_ALLOC_AND_SET(init_data, request_firmware_exit, be32_to_cpu_n);
13301
13302 /* Opcodes */
13303 BNX2X_ALLOC_AND_SET(init_ops, init_ops_alloc_err, bnx2x_prep_ops);
13304
13305 /* Offsets */
ab6ad5a4
EG
13306 BNX2X_ALLOC_AND_SET(init_ops_offsets, init_offsets_alloc_err,
13307 be16_to_cpu_n);
94a78b79
VZ
13308
13309 /* STORMs firmware */
573f2035
EG
13310 INIT_TSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
13311 be32_to_cpu(fw_hdr->tsem_int_table_data.offset);
13312 INIT_TSEM_PRAM_DATA(bp) = bp->firmware->data +
13313 be32_to_cpu(fw_hdr->tsem_pram_data.offset);
13314 INIT_USEM_INT_TABLE_DATA(bp) = bp->firmware->data +
13315 be32_to_cpu(fw_hdr->usem_int_table_data.offset);
13316 INIT_USEM_PRAM_DATA(bp) = bp->firmware->data +
13317 be32_to_cpu(fw_hdr->usem_pram_data.offset);
13318 INIT_XSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
13319 be32_to_cpu(fw_hdr->xsem_int_table_data.offset);
13320 INIT_XSEM_PRAM_DATA(bp) = bp->firmware->data +
13321 be32_to_cpu(fw_hdr->xsem_pram_data.offset);
13322 INIT_CSEM_INT_TABLE_DATA(bp) = bp->firmware->data +
13323 be32_to_cpu(fw_hdr->csem_int_table_data.offset);
13324 INIT_CSEM_PRAM_DATA(bp) = bp->firmware->data +
13325 be32_to_cpu(fw_hdr->csem_pram_data.offset);
523224a3
DK
13326 /* IRO */
13327 BNX2X_ALLOC_AND_SET(iro_arr, iro_alloc_err, bnx2x_prep_iro);
94a78b79
VZ
13328
13329 return 0;
ab6ad5a4 13330
523224a3
DK
13331iro_alloc_err:
13332 kfree(bp->init_ops_offsets);
94a78b79
VZ
13333init_offsets_alloc_err:
13334 kfree(bp->init_ops);
13335init_ops_alloc_err:
13336 kfree(bp->init_data);
13337request_firmware_exit:
13338 release_firmware(bp->firmware);
127d0a19 13339 bp->firmware = NULL;
94a78b79
VZ
13340
13341 return rc;
13342}
13343
619c5cb6
VZ
13344static void bnx2x_release_firmware(struct bnx2x *bp)
13345{
13346 kfree(bp->init_ops_offsets);
13347 kfree(bp->init_ops);
13348 kfree(bp->init_data);
13349 release_firmware(bp->firmware);
eb2afd4a 13350 bp->firmware = NULL;
619c5cb6
VZ
13351}
13352
619c5cb6
VZ
13353static struct bnx2x_func_sp_drv_ops bnx2x_func_sp_drv = {
13354 .init_hw_cmn_chip = bnx2x_init_hw_common_chip,
13355 .init_hw_cmn = bnx2x_init_hw_common,
13356 .init_hw_port = bnx2x_init_hw_port,
13357 .init_hw_func = bnx2x_init_hw_func,
13358
13359 .reset_hw_cmn = bnx2x_reset_common,
13360 .reset_hw_port = bnx2x_reset_port,
13361 .reset_hw_func = bnx2x_reset_func,
13362
13363 .gunzip_init = bnx2x_gunzip_init,
13364 .gunzip_end = bnx2x_gunzip_end,
13365
13366 .init_fw = bnx2x_init_firmware,
13367 .release_fw = bnx2x_release_firmware,
13368};
13369
13370void bnx2x__init_func_obj(struct bnx2x *bp)
13371{
13372 /* Prepare DMAE related driver resources */
13373 bnx2x_setup_dmae(bp);
13374
13375 bnx2x_init_func_obj(bp, &bp->func_obj,
13376 bnx2x_sp(bp, func_rdata),
13377 bnx2x_sp_mapping(bp, func_rdata),
a3348722
BW
13378 bnx2x_sp(bp, func_afex_rdata),
13379 bnx2x_sp_mapping(bp, func_afex_rdata),
619c5cb6
VZ
13380 &bnx2x_func_sp_drv);
13381}
13382
13383/* must be called after sriov-enable */
1191cb83 13384static int bnx2x_set_qm_cid_count(struct bnx2x *bp)
523224a3 13385{
37ae41a9 13386 int cid_count = BNX2X_L2_MAX_CID(bp);
94a78b79 13387
290ca2bb
AE
13388 if (IS_SRIOV(bp))
13389 cid_count += BNX2X_VF_CIDS;
13390
55c11941
MS
13391 if (CNIC_SUPPORT(bp))
13392 cid_count += CNIC_CID_MAX;
290ca2bb 13393
523224a3
DK
13394 return roundup(cid_count, QM_CID_ROUND);
13395}
f85582f8 13396
619c5cb6 13397/**
6383c0b3 13398 * bnx2x_get_num_none_def_sbs - return the number of none default SBs
619c5cb6
VZ
13399 *
13400 * @dev: pci device
13401 *
13402 */
60cad4e6 13403static int bnx2x_get_num_non_def_sbs(struct pci_dev *pdev, int cnic_cnt)
619c5cb6 13404{
ae2104be 13405 int index;
1ab4434c 13406 u16 control = 0;
619c5cb6 13407
6383c0b3
AE
13408 /*
13409 * If MSI-X is not supported - return number of SBs needed to support
13410 * one fast path queue: one FP queue + SB for CNIC
13411 */
ae2104be 13412 if (!pdev->msix_cap) {
1ab4434c 13413 dev_info(&pdev->dev, "no msix capability found\n");
55c11941 13414 return 1 + cnic_cnt;
1ab4434c
AE
13415 }
13416 dev_info(&pdev->dev, "msix capability found\n");
619c5cb6 13417
6383c0b3
AE
13418 /*
13419 * The value in the PCI configuration space is the index of the last
13420 * entry, namely one less than the actual size of the table, which is
13421 * exactly what we want to return from this function: number of all SBs
13422 * without the default SB.
1ab4434c 13423 * For VFs there is no default SB, then we return (index+1).
6383c0b3 13424 */
73413ffa 13425 pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &control);
619c5cb6 13426
1ab4434c 13427 index = control & PCI_MSIX_FLAGS_QSIZE;
4bd9b0ff 13428
60cad4e6 13429 return index;
1ab4434c 13430}
523224a3 13431
1ab4434c
AE
13432static int set_max_cos_est(int chip_id)
13433{
13434 switch (chip_id) {
f2e0899f
DK
13435 case BCM57710:
13436 case BCM57711:
13437 case BCM57711E:
1ab4434c 13438 return BNX2X_MULTI_TX_COS_E1X;
f2e0899f 13439 case BCM57712:
619c5cb6 13440 case BCM57712_MF:
1ab4434c 13441 return BNX2X_MULTI_TX_COS_E2_E3A0;
619c5cb6
VZ
13442 case BCM57800:
13443 case BCM57800_MF:
13444 case BCM57810:
13445 case BCM57810_MF:
c3def943
YM
13446 case BCM57840_4_10:
13447 case BCM57840_2_20:
1ab4434c 13448 case BCM57840_O:
c3def943 13449 case BCM57840_MFO:
619c5cb6 13450 case BCM57840_MF:
7e8e02df
BW
13451 case BCM57811:
13452 case BCM57811_MF:
1ab4434c 13453 return BNX2X_MULTI_TX_COS_E3B0;
b1239723
YM
13454 case BCM57712_VF:
13455 case BCM57800_VF:
13456 case BCM57810_VF:
13457 case BCM57840_VF:
13458 case BCM57811_VF:
1ab4434c 13459 return 1;
f2e0899f 13460 default:
1ab4434c 13461 pr_err("Unknown board_type (%d), aborting\n", chip_id);
870634b0 13462 return -ENODEV;
f2e0899f 13463 }
1ab4434c 13464}
f2e0899f 13465
1ab4434c
AE
13466static int set_is_vf(int chip_id)
13467{
13468 switch (chip_id) {
13469 case BCM57712_VF:
13470 case BCM57800_VF:
13471 case BCM57810_VF:
13472 case BCM57840_VF:
13473 case BCM57811_VF:
13474 return true;
13475 default:
13476 return false;
13477 }
13478}
6383c0b3 13479
eeed018c
MK
13480/* nig_tsgen registers relative address */
13481#define tsgen_ctrl 0x0
13482#define tsgen_freecount 0x10
13483#define tsgen_synctime_t0 0x20
13484#define tsgen_offset_t0 0x28
13485#define tsgen_drift_t0 0x30
13486#define tsgen_synctime_t1 0x58
13487#define tsgen_offset_t1 0x60
13488#define tsgen_drift_t1 0x68
13489
13490/* FW workaround for setting drift */
13491static int bnx2x_send_update_drift_ramrod(struct bnx2x *bp, int drift_dir,
13492 int best_val, int best_period)
13493{
13494 struct bnx2x_func_state_params func_params = {NULL};
13495 struct bnx2x_func_set_timesync_params *set_timesync_params =
13496 &func_params.params.set_timesync;
13497
13498 /* Prepare parameters for function state transitions */
13499 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
13500 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
13501
13502 func_params.f_obj = &bp->func_obj;
13503 func_params.cmd = BNX2X_F_CMD_SET_TIMESYNC;
13504
13505 /* Function parameters */
13506 set_timesync_params->drift_adjust_cmd = TS_DRIFT_ADJUST_SET;
13507 set_timesync_params->offset_cmd = TS_OFFSET_KEEP;
13508 set_timesync_params->add_sub_drift_adjust_value =
13509 drift_dir ? TS_ADD_VALUE : TS_SUB_VALUE;
13510 set_timesync_params->drift_adjust_value = best_val;
13511 set_timesync_params->drift_adjust_period = best_period;
13512
13513 return bnx2x_func_state_change(bp, &func_params);
13514}
13515
13516static int bnx2x_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
13517{
13518 struct bnx2x *bp = container_of(ptp, struct bnx2x, ptp_clock_info);
13519 int rc;
13520 int drift_dir = 1;
13521 int val, period, period1, period2, dif, dif1, dif2;
13522 int best_dif = BNX2X_MAX_PHC_DRIFT, best_period = 0, best_val = 0;
13523
13524 DP(BNX2X_MSG_PTP, "PTP adjfreq called, ppb = %d\n", ppb);
13525
13526 if (!netif_running(bp->dev)) {
13527 DP(BNX2X_MSG_PTP,
13528 "PTP adjfreq called while the interface is down\n");
13529 return -EFAULT;
13530 }
13531
13532 if (ppb < 0) {
13533 ppb = -ppb;
13534 drift_dir = 0;
13535 }
13536
13537 if (ppb == 0) {
13538 best_val = 1;
13539 best_period = 0x1FFFFFF;
13540 } else if (ppb >= BNX2X_MAX_PHC_DRIFT) {
13541 best_val = 31;
13542 best_period = 1;
13543 } else {
13544 /* Changed not to allow val = 8, 16, 24 as these values
13545 * are not supported in workaround.
13546 */
13547 for (val = 0; val <= 31; val++) {
13548 if ((val & 0x7) == 0)
13549 continue;
13550 period1 = val * 1000000 / ppb;
13551 period2 = period1 + 1;
13552 if (period1 != 0)
13553 dif1 = ppb - (val * 1000000 / period1);
13554 else
13555 dif1 = BNX2X_MAX_PHC_DRIFT;
13556 if (dif1 < 0)
13557 dif1 = -dif1;
13558 dif2 = ppb - (val * 1000000 / period2);
13559 if (dif2 < 0)
13560 dif2 = -dif2;
13561 dif = (dif1 < dif2) ? dif1 : dif2;
13562 period = (dif1 < dif2) ? period1 : period2;
13563 if (dif < best_dif) {
13564 best_dif = dif;
13565 best_val = val;
13566 best_period = period;
13567 }
13568 }
13569 }
13570
13571 rc = bnx2x_send_update_drift_ramrod(bp, drift_dir, best_val,
13572 best_period);
13573 if (rc) {
13574 BNX2X_ERR("Failed to set drift\n");
13575 return -EFAULT;
13576 }
13577
bf27c353 13578 DP(BNX2X_MSG_PTP, "Configured val = %d, period = %d\n", best_val,
eeed018c
MK
13579 best_period);
13580
13581 return 0;
13582}
13583
13584static int bnx2x_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
13585{
13586 struct bnx2x *bp = container_of(ptp, struct bnx2x, ptp_clock_info);
eeed018c
MK
13587
13588 DP(BNX2X_MSG_PTP, "PTP adjtime called, delta = %llx\n", delta);
13589
2e5601f9 13590 timecounter_adjtime(&bp->timecounter, delta);
eeed018c
MK
13591
13592 return 0;
13593}
13594
5d45186b 13595static int bnx2x_ptp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
eeed018c
MK
13596{
13597 struct bnx2x *bp = container_of(ptp, struct bnx2x, ptp_clock_info);
13598 u64 ns;
eeed018c
MK
13599
13600 ns = timecounter_read(&bp->timecounter);
13601
13602 DP(BNX2X_MSG_PTP, "PTP gettime called, ns = %llu\n", ns);
13603
f7dcdefe 13604 *ts = ns_to_timespec64(ns);
eeed018c
MK
13605
13606 return 0;
13607}
13608
13609static int bnx2x_ptp_settime(struct ptp_clock_info *ptp,
5d45186b 13610 const struct timespec64 *ts)
eeed018c
MK
13611{
13612 struct bnx2x *bp = container_of(ptp, struct bnx2x, ptp_clock_info);
13613 u64 ns;
13614
f7dcdefe 13615 ns = timespec64_to_ns(ts);
eeed018c
MK
13616
13617 DP(BNX2X_MSG_PTP, "PTP settime called, ns = %llu\n", ns);
13618
13619 /* Re-init the timecounter */
13620 timecounter_init(&bp->timecounter, &bp->cyclecounter, ns);
13621
13622 return 0;
13623}
13624
13625/* Enable (or disable) ancillary features of the phc subsystem */
13626static int bnx2x_ptp_enable(struct ptp_clock_info *ptp,
13627 struct ptp_clock_request *rq, int on)
13628{
13629 struct bnx2x *bp = container_of(ptp, struct bnx2x, ptp_clock_info);
13630
13631 BNX2X_ERR("PHC ancillary features are not supported\n");
13632 return -ENOTSUPP;
13633}
13634
1444c301 13635static void bnx2x_register_phc(struct bnx2x *bp)
eeed018c
MK
13636{
13637 /* Fill the ptp_clock_info struct and register PTP clock*/
13638 bp->ptp_clock_info.owner = THIS_MODULE;
13639 snprintf(bp->ptp_clock_info.name, 16, "%s", bp->dev->name);
13640 bp->ptp_clock_info.max_adj = BNX2X_MAX_PHC_DRIFT; /* In PPB */
13641 bp->ptp_clock_info.n_alarm = 0;
13642 bp->ptp_clock_info.n_ext_ts = 0;
13643 bp->ptp_clock_info.n_per_out = 0;
13644 bp->ptp_clock_info.pps = 0;
13645 bp->ptp_clock_info.adjfreq = bnx2x_ptp_adjfreq;
13646 bp->ptp_clock_info.adjtime = bnx2x_ptp_adjtime;
5d45186b
RC
13647 bp->ptp_clock_info.gettime64 = bnx2x_ptp_gettime;
13648 bp->ptp_clock_info.settime64 = bnx2x_ptp_settime;
eeed018c
MK
13649 bp->ptp_clock_info.enable = bnx2x_ptp_enable;
13650
13651 bp->ptp_clock = ptp_clock_register(&bp->ptp_clock_info, &bp->pdev->dev);
13652 if (IS_ERR(bp->ptp_clock)) {
13653 bp->ptp_clock = NULL;
13654 BNX2X_ERR("PTP clock registeration failed\n");
13655 }
13656}
13657
1ab4434c
AE
13658static int bnx2x_init_one(struct pci_dev *pdev,
13659 const struct pci_device_id *ent)
13660{
13661 struct net_device *dev = NULL;
13662 struct bnx2x *bp;
b91e1a1a
YM
13663 enum pcie_link_width pcie_width;
13664 enum pci_bus_speed pcie_speed;
1ab4434c
AE
13665 int rc, max_non_def_sbs;
13666 int rx_count, tx_count, rss_count, doorbell_size;
13667 int max_cos_est;
13668 bool is_vf;
13669 int cnic_cnt;
13670
12a8541d
YM
13671 /* Management FW 'remembers' living interfaces. Allow it some time
13672 * to forget previously living interfaces, allowing a proper re-load.
13673 */
cd9c3997
MS
13674 if (is_kdump_kernel()) {
13675 ktime_t now = ktime_get_boottime();
13676 ktime_t fw_ready_time = ktime_set(5, 0);
13677
13678 if (ktime_before(now, fw_ready_time))
13679 msleep(ktime_ms_delta(fw_ready_time, now));
13680 }
12a8541d 13681
1ab4434c
AE
13682 /* An estimated maximum supported CoS number according to the chip
13683 * version.
13684 * We will try to roughly estimate the maximum number of CoSes this chip
13685 * may support in order to minimize the memory allocated for Tx
13686 * netdev_queue's. This number will be accurately calculated during the
13687 * initialization of bp->max_cos based on the chip versions AND chip
13688 * revision in the bnx2x_init_bp().
13689 */
13690 max_cos_est = set_max_cos_est(ent->driver_data);
13691 if (max_cos_est < 0)
13692 return max_cos_est;
13693 is_vf = set_is_vf(ent->driver_data);
13694 cnic_cnt = is_vf ? 0 : 1;
13695
60cad4e6
AE
13696 max_non_def_sbs = bnx2x_get_num_non_def_sbs(pdev, cnic_cnt);
13697
13698 /* add another SB for VF as it has no default SB */
13699 max_non_def_sbs += is_vf ? 1 : 0;
6383c0b3
AE
13700
13701 /* Maximum number of RSS queues: one IGU SB goes to CNIC */
60cad4e6 13702 rss_count = max_non_def_sbs - cnic_cnt;
1ab4434c
AE
13703
13704 if (rss_count < 1)
13705 return -EINVAL;
6383c0b3
AE
13706
13707 /* Maximum number of netdev Rx queues: RSS + FCoE L2 */
55c11941 13708 rx_count = rss_count + cnic_cnt;
6383c0b3 13709
1ab4434c 13710 /* Maximum number of netdev Tx queues:
37ae41a9 13711 * Maximum TSS queues * Maximum supported number of CoS + FCoE L2
6383c0b3 13712 */
55c11941 13713 tx_count = rss_count * max_cos_est + cnic_cnt;
f85582f8 13714
a2fbb9ea 13715 /* dev zeroed in init_etherdev */
6383c0b3 13716 dev = alloc_etherdev_mqs(sizeof(*bp), tx_count, rx_count);
41de8d4c 13717 if (!dev)
a2fbb9ea
ET
13718 return -ENOMEM;
13719
a2fbb9ea 13720 bp = netdev_priv(dev);
a2fbb9ea 13721
1ab4434c
AE
13722 bp->flags = 0;
13723 if (is_vf)
13724 bp->flags |= IS_VF_FLAG;
13725
6383c0b3 13726 bp->igu_sb_cnt = max_non_def_sbs;
1ab4434c 13727 bp->igu_base_addr = IS_VF(bp) ? PXP_VF_ADDR_IGU_START : BAR_IGU_INTMEM;
6383c0b3 13728 bp->msg_enable = debug;
55c11941 13729 bp->cnic_support = cnic_cnt;
4bd9b0ff 13730 bp->cnic_probe = bnx2x_cnic_probe;
55c11941 13731
6383c0b3 13732 pci_set_drvdata(pdev, dev);
523224a3 13733
1ab4434c 13734 rc = bnx2x_init_dev(bp, pdev, dev, ent->driver_data);
a2fbb9ea
ET
13735 if (rc < 0) {
13736 free_netdev(dev);
13737 return rc;
13738 }
13739
1ab4434c
AE
13740 BNX2X_DEV_INFO("This is a %s function\n",
13741 IS_PF(bp) ? "physical" : "virtual");
55c11941 13742 BNX2X_DEV_INFO("Cnic support is %s\n", CNIC_SUPPORT(bp) ? "on" : "off");
1ab4434c 13743 BNX2X_DEV_INFO("Max num of status blocks %d\n", max_non_def_sbs);
60aa0509 13744 BNX2X_DEV_INFO("Allocated netdev with %d tx and %d rx queues\n",
2de67439 13745 tx_count, rx_count);
60aa0509 13746
34f80b04 13747 rc = bnx2x_init_bp(bp);
693fc0d1
EG
13748 if (rc)
13749 goto init_one_exit;
13750
1ab4434c
AE
13751 /* Map doorbells here as we need the real value of bp->max_cos which
13752 * is initialized in bnx2x_init_bp() to determine the number of
13753 * l2 connections.
6383c0b3 13754 */
1ab4434c 13755 if (IS_VF(bp)) {
1d6f3cd8 13756 bp->doorbells = bnx2x_vf_doorbells(bp);
6411280a
AE
13757 rc = bnx2x_vf_pci_alloc(bp);
13758 if (rc)
13759 goto init_one_exit;
1ab4434c
AE
13760 } else {
13761 doorbell_size = BNX2X_L2_MAX_CID(bp) * (1 << BNX2X_DB_SHIFT);
13762 if (doorbell_size > pci_resource_len(pdev, 2)) {
13763 dev_err(&bp->pdev->dev,
13764 "Cannot map doorbells, bar size too small, aborting\n");
13765 rc = -ENOMEM;
13766 goto init_one_exit;
13767 }
13768 bp->doorbells = ioremap_nocache(pci_resource_start(pdev, 2),
13769 doorbell_size);
37ae41a9 13770 }
6383c0b3
AE
13771 if (!bp->doorbells) {
13772 dev_err(&bp->pdev->dev,
13773 "Cannot map doorbell space, aborting\n");
13774 rc = -ENOMEM;
13775 goto init_one_exit;
13776 }
13777
be1f1ffa
AE
13778 if (IS_VF(bp)) {
13779 rc = bnx2x_vfpf_acquire(bp, tx_count, rx_count);
13780 if (rc)
13781 goto init_one_exit;
13782 }
13783
3c76feff
AE
13784 /* Enable SRIOV if capability found in configuration space */
13785 rc = bnx2x_iov_init_one(bp, int_mode, BNX2X_MAX_NUM_OF_VFS);
290ca2bb
AE
13786 if (rc)
13787 goto init_one_exit;
13788
523224a3 13789 /* calc qm_cid_count */
6383c0b3 13790 bp->qm_cid_count = bnx2x_set_qm_cid_count(bp);
1ab4434c 13791 BNX2X_DEV_INFO("qm_cid_count %d\n", bp->qm_cid_count);
523224a3 13792
55c11941 13793 /* disable FCOE L2 queue for E1x*/
62ac0dc9 13794 if (CHIP_IS_E1x(bp))
ec6ba945
VZ
13795 bp->flags |= NO_FCOE_FLAG;
13796
0e8d2ec5
MS
13797 /* Set bp->num_queues for MSI-X mode*/
13798 bnx2x_set_num_queues(bp);
13799
25985edc 13800 /* Configure interrupt mode: try to enable MSI-X/MSI if
0e8d2ec5 13801 * needed.
d6214d7a 13802 */
1ab4434c
AE
13803 rc = bnx2x_set_int_mode(bp);
13804 if (rc) {
13805 dev_err(&pdev->dev, "Cannot set interrupts\n");
13806 goto init_one_exit;
13807 }
04c46736 13808 BNX2X_DEV_INFO("set interrupts successfully\n");
d6214d7a 13809
1ab4434c 13810 /* register the net device */
b340007f
VZ
13811 rc = register_netdev(dev);
13812 if (rc) {
13813 dev_err(&pdev->dev, "Cannot register net device\n");
13814 goto init_one_exit;
13815 }
1ab4434c 13816 BNX2X_DEV_INFO("device name after netdev register %s\n", dev->name);
b340007f 13817
ec6ba945
VZ
13818 if (!NO_FCOE(bp)) {
13819 /* Add storage MAC address */
13820 rtnl_lock();
13821 dev_addr_add(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
13822 rtnl_unlock();
13823 }
b91e1a1a
YM
13824 if (pcie_get_minimum_link(bp->pdev, &pcie_speed, &pcie_width) ||
13825 pcie_speed == PCI_SPEED_UNKNOWN ||
13826 pcie_width == PCIE_LNK_WIDTH_UNKNOWN)
13827 BNX2X_DEV_INFO("Failed to determine PCI Express Bandwidth\n");
13828 else
13829 BNX2X_DEV_INFO(
13830 "%s (%c%d) PCI-E x%d %s found at mem %lx, IRQ %d, node addr %pM\n",
ca1ee4b2
DK
13831 board_info[ent->driver_data].name,
13832 (CHIP_REV(bp) >> 12) + 'A', (CHIP_METAL(bp) >> 4),
13833 pcie_width,
b91e1a1a
YM
13834 pcie_speed == PCIE_SPEED_2_5GT ? "2.5GHz" :
13835 pcie_speed == PCIE_SPEED_5_0GT ? "5.0GHz" :
13836 pcie_speed == PCIE_SPEED_8_0GT ? "8.0GHz" :
ca1ee4b2
DK
13837 "Unknown",
13838 dev->base_addr, bp->pdev->irq, dev->dev_addr);
c016201c 13839
eeed018c
MK
13840 bnx2x_register_phc(bp);
13841
230d00eb
YM
13842 if (!IS_MF_SD_STORAGE_PERSONALITY_ONLY(bp))
13843 bnx2x_set_os_driver_state(bp, OS_DRIVER_STATE_DISABLED);
13844
a2fbb9ea 13845 return 0;
34f80b04
EG
13846
13847init_one_exit:
33d8e6a5
YM
13848 bnx2x_disable_pcie_error_reporting(bp);
13849
34f80b04
EG
13850 if (bp->regview)
13851 iounmap(bp->regview);
13852
1ab4434c 13853 if (IS_PF(bp) && bp->doorbells)
34f80b04
EG
13854 iounmap(bp->doorbells);
13855
13856 free_netdev(dev);
13857
13858 if (atomic_read(&pdev->enable_cnt) == 1)
13859 pci_release_regions(pdev);
13860
13861 pci_disable_device(pdev);
34f80b04
EG
13862
13863 return rc;
a2fbb9ea
ET
13864}
13865
b030ed2f
YM
13866static void __bnx2x_remove(struct pci_dev *pdev,
13867 struct net_device *dev,
13868 struct bnx2x *bp,
13869 bool remove_netdev)
a2fbb9ea 13870{
eeed018c
MK
13871 if (bp->ptp_clock) {
13872 ptp_clock_unregister(bp->ptp_clock);
13873 bp->ptp_clock = NULL;
13874 }
13875
ec6ba945
VZ
13876 /* Delete storage MAC address */
13877 if (!NO_FCOE(bp)) {
13878 rtnl_lock();
13879 dev_addr_del(bp->dev, bp->fip_mac, NETDEV_HW_ADDR_T_SAN);
13880 rtnl_unlock();
13881 }
ec6ba945 13882
98507672
SR
13883#ifdef BCM_DCBNL
13884 /* Delete app tlvs from dcbnl */
13885 bnx2x_dcbnl_update_applist(bp, true);
13886#endif
13887
a6d3a5ba
BW
13888 if (IS_PF(bp) &&
13889 !BP_NOMCP(bp) &&
13890 (bp->flags & BC_SUPPORTS_RMMOD_CMD))
13891 bnx2x_fw_command(bp, DRV_MSG_CODE_RMMOD, 0);
13892
b030ed2f
YM
13893 /* Close the interface - either directly or implicitly */
13894 if (remove_netdev) {
13895 unregister_netdev(dev);
13896 } else {
13897 rtnl_lock();
6ef5a92c 13898 dev_close(dev);
b030ed2f
YM
13899 rtnl_unlock();
13900 }
a2fbb9ea 13901
78c3bcc5
AE
13902 bnx2x_iov_remove_one(bp);
13903
084d6cbb 13904 /* Power on: we can't let PCI layer write to us while we are in D3 */
04860eb7 13905 if (IS_PF(bp)) {
1ab4434c 13906 bnx2x_set_power_state(bp, PCI_D0);
230d00eb 13907 bnx2x_set_os_driver_state(bp, OS_DRIVER_STATE_NOT_LOADED);
084d6cbb 13908
04860eb7
MC
13909 /* Set endianity registers to reset values in case next driver
13910 * boots in different endianty environment.
13911 */
13912 bnx2x_reset_endianity(bp);
13913 }
13914
d6214d7a
DK
13915 /* Disable MSI/MSI-X */
13916 bnx2x_disable_msi(bp);
f85582f8 13917
084d6cbb 13918 /* Power off */
1ab4434c
AE
13919 if (IS_PF(bp))
13920 bnx2x_set_power_state(bp, PCI_D3hot);
084d6cbb 13921
72fd0718 13922 /* Make sure RESET task is not scheduled before continuing */
7be08a72 13923 cancel_delayed_work_sync(&bp->sp_rtnl_task);
290ca2bb 13924
4513f925
AE
13925 /* send message via vfpf channel to release the resources of this vf */
13926 if (IS_VF(bp))
13927 bnx2x_vfpf_release(bp);
72fd0718 13928
b030ed2f
YM
13929 /* Assumes no further PCIe PM changes will occur */
13930 if (system_state == SYSTEM_POWER_OFF) {
13931 pci_wake_from_d3(pdev, bp->wol);
13932 pci_set_power_state(pdev, PCI_D3hot);
13933 }
13934
33d8e6a5 13935 bnx2x_disable_pcie_error_reporting(bp);
d9aee591
YM
13936 if (remove_netdev) {
13937 if (bp->regview)
13938 iounmap(bp->regview);
33d8e6a5 13939
d9aee591
YM
13940 /* For vfs, doorbells are part of the regview and were unmapped
13941 * along with it. FW is only loaded by PF.
13942 */
13943 if (IS_PF(bp)) {
13944 if (bp->doorbells)
13945 iounmap(bp->doorbells);
eb2afd4a 13946
d9aee591 13947 bnx2x_release_firmware(bp);
e2a367f8
YM
13948 } else {
13949 bnx2x_vf_pci_dealloc(bp);
d9aee591
YM
13950 }
13951 bnx2x_free_mem_bp(bp);
523224a3 13952
b030ed2f 13953 free_netdev(dev);
34f80b04 13954
d9aee591
YM
13955 if (atomic_read(&pdev->enable_cnt) == 1)
13956 pci_release_regions(pdev);
34f80b04 13957
5f6db130
YM
13958 pci_disable_device(pdev);
13959 }
a2fbb9ea
ET
13960}
13961
b030ed2f
YM
13962static void bnx2x_remove_one(struct pci_dev *pdev)
13963{
13964 struct net_device *dev = pci_get_drvdata(pdev);
13965 struct bnx2x *bp;
13966
13967 if (!dev) {
13968 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
13969 return;
13970 }
13971 bp = netdev_priv(dev);
13972
13973 __bnx2x_remove(pdev, dev, bp, true);
13974}
13975
f8ef6e44
YG
13976static int bnx2x_eeh_nic_unload(struct bnx2x *bp)
13977{
7fa6f340 13978 bp->state = BNX2X_STATE_CLOSING_WAIT4_HALT;
f8ef6e44
YG
13979
13980 bp->rx_mode = BNX2X_RX_MODE_NONE;
13981
55c11941
MS
13982 if (CNIC_LOADED(bp))
13983 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
13984
619c5cb6
VZ
13985 /* Stop Tx */
13986 bnx2x_tx_disable(bp);
26614ba5
MS
13987 /* Delete all NAPI objects */
13988 bnx2x_del_all_napi(bp);
55c11941
MS
13989 if (CNIC_LOADED(bp))
13990 bnx2x_del_all_napi_cnic(bp);
7fa6f340 13991 netdev_reset_tc(bp->dev);
f8ef6e44
YG
13992
13993 del_timer_sync(&bp->timer);
0c0e6341 13994 cancel_delayed_work_sync(&bp->sp_task);
13995 cancel_delayed_work_sync(&bp->period_task);
619c5cb6 13996
c6e36d8c
YM
13997 if (!down_timeout(&bp->stats_lock, HZ / 10)) {
13998 bp->stats_state = STATS_STATE_DISABLED;
13999 up(&bp->stats_lock);
14000 }
f8ef6e44 14001
7fa6f340 14002 bnx2x_save_statistics(bp);
f8ef6e44 14003
619c5cb6
VZ
14004 netif_carrier_off(bp->dev);
14005
f8ef6e44
YG
14006 return 0;
14007}
14008
493adb1f
WX
14009/**
14010 * bnx2x_io_error_detected - called when PCI error is detected
14011 * @pdev: Pointer to PCI device
14012 * @state: The current pci connection state
14013 *
14014 * This function is called after a PCI bus error affecting
14015 * this device has been detected.
14016 */
14017static pci_ers_result_t bnx2x_io_error_detected(struct pci_dev *pdev,
14018 pci_channel_state_t state)
14019{
14020 struct net_device *dev = pci_get_drvdata(pdev);
14021 struct bnx2x *bp = netdev_priv(dev);
14022
14023 rtnl_lock();
14024
7fa6f340
YM
14025 BNX2X_ERR("IO error detected\n");
14026
493adb1f
WX
14027 netif_device_detach(dev);
14028
07ce50e4
DN
14029 if (state == pci_channel_io_perm_failure) {
14030 rtnl_unlock();
14031 return PCI_ERS_RESULT_DISCONNECT;
14032 }
14033
493adb1f 14034 if (netif_running(dev))
f8ef6e44 14035 bnx2x_eeh_nic_unload(bp);
493adb1f 14036
7fa6f340
YM
14037 bnx2x_prev_path_mark_eeh(bp);
14038
493adb1f
WX
14039 pci_disable_device(pdev);
14040
14041 rtnl_unlock();
14042
14043 /* Request a slot reset */
14044 return PCI_ERS_RESULT_NEED_RESET;
14045}
14046
14047/**
14048 * bnx2x_io_slot_reset - called after the PCI bus has been reset
14049 * @pdev: Pointer to PCI device
14050 *
14051 * Restart the card from scratch, as if from a cold-boot.
14052 */
14053static pci_ers_result_t bnx2x_io_slot_reset(struct pci_dev *pdev)
14054{
14055 struct net_device *dev = pci_get_drvdata(pdev);
14056 struct bnx2x *bp = netdev_priv(dev);
7fa6f340 14057 int i;
493adb1f
WX
14058
14059 rtnl_lock();
7fa6f340 14060 BNX2X_ERR("IO slot reset initializing...\n");
493adb1f
WX
14061 if (pci_enable_device(pdev)) {
14062 dev_err(&pdev->dev,
14063 "Cannot re-enable PCI device after reset\n");
14064 rtnl_unlock();
14065 return PCI_ERS_RESULT_DISCONNECT;
14066 }
14067
14068 pci_set_master(pdev);
14069 pci_restore_state(pdev);
70632d0a 14070 pci_save_state(pdev);
493adb1f
WX
14071
14072 if (netif_running(dev))
14073 bnx2x_set_power_state(bp, PCI_D0);
14074
7fa6f340
YM
14075 if (netif_running(dev)) {
14076 BNX2X_ERR("IO slot reset --> driver unload\n");
e68072ef
YM
14077
14078 /* MCP should have been reset; Need to wait for validity */
14079 bnx2x_init_shmem(bp);
14080
7fa6f340
YM
14081 if (IS_PF(bp) && SHMEM2_HAS(bp, drv_capabilities_flag)) {
14082 u32 v;
14083
14084 v = SHMEM2_RD(bp,
14085 drv_capabilities_flag[BP_FW_MB_IDX(bp)]);
14086 SHMEM2_WR(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)],
14087 v & ~DRV_FLAGS_CAPABILITIES_LOADED_L2);
14088 }
14089 bnx2x_drain_tx_queues(bp);
14090 bnx2x_send_unload_req(bp, UNLOAD_RECOVERY);
14091 bnx2x_netif_stop(bp, 1);
14092 bnx2x_free_irq(bp);
14093
14094 /* Report UNLOAD_DONE to MCP */
14095 bnx2x_send_unload_done(bp, true);
14096
14097 bp->sp_state = 0;
14098 bp->port.pmf = 0;
14099
14100 bnx2x_prev_unload(bp);
14101
16a5fd92 14102 /* We should have reseted the engine, so It's fair to
7fa6f340
YM
14103 * assume the FW will no longer write to the bnx2x driver.
14104 */
14105 bnx2x_squeeze_objects(bp);
14106 bnx2x_free_skbs(bp);
14107 for_each_rx_queue(bp, i)
14108 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
14109 bnx2x_free_fp_mem(bp);
14110 bnx2x_free_mem(bp);
14111
14112 bp->state = BNX2X_STATE_CLOSED;
14113 }
14114
493adb1f
WX
14115 rtnl_unlock();
14116
33d8e6a5
YM
14117 /* If AER, perform cleanup of the PCIe registers */
14118 if (bp->flags & AER_ENABLED) {
14119 if (pci_cleanup_aer_uncorrect_error_status(pdev))
14120 BNX2X_ERR("pci_cleanup_aer_uncorrect_error_status failed\n");
14121 else
14122 DP(NETIF_MSG_HW, "pci_cleanup_aer_uncorrect_error_status succeeded\n");
14123 }
14124
493adb1f
WX
14125 return PCI_ERS_RESULT_RECOVERED;
14126}
14127
14128/**
14129 * bnx2x_io_resume - called when traffic can start flowing again
14130 * @pdev: Pointer to PCI device
14131 *
14132 * This callback is called when the error recovery driver tells us that
14133 * its OK to resume normal operation.
14134 */
14135static void bnx2x_io_resume(struct pci_dev *pdev)
14136{
14137 struct net_device *dev = pci_get_drvdata(pdev);
14138 struct bnx2x *bp = netdev_priv(dev);
14139
72fd0718 14140 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 14141 netdev_err(bp->dev, "Handling parity error recovery. Try again later\n");
72fd0718
VZ
14142 return;
14143 }
14144
493adb1f
WX
14145 rtnl_lock();
14146
7fa6f340
YM
14147 bp->fw_seq = SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
14148 DRV_MSG_SEQ_NUMBER_MASK;
14149
493adb1f 14150 if (netif_running(dev))
f8ef6e44 14151 bnx2x_nic_load(bp, LOAD_NORMAL);
493adb1f
WX
14152
14153 netif_device_attach(dev);
14154
14155 rtnl_unlock();
14156}
14157
3646f0e5 14158static const struct pci_error_handlers bnx2x_err_handler = {
493adb1f 14159 .error_detected = bnx2x_io_error_detected,
356e2385
EG
14160 .slot_reset = bnx2x_io_slot_reset,
14161 .resume = bnx2x_io_resume,
493adb1f
WX
14162};
14163
b030ed2f
YM
14164static void bnx2x_shutdown(struct pci_dev *pdev)
14165{
14166 struct net_device *dev = pci_get_drvdata(pdev);
14167 struct bnx2x *bp;
14168
14169 if (!dev)
14170 return;
14171
14172 bp = netdev_priv(dev);
14173 if (!bp)
14174 return;
14175
14176 rtnl_lock();
14177 netif_device_detach(dev);
14178 rtnl_unlock();
14179
14180 /* Don't remove the netdevice, as there are scenarios which will cause
14181 * the kernel to hang, e.g., when trying to remove bnx2i while the
14182 * rootfs is mounted from SAN.
14183 */
14184 __bnx2x_remove(pdev, dev, bp, false);
14185}
14186
a2fbb9ea 14187static struct pci_driver bnx2x_pci_driver = {
493adb1f
WX
14188 .name = DRV_MODULE_NAME,
14189 .id_table = bnx2x_pci_tbl,
14190 .probe = bnx2x_init_one,
0329aba1 14191 .remove = bnx2x_remove_one,
493adb1f
WX
14192 .suspend = bnx2x_suspend,
14193 .resume = bnx2x_resume,
14194 .err_handler = &bnx2x_err_handler,
3c76feff
AE
14195#ifdef CONFIG_BNX2X_SRIOV
14196 .sriov_configure = bnx2x_sriov_configure,
14197#endif
b030ed2f 14198 .shutdown = bnx2x_shutdown,
a2fbb9ea
ET
14199};
14200
14201static int __init bnx2x_init(void)
14202{
dd21ca6d
SG
14203 int ret;
14204
7995c64e 14205 pr_info("%s", version);
938cf541 14206
1cf167f2
EG
14207 bnx2x_wq = create_singlethread_workqueue("bnx2x");
14208 if (bnx2x_wq == NULL) {
7995c64e 14209 pr_err("Cannot create workqueue\n");
1cf167f2
EG
14210 return -ENOMEM;
14211 }
370d4a26
YM
14212 bnx2x_iov_wq = create_singlethread_workqueue("bnx2x_iov");
14213 if (!bnx2x_iov_wq) {
14214 pr_err("Cannot create iov workqueue\n");
14215 destroy_workqueue(bnx2x_wq);
14216 return -ENOMEM;
14217 }
1cf167f2 14218
dd21ca6d
SG
14219 ret = pci_register_driver(&bnx2x_pci_driver);
14220 if (ret) {
7995c64e 14221 pr_err("Cannot register driver\n");
dd21ca6d 14222 destroy_workqueue(bnx2x_wq);
370d4a26 14223 destroy_workqueue(bnx2x_iov_wq);
dd21ca6d
SG
14224 }
14225 return ret;
a2fbb9ea
ET
14226}
14227
14228static void __exit bnx2x_cleanup(void)
14229{
452427b0 14230 struct list_head *pos, *q;
d76a6111 14231
a2fbb9ea 14232 pci_unregister_driver(&bnx2x_pci_driver);
1cf167f2
EG
14233
14234 destroy_workqueue(bnx2x_wq);
370d4a26 14235 destroy_workqueue(bnx2x_iov_wq);
452427b0 14236
16a5fd92 14237 /* Free globally allocated resources */
452427b0
YM
14238 list_for_each_safe(pos, q, &bnx2x_prev_list) {
14239 struct bnx2x_prev_path_list *tmp =
14240 list_entry(pos, struct bnx2x_prev_path_list, list);
14241 list_del(pos);
14242 kfree(tmp);
14243 }
a2fbb9ea
ET
14244}
14245
3deb8167
YR
14246void bnx2x_notify_link_changed(struct bnx2x *bp)
14247{
14248 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_12 + BP_FUNC(bp)*sizeof(u32), 1);
14249}
14250
a2fbb9ea
ET
14251module_init(bnx2x_init);
14252module_exit(bnx2x_cleanup);
14253
619c5cb6
VZ
14254/**
14255 * bnx2x_set_iscsi_eth_mac_addr - set iSCSI MAC(s).
14256 *
14257 * @bp: driver handle
14258 * @set: set or clear the CAM entry
14259 *
16a5fd92 14260 * This function will wait until the ramrod completion returns.
619c5cb6
VZ
14261 * Return 0 if success, -ENODEV if ramrod doesn't return.
14262 */
1191cb83 14263static int bnx2x_set_iscsi_eth_mac_addr(struct bnx2x *bp)
619c5cb6
VZ
14264{
14265 unsigned long ramrod_flags = 0;
14266
14267 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
14268 return bnx2x_set_mac_one(bp, bp->cnic_eth_dev.iscsi_mac,
14269 &bp->iscsi_l2_mac_obj, true,
14270 BNX2X_ISCSI_ETH_MAC, &ramrod_flags);
14271}
993ac7b5
MC
14272
14273/* count denotes the number of new completions we have seen */
14274static void bnx2x_cnic_sp_post(struct bnx2x *bp, int count)
14275{
14276 struct eth_spe *spe;
a052997e 14277 int cxt_index, cxt_offset;
993ac7b5
MC
14278
14279#ifdef BNX2X_STOP_ON_ERROR
14280 if (unlikely(bp->panic))
14281 return;
14282#endif
14283
14284 spin_lock_bh(&bp->spq_lock);
c2bff63f 14285 BUG_ON(bp->cnic_spq_pending < count);
993ac7b5
MC
14286 bp->cnic_spq_pending -= count;
14287
c2bff63f
DK
14288 for (; bp->cnic_kwq_pending; bp->cnic_kwq_pending--) {
14289 u16 type = (le16_to_cpu(bp->cnic_kwq_cons->hdr.type)
14290 & SPE_HDR_CONN_TYPE) >>
14291 SPE_HDR_CONN_TYPE_SHIFT;
619c5cb6
VZ
14292 u8 cmd = (le32_to_cpu(bp->cnic_kwq_cons->hdr.conn_and_cmd_data)
14293 >> SPE_HDR_CMD_ID_SHIFT) & 0xff;
c2bff63f
DK
14294
14295 /* Set validation for iSCSI L2 client before sending SETUP
14296 * ramrod
14297 */
14298 if (type == ETH_CONNECTION_TYPE) {
a052997e 14299 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP) {
37ae41a9 14300 cxt_index = BNX2X_ISCSI_ETH_CID(bp) /
a052997e 14301 ILT_PAGE_CIDS;
37ae41a9 14302 cxt_offset = BNX2X_ISCSI_ETH_CID(bp) -
a052997e
MS
14303 (cxt_index * ILT_PAGE_CIDS);
14304 bnx2x_set_ctx_validation(bp,
14305 &bp->context[cxt_index].
14306 vcxt[cxt_offset].eth,
37ae41a9 14307 BNX2X_ISCSI_ETH_CID(bp));
a052997e 14308 }
c2bff63f
DK
14309 }
14310
619c5cb6
VZ
14311 /*
14312 * There may be not more than 8 L2, not more than 8 L5 SPEs
14313 * and in the air. We also check that number of outstanding
6e30dd4e
VZ
14314 * COMMON ramrods is not more than the EQ and SPQ can
14315 * accommodate.
c2bff63f 14316 */
6e30dd4e
VZ
14317 if (type == ETH_CONNECTION_TYPE) {
14318 if (!atomic_read(&bp->cq_spq_left))
14319 break;
14320 else
14321 atomic_dec(&bp->cq_spq_left);
14322 } else if (type == NONE_CONNECTION_TYPE) {
14323 if (!atomic_read(&bp->eq_spq_left))
c2bff63f
DK
14324 break;
14325 else
6e30dd4e 14326 atomic_dec(&bp->eq_spq_left);
ec6ba945
VZ
14327 } else if ((type == ISCSI_CONNECTION_TYPE) ||
14328 (type == FCOE_CONNECTION_TYPE)) {
c2bff63f
DK
14329 if (bp->cnic_spq_pending >=
14330 bp->cnic_eth_dev.max_kwqe_pending)
14331 break;
14332 else
14333 bp->cnic_spq_pending++;
14334 } else {
14335 BNX2X_ERR("Unknown SPE type: %d\n", type);
14336 bnx2x_panic();
993ac7b5 14337 break;
c2bff63f 14338 }
993ac7b5
MC
14339
14340 spe = bnx2x_sp_get_next(bp);
14341 *spe = *bp->cnic_kwq_cons;
14342
51c1a580 14343 DP(BNX2X_MSG_SP, "pending on SPQ %d, on KWQ %d count %d\n",
993ac7b5
MC
14344 bp->cnic_spq_pending, bp->cnic_kwq_pending, count);
14345
14346 if (bp->cnic_kwq_cons == bp->cnic_kwq_last)
14347 bp->cnic_kwq_cons = bp->cnic_kwq;
14348 else
14349 bp->cnic_kwq_cons++;
14350 }
14351 bnx2x_sp_prod_update(bp);
14352 spin_unlock_bh(&bp->spq_lock);
14353}
14354
14355static int bnx2x_cnic_sp_queue(struct net_device *dev,
14356 struct kwqe_16 *kwqes[], u32 count)
14357{
14358 struct bnx2x *bp = netdev_priv(dev);
14359 int i;
14360
14361#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
14362 if (unlikely(bp->panic)) {
14363 BNX2X_ERR("Can't post to SP queue while panic\n");
993ac7b5 14364 return -EIO;
51c1a580 14365 }
993ac7b5
MC
14366#endif
14367
95c6c616
AE
14368 if ((bp->recovery_state != BNX2X_RECOVERY_DONE) &&
14369 (bp->recovery_state != BNX2X_RECOVERY_NIC_LOADING)) {
51c1a580 14370 BNX2X_ERR("Handling parity error recovery. Try again later\n");
95c6c616
AE
14371 return -EAGAIN;
14372 }
14373
993ac7b5
MC
14374 spin_lock_bh(&bp->spq_lock);
14375
14376 for (i = 0; i < count; i++) {
14377 struct eth_spe *spe = (struct eth_spe *)kwqes[i];
14378
14379 if (bp->cnic_kwq_pending == MAX_SP_DESC_CNT)
14380 break;
14381
14382 *bp->cnic_kwq_prod = *spe;
14383
14384 bp->cnic_kwq_pending++;
14385
51c1a580 14386 DP(BNX2X_MSG_SP, "L5 SPQE %x %x %x:%x pos %d\n",
993ac7b5 14387 spe->hdr.conn_and_cmd_data, spe->hdr.type,
523224a3
DK
14388 spe->data.update_data_addr.hi,
14389 spe->data.update_data_addr.lo,
993ac7b5
MC
14390 bp->cnic_kwq_pending);
14391
14392 if (bp->cnic_kwq_prod == bp->cnic_kwq_last)
14393 bp->cnic_kwq_prod = bp->cnic_kwq;
14394 else
14395 bp->cnic_kwq_prod++;
14396 }
14397
14398 spin_unlock_bh(&bp->spq_lock);
14399
14400 if (bp->cnic_spq_pending < bp->cnic_eth_dev.max_kwqe_pending)
14401 bnx2x_cnic_sp_post(bp, 0);
14402
14403 return i;
14404}
14405
14406static int bnx2x_cnic_ctl_send(struct bnx2x *bp, struct cnic_ctl_info *ctl)
14407{
14408 struct cnic_ops *c_ops;
14409 int rc = 0;
14410
14411 mutex_lock(&bp->cnic_mutex);
13707f9e
ED
14412 c_ops = rcu_dereference_protected(bp->cnic_ops,
14413 lockdep_is_held(&bp->cnic_mutex));
993ac7b5
MC
14414 if (c_ops)
14415 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
14416 mutex_unlock(&bp->cnic_mutex);
14417
14418 return rc;
14419}
14420
14421static int bnx2x_cnic_ctl_send_bh(struct bnx2x *bp, struct cnic_ctl_info *ctl)
14422{
14423 struct cnic_ops *c_ops;
14424 int rc = 0;
14425
14426 rcu_read_lock();
14427 c_ops = rcu_dereference(bp->cnic_ops);
14428 if (c_ops)
14429 rc = c_ops->cnic_ctl(bp->cnic_data, ctl);
14430 rcu_read_unlock();
14431
14432 return rc;
14433}
14434
14435/*
14436 * for commands that have no data
14437 */
9f6c9258 14438int bnx2x_cnic_notify(struct bnx2x *bp, int cmd)
993ac7b5
MC
14439{
14440 struct cnic_ctl_info ctl = {0};
14441
14442 ctl.cmd = cmd;
14443
14444 return bnx2x_cnic_ctl_send(bp, &ctl);
14445}
14446
619c5cb6 14447static void bnx2x_cnic_cfc_comp(struct bnx2x *bp, int cid, u8 err)
993ac7b5 14448{
619c5cb6 14449 struct cnic_ctl_info ctl = {0};
993ac7b5
MC
14450
14451 /* first we tell CNIC and only then we count this as a completion */
14452 ctl.cmd = CNIC_CTL_COMPLETION_CMD;
14453 ctl.data.comp.cid = cid;
619c5cb6 14454 ctl.data.comp.error = err;
993ac7b5
MC
14455
14456 bnx2x_cnic_ctl_send_bh(bp, &ctl);
c2bff63f 14457 bnx2x_cnic_sp_post(bp, 0);
993ac7b5
MC
14458}
14459
619c5cb6
VZ
14460/* Called with netif_addr_lock_bh() taken.
14461 * Sets an rx_mode config for an iSCSI ETH client.
14462 * Doesn't block.
14463 * Completion should be checked outside.
14464 */
14465static void bnx2x_set_iscsi_eth_rx_mode(struct bnx2x *bp, bool start)
14466{
14467 unsigned long accept_flags = 0, ramrod_flags = 0;
14468 u8 cl_id = bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
14469 int sched_state = BNX2X_FILTER_ISCSI_ETH_STOP_SCHED;
14470
14471 if (start) {
14472 /* Start accepting on iSCSI L2 ring. Accept all multicasts
14473 * because it's the only way for UIO Queue to accept
14474 * multicasts (in non-promiscuous mode only one Queue per
14475 * function will receive multicast packets (leading in our
14476 * case).
14477 */
14478 __set_bit(BNX2X_ACCEPT_UNICAST, &accept_flags);
14479 __set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &accept_flags);
14480 __set_bit(BNX2X_ACCEPT_BROADCAST, &accept_flags);
14481 __set_bit(BNX2X_ACCEPT_ANY_VLAN, &accept_flags);
14482
14483 /* Clear STOP_PENDING bit if START is requested */
14484 clear_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &bp->sp_state);
14485
14486 sched_state = BNX2X_FILTER_ISCSI_ETH_START_SCHED;
14487 } else
14488 /* Clear START_PENDING bit if STOP is requested */
14489 clear_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &bp->sp_state);
14490
14491 if (test_bit(BNX2X_FILTER_RX_MODE_PENDING, &bp->sp_state))
14492 set_bit(sched_state, &bp->sp_state);
14493 else {
14494 __set_bit(RAMROD_RX, &ramrod_flags);
14495 bnx2x_set_q_rx_mode(bp, cl_id, 0, accept_flags, 0,
14496 ramrod_flags);
14497 }
14498}
14499
993ac7b5
MC
14500static int bnx2x_drv_ctl(struct net_device *dev, struct drv_ctl_info *ctl)
14501{
14502 struct bnx2x *bp = netdev_priv(dev);
14503 int rc = 0;
14504
14505 switch (ctl->cmd) {
14506 case DRV_CTL_CTXTBL_WR_CMD: {
14507 u32 index = ctl->data.io.offset;
14508 dma_addr_t addr = ctl->data.io.dma_addr;
14509
14510 bnx2x_ilt_wr(bp, index, addr);
14511 break;
14512 }
14513
c2bff63f
DK
14514 case DRV_CTL_RET_L5_SPQ_CREDIT_CMD: {
14515 int count = ctl->data.credit.credit_count;
993ac7b5
MC
14516
14517 bnx2x_cnic_sp_post(bp, count);
14518 break;
14519 }
14520
14521 /* rtnl_lock is held. */
14522 case DRV_CTL_START_L2_CMD: {
619c5cb6
VZ
14523 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
14524 unsigned long sp_bits = 0;
14525
14526 /* Configure the iSCSI classification object */
14527 bnx2x_init_mac_obj(bp, &bp->iscsi_l2_mac_obj,
14528 cp->iscsi_l2_client_id,
14529 cp->iscsi_l2_cid, BP_FUNC(bp),
14530 bnx2x_sp(bp, mac_rdata),
14531 bnx2x_sp_mapping(bp, mac_rdata),
14532 BNX2X_FILTER_MAC_PENDING,
14533 &bp->sp_state, BNX2X_OBJ_TYPE_RX,
14534 &bp->macs_pool);
ec6ba945 14535
523224a3 14536 /* Set iSCSI MAC address */
619c5cb6
VZ
14537 rc = bnx2x_set_iscsi_eth_mac_addr(bp);
14538 if (rc)
14539 break;
523224a3
DK
14540
14541 mmiowb();
14542 barrier();
14543
619c5cb6
VZ
14544 /* Start accepting on iSCSI L2 ring */
14545
14546 netif_addr_lock_bh(dev);
14547 bnx2x_set_iscsi_eth_rx_mode(bp, true);
14548 netif_addr_unlock_bh(dev);
14549
14550 /* bits to wait on */
14551 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
14552 __set_bit(BNX2X_FILTER_ISCSI_ETH_START_SCHED, &sp_bits);
14553
14554 if (!bnx2x_wait_sp_comp(bp, sp_bits))
14555 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3 14556
993ac7b5
MC
14557 break;
14558 }
14559
14560 /* rtnl_lock is held. */
14561 case DRV_CTL_STOP_L2_CMD: {
619c5cb6 14562 unsigned long sp_bits = 0;
993ac7b5 14563
523224a3 14564 /* Stop accepting on iSCSI L2 ring */
619c5cb6
VZ
14565 netif_addr_lock_bh(dev);
14566 bnx2x_set_iscsi_eth_rx_mode(bp, false);
14567 netif_addr_unlock_bh(dev);
14568
14569 /* bits to wait on */
14570 __set_bit(BNX2X_FILTER_RX_MODE_PENDING, &sp_bits);
14571 __set_bit(BNX2X_FILTER_ISCSI_ETH_STOP_SCHED, &sp_bits);
14572
14573 if (!bnx2x_wait_sp_comp(bp, sp_bits))
14574 BNX2X_ERR("rx_mode completion timed out!\n");
523224a3
DK
14575
14576 mmiowb();
14577 barrier();
14578
14579 /* Unset iSCSI L2 MAC */
619c5cb6
VZ
14580 rc = bnx2x_del_all_macs(bp, &bp->iscsi_l2_mac_obj,
14581 BNX2X_ISCSI_ETH_MAC, true);
993ac7b5
MC
14582 break;
14583 }
c2bff63f
DK
14584 case DRV_CTL_RET_L2_SPQ_CREDIT_CMD: {
14585 int count = ctl->data.credit.credit_count;
14586
4e857c58 14587 smp_mb__before_atomic();
6e30dd4e 14588 atomic_add(count, &bp->cq_spq_left);
4e857c58 14589 smp_mb__after_atomic();
c2bff63f
DK
14590 break;
14591 }
1d187b34 14592 case DRV_CTL_ULP_REGISTER_CMD: {
2e499d3c 14593 int ulp_type = ctl->data.register_data.ulp_type;
1d187b34
BW
14594
14595 if (CHIP_IS_E3(bp)) {
14596 int idx = BP_FW_MB_IDX(bp);
2e499d3c
BW
14597 u32 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
14598 int path = BP_PATH(bp);
14599 int port = BP_PORT(bp);
14600 int i;
14601 u32 scratch_offset;
14602 u32 *host_addr;
1d187b34 14603
2e499d3c 14604 /* first write capability to shmem2 */
1d187b34
BW
14605 if (ulp_type == CNIC_ULP_ISCSI)
14606 cap |= DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
14607 else if (ulp_type == CNIC_ULP_FCOE)
14608 cap |= DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
14609 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
2e499d3c
BW
14610
14611 if ((ulp_type != CNIC_ULP_FCOE) ||
14612 (!SHMEM2_HAS(bp, ncsi_oem_data_addr)) ||
14613 (!(bp->flags & BC_SUPPORTS_FCOE_FEATURES)))
14614 break;
14615
14616 /* if reached here - should write fcoe capabilities */
14617 scratch_offset = SHMEM2_RD(bp, ncsi_oem_data_addr);
14618 if (!scratch_offset)
14619 break;
14620 scratch_offset += offsetof(struct glob_ncsi_oem_data,
14621 fcoe_features[path][port]);
14622 host_addr = (u32 *) &(ctl->data.register_data.
14623 fcoe_features);
14624 for (i = 0; i < sizeof(struct fcoe_capabilities);
14625 i += 4)
14626 REG_WR(bp, scratch_offset + i,
14627 *(host_addr + i/4));
1d187b34 14628 }
42f8277f 14629 bnx2x_schedule_sp_rtnl(bp, BNX2X_SP_RTNL_GET_DRV_VERSION, 0);
1d187b34
BW
14630 break;
14631 }
2e499d3c 14632
1d187b34
BW
14633 case DRV_CTL_ULP_UNREGISTER_CMD: {
14634 int ulp_type = ctl->data.ulp_type;
14635
14636 if (CHIP_IS_E3(bp)) {
14637 int idx = BP_FW_MB_IDX(bp);
14638 u32 cap;
14639
14640 cap = SHMEM2_RD(bp, drv_capabilities_flag[idx]);
14641 if (ulp_type == CNIC_ULP_ISCSI)
14642 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_ISCSI;
14643 else if (ulp_type == CNIC_ULP_FCOE)
14644 cap &= ~DRV_FLAGS_CAPABILITIES_LOADED_FCOE;
14645 SHMEM2_WR(bp, drv_capabilities_flag[idx], cap);
14646 }
42f8277f 14647 bnx2x_schedule_sp_rtnl(bp, BNX2X_SP_RTNL_GET_DRV_VERSION, 0);
1d187b34
BW
14648 break;
14649 }
993ac7b5
MC
14650
14651 default:
14652 BNX2X_ERR("unknown command %x\n", ctl->cmd);
14653 rc = -EINVAL;
14654 }
14655
97ac4ef7
YM
14656 /* For storage-only interfaces, change driver state */
14657 if (IS_MF_SD_STORAGE_PERSONALITY_ONLY(bp)) {
14658 switch (ctl->drv_state) {
14659 case DRV_NOP:
14660 break;
14661 case DRV_ACTIVE:
14662 bnx2x_set_os_driver_state(bp,
14663 OS_DRIVER_STATE_ACTIVE);
14664 break;
14665 case DRV_INACTIVE:
14666 bnx2x_set_os_driver_state(bp,
14667 OS_DRIVER_STATE_DISABLED);
14668 break;
14669 case DRV_UNLOADED:
14670 bnx2x_set_os_driver_state(bp,
14671 OS_DRIVER_STATE_NOT_LOADED);
14672 break;
14673 default:
14674 BNX2X_ERR("Unknown cnic driver state: %d\n", ctl->drv_state);
14675 }
14676 }
14677
14678 return rc;
14679}
14680
14681static int bnx2x_get_fc_npiv(struct net_device *dev,
14682 struct cnic_fc_npiv_tbl *cnic_tbl)
14683{
14684 struct bnx2x *bp = netdev_priv(dev);
14685 struct bdn_fc_npiv_tbl *tbl = NULL;
14686 u32 offset, entries;
14687 int rc = -EINVAL;
14688 int i;
14689
14690 if (!SHMEM2_HAS(bp, fc_npiv_nvram_tbl_addr[0]))
14691 goto out;
14692
14693 DP(BNX2X_MSG_MCP, "About to read the FC-NPIV table\n");
14694
14695 tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
14696 if (!tbl) {
14697 BNX2X_ERR("Failed to allocate fc_npiv table\n");
14698 goto out;
14699 }
14700
14701 offset = SHMEM2_RD(bp, fc_npiv_nvram_tbl_addr[BP_PORT(bp)]);
14702 DP(BNX2X_MSG_MCP, "Offset of FC-NPIV in NVRAM: %08x\n", offset);
14703
14704 /* Read the table contents from nvram */
14705 if (bnx2x_nvram_read(bp, offset, (u8 *)tbl, sizeof(*tbl))) {
14706 BNX2X_ERR("Failed to read FC-NPIV table\n");
14707 goto out;
14708 }
14709
14710 /* Since bnx2x_nvram_read() returns data in be32, we need to convert
14711 * the number of entries back to cpu endianness.
14712 */
14713 entries = tbl->fc_npiv_cfg.num_of_npiv;
14714 entries = (__force u32)be32_to_cpu((__force __be32)entries);
14715 tbl->fc_npiv_cfg.num_of_npiv = entries;
14716
14717 if (!tbl->fc_npiv_cfg.num_of_npiv) {
14718 DP(BNX2X_MSG_MCP,
14719 "No FC-NPIV table [valid, simply not present]\n");
14720 goto out;
14721 } else if (tbl->fc_npiv_cfg.num_of_npiv > MAX_NUMBER_NPIV) {
14722 BNX2X_ERR("FC-NPIV table with bad length 0x%08x\n",
14723 tbl->fc_npiv_cfg.num_of_npiv);
14724 goto out;
14725 } else {
14726 DP(BNX2X_MSG_MCP, "Read 0x%08x entries from NVRAM\n",
14727 tbl->fc_npiv_cfg.num_of_npiv);
14728 }
14729
14730 /* Copy the data into cnic-provided struct */
14731 cnic_tbl->count = tbl->fc_npiv_cfg.num_of_npiv;
14732 for (i = 0; i < cnic_tbl->count; i++) {
14733 memcpy(cnic_tbl->wwpn[i], tbl->settings[i].npiv_wwpn, 8);
14734 memcpy(cnic_tbl->wwnn[i], tbl->settings[i].npiv_wwnn, 8);
14735 }
14736
14737 rc = 0;
14738out:
14739 kfree(tbl);
993ac7b5
MC
14740 return rc;
14741}
14742
9f6c9258 14743void bnx2x_setup_cnic_irq_info(struct bnx2x *bp)
993ac7b5
MC
14744{
14745 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
14746
14747 if (bp->flags & USING_MSIX_FLAG) {
14748 cp->drv_state |= CNIC_DRV_STATE_USING_MSIX;
14749 cp->irq_arr[0].irq_flags |= CNIC_IRQ_FL_MSIX;
14750 cp->irq_arr[0].vector = bp->msix_table[1].vector;
14751 } else {
14752 cp->drv_state &= ~CNIC_DRV_STATE_USING_MSIX;
14753 cp->irq_arr[0].irq_flags &= ~CNIC_IRQ_FL_MSIX;
14754 }
619c5cb6 14755 if (!CHIP_IS_E1x(bp))
f2e0899f
DK
14756 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e2_sb;
14757 else
14758 cp->irq_arr[0].status_blk = (void *)bp->cnic_sb.e1x_sb;
14759
619c5cb6
VZ
14760 cp->irq_arr[0].status_blk_num = bnx2x_cnic_fw_sb_id(bp);
14761 cp->irq_arr[0].status_blk_num2 = bnx2x_cnic_igu_sb_id(bp);
993ac7b5
MC
14762 cp->irq_arr[1].status_blk = bp->def_status_blk;
14763 cp->irq_arr[1].status_blk_num = DEF_SB_ID;
523224a3 14764 cp->irq_arr[1].status_blk_num2 = DEF_SB_IGU_ID;
993ac7b5
MC
14765
14766 cp->num_irq = 2;
14767}
14768
37ae41a9
MS
14769void bnx2x_setup_cnic_info(struct bnx2x *bp)
14770{
14771 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
14772
37ae41a9
MS
14773 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
14774 bnx2x_cid_ilt_lines(bp);
14775 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
14776 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
14777 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
14778
f78afb35
MC
14779 DP(NETIF_MSG_IFUP, "BNX2X_1st_NON_L2_ETH_CID(bp) %x, cp->starting_cid %x, cp->fcoe_init_cid %x, cp->iscsi_l2_cid %x\n",
14780 BNX2X_1st_NON_L2_ETH_CID(bp), cp->starting_cid, cp->fcoe_init_cid,
14781 cp->iscsi_l2_cid);
14782
37ae41a9
MS
14783 if (NO_ISCSI_OOO(bp))
14784 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
14785}
14786
993ac7b5
MC
14787static int bnx2x_register_cnic(struct net_device *dev, struct cnic_ops *ops,
14788 void *data)
14789{
14790 struct bnx2x *bp = netdev_priv(dev);
14791 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
55c11941
MS
14792 int rc;
14793
14794 DP(NETIF_MSG_IFUP, "Register_cnic called\n");
993ac7b5 14795
51c1a580
MS
14796 if (ops == NULL) {
14797 BNX2X_ERR("NULL ops received\n");
993ac7b5 14798 return -EINVAL;
51c1a580 14799 }
993ac7b5 14800
55c11941
MS
14801 if (!CNIC_SUPPORT(bp)) {
14802 BNX2X_ERR("Can't register CNIC when not supported\n");
14803 return -EOPNOTSUPP;
14804 }
14805
14806 if (!CNIC_LOADED(bp)) {
14807 rc = bnx2x_load_cnic(bp);
14808 if (rc) {
14809 BNX2X_ERR("CNIC-related load failed\n");
14810 return rc;
14811 }
55c11941
MS
14812 }
14813
14814 bp->cnic_enabled = true;
14815
993ac7b5
MC
14816 bp->cnic_kwq = kzalloc(PAGE_SIZE, GFP_KERNEL);
14817 if (!bp->cnic_kwq)
14818 return -ENOMEM;
14819
14820 bp->cnic_kwq_cons = bp->cnic_kwq;
14821 bp->cnic_kwq_prod = bp->cnic_kwq;
14822 bp->cnic_kwq_last = bp->cnic_kwq + MAX_SP_DESC_CNT;
14823
14824 bp->cnic_spq_pending = 0;
14825 bp->cnic_kwq_pending = 0;
14826
14827 bp->cnic_data = data;
14828
14829 cp->num_irq = 0;
619c5cb6 14830 cp->drv_state |= CNIC_DRV_STATE_REGD;
523224a3 14831 cp->iro_arr = bp->iro_arr;
993ac7b5 14832
993ac7b5 14833 bnx2x_setup_cnic_irq_info(bp);
c2bff63f 14834
993ac7b5
MC
14835 rcu_assign_pointer(bp->cnic_ops, ops);
14836
42f8277f
YM
14837 /* Schedule driver to read CNIC driver versions */
14838 bnx2x_schedule_sp_rtnl(bp, BNX2X_SP_RTNL_GET_DRV_VERSION, 0);
14839
993ac7b5
MC
14840 return 0;
14841}
14842
14843static int bnx2x_unregister_cnic(struct net_device *dev)
14844{
14845 struct bnx2x *bp = netdev_priv(dev);
14846 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
14847
14848 mutex_lock(&bp->cnic_mutex);
993ac7b5 14849 cp->drv_state = 0;
2cfa5a04 14850 RCU_INIT_POINTER(bp->cnic_ops, NULL);
993ac7b5
MC
14851 mutex_unlock(&bp->cnic_mutex);
14852 synchronize_rcu();
fea75645 14853 bp->cnic_enabled = false;
993ac7b5
MC
14854 kfree(bp->cnic_kwq);
14855 bp->cnic_kwq = NULL;
14856
14857 return 0;
14858}
14859
a8f47eb7 14860static struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev)
993ac7b5
MC
14861{
14862 struct bnx2x *bp = netdev_priv(dev);
14863 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
14864
2ba45142
VZ
14865 /* If both iSCSI and FCoE are disabled - return NULL in
14866 * order to indicate CNIC that it should not try to work
14867 * with this device.
14868 */
14869 if (NO_ISCSI(bp) && NO_FCOE(bp))
14870 return NULL;
14871
993ac7b5
MC
14872 cp->drv_owner = THIS_MODULE;
14873 cp->chip_id = CHIP_ID(bp);
14874 cp->pdev = bp->pdev;
14875 cp->io_base = bp->regview;
14876 cp->io_base2 = bp->doorbells;
14877 cp->max_kwqe_pending = 8;
523224a3 14878 cp->ctx_blk_size = CDU_ILT_PAGE_SZ;
c2bff63f
DK
14879 cp->ctx_tbl_offset = FUNC_ILT_BASE(BP_FUNC(bp)) +
14880 bnx2x_cid_ilt_lines(bp);
993ac7b5 14881 cp->ctx_tbl_len = CNIC_ILT_LINES;
c2bff63f 14882 cp->starting_cid = bnx2x_cid_ilt_lines(bp) * ILT_PAGE_CIDS;
993ac7b5
MC
14883 cp->drv_submit_kwqes_16 = bnx2x_cnic_sp_queue;
14884 cp->drv_ctl = bnx2x_drv_ctl;
97ac4ef7 14885 cp->drv_get_fc_npiv_tbl = bnx2x_get_fc_npiv;
993ac7b5
MC
14886 cp->drv_register_cnic = bnx2x_register_cnic;
14887 cp->drv_unregister_cnic = bnx2x_unregister_cnic;
37ae41a9 14888 cp->fcoe_init_cid = BNX2X_FCOE_ETH_CID(bp);
619c5cb6
VZ
14889 cp->iscsi_l2_client_id =
14890 bnx2x_cnic_eth_cl_id(bp, BNX2X_ISCSI_ETH_CL_ID_IDX);
37ae41a9 14891 cp->iscsi_l2_cid = BNX2X_ISCSI_ETH_CID(bp);
c2bff63f 14892
2ba45142
VZ
14893 if (NO_ISCSI_OOO(bp))
14894 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI_OOO;
14895
14896 if (NO_ISCSI(bp))
14897 cp->drv_state |= CNIC_DRV_STATE_NO_ISCSI;
14898
14899 if (NO_FCOE(bp))
14900 cp->drv_state |= CNIC_DRV_STATE_NO_FCOE;
14901
51c1a580
MS
14902 BNX2X_DEV_INFO(
14903 "page_size %d, tbl_offset %d, tbl_lines %d, starting cid %d\n",
c2bff63f
DK
14904 cp->ctx_blk_size,
14905 cp->ctx_tbl_offset,
14906 cp->ctx_tbl_len,
14907 cp->starting_cid);
993ac7b5
MC
14908 return cp;
14909}
993ac7b5 14910
a8f47eb7 14911static u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp)
9b176b6b 14912{
6411280a
AE
14913 struct bnx2x *bp = fp->bp;
14914 u32 offset = BAR_USTRORM_INTMEM;
abc5a021 14915
6411280a
AE
14916 if (IS_VF(bp))
14917 return bnx2x_vf_ustorm_prods_offset(bp, fp);
14918 else if (!CHIP_IS_E1x(bp))
14919 offset += USTORM_RX_PRODS_E2_OFFSET(fp->cl_qzone_id);
14920 else
14921 offset += USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp), fp->cl_id);
8d9ac297 14922
6411280a 14923 return offset;
8d9ac297 14924}
381ac16b 14925
6411280a
AE
14926/* called only on E1H or E2.
14927 * When pretending to be PF, the pretend value is the function number 0...7
14928 * When pretending to be VF, the pretend val is the PF-num:VF-valid:ABS-VFID
14929 * combination
14930 */
14931int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val)
381ac16b 14932{
6411280a 14933 u32 pretend_reg;
381ac16b 14934
23826850 14935 if (CHIP_IS_E1H(bp) && pretend_func_val >= E1H_FUNC_MAX)
6411280a 14936 return -1;
381ac16b 14937
6411280a
AE
14938 /* get my own pretend register */
14939 pretend_reg = bnx2x_get_pretend_reg(bp);
14940 REG_WR(bp, pretend_reg, pretend_func_val);
14941 REG_RD(bp, pretend_reg);
381ac16b
AE
14942 return 0;
14943}
eeed018c
MK
14944
14945static void bnx2x_ptp_task(struct work_struct *work)
14946{
14947 struct bnx2x *bp = container_of(work, struct bnx2x, ptp_task);
14948 int port = BP_PORT(bp);
14949 u32 val_seq;
14950 u64 timestamp, ns;
14951 struct skb_shared_hwtstamps shhwtstamps;
14952
14953 /* Read Tx timestamp registers */
14954 val_seq = REG_RD(bp, port ? NIG_REG_P1_TLLH_PTP_BUF_SEQID :
14955 NIG_REG_P0_TLLH_PTP_BUF_SEQID);
14956 if (val_seq & 0x10000) {
14957 /* There is a valid timestamp value */
14958 timestamp = REG_RD(bp, port ? NIG_REG_P1_TLLH_PTP_BUF_TS_MSB :
14959 NIG_REG_P0_TLLH_PTP_BUF_TS_MSB);
14960 timestamp <<= 32;
14961 timestamp |= REG_RD(bp, port ? NIG_REG_P1_TLLH_PTP_BUF_TS_LSB :
14962 NIG_REG_P0_TLLH_PTP_BUF_TS_LSB);
14963 /* Reset timestamp register to allow new timestamp */
14964 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_BUF_SEQID :
14965 NIG_REG_P0_TLLH_PTP_BUF_SEQID, 0x10000);
14966 ns = timecounter_cyc2time(&bp->timecounter, timestamp);
14967
14968 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
14969 shhwtstamps.hwtstamp = ns_to_ktime(ns);
14970 skb_tstamp_tx(bp->ptp_tx_skb, &shhwtstamps);
14971 dev_kfree_skb_any(bp->ptp_tx_skb);
14972 bp->ptp_tx_skb = NULL;
14973
14974 DP(BNX2X_MSG_PTP, "Tx timestamp, timestamp cycles = %llu, ns = %llu\n",
14975 timestamp, ns);
14976 } else {
14977 DP(BNX2X_MSG_PTP, "There is no valid Tx timestamp yet\n");
14978 /* Reschedule to keep checking for a valid timestamp value */
14979 schedule_work(&bp->ptp_task);
14980 }
14981}
14982
14983void bnx2x_set_rx_ts(struct bnx2x *bp, struct sk_buff *skb)
14984{
14985 int port = BP_PORT(bp);
14986 u64 timestamp, ns;
14987
14988 timestamp = REG_RD(bp, port ? NIG_REG_P1_LLH_PTP_HOST_BUF_TS_MSB :
14989 NIG_REG_P0_LLH_PTP_HOST_BUF_TS_MSB);
14990 timestamp <<= 32;
14991 timestamp |= REG_RD(bp, port ? NIG_REG_P1_LLH_PTP_HOST_BUF_TS_LSB :
14992 NIG_REG_P0_LLH_PTP_HOST_BUF_TS_LSB);
14993
14994 /* Reset timestamp register to allow new timestamp */
14995 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_HOST_BUF_SEQID :
14996 NIG_REG_P0_LLH_PTP_HOST_BUF_SEQID, 0x10000);
14997
14998 ns = timecounter_cyc2time(&bp->timecounter, timestamp);
14999
15000 skb_hwtstamps(skb)->hwtstamp = ns_to_ktime(ns);
15001
15002 DP(BNX2X_MSG_PTP, "Rx timestamp, timestamp cycles = %llu, ns = %llu\n",
15003 timestamp, ns);
15004}
15005
15006/* Read the PHC */
15007static cycle_t bnx2x_cyclecounter_read(const struct cyclecounter *cc)
15008{
15009 struct bnx2x *bp = container_of(cc, struct bnx2x, cyclecounter);
15010 int port = BP_PORT(bp);
15011 u32 wb_data[2];
15012 u64 phc_cycles;
15013
15014 REG_RD_DMAE(bp, port ? NIG_REG_TIMESYNC_GEN_REG + tsgen_synctime_t1 :
15015 NIG_REG_TIMESYNC_GEN_REG + tsgen_synctime_t0, wb_data, 2);
15016 phc_cycles = wb_data[1];
15017 phc_cycles = (phc_cycles << 32) + wb_data[0];
15018
15019 DP(BNX2X_MSG_PTP, "PHC read cycles = %llu\n", phc_cycles);
15020
15021 return phc_cycles;
15022}
15023
15024static void bnx2x_init_cyclecounter(struct bnx2x *bp)
15025{
15026 memset(&bp->cyclecounter, 0, sizeof(bp->cyclecounter));
15027 bp->cyclecounter.read = bnx2x_cyclecounter_read;
f28ba401 15028 bp->cyclecounter.mask = CYCLECOUNTER_MASK(64);
eeed018c
MK
15029 bp->cyclecounter.shift = 1;
15030 bp->cyclecounter.mult = 1;
15031}
15032
15033static int bnx2x_send_reset_timesync_ramrod(struct bnx2x *bp)
15034{
15035 struct bnx2x_func_state_params func_params = {NULL};
15036 struct bnx2x_func_set_timesync_params *set_timesync_params =
15037 &func_params.params.set_timesync;
15038
15039 /* Prepare parameters for function state transitions */
15040 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
15041 __set_bit(RAMROD_RETRY, &func_params.ramrod_flags);
15042
15043 func_params.f_obj = &bp->func_obj;
15044 func_params.cmd = BNX2X_F_CMD_SET_TIMESYNC;
15045
15046 /* Function parameters */
15047 set_timesync_params->drift_adjust_cmd = TS_DRIFT_ADJUST_RESET;
15048 set_timesync_params->offset_cmd = TS_OFFSET_KEEP;
15049
15050 return bnx2x_func_state_change(bp, &func_params);
15051}
15052
1444c301 15053static int bnx2x_enable_ptp_packets(struct bnx2x *bp)
eeed018c
MK
15054{
15055 struct bnx2x_queue_state_params q_params;
15056 int rc, i;
15057
15058 /* send queue update ramrod to enable PTP packets */
15059 memset(&q_params, 0, sizeof(q_params));
15060 __set_bit(RAMROD_COMP_WAIT, &q_params.ramrod_flags);
15061 q_params.cmd = BNX2X_Q_CMD_UPDATE;
15062 __set_bit(BNX2X_Q_UPDATE_PTP_PKTS_CHNG,
15063 &q_params.params.update.update_flags);
15064 __set_bit(BNX2X_Q_UPDATE_PTP_PKTS,
15065 &q_params.params.update.update_flags);
15066
15067 /* send the ramrod on all the queues of the PF */
15068 for_each_eth_queue(bp, i) {
15069 struct bnx2x_fastpath *fp = &bp->fp[i];
15070
15071 /* Set the appropriate Queue object */
15072 q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
15073
15074 /* Update the Queue state */
15075 rc = bnx2x_queue_state_change(bp, &q_params);
15076 if (rc) {
15077 BNX2X_ERR("Failed to enable PTP packets\n");
15078 return rc;
15079 }
15080 }
15081
15082 return 0;
15083}
15084
15085int bnx2x_configure_ptp_filters(struct bnx2x *bp)
15086{
15087 int port = BP_PORT(bp);
15088 int rc;
15089
15090 if (!bp->hwtstamp_ioctl_called)
15091 return 0;
15092
15093 switch (bp->tx_type) {
15094 case HWTSTAMP_TX_ON:
15095 bp->flags |= TX_TIMESTAMPING_EN;
15096 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_PARAM_MASK :
15097 NIG_REG_P0_TLLH_PTP_PARAM_MASK, 0x6AA);
15098 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_RULE_MASK :
15099 NIG_REG_P0_TLLH_PTP_RULE_MASK, 0x3EEE);
15100 break;
15101 case HWTSTAMP_TX_ONESTEP_SYNC:
15102 BNX2X_ERR("One-step timestamping is not supported\n");
15103 return -ERANGE;
15104 }
15105
15106 switch (bp->rx_filter) {
15107 case HWTSTAMP_FILTER_NONE:
15108 break;
15109 case HWTSTAMP_FILTER_ALL:
15110 case HWTSTAMP_FILTER_SOME:
15111 bp->rx_filter = HWTSTAMP_FILTER_NONE;
15112 break;
15113 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
15114 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
15115 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
15116 bp->rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
15117 /* Initialize PTP detection for UDP/IPv4 events */
15118 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
15119 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x7EE);
15120 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
15121 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3FFE);
15122 break;
15123 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
15124 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
15125 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
15126 bp->rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
15127 /* Initialize PTP detection for UDP/IPv4 or UDP/IPv6 events */
15128 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
15129 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x7EA);
15130 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
15131 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3FEE);
15132 break;
15133 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
15134 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
15135 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
15136 bp->rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
15137 /* Initialize PTP detection L2 events */
15138 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
15139 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x6BF);
15140 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
15141 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3EFF);
15142
15143 break;
15144 case HWTSTAMP_FILTER_PTP_V2_EVENT:
15145 case HWTSTAMP_FILTER_PTP_V2_SYNC:
15146 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
15147 bp->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
15148 /* Initialize PTP detection L2, UDP/IPv4 or UDP/IPv6 events */
15149 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
15150 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x6AA);
15151 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
15152 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3EEE);
15153 break;
15154 }
15155
15156 /* Indicate to FW that this PF expects recorded PTP packets */
15157 rc = bnx2x_enable_ptp_packets(bp);
15158 if (rc)
15159 return rc;
15160
15161 /* Enable sending PTP packets to host */
15162 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_TO_HOST :
15163 NIG_REG_P0_LLH_PTP_TO_HOST, 0x1);
15164
15165 return 0;
15166}
15167
15168static int bnx2x_hwtstamp_ioctl(struct bnx2x *bp, struct ifreq *ifr)
15169{
15170 struct hwtstamp_config config;
15171 int rc;
15172
15173 DP(BNX2X_MSG_PTP, "HWTSTAMP IOCTL called\n");
15174
15175 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
15176 return -EFAULT;
15177
15178 DP(BNX2X_MSG_PTP, "Requested tx_type: %d, requested rx_filters = %d\n",
15179 config.tx_type, config.rx_filter);
15180
15181 if (config.flags) {
15182 BNX2X_ERR("config.flags is reserved for future use\n");
15183 return -EINVAL;
15184 }
15185
15186 bp->hwtstamp_ioctl_called = 1;
15187 bp->tx_type = config.tx_type;
15188 bp->rx_filter = config.rx_filter;
15189
15190 rc = bnx2x_configure_ptp_filters(bp);
15191 if (rc)
15192 return rc;
15193
15194 config.rx_filter = bp->rx_filter;
15195
15196 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
15197 -EFAULT : 0;
15198}
15199
bf27c353 15200/* Configures HW for PTP */
eeed018c
MK
15201static int bnx2x_configure_ptp(struct bnx2x *bp)
15202{
15203 int rc, port = BP_PORT(bp);
15204 u32 wb_data[2];
15205
15206 /* Reset PTP event detection rules - will be configured in the IOCTL */
15207 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_PARAM_MASK :
15208 NIG_REG_P0_LLH_PTP_PARAM_MASK, 0x7FF);
15209 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_RULE_MASK :
15210 NIG_REG_P0_LLH_PTP_RULE_MASK, 0x3FFF);
15211 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_PARAM_MASK :
15212 NIG_REG_P0_TLLH_PTP_PARAM_MASK, 0x7FF);
15213 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_RULE_MASK :
15214 NIG_REG_P0_TLLH_PTP_RULE_MASK, 0x3FFF);
15215
15216 /* Disable PTP packets to host - will be configured in the IOCTL*/
15217 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_TO_HOST :
15218 NIG_REG_P0_LLH_PTP_TO_HOST, 0x0);
15219
15220 /* Enable the PTP feature */
15221 REG_WR(bp, port ? NIG_REG_P1_PTP_EN :
15222 NIG_REG_P0_PTP_EN, 0x3F);
15223
15224 /* Enable the free-running counter */
15225 wb_data[0] = 0;
15226 wb_data[1] = 0;
15227 REG_WR_DMAE(bp, NIG_REG_TIMESYNC_GEN_REG + tsgen_ctrl, wb_data, 2);
15228
15229 /* Reset drift register (offset register is not reset) */
15230 rc = bnx2x_send_reset_timesync_ramrod(bp);
15231 if (rc) {
15232 BNX2X_ERR("Failed to reset PHC drift register\n");
15233 return -EFAULT;
15234 }
15235
15236 /* Reset possibly old timestamps */
15237 REG_WR(bp, port ? NIG_REG_P1_LLH_PTP_HOST_BUF_SEQID :
15238 NIG_REG_P0_LLH_PTP_HOST_BUF_SEQID, 0x10000);
15239 REG_WR(bp, port ? NIG_REG_P1_TLLH_PTP_BUF_SEQID :
15240 NIG_REG_P0_TLLH_PTP_BUF_SEQID, 0x10000);
15241
15242 return 0;
15243}
15244
15245/* Called during load, to initialize PTP-related stuff */
15246void bnx2x_init_ptp(struct bnx2x *bp)
15247{
15248 int rc;
15249
15250 /* Configure PTP in HW */
15251 rc = bnx2x_configure_ptp(bp);
15252 if (rc) {
15253 BNX2X_ERR("Stopping PTP initialization\n");
15254 return;
15255 }
15256
15257 /* Init work queue for Tx timestamping */
15258 INIT_WORK(&bp->ptp_task, bnx2x_ptp_task);
15259
15260 /* Init cyclecounter and timecounter. This is done only in the first
15261 * load. If done in every load, PTP application will fail when doing
15262 * unload / load (e.g. MTU change) while it is running.
15263 */
15264 if (!bp->timecounter_init_done) {
15265 bnx2x_init_cyclecounter(bp);
15266 timecounter_init(&bp->timecounter, &bp->cyclecounter,
15267 ktime_to_ns(ktime_get_real()));
15268 bp->timecounter_init_done = 1;
15269 }
15270
15271 DP(BNX2X_MSG_PTP, "PTP initialization ended successfully\n");
15272}