Commit b07833a0 authored by Brett Creeley's avatar Brett Creeley Committed by Jeff Kirsher

ice: Add reg_idx variable in ice_q_vector structure

Every time we want to re-enable interrupts and/or write to a register
that requires an interrupt vector's hardware index we do the following:

vsi->hw_base_vector + q_vector->v_idx

This is a wasteful operation, especially in the hot path. Fix this by
adding a u16 reg_idx member to the ice_q_vector structure and make the
necessary changes to make this work.
Signed-off-by: default avatarBrett Creeley <brett.creeley@intel.com>
Signed-off-by: default avatarAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 8d7189d2
...@@ -297,6 +297,7 @@ struct ice_q_vector { ...@@ -297,6 +297,7 @@ struct ice_q_vector {
struct ice_vsi *vsi; struct ice_vsi *vsi;
u16 v_idx; /* index in the vsi->q_vector array. */ u16 v_idx; /* index in the vsi->q_vector array. */
u16 reg_idx;
u8 num_ring_rx; /* total number of Rx rings in vector */ u8 num_ring_rx; /* total number of Rx rings in vector */
u8 num_ring_tx; /* total number of Tx rings in vector */ u8 num_ring_tx; /* total number of Tx rings in vector */
u8 itr_countdown; /* when 0 should adjust adaptive ITR */ u8 itr_countdown; /* when 0 should adjust adaptive ITR */
...@@ -403,7 +404,7 @@ static inline void ...@@ -403,7 +404,7 @@ static inline void
ice_irq_dynamic_ena(struct ice_hw *hw, struct ice_vsi *vsi, ice_irq_dynamic_ena(struct ice_hw *hw, struct ice_vsi *vsi,
struct ice_q_vector *q_vector) struct ice_q_vector *q_vector)
{ {
u32 vector = (vsi && q_vector) ? vsi->hw_base_vector + q_vector->v_idx : u32 vector = (vsi && q_vector) ? q_vector->reg_idx :
((struct ice_pf *)hw->back)->hw_oicr_idx; ((struct ice_pf *)hw->back)->hw_oicr_idx;
int itr = ICE_ITR_NONE; int itr = ICE_ITR_NONE;
u32 val; u32 val;
......
...@@ -1805,13 +1805,12 @@ static void ice_cfg_itr_gran(struct ice_hw *hw) ...@@ -1805,13 +1805,12 @@ static void ice_cfg_itr_gran(struct ice_hw *hw)
* ice_cfg_itr - configure the initial interrupt throttle values * ice_cfg_itr - configure the initial interrupt throttle values
* @hw: pointer to the HW structure * @hw: pointer to the HW structure
* @q_vector: interrupt vector that's being configured * @q_vector: interrupt vector that's being configured
* @vector: HW vector index to apply the interrupt throttling to
* *
* Configure interrupt throttling values for the ring containers that are * Configure interrupt throttling values for the ring containers that are
* associated with the interrupt vector passed in. * associated with the interrupt vector passed in.
*/ */
static void static void
ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector) ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector)
{ {
ice_cfg_itr_gran(hw); ice_cfg_itr_gran(hw);
...@@ -1825,7 +1824,7 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector) ...@@ -1825,7 +1824,7 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector)
rc->target_itr = ITR_TO_REG(rc->itr_setting); rc->target_itr = ITR_TO_REG(rc->itr_setting);
rc->next_update = jiffies + 1; rc->next_update = jiffies + 1;
rc->current_itr = rc->target_itr; rc->current_itr = rc->target_itr;
wr32(hw, GLINT_ITR(rc->itr_idx, vector), wr32(hw, GLINT_ITR(rc->itr_idx, q_vector->reg_idx),
ITR_REG_ALIGN(rc->current_itr) >> ICE_ITR_GRAN_S); ITR_REG_ALIGN(rc->current_itr) >> ICE_ITR_GRAN_S);
} }
...@@ -1839,7 +1838,7 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector) ...@@ -1839,7 +1838,7 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector)
rc->target_itr = ITR_TO_REG(rc->itr_setting); rc->target_itr = ITR_TO_REG(rc->itr_setting);
rc->next_update = jiffies + 1; rc->next_update = jiffies + 1;
rc->current_itr = rc->target_itr; rc->current_itr = rc->target_itr;
wr32(hw, GLINT_ITR(rc->itr_idx, vector), wr32(hw, GLINT_ITR(rc->itr_idx, q_vector->reg_idx),
ITR_REG_ALIGN(rc->current_itr) >> ICE_ITR_GRAN_S); ITR_REG_ALIGN(rc->current_itr) >> ICE_ITR_GRAN_S);
} }
} }
...@@ -1851,17 +1850,17 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector) ...@@ -1851,17 +1850,17 @@ ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector, u16 vector)
void ice_vsi_cfg_msix(struct ice_vsi *vsi) void ice_vsi_cfg_msix(struct ice_vsi *vsi)
{ {
struct ice_pf *pf = vsi->back; struct ice_pf *pf = vsi->back;
u16 vector = vsi->hw_base_vector;
struct ice_hw *hw = &pf->hw; struct ice_hw *hw = &pf->hw;
u32 txq = 0, rxq = 0; u32 txq = 0, rxq = 0;
int i, q; int i, q;
for (i = 0; i < vsi->num_q_vectors; i++, vector++) { for (i = 0; i < vsi->num_q_vectors; i++) {
struct ice_q_vector *q_vector = vsi->q_vectors[i]; struct ice_q_vector *q_vector = vsi->q_vectors[i];
u16 reg_idx = q_vector->reg_idx;
ice_cfg_itr(hw, q_vector, vector); ice_cfg_itr(hw, q_vector);
wr32(hw, GLINT_RATE(vector), wr32(hw, GLINT_RATE(reg_idx),
ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran)); ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran));
/* Both Transmit Queue Interrupt Cause Control register /* Both Transmit Queue Interrupt Cause Control register
...@@ -1886,7 +1885,7 @@ void ice_vsi_cfg_msix(struct ice_vsi *vsi) ...@@ -1886,7 +1885,7 @@ void ice_vsi_cfg_msix(struct ice_vsi *vsi)
else else
val = QINT_TQCTL_CAUSE_ENA_M | val = QINT_TQCTL_CAUSE_ENA_M |
(itr_idx << QINT_TQCTL_ITR_INDX_S) | (itr_idx << QINT_TQCTL_ITR_INDX_S) |
(vector << QINT_TQCTL_MSIX_INDX_S); (reg_idx << QINT_TQCTL_MSIX_INDX_S);
wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), val); wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), val);
txq++; txq++;
} }
...@@ -1902,7 +1901,7 @@ void ice_vsi_cfg_msix(struct ice_vsi *vsi) ...@@ -1902,7 +1901,7 @@ void ice_vsi_cfg_msix(struct ice_vsi *vsi)
else else
val = QINT_RQCTL_CAUSE_ENA_M | val = QINT_RQCTL_CAUSE_ENA_M |
(itr_idx << QINT_RQCTL_ITR_INDX_S) | (itr_idx << QINT_RQCTL_ITR_INDX_S) |
(vector << QINT_RQCTL_MSIX_INDX_S); (reg_idx << QINT_RQCTL_MSIX_INDX_S);
wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), val); wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), val);
rxq++; rxq++;
} }
...@@ -2065,8 +2064,6 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, ...@@ -2065,8 +2064,6 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
break; break;
for (i = 0; i < vsi->tc_cfg.tc_info[tc].qcount_tx; i++) { for (i = 0; i < vsi->tc_cfg.tc_info[tc].qcount_tx; i++) {
u16 v_idx;
if (!rings || !rings[q_idx] || if (!rings || !rings[q_idx] ||
!rings[q_idx]->q_vector) { !rings[q_idx]->q_vector) {
err = -EINVAL; err = -EINVAL;
...@@ -2088,8 +2085,7 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, ...@@ -2088,8 +2085,7 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
/* trigger a software interrupt for the vector /* trigger a software interrupt for the vector
* associated to the queue to schedule NAPI handler * associated to the queue to schedule NAPI handler
*/ */
v_idx = rings[i]->q_vector->v_idx; wr32(hw, GLINT_DYN_CTL(rings[i]->q_vector->reg_idx),
wr32(hw, GLINT_DYN_CTL(vsi->hw_base_vector + v_idx),
GLINT_DYN_CTL_SWINT_TRIG_M | GLINT_DYN_CTL_SWINT_TRIG_M |
GLINT_DYN_CTL_INTENA_MSK_M); GLINT_DYN_CTL_INTENA_MSK_M);
q_idx++; q_idx++;
...@@ -2208,6 +2204,44 @@ static void ice_vsi_set_tc_cfg(struct ice_vsi *vsi) ...@@ -2208,6 +2204,44 @@ static void ice_vsi_set_tc_cfg(struct ice_vsi *vsi)
vsi->tc_cfg.numtc = ice_dcb_get_num_tc(cfg); vsi->tc_cfg.numtc = ice_dcb_get_num_tc(cfg);
} }
/**
* ice_vsi_set_q_vectors_reg_idx - set the HW register index for all q_vectors
* @vsi: VSI to set the q_vectors register index on
*/
static int
ice_vsi_set_q_vectors_reg_idx(struct ice_vsi *vsi)
{
u16 i;
if (!vsi || !vsi->q_vectors)
return -EINVAL;
ice_for_each_q_vector(vsi, i) {
struct ice_q_vector *q_vector = vsi->q_vectors[i];
if (!q_vector) {
dev_err(&vsi->back->pdev->dev,
"Failed to set reg_idx on q_vector %d VSI %d\n",
i, vsi->vsi_num);
goto clear_reg_idx;
}
q_vector->reg_idx = q_vector->v_idx + vsi->hw_base_vector;
}
return 0;
clear_reg_idx:
ice_for_each_q_vector(vsi, i) {
struct ice_q_vector *q_vector = vsi->q_vectors[i];
if (q_vector)
q_vector->reg_idx = 0;
}
return -EINVAL;
}
/** /**
* ice_vsi_setup - Set up a VSI by a given type * ice_vsi_setup - Set up a VSI by a given type
* @pf: board private structure * @pf: board private structure
...@@ -2273,6 +2307,10 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi, ...@@ -2273,6 +2307,10 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
if (ret) if (ret)
goto unroll_alloc_q_vector; goto unroll_alloc_q_vector;
ret = ice_vsi_set_q_vectors_reg_idx(vsi);
if (ret)
goto unroll_vector_base;
ret = ice_vsi_alloc_rings(vsi); ret = ice_vsi_alloc_rings(vsi);
if (ret) if (ret)
goto unroll_vector_base; goto unroll_vector_base;
...@@ -2311,6 +2349,10 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi, ...@@ -2311,6 +2349,10 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
} else { } else {
vsi->hw_base_vector = pf->vf[vf_id].first_vector_idx; vsi->hw_base_vector = pf->vf[vf_id].first_vector_idx;
} }
ret = ice_vsi_set_q_vectors_reg_idx(vsi);
if (ret)
goto unroll_vector_base;
pf->q_left_tx -= vsi->alloc_txq; pf->q_left_tx -= vsi->alloc_txq;
pf->q_left_rx -= vsi->alloc_rxq; pf->q_left_rx -= vsi->alloc_rxq;
break; break;
...@@ -2623,11 +2665,11 @@ void ice_vsi_dis_irq(struct ice_vsi *vsi) ...@@ -2623,11 +2665,11 @@ void ice_vsi_dis_irq(struct ice_vsi *vsi)
/* disable each interrupt */ /* disable each interrupt */
if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags)) { if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags)) {
for (i = vsi->hw_base_vector; ice_for_each_q_vector(vsi, i)
i < (vsi->num_q_vectors + vsi->hw_base_vector); i++) wr32(hw, GLINT_DYN_CTL(vsi->q_vectors[i]->reg_idx), 0);
wr32(hw, GLINT_DYN_CTL(i), 0);
ice_flush(hw); ice_flush(hw);
ice_for_each_q_vector(vsi, i) ice_for_each_q_vector(vsi, i)
synchronize_irq(pf->msix_entries[i + base].vector); synchronize_irq(pf->msix_entries[i + base].vector);
} }
...@@ -2780,6 +2822,10 @@ int ice_vsi_rebuild(struct ice_vsi *vsi) ...@@ -2780,6 +2822,10 @@ int ice_vsi_rebuild(struct ice_vsi *vsi)
if (ret) if (ret)
goto err_vectors; goto err_vectors;
ret = ice_vsi_set_q_vectors_reg_idx(vsi);
if (ret)
goto err_vectors;
ret = ice_vsi_alloc_rings(vsi); ret = ice_vsi_alloc_rings(vsi);
if (ret) if (ret)
goto err_vectors; goto err_vectors;
...@@ -2801,6 +2847,10 @@ int ice_vsi_rebuild(struct ice_vsi *vsi) ...@@ -2801,6 +2847,10 @@ int ice_vsi_rebuild(struct ice_vsi *vsi)
if (ret) if (ret)
goto err_vectors; goto err_vectors;
ret = ice_vsi_set_q_vectors_reg_idx(vsi);
if (ret)
goto err_vectors;
ret = ice_vsi_alloc_rings(vsi); ret = ice_vsi_alloc_rings(vsi);
if (ret) if (ret)
goto err_vectors; goto err_vectors;
......
...@@ -1592,23 +1592,23 @@ static void ice_free_irq_msix_misc(struct ice_pf *pf) ...@@ -1592,23 +1592,23 @@ static void ice_free_irq_msix_misc(struct ice_pf *pf)
/** /**
* ice_ena_ctrlq_interrupts - enable control queue interrupts * ice_ena_ctrlq_interrupts - enable control queue interrupts
* @hw: pointer to HW structure * @hw: pointer to HW structure
* @v_idx: HW vector index to associate the control queue interrupts with * @reg_idx: HW vector index to associate the control queue interrupts with
*/ */
static void ice_ena_ctrlq_interrupts(struct ice_hw *hw, u16 v_idx) static void ice_ena_ctrlq_interrupts(struct ice_hw *hw, u16 reg_idx)
{ {
u32 val; u32 val;
val = ((v_idx & PFINT_OICR_CTL_MSIX_INDX_M) | val = ((reg_idx & PFINT_OICR_CTL_MSIX_INDX_M) |
PFINT_OICR_CTL_CAUSE_ENA_M); PFINT_OICR_CTL_CAUSE_ENA_M);
wr32(hw, PFINT_OICR_CTL, val); wr32(hw, PFINT_OICR_CTL, val);
/* enable Admin queue Interrupt causes */ /* enable Admin queue Interrupt causes */
val = ((v_idx & PFINT_FW_CTL_MSIX_INDX_M) | val = ((reg_idx & PFINT_FW_CTL_MSIX_INDX_M) |
PFINT_FW_CTL_CAUSE_ENA_M); PFINT_FW_CTL_CAUSE_ENA_M);
wr32(hw, PFINT_FW_CTL, val); wr32(hw, PFINT_FW_CTL, val);
/* enable Mailbox queue Interrupt causes */ /* enable Mailbox queue Interrupt causes */
val = ((v_idx & PFINT_MBX_CTL_MSIX_INDX_M) | val = ((reg_idx & PFINT_MBX_CTL_MSIX_INDX_M) |
PFINT_MBX_CTL_CAUSE_ENA_M); PFINT_MBX_CTL_CAUSE_ENA_M);
wr32(hw, PFINT_MBX_CTL, val); wr32(hw, PFINT_MBX_CTL, val);
...@@ -4214,8 +4214,7 @@ static void ice_tx_timeout(struct net_device *netdev) ...@@ -4214,8 +4214,7 @@ static void ice_tx_timeout(struct net_device *netdev)
/* Read interrupt register */ /* Read interrupt register */
if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags)) if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags))
val = rd32(hw, val = rd32(hw,
GLINT_DYN_CTL(tx_ring->q_vector->v_idx + GLINT_DYN_CTL(tx_ring->q_vector->reg_idx));
tx_ring->vsi->hw_base_vector));
netdev_info(netdev, "tx_timeout: VSI_num: %d, Q %d, NTC: 0x%x, HW_HEAD: 0x%x, NTU: 0x%x, INT: 0x%x\n", netdev_info(netdev, "tx_timeout: VSI_num: %d, Q %d, NTC: 0x%x, HW_HEAD: 0x%x, NTU: 0x%x, INT: 0x%x\n",
vsi->vsi_num, hung_queue, tx_ring->next_to_clean, vsi->vsi_num, hung_queue, tx_ring->next_to_clean,
......
...@@ -1391,7 +1391,7 @@ ice_update_ena_itr(struct ice_vsi *vsi, struct ice_q_vector *q_vector) ...@@ -1391,7 +1391,7 @@ ice_update_ena_itr(struct ice_vsi *vsi, struct ice_q_vector *q_vector)
if (!test_bit(__ICE_DOWN, vsi->state)) if (!test_bit(__ICE_DOWN, vsi->state))
wr32(&vsi->back->hw, wr32(&vsi->back->hw,
GLINT_DYN_CTL(vsi->hw_base_vector + q_vector->v_idx), GLINT_DYN_CTL(q_vector->reg_idx),
itr_val); itr_val);
} }
......
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