Lines Matching refs:fctrl
1937 uint32_t fctrl; in ngbe_dev_promiscuous_enable() local
1939 fctrl = rd32(hw, NGBE_PSRCTL); in ngbe_dev_promiscuous_enable()
1940 fctrl |= (NGBE_PSRCTL_UCP | NGBE_PSRCTL_MCP); in ngbe_dev_promiscuous_enable()
1941 wr32(hw, NGBE_PSRCTL, fctrl); in ngbe_dev_promiscuous_enable()
1950 uint32_t fctrl; in ngbe_dev_promiscuous_disable() local
1952 fctrl = rd32(hw, NGBE_PSRCTL); in ngbe_dev_promiscuous_disable()
1953 fctrl &= (~NGBE_PSRCTL_UCP); in ngbe_dev_promiscuous_disable()
1955 fctrl |= NGBE_PSRCTL_MCP; in ngbe_dev_promiscuous_disable()
1957 fctrl &= (~NGBE_PSRCTL_MCP); in ngbe_dev_promiscuous_disable()
1958 wr32(hw, NGBE_PSRCTL, fctrl); in ngbe_dev_promiscuous_disable()
1967 uint32_t fctrl; in ngbe_dev_allmulticast_enable() local
1969 fctrl = rd32(hw, NGBE_PSRCTL); in ngbe_dev_allmulticast_enable()
1970 fctrl |= NGBE_PSRCTL_MCP; in ngbe_dev_allmulticast_enable()
1971 wr32(hw, NGBE_PSRCTL, fctrl); in ngbe_dev_allmulticast_enable()
1980 uint32_t fctrl; in ngbe_dev_allmulticast_disable() local
1985 fctrl = rd32(hw, NGBE_PSRCTL); in ngbe_dev_allmulticast_disable()
1986 fctrl &= (~NGBE_PSRCTL_MCP); in ngbe_dev_allmulticast_disable()
1987 wr32(hw, NGBE_PSRCTL, fctrl); in ngbe_dev_allmulticast_disable()