|
@@ -150,22 +150,24 @@ int dfs_get_nol_subchannel_marking(struct wlan_dfs *dfs,
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * dfs_radar_add_channel_list_to_nol()- Add given channels to nol
|
|
|
+ * dfs_radar_add_channel_list_to_nol_for_freq()- Add given channels to nol
|
|
|
* @dfs: Pointer to wlan_dfs structure.
|
|
|
- * @channels: Pointer to the channel list.
|
|
|
+ * @freq_list: Pointer to list of frequency.
|
|
|
* @num_channels: Number of channels in the list.
|
|
|
*
|
|
|
* Add list of channels to nol, only if the channel is dfs.
|
|
|
*
|
|
|
* Return: QDF_STATUS
|
|
|
*/
|
|
|
-static QDF_STATUS dfs_radar_add_channel_list_to_nol(struct wlan_dfs *dfs,
|
|
|
- uint8_t *channels,
|
|
|
- uint8_t num_channels)
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+static QDF_STATUS
|
|
|
+dfs_radar_add_channel_list_to_nol_for_freq(struct wlan_dfs *dfs,
|
|
|
+ uint16_t *freq_list,
|
|
|
+ uint8_t num_channels)
|
|
|
{
|
|
|
int i;
|
|
|
- uint8_t last_chan = 0;
|
|
|
- uint8_t nollist[NUM_CHANNELS_160MHZ];
|
|
|
+ uint16_t last_chan_freq = 0;
|
|
|
+ uint16_t nol_freq_list[NUM_CHANNELS_160MHZ];
|
|
|
uint8_t num_ch = 0;
|
|
|
|
|
|
if (num_channels > NUM_CHANNELS_160MHZ) {
|
|
@@ -175,26 +177,25 @@ static QDF_STATUS dfs_radar_add_channel_list_to_nol(struct wlan_dfs *dfs,
|
|
|
}
|
|
|
|
|
|
for (i = 0; i < num_channels; i++) {
|
|
|
- if (channels[i] == 0 ||
|
|
|
- channels[i] == last_chan)
|
|
|
+ if (freq_list[i] == 0 ||
|
|
|
+ freq_list[i] == last_chan_freq)
|
|
|
continue;
|
|
|
- if (!utils_is_dfs_ch(dfs->dfs_pdev_obj, channels[i])) {
|
|
|
+ if (!utils_is_dfs_chan_for_freq(dfs->dfs_pdev_obj,
|
|
|
+ freq_list[i])) {
|
|
|
dfs_info(dfs, WLAN_DEBUG_DFS, "ch=%d is not dfs, skip",
|
|
|
- channels[i]);
|
|
|
+ freq_list[i]);
|
|
|
continue;
|
|
|
}
|
|
|
- last_chan = channels[i];
|
|
|
+ last_chan_freq = freq_list[i];
|
|
|
DFS_NOL_ADD_CHAN_LOCKED(dfs,
|
|
|
- (uint16_t)utils_dfs_chan_to_freq(channels[i]),
|
|
|
- dfs->wlan_dfs_nol_timeout);
|
|
|
- nollist[num_ch++] = last_chan;
|
|
|
+ freq_list[i],
|
|
|
+ dfs->wlan_dfs_nol_timeout);
|
|
|
+ nol_freq_list[num_ch++] = last_chan_freq;
|
|
|
utils_dfs_deliver_event(dfs->dfs_pdev_obj,
|
|
|
- (uint16_t)
|
|
|
- utils_dfs_chan_to_freq(channels[i]),
|
|
|
+ freq_list[i],
|
|
|
WLAN_EV_NOL_STARTED);
|
|
|
- dfs_info(dfs, WLAN_DEBUG_DFS_NOL, "ch=%d Added to NOL, freq= %hu",
|
|
|
- last_chan,
|
|
|
- (uint16_t)utils_dfs_chan_to_freq(last_chan));
|
|
|
+ dfs_info(dfs, WLAN_DEBUG_DFS_NOL, "ch=%d Added to NOL",
|
|
|
+ last_chan_freq);
|
|
|
}
|
|
|
|
|
|
if (!num_ch) {
|
|
@@ -203,21 +204,22 @@ static QDF_STATUS dfs_radar_add_channel_list_to_nol(struct wlan_dfs *dfs,
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- utils_dfs_reg_update_nol_ch(dfs->dfs_pdev_obj,
|
|
|
- nollist, num_ch, DFS_NOL_SET);
|
|
|
+ utils_dfs_reg_update_nol_chan_for_freq(dfs->dfs_pdev_obj,
|
|
|
+ nol_freq_list, num_ch,
|
|
|
+ DFS_NOL_SET);
|
|
|
|
|
|
if (dfs->dfs_is_stadfs_enabled)
|
|
|
if (dfs_mlme_is_opmode_sta(dfs->dfs_pdev_obj))
|
|
|
- utils_dfs_reg_update_nol_history_ch(
|
|
|
- dfs->dfs_pdev_obj, nollist, num_ch,
|
|
|
- DFS_NOL_HISTORY_SET);
|
|
|
+ utils_dfs_reg_update_nol_history_chan_for_freq(
|
|
|
+ dfs->dfs_pdev_obj, nol_freq_list,
|
|
|
+ num_ch, DFS_NOL_HISTORY_SET);
|
|
|
|
|
|
dfs_nol_update(dfs);
|
|
|
utils_dfs_save_nol(dfs->dfs_pdev_obj);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
-
|
|
|
+#endif
|
|
|
/**
|
|
|
* dfs_radar_chan_for_80()- Find frequency offsets for 80MHz
|
|
|
* @freq_offset: freq offset
|
|
@@ -323,6 +325,56 @@ static void dfs_radar_chan_for_20(struct freqs_offsets *freq_offset,
|
|
|
* @radar_found: Pointer to radar_found_info.
|
|
|
* @freq_center: Pointer to retrieve the value of radar found cfreq.
|
|
|
*/
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+static void
|
|
|
+dfs_compute_radar_found_cfreq(struct wlan_dfs *dfs,
|
|
|
+ struct radar_found_info *radar_found,
|
|
|
+ uint32_t *freq_center)
|
|
|
+{
|
|
|
+ struct dfs_channel *curchan = dfs->dfs_curchan;
|
|
|
+
|
|
|
+ /* Radar found on agile detector ID.
|
|
|
+ * Applicable to chips that have a separate agile radar detector
|
|
|
+ * engine.
|
|
|
+ */
|
|
|
+ if (radar_found->detector_id == AGILE_DETECTOR_ID) {
|
|
|
+ *freq_center = dfs->dfs_agile_precac_freq_mhz;
|
|
|
+ } else if (!radar_found->segment_id) {
|
|
|
+ *freq_center = curchan->dfs_ch_mhz_freq_seg1;
|
|
|
+ } else {
|
|
|
+ /* Radar found on secondary segment by the HW when
|
|
|
+ * preCAC was running. It (dfs_precac_enable) is specific to
|
|
|
+ * legacy chips.
|
|
|
+ */
|
|
|
+ if (dfs_is_precac_timer_running(dfs) &&
|
|
|
+ dfs_is_legacy_precac_enabled(dfs)) {
|
|
|
+ *freq_center = dfs->dfs_precac_secondary_freq_mhz;
|
|
|
+ } else {
|
|
|
+ /* Radar found on secondary segment by the HW, when preCAC
|
|
|
+ * was not running in legacy chips or preCAC was running
|
|
|
+ * in Lithium chips.
|
|
|
+ */
|
|
|
+ *freq_center = curchan->dfs_ch_mhz_freq_seg2;
|
|
|
+ if (WLAN_IS_CHAN_MODE_160(curchan)) {
|
|
|
+ /* If center frequency of entire 160 band
|
|
|
+ * is less than center frequency of primary
|
|
|
+ * segment, then the center frequency of
|
|
|
+ * secondary segment is -40 of center
|
|
|
+ * frequency of entire 160 segment.
|
|
|
+ */
|
|
|
+ if (curchan->dfs_ch_mhz_freq_seg2 <
|
|
|
+ curchan->dfs_ch_mhz_freq_seg1)
|
|
|
+ *freq_center -=
|
|
|
+ DFS_160MHZ_SECOND_SEG_OFFSET;
|
|
|
+ else
|
|
|
+ *freq_center +=
|
|
|
+ DFS_160MHZ_SECOND_SEG_OFFSET;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+#else
|
|
|
+#ifdef CONFIG_CHAN_NUM_API
|
|
|
static void
|
|
|
dfs_compute_radar_found_cfreq(struct wlan_dfs *dfs,
|
|
|
struct radar_found_info
|
|
@@ -375,28 +427,31 @@ dfs_compute_radar_found_cfreq(struct wlan_dfs *dfs,
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+#endif
|
|
|
+#endif
|
|
|
|
|
|
/**
|
|
|
- * dfs_find_radar_affected_subchans() - Finds radar affected sub channels.
|
|
|
+ * dfs_find_radar_affected_subchans_for_freq() - Find radar affected sub chans.
|
|
|
* @dfs: Pointer to wlan_dfs structure.
|
|
|
* @radar_found: Pointer to radar_found structure.
|
|
|
- * @channels: Pointer to save radar affected channels.
|
|
|
+ * @freq_list: Pointer to save radar affected channels.
|
|
|
* @freq_center: Freq_center of the radar affected chan.
|
|
|
*
|
|
|
* Return: Number of channels.
|
|
|
*/
|
|
|
-static uint8_t dfs_find_radar_affected_subchans(struct wlan_dfs *dfs,
|
|
|
- struct radar_found_info
|
|
|
- *radar_found,
|
|
|
- uint8_t *channels,
|
|
|
- uint32_t freq_center)
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+static uint8_t
|
|
|
+dfs_find_radar_affected_subchans_for_freq(struct wlan_dfs *dfs,
|
|
|
+ struct radar_found_info *radar_found,
|
|
|
+ uint16_t *freq_list,
|
|
|
+ uint32_t freq_center)
|
|
|
{
|
|
|
int i, j;
|
|
|
uint8_t num_radar_subchans;
|
|
|
uint32_t flag;
|
|
|
int32_t sidx;
|
|
|
- uint8_t candidate_subchan;
|
|
|
- uint8_t cur_subchans[NUM_CHANNELS_160MHZ];
|
|
|
+ uint16_t candidate_subchan_freq;
|
|
|
+ uint16_t cur_subchans[NUM_CHANNELS_160MHZ];
|
|
|
uint8_t n_cur_subchans;
|
|
|
struct dfs_channel *curchan = dfs->dfs_curchan;
|
|
|
struct freqs_offsets freq_offset;
|
|
@@ -443,28 +498,31 @@ static uint8_t dfs_find_radar_affected_subchans(struct wlan_dfs *dfs,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
- n_cur_subchans = dfs_get_bonding_channels(dfs, curchan,
|
|
|
- radar_found->segment_id,
|
|
|
- radar_found->detector_id,
|
|
|
- cur_subchans);
|
|
|
+ n_cur_subchans =
|
|
|
+ dfs_get_bonding_channels_for_freq(dfs, curchan,
|
|
|
+ radar_found->segment_id,
|
|
|
+ radar_found->detector_id,
|
|
|
+ cur_subchans);
|
|
|
|
|
|
for (i = 0, num_radar_subchans = 0; i < DFS_NUM_FREQ_OFFSET; i++) {
|
|
|
- candidate_subchan = utils_dfs_freq_to_chan(freq_offset.freq[i]);
|
|
|
+ candidate_subchan_freq = freq_offset.freq[i];
|
|
|
for (j = 0; j < n_cur_subchans; j++) {
|
|
|
- if (cur_subchans[j] == candidate_subchan) {
|
|
|
- channels[num_radar_subchans++] =
|
|
|
- candidate_subchan;
|
|
|
+ if (cur_subchans[j] == candidate_subchan_freq) {
|
|
|
+ freq_list[num_radar_subchans++] =
|
|
|
+ candidate_subchan_freq;
|
|
|
dfs_info(dfs, WLAN_DEBUG_DFS,
|
|
|
"offset=%d, channel=%d",
|
|
|
num_radar_subchans,
|
|
|
- channels[num_radar_subchans - 1]);
|
|
|
+ freq_list[num_radar_subchans - 1]);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
return num_radar_subchans;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
+#ifdef CONFIG_CHAN_NUM_API
|
|
|
uint8_t dfs_get_bonding_channels_without_seg_info(struct dfs_channel *chan,
|
|
|
uint8_t *channels)
|
|
|
{
|
|
@@ -512,7 +570,136 @@ uint8_t dfs_get_bonding_channels_without_seg_info(struct dfs_channel *chan,
|
|
|
|
|
|
return nchannels;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
+/*
|
|
|
+ * dfs_get_bonding_channel_without_seg_info_for_freq() - Get bonding frequency
|
|
|
+ * list.
|
|
|
+ * @chan: Pointer to dfs_channel.
|
|
|
+ * @freq_list: Pointer to frequency list.
|
|
|
+ */
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+uint8_t
|
|
|
+dfs_get_bonding_channel_without_seg_info_for_freq(struct dfs_channel *chan,
|
|
|
+ uint16_t *freq_list)
|
|
|
+{
|
|
|
+ uint16_t center_freq;
|
|
|
+ uint8_t nchannels = 0;
|
|
|
+
|
|
|
+ center_freq = chan->dfs_ch_mhz_freq_seg1;
|
|
|
+
|
|
|
+ if (WLAN_IS_CHAN_MODE_20(chan)) {
|
|
|
+ nchannels = 1;
|
|
|
+ freq_list[0] = center_freq;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_40(chan)) {
|
|
|
+ nchannels = 2;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_80(chan)) {
|
|
|
+ nchannels = 4;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[2] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[3] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_80_80(chan)) {
|
|
|
+ nchannels = 8;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[2] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[3] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ center_freq = chan->dfs_ch_mhz_freq_seg2;
|
|
|
+ freq_list[4] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[5] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[6] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[7] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_160(chan)) {
|
|
|
+ nchannels = 8;
|
|
|
+ center_freq = chan->dfs_ch_mhz_freq_seg2;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_4TH_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq - DFS_5GHZ_3RD_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[2] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[3] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[4] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[5] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[6] = center_freq + DFS_5GHZ_3RD_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[7] = center_freq + DFS_5GHZ_4TH_CHAN_FREQ_OFFSET;
|
|
|
+ }
|
|
|
+
|
|
|
+ return nchannels;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+/*
|
|
|
+ * dfs_get_bonding_channels_for_freq() - Get bonding channel frequency.
|
|
|
+ * @dfs: Pointer to wlan_dfs.
|
|
|
+ * @curchan: Pointer to dfs_channel.
|
|
|
+ * @segment_id: Segment ID.
|
|
|
+ * @detector_id: Detector ID.
|
|
|
+ * @freq_list: Pointer to frequency list.
|
|
|
+ */
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+uint8_t dfs_get_bonding_channels_for_freq(struct wlan_dfs *dfs,
|
|
|
+ struct dfs_channel *curchan,
|
|
|
+ uint32_t segment_id,
|
|
|
+ uint8_t detector_id,
|
|
|
+ uint16_t *freq_list)
|
|
|
+{
|
|
|
+ uint16_t center_freq;
|
|
|
+ uint8_t nchannels = 0;
|
|
|
+
|
|
|
+ if (detector_id == AGILE_DETECTOR_ID)
|
|
|
+ center_freq = dfs->dfs_agile_precac_freq_mhz;
|
|
|
+ else if (!segment_id)
|
|
|
+ center_freq = curchan->dfs_ch_mhz_freq_seg1;
|
|
|
+ else {
|
|
|
+ /* When precac is running "dfs_ch_vhtop_ch_freq_seg2" is
|
|
|
+ * zero and "dfs_precac_secondary_freq" holds the secondary
|
|
|
+ * frequency.
|
|
|
+ */
|
|
|
+ if (dfs_is_precac_timer_running(dfs))
|
|
|
+ center_freq = dfs->dfs_precac_secondary_freq_mhz;
|
|
|
+ else
|
|
|
+ center_freq = curchan->dfs_ch_mhz_freq_seg2;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (WLAN_IS_CHAN_MODE_20(curchan)) {
|
|
|
+ nchannels = 1;
|
|
|
+ freq_list[0] = center_freq;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_40(curchan)) {
|
|
|
+ nchannels = 2;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_80(curchan) ||
|
|
|
+ WLAN_IS_CHAN_MODE_80_80(curchan) ||
|
|
|
+ detector_id == AGILE_DETECTOR_ID) {
|
|
|
+ /* If the current channel's bandwidth is 80/80+80/160Mhz,
|
|
|
+ * the corresponding agile Detector's bandwidth will be 80Mhz.
|
|
|
+ * Therefore, if radar is found on the agile detector find
|
|
|
+ * subchannels for 80Mhz bandwidth.
|
|
|
+ */
|
|
|
+ nchannels = 4;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[2] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[3] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ } else if (WLAN_IS_CHAN_MODE_160(curchan)) {
|
|
|
+ nchannels = 8;
|
|
|
+ center_freq = curchan->dfs_ch_mhz_freq_seg2;
|
|
|
+ freq_list[0] = center_freq - DFS_5GHZ_4TH_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[1] = center_freq - DFS_5GHZ_3RD_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[2] = center_freq - DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[3] = center_freq - DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[4] = center_freq + DFS_5GHZ_NEXT_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[5] = center_freq + DFS_5GHZ_2ND_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[6] = center_freq + DFS_5GHZ_3RD_CHAN_FREQ_OFFSET;
|
|
|
+ freq_list[7] = center_freq + DFS_5GHZ_4TH_CHAN_FREQ_OFFSET;
|
|
|
+ }
|
|
|
+
|
|
|
+ return nchannels;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#ifdef CONFIG_CHAN_NUM_API
|
|
|
uint8_t dfs_get_bonding_channels(struct wlan_dfs *dfs,
|
|
|
struct dfs_channel *curchan,
|
|
|
uint32_t segment_id,
|
|
@@ -583,6 +770,7 @@ uint8_t dfs_get_bonding_channels(struct wlan_dfs *dfs,
|
|
|
|
|
|
return nchannels;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
static inline void dfs_reset_bangradar(struct wlan_dfs *dfs)
|
|
|
{
|
|
@@ -633,34 +821,31 @@ int dfs_second_segment_radar_disable(struct wlan_dfs *dfs)
|
|
|
|
|
|
/* dfs_prepare_nol_ie_bitmap: Create a Bitmap from the radar found subchannels
|
|
|
* to be sent along with RCSA.
|
|
|
- *
|
|
|
- * Get the subchannels affected by radar and all the channels in current
|
|
|
- * channel.
|
|
|
- * start from the first bit pointing to first subchannel in the current
|
|
|
- * channel, set as 1 if radar affected, 0 if unaffected.
|
|
|
- * If the number of subchannels increases (future cases), the bitmap should
|
|
|
- * be an array of required size.
|
|
|
- *
|
|
|
- * Please change macro "MIN_DFS_SUBCHAN_BW" when NOL logic changes.
|
|
|
+ * @dfs: Pointer to wlan_dfs.
|
|
|
+ * @radar_found: Pointer to radar_found_info.
|
|
|
+ * @in_sub_channels: Pointer to Sub-channels.
|
|
|
+ * @n_in_sub_channels: Number of sub-channels.
|
|
|
*/
|
|
|
-static void dfs_prepare_nol_ie_bitmap(struct wlan_dfs *dfs,
|
|
|
- struct radar_found_info *radar_found,
|
|
|
- uint8_t *in_sub_channels,
|
|
|
- uint8_t n_in_sub_channels)
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
+static void
|
|
|
+dfs_prepare_nol_ie_bitmap_for_freq(struct wlan_dfs *dfs,
|
|
|
+ struct radar_found_info *radar_found,
|
|
|
+ uint16_t *in_sub_channels,
|
|
|
+ uint8_t n_in_sub_channels)
|
|
|
{
|
|
|
- uint8_t cur_subchans[NUM_CHANNELS_160MHZ];
|
|
|
+ uint16_t cur_subchans[NUM_CHANNELS_160MHZ];
|
|
|
uint8_t n_cur_subchans;
|
|
|
uint8_t i;
|
|
|
uint8_t j;
|
|
|
uint8_t bits = 0x01;
|
|
|
|
|
|
- n_cur_subchans = dfs_get_bonding_channels(dfs, dfs->dfs_curchan,
|
|
|
- radar_found->segment_id,
|
|
|
- radar_found->detector_id,
|
|
|
- cur_subchans);
|
|
|
+ n_cur_subchans =
|
|
|
+ dfs_get_bonding_channels_for_freq(dfs, dfs->dfs_curchan,
|
|
|
+ radar_found->segment_id,
|
|
|
+ radar_found->detector_id,
|
|
|
+ cur_subchans);
|
|
|
dfs->dfs_nol_ie_bandwidth = MIN_DFS_SUBCHAN_BW;
|
|
|
- dfs->dfs_nol_ie_startfreq =
|
|
|
- (uint16_t)utils_dfs_chan_to_freq(cur_subchans[0]);
|
|
|
+ dfs->dfs_nol_ie_startfreq = cur_subchans[0];
|
|
|
|
|
|
/* Search through the array list of radar affected subchannels
|
|
|
* to find if the subchannel in our current channel has radar hit.
|
|
@@ -676,6 +861,7 @@ static void dfs_prepare_nol_ie_bitmap(struct wlan_dfs *dfs,
|
|
|
bits <<= 1;
|
|
|
}
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
void dfs_fetch_nol_ie_info(struct wlan_dfs *dfs,
|
|
|
uint8_t *nol_ie_bandwidth,
|
|
@@ -711,12 +897,13 @@ static void dfs_reset_nol_ie_bitmap(struct wlan_dfs *dfs)
|
|
|
dfs->dfs_nol_ie_bitmap = 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
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];
|
|
|
+ uint16_t radar_subchans[NUM_CHANNELS_160MHZ];
|
|
|
bool should_nol_ie_be_sent = true;
|
|
|
|
|
|
qdf_mem_zero(radar_subchans, sizeof(radar_subchans));
|
|
@@ -726,11 +913,11 @@ bool dfs_process_nol_ie_bitmap(struct wlan_dfs *dfs, uint8_t nol_ie_bandwidth,
|
|
|
* can't be sent to uplink.
|
|
|
*/
|
|
|
num_subchans =
|
|
|
- dfs_get_bonding_channels(dfs,
|
|
|
- dfs->dfs_curchan,
|
|
|
- SEG_ID_PRIMARY,
|
|
|
- DETECTOR_ID_0,
|
|
|
- radar_subchans);
|
|
|
+ dfs_get_bonding_channels_for_freq(dfs,
|
|
|
+ dfs->dfs_curchan,
|
|
|
+ SEG_ID_PRIMARY,
|
|
|
+ DETECTOR_ID_0,
|
|
|
+ radar_subchans);
|
|
|
should_nol_ie_be_sent = false;
|
|
|
} else {
|
|
|
/* Add the NOL IE information in DFS structure so that RCSA
|
|
@@ -744,29 +931,34 @@ bool dfs_process_nol_ie_bitmap(struct wlan_dfs *dfs, uint8_t nol_ie_bandwidth,
|
|
|
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);
|
|
|
+ radar_subchans[num_subchans] = frequency;
|
|
|
}
|
|
|
bits <<= 1;
|
|
|
frequency += nol_ie_bandwidth;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- dfs_radar_add_channel_list_to_nol(dfs, radar_subchans, num_subchans);
|
|
|
+ dfs_radar_add_channel_list_to_nol_for_freq(dfs, radar_subchans,
|
|
|
+ num_subchans);
|
|
|
return should_nol_ie_be_sent;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
+#ifdef CONFIG_CHAN_FREQ_API
|
|
|
QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
struct radar_found_info *radar_found)
|
|
|
{
|
|
|
bool wait_for_csa = false;
|
|
|
- uint8_t channels[NUM_CHANNELS_160MHZ];
|
|
|
+ uint16_t freq_list[NUM_CHANNELS_160MHZ];
|
|
|
uint8_t num_channels;
|
|
|
QDF_STATUS status;
|
|
|
uint32_t freq_center;
|
|
|
uint32_t radarfound_freq;
|
|
|
+ struct dfs_channel *dfs_curchan;
|
|
|
+
|
|
|
+ dfs_curchan = dfs->dfs_curchan;
|
|
|
|
|
|
- if (!dfs->dfs_curchan) {
|
|
|
+ if (!dfs_curchan) {
|
|
|
dfs_err(dfs, WLAN_DEBUG_DFS_ALWAYS, "dfs->dfs_curchan is NULL");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
@@ -776,7 +968,7 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
* Detector we need to process it since Agile Detector has a
|
|
|
* different channel.
|
|
|
*/
|
|
|
- if (!dfs_radarevent_basic_sanity(dfs, dfs->dfs_curchan) &&
|
|
|
+ if (!dfs_radarevent_basic_sanity(dfs, dfs_curchan) &&
|
|
|
!(radar_found->detector_id == AGILE_DETECTOR_ID)) {
|
|
|
dfs_err(dfs, WLAN_DEBUG_DFS,
|
|
|
"radar event on a non-DFS channel");
|
|
@@ -785,8 +977,8 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
|
|
|
/* Sanity checks for radar on Agile detector */
|
|
|
if (radar_found->detector_id == AGILE_DETECTOR_ID &&
|
|
|
- (!dfs_is_agile_precac_enabled(dfs) ||
|
|
|
- !dfs->dfs_agile_precac_freq)) {
|
|
|
+ (!dfs_is_agile_precac_enabled(dfs) || !dfs->dfs_agile_precac_freq_mhz))
|
|
|
+ {
|
|
|
dfs_err(dfs, WLAN_DEBUG_DFS,
|
|
|
"radar on Agile detector when ADFS is not running");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -809,7 +1001,7 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
if (radar_found->detector_id == AGILE_DETECTOR_ID)
|
|
|
dfs_info(dfs, WLAN_DEBUG_DFS_ALWAYS,
|
|
|
"Radar found on Agile detector freq=%d radar freq=%d",
|
|
|
- freq_center, radarfound_freq);
|
|
|
+ freq_center, radarfound_freq);
|
|
|
else if (radar_found->segment_id == SEG_ID_SECONDARY)
|
|
|
dfs_info(dfs, WLAN_DEBUG_DFS_ALWAYS,
|
|
|
"Radar found on second segment.Radarfound Freq=%d MHz.Secondary Chan cfreq=%d MHz.",
|
|
@@ -818,11 +1010,10 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
dfs_info(NULL, WLAN_DEBUG_DFS_ALWAYS,
|
|
|
"Radar found on channel=%d, freq=%d MHz. Primary beaconning chan:%d, freq=%d MHz.",
|
|
|
utils_dfs_freq_to_chan(radarfound_freq),
|
|
|
- radarfound_freq, dfs->dfs_curchan->dfs_ch_ieee,
|
|
|
- dfs->dfs_curchan->dfs_ch_freq);
|
|
|
+ radarfound_freq, dfs_curchan->dfs_ch_ieee,
|
|
|
+ dfs_curchan->dfs_ch_freq);
|
|
|
|
|
|
- utils_dfs_deliver_event(dfs->dfs_pdev_obj,
|
|
|
- radarfound_freq,
|
|
|
+ utils_dfs_deliver_event(dfs->dfs_pdev_obj, radarfound_freq,
|
|
|
WLAN_EV_RADAR_DETECTED);
|
|
|
|
|
|
if (!dfs->dfs_use_nol) {
|
|
@@ -832,28 +1023,29 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
}
|
|
|
|
|
|
if (dfs->dfs_bangradar_type == DFS_BANGRADAR_FOR_ALL_SUBCHANS)
|
|
|
- num_channels = dfs_get_bonding_channels_without_seg_info(
|
|
|
- dfs->dfs_curchan, channels);
|
|
|
+ num_channels =
|
|
|
+ dfs_get_bonding_channel_without_seg_info_for_freq
|
|
|
+ (dfs_curchan, freq_list);
|
|
|
/* BW reduction is dependent on subchannel marking */
|
|
|
else if ((dfs->dfs_use_nol_subchannel_marking) &&
|
|
|
(!(dfs->dfs_bangradar_type) ||
|
|
|
- (dfs->dfs_bangradar_type ==
|
|
|
- DFS_BANGRADAR_FOR_SPECIFIC_SUBCHANS)))
|
|
|
- num_channels = dfs_find_radar_affected_subchans(dfs,
|
|
|
- radar_found,
|
|
|
- channels,
|
|
|
- freq_center);
|
|
|
- else
|
|
|
+ (dfs->dfs_bangradar_type ==
|
|
|
+ DFS_BANGRADAR_FOR_SPECIFIC_SUBCHANS)))
|
|
|
num_channels =
|
|
|
- dfs_get_bonding_channels(dfs,
|
|
|
- dfs->dfs_curchan,
|
|
|
- radar_found->segment_id,
|
|
|
- radar_found->detector_id,
|
|
|
- channels);
|
|
|
+ dfs_find_radar_affected_subchans_for_freq(dfs,
|
|
|
+ radar_found,
|
|
|
+ freq_list,
|
|
|
+ freq_center);
|
|
|
+ else
|
|
|
+ num_channels = dfs_get_bonding_channels_for_freq
|
|
|
+ (dfs, dfs_curchan, radar_found->segment_id,
|
|
|
+ radar_found->detector_id, freq_list);
|
|
|
|
|
|
dfs_reset_bangradar(dfs);
|
|
|
|
|
|
- status = dfs_radar_add_channel_list_to_nol(dfs, channels, num_channels);
|
|
|
+ status = dfs_radar_add_channel_list_to_nol_for_freq(dfs,
|
|
|
+ freq_list,
|
|
|
+ num_channels);
|
|
|
if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
dfs_err(dfs, WLAN_DEBUG_DFS,
|
|
|
"radar event received on invalid channel");
|
|
@@ -867,8 +1059,8 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
(dfs->dfs_is_rcsa_ie_sent = true);
|
|
|
if (dfs->dfs_use_nol_subchannel_marking) {
|
|
|
dfs_reset_nol_ie_bitmap(dfs);
|
|
|
- dfs_prepare_nol_ie_bitmap(dfs, radar_found, channels,
|
|
|
- num_channels);
|
|
|
+ dfs_prepare_nol_ie_bitmap_for_freq(dfs, radar_found, freq_list,
|
|
|
+ num_channels);
|
|
|
dfs->dfs_is_nol_ie_sent = true;
|
|
|
}
|
|
|
|
|
@@ -892,12 +1084,11 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
dfs_debug(dfs, WLAN_DEBUG_DFS,
|
|
|
"%s: %d Radar found on dfs detector:%d",
|
|
|
__func__, __LINE__, radar_found->detector_id);
|
|
|
- dfs_mark_precac_nol(dfs,
|
|
|
- dfs->is_radar_found_on_secondary_seg,
|
|
|
- radar_found->detector_id,
|
|
|
- channels,
|
|
|
- num_channels);
|
|
|
-
|
|
|
+ dfs_mark_precac_nol_for_freq(dfs,
|
|
|
+ dfs->is_radar_found_on_secondary_seg,
|
|
|
+ radar_found->detector_id,
|
|
|
+ freq_list,
|
|
|
+ num_channels);
|
|
|
/*
|
|
|
* This calls into the umac DFS code, which sets the umac
|
|
|
* related radar flags and begins the channel change
|
|
@@ -947,11 +1138,12 @@ QDF_STATUS dfs_process_radar_ind(struct wlan_dfs *dfs,
|
|
|
dfs_second_segment_radar_disable(dfs);
|
|
|
}
|
|
|
|
|
|
- dfs_mlme_mark_dfs(dfs->dfs_pdev_obj,
|
|
|
- dfs->dfs_curchan->dfs_ch_ieee,
|
|
|
- dfs->dfs_curchan->dfs_ch_freq,
|
|
|
- dfs->dfs_curchan->dfs_ch_vhtop_ch_freq_seg2,
|
|
|
- dfs->dfs_curchan->dfs_ch_flags);
|
|
|
+ dfs_mlme_mark_dfs_for_freq(dfs->dfs_pdev_obj,
|
|
|
+ dfs->dfs_curchan->dfs_ch_ieee,
|
|
|
+ dfs->dfs_curchan->dfs_ch_freq,
|
|
|
+ dfs->dfs_curchan->dfs_ch_mhz_freq_seg2,
|
|
|
+ dfs->dfs_curchan->dfs_ch_flags);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
+#endif
|