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