Lines Matching refs:rxdctl
1798 u32 rxdctl; in ixgbevf_disable_rx_queue() local
1803 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_disable_rx_queue()
1804 rxdctl &= ~IXGBE_RXDCTL_ENABLE; in ixgbevf_disable_rx_queue()
1807 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl); in ixgbevf_disable_rx_queue()
1812 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_disable_rx_queue()
1813 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE)); in ixgbevf_disable_rx_queue()
1825 u32 rxdctl; in ixgbevf_rx_desc_queue_enable() local
1832 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_rx_desc_queue_enable()
1833 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE)); in ixgbevf_rx_desc_queue_enable()
1903 u32 rxdctl; in ixgbevf_configure_rx_ring() local
1907 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx)); in ixgbevf_configure_rx_ring()
1947 rxdctl &= ~(IXGBE_RXDCTL_RLPMLMASK | in ixgbevf_configure_rx_ring()
1954 rxdctl |= IXGBEVF_MAX_FRAME_BUILD_SKB | in ixgbevf_configure_rx_ring()
1959 rxdctl |= IXGBE_RXDCTL_ENABLE | IXGBE_RXDCTL_VME; in ixgbevf_configure_rx_ring()
1960 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl); in ixgbevf_configure_rx_ring()