/src/sys/dev/pci/igc/ |
igc_mac.c | 450 uint32_t tctl; local in function:igc_config_collision_dist_generic 454 tctl = IGC_READ_REG(hw, IGC_TCTL); 456 tctl &= ~IGC_TCTL_COLD; 457 tctl |= IGC_COLLISION_DISTANCE << IGC_COLD_SHIFT; 459 IGC_WRITE_REG(hw, IGC_TCTL, tctl);
|
if_igc.c | 3066 uint32_t tctl = IGC_READ_REG(&sc->hw, IGC_TCTL); local in function:igc_initialize_transmit_unit 3067 tctl &= ~IGC_TCTL_CT; 3068 tctl |= (IGC_TCTL_PSP | IGC_TCTL_RTLC | IGC_TCTL_EN | 3072 IGC_WRITE_REG(&sc->hw, IGC_TCTL, tctl);
|
/src/sys/arch/sandpoint/stand/altboot/ |
wm.c | 111 unsigned ctl, tctl, rctl; member in struct:local 214 l->tctl = TCTL_EN | TCTL_PSP | TCTL_CT(15); 216 CSR_WRITE(l, WMREG_TCTL, l->tctl);
|
/src/sys/dev/pci/ |
if_wm.c | 702 uint32_t sc_tctl; /* prototype TCTL register */ 7487 /* Write TDT after TCTL.EN is set. See the document. */ 7794 uint32_t tctl = CSR_READ(sc, WMREG_TCTL); local in function:wm_82547_txfifo_stall 7795 CSR_WRITE(sc, WMREG_TCTL, tctl & ~TCTL_EN); 7800 CSR_WRITE(sc, WMREG_TCTL, tctl); 8366 * Don't write TDT before TCTL.EN is set.
|