ath9k: Read and write the TSF via debugfs
This patch adds an ath9k specific entry to read, write and reset the TSF into the debugfs, like in ath5k. This makes debugging the IBSS handling of wifi drivers _much_ easier. Signed-off-by: Alina Friedrichsen <x-alina@gmx.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
8cab7581db
commit
27abe060aa
4 changed files with 58 additions and 0 deletions
|
@ -3755,6 +3755,13 @@ u64 ath9k_hw_gettsf64(struct ath_hal *ah)
|
|||
return tsf;
|
||||
}
|
||||
|
||||
void ath9k_hw_settsf64(struct ath_hal *ah, u64 tsf64)
|
||||
{
|
||||
REG_WRITE(ah, AR_TSF_L32, 0x00000000);
|
||||
REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
|
||||
REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
|
||||
}
|
||||
|
||||
void ath9k_hw_reset_tsf(struct ath_hal *ah)
|
||||
{
|
||||
int count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue