|
@@ -1722,12 +1722,12 @@ int wlan_hdd_sap_cfg_dfs_override(struct hdd_adapter *adapter)
|
|
|
sap_config->chan_freq = con_ch_freq;
|
|
|
|
|
|
if (con_sap_config->acs_cfg.acs_mode == true) {
|
|
|
- if (con_ch != con_sap_config->acs_cfg.pri_ch &&
|
|
|
- con_ch != con_sap_config->acs_cfg.ht_sec_ch) {
|
|
|
+ if (con_ch_freq != con_sap_config->acs_cfg.pri_ch_freq &&
|
|
|
+ con_ch_freq != con_sap_config->acs_cfg.ht_sec_ch_freq) {
|
|
|
hdd_err("Primary AP channel config error");
|
|
|
- hdd_err("Operating ch: %d ACS ch: %d %d",
|
|
|
- con_ch, con_sap_config->acs_cfg.pri_ch,
|
|
|
- con_sap_config->acs_cfg.ht_sec_ch);
|
|
|
+ hdd_err("Operating ch: %d ACS ch freq: %d Sec Freq %d",
|
|
|
+ con_ch, con_sap_config->acs_cfg.pri_ch_freq,
|
|
|
+ con_sap_config->acs_cfg.ht_sec_ch_freq);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
/* Sec AP ACS info is overwritten with Pri AP due to DFS
|
|
@@ -1755,11 +1755,10 @@ int wlan_hdd_sap_cfg_dfs_override(struct hdd_adapter *adapter)
|
|
|
con_sap_config->acs_cfg.ch_list_count;
|
|
|
|
|
|
} else {
|
|
|
- sap_config->acs_cfg.pri_ch = con_ch;
|
|
|
+ sap_config->acs_cfg.pri_ch_freq = con_ch_freq;
|
|
|
if (sap_config->acs_cfg.ch_width > eHT_CHANNEL_WIDTH_20MHZ)
|
|
|
- sap_config->acs_cfg.ht_sec_ch = wlan_reg_freq_to_chan(
|
|
|
- hdd_ctx->pdev,
|
|
|
- con_sap_config->sec_ch_freq);
|
|
|
+ sap_config->acs_cfg.ht_sec_ch_freq =
|
|
|
+ con_sap_config->sec_ch_freq;
|
|
|
}
|
|
|
|
|
|
return con_ch;
|
|
@@ -2941,18 +2940,18 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
|
|
|
/* if it is only one channel, send ACS event to upper layer */
|
|
|
if (sap_config->acs_cfg.ch_list_count == 1) {
|
|
|
- sap_config->acs_cfg.pri_ch =
|
|
|
- wlan_reg_freq_to_chan(hdd_ctx->pdev,
|
|
|
- sap_config->acs_cfg.freq_list[0]);
|
|
|
+ sap_config->acs_cfg.pri_ch_freq =
|
|
|
+ sap_config->acs_cfg.freq_list[0];
|
|
|
wlan_sap_set_sap_ctx_acs_cfg(
|
|
|
WLAN_HDD_GET_SAP_CTX_PTR(adapter), sap_config);
|
|
|
sap_config_acs_result(hdd_ctx->mac_handle,
|
|
|
WLAN_HDD_GET_SAP_CTX_PTR(adapter),
|
|
|
- sap_config->acs_cfg.ht_sec_ch);
|
|
|
+ sap_config->acs_cfg.ht_sec_ch_freq);
|
|
|
sap_config->ch_params.ch_width =
|
|
|
sap_config->acs_cfg.ch_width;
|
|
|
sap_config->ch_params.sec_ch_offset =
|
|
|
- sap_config->acs_cfg.ht_sec_ch;
|
|
|
+ wlan_reg_freq_to_chan(hdd_ctx->pdev,
|
|
|
+ sap_config->acs_cfg.ht_sec_ch_freq);
|
|
|
sap_config->ch_params.center_freq_seg0 =
|
|
|
sap_config->acs_cfg.vht_seg0_center_ch;
|
|
|
sap_config->ch_params.center_freq_seg1 =
|
|
@@ -3149,6 +3148,8 @@ void wlan_hdd_cfg80211_acs_ch_select_evt(struct hdd_adapter *adapter)
|
|
|
int ret_val;
|
|
|
struct hdd_adapter *con_sap_adapter;
|
|
|
uint16_t ch_width;
|
|
|
+ uint8_t pri_channel;
|
|
|
+ uint8_t ht_sec_channel;
|
|
|
|
|
|
vendor_event = cfg80211_vendor_event_alloc(hdd_ctx->wiphy,
|
|
|
&(adapter->wdev),
|
|
@@ -3161,9 +3162,15 @@ void wlan_hdd_cfg80211_acs_ch_select_evt(struct hdd_adapter *adapter)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ pri_channel = wlan_reg_freq_to_chan(hdd_ctx->pdev,
|
|
|
+ sap_cfg->acs_cfg.pri_ch_freq);
|
|
|
+
|
|
|
+ ht_sec_channel = wlan_reg_freq_to_chan(hdd_ctx->pdev,
|
|
|
+ sap_cfg->acs_cfg.ht_sec_ch_freq);
|
|
|
+
|
|
|
ret_val = nla_put_u8(vendor_event,
|
|
|
QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL,
|
|
|
- sap_cfg->acs_cfg.pri_ch);
|
|
|
+ pri_channel);
|
|
|
if (ret_val) {
|
|
|
hdd_err("QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL put fail");
|
|
|
kfree_skb(vendor_event);
|
|
@@ -3171,8 +3178,8 @@ void wlan_hdd_cfg80211_acs_ch_select_evt(struct hdd_adapter *adapter)
|
|
|
}
|
|
|
|
|
|
ret_val = nla_put_u8(vendor_event,
|
|
|
- QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL,
|
|
|
- sap_cfg->acs_cfg.ht_sec_ch);
|
|
|
+ QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL,
|
|
|
+ ht_sec_channel);
|
|
|
if (ret_val) {
|
|
|
hdd_err("QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL put fail");
|
|
|
kfree_skb(vendor_event);
|
|
@@ -3214,14 +3221,14 @@ void wlan_hdd_cfg80211_acs_ch_select_evt(struct hdd_adapter *adapter)
|
|
|
kfree_skb(vendor_event);
|
|
|
return;
|
|
|
}
|
|
|
- if (sap_cfg->acs_cfg.pri_ch > 14)
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(sap_cfg->acs_cfg.pri_ch_freq))
|
|
|
ret_val = nla_put_u8(vendor_event,
|
|
|
QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE,
|
|
|
- QCA_ACS_MODE_IEEE80211A);
|
|
|
+ QCA_ACS_MODE_IEEE80211G);
|
|
|
else
|
|
|
ret_val = nla_put_u8(vendor_event,
|
|
|
QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE,
|
|
|
- QCA_ACS_MODE_IEEE80211G);
|
|
|
+ QCA_ACS_MODE_IEEE80211A);
|
|
|
|
|
|
if (ret_val) {
|
|
|
hdd_err("QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE put fail");
|
|
@@ -3229,9 +3236,10 @@ void wlan_hdd_cfg80211_acs_ch_select_evt(struct hdd_adapter *adapter)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- hdd_debug("ACS result for %s: PRI_CH: %d SEC_CH: %d VHT_SEG0: %d VHT_SEG1: %d ACS_BW: %d",
|
|
|
- adapter->dev->name, sap_cfg->acs_cfg.pri_ch,
|
|
|
- sap_cfg->acs_cfg.ht_sec_ch, sap_cfg->acs_cfg.vht_seg0_center_ch,
|
|
|
+ hdd_debug("ACS result for %s: PRI_CH_FREQ: %d SEC_CH_FREQ: %d VHT_SEG0: %d VHT_SEG1: %d ACS_BW: %d",
|
|
|
+ adapter->dev->name, sap_cfg->acs_cfg.pri_ch_freq,
|
|
|
+ sap_cfg->acs_cfg.ht_sec_ch_freq,
|
|
|
+ sap_cfg->acs_cfg.vht_seg0_center_ch,
|
|
|
sap_cfg->acs_cfg.vht_seg1_center_ch, ch_width);
|
|
|
|
|
|
cfg80211_vendor_event(vendor_event, GFP_KERNEL);
|
|
@@ -10946,13 +10954,15 @@ static void hdd_update_acs_sap_config(struct hdd_context *hdd_ctx,
|
|
|
sap_config->ch_width_orig = channel_bonding_mode ?
|
|
|
eHT_CHANNEL_WIDTH_40MHZ : eHT_CHANNEL_WIDTH_20MHZ;
|
|
|
}
|
|
|
- sap_config->acs_cfg.pri_ch = channel_list->pri_ch;
|
|
|
+ sap_config->acs_cfg.pri_ch_freq =
|
|
|
+ wlan_reg_chan_to_freq(hdd_ctx->pdev, channel_list->pri_ch);
|
|
|
sap_config->acs_cfg.ch_width = channel_list->chan_width;
|
|
|
sap_config->acs_cfg.vht_seg0_center_ch =
|
|
|
channel_list->vht_seg0_center_ch;
|
|
|
sap_config->acs_cfg.vht_seg1_center_ch =
|
|
|
channel_list->vht_seg1_center_ch;
|
|
|
- sap_config->acs_cfg.ht_sec_ch = channel_list->ht_sec_ch;
|
|
|
+ sap_config->acs_cfg.ht_sec_ch_freq =
|
|
|
+ wlan_reg_chan_to_freq(hdd_ctx->pdev, channel_list->ht_sec_ch);
|
|
|
}
|
|
|
|
|
|
static int hdd_update_acs_channel(struct hdd_adapter *adapter, uint8_t reason,
|
|
@@ -11010,14 +11020,15 @@ static int hdd_update_acs_channel(struct hdd_adapter *adapter, uint8_t reason,
|
|
|
|
|
|
/* LTE coex event on current channel */
|
|
|
case QCA_WLAN_VENDOR_ACS_SELECT_REASON_LTE_COEX:
|
|
|
- sap_config->acs_cfg.pri_ch = channel_list->pri_ch;
|
|
|
+ sap_config->acs_cfg.pri_ch_freq =
|
|
|
+ wlan_reg_chan_to_freq(hdd_ctx->pdev,
|
|
|
+ channel_list->pri_ch);
|
|
|
sap_config->acs_cfg.ch_width = channel_list->chan_width;
|
|
|
hdd_ap_ctx->sap_config.ch_width_orig =
|
|
|
channel_list->chan_width;
|
|
|
wlan_hdd_set_sap_csa_reason(hdd_ctx->psoc, adapter->vdev_id,
|
|
|
CSA_REASON_LTE_COEX);
|
|
|
- hdd_switch_sap_channel(adapter, sap_config->acs_cfg.pri_ch,
|
|
|
- true);
|
|
|
+ hdd_switch_sap_channel(adapter, channel_list->pri_ch, true);
|
|
|
break;
|
|
|
|
|
|
default:
|