Commit 5bf945a8 authored by Michael Chan's avatar Michael Chan Committed by David S. Miller

cnic: Eliminate CNIC_PORT macro and port_mode in local struct.

Use BP_PORT and chip_port_mode directly from bnx2x.h to avoid duplication.
Signed-off-by: default avatarMichael Chan <mchan@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5e65789f
...@@ -1695,7 +1695,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[], ...@@ -1695,7 +1695,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
struct iscsi_context *ictx; struct iscsi_context *ictx;
struct regpair context_addr; struct regpair context_addr;
int i, j, n = 2, n_max; int i, j, n = 2, n_max;
u8 port = CNIC_PORT(cp); u8 port = BP_PORT(bp);
ctx->ctx_flags = 0; ctx->ctx_flags = 0;
if (!req2->num_additional_wqes) if (!req2->num_additional_wqes)
...@@ -1750,7 +1750,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[], ...@@ -1750,7 +1750,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
ictx->xstorm_st_context.common.ethernet.reserved_vlan_type = ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
ETH_P_8021Q; ETH_P_8021Q;
if (BNX2X_CHIP_IS_E2_PLUS(bp) && if (BNX2X_CHIP_IS_E2_PLUS(bp) &&
cp->port_mode == CHIP_2_PORT_MODE) { bp->common.chip_port_mode == CHIP_2_PORT_MODE) {
port = 0; port = 0;
} }
...@@ -3050,8 +3050,8 @@ static irqreturn_t cnic_irq(int irq, void *dev_instance) ...@@ -3050,8 +3050,8 @@ static irqreturn_t cnic_irq(int irq, void *dev_instance)
static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm, static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
u16 index, u8 op, u8 update) u16 index, u8 op, u8 update)
{ {
struct cnic_local *cp = dev->cnic_priv; struct bnx2x *bp = netdev_priv(dev->netdev);
u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 + u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp) * 32 +
COMMAND_REG_INT_ACK); COMMAND_REG_INT_ACK);
struct igu_ack_register igu_ack; struct igu_ack_register igu_ack;
...@@ -4231,7 +4231,7 @@ static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev) ...@@ -4231,7 +4231,7 @@ static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
struct cnic_local *cp = dev->cnic_priv; struct cnic_local *cp = dev->cnic_priv;
struct bnx2x *bp = netdev_priv(dev->netdev); struct bnx2x *bp = netdev_priv(dev->netdev);
u32 pfid = cp->pfid; u32 pfid = cp->pfid;
u32 port = CNIC_PORT(cp); u32 port = BP_PORT(bp);
cnic_init_bnx2x_mac(dev); cnic_init_bnx2x_mac(dev);
cnic_bnx2x_set_tcp_options(dev, 0, 1); cnic_bnx2x_set_tcp_options(dev, 0, 1);
...@@ -5090,7 +5090,6 @@ static int cnic_start_bnx2x_hw(struct cnic_dev *dev) ...@@ -5090,7 +5090,6 @@ static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
u32 pfid; u32 pfid;
dev->stats_addr = ethdev->addr_drv_info_to_mcp; dev->stats_addr = ethdev->addr_drv_info_to_mcp;
cp->port_mode = bp->common.chip_port_mode;
cp->pfid = bp->pfid; cp->pfid = bp->pfid;
cp->func = bp->pf_num; cp->func = bp->pf_num;
...@@ -5190,7 +5189,7 @@ static void cnic_init_rings(struct cnic_dev *dev) ...@@ -5190,7 +5189,7 @@ static void cnic_init_rings(struct cnic_dev *dev)
off = BAR_USTRORM_INTMEM + off = BAR_USTRORM_INTMEM +
(BNX2X_CHIP_IS_E2_PLUS(bp) ? (BNX2X_CHIP_IS_E2_PLUS(bp) ?
USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) : USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli)); USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp), cli));
for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++) for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]); CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
......
...@@ -304,7 +304,6 @@ struct cnic_local { ...@@ -304,7 +304,6 @@ struct cnic_local {
u32 chip_id; u32 chip_id;
int func; int func;
u32 pfid; u32 pfid;
u8 port_mode;
u32 shmem_base; u32 shmem_base;
...@@ -399,7 +398,6 @@ struct bnx2x_bd_chain_next { ...@@ -399,7 +398,6 @@ struct bnx2x_bd_chain_next {
#define ETH_MAX_RX_CLIENTS_E2 ETH_MAX_RX_CLIENTS_E1H #define ETH_MAX_RX_CLIENTS_E2 ETH_MAX_RX_CLIENTS_E1H
#endif #endif
#define CNIC_PORT(cp) ((cp)->pfid & 1)
#define CNIC_FUNC(cp) ((cp)->func) #define CNIC_FUNC(cp) ((cp)->func)
#define BNX2X_HW_CID(bp, x) ((BP_PORT(bp) << 23) | \ #define BNX2X_HW_CID(bp, x) ((BP_PORT(bp) << 23) | \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment