svn commit: r313135 - head/sys/dev/ath/ath_hal

Adrian Chadd adrian at FreeBSD.org
Fri Feb 3 05:15:10 UTC 2017


Author: adrian
Date: Fri Feb  3 05:15:08 2017
New Revision: 313135
URL: https://svnweb.freebsd.org/changeset/base/313135

Log:
  [ath_hal] prepare for CAC quiet time.
  
  To support DFS, the NIC needs to be very quiet during this time.
  No transmissions including ACKs are allowed.
  
  This is just the initial HAL glue.

Modified:
  head/sys/dev/ath/ath_hal/ah.c
  head/sys/dev/ath/ath_hal/ah.h

Modified: head/sys/dev/ath/ath_hal/ah.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ah.c	Fri Feb  3 03:57:06 2017	(r313134)
+++ head/sys/dev/ath/ath_hal/ah.c	Fri Feb  3 05:15:08 2017	(r313135)
@@ -1429,6 +1429,21 @@ ath_hal_getcca(struct ath_hal *ah)
 }
 
 /*
+ * Set the current state of self-generated ACK and RTS/CTS frames.
+ *
+ * For correct DFS operation, the device should not even /ACK/ frames
+ * that are sent to it during CAC or CSA.
+ */
+void
+ath_hal_set_dfs_cac_tx_quiet(struct ath_hal *ah, HAL_BOOL ena)
+{
+
+	if (ah->ah_setDfsCacTxQuiet == NULL)
+		return;
+	ah->ah_setDfsCacTxQuiet(ah, ena);
+}
+
+/*
  * This routine is only needed when supporting EEPROM-in-RAM setups
  * (eg embedded SoCs and on-board PCI/PCIe devices.)
  */

Modified: head/sys/dev/ath/ath_hal/ah.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah.h	Fri Feb  3 03:57:06 2017	(r313134)
+++ head/sys/dev/ath/ath_hal/ah.h	Fri Feb  3 05:15:08 2017	(r313135)
@@ -1395,6 +1395,7 @@ struct ath_hal {
 				struct ath_rx_status *rxs, uint64_t fulltsf,
 				const char *buf, HAL_DFS_EVENT *event);
 	HAL_BOOL  __ahdecl(*ah_isFastClockEnabled)(struct ath_hal *ah);
+	void	  __ahdecl(*ah_setDfsCacTxQuiet)(struct ath_hal *, HAL_BOOL);
 
 	/* Spectral Scan functions */
 	void	__ahdecl(*ah_spectralConfigure)(struct ath_hal *ah,
@@ -1660,6 +1661,11 @@ void __ahdecl ath_hal_setcca(struct ath_
 int __ahdecl ath_hal_getcca(struct ath_hal *ah);
 
 /*
+ * Enable/disable and get self-gen frame (ACK, CTS) for CAC.
+ */
+void __ahdecl ath_hal_set_dfs_cac_tx_quiet(struct ath_hal *ah, HAL_BOOL ena);
+
+/*
  * Read EEPROM data from ah_eepromdata
  */
 HAL_BOOL __ahdecl ath_hal_EepromDataRead(struct ath_hal *ah,


More information about the svn-src-all mailing list