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

Adrian Chadd adrian at FreeBSD.org
Thu Sep 13 07:17:59 UTC 2012


Author: adrian
Date: Thu Sep 13 07:17:58 2012
New Revision: 240445
URL: http://svn.freebsd.org/changeset/base/240445

Log:
  Add register defintions for the AR5416 TX/RX latency fields.
  
  Obtained from:	Qualcomm Atheros

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h	Thu Sep 13 07:17:29 2012	(r240444)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h	Thu Sep 13 07:17:58 2012	(r240445)
@@ -123,6 +123,12 @@
 #define	AR_RTC_DERIVED_CLK_PERIOD_S	1
 #endif	/* AH_SUPPORT_AR9130 */
 
+/* AR_USEC: 0x801c */
+#define	AR5416_USEC_TX_LAT	0x007FC000	/* tx latency to start of SIGNAL (usec) */
+#define	AR5416_USEC_TX_LAT_S	14		/* tx latency to start of SIGNAL (usec) */
+#define	AR5416_USEC_RX_LAT	0x1F800000	/* rx latency to start of SIGNAL (usec) */
+#define	AR5416_USEC_RX_LAT_S	23		/* rx latency to start of SIGNAL (usec) */
+
 #define	AR_RESET_TSF		0x8020
 
 /*


More information about the svn-src-head mailing list