Lines Matching refs:fctrl
2774 uint32_t fctrl; in txgbe_dev_promiscuous_enable() local
2776 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_promiscuous_enable()
2777 fctrl |= (TXGBE_PSRCTL_UCP | TXGBE_PSRCTL_MCP); in txgbe_dev_promiscuous_enable()
2778 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_promiscuous_enable()
2787 uint32_t fctrl; in txgbe_dev_promiscuous_disable() local
2789 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_promiscuous_disable()
2790 fctrl &= (~TXGBE_PSRCTL_UCP); in txgbe_dev_promiscuous_disable()
2792 fctrl |= TXGBE_PSRCTL_MCP; in txgbe_dev_promiscuous_disable()
2794 fctrl &= (~TXGBE_PSRCTL_MCP); in txgbe_dev_promiscuous_disable()
2795 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_promiscuous_disable()
2804 uint32_t fctrl; in txgbe_dev_allmulticast_enable() local
2806 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_allmulticast_enable()
2807 fctrl |= TXGBE_PSRCTL_MCP; in txgbe_dev_allmulticast_enable()
2808 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_allmulticast_enable()
2817 uint32_t fctrl; in txgbe_dev_allmulticast_disable() local
2822 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_allmulticast_disable()
2823 fctrl &= (~TXGBE_PSRCTL_MCP); in txgbe_dev_allmulticast_disable()
2824 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_allmulticast_disable()