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