bnx2x: Created bnx2x_sp
[pandora-kernel.git] / drivers / net / bnx2x / bnx2x.h
1 /* bnx2x.h: Broadcom Everest network driver.
2  *
3  * Copyright (c) 2007-2011 Broadcom Corporation
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation.
8  *
9  * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10  * Written by: Eliezer Tamir
11  * Based on code from Michael Chan's bnx2 driver
12  */
13
14 #ifndef BNX2X_H
15 #define BNX2X_H
16 #include <linux/netdevice.h>
17 #include <linux/types.h>
18
19 /* compilation time flags */
20
21 /* define this to make the driver freeze on error to allow getting debug info
22  * (you will need to reboot afterwards) */
23 /* #define BNX2X_STOP_ON_ERROR */
24
25 #define DRV_MODULE_VERSION      "1.62.12-0"
26 #define DRV_MODULE_RELDATE      "2011/03/20"
27 #define BNX2X_BC_VER            0x040200
28
29 #define BNX2X_MULTI_QUEUE
30
31 #define BNX2X_NEW_NAPI
32
33 #if defined(CONFIG_DCB)
34 #define BCM_DCBNL
35 #endif
36 #if defined(CONFIG_CNIC) || defined(CONFIG_CNIC_MODULE)
37 #define BCM_CNIC 1
38 #include "../cnic_if.h"
39 #endif
40
41 #ifdef BCM_CNIC
42 #define BNX2X_MIN_MSIX_VEC_CNT 3
43 #define BNX2X_MSIX_VEC_FP_START 2
44 #else
45 #define BNX2X_MIN_MSIX_VEC_CNT 2
46 #define BNX2X_MSIX_VEC_FP_START 1
47 #endif
48
49 #include <linux/mdio.h>
50 #include <linux/pci.h>
51 #include "bnx2x_reg.h"
52 #include "bnx2x_fw_defs.h"
53 #include "bnx2x_hsi.h"
54 #include "bnx2x_link.h"
55 #include "bnx2x_dcb.h"
56 #include "bnx2x_stats.h"
57
58 /* error/debug prints */
59
60 #define DRV_MODULE_NAME         "bnx2x"
61
62 /* for messages that are currently off */
63 #define BNX2X_MSG_OFF                   0
64 #define BNX2X_MSG_MCP                   0x010000 /* was: NETIF_MSG_HW */
65 #define BNX2X_MSG_STATS                 0x020000 /* was: NETIF_MSG_TIMER */
66 #define BNX2X_MSG_NVM                   0x040000 /* was: NETIF_MSG_HW */
67 #define BNX2X_MSG_DMAE                  0x080000 /* was: NETIF_MSG_HW */
68 #define BNX2X_MSG_SP                    0x100000 /* was: NETIF_MSG_INTR */
69 #define BNX2X_MSG_FP                    0x200000 /* was: NETIF_MSG_INTR */
70
71 #define DP_LEVEL                        KERN_NOTICE     /* was: KERN_DEBUG */
72
73 /* regular debug print */
74 #define DP(__mask, __fmt, __args...)                            \
75 do {                                                            \
76         if (bp->msg_enable & (__mask))                          \
77                 printk(DP_LEVEL "[%s:%d(%s)]" __fmt,            \
78                        __func__, __LINE__,                      \
79                        bp->dev ? (bp->dev->name) : "?",         \
80                        ##__args);                               \
81 } while (0)
82
83 /* errors debug print */
84 #define BNX2X_DBG_ERR(__fmt, __args...)                         \
85 do {                                                            \
86         if (netif_msg_probe(bp))                                \
87                 pr_err("[%s:%d(%s)]" __fmt,                     \
88                        __func__, __LINE__,                      \
89                        bp->dev ? (bp->dev->name) : "?",         \
90                        ##__args);                               \
91 } while (0)
92
93 /* for errors (never masked) */
94 #define BNX2X_ERR(__fmt, __args...)                             \
95 do {                                                            \
96         pr_err("[%s:%d(%s)]" __fmt,                             \
97                __func__, __LINE__,                              \
98                bp->dev ? (bp->dev->name) : "?",                 \
99                ##__args);                                       \
100         } while (0)
101
102 #define BNX2X_ERROR(__fmt, __args...) do { \
103         pr_err("[%s:%d]" __fmt, __func__, __LINE__, ##__args); \
104         } while (0)
105
106
107 /* before we have a dev->name use dev_info() */
108 #define BNX2X_DEV_INFO(__fmt, __args...)                         \
109 do {                                                             \
110         if (netif_msg_probe(bp))                                 \
111                 dev_info(&bp->pdev->dev, __fmt, ##__args);       \
112 } while (0)
113
114 void bnx2x_panic_dump(struct bnx2x *bp);
115
116 #ifdef BNX2X_STOP_ON_ERROR
117 #define bnx2x_panic() do { \
118                 bp->panic = 1; \
119                 BNX2X_ERR("driver assert\n"); \
120                 bnx2x_int_disable(bp); \
121                 bnx2x_panic_dump(bp); \
122         } while (0)
123 #else
124 #define bnx2x_panic() do { \
125                 bp->panic = 1; \
126                 BNX2X_ERR("driver assert\n"); \
127                 bnx2x_panic_dump(bp); \
128         } while (0)
129 #endif
130
131 #define bnx2x_mc_addr(ha)      ((ha)->addr)
132 #define bnx2x_uc_addr(ha)      ((ha)->addr)
133
134 #define U64_LO(x)                       (u32)(((u64)(x)) & 0xffffffff)
135 #define U64_HI(x)                       (u32)(((u64)(x)) >> 32)
136 #define HILO_U64(hi, lo)                ((((u64)(hi)) << 32) + (lo))
137
138
139 #define REG_ADDR(bp, offset)            ((bp->regview) + (offset))
140
141 #define REG_RD(bp, offset)              readl(REG_ADDR(bp, offset))
142 #define REG_RD8(bp, offset)             readb(REG_ADDR(bp, offset))
143 #define REG_RD16(bp, offset)            readw(REG_ADDR(bp, offset))
144
145 #define REG_WR(bp, offset, val)         writel((u32)val, REG_ADDR(bp, offset))
146 #define REG_WR8(bp, offset, val)        writeb((u8)val, REG_ADDR(bp, offset))
147 #define REG_WR16(bp, offset, val)       writew((u16)val, REG_ADDR(bp, offset))
148
149 #define REG_RD_IND(bp, offset)          bnx2x_reg_rd_ind(bp, offset)
150 #define REG_WR_IND(bp, offset, val)     bnx2x_reg_wr_ind(bp, offset, val)
151
152 #define REG_RD_DMAE(bp, offset, valp, len32) \
153         do { \
154                 bnx2x_read_dmae(bp, offset, len32);\
155                 memcpy(valp, bnx2x_sp(bp, wb_data[0]), (len32) * 4); \
156         } while (0)
157
158 #define REG_WR_DMAE(bp, offset, valp, len32) \
159         do { \
160                 memcpy(bnx2x_sp(bp, wb_data[0]), valp, (len32) * 4); \
161                 bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
162                                  offset, len32); \
163         } while (0)
164
165 #define REG_WR_DMAE_LEN(bp, offset, valp, len32) \
166         REG_WR_DMAE(bp, offset, valp, len32)
167
168 #define VIRT_WR_DMAE_LEN(bp, data, addr, len32, le32_swap) \
169         do { \
170                 memcpy(GUNZIP_BUF(bp), data, (len32) * 4); \
171                 bnx2x_write_big_buf_wb(bp, addr, len32); \
172         } while (0)
173
174 #define SHMEM_ADDR(bp, field)           (bp->common.shmem_base + \
175                                          offsetof(struct shmem_region, field))
176 #define SHMEM_RD(bp, field)             REG_RD(bp, SHMEM_ADDR(bp, field))
177 #define SHMEM_WR(bp, field, val)        REG_WR(bp, SHMEM_ADDR(bp, field), val)
178
179 #define SHMEM2_ADDR(bp, field)          (bp->common.shmem2_base + \
180                                          offsetof(struct shmem2_region, field))
181 #define SHMEM2_RD(bp, field)            REG_RD(bp, SHMEM2_ADDR(bp, field))
182 #define SHMEM2_WR(bp, field, val)       REG_WR(bp, SHMEM2_ADDR(bp, field), val)
183 #define MF_CFG_ADDR(bp, field)          (bp->common.mf_cfg_base + \
184                                          offsetof(struct mf_cfg, field))
185 #define MF2_CFG_ADDR(bp, field)         (bp->common.mf2_cfg_base + \
186                                          offsetof(struct mf2_cfg, field))
187
188 #define MF_CFG_RD(bp, field)            REG_RD(bp, MF_CFG_ADDR(bp, field))
189 #define MF_CFG_WR(bp, field, val)       REG_WR(bp,\
190                                                MF_CFG_ADDR(bp, field), (val))
191 #define MF2_CFG_RD(bp, field)           REG_RD(bp, MF2_CFG_ADDR(bp, field))
192
193 #define SHMEM2_HAS(bp, field)           ((bp)->common.shmem2_base &&    \
194                                          (SHMEM2_RD((bp), size) >       \
195                                          offsetof(struct shmem2_region, field)))
196
197 #define EMAC_RD(bp, reg)                REG_RD(bp, emac_base + reg)
198 #define EMAC_WR(bp, reg, val)           REG_WR(bp, emac_base + reg, val)
199
200 /* SP SB indices */
201
202 /* General SP events - stats query, cfc delete, etc  */
203 #define HC_SP_INDEX_ETH_DEF_CONS                3
204
205 /* EQ completions */
206 #define HC_SP_INDEX_EQ_CONS                     7
207
208 /* FCoE L2 connection completions */
209 #define HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS         6
210 #define HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS         4
211 /* iSCSI L2 */
212 #define HC_SP_INDEX_ETH_ISCSI_CQ_CONS           5
213 #define HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS        1
214
215 /* Special clients parameters */
216
217 /* SB indices */
218 /* FCoE L2 */
219 #define BNX2X_FCOE_L2_RX_INDEX \
220         (&bp->def_status_blk->sp_sb.\
221         index_values[HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS])
222
223 #define BNX2X_FCOE_L2_TX_INDEX \
224         (&bp->def_status_blk->sp_sb.\
225         index_values[HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS])
226
227 /**
228  *  CIDs and CLIDs:
229  *  CLIDs below is a CLID for func 0, then the CLID for other
230  *  functions will be calculated by the formula:
231  *
232  *  FUNC_N_CLID_X = N * NUM_SPECIAL_CLIENTS + FUNC_0_CLID_X
233  *
234  */
235 /* iSCSI L2 */
236 #define BNX2X_ISCSI_ETH_CL_ID           17
237 #define BNX2X_ISCSI_ETH_CID             17
238
239 /* FCoE L2 */
240 #define BNX2X_FCOE_ETH_CL_ID            18
241 #define BNX2X_FCOE_ETH_CID              18
242
243 /** Additional rings budgeting */
244 #ifdef BCM_CNIC
245 #define CNIC_CONTEXT_USE                1
246 #define FCOE_CONTEXT_USE                1
247 #else
248 #define CNIC_CONTEXT_USE                0
249 #define FCOE_CONTEXT_USE                0
250 #endif /* BCM_CNIC */
251 #define NONE_ETH_CONTEXT_USE    (FCOE_CONTEXT_USE)
252
253 #define AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR \
254         AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR
255
256 #define SM_RX_ID                        0
257 #define SM_TX_ID                        1
258
259 /* fast path */
260
261 struct sw_rx_bd {
262         struct sk_buff  *skb;
263         DEFINE_DMA_UNMAP_ADDR(mapping);
264 };
265
266 struct sw_tx_bd {
267         struct sk_buff  *skb;
268         u16             first_bd;
269         u8              flags;
270 /* Set on the first BD descriptor when there is a split BD */
271 #define BNX2X_TSO_SPLIT_BD              (1<<0)
272 };
273
274 struct sw_rx_page {
275         struct page     *page;
276         DEFINE_DMA_UNMAP_ADDR(mapping);
277 };
278
279 union db_prod {
280         struct doorbell_set_prod data;
281         u32             raw;
282 };
283
284
285 /* MC hsi */
286 #define BCM_PAGE_SHIFT                  12
287 #define BCM_PAGE_SIZE                   (1 << BCM_PAGE_SHIFT)
288 #define BCM_PAGE_MASK                   (~(BCM_PAGE_SIZE - 1))
289 #define BCM_PAGE_ALIGN(addr)    (((addr) + BCM_PAGE_SIZE - 1) & BCM_PAGE_MASK)
290
291 #define PAGES_PER_SGE_SHIFT             0
292 #define PAGES_PER_SGE                   (1 << PAGES_PER_SGE_SHIFT)
293 #define SGE_PAGE_SIZE                   PAGE_SIZE
294 #define SGE_PAGE_SHIFT                  PAGE_SHIFT
295 #define SGE_PAGE_ALIGN(addr)            PAGE_ALIGN((typeof(PAGE_SIZE))(addr))
296
297 /* SGE ring related macros */
298 #define NUM_RX_SGE_PAGES                2
299 #define RX_SGE_CNT              (BCM_PAGE_SIZE / sizeof(struct eth_rx_sge))
300 #define MAX_RX_SGE_CNT                  (RX_SGE_CNT - 2)
301 /* RX_SGE_CNT is promised to be a power of 2 */
302 #define RX_SGE_MASK                     (RX_SGE_CNT - 1)
303 #define NUM_RX_SGE                      (RX_SGE_CNT * NUM_RX_SGE_PAGES)
304 #define MAX_RX_SGE                      (NUM_RX_SGE - 1)
305 #define NEXT_SGE_IDX(x)         ((((x) & RX_SGE_MASK) == \
306                                   (MAX_RX_SGE_CNT - 1)) ? (x) + 3 : (x) + 1)
307 #define RX_SGE(x)                       ((x) & MAX_RX_SGE)
308
309 /* SGE producer mask related macros */
310 /* Number of bits in one sge_mask array element */
311 #define RX_SGE_MASK_ELEM_SZ             64
312 #define RX_SGE_MASK_ELEM_SHIFT          6
313 #define RX_SGE_MASK_ELEM_MASK           ((u64)RX_SGE_MASK_ELEM_SZ - 1)
314
315 /* Creates a bitmask of all ones in less significant bits.
316    idx - index of the most significant bit in the created mask */
317 #define RX_SGE_ONES_MASK(idx) \
318                 (((u64)0x1 << (((idx) & RX_SGE_MASK_ELEM_MASK) + 1)) - 1)
319 #define RX_SGE_MASK_ELEM_ONE_MASK       ((u64)(~0))
320
321 /* Number of u64 elements in SGE mask array */
322 #define RX_SGE_MASK_LEN                 ((NUM_RX_SGE_PAGES * RX_SGE_CNT) / \
323                                          RX_SGE_MASK_ELEM_SZ)
324 #define RX_SGE_MASK_LEN_MASK            (RX_SGE_MASK_LEN - 1)
325 #define NEXT_SGE_MASK_ELEM(el)          (((el) + 1) & RX_SGE_MASK_LEN_MASK)
326
327 union host_hc_status_block {
328         /* pointer to fp status block e1x */
329         struct host_hc_status_block_e1x *e1x_sb;
330         /* pointer to fp status block e2 */
331         struct host_hc_status_block_e2  *e2_sb;
332 };
333
334 struct bnx2x_fastpath {
335
336 #define BNX2X_NAPI_WEIGHT       128
337         struct napi_struct      napi;
338         union host_hc_status_block      status_blk;
339         /* chip independed shortcuts into sb structure */
340         __le16                  *sb_index_values;
341         __le16                  *sb_running_index;
342         /* chip independed shortcut into rx_prods_offset memory */
343         u32                     ustorm_rx_prods_offset;
344
345         u32                     rx_buf_size;
346
347         dma_addr_t              status_blk_mapping;
348
349         struct sw_tx_bd         *tx_buf_ring;
350
351         union eth_tx_bd_types   *tx_desc_ring;
352         dma_addr_t              tx_desc_mapping;
353
354         struct sw_rx_bd         *rx_buf_ring;   /* BDs mappings ring */
355         struct sw_rx_page       *rx_page_ring;  /* SGE pages mappings ring */
356
357         struct eth_rx_bd        *rx_desc_ring;
358         dma_addr_t              rx_desc_mapping;
359
360         union eth_rx_cqe        *rx_comp_ring;
361         dma_addr_t              rx_comp_mapping;
362
363         /* SGE ring */
364         struct eth_rx_sge       *rx_sge_ring;
365         dma_addr_t              rx_sge_mapping;
366
367         u64                     sge_mask[RX_SGE_MASK_LEN];
368
369         int                     state;
370 #define BNX2X_FP_STATE_CLOSED           0
371 #define BNX2X_FP_STATE_IRQ              0x80000
372 #define BNX2X_FP_STATE_OPENING          0x90000
373 #define BNX2X_FP_STATE_OPEN             0xa0000
374 #define BNX2X_FP_STATE_HALTING          0xb0000
375 #define BNX2X_FP_STATE_HALTED           0xc0000
376 #define BNX2X_FP_STATE_TERMINATING      0xd0000
377 #define BNX2X_FP_STATE_TERMINATED       0xe0000
378
379         u8                      index;          /* number in fp array */
380         u8                      cl_id;          /* eth client id */
381         u8                      cl_qzone_id;
382         u8                      fw_sb_id;       /* status block number in FW */
383         u8                      igu_sb_id;      /* status block number in HW */
384         u32                     cid;
385
386         union db_prod           tx_db;
387
388         u16                     tx_pkt_prod;
389         u16                     tx_pkt_cons;
390         u16                     tx_bd_prod;
391         u16                     tx_bd_cons;
392         __le16                  *tx_cons_sb;
393
394         __le16                  fp_hc_idx;
395
396         u16                     rx_bd_prod;
397         u16                     rx_bd_cons;
398         u16                     rx_comp_prod;
399         u16                     rx_comp_cons;
400         u16                     rx_sge_prod;
401         /* The last maximal completed SGE */
402         u16                     last_max_sge;
403         __le16                  *rx_cons_sb;
404
405         unsigned long           tx_pkt,
406                                 rx_pkt,
407                                 rx_calls;
408
409         /* TPA related */
410         struct sw_rx_bd         tpa_pool[ETH_MAX_AGGREGATION_QUEUES_E1H];
411         u8                      tpa_state[ETH_MAX_AGGREGATION_QUEUES_E1H];
412 #define BNX2X_TPA_START                 1
413 #define BNX2X_TPA_STOP                  2
414         u8                      disable_tpa;
415 #ifdef BNX2X_STOP_ON_ERROR
416         u64                     tpa_queue_used;
417 #endif
418
419         struct tstorm_per_client_stats old_tclient;
420         struct ustorm_per_client_stats old_uclient;
421         struct xstorm_per_client_stats old_xclient;
422         struct bnx2x_eth_q_stats eth_q_stats;
423
424         /* The size is calculated using the following:
425              sizeof name field from netdev structure +
426              4 ('-Xx-' string) +
427              4 (for the digits and to make it DWORD aligned) */
428 #define FP_NAME_SIZE            (sizeof(((struct net_device *)0)->name) + 8)
429         char                    name[FP_NAME_SIZE];
430         struct bnx2x            *bp; /* parent */
431 };
432
433 #define bnx2x_fp(bp, nr, var)           (bp->fp[nr].var)
434
435 /* Use 2500 as a mini-jumbo MTU for FCoE */
436 #define BNX2X_FCOE_MINI_JUMBO_MTU       2500
437
438 #ifdef BCM_CNIC
439 /* FCoE L2 `fastpath' is right after the eth entries */
440 #define FCOE_IDX                        BNX2X_NUM_ETH_QUEUES(bp)
441 #define bnx2x_fcoe_fp(bp)               (&bp->fp[FCOE_IDX])
442 #define bnx2x_fcoe(bp, var)             (bnx2x_fcoe_fp(bp)->var)
443 #define IS_FCOE_FP(fp)                  (fp->index == FCOE_IDX)
444 #define IS_FCOE_IDX(idx)                ((idx) == FCOE_IDX)
445 #else
446 #define IS_FCOE_FP(fp)          false
447 #define IS_FCOE_IDX(idx)        false
448 #endif
449
450
451 /* MC hsi */
452 #define MAX_FETCH_BD                    13      /* HW max BDs per packet */
453 #define RX_COPY_THRESH                  92
454
455 #define NUM_TX_RINGS                    16
456 #define TX_DESC_CNT             (BCM_PAGE_SIZE / sizeof(union eth_tx_bd_types))
457 #define MAX_TX_DESC_CNT                 (TX_DESC_CNT - 1)
458 #define NUM_TX_BD                       (TX_DESC_CNT * NUM_TX_RINGS)
459 #define MAX_TX_BD                       (NUM_TX_BD - 1)
460 #define MAX_TX_AVAIL                    (MAX_TX_DESC_CNT * NUM_TX_RINGS - 2)
461 #define INIT_JUMBO_TX_RING_SIZE         MAX_TX_AVAIL
462 #define INIT_TX_RING_SIZE               MAX_TX_AVAIL
463 #define NEXT_TX_IDX(x)          ((((x) & MAX_TX_DESC_CNT) == \
464                                   (MAX_TX_DESC_CNT - 1)) ? (x) + 2 : (x) + 1)
465 #define TX_BD(x)                        ((x) & MAX_TX_BD)
466 #define TX_BD_POFF(x)                   ((x) & MAX_TX_DESC_CNT)
467
468 /* The RX BD ring is special, each bd is 8 bytes but the last one is 16 */
469 #define NUM_RX_RINGS                    8
470 #define RX_DESC_CNT             (BCM_PAGE_SIZE / sizeof(struct eth_rx_bd))
471 #define MAX_RX_DESC_CNT                 (RX_DESC_CNT - 2)
472 #define RX_DESC_MASK                    (RX_DESC_CNT - 1)
473 #define NUM_RX_BD                       (RX_DESC_CNT * NUM_RX_RINGS)
474 #define MAX_RX_BD                       (NUM_RX_BD - 1)
475 #define MAX_RX_AVAIL                    (MAX_RX_DESC_CNT * NUM_RX_RINGS - 2)
476 #define MIN_RX_SIZE_TPA                 72
477 #define MIN_RX_SIZE_NONTPA              10
478 #define INIT_JUMBO_RX_RING_SIZE         MAX_RX_AVAIL
479 #define INIT_RX_RING_SIZE               MAX_RX_AVAIL
480 #define NEXT_RX_IDX(x)          ((((x) & RX_DESC_MASK) == \
481                                   (MAX_RX_DESC_CNT - 1)) ? (x) + 3 : (x) + 1)
482 #define RX_BD(x)                        ((x) & MAX_RX_BD)
483
484 /* As long as CQE is 4 times bigger than BD entry we have to allocate
485    4 times more pages for CQ ring in order to keep it balanced with
486    BD ring */
487 #define NUM_RCQ_RINGS                   (NUM_RX_RINGS * 4)
488 #define RCQ_DESC_CNT            (BCM_PAGE_SIZE / sizeof(union eth_rx_cqe))
489 #define MAX_RCQ_DESC_CNT                (RCQ_DESC_CNT - 1)
490 #define NUM_RCQ_BD                      (RCQ_DESC_CNT * NUM_RCQ_RINGS)
491 #define MAX_RCQ_BD                      (NUM_RCQ_BD - 1)
492 #define MAX_RCQ_AVAIL                   (MAX_RCQ_DESC_CNT * NUM_RCQ_RINGS - 2)
493 #define NEXT_RCQ_IDX(x)         ((((x) & MAX_RCQ_DESC_CNT) == \
494                                   (MAX_RCQ_DESC_CNT - 1)) ? (x) + 2 : (x) + 1)
495 #define RCQ_BD(x)                       ((x) & MAX_RCQ_BD)
496
497
498 /* This is needed for determining of last_max */
499 #define SUB_S16(a, b)                   (s16)((s16)(a) - (s16)(b))
500
501 #define __SGE_MASK_SET_BIT(el, bit) \
502         do { \
503                 el = ((el) | ((u64)0x1 << (bit))); \
504         } while (0)
505
506 #define __SGE_MASK_CLEAR_BIT(el, bit) \
507         do { \
508                 el = ((el) & (~((u64)0x1 << (bit)))); \
509         } while (0)
510
511 #define SGE_MASK_SET_BIT(fp, idx) \
512         __SGE_MASK_SET_BIT(fp->sge_mask[(idx) >> RX_SGE_MASK_ELEM_SHIFT], \
513                            ((idx) & RX_SGE_MASK_ELEM_MASK))
514
515 #define SGE_MASK_CLEAR_BIT(fp, idx) \
516         __SGE_MASK_CLEAR_BIT(fp->sge_mask[(idx) >> RX_SGE_MASK_ELEM_SHIFT], \
517                              ((idx) & RX_SGE_MASK_ELEM_MASK))
518
519
520 /* used on a CID received from the HW */
521 #define SW_CID(x)                       (le32_to_cpu(x) & \
522                                          (COMMON_RAMROD_ETH_RX_CQE_CID >> 7))
523 #define CQE_CMD(x)                      (le32_to_cpu(x) >> \
524                                         COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT)
525
526 #define BD_UNMAP_ADDR(bd)               HILO_U64(le32_to_cpu((bd)->addr_hi), \
527                                                  le32_to_cpu((bd)->addr_lo))
528 #define BD_UNMAP_LEN(bd)                (le16_to_cpu((bd)->nbytes))
529
530 #define BNX2X_DB_MIN_SHIFT              3       /* 8 bytes */
531 #define BNX2X_DB_SHIFT                  7       /* 128 bytes*/
532 #define DPM_TRIGER_TYPE                 0x40
533 #define DOORBELL(bp, cid, val) \
534         do { \
535                 writel((u32)(val), bp->doorbells + (bp->db_size * (cid)) + \
536                        DPM_TRIGER_TYPE); \
537         } while (0)
538
539
540 /* TX CSUM helpers */
541 #define SKB_CS_OFF(skb)         (offsetof(struct tcphdr, check) - \
542                                  skb->csum_offset)
543 #define SKB_CS(skb)             (*(u16 *)(skb_transport_header(skb) + \
544                                           skb->csum_offset))
545
546 #define pbd_tcp_flags(skb)      (ntohl(tcp_flag_word(tcp_hdr(skb)))>>16 & 0xff)
547
548 #define XMIT_PLAIN                      0
549 #define XMIT_CSUM_V4                    0x1
550 #define XMIT_CSUM_V6                    0x2
551 #define XMIT_CSUM_TCP                   0x4
552 #define XMIT_GSO_V4                     0x8
553 #define XMIT_GSO_V6                     0x10
554
555 #define XMIT_CSUM                       (XMIT_CSUM_V4 | XMIT_CSUM_V6)
556 #define XMIT_GSO                        (XMIT_GSO_V4 | XMIT_GSO_V6)
557
558
559 /* stuff added to make the code fit 80Col */
560
561 #define CQE_TYPE(cqe_fp_flags)  ((cqe_fp_flags) & ETH_FAST_PATH_RX_CQE_TYPE)
562
563 #define TPA_TYPE_START                  ETH_FAST_PATH_RX_CQE_START_FLG
564 #define TPA_TYPE_END                    ETH_FAST_PATH_RX_CQE_END_FLG
565 #define TPA_TYPE(cqe_fp_flags)          ((cqe_fp_flags) & \
566                                          (TPA_TYPE_START | TPA_TYPE_END))
567
568 #define ETH_RX_ERROR_FALGS              ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG
569
570 #define BNX2X_IP_CSUM_ERR(cqe) \
571                         (!((cqe)->fast_path_cqe.status_flags & \
572                            ETH_FAST_PATH_RX_CQE_IP_XSUM_NO_VALIDATION_FLG) && \
573                          ((cqe)->fast_path_cqe.type_error_flags & \
574                           ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG))
575
576 #define BNX2X_L4_CSUM_ERR(cqe) \
577                         (!((cqe)->fast_path_cqe.status_flags & \
578                            ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG) && \
579                          ((cqe)->fast_path_cqe.type_error_flags & \
580                           ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG))
581
582 #define BNX2X_RX_CSUM_OK(cqe) \
583                         (!(BNX2X_L4_CSUM_ERR(cqe) || BNX2X_IP_CSUM_ERR(cqe)))
584
585 #define BNX2X_PRS_FLAG_OVERETH_IPV4(flags) \
586                                 (((le16_to_cpu(flags) & \
587                                    PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) >> \
588                                   PARSING_FLAGS_OVER_ETHERNET_PROTOCOL_SHIFT) \
589                                  == PRS_FLAG_OVERETH_IPV4)
590 #define BNX2X_RX_SUM_FIX(cqe) \
591         BNX2X_PRS_FLAG_OVERETH_IPV4(cqe->fast_path_cqe.pars_flags.flags)
592
593 #define U_SB_ETH_RX_CQ_INDEX            1
594 #define U_SB_ETH_RX_BD_INDEX            2
595 #define C_SB_ETH_TX_CQ_INDEX            5
596
597 #define BNX2X_RX_SB_INDEX \
598         (&fp->sb_index_values[U_SB_ETH_RX_CQ_INDEX])
599
600 #define BNX2X_TX_SB_INDEX \
601         (&fp->sb_index_values[C_SB_ETH_TX_CQ_INDEX])
602
603 /* end of fast path */
604
605 /* common */
606
607 struct bnx2x_common {
608
609         u32                     chip_id;
610 /* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
611 #define CHIP_ID(bp)                     (bp->common.chip_id & 0xfffffff0)
612
613 #define CHIP_NUM(bp)                    (bp->common.chip_id >> 16)
614 #define CHIP_NUM_57710                  0x164e
615 #define CHIP_NUM_57711                  0x164f
616 #define CHIP_NUM_57711E                 0x1650
617 #define CHIP_NUM_57712                  0x1662
618 #define CHIP_NUM_57712E                 0x1663
619 #define CHIP_IS_E1(bp)                  (CHIP_NUM(bp) == CHIP_NUM_57710)
620 #define CHIP_IS_57711(bp)               (CHIP_NUM(bp) == CHIP_NUM_57711)
621 #define CHIP_IS_57711E(bp)              (CHIP_NUM(bp) == CHIP_NUM_57711E)
622 #define CHIP_IS_57712(bp)               (CHIP_NUM(bp) == CHIP_NUM_57712)
623 #define CHIP_IS_57712E(bp)              (CHIP_NUM(bp) == CHIP_NUM_57712E)
624 #define CHIP_IS_E1H(bp)                 (CHIP_IS_57711(bp) || \
625                                          CHIP_IS_57711E(bp))
626 #define CHIP_IS_E2(bp)                  (CHIP_IS_57712(bp) || \
627                                          CHIP_IS_57712E(bp))
628 #define CHIP_IS_E1x(bp)                 (CHIP_IS_E1((bp)) || CHIP_IS_E1H((bp)))
629 #define IS_E1H_OFFSET                   (CHIP_IS_E1H(bp) || CHIP_IS_E2(bp))
630
631 #define CHIP_REV(bp)                    (bp->common.chip_id & 0x0000f000)
632 #define CHIP_REV_Ax                     0x00000000
633 /* assume maximum 5 revisions */
634 #define CHIP_REV_IS_SLOW(bp)            (CHIP_REV(bp) > 0x00005000)
635 /* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
636 #define CHIP_REV_IS_EMUL(bp)            ((CHIP_REV_IS_SLOW(bp)) && \
637                                          !(CHIP_REV(bp) & 0x00001000))
638 /* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
639 #define CHIP_REV_IS_FPGA(bp)            ((CHIP_REV_IS_SLOW(bp)) && \
640                                          (CHIP_REV(bp) & 0x00001000))
641
642 #define CHIP_TIME(bp)                   ((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
643                                         ((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))
644
645 #define CHIP_METAL(bp)                  (bp->common.chip_id & 0x00000ff0)
646 #define CHIP_BOND_ID(bp)                (bp->common.chip_id & 0x0000000f)
647 #define CHIP_PARITY_ENABLED(bp) (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp))
648
649         int                     flash_size;
650 #define NVRAM_1MB_SIZE                  0x20000 /* 1M bit in bytes */
651 #define NVRAM_TIMEOUT_COUNT             30000
652 #define NVRAM_PAGE_SIZE                 256
653
654         u32                     shmem_base;
655         u32                     shmem2_base;
656         u32                     mf_cfg_base;
657         u32                     mf2_cfg_base;
658
659         u32                     hw_config;
660
661         u32                     bc_ver;
662
663         u8                      int_block;
664 #define INT_BLOCK_HC                    0
665 #define INT_BLOCK_IGU                   1
666 #define INT_BLOCK_MODE_NORMAL           0
667 #define INT_BLOCK_MODE_BW_COMP          2
668 #define CHIP_INT_MODE_IS_NBC(bp)                \
669                         (CHIP_IS_E2(bp) &&      \
670                         !((bp)->common.int_block & INT_BLOCK_MODE_BW_COMP))
671 #define CHIP_INT_MODE_IS_BC(bp) (!CHIP_INT_MODE_IS_NBC(bp))
672
673         u8                      chip_port_mode;
674 #define CHIP_4_PORT_MODE                        0x0
675 #define CHIP_2_PORT_MODE                        0x1
676 #define CHIP_PORT_MODE_NONE                     0x2
677 #define CHIP_MODE(bp)                   (bp->common.chip_port_mode)
678 #define CHIP_MODE_IS_4_PORT(bp) (CHIP_MODE(bp) == CHIP_4_PORT_MODE)
679 };
680
681 /* IGU MSIX STATISTICS on 57712: 64 for VFs; 4 for PFs; 4 for Attentions */
682 #define BNX2X_IGU_STAS_MSG_VF_CNT 64
683 #define BNX2X_IGU_STAS_MSG_PF_CNT 4
684
685 /* end of common */
686
687 /* port */
688
689 struct bnx2x_port {
690         u32                     pmf;
691
692         u32                     link_config[LINK_CONFIG_SIZE];
693
694         u32                     supported[LINK_CONFIG_SIZE];
695 /* link settings - missing defines */
696 #define SUPPORTED_2500baseX_Full        (1 << 15)
697
698         u32                     advertising[LINK_CONFIG_SIZE];
699 /* link settings - missing defines */
700 #define ADVERTISED_2500baseX_Full       (1 << 15)
701
702         u32                     phy_addr;
703
704         /* used to synchronize phy accesses */
705         struct mutex            phy_mutex;
706         int                     need_hw_lock;
707
708         u32                     port_stx;
709
710         struct nig_stats        old_nig_stats;
711 };
712
713 /* end of port */
714
715 /* e1h Classification CAM line allocations */
716 enum {
717         CAM_ETH_LINE = 0,
718         CAM_ISCSI_ETH_LINE,
719         CAM_FIP_ETH_LINE,
720         CAM_FIP_MCAST_LINE,
721         CAM_MAX_PF_LINE = CAM_FIP_MCAST_LINE
722 };
723 /* number of MACs per function in NIG memory - used for SI mode */
724 #define NIG_LLH_FUNC_MEM_SIZE           16
725 /* number of entries in NIG_REG_LLHX_FUNC_MEM */
726 #define NIG_LLH_FUNC_MEM_MAX_OFFSET     8
727
728 #define BNX2X_VF_ID_INVALID     0xFF
729
730 /*
731  * The total number of L2 queues, MSIX vectors and HW contexts (CIDs) is
732  * control by the number of fast-path status blocks supported by the
733  * device (HW/FW). Each fast-path status block (FP-SB) aka non-default
734  * status block represents an independent interrupts context that can
735  * serve a regular L2 networking queue. However special L2 queues such
736  * as the FCoE queue do not require a FP-SB and other components like
737  * the CNIC may consume FP-SB reducing the number of possible L2 queues
738  *
739  * If the maximum number of FP-SB available is X then:
740  * a. If CNIC is supported it consumes 1 FP-SB thus the max number of
741  *    regular L2 queues is Y=X-1
742  * b. in MF mode the actual number of L2 queues is Y= (X-1/MF_factor)
743  * c. If the FCoE L2 queue is supported the actual number of L2 queues
744  *    is Y+1
745  * d. The number of irqs (MSIX vectors) is either Y+1 (one extra for
746  *    slow-path interrupts) or Y+2 if CNIC is supported (one additional
747  *    FP interrupt context for the CNIC).
748  * e. The number of HW context (CID count) is always X or X+1 if FCoE
749  *    L2 queue is supported. the cid for the FCoE L2 queue is always X.
750  */
751
752 #define FP_SB_MAX_E1x           16      /* fast-path interrupt contexts E1x */
753 #define FP_SB_MAX_E2            16      /* fast-path interrupt contexts E2 */
754
755 /*
756  * cid_cnt paramter below refers to the value returned by
757  * 'bnx2x_get_l2_cid_count()' routine
758  */
759
760 /*
761  * The number of FP context allocated by the driver == max number of regular
762  * L2 queues + 1 for the FCoE L2 queue
763  */
764 #define L2_FP_COUNT(cid_cnt)    ((cid_cnt) - CNIC_CONTEXT_USE)
765
766 /*
767  * The number of FP-SB allocated by the driver == max number of regular L2
768  * queues + 1 for the CNIC which also consumes an FP-SB
769  */
770 #define FP_SB_COUNT(cid_cnt)    ((cid_cnt) - FCOE_CONTEXT_USE)
771 #define NUM_IGU_SB_REQUIRED(cid_cnt) \
772                                 (FP_SB_COUNT(cid_cnt) - NONE_ETH_CONTEXT_USE)
773
774 union cdu_context {
775         struct eth_context eth;
776         char pad[1024];
777 };
778
779 /* CDU host DB constants */
780 #define CDU_ILT_PAGE_SZ_HW      3
781 #define CDU_ILT_PAGE_SZ         (4096 << CDU_ILT_PAGE_SZ_HW) /* 32K */
782 #define ILT_PAGE_CIDS           (CDU_ILT_PAGE_SZ / sizeof(union cdu_context))
783
784 #ifdef BCM_CNIC
785 #define CNIC_ISCSI_CID_MAX      256
786 #define CNIC_FCOE_CID_MAX       2048
787 #define CNIC_CID_MAX            (CNIC_ISCSI_CID_MAX + CNIC_FCOE_CID_MAX)
788 #define CNIC_ILT_LINES          DIV_ROUND_UP(CNIC_CID_MAX, ILT_PAGE_CIDS)
789 #endif
790
791 #define QM_ILT_PAGE_SZ_HW       3
792 #define QM_ILT_PAGE_SZ          (4096 << QM_ILT_PAGE_SZ_HW) /* 32K */
793 #define QM_CID_ROUND            1024
794
795 #ifdef BCM_CNIC
796 /* TM (timers) host DB constants */
797 #define TM_ILT_PAGE_SZ_HW       2
798 #define TM_ILT_PAGE_SZ          (4096 << TM_ILT_PAGE_SZ_HW) /* 16K */
799 /* #define TM_CONN_NUM          (CNIC_STARTING_CID+CNIC_ISCSI_CXT_MAX) */
800 #define TM_CONN_NUM             1024
801 #define TM_ILT_SZ               (8 * TM_CONN_NUM)
802 #define TM_ILT_LINES            DIV_ROUND_UP(TM_ILT_SZ, TM_ILT_PAGE_SZ)
803
804 /* SRC (Searcher) host DB constants */
805 #define SRC_ILT_PAGE_SZ_HW      3
806 #define SRC_ILT_PAGE_SZ         (4096 << SRC_ILT_PAGE_SZ_HW) /* 32K */
807 #define SRC_HASH_BITS           10
808 #define SRC_CONN_NUM            (1 << SRC_HASH_BITS) /* 1024 */
809 #define SRC_ILT_SZ              (sizeof(struct src_ent) * SRC_CONN_NUM)
810 #define SRC_T2_SZ               SRC_ILT_SZ
811 #define SRC_ILT_LINES           DIV_ROUND_UP(SRC_ILT_SZ, SRC_ILT_PAGE_SZ)
812 #endif
813
814 #define MAX_DMAE_C                      8
815
816 /* DMA memory not used in fastpath */
817 struct bnx2x_slowpath {
818         struct eth_stats_query          fw_stats;
819         struct mac_configuration_cmd    mac_config;
820         struct mac_configuration_cmd    mcast_config;
821         struct mac_configuration_cmd    uc_mac_config;
822         struct client_init_ramrod_data  client_init_data;
823
824         /* used by dmae command executer */
825         struct dmae_command             dmae[MAX_DMAE_C];
826
827         u32                             stats_comp;
828         union mac_stats                 mac_stats;
829         struct nig_stats                nig_stats;
830         struct host_port_stats          port_stats;
831         struct host_func_stats          func_stats;
832         struct host_func_stats          func_stats_base;
833
834         u32                             wb_comp;
835         u32                             wb_data[4];
836         /* pfc configuration for DCBX ramrod */
837         struct flow_control_configuration pfc_config;
838 };
839
840 #define bnx2x_sp(bp, var)               (&bp->slowpath->var)
841 #define bnx2x_sp_mapping(bp, var) \
842                 (bp->slowpath_mapping + offsetof(struct bnx2x_slowpath, var))
843
844
845 /* attn group wiring */
846 #define MAX_DYNAMIC_ATTN_GRPS           8
847
848 struct attn_route {
849         u32     sig[5];
850 };
851
852 struct iro {
853         u32 base;
854         u16 m1;
855         u16 m2;
856         u16 m3;
857         u16 size;
858 };
859
860 struct hw_context {
861         union cdu_context *vcxt;
862         dma_addr_t cxt_mapping;
863         size_t size;
864 };
865
866 /* forward */
867 struct bnx2x_ilt;
868
869 typedef enum {
870         BNX2X_RECOVERY_DONE,
871         BNX2X_RECOVERY_INIT,
872         BNX2X_RECOVERY_WAIT,
873 } bnx2x_recovery_state_t;
874
875 /**
876  * Event queue (EQ or event ring) MC hsi
877  * NUM_EQ_PAGES and EQ_DESC_CNT_PAGE must be power of 2
878  */
879 #define NUM_EQ_PAGES            1
880 #define EQ_DESC_CNT_PAGE        (BCM_PAGE_SIZE / sizeof(union event_ring_elem))
881 #define EQ_DESC_MAX_PAGE        (EQ_DESC_CNT_PAGE - 1)
882 #define NUM_EQ_DESC             (EQ_DESC_CNT_PAGE * NUM_EQ_PAGES)
883 #define EQ_DESC_MASK            (NUM_EQ_DESC - 1)
884 #define MAX_EQ_AVAIL            (EQ_DESC_MAX_PAGE * NUM_EQ_PAGES - 2)
885
886 /* depends on EQ_DESC_CNT_PAGE being a power of 2 */
887 #define NEXT_EQ_IDX(x)          ((((x) & EQ_DESC_MAX_PAGE) == \
888                                   (EQ_DESC_MAX_PAGE - 1)) ? (x) + 2 : (x) + 1)
889
890 /* depends on the above and on NUM_EQ_PAGES being a power of 2 */
891 #define EQ_DESC(x)              ((x) & EQ_DESC_MASK)
892
893 #define BNX2X_EQ_INDEX \
894         (&bp->def_status_blk->sp_sb.\
895         index_values[HC_SP_INDEX_EQ_CONS])
896
897 /* This is a data that will be used to create a link report message.
898  * We will keep the data used for the last link report in order
899  * to prevent reporting the same link parameters twice.
900  */
901 struct bnx2x_link_report_data {
902         u16 line_speed;                 /* Effective line speed */
903         unsigned long link_report_flags;/* BNX2X_LINK_REPORT_XXX flags */
904 };
905
906 enum {
907         BNX2X_LINK_REPORT_FD,           /* Full DUPLEX */
908         BNX2X_LINK_REPORT_LINK_DOWN,
909         BNX2X_LINK_REPORT_RX_FC_ON,
910         BNX2X_LINK_REPORT_TX_FC_ON,
911 };
912
913 struct bnx2x {
914         /* Fields used in the tx and intr/napi performance paths
915          * are grouped together in the beginning of the structure
916          */
917         struct bnx2x_fastpath   *fp;
918         void __iomem            *regview;
919         void __iomem            *doorbells;
920         u16                     db_size;
921
922         struct net_device       *dev;
923         struct pci_dev          *pdev;
924
925         struct iro              *iro_arr;
926 #define IRO (bp->iro_arr)
927
928         bnx2x_recovery_state_t  recovery_state;
929         int                     is_leader;
930         struct msix_entry       *msix_table;
931
932         int                     tx_ring_size;
933
934 /* L2 header size + 2*VLANs (8 bytes) + LLC SNAP (8 bytes) */
935 #define ETH_OVREHEAD            (ETH_HLEN + 8 + 8)
936 #define ETH_MIN_PACKET_SIZE             60
937 #define ETH_MAX_PACKET_SIZE             1500
938 #define ETH_MAX_JUMBO_PACKET_SIZE       9600
939
940         /* Max supported alignment is 256 (8 shift) */
941 #define BNX2X_RX_ALIGN_SHIFT            ((L1_CACHE_SHIFT < 8) ? \
942                                          L1_CACHE_SHIFT : 8)
943 #define BNX2X_RX_ALIGN                  (1 << BNX2X_RX_ALIGN_SHIFT)
944 #define BNX2X_PXP_DRAM_ALIGN            (BNX2X_RX_ALIGN_SHIFT - 5)
945
946         struct host_sp_status_block *def_status_blk;
947 #define DEF_SB_IGU_ID                   16
948 #define DEF_SB_ID                       HC_SP_SB_ID
949         __le16                  def_idx;
950         __le16                  def_att_idx;
951         u32                     attn_state;
952         struct attn_route       attn_group[MAX_DYNAMIC_ATTN_GRPS];
953
954         /* slow path ring */
955         struct eth_spe          *spq;
956         dma_addr_t              spq_mapping;
957         u16                     spq_prod_idx;
958         struct eth_spe          *spq_prod_bd;
959         struct eth_spe          *spq_last_bd;
960         __le16                  *dsb_sp_prod;
961         atomic_t                cq_spq_left; /* ETH_XXX ramrods credit */
962         /* used to synchronize spq accesses */
963         spinlock_t              spq_lock;
964
965         /* event queue */
966         union event_ring_elem   *eq_ring;
967         dma_addr_t              eq_mapping;
968         u16                     eq_prod;
969         u16                     eq_cons;
970         __le16                  *eq_cons_sb;
971         atomic_t                eq_spq_left; /* COMMON_XXX ramrods credit */
972
973         /* Flags for marking that there is a STAT_QUERY or
974            SET_MAC ramrod pending */
975         int                     stats_pending;
976         int                     set_mac_pending;
977
978         /* End of fields used in the performance code paths */
979
980         int                     panic;
981         int                     msg_enable;
982
983         u32                     flags;
984 #define PCIX_FLAG                       1
985 #define PCI_32BIT_FLAG                  2
986 #define ONE_PORT_FLAG                   4
987 #define NO_WOL_FLAG                     8
988 #define USING_DAC_FLAG                  0x10
989 #define USING_MSIX_FLAG                 0x20
990 #define USING_MSI_FLAG                  0x40
991
992 #define TPA_ENABLE_FLAG                 0x80
993 #define NO_MCP_FLAG                     0x100
994 #define DISABLE_MSI_FLAG                0x200
995 #define BP_NOMCP(bp)                    (bp->flags & NO_MCP_FLAG)
996 #define MF_FUNC_DIS                     0x1000
997 #define FCOE_MACS_SET                   0x2000
998 #define NO_FCOE_FLAG                    0x4000
999 #define NO_ISCSI_OOO_FLAG               0x8000
1000 #define NO_ISCSI_FLAG                   0x10000
1001
1002 #define NO_FCOE(bp)             ((bp)->flags & NO_FCOE_FLAG)
1003 #define NO_ISCSI(bp)            ((bp)->flags & NO_ISCSI_FLAG)
1004 #define NO_ISCSI_OOO(bp)        ((bp)->flags & NO_ISCSI_OOO_FLAG)
1005
1006         int                     pf_num; /* absolute PF number */
1007         int                     pfid;   /* per-path PF number */
1008         int                     base_fw_ndsb;
1009 #define BP_PATH(bp)                     (!CHIP_IS_E2(bp) ? \
1010                                                 0 : (bp->pf_num & 1))
1011 #define BP_PORT(bp)                     (bp->pfid & 1)
1012 #define BP_FUNC(bp)                     (bp->pfid)
1013 #define BP_ABS_FUNC(bp)                 (bp->pf_num)
1014 #define BP_E1HVN(bp)                    (bp->pfid >> 1)
1015 #define BP_VN(bp)                       (CHIP_MODE_IS_4_PORT(bp) ? \
1016                                                 0 : BP_E1HVN(bp))
1017 #define BP_L_ID(bp)                     (BP_E1HVN(bp) << 2)
1018 #define BP_FW_MB_IDX(bp)                (BP_PORT(bp) +\
1019                                          BP_VN(bp) * (CHIP_IS_E1x(bp) ? 2  : 1))
1020
1021 #ifdef BCM_CNIC
1022 #define BCM_CNIC_CID_START              16
1023 #define BCM_ISCSI_ETH_CL_ID             17
1024 #endif
1025
1026         int                     pm_cap;
1027         int                     pcie_cap;
1028         int                     mrrs;
1029
1030         struct delayed_work     sp_task;
1031         struct delayed_work     reset_task;
1032         struct timer_list       timer;
1033         int                     current_interval;
1034
1035         u16                     fw_seq;
1036         u16                     fw_drv_pulse_wr_seq;
1037         u32                     func_stx;
1038
1039         struct link_params      link_params;
1040         struct link_vars        link_vars;
1041         u32                     link_cnt;
1042         struct bnx2x_link_report_data last_reported_link;
1043
1044         struct mdio_if_info     mdio;
1045
1046         struct bnx2x_common     common;
1047         struct bnx2x_port       port;
1048
1049         struct cmng_struct_per_port cmng;
1050         u32                     vn_weight_sum;
1051
1052         u32                     mf_config[E1HVN_MAX];
1053         u32                     mf2_config[E2_FUNC_MAX];
1054         u16                     mf_ov;
1055         u8                      mf_mode;
1056 #define IS_MF(bp)               (bp->mf_mode != 0)
1057 #define IS_MF_SI(bp)            (bp->mf_mode == MULTI_FUNCTION_SI)
1058 #define IS_MF_SD(bp)            (bp->mf_mode == MULTI_FUNCTION_SD)
1059
1060         u8                      wol;
1061
1062         int                     rx_ring_size;
1063
1064         u16                     tx_quick_cons_trip_int;
1065         u16                     tx_quick_cons_trip;
1066         u16                     tx_ticks_int;
1067         u16                     tx_ticks;
1068
1069         u16                     rx_quick_cons_trip_int;
1070         u16                     rx_quick_cons_trip;
1071         u16                     rx_ticks_int;
1072         u16                     rx_ticks;
1073 /* Maximal coalescing timeout in us */
1074 #define BNX2X_MAX_COALESCE_TOUT         (0xf0*12)
1075
1076         u32                     lin_cnt;
1077
1078         int                     state;
1079 #define BNX2X_STATE_CLOSED              0
1080 #define BNX2X_STATE_OPENING_WAIT4_LOAD  0x1000
1081 #define BNX2X_STATE_OPENING_WAIT4_PORT  0x2000
1082 #define BNX2X_STATE_OPEN                0x3000
1083 #define BNX2X_STATE_CLOSING_WAIT4_HALT  0x4000
1084 #define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
1085 #define BNX2X_STATE_CLOSING_WAIT4_UNLOAD 0x6000
1086 #define BNX2X_STATE_FUNC_STARTED        0x7000
1087 #define BNX2X_STATE_DIAG                0xe000
1088 #define BNX2X_STATE_ERROR               0xf000
1089
1090         int                     multi_mode;
1091         int                     num_queues;
1092         int                     disable_tpa;
1093         u32                     *rx_indir_table;
1094
1095         struct tstorm_eth_mac_filter_config     mac_filters;
1096 #define BNX2X_ACCEPT_NONE               0x0000
1097 #define BNX2X_ACCEPT_UNICAST            0x0001
1098 #define BNX2X_ACCEPT_MULTICAST          0x0002
1099 #define BNX2X_ACCEPT_ALL_UNICAST        0x0004
1100 #define BNX2X_ACCEPT_ALL_MULTICAST      0x0008
1101 #define BNX2X_ACCEPT_BROADCAST          0x0010
1102 #define BNX2X_ACCEPT_UNMATCHED_UCAST    0x0020
1103 #define BNX2X_PROMISCUOUS_MODE          0x10000
1104
1105         u32                     rx_mode;
1106 #define BNX2X_RX_MODE_NONE              0
1107 #define BNX2X_RX_MODE_NORMAL            1
1108 #define BNX2X_RX_MODE_ALLMULTI          2
1109 #define BNX2X_RX_MODE_PROMISC           3
1110 #define BNX2X_MAX_MULTICAST             64
1111 #define BNX2X_MAX_EMUL_MULTI            16
1112
1113         u8                      igu_dsb_id;
1114         u8                      igu_base_sb;
1115         u8                      igu_sb_cnt;
1116         dma_addr_t              def_status_blk_mapping;
1117
1118         struct bnx2x_slowpath   *slowpath;
1119         dma_addr_t              slowpath_mapping;
1120         struct hw_context       context;
1121
1122         struct bnx2x_ilt        *ilt;
1123 #define BP_ILT(bp)              ((bp)->ilt)
1124 #define ILT_MAX_LINES           128
1125
1126         int                     l2_cid_count;
1127 #define L2_ILT_LINES(bp)        (DIV_ROUND_UP((bp)->l2_cid_count, \
1128                                  ILT_PAGE_CIDS))
1129 #define BNX2X_DB_SIZE(bp)       ((bp)->l2_cid_count * (1 << BNX2X_DB_SHIFT))
1130
1131         int                     qm_cid_count;
1132
1133         int                     dropless_fc;
1134
1135 #ifdef BCM_CNIC
1136         u32                     cnic_flags;
1137 #define BNX2X_CNIC_FLAG_MAC_SET         1
1138         void                    *t2;
1139         dma_addr_t              t2_mapping;
1140         struct cnic_ops __rcu   *cnic_ops;
1141         void                    *cnic_data;
1142         u32                     cnic_tag;
1143         struct cnic_eth_dev     cnic_eth_dev;
1144         union host_hc_status_block cnic_sb;
1145         dma_addr_t              cnic_sb_mapping;
1146 #define CNIC_SB_ID(bp)          ((bp)->base_fw_ndsb + BP_L_ID(bp))
1147 #define CNIC_IGU_SB_ID(bp)      ((bp)->igu_base_sb)
1148         struct eth_spe          *cnic_kwq;
1149         struct eth_spe          *cnic_kwq_prod;
1150         struct eth_spe          *cnic_kwq_cons;
1151         struct eth_spe          *cnic_kwq_last;
1152         u16                     cnic_kwq_pending;
1153         u16                     cnic_spq_pending;
1154         struct mutex            cnic_mutex;
1155         u8                      fip_mac[ETH_ALEN];
1156 #endif
1157
1158         int                     dmae_ready;
1159         /* used to synchronize dmae accesses */
1160         spinlock_t              dmae_lock;
1161
1162         /* used to protect the FW mail box */
1163         struct mutex            fw_mb_mutex;
1164
1165         /* used to synchronize stats collecting */
1166         int                     stats_state;
1167
1168         /* used for synchronization of concurrent threads statistics handling */
1169         spinlock_t              stats_lock;
1170
1171         /* used by dmae command loader */
1172         struct dmae_command     stats_dmae;
1173         int                     executer_idx;
1174
1175         u16                     stats_counter;
1176         struct bnx2x_eth_stats  eth_stats;
1177
1178         struct z_stream_s       *strm;
1179         void                    *gunzip_buf;
1180         dma_addr_t              gunzip_mapping;
1181         int                     gunzip_outlen;
1182 #define FW_BUF_SIZE                     0x8000
1183 #define GUNZIP_BUF(bp)                  (bp->gunzip_buf)
1184 #define GUNZIP_PHYS(bp)                 (bp->gunzip_mapping)
1185 #define GUNZIP_OUTLEN(bp)               (bp->gunzip_outlen)
1186
1187         struct raw_op           *init_ops;
1188         /* Init blocks offsets inside init_ops */
1189         u16                     *init_ops_offsets;
1190         /* Data blob - has 32 bit granularity */
1191         u32                     *init_data;
1192         /* Zipped PRAM blobs - raw data */
1193         const u8                *tsem_int_table_data;
1194         const u8                *tsem_pram_data;
1195         const u8                *usem_int_table_data;
1196         const u8                *usem_pram_data;
1197         const u8                *xsem_int_table_data;
1198         const u8                *xsem_pram_data;
1199         const u8                *csem_int_table_data;
1200         const u8                *csem_pram_data;
1201 #define INIT_OPS(bp)                    (bp->init_ops)
1202 #define INIT_OPS_OFFSETS(bp)            (bp->init_ops_offsets)
1203 #define INIT_DATA(bp)                   (bp->init_data)
1204 #define INIT_TSEM_INT_TABLE_DATA(bp)    (bp->tsem_int_table_data)
1205 #define INIT_TSEM_PRAM_DATA(bp)         (bp->tsem_pram_data)
1206 #define INIT_USEM_INT_TABLE_DATA(bp)    (bp->usem_int_table_data)
1207 #define INIT_USEM_PRAM_DATA(bp)         (bp->usem_pram_data)
1208 #define INIT_XSEM_INT_TABLE_DATA(bp)    (bp->xsem_int_table_data)
1209 #define INIT_XSEM_PRAM_DATA(bp)         (bp->xsem_pram_data)
1210 #define INIT_CSEM_INT_TABLE_DATA(bp)    (bp->csem_int_table_data)
1211 #define INIT_CSEM_PRAM_DATA(bp)         (bp->csem_pram_data)
1212
1213         char                    fw_ver[32];
1214         const struct firmware   *firmware;
1215         /* LLDP params */
1216         struct bnx2x_config_lldp_params         lldp_config_params;
1217
1218         /* DCB support on/off */
1219         u16 dcb_state;
1220 #define BNX2X_DCB_STATE_OFF                     0
1221 #define BNX2X_DCB_STATE_ON                      1
1222
1223         /* DCBX engine mode */
1224         int dcbx_enabled;
1225 #define BNX2X_DCBX_ENABLED_OFF                  0
1226 #define BNX2X_DCBX_ENABLED_ON_NEG_OFF           1
1227 #define BNX2X_DCBX_ENABLED_ON_NEG_ON            2
1228 #define BNX2X_DCBX_ENABLED_INVALID              (-1)
1229
1230         bool dcbx_mode_uset;
1231
1232         struct bnx2x_config_dcbx_params         dcbx_config_params;
1233
1234         struct bnx2x_dcbx_port_params           dcbx_port_params;
1235         int                                     dcb_version;
1236
1237         /* DCBX Negotiation results */
1238         struct dcbx_features                    dcbx_local_feat;
1239         u32                                     dcbx_error;
1240 #ifdef BCM_DCBNL
1241         struct dcbx_features                    dcbx_remote_feat;
1242         u32                                     dcbx_remote_flags;
1243 #endif
1244         u32                                     pending_max;
1245 };
1246
1247 /**
1248  *      Init queue/func interface
1249  */
1250 /* queue init flags */
1251 #define QUEUE_FLG_TPA           0x0001
1252 #define QUEUE_FLG_CACHE_ALIGN   0x0002
1253 #define QUEUE_FLG_STATS         0x0004
1254 #define QUEUE_FLG_OV            0x0008
1255 #define QUEUE_FLG_VLAN          0x0010
1256 #define QUEUE_FLG_COS           0x0020
1257 #define QUEUE_FLG_HC            0x0040
1258 #define QUEUE_FLG_DHC           0x0080
1259 #define QUEUE_FLG_OOO           0x0100
1260
1261 #define QUEUE_DROP_IP_CS_ERR    TSTORM_ETH_CLIENT_CONFIG_DROP_IP_CS_ERR
1262 #define QUEUE_DROP_TCP_CS_ERR   TSTORM_ETH_CLIENT_CONFIG_DROP_TCP_CS_ERR
1263 #define QUEUE_DROP_TTL0         TSTORM_ETH_CLIENT_CONFIG_DROP_TTL0
1264 #define QUEUE_DROP_UDP_CS_ERR   TSTORM_ETH_CLIENT_CONFIG_DROP_UDP_CS_ERR
1265
1266
1267
1268 /* rss capabilities */
1269 #define RSS_IPV4_CAP            0x0001
1270 #define RSS_IPV4_TCP_CAP        0x0002
1271 #define RSS_IPV6_CAP            0x0004
1272 #define RSS_IPV6_TCP_CAP        0x0008
1273
1274 #define BNX2X_NUM_QUEUES(bp)    (bp->num_queues)
1275 #define BNX2X_NUM_ETH_QUEUES(bp) (BNX2X_NUM_QUEUES(bp) - NONE_ETH_CONTEXT_USE)
1276
1277 /* ethtool statistics are displayed for all regular ethernet queues and the
1278  * fcoe L2 queue if not disabled
1279  */
1280 #define BNX2X_NUM_STAT_QUEUES(bp) (NO_FCOE(bp) ? BNX2X_NUM_ETH_QUEUES(bp) : \
1281                            (BNX2X_NUM_ETH_QUEUES(bp) + FCOE_CONTEXT_USE))
1282
1283 #define is_multi(bp)            (BNX2X_NUM_QUEUES(bp) > 1)
1284
1285 #define BNX2X_MAX_QUEUES(bp)    (bp->igu_sb_cnt - CNIC_CONTEXT_USE)
1286
1287 #define RSS_IPV4_CAP_MASK                                               \
1288         TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY
1289
1290 #define RSS_IPV4_TCP_CAP_MASK                                           \
1291         TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY
1292
1293 #define RSS_IPV6_CAP_MASK                                               \
1294         TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_CAPABILITY
1295
1296 #define RSS_IPV6_TCP_CAP_MASK                                           \
1297         TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_TCP_CAPABILITY
1298
1299 /* func init flags */
1300 #define FUNC_FLG_STATS          0x0001
1301 #define FUNC_FLG_TPA            0x0002
1302 #define FUNC_FLG_SPQ            0x0004
1303 #define FUNC_FLG_LEADING        0x0008  /* PF only */
1304
1305 struct rxq_pause_params {
1306         u16             bd_th_lo;
1307         u16             bd_th_hi;
1308         u16             rcq_th_lo;
1309         u16             rcq_th_hi;
1310         u16             sge_th_lo; /* valid iff QUEUE_FLG_TPA */
1311         u16             sge_th_hi; /* valid iff QUEUE_FLG_TPA */
1312         u16             pri_map;
1313 };
1314
1315 struct bnx2x_rxq_init_params {
1316         /* cxt*/
1317         struct eth_context *cxt;
1318
1319         /* dma */
1320         dma_addr_t      dscr_map;
1321         dma_addr_t      sge_map;
1322         dma_addr_t      rcq_map;
1323         dma_addr_t      rcq_np_map;
1324
1325         u16             flags;
1326         u16             drop_flags;
1327         u16             mtu;
1328         u16             buf_sz;
1329         u16             fw_sb_id;
1330         u16             cl_id;
1331         u16             spcl_id;
1332         u16             cl_qzone_id;
1333
1334         /* valid iff QUEUE_FLG_STATS */
1335         u16             stat_id;
1336
1337         /* valid iff QUEUE_FLG_TPA */
1338         u16             tpa_agg_sz;
1339         u16             sge_buf_sz;
1340         u16             max_sges_pkt;
1341
1342         /* valid iff QUEUE_FLG_CACHE_ALIGN */
1343         u8              cache_line_log;
1344
1345         u8              sb_cq_index;
1346         u32             cid;
1347
1348         /* desired interrupts per sec. valid iff QUEUE_FLG_HC */
1349         u32             hc_rate;
1350 };
1351
1352 struct bnx2x_txq_init_params {
1353         /* cxt*/
1354         struct eth_context *cxt;
1355
1356         /* dma */
1357         dma_addr_t      dscr_map;
1358
1359         u16             flags;
1360         u16             fw_sb_id;
1361         u8              sb_cq_index;
1362         u8              cos;            /* valid iff QUEUE_FLG_COS */
1363         u16             stat_id;        /* valid iff QUEUE_FLG_STATS */
1364         u16             traffic_type;
1365         u32             cid;
1366         u16             hc_rate;        /* desired interrupts per sec.*/
1367                                         /* valid iff QUEUE_FLG_HC */
1368
1369 };
1370
1371 struct bnx2x_client_ramrod_params {
1372         int *pstate;
1373         int state;
1374         u16 index;
1375         u16 cl_id;
1376         u32 cid;
1377         u8 poll;
1378 #define CLIENT_IS_FCOE                  0x01
1379 #define CLIENT_IS_LEADING_RSS           0x02
1380         u8 flags;
1381 };
1382
1383 struct bnx2x_client_init_params {
1384         struct rxq_pause_params pause;
1385         struct bnx2x_rxq_init_params rxq_params;
1386         struct bnx2x_txq_init_params txq_params;
1387         struct bnx2x_client_ramrod_params ramrod_params;
1388 };
1389
1390 struct bnx2x_rss_params {
1391         int     mode;
1392         u16     cap;
1393         u16     result_mask;
1394 };
1395
1396 struct bnx2x_func_init_params {
1397
1398         /* rss */
1399         struct bnx2x_rss_params *rss;   /* valid iff FUNC_FLG_RSS */
1400
1401         /* dma */
1402         dma_addr_t      fw_stat_map;    /* valid iff FUNC_FLG_STATS */
1403         dma_addr_t      spq_map;        /* valid iff FUNC_FLG_SPQ */
1404
1405         u16             func_flgs;
1406         u16             func_id;        /* abs fid */
1407         u16             pf_id;
1408         u16             spq_prod;       /* valid iff FUNC_FLG_SPQ */
1409 };
1410
1411 #define for_each_eth_queue(bp, var) \
1412                         for (var = 0; var < BNX2X_NUM_ETH_QUEUES(bp); var++)
1413
1414 #define for_each_nondefault_eth_queue(bp, var) \
1415                         for (var = 1; var < BNX2X_NUM_ETH_QUEUES(bp); var++)
1416
1417 #define for_each_napi_queue(bp, var) \
1418         for (var = 0; \
1419                 var < BNX2X_NUM_ETH_QUEUES(bp) + FCOE_CONTEXT_USE; var++) \
1420                 if (skip_queue(bp, var))        \
1421                         continue;               \
1422                 else
1423
1424 #define for_each_queue(bp, var) \
1425         for (var = 0; var < BNX2X_NUM_QUEUES(bp); var++) \
1426                 if (skip_queue(bp, var))        \
1427                         continue;               \
1428                 else
1429
1430 #define for_each_rx_queue(bp, var) \
1431         for (var = 0; var < BNX2X_NUM_QUEUES(bp); var++) \
1432                 if (skip_rx_queue(bp, var))     \
1433                         continue;               \
1434                 else
1435
1436 #define for_each_tx_queue(bp, var) \
1437         for (var = 0; var < BNX2X_NUM_QUEUES(bp); var++) \
1438                 if (skip_tx_queue(bp, var))     \
1439                         continue;               \
1440                 else
1441
1442 #define for_each_nondefault_queue(bp, var) \
1443         for (var = 1; var < BNX2X_NUM_QUEUES(bp); var++) \
1444                 if (skip_queue(bp, var))        \
1445                         continue;               \
1446                 else
1447
1448 /* skip rx queue
1449  * if FCOE l2 support is disabled and this is the fcoe L2 queue
1450  */
1451 #define skip_rx_queue(bp, idx)  (NO_FCOE(bp) && IS_FCOE_IDX(idx))
1452
1453 /* skip tx queue
1454  * if FCOE l2 support is disabled and this is the fcoe L2 queue
1455  */
1456 #define skip_tx_queue(bp, idx)  (NO_FCOE(bp) && IS_FCOE_IDX(idx))
1457
1458 #define skip_queue(bp, idx)     (NO_FCOE(bp) && IS_FCOE_IDX(idx))
1459
1460 #define WAIT_RAMROD_POLL        0x01
1461 #define WAIT_RAMROD_COMMON      0x02
1462
1463 void bnx2x_read_mf_cfg(struct bnx2x *bp);
1464
1465 /* dmae */
1466 void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32);
1467 void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
1468                       u32 len32);
1469 void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx);
1470 u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type);
1471 u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode);
1472 u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
1473                       bool with_comp, u8 comp_type);
1474
1475 int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port);
1476 int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
1477 int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
1478 u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
1479
1480 void bnx2x_calc_fc_adv(struct bnx2x *bp);
1481 int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
1482                   u32 data_hi, u32 data_lo, int common);
1483
1484 /* Clears multicast and unicast list configuration in the chip. */
1485 void bnx2x_invalidate_uc_list(struct bnx2x *bp);
1486
1487 int bnx2x_wait_ramrod(struct bnx2x *bp, int state, int idx,
1488                              int *state_p, int flags);
1489
1490 void bnx2x_update_coalesce(struct bnx2x *bp);
1491 int bnx2x_get_cur_phy_idx(struct bnx2x *bp);
1492
1493 static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms,
1494                            int wait)
1495 {
1496         u32 val;
1497
1498         do {
1499                 val = REG_RD(bp, reg);
1500                 if (val == expected)
1501                         break;
1502                 ms -= wait;
1503                 msleep(wait);
1504
1505         } while (ms > 0);
1506
1507         return val;
1508 }
1509
1510 #define BNX2X_ILT_ZALLOC(x, y, size) \
1511         do { \
1512                 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
1513                 if (x) \
1514                         memset(x, 0, size); \
1515         } while (0)
1516
1517 #define BNX2X_ILT_FREE(x, y, size) \
1518         do { \
1519                 if (x) { \
1520                         dma_free_coherent(&bp->pdev->dev, size, x, y); \
1521                         x = NULL; \
1522                         y = 0; \
1523                 } \
1524         } while (0)
1525
1526 #define ILOG2(x)        (ilog2((x)))
1527
1528 #define ILT_NUM_PAGE_ENTRIES    (3072)
1529 /* In 57710/11 we use whole table since we have 8 func
1530  * In 57712 we have only 4 func, but use same size per func, then only half of
1531  * the table in use
1532  */
1533 #define ILT_PER_FUNC            (ILT_NUM_PAGE_ENTRIES/8)
1534
1535 #define FUNC_ILT_BASE(func)     (func * ILT_PER_FUNC)
1536 /*
1537  * the phys address is shifted right 12 bits and has an added
1538  * 1=valid bit added to the 53rd bit
1539  * then since this is a wide register(TM)
1540  * we split it into two 32 bit writes
1541  */
1542 #define ONCHIP_ADDR1(x)         ((u32)(((u64)x >> 12) & 0xFFFFFFFF))
1543 #define ONCHIP_ADDR2(x)         ((u32)((1 << 20) | ((u64)x >> 44)))
1544
1545 /* load/unload mode */
1546 #define LOAD_NORMAL                     0
1547 #define LOAD_OPEN                       1
1548 #define LOAD_DIAG                       2
1549 #define UNLOAD_NORMAL                   0
1550 #define UNLOAD_CLOSE                    1
1551 #define UNLOAD_RECOVERY                 2
1552
1553
1554 /* DMAE command defines */
1555 #define DMAE_TIMEOUT                    -1
1556 #define DMAE_PCI_ERROR                  -2      /* E2 and onward */
1557 #define DMAE_NOT_RDY                    -3
1558 #define DMAE_PCI_ERR_FLAG               0x80000000
1559
1560 #define DMAE_SRC_PCI                    0
1561 #define DMAE_SRC_GRC                    1
1562
1563 #define DMAE_DST_NONE                   0
1564 #define DMAE_DST_PCI                    1
1565 #define DMAE_DST_GRC                    2
1566
1567 #define DMAE_COMP_PCI                   0
1568 #define DMAE_COMP_GRC                   1
1569
1570 /* E2 and onward - PCI error handling in the completion */
1571
1572 #define DMAE_COMP_REGULAR               0
1573 #define DMAE_COM_SET_ERR                1
1574
1575 #define DMAE_CMD_SRC_PCI                (DMAE_SRC_PCI << \
1576                                                 DMAE_COMMAND_SRC_SHIFT)
1577 #define DMAE_CMD_SRC_GRC                (DMAE_SRC_GRC << \
1578                                                 DMAE_COMMAND_SRC_SHIFT)
1579
1580 #define DMAE_CMD_DST_PCI                (DMAE_DST_PCI << \
1581                                                 DMAE_COMMAND_DST_SHIFT)
1582 #define DMAE_CMD_DST_GRC                (DMAE_DST_GRC << \
1583                                                 DMAE_COMMAND_DST_SHIFT)
1584
1585 #define DMAE_CMD_C_DST_PCI              (DMAE_COMP_PCI << \
1586                                                 DMAE_COMMAND_C_DST_SHIFT)
1587 #define DMAE_CMD_C_DST_GRC              (DMAE_COMP_GRC << \
1588                                                 DMAE_COMMAND_C_DST_SHIFT)
1589
1590 #define DMAE_CMD_C_ENABLE               DMAE_COMMAND_C_TYPE_ENABLE
1591
1592 #define DMAE_CMD_ENDIANITY_NO_SWAP      (0 << DMAE_COMMAND_ENDIANITY_SHIFT)
1593 #define DMAE_CMD_ENDIANITY_B_SWAP       (1 << DMAE_COMMAND_ENDIANITY_SHIFT)
1594 #define DMAE_CMD_ENDIANITY_DW_SWAP      (2 << DMAE_COMMAND_ENDIANITY_SHIFT)
1595 #define DMAE_CMD_ENDIANITY_B_DW_SWAP    (3 << DMAE_COMMAND_ENDIANITY_SHIFT)
1596
1597 #define DMAE_CMD_PORT_0                 0
1598 #define DMAE_CMD_PORT_1                 DMAE_COMMAND_PORT
1599
1600 #define DMAE_CMD_SRC_RESET              DMAE_COMMAND_SRC_RESET
1601 #define DMAE_CMD_DST_RESET              DMAE_COMMAND_DST_RESET
1602 #define DMAE_CMD_E1HVN_SHIFT            DMAE_COMMAND_E1HVN_SHIFT
1603
1604 #define DMAE_SRC_PF                     0
1605 #define DMAE_SRC_VF                     1
1606
1607 #define DMAE_DST_PF                     0
1608 #define DMAE_DST_VF                     1
1609
1610 #define DMAE_C_SRC                      0
1611 #define DMAE_C_DST                      1
1612
1613 #define DMAE_LEN32_RD_MAX               0x80
1614 #define DMAE_LEN32_WR_MAX(bp)           (CHIP_IS_E1(bp) ? 0x400 : 0x2000)
1615
1616 #define DMAE_COMP_VAL                   0x60d0d0ae /* E2 and on - upper bit
1617                                                         indicates eror */
1618
1619 #define MAX_DMAE_C_PER_PORT             8
1620 #define INIT_DMAE_C(bp)                 (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
1621                                          BP_E1HVN(bp))
1622 #define PMF_DMAE_C(bp)                  (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
1623                                          E1HVN_MAX)
1624
1625 /* PCIE link and speed */
1626 #define PCICFG_LINK_WIDTH               0x1f00000
1627 #define PCICFG_LINK_WIDTH_SHIFT         20
1628 #define PCICFG_LINK_SPEED               0xf0000
1629 #define PCICFG_LINK_SPEED_SHIFT         16
1630
1631
1632 #define BNX2X_NUM_TESTS                 7
1633
1634 #define BNX2X_PHY_LOOPBACK              0
1635 #define BNX2X_MAC_LOOPBACK              1
1636 #define BNX2X_PHY_LOOPBACK_FAILED       1
1637 #define BNX2X_MAC_LOOPBACK_FAILED       2
1638 #define BNX2X_LOOPBACK_FAILED           (BNX2X_MAC_LOOPBACK_FAILED | \
1639                                          BNX2X_PHY_LOOPBACK_FAILED)
1640
1641
1642 #define STROM_ASSERT_ARRAY_SIZE         50
1643
1644
1645 /* must be used on a CID before placing it on a HW ring */
1646 #define HW_CID(bp, x)                   ((BP_PORT(bp) << 23) | \
1647                                          (BP_E1HVN(bp) << 17) | (x))
1648
1649 #define SP_DESC_CNT             (BCM_PAGE_SIZE / sizeof(struct eth_spe))
1650 #define MAX_SP_DESC_CNT                 (SP_DESC_CNT - 1)
1651
1652
1653 #define BNX2X_BTR                       4
1654 #define MAX_SPQ_PENDING                 8
1655
1656 /* CMNG constants, as derived from system spec calculations */
1657 /* default MIN rate in case VNIC min rate is configured to zero - 100Mbps */
1658 #define DEF_MIN_RATE                                    100
1659 /* resolution of the rate shaping timer - 400 usec */
1660 #define RS_PERIODIC_TIMEOUT_USEC                        400
1661 /* number of bytes in single QM arbitration cycle -
1662  * coefficient for calculating the fairness timer */
1663 #define QM_ARB_BYTES                                    160000
1664 /* resolution of Min algorithm 1:100 */
1665 #define MIN_RES                                         100
1666 /* how many bytes above threshold for the minimal credit of Min algorithm*/
1667 #define MIN_ABOVE_THRESH                                32768
1668 /* Fairness algorithm integration time coefficient -
1669  * for calculating the actual Tfair */
1670 #define T_FAIR_COEF     ((MIN_ABOVE_THRESH +  QM_ARB_BYTES) * 8 * MIN_RES)
1671 /* Memory of fairness algorithm . 2 cycles */
1672 #define FAIR_MEM                                        2
1673
1674
1675 #define ATTN_NIG_FOR_FUNC               (1L << 8)
1676 #define ATTN_SW_TIMER_4_FUNC            (1L << 9)
1677 #define GPIO_2_FUNC                     (1L << 10)
1678 #define GPIO_3_FUNC                     (1L << 11)
1679 #define GPIO_4_FUNC                     (1L << 12)
1680 #define ATTN_GENERAL_ATTN_1             (1L << 13)
1681 #define ATTN_GENERAL_ATTN_2             (1L << 14)
1682 #define ATTN_GENERAL_ATTN_3             (1L << 15)
1683 #define ATTN_GENERAL_ATTN_4             (1L << 13)
1684 #define ATTN_GENERAL_ATTN_5             (1L << 14)
1685 #define ATTN_GENERAL_ATTN_6             (1L << 15)
1686
1687 #define ATTN_HARD_WIRED_MASK            0xff00
1688 #define ATTENTION_ID                    4
1689
1690
1691 /* stuff added to make the code fit 80Col */
1692
1693 #define BNX2X_PMF_LINK_ASSERT \
1694         GENERAL_ATTEN_OFFSET(LINK_SYNC_ATTENTION_BIT_FUNC_0 + BP_FUNC(bp))
1695
1696 #define BNX2X_MC_ASSERT_BITS \
1697         (GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
1698          GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
1699          GENERAL_ATTEN_OFFSET(CSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
1700          GENERAL_ATTEN_OFFSET(XSTORM_FATAL_ASSERT_ATTENTION_BIT))
1701
1702 #define BNX2X_MCP_ASSERT \
1703         GENERAL_ATTEN_OFFSET(MCP_FATAL_ASSERT_ATTENTION_BIT)
1704
1705 #define BNX2X_GRC_TIMEOUT       GENERAL_ATTEN_OFFSET(LATCHED_ATTN_TIMEOUT_GRC)
1706 #define BNX2X_GRC_RSV           (GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCR) | \
1707                                  GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCT) | \
1708                                  GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCN) | \
1709                                  GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCU) | \
1710                                  GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCP) | \
1711                                  GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RSVD_GRC))
1712
1713 #define HW_INTERRUT_ASSERT_SET_0 \
1714                                 (AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
1715                                  AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
1716                                  AEU_INPUTS_ATTN_BITS_TSEMI_HW_INTERRUPT | \
1717                                  AEU_INPUTS_ATTN_BITS_PBF_HW_INTERRUPT)
1718 #define HW_PRTY_ASSERT_SET_0    (AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR | \
1719                                  AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR | \
1720                                  AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR | \
1721                                  AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR |\
1722                                  AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR)
1723 #define HW_INTERRUT_ASSERT_SET_1 \
1724                                 (AEU_INPUTS_ATTN_BITS_QM_HW_INTERRUPT | \
1725                                  AEU_INPUTS_ATTN_BITS_TIMERS_HW_INTERRUPT | \
1726                                  AEU_INPUTS_ATTN_BITS_XSDM_HW_INTERRUPT | \
1727                                  AEU_INPUTS_ATTN_BITS_XCM_HW_INTERRUPT | \
1728                                  AEU_INPUTS_ATTN_BITS_XSEMI_HW_INTERRUPT | \
1729                                  AEU_INPUTS_ATTN_BITS_USDM_HW_INTERRUPT | \
1730                                  AEU_INPUTS_ATTN_BITS_UCM_HW_INTERRUPT | \
1731                                  AEU_INPUTS_ATTN_BITS_USEMI_HW_INTERRUPT | \
1732                                  AEU_INPUTS_ATTN_BITS_UPB_HW_INTERRUPT | \
1733                                  AEU_INPUTS_ATTN_BITS_CSDM_HW_INTERRUPT | \
1734                                  AEU_INPUTS_ATTN_BITS_CCM_HW_INTERRUPT)
1735 #define HW_PRTY_ASSERT_SET_1    (AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR |\
1736                                  AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR | \
1737                                  AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR | \
1738                                  AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR | \
1739                                  AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR |\
1740                              AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR |\
1741                                  AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR | \
1742                                  AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR | \
1743                                  AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR | \
1744                                  AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR | \
1745                                  AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR)
1746 #define HW_INTERRUT_ASSERT_SET_2 \
1747                                 (AEU_INPUTS_ATTN_BITS_CSEMI_HW_INTERRUPT | \
1748                                  AEU_INPUTS_ATTN_BITS_CDU_HW_INTERRUPT | \
1749                                  AEU_INPUTS_ATTN_BITS_DMAE_HW_INTERRUPT | \
1750                         AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_HW_INTERRUPT |\
1751                                  AEU_INPUTS_ATTN_BITS_MISC_HW_INTERRUPT)
1752 #define HW_PRTY_ASSERT_SET_2    (AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR | \
1753                                  AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR | \
1754                         AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR |\
1755                                  AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR | \
1756                                  AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR | \
1757                                  AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR | \
1758                                  AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)
1759
1760 #define HW_PRTY_ASSERT_SET_3 (AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY | \
1761                 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY | \
1762                 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY | \
1763                 AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY)
1764
1765 #define RSS_FLAGS(bp) \
1766                 (TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY | \
1767                  TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY | \
1768                  TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_CAPABILITY | \
1769                  TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_TCP_CAPABILITY | \
1770                  (bp->multi_mode << \
1771                   TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_MODE_SHIFT))
1772 #define MULTI_MASK                      0x7f
1773
1774 #define BNX2X_SP_DSB_INDEX \
1775                 (&bp->def_status_blk->sp_sb.\
1776                                         index_values[HC_SP_INDEX_ETH_DEF_CONS])
1777
1778 #define SET_FLAG(value, mask, flag) \
1779         do {\
1780                 (value) &= ~(mask);\
1781                 (value) |= ((flag) << (mask##_SHIFT));\
1782         } while (0)
1783
1784 #define GET_FLAG(value, mask) \
1785         (((value) &= (mask)) >> (mask##_SHIFT))
1786
1787 #define GET_FIELD(value, fname) \
1788         (((value) & (fname##_MASK)) >> (fname##_SHIFT))
1789
1790 #define CAM_IS_INVALID(x) \
1791         (GET_FLAG(x.flags, \
1792         MAC_CONFIGURATION_ENTRY_ACTION_TYPE) == \
1793         (T_ETH_MAC_COMMAND_INVALIDATE))
1794
1795 /* Number of u32 elements in MC hash array */
1796 #define MC_HASH_SIZE                    8
1797 #define MC_HASH_OFFSET(bp, i)           (BAR_TSTRORM_INTMEM + \
1798         TSTORM_APPROXIMATE_MATCH_MULTICAST_FILTERING_OFFSET(BP_FUNC(bp)) + i*4)
1799
1800
1801 #ifndef PXP2_REG_PXP2_INT_STS
1802 #define PXP2_REG_PXP2_INT_STS           PXP2_REG_PXP2_INT_STS_0
1803 #endif
1804
1805 #ifndef ETH_MAX_RX_CLIENTS_E2
1806 #define ETH_MAX_RX_CLIENTS_E2           ETH_MAX_RX_CLIENTS_E1H
1807 #endif
1808
1809 #define BNX2X_VPD_LEN                   128
1810 #define VENDOR_ID_LEN                   4
1811
1812 /* Congestion management fairness mode */
1813 #define CMNG_FNS_NONE           0
1814 #define CMNG_FNS_MINMAX         1
1815
1816 #define HC_SEG_ACCESS_DEF               0   /*Driver decision 0-3*/
1817 #define HC_SEG_ACCESS_ATTN              4
1818 #define HC_SEG_ACCESS_NORM              0   /*Driver decision 0-1*/
1819
1820 #ifdef BNX2X_MAIN
1821 #define BNX2X_EXTERN
1822 #else
1823 #define BNX2X_EXTERN extern
1824 #endif
1825
1826 BNX2X_EXTERN int load_count[2][3]; /* per path: 0-common, 1-port0, 2-port1 */
1827
1828 extern void bnx2x_set_ethtool_ops(struct net_device *netdev);
1829
1830 #endif /* bnx2x.h */