Home
last modified time | relevance | path

Searched refs:tsf (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_timer.c61 ar9300_alloc_generic_timer(struct ath_hal *ah, HAL_GEN_TIMER_DOMAIN tsf) in ar9300_alloc_generic_timer() argument
67 if (tsf == HAL_GEN_TIMER_TSF) { in ar9300_alloc_generic_timer()
82 if ((tsf == HAL_GEN_TIMER_TSF2) && !ahp->ah_enable_tsf2) { in ar9300_alloc_generic_timer()
H A Dar9300_misc.c311 u_int64_t tsf; in ar9300_get_tsf64() local
314 tsf = OS_REG_READ(ah, AR_TSF_U32); in ar9300_get_tsf64()
315 tsf = (tsf << 32) | OS_REG_READ(ah, AR_TSF_L32); in ar9300_get_tsf64()
316 return tsf; in ar9300_get_tsf64()
320 ar9300_set_tsf64(struct ath_hal *ah, u_int64_t tsf) in ar9300_set_tsf64() argument
322 OS_REG_WRITE(ah, AR_TSF_L32, (tsf & 0xffffffff)); in ar9300_set_tsf64()
323 OS_REG_WRITE(ah, AR_TSF_U32, ((tsf >> 32) & 0xffffffff)); in ar9300_set_tsf64()
618 u_int32_t tsf = 0, j, next_start_us = 0; in ar9300_set_quiet() local
622 tsf = OS_REG_READ(ah, AR_TSF_L32); in ar9300_set_quiet()
624 next_start_us += tsf; in ar9300_set_quiet()
[all …]
H A Dar9300_freebsd.h29 uint64_t tsf, struct ath_rx_status *rxs);
H A Dar9300_recv_ds.c200 u_int32_t pa, struct ath_desc *nds, u_int64_t tsf, in ar9300_proc_rx_desc() argument
H A Dar9300_freebsd.c692 uint32_t pa, struct ath_desc *ds_next, uint64_t tsf, in ar9300_proc_rx_desc_freebsd() argument
H A Dar9300_stub_funcs.c757 uint32_t a, struct ath_desc *desc, uint64_t tsf, in ar9300_Stub_ProcRxDesc() argument
H A Dar9300.h1277 extern void ar9300_set_tsf64(struct ath_hal *ah, u_int64_t tsf);
1547 extern int ar9300_alloc_generic_timer(struct ath_hal *ah, HAL_GEN_TIMER_DOMAIN tsf);
/f-stack/freebsd/net80211/
H A Dieee80211_tdma.c592 uint32_t rstamp = (uint32_t) le64toh(rs->tsf); in tdma_process_params()
612 le64toh(ni->ni_tstamp.tsf) > vap->iv_bss->ni_tstamp.tsf) { in tdma_process_params()
622 (unsigned long long) le64toh(ni->ni_tstamp.tsf), in tdma_process_params()
623 vap->iv_bss->ni_tstamp.tsf); in tdma_process_params()
H A Dieee80211_scan.h273 u_int64_t tsf; member
H A Dieee80211_node.h193 u_int64_t tsf; member
H A Dieee80211_node.c926 ni->ni_tstamp.tsf = se->se_tstamp.tsf; in ieee80211_sta_join()