Home | History | Annotate | Download | only in igc

Lines Matching defs:rctl

2482 	uint32_t rctl;
2484 rctl = IGC_READ_REG(&sc->hw, IGC_RCTL);
2485 rctl &= ~(IGC_RCTL_BAM |IGC_RCTL_UPE | IGC_RCTL_MPE);
2488 rctl |= IGC_RCTL_BAM;
2491 rctl |= IGC_RCTL_UPE;
2496 rctl |= IGC_RCTL_MPE;
2537 IGC_WRITE_REG(&sc->hw, IGC_RCTL, rctl);
3418 uint32_t rctl, rxcsum, srrctl;
3426 rctl = IGC_READ_REG(hw, IGC_RCTL);
3427 IGC_WRITE_REG(hw, IGC_RCTL, rctl & ~IGC_RCTL_EN);
3430 rctl &= ~(3 << IGC_RCTL_MO_SHIFT);
3431 rctl |= IGC_RCTL_EN | IGC_RCTL_BAM | IGC_RCTL_LBM_NO |
3436 rctl &= ~IGC_RCTL_SBP;
3439 rctl |= IGC_RCTL_SBP;
3444 rctl |= IGC_RCTL_LPE;
3446 rctl &= ~IGC_RCTL_LPE;
3449 rctl |= IGC_RCTL_SECRC;
3477 rctl |= IGC_RCTL_SZ_4096 | IGC_RCTL_BSEX;
3480 rctl |= IGC_RCTL_SZ_2048;
3524 rctl &= ~IGC_RCTL_VFE;
3527 IGC_WRITE_REG(hw, IGC_RCTL, rctl);