|
@@ -1900,9 +1900,8 @@ int wlan_hdd_cfg80211_start_acs(struct hdd_adapter *adapter)
|
|
|
hdd_err("SAP config is NULL");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- if (hdd_ctx->acs_policy.acs_channel)
|
|
|
- sap_config->chan_freq = wlan_reg_chan_to_freq(hdd_ctx->pdev,
|
|
|
- hdd_ctx->acs_policy.acs_channel);
|
|
|
+ if (hdd_ctx->acs_policy.acs_chan_freq)
|
|
|
+ sap_config->chan_freq = hdd_ctx->acs_policy.acs_chan_freq;
|
|
|
else
|
|
|
sap_config->chan_freq = AUTO_CHANNEL_SELECT;
|
|
|
ucfg_policy_mgr_get_mcc_scc_switch(hdd_ctx->psoc,
|
|
@@ -10254,8 +10253,9 @@ wlan_hdd_sap_config_policy[QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_MAX + 1] = {
|
|
|
|
|
|
static const struct nla_policy
|
|
|
wlan_hdd_set_acs_dfs_config_policy[QCA_WLAN_VENDOR_ATTR_ACS_DFS_MAX + 1] = {
|
|
|
- [QCA_WLAN_VENDOR_ATTR_ACS_DFS_MODE] = {.type = NLA_U8 },
|
|
|
- [QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT] = {.type = NLA_U8 },
|
|
|
+ [QCA_WLAN_VENDOR_ATTR_ACS_DFS_MODE] = {.type = NLA_U8},
|
|
|
+ [QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT] = {.type = NLA_U8},
|
|
|
+ [QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT] = {.type = NLA_U32},
|
|
|
};
|
|
|
|
|
|
/**
|
|
@@ -10285,7 +10285,7 @@ __wlan_hdd_cfg80211_acs_dfs_mode(struct wiphy *wiphy,
|
|
|
int ret;
|
|
|
struct acs_dfs_policy *acs_policy;
|
|
|
int mode = DFS_MODE_NONE;
|
|
|
- int channel_hint = 0;
|
|
|
+ uint32_t freq_hint = 0;
|
|
|
|
|
|
hdd_enter_dev(wdev->netdev);
|
|
|
|
|
@@ -10323,15 +10323,25 @@ __wlan_hdd_cfg80211_acs_dfs_mode(struct wiphy *wiphy,
|
|
|
* SCM sends this attribute to provide an active channel,
|
|
|
* to skip redundant ACS between drivers, and save driver start up time
|
|
|
*/
|
|
|
- if (tb[QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT])
|
|
|
- channel_hint = nla_get_u8(
|
|
|
+ if (tb[QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT]) {
|
|
|
+ freq_hint = nla_get_u32(
|
|
|
+ tb[QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT]);
|
|
|
+ } else if (tb[QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT]) {
|
|
|
+ uint32_t channel_hint = nla_get_u8(
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT]);
|
|
|
|
|
|
- if (!IS_CHANNEL_VALID(channel_hint)) {
|
|
|
- hdd_err("acs channel is not valid");
|
|
|
+ freq_hint = wlan_reg_legacy_chan_to_freq(hdd_ctx->pdev,
|
|
|
+ channel_hint);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (freq_hint && !WLAN_REG_IS_24GHZ_CH_FREQ(freq_hint) &&
|
|
|
+ !WLAN_REG_IS_5GHZ_CH_FREQ(freq_hint) &&
|
|
|
+ !WLAN_REG_IS_6GHZ_CHAN_FREQ(freq_hint)) {
|
|
|
+ hdd_err("acs channel frequency is not valid");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- acs_policy->acs_channel = channel_hint;
|
|
|
+
|
|
|
+ acs_policy->acs_chan_freq = freq_hint;
|
|
|
|
|
|
return 0;
|
|
|
}
|