|
@@ -1471,6 +1471,60 @@ static void hdd_regulatory_chanlist_dump(struct regulatory_channel *chan_list)
|
|
|
hdd_debug("end total_count %d", count);
|
|
|
}
|
|
|
|
|
|
+#ifdef FEATURE_WLAN_CH_AVOID_EXT
|
|
|
+/**
|
|
|
+ * hdd_country_change_bw_check() - Check if bandwidth changed
|
|
|
+ * @hdd_ctx: Global HDD context
|
|
|
+ * @adapter: HDD vdev context
|
|
|
+ * @oper_freq: current frequency of adapter
|
|
|
+ *
|
|
|
+ * Return: true if bandwidth changed otherwise false.
|
|
|
+ */
|
|
|
+static bool
|
|
|
+hdd_country_change_bw_check(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter *adapter,
|
|
|
+ qdf_freq_t oper_freq)
|
|
|
+{
|
|
|
+ bool width_changed = false;
|
|
|
+ enum phy_ch_width width;
|
|
|
+ uint16_t org_bw = 0;
|
|
|
+ struct regulatory_channel *cur_chan_list = NULL;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ cur_chan_list = qdf_mem_malloc(sizeof(*cur_chan_list) * NUM_CHANNELS);
|
|
|
+ if (!cur_chan_list)
|
|
|
+ return false;
|
|
|
+
|
|
|
+ ucfg_reg_get_current_chan_list(hdd_ctx->pdev,
|
|
|
+ cur_chan_list);
|
|
|
+
|
|
|
+ width = hdd_get_adapter_width(adapter);
|
|
|
+ org_bw = wlan_reg_get_bw_value(width);
|
|
|
+
|
|
|
+ for (i = 0; i < NUM_CHANNELS; i++) {
|
|
|
+ if (cur_chan_list[i].state ==
|
|
|
+ CHANNEL_STATE_DISABLE)
|
|
|
+ continue;
|
|
|
+
|
|
|
+ if (cur_chan_list[i].center_freq == oper_freq &&
|
|
|
+ org_bw > cur_chan_list[i].max_bw) {
|
|
|
+ width_changed = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ qdf_mem_free(cur_chan_list);
|
|
|
+ return width_changed;
|
|
|
+}
|
|
|
+#else
|
|
|
+static inline bool
|
|
|
+hdd_country_change_bw_check(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter *adapter,
|
|
|
+ qdf_freq_t oper_freq)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
/**
|
|
|
* hdd_country_change_update_sta() - handle country code change for STA
|
|
|
* @hdd_ctx: Global HDD context
|
|
@@ -1486,7 +1540,7 @@ static void hdd_country_change_update_sta(struct hdd_context *hdd_ctx)
|
|
|
struct hdd_station_ctx *sta_ctx = NULL;
|
|
|
struct wlan_objmgr_pdev *pdev = NULL;
|
|
|
uint32_t new_phy_mode;
|
|
|
- bool freq_changed, phy_changed;
|
|
|
+ bool freq_changed, phy_changed, width_changed;
|
|
|
qdf_freq_t oper_freq;
|
|
|
eCsrPhyMode csr_phy_mode;
|
|
|
wlan_net_dev_ref_dbgid dbgid = NET_DEV_HOLD_COUNTRY_CHANGE_UPDATE_STA;
|
|
@@ -1495,6 +1549,7 @@ static void hdd_country_change_update_sta(struct hdd_context *hdd_ctx)
|
|
|
|
|
|
hdd_for_each_adapter_dev_held_safe(hdd_ctx, adapter, next_adapter,
|
|
|
dbgid) {
|
|
|
+ width_changed = false;
|
|
|
oper_freq = hdd_get_adapter_home_channel(adapter);
|
|
|
if (oper_freq)
|
|
|
freq_changed = wlan_reg_is_disable_for_freq(pdev,
|
|
@@ -1517,7 +1572,11 @@ static void hdd_country_change_update_sta(struct hdd_context *hdd_ctx)
|
|
|
csr_convert_from_reg_phy_mode(new_phy_mode);
|
|
|
phy_changed = (sta_ctx->reg_phymode != csr_phy_mode);
|
|
|
|
|
|
- if (phy_changed || freq_changed) {
|
|
|
+ width_changed = hdd_country_change_bw_check(hdd_ctx,
|
|
|
+ adapter,
|
|
|
+ oper_freq);
|
|
|
+
|
|
|
+ if (phy_changed || freq_changed || width_changed) {
|
|
|
wlan_hdd_cm_issue_disconnect(adapter,
|
|
|
REASON_UNSPEC_FAILURE,
|
|
|
false);
|