|
@@ -5913,12 +5913,12 @@ unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp)
|
|
|
return bp->hw_resc.max_cp_rings;
|
|
|
}
|
|
|
|
|
|
-void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max)
|
|
|
+unsigned int bnxt_get_max_func_cp_rings_for_en(struct bnxt *bp)
|
|
|
{
|
|
|
- bp->hw_resc.max_cp_rings = max;
|
|
|
+ return bp->hw_resc.max_cp_rings - bnxt_get_ulp_msix_num(bp);
|
|
|
}
|
|
|
|
|
|
-unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
|
|
|
+static unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
|
|
|
{
|
|
|
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
|
|
|
|
@@ -6684,6 +6684,8 @@ static int bnxt_hwrm_if_change(struct bnxt *bp, bool up)
|
|
|
hw_resc->resv_rx_rings = 0;
|
|
|
hw_resc->resv_hw_ring_grps = 0;
|
|
|
hw_resc->resv_vnics = 0;
|
|
|
+ bp->tx_nr_rings = 0;
|
|
|
+ bp->rx_nr_rings = 0;
|
|
|
}
|
|
|
return rc;
|
|
|
}
|
|
@@ -8629,7 +8631,8 @@ static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx,
|
|
|
|
|
|
*max_tx = hw_resc->max_tx_rings;
|
|
|
*max_rx = hw_resc->max_rx_rings;
|
|
|
- *max_cp = min_t(int, hw_resc->max_irqs, hw_resc->max_cp_rings);
|
|
|
+ *max_cp = min_t(int, bnxt_get_max_func_cp_rings_for_en(bp),
|
|
|
+ hw_resc->max_irqs);
|
|
|
*max_cp = min_t(int, *max_cp, hw_resc->max_stat_ctxs);
|
|
|
max_ring_grps = hw_resc->max_hw_ring_grps;
|
|
|
if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) {
|
|
@@ -8769,20 +8772,25 @@ static int bnxt_init_dflt_ring_mode(struct bnxt *bp)
|
|
|
if (bp->tx_nr_rings)
|
|
|
return 0;
|
|
|
|
|
|
+ bnxt_ulp_irq_stop(bp);
|
|
|
+ bnxt_clear_int_mode(bp);
|
|
|
rc = bnxt_set_dflt_rings(bp, true);
|
|
|
if (rc) {
|
|
|
netdev_err(bp->dev, "Not enough rings available.\n");
|
|
|
- return rc;
|
|
|
+ goto init_dflt_ring_err;
|
|
|
}
|
|
|
rc = bnxt_init_int_mode(bp);
|
|
|
if (rc)
|
|
|
- return rc;
|
|
|
+ goto init_dflt_ring_err;
|
|
|
+
|
|
|
bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
|
|
|
if (bnxt_rfs_supported(bp) && bnxt_rfs_capable(bp)) {
|
|
|
bp->flags |= BNXT_FLAG_RFS;
|
|
|
bp->dev->features |= NETIF_F_NTUPLE;
|
|
|
}
|
|
|
- return 0;
|
|
|
+init_dflt_ring_err:
|
|
|
+ bnxt_ulp_irq_restart(bp, rc);
|
|
|
+ return rc;
|
|
|
}
|
|
|
|
|
|
int bnxt_restore_pf_fw_resources(struct bnxt *bp)
|