Lines Matching refs:us
420 ar5210SetSifsTime(struct ath_hal *ah, u_int us) in ar5210SetSifsTime() argument
424 if (us > ath_hal_mac_usec(ah, 0x7ff)) { in ar5210SetSifsTime()
426 __func__, us); in ar5210SetSifsTime()
432 ath_hal_mac_clks(ah, us)); in ar5210SetSifsTime()
433 ahp->ah_sifstime = us; in ar5210SetSifsTime()
446 ar5210SetSlotTime(struct ath_hal *ah, u_int us) in ar5210SetSlotTime() argument
450 if (us < HAL_SLOT_TIME_9 || us > ath_hal_mac_usec(ah, 0xffff)) { in ar5210SetSlotTime()
452 __func__, us); in ar5210SetSlotTime()
457 OS_REG_WRITE(ah, AR_SLOT_TIME, ath_hal_mac_clks(ah, us)); in ar5210SetSlotTime()
458 ahp->ah_slottime = us; in ar5210SetSlotTime()
471 ar5210SetAckTimeout(struct ath_hal *ah, u_int us) in ar5210SetAckTimeout() argument
475 if (us > ath_hal_mac_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) { in ar5210SetAckTimeout()
477 __func__, us); in ar5210SetAckTimeout()
483 AR_TIME_OUT_ACK, ath_hal_mac_clks(ah, us)); in ar5210SetAckTimeout()
484 ahp->ah_acktimeout = us; in ar5210SetAckTimeout()
518 ar5210SetCTSTimeout(struct ath_hal *ah, u_int us) in ar5210SetCTSTimeout() argument
522 if (us > ath_hal_mac_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) { in ar5210SetCTSTimeout()
524 __func__, us); in ar5210SetCTSTimeout()
530 AR_TIME_OUT_CTS, ath_hal_mac_clks(ah, us)); in ar5210SetCTSTimeout()
531 ahp->ah_ctstimeout = us; in ar5210SetCTSTimeout()