svn commit: r219862 - head/sys/dev/ath/ath_hal/ar5416

Adrian Chadd adrian at FreeBSD.org
Tue Mar 22 07:19:49 UTC 2011


Author: adrian
Date: Tue Mar 22 07:19:49 2011
New Revision: 219862
URL: http://svn.freebsd.org/changeset/base/219862

Log:
  Fix OFDM ANI statistics gathering for the AR5416 and later chips.
  
  I found this when trying to figure out why the RX PHY error count
  didn't match the OFDM error count ANI was using. It turns out
  there was two problems:
  
  * What this commit addresses - using the wrong mask for OFDM errors,
    and
  * The RX filter is set incorrectly after a channel scan (at least)
    even if interference mitigation is enabled by default.
  
  ANI is still disabled by default for the AR5416 and later chips.

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c	Tue Mar 22 05:50:55 2011	(r219861)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c	Tue Mar 22 07:19:49 2011	(r219862)
@@ -488,7 +488,7 @@ ar5416AniRestart(struct ath_hal *ah, str
 	OS_REG_WRITE(ah, AR_PHY_ERR_1, params->ofdmPhyErrBase);
 	OS_REG_WRITE(ah, AR_PHY_ERR_2, params->cckPhyErrBase);
 	OS_REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_OFDM_TIMING);
-	OS_REG_WRITE(ah, AR_PHY_ERR_MASK_1, AR_PHY_ERR_CCK_TIMING);
+	OS_REG_WRITE(ah, AR_PHY_ERR_MASK_2, AR_PHY_ERR_CCK_TIMING);
 
 	/* Clear the mib counters and save them in the stats */
 	ar5212UpdateMibCounters(ah, &ahp->ah_mibStats);


More information about the svn-src-all mailing list