X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=target_firmware%2Fwlan%2Fif_ath.c;h=bea411a58112ec4f5dd1906ea8a61f46f9a9d4ec;hb=24b5105e0730aaeffb8a7b0b6b0d93eec6190b86;hp=78a02e1a3bb2a1652ea2f02f49f9d2008ea36ac8;hpb=07a2fecf33ddaf1e497fa9118458f71230dc0032;p=open-ath9k-htc-firmware.git diff --git a/target_firmware/wlan/if_ath.c b/target_firmware/wlan/if_ath.c index 78a02e1..bea411a 100755 --- a/target_firmware/wlan/if_ath.c +++ b/target_firmware/wlan/if_ath.c @@ -56,6 +56,8 @@ #include "if_athvar.h" #include "ah_desc.h" #include "ah.h" +#include "ratectrl.h" +#include "ah_internal.h" static a_int32_t ath_numrxbufs = -1; static a_int32_t ath_numrxdescs = -1; @@ -93,6 +95,8 @@ void ath_tgt_tx_sched_nonaggr(struct ath_softc_tgt *sc,struct ath_buf * bf_host) * extend(0x0000001200000004, 0x00000006) == 0x0000001200000006 * extend(0x0000001200000004, 0x00000002) == 0x0000001200000002 * extend(0x0000001200000004, 0xfffffffe) == 0x00000011fffffffe ! tsfhigh-- + * extend(0x000000127ffffffe, 0x80000002) == 0x0000001280000002 + * extend(0x0000001280000002, 0x7ffffffe) == 0x000000127ffffffe * extend(0x00000012fffffffc, 0xfffffffe) == 0x00000012fffffffe * extend(0x00000012fffffffc, 0xfffffffa) == 0x00000012fffffffa * extend(0x00000012fffffffc, 0x00000002) == 0x0000001300000002 ! tsfhigh++ @@ -101,13 +105,13 @@ static u_int64_t ath_extend_tsf(struct ath_softc_tgt *sc, u_int32_t rstamp) { struct ath_hal *ah = sc->sc_ah; u_int64_t tsf; - a_int32_t tsf_low; + u_int32_t tsf_low; a_int64_t tsf_delta; /* signed int64 */ tsf = ah->ah_getTsf64(ah); - tsf_low = tsf & 0xffffffff; + tsf_low = tsf & 0xffffffffUL; - tsf_delta = (a_int32_t)rstamp - (a_int64_t)tsf_low; + tsf_delta = (a_int32_t)((rstamp - tsf_low) & 0xffffffffUL); return (tsf + (u_int64_t)tsf_delta); }