Lines Matching refs:pba
3959 u32 pba = adapter->pba; in e1000e_reset() local
3963 ew32(PBA, pba); in e1000e_reset()
3973 pba = er32(PBA); in e1000e_reset()
3975 tx_space = pba >> 16; in e1000e_reset()
3977 pba &= 0xffff; in e1000e_reset()
3995 ((min_tx_space - tx_space) < pba)) { in e1000e_reset()
3996 pba -= min_tx_space - tx_space; in e1000e_reset()
4001 if (pba < min_rx_space) in e1000e_reset()
4002 pba = min_rx_space; in e1000e_reset()
4005 ew32(PBA, pba); in e1000e_reset()
4027 pba = 14; in e1000e_reset()
4028 ew32(PBA, pba); in e1000e_reset()
4035 hwm = min(((pba << 10) * 9 / 10), in e1000e_reset()
4036 ((pba << 10) - adapter->max_frame_size)); in e1000e_reset()
4073 pba = 14; in e1000e_reset()
4074 ew32(PBA, pba); in e1000e_reset()
4075 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH; in e1000e_reset()
4076 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL; in e1000e_reset()
4092 if ((adapter->max_frame_size * 2) > (pba << 10)) { in e1000e_reset()
7420 adapter->pba = ei->pba; in e1000_probe()