Lines Matching refs:pf_ctrl
1041 u32 pf_ctrl = 0; in et1310_config_rxmac_regs() local
1071 writel(0, &rxmac->pf_ctrl); in et1310_config_rxmac_regs()
1076 pf_ctrl |= ET_RX_PFCTRL_UNICST_FILTER_ENABLE; in et1310_config_rxmac_regs()
1085 pf_ctrl |= ET_RX_PFCTRL_MLTCST_FILTER_ENABLE; in et1310_config_rxmac_regs()
1090 pf_ctrl |= (NIC_MIN_PACKET_SIZE + 4) << ET_RX_PFCTRL_MIN_PKT_SZ_SHIFT; in et1310_config_rxmac_regs()
1091 pf_ctrl |= ET_RX_PFCTRL_FRAG_FILTER_ENABLE; in et1310_config_rxmac_regs()
1136 writel(pf_ctrl, &rxmac->pf_ctrl); in et1310_config_rxmac_regs()
3703 u32 pf_ctrl; in et131x_set_packet_filter() local
3706 pf_ctrl = readl(&adapter->regs->rxmac.pf_ctrl); in et131x_set_packet_filter()
3715 pf_ctrl &= ~7; /* Clear filter bits */ in et131x_set_packet_filter()
3722 pf_ctrl &= ~2; /* Multicast filter bit */ in et131x_set_packet_filter()
3725 pf_ctrl |= 2; in et131x_set_packet_filter()
3732 pf_ctrl |= 4; in et131x_set_packet_filter()
3738 pf_ctrl |= 1; /* Broadcast filter bit */ in et131x_set_packet_filter()
3741 pf_ctrl &= ~1; in et131x_set_packet_filter()
3748 writel(pf_ctrl, &adapter->regs->rxmac.pf_ctrl); in et131x_set_packet_filter()