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