Searched refs:vind (Results 1 - 7 of 7) sorted by relevance

/linux-master/drivers/net/ethernet/intel/igb/
H A De1000_mac.h40 s32 igb_vfta_set(struct e1000_hw *hw, u32 vid, u32 vind,
H A De1000_mac.c167 * @vind: VMDq output index that maps queue to VLAN id
174 s32 igb_vfta_set(struct e1000_hw *hw, u32 vlan, u32 vind, argument
181 if ((vlan > 4095) || (vind > 7))
210 * set the vind bit in the matching VLVFB
212 * clear the pool bit and possibly the vind
227 bits |= BIT(E1000_VLVF_POOLSEL_SHIFT + vind);
232 bits ^= BIT(E1000_VLVF_POOLSEL_SHIFT + vind);
/linux-master/drivers/net/ethernet/wangxun/libwx/
H A Dwx_hw.c2008 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
2015 static int wx_set_vlvf(struct wx *wx, u32 vlan, u32 vind, bool vlan_on, argument
2024 * set the vind bit in the matching VLVFB
2026 * clear the pool bit and possibly the vind
2039 if (vind < 32) {
2041 bits |= (1 << vind);
2045 bits |= (1 << (vind - 32));
2050 if (vind < 32) {
2052 bits &= ~(1 << vind);
2057 bits &= ~(1 << (vind
2083 wx_set_vfta(struct wx *wx, u32 vlan, u32 vind, bool vlan_on) argument
[all...]
/linux-master/drivers/net/ethernet/intel/ixgbevf/
H A Dvf.c631 * @vind: unused by VF drivers
634 static s32 ixgbevf_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind, argument
665 * @vind: unused
668 static s32 ixgbevf_hv_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind, argument
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_common.h71 u32 vind, bool vlan_on, bool vlvf_bypass);
H A Dixgbe_common.c3112 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
3118 int ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind, argument
3124 if ((vlan > 4095) || (vind > 63))
3154 * set the vind bit in the matching VLVFB
3156 * clear the pool bit and possibly the vind
3168 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32));
3171 bits |= BIT(vind % 32);
3176 bits ^= BIT(vind % 32);
3179 !IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + 1 - vind / 32))) {
3189 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 3
[all...]
H A Dixgbe_82598.c833 * @vind: VMDq output index that maps queue to VLAN id in VFTA
839 static int ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind, argument
860 bits |= (vind << bitindex);

Completed in 194 milliseconds