bnx2x: Support PF <-> VF Bulletin Board
[deliverable/linux.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x.h
CommitLineData
a2fbb9ea
ET
1/* bnx2x.h: Broadcom Everest network driver.
2 *
85b26ea1 3 * Copyright (c) 2007-2012 Broadcom Corporation
a2fbb9ea
ET
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *
24e3fcef
EG
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
a2fbb9ea
ET
11 * Based on code from Michael Chan's bnx2 driver
12 */
13
14#ifndef BNX2X_H
15#define BNX2X_H
290ca2bb
AE
16
17#include <linux/pci.h>
ec6ba945 18#include <linux/netdevice.h>
b7f080cf 19#include <linux/dma-mapping.h>
ec6ba945 20#include <linux/types.h>
290ca2bb 21#include <linux/pci_regs.h>
a2fbb9ea 22
34f80b04
EG
23/* compilation time flags */
24
25/* define this to make the driver freeze on error to allow getting debug info
26 * (you will need to reboot afterwards) */
27/* #define BNX2X_STOP_ON_ERROR */
28
515e1240
YM
29#define DRV_MODULE_VERSION "1.78.00-0"
30#define DRV_MODULE_RELDATE "2012/09/27"
de0c62db
DK
31#define BNX2X_BC_VER 0x040200
32
785b9b1a 33#if defined(CONFIG_DCB)
98507672 34#define BCM_DCBNL
785b9b1a 35#endif
b475d78f
YM
36
37
38#include "bnx2x_hsi.h"
39
5d1e859c 40#include "../cnic_if.h"
0c6671b0 41
55c11941
MS
42
43#define BNX2X_MIN_MSIX_VEC_CNT(bp) ((bp)->min_msix_vec_cnt)
01cd4528
EG
44
45#include <linux/mdio.h>
619c5cb6 46
359d8b15
EG
47#include "bnx2x_reg.h"
48#include "bnx2x_fw_defs.h"
2e499d3c 49#include "bnx2x_mfw_req.h"
359d8b15 50#include "bnx2x_link.h"
619c5cb6 51#include "bnx2x_sp.h"
e4901dde 52#include "bnx2x_dcb.h"
6c719d00 53#include "bnx2x_stats.h"
be1f1ffa 54#include "bnx2x_vfpf.h"
359d8b15 55
1ab4434c
AE
56enum bnx2x_int_mode {
57 BNX2X_INT_MODE_MSIX,
58 BNX2X_INT_MODE_INTX,
59 BNX2X_INT_MODE_MSI
60};
61
a2fbb9ea
ET
62/* error/debug prints */
63
34f80b04 64#define DRV_MODULE_NAME "bnx2x"
a2fbb9ea
ET
65
66/* for messages that are currently off */
51c1a580
MS
67#define BNX2X_MSG_OFF 0x0
68#define BNX2X_MSG_MCP 0x0010000 /* was: NETIF_MSG_HW */
69#define BNX2X_MSG_STATS 0x0020000 /* was: NETIF_MSG_TIMER */
70#define BNX2X_MSG_NVM 0x0040000 /* was: NETIF_MSG_HW */
71#define BNX2X_MSG_DMAE 0x0080000 /* was: NETIF_MSG_HW */
72#define BNX2X_MSG_SP 0x0100000 /* was: NETIF_MSG_INTR */
73#define BNX2X_MSG_FP 0x0200000 /* was: NETIF_MSG_INTR */
74#define BNX2X_MSG_IOV 0x0800000
75#define BNX2X_MSG_IDLE 0x2000000 /* used for idle check*/
76#define BNX2X_MSG_ETHTOOL 0x4000000
77#define BNX2X_MSG_DCB 0x8000000
a2fbb9ea 78
a2fbb9ea 79/* regular debug print */
f1deab50 80#define DP(__mask, fmt, ...) \
7995c64e 81do { \
51c1a580 82 if (unlikely(bp->msg_enable & (__mask))) \
f1deab50
JP
83 pr_notice("[%s:%d(%s)]" fmt, \
84 __func__, __LINE__, \
85 bp->dev ? (bp->dev->name) : "?", \
86 ##__VA_ARGS__); \
7995c64e 87} while (0)
a2fbb9ea 88
f1deab50 89#define DP_CONT(__mask, fmt, ...) \
619c5cb6 90do { \
51c1a580 91 if (unlikely(bp->msg_enable & (__mask))) \
f1deab50 92 pr_cont(fmt, ##__VA_ARGS__); \
619c5cb6
VZ
93} while (0)
94
34f80b04 95/* errors debug print */
f1deab50 96#define BNX2X_DBG_ERR(fmt, ...) \
7995c64e 97do { \
51c1a580 98 if (unlikely(netif_msg_probe(bp))) \
f1deab50 99 pr_err("[%s:%d(%s)]" fmt, \
7995c64e
JP
100 __func__, __LINE__, \
101 bp->dev ? (bp->dev->name) : "?", \
f1deab50 102 ##__VA_ARGS__); \
7995c64e 103} while (0)
a2fbb9ea 104
34f80b04 105/* for errors (never masked) */
f1deab50 106#define BNX2X_ERR(fmt, ...) \
7995c64e 107do { \
f1deab50 108 pr_err("[%s:%d(%s)]" fmt, \
7995c64e
JP
109 __func__, __LINE__, \
110 bp->dev ? (bp->dev->name) : "?", \
f1deab50
JP
111 ##__VA_ARGS__); \
112} while (0)
cdaa7cb8 113
f1deab50
JP
114#define BNX2X_ERROR(fmt, ...) \
115 pr_err("[%s:%d]" fmt, __func__, __LINE__, ##__VA_ARGS__)
cdaa7cb8 116
f1410647 117
a2fbb9ea 118/* before we have a dev->name use dev_info() */
f1deab50 119#define BNX2X_DEV_INFO(fmt, ...) \
7995c64e 120do { \
51c1a580 121 if (unlikely(netif_msg_probe(bp))) \
f1deab50 122 dev_info(&bp->pdev->dev, fmt, ##__VA_ARGS__); \
7995c64e 123} while (0)
a2fbb9ea 124
a2fbb9ea 125#ifdef BNX2X_STOP_ON_ERROR
6383c0b3 126void bnx2x_int_disable(struct bnx2x *bp);
f1deab50
JP
127#define bnx2x_panic() \
128do { \
129 bp->panic = 1; \
130 BNX2X_ERR("driver assert\n"); \
131 bnx2x_int_disable(bp); \
132 bnx2x_panic_dump(bp); \
133} while (0)
a2fbb9ea 134#else
f1deab50
JP
135#define bnx2x_panic() \
136do { \
137 bp->panic = 1; \
138 BNX2X_ERR("driver assert\n"); \
139 bnx2x_panic_dump(bp); \
140} while (0)
a2fbb9ea
ET
141#endif
142
523224a3 143#define bnx2x_mc_addr(ha) ((ha)->addr)
6e30dd4e 144#define bnx2x_uc_addr(ha) ((ha)->addr)
a2fbb9ea 145
34f80b04
EG
146#define U64_LO(x) (u32)(((u64)(x)) & 0xffffffff)
147#define U64_HI(x) (u32)(((u64)(x)) >> 32)
148#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
a2fbb9ea 149
a2fbb9ea 150
523224a3 151#define REG_ADDR(bp, offset) ((bp->regview) + (offset))
a2fbb9ea 152
34f80b04
EG
153#define REG_RD(bp, offset) readl(REG_ADDR(bp, offset))
154#define REG_RD8(bp, offset) readb(REG_ADDR(bp, offset))
523224a3 155#define REG_RD16(bp, offset) readw(REG_ADDR(bp, offset))
34f80b04
EG
156
157#define REG_WR(bp, offset, val) writel((u32)val, REG_ADDR(bp, offset))
a2fbb9ea 158#define REG_WR8(bp, offset, val) writeb((u8)val, REG_ADDR(bp, offset))
34f80b04 159#define REG_WR16(bp, offset, val) writew((u16)val, REG_ADDR(bp, offset))
a2fbb9ea 160
34f80b04
EG
161#define REG_RD_IND(bp, offset) bnx2x_reg_rd_ind(bp, offset)
162#define REG_WR_IND(bp, offset, val) bnx2x_reg_wr_ind(bp, offset, val)
a2fbb9ea 163
c18487ee
YR
164#define REG_RD_DMAE(bp, offset, valp, len32) \
165 do { \
166 bnx2x_read_dmae(bp, offset, len32);\
573f2035 167 memcpy(valp, bnx2x_sp(bp, wb_data[0]), (len32) * 4); \
c18487ee
YR
168 } while (0)
169
34f80b04 170#define REG_WR_DMAE(bp, offset, valp, len32) \
a2fbb9ea 171 do { \
573f2035 172 memcpy(bnx2x_sp(bp, wb_data[0]), valp, (len32) * 4); \
a2fbb9ea
ET
173 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
174 offset, len32); \
175 } while (0)
176
523224a3
DK
177#define REG_WR_DMAE_LEN(bp, offset, valp, len32) \
178 REG_WR_DMAE(bp, offset, valp, len32)
179
3359fced 180#define VIRT_WR_DMAE_LEN(bp, data, addr, len32, le32_swap) \
573f2035
EG
181 do { \
182 memcpy(GUNZIP_BUF(bp), data, (len32) * 4); \
183 bnx2x_write_big_buf_wb(bp, addr, len32); \
184 } while (0)
185
34f80b04
EG
186#define SHMEM_ADDR(bp, field) (bp->common.shmem_base + \
187 offsetof(struct shmem_region, field))
188#define SHMEM_RD(bp, field) REG_RD(bp, SHMEM_ADDR(bp, field))
189#define SHMEM_WR(bp, field, val) REG_WR(bp, SHMEM_ADDR(bp, field), val)
a2fbb9ea 190
2691d51d
EG
191#define SHMEM2_ADDR(bp, field) (bp->common.shmem2_base + \
192 offsetof(struct shmem2_region, field))
193#define SHMEM2_RD(bp, field) REG_RD(bp, SHMEM2_ADDR(bp, field))
194#define SHMEM2_WR(bp, field, val) REG_WR(bp, SHMEM2_ADDR(bp, field), val)
523224a3
DK
195#define MF_CFG_ADDR(bp, field) (bp->common.mf_cfg_base + \
196 offsetof(struct mf_cfg, field))
f85582f8 197#define MF2_CFG_ADDR(bp, field) (bp->common.mf2_cfg_base + \
f2e0899f 198 offsetof(struct mf2_cfg, field))
2691d51d 199
523224a3
DK
200#define MF_CFG_RD(bp, field) REG_RD(bp, MF_CFG_ADDR(bp, field))
201#define MF_CFG_WR(bp, field, val) REG_WR(bp,\
202 MF_CFG_ADDR(bp, field), (val))
f2e0899f 203#define MF2_CFG_RD(bp, field) REG_RD(bp, MF2_CFG_ADDR(bp, field))
f85582f8 204
f2e0899f
DK
205#define SHMEM2_HAS(bp, field) ((bp)->common.shmem2_base && \
206 (SHMEM2_RD((bp), size) > \
207 offsetof(struct shmem2_region, field)))
72fd0718 208
345b5d52 209#define EMAC_RD(bp, reg) REG_RD(bp, emac_base + reg)
3196a88a 210#define EMAC_WR(bp, reg, val) REG_WR(bp, emac_base + reg, val)
a2fbb9ea 211
523224a3
DK
212/* SP SB indices */
213
214/* General SP events - stats query, cfc delete, etc */
215#define HC_SP_INDEX_ETH_DEF_CONS 3
216
217/* EQ completions */
218#define HC_SP_INDEX_EQ_CONS 7
219
ec6ba945
VZ
220/* FCoE L2 connection completions */
221#define HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS 6
222#define HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS 4
523224a3
DK
223/* iSCSI L2 */
224#define HC_SP_INDEX_ETH_ISCSI_CQ_CONS 5
225#define HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS 1
226
ec6ba945
VZ
227/* Special clients parameters */
228
229/* SB indices */
230/* FCoE L2 */
231#define BNX2X_FCOE_L2_RX_INDEX \
232 (&bp->def_status_blk->sp_sb.\
233 index_values[HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS])
234
235#define BNX2X_FCOE_L2_TX_INDEX \
236 (&bp->def_status_blk->sp_sb.\
237 index_values[HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS])
238
523224a3
DK
239/**
240 * CIDs and CLIDs:
241 * CLIDs below is a CLID for func 0, then the CLID for other
242 * functions will be calculated by the formula:
243 *
244 * FUNC_N_CLID_X = N * NUM_SPECIAL_CLIENTS + FUNC_0_CLID_X
245 *
246 */
134d0f97
DK
247enum {
248 BNX2X_ISCSI_ETH_CL_ID_IDX,
249 BNX2X_FCOE_ETH_CL_ID_IDX,
250 BNX2X_MAX_CNIC_ETH_CL_ID_IDX,
251};
252
37ae41a9
MS
253#define BNX2X_CNIC_START_ETH_CID(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) *\
254 (bp)->max_cos)
134d0f97 255 /* iSCSI L2 */
37ae41a9 256#define BNX2X_ISCSI_ETH_CID(bp) (BNX2X_CNIC_START_ETH_CID(bp))
134d0f97 257 /* FCoE L2 */
37ae41a9 258#define BNX2X_FCOE_ETH_CID(bp) (BNX2X_CNIC_START_ETH_CID(bp) + 1)
ec6ba945 259
55c11941
MS
260#define CNIC_SUPPORT(bp) ((bp)->cnic_support)
261#define CNIC_ENABLED(bp) ((bp)->cnic_enabled)
262#define CNIC_LOADED(bp) ((bp)->cnic_loaded)
263#define FCOE_INIT(bp) ((bp)->fcoe_init)
523224a3 264
72fd0718
VZ
265#define AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR \
266 AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR
267
523224a3
DK
268#define SM_RX_ID 0
269#define SM_TX_ID 1
a2fbb9ea 270
6383c0b3
AE
271/* defines for multiple tx priority indices */
272#define FIRST_TX_ONLY_COS_INDEX 1
273#define FIRST_TX_COS_INDEX 0
274
6383c0b3 275/* rules for calculating the cids of tx-only connections */
65565884
MS
276#define CID_TO_FP(cid, bp) ((cid) % BNX2X_NUM_NON_CNIC_QUEUES(bp))
277#define CID_COS_TO_TX_ONLY_CID(cid, cos, bp) \
278 (cid + cos * BNX2X_NUM_NON_CNIC_QUEUES(bp))
6383c0b3
AE
279
280/* fp index inside class of service range */
65565884
MS
281#define FP_COS_TO_TXQ(fp, cos, bp) \
282 ((fp)->index + cos * BNX2X_NUM_NON_CNIC_QUEUES(bp))
283
284/* Indexes for transmission queues array:
285 * txdata for RSS i CoS j is at location i + (j * num of RSS)
286 * txdata for FCoE (if exist) is at location max cos * num of RSS
287 * txdata for FWD (if exist) is one location after FCoE
288 * txdata for OOO (if exist) is one location after FWD
6383c0b3 289 */
65565884
MS
290enum {
291 FCOE_TXQ_IDX_OFFSET,
292 FWD_TXQ_IDX_OFFSET,
293 OOO_TXQ_IDX_OFFSET,
294};
295#define MAX_ETH_TXQ_IDX(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) * (bp)->max_cos)
65565884 296#define FCOE_TXQ_IDX(bp) (MAX_ETH_TXQ_IDX(bp) + FCOE_TXQ_IDX_OFFSET)
a2fbb9ea 297
6383c0b3 298/* fast path */
e52fcb24
ED
299/*
300 * This driver uses new build_skb() API :
301 * RX ring buffer contains pointer to kmalloc() data only,
302 * skb are built only after Hardware filled the frame.
303 */
a2fbb9ea 304struct sw_rx_bd {
e52fcb24 305 u8 *data;
1a983142 306 DEFINE_DMA_UNMAP_ADDR(mapping);
a2fbb9ea
ET
307};
308
309struct sw_tx_bd {
34f80b04
EG
310 struct sk_buff *skb;
311 u16 first_bd;
ca00392c
EG
312 u8 flags;
313/* Set on the first BD descriptor when there is a split BD */
314#define BNX2X_TSO_SPLIT_BD (1<<0)
a2fbb9ea
ET
315};
316
7a9b2557
VZ
317struct sw_rx_page {
318 struct page *page;
1a983142 319 DEFINE_DMA_UNMAP_ADDR(mapping);
7a9b2557
VZ
320};
321
ca00392c
EG
322union db_prod {
323 struct doorbell_set_prod data;
324 u32 raw;
325};
326
dfacf138
DK
327/* dropless fc FW/HW related params */
328#define BRB_SIZE(bp) (CHIP_IS_E3(bp) ? 1024 : 512)
329#define MAX_AGG_QS(bp) (CHIP_IS_E1(bp) ? \
330 ETH_MAX_AGGREGATION_QUEUES_E1 :\
331 ETH_MAX_AGGREGATION_QUEUES_E1H_E2)
332#define FW_DROP_LEVEL(bp) (3 + MAX_SPQ_PENDING + MAX_AGG_QS(bp))
333#define FW_PREFETCH_CNT 16
334#define DROPLESS_FC_HEADROOM 100
7a9b2557
VZ
335
336/* MC hsi */
619c5cb6
VZ
337#define BCM_PAGE_SHIFT 12
338#define BCM_PAGE_SIZE (1 << BCM_PAGE_SHIFT)
339#define BCM_PAGE_MASK (~(BCM_PAGE_SIZE - 1))
7a9b2557
VZ
340#define BCM_PAGE_ALIGN(addr) (((addr) + BCM_PAGE_SIZE - 1) & BCM_PAGE_MASK)
341
619c5cb6
VZ
342#define PAGES_PER_SGE_SHIFT 0
343#define PAGES_PER_SGE (1 << PAGES_PER_SGE_SHIFT)
344#define SGE_PAGE_SIZE PAGE_SIZE
345#define SGE_PAGE_SHIFT PAGE_SHIFT
346#define SGE_PAGE_ALIGN(addr) PAGE_ALIGN((typeof(PAGE_SIZE))(addr))
8d9ac297
AE
347#define SGE_PAGES (SGE_PAGE_SIZE * PAGES_PER_SGE)
348#define TPA_AGG_SIZE min_t(u32, (min_t(u32, 8, MAX_SKB_FRAGS) * \
349 SGE_PAGES), 0xffff)
7a9b2557
VZ
350
351/* SGE ring related macros */
619c5cb6 352#define NUM_RX_SGE_PAGES 2
7a9b2557 353#define RX_SGE_CNT (BCM_PAGE_SIZE / sizeof(struct eth_rx_sge))
dfacf138
DK
354#define NEXT_PAGE_SGE_DESC_CNT 2
355#define MAX_RX_SGE_CNT (RX_SGE_CNT - NEXT_PAGE_SGE_DESC_CNT)
33471629 356/* RX_SGE_CNT is promised to be a power of 2 */
619c5cb6
VZ
357#define RX_SGE_MASK (RX_SGE_CNT - 1)
358#define NUM_RX_SGE (RX_SGE_CNT * NUM_RX_SGE_PAGES)
359#define MAX_RX_SGE (NUM_RX_SGE - 1)
7a9b2557 360#define NEXT_SGE_IDX(x) ((((x) & RX_SGE_MASK) == \
dfacf138
DK
361 (MAX_RX_SGE_CNT - 1)) ? \
362 (x) + 1 + NEXT_PAGE_SGE_DESC_CNT : \
363 (x) + 1)
619c5cb6
VZ
364#define RX_SGE(x) ((x) & MAX_RX_SGE)
365
dfacf138
DK
366/*
367 * Number of required SGEs is the sum of two:
368 * 1. Number of possible opened aggregations (next packet for
369 * these aggregations will probably consume SGE immidiatelly)
370 * 2. Rest of BRB blocks divided by 2 (block will consume new SGE only
371 * after placement on BD for new TPA aggregation)
372 *
373 * Takes into account NEXT_PAGE_SGE_DESC_CNT "next" elements on each page
374 */
375#define NUM_SGE_REQ (MAX_AGG_QS(bp) + \
376 (BRB_SIZE(bp) - MAX_AGG_QS(bp)) / 2)
377#define NUM_SGE_PG_REQ ((NUM_SGE_REQ + MAX_RX_SGE_CNT - 1) / \
378 MAX_RX_SGE_CNT)
379#define SGE_TH_LO(bp) (NUM_SGE_REQ + \
380 NUM_SGE_PG_REQ * NEXT_PAGE_SGE_DESC_CNT)
381#define SGE_TH_HI(bp) (SGE_TH_LO(bp) + DROPLESS_FC_HEADROOM)
382
619c5cb6 383/* Manipulate a bit vector defined as an array of u64 */
7a9b2557 384
7a9b2557 385/* Number of bits in one sge_mask array element */
619c5cb6
VZ
386#define BIT_VEC64_ELEM_SZ 64
387#define BIT_VEC64_ELEM_SHIFT 6
388#define BIT_VEC64_ELEM_MASK ((u64)BIT_VEC64_ELEM_SZ - 1)
389
390
391#define __BIT_VEC64_SET_BIT(el, bit) \
392 do { \
393 el = ((el) | ((u64)0x1 << (bit))); \
394 } while (0)
395
396#define __BIT_VEC64_CLEAR_BIT(el, bit) \
397 do { \
398 el = ((el) & (~((u64)0x1 << (bit)))); \
399 } while (0)
400
401
402#define BIT_VEC64_SET_BIT(vec64, idx) \
403 __BIT_VEC64_SET_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
404 (idx) & BIT_VEC64_ELEM_MASK)
405
406#define BIT_VEC64_CLEAR_BIT(vec64, idx) \
407 __BIT_VEC64_CLEAR_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
408 (idx) & BIT_VEC64_ELEM_MASK)
409
410#define BIT_VEC64_TEST_BIT(vec64, idx) \
411 (((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT] >> \
412 ((idx) & BIT_VEC64_ELEM_MASK)) & 0x1)
7a9b2557
VZ
413
414/* Creates a bitmask of all ones in less significant bits.
415 idx - index of the most significant bit in the created mask */
619c5cb6
VZ
416#define BIT_VEC64_ONES_MASK(idx) \
417 (((u64)0x1 << (((idx) & BIT_VEC64_ELEM_MASK) + 1)) - 1)
418#define BIT_VEC64_ELEM_ONE_MASK ((u64)(~0))
419
420/*******************************************************/
421
422
7a9b2557
VZ
423
424/* Number of u64 elements in SGE mask array */
b3637827 425#define RX_SGE_MASK_LEN (NUM_RX_SGE / BIT_VEC64_ELEM_SZ)
7a9b2557
VZ
426#define RX_SGE_MASK_LEN_MASK (RX_SGE_MASK_LEN - 1)
427#define NEXT_SGE_MASK_ELEM(el) (((el) + 1) & RX_SGE_MASK_LEN_MASK)
428
523224a3
DK
429union host_hc_status_block {
430 /* pointer to fp status block e1x */
431 struct host_hc_status_block_e1x *e1x_sb;
f2e0899f
DK
432 /* pointer to fp status block e2 */
433 struct host_hc_status_block_e2 *e2_sb;
523224a3 434};
7a9b2557 435
619c5cb6
VZ
436struct bnx2x_agg_info {
437 /*
e52fcb24
ED
438 * First aggregation buffer is a data buffer, the following - are pages.
439 * We will preallocate the data buffer for each aggregation when
619c5cb6
VZ
440 * we open the interface and will replace the BD at the consumer
441 * with this one when we receive the TPA_START CQE in order to
442 * keep the Rx BD ring consistent.
443 */
444 struct sw_rx_bd first_buf;
445 u8 tpa_state;
446#define BNX2X_TPA_START 1
447#define BNX2X_TPA_STOP 2
448#define BNX2X_TPA_ERROR 3
449 u8 placement_offset;
450 u16 parsing_flags;
451 u16 vlan_tag;
452 u16 len_on_bd;
e52fcb24 453 u32 rxhash;
a334b5fb 454 bool l4_rxhash;
621b4d66
DK
455 u16 gro_size;
456 u16 full_page;
619c5cb6
VZ
457};
458
459#define Q_STATS_OFFSET32(stat_name) \
460 (offsetof(struct bnx2x_eth_q_stats, stat_name) / 4)
461
6383c0b3
AE
462struct bnx2x_fp_txdata {
463
464 struct sw_tx_bd *tx_buf_ring;
465
466 union eth_tx_bd_types *tx_desc_ring;
467 dma_addr_t tx_desc_mapping;
468
469 u32 cid;
470
471 union db_prod tx_db;
472
473 u16 tx_pkt_prod;
474 u16 tx_pkt_cons;
475 u16 tx_bd_prod;
476 u16 tx_bd_cons;
477
478 unsigned long tx_pkt;
479
480 __le16 *tx_cons_sb;
481
482 int txq_index;
65565884
MS
483 struct bnx2x_fastpath *parent_fp;
484 int tx_ring_size;
6383c0b3
AE
485};
486
621b4d66
DK
487enum bnx2x_tpa_mode_t {
488 TPA_MODE_LRO,
489 TPA_MODE_GRO
490};
491
a2fbb9ea 492struct bnx2x_fastpath {
619c5cb6 493 struct bnx2x *bp; /* parent */
a2fbb9ea 494
d6214d7a 495#define BNX2X_NAPI_WEIGHT 128
34f80b04 496 struct napi_struct napi;
f85582f8 497 union host_hc_status_block status_blk;
523224a3
DK
498 /* chip independed shortcuts into sb structure */
499 __le16 *sb_index_values;
500 __le16 *sb_running_index;
501 /* chip independed shortcut into rx_prods_offset memory */
502 u32 ustorm_rx_prods_offset;
503
a8c94b91 504 u32 rx_buf_size;
d46d132c 505 u32 rx_frag_size; /* 0 if kmalloced(), or rx_buf_size + NET_SKB_PAD */
34f80b04 506 dma_addr_t status_blk_mapping;
a2fbb9ea 507
621b4d66
DK
508 enum bnx2x_tpa_mode_t mode;
509
6383c0b3 510 u8 max_cos; /* actual number of active tx coses */
65565884 511 struct bnx2x_fp_txdata *txdata_ptr[BNX2X_MULTI_TX_COS];
a2fbb9ea 512
7a9b2557
VZ
513 struct sw_rx_bd *rx_buf_ring; /* BDs mappings ring */
514 struct sw_rx_page *rx_page_ring; /* SGE pages mappings ring */
a2fbb9ea
ET
515
516 struct eth_rx_bd *rx_desc_ring;
34f80b04 517 dma_addr_t rx_desc_mapping;
a2fbb9ea
ET
518
519 union eth_rx_cqe *rx_comp_ring;
34f80b04
EG
520 dma_addr_t rx_comp_mapping;
521
7a9b2557
VZ
522 /* SGE ring */
523 struct eth_rx_sge *rx_sge_ring;
524 dma_addr_t rx_sge_mapping;
525
526 u64 sge_mask[RX_SGE_MASK_LEN];
527
619c5cb6 528 u32 cid;
34f80b04 529
6383c0b3
AE
530 __le16 fp_hc_idx;
531
f85582f8 532 u8 index; /* number in fp array */
f233cafe 533 u8 rx_queue; /* index for skb_record */
f85582f8 534 u8 cl_id; /* eth client id */
523224a3
DK
535 u8 cl_qzone_id;
536 u8 fw_sb_id; /* status block number in FW */
537 u8 igu_sb_id; /* status block number in HW */
34f80b04
EG
538
539 u16 rx_bd_prod;
540 u16 rx_bd_cons;
541 u16 rx_comp_prod;
542 u16 rx_comp_cons;
7a9b2557
VZ
543 u16 rx_sge_prod;
544 /* The last maximal completed SGE */
545 u16 last_max_sge;
4781bfad 546 __le16 *rx_cons_sb;
6383c0b3 547 unsigned long rx_pkt,
66e855f3 548 rx_calls;
ab6ad5a4 549
7a9b2557 550 /* TPA related */
15192a8c 551 struct bnx2x_agg_info *tpa_info;
7a9b2557
VZ
552 u8 disable_tpa;
553#ifdef BNX2X_STOP_ON_ERROR
554 u64 tpa_queue_used;
555#endif
ca00392c
EG
556 /* The size is calculated using the following:
557 sizeof name field from netdev structure +
558 4 ('-Xx-' string) +
559 4 (for the digits and to make it DWORD aligned) */
560#define FP_NAME_SIZE (sizeof(((struct net_device *)0)->name) + 8)
561 char name[FP_NAME_SIZE];
a2fbb9ea
ET
562};
563
15192a8c
BW
564#define bnx2x_fp(bp, nr, var) ((bp)->fp[(nr)].var)
565#define bnx2x_sp_obj(bp, fp) ((bp)->sp_objs[(fp)->index])
566#define bnx2x_fp_stats(bp, fp) (&((bp)->fp_stats[(fp)->index]))
567#define bnx2x_fp_qstats(bp, fp) (&((bp)->fp_stats[(fp)->index].eth_q_stats))
a8c94b91
VZ
568
569/* Use 2500 as a mini-jumbo MTU for FCoE */
570#define BNX2X_FCOE_MINI_JUMBO_MTU 2500
571
65565884
MS
572#define FCOE_IDX_OFFSET 0
573
574#define FCOE_IDX(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) + \
575 FCOE_IDX_OFFSET)
576#define bnx2x_fcoe_fp(bp) (&bp->fp[FCOE_IDX(bp)])
577#define bnx2x_fcoe(bp, var) (bnx2x_fcoe_fp(bp)->var)
15192a8c
BW
578#define bnx2x_fcoe_inner_sp_obj(bp) (&bp->sp_objs[FCOE_IDX(bp)])
579#define bnx2x_fcoe_sp_obj(bp, var) (bnx2x_fcoe_inner_sp_obj(bp)->var)
65565884
MS
580#define bnx2x_fcoe_tx(bp, var) (bnx2x_fcoe_fp(bp)-> \
581 txdata_ptr[FIRST_TX_COS_INDEX] \
582 ->var)
619c5cb6
VZ
583
584
55c11941
MS
585#define IS_ETH_FP(fp) ((fp)->index < BNX2X_NUM_ETH_QUEUES((fp)->bp))
586#define IS_FCOE_FP(fp) ((fp)->index == FCOE_IDX((fp)->bp))
587#define IS_FCOE_IDX(idx) ((idx) == FCOE_IDX(bp))
7a9b2557
VZ
588
589
590/* MC hsi */
619c5cb6
VZ
591#define MAX_FETCH_BD 13 /* HW max BDs per packet */
592#define RX_COPY_THRESH 92
7a9b2557 593
619c5cb6 594#define NUM_TX_RINGS 16
ca00392c 595#define TX_DESC_CNT (BCM_PAGE_SIZE / sizeof(union eth_tx_bd_types))
dfacf138
DK
596#define NEXT_PAGE_TX_DESC_CNT 1
597#define MAX_TX_DESC_CNT (TX_DESC_CNT - NEXT_PAGE_TX_DESC_CNT)
619c5cb6
VZ
598#define NUM_TX_BD (TX_DESC_CNT * NUM_TX_RINGS)
599#define MAX_TX_BD (NUM_TX_BD - 1)
600#define MAX_TX_AVAIL (MAX_TX_DESC_CNT * NUM_TX_RINGS - 2)
7a9b2557 601#define NEXT_TX_IDX(x) ((((x) & MAX_TX_DESC_CNT) == \
dfacf138
DK
602 (MAX_TX_DESC_CNT - 1)) ? \
603 (x) + 1 + NEXT_PAGE_TX_DESC_CNT : \
604 (x) + 1)
619c5cb6
VZ
605#define TX_BD(x) ((x) & MAX_TX_BD)
606#define TX_BD_POFF(x) ((x) & MAX_TX_DESC_CNT)
7a9b2557 607
7df2dc6b
DK
608/* number of NEXT_PAGE descriptors may be required during placement */
609#define NEXT_CNT_PER_TX_PKT(bds) \
610 (((bds) + MAX_TX_DESC_CNT - 1) / \
611 MAX_TX_DESC_CNT * NEXT_PAGE_TX_DESC_CNT)
612/* max BDs per tx packet w/o next_pages:
613 * START_BD - describes packed
614 * START_BD(splitted) - includes unpaged data segment for GSO
615 * PARSING_BD - for TSO and CSUM data
616 * Frag BDs - decribes pages for frags
617 */
618#define BDS_PER_TX_PKT 3
619#define MAX_BDS_PER_TX_PKT (MAX_SKB_FRAGS + BDS_PER_TX_PKT)
620/* max BDs per tx packet including next pages */
621#define MAX_DESC_PER_TX_PKT (MAX_BDS_PER_TX_PKT + \
622 NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))
623
7a9b2557 624/* The RX BD ring is special, each bd is 8 bytes but the last one is 16 */
619c5cb6 625#define NUM_RX_RINGS 8
7a9b2557 626#define RX_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_rx_bd))
dfacf138
DK
627#define NEXT_PAGE_RX_DESC_CNT 2
628#define MAX_RX_DESC_CNT (RX_DESC_CNT - NEXT_PAGE_RX_DESC_CNT)
619c5cb6
VZ
629#define RX_DESC_MASK (RX_DESC_CNT - 1)
630#define NUM_RX_BD (RX_DESC_CNT * NUM_RX_RINGS)
631#define MAX_RX_BD (NUM_RX_BD - 1)
632#define MAX_RX_AVAIL (MAX_RX_DESC_CNT * NUM_RX_RINGS - 2)
dfacf138
DK
633
634/* dropless fc calculations for BDs
635 *
636 * Number of BDs should as number of buffers in BRB:
637 * Low threshold takes into account NEXT_PAGE_RX_DESC_CNT
638 * "next" elements on each page
639 */
640#define NUM_BD_REQ BRB_SIZE(bp)
641#define NUM_BD_PG_REQ ((NUM_BD_REQ + MAX_RX_DESC_CNT - 1) / \
642 MAX_RX_DESC_CNT)
643#define BD_TH_LO(bp) (NUM_BD_REQ + \
644 NUM_BD_PG_REQ * NEXT_PAGE_RX_DESC_CNT + \
645 FW_DROP_LEVEL(bp))
646#define BD_TH_HI(bp) (BD_TH_LO(bp) + DROPLESS_FC_HEADROOM)
647
648#define MIN_RX_AVAIL ((bp)->dropless_fc ? BD_TH_HI(bp) + 128 : 128)
619c5cb6
VZ
649
650#define MIN_RX_SIZE_TPA_HW (CHIP_IS_E1(bp) ? \
651 ETH_MIN_RX_CQES_WITH_TPA_E1 : \
652 ETH_MIN_RX_CQES_WITH_TPA_E1H_E2)
653#define MIN_RX_SIZE_NONTPA_HW ETH_MIN_RX_CQES_WITHOUT_TPA
654#define MIN_RX_SIZE_TPA (max_t(u32, MIN_RX_SIZE_TPA_HW, MIN_RX_AVAIL))
655#define MIN_RX_SIZE_NONTPA (max_t(u32, MIN_RX_SIZE_NONTPA_HW,\
656 MIN_RX_AVAIL))
657
7a9b2557 658#define NEXT_RX_IDX(x) ((((x) & RX_DESC_MASK) == \
dfacf138
DK
659 (MAX_RX_DESC_CNT - 1)) ? \
660 (x) + 1 + NEXT_PAGE_RX_DESC_CNT : \
661 (x) + 1)
619c5cb6 662#define RX_BD(x) ((x) & MAX_RX_BD)
7a9b2557 663
619c5cb6
VZ
664/*
665 * As long as CQE is X times bigger than BD entry we have to allocate X times
666 * more pages for CQ ring in order to keep it balanced with BD ring
667 */
668#define CQE_BD_REL (sizeof(union eth_rx_cqe) / sizeof(struct eth_rx_bd))
669#define NUM_RCQ_RINGS (NUM_RX_RINGS * CQE_BD_REL)
7a9b2557 670#define RCQ_DESC_CNT (BCM_PAGE_SIZE / sizeof(union eth_rx_cqe))
dfacf138
DK
671#define NEXT_PAGE_RCQ_DESC_CNT 1
672#define MAX_RCQ_DESC_CNT (RCQ_DESC_CNT - NEXT_PAGE_RCQ_DESC_CNT)
619c5cb6
VZ
673#define NUM_RCQ_BD (RCQ_DESC_CNT * NUM_RCQ_RINGS)
674#define MAX_RCQ_BD (NUM_RCQ_BD - 1)
675#define MAX_RCQ_AVAIL (MAX_RCQ_DESC_CNT * NUM_RCQ_RINGS - 2)
7a9b2557 676#define NEXT_RCQ_IDX(x) ((((x) & MAX_RCQ_DESC_CNT) == \
dfacf138
DK
677 (MAX_RCQ_DESC_CNT - 1)) ? \
678 (x) + 1 + NEXT_PAGE_RCQ_DESC_CNT : \
679 (x) + 1)
619c5cb6 680#define RCQ_BD(x) ((x) & MAX_RCQ_BD)
7a9b2557 681
dfacf138
DK
682/* dropless fc calculations for RCQs
683 *
684 * Number of RCQs should be as number of buffers in BRB:
685 * Low threshold takes into account NEXT_PAGE_RCQ_DESC_CNT
686 * "next" elements on each page
687 */
688#define NUM_RCQ_REQ BRB_SIZE(bp)
689#define NUM_RCQ_PG_REQ ((NUM_BD_REQ + MAX_RCQ_DESC_CNT - 1) / \
690 MAX_RCQ_DESC_CNT)
691#define RCQ_TH_LO(bp) (NUM_RCQ_REQ + \
692 NUM_RCQ_PG_REQ * NEXT_PAGE_RCQ_DESC_CNT + \
693 FW_DROP_LEVEL(bp))
694#define RCQ_TH_HI(bp) (RCQ_TH_LO(bp) + DROPLESS_FC_HEADROOM)
695
7a9b2557 696
33471629 697/* This is needed for determining of last_max */
619c5cb6
VZ
698#define SUB_S16(a, b) (s16)((s16)(a) - (s16)(b))
699#define SUB_S32(a, b) (s32)((s32)(a) - (s32)(b))
7a9b2557 700
7a9b2557 701
619c5cb6
VZ
702#define BNX2X_SWCID_SHIFT 17
703#define BNX2X_SWCID_MASK ((0x1 << BNX2X_SWCID_SHIFT) - 1)
7a9b2557
VZ
704
705/* used on a CID received from the HW */
619c5cb6 706#define SW_CID(x) (le32_to_cpu(x) & BNX2X_SWCID_MASK)
7a9b2557
VZ
707#define CQE_CMD(x) (le32_to_cpu(x) >> \
708 COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT)
709
bb2a0f7a
YG
710#define BD_UNMAP_ADDR(bd) HILO_U64(le32_to_cpu((bd)->addr_hi), \
711 le32_to_cpu((bd)->addr_lo))
712#define BD_UNMAP_LEN(bd) (le16_to_cpu((bd)->nbytes))
713
523224a3
DK
714#define BNX2X_DB_MIN_SHIFT 3 /* 8 bytes */
715#define BNX2X_DB_SHIFT 7 /* 128 bytes*/
619c5cb6
VZ
716#if (BNX2X_DB_SHIFT < BNX2X_DB_MIN_SHIFT)
717#error "Min DB doorbell stride is 8"
718#endif
7a9b2557
VZ
719#define DPM_TRIGER_TYPE 0x40
720#define DOORBELL(bp, cid, val) \
721 do { \
523224a3 722 writel((u32)(val), bp->doorbells + (bp->db_size * (cid)) + \
7a9b2557
VZ
723 DPM_TRIGER_TYPE); \
724 } while (0)
725
726
727/* TX CSUM helpers */
728#define SKB_CS_OFF(skb) (offsetof(struct tcphdr, check) - \
729 skb->csum_offset)
730#define SKB_CS(skb) (*(u16 *)(skb_transport_header(skb) + \
731 skb->csum_offset))
732
733#define pbd_tcp_flags(skb) (ntohl(tcp_flag_word(tcp_hdr(skb)))>>16 & 0xff)
734
735#define XMIT_PLAIN 0
736#define XMIT_CSUM_V4 0x1
737#define XMIT_CSUM_V6 0x2
738#define XMIT_CSUM_TCP 0x4
739#define XMIT_GSO_V4 0x8
740#define XMIT_GSO_V6 0x10
741
742#define XMIT_CSUM (XMIT_CSUM_V4 | XMIT_CSUM_V6)
743#define XMIT_GSO (XMIT_GSO_V4 | XMIT_GSO_V6)
744
745
34f80b04 746/* stuff added to make the code fit 80Col */
619c5cb6
VZ
747#define CQE_TYPE(cqe_fp_flags) ((cqe_fp_flags) & ETH_FAST_PATH_RX_CQE_TYPE)
748#define CQE_TYPE_START(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_START_AGG)
749#define CQE_TYPE_STOP(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_STOP_AGG)
750#define CQE_TYPE_SLOW(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_RAMROD)
751#define CQE_TYPE_FAST(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_FASTPATH)
7a9b2557 752
1adcd8be
EG
753#define ETH_RX_ERROR_FALGS ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG
754
052a38e0
EG
755#define BNX2X_PRS_FLAG_OVERETH_IPV4(flags) \
756 (((le16_to_cpu(flags) & \
757 PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) >> \
758 PARSING_FLAGS_OVER_ETHERNET_PROTOCOL_SHIFT) \
759 == PRS_FLAG_OVERETH_IPV4)
7a9b2557 760#define BNX2X_RX_SUM_FIX(cqe) \
052a38e0 761 BNX2X_PRS_FLAG_OVERETH_IPV4(cqe->fast_path_cqe.pars_flags.flags)
7a9b2557 762
619c5cb6
VZ
763
764#define FP_USB_FUNC_OFF \
765 offsetof(struct cstorm_status_block_u, func)
766#define FP_CSB_FUNC_OFF \
767 offsetof(struct cstorm_status_block_c, func)
768
150966ad 769#define HC_INDEX_ETH_RX_CQ_CONS 1
619c5cb6 770
150966ad 771#define HC_INDEX_OOO_TX_CQ_CONS 4
6383c0b3 772
150966ad
AE
773#define HC_INDEX_ETH_TX_CQ_CONS_COS0 5
774
775#define HC_INDEX_ETH_TX_CQ_CONS_COS1 6
6383c0b3 776
150966ad
AE
777#define HC_INDEX_ETH_TX_CQ_CONS_COS2 7
778
779#define HC_INDEX_ETH_FIRST_TX_CQ_CONS HC_INDEX_ETH_TX_CQ_CONS_COS0
a2fbb9ea 780
34f80b04 781#define BNX2X_RX_SB_INDEX \
619c5cb6 782 (&fp->sb_index_values[HC_INDEX_ETH_RX_CQ_CONS])
a2fbb9ea 783
6383c0b3
AE
784#define BNX2X_TX_SB_INDEX_BASE BNX2X_TX_SB_INDEX_COS0
785
786#define BNX2X_TX_SB_INDEX_COS0 \
787 (&fp->sb_index_values[HC_INDEX_ETH_TX_CQ_CONS_COS0])
7a9b2557
VZ
788
789/* end of fast path */
790
34f80b04 791/* common */
a2fbb9ea 792
34f80b04 793struct bnx2x_common {
a2fbb9ea 794
ad8d3948 795 u32 chip_id;
a2fbb9ea 796/* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
34f80b04 797#define CHIP_ID(bp) (bp->common.chip_id & 0xfffffff0)
ad8d3948 798
34f80b04 799#define CHIP_NUM(bp) (bp->common.chip_id >> 16)
ad8d3948
EG
800#define CHIP_NUM_57710 0x164e
801#define CHIP_NUM_57711 0x164f
802#define CHIP_NUM_57711E 0x1650
f2e0899f 803#define CHIP_NUM_57712 0x1662
619c5cb6
VZ
804#define CHIP_NUM_57712_MF 0x1663
805#define CHIP_NUM_57713 0x1651
806#define CHIP_NUM_57713E 0x1652
807#define CHIP_NUM_57800 0x168a
808#define CHIP_NUM_57800_MF 0x16a5
809#define CHIP_NUM_57810 0x168e
810#define CHIP_NUM_57810_MF 0x16ae
7e8e02df
BW
811#define CHIP_NUM_57811 0x163d
812#define CHIP_NUM_57811_MF 0x163e
c3def943
YM
813#define CHIP_NUM_57840_OBSOLETE 0x168d
814#define CHIP_NUM_57840_MF_OBSOLETE 0x16ab
815#define CHIP_NUM_57840_4_10 0x16a1
816#define CHIP_NUM_57840_2_20 0x16a2
817#define CHIP_NUM_57840_MF 0x16a4
ad8d3948
EG
818#define CHIP_IS_E1(bp) (CHIP_NUM(bp) == CHIP_NUM_57710)
819#define CHIP_IS_57711(bp) (CHIP_NUM(bp) == CHIP_NUM_57711)
820#define CHIP_IS_57711E(bp) (CHIP_NUM(bp) == CHIP_NUM_57711E)
f2e0899f 821#define CHIP_IS_57712(bp) (CHIP_NUM(bp) == CHIP_NUM_57712)
619c5cb6
VZ
822#define CHIP_IS_57712_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57712_MF)
823#define CHIP_IS_57800(bp) (CHIP_NUM(bp) == CHIP_NUM_57800)
824#define CHIP_IS_57800_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57800_MF)
825#define CHIP_IS_57810(bp) (CHIP_NUM(bp) == CHIP_NUM_57810)
826#define CHIP_IS_57810_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57810_MF)
7e8e02df
BW
827#define CHIP_IS_57811(bp) (CHIP_NUM(bp) == CHIP_NUM_57811)
828#define CHIP_IS_57811_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57811_MF)
c3def943
YM
829#define CHIP_IS_57840(bp) \
830 ((CHIP_NUM(bp) == CHIP_NUM_57840_4_10) || \
831 (CHIP_NUM(bp) == CHIP_NUM_57840_2_20) || \
832 (CHIP_NUM(bp) == CHIP_NUM_57840_OBSOLETE))
833#define CHIP_IS_57840_MF(bp) ((CHIP_NUM(bp) == CHIP_NUM_57840_MF) || \
834 (CHIP_NUM(bp) == CHIP_NUM_57840_MF_OBSOLETE))
ad8d3948
EG
835#define CHIP_IS_E1H(bp) (CHIP_IS_57711(bp) || \
836 CHIP_IS_57711E(bp))
f2e0899f 837#define CHIP_IS_E2(bp) (CHIP_IS_57712(bp) || \
619c5cb6
VZ
838 CHIP_IS_57712_MF(bp))
839#define CHIP_IS_E3(bp) (CHIP_IS_57800(bp) || \
840 CHIP_IS_57800_MF(bp) || \
841 CHIP_IS_57810(bp) || \
842 CHIP_IS_57810_MF(bp) || \
7e8e02df
BW
843 CHIP_IS_57811(bp) || \
844 CHIP_IS_57811_MF(bp) || \
619c5cb6
VZ
845 CHIP_IS_57840(bp) || \
846 CHIP_IS_57840_MF(bp))
f2e0899f 847#define CHIP_IS_E1x(bp) (CHIP_IS_E1((bp)) || CHIP_IS_E1H((bp)))
619c5cb6
VZ
848#define USES_WARPCORE(bp) (CHIP_IS_E3(bp))
849#define IS_E1H_OFFSET (!CHIP_IS_E1(bp))
850
851#define CHIP_REV_SHIFT 12
852#define CHIP_REV_MASK (0xF << CHIP_REV_SHIFT)
853#define CHIP_REV_VAL(bp) (bp->common.chip_id & CHIP_REV_MASK)
854#define CHIP_REV_Ax (0x0 << CHIP_REV_SHIFT)
855#define CHIP_REV_Bx (0x1 << CHIP_REV_SHIFT)
ad8d3948 856/* assume maximum 5 revisions */
619c5cb6 857#define CHIP_REV_IS_SLOW(bp) (CHIP_REV_VAL(bp) > 0x00005000)
ad8d3948
EG
858/* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
859#define CHIP_REV_IS_EMUL(bp) ((CHIP_REV_IS_SLOW(bp)) && \
619c5cb6 860 !(CHIP_REV_VAL(bp) & 0x00001000))
ad8d3948
EG
861/* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
862#define CHIP_REV_IS_FPGA(bp) ((CHIP_REV_IS_SLOW(bp)) && \
619c5cb6 863 (CHIP_REV_VAL(bp) & 0x00001000))
ad8d3948
EG
864
865#define CHIP_TIME(bp) ((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
866 ((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))
867
34f80b04
EG
868#define CHIP_METAL(bp) (bp->common.chip_id & 0x00000ff0)
869#define CHIP_BOND_ID(bp) (bp->common.chip_id & 0x0000000f)
619c5cb6
VZ
870#define CHIP_REV_SIM(bp) (((CHIP_REV_MASK - CHIP_REV_VAL(bp)) >>\
871 (CHIP_REV_SHIFT + 1)) \
872 << CHIP_REV_SHIFT)
873#define CHIP_REV(bp) (CHIP_REV_IS_SLOW(bp) ? \
874 CHIP_REV_SIM(bp) :\
875 CHIP_REV_VAL(bp))
876#define CHIP_IS_E3B0(bp) (CHIP_IS_E3(bp) && \
877 (CHIP_REV(bp) == CHIP_REV_Bx))
878#define CHIP_IS_E3A0(bp) (CHIP_IS_E3(bp) && \
879 (CHIP_REV(bp) == CHIP_REV_Ax))
55c11941
MS
880/* This define is used in two main places:
881 * 1. In the early stages of nic_load, to know if to configrue Parser / Searcher
882 * to nic-only mode or to offload mode. Offload mode is configured if either the
883 * chip is E1x (where MIC_MODE register is not applicable), or if cnic already
884 * registered for this port (which means that the user wants storage services).
885 * 2. During cnic-related load, to know if offload mode is already configured in
886 * the HW or needs to be configrued.
887 * Since the transition from nic-mode to offload-mode in HW causes traffic
888 * coruption, nic-mode is configured only in ports on which storage services
889 * where never requested.
890 */
891#define CONFIGURE_NIC_MODE(bp) (!CHIP_IS_E1x(bp) && !CNIC_ENABLED(bp))
a2fbb9ea 892
34f80b04 893 int flash_size;
754a2f52
DK
894#define BNX2X_NVRAM_1MB_SIZE 0x20000 /* 1M bit in bytes */
895#define BNX2X_NVRAM_TIMEOUT_COUNT 30000
896#define BNX2X_NVRAM_PAGE_SIZE 256
a2fbb9ea 897
34f80b04 898 u32 shmem_base;
2691d51d 899 u32 shmem2_base;
523224a3 900 u32 mf_cfg_base;
f2e0899f 901 u32 mf2_cfg_base;
34f80b04
EG
902
903 u32 hw_config;
c18487ee 904
34f80b04 905 u32 bc_ver;
523224a3
DK
906
907 u8 int_block;
908#define INT_BLOCK_HC 0
f2e0899f
DK
909#define INT_BLOCK_IGU 1
910#define INT_BLOCK_MODE_NORMAL 0
911#define INT_BLOCK_MODE_BW_COMP 2
912#define CHIP_INT_MODE_IS_NBC(bp) \
619c5cb6 913 (!CHIP_IS_E1x(bp) && \
f2e0899f
DK
914 !((bp)->common.int_block & INT_BLOCK_MODE_BW_COMP))
915#define CHIP_INT_MODE_IS_BC(bp) (!CHIP_INT_MODE_IS_NBC(bp))
916
523224a3 917 u8 chip_port_mode;
f2e0899f
DK
918#define CHIP_4_PORT_MODE 0x0
919#define CHIP_2_PORT_MODE 0x1
523224a3 920#define CHIP_PORT_MODE_NONE 0x2
f2e0899f
DK
921#define CHIP_MODE(bp) (bp->common.chip_port_mode)
922#define CHIP_MODE_IS_4_PORT(bp) (CHIP_MODE(bp) == CHIP_4_PORT_MODE)
1d187b34
BW
923
924 u32 boot_mode;
34f80b04 925};
c18487ee 926
f2e0899f
DK
927/* IGU MSIX STATISTICS on 57712: 64 for VFs; 4 for PFs; 4 for Attentions */
928#define BNX2X_IGU_STAS_MSG_VF_CNT 64
929#define BNX2X_IGU_STAS_MSG_PF_CNT 4
34f80b04 930
27c1151c 931#define MAX_IGU_ATTN_ACK_TO 100
34f80b04
EG
932/* end of common */
933
934/* port */
935
936struct bnx2x_port {
937 u32 pmf;
c18487ee 938
a22f0788 939 u32 link_config[LINK_CONFIG_SIZE];
a2fbb9ea 940
a22f0788 941 u32 supported[LINK_CONFIG_SIZE];
34f80b04
EG
942/* link settings - missing defines */
943#define SUPPORTED_2500baseX_Full (1 << 15)
944
a22f0788 945 u32 advertising[LINK_CONFIG_SIZE];
a2fbb9ea 946/* link settings - missing defines */
34f80b04 947#define ADVERTISED_2500baseX_Full (1 << 15)
a2fbb9ea 948
34f80b04 949 u32 phy_addr;
c18487ee
YR
950
951 /* used to synchronize phy accesses */
952 struct mutex phy_mutex;
953
34f80b04 954 u32 port_stx;
a2fbb9ea 955
34f80b04
EG
956 struct nig_stats old_nig_stats;
957};
a2fbb9ea 958
34f80b04
EG
959/* end of port */
960
619c5cb6
VZ
961#define STATS_OFFSET32(stat_name) \
962 (offsetof(struct bnx2x_eth_stats, stat_name) / 4)
bb2a0f7a 963
619c5cb6
VZ
964/* slow path */
965
966/* slow path work-queue */
967extern struct workqueue_struct *bnx2x_wq;
968
969#define BNX2X_MAX_NUM_OF_VFS 64
1ab4434c
AE
970#define BNX2X_VF_CID_WND 0
971#define BNX2X_CIDS_PER_VF (1 << BNX2X_VF_CID_WND)
8db573ba 972#define BNX2X_CLIENTS_PER_VF 1
290ca2bb 973#define BNX2X_FIRST_VF_CID 256
1ab4434c 974#define BNX2X_VF_CIDS (BNX2X_MAX_NUM_OF_VFS * BNX2X_CIDS_PER_VF)
523224a3 975#define BNX2X_VF_ID_INVALID 0xFF
34f80b04 976
523224a3
DK
977/*
978 * The total number of L2 queues, MSIX vectors and HW contexts (CIDs) is
979 * control by the number of fast-path status blocks supported by the
980 * device (HW/FW). Each fast-path status block (FP-SB) aka non-default
981 * status block represents an independent interrupts context that can
982 * serve a regular L2 networking queue. However special L2 queues such
983 * as the FCoE queue do not require a FP-SB and other components like
984 * the CNIC may consume FP-SB reducing the number of possible L2 queues
985 *
986 * If the maximum number of FP-SB available is X then:
987 * a. If CNIC is supported it consumes 1 FP-SB thus the max number of
988 * regular L2 queues is Y=X-1
989 * b. in MF mode the actual number of L2 queues is Y= (X-1/MF_factor)
990 * c. If the FCoE L2 queue is supported the actual number of L2 queues
991 * is Y+1
992 * d. The number of irqs (MSIX vectors) is either Y+1 (one extra for
993 * slow-path interrupts) or Y+2 if CNIC is supported (one additional
994 * FP interrupt context for the CNIC).
995 * e. The number of HW context (CID count) is always X or X+1 if FCoE
996 * L2 queue is supported. the cid for the FCoE L2 queue is always X.
997 */
998
619c5cb6
VZ
999/* fast-path interrupt contexts E1x */
1000#define FP_SB_MAX_E1x 16
1001/* fast-path interrupt contexts E2 */
1002#define FP_SB_MAX_E2 HC_SB_MAX_SB_E2
523224a3 1003
34f80b04
EG
1004union cdu_context {
1005 struct eth_context eth;
1006 char pad[1024];
1007};
1008
523224a3 1009/* CDU host DB constants */
a052997e
MS
1010#define CDU_ILT_PAGE_SZ_HW 2
1011#define CDU_ILT_PAGE_SZ (8192 << CDU_ILT_PAGE_SZ_HW) /* 32K */
523224a3
DK
1012#define ILT_PAGE_CIDS (CDU_ILT_PAGE_SZ / sizeof(union cdu_context))
1013
523224a3 1014#define CNIC_ISCSI_CID_MAX 256
ec6ba945
VZ
1015#define CNIC_FCOE_CID_MAX 2048
1016#define CNIC_CID_MAX (CNIC_ISCSI_CID_MAX + CNIC_FCOE_CID_MAX)
523224a3 1017#define CNIC_ILT_LINES DIV_ROUND_UP(CNIC_CID_MAX, ILT_PAGE_CIDS)
523224a3 1018
619c5cb6
VZ
1019#define QM_ILT_PAGE_SZ_HW 0
1020#define QM_ILT_PAGE_SZ (4096 << QM_ILT_PAGE_SZ_HW) /* 4K */
523224a3
DK
1021#define QM_CID_ROUND 1024
1022
523224a3 1023/* TM (timers) host DB constants */
619c5cb6
VZ
1024#define TM_ILT_PAGE_SZ_HW 0
1025#define TM_ILT_PAGE_SZ (4096 << TM_ILT_PAGE_SZ_HW) /* 4K */
523224a3
DK
1026/* #define TM_CONN_NUM (CNIC_STARTING_CID+CNIC_ISCSI_CXT_MAX) */
1027#define TM_CONN_NUM 1024
1028#define TM_ILT_SZ (8 * TM_CONN_NUM)
1029#define TM_ILT_LINES DIV_ROUND_UP(TM_ILT_SZ, TM_ILT_PAGE_SZ)
1030
1031/* SRC (Searcher) host DB constants */
619c5cb6
VZ
1032#define SRC_ILT_PAGE_SZ_HW 0
1033#define SRC_ILT_PAGE_SZ (4096 << SRC_ILT_PAGE_SZ_HW) /* 4K */
523224a3
DK
1034#define SRC_HASH_BITS 10
1035#define SRC_CONN_NUM (1 << SRC_HASH_BITS) /* 1024 */
1036#define SRC_ILT_SZ (sizeof(struct src_ent) * SRC_CONN_NUM)
1037#define SRC_T2_SZ SRC_ILT_SZ
1038#define SRC_ILT_LINES DIV_ROUND_UP(SRC_ILT_SZ, SRC_ILT_PAGE_SZ)
619c5cb6 1039
619c5cb6 1040#define MAX_DMAE_C 8
34f80b04
EG
1041
1042/* DMA memory not used in fastpath */
1043struct bnx2x_slowpath {
619c5cb6
VZ
1044 union {
1045 struct mac_configuration_cmd e1x;
1046 struct eth_classify_rules_ramrod_data e2;
1047 } mac_rdata;
1048
1049
1050 union {
1051 struct tstorm_eth_mac_filter_config e1x;
1052 struct eth_filter_rules_ramrod_data e2;
1053 } rx_mode_rdata;
1054
1055 union {
1056 struct mac_configuration_cmd e1;
1057 struct eth_multicast_rules_ramrod_data e2;
1058 } mcast_rdata;
1059
1060 struct eth_rss_update_ramrod_data rss_rdata;
1061
1062 /* Queue State related ramrods are always sent under rtnl_lock */
1063 union {
1064 struct client_init_ramrod_data init_data;
1065 struct client_update_ramrod_data update_data;
1066 } q_rdata;
1067
1068 union {
1069 struct function_start_data func_start;
6debea87
DK
1070 /* pfc configuration for DCBX ramrod */
1071 struct flow_control_configuration pfc_config;
619c5cb6 1072 } func_rdata;
34f80b04 1073
a3348722
BW
1074 /* afex ramrod can not be a part of func_rdata union because these
1075 * events might arrive in parallel to other events from func_rdata.
1076 * Therefore, if they would have been defined in the same union,
1077 * data can get corrupted.
1078 */
1079 struct afex_vif_list_ramrod_data func_afex_rdata;
1080
34f80b04
EG
1081 /* used by dmae command executer */
1082 struct dmae_command dmae[MAX_DMAE_C];
1083
bb2a0f7a
YG
1084 u32 stats_comp;
1085 union mac_stats mac_stats;
1086 struct nig_stats nig_stats;
1087 struct host_port_stats port_stats;
1088 struct host_func_stats func_stats;
34f80b04
EG
1089
1090 u32 wb_comp;
34f80b04 1091 u32 wb_data[4];
1d187b34
BW
1092
1093 union drv_info_to_mcp drv_info_to_mcp;
34f80b04
EG
1094};
1095
1096#define bnx2x_sp(bp, var) (&bp->slowpath->var)
1097#define bnx2x_sp_mapping(bp, var) \
1098 (bp->slowpath_mapping + offsetof(struct bnx2x_slowpath, var))
1099
1100
1101/* attn group wiring */
1102#define MAX_DYNAMIC_ATTN_GRPS 8
1103
1104struct attn_route {
619c5cb6 1105 u32 sig[5];
34f80b04
EG
1106};
1107
523224a3
DK
1108struct iro {
1109 u32 base;
1110 u16 m1;
1111 u16 m2;
1112 u16 m3;
1113 u16 size;
1114};
1115
1116struct hw_context {
1117 union cdu_context *vcxt;
1118 dma_addr_t cxt_mapping;
1119 size_t size;
1120};
1121
1122/* forward */
1123struct bnx2x_ilt;
1124
290ca2bb 1125struct bnx2x_vfdb;
c9ee9206
VZ
1126
1127enum bnx2x_recovery_state {
72fd0718
VZ
1128 BNX2X_RECOVERY_DONE,
1129 BNX2X_RECOVERY_INIT,
1130 BNX2X_RECOVERY_WAIT,
95c6c616
AE
1131 BNX2X_RECOVERY_FAILED,
1132 BNX2X_RECOVERY_NIC_LOADING
c9ee9206 1133};
72fd0718 1134
619c5cb6 1135/*
523224a3
DK
1136 * Event queue (EQ or event ring) MC hsi
1137 * NUM_EQ_PAGES and EQ_DESC_CNT_PAGE must be power of 2
1138 */
1139#define NUM_EQ_PAGES 1
1140#define EQ_DESC_CNT_PAGE (BCM_PAGE_SIZE / sizeof(union event_ring_elem))
1141#define EQ_DESC_MAX_PAGE (EQ_DESC_CNT_PAGE - 1)
1142#define NUM_EQ_DESC (EQ_DESC_CNT_PAGE * NUM_EQ_PAGES)
1143#define EQ_DESC_MASK (NUM_EQ_DESC - 1)
1144#define MAX_EQ_AVAIL (EQ_DESC_MAX_PAGE * NUM_EQ_PAGES - 2)
1145
1146/* depends on EQ_DESC_CNT_PAGE being a power of 2 */
1147#define NEXT_EQ_IDX(x) ((((x) & EQ_DESC_MAX_PAGE) == \
1148 (EQ_DESC_MAX_PAGE - 1)) ? (x) + 2 : (x) + 1)
1149
1150/* depends on the above and on NUM_EQ_PAGES being a power of 2 */
1151#define EQ_DESC(x) ((x) & EQ_DESC_MASK)
1152
1153#define BNX2X_EQ_INDEX \
1154 (&bp->def_status_blk->sp_sb.\
1155 index_values[HC_SP_INDEX_EQ_CONS])
1156
2ae17f66
VZ
1157/* This is a data that will be used to create a link report message.
1158 * We will keep the data used for the last link report in order
1159 * to prevent reporting the same link parameters twice.
1160 */
1161struct bnx2x_link_report_data {
1162 u16 line_speed; /* Effective line speed */
1163 unsigned long link_report_flags;/* BNX2X_LINK_REPORT_XXX flags */
1164};
1165
1166enum {
1167 BNX2X_LINK_REPORT_FD, /* Full DUPLEX */
1168 BNX2X_LINK_REPORT_LINK_DOWN,
1169 BNX2X_LINK_REPORT_RX_FC_ON,
1170 BNX2X_LINK_REPORT_TX_FC_ON,
1171};
1172
619c5cb6
VZ
1173enum {
1174 BNX2X_PORT_QUERY_IDX,
1175 BNX2X_PF_QUERY_IDX,
50f0a562 1176 BNX2X_FCOE_QUERY_IDX,
619c5cb6
VZ
1177 BNX2X_FIRST_QUEUE_QUERY_IDX,
1178};
1179
1180struct bnx2x_fw_stats_req {
1181 struct stats_query_header hdr;
50f0a562
BW
1182 struct stats_query_entry query[FP_SB_MAX_E1x+
1183 BNX2X_FIRST_QUEUE_QUERY_IDX];
619c5cb6
VZ
1184};
1185
1186struct bnx2x_fw_stats_data {
1187 struct stats_counter storm_counters;
1188 struct per_port_stats port;
1189 struct per_pf_stats pf;
50f0a562 1190 struct fcoe_statistics_params fcoe;
619c5cb6
VZ
1191 struct per_queue_stats queue_stats[1];
1192};
1193
7be08a72
AE
1194/* Public slow path states */
1195enum {
6383c0b3 1196 BNX2X_SP_RTNL_SETUP_TC,
7be08a72 1197 BNX2X_SP_RTNL_TX_TIMEOUT,
a3348722 1198 BNX2X_SP_RTNL_AFEX_F_UPDATE,
8304859a 1199 BNX2X_SP_RTNL_FAN_FAILURE,
381ac16b
AE
1200 BNX2X_SP_RTNL_VFPF_MCAST,
1201 BNX2X_SP_RTNL_VFPF_STORM_RX_MODE,
7be08a72
AE
1202};
1203
1204
452427b0
YM
1205struct bnx2x_prev_path_list {
1206 u8 bus;
1207 u8 slot;
1208 u8 path;
1209 struct list_head list;
c63da990 1210 u8 undi;
452427b0
YM
1211};
1212
15192a8c
BW
1213struct bnx2x_sp_objs {
1214 /* MACs object */
1215 struct bnx2x_vlan_mac_obj mac_obj;
1216
1217 /* Queue State object */
1218 struct bnx2x_queue_sp_obj q_obj;
1219};
1220
1221struct bnx2x_fp_stats {
1222 struct tstorm_per_queue_stats old_tclient;
1223 struct ustorm_per_queue_stats old_uclient;
1224 struct xstorm_per_queue_stats old_xclient;
1225 struct bnx2x_eth_q_stats eth_q_stats;
1226 struct bnx2x_eth_q_stats_old eth_q_stats_old;
1227};
1228
34f80b04
EG
1229struct bnx2x {
1230 /* Fields used in the tx and intr/napi performance paths
1231 * are grouped together in the beginning of the structure
1232 */
523224a3 1233 struct bnx2x_fastpath *fp;
15192a8c
BW
1234 struct bnx2x_sp_objs *sp_objs;
1235 struct bnx2x_fp_stats *fp_stats;
65565884 1236 struct bnx2x_fp_txdata *bnx2x_txq;
34f80b04
EG
1237 void __iomem *regview;
1238 void __iomem *doorbells;
523224a3 1239 u16 db_size;
34f80b04 1240
619c5cb6
VZ
1241 u8 pf_num; /* absolute PF number */
1242 u8 pfid; /* per-path PF number */
1243 int base_fw_ndsb; /**/
1244#define BP_PATH(bp) (CHIP_IS_E1x(bp) ? 0 : (bp->pf_num & 1))
1245#define BP_PORT(bp) (bp->pfid & 1)
1246#define BP_FUNC(bp) (bp->pfid)
1247#define BP_ABS_FUNC(bp) (bp->pf_num)
3395a033
DK
1248#define BP_VN(bp) ((bp)->pfid >> 1)
1249#define BP_MAX_VN_NUM(bp) (CHIP_MODE_IS_4_PORT(bp) ? 2 : 4)
1250#define BP_L_ID(bp) (BP_VN(bp) << 2)
1251#define BP_FW_MB_IDX_VN(bp, vn) (BP_PORT(bp) +\
1252 (vn) * ((CHIP_IS_E1x(bp) || (CHIP_MODE_IS_4_PORT(bp))) ? 2 : 1))
1253#define BP_FW_MB_IDX(bp) BP_FW_MB_IDX_VN(bp, BP_VN(bp))
619c5cb6 1254
1ab4434c
AE
1255 /* vf pf channel mailbox contains request and response buffers */
1256 struct bnx2x_vf_mbx_msg *vf2pf_mbox;
1257 dma_addr_t vf2pf_mbox_mapping;
1258
be1f1ffa
AE
1259 /* we set aside a copy of the acquire response */
1260 struct pfvf_acquire_resp_tlv acquire_resp;
1261
abc5a021
AE
1262 /* bulletin board for messages from pf to vf */
1263 union pf_vf_bulletin *pf2vf_bulletin;
1264 dma_addr_t pf2vf_bulletin_mapping;
1265
1266 struct pf_vf_bulletin_content old_bulletin;
1267
34f80b04
EG
1268 struct net_device *dev;
1269 struct pci_dev *pdev;
1270
619c5cb6 1271 const struct iro *iro_arr;
523224a3
DK
1272#define IRO (bp->iro_arr)
1273
c9ee9206 1274 enum bnx2x_recovery_state recovery_state;
72fd0718 1275 int is_leader;
523224a3 1276 struct msix_entry *msix_table;
34f80b04
EG
1277
1278 int tx_ring_size;
1279
523224a3
DK
1280/* L2 header size + 2*VLANs (8 bytes) + LLC SNAP (8 bytes) */
1281#define ETH_OVREHEAD (ETH_HLEN + 8 + 8)
34f80b04
EG
1282#define ETH_MIN_PACKET_SIZE 60
1283#define ETH_MAX_PACKET_SIZE 1500
1284#define ETH_MAX_JUMBO_PACKET_SIZE 9600
621b4d66
DK
1285/* TCP with Timestamp Option (32) + IPv6 (40) */
1286#define ETH_MAX_TPA_HEADER_SIZE 72
a2fbb9ea 1287
0f00846d 1288 /* Max supported alignment is 256 (8 shift) */
e52fcb24
ED
1289#define BNX2X_RX_ALIGN_SHIFT min(8, L1_CACHE_SHIFT)
1290
1291 /* FW uses 2 Cache lines Alignment for start packet and size
1292 *
1293 * We assume skb_build() uses sizeof(struct skb_shared_info) bytes
1294 * at the end of skb->data, to avoid wasting a full cache line.
1295 * This reduces memory use (skb->truesize).
1296 */
1297#define BNX2X_FW_RX_ALIGN_START (1UL << BNX2X_RX_ALIGN_SHIFT)
1298
1299#define BNX2X_FW_RX_ALIGN_END \
f57b07c0 1300 max_t(u64, 1UL << BNX2X_RX_ALIGN_SHIFT, \
e52fcb24
ED
1301 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
1302
523224a3 1303#define BNX2X_PXP_DRAM_ALIGN (BNX2X_RX_ALIGN_SHIFT - 5)
0f00846d 1304
523224a3
DK
1305 struct host_sp_status_block *def_status_blk;
1306#define DEF_SB_IGU_ID 16
1307#define DEF_SB_ID HC_SP_SB_ID
1308 __le16 def_idx;
4781bfad 1309 __le16 def_att_idx;
34f80b04
EG
1310 u32 attn_state;
1311 struct attn_route attn_group[MAX_DYNAMIC_ATTN_GRPS];
34f80b04
EG
1312
1313 /* slow path ring */
1314 struct eth_spe *spq;
1315 dma_addr_t spq_mapping;
1316 u16 spq_prod_idx;
1317 struct eth_spe *spq_prod_bd;
1318 struct eth_spe *spq_last_bd;
4781bfad 1319 __le16 *dsb_sp_prod;
6e30dd4e 1320 atomic_t cq_spq_left; /* ETH_XXX ramrods credit */
34f80b04
EG
1321 /* used to synchronize spq accesses */
1322 spinlock_t spq_lock;
1323
523224a3
DK
1324 /* event queue */
1325 union event_ring_elem *eq_ring;
1326 dma_addr_t eq_mapping;
1327 u16 eq_prod;
1328 u16 eq_cons;
1329 __le16 *eq_cons_sb;
6e30dd4e 1330 atomic_t eq_spq_left; /* COMMON_XXX ramrods credit */
523224a3 1331
619c5cb6
VZ
1332
1333
1334 /* Counter for marking that there is a STAT_QUERY ramrod pending */
1335 u16 stats_pending;
1336 /* Counter for completed statistics ramrods */
1337 u16 stats_comp;
34f80b04 1338
33471629 1339 /* End of fields used in the performance code paths */
34f80b04
EG
1340
1341 int panic;
7995c64e 1342 int msg_enable;
34f80b04
EG
1343
1344 u32 flags;
619c5cb6
VZ
1345#define PCIX_FLAG (1 << 0)
1346#define PCI_32BIT_FLAG (1 << 1)
1347#define ONE_PORT_FLAG (1 << 2)
1348#define NO_WOL_FLAG (1 << 3)
1349#define USING_DAC_FLAG (1 << 4)
1350#define USING_MSIX_FLAG (1 << 5)
1351#define USING_MSI_FLAG (1 << 6)
1352#define DISABLE_MSI_FLAG (1 << 7)
1353#define TPA_ENABLE_FLAG (1 << 8)
1354#define NO_MCP_FLAG (1 << 9)
621b4d66 1355#define GRO_ENABLE_FLAG (1 << 10)
619c5cb6
VZ
1356#define MF_FUNC_DIS (1 << 11)
1357#define OWN_CNIC_IRQ (1 << 12)
1358#define NO_ISCSI_OOO_FLAG (1 << 13)
1359#define NO_ISCSI_FLAG (1 << 14)
1360#define NO_FCOE_FLAG (1 << 15)
0e898dd7 1361#define BC_SUPPORTS_PFC_STATS (1 << 17)
2e499d3c 1362#define BC_SUPPORTS_FCOE_FEATURES (1 << 19)
30a5de77 1363#define USING_SINGLE_MSIX_FLAG (1 << 20)
9876879f 1364#define BC_SUPPORTS_DCBX_MSG_NON_PMF (1 << 21)
1ab4434c
AE
1365#define IS_VF_FLAG (1 << 22)
1366
1367#define BP_NOMCP(bp) ((bp)->flags & NO_MCP_FLAG)
1368#define IS_VF(bp) ((bp)->flags & IS_VF_FLAG)
1369#define IS_PF(bp) (!((bp)->flags & IS_VF_FLAG))
ec6ba945 1370
2ba45142
VZ
1371#define NO_ISCSI(bp) ((bp)->flags & NO_ISCSI_FLAG)
1372#define NO_ISCSI_OOO(bp) ((bp)->flags & NO_ISCSI_OOO_FLAG)
619c5cb6 1373#define NO_FCOE(bp) ((bp)->flags & NO_FCOE_FLAG)
37b091ba 1374
55c11941
MS
1375 u8 cnic_support;
1376 bool cnic_enabled;
1377 bool cnic_loaded;
4bd9b0ff 1378 struct cnic_eth_dev *(*cnic_probe)(struct net_device *);
55c11941
MS
1379
1380 /* Flag that indicates that we can start looking for FCoE L2 queue
1381 * completions in the default status block.
1382 */
1383 bool fcoe_init;
1384
34f80b04 1385 int pm_cap;
8d5726c4 1386 int mrrs;
34f80b04 1387
1cf167f2 1388 struct delayed_work sp_task;
fd1fc79d 1389 atomic_t interrupt_occurred;
7be08a72 1390 struct delayed_work sp_rtnl_task;
3deb8167
YR
1391
1392 struct delayed_work period_task;
34f80b04 1393 struct timer_list timer;
34f80b04
EG
1394 int current_interval;
1395
1396 u16 fw_seq;
1397 u16 fw_drv_pulse_wr_seq;
1398 u32 func_stx;
1399
1400 struct link_params link_params;
1401 struct link_vars link_vars;
2ae17f66
VZ
1402 u32 link_cnt;
1403 struct bnx2x_link_report_data last_reported_link;
1404
01cd4528 1405 struct mdio_if_info mdio;
a2fbb9ea 1406
34f80b04
EG
1407 struct bnx2x_common common;
1408 struct bnx2x_port port;
1409
b475d78f
YM
1410 struct cmng_init cmng;
1411
f2e0899f 1412 u32 mf_config[E1HVN_MAX];
a3348722 1413 u32 mf_ext_config;
619c5cb6 1414 u32 path_has_ovlan; /* E3 */
fb3bff17
DK
1415 u16 mf_ov;
1416 u8 mf_mode;
f85582f8 1417#define IS_MF(bp) (bp->mf_mode != 0)
0793f83f
DK
1418#define IS_MF_SI(bp) (bp->mf_mode == MULTI_FUNCTION_SI)
1419#define IS_MF_SD(bp) (bp->mf_mode == MULTI_FUNCTION_SD)
a3348722 1420#define IS_MF_AFEX(bp) (bp->mf_mode == MULTI_FUNCTION_AFEX)
a2fbb9ea 1421
f1410647
ET
1422 u8 wol;
1423
34f80b04 1424 int rx_ring_size;
a2fbb9ea 1425
34f80b04
EG
1426 u16 tx_quick_cons_trip_int;
1427 u16 tx_quick_cons_trip;
1428 u16 tx_ticks_int;
1429 u16 tx_ticks;
a2fbb9ea 1430
34f80b04
EG
1431 u16 rx_quick_cons_trip_int;
1432 u16 rx_quick_cons_trip;
1433 u16 rx_ticks_int;
1434 u16 rx_ticks;
cdaa7cb8
VZ
1435/* Maximal coalescing timeout in us */
1436#define BNX2X_MAX_COALESCE_TOUT (0xf0*12)
a2fbb9ea 1437
34f80b04 1438 u32 lin_cnt;
a2fbb9ea 1439
619c5cb6 1440 u16 state;
356e2385 1441#define BNX2X_STATE_CLOSED 0
34f80b04
EG
1442#define BNX2X_STATE_OPENING_WAIT4_LOAD 0x1000
1443#define BNX2X_STATE_OPENING_WAIT4_PORT 0x2000
a2fbb9ea 1444#define BNX2X_STATE_OPEN 0x3000
34f80b04 1445#define BNX2X_STATE_CLOSING_WAIT4_HALT 0x4000
a2fbb9ea 1446#define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
619c5cb6 1447
34f80b04
EG
1448#define BNX2X_STATE_DIAG 0xe000
1449#define BNX2X_STATE_ERROR 0xf000
a2fbb9ea 1450
6383c0b3
AE
1451#define BNX2X_MAX_PRIORITY 8
1452#define BNX2X_MAX_ENTRIES_PER_PRI 16
1453#define BNX2X_MAX_COS 3
1454#define BNX2X_MAX_TX_COS 2
54b9ddaa 1455 int num_queues;
55c11941
MS
1456 uint num_ethernet_queues;
1457 uint num_cnic_queues;
0e8d2ec5 1458 int num_napi_queues;
5d7cd496 1459 int disable_tpa;
523224a3 1460
34f80b04
EG
1461 u32 rx_mode;
1462#define BNX2X_RX_MODE_NONE 0
1463#define BNX2X_RX_MODE_NORMAL 1
1464#define BNX2X_RX_MODE_ALLMULTI 2
1465#define BNX2X_RX_MODE_PROMISC 3
1466#define BNX2X_MAX_MULTICAST 64
a2fbb9ea 1467
523224a3
DK
1468 u8 igu_dsb_id;
1469 u8 igu_base_sb;
1470 u8 igu_sb_cnt;
55c11941 1471 u8 min_msix_vec_cnt;
65565884 1472
1ab4434c 1473 u32 igu_base_addr;
34f80b04 1474 dma_addr_t def_status_blk_mapping;
a2fbb9ea 1475
34f80b04
EG
1476 struct bnx2x_slowpath *slowpath;
1477 dma_addr_t slowpath_mapping;
619c5cb6
VZ
1478
1479 /* Total number of FW statistics requests */
1480 u8 fw_stats_num;
1481
1482 /*
1483 * This is a memory buffer that will contain both statistics
1484 * ramrod request and data.
1485 */
1486 void *fw_stats;
1487 dma_addr_t fw_stats_mapping;
1488
1489 /*
1490 * FW statistics request shortcut (points at the
1491 * beginning of fw_stats buffer).
1492 */
1493 struct bnx2x_fw_stats_req *fw_stats_req;
1494 dma_addr_t fw_stats_req_mapping;
1495 int fw_stats_req_sz;
1496
1497 /*
4907cb7b 1498 * FW statistics data shortcut (points at the beginning of
619c5cb6
VZ
1499 * fw_stats buffer + fw_stats_req_sz).
1500 */
1501 struct bnx2x_fw_stats_data *fw_stats_data;
1502 dma_addr_t fw_stats_data_mapping;
1503 int fw_stats_data_sz;
1504
a052997e
MS
1505 /* For max 196 cids (64*3 + non-eth), 32KB ILT page size and 1KB
1506 * context size we need 8 ILT entries.
1507 */
1508#define ILT_MAX_L2_LINES 8
1509 struct hw_context context[ILT_MAX_L2_LINES];
523224a3
DK
1510
1511 struct bnx2x_ilt *ilt;
1512#define BP_ILT(bp) ((bp)->ilt)
619c5cb6 1513#define ILT_MAX_LINES 256
6383c0b3
AE
1514/*
1515 * Maximum supported number of RSS queues: number of IGU SBs minus one that goes
1516 * to CNIC.
1517 */
55c11941 1518#define BNX2X_MAX_RSS_COUNT(bp) ((bp)->igu_sb_cnt - CNIC_SUPPORT(bp))
523224a3 1519
6383c0b3
AE
1520/*
1521 * Maximum CID count that might be required by the bnx2x:
37ae41a9 1522 * Max RSS * Max_Tx_Multi_Cos + FCoE + iSCSI
6383c0b3 1523 */
37ae41a9 1524#define BNX2X_L2_CID_COUNT(bp) (BNX2X_NUM_ETH_QUEUES(bp) * BNX2X_MULTI_TX_COS \
55c11941 1525 + 2 * CNIC_SUPPORT(bp))
37ae41a9 1526#define BNX2X_L2_MAX_CID(bp) (BNX2X_MAX_RSS_COUNT(bp) * BNX2X_MULTI_TX_COS \
55c11941 1527 + 2 * CNIC_SUPPORT(bp))
6383c0b3
AE
1528#define L2_ILT_LINES(bp) (DIV_ROUND_UP(BNX2X_L2_CID_COUNT(bp),\
1529 ILT_PAGE_CIDS))
523224a3
DK
1530
1531 int qm_cid_count;
a2fbb9ea 1532
7964211d 1533 bool dropless_fc;
a18f5128 1534
37b091ba
MC
1535 void *t2;
1536 dma_addr_t t2_mapping;
13707f9e 1537 struct cnic_ops __rcu *cnic_ops;
37b091ba
MC
1538 void *cnic_data;
1539 u32 cnic_tag;
1540 struct cnic_eth_dev cnic_eth_dev;
523224a3 1541 union host_hc_status_block cnic_sb;
37b091ba 1542 dma_addr_t cnic_sb_mapping;
37b091ba
MC
1543 struct eth_spe *cnic_kwq;
1544 struct eth_spe *cnic_kwq_prod;
1545 struct eth_spe *cnic_kwq_cons;
1546 struct eth_spe *cnic_kwq_last;
1547 u16 cnic_kwq_pending;
1548 u16 cnic_spq_pending;
ec6ba945 1549 u8 fip_mac[ETH_ALEN];
619c5cb6
VZ
1550 struct mutex cnic_mutex;
1551 struct bnx2x_vlan_mac_obj iscsi_l2_mac_obj;
1552
1553 /* Start index of the "special" (CNIC related) L2 cleints */
1554 u8 cnic_base_cl_id;
37b091ba 1555
ad8d3948
EG
1556 int dmae_ready;
1557 /* used to synchronize dmae accesses */
6e30dd4e 1558 spinlock_t dmae_lock;
ad8d3948 1559
c4ff7cbf
EG
1560 /* used to protect the FW mail box */
1561 struct mutex fw_mb_mutex;
1562
bb2a0f7a
YG
1563 /* used to synchronize stats collecting */
1564 int stats_state;
a13773a5
VZ
1565
1566 /* used for synchronization of concurrent threads statistics handling */
1567 spinlock_t stats_lock;
1568
bb2a0f7a
YG
1569 /* used by dmae command loader */
1570 struct dmae_command stats_dmae;
1571 int executer_idx;
ad8d3948 1572
bb2a0f7a 1573 u16 stats_counter;
bb2a0f7a 1574 struct bnx2x_eth_stats eth_stats;
cb4dca27 1575 struct host_func_stats func_stats;
1355b704
MY
1576 struct bnx2x_eth_stats_old eth_stats_old;
1577 struct bnx2x_net_stats_old net_stats_old;
1578 struct bnx2x_fw_port_stats_old fw_stats_old;
1579 bool stats_init;
bb2a0f7a
YG
1580
1581 struct z_stream_s *strm;
1582 void *gunzip_buf;
1583 dma_addr_t gunzip_mapping;
1584 int gunzip_outlen;
ad8d3948 1585#define FW_BUF_SIZE 0x8000
573f2035
EG
1586#define GUNZIP_BUF(bp) (bp->gunzip_buf)
1587#define GUNZIP_PHYS(bp) (bp->gunzip_mapping)
1588#define GUNZIP_OUTLEN(bp) (bp->gunzip_outlen)
a2fbb9ea 1589
ab6ad5a4 1590 struct raw_op *init_ops;
94a78b79 1591 /* Init blocks offsets inside init_ops */
ab6ad5a4 1592 u16 *init_ops_offsets;
94a78b79 1593 /* Data blob - has 32 bit granularity */
ab6ad5a4 1594 u32 *init_data;
619c5cb6
VZ
1595 u32 init_mode_flags;
1596#define INIT_MODE_FLAGS(bp) (bp->init_mode_flags)
94a78b79 1597 /* Zipped PRAM blobs - raw data */
ab6ad5a4
EG
1598 const u8 *tsem_int_table_data;
1599 const u8 *tsem_pram_data;
1600 const u8 *usem_int_table_data;
1601 const u8 *usem_pram_data;
1602 const u8 *xsem_int_table_data;
1603 const u8 *xsem_pram_data;
1604 const u8 *csem_int_table_data;
1605 const u8 *csem_pram_data;
573f2035
EG
1606#define INIT_OPS(bp) (bp->init_ops)
1607#define INIT_OPS_OFFSETS(bp) (bp->init_ops_offsets)
1608#define INIT_DATA(bp) (bp->init_data)
1609#define INIT_TSEM_INT_TABLE_DATA(bp) (bp->tsem_int_table_data)
1610#define INIT_TSEM_PRAM_DATA(bp) (bp->tsem_pram_data)
1611#define INIT_USEM_INT_TABLE_DATA(bp) (bp->usem_int_table_data)
1612#define INIT_USEM_PRAM_DATA(bp) (bp->usem_pram_data)
1613#define INIT_XSEM_INT_TABLE_DATA(bp) (bp->xsem_int_table_data)
1614#define INIT_XSEM_PRAM_DATA(bp) (bp->xsem_pram_data)
1615#define INIT_CSEM_INT_TABLE_DATA(bp) (bp->csem_int_table_data)
1616#define INIT_CSEM_PRAM_DATA(bp) (bp->csem_pram_data)
1617
619c5cb6 1618#define PHY_FW_VER_LEN 20
34f24c7f 1619 char fw_ver[32];
ab6ad5a4 1620 const struct firmware *firmware;
619c5cb6 1621
290ca2bb
AE
1622 struct bnx2x_vfdb *vfdb;
1623#define IS_SRIOV(bp) ((bp)->vfdb)
1624
785b9b1a
SR
1625 /* DCB support on/off */
1626 u16 dcb_state;
1627#define BNX2X_DCB_STATE_OFF 0
1628#define BNX2X_DCB_STATE_ON 1
1629
1630 /* DCBX engine mode */
1631 int dcbx_enabled;
1632#define BNX2X_DCBX_ENABLED_OFF 0
1633#define BNX2X_DCBX_ENABLED_ON_NEG_OFF 1
1634#define BNX2X_DCBX_ENABLED_ON_NEG_ON 2
1635#define BNX2X_DCBX_ENABLED_INVALID (-1)
1636
1637 bool dcbx_mode_uset;
1638
e4901dde 1639 struct bnx2x_config_dcbx_params dcbx_config_params;
e4901dde
VZ
1640 struct bnx2x_dcbx_port_params dcbx_port_params;
1641 int dcb_version;
1642
619c5cb6 1643 /* CAM credit pools */
b56e9670
AE
1644
1645 /* used only in sriov */
1646 struct bnx2x_credit_pool_obj vlans_pool;
1647
619c5cb6
VZ
1648 struct bnx2x_credit_pool_obj macs_pool;
1649
1650 /* RX_MODE object */
1651 struct bnx2x_rx_mode_obj rx_mode_obj;
1652
1653 /* MCAST object */
1654 struct bnx2x_mcast_obj mcast_obj;
1655
1656 /* RSS configuration object */
1657 struct bnx2x_rss_config_obj rss_conf_obj;
1658
1659 /* Function State controlling object */
1660 struct bnx2x_func_sp_obj func_obj;
1661
1662 unsigned long sp_state;
1663
7be08a72
AE
1664 /* operation indication for the sp_rtnl task */
1665 unsigned long sp_rtnl_state;
1666
619c5cb6 1667 /* DCBX Negotation results */
e4901dde
VZ
1668 struct dcbx_features dcbx_local_feat;
1669 u32 dcbx_error;
619c5cb6 1670
0be6bc62
SR
1671#ifdef BCM_DCBNL
1672 struct dcbx_features dcbx_remote_feat;
1673 u32 dcbx_remote_flags;
1674#endif
a3348722
BW
1675 /* AFEX: store default vlan used */
1676 int afex_def_vlan_tag;
1677 enum mf_cfg_afex_vlan_mode afex_vlan_mode;
e3835b99 1678 u32 pending_max;
6383c0b3
AE
1679
1680 /* multiple tx classes of service */
1681 u8 max_cos;
1682
1683 /* priority to cos mapping */
1684 u8 prio_to_cos[8];
a2fbb9ea
ET
1685};
1686
619c5cb6
VZ
1687/* Tx queues may be less or equal to Rx queues */
1688extern int num_queues;
54b9ddaa 1689#define BNX2X_NUM_QUEUES(bp) (bp->num_queues)
55c11941 1690#define BNX2X_NUM_ETH_QUEUES(bp) ((bp)->num_ethernet_queues)
65565884 1691#define BNX2X_NUM_NON_CNIC_QUEUES(bp) (BNX2X_NUM_QUEUES(bp) - \
55c11941 1692 (bp)->num_cnic_queues)
6383c0b3 1693#define BNX2X_NUM_RX_QUEUES(bp) BNX2X_NUM_QUEUES(bp)
ec6ba945 1694
54b9ddaa 1695#define is_multi(bp) (BNX2X_NUM_QUEUES(bp) > 1)
3196a88a 1696
6383c0b3
AE
1697#define BNX2X_MAX_QUEUES(bp) BNX2X_MAX_RSS_COUNT(bp)
1698/* #define is_eth_multi(bp) (BNX2X_NUM_ETH_QUEUES(bp) > 1) */
523224a3
DK
1699
1700#define RSS_IPV4_CAP_MASK \
1701 TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY
1702
1703#define RSS_IPV4_TCP_CAP_MASK \
1704 TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY
1705
1706#define RSS_IPV6_CAP_MASK \
1707 TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_CAPABILITY
1708
1709#define RSS_IPV6_TCP_CAP_MASK \
1710 TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_TCP_CAPABILITY
1711
1712/* func init flags */
619c5cb6
VZ
1713#define FUNC_FLG_RSS 0x0001
1714#define FUNC_FLG_STATS 0x0002
1715/* removed FUNC_FLG_UNMATCHED 0x0004 */
1716#define FUNC_FLG_TPA 0x0008
1717#define FUNC_FLG_SPQ 0x0010
1718#define FUNC_FLG_LEADING 0x0020 /* PF only */
523224a3 1719
523224a3
DK
1720
1721struct bnx2x_func_init_params {
523224a3
DK
1722 /* dma */
1723 dma_addr_t fw_stat_map; /* valid iff FUNC_FLG_STATS */
1724 dma_addr_t spq_map; /* valid iff FUNC_FLG_SPQ */
1725
1726 u16 func_flgs;
1727 u16 func_id; /* abs fid */
1728 u16 pf_id;
1729 u16 spq_prod; /* valid iff FUNC_FLG_SPQ */
1730};
1731
55c11941
MS
1732#define for_each_cnic_queue(bp, var) \
1733 for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
1734 (var)++) \
1735 if (skip_queue(bp, var)) \
1736 continue; \
1737 else
1738
ec6ba945 1739#define for_each_eth_queue(bp, var) \
6383c0b3 1740 for ((var) = 0; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
ec6ba945
VZ
1741
1742#define for_each_nondefault_eth_queue(bp, var) \
6383c0b3 1743 for ((var) = 1; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
ec6ba945 1744
555f6c78 1745#define for_each_queue(bp, var) \
6383c0b3 1746 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
ec6ba945
VZ
1747 if (skip_queue(bp, var)) \
1748 continue; \
1749 else
1750
6383c0b3 1751/* Skip forwarding FP */
55c11941
MS
1752#define for_each_valid_rx_queue(bp, var) \
1753 for ((var) = 0; \
1754 (var) < (CNIC_LOADED(bp) ? BNX2X_NUM_QUEUES(bp) : \
1755 BNX2X_NUM_ETH_QUEUES(bp)); \
1756 (var)++) \
1757 if (skip_rx_queue(bp, var)) \
1758 continue; \
1759 else
1760
1761#define for_each_rx_queue_cnic(bp, var) \
1762 for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
1763 (var)++) \
1764 if (skip_rx_queue(bp, var)) \
1765 continue; \
1766 else
1767
ec6ba945 1768#define for_each_rx_queue(bp, var) \
6383c0b3 1769 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
ec6ba945
VZ
1770 if (skip_rx_queue(bp, var)) \
1771 continue; \
1772 else
1773
6383c0b3 1774/* Skip OOO FP */
55c11941
MS
1775#define for_each_valid_tx_queue(bp, var) \
1776 for ((var) = 0; \
1777 (var) < (CNIC_LOADED(bp) ? BNX2X_NUM_QUEUES(bp) : \
1778 BNX2X_NUM_ETH_QUEUES(bp)); \
1779 (var)++) \
1780 if (skip_tx_queue(bp, var)) \
1781 continue; \
1782 else
1783
1784#define for_each_tx_queue_cnic(bp, var) \
1785 for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
1786 (var)++) \
1787 if (skip_tx_queue(bp, var)) \
1788 continue; \
1789 else
1790
ec6ba945 1791#define for_each_tx_queue(bp, var) \
6383c0b3 1792 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
ec6ba945
VZ
1793 if (skip_tx_queue(bp, var)) \
1794 continue; \
1795 else
1796
3196a88a 1797#define for_each_nondefault_queue(bp, var) \
6383c0b3 1798 for ((var) = 1; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
ec6ba945
VZ
1799 if (skip_queue(bp, var)) \
1800 continue; \
1801 else
3196a88a 1802
6383c0b3
AE
1803#define for_each_cos_in_tx_queue(fp, var) \
1804 for ((var) = 0; (var) < (fp)->max_cos; (var)++)
1805
ec6ba945 1806/* skip rx queue
008d23e4 1807 * if FCOE l2 support is disabled and this is the fcoe L2 queue
ec6ba945
VZ
1808 */
1809#define skip_rx_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
1810
1811/* skip tx queue
008d23e4 1812 * if FCOE l2 support is disabled and this is the fcoe L2 queue
ec6ba945
VZ
1813 */
1814#define skip_tx_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
1815
1816#define skip_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
3196a88a 1817
f85582f8 1818
619c5cb6
VZ
1819
1820
1821/**
1822 * bnx2x_set_mac_one - configure a single MAC address
1823 *
1824 * @bp: driver handle
1825 * @mac: MAC to configure
1826 * @obj: MAC object handle
1827 * @set: if 'true' add a new MAC, otherwise - delete
1828 * @mac_type: the type of the MAC to configure (e.g. ETH, UC list)
1829 * @ramrod_flags: RAMROD_XXX flags (e.g. RAMROD_CONT, RAMROD_COMP_WAIT)
1830 *
1831 * Configures one MAC according to provided parameters or continues the
1832 * execution of previously scheduled commands if RAMROD_CONT is set in
1833 * ramrod_flags.
1834 *
1835 * Returns zero if operation has successfully completed, a positive value if the
1836 * operation has been successfully scheduled and a negative - if a requested
1837 * operations has failed.
1838 */
1839int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
1840 struct bnx2x_vlan_mac_obj *obj, bool set,
1841 int mac_type, unsigned long *ramrod_flags);
619c5cb6
VZ
1842/**
1843 * bnx2x_del_all_macs - delete all MACs configured for the specific MAC object
1844 *
1845 * @bp: driver handle
1846 * @mac_obj: MAC object handle
1847 * @mac_type: type of the MACs to clear (BNX2X_XXX_MAC)
1848 * @wait_for_comp: if 'true' block until completion
1849 *
1850 * Deletes all MACs of the specific type (e.g. ETH, UC list).
1851 *
1852 * Returns zero if operation has successfully completed, a positive value if the
1853 * operation has been successfully scheduled and a negative - if a requested
1854 * operations has failed.
1855 */
1856int bnx2x_del_all_macs(struct bnx2x *bp,
1857 struct bnx2x_vlan_mac_obj *mac_obj,
1858 int mac_type, bool wait_for_comp);
1859
1860/* Init Function API */
1861void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p);
b93288d5
AE
1862void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
1863 u8 vf_valid, int fw_sb_id, int igu_sb_id);
b56e9670 1864u32 bnx2x_get_pretend_reg(struct bnx2x *bp);
619c5cb6
VZ
1865int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port);
1866int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
1867int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode);
1868int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
2ae17f66
VZ
1869void bnx2x_read_mf_cfg(struct bnx2x *bp);
1870
b56e9670 1871int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
619c5cb6 1872
f85582f8 1873/* dmae */
c18487ee
YR
1874void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32);
1875void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
1876 u32 len32);
f85582f8
DK
1877void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx);
1878u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type);
1879u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode);
1880u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
1881 bool with_comp, u8 comp_type);
1882
fd1fc79d
AE
1883void bnx2x_prep_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae,
1884 u8 src_type, u8 dst_type);
1885int bnx2x_issue_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae);
1886void bnx2x_dp_dmae(struct bnx2x *bp, struct dmae_command *dmae, int msglvl);
1887
d16132ce
AE
1888/* FLR related routines */
1889u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp);
1890void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count);
1891int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func, u32 poll_cnt);
b56e9670 1892u8 bnx2x_is_pcie_pending(struct pci_dev *dev);
d16132ce
AE
1893int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
1894 char *msg, u32 poll_cnt);
f85582f8 1895
de0c62db
DK
1896void bnx2x_calc_fc_adv(struct bnx2x *bp);
1897int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
619c5cb6 1898 u32 data_hi, u32 data_lo, int cmd_type);
de0c62db 1899void bnx2x_update_coalesce(struct bnx2x *bp);
1ac9e428 1900int bnx2x_get_cur_phy_idx(struct bnx2x *bp);
f85582f8 1901
34f80b04
EG
1902static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms,
1903 int wait)
1904{
1905 u32 val;
1906
1907 do {
1908 val = REG_RD(bp, reg);
1909 if (val == expected)
1910 break;
1911 ms -= wait;
1912 msleep(wait);
1913
1914 } while (ms > 0);
1915
1916 return val;
1917}
f85582f8 1918
b56e9670
AE
1919void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func, u8 idu_sb_id,
1920 bool is_pf);
1921
523224a3
DK
1922#define BNX2X_ILT_ZALLOC(x, y, size) \
1923 do { \
d245a111 1924 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
523224a3
DK
1925 if (x) \
1926 memset(x, 0, size); \
1927 } while (0)
1928
1929#define BNX2X_ILT_FREE(x, y, size) \
1930 do { \
1931 if (x) { \
d245a111 1932 dma_free_coherent(&bp->pdev->dev, size, x, y); \
523224a3
DK
1933 x = NULL; \
1934 y = 0; \
1935 } \
1936 } while (0)
1937
1938#define ILOG2(x) (ilog2((x)))
1939
1940#define ILT_NUM_PAGE_ENTRIES (3072)
1941/* In 57710/11 we use whole table since we have 8 func
f85582f8
DK
1942 * In 57712 we have only 4 func, but use same size per func, then only half of
1943 * the table in use
523224a3
DK
1944 */
1945#define ILT_PER_FUNC (ILT_NUM_PAGE_ENTRIES/8)
1946
1947#define FUNC_ILT_BASE(func) (func * ILT_PER_FUNC)
1948/*
1949 * the phys address is shifted right 12 bits and has an added
1950 * 1=valid bit added to the 53rd bit
1951 * then since this is a wide register(TM)
1952 * we split it into two 32 bit writes
1953 */
1954#define ONCHIP_ADDR1(x) ((u32)(((u64)x >> 12) & 0xFFFFFFFF))
1955#define ONCHIP_ADDR2(x) ((u32)((1 << 20) | ((u64)x >> 44)))
34f80b04 1956
34f80b04
EG
1957/* load/unload mode */
1958#define LOAD_NORMAL 0
1959#define LOAD_OPEN 1
1960#define LOAD_DIAG 2
8970b2e4 1961#define LOAD_LOOPBACK_EXT 3
34f80b04
EG
1962#define UNLOAD_NORMAL 0
1963#define UNLOAD_CLOSE 1
f85582f8 1964#define UNLOAD_RECOVERY 2
34f80b04 1965
bb2a0f7a 1966
ad8d3948 1967/* DMAE command defines */
f2e0899f
DK
1968#define DMAE_TIMEOUT -1
1969#define DMAE_PCI_ERROR -2 /* E2 and onward */
1970#define DMAE_NOT_RDY -3
1971#define DMAE_PCI_ERR_FLAG 0x80000000
1972
1973#define DMAE_SRC_PCI 0
1974#define DMAE_SRC_GRC 1
1975
1976#define DMAE_DST_NONE 0
1977#define DMAE_DST_PCI 1
1978#define DMAE_DST_GRC 2
1979
1980#define DMAE_COMP_PCI 0
1981#define DMAE_COMP_GRC 1
1982
1983/* E2 and onward - PCI error handling in the completion */
1984
1985#define DMAE_COMP_REGULAR 0
1986#define DMAE_COM_SET_ERR 1
ad8d3948 1987
f2e0899f
DK
1988#define DMAE_CMD_SRC_PCI (DMAE_SRC_PCI << \
1989 DMAE_COMMAND_SRC_SHIFT)
1990#define DMAE_CMD_SRC_GRC (DMAE_SRC_GRC << \
1991 DMAE_COMMAND_SRC_SHIFT)
ad8d3948 1992
f2e0899f
DK
1993#define DMAE_CMD_DST_PCI (DMAE_DST_PCI << \
1994 DMAE_COMMAND_DST_SHIFT)
1995#define DMAE_CMD_DST_GRC (DMAE_DST_GRC << \
1996 DMAE_COMMAND_DST_SHIFT)
1997
1998#define DMAE_CMD_C_DST_PCI (DMAE_COMP_PCI << \
1999 DMAE_COMMAND_C_DST_SHIFT)
2000#define DMAE_CMD_C_DST_GRC (DMAE_COMP_GRC << \
2001 DMAE_COMMAND_C_DST_SHIFT)
ad8d3948
EG
2002
2003#define DMAE_CMD_C_ENABLE DMAE_COMMAND_C_TYPE_ENABLE
2004
2005#define DMAE_CMD_ENDIANITY_NO_SWAP (0 << DMAE_COMMAND_ENDIANITY_SHIFT)
2006#define DMAE_CMD_ENDIANITY_B_SWAP (1 << DMAE_COMMAND_ENDIANITY_SHIFT)
2007#define DMAE_CMD_ENDIANITY_DW_SWAP (2 << DMAE_COMMAND_ENDIANITY_SHIFT)
2008#define DMAE_CMD_ENDIANITY_B_DW_SWAP (3 << DMAE_COMMAND_ENDIANITY_SHIFT)
2009
2010#define DMAE_CMD_PORT_0 0
2011#define DMAE_CMD_PORT_1 DMAE_COMMAND_PORT
2012
2013#define DMAE_CMD_SRC_RESET DMAE_COMMAND_SRC_RESET
2014#define DMAE_CMD_DST_RESET DMAE_COMMAND_DST_RESET
2015#define DMAE_CMD_E1HVN_SHIFT DMAE_COMMAND_E1HVN_SHIFT
2016
f2e0899f
DK
2017#define DMAE_SRC_PF 0
2018#define DMAE_SRC_VF 1
2019
2020#define DMAE_DST_PF 0
2021#define DMAE_DST_VF 1
2022
2023#define DMAE_C_SRC 0
2024#define DMAE_C_DST 1
2025
ad8d3948 2026#define DMAE_LEN32_RD_MAX 0x80
02e3c6cb 2027#define DMAE_LEN32_WR_MAX(bp) (CHIP_IS_E1(bp) ? 0x400 : 0x2000)
ad8d3948 2028
f2e0899f
DK
2029#define DMAE_COMP_VAL 0x60d0d0ae /* E2 and on - upper bit
2030 indicates eror */
ad8d3948
EG
2031
2032#define MAX_DMAE_C_PER_PORT 8
ab6ad5a4 2033#define INIT_DMAE_C(bp) (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
3395a033 2034 BP_VN(bp))
ab6ad5a4 2035#define PMF_DMAE_C(bp) (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
ad8d3948
EG
2036 E1HVN_MAX)
2037
25047950
ET
2038/* PCIE link and speed */
2039#define PCICFG_LINK_WIDTH 0x1f00000
2040#define PCICFG_LINK_WIDTH_SHIFT 20
2041#define PCICFG_LINK_SPEED 0xf0000
2042#define PCICFG_LINK_SPEED_SHIFT 16
a2fbb9ea 2043
cf2c1df6
MS
2044#define BNX2X_NUM_TESTS_SF 7
2045#define BNX2X_NUM_TESTS_MF 3
2046#define BNX2X_NUM_TESTS(bp) (IS_MF(bp) ? BNX2X_NUM_TESTS_MF : \
2047 BNX2X_NUM_TESTS_SF)
bb2a0f7a 2048
b5bf9068
EG
2049#define BNX2X_PHY_LOOPBACK 0
2050#define BNX2X_MAC_LOOPBACK 1
8970b2e4 2051#define BNX2X_EXT_LOOPBACK 2
b5bf9068
EG
2052#define BNX2X_PHY_LOOPBACK_FAILED 1
2053#define BNX2X_MAC_LOOPBACK_FAILED 2
8970b2e4 2054#define BNX2X_EXT_LOOPBACK_FAILED 3
bb2a0f7a
YG
2055#define BNX2X_LOOPBACK_FAILED (BNX2X_MAC_LOOPBACK_FAILED | \
2056 BNX2X_PHY_LOOPBACK_FAILED)
96fc1784 2057
7a9b2557
VZ
2058
2059#define STROM_ASSERT_ARRAY_SIZE 50
2060
96fc1784 2061
34f80b04 2062/* must be used on a CID before placing it on a HW ring */
ab6ad5a4 2063#define HW_CID(bp, x) ((BP_PORT(bp) << 23) | \
3395a033 2064 (BP_VN(bp) << BNX2X_SWCID_SHIFT) | \
619c5cb6 2065 (x))
7a9b2557
VZ
2066
2067#define SP_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_spe))
2068#define MAX_SP_DESC_CNT (SP_DESC_CNT - 1)
2069
2070
523224a3 2071#define BNX2X_BTR 4
7a9b2557 2072#define MAX_SPQ_PENDING 8
a2fbb9ea 2073
ff80ee02
DK
2074/* CMNG constants, as derived from system spec calculations */
2075/* default MIN rate in case VNIC min rate is configured to zero - 100Mbps */
2076#define DEF_MIN_RATE 100
9b3de1ef
DK
2077/* resolution of the rate shaping timer - 400 usec */
2078#define RS_PERIODIC_TIMEOUT_USEC 400
34f80b04 2079/* number of bytes in single QM arbitration cycle -
ff80ee02
DK
2080 * coefficient for calculating the fairness timer */
2081#define QM_ARB_BYTES 160000
2082/* resolution of Min algorithm 1:100 */
2083#define MIN_RES 100
2084/* how many bytes above threshold for the minimal credit of Min algorithm*/
2085#define MIN_ABOVE_THRESH 32768
2086/* Fairness algorithm integration time coefficient -
2087 * for calculating the actual Tfair */
2088#define T_FAIR_COEF ((MIN_ABOVE_THRESH + QM_ARB_BYTES) * 8 * MIN_RES)
2089/* Memory of fairness algorithm . 2 cycles */
2090#define FAIR_MEM 2
34f80b04
EG
2091
2092
2093#define ATTN_NIG_FOR_FUNC (1L << 8)
2094#define ATTN_SW_TIMER_4_FUNC (1L << 9)
2095#define GPIO_2_FUNC (1L << 10)
2096#define GPIO_3_FUNC (1L << 11)
2097#define GPIO_4_FUNC (1L << 12)
2098#define ATTN_GENERAL_ATTN_1 (1L << 13)
2099#define ATTN_GENERAL_ATTN_2 (1L << 14)
2100#define ATTN_GENERAL_ATTN_3 (1L << 15)
2101#define ATTN_GENERAL_ATTN_4 (1L << 13)
2102#define ATTN_GENERAL_ATTN_5 (1L << 14)
2103#define ATTN_GENERAL_ATTN_6 (1L << 15)
2104
2105#define ATTN_HARD_WIRED_MASK 0xff00
2106#define ATTENTION_ID 4
a2fbb9ea
ET
2107
2108
34f80b04
EG
2109/* stuff added to make the code fit 80Col */
2110
2111#define BNX2X_PMF_LINK_ASSERT \
2112 GENERAL_ATTEN_OFFSET(LINK_SYNC_ATTENTION_BIT_FUNC_0 + BP_FUNC(bp))
2113
a2fbb9ea
ET
2114#define BNX2X_MC_ASSERT_BITS \
2115 (GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
2116 GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
2117 GENERAL_ATTEN_OFFSET(CSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
2118 GENERAL_ATTEN_OFFSET(XSTORM_FATAL_ASSERT_ATTENTION_BIT))
2119
2120#define BNX2X_MCP_ASSERT \
2121 GENERAL_ATTEN_OFFSET(MCP_FATAL_ASSERT_ATTENTION_BIT)
2122
34f80b04
EG
2123#define BNX2X_GRC_TIMEOUT GENERAL_ATTEN_OFFSET(LATCHED_ATTN_TIMEOUT_GRC)
2124#define BNX2X_GRC_RSV (GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCR) | \
2125 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCT) | \
2126 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCN) | \
2127 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCU) | \
2128 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCP) | \
2129 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RSVD_GRC))
2130
a2fbb9ea
ET
2131#define HW_INTERRUT_ASSERT_SET_0 \
2132 (AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
2133 AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
2134 AEU_INPUTS_ATTN_BITS_TSEMI_HW_INTERRUPT | \
c9ee9206 2135 AEU_INPUTS_ATTN_BITS_PBCLIENT_HW_INTERRUPT)
34f80b04 2136#define HW_PRTY_ASSERT_SET_0 (AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR | \
a2fbb9ea
ET
2137 AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR | \
2138 AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR | \
2139 AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR |\
c9ee9206
VZ
2140 AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR |\
2141 AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR |\
2142 AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR)
a2fbb9ea
ET
2143#define HW_INTERRUT_ASSERT_SET_1 \
2144 (AEU_INPUTS_ATTN_BITS_QM_HW_INTERRUPT | \
2145 AEU_INPUTS_ATTN_BITS_TIMERS_HW_INTERRUPT | \
2146 AEU_INPUTS_ATTN_BITS_XSDM_HW_INTERRUPT | \
2147 AEU_INPUTS_ATTN_BITS_XCM_HW_INTERRUPT | \
2148 AEU_INPUTS_ATTN_BITS_XSEMI_HW_INTERRUPT | \
2149 AEU_INPUTS_ATTN_BITS_USDM_HW_INTERRUPT | \
2150 AEU_INPUTS_ATTN_BITS_UCM_HW_INTERRUPT | \
2151 AEU_INPUTS_ATTN_BITS_USEMI_HW_INTERRUPT | \
2152 AEU_INPUTS_ATTN_BITS_UPB_HW_INTERRUPT | \
2153 AEU_INPUTS_ATTN_BITS_CSDM_HW_INTERRUPT | \
2154 AEU_INPUTS_ATTN_BITS_CCM_HW_INTERRUPT)
c9ee9206 2155#define HW_PRTY_ASSERT_SET_1 (AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR |\
a2fbb9ea 2156 AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR | \
c9ee9206 2157 AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR |\
a2fbb9ea 2158 AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR | \
c9ee9206 2159 AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR |\
a2fbb9ea 2160 AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR | \
ab6ad5a4 2161 AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR |\
c9ee9206 2162 AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR |\
ab6ad5a4 2163 AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR |\
a2fbb9ea
ET
2164 AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR | \
2165 AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR | \
c9ee9206 2166 AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR |\
a2fbb9ea
ET
2167 AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR | \
2168 AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR | \
c9ee9206
VZ
2169 AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR |\
2170 AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR)
a2fbb9ea
ET
2171#define HW_INTERRUT_ASSERT_SET_2 \
2172 (AEU_INPUTS_ATTN_BITS_CSEMI_HW_INTERRUPT | \
2173 AEU_INPUTS_ATTN_BITS_CDU_HW_INTERRUPT | \
2174 AEU_INPUTS_ATTN_BITS_DMAE_HW_INTERRUPT | \
2175 AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_HW_INTERRUPT |\
2176 AEU_INPUTS_ATTN_BITS_MISC_HW_INTERRUPT)
34f80b04 2177#define HW_PRTY_ASSERT_SET_2 (AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR | \
a2fbb9ea
ET
2178 AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR | \
2179 AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR |\
2180 AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR | \
2181 AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR | \
c9ee9206 2182 AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR |\
a2fbb9ea
ET
2183 AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR | \
2184 AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)
2185
72fd0718
VZ
2186#define HW_PRTY_ASSERT_SET_3 (AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY | \
2187 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY | \
2188 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY | \
2189 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY)
a2fbb9ea 2190
8736c826
VZ
2191#define HW_PRTY_ASSERT_SET_4 (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR | \
2192 AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)
2193
34f80b04 2194#define MULTI_MASK 0x7f
a2fbb9ea 2195
619c5cb6
VZ
2196
2197#define DEF_USB_FUNC_OFF offsetof(struct cstorm_def_status_block_u, func)
2198#define DEF_CSB_FUNC_OFF offsetof(struct cstorm_def_status_block_c, func)
2199#define DEF_XSB_FUNC_OFF offsetof(struct xstorm_def_status_block, func)
2200#define DEF_TSB_FUNC_OFF offsetof(struct tstorm_def_status_block, func)
2201
2202#define DEF_USB_IGU_INDEX_OFF \
2203 offsetof(struct cstorm_def_status_block_u, igu_index)
2204#define DEF_CSB_IGU_INDEX_OFF \
2205 offsetof(struct cstorm_def_status_block_c, igu_index)
2206#define DEF_XSB_IGU_INDEX_OFF \
2207 offsetof(struct xstorm_def_status_block, igu_index)
2208#define DEF_TSB_IGU_INDEX_OFF \
2209 offsetof(struct tstorm_def_status_block, igu_index)
2210
2211#define DEF_USB_SEGMENT_OFF \
2212 offsetof(struct cstorm_def_status_block_u, segment)
2213#define DEF_CSB_SEGMENT_OFF \
2214 offsetof(struct cstorm_def_status_block_c, segment)
2215#define DEF_XSB_SEGMENT_OFF \
2216 offsetof(struct xstorm_def_status_block, segment)
2217#define DEF_TSB_SEGMENT_OFF \
2218 offsetof(struct tstorm_def_status_block, segment)
2219
a2fbb9ea 2220#define BNX2X_SP_DSB_INDEX \
523224a3
DK
2221 (&bp->def_status_blk->sp_sb.\
2222 index_values[HC_SP_INDEX_ETH_DEF_CONS])
f85582f8 2223
523224a3
DK
2224#define SET_FLAG(value, mask, flag) \
2225 do {\
2226 (value) &= ~(mask);\
2227 (value) |= ((flag) << (mask##_SHIFT));\
2228 } while (0)
a2fbb9ea 2229
523224a3 2230#define GET_FLAG(value, mask) \
619c5cb6 2231 (((value) & (mask)) >> (mask##_SHIFT))
a2fbb9ea 2232
f2e0899f
DK
2233#define GET_FIELD(value, fname) \
2234 (((value) & (fname##_MASK)) >> (fname##_SHIFT))
2235
a2fbb9ea 2236#define CAM_IS_INVALID(x) \
523224a3
DK
2237 (GET_FLAG(x.flags, \
2238 MAC_CONFIGURATION_ENTRY_ACTION_TYPE) == \
2239 (T_ETH_MAC_COMMAND_INVALIDATE))
a2fbb9ea 2240
34f80b04
EG
2241/* Number of u32 elements in MC hash array */
2242#define MC_HASH_SIZE 8
2243#define MC_HASH_OFFSET(bp, i) (BAR_TSTRORM_INTMEM + \
2244 TSTORM_APPROXIMATE_MATCH_MULTICAST_FILTERING_OFFSET(BP_FUNC(bp)) + i*4)
a2fbb9ea
ET
2245
2246
34f80b04
EG
2247#ifndef PXP2_REG_PXP2_INT_STS
2248#define PXP2_REG_PXP2_INT_STS PXP2_REG_PXP2_INT_STS_0
2249#endif
2250
f2e0899f
DK
2251#ifndef ETH_MAX_RX_CLIENTS_E2
2252#define ETH_MAX_RX_CLIENTS_E2 ETH_MAX_RX_CLIENTS_E1H
2253#endif
f85582f8 2254
34f24c7f
VZ
2255#define BNX2X_VPD_LEN 128
2256#define VENDOR_ID_LEN 4
2257
be1f1ffa
AE
2258#define VF_ACQUIRE_THRESH 3
2259#define VF_ACQUIRE_MAC_FILTERS 1
2260#define VF_ACQUIRE_MC_FILTERS 10
2261
2262#define GOOD_ME_REG(me_reg) (((me_reg) & ME_REG_VF_VALID) && \
2263 (!((me_reg) & ME_REG_VF_ERR)))
2264int bnx2x_get_vf_id(struct bnx2x *bp, u32 *vf_id);
2265int bnx2x_send_msg2pf(struct bnx2x *bp, u8 *done, dma_addr_t msg_mapping);
2266int bnx2x_vfpf_acquire(struct bnx2x *bp, u8 tx_count, u8 rx_count);
4513f925 2267int bnx2x_vfpf_release(struct bnx2x *bp);
8d9ac297 2268int bnx2x_vfpf_init(struct bnx2x *bp);
9b176b6b 2269void bnx2x_vfpf_close_vf(struct bnx2x *bp);
8d9ac297 2270int bnx2x_vfpf_setup_q(struct bnx2x *bp, int fp_idx);
9b176b6b 2271int bnx2x_vfpf_teardown_queue(struct bnx2x *bp, int qidx);
8d9ac297 2272int bnx2x_vfpf_set_mac(struct bnx2x *bp);
381ac16b
AE
2273int bnx2x_vfpf_set_mcast(struct net_device *dev);
2274int bnx2x_vfpf_storm_rx_mode(struct bnx2x *bp);
2275
ad5afc89 2276int bnx2x_nic_load_analyze_req(struct bnx2x *bp, u32 load_code);
523224a3
DK
2277/* Congestion management fairness mode */
2278#define CMNG_FNS_NONE 0
2279#define CMNG_FNS_MINMAX 1
2280
2281#define HC_SEG_ACCESS_DEF 0 /*Driver decision 0-3*/
2282#define HC_SEG_ACCESS_ATTN 4
2283#define HC_SEG_ACCESS_NORM 0 /*Driver decision 0-1*/
2284
619c5cb6
VZ
2285static const u32 dmae_reg_go_c[] = {
2286 DMAE_REG_GO_C0, DMAE_REG_GO_C1, DMAE_REG_GO_C2, DMAE_REG_GO_C3,
2287 DMAE_REG_GO_C4, DMAE_REG_GO_C5, DMAE_REG_GO_C6, DMAE_REG_GO_C7,
2288 DMAE_REG_GO_C8, DMAE_REG_GO_C9, DMAE_REG_GO_C10, DMAE_REG_GO_C11,
2289 DMAE_REG_GO_C12, DMAE_REG_GO_C13, DMAE_REG_GO_C14, DMAE_REG_GO_C15
2290};
de0c62db 2291
619c5cb6 2292void bnx2x_set_ethtool_ops(struct net_device *netdev);
3deb8167 2293void bnx2x_notify_link_changed(struct bnx2x *bp);
614c76df
DK
2294
2295
9e62e912 2296#define BNX2X_MF_SD_PROTOCOL(bp) \
614c76df
DK
2297 ((bp)->mf_config[BP_VN(bp)] & FUNC_MF_CFG_PROTOCOL_MASK)
2298
9e62e912
DK
2299#define BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp) \
2300 (BNX2X_MF_SD_PROTOCOL(bp) == FUNC_MF_CFG_PROTOCOL_ISCSI)
614c76df 2301
9e62e912
DK
2302#define BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp) \
2303 (BNX2X_MF_SD_PROTOCOL(bp) == FUNC_MF_CFG_PROTOCOL_FCOE)
2304
2305#define IS_MF_ISCSI_SD(bp) (IS_MF_SD(bp) && BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp))
2306#define IS_MF_FCOE_SD(bp) (IS_MF_SD(bp) && BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp))
2307
a3348722
BW
2308#define BNX2X_MF_EXT_PROTOCOL_FCOE(bp) ((bp)->mf_ext_config & \
2309 MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD)
2310
2311#define IS_MF_FCOE_AFEX(bp) (IS_MF_AFEX(bp) && BNX2X_MF_EXT_PROTOCOL_FCOE(bp))
9e62e912
DK
2312#define IS_MF_STORAGE_SD(bp) (IS_MF_SD(bp) && \
2313 (BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp) || \
2314 BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)))
614c76df 2315
55c11941
MS
2316enum {
2317 SWITCH_UPDATE,
2318 AFEX_UPDATE,
2319};
2320
2321#define NUM_MACS 8
a3348722 2322
a2fbb9ea 2323#endif /* bnx2x.h */
This page took 1.054542 seconds and 5 git commands to generate.