Home | History | Annotate | Download | only in ar5210

Lines Matching refs:bt

33 ar5210SetBeaconTimers(struct ath_hal *ah, const HAL_BEACON_TIMERS *bt)
36 OS_REG_WRITE(ah, AR_TIMER0, bt->bt_nexttbtt);
37 OS_REG_WRITE(ah, AR_TIMER1, bt->bt_nextdba);
38 OS_REG_WRITE(ah, AR_TIMER2, bt->bt_nextswba);
39 OS_REG_WRITE(ah, AR_TIMER3, bt->bt_nextatim);
43 OS_REG_WRITE(ah, AR_BEACON, bt->bt_intval);
53 HAL_BEACON_TIMERS bt;
55 bt.bt_nexttbtt = next_beacon;
58 bt.bt_nextdba = (next_beacon -
60 bt.bt_nextswba = (next_beacon -
71 bt.bt_nextatim = next_beacon + 0; /* NB: no ATIMs */
73 bt.bt_nextdba = ~0;
74 bt.bt_nextswba = ~0;
75 bt.bt_nextatim = 1;
77 bt.bt_intval = beacon_period &
79 ar5210SetBeaconTimers(ah, &bt);