Home
last modified time | relevance | path

Searched refs:IXGBE_RXDCTL (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/net/ixgbe/
H A Dixgbe_regs.h108 {IXGBE_RXDCTL(0), 64, 0x40, "IXGBE_RXDCTL"},
H A Dixgbe_rxtx.c5396 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx)); in ixgbe_dev_rx_queue_start()
5398 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl); in ixgbe_dev_rx_queue_start()
5404 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx)); in ixgbe_dev_rx_queue_start()
5433 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx)); in ixgbe_dev_rx_queue_stop()
5435 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), rxdctl); in ixgbe_dev_rx_queue_stop()
5441 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx)); in ixgbe_dev_rx_queue_stop()
H A Dixgbe_ethdev.c1986 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue)); in ixgbe_vlan_hw_strip_disable()
1988 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl); in ixgbe_vlan_hw_strip_disable()
2010 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue)); in ixgbe_vlan_hw_strip_enable()
2012 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl); in ixgbe_vlan_hw_strip_enable()
2103 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx)); in ixgbe_vlan_hw_strip_config()
2111 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl); in ixgbe_vlan_hw_strip_config()
5542 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue)); in ixgbevf_vlan_strip_queue_set()
5547 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl); in ixgbevf_vlan_strip_queue_set()
/f-stack/dpdk/drivers/net/ixgbe/base/
H A Dixgbe_common.c1099 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); in ixgbe_stop_adapter_generic()
1102 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val); in ixgbe_stop_adapter_generic()
H A Dixgbe_type.h375 #define IXGBE_RXDCTL(_i) (((_i) < 64) ? (0x01028 + ((_i) * 0x40)) : \ macro