瀏覽代碼

qcacmn: Receive and parse RCSA with subchannel information

Update NOL list based on the external radar information sent
from the action frame and store in DFS structure.

Add an utility - dispatcher function that can be called by UMAC
with NOL IE information.

In the DFS structure,
	1). If subchannel marking is disabled, add all the current
	    channel's subchannels to NOL, do not update the NOL IE
	    structures inside dfs, and send a flag saying not to
	    propagate the NOL IE to uplink.
	    This is because, in case of cascading repeaters, one
	    of the repeaters (RE1) in the cascading system might have
	    subchannel marking disabled. In that case, sending the
	    same NOL IE to uplink results in RE1 and its BSS to disconnect.

	2). If subchannel marking is enabled, add those subhannels to NOL,
	    and update flags saying NOL and RCSA IE should be sent.

Change-Id: I3f3e14a59503cd1a15573c988a984a20117aa814
CRs-Fixed: 2328377
Vignesh Mohan 6 年之前
父節點
當前提交
eba709480e

+ 14 - 0
umac/dfs/core/src/dfs.h

@@ -2536,6 +2536,20 @@ void dfs_set_rcsa_flags(struct wlan_dfs *dfs, bool is_rcsa_ie_sent,
 void dfs_get_rcsa_flags(struct wlan_dfs *dfs, bool *is_rcsa_ie_sent,
 			bool *is_nol_ie_sent);
 
+/**
+ * dfs_process_nol_ie_bitmap() - Update NOL with external radar information.
+ * @dfs               - Pointer to wlan_dfs structure.
+ * @nol_ie_bandwidth  - Minimum subchannel bandwidth.
+ * @nol_ie_starfreq   - Radar affected channel list's first subchannel's
+ *                    - centre frequency.
+ * @nol_ie_bitmap     - Bitmap denoting radar affected subchannels.
+ *
+ * Return: True if NOL IE should be propagated, else false.
+ */
+bool dfs_process_nol_ie_bitmap(struct wlan_dfs *dfs, uint8_t nol_ie_bandwidth,
+			       uint16_t nol_ie_startfreq,
+			       uint8_t nol_ie_bitmap);
+
 /**
  * dfs_check_for_cac_start() - Check for DFS CAC start conditions.
  * @dfs: Pointer to wlan_dfs structure.

+ 44 - 0
umac/dfs/core/src/misc/dfs_process_radar_found_ind.c

@@ -636,6 +636,50 @@ void dfs_set_rcsa_flags(struct wlan_dfs *dfs, bool is_rcsa_ie_sent,
 	dfs->dfs_is_nol_ie_sent = is_nol_ie_sent;
 }
 
+bool dfs_process_nol_ie_bitmap(struct wlan_dfs *dfs, uint8_t nol_ie_bandwidth,
+			       uint16_t nol_ie_startfreq, uint8_t nol_ie_bitmap)
+{
+	uint8_t num_subchans;
+	uint8_t bits = 0x01;
+	uint8_t radar_subchans[NUM_CHANNELS_160MHZ];
+	bool should_nol_ie_be_sent = true;
+
+	qdf_mem_zero(radar_subchans, sizeof(radar_subchans));
+	if (!dfs->dfs_use_nol_subchannel_marking) {
+		/* Since subchannel marking is disabled, disregard
+		 * NOL IE and set NOL IE flag as false, so it
+		 * can't be sent to uplink.
+		 */
+		num_subchans =
+			dfs_get_bonding_channels(dfs,
+						 dfs->dfs_curchan,
+						 dfs->dfs_curchan->dfs_ch_freq,
+						 radar_subchans);
+		should_nol_ie_be_sent = false;
+	} else {
+		/* Add the NOL IE information in DFS structure so that RCSA
+		 * and NOL IE can be sent to uplink if uplink exists.
+		 */
+		uint32_t frequency = (uint32_t)nol_ie_startfreq;
+
+		dfs->dfs_nol_ie_bandwidth = nol_ie_bandwidth;
+		dfs->dfs_nol_ie_startfreq = nol_ie_startfreq;
+		dfs->dfs_nol_ie_bitmap = nol_ie_bitmap;
+		for (num_subchans = 0; num_subchans < NUM_CHANNELS_160MHZ;
+			num_subchans++) {
+			if (nol_ie_bitmap & bits) {
+				radar_subchans[num_subchans] =
+					utils_dfs_freq_to_chan(frequency);
+			}
+			bits <<= 1;
+			frequency += nol_ie_bandwidth;
+		}
+	}
+
+	dfs_radar_add_channel_list_to_nol(dfs, radar_subchans, num_subchans);
+	return should_nol_ie_be_sent;
+}
+
 QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
 				 struct radar_found_info *radar_found)
 {

+ 16 - 0
umac/dfs/dispatcher/inc/wlan_dfs_utils_api.h

@@ -353,6 +353,22 @@ QDF_STATUS utils_dfs_get_rcsa_flags(struct wlan_objmgr_pdev *pdev,
 				    bool *is_rcsa_ie_sent,
 				    bool *is_nol_ie_sent);
 
+/**
+ * utils_dfs_process_nol_ie_bitmap() - Update NOL with external radar
+ * information.
+ * pdev: Pointer to DFS pdev object.
+ * nol_ie_bandwidth: Minimum DFS subchannel Bandwidth.
+ * nol_ie_startfreq: Radar affected channel list start channel's
+ * centre frequency.
+ * nol_ie_bitmap: Bitmap of radar affected subchannels.
+ *
+ * Return: True if NOL IE should be propagated, else false.
+ */
+bool utils_dfs_process_nol_ie_bitmap(struct wlan_objmgr_pdev *pdev,
+				     uint8_t nol_ie_bandwidth,
+				     uint16_t nol_ie_startfreq,
+				     uint8_t nol_ie_bitmap);
+
 /**
  * utils_dfs_set_cac_timer_running() - Sets the cac timer running.
  * @pdev: Pointer to DFS pdev object.

+ 15 - 1
umac/dfs/dispatcher/src/wlan_dfs_utils_api.c

@@ -409,12 +409,26 @@ QDF_STATUS utils_dfs_get_rcsa_flags(struct wlan_objmgr_pdev *pdev,
 	dfs = global_dfs_to_mlme.pdev_get_comp_private_obj(pdev);
 	if (!dfs)
 		return  QDF_STATUS_E_FAILURE;
-
 	dfs_get_rcsa_flags(dfs, is_rcsa_ie_sent, is_nol_ie_sent);
 
 	return QDF_STATUS_SUCCESS;
 }
 
+bool utils_dfs_process_nol_ie_bitmap(struct wlan_objmgr_pdev *pdev,
+				     uint8_t nol_ie_bandwidth,
+				     uint16_t nol_ie_startfreq,
+				     uint8_t nol_ie_bitmap)
+{
+	struct wlan_dfs *dfs;
+
+	dfs = global_dfs_to_mlme.pdev_get_comp_private_obj(pdev);
+	if (!dfs)
+		return  false;
+	return dfs_process_nol_ie_bitmap(dfs, nol_ie_bandwidth,
+					 nol_ie_startfreq,
+					 nol_ie_bitmap);
+}
+
 QDF_STATUS utils_dfs_set_cac_timer_running(struct wlan_objmgr_pdev *pdev,
 		int val)
 {