2015-07-22 14:16:23 +08:00
|
|
|
/* bnx2x.h: QLogic Everest network driver.
|
2007-11-16 02:09:02 +08:00
|
|
|
*
|
2013-01-14 13:11:50 +08:00
|
|
|
* Copyright (c) 2007-2013 Broadcom Corporation
|
2015-07-22 14:16:23 +08:00
|
|
|
* Copyright (c) 2014 QLogic Corporation
|
|
|
|
* All rights reserved
|
2007-11-16 02:09:02 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
2014-05-27 18:11:36 +08:00
|
|
|
* Maintained by: Ariel Elior <ariel.elior@qlogic.com>
|
2008-06-13 05:30:28 +08:00
|
|
|
* Written by: Eliezer Tamir
|
2007-11-16 02:09:02 +08:00
|
|
|
* Based on code from Michael Chan's bnx2 driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BNX2X_H
|
|
|
|
#define BNX2X_H
|
2013-01-01 13:22:31 +08:00
|
|
|
|
|
|
|
#include <linux/pci.h>
|
2010-12-13 13:44:01 +08:00
|
|
|
#include <linux/netdevice.h>
|
2011-06-16 19:01:34 +08:00
|
|
|
#include <linux/dma-mapping.h>
|
2010-12-13 13:44:01 +08:00
|
|
|
#include <linux/types.h>
|
2013-01-01 13:22:31 +08:00
|
|
|
#include <linux/pci_regs.h>
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2014-08-17 21:47:44 +08:00
|
|
|
#include <linux/ptp_clock_kernel.h>
|
|
|
|
#include <linux/net_tstamp.h>
|
2014-12-22 02:46:56 +08:00
|
|
|
#include <linux/timecounter.h>
|
2014-08-17 21:47:44 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* compilation time flags */
|
|
|
|
|
|
|
|
/* define this to make the driver freeze on error to allow getting debug info
|
|
|
|
* (you will need to reboot afterwards) */
|
|
|
|
/* #define BNX2X_STOP_ON_ERROR */
|
|
|
|
|
2014-08-17 21:47:46 +08:00
|
|
|
#define DRV_MODULE_VERSION "1.710.51-0"
|
2014-02-13 00:19:57 +08:00
|
|
|
#define DRV_MODULE_RELDATE "2014/02/10"
|
2010-07-27 20:35:24 +08:00
|
|
|
#define BNX2X_BC_VER 0x040200
|
|
|
|
|
2010-12-30 14:27:03 +08:00
|
|
|
#if defined(CONFIG_DCB)
|
2011-03-01 04:19:55 +08:00
|
|
|
#define BCM_DCBNL
|
2010-12-30 14:27:03 +08:00
|
|
|
#endif
|
2012-04-04 02:41:29 +08:00
|
|
|
|
|
|
|
#include "bnx2x_hsi.h"
|
|
|
|
|
2010-07-27 20:31:10 +08:00
|
|
|
#include "../cnic_if.h"
|
2009-01-15 13:26:51 +08:00
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
#define BNX2X_MIN_MSIX_VEC_CNT(bp) ((bp)->min_msix_vec_cnt)
|
2009-08-12 16:23:08 +08:00
|
|
|
|
|
|
|
#include <linux/mdio.h>
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2009-02-12 16:38:25 +08:00
|
|
|
#include "bnx2x_reg.h"
|
|
|
|
#include "bnx2x_fw_defs.h"
|
2012-06-26 09:31:19 +08:00
|
|
|
#include "bnx2x_mfw_req.h"
|
2009-02-12 16:38:25 +08:00
|
|
|
#include "bnx2x_link.h"
|
2011-06-14 19:33:44 +08:00
|
|
|
#include "bnx2x_sp.h"
|
2010-12-13 13:44:18 +08:00
|
|
|
#include "bnx2x_dcb.h"
|
2010-07-27 20:36:15 +08:00
|
|
|
#include "bnx2x_stats.h"
|
2013-01-01 13:22:24 +08:00
|
|
|
#include "bnx2x_vfpf.h"
|
2009-02-12 16:38:25 +08:00
|
|
|
|
2013-01-01 13:22:23 +08:00
|
|
|
enum bnx2x_int_mode {
|
|
|
|
BNX2X_INT_MODE_MSIX,
|
|
|
|
BNX2X_INT_MODE_INTX,
|
|
|
|
BNX2X_INT_MODE_MSI
|
|
|
|
};
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
/* error/debug prints */
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define DRV_MODULE_NAME "bnx2x"
|
2007-11-16 02:09:02 +08:00
|
|
|
|
|
|
|
/* for messages that are currently off */
|
2012-03-18 18:33:38 +08:00
|
|
|
#define BNX2X_MSG_OFF 0x0
|
|
|
|
#define BNX2X_MSG_MCP 0x0010000 /* was: NETIF_MSG_HW */
|
|
|
|
#define BNX2X_MSG_STATS 0x0020000 /* was: NETIF_MSG_TIMER */
|
|
|
|
#define BNX2X_MSG_NVM 0x0040000 /* was: NETIF_MSG_HW */
|
|
|
|
#define BNX2X_MSG_DMAE 0x0080000 /* was: NETIF_MSG_HW */
|
|
|
|
#define BNX2X_MSG_SP 0x0100000 /* was: NETIF_MSG_INTR */
|
|
|
|
#define BNX2X_MSG_FP 0x0200000 /* was: NETIF_MSG_INTR */
|
|
|
|
#define BNX2X_MSG_IOV 0x0800000
|
2014-08-17 21:47:44 +08:00
|
|
|
#define BNX2X_MSG_PTP 0x1000000
|
2012-03-18 18:33:38 +08:00
|
|
|
#define BNX2X_MSG_IDLE 0x2000000 /* used for idle check*/
|
|
|
|
#define BNX2X_MSG_ETHTOOL 0x4000000
|
|
|
|
#define BNX2X_MSG_DCB 0x8000000
|
2007-11-16 02:09:02 +08:00
|
|
|
|
|
|
|
/* regular debug print */
|
2014-02-13 00:19:49 +08:00
|
|
|
#define DP_INNER(fmt, ...) \
|
|
|
|
pr_notice("[%s:%d(%s)]" fmt, \
|
|
|
|
__func__, __LINE__, \
|
|
|
|
bp->dev ? (bp->dev->name) : "?", \
|
|
|
|
##__VA_ARGS__);
|
|
|
|
|
2011-08-14 20:16:21 +08:00
|
|
|
#define DP(__mask, fmt, ...) \
|
2010-02-17 23:01:52 +08:00
|
|
|
do { \
|
2012-03-18 18:33:38 +08:00
|
|
|
if (unlikely(bp->msg_enable & (__mask))) \
|
2014-02-13 00:19:49 +08:00
|
|
|
DP_INNER(fmt, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define DP_AND(__mask, fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if (unlikely((bp->msg_enable & (__mask)) == __mask)) \
|
|
|
|
DP_INNER(fmt, ##__VA_ARGS__); \
|
2010-02-17 23:01:52 +08:00
|
|
|
} while (0)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-08-14 20:16:21 +08:00
|
|
|
#define DP_CONT(__mask, fmt, ...) \
|
2011-06-14 19:33:44 +08:00
|
|
|
do { \
|
2012-03-18 18:33:38 +08:00
|
|
|
if (unlikely(bp->msg_enable & (__mask))) \
|
2011-08-14 20:16:21 +08:00
|
|
|
pr_cont(fmt, ##__VA_ARGS__); \
|
2011-06-14 19:33:44 +08:00
|
|
|
} while (0)
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* errors debug print */
|
2011-08-14 20:16:21 +08:00
|
|
|
#define BNX2X_DBG_ERR(fmt, ...) \
|
2010-02-17 23:01:52 +08:00
|
|
|
do { \
|
2012-03-18 18:33:38 +08:00
|
|
|
if (unlikely(netif_msg_probe(bp))) \
|
2011-08-14 20:16:21 +08:00
|
|
|
pr_err("[%s:%d(%s)]" fmt, \
|
2010-02-17 23:01:52 +08:00
|
|
|
__func__, __LINE__, \
|
|
|
|
bp->dev ? (bp->dev->name) : "?", \
|
2011-08-14 20:16:21 +08:00
|
|
|
##__VA_ARGS__); \
|
2010-02-17 23:01:52 +08:00
|
|
|
} while (0)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* for errors (never masked) */
|
2011-08-14 20:16:21 +08:00
|
|
|
#define BNX2X_ERR(fmt, ...) \
|
2010-02-17 23:01:52 +08:00
|
|
|
do { \
|
2011-08-14 20:16:21 +08:00
|
|
|
pr_err("[%s:%d(%s)]" fmt, \
|
2010-02-17 23:01:52 +08:00
|
|
|
__func__, __LINE__, \
|
|
|
|
bp->dev ? (bp->dev->name) : "?", \
|
2011-08-14 20:16:21 +08:00
|
|
|
##__VA_ARGS__); \
|
|
|
|
} while (0)
|
2010-04-19 09:13:57 +08:00
|
|
|
|
2011-08-14 20:16:21 +08:00
|
|
|
#define BNX2X_ERROR(fmt, ...) \
|
|
|
|
pr_err("[%s:%d]" fmt, __func__, __LINE__, ##__VA_ARGS__)
|
2010-04-19 09:13:57 +08:00
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
/* before we have a dev->name use dev_info() */
|
2011-08-14 20:16:21 +08:00
|
|
|
#define BNX2X_DEV_INFO(fmt, ...) \
|
2010-02-17 23:01:52 +08:00
|
|
|
do { \
|
2012-03-18 18:33:38 +08:00
|
|
|
if (unlikely(netif_msg_probe(bp))) \
|
2011-08-14 20:16:21 +08:00
|
|
|
dev_info(&bp->pdev->dev, fmt, ##__VA_ARGS__); \
|
2010-02-17 23:01:52 +08:00
|
|
|
} while (0)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2013-01-23 11:21:53 +08:00
|
|
|
/* Error handling */
|
|
|
|
void bnx2x_panic_dump(struct bnx2x *bp, bool disable_int);
|
2007-11-16 02:09:02 +08:00
|
|
|
#ifdef BNX2X_STOP_ON_ERROR
|
2011-08-14 20:16:21 +08:00
|
|
|
#define bnx2x_panic() \
|
|
|
|
do { \
|
|
|
|
bp->panic = 1; \
|
|
|
|
BNX2X_ERR("driver assert\n"); \
|
2013-01-14 13:11:47 +08:00
|
|
|
bnx2x_panic_dump(bp, true); \
|
2011-08-14 20:16:21 +08:00
|
|
|
} while (0)
|
2007-11-16 02:09:02 +08:00
|
|
|
#else
|
2011-08-14 20:16:21 +08:00
|
|
|
#define bnx2x_panic() \
|
|
|
|
do { \
|
|
|
|
bp->panic = 1; \
|
|
|
|
BNX2X_ERR("driver assert\n"); \
|
2013-01-14 13:11:47 +08:00
|
|
|
bnx2x_panic_dump(bp, false); \
|
2011-08-14 20:16:21 +08:00
|
|
|
} while (0)
|
2007-11-16 02:09:02 +08:00
|
|
|
#endif
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define bnx2x_mc_addr(ha) ((ha)->addr)
|
2011-02-07 03:25:41 +08:00
|
|
|
#define bnx2x_uc_addr(ha) ((ha)->addr)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2013-01-23 11:21:43 +08:00
|
|
|
#define U64_LO(x) ((u32)(((u64)(x)) & 0xffffffff))
|
|
|
|
#define U64_HI(x) ((u32)(((u64)(x)) >> 32))
|
2008-06-24 11:33:01 +08:00
|
|
|
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define REG_ADDR(bp, offset) ((bp->regview) + (offset))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define REG_RD(bp, offset) readl(REG_ADDR(bp, offset))
|
|
|
|
#define REG_RD8(bp, offset) readb(REG_ADDR(bp, offset))
|
2010-10-06 11:23:26 +08:00
|
|
|
#define REG_RD16(bp, offset) readw(REG_ADDR(bp, offset))
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
#define REG_WR(bp, offset, val) writel((u32)val, REG_ADDR(bp, offset))
|
2007-11-16 02:09:02 +08:00
|
|
|
#define REG_WR8(bp, offset, val) writeb((u8)val, REG_ADDR(bp, offset))
|
2008-06-24 11:33:01 +08:00
|
|
|
#define REG_WR16(bp, offset, val) writew((u16)val, REG_ADDR(bp, offset))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define REG_RD_IND(bp, offset) bnx2x_reg_rd_ind(bp, offset)
|
|
|
|
#define REG_WR_IND(bp, offset, val) bnx2x_reg_wr_ind(bp, offset, val)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:27:52 +08:00
|
|
|
#define REG_RD_DMAE(bp, offset, valp, len32) \
|
|
|
|
do { \
|
|
|
|
bnx2x_read_dmae(bp, offset, len32);\
|
2009-08-12 16:24:14 +08:00
|
|
|
memcpy(valp, bnx2x_sp(bp, wb_data[0]), (len32) * 4); \
|
2008-06-24 11:27:52 +08:00
|
|
|
} while (0)
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define REG_WR_DMAE(bp, offset, valp, len32) \
|
2007-11-16 02:09:02 +08:00
|
|
|
do { \
|
2009-08-12 16:24:14 +08:00
|
|
|
memcpy(bnx2x_sp(bp, wb_data[0]), valp, (len32) * 4); \
|
2007-11-16 02:09:02 +08:00
|
|
|
bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
|
|
|
|
offset, len32); \
|
|
|
|
} while (0)
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define REG_WR_DMAE_LEN(bp, offset, valp, len32) \
|
|
|
|
REG_WR_DMAE(bp, offset, valp, len32)
|
|
|
|
|
2010-02-18 05:35:01 +08:00
|
|
|
#define VIRT_WR_DMAE_LEN(bp, data, addr, len32, le32_swap) \
|
2009-08-12 16:24:14 +08:00
|
|
|
do { \
|
|
|
|
memcpy(GUNZIP_BUF(bp), data, (len32) * 4); \
|
|
|
|
bnx2x_write_big_buf_wb(bp, addr, len32); \
|
|
|
|
} while (0)
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define SHMEM_ADDR(bp, field) (bp->common.shmem_base + \
|
|
|
|
offsetof(struct shmem_region, field))
|
|
|
|
#define SHMEM_RD(bp, field) REG_RD(bp, SHMEM_ADDR(bp, field))
|
|
|
|
#define SHMEM_WR(bp, field, val) REG_WR(bp, SHMEM_ADDR(bp, field), val)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2009-08-12 16:22:08 +08:00
|
|
|
#define SHMEM2_ADDR(bp, field) (bp->common.shmem2_base + \
|
|
|
|
offsetof(struct shmem2_region, field))
|
|
|
|
#define SHMEM2_RD(bp, field) REG_RD(bp, SHMEM2_ADDR(bp, field))
|
|
|
|
#define SHMEM2_WR(bp, field, val) REG_WR(bp, SHMEM2_ADDR(bp, field), val)
|
2010-10-06 11:23:26 +08:00
|
|
|
#define MF_CFG_ADDR(bp, field) (bp->common.mf_cfg_base + \
|
|
|
|
offsetof(struct mf_cfg, field))
|
2010-10-06 11:34:21 +08:00
|
|
|
#define MF2_CFG_ADDR(bp, field) (bp->common.mf2_cfg_base + \
|
2010-10-06 11:28:26 +08:00
|
|
|
offsetof(struct mf2_cfg, field))
|
2009-08-12 16:22:08 +08:00
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define MF_CFG_RD(bp, field) REG_RD(bp, MF_CFG_ADDR(bp, field))
|
|
|
|
#define MF_CFG_WR(bp, field, val) REG_WR(bp,\
|
|
|
|
MF_CFG_ADDR(bp, field), (val))
|
2010-10-06 11:28:26 +08:00
|
|
|
#define MF2_CFG_RD(bp, field) REG_RD(bp, MF2_CFG_ADDR(bp, field))
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#define SHMEM2_HAS(bp, field) ((bp)->common.shmem2_base && \
|
|
|
|
(SHMEM2_RD((bp), size) > \
|
|
|
|
offsetof(struct shmem2_region, field)))
|
2010-04-19 09:13:12 +08:00
|
|
|
|
2008-08-14 06:58:12 +08:00
|
|
|
#define EMAC_RD(bp, reg) REG_RD(bp, emac_base + reg)
|
2008-08-14 06:58:49 +08:00
|
|
|
#define EMAC_WR(bp, reg, val) REG_WR(bp, emac_base + reg, val)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/* SP SB indices */
|
|
|
|
|
|
|
|
/* General SP events - stats query, cfc delete, etc */
|
|
|
|
#define HC_SP_INDEX_ETH_DEF_CONS 3
|
|
|
|
|
|
|
|
/* EQ completions */
|
|
|
|
#define HC_SP_INDEX_EQ_CONS 7
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
/* FCoE L2 connection completions */
|
|
|
|
#define HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS 6
|
|
|
|
#define HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS 4
|
2010-10-06 11:23:26 +08:00
|
|
|
/* iSCSI L2 */
|
|
|
|
#define HC_SP_INDEX_ETH_ISCSI_CQ_CONS 5
|
|
|
|
#define HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS 1
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
/* Special clients parameters */
|
|
|
|
|
|
|
|
/* SB indices */
|
|
|
|
/* FCoE L2 */
|
|
|
|
#define BNX2X_FCOE_L2_RX_INDEX \
|
|
|
|
(&bp->def_status_blk->sp_sb.\
|
|
|
|
index_values[HC_SP_INDEX_ETH_FCOE_RX_CQ_CONS])
|
|
|
|
|
|
|
|
#define BNX2X_FCOE_L2_TX_INDEX \
|
|
|
|
(&bp->def_status_blk->sp_sb.\
|
|
|
|
index_values[HC_SP_INDEX_ETH_FCOE_TX_CQ_CONS])
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/**
|
|
|
|
* CIDs and CLIDs:
|
|
|
|
* CLIDs below is a CLID for func 0, then the CLID for other
|
|
|
|
* functions will be calculated by the formula:
|
|
|
|
*
|
|
|
|
* FUNC_N_CLID_X = N * NUM_SPECIAL_CLIENTS + FUNC_0_CLID_X
|
|
|
|
*
|
|
|
|
*/
|
2011-10-10 07:57:36 +08:00
|
|
|
enum {
|
|
|
|
BNX2X_ISCSI_ETH_CL_ID_IDX,
|
|
|
|
BNX2X_FCOE_ETH_CL_ID_IDX,
|
|
|
|
BNX2X_MAX_CNIC_ETH_CL_ID_IDX,
|
|
|
|
};
|
|
|
|
|
2013-09-18 16:50:38 +08:00
|
|
|
/* use a value high enough to be above all the PFs, which has least significant
|
|
|
|
* nibble as 8, so when cnic needs to come up with a CID for UIO to use to
|
|
|
|
* calculate doorbell address according to old doorbell configuration scheme
|
|
|
|
* (db_msg_sz 1 << 7 * cid + 0x40 DPM offset) it can come up with a valid number
|
|
|
|
* We must avoid coming up with cid 8 for iscsi since according to this method
|
|
|
|
* the designated UIO cid will come out 0 and it has a special handling for that
|
|
|
|
* case which doesn't suit us. Therefore will will cieling to closes cid which
|
|
|
|
* has least signigifcant nibble 8 and if it is 8 we will move forward to 0x18.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BNX2X_1st_NON_L2_ETH_CID(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) * \
|
2012-06-19 15:48:27 +08:00
|
|
|
(bp)->max_cos)
|
2013-09-18 16:50:38 +08:00
|
|
|
/* amount of cids traversed by UIO's DPM addition to doorbell */
|
|
|
|
#define UIO_DPM 8
|
|
|
|
/* roundup to DPM offset */
|
|
|
|
#define UIO_ROUNDUP(bp) (roundup(BNX2X_1st_NON_L2_ETH_CID(bp), \
|
|
|
|
UIO_DPM))
|
|
|
|
/* offset to nearest value which has lsb nibble matching DPM */
|
|
|
|
#define UIO_CID_OFFSET(bp) ((UIO_ROUNDUP(bp) + UIO_DPM) % \
|
|
|
|
(UIO_DPM * 2))
|
|
|
|
/* add offset to rounded-up cid to get a value which could be used with UIO */
|
|
|
|
#define UIO_DPM_ALIGN(bp) (UIO_ROUNDUP(bp) + UIO_CID_OFFSET(bp))
|
|
|
|
/* but wait - avoid UIO special case for cid 0 */
|
|
|
|
#define UIO_DPM_CID0_OFFSET(bp) ((UIO_DPM * 2) * \
|
|
|
|
(UIO_DPM_ALIGN(bp) == UIO_DPM))
|
|
|
|
/* Properly DPM aligned CID dajusted to cid 0 secal case */
|
|
|
|
#define BNX2X_CNIC_START_ETH_CID(bp) (UIO_DPM_ALIGN(bp) + \
|
|
|
|
(UIO_DPM_CID0_OFFSET(bp)))
|
|
|
|
/* how many cids were wasted - need this value for cid allocation */
|
|
|
|
#define UIO_CID_PAD(bp) (BNX2X_CNIC_START_ETH_CID(bp) - \
|
|
|
|
BNX2X_1st_NON_L2_ETH_CID(bp))
|
2011-10-10 07:57:36 +08:00
|
|
|
/* iSCSI L2 */
|
2012-06-19 15:48:27 +08:00
|
|
|
#define BNX2X_ISCSI_ETH_CID(bp) (BNX2X_CNIC_START_ETH_CID(bp))
|
2011-10-10 07:57:36 +08:00
|
|
|
/* FCoE L2 */
|
2012-06-19 15:48:27 +08:00
|
|
|
#define BNX2X_FCOE_ETH_CID(bp) (BNX2X_CNIC_START_ETH_CID(bp) + 1)
|
2010-12-13 13:44:01 +08:00
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
#define CNIC_SUPPORT(bp) ((bp)->cnic_support)
|
|
|
|
#define CNIC_ENABLED(bp) ((bp)->cnic_enabled)
|
|
|
|
#define CNIC_LOADED(bp) ((bp)->cnic_loaded)
|
|
|
|
#define FCOE_INIT(bp) ((bp)->fcoe_init)
|
2010-10-06 11:23:26 +08:00
|
|
|
|
2010-04-19 09:13:12 +08:00
|
|
|
#define AEU_IN_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR \
|
|
|
|
AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define SM_RX_ID 0
|
|
|
|
#define SM_TX_ID 1
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
/* defines for multiple tx priority indices */
|
|
|
|
#define FIRST_TX_ONLY_COS_INDEX 1
|
|
|
|
#define FIRST_TX_COS_INDEX 0
|
|
|
|
|
|
|
|
/* rules for calculating the cids of tx-only connections */
|
2012-06-19 15:48:26 +08:00
|
|
|
#define CID_TO_FP(cid, bp) ((cid) % BNX2X_NUM_NON_CNIC_QUEUES(bp))
|
|
|
|
#define CID_COS_TO_TX_ONLY_CID(cid, cos, bp) \
|
|
|
|
(cid + cos * BNX2X_NUM_NON_CNIC_QUEUES(bp))
|
2011-07-14 16:31:57 +08:00
|
|
|
|
|
|
|
/* fp index inside class of service range */
|
2012-06-19 15:48:26 +08:00
|
|
|
#define FP_COS_TO_TXQ(fp, cos, bp) \
|
|
|
|
((fp)->index + cos * BNX2X_NUM_NON_CNIC_QUEUES(bp))
|
|
|
|
|
|
|
|
/* Indexes for transmission queues array:
|
|
|
|
* txdata for RSS i CoS j is at location i + (j * num of RSS)
|
|
|
|
* txdata for FCoE (if exist) is at location max cos * num of RSS
|
|
|
|
* txdata for FWD (if exist) is one location after FCoE
|
|
|
|
* txdata for OOO (if exist) is one location after FWD
|
2011-07-14 16:31:57 +08:00
|
|
|
*/
|
2012-06-19 15:48:26 +08:00
|
|
|
enum {
|
|
|
|
FCOE_TXQ_IDX_OFFSET,
|
|
|
|
FWD_TXQ_IDX_OFFSET,
|
|
|
|
OOO_TXQ_IDX_OFFSET,
|
|
|
|
};
|
|
|
|
#define MAX_ETH_TXQ_IDX(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) * (bp)->max_cos)
|
|
|
|
#define FCOE_TXQ_IDX(bp) (MAX_ETH_TXQ_IDX(bp) + FCOE_TXQ_IDX_OFFSET)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
/* fast path */
|
2011-11-14 14:05:34 +08:00
|
|
|
/*
|
|
|
|
* This driver uses new build_skb() API :
|
|
|
|
* RX ring buffer contains pointer to kmalloc() data only,
|
|
|
|
* skb are built only after Hardware filled the frame.
|
|
|
|
*/
|
2007-11-16 02:09:02 +08:00
|
|
|
struct sw_rx_bd {
|
2011-11-14 14:05:34 +08:00
|
|
|
u8 *data;
|
2010-04-04 09:51:03 +08:00
|
|
|
DEFINE_DMA_UNMAP_ADDR(mapping);
|
2007-11-16 02:09:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sw_tx_bd {
|
2008-06-24 11:33:01 +08:00
|
|
|
struct sk_buff *skb;
|
|
|
|
u16 first_bd;
|
2009-08-13 13:53:28 +08:00
|
|
|
u8 flags;
|
|
|
|
/* Set on the first BD descriptor when there is a split BD */
|
|
|
|
#define BNX2X_TSO_SPLIT_BD (1<<0)
|
2014-07-24 23:54:47 +08:00
|
|
|
#define BNX2X_HAS_SECOND_PBD (1<<1)
|
2007-11-16 02:09:02 +08:00
|
|
|
};
|
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
struct sw_rx_page {
|
|
|
|
struct page *page;
|
2010-04-04 09:51:03 +08:00
|
|
|
DEFINE_DMA_UNMAP_ADDR(mapping);
|
2015-05-28 00:51:43 +08:00
|
|
|
unsigned int offset;
|
2008-06-24 11:34:36 +08:00
|
|
|
};
|
|
|
|
|
2009-08-13 13:53:28 +08:00
|
|
|
union db_prod {
|
|
|
|
struct doorbell_set_prod data;
|
|
|
|
u32 raw;
|
|
|
|
};
|
|
|
|
|
2011-08-30 08:08:39 +08:00
|
|
|
/* dropless fc FW/HW related params */
|
|
|
|
#define BRB_SIZE(bp) (CHIP_IS_E3(bp) ? 1024 : 512)
|
|
|
|
#define MAX_AGG_QS(bp) (CHIP_IS_E1(bp) ? \
|
|
|
|
ETH_MAX_AGGREGATION_QUEUES_E1 :\
|
|
|
|
ETH_MAX_AGGREGATION_QUEUES_E1H_E2)
|
|
|
|
#define FW_DROP_LEVEL(bp) (3 + MAX_SPQ_PENDING + MAX_AGG_QS(bp))
|
|
|
|
#define FW_PREFETCH_CNT 16
|
|
|
|
#define DROPLESS_FC_HEADROOM 100
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* MC hsi */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define BCM_PAGE_SHIFT 12
|
|
|
|
#define BCM_PAGE_SIZE (1 << BCM_PAGE_SHIFT)
|
|
|
|
#define BCM_PAGE_MASK (~(BCM_PAGE_SIZE - 1))
|
2008-06-24 11:34:36 +08:00
|
|
|
#define BCM_PAGE_ALIGN(addr) (((addr) + BCM_PAGE_SIZE - 1) & BCM_PAGE_MASK)
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define PAGES_PER_SGE_SHIFT 0
|
|
|
|
#define PAGES_PER_SGE (1 << PAGES_PER_SGE_SHIFT)
|
2015-05-28 00:51:43 +08:00
|
|
|
#define SGE_PAGE_SHIFT 12
|
|
|
|
#define SGE_PAGE_SIZE (1 << SGE_PAGE_SHIFT)
|
|
|
|
#define SGE_PAGE_MASK (~(SGE_PAGE_SIZE - 1))
|
|
|
|
#define SGE_PAGE_ALIGN(addr) (((addr) + SGE_PAGE_SIZE - 1) & SGE_PAGE_MASK)
|
2013-01-01 13:22:27 +08:00
|
|
|
#define SGE_PAGES (SGE_PAGE_SIZE * PAGES_PER_SGE)
|
|
|
|
#define TPA_AGG_SIZE min_t(u32, (min_t(u32, 8, MAX_SKB_FRAGS) * \
|
|
|
|
SGE_PAGES), 0xffff)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* SGE ring related macros */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NUM_RX_SGE_PAGES 2
|
2008-06-24 11:34:36 +08:00
|
|
|
#define RX_SGE_CNT (BCM_PAGE_SIZE / sizeof(struct eth_rx_sge))
|
2011-08-30 08:08:39 +08:00
|
|
|
#define NEXT_PAGE_SGE_DESC_CNT 2
|
|
|
|
#define MAX_RX_SGE_CNT (RX_SGE_CNT - NEXT_PAGE_SGE_DESC_CNT)
|
2008-08-14 06:59:08 +08:00
|
|
|
/* RX_SGE_CNT is promised to be a power of 2 */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define RX_SGE_MASK (RX_SGE_CNT - 1)
|
|
|
|
#define NUM_RX_SGE (RX_SGE_CNT * NUM_RX_SGE_PAGES)
|
|
|
|
#define MAX_RX_SGE (NUM_RX_SGE - 1)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define NEXT_SGE_IDX(x) ((((x) & RX_SGE_MASK) == \
|
2011-08-30 08:08:39 +08:00
|
|
|
(MAX_RX_SGE_CNT - 1)) ? \
|
|
|
|
(x) + 1 + NEXT_PAGE_SGE_DESC_CNT : \
|
|
|
|
(x) + 1)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define RX_SGE(x) ((x) & MAX_RX_SGE)
|
|
|
|
|
2011-08-30 08:08:39 +08:00
|
|
|
/*
|
|
|
|
* Number of required SGEs is the sum of two:
|
|
|
|
* 1. Number of possible opened aggregations (next packet for
|
2013-06-02 08:06:18 +08:00
|
|
|
* these aggregations will probably consume SGE immediately)
|
2011-08-30 08:08:39 +08:00
|
|
|
* 2. Rest of BRB blocks divided by 2 (block will consume new SGE only
|
|
|
|
* after placement on BD for new TPA aggregation)
|
|
|
|
*
|
|
|
|
* Takes into account NEXT_PAGE_SGE_DESC_CNT "next" elements on each page
|
|
|
|
*/
|
|
|
|
#define NUM_SGE_REQ (MAX_AGG_QS(bp) + \
|
|
|
|
(BRB_SIZE(bp) - MAX_AGG_QS(bp)) / 2)
|
|
|
|
#define NUM_SGE_PG_REQ ((NUM_SGE_REQ + MAX_RX_SGE_CNT - 1) / \
|
|
|
|
MAX_RX_SGE_CNT)
|
|
|
|
#define SGE_TH_LO(bp) (NUM_SGE_REQ + \
|
|
|
|
NUM_SGE_PG_REQ * NEXT_PAGE_SGE_DESC_CNT)
|
|
|
|
#define SGE_TH_HI(bp) (SGE_TH_LO(bp) + DROPLESS_FC_HEADROOM)
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* Manipulate a bit vector defined as an array of u64 */
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* Number of bits in one sge_mask array element */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define BIT_VEC64_ELEM_SZ 64
|
|
|
|
#define BIT_VEC64_ELEM_SHIFT 6
|
|
|
|
#define BIT_VEC64_ELEM_MASK ((u64)BIT_VEC64_ELEM_SZ - 1)
|
|
|
|
|
|
|
|
#define __BIT_VEC64_SET_BIT(el, bit) \
|
|
|
|
do { \
|
|
|
|
el = ((el) | ((u64)0x1 << (bit))); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define __BIT_VEC64_CLEAR_BIT(el, bit) \
|
|
|
|
do { \
|
|
|
|
el = ((el) & (~((u64)0x1 << (bit)))); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define BIT_VEC64_SET_BIT(vec64, idx) \
|
|
|
|
__BIT_VEC64_SET_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
|
|
|
|
(idx) & BIT_VEC64_ELEM_MASK)
|
|
|
|
|
|
|
|
#define BIT_VEC64_CLEAR_BIT(vec64, idx) \
|
|
|
|
__BIT_VEC64_CLEAR_BIT((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT], \
|
|
|
|
(idx) & BIT_VEC64_ELEM_MASK)
|
|
|
|
|
|
|
|
#define BIT_VEC64_TEST_BIT(vec64, idx) \
|
|
|
|
(((vec64)[(idx) >> BIT_VEC64_ELEM_SHIFT] >> \
|
|
|
|
((idx) & BIT_VEC64_ELEM_MASK)) & 0x1)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* Creates a bitmask of all ones in less significant bits.
|
|
|
|
idx - index of the most significant bit in the created mask */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define BIT_VEC64_ONES_MASK(idx) \
|
|
|
|
(((u64)0x1 << (((idx) & BIT_VEC64_ELEM_MASK) + 1)) - 1)
|
|
|
|
#define BIT_VEC64_ELEM_ONE_MASK ((u64)(~0))
|
|
|
|
|
|
|
|
/*******************************************************/
|
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
/* Number of u64 elements in SGE mask array */
|
2011-11-13 12:34:27 +08:00
|
|
|
#define RX_SGE_MASK_LEN (NUM_RX_SGE / BIT_VEC64_ELEM_SZ)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define RX_SGE_MASK_LEN_MASK (RX_SGE_MASK_LEN - 1)
|
|
|
|
#define NEXT_SGE_MASK_ELEM(el) (((el) + 1) & RX_SGE_MASK_LEN_MASK)
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
union host_hc_status_block {
|
|
|
|
/* pointer to fp status block e1x */
|
|
|
|
struct host_hc_status_block_e1x *e1x_sb;
|
2010-10-06 11:28:26 +08:00
|
|
|
/* pointer to fp status block e2 */
|
|
|
|
struct host_hc_status_block_e2 *e2_sb;
|
2010-10-06 11:23:26 +08:00
|
|
|
};
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
struct bnx2x_agg_info {
|
|
|
|
/*
|
2011-11-14 14:05:34 +08:00
|
|
|
* First aggregation buffer is a data buffer, the following - are pages.
|
|
|
|
* We will preallocate the data buffer for each aggregation when
|
2011-06-14 19:33:44 +08:00
|
|
|
* we open the interface and will replace the BD at the consumer
|
|
|
|
* with this one when we receive the TPA_START CQE in order to
|
|
|
|
* keep the Rx BD ring consistent.
|
|
|
|
*/
|
|
|
|
struct sw_rx_bd first_buf;
|
|
|
|
u8 tpa_state;
|
|
|
|
#define BNX2X_TPA_START 1
|
|
|
|
#define BNX2X_TPA_STOP 2
|
|
|
|
#define BNX2X_TPA_ERROR 3
|
|
|
|
u8 placement_offset;
|
|
|
|
u16 parsing_flags;
|
|
|
|
u16 vlan_tag;
|
|
|
|
u16 len_on_bd;
|
2011-11-14 14:05:34 +08:00
|
|
|
u32 rxhash;
|
2013-12-20 00:59:08 +08:00
|
|
|
enum pkt_hash_types rxhash_type;
|
2012-02-20 17:59:08 +08:00
|
|
|
u16 gro_size;
|
|
|
|
u16 full_page;
|
2011-06-14 19:33:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define Q_STATS_OFFSET32(stat_name) \
|
|
|
|
(offsetof(struct bnx2x_eth_q_stats, stat_name) / 4)
|
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
struct bnx2x_fp_txdata {
|
|
|
|
|
|
|
|
struct sw_tx_bd *tx_buf_ring;
|
|
|
|
|
|
|
|
union eth_tx_bd_types *tx_desc_ring;
|
|
|
|
dma_addr_t tx_desc_mapping;
|
|
|
|
|
|
|
|
u32 cid;
|
|
|
|
|
|
|
|
union db_prod tx_db;
|
|
|
|
|
|
|
|
u16 tx_pkt_prod;
|
|
|
|
u16 tx_pkt_cons;
|
|
|
|
u16 tx_bd_prod;
|
|
|
|
u16 tx_bd_cons;
|
|
|
|
|
|
|
|
unsigned long tx_pkt;
|
|
|
|
|
|
|
|
__le16 *tx_cons_sb;
|
|
|
|
|
|
|
|
int txq_index;
|
2012-06-19 15:48:26 +08:00
|
|
|
struct bnx2x_fastpath *parent_fp;
|
|
|
|
int tx_ring_size;
|
2011-07-14 16:31:57 +08:00
|
|
|
};
|
|
|
|
|
2012-02-20 17:59:08 +08:00
|
|
|
enum bnx2x_tpa_mode_t {
|
2015-04-28 17:34:22 +08:00
|
|
|
TPA_MODE_DISABLED,
|
2012-02-20 17:59:08 +08:00
|
|
|
TPA_MODE_LRO,
|
|
|
|
TPA_MODE_GRO
|
|
|
|
};
|
|
|
|
|
2015-05-28 00:51:43 +08:00
|
|
|
struct bnx2x_alloc_pool {
|
|
|
|
struct page *page;
|
|
|
|
unsigned int offset;
|
|
|
|
};
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
struct bnx2x_fastpath {
|
2011-06-14 19:33:44 +08:00
|
|
|
struct bnx2x *bp; /* parent */
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct napi_struct napi;
|
2013-06-19 06:36:04 +08:00
|
|
|
|
2013-08-01 11:10:25 +08:00
|
|
|
#ifdef CONFIG_NET_RX_BUSY_POLL
|
2015-04-15 09:45:00 +08:00
|
|
|
unsigned long busy_poll_state;
|
|
|
|
#endif
|
2013-06-19 06:36:04 +08:00
|
|
|
|
2010-10-06 11:34:21 +08:00
|
|
|
union host_hc_status_block status_blk;
|
2013-06-02 08:06:18 +08:00
|
|
|
/* chip independent shortcuts into sb structure */
|
2010-10-06 11:23:26 +08:00
|
|
|
__le16 *sb_index_values;
|
|
|
|
__le16 *sb_running_index;
|
2013-06-02 08:06:18 +08:00
|
|
|
/* chip independent shortcut into rx_prods_offset memory */
|
2010-10-06 11:23:26 +08:00
|
|
|
u32 ustorm_rx_prods_offset;
|
|
|
|
|
2011-02-07 03:21:02 +08:00
|
|
|
u32 rx_buf_size;
|
2012-12-10 20:16:06 +08:00
|
|
|
u32 rx_frag_size; /* 0 if kmalloced(), or rx_buf_size + NET_SKB_PAD */
|
2008-06-24 11:33:01 +08:00
|
|
|
dma_addr_t status_blk_mapping;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2012-02-20 17:59:08 +08:00
|
|
|
enum bnx2x_tpa_mode_t mode;
|
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
u8 max_cos; /* actual number of active tx coses */
|
2012-06-19 15:48:26 +08:00
|
|
|
struct bnx2x_fp_txdata *txdata_ptr[BNX2X_MULTI_TX_COS];
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
struct sw_rx_bd *rx_buf_ring; /* BDs mappings ring */
|
|
|
|
struct sw_rx_page *rx_page_ring; /* SGE pages mappings ring */
|
2007-11-16 02:09:02 +08:00
|
|
|
|
|
|
|
struct eth_rx_bd *rx_desc_ring;
|
2008-06-24 11:33:01 +08:00
|
|
|
dma_addr_t rx_desc_mapping;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
|
|
|
union eth_rx_cqe *rx_comp_ring;
|
2008-06-24 11:33:01 +08:00
|
|
|
dma_addr_t rx_comp_mapping;
|
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
/* SGE ring */
|
|
|
|
struct eth_rx_sge *rx_sge_ring;
|
|
|
|
dma_addr_t rx_sge_mapping;
|
|
|
|
|
|
|
|
u64 sge_mask[RX_SGE_MASK_LEN];
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
u32 cid;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
__le16 fp_hc_idx;
|
|
|
|
|
2010-10-06 11:34:21 +08:00
|
|
|
u8 index; /* number in fp array */
|
2011-11-13 12:34:22 +08:00
|
|
|
u8 rx_queue; /* index for skb_record */
|
2010-10-06 11:34:21 +08:00
|
|
|
u8 cl_id; /* eth client id */
|
2010-10-06 11:23:26 +08:00
|
|
|
u8 cl_qzone_id;
|
|
|
|
u8 fw_sb_id; /* status block number in FW */
|
|
|
|
u8 igu_sb_id; /* status block number in HW */
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
u16 rx_bd_prod;
|
|
|
|
u16 rx_bd_cons;
|
|
|
|
u16 rx_comp_prod;
|
|
|
|
u16 rx_comp_cons;
|
2008-06-24 11:34:36 +08:00
|
|
|
u16 rx_sge_prod;
|
|
|
|
/* The last maximal completed SGE */
|
|
|
|
u16 last_max_sge;
|
2009-02-12 16:38:17 +08:00
|
|
|
__le16 *rx_cons_sb;
|
2011-07-14 16:31:57 +08:00
|
|
|
unsigned long rx_pkt,
|
2008-08-14 06:49:05 +08:00
|
|
|
rx_calls;
|
2009-08-12 16:24:29 +08:00
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
/* TPA related */
|
2012-06-19 15:48:28 +08:00
|
|
|
struct bnx2x_agg_info *tpa_info;
|
2008-06-24 11:34:36 +08:00
|
|
|
#ifdef BNX2X_STOP_ON_ERROR
|
|
|
|
u64 tpa_queue_used;
|
|
|
|
#endif
|
2009-08-13 13:53:28 +08:00
|
|
|
/* The size is calculated using the following:
|
|
|
|
sizeof name field from netdev structure +
|
|
|
|
4 ('-Xx-' string) +
|
|
|
|
4 (for the digits and to make it DWORD aligned) */
|
|
|
|
#define FP_NAME_SIZE (sizeof(((struct net_device *)0)->name) + 8)
|
|
|
|
char name[FP_NAME_SIZE];
|
2015-05-28 00:51:43 +08:00
|
|
|
|
|
|
|
struct bnx2x_alloc_pool page_pool;
|
2007-11-16 02:09:02 +08:00
|
|
|
};
|
|
|
|
|
2012-06-19 15:48:28 +08:00
|
|
|
#define bnx2x_fp(bp, nr, var) ((bp)->fp[(nr)].var)
|
|
|
|
#define bnx2x_sp_obj(bp, fp) ((bp)->sp_objs[(fp)->index])
|
|
|
|
#define bnx2x_fp_stats(bp, fp) (&((bp)->fp_stats[(fp)->index]))
|
|
|
|
#define bnx2x_fp_qstats(bp, fp) (&((bp)->fp_stats[(fp)->index].eth_q_stats))
|
2011-02-07 03:21:02 +08:00
|
|
|
|
2013-08-01 11:10:25 +08:00
|
|
|
#ifdef CONFIG_NET_RX_BUSY_POLL
|
2015-04-15 09:45:00 +08:00
|
|
|
|
|
|
|
enum bnx2x_fp_state {
|
|
|
|
BNX2X_STATE_FP_NAPI = BIT(0), /* NAPI handler owns the queue */
|
|
|
|
|
|
|
|
BNX2X_STATE_FP_NAPI_REQ_BIT = 1, /* NAPI would like to own the queue */
|
|
|
|
BNX2X_STATE_FP_NAPI_REQ = BIT(1),
|
|
|
|
|
|
|
|
BNX2X_STATE_FP_POLL_BIT = 2,
|
|
|
|
BNX2X_STATE_FP_POLL = BIT(2), /* busy_poll owns the queue */
|
|
|
|
|
|
|
|
BNX2X_STATE_FP_DISABLE_BIT = 3, /* queue is dismantled */
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void bnx2x_fp_busy_poll_init(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
WRITE_ONCE(fp->busy_poll_state, 0);
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* called from the device poll routine to get ownership of a FP */
|
|
|
|
static inline bool bnx2x_fp_lock_napi(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
unsigned long prev, old = READ_ONCE(fp->busy_poll_state);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
switch (old) {
|
|
|
|
case BNX2X_STATE_FP_POLL:
|
|
|
|
/* make sure bnx2x_fp_lock_poll() wont starve us */
|
|
|
|
set_bit(BNX2X_STATE_FP_NAPI_REQ_BIT,
|
|
|
|
&fp->busy_poll_state);
|
|
|
|
/* fallthrough */
|
|
|
|
case BNX2X_STATE_FP_POLL | BNX2X_STATE_FP_NAPI_REQ:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = cmpxchg(&fp->busy_poll_state, old, BNX2X_STATE_FP_NAPI);
|
|
|
|
if (unlikely(prev != old)) {
|
|
|
|
old = prev;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return true;
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-15 09:45:00 +08:00
|
|
|
static inline void bnx2x_fp_unlock_napi(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
smp_wmb();
|
|
|
|
fp->busy_poll_state = 0;
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* called from bnx2x_low_latency_poll() */
|
|
|
|
static inline bool bnx2x_fp_lock_poll(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
return cmpxchg(&fp->busy_poll_state, 0, BNX2X_STATE_FP_POLL) == 0;
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
|
|
|
|
2015-04-15 09:45:00 +08:00
|
|
|
static inline void bnx2x_fp_unlock_poll(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
smp_mb__before_atomic();
|
|
|
|
clear_bit(BNX2X_STATE_FP_POLL_BIT, &fp->busy_poll_state);
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
|
|
|
|
2015-04-15 09:45:00 +08:00
|
|
|
/* true if a socket is polling */
|
2013-06-19 06:36:04 +08:00
|
|
|
static inline bool bnx2x_fp_ll_polling(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
return READ_ONCE(fp->busy_poll_state) & BNX2X_STATE_FP_POLL;
|
2013-06-19 06:36:04 +08:00
|
|
|
}
|
2014-01-07 18:07:41 +08:00
|
|
|
|
|
|
|
/* false if fp is currently owned */
|
|
|
|
static inline bool bnx2x_fp_ll_disable(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
2015-04-15 09:45:00 +08:00
|
|
|
set_bit(BNX2X_STATE_FP_DISABLE_BIT, &fp->busy_poll_state);
|
|
|
|
return !bnx2x_fp_ll_polling(fp);
|
2014-01-07 18:07:41 +08:00
|
|
|
|
|
|
|
}
|
2013-06-19 06:36:04 +08:00
|
|
|
#else
|
2015-04-15 09:45:00 +08:00
|
|
|
static inline void bnx2x_fp_busy_poll_init(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool bnx2x_fp_lock_napi(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-15 09:45:00 +08:00
|
|
|
static inline void bnx2x_fp_unlock_napi(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool bnx2x_fp_lock_poll(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-15 09:45:00 +08:00
|
|
|
static inline void bnx2x_fp_unlock_poll(struct bnx2x_fastpath *fp)
|
2013-06-19 06:36:04 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool bnx2x_fp_ll_polling(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-07 18:07:41 +08:00
|
|
|
static inline bool bnx2x_fp_ll_disable(struct bnx2x_fastpath *fp)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-01 11:10:25 +08:00
|
|
|
#endif /* CONFIG_NET_RX_BUSY_POLL */
|
2013-06-19 06:36:04 +08:00
|
|
|
|
2011-02-07 03:21:02 +08:00
|
|
|
/* Use 2500 as a mini-jumbo MTU for FCoE */
|
|
|
|
#define BNX2X_FCOE_MINI_JUMBO_MTU 2500
|
|
|
|
|
2012-06-19 15:48:26 +08:00
|
|
|
#define FCOE_IDX_OFFSET 0
|
|
|
|
|
|
|
|
#define FCOE_IDX(bp) (BNX2X_NUM_NON_CNIC_QUEUES(bp) + \
|
|
|
|
FCOE_IDX_OFFSET)
|
|
|
|
#define bnx2x_fcoe_fp(bp) (&bp->fp[FCOE_IDX(bp)])
|
|
|
|
#define bnx2x_fcoe(bp, var) (bnx2x_fcoe_fp(bp)->var)
|
2012-06-19 15:48:28 +08:00
|
|
|
#define bnx2x_fcoe_inner_sp_obj(bp) (&bp->sp_objs[FCOE_IDX(bp)])
|
|
|
|
#define bnx2x_fcoe_sp_obj(bp, var) (bnx2x_fcoe_inner_sp_obj(bp)->var)
|
2012-06-19 15:48:26 +08:00
|
|
|
#define bnx2x_fcoe_tx(bp, var) (bnx2x_fcoe_fp(bp)-> \
|
|
|
|
txdata_ptr[FIRST_TX_COS_INDEX] \
|
|
|
|
->var)
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
#define IS_ETH_FP(fp) ((fp)->index < BNX2X_NUM_ETH_QUEUES((fp)->bp))
|
|
|
|
#define IS_FCOE_FP(fp) ((fp)->index == FCOE_IDX((fp)->bp))
|
|
|
|
#define IS_FCOE_IDX(idx) ((idx) == FCOE_IDX(bp))
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* MC hsi */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define MAX_FETCH_BD 13 /* HW max BDs per packet */
|
|
|
|
#define RX_COPY_THRESH 92
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NUM_TX_RINGS 16
|
2009-08-13 13:53:28 +08:00
|
|
|
#define TX_DESC_CNT (BCM_PAGE_SIZE / sizeof(union eth_tx_bd_types))
|
2011-08-30 08:08:39 +08:00
|
|
|
#define NEXT_PAGE_TX_DESC_CNT 1
|
|
|
|
#define MAX_TX_DESC_CNT (TX_DESC_CNT - NEXT_PAGE_TX_DESC_CNT)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NUM_TX_BD (TX_DESC_CNT * NUM_TX_RINGS)
|
|
|
|
#define MAX_TX_BD (NUM_TX_BD - 1)
|
|
|
|
#define MAX_TX_AVAIL (MAX_TX_DESC_CNT * NUM_TX_RINGS - 2)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define NEXT_TX_IDX(x) ((((x) & MAX_TX_DESC_CNT) == \
|
2011-08-30 08:08:39 +08:00
|
|
|
(MAX_TX_DESC_CNT - 1)) ? \
|
|
|
|
(x) + 1 + NEXT_PAGE_TX_DESC_CNT : \
|
|
|
|
(x) + 1)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define TX_BD(x) ((x) & MAX_TX_BD)
|
|
|
|
#define TX_BD_POFF(x) ((x) & MAX_TX_DESC_CNT)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2012-06-26 06:32:50 +08:00
|
|
|
/* number of NEXT_PAGE descriptors may be required during placement */
|
|
|
|
#define NEXT_CNT_PER_TX_PKT(bds) \
|
|
|
|
(((bds) + MAX_TX_DESC_CNT - 1) / \
|
|
|
|
MAX_TX_DESC_CNT * NEXT_PAGE_TX_DESC_CNT)
|
|
|
|
/* max BDs per tx packet w/o next_pages:
|
|
|
|
* START_BD - describes packed
|
|
|
|
* START_BD(splitted) - includes unpaged data segment for GSO
|
|
|
|
* PARSING_BD - for TSO and CSUM data
|
2013-03-18 14:51:03 +08:00
|
|
|
* PARSING_BD2 - for encapsulation data
|
2013-06-02 08:06:18 +08:00
|
|
|
* Frag BDs - describes pages for frags
|
2012-06-26 06:32:50 +08:00
|
|
|
*/
|
2013-03-18 14:51:03 +08:00
|
|
|
#define BDS_PER_TX_PKT 4
|
2012-06-26 06:32:50 +08:00
|
|
|
#define MAX_BDS_PER_TX_PKT (MAX_SKB_FRAGS + BDS_PER_TX_PKT)
|
|
|
|
/* max BDs per tx packet including next pages */
|
|
|
|
#define MAX_DESC_PER_TX_PKT (MAX_BDS_PER_TX_PKT + \
|
|
|
|
NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))
|
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
/* The RX BD ring is special, each bd is 8 bytes but the last one is 16 */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NUM_RX_RINGS 8
|
2008-06-24 11:34:36 +08:00
|
|
|
#define RX_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_rx_bd))
|
2011-08-30 08:08:39 +08:00
|
|
|
#define NEXT_PAGE_RX_DESC_CNT 2
|
|
|
|
#define MAX_RX_DESC_CNT (RX_DESC_CNT - NEXT_PAGE_RX_DESC_CNT)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define RX_DESC_MASK (RX_DESC_CNT - 1)
|
|
|
|
#define NUM_RX_BD (RX_DESC_CNT * NUM_RX_RINGS)
|
|
|
|
#define MAX_RX_BD (NUM_RX_BD - 1)
|
|
|
|
#define MAX_RX_AVAIL (MAX_RX_DESC_CNT * NUM_RX_RINGS - 2)
|
2011-08-30 08:08:39 +08:00
|
|
|
|
|
|
|
/* dropless fc calculations for BDs
|
|
|
|
*
|
|
|
|
* Number of BDs should as number of buffers in BRB:
|
|
|
|
* Low threshold takes into account NEXT_PAGE_RX_DESC_CNT
|
|
|
|
* "next" elements on each page
|
|
|
|
*/
|
|
|
|
#define NUM_BD_REQ BRB_SIZE(bp)
|
|
|
|
#define NUM_BD_PG_REQ ((NUM_BD_REQ + MAX_RX_DESC_CNT - 1) / \
|
|
|
|
MAX_RX_DESC_CNT)
|
|
|
|
#define BD_TH_LO(bp) (NUM_BD_REQ + \
|
|
|
|
NUM_BD_PG_REQ * NEXT_PAGE_RX_DESC_CNT + \
|
|
|
|
FW_DROP_LEVEL(bp))
|
|
|
|
#define BD_TH_HI(bp) (BD_TH_LO(bp) + DROPLESS_FC_HEADROOM)
|
|
|
|
|
|
|
|
#define MIN_RX_AVAIL ((bp)->dropless_fc ? BD_TH_HI(bp) + 128 : 128)
|
2011-06-14 19:33:44 +08:00
|
|
|
|
|
|
|
#define MIN_RX_SIZE_TPA_HW (CHIP_IS_E1(bp) ? \
|
|
|
|
ETH_MIN_RX_CQES_WITH_TPA_E1 : \
|
|
|
|
ETH_MIN_RX_CQES_WITH_TPA_E1H_E2)
|
|
|
|
#define MIN_RX_SIZE_NONTPA_HW ETH_MIN_RX_CQES_WITHOUT_TPA
|
|
|
|
#define MIN_RX_SIZE_TPA (max_t(u32, MIN_RX_SIZE_TPA_HW, MIN_RX_AVAIL))
|
|
|
|
#define MIN_RX_SIZE_NONTPA (max_t(u32, MIN_RX_SIZE_NONTPA_HW,\
|
|
|
|
MIN_RX_AVAIL))
|
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
#define NEXT_RX_IDX(x) ((((x) & RX_DESC_MASK) == \
|
2011-08-30 08:08:39 +08:00
|
|
|
(MAX_RX_DESC_CNT - 1)) ? \
|
|
|
|
(x) + 1 + NEXT_PAGE_RX_DESC_CNT : \
|
|
|
|
(x) + 1)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define RX_BD(x) ((x) & MAX_RX_BD)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/*
|
|
|
|
* As long as CQE is X times bigger than BD entry we have to allocate X times
|
|
|
|
* more pages for CQ ring in order to keep it balanced with BD ring
|
|
|
|
*/
|
|
|
|
#define CQE_BD_REL (sizeof(union eth_rx_cqe) / sizeof(struct eth_rx_bd))
|
|
|
|
#define NUM_RCQ_RINGS (NUM_RX_RINGS * CQE_BD_REL)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define RCQ_DESC_CNT (BCM_PAGE_SIZE / sizeof(union eth_rx_cqe))
|
2011-08-30 08:08:39 +08:00
|
|
|
#define NEXT_PAGE_RCQ_DESC_CNT 1
|
|
|
|
#define MAX_RCQ_DESC_CNT (RCQ_DESC_CNT - NEXT_PAGE_RCQ_DESC_CNT)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NUM_RCQ_BD (RCQ_DESC_CNT * NUM_RCQ_RINGS)
|
|
|
|
#define MAX_RCQ_BD (NUM_RCQ_BD - 1)
|
|
|
|
#define MAX_RCQ_AVAIL (MAX_RCQ_DESC_CNT * NUM_RCQ_RINGS - 2)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define NEXT_RCQ_IDX(x) ((((x) & MAX_RCQ_DESC_CNT) == \
|
2011-08-30 08:08:39 +08:00
|
|
|
(MAX_RCQ_DESC_CNT - 1)) ? \
|
|
|
|
(x) + 1 + NEXT_PAGE_RCQ_DESC_CNT : \
|
|
|
|
(x) + 1)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define RCQ_BD(x) ((x) & MAX_RCQ_BD)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-08-30 08:08:39 +08:00
|
|
|
/* dropless fc calculations for RCQs
|
|
|
|
*
|
|
|
|
* Number of RCQs should be as number of buffers in BRB:
|
|
|
|
* Low threshold takes into account NEXT_PAGE_RCQ_DESC_CNT
|
|
|
|
* "next" elements on each page
|
|
|
|
*/
|
|
|
|
#define NUM_RCQ_REQ BRB_SIZE(bp)
|
|
|
|
#define NUM_RCQ_PG_REQ ((NUM_BD_REQ + MAX_RCQ_DESC_CNT - 1) / \
|
|
|
|
MAX_RCQ_DESC_CNT)
|
|
|
|
#define RCQ_TH_LO(bp) (NUM_RCQ_REQ + \
|
|
|
|
NUM_RCQ_PG_REQ * NEXT_PAGE_RCQ_DESC_CNT + \
|
|
|
|
FW_DROP_LEVEL(bp))
|
|
|
|
#define RCQ_TH_HI(bp) (RCQ_TH_LO(bp) + DROPLESS_FC_HEADROOM)
|
|
|
|
|
2008-08-14 06:59:08 +08:00
|
|
|
/* This is needed for determining of last_max */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define SUB_S16(a, b) (s16)((s16)(a) - (s16)(b))
|
|
|
|
#define SUB_S32(a, b) (s32)((s32)(a) - (s32)(b))
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define BNX2X_SWCID_SHIFT 17
|
|
|
|
#define BNX2X_SWCID_MASK ((0x1 << BNX2X_SWCID_SHIFT) - 1)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* used on a CID received from the HW */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define SW_CID(x) (le32_to_cpu(x) & BNX2X_SWCID_MASK)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define CQE_CMD(x) (le32_to_cpu(x) >> \
|
|
|
|
COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT)
|
|
|
|
|
2008-06-24 11:33:36 +08:00
|
|
|
#define BD_UNMAP_ADDR(bd) HILO_U64(le32_to_cpu((bd)->addr_hi), \
|
|
|
|
le32_to_cpu((bd)->addr_lo))
|
|
|
|
#define BD_UNMAP_LEN(bd) (le16_to_cpu((bd)->nbytes))
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define BNX2X_DB_MIN_SHIFT 3 /* 8 bytes */
|
2013-09-04 19:09:21 +08:00
|
|
|
#define BNX2X_DB_SHIFT 3 /* 8 bytes*/
|
2011-06-14 19:33:44 +08:00
|
|
|
#if (BNX2X_DB_SHIFT < BNX2X_DB_MIN_SHIFT)
|
|
|
|
#error "Min DB doorbell stride is 8"
|
|
|
|
#endif
|
2008-06-24 11:34:36 +08:00
|
|
|
#define DOORBELL(bp, cid, val) \
|
|
|
|
do { \
|
2013-09-04 19:09:21 +08:00
|
|
|
writel((u32)(val), bp->doorbells + (bp->db_size * (cid))); \
|
2008-06-24 11:34:36 +08:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* TX CSUM helpers */
|
|
|
|
#define SKB_CS_OFF(skb) (offsetof(struct tcphdr, check) - \
|
|
|
|
skb->csum_offset)
|
|
|
|
#define SKB_CS(skb) (*(u16 *)(skb_transport_header(skb) + \
|
|
|
|
skb->csum_offset))
|
|
|
|
|
2013-03-11 13:17:52 +08:00
|
|
|
#define pbd_tcp_flags(tcp_hdr) (ntohl(tcp_flag_word(tcp_hdr))>>16 & 0xff)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2013-03-18 14:51:03 +08:00
|
|
|
#define XMIT_PLAIN 0
|
|
|
|
#define XMIT_CSUM_V4 (1 << 0)
|
|
|
|
#define XMIT_CSUM_V6 (1 << 1)
|
|
|
|
#define XMIT_CSUM_TCP (1 << 2)
|
|
|
|
#define XMIT_GSO_V4 (1 << 3)
|
|
|
|
#define XMIT_GSO_V6 (1 << 4)
|
|
|
|
#define XMIT_CSUM_ENC_V4 (1 << 5)
|
|
|
|
#define XMIT_CSUM_ENC_V6 (1 << 6)
|
|
|
|
#define XMIT_GSO_ENC_V4 (1 << 7)
|
|
|
|
#define XMIT_GSO_ENC_V6 (1 << 8)
|
|
|
|
|
|
|
|
#define XMIT_CSUM_ENC (XMIT_CSUM_ENC_V4 | XMIT_CSUM_ENC_V6)
|
|
|
|
#define XMIT_GSO_ENC (XMIT_GSO_ENC_V4 | XMIT_GSO_ENC_V6)
|
|
|
|
|
|
|
|
#define XMIT_CSUM (XMIT_CSUM_V4 | XMIT_CSUM_V6 | XMIT_CSUM_ENC)
|
|
|
|
#define XMIT_GSO (XMIT_GSO_V4 | XMIT_GSO_V6 | XMIT_GSO_ENC)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* stuff added to make the code fit 80Col */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CQE_TYPE(cqe_fp_flags) ((cqe_fp_flags) & ETH_FAST_PATH_RX_CQE_TYPE)
|
|
|
|
#define CQE_TYPE_START(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_START_AGG)
|
|
|
|
#define CQE_TYPE_STOP(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_STOP_AGG)
|
|
|
|
#define CQE_TYPE_SLOW(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_RAMROD)
|
|
|
|
#define CQE_TYPE_FAST(cqe_type) ((cqe_type) == RX_ETH_CQE_TYPE_ETH_FASTPATH)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2008-08-14 06:48:29 +08:00
|
|
|
#define ETH_RX_ERROR_FALGS ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG
|
|
|
|
|
2009-02-12 16:37:16 +08:00
|
|
|
#define BNX2X_PRS_FLAG_OVERETH_IPV4(flags) \
|
|
|
|
(((le16_to_cpu(flags) & \
|
|
|
|
PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) >> \
|
|
|
|
PARSING_FLAGS_OVER_ETHERNET_PROTOCOL_SHIFT) \
|
|
|
|
== PRS_FLAG_OVERETH_IPV4)
|
2008-06-24 11:34:36 +08:00
|
|
|
#define BNX2X_RX_SUM_FIX(cqe) \
|
2009-02-12 16:37:16 +08:00
|
|
|
BNX2X_PRS_FLAG_OVERETH_IPV4(cqe->fast_path_cqe.pars_flags.flags)
|
2008-06-24 11:34:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define FP_USB_FUNC_OFF \
|
|
|
|
offsetof(struct cstorm_status_block_u, func)
|
|
|
|
#define FP_CSB_FUNC_OFF \
|
|
|
|
offsetof(struct cstorm_status_block_c, func)
|
|
|
|
|
2011-08-30 08:08:46 +08:00
|
|
|
#define HC_INDEX_ETH_RX_CQ_CONS 1
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2011-08-30 08:08:46 +08:00
|
|
|
#define HC_INDEX_OOO_TX_CQ_CONS 4
|
2011-07-14 16:31:57 +08:00
|
|
|
|
2011-08-30 08:08:46 +08:00
|
|
|
#define HC_INDEX_ETH_TX_CQ_CONS_COS0 5
|
|
|
|
|
|
|
|
#define HC_INDEX_ETH_TX_CQ_CONS_COS1 6
|
2011-07-14 16:31:57 +08:00
|
|
|
|
2011-08-30 08:08:46 +08:00
|
|
|
#define HC_INDEX_ETH_TX_CQ_CONS_COS2 7
|
|
|
|
|
|
|
|
#define HC_INDEX_ETH_FIRST_TX_CQ_CONS HC_INDEX_ETH_TX_CQ_CONS_COS0
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define BNX2X_RX_SB_INDEX \
|
2011-06-14 19:33:44 +08:00
|
|
|
(&fp->sb_index_values[HC_INDEX_ETH_RX_CQ_CONS])
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
#define BNX2X_TX_SB_INDEX_BASE BNX2X_TX_SB_INDEX_COS0
|
|
|
|
|
|
|
|
#define BNX2X_TX_SB_INDEX_COS0 \
|
|
|
|
(&fp->sb_index_values[HC_INDEX_ETH_TX_CQ_CONS_COS0])
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
/* end of fast path */
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* common */
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct bnx2x_common {
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:29:02 +08:00
|
|
|
u32 chip_id;
|
2007-11-16 02:09:02 +08:00
|
|
|
/* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
|
2008-06-24 11:33:01 +08:00
|
|
|
#define CHIP_ID(bp) (bp->common.chip_id & 0xfffffff0)
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define CHIP_NUM(bp) (bp->common.chip_id >> 16)
|
2008-06-24 11:29:02 +08:00
|
|
|
#define CHIP_NUM_57710 0x164e
|
|
|
|
#define CHIP_NUM_57711 0x164f
|
|
|
|
#define CHIP_NUM_57711E 0x1650
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_NUM_57712 0x1662
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_NUM_57712_MF 0x1663
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_NUM_57712_VF 0x166f
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_NUM_57713 0x1651
|
|
|
|
#define CHIP_NUM_57713E 0x1652
|
|
|
|
#define CHIP_NUM_57800 0x168a
|
|
|
|
#define CHIP_NUM_57800_MF 0x16a5
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_NUM_57800_VF 0x16a9
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_NUM_57810 0x168e
|
|
|
|
#define CHIP_NUM_57810_MF 0x16ae
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_NUM_57810_VF 0x16af
|
2012-04-04 02:41:28 +08:00
|
|
|
#define CHIP_NUM_57811 0x163d
|
|
|
|
#define CHIP_NUM_57811_MF 0x163e
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_NUM_57811_VF 0x163f
|
2013-01-23 11:21:43 +08:00
|
|
|
#define CHIP_NUM_57840_OBSOLETE 0x168d
|
2012-07-23 15:25:43 +08:00
|
|
|
#define CHIP_NUM_57840_MF_OBSOLETE 0x16ab
|
|
|
|
#define CHIP_NUM_57840_4_10 0x16a1
|
|
|
|
#define CHIP_NUM_57840_2_20 0x16a2
|
|
|
|
#define CHIP_NUM_57840_MF 0x16a4
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_NUM_57840_VF 0x16ad
|
2008-06-24 11:29:02 +08:00
|
|
|
#define CHIP_IS_E1(bp) (CHIP_NUM(bp) == CHIP_NUM_57710)
|
|
|
|
#define CHIP_IS_57711(bp) (CHIP_NUM(bp) == CHIP_NUM_57711)
|
|
|
|
#define CHIP_IS_57711E(bp) (CHIP_NUM(bp) == CHIP_NUM_57711E)
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_IS_57712(bp) (CHIP_NUM(bp) == CHIP_NUM_57712)
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_IS_57712_VF(bp) (CHIP_NUM(bp) == CHIP_NUM_57712_VF)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_IS_57712_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57712_MF)
|
|
|
|
#define CHIP_IS_57800(bp) (CHIP_NUM(bp) == CHIP_NUM_57800)
|
|
|
|
#define CHIP_IS_57800_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57800_MF)
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_IS_57800_VF(bp) (CHIP_NUM(bp) == CHIP_NUM_57800_VF)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_IS_57810(bp) (CHIP_NUM(bp) == CHIP_NUM_57810)
|
|
|
|
#define CHIP_IS_57810_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57810_MF)
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_IS_57810_VF(bp) (CHIP_NUM(bp) == CHIP_NUM_57810_VF)
|
2012-04-04 02:41:28 +08:00
|
|
|
#define CHIP_IS_57811(bp) (CHIP_NUM(bp) == CHIP_NUM_57811)
|
|
|
|
#define CHIP_IS_57811_MF(bp) (CHIP_NUM(bp) == CHIP_NUM_57811_MF)
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_IS_57811_VF(bp) (CHIP_NUM(bp) == CHIP_NUM_57811_VF)
|
2012-07-23 15:25:43 +08:00
|
|
|
#define CHIP_IS_57840(bp) \
|
|
|
|
((CHIP_NUM(bp) == CHIP_NUM_57840_4_10) || \
|
|
|
|
(CHIP_NUM(bp) == CHIP_NUM_57840_2_20) || \
|
|
|
|
(CHIP_NUM(bp) == CHIP_NUM_57840_OBSOLETE))
|
|
|
|
#define CHIP_IS_57840_MF(bp) ((CHIP_NUM(bp) == CHIP_NUM_57840_MF) || \
|
|
|
|
(CHIP_NUM(bp) == CHIP_NUM_57840_MF_OBSOLETE))
|
2013-01-01 13:22:44 +08:00
|
|
|
#define CHIP_IS_57840_VF(bp) (CHIP_NUM(bp) == CHIP_NUM_57840_VF)
|
2008-06-24 11:29:02 +08:00
|
|
|
#define CHIP_IS_E1H(bp) (CHIP_IS_57711(bp) || \
|
|
|
|
CHIP_IS_57711E(bp))
|
2013-04-22 11:48:09 +08:00
|
|
|
#define CHIP_IS_57811xx(bp) (CHIP_IS_57811(bp) || \
|
|
|
|
CHIP_IS_57811_MF(bp) || \
|
|
|
|
CHIP_IS_57811_VF(bp))
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_IS_E2(bp) (CHIP_IS_57712(bp) || \
|
2013-01-23 11:21:47 +08:00
|
|
|
CHIP_IS_57712_MF(bp) || \
|
|
|
|
CHIP_IS_57712_VF(bp))
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_IS_E3(bp) (CHIP_IS_57800(bp) || \
|
|
|
|
CHIP_IS_57800_MF(bp) || \
|
2013-01-23 11:21:47 +08:00
|
|
|
CHIP_IS_57800_VF(bp) || \
|
2011-06-14 19:33:44 +08:00
|
|
|
CHIP_IS_57810(bp) || \
|
|
|
|
CHIP_IS_57810_MF(bp) || \
|
2013-01-01 13:22:44 +08:00
|
|
|
CHIP_IS_57810_VF(bp) || \
|
2013-04-22 11:48:09 +08:00
|
|
|
CHIP_IS_57811xx(bp) || \
|
2011-06-14 19:33:44 +08:00
|
|
|
CHIP_IS_57840(bp) || \
|
2013-01-01 13:22:44 +08:00
|
|
|
CHIP_IS_57840_MF(bp) || \
|
|
|
|
CHIP_IS_57840_VF(bp))
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_IS_E1x(bp) (CHIP_IS_E1((bp)) || CHIP_IS_E1H((bp)))
|
2011-06-14 19:33:44 +08:00
|
|
|
#define USES_WARPCORE(bp) (CHIP_IS_E3(bp))
|
|
|
|
#define IS_E1H_OFFSET (!CHIP_IS_E1(bp))
|
|
|
|
|
|
|
|
#define CHIP_REV_SHIFT 12
|
|
|
|
#define CHIP_REV_MASK (0xF << CHIP_REV_SHIFT)
|
|
|
|
#define CHIP_REV_VAL(bp) (bp->common.chip_id & CHIP_REV_MASK)
|
|
|
|
#define CHIP_REV_Ax (0x0 << CHIP_REV_SHIFT)
|
|
|
|
#define CHIP_REV_Bx (0x1 << CHIP_REV_SHIFT)
|
2008-06-24 11:29:02 +08:00
|
|
|
/* assume maximum 5 revisions */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_REV_IS_SLOW(bp) (CHIP_REV_VAL(bp) > 0x00005000)
|
2008-06-24 11:29:02 +08:00
|
|
|
/* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
|
|
|
|
#define CHIP_REV_IS_EMUL(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
2011-06-14 19:33:44 +08:00
|
|
|
!(CHIP_REV_VAL(bp) & 0x00001000))
|
2008-06-24 11:29:02 +08:00
|
|
|
/* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
|
|
|
|
#define CHIP_REV_IS_FPGA(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
2011-06-14 19:33:44 +08:00
|
|
|
(CHIP_REV_VAL(bp) & 0x00001000))
|
2008-06-24 11:29:02 +08:00
|
|
|
|
|
|
|
#define CHIP_TIME(bp) ((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
|
|
|
|
((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define CHIP_METAL(bp) (bp->common.chip_id & 0x00000ff0)
|
|
|
|
#define CHIP_BOND_ID(bp) (bp->common.chip_id & 0x0000000f)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define CHIP_REV_SIM(bp) (((CHIP_REV_MASK - CHIP_REV_VAL(bp)) >>\
|
|
|
|
(CHIP_REV_SHIFT + 1)) \
|
|
|
|
<< CHIP_REV_SHIFT)
|
|
|
|
#define CHIP_REV(bp) (CHIP_REV_IS_SLOW(bp) ? \
|
|
|
|
CHIP_REV_SIM(bp) :\
|
|
|
|
CHIP_REV_VAL(bp))
|
|
|
|
#define CHIP_IS_E3B0(bp) (CHIP_IS_E3(bp) && \
|
|
|
|
(CHIP_REV(bp) == CHIP_REV_Bx))
|
|
|
|
#define CHIP_IS_E3A0(bp) (CHIP_IS_E3(bp) && \
|
|
|
|
(CHIP_REV(bp) == CHIP_REV_Ax))
|
2012-11-07 08:45:48 +08:00
|
|
|
/* This define is used in two main places:
|
2013-06-02 08:06:18 +08:00
|
|
|
* 1. In the early stages of nic_load, to know if to configure Parser / Searcher
|
2012-11-07 08:45:48 +08:00
|
|
|
* to nic-only mode or to offload mode. Offload mode is configured if either the
|
|
|
|
* chip is E1x (where MIC_MODE register is not applicable), or if cnic already
|
|
|
|
* registered for this port (which means that the user wants storage services).
|
|
|
|
* 2. During cnic-related load, to know if offload mode is already configured in
|
2013-06-02 08:06:18 +08:00
|
|
|
* the HW or needs to be configured.
|
2012-11-07 08:45:48 +08:00
|
|
|
* Since the transition from nic-mode to offload-mode in HW causes traffic
|
2013-06-02 08:06:18 +08:00
|
|
|
* corruption, nic-mode is configured only in ports on which storage services
|
2012-11-07 08:45:48 +08:00
|
|
|
* where never requested.
|
|
|
|
*/
|
|
|
|
#define CONFIGURE_NIC_MODE(bp) (!CHIP_IS_E1x(bp) && !CNIC_ENABLED(bp))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
int flash_size;
|
2011-06-14 09:34:02 +08:00
|
|
|
#define BNX2X_NVRAM_1MB_SIZE 0x20000 /* 1M bit in bytes */
|
|
|
|
#define BNX2X_NVRAM_TIMEOUT_COUNT 30000
|
|
|
|
#define BNX2X_NVRAM_PAGE_SIZE 256
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 shmem_base;
|
2009-08-12 16:22:08 +08:00
|
|
|
u32 shmem2_base;
|
2010-10-06 11:23:26 +08:00
|
|
|
u32 mf_cfg_base;
|
2010-10-06 11:28:26 +08:00
|
|
|
u32 mf2_cfg_base;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
u32 hw_config;
|
2008-06-24 11:27:52 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 bc_ver;
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
u8 int_block;
|
|
|
|
#define INT_BLOCK_HC 0
|
2010-10-06 11:28:26 +08:00
|
|
|
#define INT_BLOCK_IGU 1
|
|
|
|
#define INT_BLOCK_MODE_NORMAL 0
|
|
|
|
#define INT_BLOCK_MODE_BW_COMP 2
|
|
|
|
#define CHIP_INT_MODE_IS_NBC(bp) \
|
2011-06-14 19:33:44 +08:00
|
|
|
(!CHIP_IS_E1x(bp) && \
|
2010-10-06 11:28:26 +08:00
|
|
|
!((bp)->common.int_block & INT_BLOCK_MODE_BW_COMP))
|
|
|
|
#define CHIP_INT_MODE_IS_BC(bp) (!CHIP_INT_MODE_IS_NBC(bp))
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
u8 chip_port_mode;
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_4_PORT_MODE 0x0
|
|
|
|
#define CHIP_2_PORT_MODE 0x1
|
2010-10-06 11:23:26 +08:00
|
|
|
#define CHIP_PORT_MODE_NONE 0x2
|
2010-10-06 11:28:26 +08:00
|
|
|
#define CHIP_MODE(bp) (bp->common.chip_port_mode)
|
|
|
|
#define CHIP_MODE_IS_4_PORT(bp) (CHIP_MODE(bp) == CHIP_4_PORT_MODE)
|
2011-12-06 06:41:50 +08:00
|
|
|
|
|
|
|
u32 boot_mode;
|
2008-06-24 11:33:01 +08:00
|
|
|
};
|
2008-06-24 11:27:52 +08:00
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
/* IGU MSIX STATISTICS on 57712: 64 for VFs; 4 for PFs; 4 for Attentions */
|
|
|
|
#define BNX2X_IGU_STAS_MSG_VF_CNT 64
|
|
|
|
#define BNX2X_IGU_STAS_MSG_PF_CNT 4
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2012-12-02 12:05:54 +08:00
|
|
|
#define MAX_IGU_ATTN_ACK_TO 100
|
2008-06-24 11:33:01 +08:00
|
|
|
/* end of common */
|
|
|
|
|
|
|
|
/* port */
|
|
|
|
|
|
|
|
struct bnx2x_port {
|
|
|
|
u32 pmf;
|
2008-06-24 11:27:52 +08:00
|
|
|
|
2010-09-07 19:41:20 +08:00
|
|
|
u32 link_config[LINK_CONFIG_SIZE];
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2010-09-07 19:41:20 +08:00
|
|
|
u32 supported[LINK_CONFIG_SIZE];
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2010-09-07 19:41:20 +08:00
|
|
|
u32 advertising[LINK_CONFIG_SIZE];
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 phy_addr;
|
2008-06-24 11:27:52 +08:00
|
|
|
|
|
|
|
/* used to synchronize phy accesses */
|
|
|
|
struct mutex phy_mutex;
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 port_stx;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct nig_stats old_nig_stats;
|
|
|
|
};
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* end of port */
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define STATS_OFFSET32(stat_name) \
|
|
|
|
(offsetof(struct bnx2x_eth_stats, stat_name) / 4)
|
2008-06-24 11:33:36 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* slow path */
|
|
|
|
#define BNX2X_MAX_NUM_OF_VFS 64
|
2013-09-04 19:09:21 +08:00
|
|
|
#define BNX2X_VF_CID_WND 4 /* log num of queues per VF. HW config. */
|
2013-01-01 13:22:23 +08:00
|
|
|
#define BNX2X_CIDS_PER_VF (1 << BNX2X_VF_CID_WND)
|
2013-09-04 19:09:21 +08:00
|
|
|
|
|
|
|
/* We need to reserve doorbell addresses for all VF and queue combinations */
|
2013-01-01 13:22:23 +08:00
|
|
|
#define BNX2X_VF_CIDS (BNX2X_MAX_NUM_OF_VFS * BNX2X_CIDS_PER_VF)
|
2013-09-04 19:09:21 +08:00
|
|
|
|
|
|
|
/* The doorbell is configured to have the same number of CIDs for PFs and for
|
|
|
|
* VFs. For this reason the PF CID zone is as large as the VF zone.
|
|
|
|
*/
|
|
|
|
#define BNX2X_FIRST_VF_CID BNX2X_VF_CIDS
|
|
|
|
#define BNX2X_MAX_NUM_VF_QUEUES 64
|
2010-10-06 11:23:26 +08:00
|
|
|
#define BNX2X_VF_ID_INVALID 0xFF
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2013-09-04 19:09:21 +08:00
|
|
|
/* the number of VF CIDS multiplied by the amount of bytes reserved for each
|
|
|
|
* cid must not exceed the size of the VF doorbell
|
|
|
|
*/
|
|
|
|
#define BNX2X_VF_BAR_SIZE 512
|
|
|
|
#if (BNX2X_VF_BAR_SIZE < BNX2X_CIDS_PER_VF * (1 << BNX2X_DB_SHIFT))
|
|
|
|
#error "VF doorbell bar size is 512"
|
|
|
|
#endif
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/*
|
|
|
|
* The total number of L2 queues, MSIX vectors and HW contexts (CIDs) is
|
|
|
|
* control by the number of fast-path status blocks supported by the
|
|
|
|
* device (HW/FW). Each fast-path status block (FP-SB) aka non-default
|
|
|
|
* status block represents an independent interrupts context that can
|
|
|
|
* serve a regular L2 networking queue. However special L2 queues such
|
|
|
|
* as the FCoE queue do not require a FP-SB and other components like
|
|
|
|
* the CNIC may consume FP-SB reducing the number of possible L2 queues
|
|
|
|
*
|
|
|
|
* If the maximum number of FP-SB available is X then:
|
|
|
|
* a. If CNIC is supported it consumes 1 FP-SB thus the max number of
|
|
|
|
* regular L2 queues is Y=X-1
|
2013-06-02 08:06:18 +08:00
|
|
|
* b. In MF mode the actual number of L2 queues is Y= (X-1/MF_factor)
|
2010-10-06 11:23:26 +08:00
|
|
|
* c. If the FCoE L2 queue is supported the actual number of L2 queues
|
|
|
|
* is Y+1
|
|
|
|
* d. The number of irqs (MSIX vectors) is either Y+1 (one extra for
|
|
|
|
* slow-path interrupts) or Y+2 if CNIC is supported (one additional
|
|
|
|
* FP interrupt context for the CNIC).
|
|
|
|
* e. The number of HW context (CID count) is always X or X+1 if FCoE
|
2013-06-02 08:06:18 +08:00
|
|
|
* L2 queue is supported. The cid for the FCoE L2 queue is always X.
|
2010-10-06 11:23:26 +08:00
|
|
|
*/
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* fast-path interrupt contexts E1x */
|
|
|
|
#define FP_SB_MAX_E1x 16
|
|
|
|
/* fast-path interrupt contexts E2 */
|
|
|
|
#define FP_SB_MAX_E2 HC_SB_MAX_SB_E2
|
2010-10-06 11:23:26 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
union cdu_context {
|
|
|
|
struct eth_context eth;
|
|
|
|
char pad[1024];
|
|
|
|
};
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/* CDU host DB constants */
|
2012-06-19 15:48:25 +08:00
|
|
|
#define CDU_ILT_PAGE_SZ_HW 2
|
|
|
|
#define CDU_ILT_PAGE_SZ (8192 << CDU_ILT_PAGE_SZ_HW) /* 32K */
|
2010-10-06 11:23:26 +08:00
|
|
|
#define ILT_PAGE_CIDS (CDU_ILT_PAGE_SZ / sizeof(union cdu_context))
|
|
|
|
|
|
|
|
#define CNIC_ISCSI_CID_MAX 256
|
2010-12-13 13:44:01 +08:00
|
|
|
#define CNIC_FCOE_CID_MAX 2048
|
|
|
|
#define CNIC_CID_MAX (CNIC_ISCSI_CID_MAX + CNIC_FCOE_CID_MAX)
|
2010-10-06 11:23:26 +08:00
|
|
|
#define CNIC_ILT_LINES DIV_ROUND_UP(CNIC_CID_MAX, ILT_PAGE_CIDS)
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define QM_ILT_PAGE_SZ_HW 0
|
|
|
|
#define QM_ILT_PAGE_SZ (4096 << QM_ILT_PAGE_SZ_HW) /* 4K */
|
2010-10-06 11:23:26 +08:00
|
|
|
#define QM_CID_ROUND 1024
|
|
|
|
|
|
|
|
/* TM (timers) host DB constants */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define TM_ILT_PAGE_SZ_HW 0
|
|
|
|
#define TM_ILT_PAGE_SZ (4096 << TM_ILT_PAGE_SZ_HW) /* 4K */
|
2013-10-20 22:51:30 +08:00
|
|
|
#define TM_CONN_NUM (BNX2X_FIRST_VF_CID + \
|
|
|
|
BNX2X_VF_CIDS + \
|
|
|
|
CNIC_ISCSI_CID_MAX)
|
2010-10-06 11:23:26 +08:00
|
|
|
#define TM_ILT_SZ (8 * TM_CONN_NUM)
|
|
|
|
#define TM_ILT_LINES DIV_ROUND_UP(TM_ILT_SZ, TM_ILT_PAGE_SZ)
|
|
|
|
|
|
|
|
/* SRC (Searcher) host DB constants */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define SRC_ILT_PAGE_SZ_HW 0
|
|
|
|
#define SRC_ILT_PAGE_SZ (4096 << SRC_ILT_PAGE_SZ_HW) /* 4K */
|
2010-10-06 11:23:26 +08:00
|
|
|
#define SRC_HASH_BITS 10
|
|
|
|
#define SRC_CONN_NUM (1 << SRC_HASH_BITS) /* 1024 */
|
|
|
|
#define SRC_ILT_SZ (sizeof(struct src_ent) * SRC_CONN_NUM)
|
|
|
|
#define SRC_T2_SZ SRC_ILT_SZ
|
|
|
|
#define SRC_ILT_LINES DIV_ROUND_UP(SRC_ILT_SZ, SRC_ILT_PAGE_SZ)
|
2011-06-14 19:33:44 +08:00
|
|
|
|
|
|
|
#define MAX_DMAE_C 8
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
/* DMA memory not used in fastpath */
|
|
|
|
struct bnx2x_slowpath {
|
2011-06-14 19:33:44 +08:00
|
|
|
union {
|
|
|
|
struct mac_configuration_cmd e1x;
|
|
|
|
struct eth_classify_rules_ramrod_data e2;
|
|
|
|
} mac_rdata;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct tstorm_eth_mac_filter_config e1x;
|
|
|
|
struct eth_filter_rules_ramrod_data e2;
|
|
|
|
} rx_mode_rdata;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct mac_configuration_cmd e1;
|
|
|
|
struct eth_multicast_rules_ramrod_data e2;
|
|
|
|
} mcast_rdata;
|
|
|
|
|
|
|
|
struct eth_rss_update_ramrod_data rss_rdata;
|
|
|
|
|
|
|
|
/* Queue State related ramrods are always sent under rtnl_lock */
|
|
|
|
union {
|
|
|
|
struct client_init_ramrod_data init_data;
|
|
|
|
struct client_update_ramrod_data update_data;
|
2014-02-13 00:19:53 +08:00
|
|
|
struct tpa_update_ramrod_data tpa_data;
|
2011-06-14 19:33:44 +08:00
|
|
|
} q_rdata;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct function_start_data func_start;
|
2011-07-19 09:42:04 +08:00
|
|
|
/* pfc configuration for DCBX ramrod */
|
|
|
|
struct flow_control_configuration pfc_config;
|
2011-06-14 19:33:44 +08:00
|
|
|
} func_rdata;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2012-04-23 11:04:46 +08:00
|
|
|
/* afex ramrod can not be a part of func_rdata union because these
|
|
|
|
* events might arrive in parallel to other events from func_rdata.
|
|
|
|
* Therefore, if they would have been defined in the same union,
|
|
|
|
* data can get corrupted.
|
|
|
|
*/
|
2014-01-06 00:33:53 +08:00
|
|
|
union {
|
|
|
|
struct afex_vif_list_ramrod_data viflist_data;
|
|
|
|
struct function_update_data func_update;
|
|
|
|
} func_afex_rdata;
|
2012-04-23 11:04:46 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* used by dmae command executer */
|
|
|
|
struct dmae_command dmae[MAX_DMAE_C];
|
|
|
|
|
2008-06-24 11:33:36 +08:00
|
|
|
u32 stats_comp;
|
|
|
|
union mac_stats mac_stats;
|
|
|
|
struct nig_stats nig_stats;
|
|
|
|
struct host_port_stats port_stats;
|
|
|
|
struct host_func_stats func_stats;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
u32 wb_comp;
|
|
|
|
u32 wb_data[4];
|
2011-12-06 06:41:50 +08:00
|
|
|
|
|
|
|
union drv_info_to_mcp drv_info_to_mcp;
|
2008-06-24 11:33:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define bnx2x_sp(bp, var) (&bp->slowpath->var)
|
|
|
|
#define bnx2x_sp_mapping(bp, var) \
|
|
|
|
(bp->slowpath_mapping + offsetof(struct bnx2x_slowpath, var))
|
|
|
|
|
|
|
|
/* attn group wiring */
|
|
|
|
#define MAX_DYNAMIC_ATTN_GRPS 8
|
|
|
|
|
|
|
|
struct attn_route {
|
2011-06-14 19:33:44 +08:00
|
|
|
u32 sig[5];
|
2008-06-24 11:33:01 +08:00
|
|
|
};
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
struct iro {
|
|
|
|
u32 base;
|
|
|
|
u16 m1;
|
|
|
|
u16 m2;
|
|
|
|
u16 m3;
|
|
|
|
u16 size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hw_context {
|
|
|
|
union cdu_context *vcxt;
|
|
|
|
dma_addr_t cxt_mapping;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* forward */
|
|
|
|
struct bnx2x_ilt;
|
|
|
|
|
2013-01-01 13:22:31 +08:00
|
|
|
struct bnx2x_vfdb;
|
2011-06-14 09:33:51 +08:00
|
|
|
|
|
|
|
enum bnx2x_recovery_state {
|
2010-04-19 09:13:12 +08:00
|
|
|
BNX2X_RECOVERY_DONE,
|
|
|
|
BNX2X_RECOVERY_INIT,
|
|
|
|
BNX2X_RECOVERY_WAIT,
|
2012-01-26 14:01:52 +08:00
|
|
|
BNX2X_RECOVERY_FAILED,
|
|
|
|
BNX2X_RECOVERY_NIC_LOADING
|
2011-06-14 09:33:51 +08:00
|
|
|
};
|
2010-04-19 09:13:12 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/*
|
2010-10-06 11:23:26 +08:00
|
|
|
* Event queue (EQ or event ring) MC hsi
|
|
|
|
* NUM_EQ_PAGES and EQ_DESC_CNT_PAGE must be power of 2
|
|
|
|
*/
|
|
|
|
#define NUM_EQ_PAGES 1
|
|
|
|
#define EQ_DESC_CNT_PAGE (BCM_PAGE_SIZE / sizeof(union event_ring_elem))
|
|
|
|
#define EQ_DESC_MAX_PAGE (EQ_DESC_CNT_PAGE - 1)
|
|
|
|
#define NUM_EQ_DESC (EQ_DESC_CNT_PAGE * NUM_EQ_PAGES)
|
|
|
|
#define EQ_DESC_MASK (NUM_EQ_DESC - 1)
|
|
|
|
#define MAX_EQ_AVAIL (EQ_DESC_MAX_PAGE * NUM_EQ_PAGES - 2)
|
|
|
|
|
|
|
|
/* depends on EQ_DESC_CNT_PAGE being a power of 2 */
|
|
|
|
#define NEXT_EQ_IDX(x) ((((x) & EQ_DESC_MAX_PAGE) == \
|
|
|
|
(EQ_DESC_MAX_PAGE - 1)) ? (x) + 2 : (x) + 1)
|
|
|
|
|
|
|
|
/* depends on the above and on NUM_EQ_PAGES being a power of 2 */
|
|
|
|
#define EQ_DESC(x) ((x) & EQ_DESC_MASK)
|
|
|
|
|
|
|
|
#define BNX2X_EQ_INDEX \
|
|
|
|
(&bp->def_status_blk->sp_sb.\
|
|
|
|
index_values[HC_SP_INDEX_EQ_CONS])
|
|
|
|
|
2011-05-05 07:48:23 +08:00
|
|
|
/* This is a data that will be used to create a link report message.
|
|
|
|
* We will keep the data used for the last link report in order
|
|
|
|
* to prevent reporting the same link parameters twice.
|
|
|
|
*/
|
|
|
|
struct bnx2x_link_report_data {
|
|
|
|
u16 line_speed; /* Effective line speed */
|
|
|
|
unsigned long link_report_flags;/* BNX2X_LINK_REPORT_XXX flags */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
BNX2X_LINK_REPORT_FD, /* Full DUPLEX */
|
|
|
|
BNX2X_LINK_REPORT_LINK_DOWN,
|
|
|
|
BNX2X_LINK_REPORT_RX_FC_ON,
|
|
|
|
BNX2X_LINK_REPORT_TX_FC_ON,
|
|
|
|
};
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
enum {
|
|
|
|
BNX2X_PORT_QUERY_IDX,
|
|
|
|
BNX2X_PF_QUERY_IDX,
|
2011-12-06 05:52:23 +08:00
|
|
|
BNX2X_FCOE_QUERY_IDX,
|
2011-06-14 19:33:44 +08:00
|
|
|
BNX2X_FIRST_QUEUE_QUERY_IDX,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bnx2x_fw_stats_req {
|
|
|
|
struct stats_query_header hdr;
|
2011-12-06 05:52:23 +08:00
|
|
|
struct stats_query_entry query[FP_SB_MAX_E1x+
|
|
|
|
BNX2X_FIRST_QUEUE_QUERY_IDX];
|
2011-06-14 19:33:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bnx2x_fw_stats_data {
|
2013-01-23 11:21:43 +08:00
|
|
|
struct stats_counter storm_counters;
|
|
|
|
struct per_port_stats port;
|
|
|
|
struct per_pf_stats pf;
|
2011-12-06 05:52:23 +08:00
|
|
|
struct fcoe_statistics_params fcoe;
|
2013-01-23 11:21:43 +08:00
|
|
|
struct per_queue_stats queue_stats[1];
|
2011-06-14 19:33:44 +08:00
|
|
|
};
|
|
|
|
|
2011-07-14 16:31:19 +08:00
|
|
|
/* Public slow path states */
|
2014-02-13 00:19:56 +08:00
|
|
|
enum sp_rtnl_flag {
|
2011-07-14 16:31:57 +08:00
|
|
|
BNX2X_SP_RTNL_SETUP_TC,
|
2011-07-14 16:31:19 +08:00
|
|
|
BNX2X_SP_RTNL_TX_TIMEOUT,
|
2011-11-13 12:34:29 +08:00
|
|
|
BNX2X_SP_RTNL_FAN_FAILURE,
|
2013-01-01 13:22:44 +08:00
|
|
|
BNX2X_SP_RTNL_AFEX_F_UPDATE,
|
|
|
|
BNX2X_SP_RTNL_ENABLE_SRIOV,
|
2013-01-01 13:22:29 +08:00
|
|
|
BNX2X_SP_RTNL_VFPF_MCAST,
|
2013-06-20 22:39:08 +08:00
|
|
|
BNX2X_SP_RTNL_VFPF_CHANNEL_DOWN,
|
bnx2x: Revising locking scheme for MAC configuration
On very rare occasions, repeated load/unload stress test in the presence of
our storage driver (bnx2i/bnx2fc) causes a kernel panic in bnx2x code
(NULL pointer dereference). Stack traces indicate the issue happens during MAC
configuration; thorough code review showed that indeed several races exist
in which one thread can iterate over the list of configured MACs while another
deletes entries from the same list.
This patch adds a varient on the single-writer/Multiple-reader lock mechanism -
It utilizes an already exsiting bottom-half lock, using it so that Whenever
a writer is unable to continue due to the existence of another writer/reader,
it pends its request for future deliverance.
The writer / last readers will check for the existence of such requests and
perform them instead of the original initiator.
This prevents the writer from having to sleep while waiting for the lock
to be accessible, which might cause deadlocks given the locks already
held by the writer.
Another result of this patch is that setting of Rx Mode is now made in
sleepable context - Setting of Rx Mode is made under a bottom-half lock, which
was always nontrivial for the bnx2x driver, as the HW/FW configuration requires
wait for completions.
Since sleep was impossible (due to the sleepless-context), various mechanisms
were utilized to prevent the calling thread from sleep, but the truth was that
when the caller thread (i.e, the one calling ndo_set_rx_mode()) returned, the
Rx mode was still not set in HW/FW.
bnx2x_set_rx_mode() will now overtly schedule for the Rx changes to be
configured by the sp_rtnl_task which hold the RTNL lock and is sleepable
context.
Signed-off-by: Yuval Mintz <yuvalmin@broadcom.com>
Signed-off-by: Ariel Elior <ariele@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-08-01 22:30:59 +08:00
|
|
|
BNX2X_SP_RTNL_RX_MODE,
|
2013-03-11 13:17:45 +08:00
|
|
|
BNX2X_SP_RTNL_HYPERVISOR_VLAN,
|
2013-08-19 14:11:57 +08:00
|
|
|
BNX2X_SP_RTNL_TX_STOP,
|
2014-03-24 00:12:23 +08:00
|
|
|
BNX2X_SP_RTNL_GET_DRV_VERSION,
|
2011-07-14 16:31:19 +08:00
|
|
|
};
|
|
|
|
|
2014-03-24 00:12:24 +08:00
|
|
|
enum bnx2x_iov_flag {
|
|
|
|
BNX2X_IOV_HANDLE_VF_MSG,
|
|
|
|
BNX2X_IOV_HANDLE_FLR,
|
|
|
|
};
|
|
|
|
|
2012-03-27 04:47:07 +08:00
|
|
|
struct bnx2x_prev_path_list {
|
2013-03-20 13:21:28 +08:00
|
|
|
struct list_head list;
|
2012-03-27 04:47:07 +08:00
|
|
|
u8 bus;
|
|
|
|
u8 slot;
|
|
|
|
u8 path;
|
2013-03-20 13:21:28 +08:00
|
|
|
u8 aer;
|
2012-12-06 07:04:03 +08:00
|
|
|
u8 undi;
|
2012-03-27 04:47:07 +08:00
|
|
|
};
|
|
|
|
|
2012-06-19 15:48:28 +08:00
|
|
|
struct bnx2x_sp_objs {
|
|
|
|
/* MACs object */
|
|
|
|
struct bnx2x_vlan_mac_obj mac_obj;
|
|
|
|
|
|
|
|
/* Queue State object */
|
|
|
|
struct bnx2x_queue_sp_obj q_obj;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bnx2x_fp_stats {
|
|
|
|
struct tstorm_per_queue_stats old_tclient;
|
|
|
|
struct ustorm_per_queue_stats old_uclient;
|
|
|
|
struct xstorm_per_queue_stats old_xclient;
|
|
|
|
struct bnx2x_eth_q_stats eth_q_stats;
|
|
|
|
struct bnx2x_eth_q_stats_old eth_q_stats_old;
|
|
|
|
};
|
|
|
|
|
2014-09-17 21:24:37 +08:00
|
|
|
enum {
|
|
|
|
SUB_MF_MODE_UNKNOWN = 0,
|
|
|
|
SUB_MF_MODE_UFP,
|
2014-09-17 21:24:38 +08:00
|
|
|
SUB_MF_MODE_NPAR1_DOT_5,
|
2015-07-22 14:16:25 +08:00
|
|
|
SUB_MF_MODE_BD,
|
2014-09-17 21:24:37 +08:00
|
|
|
};
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct bnx2x {
|
|
|
|
/* Fields used in the tx and intr/napi performance paths
|
|
|
|
* are grouped together in the beginning of the structure
|
|
|
|
*/
|
2010-10-06 11:23:26 +08:00
|
|
|
struct bnx2x_fastpath *fp;
|
2012-06-19 15:48:28 +08:00
|
|
|
struct bnx2x_sp_objs *sp_objs;
|
|
|
|
struct bnx2x_fp_stats *fp_stats;
|
2012-06-19 15:48:26 +08:00
|
|
|
struct bnx2x_fp_txdata *bnx2x_txq;
|
2008-06-24 11:33:01 +08:00
|
|
|
void __iomem *regview;
|
|
|
|
void __iomem *doorbells;
|
2010-10-06 11:23:26 +08:00
|
|
|
u16 db_size;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
u8 pf_num; /* absolute PF number */
|
|
|
|
u8 pfid; /* per-path PF number */
|
|
|
|
int base_fw_ndsb; /**/
|
|
|
|
#define BP_PATH(bp) (CHIP_IS_E1x(bp) ? 0 : (bp->pf_num & 1))
|
|
|
|
#define BP_PORT(bp) (bp->pfid & 1)
|
|
|
|
#define BP_FUNC(bp) (bp->pfid)
|
|
|
|
#define BP_ABS_FUNC(bp) (bp->pf_num)
|
2011-08-30 08:08:42 +08:00
|
|
|
#define BP_VN(bp) ((bp)->pfid >> 1)
|
|
|
|
#define BP_MAX_VN_NUM(bp) (CHIP_MODE_IS_4_PORT(bp) ? 2 : 4)
|
|
|
|
#define BP_L_ID(bp) (BP_VN(bp) << 2)
|
|
|
|
#define BP_FW_MB_IDX_VN(bp, vn) (BP_PORT(bp) +\
|
|
|
|
(vn) * ((CHIP_IS_E1x(bp) || (CHIP_MODE_IS_4_PORT(bp))) ? 2 : 1))
|
|
|
|
#define BP_FW_MB_IDX(bp) BP_FW_MB_IDX_VN(bp, BP_VN(bp))
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2013-01-07 08:50:23 +08:00
|
|
|
#ifdef CONFIG_BNX2X_SRIOV
|
2013-03-27 09:05:17 +08:00
|
|
|
/* protects vf2pf mailbox from simultaneous access */
|
|
|
|
struct mutex vf2pf_mutex;
|
2013-01-01 13:22:23 +08:00
|
|
|
/* vf pf channel mailbox contains request and response buffers */
|
|
|
|
struct bnx2x_vf_mbx_msg *vf2pf_mbox;
|
|
|
|
dma_addr_t vf2pf_mbox_mapping;
|
|
|
|
|
2013-01-01 13:22:24 +08:00
|
|
|
/* we set aside a copy of the acquire response */
|
|
|
|
struct pfvf_acquire_resp_tlv acquire_resp;
|
|
|
|
|
2013-01-01 13:22:43 +08:00
|
|
|
/* bulletin board for messages from pf to vf */
|
|
|
|
union pf_vf_bulletin *pf2vf_bulletin;
|
|
|
|
dma_addr_t pf2vf_bulletin_mapping;
|
|
|
|
|
2014-06-26 19:31:04 +08:00
|
|
|
union pf_vf_bulletin shadow_bulletin;
|
2013-01-01 13:22:43 +08:00
|
|
|
struct pf_vf_bulletin_content old_bulletin;
|
2013-03-11 13:17:46 +08:00
|
|
|
|
|
|
|
u16 requested_nr_virtfn;
|
2013-01-07 08:50:23 +08:00
|
|
|
#endif /* CONFIG_BNX2X_SRIOV */
|
2013-01-01 13:22:43 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct net_device *dev;
|
|
|
|
struct pci_dev *pdev;
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
const struct iro *iro_arr;
|
2010-10-06 11:23:26 +08:00
|
|
|
#define IRO (bp->iro_arr)
|
|
|
|
|
2011-06-14 09:33:51 +08:00
|
|
|
enum bnx2x_recovery_state recovery_state;
|
2010-04-19 09:13:12 +08:00
|
|
|
int is_leader;
|
2010-10-06 11:23:26 +08:00
|
|
|
struct msix_entry *msix_table;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
int tx_ring_size;
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/* L2 header size + 2*VLANs (8 bytes) + LLC SNAP (8 bytes) */
|
|
|
|
#define ETH_OVREHEAD (ETH_HLEN + 8 + 8)
|
2008-06-24 11:33:01 +08:00
|
|
|
#define ETH_MIN_PACKET_SIZE 60
|
|
|
|
#define ETH_MAX_PACKET_SIZE 1500
|
|
|
|
#define ETH_MAX_JUMBO_PACKET_SIZE 9600
|
2012-02-20 17:59:08 +08:00
|
|
|
/* TCP with Timestamp Option (32) + IPv6 (40) */
|
|
|
|
#define ETH_MAX_TPA_HEADER_SIZE 72
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2014-06-26 19:31:05 +08:00
|
|
|
/* Max supported alignment is 256 (8 shift)
|
|
|
|
* minimal alignment shift 6 is optimal for 57xxx HW performance
|
|
|
|
*/
|
|
|
|
#define BNX2X_RX_ALIGN_SHIFT max(6, min(8, L1_CACHE_SHIFT))
|
2011-11-14 14:05:34 +08:00
|
|
|
|
|
|
|
/* FW uses 2 Cache lines Alignment for start packet and size
|
|
|
|
*
|
|
|
|
* We assume skb_build() uses sizeof(struct skb_shared_info) bytes
|
|
|
|
* at the end of skb->data, to avoid wasting a full cache line.
|
|
|
|
* This reduces memory use (skb->truesize).
|
|
|
|
*/
|
|
|
|
#define BNX2X_FW_RX_ALIGN_START (1UL << BNX2X_RX_ALIGN_SHIFT)
|
|
|
|
|
|
|
|
#define BNX2X_FW_RX_ALIGN_END \
|
2012-08-12 01:10:35 +08:00
|
|
|
max_t(u64, 1UL << BNX2X_RX_ALIGN_SHIFT, \
|
2011-11-14 14:05:34 +08:00
|
|
|
SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define BNX2X_PXP_DRAM_ALIGN (BNX2X_RX_ALIGN_SHIFT - 5)
|
2009-02-12 16:36:18 +08:00
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
struct host_sp_status_block *def_status_blk;
|
|
|
|
#define DEF_SB_IGU_ID 16
|
|
|
|
#define DEF_SB_ID HC_SP_SB_ID
|
|
|
|
__le16 def_idx;
|
2009-02-12 16:38:17 +08:00
|
|
|
__le16 def_att_idx;
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 attn_state;
|
|
|
|
struct attn_route attn_group[MAX_DYNAMIC_ATTN_GRPS];
|
|
|
|
|
|
|
|
/* slow path ring */
|
|
|
|
struct eth_spe *spq;
|
|
|
|
dma_addr_t spq_mapping;
|
|
|
|
u16 spq_prod_idx;
|
|
|
|
struct eth_spe *spq_prod_bd;
|
|
|
|
struct eth_spe *spq_last_bd;
|
2009-02-12 16:38:17 +08:00
|
|
|
__le16 *dsb_sp_prod;
|
2011-02-07 03:25:41 +08:00
|
|
|
atomic_t cq_spq_left; /* ETH_XXX ramrods credit */
|
2008-06-24 11:33:01 +08:00
|
|
|
/* used to synchronize spq accesses */
|
|
|
|
spinlock_t spq_lock;
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/* event queue */
|
|
|
|
union event_ring_elem *eq_ring;
|
|
|
|
dma_addr_t eq_mapping;
|
|
|
|
u16 eq_prod;
|
|
|
|
u16 eq_cons;
|
|
|
|
__le16 *eq_cons_sb;
|
2011-02-07 03:25:41 +08:00
|
|
|
atomic_t eq_spq_left; /* COMMON_XXX ramrods credit */
|
2010-10-06 11:23:26 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* Counter for marking that there is a STAT_QUERY ramrod pending */
|
|
|
|
u16 stats_pending;
|
|
|
|
/* Counter for completed statistics ramrods */
|
|
|
|
u16 stats_comp;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2008-08-14 06:59:08 +08:00
|
|
|
/* End of fields used in the performance code paths */
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
int panic;
|
2010-02-17 23:01:52 +08:00
|
|
|
int msg_enable;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
u32 flags;
|
2011-06-14 19:33:44 +08:00
|
|
|
#define PCIX_FLAG (1 << 0)
|
|
|
|
#define PCI_32BIT_FLAG (1 << 1)
|
|
|
|
#define ONE_PORT_FLAG (1 << 2)
|
|
|
|
#define NO_WOL_FLAG (1 << 3)
|
|
|
|
#define USING_MSIX_FLAG (1 << 5)
|
|
|
|
#define USING_MSI_FLAG (1 << 6)
|
|
|
|
#define DISABLE_MSI_FLAG (1 << 7)
|
|
|
|
#define NO_MCP_FLAG (1 << 9)
|
|
|
|
#define MF_FUNC_DIS (1 << 11)
|
|
|
|
#define OWN_CNIC_IRQ (1 << 12)
|
|
|
|
#define NO_ISCSI_OOO_FLAG (1 << 13)
|
|
|
|
#define NO_ISCSI_FLAG (1 << 14)
|
|
|
|
#define NO_FCOE_FLAG (1 << 15)
|
2011-12-06 05:52:22 +08:00
|
|
|
#define BC_SUPPORTS_PFC_STATS (1 << 17)
|
2014-01-12 20:37:59 +08:00
|
|
|
#define TX_SWITCHING (1 << 18)
|
2012-06-26 09:31:19 +08:00
|
|
|
#define BC_SUPPORTS_FCOE_FEATURES (1 << 19)
|
2012-04-04 02:41:26 +08:00
|
|
|
#define USING_SINGLE_MSIX_FLAG (1 << 20)
|
2012-06-19 15:48:31 +08:00
|
|
|
#define BC_SUPPORTS_DCBX_MSG_NON_PMF (1 << 21)
|
2013-01-01 13:22:23 +08:00
|
|
|
#define IS_VF_FLAG (1 << 22)
|
2014-08-17 21:47:45 +08:00
|
|
|
#define BC_SUPPORTS_RMMOD_CMD (1 << 23)
|
|
|
|
#define HAS_PHYS_PORT_ID (1 << 24)
|
|
|
|
#define AER_ENABLED (1 << 25)
|
|
|
|
#define PTP_SUPPORTED (1 << 26)
|
|
|
|
#define TX_TIMESTAMPING_EN (1 << 27)
|
2013-01-01 13:22:23 +08:00
|
|
|
|
|
|
|
#define BP_NOMCP(bp) ((bp)->flags & NO_MCP_FLAG)
|
2013-01-07 08:50:23 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_BNX2X_SRIOV
|
2013-01-01 13:22:23 +08:00
|
|
|
#define IS_VF(bp) ((bp)->flags & IS_VF_FLAG)
|
|
|
|
#define IS_PF(bp) (!((bp)->flags & IS_VF_FLAG))
|
2013-01-07 08:50:23 +08:00
|
|
|
#else
|
|
|
|
#define IS_VF(bp) false
|
|
|
|
#define IS_PF(bp) true
|
|
|
|
#endif
|
2010-12-13 13:44:01 +08:00
|
|
|
|
2011-01-31 22:39:17 +08:00
|
|
|
#define NO_ISCSI(bp) ((bp)->flags & NO_ISCSI_FLAG)
|
|
|
|
#define NO_ISCSI_OOO(bp) ((bp)->flags & NO_ISCSI_OOO_FLAG)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define NO_FCOE(bp) ((bp)->flags & NO_FCOE_FLAG)
|
2009-10-10 21:46:55 +08:00
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
u8 cnic_support;
|
|
|
|
bool cnic_enabled;
|
|
|
|
bool cnic_loaded;
|
2012-12-06 18:33:12 +08:00
|
|
|
struct cnic_eth_dev *(*cnic_probe)(struct net_device *);
|
2012-11-07 08:45:48 +08:00
|
|
|
|
|
|
|
/* Flag that indicates that we can start looking for FCoE L2 queue
|
|
|
|
* completions in the default status block.
|
|
|
|
*/
|
|
|
|
bool fcoe_init;
|
|
|
|
|
2009-02-12 16:37:19 +08:00
|
|
|
int mrrs;
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2009-01-15 13:22:18 +08:00
|
|
|
struct delayed_work sp_task;
|
2014-03-24 00:12:24 +08:00
|
|
|
struct delayed_work iov_task;
|
|
|
|
|
2013-01-01 13:22:33 +08:00
|
|
|
atomic_t interrupt_occurred;
|
2011-07-14 16:31:19 +08:00
|
|
|
struct delayed_work sp_rtnl_task;
|
2011-06-14 09:34:33 +08:00
|
|
|
|
|
|
|
struct delayed_work period_task;
|
2008-06-24 11:33:01 +08:00
|
|
|
struct timer_list timer;
|
|
|
|
int current_interval;
|
|
|
|
|
|
|
|
u16 fw_seq;
|
|
|
|
u16 fw_drv_pulse_wr_seq;
|
|
|
|
u32 func_stx;
|
|
|
|
|
|
|
|
struct link_params link_params;
|
|
|
|
struct link_vars link_vars;
|
2011-05-05 07:48:23 +08:00
|
|
|
u32 link_cnt;
|
|
|
|
struct bnx2x_link_report_data last_reported_link;
|
|
|
|
|
2009-08-12 16:23:08 +08:00
|
|
|
struct mdio_if_info mdio;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct bnx2x_common common;
|
|
|
|
struct bnx2x_port port;
|
|
|
|
|
2012-04-04 02:41:29 +08:00
|
|
|
struct cmng_init cmng;
|
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
u32 mf_config[E1HVN_MAX];
|
2012-04-23 11:04:46 +08:00
|
|
|
u32 mf_ext_config;
|
2011-06-14 19:33:44 +08:00
|
|
|
u32 path_has_ovlan; /* E3 */
|
2010-10-06 11:26:40 +08:00
|
|
|
u16 mf_ov;
|
|
|
|
u8 mf_mode;
|
2010-10-06 11:34:21 +08:00
|
|
|
#define IS_MF(bp) (bp->mf_mode != 0)
|
2010-12-02 04:39:28 +08:00
|
|
|
#define IS_MF_SI(bp) (bp->mf_mode == MULTI_FUNCTION_SI)
|
|
|
|
#define IS_MF_SD(bp) (bp->mf_mode == MULTI_FUNCTION_SD)
|
2012-04-23 11:04:46 +08:00
|
|
|
#define IS_MF_AFEX(bp) (bp->mf_mode == MULTI_FUNCTION_AFEX)
|
2014-09-17 21:24:37 +08:00
|
|
|
u8 mf_sub_mode;
|
|
|
|
#define IS_MF_UFP(bp) (IS_MF_SD(bp) && \
|
|
|
|
bp->mf_sub_mode == SUB_MF_MODE_UFP)
|
2015-07-22 14:16:25 +08:00
|
|
|
#define IS_MF_BD(bp) (IS_MF_SD(bp) && \
|
|
|
|
bp->mf_sub_mode == SUB_MF_MODE_BD)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-02-29 03:51:50 +08:00
|
|
|
u8 wol;
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
int rx_ring_size;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u16 tx_quick_cons_trip_int;
|
|
|
|
u16 tx_quick_cons_trip;
|
|
|
|
u16 tx_ticks_int;
|
|
|
|
u16 tx_ticks;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u16 rx_quick_cons_trip_int;
|
|
|
|
u16 rx_quick_cons_trip;
|
|
|
|
u16 rx_ticks_int;
|
|
|
|
u16 rx_ticks;
|
2010-04-19 09:13:57 +08:00
|
|
|
/* Maximal coalescing timeout in us */
|
2013-10-20 22:51:29 +08:00
|
|
|
#define BNX2X_MAX_COALESCE_TOUT (0xff*BNX2X_BTR)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 lin_cnt;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
u16 state;
|
2009-02-12 16:38:32 +08:00
|
|
|
#define BNX2X_STATE_CLOSED 0
|
2008-06-24 11:33:01 +08:00
|
|
|
#define BNX2X_STATE_OPENING_WAIT4_LOAD 0x1000
|
|
|
|
#define BNX2X_STATE_OPENING_WAIT4_PORT 0x2000
|
2007-11-16 02:09:02 +08:00
|
|
|
#define BNX2X_STATE_OPEN 0x3000
|
2008-06-24 11:33:01 +08:00
|
|
|
#define BNX2X_STATE_CLOSING_WAIT4_HALT 0x4000
|
2007-11-16 02:09:02 +08:00
|
|
|
#define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define BNX2X_STATE_DIAG 0xe000
|
|
|
|
#define BNX2X_STATE_ERROR 0xf000
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
#define BNX2X_MAX_PRIORITY 8
|
2009-11-16 14:05:58 +08:00
|
|
|
int num_queues;
|
2012-11-07 08:45:48 +08:00
|
|
|
uint num_ethernet_queues;
|
|
|
|
uint num_cnic_queues;
|
2010-07-27 20:32:19 +08:00
|
|
|
int disable_tpa;
|
2010-10-06 11:23:26 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
u32 rx_mode;
|
|
|
|
#define BNX2X_RX_MODE_NONE 0
|
|
|
|
#define BNX2X_RX_MODE_NORMAL 1
|
|
|
|
#define BNX2X_RX_MODE_ALLMULTI 2
|
|
|
|
#define BNX2X_RX_MODE_PROMISC 3
|
|
|
|
#define BNX2X_MAX_MULTICAST 64
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
u8 igu_dsb_id;
|
|
|
|
u8 igu_base_sb;
|
|
|
|
u8 igu_sb_cnt;
|
2012-11-07 08:45:48 +08:00
|
|
|
u8 min_msix_vec_cnt;
|
2012-06-19 15:48:26 +08:00
|
|
|
|
2013-01-01 13:22:23 +08:00
|
|
|
u32 igu_base_addr;
|
2008-06-24 11:33:01 +08:00
|
|
|
dma_addr_t def_status_blk_mapping;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
struct bnx2x_slowpath *slowpath;
|
|
|
|
dma_addr_t slowpath_mapping;
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2014-03-24 00:12:23 +08:00
|
|
|
/* Mechanism protecting the drv_info_to_mcp */
|
|
|
|
struct mutex drv_info_mutex;
|
|
|
|
bool drv_info_mng_owner;
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* Total number of FW statistics requests */
|
|
|
|
u8 fw_stats_num;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a memory buffer that will contain both statistics
|
|
|
|
* ramrod request and data.
|
|
|
|
*/
|
|
|
|
void *fw_stats;
|
|
|
|
dma_addr_t fw_stats_mapping;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FW statistics request shortcut (points at the
|
|
|
|
* beginning of fw_stats buffer).
|
|
|
|
*/
|
|
|
|
struct bnx2x_fw_stats_req *fw_stats_req;
|
|
|
|
dma_addr_t fw_stats_req_mapping;
|
|
|
|
int fw_stats_req_sz;
|
|
|
|
|
|
|
|
/*
|
2012-09-02 01:31:09 +08:00
|
|
|
* FW statistics data shortcut (points at the beginning of
|
2011-06-14 19:33:44 +08:00
|
|
|
* fw_stats buffer + fw_stats_req_sz).
|
|
|
|
*/
|
|
|
|
struct bnx2x_fw_stats_data *fw_stats_data;
|
|
|
|
dma_addr_t fw_stats_data_mapping;
|
|
|
|
int fw_stats_data_sz;
|
|
|
|
|
2013-09-04 19:09:21 +08:00
|
|
|
/* For max 1024 cids (VF RSS), 32KB ILT page size and 1KB
|
2012-06-19 15:48:25 +08:00
|
|
|
* context size we need 8 ILT entries.
|
|
|
|
*/
|
2013-09-04 19:09:21 +08:00
|
|
|
#define ILT_MAX_L2_LINES 32
|
2012-06-19 15:48:25 +08:00
|
|
|
struct hw_context context[ILT_MAX_L2_LINES];
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
struct bnx2x_ilt *ilt;
|
|
|
|
#define BP_ILT(bp) ((bp)->ilt)
|
2011-06-14 19:33:44 +08:00
|
|
|
#define ILT_MAX_LINES 256
|
2011-07-14 16:31:57 +08:00
|
|
|
/*
|
|
|
|
* Maximum supported number of RSS queues: number of IGU SBs minus one that goes
|
|
|
|
* to CNIC.
|
|
|
|
*/
|
2012-11-07 08:45:48 +08:00
|
|
|
#define BNX2X_MAX_RSS_COUNT(bp) ((bp)->igu_sb_cnt - CNIC_SUPPORT(bp))
|
2010-10-06 11:23:26 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
/*
|
|
|
|
* Maximum CID count that might be required by the bnx2x:
|
2012-06-19 15:48:27 +08:00
|
|
|
* Max RSS * Max_Tx_Multi_Cos + FCoE + iSCSI
|
2011-07-14 16:31:57 +08:00
|
|
|
*/
|
2013-09-18 16:50:38 +08:00
|
|
|
|
2012-06-19 15:48:27 +08:00
|
|
|
#define BNX2X_L2_CID_COUNT(bp) (BNX2X_NUM_ETH_QUEUES(bp) * BNX2X_MULTI_TX_COS \
|
2013-09-18 16:50:38 +08:00
|
|
|
+ CNIC_SUPPORT(bp) * (2 + UIO_CID_PAD(bp)))
|
2012-06-19 15:48:27 +08:00
|
|
|
#define BNX2X_L2_MAX_CID(bp) (BNX2X_MAX_RSS_COUNT(bp) * BNX2X_MULTI_TX_COS \
|
2013-09-18 16:50:38 +08:00
|
|
|
+ CNIC_SUPPORT(bp) * (2 + UIO_CID_PAD(bp)))
|
2011-07-14 16:31:57 +08:00
|
|
|
#define L2_ILT_LINES(bp) (DIV_ROUND_UP(BNX2X_L2_CID_COUNT(bp),\
|
|
|
|
ILT_PAGE_CIDS))
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
int qm_cid_count;
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2012-12-02 12:05:50 +08:00
|
|
|
bool dropless_fc;
|
2009-08-12 16:23:26 +08:00
|
|
|
|
2009-10-10 21:46:55 +08:00
|
|
|
void *t2;
|
|
|
|
dma_addr_t t2_mapping;
|
2011-01-27 03:28:23 +08:00
|
|
|
struct cnic_ops __rcu *cnic_ops;
|
2009-10-10 21:46:55 +08:00
|
|
|
void *cnic_data;
|
|
|
|
u32 cnic_tag;
|
|
|
|
struct cnic_eth_dev cnic_eth_dev;
|
2010-10-06 11:23:26 +08:00
|
|
|
union host_hc_status_block cnic_sb;
|
2009-10-10 21:46:55 +08:00
|
|
|
dma_addr_t cnic_sb_mapping;
|
|
|
|
struct eth_spe *cnic_kwq;
|
|
|
|
struct eth_spe *cnic_kwq_prod;
|
|
|
|
struct eth_spe *cnic_kwq_cons;
|
|
|
|
struct eth_spe *cnic_kwq_last;
|
|
|
|
u16 cnic_kwq_pending;
|
|
|
|
u16 cnic_spq_pending;
|
2010-12-13 13:44:01 +08:00
|
|
|
u8 fip_mac[ETH_ALEN];
|
2011-06-14 19:33:44 +08:00
|
|
|
struct mutex cnic_mutex;
|
|
|
|
struct bnx2x_vlan_mac_obj iscsi_l2_mac_obj;
|
|
|
|
|
2013-06-02 08:06:18 +08:00
|
|
|
/* Start index of the "special" (CNIC related) L2 clients */
|
2011-06-14 19:33:44 +08:00
|
|
|
u8 cnic_base_cl_id;
|
2009-10-10 21:46:55 +08:00
|
|
|
|
2008-06-24 11:29:02 +08:00
|
|
|
int dmae_ready;
|
|
|
|
/* used to synchronize dmae accesses */
|
2011-02-07 03:25:41 +08:00
|
|
|
spinlock_t dmae_lock;
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2009-10-15 15:18:27 +08:00
|
|
|
/* used to protect the FW mail box */
|
|
|
|
struct mutex fw_mb_mutex;
|
|
|
|
|
2008-06-24 11:33:36 +08:00
|
|
|
/* used to synchronize stats collecting */
|
|
|
|
int stats_state;
|
2010-07-21 13:59:01 +08:00
|
|
|
|
|
|
|
/* used for synchronization of concurrent threads statistics handling */
|
2015-06-01 20:08:18 +08:00
|
|
|
struct semaphore stats_lock;
|
2010-07-21 13:59:01 +08:00
|
|
|
|
2008-06-24 11:33:36 +08:00
|
|
|
/* used by dmae command loader */
|
|
|
|
struct dmae_command stats_dmae;
|
|
|
|
int executer_idx;
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2008-06-24 11:33:36 +08:00
|
|
|
u16 stats_counter;
|
|
|
|
struct bnx2x_eth_stats eth_stats;
|
2012-03-18 18:33:44 +08:00
|
|
|
struct host_func_stats func_stats;
|
2012-02-15 10:10:22 +08:00
|
|
|
struct bnx2x_eth_stats_old eth_stats_old;
|
|
|
|
struct bnx2x_net_stats_old net_stats_old;
|
|
|
|
struct bnx2x_fw_port_stats_old fw_stats_old;
|
|
|
|
bool stats_init;
|
2008-06-24 11:33:36 +08:00
|
|
|
|
|
|
|
struct z_stream_s *strm;
|
|
|
|
void *gunzip_buf;
|
|
|
|
dma_addr_t gunzip_mapping;
|
|
|
|
int gunzip_outlen;
|
2008-06-24 11:29:02 +08:00
|
|
|
#define FW_BUF_SIZE 0x8000
|
2009-08-12 16:24:14 +08:00
|
|
|
#define GUNZIP_BUF(bp) (bp->gunzip_buf)
|
|
|
|
#define GUNZIP_PHYS(bp) (bp->gunzip_mapping)
|
|
|
|
#define GUNZIP_OUTLEN(bp) (bp->gunzip_outlen)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2009-08-12 16:24:29 +08:00
|
|
|
struct raw_op *init_ops;
|
2009-04-27 18:27:43 +08:00
|
|
|
/* Init blocks offsets inside init_ops */
|
2009-08-12 16:24:29 +08:00
|
|
|
u16 *init_ops_offsets;
|
2009-04-27 18:27:43 +08:00
|
|
|
/* Data blob - has 32 bit granularity */
|
2009-08-12 16:24:29 +08:00
|
|
|
u32 *init_data;
|
2011-06-14 19:33:44 +08:00
|
|
|
u32 init_mode_flags;
|
|
|
|
#define INIT_MODE_FLAGS(bp) (bp->init_mode_flags)
|
2009-04-27 18:27:43 +08:00
|
|
|
/* Zipped PRAM blobs - raw data */
|
2009-08-12 16:24:29 +08:00
|
|
|
const u8 *tsem_int_table_data;
|
|
|
|
const u8 *tsem_pram_data;
|
|
|
|
const u8 *usem_int_table_data;
|
|
|
|
const u8 *usem_pram_data;
|
|
|
|
const u8 *xsem_int_table_data;
|
|
|
|
const u8 *xsem_pram_data;
|
|
|
|
const u8 *csem_int_table_data;
|
|
|
|
const u8 *csem_pram_data;
|
2009-08-12 16:24:14 +08:00
|
|
|
#define INIT_OPS(bp) (bp->init_ops)
|
|
|
|
#define INIT_OPS_OFFSETS(bp) (bp->init_ops_offsets)
|
|
|
|
#define INIT_DATA(bp) (bp->init_data)
|
|
|
|
#define INIT_TSEM_INT_TABLE_DATA(bp) (bp->tsem_int_table_data)
|
|
|
|
#define INIT_TSEM_PRAM_DATA(bp) (bp->tsem_pram_data)
|
|
|
|
#define INIT_USEM_INT_TABLE_DATA(bp) (bp->usem_int_table_data)
|
|
|
|
#define INIT_USEM_PRAM_DATA(bp) (bp->usem_pram_data)
|
|
|
|
#define INIT_XSEM_INT_TABLE_DATA(bp) (bp->xsem_int_table_data)
|
|
|
|
#define INIT_XSEM_PRAM_DATA(bp) (bp->xsem_pram_data)
|
|
|
|
#define INIT_CSEM_INT_TABLE_DATA(bp) (bp->csem_int_table_data)
|
|
|
|
#define INIT_CSEM_PRAM_DATA(bp) (bp->csem_pram_data)
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define PHY_FW_VER_LEN 20
|
2010-04-19 09:13:23 +08:00
|
|
|
char fw_ver[32];
|
2009-08-12 16:24:29 +08:00
|
|
|
const struct firmware *firmware;
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2013-01-01 13:22:31 +08:00
|
|
|
struct bnx2x_vfdb *vfdb;
|
|
|
|
#define IS_SRIOV(bp) ((bp)->vfdb)
|
|
|
|
|
2010-12-30 14:27:03 +08:00
|
|
|
/* DCB support on/off */
|
|
|
|
u16 dcb_state;
|
|
|
|
#define BNX2X_DCB_STATE_OFF 0
|
|
|
|
#define BNX2X_DCB_STATE_ON 1
|
|
|
|
|
|
|
|
/* DCBX engine mode */
|
|
|
|
int dcbx_enabled;
|
|
|
|
#define BNX2X_DCBX_ENABLED_OFF 0
|
|
|
|
#define BNX2X_DCBX_ENABLED_ON_NEG_OFF 1
|
|
|
|
#define BNX2X_DCBX_ENABLED_ON_NEG_ON 2
|
|
|
|
#define BNX2X_DCBX_ENABLED_INVALID (-1)
|
|
|
|
|
|
|
|
bool dcbx_mode_uset;
|
|
|
|
|
2010-12-13 13:44:18 +08:00
|
|
|
struct bnx2x_config_dcbx_params dcbx_config_params;
|
|
|
|
struct bnx2x_dcbx_port_params dcbx_port_params;
|
|
|
|
int dcb_version;
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* CAM credit pools */
|
2013-01-01 13:22:32 +08:00
|
|
|
|
|
|
|
/* used only in sriov */
|
|
|
|
struct bnx2x_credit_pool_obj vlans_pool;
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
struct bnx2x_credit_pool_obj macs_pool;
|
|
|
|
|
|
|
|
/* RX_MODE object */
|
|
|
|
struct bnx2x_rx_mode_obj rx_mode_obj;
|
|
|
|
|
|
|
|
/* MCAST object */
|
|
|
|
struct bnx2x_mcast_obj mcast_obj;
|
|
|
|
|
|
|
|
/* RSS configuration object */
|
|
|
|
struct bnx2x_rss_config_obj rss_conf_obj;
|
|
|
|
|
|
|
|
/* Function State controlling object */
|
|
|
|
struct bnx2x_func_sp_obj func_obj;
|
|
|
|
|
|
|
|
unsigned long sp_state;
|
|
|
|
|
2011-07-14 16:31:19 +08:00
|
|
|
/* operation indication for the sp_rtnl task */
|
|
|
|
unsigned long sp_rtnl_state;
|
2014-03-24 00:12:24 +08:00
|
|
|
|
|
|
|
/* Indication of the IOV tasks */
|
|
|
|
unsigned long iov_task_state;
|
2011-07-14 16:31:19 +08:00
|
|
|
|
2013-06-02 08:06:18 +08:00
|
|
|
/* DCBX Negotiation results */
|
2010-12-13 13:44:18 +08:00
|
|
|
struct dcbx_features dcbx_local_feat;
|
|
|
|
u32 dcbx_error;
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2011-05-18 10:55:31 +08:00
|
|
|
#ifdef BCM_DCBNL
|
|
|
|
struct dcbx_features dcbx_remote_feat;
|
|
|
|
u32 dcbx_remote_flags;
|
|
|
|
#endif
|
2012-04-23 11:04:46 +08:00
|
|
|
/* AFEX: store default vlan used */
|
|
|
|
int afex_def_vlan_tag;
|
|
|
|
enum mf_cfg_afex_vlan_mode afex_vlan_mode;
|
2011-03-06 18:50:44 +08:00
|
|
|
u32 pending_max;
|
2011-07-14 16:31:57 +08:00
|
|
|
|
|
|
|
/* multiple tx classes of service */
|
|
|
|
u8 max_cos;
|
|
|
|
|
|
|
|
/* priority to cos mapping */
|
|
|
|
u8 prio_to_cos[8];
|
2013-01-23 11:21:48 +08:00
|
|
|
|
|
|
|
int fp_array_size;
|
2013-01-14 13:11:46 +08:00
|
|
|
u32 dump_preset_idx;
|
2013-10-09 22:06:28 +08:00
|
|
|
|
|
|
|
u8 phys_port_id[ETH_ALEN];
|
2014-06-26 19:31:04 +08:00
|
|
|
|
2014-08-17 21:47:44 +08:00
|
|
|
/* PTP related context */
|
|
|
|
struct ptp_clock *ptp_clock;
|
|
|
|
struct ptp_clock_info ptp_clock_info;
|
|
|
|
struct work_struct ptp_task;
|
|
|
|
struct cyclecounter cyclecounter;
|
|
|
|
struct timecounter timecounter;
|
|
|
|
bool timecounter_init_done;
|
|
|
|
struct sk_buff *ptp_tx_skb;
|
|
|
|
unsigned long ptp_tx_start;
|
|
|
|
bool hwtstamp_ioctl_called;
|
|
|
|
u16 tx_type;
|
|
|
|
u16 rx_filter;
|
|
|
|
|
2014-06-26 19:31:04 +08:00
|
|
|
struct bnx2x_link_report_data vf_link_vars;
|
2007-11-16 02:09:02 +08:00
|
|
|
};
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/* Tx queues may be less or equal to Rx queues */
|
|
|
|
extern int num_queues;
|
2009-11-16 14:05:58 +08:00
|
|
|
#define BNX2X_NUM_QUEUES(bp) (bp->num_queues)
|
2012-11-07 08:45:48 +08:00
|
|
|
#define BNX2X_NUM_ETH_QUEUES(bp) ((bp)->num_ethernet_queues)
|
2012-06-19 15:48:26 +08:00
|
|
|
#define BNX2X_NUM_NON_CNIC_QUEUES(bp) (BNX2X_NUM_QUEUES(bp) - \
|
2012-11-07 08:45:48 +08:00
|
|
|
(bp)->num_cnic_queues)
|
2011-07-14 16:31:57 +08:00
|
|
|
#define BNX2X_NUM_RX_QUEUES(bp) BNX2X_NUM_QUEUES(bp)
|
2010-12-13 13:44:01 +08:00
|
|
|
|
2009-11-16 14:05:58 +08:00
|
|
|
#define is_multi(bp) (BNX2X_NUM_QUEUES(bp) > 1)
|
2008-08-14 06:58:49 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
#define BNX2X_MAX_QUEUES(bp) BNX2X_MAX_RSS_COUNT(bp)
|
|
|
|
/* #define is_eth_multi(bp) (BNX2X_NUM_ETH_QUEUES(bp) > 1) */
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
#define RSS_IPV4_CAP_MASK \
|
|
|
|
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY
|
|
|
|
|
|
|
|
#define RSS_IPV4_TCP_CAP_MASK \
|
|
|
|
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY
|
|
|
|
|
|
|
|
#define RSS_IPV6_CAP_MASK \
|
|
|
|
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_CAPABILITY
|
|
|
|
|
|
|
|
#define RSS_IPV6_TCP_CAP_MASK \
|
|
|
|
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV6_TCP_CAPABILITY
|
|
|
|
|
|
|
|
/* func init flags */
|
2011-06-14 19:33:44 +08:00
|
|
|
#define FUNC_FLG_RSS 0x0001
|
|
|
|
#define FUNC_FLG_STATS 0x0002
|
|
|
|
/* removed FUNC_FLG_UNMATCHED 0x0004 */
|
|
|
|
#define FUNC_FLG_TPA 0x0008
|
|
|
|
#define FUNC_FLG_SPQ 0x0010
|
|
|
|
#define FUNC_FLG_LEADING 0x0020 /* PF only */
|
2013-09-04 19:09:21 +08:00
|
|
|
#define FUNC_FLG_LEADING_STATS 0x0040
|
2010-10-06 11:23:26 +08:00
|
|
|
struct bnx2x_func_init_params {
|
|
|
|
/* dma */
|
|
|
|
dma_addr_t fw_stat_map; /* valid iff FUNC_FLG_STATS */
|
|
|
|
dma_addr_t spq_map; /* valid iff FUNC_FLG_SPQ */
|
|
|
|
|
|
|
|
u16 func_flgs;
|
|
|
|
u16 func_id; /* abs fid */
|
|
|
|
u16 pf_id;
|
|
|
|
u16 spq_prod; /* valid iff FUNC_FLG_SPQ */
|
|
|
|
};
|
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
#define for_each_cnic_queue(bp, var) \
|
|
|
|
for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
|
|
|
|
(var)++) \
|
|
|
|
if (skip_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
#define for_each_eth_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 0; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
|
2010-12-13 13:44:01 +08:00
|
|
|
|
|
|
|
#define for_each_nondefault_eth_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 1; (var) < BNX2X_NUM_ETH_QUEUES(bp); (var)++)
|
2010-12-13 13:44:01 +08:00
|
|
|
|
2009-02-12 16:36:11 +08:00
|
|
|
#define for_each_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
|
2010-12-13 13:44:01 +08:00
|
|
|
if (skip_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
/* Skip forwarding FP */
|
2012-11-07 08:45:48 +08:00
|
|
|
#define for_each_valid_rx_queue(bp, var) \
|
|
|
|
for ((var) = 0; \
|
|
|
|
(var) < (CNIC_LOADED(bp) ? BNX2X_NUM_QUEUES(bp) : \
|
|
|
|
BNX2X_NUM_ETH_QUEUES(bp)); \
|
|
|
|
(var)++) \
|
|
|
|
if (skip_rx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
|
|
|
#define for_each_rx_queue_cnic(bp, var) \
|
|
|
|
for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
|
|
|
|
(var)++) \
|
|
|
|
if (skip_rx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
#define for_each_rx_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
|
2010-12-13 13:44:01 +08:00
|
|
|
if (skip_rx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
/* Skip OOO FP */
|
2012-11-07 08:45:48 +08:00
|
|
|
#define for_each_valid_tx_queue(bp, var) \
|
|
|
|
for ((var) = 0; \
|
|
|
|
(var) < (CNIC_LOADED(bp) ? BNX2X_NUM_QUEUES(bp) : \
|
|
|
|
BNX2X_NUM_ETH_QUEUES(bp)); \
|
|
|
|
(var)++) \
|
|
|
|
if (skip_tx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
|
|
|
#define for_each_tx_queue_cnic(bp, var) \
|
|
|
|
for ((var) = BNX2X_NUM_ETH_QUEUES(bp); (var) < BNX2X_NUM_QUEUES(bp); \
|
|
|
|
(var)++) \
|
|
|
|
if (skip_tx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
#define for_each_tx_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
|
2010-12-13 13:44:01 +08:00
|
|
|
if (skip_tx_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
|
|
|
|
2008-08-14 06:58:49 +08:00
|
|
|
#define for_each_nondefault_queue(bp, var) \
|
2011-07-14 16:31:57 +08:00
|
|
|
for ((var) = 1; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
|
2010-12-13 13:44:01 +08:00
|
|
|
if (skip_queue(bp, var)) \
|
|
|
|
continue; \
|
|
|
|
else
|
2008-08-14 06:58:49 +08:00
|
|
|
|
2011-07-14 16:31:57 +08:00
|
|
|
#define for_each_cos_in_tx_queue(fp, var) \
|
|
|
|
for ((var) = 0; (var) < (fp)->max_cos; (var)++)
|
|
|
|
|
2010-12-13 13:44:01 +08:00
|
|
|
/* skip rx queue
|
2011-01-14 02:05:56 +08:00
|
|
|
* if FCOE l2 support is disabled and this is the fcoe L2 queue
|
2010-12-13 13:44:01 +08:00
|
|
|
*/
|
|
|
|
#define skip_rx_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
|
|
|
|
|
|
|
|
/* skip tx queue
|
2011-01-14 02:05:56 +08:00
|
|
|
* if FCOE l2 support is disabled and this is the fcoe L2 queue
|
2010-12-13 13:44:01 +08:00
|
|
|
*/
|
|
|
|
#define skip_tx_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
|
|
|
|
|
|
|
|
#define skip_queue(bp, idx) (NO_FCOE(bp) && IS_FCOE_IDX(idx))
|
2008-08-14 06:58:49 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
/**
|
|
|
|
* bnx2x_set_mac_one - configure a single MAC address
|
|
|
|
*
|
|
|
|
* @bp: driver handle
|
|
|
|
* @mac: MAC to configure
|
|
|
|
* @obj: MAC object handle
|
|
|
|
* @set: if 'true' add a new MAC, otherwise - delete
|
|
|
|
* @mac_type: the type of the MAC to configure (e.g. ETH, UC list)
|
|
|
|
* @ramrod_flags: RAMROD_XXX flags (e.g. RAMROD_CONT, RAMROD_COMP_WAIT)
|
|
|
|
*
|
|
|
|
* Configures one MAC according to provided parameters or continues the
|
|
|
|
* execution of previously scheduled commands if RAMROD_CONT is set in
|
|
|
|
* ramrod_flags.
|
|
|
|
*
|
|
|
|
* Returns zero if operation has successfully completed, a positive value if the
|
|
|
|
* operation has been successfully scheduled and a negative - if a requested
|
|
|
|
* operations has failed.
|
|
|
|
*/
|
|
|
|
int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac,
|
|
|
|
struct bnx2x_vlan_mac_obj *obj, bool set,
|
|
|
|
int mac_type, unsigned long *ramrod_flags);
|
|
|
|
/**
|
|
|
|
* bnx2x_del_all_macs - delete all MACs configured for the specific MAC object
|
|
|
|
*
|
|
|
|
* @bp: driver handle
|
|
|
|
* @mac_obj: MAC object handle
|
|
|
|
* @mac_type: type of the MACs to clear (BNX2X_XXX_MAC)
|
|
|
|
* @wait_for_comp: if 'true' block until completion
|
|
|
|
*
|
|
|
|
* Deletes all MACs of the specific type (e.g. ETH, UC list).
|
|
|
|
*
|
|
|
|
* Returns zero if operation has successfully completed, a positive value if the
|
|
|
|
* operation has been successfully scheduled and a negative - if a requested
|
|
|
|
* operations has failed.
|
|
|
|
*/
|
|
|
|
int bnx2x_del_all_macs(struct bnx2x *bp,
|
|
|
|
struct bnx2x_vlan_mac_obj *mac_obj,
|
|
|
|
int mac_type, bool wait_for_comp);
|
|
|
|
|
|
|
|
/* Init Function API */
|
|
|
|
void bnx2x_func_init(struct bnx2x *bp, struct bnx2x_func_init_params *p);
|
2013-01-01 13:22:35 +08:00
|
|
|
void bnx2x_init_sb(struct bnx2x *bp, dma_addr_t mapping, int vfid,
|
|
|
|
u8 vf_valid, int fw_sb_id, int igu_sb_id);
|
2011-06-14 19:33:44 +08:00
|
|
|
int bnx2x_get_gpio(struct bnx2x *bp, int gpio_num, u8 port);
|
|
|
|
int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
|
|
|
|
int bnx2x_set_mult_gpio(struct bnx2x *bp, u8 pins, u32 mode);
|
|
|
|
int bnx2x_set_gpio_int(struct bnx2x *bp, int gpio_num, u32 mode, u8 port);
|
2011-05-05 07:48:23 +08:00
|
|
|
void bnx2x_read_mf_cfg(struct bnx2x *bp);
|
|
|
|
|
2013-01-01 13:22:32 +08:00
|
|
|
int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
|
2011-06-14 19:33:44 +08:00
|
|
|
|
2010-10-06 11:34:21 +08:00
|
|
|
/* dmae */
|
2008-06-24 11:27:52 +08:00
|
|
|
void bnx2x_read_dmae(struct bnx2x *bp, u32 src_addr, u32 len32);
|
|
|
|
void bnx2x_write_dmae(struct bnx2x *bp, dma_addr_t dma_addr, u32 dst_addr,
|
|
|
|
u32 len32);
|
2010-10-06 11:34:21 +08:00
|
|
|
void bnx2x_post_dmae(struct bnx2x *bp, struct dmae_command *dmae, int idx);
|
|
|
|
u32 bnx2x_dmae_opcode_add_comp(u32 opcode, u8 comp_type);
|
|
|
|
u32 bnx2x_dmae_opcode_clr_src_reset(u32 opcode);
|
|
|
|
u32 bnx2x_dmae_opcode(struct bnx2x *bp, u8 src_type, u8 dst_type,
|
|
|
|
bool with_comp, u8 comp_type);
|
|
|
|
|
2013-01-01 13:22:33 +08:00
|
|
|
void bnx2x_prep_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae,
|
|
|
|
u8 src_type, u8 dst_type);
|
2013-10-20 22:51:32 +08:00
|
|
|
int bnx2x_issue_dmae_with_comp(struct bnx2x *bp, struct dmae_command *dmae,
|
|
|
|
u32 *comp);
|
2013-01-01 13:22:33 +08:00
|
|
|
|
2013-01-01 13:22:42 +08:00
|
|
|
/* FLR related routines */
|
|
|
|
u32 bnx2x_flr_clnup_poll_count(struct bnx2x *bp);
|
|
|
|
void bnx2x_tx_hw_flushed(struct bnx2x *bp, u32 poll_count);
|
|
|
|
int bnx2x_send_final_clnup(struct bnx2x *bp, u8 clnup_func, u32 poll_cnt);
|
2013-01-01 13:22:32 +08:00
|
|
|
u8 bnx2x_is_pcie_pending(struct pci_dev *dev);
|
2013-01-01 13:22:42 +08:00
|
|
|
int bnx2x_flr_clnup_poll_hw_counter(struct bnx2x *bp, u32 reg,
|
|
|
|
char *msg, u32 poll_cnt);
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2010-07-27 20:35:24 +08:00
|
|
|
void bnx2x_calc_fc_adv(struct bnx2x *bp);
|
|
|
|
int bnx2x_sp_post(struct bnx2x *bp, int command, int cid,
|
2011-06-14 19:33:44 +08:00
|
|
|
u32 data_hi, u32 data_lo, int cmd_type);
|
2010-07-27 20:35:24 +08:00
|
|
|
void bnx2x_update_coalesce(struct bnx2x *bp);
|
2011-06-01 05:26:11 +08:00
|
|
|
int bnx2x_get_cur_phy_idx(struct bnx2x *bp);
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2013-05-23 05:21:50 +08:00
|
|
|
bool bnx2x_port_after_undi(struct bnx2x *bp);
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms,
|
|
|
|
int wait)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
do {
|
|
|
|
val = REG_RD(bp, reg);
|
|
|
|
if (val == expected)
|
|
|
|
break;
|
|
|
|
ms -= wait;
|
|
|
|
msleep(wait);
|
|
|
|
|
|
|
|
} while (ms > 0);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2013-01-01 13:22:32 +08:00
|
|
|
void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func, u8 idu_sb_id,
|
|
|
|
bool is_pf);
|
|
|
|
|
2013-08-27 13:45:23 +08:00
|
|
|
#define BNX2X_ILT_ZALLOC(x, y, size) \
|
|
|
|
x = dma_zalloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL)
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
#define BNX2X_ILT_FREE(x, y, size) \
|
|
|
|
do { \
|
|
|
|
if (x) { \
|
2010-12-08 09:43:17 +08:00
|
|
|
dma_free_coherent(&bp->pdev->dev, size, x, y); \
|
2010-10-06 11:23:26 +08:00
|
|
|
x = NULL; \
|
|
|
|
y = 0; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ILOG2(x) (ilog2((x)))
|
|
|
|
|
|
|
|
#define ILT_NUM_PAGE_ENTRIES (3072)
|
|
|
|
/* In 57710/11 we use whole table since we have 8 func
|
2010-10-06 11:34:21 +08:00
|
|
|
* In 57712 we have only 4 func, but use same size per func, then only half of
|
|
|
|
* the table in use
|
2010-10-06 11:23:26 +08:00
|
|
|
*/
|
|
|
|
#define ILT_PER_FUNC (ILT_NUM_PAGE_ENTRIES/8)
|
|
|
|
|
|
|
|
#define FUNC_ILT_BASE(func) (func * ILT_PER_FUNC)
|
|
|
|
/*
|
|
|
|
* the phys address is shifted right 12 bits and has an added
|
|
|
|
* 1=valid bit added to the 53rd bit
|
|
|
|
* then since this is a wide register(TM)
|
|
|
|
* we split it into two 32 bit writes
|
|
|
|
*/
|
|
|
|
#define ONCHIP_ADDR1(x) ((u32)(((u64)x >> 12) & 0xFFFFFFFF))
|
|
|
|
#define ONCHIP_ADDR2(x) ((u32)((1 << 20) | ((u64)x >> 44)))
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
/* load/unload mode */
|
|
|
|
#define LOAD_NORMAL 0
|
|
|
|
#define LOAD_OPEN 1
|
|
|
|
#define LOAD_DIAG 2
|
2012-06-19 15:48:22 +08:00
|
|
|
#define LOAD_LOOPBACK_EXT 3
|
2008-06-24 11:33:01 +08:00
|
|
|
#define UNLOAD_NORMAL 0
|
|
|
|
#define UNLOAD_CLOSE 1
|
2010-10-06 11:34:21 +08:00
|
|
|
#define UNLOAD_RECOVERY 2
|
2008-06-24 11:33:01 +08:00
|
|
|
|
2008-06-24 11:29:02 +08:00
|
|
|
/* DMAE command defines */
|
2010-10-06 11:28:26 +08:00
|
|
|
#define DMAE_TIMEOUT -1
|
|
|
|
#define DMAE_PCI_ERROR -2 /* E2 and onward */
|
|
|
|
#define DMAE_NOT_RDY -3
|
|
|
|
#define DMAE_PCI_ERR_FLAG 0x80000000
|
|
|
|
|
|
|
|
#define DMAE_SRC_PCI 0
|
|
|
|
#define DMAE_SRC_GRC 1
|
|
|
|
|
|
|
|
#define DMAE_DST_NONE 0
|
|
|
|
#define DMAE_DST_PCI 1
|
|
|
|
#define DMAE_DST_GRC 2
|
|
|
|
|
|
|
|
#define DMAE_COMP_PCI 0
|
|
|
|
#define DMAE_COMP_GRC 1
|
|
|
|
|
|
|
|
/* E2 and onward - PCI error handling in the completion */
|
|
|
|
|
|
|
|
#define DMAE_COMP_REGULAR 0
|
|
|
|
#define DMAE_COM_SET_ERR 1
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#define DMAE_CMD_SRC_PCI (DMAE_SRC_PCI << \
|
|
|
|
DMAE_COMMAND_SRC_SHIFT)
|
|
|
|
#define DMAE_CMD_SRC_GRC (DMAE_SRC_GRC << \
|
|
|
|
DMAE_COMMAND_SRC_SHIFT)
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#define DMAE_CMD_DST_PCI (DMAE_DST_PCI << \
|
|
|
|
DMAE_COMMAND_DST_SHIFT)
|
|
|
|
#define DMAE_CMD_DST_GRC (DMAE_DST_GRC << \
|
|
|
|
DMAE_COMMAND_DST_SHIFT)
|
|
|
|
|
|
|
|
#define DMAE_CMD_C_DST_PCI (DMAE_COMP_PCI << \
|
|
|
|
DMAE_COMMAND_C_DST_SHIFT)
|
|
|
|
#define DMAE_CMD_C_DST_GRC (DMAE_COMP_GRC << \
|
|
|
|
DMAE_COMMAND_C_DST_SHIFT)
|
2008-06-24 11:29:02 +08:00
|
|
|
|
|
|
|
#define DMAE_CMD_C_ENABLE DMAE_COMMAND_C_TYPE_ENABLE
|
|
|
|
|
|
|
|
#define DMAE_CMD_ENDIANITY_NO_SWAP (0 << DMAE_COMMAND_ENDIANITY_SHIFT)
|
|
|
|
#define DMAE_CMD_ENDIANITY_B_SWAP (1 << DMAE_COMMAND_ENDIANITY_SHIFT)
|
|
|
|
#define DMAE_CMD_ENDIANITY_DW_SWAP (2 << DMAE_COMMAND_ENDIANITY_SHIFT)
|
|
|
|
#define DMAE_CMD_ENDIANITY_B_DW_SWAP (3 << DMAE_COMMAND_ENDIANITY_SHIFT)
|
|
|
|
|
|
|
|
#define DMAE_CMD_PORT_0 0
|
|
|
|
#define DMAE_CMD_PORT_1 DMAE_COMMAND_PORT
|
|
|
|
|
|
|
|
#define DMAE_CMD_SRC_RESET DMAE_COMMAND_SRC_RESET
|
|
|
|
#define DMAE_CMD_DST_RESET DMAE_COMMAND_DST_RESET
|
|
|
|
#define DMAE_CMD_E1HVN_SHIFT DMAE_COMMAND_E1HVN_SHIFT
|
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#define DMAE_SRC_PF 0
|
|
|
|
#define DMAE_SRC_VF 1
|
|
|
|
|
|
|
|
#define DMAE_DST_PF 0
|
|
|
|
#define DMAE_DST_VF 1
|
|
|
|
|
|
|
|
#define DMAE_C_SRC 0
|
|
|
|
#define DMAE_C_DST 1
|
|
|
|
|
2008-06-24 11:29:02 +08:00
|
|
|
#define DMAE_LEN32_RD_MAX 0x80
|
2010-04-19 09:13:33 +08:00
|
|
|
#define DMAE_LEN32_WR_MAX(bp) (CHIP_IS_E1(bp) ? 0x400 : 0x2000)
|
2008-06-24 11:29:02 +08:00
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#define DMAE_COMP_VAL 0x60d0d0ae /* E2 and on - upper bit
|
2013-06-02 08:06:18 +08:00
|
|
|
* indicates error
|
|
|
|
*/
|
2008-06-24 11:29:02 +08:00
|
|
|
|
|
|
|
#define MAX_DMAE_C_PER_PORT 8
|
2009-08-12 16:24:29 +08:00
|
|
|
#define INIT_DMAE_C(bp) (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
|
2011-08-30 08:08:42 +08:00
|
|
|
BP_VN(bp))
|
2009-08-12 16:24:29 +08:00
|
|
|
#define PMF_DMAE_C(bp) (BP_PORT(bp) * MAX_DMAE_C_PER_PORT + \
|
2008-06-24 11:29:02 +08:00
|
|
|
E1HVN_MAX)
|
|
|
|
|
2008-02-29 03:50:16 +08:00
|
|
|
/* PCIE link and speed */
|
|
|
|
#define PCICFG_LINK_WIDTH 0x1f00000
|
|
|
|
#define PCICFG_LINK_WIDTH_SHIFT 20
|
|
|
|
#define PCICFG_LINK_SPEED 0xf0000
|
|
|
|
#define PCICFG_LINK_SPEED_SHIFT 16
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2012-06-19 15:48:23 +08:00
|
|
|
#define BNX2X_NUM_TESTS_SF 7
|
|
|
|
#define BNX2X_NUM_TESTS_MF 3
|
|
|
|
#define BNX2X_NUM_TESTS(bp) (IS_MF(bp) ? BNX2X_NUM_TESTS_MF : \
|
2013-09-28 13:46:08 +08:00
|
|
|
IS_VF(bp) ? 0 : BNX2X_NUM_TESTS_SF)
|
2008-06-24 11:33:36 +08:00
|
|
|
|
2009-02-12 16:38:08 +08:00
|
|
|
#define BNX2X_PHY_LOOPBACK 0
|
|
|
|
#define BNX2X_MAC_LOOPBACK 1
|
2012-06-19 15:48:22 +08:00
|
|
|
#define BNX2X_EXT_LOOPBACK 2
|
2009-02-12 16:38:08 +08:00
|
|
|
#define BNX2X_PHY_LOOPBACK_FAILED 1
|
|
|
|
#define BNX2X_MAC_LOOPBACK_FAILED 2
|
2012-06-19 15:48:22 +08:00
|
|
|
#define BNX2X_EXT_LOOPBACK_FAILED 3
|
2008-06-24 11:33:36 +08:00
|
|
|
#define BNX2X_LOOPBACK_FAILED (BNX2X_MAC_LOOPBACK_FAILED | \
|
|
|
|
BNX2X_PHY_LOOPBACK_FAILED)
|
2008-02-29 03:57:55 +08:00
|
|
|
|
2008-06-24 11:34:36 +08:00
|
|
|
#define STROM_ASSERT_ARRAY_SIZE 50
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* must be used on a CID before placing it on a HW ring */
|
2009-08-12 16:24:29 +08:00
|
|
|
#define HW_CID(bp, x) ((BP_PORT(bp) << 23) | \
|
2011-08-30 08:08:42 +08:00
|
|
|
(BP_VN(bp) << BNX2X_SWCID_SHIFT) | \
|
2011-06-14 19:33:44 +08:00
|
|
|
(x))
|
2008-06-24 11:34:36 +08:00
|
|
|
|
|
|
|
#define SP_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_spe))
|
|
|
|
#define MAX_SP_DESC_CNT (SP_DESC_CNT - 1)
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
#define BNX2X_BTR 4
|
2008-06-24 11:34:36 +08:00
|
|
|
#define MAX_SPQ_PENDING 8
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-02-28 11:37:11 +08:00
|
|
|
/* CMNG constants, as derived from system spec calculations */
|
|
|
|
/* default MIN rate in case VNIC min rate is configured to zero - 100Mbps */
|
|
|
|
#define DEF_MIN_RATE 100
|
2011-03-06 18:51:37 +08:00
|
|
|
/* resolution of the rate shaping timer - 400 usec */
|
|
|
|
#define RS_PERIODIC_TIMEOUT_USEC 400
|
2008-06-24 11:33:01 +08:00
|
|
|
/* number of bytes in single QM arbitration cycle -
|
2011-02-28 11:37:11 +08:00
|
|
|
* coefficient for calculating the fairness timer */
|
|
|
|
#define QM_ARB_BYTES 160000
|
|
|
|
/* resolution of Min algorithm 1:100 */
|
|
|
|
#define MIN_RES 100
|
|
|
|
/* how many bytes above threshold for the minimal credit of Min algorithm*/
|
|
|
|
#define MIN_ABOVE_THRESH 32768
|
|
|
|
/* Fairness algorithm integration time coefficient -
|
|
|
|
* for calculating the actual Tfair */
|
|
|
|
#define T_FAIR_COEF ((MIN_ABOVE_THRESH + QM_ARB_BYTES) * 8 * MIN_RES)
|
|
|
|
/* Memory of fairness algorithm . 2 cycles */
|
|
|
|
#define FAIR_MEM 2
|
2008-06-24 11:33:01 +08:00
|
|
|
|
|
|
|
#define ATTN_NIG_FOR_FUNC (1L << 8)
|
|
|
|
#define ATTN_SW_TIMER_4_FUNC (1L << 9)
|
|
|
|
#define GPIO_2_FUNC (1L << 10)
|
|
|
|
#define GPIO_3_FUNC (1L << 11)
|
|
|
|
#define GPIO_4_FUNC (1L << 12)
|
|
|
|
#define ATTN_GENERAL_ATTN_1 (1L << 13)
|
|
|
|
#define ATTN_GENERAL_ATTN_2 (1L << 14)
|
|
|
|
#define ATTN_GENERAL_ATTN_3 (1L << 15)
|
|
|
|
#define ATTN_GENERAL_ATTN_4 (1L << 13)
|
|
|
|
#define ATTN_GENERAL_ATTN_5 (1L << 14)
|
|
|
|
#define ATTN_GENERAL_ATTN_6 (1L << 15)
|
|
|
|
|
|
|
|
#define ATTN_HARD_WIRED_MASK 0xff00
|
|
|
|
#define ATTENTION_ID 4
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2014-09-17 21:24:36 +08:00
|
|
|
#define IS_MF_STORAGE_ONLY(bp) (IS_MF_STORAGE_PERSONALITY_ONLY(bp) || \
|
2013-05-23 05:21:49 +08:00
|
|
|
IS_MF_FCOE_AFEX(bp))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* stuff added to make the code fit 80Col */
|
|
|
|
|
|
|
|
#define BNX2X_PMF_LINK_ASSERT \
|
|
|
|
GENERAL_ATTEN_OFFSET(LINK_SYNC_ATTENTION_BIT_FUNC_0 + BP_FUNC(bp))
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
#define BNX2X_MC_ASSERT_BITS \
|
|
|
|
(GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(CSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(XSTORM_FATAL_ASSERT_ATTENTION_BIT))
|
|
|
|
|
|
|
|
#define BNX2X_MCP_ASSERT \
|
|
|
|
GENERAL_ATTEN_OFFSET(MCP_FATAL_ASSERT_ATTENTION_BIT)
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define BNX2X_GRC_TIMEOUT GENERAL_ATTEN_OFFSET(LATCHED_ATTN_TIMEOUT_GRC)
|
|
|
|
#define BNX2X_GRC_RSV (GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCR) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCT) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCN) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCU) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RBCP) | \
|
|
|
|
GENERAL_ATTEN_OFFSET(LATCHED_ATTN_RSVD_GRC))
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
#define HW_INTERRUT_ASSERT_SET_0 \
|
|
|
|
(AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_TSEMI_HW_INTERRUPT | \
|
2013-01-14 13:11:42 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_BRB_HW_INTERRUPT | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_PBCLIENT_HW_INTERRUPT)
|
2008-06-24 11:33:01 +08:00
|
|
|
#define HW_PRTY_ASSERT_SET_0 (AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR | \
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR |\
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR |\
|
|
|
|
AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR |\
|
|
|
|
AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR)
|
2007-11-16 02:09:02 +08:00
|
|
|
#define HW_INTERRUT_ASSERT_SET_1 \
|
|
|
|
(AEU_INPUTS_ATTN_BITS_QM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_TIMERS_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_XSDM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_XCM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_XSEMI_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_USDM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_UCM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_USEMI_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_UPB_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_CSDM_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_CCM_HW_INTERRUPT)
|
2011-06-14 09:33:51 +08:00
|
|
|
#define HW_PRTY_ASSERT_SET_1 (AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR | \
|
2009-08-12 16:24:29 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR |\
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR |\
|
2009-08-12 16:24:29 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR |\
|
|
|
|
AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR)
|
2007-11-16 02:09:02 +08:00
|
|
|
#define HW_INTERRUT_ASSERT_SET_2 \
|
|
|
|
(AEU_INPUTS_ATTN_BITS_CSEMI_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_CDU_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_DMAE_HW_INTERRUPT | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_HW_INTERRUPT |\
|
|
|
|
AEU_INPUTS_ATTN_BITS_MISC_HW_INTERRUPT)
|
2008-06-24 11:33:01 +08:00
|
|
|
#define HW_PRTY_ASSERT_SET_2 (AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR | \
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR |\
|
|
|
|
AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR | \
|
2011-06-14 09:33:51 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR |\
|
2007-11-16 02:09:02 +08:00
|
|
|
AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)
|
|
|
|
|
2015-06-25 20:19:24 +08:00
|
|
|
#define HW_PRTY_ASSERT_SET_3_WITHOUT_SCPAD \
|
|
|
|
(AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY)
|
|
|
|
|
|
|
|
#define HW_PRTY_ASSERT_SET_3 (HW_PRTY_ASSERT_SET_3_WITHOUT_SCPAD | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-07-21 15:58:36 +08:00
|
|
|
#define HW_PRTY_ASSERT_SET_4 (AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR | \
|
|
|
|
AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR)
|
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#define MULTI_MASK 0x7f
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
#define DEF_USB_FUNC_OFF offsetof(struct cstorm_def_status_block_u, func)
|
|
|
|
#define DEF_CSB_FUNC_OFF offsetof(struct cstorm_def_status_block_c, func)
|
|
|
|
#define DEF_XSB_FUNC_OFF offsetof(struct xstorm_def_status_block, func)
|
|
|
|
#define DEF_TSB_FUNC_OFF offsetof(struct tstorm_def_status_block, func)
|
|
|
|
|
|
|
|
#define DEF_USB_IGU_INDEX_OFF \
|
|
|
|
offsetof(struct cstorm_def_status_block_u, igu_index)
|
|
|
|
#define DEF_CSB_IGU_INDEX_OFF \
|
|
|
|
offsetof(struct cstorm_def_status_block_c, igu_index)
|
|
|
|
#define DEF_XSB_IGU_INDEX_OFF \
|
|
|
|
offsetof(struct xstorm_def_status_block, igu_index)
|
|
|
|
#define DEF_TSB_IGU_INDEX_OFF \
|
|
|
|
offsetof(struct tstorm_def_status_block, igu_index)
|
|
|
|
|
|
|
|
#define DEF_USB_SEGMENT_OFF \
|
|
|
|
offsetof(struct cstorm_def_status_block_u, segment)
|
|
|
|
#define DEF_CSB_SEGMENT_OFF \
|
|
|
|
offsetof(struct cstorm_def_status_block_c, segment)
|
|
|
|
#define DEF_XSB_SEGMENT_OFF \
|
|
|
|
offsetof(struct xstorm_def_status_block, segment)
|
|
|
|
#define DEF_TSB_SEGMENT_OFF \
|
|
|
|
offsetof(struct tstorm_def_status_block, segment)
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
#define BNX2X_SP_DSB_INDEX \
|
2010-10-06 11:23:26 +08:00
|
|
|
(&bp->def_status_blk->sp_sb.\
|
|
|
|
index_values[HC_SP_INDEX_ETH_DEF_CONS])
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
#define CAM_IS_INVALID(x) \
|
2010-10-06 11:23:26 +08:00
|
|
|
(GET_FLAG(x.flags, \
|
|
|
|
MAC_CONFIGURATION_ENTRY_ACTION_TYPE) == \
|
|
|
|
(T_ETH_MAC_COMMAND_INVALIDATE))
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
/* Number of u32 elements in MC hash array */
|
|
|
|
#define MC_HASH_SIZE 8
|
|
|
|
#define MC_HASH_OFFSET(bp, i) (BAR_TSTRORM_INTMEM + \
|
|
|
|
TSTORM_APPROXIMATE_MATCH_MULTICAST_FILTERING_OFFSET(BP_FUNC(bp)) + i*4)
|
2007-11-16 02:09:02 +08:00
|
|
|
|
2008-06-24 11:33:01 +08:00
|
|
|
#ifndef PXP2_REG_PXP2_INT_STS
|
|
|
|
#define PXP2_REG_PXP2_INT_STS PXP2_REG_PXP2_INT_STS_0
|
|
|
|
#endif
|
|
|
|
|
2010-10-06 11:28:26 +08:00
|
|
|
#ifndef ETH_MAX_RX_CLIENTS_E2
|
|
|
|
#define ETH_MAX_RX_CLIENTS_E2 ETH_MAX_RX_CLIENTS_E1H
|
|
|
|
#endif
|
2010-10-06 11:34:21 +08:00
|
|
|
|
2010-04-19 09:13:23 +08:00
|
|
|
#define BNX2X_VPD_LEN 128
|
|
|
|
#define VENDOR_ID_LEN 4
|
|
|
|
|
2013-01-01 13:22:24 +08:00
|
|
|
#define VF_ACQUIRE_THRESH 3
|
|
|
|
#define VF_ACQUIRE_MAC_FILTERS 1
|
|
|
|
#define VF_ACQUIRE_MC_FILTERS 10
|
|
|
|
|
|
|
|
#define GOOD_ME_REG(me_reg) (((me_reg) & ME_REG_VF_VALID) && \
|
|
|
|
(!((me_reg) & ME_REG_VF_ERR)))
|
2013-12-26 15:57:07 +08:00
|
|
|
int bnx2x_compare_fw_ver(struct bnx2x *bp, u32 load_code, bool print_err);
|
|
|
|
|
2010-10-06 11:23:26 +08:00
|
|
|
/* Congestion management fairness mode */
|
2013-01-23 11:21:43 +08:00
|
|
|
#define CMNG_FNS_NONE 0
|
|
|
|
#define CMNG_FNS_MINMAX 1
|
2010-10-06 11:23:26 +08:00
|
|
|
|
|
|
|
#define HC_SEG_ACCESS_DEF 0 /*Driver decision 0-3*/
|
|
|
|
#define HC_SEG_ACCESS_ATTN 4
|
|
|
|
#define HC_SEG_ACCESS_NORM 0 /*Driver decision 0-1*/
|
|
|
|
|
2011-06-14 19:33:44 +08:00
|
|
|
static const u32 dmae_reg_go_c[] = {
|
|
|
|
DMAE_REG_GO_C0, DMAE_REG_GO_C1, DMAE_REG_GO_C2, DMAE_REG_GO_C3,
|
|
|
|
DMAE_REG_GO_C4, DMAE_REG_GO_C5, DMAE_REG_GO_C6, DMAE_REG_GO_C7,
|
|
|
|
DMAE_REG_GO_C8, DMAE_REG_GO_C9, DMAE_REG_GO_C10, DMAE_REG_GO_C11,
|
|
|
|
DMAE_REG_GO_C12, DMAE_REG_GO_C13, DMAE_REG_GO_C14, DMAE_REG_GO_C15
|
|
|
|
};
|
2010-07-27 20:35:24 +08:00
|
|
|
|
2013-03-11 13:17:42 +08:00
|
|
|
void bnx2x_set_ethtool_ops(struct bnx2x *bp, struct net_device *netdev);
|
2011-06-14 09:34:33 +08:00
|
|
|
void bnx2x_notify_link_changed(struct bnx2x *bp);
|
2011-11-28 20:31:49 +08:00
|
|
|
|
2012-03-18 18:33:43 +08:00
|
|
|
#define BNX2X_MF_SD_PROTOCOL(bp) \
|
2011-11-28 20:31:49 +08:00
|
|
|
((bp)->mf_config[BP_VN(bp)] & FUNC_MF_CFG_PROTOCOL_MASK)
|
|
|
|
|
2012-03-18 18:33:43 +08:00
|
|
|
#define BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp) \
|
|
|
|
(BNX2X_MF_SD_PROTOCOL(bp) == FUNC_MF_CFG_PROTOCOL_ISCSI)
|
2011-11-28 20:31:49 +08:00
|
|
|
|
2012-03-18 18:33:43 +08:00
|
|
|
#define BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp) \
|
|
|
|
(BNX2X_MF_SD_PROTOCOL(bp) == FUNC_MF_CFG_PROTOCOL_FCOE)
|
|
|
|
|
|
|
|
#define IS_MF_ISCSI_SD(bp) (IS_MF_SD(bp) && BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp))
|
|
|
|
#define IS_MF_FCOE_SD(bp) (IS_MF_SD(bp) && BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp))
|
2014-09-17 21:24:36 +08:00
|
|
|
#define IS_MF_ISCSI_SI(bp) (IS_MF_SI(bp) && BNX2X_IS_MF_EXT_PROTOCOL_ISCSI(bp))
|
2012-03-18 18:33:43 +08:00
|
|
|
|
2014-09-17 21:24:36 +08:00
|
|
|
#define IS_MF_ISCSI_ONLY(bp) (IS_MF_ISCSI_SD(bp) || IS_MF_ISCSI_SI(bp))
|
|
|
|
|
|
|
|
#define BNX2X_MF_EXT_PROTOCOL_MASK \
|
|
|
|
(MACP_FUNC_CFG_FLAGS_ETHERNET | \
|
|
|
|
MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD | \
|
|
|
|
MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD)
|
|
|
|
|
|
|
|
#define BNX2X_MF_EXT_PROT(bp) ((bp)->mf_ext_config & \
|
|
|
|
BNX2X_MF_EXT_PROTOCOL_MASK)
|
|
|
|
|
|
|
|
#define BNX2X_HAS_MF_EXT_PROTOCOL_FCOE(bp) \
|
|
|
|
(BNX2X_MF_EXT_PROT(bp) & MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD)
|
|
|
|
|
|
|
|
#define BNX2X_IS_MF_EXT_PROTOCOL_FCOE(bp) \
|
|
|
|
(BNX2X_MF_EXT_PROT(bp) == MACP_FUNC_CFG_FLAGS_FCOE_OFFLOAD)
|
|
|
|
|
|
|
|
#define BNX2X_IS_MF_EXT_PROTOCOL_ISCSI(bp) \
|
|
|
|
(BNX2X_MF_EXT_PROT(bp) == MACP_FUNC_CFG_FLAGS_ISCSI_OFFLOAD)
|
|
|
|
|
|
|
|
#define IS_MF_FCOE_AFEX(bp) \
|
|
|
|
(IS_MF_AFEX(bp) && BNX2X_IS_MF_EXT_PROTOCOL_FCOE(bp))
|
|
|
|
|
|
|
|
#define IS_MF_SD_STORAGE_PERSONALITY_ONLY(bp) \
|
|
|
|
(IS_MF_SD(bp) && \
|
|
|
|
(BNX2X_IS_MF_SD_PROTOCOL_ISCSI(bp) || \
|
|
|
|
BNX2X_IS_MF_SD_PROTOCOL_FCOE(bp)))
|
|
|
|
|
|
|
|
#define IS_MF_SI_STORAGE_PERSONALITY_ONLY(bp) \
|
|
|
|
(IS_MF_SI(bp) && \
|
|
|
|
(BNX2X_IS_MF_EXT_PROTOCOL_ISCSI(bp) || \
|
|
|
|
BNX2X_IS_MF_EXT_PROTOCOL_FCOE(bp)))
|
|
|
|
|
|
|
|
#define IS_MF_STORAGE_PERSONALITY_ONLY(bp) \
|
|
|
|
(IS_MF_SD_STORAGE_PERSONALITY_ONLY(bp) || \
|
|
|
|
IS_MF_SI_STORAGE_PERSONALITY_ONLY(bp))
|
2012-04-23 11:04:46 +08:00
|
|
|
|
2011-11-28 20:31:49 +08:00
|
|
|
|
2013-01-23 11:21:43 +08:00
|
|
|
#define SET_FLAG(value, mask, flag) \
|
|
|
|
do {\
|
|
|
|
(value) &= ~(mask);\
|
|
|
|
(value) |= ((flag) << (mask##_SHIFT));\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define GET_FLAG(value, mask) \
|
|
|
|
(((value) & (mask)) >> (mask##_SHIFT))
|
|
|
|
|
|
|
|
#define GET_FIELD(value, fname) \
|
|
|
|
(((value) & (fname##_MASK)) >> (fname##_SHIFT))
|
|
|
|
|
2012-11-07 08:45:48 +08:00
|
|
|
enum {
|
|
|
|
SWITCH_UPDATE,
|
|
|
|
AFEX_UPDATE,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_MACS 8
|
2012-04-23 11:04:46 +08:00
|
|
|
|
2013-08-13 07:25:00 +08:00
|
|
|
void bnx2x_set_local_cmng(struct bnx2x *bp);
|
2013-10-20 22:51:27 +08:00
|
|
|
|
2014-03-24 00:12:23 +08:00
|
|
|
void bnx2x_update_mng_version(struct bnx2x *bp);
|
|
|
|
|
2015-07-22 14:16:26 +08:00
|
|
|
void bnx2x_update_mfw_dump(struct bnx2x *bp);
|
|
|
|
|
2013-10-20 22:51:27 +08:00
|
|
|
#define MCPR_SCRATCH_BASE(bp) \
|
|
|
|
(CHIP_IS_E1x(bp) ? MCP_REG_MCPR_SCRATCH : MCP_A_REG_MCPR_SCRATCH)
|
|
|
|
|
2014-01-06 00:33:50 +08:00
|
|
|
#define E1H_MAX_MF_SB_COUNT (HC_SB_MAX_SB_E1X/(E1HVN_MAX * PORT_MAX))
|
|
|
|
|
2014-08-17 21:47:44 +08:00
|
|
|
void bnx2x_init_ptp(struct bnx2x *bp);
|
|
|
|
int bnx2x_configure_ptp_filters(struct bnx2x *bp);
|
|
|
|
void bnx2x_set_rx_ts(struct bnx2x *bp, struct sk_buff *skb);
|
|
|
|
|
|
|
|
#define BNX2X_MAX_PHC_DRIFT 31000000
|
|
|
|
#define BNX2X_PTP_TX_TIMEOUT
|
|
|
|
|
2007-11-16 02:09:02 +08:00
|
|
|
#endif /* bnx2x.h */
|