Lines Matching refs:fctrl
2505 uint32_t fctrl; in txgbe_dev_promiscuous_enable() local
2507 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_promiscuous_enable()
2508 fctrl |= (TXGBE_PSRCTL_UCP | TXGBE_PSRCTL_MCP); in txgbe_dev_promiscuous_enable()
2509 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_promiscuous_enable()
2518 uint32_t fctrl; in txgbe_dev_promiscuous_disable() local
2520 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_promiscuous_disable()
2521 fctrl &= (~TXGBE_PSRCTL_UCP); in txgbe_dev_promiscuous_disable()
2523 fctrl |= TXGBE_PSRCTL_MCP; in txgbe_dev_promiscuous_disable()
2525 fctrl &= (~TXGBE_PSRCTL_MCP); in txgbe_dev_promiscuous_disable()
2526 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_promiscuous_disable()
2535 uint32_t fctrl; in txgbe_dev_allmulticast_enable() local
2537 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_allmulticast_enable()
2538 fctrl |= TXGBE_PSRCTL_MCP; in txgbe_dev_allmulticast_enable()
2539 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_allmulticast_enable()
2548 uint32_t fctrl; in txgbe_dev_allmulticast_disable() local
2553 fctrl = rd32(hw, TXGBE_PSRCTL); in txgbe_dev_allmulticast_disable()
2554 fctrl &= (~TXGBE_PSRCTL_MCP); in txgbe_dev_allmulticast_disable()
2555 wr32(hw, TXGBE_PSRCTL, fctrl); in txgbe_dev_allmulticast_disable()