Lines Matching refs:pba
3914 u32 pba = adapter->pba; in e1000e_reset() local
3918 ew32(PBA, pba); in e1000e_reset()
3928 pba = er32(PBA); in e1000e_reset()
3930 tx_space = pba >> 16; in e1000e_reset()
3932 pba &= 0xffff; in e1000e_reset()
3950 ((min_tx_space - tx_space) < pba)) { in e1000e_reset()
3951 pba -= min_tx_space - tx_space; in e1000e_reset()
3956 if (pba < min_rx_space) in e1000e_reset()
3957 pba = min_rx_space; in e1000e_reset()
3960 ew32(PBA, pba); in e1000e_reset()
3982 pba = 14; in e1000e_reset()
3983 ew32(PBA, pba); in e1000e_reset()
3990 hwm = min(((pba << 10) * 9 / 10), in e1000e_reset()
3991 ((pba << 10) - adapter->max_frame_size)); in e1000e_reset()
4021 pba = 14; in e1000e_reset()
4022 ew32(PBA, pba); in e1000e_reset()
4023 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH; in e1000e_reset()
4024 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL; in e1000e_reset()
4040 if ((adapter->max_frame_size * 2) > (pba << 10)) { in e1000e_reset()
7038 adapter->pba = ei->pba; in e1000_probe()