Home
last modified time | relevance | path

Searched refs:etqf (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_fcoe.c644 u32 etqf; in ixgbe_configure_fcoe() local
651 etqf = ETH_P_FCOE | IXGBE_ETQF_FCOE | IXGBE_ETQF_FILTER_EN; in ixgbe_configure_fcoe()
653 etqf |= IXGBE_ETQF_POOL_ENABLE; in ixgbe_configure_fcoe()
654 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT; in ixgbe_configure_fcoe()
656 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FCOE), etqf); in ixgbe_configure_fcoe()
686 etqf = ETH_P_FIP | IXGBE_ETQF_FILTER_EN; in ixgbe_configure_fcoe()
688 etqf |= IXGBE_ETQF_POOL_ENABLE; in ixgbe_configure_fcoe()
689 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT; in ixgbe_configure_fcoe()
691 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FIP), etqf); in ixgbe_configure_fcoe()
/openbmc/qemu/hw/net/
H A Digb_core.c1061 for (*etqf = 0; *etqf < 8; (*etqf)++) { in igb_receive_assign()
1062 if ((core->mac[ETQF0 + *etqf] & E1000_ETQF_FILTER_ENABLE) && in igb_receive_assign()
1064 if ((core->mac[ETQF0 + *etqf] & E1000_ETQF_1588) && in igb_receive_assign()
1459 if (etqf < 8) { in igb_rx_desc_get_packet_type()
1460 pkt_type = BIT(11) | etqf; in igb_rx_desc_get_packet_type()
1535 pkt_type = igb_rx_desc_get_packet_type(core, pkt, etqf); in igb_write_adv_rx_descr()
1547 uint16_t etqf, in igb_write_adv_ps_rx_descr() argument
1576 uint16_t etqf, in igb_write_rx_descr() argument
1898 uint16_t etqf, bool ts) in igb_write_packet_to_guest() argument
1946 etqf, ts, in igb_write_packet_to_guest()
[all …]
/openbmc/linux/drivers/net/ethernet/intel/igb/
H A Digb_ethtool.c2693 u32 etqf; in igb_rxnfc_write_etype_filter() local
2708 etqf = rd32(E1000_ETQF(i)); in igb_rxnfc_write_etype_filter()
2711 etqf |= E1000_ETQF_FILTER_ENABLE; in igb_rxnfc_write_etype_filter()
2712 etqf &= ~E1000_ETQF_ETYPE_MASK; in igb_rxnfc_write_etype_filter()
2715 etqf &= ~E1000_ETQF_QUEUE_MASK; in igb_rxnfc_write_etype_filter()
2718 etqf |= E1000_ETQF_QUEUE_ENABLE; in igb_rxnfc_write_etype_filter()
2720 wr32(E1000_ETQF(i), etqf); in igb_rxnfc_write_etype_filter()
2804 etqf &= ~E1000_ETQF_QUEUE_ENABLE; in igb_clear_etype_filter_regs()
2805 etqf &= ~E1000_ETQF_QUEUE_MASK; in igb_clear_etype_filter_regs()
2806 etqf &= ~E1000_ETQF_FILTER_ENABLE; in igb_clear_etype_filter_regs()
[all …]
/openbmc/linux/drivers/net/ethernet/intel/igc/
H A Digc_main.c3290 u32 etqf = rd32(IGC_ETQF(i)); in igc_get_avail_etype_filter_slot() local
3292 if (!(etqf & IGC_ETQF_FILTER_ENABLE)) in igc_get_avail_etype_filter_slot()
3314 u32 etqf; in igc_add_etype_filter() local
3320 etqf = rd32(IGC_ETQF(index)); in igc_add_etype_filter()
3322 etqf &= ~IGC_ETQF_ETYPE_MASK; in igc_add_etype_filter()
3323 etqf |= etype; in igc_add_etype_filter()
3326 etqf &= ~IGC_ETQF_QUEUE_MASK; in igc_add_etype_filter()
3328 etqf |= IGC_ETQF_QUEUE_ENABLE; in igc_add_etype_filter()
3331 etqf |= IGC_ETQF_FILTER_ENABLE; in igc_add_etype_filter()
3333 wr32(IGC_ETQF(index), etqf); in igc_add_etype_filter()
[all …]