forked from Minki/linux
i40e/i40evf: add Tx pre queue disable function
Add a function which indicates our intention to enable or disable a particular Tx queue. Also add a function to notify the device's Tx unit that we're about to enable or disable a Tx queue. Change-ID: I6adf3cbb5bb3e3c984d1ec969e06577c19ef296d Signed-off-by: Matt Jared <matthew.a.jared@intel.com> Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Tested-by: Jim Young <jamesx.m.young@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
e03af1e1cb
commit
351499ab2e
@ -656,6 +656,37 @@ i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* i40e_pre_tx_queue_cfg - pre tx queue configure
|
||||
* @hw: pointer to the HW structure
|
||||
* @queue: target pf queue index
|
||||
* @enable: state change request
|
||||
*
|
||||
* Handles hw requirement to indicate intention to enable
|
||||
* or disable target queue.
|
||||
**/
|
||||
void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable)
|
||||
{
|
||||
u32 reg_val = rd32(hw, I40E_PFLAN_QALLOC);
|
||||
u32 first_queue = (reg_val & I40E_PFLAN_QALLOC_FIRSTQ_MASK);
|
||||
u32 abs_queue_idx = first_queue + queue;
|
||||
u32 reg_block = 0;
|
||||
|
||||
if (abs_queue_idx >= 128)
|
||||
reg_block = abs_queue_idx / 128;
|
||||
|
||||
reg_val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
|
||||
reg_val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
|
||||
reg_val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
|
||||
|
||||
if (enable)
|
||||
reg_val |= I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK;
|
||||
else
|
||||
reg_val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
|
||||
|
||||
wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), reg_val);
|
||||
}
|
||||
|
||||
/**
|
||||
* i40e_get_media_type - Gets media type
|
||||
* @hw: pointer to the hardware structure
|
||||
|
@ -3183,6 +3183,12 @@ static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
|
||||
|
||||
pf_q = vsi->base_queue;
|
||||
for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
|
||||
|
||||
/* warn the TX unit of coming changes */
|
||||
i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
|
||||
if (!enable)
|
||||
udelay(10);
|
||||
|
||||
for (j = 0; j < 50; j++) {
|
||||
tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
|
||||
if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
|
||||
|
@ -221,6 +221,7 @@ bool i40e_get_link_status(struct i40e_hw *hw);
|
||||
i40e_status i40e_get_mac_addr(struct i40e_hw *hw,
|
||||
u8 *mac_addr);
|
||||
i40e_status i40e_validate_mac_addr(u8 *mac_addr);
|
||||
void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable);
|
||||
/* prototype for functions used for NVM access */
|
||||
i40e_status i40e_init_nvm(struct i40e_hw *hw);
|
||||
i40e_status i40e_acquire_nvm(struct i40e_hw *hw,
|
||||
|
@ -1585,6 +1585,14 @@
|
||||
#define I40E_GLLAN_TSOMSK_M 0x000442DC
|
||||
#define I40E_GLLAN_TSOMSK_M_TCPMSKM_SHIFT 0
|
||||
#define I40E_GLLAN_TSOMSK_M_TCPMSKM_MASK (0xFFF << I40E_GLLAN_TSOMSK_M_TCPMSKM_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS(_i) (0x000E6500 + ((_i) * 4)) /* i=0..11 */
|
||||
#define I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT 0
|
||||
#define I40E_GLLAN_TXPRE_QDIS_QINDX_MASK (0x7FF << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS_SET_QDIS_SHIFT 30
|
||||
#define I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK (0x1 << I40E_GLLAN_TXPRE_QDIS_SET_QDIS_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_SHIFT 31
|
||||
#define I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK (0x1 << I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_SHIFT)
|
||||
|
||||
#define I40E_PFLAN_QALLOC 0x001C0400
|
||||
#define I40E_PFLAN_QALLOC_FIRSTQ_SHIFT 0
|
||||
#define I40E_PFLAN_QALLOC_FIRSTQ_MASK (0x7FF << I40E_PFLAN_QALLOC_FIRSTQ_SHIFT)
|
||||
|
@ -1585,6 +1585,14 @@
|
||||
#define I40E_GLLAN_TSOMSK_M 0x000442DC
|
||||
#define I40E_GLLAN_TSOMSK_M_TCPMSKM_SHIFT 0
|
||||
#define I40E_GLLAN_TSOMSK_M_TCPMSKM_MASK (0xFFF << I40E_GLLAN_TSOMSK_M_TCPMSKM_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS(_i) (0x000E6500 + ((_i) * 4)) /* i=0..11 */
|
||||
#define I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT 0
|
||||
#define I40E_GLLAN_TXPRE_QDIS_QINDX_MASK (0x7FF << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS_SET_QDIS_SHIFT 30
|
||||
#define I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK (0x1 << I40E_GLLAN_TXPRE_QDIS_SET_QDIS_SHIFT)
|
||||
#define I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_SHIFT 31
|
||||
#define I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK (0x1 << I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_SHIFT)
|
||||
|
||||
#define I40E_PFLAN_QALLOC 0x001C0400
|
||||
#define I40E_PFLAN_QALLOC_FIRSTQ_SHIFT 0
|
||||
#define I40E_PFLAN_QALLOC_FIRSTQ_MASK (0x7FF << I40E_PFLAN_QALLOC_FIRSTQ_SHIFT)
|
||||
|
Loading…
Reference in New Issue
Block a user