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