bnx2x.h 61.3 KB
Newer Older
E
Eliezer Tamir 已提交
1 2
/* bnx2x.h: Broadcom Everest network driver.
 *
3
 * Copyright (c) 2007-2011 Broadcom Corporation
E
Eliezer Tamir 已提交
4 5 6 7 8
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation.
 *
9 10
 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
 * Written by: Eliezer Tamir
E
Eliezer Tamir 已提交
11 12 13 14 15
 * Based on code from Michael Chan's bnx2 driver
 */

#ifndef BNX2X_H
#define BNX2X_H
V
Vladislav Zolotarov 已提交
16
#include <linux/netdevice.h>
17
#include <linux/dma-mapping.h>
V
Vladislav Zolotarov 已提交
18
#include <linux/types.h>
E
Eliezer Tamir 已提交
19

20 21 22 23 24 25
/* compilation time flags */

/* define this to make the driver freeze on error to allow getting debug info
 * (you will need to reboot afterwards) */
/* #define BNX2X_STOP_ON_ERROR */

26 27
#define DRV_MODULE_VERSION      "1.70.35-0"
#define DRV_MODULE_RELDATE      "2011/11/10"
28 29
#define BNX2X_BC_VER            0x040200

S
Shmulik Ravid 已提交
30
#if defined(CONFIG_DCB)
31
#define BCM_DCBNL
S
Shmulik Ravid 已提交
32
#endif
33 34
#if defined(CONFIG_CNIC) || defined(CONFIG_CNIC_MODULE)
#define BCM_CNIC 1
35
#include "../cnic_if.h"
36
#endif
37

38 39 40 41 42 43 44
#ifdef BCM_CNIC
#define BNX2X_MIN_MSIX_VEC_CNT 3
#define BNX2X_MSIX_VEC_FP_START 2
#else
#define BNX2X_MIN_MSIX_VEC_CNT 2
#define BNX2X_MSIX_VEC_FP_START 1
#endif
E
Eilon Greenstein 已提交
45 46

#include <linux/mdio.h>
47

E
Eilon Greenstein 已提交
48 49 50 51
#include "bnx2x_reg.h"
#include "bnx2x_fw_defs.h"
#include "bnx2x_hsi.h"
#include "bnx2x_link.h"
52
#include "bnx2x_sp.h"
V
Vladislav Zolotarov 已提交
53
#include "bnx2x_dcb.h"
54
#include "bnx2x_stats.h"
E
Eilon Greenstein 已提交
55

E
Eliezer Tamir 已提交
56 57
/* error/debug prints */

58
#define DRV_MODULE_NAME		"bnx2x"
E
Eliezer Tamir 已提交
59 60

/* for messages that are currently off */
61 62 63 64 65
#define BNX2X_MSG_OFF			0
#define BNX2X_MSG_MCP			0x010000 /* was: NETIF_MSG_HW */
#define BNX2X_MSG_STATS			0x020000 /* was: NETIF_MSG_TIMER */
#define BNX2X_MSG_NVM			0x040000 /* was: NETIF_MSG_HW */
#define BNX2X_MSG_DMAE			0x080000 /* was: NETIF_MSG_HW */
E
Eliezer Tamir 已提交
66 67
#define BNX2X_MSG_SP			0x100000 /* was: NETIF_MSG_INTR */
#define BNX2X_MSG_FP			0x200000 /* was: NETIF_MSG_INTR */
E
Eliezer Tamir 已提交
68 69

/* regular debug print */
70
#define DP(__mask, fmt, ...)					\
71 72
do {								\
	if (bp->msg_enable & (__mask))				\
73 74 75 76
		pr_notice("[%s:%d(%s)]" fmt,			\
			  __func__, __LINE__,			\
			  bp->dev ? (bp->dev->name) : "?",	\
			  ##__VA_ARGS__);			\
77
} while (0)
E
Eliezer Tamir 已提交
78

79
#define DP_CONT(__mask, fmt, ...)				\
80 81
do {								\
	if (bp->msg_enable & (__mask))				\
82
		pr_cont(fmt, ##__VA_ARGS__);			\
83 84
} while (0)

85
/* errors debug print */
86
#define BNX2X_DBG_ERR(fmt, ...)					\
87 88
do {								\
	if (netif_msg_probe(bp))				\
89
		pr_err("[%s:%d(%s)]" fmt,			\
90 91
		       __func__, __LINE__,			\
		       bp->dev ? (bp->dev->name) : "?",		\
92
		       ##__VA_ARGS__);				\
93
} while (0)
E
Eliezer Tamir 已提交
94

95
/* for errors (never masked) */
96
#define BNX2X_ERR(fmt, ...)					\
97
do {								\
98
	pr_err("[%s:%d(%s)]" fmt,				\
99 100
	       __func__, __LINE__,				\
	       bp->dev ? (bp->dev->name) : "?",			\
101 102
	       ##__VA_ARGS__);					\
} while (0)
V
Vladislav Zolotarov 已提交
103

104 105
#define BNX2X_ERROR(fmt, ...)					\
	pr_err("[%s:%d]" fmt, __func__, __LINE__, ##__VA_ARGS__)
V
Vladislav Zolotarov 已提交
106

E
Eliezer Tamir 已提交
107

E
Eliezer Tamir 已提交
108
/* before we have a dev->name use dev_info() */
109
#define BNX2X_DEV_INFO(fmt, ...)				 \
110 111
do {								 \
	if (netif_msg_probe(bp))				 \
112
		dev_info(&bp->pdev->dev, fmt, ##__VA_ARGS__);	 \
113
} while (0)
E
Eliezer Tamir 已提交
114 115

#ifdef BNX2X_STOP_ON_ERROR
116
void bnx2x_int_disable(struct bnx2x *bp);
117 118 119 120 121 122 123
#define bnx2x_panic()				\
do {						\
	bp->panic = 1;				\
	BNX2X_ERR("driver assert\n");		\
	bnx2x_int_disable(bp);			\
	bnx2x_panic_dump(bp);			\
} while (0)
E
Eliezer Tamir 已提交
124
#else
125 126 127 128 129 130
#define bnx2x_panic()				\
do {						\
	bp->panic = 1;				\
	BNX2X_ERR("driver assert\n");		\
	bnx2x_panic_dump(bp);			\
} while (0)
E
Eliezer Tamir 已提交
131 132
#endif

133
#define bnx2x_mc_addr(ha)      ((ha)->addr)
134
#define bnx2x_uc_addr(ha)      ((ha)->addr)
E
Eliezer Tamir 已提交
135

136 137 138
#define U64_LO(x)			(u32)(((u64)(x)) & 0xffffffff)
#define U64_HI(x)			(u32)(((u64)(x)) >> 32)
#define HILO_U64(hi, lo)		((((u64)(hi)) << 32) + (lo))
E
Eliezer Tamir 已提交
139 140


141
#define REG_ADDR(bp, offset)		((bp->regview) + (offset))
E
Eliezer Tamir 已提交
142

143 144
#define REG_RD(bp, offset)		readl(REG_ADDR(bp, offset))
#define REG_RD8(bp, offset)		readb(REG_ADDR(bp, offset))
145
#define REG_RD16(bp, offset)		readw(REG_ADDR(bp, offset))
146 147

#define REG_WR(bp, offset, val)		writel((u32)val, REG_ADDR(bp, offset))
E
Eliezer Tamir 已提交
148
#define REG_WR8(bp, offset, val)	writeb((u8)val, REG_ADDR(bp, offset))
149
#define REG_WR16(bp, offset, val)	writew((u16)val, REG_ADDR(bp, offset))
E
Eliezer Tamir 已提交
150

151 152
#define REG_RD_IND(bp, offset)		bnx2x_reg_rd_ind(bp, offset)
#define REG_WR_IND(bp, offset, val)	bnx2x_reg_wr_ind(bp, offset, val)
E
Eliezer Tamir 已提交
153

Y
Yaniv Rosner 已提交
154 155 156
#define REG_RD_DMAE(bp, offset, valp, len32) \
	do { \
		bnx2x_read_dmae(bp, offset, len32);\
157
		memcpy(valp, bnx2x_sp(bp, wb_data[0]), (len32) * 4); \
Y
Yaniv Rosner 已提交
158 159
	} while (0)

160
#define REG_WR_DMAE(bp, offset, valp, len32) \
E
Eliezer Tamir 已提交
161
	do { \
162
		memcpy(bnx2x_sp(bp, wb_data[0]), valp, (len32) * 4); \
E
Eliezer Tamir 已提交
163 164 165 166
		bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
				 offset, len32); \
	} while (0)

167 168 169
#define REG_WR_DMAE_LEN(bp, offset, valp, len32) \
	REG_WR_DMAE(bp, offset, valp, len32)

V
Vladislav Zolotarov 已提交
170
#define VIRT_WR_DMAE_LEN(bp, data, addr, len32, le32_swap) \
171 172 173 174 175
	do { \
		memcpy(GUNZIP_BUF(bp), data, (len32) * 4); \
		bnx2x_write_big_buf_wb(bp, addr, len32); \
	} while (0)

176 177 178 179
#define SHMEM_ADDR(bp, field)		(bp->common.shmem_base + \
					 offsetof(struct shmem_region, field))
#define SHMEM_RD(bp, field)		REG_RD(bp, SHMEM_ADDR(bp, field))
#define SHMEM_WR(bp, field, val)	REG_WR(bp, SHMEM_ADDR(bp, field), val)
E
Eliezer Tamir 已提交
180

181 182 183 184
#define SHMEM2_ADDR(bp, field)		(bp->common.shmem2_base + \
					 offsetof(struct shmem2_region, field))
#define SHMEM2_RD(bp, field)		REG_RD(bp, SHMEM2_ADDR(bp, field))
#define SHMEM2_WR(bp, field, val)	REG_WR(bp, SHMEM2_ADDR(bp, field), val)
185 186
#define MF_CFG_ADDR(bp, field)		(bp->common.mf_cfg_base + \
					 offsetof(struct mf_cfg, field))
D
Dmitry Kravkov 已提交
187
#define MF2_CFG_ADDR(bp, field)		(bp->common.mf2_cfg_base + \
D
Dmitry Kravkov 已提交
188
					 offsetof(struct mf2_cfg, field))
189

190 191 192
#define MF_CFG_RD(bp, field)		REG_RD(bp, MF_CFG_ADDR(bp, field))
#define MF_CFG_WR(bp, field, val)	REG_WR(bp,\
					       MF_CFG_ADDR(bp, field), (val))
D
Dmitry Kravkov 已提交
193
#define MF2_CFG_RD(bp, field)		REG_RD(bp, MF2_CFG_ADDR(bp, field))
D
Dmitry Kravkov 已提交
194

D
Dmitry Kravkov 已提交
195 196 197
#define SHMEM2_HAS(bp, field)		((bp)->common.shmem2_base &&	\
					 (SHMEM2_RD((bp), size) >	\
					 offsetof(struct shmem2_region, field)))
198

199
#define EMAC_RD(bp, reg)		REG_RD(bp, emac_base + reg)
200
#define EMAC_WR(bp, reg, val)		REG_WR(bp, emac_base + reg, val)
E
Eliezer Tamir 已提交
201

202 203 204 205 206 207 208 209
/* SP SB indices */

/* General SP events - stats query, cfc delete, etc  */
#define HC_SP_INDEX_ETH_DEF_CONS		3

/* EQ completions */
#define HC_SP_INDEX_EQ_CONS			7

V
Vladislav Zolotarov 已提交
210 211 212
/* FCoE L2 connection completions */
#define HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS		6
#define HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS		4
213 214 215 216
/* iSCSI L2 */
#define HC_SP_INDEX_ETH_ISCSI_CQ_CONS		5
#define HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS	1

V
Vladislav Zolotarov 已提交
217 218 219 220 221 222 223 224 225 226 227 228
/* Special clients parameters */

/* SB indices */
/* FCoE L2 */
#define BNX2X_FCOE_L2_RX_INDEX \
	(&bp->def_status_blk->sp_sb.\
	index_values[HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS])

#define BNX2X_FCOE_L2_TX_INDEX \
	(&bp->def_status_blk->sp_sb.\
	index_values[HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS])

229 230 231 232 233 234 235 236
/**
 *  CIDs and CLIDs:
 *  CLIDs below is a CLID for func 0, then the CLID for other
 *  functions will be calculated by the formula:
 *
 *  FUNC_N_CLID_X = N * NUM_SPECIAL_CLIENTS + FUNC_0_CLID_X
 *
 */
237 238 239 240 241 242 243 244 245 246 247 248 249
enum {
	BNX2X_ISCSI_ETH_CL_ID_IDX,
	BNX2X_FCOE_ETH_CL_ID_IDX,
	BNX2X_MAX_CNIC_ETH_CL_ID_IDX,
};

#define BNX2X_CNIC_START_ETH_CID	48
enum {
	/* iSCSI L2 */
	BNX2X_ISCSI_ETH_CID = BNX2X_CNIC_START_ETH_CID,
	/* FCoE L2 */
	BNX2X_FCOE_ETH_CID,
};
V
Vladislav Zolotarov 已提交
250

251 252
/** Additional rings budgeting */
#ifdef BCM_CNIC
253 254
#define CNIC_PRESENT			1
#define FCOE_PRESENT			1
255
#else
256 257
#define CNIC_PRESENT			0
#define FCOE_PRESENT			0
258
#endif /* BCM_CNIC */
259
#define NON_ETH_CONTEXT_USE	(FCOE_PRESENT)
260

261 262 263
#define AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR \
	AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR

264 265
#define SM_RX_ID			0
#define SM_TX_ID			1
E
Eliezer Tamir 已提交
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
/* defines for multiple tx priority indices */
#define FIRST_TX_ONLY_COS_INDEX		1
#define FIRST_TX_COS_INDEX		0

/* defines for decodeing the fastpath index and the cos index out of the
 * transmission queue index
 */
#define MAX_TXQS_PER_COS	FP_SB_MAX_E1x

#define TXQ_TO_FP(txq_index)	((txq_index) % MAX_TXQS_PER_COS)
#define TXQ_TO_COS(txq_index)	((txq_index) / MAX_TXQS_PER_COS)

/* rules for calculating the cids of tx-only connections */
#define CID_TO_FP(cid)		((cid) % MAX_TXQS_PER_COS)
#define CID_COS_TO_TX_ONLY_CID(cid, cos)	(cid + cos * MAX_TXQS_PER_COS)

/* fp index inside class of service range */
#define FP_COS_TO_TXQ(fp, cos)    ((fp)->index + cos * MAX_TXQS_PER_COS)

/*
 * 0..15 eth cos0
 * 16..31 eth cos1 if applicable
 * 32..47 eth cos2 If applicable
 * fcoe queue follows eth queues (16, 32, 48 depending on cos)
 */
#define MAX_ETH_TXQ_IDX(bp)	(MAX_TXQS_PER_COS * (bp)->max_cos)
#define FCOE_TXQ_IDX(bp)	(MAX_ETH_TXQ_IDX(bp))
E
Eliezer Tamir 已提交
294

295
/* fast path */
296 297 298 299 300
/*
 * This driver uses new build_skb() API :
 * RX ring buffer contains pointer to kmalloc() data only,
 * skb are built only after Hardware filled the frame.
 */
E
Eliezer Tamir 已提交
301
struct sw_rx_bd {
302
	u8		*data;
303
	DEFINE_DMA_UNMAP_ADDR(mapping);
E
Eliezer Tamir 已提交
304 305 306
};

struct sw_tx_bd {
307 308
	struct sk_buff	*skb;
	u16		first_bd;
E
Eilon Greenstein 已提交
309 310 311
	u8		flags;
/* Set on the first BD descriptor when there is a split BD */
#define BNX2X_TSO_SPLIT_BD		(1<<0)
E
Eliezer Tamir 已提交
312 313
};

314 315
struct sw_rx_page {
	struct page	*page;
316
	DEFINE_DMA_UNMAP_ADDR(mapping);
317 318
};

E
Eilon Greenstein 已提交
319 320 321 322 323
union db_prod {
	struct doorbell_set_prod data;
	u32		raw;
};

324 325 326 327 328 329 330 331
/* dropless fc FW/HW related params */
#define BRB_SIZE(bp)		(CHIP_IS_E3(bp) ? 1024 : 512)
#define MAX_AGG_QS(bp)		(CHIP_IS_E1(bp) ? \
					ETH_MAX_AGGREGATION_QUEUES_E1 :\
					ETH_MAX_AGGREGATION_QUEUES_E1H_E2)
#define FW_DROP_LEVEL(bp)	(3 + MAX_SPQ_PENDING + MAX_AGG_QS(bp))
#define FW_PREFETCH_CNT		16
#define DROPLESS_FC_HEADROOM	100
332 333

/* MC hsi */
334 335 336
#define BCM_PAGE_SHIFT		12
#define BCM_PAGE_SIZE		(1 << BCM_PAGE_SHIFT)
#define BCM_PAGE_MASK		(~(BCM_PAGE_SIZE - 1))
337 338
#define BCM_PAGE_ALIGN(addr)	(((addr) + BCM_PAGE_SIZE - 1) & BCM_PAGE_MASK)

339 340 341 342 343
#define PAGES_PER_SGE_SHIFT	0
#define PAGES_PER_SGE		(1 << PAGES_PER_SGE_SHIFT)
#define SGE_PAGE_SIZE		PAGE_SIZE
#define SGE_PAGE_SHIFT		PAGE_SHIFT
#define SGE_PAGE_ALIGN(addr)	PAGE_ALIGN((typeof(PAGE_SIZE))(addr))
344 345

/* SGE ring related macros */
346
#define NUM_RX_SGE_PAGES	2
347
#define RX_SGE_CNT		(BCM_PAGE_SIZE / sizeof(struct eth_rx_sge))
348 349
#define NEXT_PAGE_SGE_DESC_CNT	2
#define MAX_RX_SGE_CNT		(RX_SGE_CNT - NEXT_PAGE_SGE_DESC_CNT)
E
Eilon Greenstein 已提交
350
/* RX_SGE_CNT is promised to be a power of 2 */
351 352 353
#define RX_SGE_MASK		(RX_SGE_CNT - 1)
#define NUM_RX_SGE		(RX_SGE_CNT * NUM_RX_SGE_PAGES)
#define MAX_RX_SGE		(NUM_RX_SGE - 1)
354
#define NEXT_SGE_IDX(x)		((((x) & RX_SGE_MASK) == \
355 356 357
				  (MAX_RX_SGE_CNT - 1)) ? \
					(x) + 1 + NEXT_PAGE_SGE_DESC_CNT : \
					(x) + 1)
358 359
#define RX_SGE(x)		((x) & MAX_RX_SGE)

360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
/*
 * Number of required  SGEs is the sum of two:
 * 1. Number of possible opened aggregations (next packet for
 *    these aggregations will probably consume SGE immidiatelly)
 * 2. Rest of BRB blocks divided by 2 (block will consume new SGE only
 *    after placement on BD for new TPA aggregation)
 *
 * Takes into account NEXT_PAGE_SGE_DESC_CNT "next" elements on each page
 */
#define NUM_SGE_REQ		(MAX_AGG_QS(bp) + \
					(BRB_SIZE(bp) - MAX_AGG_QS(bp)) / 2)
#define NUM_SGE_PG_REQ		((NUM_SGE_REQ + MAX_RX_SGE_CNT - 1) / \
						MAX_RX_SGE_CNT)
#define SGE_TH_LO(bp)		(NUM_SGE_REQ + \
				 NUM_SGE_PG_REQ * NEXT_PAGE_SGE_DESC_CNT)
#define SGE_TH_HI(bp)		(SGE_TH_LO(bp) + DROPLESS_FC_HEADROOM)

377
/* Manipulate a bit vector defined as an array of u64 */
378 379

/* Number of bits in one sge_mask array element */
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
#define BIT_VEC64_ELEM_SZ		64
#define BIT_VEC64_ELEM_SHIFT		6
#define BIT_VEC64_ELEM_MASK		((u64)BIT_VEC64_ELEM_SZ - 1)


#define __BIT_VEC64_SET_BIT(el, bit) \
	do { \
		el = ((el) | ((u64)0x1 << (bit))); \
	} while (0)

#define __BIT_VEC64_CLEAR_BIT(el, bit) \
	do { \
		el = ((el) & (~((u64)0x1 << (bit)))); \
	} while (0)


#define BIT_VEC64_SET_BIT(vec64, idx) \
	__BIT_VEC64_SET_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
			   (idx) & BIT_VEC64_ELEM_MASK)

#define BIT_VEC64_CLEAR_BIT(vec64, idx) \
	__BIT_VEC64_CLEAR_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
			     (idx) & BIT_VEC64_ELEM_MASK)

#define BIT_VEC64_TEST_BIT(vec64, idx) \
	(((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT] >> \
	((idx) & BIT_VEC64_ELEM_MASK)) & 0x1)
407 408 409

/* Creates a bitmask of all ones in less significant bits.
   idx - index of the most significant bit in the created mask */
410 411 412 413 414 415 416
#define BIT_VEC64_ONES_MASK(idx) \
		(((u64)0x1 << (((idx) & BIT_VEC64_ELEM_MASK) + 1)) - 1)
#define BIT_VEC64_ELEM_ONE_MASK	((u64)(~0))

/*******************************************************/


417 418

/* Number of u64 elements in SGE mask array */
419
#define RX_SGE_MASK_LEN			(NUM_RX_SGE / BIT_VEC64_ELEM_SZ)
420 421 422
#define RX_SGE_MASK_LEN_MASK		(RX_SGE_MASK_LEN - 1)
#define NEXT_SGE_MASK_ELEM(el)		(((el) + 1) & RX_SGE_MASK_LEN_MASK)

423 424 425
union host_hc_status_block {
	/* pointer to fp status block e1x */
	struct host_hc_status_block_e1x *e1x_sb;
D
Dmitry Kravkov 已提交
426 427
	/* pointer to fp status block e2 */
	struct host_hc_status_block_e2  *e2_sb;
428
};
429

430 431
struct bnx2x_agg_info {
	/*
432 433
	 * First aggregation buffer is a data buffer, the following - are pages.
	 * We will preallocate the data buffer for each aggregation when
434 435 436 437 438 439 440 441 442 443 444 445 446
	 * we open the interface and will replace the BD at the consumer
	 * with this one when we receive the TPA_START CQE in order to
	 * keep the Rx BD ring consistent.
	 */
	struct sw_rx_bd		first_buf;
	u8			tpa_state;
#define BNX2X_TPA_START			1
#define BNX2X_TPA_STOP			2
#define BNX2X_TPA_ERROR			3
	u8			placement_offset;
	u16			parsing_flags;
	u16			vlan_tag;
	u16			len_on_bd;
447
	u32			rxhash;
448 449 450 451 452
};

#define Q_STATS_OFFSET32(stat_name) \
			(offsetof(struct bnx2x_eth_q_stats, stat_name) / 4)

453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
struct bnx2x_fp_txdata {

	struct sw_tx_bd		*tx_buf_ring;

	union eth_tx_bd_types	*tx_desc_ring;
	dma_addr_t		tx_desc_mapping;

	u32			cid;

	union db_prod		tx_db;

	u16			tx_pkt_prod;
	u16			tx_pkt_cons;
	u16			tx_bd_prod;
	u16			tx_bd_cons;

	unsigned long		tx_pkt;

	__le16			*tx_cons_sb;

	int			txq_index;
};

E
Eliezer Tamir 已提交
476
struct bnx2x_fastpath {
477
	struct bnx2x		*bp; /* parent */
E
Eliezer Tamir 已提交
478

479
#define BNX2X_NAPI_WEIGHT       128
480
	struct napi_struct	napi;
D
Dmitry Kravkov 已提交
481
	union host_hc_status_block	status_blk;
482 483 484 485 486 487
	/* chip independed shortcuts into sb structure */
	__le16			*sb_index_values;
	__le16			*sb_running_index;
	/* chip independed shortcut into rx_prods_offset memory */
	u32			ustorm_rx_prods_offset;

488 489
	u32			rx_buf_size;

490
	dma_addr_t		status_blk_mapping;
E
Eliezer Tamir 已提交
491

492 493
	u8			max_cos; /* actual number of active tx coses */
	struct bnx2x_fp_txdata	txdata[BNX2X_MULTI_TX_COS];
E
Eliezer Tamir 已提交
494

495 496
	struct sw_rx_bd		*rx_buf_ring;	/* BDs mappings ring */
	struct sw_rx_page	*rx_page_ring;	/* SGE pages mappings ring */
E
Eliezer Tamir 已提交
497 498

	struct eth_rx_bd	*rx_desc_ring;
499
	dma_addr_t		rx_desc_mapping;
E
Eliezer Tamir 已提交
500 501

	union eth_rx_cqe	*rx_comp_ring;
502 503
	dma_addr_t		rx_comp_mapping;

504 505 506 507 508 509
	/* SGE ring */
	struct eth_rx_sge	*rx_sge_ring;
	dma_addr_t		rx_sge_mapping;

	u64			sge_mask[RX_SGE_MASK_LEN];

510
	u32			cid;
511

512 513
	__le16			fp_hc_idx;

D
Dmitry Kravkov 已提交
514
	u8			index;		/* number in fp array */
515
	u8			rx_queue;	/* index for skb_record */
D
Dmitry Kravkov 已提交
516
	u8			cl_id;		/* eth client id */
517 518 519
	u8			cl_qzone_id;
	u8			fw_sb_id;	/* status block number in FW */
	u8			igu_sb_id;	/* status block number in HW */
520 521 522 523 524

	u16			rx_bd_prod;
	u16			rx_bd_cons;
	u16			rx_comp_prod;
	u16			rx_comp_cons;
525 526 527
	u16			rx_sge_prod;
	/* The last maximal completed SGE */
	u16			last_max_sge;
528
	__le16			*rx_cons_sb;
529
	unsigned long		rx_pkt,
Y
Yitchak Gertner 已提交
530
				rx_calls;
531

532
	/* TPA related */
533
	struct bnx2x_agg_info	tpa_info[ETH_MAX_AGGREGATION_QUEUES_E1H_E2];
534 535 536 537
	u8			disable_tpa;
#ifdef BNX2X_STOP_ON_ERROR
	u64			tpa_queue_used;
#endif
E
Eliezer Tamir 已提交
538

539 540 541
	struct tstorm_per_queue_stats old_tclient;
	struct ustorm_per_queue_stats old_uclient;
	struct xstorm_per_queue_stats old_xclient;
E
Eilon Greenstein 已提交
542 543
	struct bnx2x_eth_q_stats eth_q_stats;

E
Eilon Greenstein 已提交
544 545 546 547 548 549
	/* The size is calculated using the following:
	     sizeof name field from netdev structure +
	     4 ('-Xx-' string) +
	     4 (for the digits and to make it DWORD aligned) */
#define FP_NAME_SIZE		(sizeof(((struct net_device *)0)->name) + 8)
	char			name[FP_NAME_SIZE];
550 551 552 553 554 555 556

	/* MACs object */
	struct bnx2x_vlan_mac_obj mac_obj;

	/* Queue State object */
	struct bnx2x_queue_sp_obj q_obj;

E
Eliezer Tamir 已提交
557 558
};

559
#define bnx2x_fp(bp, nr, var)		(bp->fp[nr].var)
560 561 562 563

/* Use 2500 as a mini-jumbo MTU for FCoE */
#define BNX2X_FCOE_MINI_JUMBO_MTU	2500

564
/* FCoE L2 `fastpath' entry is right after the eth entries */
V
Vladislav Zolotarov 已提交
565 566 567
#define FCOE_IDX			BNX2X_NUM_ETH_QUEUES(bp)
#define bnx2x_fcoe_fp(bp)		(&bp->fp[FCOE_IDX])
#define bnx2x_fcoe(bp, var)		(bnx2x_fcoe_fp(bp)->var)
568 569
#define bnx2x_fcoe_tx(bp, var)		(bnx2x_fcoe_fp(bp)-> \
						txdata[FIRST_TX_COS_INDEX].var)
570 571


572 573
#define IS_ETH_FP(fp)			(fp->index < \
					 BNX2X_NUM_ETH_QUEUES(fp->bp))
574
#ifdef BCM_CNIC
V
Vladislav Zolotarov 已提交
575 576 577 578 579 580
#define IS_FCOE_FP(fp)			(fp->index == FCOE_IDX)
#define IS_FCOE_IDX(idx)		((idx) == FCOE_IDX)
#else
#define IS_FCOE_FP(fp)		false
#define IS_FCOE_IDX(idx)	false
#endif
581 582 583


/* MC hsi */
584 585
#define MAX_FETCH_BD		13	/* HW max BDs per packet */
#define RX_COPY_THRESH		92
586

587
#define NUM_TX_RINGS		16
E
Eilon Greenstein 已提交
588
#define TX_DESC_CNT		(BCM_PAGE_SIZE / sizeof(union eth_tx_bd_types))
589 590
#define NEXT_PAGE_TX_DESC_CNT	1
#define MAX_TX_DESC_CNT		(TX_DESC_CNT - NEXT_PAGE_TX_DESC_CNT)
591 592 593
#define NUM_TX_BD		(TX_DESC_CNT * NUM_TX_RINGS)
#define MAX_TX_BD		(NUM_TX_BD - 1)
#define MAX_TX_AVAIL		(MAX_TX_DESC_CNT * NUM_TX_RINGS - 2)
594
#define NEXT_TX_IDX(x)		((((x) & MAX_TX_DESC_CNT) == \
595 596 597
				  (MAX_TX_DESC_CNT - 1)) ? \
					(x) + 1 + NEXT_PAGE_TX_DESC_CNT : \
					(x) + 1)
598 599
#define TX_BD(x)		((x) & MAX_TX_BD)
#define TX_BD_POFF(x)		((x) & MAX_TX_DESC_CNT)
600 601

/* The RX BD ring is special, each bd is 8 bytes but the last one is 16 */
602
#define NUM_RX_RINGS		8
603
#define RX_DESC_CNT		(BCM_PAGE_SIZE / sizeof(struct eth_rx_bd))
604 605
#define NEXT_PAGE_RX_DESC_CNT	2
#define MAX_RX_DESC_CNT		(RX_DESC_CNT - NEXT_PAGE_RX_DESC_CNT)
606 607 608 609
#define RX_DESC_MASK		(RX_DESC_CNT - 1)
#define NUM_RX_BD		(RX_DESC_CNT * NUM_RX_RINGS)
#define MAX_RX_BD		(NUM_RX_BD - 1)
#define MAX_RX_AVAIL		(MAX_RX_DESC_CNT * NUM_RX_RINGS - 2)
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625

/* dropless fc calculations for BDs
 *
 * Number of BDs should as number of buffers in BRB:
 * Low threshold takes into account NEXT_PAGE_RX_DESC_CNT
 * "next" elements on each page
 */
#define NUM_BD_REQ		BRB_SIZE(bp)
#define NUM_BD_PG_REQ		((NUM_BD_REQ + MAX_RX_DESC_CNT - 1) / \
					      MAX_RX_DESC_CNT)
#define BD_TH_LO(bp)		(NUM_BD_REQ + \
				 NUM_BD_PG_REQ * NEXT_PAGE_RX_DESC_CNT + \
				 FW_DROP_LEVEL(bp))
#define BD_TH_HI(bp)		(BD_TH_LO(bp) + DROPLESS_FC_HEADROOM)

#define MIN_RX_AVAIL		((bp)->dropless_fc ? BD_TH_HI(bp) + 128 : 128)
626 627 628 629 630 631 632 633 634

#define MIN_RX_SIZE_TPA_HW	(CHIP_IS_E1(bp) ? \
					ETH_MIN_RX_CQES_WITH_TPA_E1 : \
					ETH_MIN_RX_CQES_WITH_TPA_E1H_E2)
#define MIN_RX_SIZE_NONTPA_HW   ETH_MIN_RX_CQES_WITHOUT_TPA
#define MIN_RX_SIZE_TPA		(max_t(u32, MIN_RX_SIZE_TPA_HW, MIN_RX_AVAIL))
#define MIN_RX_SIZE_NONTPA	(max_t(u32, MIN_RX_SIZE_NONTPA_HW,\
								MIN_RX_AVAIL))

635
#define NEXT_RX_IDX(x)		((((x) & RX_DESC_MASK) == \
636 637 638
				  (MAX_RX_DESC_CNT - 1)) ? \
					(x) + 1 + NEXT_PAGE_RX_DESC_CNT : \
					(x) + 1)
639
#define RX_BD(x)		((x) & MAX_RX_BD)
640

641 642 643 644 645 646
/*
 * As long as CQE is X times bigger than BD entry we have to allocate X times
 * more pages for CQ ring in order to keep it balanced with BD ring
 */
#define CQE_BD_REL	(sizeof(union eth_rx_cqe) / sizeof(struct eth_rx_bd))
#define NUM_RCQ_RINGS		(NUM_RX_RINGS * CQE_BD_REL)
647
#define RCQ_DESC_CNT		(BCM_PAGE_SIZE / sizeof(union eth_rx_cqe))
648 649
#define NEXT_PAGE_RCQ_DESC_CNT	1
#define MAX_RCQ_DESC_CNT	(RCQ_DESC_CNT - NEXT_PAGE_RCQ_DESC_CNT)
650 651 652
#define NUM_RCQ_BD		(RCQ_DESC_CNT * NUM_RCQ_RINGS)
#define MAX_RCQ_BD		(NUM_RCQ_BD - 1)
#define MAX_RCQ_AVAIL		(MAX_RCQ_DESC_CNT * NUM_RCQ_RINGS - 2)
653
#define NEXT_RCQ_IDX(x)		((((x) & MAX_RCQ_DESC_CNT) == \
654 655 656
				  (MAX_RCQ_DESC_CNT - 1)) ? \
					(x) + 1 + NEXT_PAGE_RCQ_DESC_CNT : \
					(x) + 1)
657
#define RCQ_BD(x)		((x) & MAX_RCQ_BD)
658

659 660 661 662 663 664 665 666 667 668 669 670 671 672
/* dropless fc calculations for RCQs
 *
 * Number of RCQs should be as number of buffers in BRB:
 * Low threshold takes into account NEXT_PAGE_RCQ_DESC_CNT
 * "next" elements on each page
 */
#define NUM_RCQ_REQ		BRB_SIZE(bp)
#define NUM_RCQ_PG_REQ		((NUM_BD_REQ + MAX_RCQ_DESC_CNT - 1) / \
					      MAX_RCQ_DESC_CNT)
#define RCQ_TH_LO(bp)		(NUM_RCQ_REQ + \
				 NUM_RCQ_PG_REQ * NEXT_PAGE_RCQ_DESC_CNT + \
				 FW_DROP_LEVEL(bp))
#define RCQ_TH_HI(bp)		(RCQ_TH_LO(bp) + DROPLESS_FC_HEADROOM)

673

E
Eilon Greenstein 已提交
674
/* This is needed for determining of last_max */
675 676
#define SUB_S16(a, b)		(s16)((s16)(a) - (s16)(b))
#define SUB_S32(a, b)		(s32)((s32)(a) - (s32)(b))
677 678


679 680
#define BNX2X_SWCID_SHIFT	17
#define BNX2X_SWCID_MASK	((0x1 << BNX2X_SWCID_SHIFT) - 1)
681 682

/* used on a CID received from the HW */
683
#define SW_CID(x)			(le32_to_cpu(x) & BNX2X_SWCID_MASK)
684 685 686
#define CQE_CMD(x)			(le32_to_cpu(x) >> \
					COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT)

Y
Yitchak Gertner 已提交
687 688 689 690
#define BD_UNMAP_ADDR(bd)		HILO_U64(le32_to_cpu((bd)->addr_hi), \
						 le32_to_cpu((bd)->addr_lo))
#define BD_UNMAP_LEN(bd)		(le16_to_cpu((bd)->nbytes))

691 692
#define BNX2X_DB_MIN_SHIFT		3	/* 8 bytes */
#define BNX2X_DB_SHIFT			7	/* 128 bytes*/
693 694 695
#if (BNX2X_DB_SHIFT < BNX2X_DB_MIN_SHIFT)
#error "Min DB doorbell stride is 8"
#endif
696 697 698
#define DPM_TRIGER_TYPE			0x40
#define DOORBELL(bp, cid, val) \
	do { \
699
		writel((u32)(val), bp->doorbells + (bp->db_size * (cid)) + \
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
		       DPM_TRIGER_TYPE); \
	} while (0)


/* TX CSUM helpers */
#define SKB_CS_OFF(skb)		(offsetof(struct tcphdr, check) - \
				 skb->csum_offset)
#define SKB_CS(skb)		(*(u16 *)(skb_transport_header(skb) + \
					  skb->csum_offset))

#define pbd_tcp_flags(skb)	(ntohl(tcp_flag_word(tcp_hdr(skb)))>>16 & 0xff)

#define XMIT_PLAIN			0
#define XMIT_CSUM_V4			0x1
#define XMIT_CSUM_V6			0x2
#define XMIT_CSUM_TCP			0x4
#define XMIT_GSO_V4			0x8
#define XMIT_GSO_V6			0x10

#define XMIT_CSUM			(XMIT_CSUM_V4 | XMIT_CSUM_V6)
#define XMIT_GSO			(XMIT_GSO_V4 | XMIT_GSO_V6)


723
/* stuff added to make the code fit 80Col */
724 725 726 727 728
#define CQE_TYPE(cqe_fp_flags)	 ((cqe_fp_flags) & ETH_FAST_PATH_RX_CQE_TYPE)
#define CQE_TYPE_START(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_START_AGG)
#define CQE_TYPE_STOP(cqe_type)  ((cqe_type) == RX_ETH_CQE_TYPE_ETH_STOP_AGG)
#define CQE_TYPE_SLOW(cqe_type)  ((cqe_type) == RX_ETH_CQE_TYPE_ETH_RAMROD)
#define CQE_TYPE_FAST(cqe_type)  ((cqe_type) == RX_ETH_CQE_TYPE_ETH_FASTPATH)
729

730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
#define ETH_RX_ERROR_FALGS		ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG

#define BNX2X_IP_CSUM_ERR(cqe) \
			(!((cqe)->fast_path_cqe.status_flags & \
			   ETH_FAST_PATH_RX_CQE_IP_XSUM_NO_VALIDATION_FLG) && \
			 ((cqe)->fast_path_cqe.type_error_flags & \
			  ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG))

#define BNX2X_L4_CSUM_ERR(cqe) \
			(!((cqe)->fast_path_cqe.status_flags & \
			   ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG) && \
			 ((cqe)->fast_path_cqe.type_error_flags & \
			  ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG))

#define BNX2X_RX_CSUM_OK(cqe) \
			(!(BNX2X_L4_CSUM_ERR(cqe) || BNX2X_IP_CSUM_ERR(cqe)))
746

E
Eilon Greenstein 已提交
747 748 749 750 751
#define BNX2X_PRS_FLAG_OVERETH_IPV4(flags) \
				(((le16_to_cpu(flags) & \
				   PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) >> \
				  PARSING_FLAGS_OVER_ETHERNET_PROTOCOL_SHIFT) \
				 == PRS_FLAG_OVERETH_IPV4)
752
#define BNX2X_RX_SUM_FIX(cqe) \
E
Eilon Greenstein 已提交
753
	BNX2X_PRS_FLAG_OVERETH_IPV4(cqe->fast_path_cqe.pars_flags.flags)
754

755 756 757 758 759 760

#define FP_USB_FUNC_OFF	\
			offsetof(struct cstorm_status_block_u, func)
#define FP_CSB_FUNC_OFF	\
			offsetof(struct cstorm_status_block_c, func)

761
#define HC_INDEX_ETH_RX_CQ_CONS		1
762

763
#define HC_INDEX_OOO_TX_CQ_CONS		4
764

765 766 767
#define HC_INDEX_ETH_TX_CQ_CONS_COS0	5

#define HC_INDEX_ETH_TX_CQ_CONS_COS1	6
768

769 770 771
#define HC_INDEX_ETH_TX_CQ_CONS_COS2	7

#define HC_INDEX_ETH_FIRST_TX_CQ_CONS	HC_INDEX_ETH_TX_CQ_CONS_COS0
E
Eliezer Tamir 已提交
772

773
#define BNX2X_RX_SB_INDEX \
774
	(&fp->sb_index_values[HC_INDEX_ETH_RX_CQ_CONS])
E
Eliezer Tamir 已提交
775

776 777 778 779
#define BNX2X_TX_SB_INDEX_BASE BNX2X_TX_SB_INDEX_COS0

#define BNX2X_TX_SB_INDEX_COS0 \
	(&fp->sb_index_values[HC_INDEX_ETH_TX_CQ_CONS_COS0])
780 781 782

/* end of fast path */

783
/* common */
E
Eliezer Tamir 已提交
784

785
struct bnx2x_common {
E
Eliezer Tamir 已提交
786

787
	u32			chip_id;
E
Eliezer Tamir 已提交
788
/* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
789
#define CHIP_ID(bp)			(bp->common.chip_id & 0xfffffff0)
790

791
#define CHIP_NUM(bp)			(bp->common.chip_id >> 16)
792 793 794
#define CHIP_NUM_57710			0x164e
#define CHIP_NUM_57711			0x164f
#define CHIP_NUM_57711E			0x1650
D
Dmitry Kravkov 已提交
795
#define CHIP_NUM_57712			0x1662
796 797 798 799 800 801 802 803 804
#define CHIP_NUM_57712_MF		0x1663
#define CHIP_NUM_57713			0x1651
#define CHIP_NUM_57713E			0x1652
#define CHIP_NUM_57800			0x168a
#define CHIP_NUM_57800_MF		0x16a5
#define CHIP_NUM_57810			0x168e
#define CHIP_NUM_57810_MF		0x16ae
#define CHIP_NUM_57840			0x168d
#define CHIP_NUM_57840_MF		0x16ab
805 806 807
#define CHIP_IS_E1(bp)			(CHIP_NUM(bp) == CHIP_NUM_57710)
#define CHIP_IS_57711(bp)		(CHIP_NUM(bp) == CHIP_NUM_57711)
#define CHIP_IS_57711E(bp)		(CHIP_NUM(bp) == CHIP_NUM_57711E)
D
Dmitry Kravkov 已提交
808
#define CHIP_IS_57712(bp)		(CHIP_NUM(bp) == CHIP_NUM_57712)
809 810 811 812 813 814 815
#define CHIP_IS_57712_MF(bp)		(CHIP_NUM(bp) == CHIP_NUM_57712_MF)
#define CHIP_IS_57800(bp)		(CHIP_NUM(bp) == CHIP_NUM_57800)
#define CHIP_IS_57800_MF(bp)		(CHIP_NUM(bp) == CHIP_NUM_57800_MF)
#define CHIP_IS_57810(bp)		(CHIP_NUM(bp) == CHIP_NUM_57810)
#define CHIP_IS_57810_MF(bp)		(CHIP_NUM(bp) == CHIP_NUM_57810_MF)
#define CHIP_IS_57840(bp)		(CHIP_NUM(bp) == CHIP_NUM_57840)
#define CHIP_IS_57840_MF(bp)		(CHIP_NUM(bp) == CHIP_NUM_57840_MF)
816 817
#define CHIP_IS_E1H(bp)			(CHIP_IS_57711(bp) || \
					 CHIP_IS_57711E(bp))
D
Dmitry Kravkov 已提交
818
#define CHIP_IS_E2(bp)			(CHIP_IS_57712(bp) || \
819 820 821 822 823 824 825
					 CHIP_IS_57712_MF(bp))
#define CHIP_IS_E3(bp)			(CHIP_IS_57800(bp) || \
					 CHIP_IS_57800_MF(bp) || \
					 CHIP_IS_57810(bp) || \
					 CHIP_IS_57810_MF(bp) || \
					 CHIP_IS_57840(bp) || \
					 CHIP_IS_57840_MF(bp))
D
Dmitry Kravkov 已提交
826
#define CHIP_IS_E1x(bp)			(CHIP_IS_E1((bp)) || CHIP_IS_E1H((bp)))
827 828 829 830 831 832 833 834
#define USES_WARPCORE(bp)		(CHIP_IS_E3(bp))
#define IS_E1H_OFFSET			(!CHIP_IS_E1(bp))

#define CHIP_REV_SHIFT			12
#define CHIP_REV_MASK			(0xF << CHIP_REV_SHIFT)
#define CHIP_REV_VAL(bp)		(bp->common.chip_id & CHIP_REV_MASK)
#define CHIP_REV_Ax			(0x0 << CHIP_REV_SHIFT)
#define CHIP_REV_Bx			(0x1 << CHIP_REV_SHIFT)
835
/* assume maximum 5 revisions */
836
#define CHIP_REV_IS_SLOW(bp)		(CHIP_REV_VAL(bp) > 0x00005000)
837 838
/* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
#define CHIP_REV_IS_EMUL(bp)		((CHIP_REV_IS_SLOW(bp)) && \
839
					 !(CHIP_REV_VAL(bp) & 0x00001000))
840 841
/* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
#define CHIP_REV_IS_FPGA(bp)		((CHIP_REV_IS_SLOW(bp)) && \
842
					 (CHIP_REV_VAL(bp) & 0x00001000))
843 844 845 846

#define CHIP_TIME(bp)			((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
					((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))

847 848
#define CHIP_METAL(bp)			(bp->common.chip_id & 0x00000ff0)
#define CHIP_BOND_ID(bp)		(bp->common.chip_id & 0x0000000f)
849 850 851 852 853 854 855 856 857 858
#define CHIP_REV_SIM(bp)		(((CHIP_REV_MASK - CHIP_REV_VAL(bp)) >>\
					   (CHIP_REV_SHIFT + 1)) \
						<< CHIP_REV_SHIFT)
#define CHIP_REV(bp)			(CHIP_REV_IS_SLOW(bp) ? \
						CHIP_REV_SIM(bp) :\
						CHIP_REV_VAL(bp))
#define CHIP_IS_E3B0(bp)		(CHIP_IS_E3(bp) && \
					 (CHIP_REV(bp) == CHIP_REV_Bx))
#define CHIP_IS_E3A0(bp)		(CHIP_IS_E3(bp) && \
					 (CHIP_REV(bp) == CHIP_REV_Ax))
E
Eliezer Tamir 已提交
859

860
	int			flash_size;
D
Dmitry Kravkov 已提交
861 862 863
#define BNX2X_NVRAM_1MB_SIZE			0x20000	/* 1M bit in bytes */
#define BNX2X_NVRAM_TIMEOUT_COUNT		30000
#define BNX2X_NVRAM_PAGE_SIZE			256
E
Eliezer Tamir 已提交
864

865
	u32			shmem_base;
866
	u32			shmem2_base;
867
	u32			mf_cfg_base;
D
Dmitry Kravkov 已提交
868
	u32			mf2_cfg_base;
869 870

	u32			hw_config;
Y
Yaniv Rosner 已提交
871

872
	u32			bc_ver;
873 874 875

	u8			int_block;
#define INT_BLOCK_HC			0
D
Dmitry Kravkov 已提交
876 877 878 879
#define INT_BLOCK_IGU			1
#define INT_BLOCK_MODE_NORMAL		0
#define INT_BLOCK_MODE_BW_COMP		2
#define CHIP_INT_MODE_IS_NBC(bp)		\
880
			(!CHIP_IS_E1x(bp) &&	\
D
Dmitry Kravkov 已提交
881 882 883
			!((bp)->common.int_block & INT_BLOCK_MODE_BW_COMP))
#define CHIP_INT_MODE_IS_BC(bp) (!CHIP_INT_MODE_IS_NBC(bp))

884
	u8			chip_port_mode;
D
Dmitry Kravkov 已提交
885 886
#define CHIP_4_PORT_MODE			0x0
#define CHIP_2_PORT_MODE			0x1
887
#define CHIP_PORT_MODE_NONE			0x2
D
Dmitry Kravkov 已提交
888 889
#define CHIP_MODE(bp)			(bp->common.chip_port_mode)
#define CHIP_MODE_IS_4_PORT(bp) (CHIP_MODE(bp) == CHIP_4_PORT_MODE)
890 891

	u32			boot_mode;
892
};
Y
Yaniv Rosner 已提交
893

D
Dmitry Kravkov 已提交
894 895 896
/* IGU MSIX STATISTICS on 57712: 64 for VFs; 4 for PFs; 4 for Attentions */
#define BNX2X_IGU_STAS_MSG_VF_CNT 64
#define BNX2X_IGU_STAS_MSG_PF_CNT 4
897 898 899 900 901 902 903

/* end of common */

/* port */

struct bnx2x_port {
	u32			pmf;
Y
Yaniv Rosner 已提交
904

Y
Yaniv Rosner 已提交
905
	u32			link_config[LINK_CONFIG_SIZE];
E
Eliezer Tamir 已提交
906

Y
Yaniv Rosner 已提交
907
	u32			supported[LINK_CONFIG_SIZE];
908 909 910
/* link settings - missing defines */
#define SUPPORTED_2500baseX_Full	(1 << 15)

Y
Yaniv Rosner 已提交
911
	u32			advertising[LINK_CONFIG_SIZE];
E
Eliezer Tamir 已提交
912
/* link settings - missing defines */
913
#define ADVERTISED_2500baseX_Full	(1 << 15)
E
Eliezer Tamir 已提交
914

915
	u32			phy_addr;
Y
Yaniv Rosner 已提交
916 917 918

	/* used to synchronize phy accesses */
	struct mutex		phy_mutex;
E
Eilon Greenstein 已提交
919
	int			need_hw_lock;
Y
Yaniv Rosner 已提交
920

921
	u32			port_stx;
E
Eliezer Tamir 已提交
922

923 924
	struct nig_stats	old_nig_stats;
};
E
Eliezer Tamir 已提交
925

926 927
/* end of port */

928 929
#define STATS_OFFSET32(stat_name) \
			(offsetof(struct bnx2x_eth_stats, stat_name) / 4)
Y
Yitchak Gertner 已提交
930

931 932 933 934 935 936
/* slow path */

/* slow path work-queue */
extern struct workqueue_struct *bnx2x_wq;

#define BNX2X_MAX_NUM_OF_VFS	64
937
#define BNX2X_VF_ID_INVALID	0xFF
938

939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
/*
 * The total number of L2 queues, MSIX vectors and HW contexts (CIDs) is
 * control by the number of fast-path status blocks supported by the
 * device (HW/FW). Each fast-path status block (FP-SB) aka non-default
 * status block represents an independent interrupts context that can
 * serve a regular L2 networking queue. However special L2 queues such
 * as the FCoE queue do not require a FP-SB and other components like
 * the CNIC may consume FP-SB reducing the number of possible L2 queues
 *
 * If the maximum number of FP-SB available is X then:
 * a. If CNIC is supported it consumes 1 FP-SB thus the max number of
 *    regular L2 queues is Y=X-1
 * b. in MF mode the actual number of L2 queues is Y= (X-1/MF_factor)
 * c. If the FCoE L2 queue is supported the actual number of L2 queues
 *    is Y+1
 * d. The number of irqs (MSIX vectors) is either Y+1 (one extra for
 *    slow-path interrupts) or Y+2 if CNIC is supported (one additional
 *    FP interrupt context for the CNIC).
 * e. The number of HW context (CID count) is always X or X+1 if FCoE
 *    L2 queue is supported. the cid for the FCoE L2 queue is always X.
 */

961 962 963 964
/* fast-path interrupt contexts E1x */
#define FP_SB_MAX_E1x		16
/* fast-path interrupt contexts E2 */
#define FP_SB_MAX_E2		HC_SB_MAX_SB_E2
965

966 967 968 969 970
union cdu_context {
	struct eth_context eth;
	char pad[1024];
};

971 972
/* CDU host DB constants */
#define CDU_ILT_PAGE_SZ_HW	3
973
#define CDU_ILT_PAGE_SZ		(8192 << CDU_ILT_PAGE_SZ_HW) /* 64K */
974 975 976 977
#define ILT_PAGE_CIDS		(CDU_ILT_PAGE_SZ / sizeof(union cdu_context))

#ifdef BCM_CNIC
#define CNIC_ISCSI_CID_MAX	256
V
Vladislav Zolotarov 已提交
978 979
#define CNIC_FCOE_CID_MAX	2048
#define CNIC_CID_MAX		(CNIC_ISCSI_CID_MAX + CNIC_FCOE_CID_MAX)
980 981 982
#define CNIC_ILT_LINES		DIV_ROUND_UP(CNIC_CID_MAX, ILT_PAGE_CIDS)
#endif

983 984
#define QM_ILT_PAGE_SZ_HW	0
#define QM_ILT_PAGE_SZ		(4096 << QM_ILT_PAGE_SZ_HW) /* 4K */
985 986 987 988
#define QM_CID_ROUND		1024

#ifdef BCM_CNIC
/* TM (timers) host DB constants */
989 990
#define TM_ILT_PAGE_SZ_HW	0
#define TM_ILT_PAGE_SZ		(4096 << TM_ILT_PAGE_SZ_HW) /* 4K */
991 992 993 994 995 996
/* #define TM_CONN_NUM		(CNIC_STARTING_CID+CNIC_ISCSI_CXT_MAX) */
#define TM_CONN_NUM		1024
#define TM_ILT_SZ		(8 * TM_CONN_NUM)
#define TM_ILT_LINES		DIV_ROUND_UP(TM_ILT_SZ, TM_ILT_PAGE_SZ)

/* SRC (Searcher) host DB constants */
997 998
#define SRC_ILT_PAGE_SZ_HW	0
#define SRC_ILT_PAGE_SZ		(4096 << SRC_ILT_PAGE_SZ_HW) /* 4K */
999 1000 1001 1002 1003
#define SRC_HASH_BITS		10
#define SRC_CONN_NUM		(1 << SRC_HASH_BITS) /* 1024 */
#define SRC_ILT_SZ		(sizeof(struct src_ent) * SRC_CONN_NUM)
#define SRC_T2_SZ		SRC_ILT_SZ
#define SRC_ILT_LINES		DIV_ROUND_UP(SRC_ILT_SZ, SRC_ILT_PAGE_SZ)
1004

1005 1006
#endif

1007
#define MAX_DMAE_C		8
1008 1009 1010

/* DMA memory not used in fastpath */
struct bnx2x_slowpath {
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	union {
		struct mac_configuration_cmd		e1x;
		struct eth_classify_rules_ramrod_data	e2;
	} mac_rdata;


	union {
		struct tstorm_eth_mac_filter_config	e1x;
		struct eth_filter_rules_ramrod_data	e2;
	} rx_mode_rdata;

	union {
		struct mac_configuration_cmd		e1;
		struct eth_multicast_rules_ramrod_data  e2;
	} mcast_rdata;

	struct eth_rss_update_ramrod_data	rss_rdata;

	/* Queue State related ramrods are always sent under rtnl_lock */
	union {
		struct client_init_ramrod_data  init_data;
		struct client_update_ramrod_data update_data;
	} q_rdata;

	union {
		struct function_start_data	func_start;
D
Dmitry Kravkov 已提交
1037 1038
		/* pfc configuration for DCBX ramrod */
		struct flow_control_configuration pfc_config;
1039
	} func_rdata;
1040 1041 1042 1043

	/* used by dmae command executer */
	struct dmae_command		dmae[MAX_DMAE_C];

Y
Yitchak Gertner 已提交
1044 1045 1046 1047 1048
	u32				stats_comp;
	union mac_stats			mac_stats;
	struct nig_stats		nig_stats;
	struct host_port_stats		port_stats;
	struct host_func_stats		func_stats;
1049
	struct host_func_stats		func_stats_base;
1050 1051 1052

	u32				wb_comp;
	u32				wb_data[4];
1053 1054

	union drv_info_to_mcp		drv_info_to_mcp;
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
};

#define bnx2x_sp(bp, var)		(&bp->slowpath->var)
#define bnx2x_sp_mapping(bp, var) \
		(bp->slowpath_mapping + offsetof(struct bnx2x_slowpath, var))


/* attn group wiring */
#define MAX_DYNAMIC_ATTN_GRPS		8

struct attn_route {
1066
	u32 sig[5];
1067 1068
};

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
struct iro {
	u32 base;
	u16 m1;
	u16 m2;
	u16 m3;
	u16 size;
};

struct hw_context {
	union cdu_context *vcxt;
	dma_addr_t cxt_mapping;
	size_t size;
};

/* forward */
struct bnx2x_ilt;

1086 1087

enum bnx2x_recovery_state {
1088 1089 1090
	BNX2X_RECOVERY_DONE,
	BNX2X_RECOVERY_INIT,
	BNX2X_RECOVERY_WAIT,
A
Ariel Elior 已提交
1091 1092
	BNX2X_RECOVERY_FAILED,
	BNX2X_RECOVERY_NIC_LOADING
1093
};
1094

1095
/*
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
 * Event queue (EQ or event ring) MC hsi
 * NUM_EQ_PAGES and EQ_DESC_CNT_PAGE must be power of 2
 */
#define NUM_EQ_PAGES		1
#define EQ_DESC_CNT_PAGE	(BCM_PAGE_SIZE / sizeof(union event_ring_elem))
#define EQ_DESC_MAX_PAGE	(EQ_DESC_CNT_PAGE - 1)
#define NUM_EQ_DESC		(EQ_DESC_CNT_PAGE * NUM_EQ_PAGES)
#define EQ_DESC_MASK		(NUM_EQ_DESC - 1)
#define MAX_EQ_AVAIL		(EQ_DESC_MAX_PAGE * NUM_EQ_PAGES - 2)

/* depends on EQ_DESC_CNT_PAGE being a power of 2 */
#define NEXT_EQ_IDX(x)		((((x) & EQ_DESC_MAX_PAGE) == \
				  (EQ_DESC_MAX_PAGE - 1)) ? (x) + 2 : (x) + 1)

/* depends on the above and on NUM_EQ_PAGES being a power of 2 */
#define EQ_DESC(x)		((x) & EQ_DESC_MASK)

#define BNX2X_EQ_INDEX \
	(&bp->def_status_blk->sp_sb.\
	index_values[HC_SP_INDEX_EQ_CONS])

1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
/* This is a data that will be used to create a link report message.
 * We will keep the data used for the last link report in order
 * to prevent reporting the same link parameters twice.
 */
struct bnx2x_link_report_data {
	u16 line_speed;			/* Effective line speed */
	unsigned long link_report_flags;/* BNX2X_LINK_REPORT_XXX flags */
};

enum {
	BNX2X_LINK_REPORT_FD,		/* Full DUPLEX */
	BNX2X_LINK_REPORT_LINK_DOWN,
	BNX2X_LINK_REPORT_RX_FC_ON,
	BNX2X_LINK_REPORT_TX_FC_ON,
};

1133 1134 1135
enum {
	BNX2X_PORT_QUERY_IDX,
	BNX2X_PF_QUERY_IDX,
B
Barak Witkowski 已提交
1136
	BNX2X_FCOE_QUERY_IDX,
1137 1138 1139 1140 1141
	BNX2X_FIRST_QUEUE_QUERY_IDX,
};

struct bnx2x_fw_stats_req {
	struct stats_query_header hdr;
B
Barak Witkowski 已提交
1142 1143
	struct stats_query_entry query[FP_SB_MAX_E1x+
		BNX2X_FIRST_QUEUE_QUERY_IDX];
1144 1145 1146 1147 1148 1149
};

struct bnx2x_fw_stats_data {
	struct stats_counter	storm_counters;
	struct per_port_stats	port;
	struct per_pf_stats	pf;
B
Barak Witkowski 已提交
1150
	struct fcoe_statistics_params	fcoe;
1151 1152 1153
	struct per_queue_stats  queue_stats[1];
};

1154 1155
/* Public slow path states */
enum {
1156
	BNX2X_SP_RTNL_SETUP_TC,
1157
	BNX2X_SP_RTNL_TX_TIMEOUT,
1158
	BNX2X_SP_RTNL_FAN_FAILURE,
1159 1160 1161
};


1162 1163 1164 1165
struct bnx2x {
	/* Fields used in the tx and intr/napi performance paths
	 * are grouped together in the beginning of the structure
	 */
1166
	struct bnx2x_fastpath	*fp;
1167 1168
	void __iomem		*regview;
	void __iomem		*doorbells;
1169
	u16			db_size;
1170

1171 1172 1173 1174 1175 1176 1177
	u8			pf_num;	/* absolute PF number */
	u8			pfid;	/* per-path PF number */
	int			base_fw_ndsb; /**/
#define BP_PATH(bp)			(CHIP_IS_E1x(bp) ? 0 : (bp->pf_num & 1))
#define BP_PORT(bp)			(bp->pfid & 1)
#define BP_FUNC(bp)			(bp->pfid)
#define BP_ABS_FUNC(bp)			(bp->pf_num)
1178 1179 1180 1181 1182 1183
#define BP_VN(bp)			((bp)->pfid >> 1)
#define BP_MAX_VN_NUM(bp)		(CHIP_MODE_IS_4_PORT(bp) ? 2 : 4)
#define BP_L_ID(bp)			(BP_VN(bp) << 2)
#define BP_FW_MB_IDX_VN(bp, vn)		(BP_PORT(bp) +\
	  (vn) * ((CHIP_IS_E1x(bp) || (CHIP_MODE_IS_4_PORT(bp))) ? 2  : 1))
#define BP_FW_MB_IDX(bp)		BP_FW_MB_IDX_VN(bp, BP_VN(bp))
1184

1185 1186 1187
	struct net_device	*dev;
	struct pci_dev		*pdev;

1188
	const struct iro	*iro_arr;
1189 1190
#define IRO (bp->iro_arr)

1191
	enum bnx2x_recovery_state recovery_state;
1192
	int			is_leader;
1193
	struct msix_entry	*msix_table;
1194 1195 1196

	int			tx_ring_size;

1197 1198
/* L2 header size + 2*VLANs (8 bytes) + LLC SNAP (8 bytes) */
#define ETH_OVREHEAD		(ETH_HLEN + 8 + 8)
1199 1200 1201
#define ETH_MIN_PACKET_SIZE		60
#define ETH_MAX_PACKET_SIZE		1500
#define ETH_MAX_JUMBO_PACKET_SIZE	9600
E
Eliezer Tamir 已提交
1202

E
Eilon Greenstein 已提交
1203
	/* Max supported alignment is 256 (8 shift) */
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
#define BNX2X_RX_ALIGN_SHIFT		min(8, L1_CACHE_SHIFT)

	/* FW uses 2 Cache lines Alignment for start packet and size
	 *
	 * We assume skb_build() uses sizeof(struct skb_shared_info) bytes
	 * at the end of skb->data, to avoid wasting a full cache line.
	 * This reduces memory use (skb->truesize).
	 */
#define BNX2X_FW_RX_ALIGN_START	(1UL << BNX2X_RX_ALIGN_SHIFT)

#define BNX2X_FW_RX_ALIGN_END					\
	max(1UL << BNX2X_RX_ALIGN_SHIFT, 			\
	    SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))

1218
#define BNX2X_PXP_DRAM_ALIGN		(BNX2X_RX_ALIGN_SHIFT - 5)
E
Eilon Greenstein 已提交
1219

1220 1221 1222 1223
	struct host_sp_status_block *def_status_blk;
#define DEF_SB_IGU_ID			16
#define DEF_SB_ID			HC_SP_SB_ID
	__le16			def_idx;
1224
	__le16			def_att_idx;
1225 1226 1227 1228 1229 1230 1231 1232 1233
	u32			attn_state;
	struct attn_route	attn_group[MAX_DYNAMIC_ATTN_GRPS];

	/* slow path ring */
	struct eth_spe		*spq;
	dma_addr_t		spq_mapping;
	u16			spq_prod_idx;
	struct eth_spe		*spq_prod_bd;
	struct eth_spe		*spq_last_bd;
1234
	__le16			*dsb_sp_prod;
1235
	atomic_t		cq_spq_left; /* ETH_XXX ramrods credit */
1236 1237 1238
	/* used to synchronize spq accesses */
	spinlock_t		spq_lock;

1239 1240 1241 1242 1243 1244
	/* event queue */
	union event_ring_elem	*eq_ring;
	dma_addr_t		eq_mapping;
	u16			eq_prod;
	u16			eq_cons;
	__le16			*eq_cons_sb;
1245
	atomic_t		eq_spq_left; /* COMMON_XXX ramrods credit */
1246

1247 1248 1249 1250 1251 1252


	/* Counter for marking that there is a STAT_QUERY ramrod pending */
	u16			stats_pending;
	/*  Counter for completed statistics ramrods */
	u16			stats_comp;
1253

E
Eilon Greenstein 已提交
1254
	/* End of fields used in the performance code paths */
1255 1256

	int			panic;
1257
	int			msg_enable;
1258 1259

	u32			flags;
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
#define PCIX_FLAG			(1 << 0)
#define PCI_32BIT_FLAG			(1 << 1)
#define ONE_PORT_FLAG			(1 << 2)
#define NO_WOL_FLAG			(1 << 3)
#define USING_DAC_FLAG			(1 << 4)
#define USING_MSIX_FLAG			(1 << 5)
#define USING_MSI_FLAG			(1 << 6)
#define DISABLE_MSI_FLAG		(1 << 7)
#define TPA_ENABLE_FLAG			(1 << 8)
#define NO_MCP_FLAG			(1 << 9)

1271
#define BP_NOMCP(bp)			(bp->flags & NO_MCP_FLAG)
1272 1273 1274 1275 1276
#define MF_FUNC_DIS			(1 << 11)
#define OWN_CNIC_IRQ			(1 << 12)
#define NO_ISCSI_OOO_FLAG		(1 << 13)
#define NO_ISCSI_FLAG			(1 << 14)
#define NO_FCOE_FLAG			(1 << 15)
B
Barak Witkowski 已提交
1277
#define BC_SUPPORTS_PFC_STATS		(1 << 17)
V
Vladislav Zolotarov 已提交
1278

1279 1280
#define NO_ISCSI(bp)		((bp)->flags & NO_ISCSI_FLAG)
#define NO_ISCSI_OOO(bp)	((bp)->flags & NO_ISCSI_OOO_FLAG)
1281
#define NO_FCOE(bp)		((bp)->flags & NO_FCOE_FLAG)
1282

1283
	int			pm_cap;
1284
	int			mrrs;
1285

1286
	struct delayed_work	sp_task;
1287
	struct delayed_work	sp_rtnl_task;
1288 1289

	struct delayed_work	period_task;
1290 1291 1292 1293 1294 1295 1296 1297 1298
	struct timer_list	timer;
	int			current_interval;

	u16			fw_seq;
	u16			fw_drv_pulse_wr_seq;
	u32			func_stx;

	struct link_params	link_params;
	struct link_vars	link_vars;
1299 1300 1301
	u32			link_cnt;
	struct bnx2x_link_report_data last_reported_link;

E
Eilon Greenstein 已提交
1302
	struct mdio_if_info	mdio;
E
Eliezer Tamir 已提交
1303

1304 1305 1306
	struct bnx2x_common	common;
	struct bnx2x_port	port;

E
Eilon Greenstein 已提交
1307 1308
	struct cmng_struct_per_port cmng;
	u32			vn_weight_sum;
D
Dmitry Kravkov 已提交
1309 1310
	u32			mf_config[E1HVN_MAX];
	u32			mf2_config[E2_FUNC_MAX];
1311
	u32			path_has_ovlan; /* E3 */
D
Dmitry Kravkov 已提交
1312 1313
	u16			mf_ov;
	u8			mf_mode;
D
Dmitry Kravkov 已提交
1314
#define IS_MF(bp)		(bp->mf_mode != 0)
1315 1316
#define IS_MF_SI(bp)		(bp->mf_mode == MULTI_FUNCTION_SI)
#define IS_MF_SD(bp)		(bp->mf_mode == MULTI_FUNCTION_SD)
E
Eliezer Tamir 已提交
1317

E
Eliezer Tamir 已提交
1318 1319
	u8			wol;

1320
	int			rx_ring_size;
E
Eliezer Tamir 已提交
1321

1322 1323 1324 1325
	u16			tx_quick_cons_trip_int;
	u16			tx_quick_cons_trip;
	u16			tx_ticks_int;
	u16			tx_ticks;
E
Eliezer Tamir 已提交
1326

1327 1328 1329 1330
	u16			rx_quick_cons_trip_int;
	u16			rx_quick_cons_trip;
	u16			rx_ticks_int;
	u16			rx_ticks;
V
Vladislav Zolotarov 已提交
1331 1332
/* Maximal coalescing timeout in us */
#define BNX2X_MAX_COALESCE_TOUT		(0xf0*12)
E
Eliezer Tamir 已提交
1333

1334
	u32			lin_cnt;
E
Eliezer Tamir 已提交
1335

1336
	u16			state;
E
Eilon Greenstein 已提交
1337
#define BNX2X_STATE_CLOSED		0
1338 1339
#define BNX2X_STATE_OPENING_WAIT4_LOAD	0x1000
#define BNX2X_STATE_OPENING_WAIT4_PORT	0x2000
E
Eliezer Tamir 已提交
1340
#define BNX2X_STATE_OPEN		0x3000
1341
#define BNX2X_STATE_CLOSING_WAIT4_HALT	0x4000
E
Eliezer Tamir 已提交
1342
#define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
1343

1344 1345
#define BNX2X_STATE_DIAG		0xe000
#define BNX2X_STATE_ERROR		0xf000
E
Eliezer Tamir 已提交
1346

E
Eilon Greenstein 已提交
1347
	int			multi_mode;
1348 1349 1350 1351
#define BNX2X_MAX_PRIORITY		8
#define BNX2X_MAX_ENTRIES_PER_PRI	16
#define BNX2X_MAX_COS			3
#define BNX2X_MAX_TX_COS		2
1352
	int			num_queues;
1353
	int			disable_tpa;
1354

1355 1356 1357 1358 1359 1360
	u32			rx_mode;
#define BNX2X_RX_MODE_NONE		0
#define BNX2X_RX_MODE_NORMAL		1
#define BNX2X_RX_MODE_ALLMULTI		2
#define BNX2X_RX_MODE_PROMISC		3
#define BNX2X_MAX_MULTICAST		64
E
Eliezer Tamir 已提交
1361

1362 1363 1364
	u8			igu_dsb_id;
	u8			igu_base_sb;
	u8			igu_sb_cnt;
1365
	dma_addr_t		def_status_blk_mapping;
E
Eliezer Tamir 已提交
1366

1367 1368
	struct bnx2x_slowpath	*slowpath;
	dma_addr_t		slowpath_mapping;
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395

	/* Total number of FW statistics requests */
	u8			fw_stats_num;

	/*
	 * This is a memory buffer that will contain both statistics
	 * ramrod request and data.
	 */
	void			*fw_stats;
	dma_addr_t		fw_stats_mapping;

	/*
	 * FW statistics request shortcut (points at the
	 * beginning of fw_stats buffer).
	 */
	struct bnx2x_fw_stats_req	*fw_stats_req;
	dma_addr_t			fw_stats_req_mapping;
	int				fw_stats_req_sz;

	/*
	 * FW statistics data shortcut (points at the begining of
	 * fw_stats buffer + fw_stats_req_sz).
	 */
	struct bnx2x_fw_stats_data	*fw_stats_data;
	dma_addr_t			fw_stats_data_mapping;
	int				fw_stats_data_sz;

1396 1397 1398 1399
	struct hw_context	context;

	struct bnx2x_ilt	*ilt;
#define BP_ILT(bp)		((bp)->ilt)
1400
#define ILT_MAX_LINES		256
1401 1402 1403 1404 1405
/*
 * Maximum supported number of RSS queues: number of IGU SBs minus one that goes
 * to CNIC.
 */
#define BNX2X_MAX_RSS_COUNT(bp)	((bp)->igu_sb_cnt - CNIC_PRESENT)
1406

1407 1408 1409 1410 1411 1412 1413 1414 1415
/*
 * Maximum CID count that might be required by the bnx2x:
 * Max Tss * Max_Tx_Multi_Cos + CNIC L2 Clients (FCoE and iSCSI related)
 */
#define BNX2X_L2_CID_COUNT(bp)	(MAX_TXQS_PER_COS * BNX2X_MULTI_TX_COS +\
					NON_ETH_CONTEXT_USE + CNIC_PRESENT)
#define L2_ILT_LINES(bp)	(DIV_ROUND_UP(BNX2X_L2_CID_COUNT(bp),\
					ILT_PAGE_CIDS))
#define BNX2X_DB_SIZE(bp)	(BNX2X_L2_CID_COUNT(bp) * (1 << BNX2X_DB_SHIFT))
1416 1417

	int			qm_cid_count;
E
Eliezer Tamir 已提交
1418

1419 1420
	int			dropless_fc;

1421 1422 1423 1424 1425
#ifdef BCM_CNIC
	u32			cnic_flags;
#define BNX2X_CNIC_FLAG_MAC_SET		1
	void			*t2;
	dma_addr_t		t2_mapping;
1426
	struct cnic_ops	__rcu	*cnic_ops;
1427 1428 1429
	void			*cnic_data;
	u32			cnic_tag;
	struct cnic_eth_dev	cnic_eth_dev;
1430
	union host_hc_status_block cnic_sb;
1431 1432 1433 1434 1435 1436 1437
	dma_addr_t		cnic_sb_mapping;
	struct eth_spe		*cnic_kwq;
	struct eth_spe		*cnic_kwq_prod;
	struct eth_spe		*cnic_kwq_cons;
	struct eth_spe		*cnic_kwq_last;
	u16			cnic_kwq_pending;
	u16			cnic_spq_pending;
V
Vladislav Zolotarov 已提交
1438
	u8			fip_mac[ETH_ALEN];
1439 1440 1441 1442 1443
	struct mutex		cnic_mutex;
	struct bnx2x_vlan_mac_obj iscsi_l2_mac_obj;

	/* Start index of the "special" (CNIC related) L2 cleints */
	u8				cnic_base_cl_id;
1444 1445
#endif

1446 1447
	int			dmae_ready;
	/* used to synchronize dmae accesses */
1448
	spinlock_t		dmae_lock;
1449

E
Eilon Greenstein 已提交
1450 1451 1452
	/* used to protect the FW mail box */
	struct mutex		fw_mb_mutex;

Y
Yitchak Gertner 已提交
1453 1454
	/* used to synchronize stats collecting */
	int			stats_state;
1455 1456 1457 1458

	/* used for synchronization of concurrent threads statistics handling */
	spinlock_t		stats_lock;

Y
Yitchak Gertner 已提交
1459 1460 1461
	/* used by dmae command loader */
	struct dmae_command	stats_dmae;
	int			executer_idx;
1462

Y
Yitchak Gertner 已提交
1463 1464 1465 1466 1467 1468 1469
	u16			stats_counter;
	struct bnx2x_eth_stats	eth_stats;

	struct z_stream_s	*strm;
	void			*gunzip_buf;
	dma_addr_t		gunzip_mapping;
	int			gunzip_outlen;
1470
#define FW_BUF_SIZE			0x8000
1471 1472 1473
#define GUNZIP_BUF(bp)			(bp->gunzip_buf)
#define GUNZIP_PHYS(bp)			(bp->gunzip_mapping)
#define GUNZIP_OUTLEN(bp)		(bp->gunzip_outlen)
E
Eliezer Tamir 已提交
1474

1475
	struct raw_op		*init_ops;
1476
	/* Init blocks offsets inside init_ops */
1477
	u16			*init_ops_offsets;
1478
	/* Data blob - has 32 bit granularity */
1479
	u32			*init_data;
1480 1481
	u32			init_mode_flags;
#define INIT_MODE_FLAGS(bp)	(bp->init_mode_flags)
1482
	/* Zipped PRAM blobs - raw data */
1483 1484 1485 1486 1487 1488 1489 1490
	const u8		*tsem_int_table_data;
	const u8		*tsem_pram_data;
	const u8		*usem_int_table_data;
	const u8		*usem_pram_data;
	const u8		*xsem_int_table_data;
	const u8		*xsem_pram_data;
	const u8		*csem_int_table_data;
	const u8		*csem_pram_data;
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
#define INIT_OPS(bp)			(bp->init_ops)
#define INIT_OPS_OFFSETS(bp)		(bp->init_ops_offsets)
#define INIT_DATA(bp)			(bp->init_data)
#define INIT_TSEM_INT_TABLE_DATA(bp)	(bp->tsem_int_table_data)
#define INIT_TSEM_PRAM_DATA(bp)		(bp->tsem_pram_data)
#define INIT_USEM_INT_TABLE_DATA(bp)	(bp->usem_int_table_data)
#define INIT_USEM_PRAM_DATA(bp)		(bp->usem_pram_data)
#define INIT_XSEM_INT_TABLE_DATA(bp)	(bp->xsem_int_table_data)
#define INIT_XSEM_PRAM_DATA(bp)		(bp->xsem_pram_data)
#define INIT_CSEM_INT_TABLE_DATA(bp)	(bp->csem_int_table_data)
#define INIT_CSEM_PRAM_DATA(bp)		(bp->csem_pram_data)

1503
#define PHY_FW_VER_LEN			20
1504
	char			fw_ver[32];
1505
	const struct firmware	*firmware;
1506

S
Shmulik Ravid 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
	/* DCB support on/off */
	u16 dcb_state;
#define BNX2X_DCB_STATE_OFF			0
#define BNX2X_DCB_STATE_ON			1

	/* DCBX engine mode */
	int dcbx_enabled;
#define BNX2X_DCBX_ENABLED_OFF			0
#define BNX2X_DCBX_ENABLED_ON_NEG_OFF		1
#define BNX2X_DCBX_ENABLED_ON_NEG_ON		2
#define BNX2X_DCBX_ENABLED_INVALID		(-1)

	bool dcbx_mode_uset;

V
Vladislav Zolotarov 已提交
1521 1522 1523 1524
	struct bnx2x_config_dcbx_params		dcbx_config_params;
	struct bnx2x_dcbx_port_params		dcbx_port_params;
	int					dcb_version;

1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
	/* CAM credit pools */
	struct bnx2x_credit_pool_obj		macs_pool;

	/* RX_MODE object */
	struct bnx2x_rx_mode_obj		rx_mode_obj;

	/* MCAST object */
	struct bnx2x_mcast_obj			mcast_obj;

	/* RSS configuration object */
	struct bnx2x_rss_config_obj		rss_conf_obj;

	/* Function State controlling object */
	struct bnx2x_func_sp_obj		func_obj;

	unsigned long				sp_state;

1542 1543 1544
	/* operation indication for the sp_rtnl task */
	unsigned long				sp_rtnl_state;

1545
	/* DCBX Negotation results */
V
Vladislav Zolotarov 已提交
1546 1547
	struct dcbx_features			dcbx_local_feat;
	u32					dcbx_error;
1548

1549 1550 1551 1552
#ifdef BCM_DCBNL
	struct dcbx_features			dcbx_remote_feat;
	u32					dcbx_remote_flags;
#endif
1553
	u32					pending_max;
1554 1555 1556 1557 1558 1559

	/* multiple tx classes of service */
	u8					max_cos;

	/* priority to cos mapping */
	u8					prio_to_cos[8];
E
Eliezer Tamir 已提交
1560 1561
};

1562 1563
/* Tx queues may be less or equal to Rx queues */
extern int num_queues;
1564
#define BNX2X_NUM_QUEUES(bp)	(bp->num_queues)
1565 1566
#define BNX2X_NUM_ETH_QUEUES(bp) (BNX2X_NUM_QUEUES(bp) - NON_ETH_CONTEXT_USE)
#define BNX2X_NUM_RX_QUEUES(bp)	BNX2X_NUM_QUEUES(bp)
V
Vladislav Zolotarov 已提交
1567

1568
#define is_multi(bp)		(BNX2X_NUM_QUEUES(bp) > 1)
1569

1570 1571
#define BNX2X_MAX_QUEUES(bp)	BNX2X_MAX_RSS_COUNT(bp)
/* #define is_eth_multi(bp)	(BNX2X_NUM_ETH_QUEUES(bp) > 1) */
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585

#define RSS_IPV4_CAP_MASK						\
	TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY

#define RSS_IPV4_TCP_CAP_MASK						\
	TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY

#define RSS_IPV6_CAP_MASK						\
	TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_CAPABILITY

#define RSS_IPV6_TCP_CAP_MASK						\
	TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_TCP_CAPABILITY

/* func init flags */
1586 1587 1588 1589 1590 1591
#define FUNC_FLG_RSS		0x0001
#define FUNC_FLG_STATS		0x0002
/* removed  FUNC_FLG_UNMATCHED	0x0004 */
#define FUNC_FLG_TPA		0x0008
#define FUNC_FLG_SPQ		0x0010
#define FUNC_FLG_LEADING	0x0020	/* PF only */
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604


struct bnx2x_func_init_params {
	/* dma */
	dma_addr_t	fw_stat_map;	/* valid iff FUNC_FLG_STATS */
	dma_addr_t	spq_map;	/* valid iff FUNC_FLG_SPQ */

	u16		func_flgs;
	u16		func_id;	/* abs fid */
	u16		pf_id;
	u16		spq_prod;	/* valid iff FUNC_FLG_SPQ */
};

V
Vladislav Zolotarov 已提交
1605
#define for_each_eth_queue(bp, var) \
1606
	for ((var) = 0; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
V
Vladislav Zolotarov 已提交
1607 1608

#define for_each_nondefault_eth_queue(bp, var) \
1609
	for ((var) = 1; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
V
Vladislav Zolotarov 已提交
1610

E
Eilon Greenstein 已提交
1611
#define for_each_queue(bp, var) \
1612
	for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
V
Vladislav Zolotarov 已提交
1613 1614 1615 1616
		if (skip_queue(bp, var))	\
			continue;		\
		else

1617
/* Skip forwarding FP */
V
Vladislav Zolotarov 已提交
1618
#define for_each_rx_queue(bp, var) \
1619
	for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
V
Vladislav Zolotarov 已提交
1620 1621 1622 1623
		if (skip_rx_queue(bp, var))	\
			continue;		\
		else

1624
/* Skip OOO FP */
V
Vladislav Zolotarov 已提交
1625
#define for_each_tx_queue(bp, var) \
1626
	for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
V
Vladislav Zolotarov 已提交
1627 1628 1629 1630
		if (skip_tx_queue(bp, var))	\
			continue;		\
		else

1631
#define for_each_nondefault_queue(bp, var) \
1632
	for ((var) = 1; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
V
Vladislav Zolotarov 已提交
1633 1634 1635
		if (skip_queue(bp, var))	\
			continue;		\
		else
1636

1637 1638 1639
#define for_each_cos_in_tx_queue(fp, var) \
	for ((var) = 0; (var) < (fp)->max_cos; (var)++)

V
Vladislav Zolotarov 已提交
1640
/* skip rx queue
1641
 * if FCOE l2 support is disabled and this is the fcoe L2 queue
V
Vladislav Zolotarov 已提交
1642 1643 1644 1645
 */
#define skip_rx_queue(bp, idx)	(NO_FCOE(bp) && IS_FCOE_IDX(idx))

/* skip tx queue
1646
 * if FCOE l2 support is disabled and this is the fcoe L2 queue
V
Vladislav Zolotarov 已提交
1647 1648 1649 1650
 */
#define skip_tx_queue(bp, idx)	(NO_FCOE(bp) && IS_FCOE_IDX(idx))

#define skip_queue(bp, idx)	(NO_FCOE(bp) && IS_FCOE_IDX(idx))
1651

D
Dmitry Kravkov 已提交
1652

1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708


/**
 * bnx2x_set_mac_one - configure a single MAC address
 *
 * @bp:			driver handle
 * @mac:		MAC to configure
 * @obj:		MAC object handle
 * @set:		if 'true' add a new MAC, otherwise - delete
 * @mac_type:		the type of the MAC to configure (e.g. ETH, UC list)
 * @ramrod_flags:	RAMROD_XXX flags (e.g. RAMROD_CONT, RAMROD_COMP_WAIT)
 *
 * Configures one MAC according to provided parameters or continues the
 * execution of previously scheduled commands if RAMROD_CONT is set in
 * ramrod_flags.
 *
 * Returns zero if operation has successfully completed, a positive value if the
 * operation has been successfully scheduled and a negative - if a requested
 * operations has failed.
 */
int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
		      struct bnx2x_vlan_mac_obj *obj, bool set,
		      int mac_type, unsigned long *ramrod_flags);
/**
 * Deletes all MACs configured for the specific MAC object.
 *
 * @param bp Function driver instance
 * @param mac_obj MAC object to cleanup
 *
 * @return zero if all MACs were cleaned
 */

/**
 * bnx2x_del_all_macs - delete all MACs configured for the specific MAC object
 *
 * @bp:			driver handle
 * @mac_obj:		MAC object handle
 * @mac_type:		type of the MACs to clear (BNX2X_XXX_MAC)
 * @wait_for_comp:	if 'true' block until completion
 *
 * Deletes all MACs of the specific type (e.g. ETH, UC list).
 *
 * Returns zero if operation has successfully completed, a positive value if the
 * operation has been successfully scheduled and a negative - if a requested
 * operations has failed.
 */
int bnx2x_del_all_macs(struct bnx2x *bp,
		       struct bnx2x_vlan_mac_obj *mac_obj,
		       int mac_type, bool wait_for_comp);

/* Init Function API  */
void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p);
int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port);
int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode);
int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
1709 1710
void bnx2x_read_mf_cfg(struct bnx2x *bp);

1711

D
Dmitry Kravkov 已提交
1712
/* dmae */
Y
Yaniv Rosner 已提交
1713 1714 1715
void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32);
void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
		      u32 len32);
D
Dmitry Kravkov 已提交
1716 1717 1718 1719 1720 1721 1722
void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx);
u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type);
u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode);
u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
		      bool with_comp, u8 comp_type);


1723 1724
void bnx2x_calc_fc_adv(struct bnx2x *bp);
int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
1725
		  u32 data_hi, u32 data_lo, int cmd_type);
1726
void bnx2x_update_coalesce(struct bnx2x *bp);
Y
Yaniv Rosner 已提交
1727
int bnx2x_get_cur_phy_idx(struct bnx2x *bp);
D
Dmitry Kravkov 已提交
1728

1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms,
			   int wait)
{
	u32 val;

	do {
		val = REG_RD(bp, reg);
		if (val == expected)
			break;
		ms -= wait;
		msleep(wait);

	} while (ms > 0);

	return val;
}
D
Dmitry Kravkov 已提交
1745

1746 1747
#define BNX2X_ILT_ZALLOC(x, y, size) \
	do { \
1748
		x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
1749 1750 1751 1752 1753 1754 1755
		if (x) \
			memset(x, 0, size); \
	} while (0)

#define BNX2X_ILT_FREE(x, y, size) \
	do { \
		if (x) { \
1756
			dma_free_coherent(&bp->pdev->dev, size, x, y); \
1757 1758 1759 1760 1761 1762 1763 1764 1765
			x = NULL; \
			y = 0; \
		} \
	} while (0)

#define ILOG2(x)	(ilog2((x)))

#define ILT_NUM_PAGE_ENTRIES	(3072)
/* In 57710/11 we use whole table since we have 8 func
D
Dmitry Kravkov 已提交
1766 1767
 * In 57712 we have only 4 func, but use same size per func, then only half of
 * the table in use
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
 */
#define ILT_PER_FUNC		(ILT_NUM_PAGE_ENTRIES/8)

#define FUNC_ILT_BASE(func)	(func * ILT_PER_FUNC)
/*
 * the phys address is shifted right 12 bits and has an added
 * 1=valid bit added to the 53rd bit
 * then since this is a wide register(TM)
 * we split it into two 32 bit writes
 */
#define ONCHIP_ADDR1(x)		((u32)(((u64)x >> 12) & 0xFFFFFFFF))
#define ONCHIP_ADDR2(x)		((u32)((1 << 20) | ((u64)x >> 44)))
1780 1781 1782 1783 1784 1785 1786

/* load/unload mode */
#define LOAD_NORMAL			0
#define LOAD_OPEN			1
#define LOAD_DIAG			2
#define UNLOAD_NORMAL			0
#define UNLOAD_CLOSE			1
D
Dmitry Kravkov 已提交
1787
#define UNLOAD_RECOVERY			2
1788

Y
Yitchak Gertner 已提交
1789

1790
/* DMAE command defines */
D
Dmitry Kravkov 已提交
1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809
#define DMAE_TIMEOUT			-1
#define DMAE_PCI_ERROR			-2	/* E2 and onward */
#define DMAE_NOT_RDY			-3
#define DMAE_PCI_ERR_FLAG		0x80000000

#define DMAE_SRC_PCI			0
#define DMAE_SRC_GRC			1

#define DMAE_DST_NONE			0
#define DMAE_DST_PCI			1
#define DMAE_DST_GRC			2

#define DMAE_COMP_PCI			0
#define DMAE_COMP_GRC			1

/* E2 and onward - PCI error handling in the completion */

#define DMAE_COMP_REGULAR		0
#define DMAE_COM_SET_ERR		1
1810

D
Dmitry Kravkov 已提交
1811 1812 1813 1814
#define DMAE_CMD_SRC_PCI		(DMAE_SRC_PCI << \
						DMAE_COMMAND_SRC_SHIFT)
#define DMAE_CMD_SRC_GRC		(DMAE_SRC_GRC << \
						DMAE_COMMAND_SRC_SHIFT)
1815

D
Dmitry Kravkov 已提交
1816 1817 1818 1819 1820 1821 1822 1823 1824
#define DMAE_CMD_DST_PCI		(DMAE_DST_PCI << \
						DMAE_COMMAND_DST_SHIFT)
#define DMAE_CMD_DST_GRC		(DMAE_DST_GRC << \
						DMAE_COMMAND_DST_SHIFT)

#define DMAE_CMD_C_DST_PCI		(DMAE_COMP_PCI << \
						DMAE_COMMAND_C_DST_SHIFT)
#define DMAE_CMD_C_DST_GRC		(DMAE_COMP_GRC << \
						DMAE_COMMAND_C_DST_SHIFT)
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839

#define DMAE_CMD_C_ENABLE		DMAE_COMMAND_C_TYPE_ENABLE

#define DMAE_CMD_ENDIANITY_NO_SWAP	(0 << DMAE_COMMAND_ENDIANITY_SHIFT)
#define DMAE_CMD_ENDIANITY_B_SWAP	(1 << DMAE_COMMAND_ENDIANITY_SHIFT)
#define DMAE_CMD_ENDIANITY_DW_SWAP	(2 << DMAE_COMMAND_ENDIANITY_SHIFT)
#define DMAE_CMD_ENDIANITY_B_DW_SWAP	(3 << DMAE_COMMAND_ENDIANITY_SHIFT)

#define DMAE_CMD_PORT_0			0
#define DMAE_CMD_PORT_1			DMAE_COMMAND_PORT

#define DMAE_CMD_SRC_RESET		DMAE_COMMAND_SRC_RESET
#define DMAE_CMD_DST_RESET		DMAE_COMMAND_DST_RESET
#define DMAE_CMD_E1HVN_SHIFT		DMAE_COMMAND_E1HVN_SHIFT

D
Dmitry Kravkov 已提交
1840 1841 1842 1843 1844 1845 1846 1847 1848
#define DMAE_SRC_PF			0
#define DMAE_SRC_VF			1

#define DMAE_DST_PF			0
#define DMAE_DST_VF			1

#define DMAE_C_SRC			0
#define DMAE_C_DST			1

1849
#define DMAE_LEN32_RD_MAX		0x80
1850
#define DMAE_LEN32_WR_MAX(bp)		(CHIP_IS_E1(bp) ? 0x400 : 0x2000)
1851

D
Dmitry Kravkov 已提交
1852 1853
#define DMAE_COMP_VAL			0x60d0d0ae /* E2 and on - upper bit
							indicates eror */
1854 1855

#define MAX_DMAE_C_PER_PORT		8
1856
#define INIT_DMAE_C(bp)			(BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
1857
					 BP_VN(bp))
1858
#define PMF_DMAE_C(bp)			(BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
1859 1860
					 E1HVN_MAX)

E
Eliezer Tamir 已提交
1861 1862 1863 1864 1865
/* PCIE link and speed */
#define PCICFG_LINK_WIDTH		0x1f00000
#define PCICFG_LINK_WIDTH_SHIFT		20
#define PCICFG_LINK_SPEED		0xf0000
#define PCICFG_LINK_SPEED_SHIFT		16
E
Eliezer Tamir 已提交
1866

Y
Yitchak Gertner 已提交
1867

1868
#define BNX2X_NUM_TESTS			7
Y
Yitchak Gertner 已提交
1869

E
Eilon Greenstein 已提交
1870 1871 1872 1873
#define BNX2X_PHY_LOOPBACK		0
#define BNX2X_MAC_LOOPBACK		1
#define BNX2X_PHY_LOOPBACK_FAILED	1
#define BNX2X_MAC_LOOPBACK_FAILED	2
Y
Yitchak Gertner 已提交
1874 1875
#define BNX2X_LOOPBACK_FAILED		(BNX2X_MAC_LOOPBACK_FAILED | \
					 BNX2X_PHY_LOOPBACK_FAILED)
E
Eliezer Tamir 已提交
1876

1877 1878 1879

#define STROM_ASSERT_ARRAY_SIZE		50

E
Eliezer Tamir 已提交
1880

1881
/* must be used on a CID before placing it on a HW ring */
1882
#define HW_CID(bp, x)			((BP_PORT(bp) << 23) | \
1883
					 (BP_VN(bp) << BNX2X_SWCID_SHIFT) | \
1884
					 (x))
1885 1886 1887 1888 1889

#define SP_DESC_CNT		(BCM_PAGE_SIZE / sizeof(struct eth_spe))
#define MAX_SP_DESC_CNT			(SP_DESC_CNT - 1)


1890
#define BNX2X_BTR			4
1891
#define MAX_SPQ_PENDING			8
E
Eliezer Tamir 已提交
1892

1893 1894 1895
/* CMNG constants, as derived from system spec calculations */
/* default MIN rate in case VNIC min rate is configured to zero - 100Mbps */
#define DEF_MIN_RATE					100
D
Dmitry Kravkov 已提交
1896 1897
/* resolution of the rate shaping timer - 400 usec */
#define RS_PERIODIC_TIMEOUT_USEC			400
1898
/* number of bytes in single QM arbitration cycle -
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
 * coefficient for calculating the fairness timer */
#define QM_ARB_BYTES					160000
/* resolution of Min algorithm 1:100 */
#define MIN_RES						100
/* how many bytes above threshold for the minimal credit of Min algorithm*/
#define MIN_ABOVE_THRESH				32768
/* Fairness algorithm integration time coefficient -
 * for calculating the actual Tfair */
#define T_FAIR_COEF	((MIN_ABOVE_THRESH +  QM_ARB_BYTES) * 8 * MIN_RES)
/* Memory of fairness algorithm . 2 cycles */
#define FAIR_MEM					2
1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925


#define ATTN_NIG_FOR_FUNC		(1L << 8)
#define ATTN_SW_TIMER_4_FUNC		(1L << 9)
#define GPIO_2_FUNC			(1L << 10)
#define GPIO_3_FUNC			(1L << 11)
#define GPIO_4_FUNC			(1L << 12)
#define ATTN_GENERAL_ATTN_1		(1L << 13)
#define ATTN_GENERAL_ATTN_2		(1L << 14)
#define ATTN_GENERAL_ATTN_3		(1L << 15)
#define ATTN_GENERAL_ATTN_4		(1L << 13)
#define ATTN_GENERAL_ATTN_5		(1L << 14)
#define ATTN_GENERAL_ATTN_6		(1L << 15)

#define ATTN_HARD_WIRED_MASK		0xff00
#define ATTENTION_ID			4
E
Eliezer Tamir 已提交
1926 1927


1928 1929 1930 1931 1932
/* stuff added to make the code fit 80Col */

#define BNX2X_PMF_LINK_ASSERT \
	GENERAL_ATTEN_OFFSET(LINK_SYNC_ATTENTION_BIT_FUNC_0 + BP_FUNC(bp))

E
Eliezer Tamir 已提交
1933 1934 1935 1936 1937 1938 1939 1940 1941
#define BNX2X_MC_ASSERT_BITS \
	(GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
	 GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
	 GENERAL_ATTEN_OFFSET(CSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
	 GENERAL_ATTEN_OFFSET(XSTORM_FATAL_ASSERT_ATTENTION_BIT))

#define BNX2X_MCP_ASSERT \
	GENERAL_ATTEN_OFFSET(MCP_FATAL_ASSERT_ATTENTION_BIT)

1942 1943 1944 1945 1946 1947 1948 1949
#define BNX2X_GRC_TIMEOUT	GENERAL_ATTEN_OFFSET(LATCHED_ATTN_TIMEOUT_GRC)
#define BNX2X_GRC_RSV		(GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCR) | \
				 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCT) | \
				 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCN) | \
				 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCU) | \
				 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCP) | \
				 GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RSVD_GRC))

E
Eliezer Tamir 已提交
1950 1951 1952 1953
#define HW_INTERRUT_ASSERT_SET_0 \
				(AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_TSEMI_HW_INTERRUPT | \
1954
				 AEU_INPUTS_ATTN_BITS_PBCLIENT_HW_INTERRUPT)
1955
#define HW_PRTY_ASSERT_SET_0	(AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR | \
E
Eliezer Tamir 已提交
1956 1957 1958
				 AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR |\
1959 1960 1961
				 AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR |\
				 AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR |\
				 AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR)
E
Eliezer Tamir 已提交
1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
#define HW_INTERRUT_ASSERT_SET_1 \
				(AEU_INPUTS_ATTN_BITS_QM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_TIMERS_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_XSDM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_XCM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_XSEMI_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_USDM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_UCM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_USEMI_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_UPB_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_CSDM_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_CCM_HW_INTERRUPT)
1974
#define HW_PRTY_ASSERT_SET_1	(AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR |\
E
Eliezer Tamir 已提交
1975
				 AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR | \
1976
				 AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR |\
E
Eliezer Tamir 已提交
1977
				 AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR | \
1978
				 AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR |\
E
Eliezer Tamir 已提交
1979
				 AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR | \
1980
				 AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR |\
1981
				 AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR |\
1982
			     AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR |\
E
Eliezer Tamir 已提交
1983 1984
				 AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR | \
1985
				 AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR |\
E
Eliezer Tamir 已提交
1986 1987
				 AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR | \
1988 1989
				 AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR |\
				 AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR)
E
Eliezer Tamir 已提交
1990 1991 1992 1993 1994 1995
#define HW_INTERRUT_ASSERT_SET_2 \
				(AEU_INPUTS_ATTN_BITS_CSEMI_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_CDU_HW_INTERRUPT | \
				 AEU_INPUTS_ATTN_BITS_DMAE_HW_INTERRUPT | \
			AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_HW_INTERRUPT |\
				 AEU_INPUTS_ATTN_BITS_MISC_HW_INTERRUPT)
1996
#define HW_PRTY_ASSERT_SET_2	(AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR | \
E
Eliezer Tamir 已提交
1997 1998 1999 2000
				 AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR | \
			AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR |\
				 AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR | \
2001
				 AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR |\
E
Eliezer Tamir 已提交
2002 2003 2004
				 AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR | \
				 AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)

2005 2006 2007 2008
#define HW_PRTY_ASSERT_SET_3 (AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY | \
		AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY | \
		AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY | \
		AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY)
E
Eliezer Tamir 已提交
2009

2010 2011 2012
#define HW_PRTY_ASSERT_SET_4 (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR | \
			      AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)

2013
#define MULTI_MASK			0x7f
E
Eliezer Tamir 已提交
2014

2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038

#define DEF_USB_FUNC_OFF	offsetof(struct cstorm_def_status_block_u, func)
#define DEF_CSB_FUNC_OFF	offsetof(struct cstorm_def_status_block_c, func)
#define DEF_XSB_FUNC_OFF	offsetof(struct xstorm_def_status_block, func)
#define DEF_TSB_FUNC_OFF	offsetof(struct tstorm_def_status_block, func)

#define DEF_USB_IGU_INDEX_OFF \
			offsetof(struct cstorm_def_status_block_u, igu_index)
#define DEF_CSB_IGU_INDEX_OFF \
			offsetof(struct cstorm_def_status_block_c, igu_index)
#define DEF_XSB_IGU_INDEX_OFF \
			offsetof(struct xstorm_def_status_block, igu_index)
#define DEF_TSB_IGU_INDEX_OFF \
			offsetof(struct tstorm_def_status_block, igu_index)

#define DEF_USB_SEGMENT_OFF \
			offsetof(struct cstorm_def_status_block_u, segment)
#define DEF_CSB_SEGMENT_OFF \
			offsetof(struct cstorm_def_status_block_c, segment)
#define DEF_XSB_SEGMENT_OFF \
			offsetof(struct xstorm_def_status_block, segment)
#define DEF_TSB_SEGMENT_OFF \
			offsetof(struct tstorm_def_status_block, segment)

E
Eliezer Tamir 已提交
2039
#define BNX2X_SP_DSB_INDEX \
2040 2041
		(&bp->def_status_blk->sp_sb.\
					index_values[HC_SP_INDEX_ETH_DEF_CONS])
D
Dmitry Kravkov 已提交
2042

2043 2044 2045 2046 2047
#define SET_FLAG(value, mask, flag) \
	do {\
		(value) &= ~(mask);\
		(value) |= ((flag) << (mask##_SHIFT));\
	} while (0)
E
Eliezer Tamir 已提交
2048

2049
#define GET_FLAG(value, mask) \
2050
	(((value) & (mask)) >> (mask##_SHIFT))
E
Eliezer Tamir 已提交
2051

D
Dmitry Kravkov 已提交
2052 2053 2054
#define GET_FIELD(value, fname) \
	(((value) & (fname##_MASK)) >> (fname##_SHIFT))

E
Eliezer Tamir 已提交
2055
#define CAM_IS_INVALID(x) \
2056 2057 2058
	(GET_FLAG(x.flags, \
	MAC_CONFIGURATION_ENTRY_ACTION_TYPE) == \
	(T_ETH_MAC_COMMAND_INVALIDATE))
E
Eliezer Tamir 已提交
2059

2060 2061 2062 2063
/* Number of u32 elements in MC hash array */
#define MC_HASH_SIZE			8
#define MC_HASH_OFFSET(bp, i)		(BAR_TSTRORM_INTMEM + \
	TSTORM_APPROXIMATE_MATCH_MULTICAST_FILTERING_OFFSET(BP_FUNC(bp)) + i*4)
E
Eliezer Tamir 已提交
2064 2065


2066 2067 2068 2069
#ifndef PXP2_REG_PXP2_INT_STS
#define PXP2_REG_PXP2_INT_STS		PXP2_REG_PXP2_INT_STS_0
#endif

D
Dmitry Kravkov 已提交
2070 2071 2072
#ifndef ETH_MAX_RX_CLIENTS_E2
#define ETH_MAX_RX_CLIENTS_E2		ETH_MAX_RX_CLIENTS_E1H
#endif
D
Dmitry Kravkov 已提交
2073

2074 2075 2076
#define BNX2X_VPD_LEN			128
#define VENDOR_ID_LEN			4

2077 2078
int bnx2x_close(struct net_device *dev);

2079 2080 2081 2082 2083 2084 2085 2086
/* Congestion management fairness mode */
#define CMNG_FNS_NONE		0
#define CMNG_FNS_MINMAX		1

#define HC_SEG_ACCESS_DEF		0   /*Driver decision 0-3*/
#define HC_SEG_ACCESS_ATTN		4
#define HC_SEG_ACCESS_NORM		0   /*Driver decision 0-1*/

2087 2088 2089 2090 2091 2092
static const u32 dmae_reg_go_c[] = {
	DMAE_REG_GO_C0, DMAE_REG_GO_C1, DMAE_REG_GO_C2, DMAE_REG_GO_C3,
	DMAE_REG_GO_C4, DMAE_REG_GO_C5, DMAE_REG_GO_C6, DMAE_REG_GO_C7,
	DMAE_REG_GO_C8, DMAE_REG_GO_C9, DMAE_REG_GO_C10, DMAE_REG_GO_C11,
	DMAE_REG_GO_C12, DMAE_REG_GO_C13, DMAE_REG_GO_C14, DMAE_REG_GO_C15
};
2093

2094
void bnx2x_set_ethtool_ops(struct net_device *netdev);
2095
void bnx2x_notify_link_changed(struct bnx2x *bp);
D
Dmitry Kravkov 已提交
2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107


#define BNX2X_MF_PROTOCOL(bp) \
	((bp)->mf_config[BP_VN(bp)] & FUNC_MF_CFG_PROTOCOL_MASK)

#ifdef BCM_CNIC
#define BNX2X_IS_MF_PROTOCOL_ISCSI(bp) \
	(BNX2X_MF_PROTOCOL(bp) == FUNC_MF_CFG_PROTOCOL_ISCSI)

#define IS_MF_ISCSI_SD(bp) (IS_MF_SD(bp) && BNX2X_IS_MF_PROTOCOL_ISCSI(bp))
#endif

E
Eliezer Tamir 已提交
2108
#endif /* bnx2x.h */