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