svn commit: r251442 - head/sys/dev/ath/ath_hal/ar9002

Adrian Chadd adrian at FreeBSD.org
Wed Jun 5 22:23:13 UTC 2013


Author: adrian
Date: Wed Jun  5 22:23:13 2013
New Revision: 251442
URL: http://svnweb.freebsd.org/changeset/base/251442

Log:
  Enable slow diversity combining for the AR9285.
  
  Now that I understand what's going on - and the RX antenna array maps
  to what the receive LNA configuration actually is - I feel comfortable
  in enabling this.
  
  If people do have issues with this, there's enough debugging now available
  that we have a chance to diagnose it without writing it up as 'weird
  crap.'
  
  Tested:
  
  * AR9285 STA w/ diversity combining enabled in EEPROM
  
  TODO:
  
  * (More) testing in hostap mode

Modified:
  head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c

Modified: head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c	Wed Jun  5 22:21:13 2013	(r251441)
+++ head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c	Wed Jun  5 22:23:13 2013	(r251442)
@@ -87,8 +87,10 @@ ar9285_check_div_comb(struct ath_hal *ah
 	HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom;
         const MODAL_EEP4K_HEADER *pModal = &ee->ee_base.modalHeader;
 
+#if 0
 	/* For now, simply disable this until it's better debugged. -adrian */
 	return AH_FALSE;
+#endif
 
 	if (! AR_SREV_KITE(ah))
 		return AH_FALSE;


More information about the svn-src-head mailing list