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