Lines Matching refs:rxfilt
457 uint16_t rxfilt; in sge_rxfilter() local
462 rxfilt = CSR_READ_2(sc, RxMacControl); in sge_rxfilter()
463 rxfilt &= ~(AcceptBroadcast | AcceptAllPhys | AcceptMulticast); in sge_rxfilter()
464 rxfilt |= AcceptMyPhys; in sge_rxfilter()
466 rxfilt |= AcceptBroadcast; in sge_rxfilter()
469 rxfilt |= AcceptAllPhys; in sge_rxfilter()
470 rxfilt |= AcceptMulticast; in sge_rxfilter()
474 rxfilt |= AcceptMulticast; in sge_rxfilter()
479 CSR_WRITE_2(sc, RxMacControl, rxfilt); in sge_rxfilter()
488 uint16_t rxfilt; in sge_setvlan() local
495 rxfilt = CSR_READ_2(sc, RxMacControl); in sge_setvlan()
497 rxfilt |= RXMAC_STRIP_VLAN; in sge_setvlan()
499 rxfilt &= ~RXMAC_STRIP_VLAN; in sge_setvlan()
500 CSR_WRITE_2(sc, RxMacControl, rxfilt); in sge_setvlan()
1618 uint16_t rxfilt; in sge_init_locked() local
1656 rxfilt = RXMAC_STRIP_FCS | RXMAC_PAD_ENB | RXMAC_CSUM_ENB; in sge_init_locked()
1657 CSR_WRITE_2(sc, RxMacControl, rxfilt); in sge_init_locked()