mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ice: add method to disable FDIR SWAP option
The SWAP Flag in the FDIR Programming Descriptor doesn't work properly, it is always set and cannot be unset (hardware bug). Thus, add a method to effectively disable the FDIR SWAP option by setting the FDSWAP instead of FDINSET registers. Reviewed-by: Marcin Szycik <marcin.szycik@linux.intel.com> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com> Signed-off-by: Ahmed Zaki <ahmed.zaki@intel.com> Tested-by: Rafal Romanowski <rafal.romanowski@intel.com> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
fb4dae4ca3
commit
f217c187ea
@ -2981,6 +2981,50 @@ ice_add_prof_attrib(struct ice_prof_map *prof, u8 ptg, u16 ptype,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* ice_disable_fd_swap - set register appropriately to disable FD SWAP
|
||||||
|
* @hw: pointer to the HW struct
|
||||||
|
* @prof_id: profile ID
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
ice_disable_fd_swap(struct ice_hw *hw, u8 prof_id)
|
||||||
|
{
|
||||||
|
u16 swap_val, fvw_num;
|
||||||
|
unsigned int i;
|
||||||
|
|
||||||
|
swap_val = ICE_SWAP_VALID;
|
||||||
|
fvw_num = hw->blk[ICE_BLK_FD].es.fvw / ICE_FDIR_REG_SET_SIZE;
|
||||||
|
|
||||||
|
/* Since the SWAP Flag in the Programming Desc doesn't work,
|
||||||
|
* here add method to disable the SWAP Option via setting
|
||||||
|
* certain SWAP and INSET register sets.
|
||||||
|
*/
|
||||||
|
for (i = 0; i < fvw_num ; i++) {
|
||||||
|
u32 raw_swap, raw_in;
|
||||||
|
unsigned int j;
|
||||||
|
|
||||||
|
raw_swap = 0;
|
||||||
|
raw_in = 0;
|
||||||
|
|
||||||
|
for (j = 0; j < ICE_FDIR_REG_SET_SIZE; j++) {
|
||||||
|
raw_swap |= (swap_val++) << (j * BITS_PER_BYTE);
|
||||||
|
raw_in |= ICE_INSET_DFLT << (j * BITS_PER_BYTE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* write the FDIR swap register set */
|
||||||
|
wr32(hw, GLQF_FDSWAP(prof_id, i), raw_swap);
|
||||||
|
|
||||||
|
ice_debug(hw, ICE_DBG_INIT, "swap wr(%d, %d): 0x%x = 0x%08x\n",
|
||||||
|
prof_id, i, GLQF_FDSWAP(prof_id, i), raw_swap);
|
||||||
|
|
||||||
|
/* write the FDIR inset register set */
|
||||||
|
wr32(hw, GLQF_FDINSET(prof_id, i), raw_in);
|
||||||
|
|
||||||
|
ice_debug(hw, ICE_DBG_INIT, "inset wr(%d, %d): 0x%x = 0x%08x\n",
|
||||||
|
prof_id, i, GLQF_FDINSET(prof_id, i), raw_in);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
* ice_add_prof - add profile
|
* ice_add_prof - add profile
|
||||||
* @hw: pointer to the HW struct
|
* @hw: pointer to the HW struct
|
||||||
* @blk: hardware block
|
* @blk: hardware block
|
||||||
@ -2991,6 +3035,7 @@ ice_add_prof_attrib(struct ice_prof_map *prof, u8 ptg, u16 ptype,
|
|||||||
* @es: extraction sequence (length of array is determined by the block)
|
* @es: extraction sequence (length of array is determined by the block)
|
||||||
* @masks: mask for extraction sequence
|
* @masks: mask for extraction sequence
|
||||||
* @symm: symmetric setting for RSS profiles
|
* @symm: symmetric setting for RSS profiles
|
||||||
|
* @fd_swap: enable/disable FDIR paired src/dst fields swap option
|
||||||
*
|
*
|
||||||
* This function registers a profile, which matches a set of PTYPES with a
|
* This function registers a profile, which matches a set of PTYPES with a
|
||||||
* particular extraction sequence. While the hardware profile is allocated
|
* particular extraction sequence. While the hardware profile is allocated
|
||||||
@ -3000,7 +3045,7 @@ ice_add_prof_attrib(struct ice_prof_map *prof, u8 ptg, u16 ptype,
|
|||||||
int
|
int
|
||||||
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
||||||
const struct ice_ptype_attributes *attr, u16 attr_cnt,
|
const struct ice_ptype_attributes *attr, u16 attr_cnt,
|
||||||
struct ice_fv_word *es, u16 *masks, bool symm)
|
struct ice_fv_word *es, u16 *masks, bool symm, bool fd_swap)
|
||||||
{
|
{
|
||||||
u32 bytes = DIV_ROUND_UP(ICE_FLOW_PTYPE_MAX, BITS_PER_BYTE);
|
u32 bytes = DIV_ROUND_UP(ICE_FLOW_PTYPE_MAX, BITS_PER_BYTE);
|
||||||
DECLARE_BITMAP(ptgs_used, ICE_XLT1_CNT);
|
DECLARE_BITMAP(ptgs_used, ICE_XLT1_CNT);
|
||||||
@ -3020,7 +3065,7 @@ ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
|||||||
status = ice_alloc_prof_id(hw, blk, &prof_id);
|
status = ice_alloc_prof_id(hw, blk, &prof_id);
|
||||||
if (status)
|
if (status)
|
||||||
goto err_ice_add_prof;
|
goto err_ice_add_prof;
|
||||||
if (blk == ICE_BLK_FD) {
|
if (blk == ICE_BLK_FD && fd_swap) {
|
||||||
/* For Flow Director block, the extraction sequence may
|
/* For Flow Director block, the extraction sequence may
|
||||||
* need to be altered in the case where there are paired
|
* need to be altered in the case where there are paired
|
||||||
* fields that have no match. This is necessary because
|
* fields that have no match. This is necessary because
|
||||||
@ -3031,6 +3076,8 @@ ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
|||||||
status = ice_update_fd_swap(hw, prof_id, es);
|
status = ice_update_fd_swap(hw, prof_id, es);
|
||||||
if (status)
|
if (status)
|
||||||
goto err_ice_add_prof;
|
goto err_ice_add_prof;
|
||||||
|
} else if (blk == ICE_BLK_FD) {
|
||||||
|
ice_disable_fd_swap(hw, prof_id);
|
||||||
}
|
}
|
||||||
status = ice_update_prof_masking(hw, blk, prof_id, masks);
|
status = ice_update_prof_masking(hw, blk, prof_id, masks);
|
||||||
if (status)
|
if (status)
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include "ice_type.h"
|
#include "ice_type.h"
|
||||||
|
|
||||||
|
#define ICE_FDIR_REG_SET_SIZE 4
|
||||||
|
|
||||||
int
|
int
|
||||||
ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access);
|
ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access);
|
||||||
void ice_release_change_lock(struct ice_hw *hw);
|
void ice_release_change_lock(struct ice_hw *hw);
|
||||||
@ -42,7 +44,7 @@ bool ice_hw_ptype_ena(struct ice_hw *hw, u16 ptype);
|
|||||||
int
|
int
|
||||||
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
|
||||||
const struct ice_ptype_attributes *attr, u16 attr_cnt,
|
const struct ice_ptype_attributes *attr, u16 attr_cnt,
|
||||||
struct ice_fv_word *es, u16 *masks, bool symm);
|
struct ice_fv_word *es, u16 *masks, bool symm, bool fd_swap);
|
||||||
struct ice_prof_map *
|
struct ice_prof_map *
|
||||||
ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
|
ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
|
||||||
int
|
int
|
||||||
|
@ -1400,7 +1400,7 @@ ice_flow_add_prof_sync(struct ice_hw *hw, enum ice_block blk,
|
|||||||
/* Add a HW profile for this flow profile */
|
/* Add a HW profile for this flow profile */
|
||||||
status = ice_add_prof(hw, blk, prof_id, (u8 *)params->ptypes,
|
status = ice_add_prof(hw, blk, prof_id, (u8 *)params->ptypes,
|
||||||
params->attr, params->attr_cnt, params->es,
|
params->attr, params->attr_cnt, params->es,
|
||||||
params->mask, symm);
|
params->mask, symm, true);
|
||||||
if (status) {
|
if (status) {
|
||||||
ice_debug(hw, ICE_DBG_FLOW, "Error adding a HW flow profile\n");
|
ice_debug(hw, ICE_DBG_FLOW, "Error adding a HW flow profile\n");
|
||||||
goto out;
|
goto out;
|
||||||
|
Loading…
Reference in New Issue
Block a user