Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Jun 2012 05:59:32 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r237519 - head/sys/dev/ath/ath_hal/ar5416
Message-ID:  <201206240559.q5O5xWTo090688@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sun Jun 24 05:59:32 2012
New Revision: 237519
URL: http://svn.freebsd.org/changeset/base/237519

Log:
  Sometimes the AR5416 sends back radar PHY errors with both the PHY error
  and the CRC error bits set.  The radar payload is correct.
  
  When this happens, the stack doesn't see them PHY error frames and
  isn't interpreted as a PHY error.  So, no radar detection and no radiotap
  PHY error handling.
  
  Now, this may introduce some weird issues if the MAC sends up some other
  combination of CRC error + PHY error frames; this commit would break that
  and mark them as PHY errors instead of CRC errors.
  
  I may tinker with this a little more to pass radar/early radar/spectral
  frames up as PHY errors if the CRC bit is set, to restore the previous
  behaviour (where if CRC is set on a PHY error frame, it's marked as a CRC
  error rather than PHY error.)
  
  Tested on:	AR5416, over the air, to a USRP N200 which is generating a
  		large number of a variety of radar pulses.
  TODO:		Test on AR9130, AR9160, AR9280 (and maybe radar pulses on
  		2GHz on AR9285/AR9287.)
  
  PR:		kern/169362

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

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c	Sun Jun 24 04:29:03 2012	(r237518)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c	Sun Jun 24 05:59:32 2012	(r237519)
@@ -228,15 +228,23 @@ ar5416ProcRxDesc(struct ath_hal *ah, str
 		 * Consequently we filter them out here so we don't
 		 * confuse and/or complicate drivers.
 		 */
-		if (ads->ds_rxstatus8 & AR_CRCErr)
-			rs->rs_status |= HAL_RXERR_CRC;
-		else if (ads->ds_rxstatus8 & AR_PHYErr) {
+
+		/*
+		 * The AR5416 sometimes sets both AR_CRCErr and AR_PHYErr
+		 * when reporting radar pulses.  In this instance,
+		 * clear HAL_RXERR_CRC and set HAL_RXERR_PHY.
+		 *
+		 * See PR kern/169362.
+		 */
+		if (ads->ds_rxstatus8 & AR_PHYErr) {
 			u_int phyerr;
 
 			rs->rs_status |= HAL_RXERR_PHY;
 			phyerr = MS(ads->ds_rxstatus8, AR_PHYErrCode);
 			rs->rs_phyerr = phyerr;
-		} else if (ads->ds_rxstatus8 & AR_DecryptCRCErr)
+		} else if (ads->ds_rxstatus8 & AR_CRCErr)
+			rs->rs_status |= HAL_RXERR_CRC;
+		else if (ads->ds_rxstatus8 & AR_DecryptCRCErr)
 			rs->rs_status |= HAL_RXERR_DECRYPT;
 		else if (ads->ds_rxstatus8 & AR_MichaelErr)
 			rs->rs_status |= HAL_RXERR_MIC;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206240559.q5O5xWTo090688>