Lines Matching refs:rxfilt
607 uint8_t *rxfilt = arg; in xl_check_maddr_90x() local
609 *rxfilt |= XL_RXFILTER_ALLMULTI; in xl_check_maddr_90x()
618 u_int8_t rxfilt; in xl_rxfilter_90x() local
625 rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER); in xl_rxfilter_90x()
626 rxfilt &= ~(XL_RXFILTER_ALLFRAMES | XL_RXFILTER_ALLMULTI | in xl_rxfilter_90x()
630 rxfilt |= XL_RXFILTER_INDIVIDUAL; in xl_rxfilter_90x()
633 rxfilt |= XL_RXFILTER_BROADCAST; in xl_rxfilter_90x()
638 rxfilt |= XL_RXFILTER_ALLFRAMES; in xl_rxfilter_90x()
640 rxfilt |= XL_RXFILTER_ALLMULTI; in xl_rxfilter_90x()
642 if_foreach_llmaddr(sc->xl_ifp, xl_check_maddr_90x, &rxfilt); in xl_rxfilter_90x()
644 CSR_WRITE_2(sc, XL_COMMAND, rxfilt | XL_CMD_RX_SET_FILT); in xl_rxfilter_90x()
678 u_int8_t rxfilt; in xl_rxfilter_90xB() local
685 rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER); in xl_rxfilter_90xB()
686 rxfilt &= ~(XL_RXFILTER_ALLFRAMES | XL_RXFILTER_ALLMULTI | in xl_rxfilter_90xB()
691 rxfilt |= XL_RXFILTER_INDIVIDUAL; in xl_rxfilter_90xB()
694 rxfilt |= XL_RXFILTER_BROADCAST; in xl_rxfilter_90xB()
699 rxfilt |= XL_RXFILTER_ALLFRAMES; in xl_rxfilter_90xB()
701 rxfilt |= XL_RXFILTER_ALLMULTI; in xl_rxfilter_90xB()
709 rxfilt |= XL_RXFILTER_MULTIHASH; in xl_rxfilter_90xB()
712 CSR_WRITE_2(sc, XL_COMMAND, rxfilt | XL_CMD_RX_SET_FILT); in xl_rxfilter_90xB()