Lines Matching refs:pba
3970 u32 pba = adapter->pba; in e1000e_reset() local
3974 ew32(PBA, pba); in e1000e_reset()
3984 pba = er32(PBA); in e1000e_reset()
3986 tx_space = pba >> 16; in e1000e_reset()
3988 pba &= 0xffff; in e1000e_reset()
4006 ((min_tx_space - tx_space) < pba)) { in e1000e_reset()
4007 pba -= min_tx_space - tx_space; in e1000e_reset()
4012 if (pba < min_rx_space) in e1000e_reset()
4013 pba = min_rx_space; in e1000e_reset()
4016 ew32(PBA, pba); in e1000e_reset()
4038 pba = 14; in e1000e_reset()
4039 ew32(PBA, pba); in e1000e_reset()
4046 hwm = min(((pba << 10) * 9 / 10), in e1000e_reset()
4047 ((pba << 10) - adapter->max_frame_size)); in e1000e_reset()
4082 pba = 14; in e1000e_reset()
4083 ew32(PBA, pba); in e1000e_reset()
4084 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH; in e1000e_reset()
4085 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL; in e1000e_reset()
4101 if ((adapter->max_frame_size * 2) > (pba << 10)) { in e1000e_reset()
7451 adapter->pba = ei->pba; in e1000_probe()