Переглянути джерело

qcacmn: Add offset to second segment cfreq in HE160 mode

For subchannel marking, an offset of 20 MHz was added to the
second segment center frequency value of VHT160 mode operation
to get the actual second segment center frequency.
This was not done for HE160 mode operation, which led to wrong
subchannels being added to NOL.

Add 20 MHz frequency offset to the center frequency for HE160 opmode.

Change-Id: I7c076be220c70c18b60ed68c1ce99068924d41bf
CRs-Fixed: 2378075
Vignesh Mohan 6 роки тому
батько
коміт
3ae033ce1c
1 змінених файлів з 4 додано та 3 видалено
  1. 4 3
      umac/dfs/core/src/misc/dfs_process_radar_found_ind.c

+ 4 - 3
umac/dfs/core/src/misc/dfs_process_radar_found_ind.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -325,7 +325,7 @@ dfs_compute_radar_found_cfreq(struct wlan_dfs *dfs,
 			      uint32_t *freq_center)
 {
 	struct dfs_channel *curchan = dfs->dfs_curchan;
-	uint32_t flag;
+	uint64_t flag;
 
 	flag = curchan->dfs_ch_flags;
 	if (!radar_found->segment_id) {
@@ -338,7 +338,8 @@ dfs_compute_radar_found_cfreq(struct wlan_dfs *dfs,
 		} else {
 			*freq_center = utils_dfs_chan_to_freq(
 					curchan->dfs_ch_vhtop_ch_freq_seg2);
-			if (flag & WLAN_CHAN_VHT160)
+			if ((flag & WLAN_CHAN_VHT160) ||
+			    (flag & WLAN_CHAN_HE160))
 				*freq_center += DFS_160MHZ_SECOND_SEG_OFFSET;
 		}
 	}