Lines Matching refs:rxdctl
1655 u32 rxdctl; in ixgbevf_disable_rx_queue() local
1660 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_disable_rx_queue()
1661 rxdctl &= ~IXGBE_RXDCTL_ENABLE; in ixgbevf_disable_rx_queue()
1664 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl); in ixgbevf_disable_rx_queue()
1669 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_disable_rx_queue()
1670 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE)); in ixgbevf_disable_rx_queue()
1682 u32 rxdctl; in ixgbevf_rx_desc_queue_enable() local
1689 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_rx_desc_queue_enable()
1690 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE)); in ixgbevf_rx_desc_queue_enable()
1738 u32 rxdctl; in ixgbevf_configure_rx_ring() local
1742 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_configure_rx_ring()
1767 rxdctl &= ~IXGBE_RXDCTL_RLPML_EN; in ixgbevf_configure_rx_ring()
1769 rxdctl |= IXGBE_RXDCTL_ENABLE | IXGBE_RXDCTL_VME; in ixgbevf_configure_rx_ring()
1770 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl); in ixgbevf_configure_rx_ring()