Home | History | Annotate | Download | only in ic

Lines Matching defs:tsf

729 	uint64_t tsf;
733 /* Extend the 15-bit timestamp from Rx descriptor to 64-bit TSF. */
735 tsf = AR_READ(sc, AR_TSF_U32);
736 tsf = tsf << 32 | AR_READ(sc, AR_TSF_L32);
737 if ((tsf & 0x7fff) < tstamp)
738 tsf -= 0x8000;
739 tsf = (tsf & ~0x7fff) | tstamp;
742 tap->wr_tsft = htole64(tsf);