bnx2x: Add support for BCM57711 HW
Supporting the 57711 and 57711E - refers to in the code as E1H. The 57710 is referred to as E1. To support the new members in the family, the bnx2x structure was divided to 3 parts: common, port and function. These changes caused some rearrangement in the bnx2x.h file. A set of accessories macros were added to make access to the bnx2x structure more readable Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e523287e8e
commit
34f80b04f3
|
@ -2600,6 +2600,7 @@ config BNX2X
|
||||||
tristate "Broadcom NetXtremeII 10Gb support"
|
tristate "Broadcom NetXtremeII 10Gb support"
|
||||||
depends on PCI
|
depends on PCI
|
||||||
select ZLIB_INFLATE
|
select ZLIB_INFLATE
|
||||||
|
select LIBCRC32C
|
||||||
help
|
help
|
||||||
This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
|
This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
|
||||||
To compile this driver as a module, choose M here: the module
|
To compile this driver as a module, choose M here: the module
|
||||||
|
|
|
@ -14,6 +14,12 @@
|
||||||
#ifndef BNX2X_H
|
#ifndef BNX2X_H
|
||||||
#define BNX2X_H
|
#define BNX2X_H
|
||||||
|
|
||||||
|
/* 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 */
|
||||||
|
|
||||||
/* error/debug prints */
|
/* error/debug prints */
|
||||||
|
|
||||||
#define DRV_MODULE_NAME "bnx2x"
|
#define DRV_MODULE_NAME "bnx2x"
|
||||||
|
@ -21,10 +27,10 @@
|
||||||
|
|
||||||
/* for messages that are currently off */
|
/* for messages that are currently off */
|
||||||
#define BNX2X_MSG_OFF 0
|
#define BNX2X_MSG_OFF 0
|
||||||
#define BNX2X_MSG_MCP 0x10000 /* was: NETIF_MSG_HW */
|
#define BNX2X_MSG_MCP 0x010000 /* was: NETIF_MSG_HW */
|
||||||
#define BNX2X_MSG_STATS 0x20000 /* was: NETIF_MSG_TIMER */
|
#define BNX2X_MSG_STATS 0x020000 /* was: NETIF_MSG_TIMER */
|
||||||
#define NETIF_MSG_NVM 0x40000 /* was: NETIF_MSG_HW */
|
#define BNX2X_MSG_NVM 0x040000 /* was: NETIF_MSG_HW */
|
||||||
#define NETIF_MSG_DMAE 0x80000 /* was: NETIF_MSG_HW */
|
#define BNX2X_MSG_DMAE 0x080000 /* was: NETIF_MSG_HW */
|
||||||
#define BNX2X_MSG_SP 0x100000 /* was: NETIF_MSG_INTR */
|
#define BNX2X_MSG_SP 0x100000 /* was: NETIF_MSG_INTR */
|
||||||
#define BNX2X_MSG_FP 0x200000 /* was: NETIF_MSG_INTR */
|
#define BNX2X_MSG_FP 0x200000 /* was: NETIF_MSG_INTR */
|
||||||
|
|
||||||
|
@ -33,20 +39,21 @@
|
||||||
/* regular debug print */
|
/* regular debug print */
|
||||||
#define DP(__mask, __fmt, __args...) do { \
|
#define DP(__mask, __fmt, __args...) do { \
|
||||||
if (bp->msglevel & (__mask)) \
|
if (bp->msglevel & (__mask)) \
|
||||||
printk(DP_LEVEL "[%s:%d(%s)]" __fmt, __FUNCTION__, \
|
printk(DP_LEVEL "[%s:%d(%s)]" __fmt, __func__, __LINE__, \
|
||||||
__LINE__, bp->dev?(bp->dev->name):"?", ##__args); \
|
bp->dev?(bp->dev->name):"?", ##__args); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
/* errors debug print */
|
||||||
|
#define BNX2X_DBG_ERR(__fmt, __args...) do { \
|
||||||
|
if (bp->msglevel & NETIF_MSG_PROBE) \
|
||||||
|
printk(KERN_ERR "[%s:%d(%s)]" __fmt, __func__, __LINE__, \
|
||||||
|
bp->dev?(bp->dev->name):"?", ##__args); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/* for errors (never masked) */
|
/* for errors (never masked) */
|
||||||
#define BNX2X_ERR(__fmt, __args...) do { \
|
#define BNX2X_ERR(__fmt, __args...) do { \
|
||||||
printk(KERN_ERR "[%s:%d(%s)]" __fmt, __FUNCTION__, \
|
printk(KERN_ERR "[%s:%d(%s)]" __fmt, __func__, __LINE__, \
|
||||||
__LINE__, bp->dev?(bp->dev->name):"?", ##__args); \
|
bp->dev?(bp->dev->name):"?", ##__args); \
|
||||||
} while (0)
|
|
||||||
|
|
||||||
/* for logging (never masked) */
|
|
||||||
#define BNX2X_LOG(__fmt, __args...) do { \
|
|
||||||
printk(KERN_NOTICE "[%s:%d(%s)]" __fmt, __FUNCTION__, \
|
|
||||||
__LINE__, bp->dev?(bp->dev->name):"?", ##__args); \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/* before we have a dev->name use dev_info() */
|
/* before we have a dev->name use dev_info() */
|
||||||
|
@ -60,7 +67,7 @@
|
||||||
#define bnx2x_panic() do { \
|
#define bnx2x_panic() do { \
|
||||||
bp->panic = 1; \
|
bp->panic = 1; \
|
||||||
BNX2X_ERR("driver assert\n"); \
|
BNX2X_ERR("driver assert\n"); \
|
||||||
bnx2x_disable_int(bp); \
|
bnx2x_int_disable(bp); \
|
||||||
bnx2x_panic_dump(bp); \
|
bnx2x_panic_dump(bp); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else
|
#else
|
||||||
|
@ -71,9 +78,14 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define U64_LO(x) (((u64)x) & 0xffffffff)
|
#ifdef NETIF_F_HW_VLAN_TX
|
||||||
#define U64_HI(x) (((u64)x) >> 32)
|
#define BCM_VLAN 1
|
||||||
#define HILO_U64(hi, lo) (((u64)hi << 32) + lo)
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#define U64_LO(x) (u32)(((u64)(x)) & 0xffffffff)
|
||||||
|
#define U64_HI(x) (u32)(((u64)(x)) >> 32)
|
||||||
|
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
|
||||||
|
|
||||||
|
|
||||||
#define REG_ADDR(bp, offset) (bp->regview + offset)
|
#define REG_ADDR(bp, offset) (bp->regview + offset)
|
||||||
|
@ -96,17 +108,17 @@
|
||||||
memcpy(valp, bnx2x_sp(bp, wb_data[0]), len32 * 4); \
|
memcpy(valp, bnx2x_sp(bp, wb_data[0]), len32 * 4); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define REG_WR_DMAE(bp, offset, val, len32) \
|
#define REG_WR_DMAE(bp, offset, valp, len32) \
|
||||||
do { \
|
do { \
|
||||||
memcpy(bnx2x_sp(bp, wb_data[0]), val, len32 * 4); \
|
memcpy(bnx2x_sp(bp, wb_data[0]), valp, len32 * 4); \
|
||||||
bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
|
bnx2x_write_dmae(bp, bnx2x_sp_mapping(bp, wb_data), \
|
||||||
offset, len32); \
|
offset, len32); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define SHMEM_RD(bp, type) \
|
#define SHMEM_ADDR(bp, field) (bp->common.shmem_base + \
|
||||||
REG_RD(bp, bp->shmem_base + offsetof(struct shmem_region, type))
|
offsetof(struct shmem_region, field))
|
||||||
#define SHMEM_WR(bp, type, val) \
|
#define SHMEM_RD(bp, field) REG_RD(bp, SHMEM_ADDR(bp, field))
|
||||||
REG_WR(bp, bp->shmem_base + offsetof(struct shmem_region, type), val)
|
#define SHMEM_WR(bp, field, val) REG_WR(bp, SHMEM_ADDR(bp, field), val)
|
||||||
|
|
||||||
#define NIG_WR(reg, val) REG_WR(bp, reg, val)
|
#define NIG_WR(reg, val) REG_WR(bp, reg, val)
|
||||||
#define EMAC_WR(reg, val) REG_WR(bp, emac_base + reg, val)
|
#define EMAC_WR(reg, val) REG_WR(bp, emac_base + reg, val)
|
||||||
|
@ -358,46 +370,7 @@ struct bnx2x_eth_stats {
|
||||||
u32 number_of_bugs_found_in_stats_spec; /* just kidding */
|
u32 number_of_bugs_found_in_stats_spec; /* just kidding */
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MAC_STX_NA 0xffffffff
|
|
||||||
|
|
||||||
#ifdef BNX2X_MULTI
|
|
||||||
#define MAX_CONTEXT 16
|
|
||||||
#else
|
|
||||||
#define MAX_CONTEXT 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
union cdu_context {
|
|
||||||
struct eth_context eth;
|
|
||||||
char pad[1024];
|
|
||||||
};
|
|
||||||
|
|
||||||
#define MAX_DMAE_C 5
|
|
||||||
|
|
||||||
/* DMA memory not used in fastpath */
|
|
||||||
struct bnx2x_slowpath {
|
|
||||||
union cdu_context context[MAX_CONTEXT];
|
|
||||||
struct eth_stats_query fw_stats;
|
|
||||||
struct mac_configuration_cmd mac_config;
|
|
||||||
struct mac_configuration_cmd mcast_config;
|
|
||||||
|
|
||||||
/* used by dmae command executer */
|
|
||||||
struct dmae_command dmae[MAX_DMAE_C];
|
|
||||||
|
|
||||||
union mac_stats mac_stats;
|
|
||||||
struct nig_stats nig;
|
|
||||||
struct bnx2x_eth_stats eth_stats;
|
|
||||||
|
|
||||||
u32 wb_comp;
|
|
||||||
#define BNX2X_WB_COMP_VAL 0xe0d0d0ae
|
|
||||||
u32 wb_data[4];
|
|
||||||
};
|
|
||||||
|
|
||||||
#define bnx2x_sp(bp, var) (&bp->slowpath->var)
|
|
||||||
#define bnx2x_sp_check(bp, var) ((bp->slowpath) ? (&bp->slowpath->var) : NULL)
|
#define bnx2x_sp_check(bp, var) ((bp->slowpath) ? (&bp->slowpath->var) : NULL)
|
||||||
#define bnx2x_sp_mapping(bp, var) \
|
|
||||||
(bp->slowpath_mapping + offsetof(struct bnx2x_slowpath, var))
|
|
||||||
|
|
||||||
|
|
||||||
struct sw_rx_bd {
|
struct sw_rx_bd {
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
DECLARE_PCI_UNMAP_ADDR(mapping)
|
DECLARE_PCI_UNMAP_ADDR(mapping)
|
||||||
|
@ -439,7 +412,14 @@ struct bnx2x_fastpath {
|
||||||
#define BNX2X_FP_STATE_HALTING 0xb0000
|
#define BNX2X_FP_STATE_HALTING 0xb0000
|
||||||
#define BNX2X_FP_STATE_HALTED 0xc0000
|
#define BNX2X_FP_STATE_HALTED 0xc0000
|
||||||
|
|
||||||
int index;
|
u8 index; /* number in fp array */
|
||||||
|
u8 cl_id; /* eth client id */
|
||||||
|
u8 sb_id; /* status block number in HW */
|
||||||
|
#define FP_IDX(fp) (fp->index)
|
||||||
|
#define FP_CL_ID(fp) (fp->cl_id)
|
||||||
|
#define BP_CL_ID(bp) (bp->fp[0].cl_id)
|
||||||
|
#define FP_SB_ID(fp) (fp->sb_id)
|
||||||
|
#define CNIC_SB_ID 0
|
||||||
|
|
||||||
u16 tx_pkt_prod;
|
u16 tx_pkt_prod;
|
||||||
u16 tx_pkt_cons;
|
u16 tx_pkt_cons;
|
||||||
|
@ -464,6 +444,157 @@ struct bnx2x_fastpath {
|
||||||
};
|
};
|
||||||
|
|
||||||
#define bnx2x_fp(bp, nr, var) (bp->fp[nr].var)
|
#define bnx2x_fp(bp, nr, var) (bp->fp[nr].var)
|
||||||
|
/* This is needed for determening of last_max */
|
||||||
|
#define SUB_S16(a, b) (s16)((s16)(a) - (s16)(b))
|
||||||
|
|
||||||
|
/* stuff added to make the code fit 80Col */
|
||||||
|
|
||||||
|
#define CQE_TYPE(cqe_fp_flags) ((cqe_fp_flags) & ETH_FAST_PATH_RX_CQE_TYPE)
|
||||||
|
|
||||||
|
#define ETH_RX_ERROR_FALGS (ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG | \
|
||||||
|
ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG | \
|
||||||
|
ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG)
|
||||||
|
|
||||||
|
|
||||||
|
#define U_SB_ETH_RX_CQ_INDEX HC_INDEX_U_ETH_RX_CQ_CONS
|
||||||
|
#define U_SB_ETH_RX_BD_INDEX HC_INDEX_U_ETH_RX_BD_CONS
|
||||||
|
#define C_SB_ETH_TX_CQ_INDEX HC_INDEX_C_ETH_TX_CQ_CONS
|
||||||
|
|
||||||
|
#define BNX2X_RX_SB_INDEX \
|
||||||
|
(&fp->status_blk->u_status_block.index_values[U_SB_ETH_RX_CQ_INDEX])
|
||||||
|
|
||||||
|
#define BNX2X_RX_SB_BD_INDEX \
|
||||||
|
(&fp->status_blk->u_status_block.index_values[U_SB_ETH_RX_BD_INDEX])
|
||||||
|
|
||||||
|
#define BNX2X_RX_SB_INDEX_NUM \
|
||||||
|
(((U_SB_ETH_RX_CQ_INDEX << \
|
||||||
|
USTORM_ETH_ST_CONTEXT_CONFIG_CQE_SB_INDEX_NUMBER_SHIFT) & \
|
||||||
|
USTORM_ETH_ST_CONTEXT_CONFIG_CQE_SB_INDEX_NUMBER) | \
|
||||||
|
((U_SB_ETH_RX_BD_INDEX << \
|
||||||
|
USTORM_ETH_ST_CONTEXT_CONFIG_BD_SB_INDEX_NUMBER_SHIFT) & \
|
||||||
|
USTORM_ETH_ST_CONTEXT_CONFIG_BD_SB_INDEX_NUMBER))
|
||||||
|
|
||||||
|
#define BNX2X_TX_SB_INDEX \
|
||||||
|
(&fp->status_blk->c_status_block.index_values[C_SB_ETH_TX_CQ_INDEX])
|
||||||
|
|
||||||
|
/* common */
|
||||||
|
|
||||||
|
struct bnx2x_common {
|
||||||
|
|
||||||
|
u32 chip_id;
|
||||||
|
/* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
|
||||||
|
#define CHIP_ID(bp) (bp->common.chip_id & 0xfffffff0)
|
||||||
|
|
||||||
|
#define CHIP_NUM(bp) (bp->common.chip_id >> 16)
|
||||||
|
#define CHIP_NUM_57710 0x164e
|
||||||
|
#define CHIP_NUM_57711 0x164f
|
||||||
|
#define CHIP_NUM_57711E 0x1650
|
||||||
|
#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)
|
||||||
|
#define CHIP_IS_E1H(bp) (CHIP_IS_57711(bp) || \
|
||||||
|
CHIP_IS_57711E(bp))
|
||||||
|
#define IS_E1H_OFFSET CHIP_IS_E1H(bp)
|
||||||
|
|
||||||
|
#define CHIP_REV(bp) (bp->common.chip_id & 0x0000f000)
|
||||||
|
#define CHIP_REV_Ax 0x00000000
|
||||||
|
/* assume maximum 5 revisions */
|
||||||
|
#define CHIP_REV_IS_SLOW(bp) (CHIP_REV(bp) > 0x00005000)
|
||||||
|
/* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
|
||||||
|
#define CHIP_REV_IS_EMUL(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
||||||
|
!(CHIP_REV(bp) & 0x00001000))
|
||||||
|
/* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
|
||||||
|
#define CHIP_REV_IS_FPGA(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
||||||
|
(CHIP_REV(bp) & 0x00001000))
|
||||||
|
|
||||||
|
#define CHIP_TIME(bp) ((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
|
||||||
|
((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))
|
||||||
|
|
||||||
|
#define CHIP_METAL(bp) (bp->common.chip_id & 0x00000ff0)
|
||||||
|
#define CHIP_BOND_ID(bp) (bp->common.chip_id & 0x0000000f)
|
||||||
|
|
||||||
|
int flash_size;
|
||||||
|
#define NVRAM_1MB_SIZE 0x20000 /* 1M bit in bytes */
|
||||||
|
#define NVRAM_TIMEOUT_COUNT 30000
|
||||||
|
#define NVRAM_PAGE_SIZE 256
|
||||||
|
|
||||||
|
u32 shmem_base;
|
||||||
|
|
||||||
|
u32 hw_config;
|
||||||
|
u32 board;
|
||||||
|
|
||||||
|
u32 bc_ver;
|
||||||
|
|
||||||
|
char *name;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/* end of common */
|
||||||
|
|
||||||
|
/* port */
|
||||||
|
|
||||||
|
struct bnx2x_port {
|
||||||
|
u32 pmf;
|
||||||
|
|
||||||
|
u32 link_config;
|
||||||
|
|
||||||
|
u32 supported;
|
||||||
|
/* link settings - missing defines */
|
||||||
|
#define SUPPORTED_2500baseX_Full (1 << 15)
|
||||||
|
|
||||||
|
u32 advertising;
|
||||||
|
/* link settings - missing defines */
|
||||||
|
#define ADVERTISED_2500baseX_Full (1 << 15)
|
||||||
|
|
||||||
|
u32 phy_addr;
|
||||||
|
|
||||||
|
/* used to synchronize phy accesses */
|
||||||
|
struct mutex phy_mutex;
|
||||||
|
|
||||||
|
u32 port_stx;
|
||||||
|
|
||||||
|
struct nig_stats old_nig_stats;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* end of port */
|
||||||
|
|
||||||
|
#define MAC_STX_NA 0xffffffff
|
||||||
|
|
||||||
|
#ifdef BNX2X_MULTI
|
||||||
|
#define MAX_CONTEXT 16
|
||||||
|
#else
|
||||||
|
#define MAX_CONTEXT 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
union cdu_context {
|
||||||
|
struct eth_context eth;
|
||||||
|
char pad[1024];
|
||||||
|
};
|
||||||
|
|
||||||
|
#define MAX_DMAE_C 6
|
||||||
|
|
||||||
|
/* DMA memory not used in fastpath */
|
||||||
|
struct bnx2x_slowpath {
|
||||||
|
union cdu_context context[MAX_CONTEXT];
|
||||||
|
struct eth_stats_query fw_stats;
|
||||||
|
struct mac_configuration_cmd mac_config;
|
||||||
|
struct mac_configuration_cmd mcast_config;
|
||||||
|
|
||||||
|
/* used by dmae command executer */
|
||||||
|
struct dmae_command dmae[MAX_DMAE_C];
|
||||||
|
|
||||||
|
union mac_stats mac_stats;
|
||||||
|
struct nig_stats nig;
|
||||||
|
struct bnx2x_eth_stats eth_stats;
|
||||||
|
|
||||||
|
u32 wb_comp;
|
||||||
|
#define BNX2X_WB_COMP_VAL 0xe0d0d0ae
|
||||||
|
u32 wb_data[4];
|
||||||
|
};
|
||||||
|
|
||||||
|
#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 */
|
/* attn group wiring */
|
||||||
|
@ -477,9 +608,10 @@ struct bnx2x {
|
||||||
/* Fields used in the tx and intr/napi performance paths
|
/* Fields used in the tx and intr/napi performance paths
|
||||||
* are grouped together in the beginning of the structure
|
* are grouped together in the beginning of the structure
|
||||||
*/
|
*/
|
||||||
struct bnx2x_fastpath *fp;
|
struct bnx2x_fastpath fp[MAX_CONTEXT];
|
||||||
void __iomem *regview;
|
void __iomem *regview;
|
||||||
void __iomem *doorbells;
|
void __iomem *doorbells;
|
||||||
|
#define BNX2X_DB_SIZE (16*2048)
|
||||||
|
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
struct pci_dev *pdev;
|
struct pci_dev *pdev;
|
||||||
|
@ -506,8 +638,8 @@ struct bnx2x {
|
||||||
#define DEF_SB_ID 16
|
#define DEF_SB_ID 16
|
||||||
u16 def_c_idx;
|
u16 def_c_idx;
|
||||||
u16 def_u_idx;
|
u16 def_u_idx;
|
||||||
u16 def_t_idx;
|
|
||||||
u16 def_x_idx;
|
u16 def_x_idx;
|
||||||
|
u16 def_t_idx;
|
||||||
u16 def_att_idx;
|
u16 def_att_idx;
|
||||||
u32 attn_state;
|
u32 attn_state;
|
||||||
struct attn_route attn_group[MAX_DYNAMIC_ATTN_GRPS];
|
struct attn_route attn_group[MAX_DYNAMIC_ATTN_GRPS];
|
||||||
|
@ -522,6 +654,7 @@ struct bnx2x {
|
||||||
struct eth_spe *spq_last_bd;
|
struct eth_spe *spq_last_bd;
|
||||||
u16 *dsb_sp_prod;
|
u16 *dsb_sp_prod;
|
||||||
u16 spq_left; /* serialize spq */
|
u16 spq_left; /* serialize spq */
|
||||||
|
/* used to synchronize spq accesses */
|
||||||
spinlock_t spq_lock;
|
spinlock_t spq_lock;
|
||||||
|
|
||||||
/* Flag for marking that there is either
|
/* Flag for marking that there is either
|
||||||
|
@ -529,7 +662,7 @@ struct bnx2x {
|
||||||
*/
|
*/
|
||||||
u8 stat_pending;
|
u8 stat_pending;
|
||||||
|
|
||||||
/* End of fields used in the performance code paths */
|
/* End of fileds used in the performance code paths */
|
||||||
|
|
||||||
int panic;
|
int panic;
|
||||||
int msglevel;
|
int msglevel;
|
||||||
|
@ -542,8 +675,17 @@ struct bnx2x {
|
||||||
#define USING_DAC_FLAG 0x10
|
#define USING_DAC_FLAG 0x10
|
||||||
#define USING_MSIX_FLAG 0x20
|
#define USING_MSIX_FLAG 0x20
|
||||||
#define ASF_ENABLE_FLAG 0x40
|
#define ASF_ENABLE_FLAG 0x40
|
||||||
|
#define NO_MCP_FLAG 0x100
|
||||||
|
#define BP_NOMCP(bp) (bp->flags & NO_MCP_FLAG)
|
||||||
|
|
||||||
int port;
|
int func;
|
||||||
|
#define BP_PORT(bp) (bp->func % PORT_MAX)
|
||||||
|
#define BP_FUNC(bp) (bp->func)
|
||||||
|
#define BP_E1HVN(bp) (bp->func >> 1)
|
||||||
|
#define BP_L_ID(bp) (BP_E1HVN(bp) << 2)
|
||||||
|
/* assorted E1HVN */
|
||||||
|
#define IS_E1HMF(bp) (bp->e1hmf != 0)
|
||||||
|
#define BP_MAX_QUEUES(bp) (IS_E1HMF(bp) ? 4 : 16)
|
||||||
|
|
||||||
int pm_cap;
|
int pm_cap;
|
||||||
int pcie_cap;
|
int pcie_cap;
|
||||||
|
@ -555,76 +697,19 @@ struct bnx2x {
|
||||||
int timer_interval;
|
int timer_interval;
|
||||||
int current_interval;
|
int current_interval;
|
||||||
|
|
||||||
u32 shmem_base;
|
|
||||||
|
|
||||||
u32 chip_id;
|
|
||||||
/* chip num:16-31, rev:12-15, metal:4-11, bond_id:0-3 */
|
|
||||||
#define CHIP_ID(bp) (bp->chip_id & 0xfffffff0)
|
|
||||||
|
|
||||||
#define CHIP_NUM(bp) (bp->chip_id >> 16)
|
|
||||||
#define CHIP_NUM_57710 0x164e
|
|
||||||
#define CHIP_NUM_57711 0x164f
|
|
||||||
#define CHIP_NUM_57711E 0x1650
|
|
||||||
#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)
|
|
||||||
#define CHIP_IS_E1H(bp) (CHIP_IS_57711(bp) || \
|
|
||||||
CHIP_IS_57711E(bp))
|
|
||||||
#define IS_E1H_OFFSET CHIP_IS_E1H(bp)
|
|
||||||
|
|
||||||
#define CHIP_REV(bp) (bp->chip_id & 0x0000f000)
|
|
||||||
#define CHIP_REV_Ax 0x00000000
|
|
||||||
/* assume maximum 5 revisions */
|
|
||||||
#define CHIP_REV_IS_SLOW(bp) (CHIP_REV(bp) > 0x00005000)
|
|
||||||
/* Emul versions are A=>0xe, B=>0xc, C=>0xa, D=>8, E=>6 */
|
|
||||||
#define CHIP_REV_IS_EMUL(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
|
||||||
!(CHIP_REV(bp) & 0x00001000))
|
|
||||||
/* FPGA versions are A=>0xf, B=>0xd, C=>0xb, D=>9, E=>7 */
|
|
||||||
#define CHIP_REV_IS_FPGA(bp) ((CHIP_REV_IS_SLOW(bp)) && \
|
|
||||||
(CHIP_REV(bp) & 0x00001000))
|
|
||||||
|
|
||||||
#define CHIP_TIME(bp) ((CHIP_REV_IS_EMUL(bp)) ? 2000 : \
|
|
||||||
((CHIP_REV_IS_FPGA(bp)) ? 200 : 1))
|
|
||||||
|
|
||||||
#define CHIP_METAL(bp) (bp->chip_id & 0x00000ff0)
|
|
||||||
#define CHIP_BOND_ID(bp) (bp->chip_id & 0x0000000f)
|
|
||||||
|
|
||||||
u16 fw_seq;
|
u16 fw_seq;
|
||||||
u16 fw_drv_pulse_wr_seq;
|
u16 fw_drv_pulse_wr_seq;
|
||||||
u32 fw_mb;
|
u32 func_stx;
|
||||||
|
|
||||||
u32 hw_config;
|
|
||||||
u32 board;
|
|
||||||
|
|
||||||
struct link_params link_params;
|
struct link_params link_params;
|
||||||
|
|
||||||
struct link_vars link_vars;
|
struct link_vars link_vars;
|
||||||
|
|
||||||
u32 link_config;
|
struct bnx2x_common common;
|
||||||
|
struct bnx2x_port port;
|
||||||
|
|
||||||
u32 supported;
|
u32 mf_config;
|
||||||
/* link settings - missing defines */
|
u16 e1hov;
|
||||||
#define SUPPORTED_2500baseT_Full (1 << 15)
|
u8 e1hmf;
|
||||||
|
|
||||||
u32 phy_addr;
|
|
||||||
|
|
||||||
/* used to synchronize phy accesses */
|
|
||||||
struct mutex phy_mutex;
|
|
||||||
|
|
||||||
u32 phy_id;
|
|
||||||
|
|
||||||
|
|
||||||
u32 advertising;
|
|
||||||
/* link settings - missing defines */
|
|
||||||
#define ADVERTISED_2500baseT_Full (1 << 15)
|
|
||||||
|
|
||||||
|
|
||||||
u32 bc_ver;
|
|
||||||
|
|
||||||
int flash_size;
|
|
||||||
#define NVRAM_1MB_SIZE 0x20000 /* 1M bit in bytes */
|
|
||||||
#define NVRAM_TIMEOUT_COUNT 30000
|
|
||||||
#define NVRAM_PAGE_SIZE 256
|
|
||||||
|
|
||||||
u8 wol;
|
u8 wol;
|
||||||
|
|
||||||
|
@ -641,6 +726,7 @@ struct bnx2x {
|
||||||
u16 rx_ticks;
|
u16 rx_ticks;
|
||||||
|
|
||||||
u32 stats_ticks;
|
u32 stats_ticks;
|
||||||
|
u32 lin_cnt;
|
||||||
|
|
||||||
int state;
|
int state;
|
||||||
#define BNX2X_STATE_CLOSED 0x0
|
#define BNX2X_STATE_CLOSED 0x0
|
||||||
|
@ -650,7 +736,9 @@ struct bnx2x {
|
||||||
#define BNX2X_STATE_CLOSING_WAIT4_HALT 0x4000
|
#define BNX2X_STATE_CLOSING_WAIT4_HALT 0x4000
|
||||||
#define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
|
#define BNX2X_STATE_CLOSING_WAIT4_DELETE 0x5000
|
||||||
#define BNX2X_STATE_CLOSING_WAIT4_UNLOAD 0x6000
|
#define BNX2X_STATE_CLOSING_WAIT4_UNLOAD 0x6000
|
||||||
#define BNX2X_STATE_ERROR 0xF000
|
#define BNX2X_STATE_DISABLED 0xd000
|
||||||
|
#define BNX2X_STATE_DIAG 0xe000
|
||||||
|
#define BNX2X_STATE_ERROR 0xf000
|
||||||
|
|
||||||
int num_queues;
|
int num_queues;
|
||||||
|
|
||||||
|
@ -742,8 +830,10 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
|
|
||||||
/* MC hsi */
|
/* MC hsi */
|
||||||
#define RX_COPY_THRESH 92
|
#define RX_COPY_THRESH 92
|
||||||
#define BCM_PAGE_BITS 12
|
#define BCM_PAGE_SHIFT 12
|
||||||
#define BCM_PAGE_SIZE (1 << BCM_PAGE_BITS)
|
#define BCM_PAGE_SIZE (1 << BCM_PAGE_SHIFT)
|
||||||
|
#define BCM_PAGE_MASK (~(BCM_PAGE_SIZE - 1))
|
||||||
|
#define BCM_PAGE_ALIGN(addr) (((addr) + BCM_PAGE_SIZE - 1) & BCM_PAGE_MASK)
|
||||||
|
|
||||||
#define NUM_TX_RINGS 16
|
#define NUM_TX_RINGS 16
|
||||||
#define TX_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_tx_bd))
|
#define TX_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_tx_bd))
|
||||||
|
@ -795,26 +885,11 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
|
|
||||||
|
|
||||||
/* must be used on a CID before placing it on a HW ring */
|
/* must be used on a CID before placing it on a HW ring */
|
||||||
#define HW_CID(bp, x) (x | (bp->port << 23))
|
#define HW_CID(bp, x) ((BP_PORT(bp) << 23) | (BP_E1HVN(bp) << 17) | x)
|
||||||
|
|
||||||
#define SP_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_spe))
|
#define SP_DESC_CNT (BCM_PAGE_SIZE / sizeof(struct eth_spe))
|
||||||
#define MAX_SP_DESC_CNT (SP_DESC_CNT - 1)
|
#define MAX_SP_DESC_CNT (SP_DESC_CNT - 1)
|
||||||
|
|
||||||
#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
|
|
||||||
|
|
||||||
|
|
||||||
#define BNX2X_BTR 3
|
#define BNX2X_BTR 3
|
||||||
#define MAX_SPQ_PENDING 8
|
#define MAX_SPQ_PENDING 8
|
||||||
|
@ -831,6 +906,31 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
DPM_TRIGER_TYPE); \
|
DPM_TRIGER_TYPE); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* load/unload mode */
|
||||||
|
#define LOAD_NORMAL 0
|
||||||
|
#define LOAD_OPEN 1
|
||||||
|
#define LOAD_DIAG 2
|
||||||
|
#define UNLOAD_NORMAL 0
|
||||||
|
#define UNLOAD_CLOSE 1
|
||||||
|
|
||||||
/* DMAE command defines */
|
/* DMAE command defines */
|
||||||
#define DMAE_CMD_SRC_PCI 0
|
#define DMAE_CMD_SRC_PCI 0
|
||||||
#define DMAE_CMD_SRC_GRC DMAE_COMMAND_SRC
|
#define DMAE_CMD_SRC_GRC DMAE_COMMAND_SRC
|
||||||
|
@ -877,23 +977,48 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
|
|
||||||
#define pbd_tcp_flags(skb) (ntohl(tcp_flag_word(tcp_hdr(skb)))>>16 & 0xff)
|
#define pbd_tcp_flags(skb) (ntohl(tcp_flag_word(tcp_hdr(skb)))>>16 & 0xff)
|
||||||
|
|
||||||
/* stuff added to make the code fit 80Col */
|
/* must be used on a CID before placing it on a HW ring */
|
||||||
|
|
||||||
#define TPA_TYPE_START ETH_FAST_PATH_RX_CQE_START_FLG
|
|
||||||
#define TPA_TYPE_END ETH_FAST_PATH_RX_CQE_END_FLG
|
|
||||||
#define TPA_TYPE(cqe) (cqe->fast_path_cqe.error_type_flags & \
|
|
||||||
(TPA_TYPE_START | TPA_TYPE_END))
|
|
||||||
#define BNX2X_RX_SUM_OK(cqe) \
|
#define BNX2X_RX_SUM_OK(cqe) \
|
||||||
(!(cqe->fast_path_cqe.status_flags & \
|
(!(cqe->fast_path_cqe.status_flags & \
|
||||||
(ETH_FAST_PATH_RX_CQE_IP_XSUM_NO_VALIDATION_FLG | \
|
(ETH_FAST_PATH_RX_CQE_IP_XSUM_NO_VALIDATION_FLG | \
|
||||||
ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG)))
|
ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG)))
|
||||||
|
|
||||||
#define BNX2X_RX_SUM_FIX(cqe) \
|
/* CMNG constants
|
||||||
((le16_to_cpu(cqe->fast_path_cqe.pars_flags.flags) & \
|
derived from lab experiments, and not from system spec calculations !!! */
|
||||||
PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) == \
|
#define DEF_MIN_RATE 100
|
||||||
(1 << PARSING_FLAGS_OVER_ETHERNET_PROTOCOL_SHIFT))
|
/* resolution of the rate shaping timer - 100 usec */
|
||||||
|
#define RS_PERIODIC_TIMEOUT_USEC 100
|
||||||
|
/* resolution of fairness algorithm in usecs -
|
||||||
|
coefficient for clauclating the actuall t fair */
|
||||||
|
#define T_FAIR_COEF 10000000
|
||||||
|
/* number of bytes in single QM arbitration cycle -
|
||||||
|
coeffiecnt for calculating the fairness timer */
|
||||||
|
#define QM_ARB_BYTES 40000
|
||||||
|
#define FAIR_MEM 2
|
||||||
|
|
||||||
|
|
||||||
|
#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
|
||||||
|
|
||||||
|
|
||||||
|
/* 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))
|
||||||
|
|
||||||
#define BNX2X_MC_ASSERT_BITS \
|
#define BNX2X_MC_ASSERT_BITS \
|
||||||
(GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
(GENERAL_ATTEN_OFFSET(TSTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
||||||
GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
GENERAL_ATTEN_OFFSET(USTORM_FATAL_ASSERT_ATTENTION_BIT) | \
|
||||||
|
@ -906,6 +1031,14 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
#define BNX2X_DOORQ_ASSERT \
|
#define BNX2X_DOORQ_ASSERT \
|
||||||
AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT
|
AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT
|
||||||
|
|
||||||
|
#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))
|
||||||
|
|
||||||
#define HW_INTERRUT_ASSERT_SET_0 \
|
#define HW_INTERRUT_ASSERT_SET_0 \
|
||||||
(AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
|
(AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT | \
|
||||||
AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
|
AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT | \
|
||||||
|
@ -954,11 +1087,6 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)
|
AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR)
|
||||||
|
|
||||||
|
|
||||||
#define ETH_RX_ERROR_FALGS (ETH_FAST_PATH_RX_CQE_PHY_DECODE_ERR_FLG | \
|
|
||||||
ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG | \
|
|
||||||
ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG)
|
|
||||||
|
|
||||||
|
|
||||||
#define MULTI_FLAGS \
|
#define MULTI_FLAGS \
|
||||||
(TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY | \
|
(TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_CAPABILITY | \
|
||||||
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY | \
|
TSTORM_ETH_FUNCTION_COMMON_CONFIG_RSS_IPV4_TCP_CAPABILITY | \
|
||||||
|
@ -969,27 +1097,34 @@ int bnx2x_set_gpio(struct bnx2x *bp, int gpio_num, u32 mode);
|
||||||
#define MULTI_MASK 0x7f
|
#define MULTI_MASK 0x7f
|
||||||
|
|
||||||
|
|
||||||
#define U_SB_ETH_RX_CQ_INDEX HC_INDEX_U_ETH_RX_CQ_CONS
|
#define DEF_USB_FUNC_OFF (2 + 2*HC_USTORM_DEF_SB_NUM_INDICES)
|
||||||
#define C_SB_ETH_TX_CQ_INDEX HC_INDEX_C_ETH_TX_CQ_CONS
|
#define DEF_CSB_FUNC_OFF (2 + 2*HC_CSTORM_DEF_SB_NUM_INDICES)
|
||||||
|
#define DEF_XSB_FUNC_OFF (2 + 2*HC_XSTORM_DEF_SB_NUM_INDICES)
|
||||||
|
#define DEF_TSB_FUNC_OFF (2 + 2*HC_TSTORM_DEF_SB_NUM_INDICES)
|
||||||
|
|
||||||
#define C_DEF_SB_SP_INDEX HC_INDEX_DEF_C_ETH_SLOW_PATH
|
#define C_DEF_SB_SP_INDEX HC_INDEX_DEF_C_ETH_SLOW_PATH
|
||||||
|
|
||||||
#define BNX2X_RX_SB_INDEX \
|
|
||||||
&fp->status_blk->u_status_block.index_values[U_SB_ETH_RX_CQ_INDEX]
|
|
||||||
|
|
||||||
#define BNX2X_TX_SB_INDEX \
|
|
||||||
&fp->status_blk->c_status_block.index_values[C_SB_ETH_TX_CQ_INDEX]
|
|
||||||
|
|
||||||
#define BNX2X_SP_DSB_INDEX \
|
#define BNX2X_SP_DSB_INDEX \
|
||||||
&bp->def_status_blk->c_def_status_block.index_values[C_DEF_SB_SP_INDEX]
|
(&bp->def_status_blk->c_def_status_block.index_values[C_DEF_SB_SP_INDEX])
|
||||||
|
|
||||||
|
|
||||||
#define CAM_IS_INVALID(x) \
|
#define CAM_IS_INVALID(x) \
|
||||||
(x.target_table_entry.flags == TSTORM_CAM_TARGET_TABLE_ENTRY_ACTION_TYPE)
|
(x.target_table_entry.flags == TSTORM_CAM_TARGET_TABLE_ENTRY_ACTION_TYPE)
|
||||||
|
|
||||||
#define CAM_INVALIDATE(x) \
|
#define CAM_INVALIDATE(x) \
|
||||||
x.target_table_entry.flags = TSTORM_CAM_TARGET_TABLE_ENTRY_ACTION_TYPE
|
(x.target_table_entry.flags = TSTORM_CAM_TARGET_TABLE_ENTRY_ACTION_TYPE)
|
||||||
|
|
||||||
|
|
||||||
|
/* 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)
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef PXP2_REG_PXP2_INT_STS
|
||||||
|
#define PXP2_REG_PXP2_INT_STS PXP2_REG_PXP2_INT_STS_0
|
||||||
|
#endif
|
||||||
|
|
||||||
/* MISC_REG_RESET_REG - this is here for the hsi to work don't touch */
|
/* MISC_REG_RESET_REG - this is here for the hsi to work don't touch */
|
||||||
|
|
||||||
#endif /* bnx2x.h */
|
#endif /* bnx2x.h */
|
||||||
|
|
|
@ -8,81 +8,220 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#define CSTORM_DEF_SB_HC_DISABLE_OFFSET(port, index)\
|
#define CSTORM_ASSERT_LIST_INDEX_OFFSET \
|
||||||
(0x1922 + (port * 0x40) + (index * 0x4))
|
(IS_E1H_OFFSET? 0x7000 : 0x1000)
|
||||||
#define CSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(port)\
|
#define CSTORM_ASSERT_LIST_OFFSET(idx) \
|
||||||
(0x1900 + (port * 0x40))
|
(IS_E1H_OFFSET? (0x7020 + (idx * 0x10)) : (0x1020 + (idx * 0x10)))
|
||||||
|
#define CSTORM_DEF_SB_HC_DISABLE_OFFSET(function, index) \
|
||||||
|
(IS_E1H_OFFSET? (0x8522 + ((function>>1) * 0x40) + ((function&1) \
|
||||||
|
* 0x100) + (index * 0x4)) : (0x1922 + (function * 0x40) + (index \
|
||||||
|
* 0x4)))
|
||||||
|
#define CSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x8500 + ((function>>1) * 0x40) + ((function&1) \
|
||||||
|
* 0x100)) : (0x1900 + (function * 0x40)))
|
||||||
|
#define CSTORM_DEF_SB_HOST_STATUS_BLOCK_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x8508 + ((function>>1) * 0x40) + ((function&1) \
|
||||||
|
* 0x100)) : (0x1908 + (function * 0x40)))
|
||||||
|
#define CSTORM_FUNCTION_MODE_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0x11e8 : 0xffffffff)
|
||||||
#define CSTORM_HC_BTR_OFFSET(port) \
|
#define CSTORM_HC_BTR_OFFSET(port) \
|
||||||
(0x1984 + (port * 0xc0))
|
(IS_E1H_OFFSET? (0x8704 + (port * 0xf0)) : (0x1984 + (port * 0xc0)))
|
||||||
#define CSTORM_SB_HC_DISABLE_OFFSET(port, cpu_id, index) \
|
#define CSTORM_SB_HC_DISABLE_OFFSET(port, cpu_id, index) \
|
||||||
(0x141a + (port * 0x280) + (cpu_id * 0x28) + (index * 0x4))
|
(IS_E1H_OFFSET? (0x801a + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)) : (0x141a + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)))
|
||||||
#define CSTORM_SB_HC_TIMEOUT_OFFSET(port, cpu_id, index) \
|
#define CSTORM_SB_HC_TIMEOUT_OFFSET(port, cpu_id, index) \
|
||||||
(0x1418 + (port * 0x280) + (cpu_id * 0x28) + (index * 0x4))
|
(IS_E1H_OFFSET? (0x8018 + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)) : (0x1418 + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)))
|
||||||
#define CSTORM_SB_HOST_SB_ADDR_OFFSET(port, cpu_id) \
|
#define CSTORM_SB_HOST_SB_ADDR_OFFSET(port, cpu_id) \
|
||||||
(0x1400 + (port * 0x280) + (cpu_id * 0x28))
|
(IS_E1H_OFFSET? (0x8000 + (port * 0x280) + (cpu_id * 0x28)) : \
|
||||||
#define CSTORM_STATS_FLAGS_OFFSET(port) (0x5108 + (port * 0x8))
|
(0x1400 + (port * 0x280) + (cpu_id * 0x28)))
|
||||||
|
#define CSTORM_SB_HOST_STATUS_BLOCK_OFFSET(port, cpu_id) \
|
||||||
|
(IS_E1H_OFFSET? (0x8008 + (port * 0x280) + (cpu_id * 0x28)) : \
|
||||||
|
(0x1408 + (port * 0x280) + (cpu_id * 0x28)))
|
||||||
|
#define CSTORM_STATS_FLAGS_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x1108 + (function * 0x8)) : (0x5108 + \
|
||||||
|
(function * 0x8)))
|
||||||
|
#define TSTORM_APPROXIMATE_MATCH_MULTICAST_FILTERING_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x31c0 + (function * 0x20)) : 0xffffffff)
|
||||||
|
#define TSTORM_ASSERT_LIST_INDEX_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0xa000 : 0x1000)
|
||||||
|
#define TSTORM_ASSERT_LIST_OFFSET(idx) \
|
||||||
|
(IS_E1H_OFFSET? (0xa020 + (idx * 0x10)) : (0x1020 + (idx * 0x10)))
|
||||||
#define TSTORM_CLIENT_CONFIG_OFFSET(port, client_id) \
|
#define TSTORM_CLIENT_CONFIG_OFFSET(port, client_id) \
|
||||||
(0x1510 + (port * 0x240) + (client_id * 0x20))
|
(IS_E1H_OFFSET? (0x3358 + (port * 0x3e8) + (client_id * 0x28)) : \
|
||||||
#define TSTORM_DEF_SB_HC_DISABLE_OFFSET(port, index)\
|
(0x9c8 + (port * 0x2f8) + (client_id * 0x28)))
|
||||||
(0x138a + (port * 0x28) + (index * 0x4))
|
#define TSTORM_DEF_SB_HC_DISABLE_OFFSET(function, index) \
|
||||||
#define TSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(port)\
|
(IS_E1H_OFFSET? (0xb01a + ((function>>1) * 0x28) + ((function&1) \
|
||||||
(0x1370 + (port * 0x28))
|
* 0xa0) + (index * 0x4)) : (0x141a + (function * 0x28) + (index * \
|
||||||
#define TSTORM_ETH_STATS_QUERY_ADDR_OFFSET(port)\
|
0x4)))
|
||||||
(0x4b70 + (port * 0x8))
|
#define TSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0xb000 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1400 + (function * 0x28)))
|
||||||
|
#define TSTORM_DEF_SB_HOST_STATUS_BLOCK_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0xb008 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1408 + (function * 0x28)))
|
||||||
|
#define TSTORM_ETH_STATS_QUERY_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2b80 + (function * 0x8)) : (0x4b68 + \
|
||||||
|
(function * 0x8)))
|
||||||
#define TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(function) \
|
#define TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(function) \
|
||||||
(0x1418 + (function * 0x30))
|
(IS_E1H_OFFSET? (0x3000 + (function * 0x38)) : (0x1500 + \
|
||||||
|
(function * 0x38)))
|
||||||
|
#define TSTORM_FUNCTION_MODE_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0x1ad0 : 0xffffffff)
|
||||||
#define TSTORM_HC_BTR_OFFSET(port) \
|
#define TSTORM_HC_BTR_OFFSET(port) \
|
||||||
(0x13c4 + (port * 0x18))
|
(IS_E1H_OFFSET? (0xb144 + (port * 0x30)) : (0x1454 + (port * 0x18)))
|
||||||
#define TSTORM_INDIRECTION_TABLE_OFFSET(port)\
|
#define TSTORM_INDIRECTION_TABLE_OFFSET(function) \
|
||||||
(0x22c8 + (port * 0x80))
|
(IS_E1H_OFFSET? (0x12c8 + (function * 0x80)) : (0x22c8 + \
|
||||||
|
(function * 0x80)))
|
||||||
#define TSTORM_INDIRECTION_TABLE_SIZE 0x80
|
#define TSTORM_INDIRECTION_TABLE_SIZE 0x80
|
||||||
#define TSTORM_MAC_FILTER_CONFIG_OFFSET(port)\
|
#define TSTORM_MAC_FILTER_CONFIG_OFFSET(function) \
|
||||||
(0x1420 + (port * 0x30))
|
(IS_E1H_OFFSET? (0x3008 + (function * 0x38)) : (0x1508 + \
|
||||||
#define TSTORM_RCQ_PROD_OFFSET(port, client_id)\
|
(function * 0x38)))
|
||||||
(0x1508 + (port * 0x240) + (client_id * 0x20))
|
#define TSTORM_RX_PRODS_OFFSET(port, client_id) \
|
||||||
#define TSTORM_STATS_FLAGS_OFFSET(port) (0x4b90 + (port * 0x8))
|
(IS_E1H_OFFSET? (0x3350 + (port * 0x3e8) + (client_id * 0x28)) : \
|
||||||
#define USTORM_DEF_SB_HC_DISABLE_OFFSET(port, index)\
|
(0x9c0 + (port * 0x2f8) + (client_id * 0x28)))
|
||||||
(0x191a + (port * 0x28) + (index * 0x4))
|
#define TSTORM_STATS_FLAGS_OFFSET(function) \
|
||||||
#define USTORM_DEF_SB_HOST_SB_ADDR_OFFSET(port)\
|
(IS_E1H_OFFSET? (0x2c00 + (function * 0x8)) : (0x4b88 + \
|
||||||
(0x1900 + (port * 0x28))
|
(function * 0x8)))
|
||||||
|
#define TSTORM_TPA_EXIST_OFFSET (IS_E1H_OFFSET? 0x3b30 : 0x1c20)
|
||||||
|
#define USTORM_AGG_DATA_OFFSET (IS_E1H_OFFSET? 0xa040 : 0x2c10)
|
||||||
|
#define USTORM_AGG_DATA_SIZE (IS_E1H_OFFSET? 0x2440 : 0x1200)
|
||||||
|
#define USTORM_ASSERT_LIST_INDEX_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0x8000 : 0x1000)
|
||||||
|
#define USTORM_ASSERT_LIST_OFFSET(idx) \
|
||||||
|
(IS_E1H_OFFSET? (0x8020 + (idx * 0x10)) : (0x1020 + (idx * 0x10)))
|
||||||
|
#define USTORM_CQE_PAGE_BASE_OFFSET(port, clientId) \
|
||||||
|
(IS_E1H_OFFSET? (0x3298 + (port * 0x258) + (clientId * 0x18)) : \
|
||||||
|
(0x5450 + (port * 0x1c8) + (clientId * 0x18)))
|
||||||
|
#define USTORM_DEF_SB_HC_DISABLE_OFFSET(function, index) \
|
||||||
|
(IS_E1H_OFFSET? (0x951a + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0) + (index * 0x4)) : (0x191a + (function * 0x28) + (index * \
|
||||||
|
0x4)))
|
||||||
|
#define USTORM_DEF_SB_HOST_SB_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x9500 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1900 + (function * 0x28)))
|
||||||
|
#define USTORM_DEF_SB_HOST_STATUS_BLOCK_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x9508 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1908 + (function * 0x28)))
|
||||||
|
#define USTORM_FUNCTION_MODE_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0x2448 : 0xffffffff)
|
||||||
#define USTORM_HC_BTR_OFFSET(port) \
|
#define USTORM_HC_BTR_OFFSET(port) \
|
||||||
(0x1954 + (port * 0xb8))
|
(IS_E1H_OFFSET? (0x9644 + (port * 0xd0)) : (0x1954 + (port * 0xb8)))
|
||||||
#define USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(port)\
|
#define USTORM_MAX_AGG_SIZE_OFFSET(port, clientId) \
|
||||||
(0x5408 + (port * 0x8))
|
(IS_E1H_OFFSET? (0x3290 + (port * 0x258) + (clientId * 0x18)) : \
|
||||||
|
(0x5448 + (port * 0x1c8) + (clientId * 0x18)))
|
||||||
|
#define USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2408 + (function * 0x8)) : (0x5408 + \
|
||||||
|
(function * 0x8)))
|
||||||
#define USTORM_SB_HC_DISABLE_OFFSET(port, cpu_id, index) \
|
#define USTORM_SB_HC_DISABLE_OFFSET(port, cpu_id, index) \
|
||||||
(0x141a + (port * 0x280) + (cpu_id * 0x28) + (index * 0x4))
|
(IS_E1H_OFFSET? (0x901a + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)) : (0x141a + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)))
|
||||||
#define USTORM_SB_HC_TIMEOUT_OFFSET(port, cpu_id, index) \
|
#define USTORM_SB_HC_TIMEOUT_OFFSET(port, cpu_id, index) \
|
||||||
(0x1418 + (port * 0x280) + (cpu_id * 0x28) + (index * 0x4))
|
(IS_E1H_OFFSET? (0x9018 + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)) : (0x1418 + (port * 0x280) + (cpu_id * 0x28) + \
|
||||||
|
(index * 0x4)))
|
||||||
#define USTORM_SB_HOST_SB_ADDR_OFFSET(port, cpu_id) \
|
#define USTORM_SB_HOST_SB_ADDR_OFFSET(port, cpu_id) \
|
||||||
(0x1400 + (port * 0x280) + (cpu_id * 0x28))
|
(IS_E1H_OFFSET? (0x9000 + (port * 0x280) + (cpu_id * 0x28)) : \
|
||||||
#define XSTORM_ASSERT_LIST_INDEX_OFFSET 0x1000
|
(0x1400 + (port * 0x280) + (cpu_id * 0x28)))
|
||||||
#define XSTORM_ASSERT_LIST_OFFSET(idx) (0x1020 + (idx * 0x10))
|
#define USTORM_SB_HOST_STATUS_BLOCK_OFFSET(port, cpu_id) \
|
||||||
#define XSTORM_DEF_SB_HC_DISABLE_OFFSET(port, index)\
|
(IS_E1H_OFFSET? (0x9008 + (port * 0x280) + (cpu_id * 0x28)) : \
|
||||||
(0x141a + (port * 0x28) + (index * 0x4))
|
(0x1408 + (port * 0x280) + (cpu_id * 0x28)))
|
||||||
#define XSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(port)\
|
#define XSTORM_ASSERT_LIST_INDEX_OFFSET \
|
||||||
(0x1400 + (port * 0x28))
|
(IS_E1H_OFFSET? 0x9000 : 0x1000)
|
||||||
#define XSTORM_ETH_STATS_QUERY_ADDR_OFFSET(port)\
|
#define XSTORM_ASSERT_LIST_OFFSET(idx) \
|
||||||
(0x5408 + (port * 0x8))
|
(IS_E1H_OFFSET? (0x9020 + (idx * 0x10)) : (0x1020 + (idx * 0x10)))
|
||||||
|
#define XSTORM_CMNG_PER_PORT_VARS_OFFSET(port) \
|
||||||
|
(IS_E1H_OFFSET? (0x24a8 + (port * 0x40)) : (0x3ba0 + (port * 0x40)))
|
||||||
|
#define XSTORM_DEF_SB_HC_DISABLE_OFFSET(function, index) \
|
||||||
|
(IS_E1H_OFFSET? (0xa01a + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0) + (index * 0x4)) : (0x141a + (function * 0x28) + (index * \
|
||||||
|
0x4)))
|
||||||
|
#define XSTORM_DEF_SB_HOST_SB_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0xa000 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1400 + (function * 0x28)))
|
||||||
|
#define XSTORM_DEF_SB_HOST_STATUS_BLOCK_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0xa008 + ((function>>1) * 0x28) + ((function&1) \
|
||||||
|
* 0xa0)) : (0x1408 + (function * 0x28)))
|
||||||
|
#define XSTORM_E1HOV_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2ab8 + (function * 0x2)) : 0xffffffff)
|
||||||
|
#define XSTORM_ETH_STATS_QUERY_ADDR_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2418 + (function * 0x8)) : (0x3b70 + \
|
||||||
|
(function * 0x8)))
|
||||||
|
#define XSTORM_FAIRNESS_PER_VN_VARS_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2568 + (function * 0x70)) : (0x3c60 + \
|
||||||
|
(function * 0x70)))
|
||||||
|
#define XSTORM_FUNCTION_MODE_OFFSET \
|
||||||
|
(IS_E1H_OFFSET? 0x2ac8 : 0xffffffff)
|
||||||
#define XSTORM_HC_BTR_OFFSET(port) \
|
#define XSTORM_HC_BTR_OFFSET(port) \
|
||||||
(0x1454 + (port * 0x18))
|
(IS_E1H_OFFSET? (0xa144 + (port * 0x30)) : (0x1454 + (port * 0x18)))
|
||||||
#define XSTORM_SPQ_PAGE_BASE_OFFSET(port)\
|
#define XSTORM_RATE_SHAPING_PER_VN_VARS_OFFSET(function) \
|
||||||
(0x5328 + (port * 0x18))
|
(IS_E1H_OFFSET? (0x2528 + (function * 0x70)) : (0x3c20 + \
|
||||||
#define XSTORM_SPQ_PROD_OFFSET(port)\
|
(function * 0x70)))
|
||||||
(0x5330 + (port * 0x18))
|
#define XSTORM_SPQ_PAGE_BASE_OFFSET(function) \
|
||||||
#define XSTORM_STATS_FLAGS_OFFSET(port) (0x53f8 + (port * 0x8))
|
(IS_E1H_OFFSET? (0x2000 + (function * 0x10)) : (0x3328 + \
|
||||||
|
(function * 0x10)))
|
||||||
|
#define XSTORM_SPQ_PROD_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x2008 + (function * 0x10)) : (0x3330 + \
|
||||||
|
(function * 0x10)))
|
||||||
|
#define XSTORM_STATS_FLAGS_OFFSET(function) \
|
||||||
|
(IS_E1H_OFFSET? (0x23d8 + (function * 0x8)) : (0x3b60 + \
|
||||||
|
(function * 0x8)))
|
||||||
#define COMMON_ASM_INVALID_ASSERT_OPCODE 0x0
|
#define COMMON_ASM_INVALID_ASSERT_OPCODE 0x0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This file defines HSI constatnts for the ETH flow
|
* This file defines HSI constatnts for the ETH flow
|
||||||
*/
|
*/
|
||||||
|
#ifdef _EVEREST_MICROCODE
|
||||||
|
#include "microcode_constants.h"
|
||||||
|
#include "eth_rx_bd.h"
|
||||||
|
#include "eth_tx_bd.h"
|
||||||
|
#include "eth_rx_cqe.h"
|
||||||
|
#include "eth_rx_sge.h"
|
||||||
|
#include "eth_rx_cqe_next_page.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* hash types */
|
/* RSS hash types */
|
||||||
#define DEFAULT_HASH_TYPE 0
|
#define DEFAULT_HASH_TYPE 0
|
||||||
#define IPV4_HASH_TYPE 1
|
#define IPV4_HASH_TYPE 1
|
||||||
#define TCP_IPV4_HASH_TYPE 2
|
#define TCP_IPV4_HASH_TYPE 2
|
||||||
#define IPV6_HASH_TYPE 3
|
#define IPV6_HASH_TYPE 3
|
||||||
#define TCP_IPV6_HASH_TYPE 4
|
#define TCP_IPV6_HASH_TYPE 4
|
||||||
|
|
||||||
|
/* Ethernet Ring parmaters */
|
||||||
|
#define X_ETH_LOCAL_RING_SIZE 13
|
||||||
|
#define FIRST_BD_IN_PKT 0
|
||||||
|
#define PARSE_BD_INDEX 1
|
||||||
|
#define NUM_OF_ETH_BDS_IN_PAGE \
|
||||||
|
((PAGE_SIZE) / (STRUCT_SIZE(eth_tx_bd)/8))
|
||||||
|
|
||||||
|
|
||||||
|
/* Rx ring params */
|
||||||
|
#define U_ETH_LOCAL_BD_RING_SIZE (16)
|
||||||
|
#define U_ETH_LOCAL_SGE_RING_SIZE (12)
|
||||||
|
#define U_ETH_SGL_SIZE (8)
|
||||||
|
|
||||||
|
|
||||||
|
#define U_ETH_BDS_PER_PAGE_MASK \
|
||||||
|
((PAGE_SIZE/(STRUCT_SIZE(eth_rx_bd)/8))-1)
|
||||||
|
#define U_ETH_CQE_PER_PAGE_MASK \
|
||||||
|
((PAGE_SIZE/(STRUCT_SIZE(eth_rx_cqe)/8))-1)
|
||||||
|
#define U_ETH_SGES_PER_PAGE_MASK \
|
||||||
|
((PAGE_SIZE/(STRUCT_SIZE(eth_rx_sge)/8))-1)
|
||||||
|
|
||||||
|
#define U_ETH_SGES_PER_PAGE_INVERSE_MASK \
|
||||||
|
(0xFFFF - ((PAGE_SIZE/((STRUCT_SIZE(eth_rx_sge))/8))-1))
|
||||||
|
|
||||||
|
|
||||||
|
#define TU_ETH_CQES_PER_PAGE \
|
||||||
|
(PAGE_SIZE/(STRUCT_SIZE(eth_rx_cqe_next_page)/8))
|
||||||
|
#define U_ETH_BDS_PER_PAGE (PAGE_SIZE/(STRUCT_SIZE(eth_rx_bd)/8))
|
||||||
|
#define U_ETH_SGES_PER_PAGE (PAGE_SIZE/(STRUCT_SIZE(eth_rx_sge)/8))
|
||||||
|
|
||||||
|
#define U_ETH_UNDEFINED_Q 0xFF
|
||||||
|
|
||||||
/* values of command IDs in the ramrod message */
|
/* values of command IDs in the ramrod message */
|
||||||
#define RAMROD_CMD_ID_ETH_PORT_SETUP (80)
|
#define RAMROD_CMD_ID_ETH_PORT_SETUP (80)
|
||||||
#define RAMROD_CMD_ID_ETH_CLIENT_SETUP (85)
|
#define RAMROD_CMD_ID_ETH_CLIENT_SETUP (85)
|
||||||
|
@ -101,8 +240,17 @@
|
||||||
|
|
||||||
#define T_ETH_INDIRECTION_TABLE_SIZE 128
|
#define T_ETH_INDIRECTION_TABLE_SIZE 128
|
||||||
|
|
||||||
|
/*The CRC32 seed, that is used for the hash(reduction) multicast address */
|
||||||
|
#define T_ETH_CRC32_HASH_SEED 0x00000000
|
||||||
|
|
||||||
/* Maximal L2 clients supported */
|
/* Maximal L2 clients supported */
|
||||||
#define ETH_MAX_RX_CLIENTS (18)
|
#define ETH_MAX_RX_CLIENTS_E1 19
|
||||||
|
#define ETH_MAX_RX_CLIENTS_E1H 25
|
||||||
|
|
||||||
|
/* Maximal aggregation queues supported */
|
||||||
|
#define ETH_MAX_AGGREGATION_QUEUES_E1 (32)
|
||||||
|
#define ETH_MAX_AGGREGATION_QUEUES_E1H (64)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This file defines HSI constatnts common to all microcode flows
|
* This file defines HSI constatnts common to all microcode flows
|
||||||
|
@ -110,38 +258,30 @@
|
||||||
|
|
||||||
/* Connection types */
|
/* Connection types */
|
||||||
#define ETH_CONNECTION_TYPE 0
|
#define ETH_CONNECTION_TYPE 0
|
||||||
|
#define TOE_CONNECTION_TYPE 1
|
||||||
|
#define RDMA_CONNECTION_TYPE 2
|
||||||
|
#define ISCSI_CONNECTION_TYPE 3
|
||||||
|
#define FCOE_CONNECTION_TYPE 4
|
||||||
|
#define RESERVED_CONNECTION_TYPE_0 5
|
||||||
|
#define RESERVED_CONNECTION_TYPE_1 6
|
||||||
|
#define RESERVED_CONNECTION_TYPE_2 7
|
||||||
|
|
||||||
|
|
||||||
#define PROTOCOL_STATE_BIT_OFFSET 6
|
#define PROTOCOL_STATE_BIT_OFFSET 6
|
||||||
|
|
||||||
#define ETH_STATE (ETH_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
#define ETH_STATE (ETH_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
||||||
|
#define TOE_STATE (TOE_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
||||||
|
#define RDMA_STATE (RDMA_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
||||||
|
#define ISCSI_STATE \
|
||||||
|
(ISCSI_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
||||||
|
#define FCOE_STATE (FCOE_CONNECTION_TYPE << PROTOCOL_STATE_BIT_OFFSET)
|
||||||
|
|
||||||
/* microcode fixed page page size 4K (chains and ring segments) */
|
/* microcode fixed page page size 4K (chains and ring segments) */
|
||||||
#define MC_PAGE_SIZE (4096)
|
#define MC_PAGE_SIZE (4096)
|
||||||
|
|
||||||
|
|
||||||
/* Host coalescing constants */
|
/* Host coalescing constants */
|
||||||
|
|
||||||
/* IGU constants */
|
|
||||||
#define IGU_PORT_BASE 0x0400
|
|
||||||
|
|
||||||
#define IGU_ADDR_MSIX 0x0000
|
|
||||||
#define IGU_ADDR_INT_ACK 0x0200
|
|
||||||
#define IGU_ADDR_PROD_UPD 0x0201
|
|
||||||
#define IGU_ADDR_ATTN_BITS_UPD 0x0202
|
|
||||||
#define IGU_ADDR_ATTN_BITS_SET 0x0203
|
|
||||||
#define IGU_ADDR_ATTN_BITS_CLR 0x0204
|
|
||||||
#define IGU_ADDR_COALESCE_NOW 0x0205
|
|
||||||
#define IGU_ADDR_SIMD_MASK 0x0206
|
|
||||||
#define IGU_ADDR_SIMD_NOMASK 0x0207
|
|
||||||
#define IGU_ADDR_MSI_CTL 0x0210
|
|
||||||
#define IGU_ADDR_MSI_ADDR_LO 0x0211
|
|
||||||
#define IGU_ADDR_MSI_ADDR_HI 0x0212
|
|
||||||
#define IGU_ADDR_MSI_DATA 0x0213
|
|
||||||
|
|
||||||
#define IGU_INT_ENABLE 0
|
|
||||||
#define IGU_INT_DISABLE 1
|
|
||||||
#define IGU_INT_NOP 2
|
|
||||||
#define IGU_INT_NOP2 3
|
|
||||||
|
|
||||||
/* index numbers */
|
/* index numbers */
|
||||||
#define HC_USTORM_DEF_SB_NUM_INDICES 4
|
#define HC_USTORM_DEF_SB_NUM_INDICES 4
|
||||||
#define HC_CSTORM_DEF_SB_NUM_INDICES 8
|
#define HC_CSTORM_DEF_SB_NUM_INDICES 8
|
||||||
|
@ -152,14 +292,29 @@
|
||||||
|
|
||||||
/* index values - which counterto update */
|
/* index values - which counterto update */
|
||||||
|
|
||||||
|
#define HC_INDEX_U_TOE_RX_CQ_CONS 0
|
||||||
#define HC_INDEX_U_ETH_RX_CQ_CONS 1
|
#define HC_INDEX_U_ETH_RX_CQ_CONS 1
|
||||||
|
#define HC_INDEX_U_ETH_RX_BD_CONS 2
|
||||||
|
#define HC_INDEX_U_FCOE_EQ_CONS 3
|
||||||
|
|
||||||
|
#define HC_INDEX_C_TOE_TX_CQ_CONS 0
|
||||||
#define HC_INDEX_C_ETH_TX_CQ_CONS 1
|
#define HC_INDEX_C_ETH_TX_CQ_CONS 1
|
||||||
|
#define HC_INDEX_C_ISCSI_EQ_CONS 2
|
||||||
|
|
||||||
#define HC_INDEX_DEF_X_SPQ_CONS 0
|
#define HC_INDEX_DEF_X_SPQ_CONS 0
|
||||||
|
|
||||||
|
#define HC_INDEX_DEF_C_RDMA_EQ_CONS 0
|
||||||
|
#define HC_INDEX_DEF_C_RDMA_NAL_PROD 1
|
||||||
#define HC_INDEX_DEF_C_ETH_FW_TX_CQ_CONS 2
|
#define HC_INDEX_DEF_C_ETH_FW_TX_CQ_CONS 2
|
||||||
#define HC_INDEX_DEF_C_ETH_SLOW_PATH 3
|
#define HC_INDEX_DEF_C_ETH_SLOW_PATH 3
|
||||||
|
#define HC_INDEX_DEF_C_ETH_RDMA_CQ_CONS 4
|
||||||
|
#define HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS 5
|
||||||
|
|
||||||
|
#define HC_INDEX_DEF_U_ETH_RDMA_RX_CQ_CONS 0
|
||||||
|
#define HC_INDEX_DEF_U_ETH_ISCSI_RX_CQ_CONS 1
|
||||||
|
#define HC_INDEX_DEF_U_ETH_RDMA_RX_BD_CONS 2
|
||||||
|
#define HC_INDEX_DEF_U_ETH_ISCSI_RX_BD_CONS 3
|
||||||
|
|
||||||
|
|
||||||
/* used by the driver to get the SB offset */
|
/* used by the driver to get the SB offset */
|
||||||
#define USTORM_ID 0
|
#define USTORM_ID 0
|
||||||
|
@ -175,9 +330,50 @@
|
||||||
#define RX_ETH_CQE_TYPE_ETH_FASTPATH (0)
|
#define RX_ETH_CQE_TYPE_ETH_FASTPATH (0)
|
||||||
#define RX_ETH_CQE_TYPE_ETH_RAMROD (1)
|
#define RX_ETH_CQE_TYPE_ETH_RAMROD (1)
|
||||||
|
|
||||||
/* MAC address list size */
|
|
||||||
#define T_MAC_ADDRESS_LIST_SIZE (96)
|
|
||||||
|
|
||||||
|
/**** DEFINES FOR TIMERS/CLOCKS RESOLUTIONS ****/
|
||||||
|
#define EMULATION_FREQUENCY_FACTOR (1600)
|
||||||
|
#define FPGA_FREQUENCY_FACTOR (100)
|
||||||
|
|
||||||
|
#define TIMERS_TICK_SIZE_CHIP (1e-3)
|
||||||
|
#define TIMERS_TICK_SIZE_EMUL \
|
||||||
|
((TIMERS_TICK_SIZE_CHIP)/((EMULATION_FREQUENCY_FACTOR)))
|
||||||
|
#define TIMERS_TICK_SIZE_FPGA \
|
||||||
|
((TIMERS_TICK_SIZE_CHIP)/((FPGA_FREQUENCY_FACTOR)))
|
||||||
|
|
||||||
|
#define TSEMI_CLK1_RESUL_CHIP (1e-3)
|
||||||
|
#define TSEMI_CLK1_RESUL_EMUL \
|
||||||
|
((TSEMI_CLK1_RESUL_CHIP)/(EMULATION_FREQUENCY_FACTOR))
|
||||||
|
#define TSEMI_CLK1_RESUL_FPGA \
|
||||||
|
((TSEMI_CLK1_RESUL_CHIP)/(FPGA_FREQUENCY_FACTOR))
|
||||||
|
|
||||||
|
#define USEMI_CLK1_RESUL_CHIP \
|
||||||
|
(TIMERS_TICK_SIZE_CHIP)
|
||||||
|
#define USEMI_CLK1_RESUL_EMUL \
|
||||||
|
(TIMERS_TICK_SIZE_EMUL)
|
||||||
|
#define USEMI_CLK1_RESUL_FPGA \
|
||||||
|
(TIMERS_TICK_SIZE_FPGA)
|
||||||
|
|
||||||
|
#define XSEMI_CLK1_RESUL_CHIP (1e-3)
|
||||||
|
#define XSEMI_CLK1_RESUL_EMUL \
|
||||||
|
((XSEMI_CLK1_RESUL_CHIP)/(EMULATION_FREQUENCY_FACTOR))
|
||||||
|
#define XSEMI_CLK1_RESUL_FPGA \
|
||||||
|
((XSEMI_CLK1_RESUL_CHIP)/(FPGA_FREQUENCY_FACTOR))
|
||||||
|
|
||||||
|
#define XSEMI_CLK2_RESUL_CHIP (1e-6)
|
||||||
|
#define XSEMI_CLK2_RESUL_EMUL \
|
||||||
|
((XSEMI_CLK2_RESUL_CHIP)/(EMULATION_FREQUENCY_FACTOR))
|
||||||
|
#define XSEMI_CLK2_RESUL_FPGA \
|
||||||
|
((XSEMI_CLK2_RESUL_CHIP)/(FPGA_FREQUENCY_FACTOR))
|
||||||
|
|
||||||
|
#define SDM_TIMER_TICK_RESUL_CHIP (4*(1e-6))
|
||||||
|
#define SDM_TIMER_TICK_RESUL_EMUL \
|
||||||
|
((SDM_TIMER_TICK_RESUL_CHIP)/(EMULATION_FREQUENCY_FACTOR))
|
||||||
|
#define SDM_TIMER_TICK_RESUL_FPGA \
|
||||||
|
((SDM_TIMER_TICK_RESUL_CHIP)/(FPGA_FREQUENCY_FACTOR))
|
||||||
|
|
||||||
|
|
||||||
|
/**** END DEFINES FOR TIMERS/CLOCKS RESOLUTIONS ****/
|
||||||
#define XSTORM_IP_ID_ROLL_HALF 0x8000
|
#define XSTORM_IP_ID_ROLL_HALF 0x8000
|
||||||
#define XSTORM_IP_ID_ROLL_ALL 0
|
#define XSTORM_IP_ID_ROLL_ALL 0
|
||||||
|
|
||||||
|
@ -186,13 +382,16 @@
|
||||||
#define NUM_OF_PROTOCOLS 4
|
#define NUM_OF_PROTOCOLS 4
|
||||||
#define MAX_COS_NUMBER 16
|
#define MAX_COS_NUMBER 16
|
||||||
#define MAX_T_STAT_COUNTER_ID 18
|
#define MAX_T_STAT_COUNTER_ID 18
|
||||||
|
#define MAX_X_STAT_COUNTER_ID 18
|
||||||
#define T_FAIR 1
|
|
||||||
#define FAIR_MEM 2
|
|
||||||
#define RS_PERIODIC_TIMEOUT_IN_SDM_TICS 25
|
|
||||||
|
|
||||||
#define UNKNOWN_ADDRESS 0
|
#define UNKNOWN_ADDRESS 0
|
||||||
#define UNICAST_ADDRESS 1
|
#define UNICAST_ADDRESS 1
|
||||||
#define MULTICAST_ADDRESS 2
|
#define MULTICAST_ADDRESS 2
|
||||||
#define BROADCAST_ADDRESS 3
|
#define BROADCAST_ADDRESS 3
|
||||||
|
|
||||||
|
#define SINGLE_FUNCTION 0
|
||||||
|
#define MULTI_FUNCTION 1
|
||||||
|
|
||||||
|
#define IP_V4 0
|
||||||
|
#define IP_V6 1
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -3572,7 +3572,8 @@ u8 bnx2x_set_led(struct bnx2x *bp, u8 port, u8 mode, u32 speed,
|
||||||
LED_BLINK_RATE_VAL);
|
LED_BLINK_RATE_VAL);
|
||||||
REG_WR(bp, NIG_REG_LED_CONTROL_BLINK_RATE_ENA_P0 +
|
REG_WR(bp, NIG_REG_LED_CONTROL_BLINK_RATE_ENA_P0 +
|
||||||
port*4, 1);
|
port*4, 1);
|
||||||
if (((speed == SPEED_2500) ||
|
if (!CHIP_IS_E1H(bp) &&
|
||||||
|
((speed == SPEED_2500) ||
|
||||||
(speed == SPEED_1000) ||
|
(speed == SPEED_1000) ||
|
||||||
(speed == SPEED_100) ||
|
(speed == SPEED_100) ||
|
||||||
(speed == SPEED_10))) {
|
(speed == SPEED_10))) {
|
||||||
|
@ -3753,6 +3754,14 @@ u8 bnx2x_phy_init(struct link_params *params, struct link_vars *vars)
|
||||||
vars->duplex = DUPLEX_FULL;
|
vars->duplex = DUPLEX_FULL;
|
||||||
vars->flow_ctrl = FLOW_CTRL_NONE;
|
vars->flow_ctrl = FLOW_CTRL_NONE;
|
||||||
vars->link_status = (LINK_STATUS_LINK_UP | LINK_10GTFD);
|
vars->link_status = (LINK_STATUS_LINK_UP | LINK_10GTFD);
|
||||||
|
/* enable on E1.5 FPGA */
|
||||||
|
if (CHIP_IS_E1H(bp)) {
|
||||||
|
vars->flow_ctrl |=
|
||||||
|
(FLOW_CTRL_TX | FLOW_CTRL_RX);
|
||||||
|
vars->link_status |=
|
||||||
|
(LINK_STATUS_TX_FLOW_CONTROL_ENABLED |
|
||||||
|
LINK_STATUS_RX_FLOW_CONTROL_ENABLED);
|
||||||
|
}
|
||||||
|
|
||||||
bnx2x_emac_enable(params, vars, 0);
|
bnx2x_emac_enable(params, vars, 0);
|
||||||
bnx2x_pbf_update(params, vars->flow_ctrl, vars->line_speed);
|
bnx2x_pbf_update(params, vars->flow_ctrl, vars->line_speed);
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -38,21 +38,19 @@
|
||||||
was asserted. */
|
was asserted. */
|
||||||
#define BRB1_REG_NUM_OF_FULL_CYCLES_0 0x600c8
|
#define BRB1_REG_NUM_OF_FULL_CYCLES_0 0x600c8
|
||||||
#define BRB1_REG_NUM_OF_FULL_CYCLES_1 0x600cc
|
#define BRB1_REG_NUM_OF_FULL_CYCLES_1 0x600cc
|
||||||
#define BRB1_REG_NUM_OF_FULL_CYCLES_2 0x600d0
|
|
||||||
#define BRB1_REG_NUM_OF_FULL_CYCLES_3 0x600d4
|
|
||||||
#define BRB1_REG_NUM_OF_FULL_CYCLES_4 0x600d8
|
#define BRB1_REG_NUM_OF_FULL_CYCLES_4 0x600d8
|
||||||
/* [ST 32] The number of cycles that the pause signal towards MAC #0 was
|
/* [ST 32] The number of cycles that the pause signal towards MAC #0 was
|
||||||
asserted. */
|
asserted. */
|
||||||
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_0 0x600b8
|
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_0 0x600b8
|
||||||
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_1 0x600bc
|
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_1 0x600bc
|
||||||
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_2 0x600c0
|
|
||||||
#define BRB1_REG_NUM_OF_PAUSE_CYCLES_3 0x600c4
|
|
||||||
/* [RW 10] Write client 0: De-assert pause threshold. */
|
/* [RW 10] Write client 0: De-assert pause threshold. */
|
||||||
#define BRB1_REG_PAUSE_HIGH_THRESHOLD_0 0x60078
|
#define BRB1_REG_PAUSE_HIGH_THRESHOLD_0 0x60078
|
||||||
#define BRB1_REG_PAUSE_HIGH_THRESHOLD_1 0x6007c
|
#define BRB1_REG_PAUSE_HIGH_THRESHOLD_1 0x6007c
|
||||||
/* [RW 10] Write client 0: Assert pause threshold. */
|
/* [RW 10] Write client 0: Assert pause threshold. */
|
||||||
#define BRB1_REG_PAUSE_LOW_THRESHOLD_0 0x60068
|
#define BRB1_REG_PAUSE_LOW_THRESHOLD_0 0x60068
|
||||||
#define BRB1_REG_PAUSE_LOW_THRESHOLD_1 0x6006c
|
#define BRB1_REG_PAUSE_LOW_THRESHOLD_1 0x6006c
|
||||||
|
/* [R 24] The number of full blocks occpied by port. */
|
||||||
|
#define BRB1_REG_PORT_NUM_OCC_BLOCKS_0 0x60094
|
||||||
/* [RW 1] Reset the design by software. */
|
/* [RW 1] Reset the design by software. */
|
||||||
#define BRB1_REG_SOFT_RESET 0x600dc
|
#define BRB1_REG_SOFT_RESET 0x600dc
|
||||||
/* [R 5] Used to read the value of the XX protection CAM occupancy counter. */
|
/* [R 5] Used to read the value of the XX protection CAM occupancy counter. */
|
||||||
|
@ -513,7 +511,6 @@
|
||||||
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
||||||
the middle of the work */
|
the middle of the work */
|
||||||
#define CSEM_REG_INT_TABLE 0x200400
|
#define CSEM_REG_INT_TABLE 0x200400
|
||||||
#define CSEM_REG_INT_TABLE_SIZE 256
|
|
||||||
/* [ST 24] Statistics register. The number of messages that entered through
|
/* [ST 24] Statistics register. The number of messages that entered through
|
||||||
FIC0 */
|
FIC0 */
|
||||||
#define CSEM_REG_MSG_NUM_FIC0 0x200000
|
#define CSEM_REG_MSG_NUM_FIC0 0x200000
|
||||||
|
@ -587,13 +584,10 @@
|
||||||
#define DBG_REG_DBG_PRTY_MASK 0xc0a8
|
#define DBG_REG_DBG_PRTY_MASK 0xc0a8
|
||||||
/* [R 1] Parity register #0 read */
|
/* [R 1] Parity register #0 read */
|
||||||
#define DBG_REG_DBG_PRTY_STS 0xc09c
|
#define DBG_REG_DBG_PRTY_STS 0xc09c
|
||||||
/* [RW 2] debug only: These bits indicate the credit for PCI request type 4
|
|
||||||
interface; MUST be configured AFTER pci_ext_buffer_strt_addr_lsb/msb are
|
|
||||||
configured */
|
|
||||||
#define DBG_REG_PCI_REQ_CREDIT 0xc120
|
|
||||||
/* [RW 32] Commands memory. The address to command X; row Y is to calculated
|
/* [RW 32] Commands memory. The address to command X; row Y is to calculated
|
||||||
as 14*X+Y. */
|
as 14*X+Y. */
|
||||||
#define DMAE_REG_CMD_MEM 0x102400
|
#define DMAE_REG_CMD_MEM 0x102400
|
||||||
|
#define DMAE_REG_CMD_MEM_SIZE 224
|
||||||
/* [RW 1] If 0 - the CRC-16c initial value is all zeroes; if 1 - the CRC-16c
|
/* [RW 1] If 0 - the CRC-16c initial value is all zeroes; if 1 - the CRC-16c
|
||||||
initial value is all ones. */
|
initial value is all ones. */
|
||||||
#define DMAE_REG_CRC16C_INIT 0x10201c
|
#define DMAE_REG_CRC16C_INIT 0x10201c
|
||||||
|
@ -1626,7 +1620,7 @@
|
||||||
is reset to 0x080; giving a default blink period of approximately 8Hz. */
|
is reset to 0x080; giving a default blink period of approximately 8Hz. */
|
||||||
#define NIG_REG_LED_CONTROL_BLINK_RATE_P0 0x10310
|
#define NIG_REG_LED_CONTROL_BLINK_RATE_P0 0x10310
|
||||||
/* [RW 1] Port0: If set along with the
|
/* [RW 1] Port0: If set along with the
|
||||||
nig_registers_led_control_override_traffic_p0.led_control_override_traffic_p0
|
~nig_registers_led_control_override_traffic_p0.led_control_override_traffic_p0
|
||||||
bit and ~nig_registers_led_control_traffic_p0.led_control_traffic_p0 LED
|
bit and ~nig_registers_led_control_traffic_p0.led_control_traffic_p0 LED
|
||||||
bit; the Traffic LED will blink with the blink rate specified in
|
bit; the Traffic LED will blink with the blink rate specified in
|
||||||
~nig_registers_led_control_blink_rate_p0.led_control_blink_rate_p0 and
|
~nig_registers_led_control_blink_rate_p0.led_control_blink_rate_p0 and
|
||||||
|
@ -1733,9 +1727,21 @@
|
||||||
/* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
|
/* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
|
||||||
for port0 */
|
for port0 */
|
||||||
#define NIG_REG_STAT0_BRB_DISCARD 0x105f0
|
#define NIG_REG_STAT0_BRB_DISCARD 0x105f0
|
||||||
|
/* [WB_R 36] Tx statistics : Number of packets from emac0 or bmac0 that
|
||||||
|
between 1024 and 1522 bytes for port0 */
|
||||||
|
#define NIG_REG_STAT0_EGRESS_MAC_PKT0 0x10750
|
||||||
|
/* [WB_R 36] Tx statistics : Number of packets from emac0 or bmac0 that
|
||||||
|
between 1523 bytes and above for port0 */
|
||||||
|
#define NIG_REG_STAT0_EGRESS_MAC_PKT1 0x10760
|
||||||
/* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
|
/* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
|
||||||
for port1 */
|
for port1 */
|
||||||
#define NIG_REG_STAT1_BRB_DISCARD 0x10628
|
#define NIG_REG_STAT1_BRB_DISCARD 0x10628
|
||||||
|
/* [WB_R 36] Tx statistics : Number of packets from emac1 or bmac1 that
|
||||||
|
between 1024 and 1522 bytes for port1 */
|
||||||
|
#define NIG_REG_STAT1_EGRESS_MAC_PKT0 0x107a0
|
||||||
|
/* [WB_R 36] Tx statistics : Number of packets from emac1 or bmac1 that
|
||||||
|
between 1523 bytes and above for port1 */
|
||||||
|
#define NIG_REG_STAT1_EGRESS_MAC_PKT1 0x107b0
|
||||||
/* [WB_R 64] Rx statistics : User octets received for LP */
|
/* [WB_R 64] Rx statistics : User octets received for LP */
|
||||||
#define NIG_REG_STAT2_BRB_OCTET 0x107e0
|
#define NIG_REG_STAT2_BRB_OCTET 0x107e0
|
||||||
#define NIG_REG_STATUS_INTERRUPT_PORT0 0x10328
|
#define NIG_REG_STATUS_INTERRUPT_PORT0 0x10328
|
||||||
|
@ -1849,7 +1855,6 @@
|
||||||
#define PRS_REG_CFC_SEARCH_INITIAL_CREDIT 0x4011c
|
#define PRS_REG_CFC_SEARCH_INITIAL_CREDIT 0x4011c
|
||||||
/* [RW 24] CID for port 0 if no match */
|
/* [RW 24] CID for port 0 if no match */
|
||||||
#define PRS_REG_CID_PORT_0 0x400fc
|
#define PRS_REG_CID_PORT_0 0x400fc
|
||||||
#define PRS_REG_CID_PORT_1 0x40100
|
|
||||||
/* [RW 32] The CM header for flush message where 'load existed' bit in CFC
|
/* [RW 32] The CM header for flush message where 'load existed' bit in CFC
|
||||||
load response is reset and packet type is 0. Used in packet start message
|
load response is reset and packet type is 0. Used in packet start message
|
||||||
to TCM. */
|
to TCM. */
|
||||||
|
@ -1957,6 +1962,10 @@
|
||||||
#define PXP2_REG_HST_DATA_FIFO_STATUS 0x12047c
|
#define PXP2_REG_HST_DATA_FIFO_STATUS 0x12047c
|
||||||
/* [R 7] Debug only: Number of used entries in the header FIFO */
|
/* [R 7] Debug only: Number of used entries in the header FIFO */
|
||||||
#define PXP2_REG_HST_HEADER_FIFO_STATUS 0x120478
|
#define PXP2_REG_HST_HEADER_FIFO_STATUS 0x120478
|
||||||
|
#define PXP2_REG_PGL_ADDR_88_F0 0x120534
|
||||||
|
#define PXP2_REG_PGL_ADDR_8C_F0 0x120538
|
||||||
|
#define PXP2_REG_PGL_ADDR_90_F0 0x12053c
|
||||||
|
#define PXP2_REG_PGL_ADDR_94_F0 0x120540
|
||||||
#define PXP2_REG_PGL_CONTROL0 0x120490
|
#define PXP2_REG_PGL_CONTROL0 0x120490
|
||||||
#define PXP2_REG_PGL_CONTROL1 0x120514
|
#define PXP2_REG_PGL_CONTROL1 0x120514
|
||||||
/* [RW 32] third dword data of expansion rom request. this register is
|
/* [RW 32] third dword data of expansion rom request. this register is
|
||||||
|
@ -2060,12 +2069,13 @@
|
||||||
#define PXP2_REG_PSWRQ_SRC0_L2P 0x120054
|
#define PXP2_REG_PSWRQ_SRC0_L2P 0x120054
|
||||||
#define PXP2_REG_PSWRQ_TM0_L2P 0x12001c
|
#define PXP2_REG_PSWRQ_TM0_L2P 0x12001c
|
||||||
#define PXP2_REG_PSWRQ_TSDM0_L2P 0x1200e0
|
#define PXP2_REG_PSWRQ_TSDM0_L2P 0x1200e0
|
||||||
/* [RW 25] Interrupt mask register #0 read/write */
|
/* [RW 32] Interrupt mask register #0 read/write */
|
||||||
#define PXP2_REG_PXP2_INT_MASK 0x120578
|
#define PXP2_REG_PXP2_INT_MASK_0 0x120578
|
||||||
/* [R 25] Interrupt register #0 read */
|
/* [R 32] Interrupt register #0 read */
|
||||||
#define PXP2_REG_PXP2_INT_STS 0x12056c
|
#define PXP2_REG_PXP2_INT_STS_0 0x12056c
|
||||||
/* [RC 25] Interrupt register #0 read clear */
|
#define PXP2_REG_PXP2_INT_STS_1 0x120608
|
||||||
#define PXP2_REG_PXP2_INT_STS_CLR 0x120570
|
/* [RC 32] Interrupt register #0 read clear */
|
||||||
|
#define PXP2_REG_PXP2_INT_STS_CLR_0 0x120570
|
||||||
/* [RW 32] Parity mask register #0 read/write */
|
/* [RW 32] Parity mask register #0 read/write */
|
||||||
#define PXP2_REG_PXP2_PRTY_MASK_0 0x120588
|
#define PXP2_REG_PXP2_PRTY_MASK_0 0x120588
|
||||||
#define PXP2_REG_PXP2_PRTY_MASK_1 0x120598
|
#define PXP2_REG_PXP2_PRTY_MASK_1 0x120598
|
||||||
|
@ -2811,22 +2821,6 @@
|
||||||
#define QM_REG_QVOQIDX_97 0x16e490
|
#define QM_REG_QVOQIDX_97 0x16e490
|
||||||
#define QM_REG_QVOQIDX_98 0x16e494
|
#define QM_REG_QVOQIDX_98 0x16e494
|
||||||
#define QM_REG_QVOQIDX_99 0x16e498
|
#define QM_REG_QVOQIDX_99 0x16e498
|
||||||
/* [R 24] Remaining pause timeout for queues 15-0 */
|
|
||||||
#define QM_REG_REMAINPAUSETM0 0x168418
|
|
||||||
/* [R 24] Remaining pause timeout for queues 31-16 */
|
|
||||||
#define QM_REG_REMAINPAUSETM1 0x16841c
|
|
||||||
/* [R 24] Remaining pause timeout for queues 47-32 */
|
|
||||||
#define QM_REG_REMAINPAUSETM2 0x16e69c
|
|
||||||
/* [R 24] Remaining pause timeout for queues 63-48 */
|
|
||||||
#define QM_REG_REMAINPAUSETM3 0x16e6a0
|
|
||||||
/* [R 24] Remaining pause timeout for queues 79-64 */
|
|
||||||
#define QM_REG_REMAINPAUSETM4 0x16e6a4
|
|
||||||
/* [R 24] Remaining pause timeout for queues 95-80 */
|
|
||||||
#define QM_REG_REMAINPAUSETM5 0x16e6a8
|
|
||||||
/* [R 24] Remaining pause timeout for queues 111-96 */
|
|
||||||
#define QM_REG_REMAINPAUSETM6 0x16e6ac
|
|
||||||
/* [R 24] Remaining pause timeout for queues 127-112 */
|
|
||||||
#define QM_REG_REMAINPAUSETM7 0x16e6b0
|
|
||||||
/* [RW 1] Initialization bit command */
|
/* [RW 1] Initialization bit command */
|
||||||
#define QM_REG_SOFT_RESET 0x168428
|
#define QM_REG_SOFT_RESET 0x168428
|
||||||
/* [RW 8] The credit cost per every task in the QM. A value per each VOQ */
|
/* [RW 8] The credit cost per every task in the QM. A value per each VOQ */
|
||||||
|
@ -3826,7 +3820,6 @@
|
||||||
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
||||||
the middle of the work */
|
the middle of the work */
|
||||||
#define TSEM_REG_INT_TABLE 0x180400
|
#define TSEM_REG_INT_TABLE 0x180400
|
||||||
#define TSEM_REG_INT_TABLE_SIZE 256
|
|
||||||
/* [ST 24] Statistics register. The number of messages that entered through
|
/* [ST 24] Statistics register. The number of messages that entered through
|
||||||
FIC0 */
|
FIC0 */
|
||||||
#define TSEM_REG_MSG_NUM_FIC0 0x180000
|
#define TSEM_REG_MSG_NUM_FIC0 0x180000
|
||||||
|
@ -4283,7 +4276,6 @@
|
||||||
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
||||||
the middle of the work */
|
the middle of the work */
|
||||||
#define USEM_REG_INT_TABLE 0x300400
|
#define USEM_REG_INT_TABLE 0x300400
|
||||||
#define USEM_REG_INT_TABLE_SIZE 256
|
|
||||||
/* [ST 24] Statistics register. The number of messages that entered through
|
/* [ST 24] Statistics register. The number of messages that entered through
|
||||||
FIC0 */
|
FIC0 */
|
||||||
#define USEM_REG_MSG_NUM_FIC0 0x300000
|
#define USEM_REG_MSG_NUM_FIC0 0x300000
|
||||||
|
@ -4802,7 +4794,6 @@
|
||||||
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
/* [RW 15] Interrupt table Read and write access to it is not possible in
|
||||||
the middle of the work */
|
the middle of the work */
|
||||||
#define XSEM_REG_INT_TABLE 0x280400
|
#define XSEM_REG_INT_TABLE 0x280400
|
||||||
#define XSEM_REG_INT_TABLE_SIZE 256
|
|
||||||
/* [ST 24] Statistics register. The number of messages that entered through
|
/* [ST 24] Statistics register. The number of messages that entered through
|
||||||
FIC0 */
|
FIC0 */
|
||||||
#define XSEM_REG_MSG_NUM_FIC0 0x280000
|
#define XSEM_REG_MSG_NUM_FIC0 0x280000
|
||||||
|
@ -4930,10 +4921,7 @@
|
||||||
#define EMAC_MDIO_MODE_CLOCK_CNT (0x3fL<<16)
|
#define EMAC_MDIO_MODE_CLOCK_CNT (0x3fL<<16)
|
||||||
#define EMAC_MDIO_MODE_CLOCK_CNT_BITSHIFT 16
|
#define EMAC_MDIO_MODE_CLOCK_CNT_BITSHIFT 16
|
||||||
#define EMAC_MODE_25G_MODE (1L<<5)
|
#define EMAC_MODE_25G_MODE (1L<<5)
|
||||||
#define EMAC_MODE_ACPI_RCVD (1L<<20)
|
|
||||||
#define EMAC_MODE_HALF_DUPLEX (1L<<1)
|
#define EMAC_MODE_HALF_DUPLEX (1L<<1)
|
||||||
#define EMAC_MODE_MPKT (1L<<18)
|
|
||||||
#define EMAC_MODE_MPKT_RCVD (1L<<19)
|
|
||||||
#define EMAC_MODE_PORT_GMII (2L<<2)
|
#define EMAC_MODE_PORT_GMII (2L<<2)
|
||||||
#define EMAC_MODE_PORT_MII (1L<<2)
|
#define EMAC_MODE_PORT_MII (1L<<2)
|
||||||
#define EMAC_MODE_PORT_MII_10M (3L<<2)
|
#define EMAC_MODE_PORT_MII_10M (3L<<2)
|
||||||
|
|
|
@ -1949,6 +1949,8 @@
|
||||||
#define PCI_DEVICE_ID_NX2_5708 0x164c
|
#define PCI_DEVICE_ID_NX2_5708 0x164c
|
||||||
#define PCI_DEVICE_ID_TIGON3_5702FE 0x164d
|
#define PCI_DEVICE_ID_TIGON3_5702FE 0x164d
|
||||||
#define PCI_DEVICE_ID_NX2_57710 0x164e
|
#define PCI_DEVICE_ID_NX2_57710 0x164e
|
||||||
|
#define PCI_DEVICE_ID_NX2_57711 0x164f
|
||||||
|
#define PCI_DEVICE_ID_NX2_57711E 0x1650
|
||||||
#define PCI_DEVICE_ID_TIGON3_5705 0x1653
|
#define PCI_DEVICE_ID_TIGON3_5705 0x1653
|
||||||
#define PCI_DEVICE_ID_TIGON3_5705_2 0x1654
|
#define PCI_DEVICE_ID_TIGON3_5705_2 0x1654
|
||||||
#define PCI_DEVICE_ID_TIGON3_5720 0x1658
|
#define PCI_DEVICE_ID_TIGON3_5720 0x1658
|
||||||
|
|
Loading…
Reference in New Issue