|
@@ -1184,6 +1184,7 @@ error:
|
|
|
static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
|
|
|
{
|
|
|
struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
int ctx_blk_size = cp->ethdev->ctx_blk_size;
|
|
|
int total_mem, blks, i;
|
|
|
|
|
@@ -1201,7 +1202,7 @@ static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
|
|
|
|
|
|
cp->ctx_blks = blks;
|
|
|
cp->ctx_blk_size = ctx_blk_size;
|
|
|
- if (!BNX2X_CHIP_IS_57710(cp->chip_id))
|
|
|
+ if (!CHIP_IS_E1(bp))
|
|
|
cp->ctx_align = 0;
|
|
|
else
|
|
|
cp->ctx_align = ctx_blk_size;
|
|
@@ -1231,6 +1232,7 @@ static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
|
|
|
static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
|
|
|
{
|
|
|
struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
struct cnic_eth_dev *ethdev = cp->ethdev;
|
|
|
u32 start_cid = ethdev->starting_cid;
|
|
|
int i, j, n, ret, pages;
|
|
@@ -1240,7 +1242,7 @@ static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
|
|
|
cp->iscsi_start_cid = start_cid;
|
|
|
cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
cp->max_cid_space += dev->max_fcoe_conn;
|
|
|
cp->fcoe_init_cid = ethdev->fcoe_init_cid;
|
|
|
if (!cp->fcoe_init_cid)
|
|
@@ -1288,7 +1290,7 @@ static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
|
|
|
if (ret)
|
|
|
goto error;
|
|
|
|
|
|
- if (CNIC_SUPPORTS_FCOE(cp)) {
|
|
|
+ if (CNIC_SUPPORTS_FCOE(bp)) {
|
|
|
ret = cnic_alloc_kcq(dev, &cp->kcq2, true);
|
|
|
if (ret)
|
|
|
goto error;
|
|
@@ -1679,6 +1681,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
|
|
|
u32 num)
|
|
|
{
|
|
|
struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
struct iscsi_kwqe_conn_offload1 *req1 =
|
|
|
(struct iscsi_kwqe_conn_offload1 *) wqes[0];
|
|
|
struct iscsi_kwqe_conn_offload2 *req2 =
|
|
@@ -1745,7 +1748,7 @@ static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
|
|
|
XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
|
|
|
ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
|
|
|
ETH_P_8021Q;
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp) &&
|
|
|
cp->port_mode == CHIP_2_PORT_MODE) {
|
|
|
|
|
|
port = 0;
|
|
@@ -2716,7 +2719,7 @@ static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
|
|
|
static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
|
|
|
struct kwqe *wqes[], u32 num_wqes)
|
|
|
{
|
|
|
- struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
int i, work, ret;
|
|
|
u32 opcode;
|
|
|
struct kwqe *kwqe;
|
|
@@ -2724,7 +2727,7 @@ static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
|
|
|
if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
|
|
|
return -EAGAIN; /* bnx2 is down */
|
|
|
|
|
|
- if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
|
|
|
+ if (!BNX2X_CHIP_IS_E2_PLUS(bp))
|
|
|
return -EINVAL;
|
|
|
|
|
|
for (i = 0; i < num_wqes; ) {
|
|
@@ -4902,6 +4905,7 @@ static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
|
|
|
struct client_init_ramrod_data *data)
|
|
|
{
|
|
|
struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
struct cnic_uio_dev *udev = cp->udev;
|
|
|
union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
|
|
|
dma_addr_t buf_map, ring_map = udev->l2_ring_map;
|
|
@@ -4930,7 +4934,7 @@ static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
|
|
|
start_bd->general_data &= ~ETH_TX_START_BD_PARSE_NBDS;
|
|
|
start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp))
|
|
|
pbd_e2->parsing_data = (UNICAST_ADDRESS <<
|
|
|
ETH_TX_PARSE_BD_E2_ETH_ADDR_TYPE_SHIFT);
|
|
|
else
|
|
@@ -4967,6 +4971,7 @@ static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
|
|
|
struct client_init_ramrod_data *data)
|
|
|
{
|
|
|
struct cnic_local *cp = dev->cnic_priv;
|
|
|
+ struct bnx2x *bp = netdev_priv(dev->netdev);
|
|
|
struct cnic_uio_dev *udev = cp->udev;
|
|
|
struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
|
|
|
BNX2_PAGE_SIZE);
|
|
@@ -4975,7 +4980,7 @@ static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
|
|
|
struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
|
|
|
int i;
|
|
|
u32 cli = cp->ethdev->iscsi_l2_client_id;
|
|
|
- int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
|
|
|
+ int cl_qzone_id = BNX2X_CL_QZONE_ID(bp, cli);
|
|
|
u32 val;
|
|
|
dma_addr_t ring_map = udev->l2_ring_map;
|
|
|
|
|
@@ -5040,7 +5045,7 @@ static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
|
|
|
CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
|
|
|
cp->kcq1.sw_prod_idx = 0;
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
|
|
|
|
|
|
cp->kcq1.hw_prod_idx_ptr =
|
|
@@ -5056,7 +5061,7 @@ static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
|
|
|
&sb->sb.running_index[SM_RX_ID];
|
|
|
}
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
|
|
|
|
|
|
cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
|
|
@@ -5091,7 +5096,7 @@ static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
|
|
|
if (ret)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl, dev->max_fcoe_conn,
|
|
|
cp->fcoe_start_cid, 0);
|
|
|
|
|
@@ -5173,10 +5178,10 @@ static void cnic_init_rings(struct cnic_dev *dev)
|
|
|
rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
|
|
|
barrier();
|
|
|
|
|
|
- cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
|
|
|
+ cl_qzone_id = BNX2X_CL_QZONE_ID(bp, cli);
|
|
|
|
|
|
off = BAR_USTRORM_INTMEM +
|
|
|
- (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) ?
|
|
|
+ (BNX2X_CHIP_IS_E2_PLUS(bp) ?
|
|
|
USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
|
|
|
USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
|
|
|
|
|
@@ -5365,7 +5370,7 @@ static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
|
|
|
|
|
|
cnic_free_irq(dev);
|
|
|
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
idx_off = offsetof(struct hc_status_block_e2, index_values) +
|
|
|
(hc_index * sizeof(u16));
|
|
|
|
|
@@ -5556,7 +5561,7 @@ static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
|
|
|
|
|
|
if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
|
|
|
cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
|
|
|
- if (CNIC_SUPPORTS_FCOE(cp)) {
|
|
|
+ if (CNIC_SUPPORTS_FCOE(bp)) {
|
|
|
cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
|
|
|
cdev->max_fcoe_exchanges = ethdev->max_fcoe_exchanges;
|
|
|
}
|
|
@@ -5576,7 +5581,7 @@ static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
|
|
|
cp->stop_cm = cnic_cm_stop_bnx2x_hw;
|
|
|
cp->enable_int = cnic_enable_bnx2x_int;
|
|
|
cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
|
|
|
- if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
|
|
|
+ if (BNX2X_CHIP_IS_E2_PLUS(bp)) {
|
|
|
cp->ack_int = cnic_ack_bnx2x_e2_msix;
|
|
|
cp->arm_int = cnic_arm_bnx2x_e2_msix;
|
|
|
} else {
|