|
@@ -2922,6 +2922,7 @@ wlan_hdd_cfg80211_do_acs_policy[QCA_WLAN_VENDOR_ATTR_ACS_MAX + 1] = {
|
|
|
[QCA_WLAN_VENDOR_ATTR_ACS_PUNCTURE_BITMAP] = { .type = NLA_U16 },
|
|
|
[QCA_WLAN_VENDOR_ATTR_ACS_EDMG_ENABLED] = { .type = NLA_FLAG },
|
|
|
[QCA_WLAN_VENDOR_ATTR_ACS_EDMG_CHANNEL] = { .type = NLA_U8 },
|
|
|
+ [QCA_WLAN_VENDOR_ATTR_ACS_LAST_SCAN_AGEOUT_TIME] = { .type = NLA_U32 },
|
|
|
};
|
|
|
|
|
|
int hdd_start_vendor_acs(struct hdd_adapter *adapter)
|
|
@@ -3339,6 +3340,7 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
bool sap_11ac_override = 0;
|
|
|
uint8_t vht_ch_width;
|
|
|
uint32_t channel_bonding_mode_2g;
|
|
|
+ uint32_t last_scan_ageout_time;
|
|
|
|
|
|
/* ***Note*** Donot set SME config related to ACS operation here because
|
|
|
* ACS operation is not synchronouse and ACS for Second AP may come when
|
|
@@ -3443,6 +3445,12 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
ch_width = 20;
|
|
|
}
|
|
|
|
|
|
+ if (tb[QCA_WLAN_VENDOR_ATTR_ACS_LAST_SCAN_AGEOUT_TIME])
|
|
|
+ last_scan_ageout_time =
|
|
|
+ nla_get_u32(tb[QCA_WLAN_VENDOR_ATTR_ACS_LAST_SCAN_AGEOUT_TIME]);
|
|
|
+ else
|
|
|
+ last_scan_ageout_time = 0;
|
|
|
+
|
|
|
sap_config = &adapter->session.ap.sap_config;
|
|
|
|
|
|
/* Check and free if memory is already allocated for acs channel list */
|
|
@@ -3648,13 +3656,13 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
sap_config->acs_cfg.ch_width = wlan_hdd_update_bw_from_mlme(hdd_ctx,
|
|
|
sap_config);
|
|
|
|
|
|
- hdd_nofl_debug("ACS Config country %s ch_width %d hw_mode %d ACS_BW: %d HT: %d VHT: %d EHT: %d START_CH: %d END_CH: %d band %d",
|
|
|
+ hdd_nofl_debug("ACS Config country %s ch_width %d hw_mode %d ACS_BW: %d HT: %d VHT: %d EHT: %d START_CH: %d END_CH: %d band %d last_scan_ageout_time %d",
|
|
|
hdd_ctx->reg.alpha2, ch_width,
|
|
|
sap_config->acs_cfg.hw_mode, sap_config->acs_cfg.ch_width,
|
|
|
ht_enabled, vht_enabled, eht_enabled,
|
|
|
sap_config->acs_cfg.start_ch_freq,
|
|
|
sap_config->acs_cfg.end_ch_freq,
|
|
|
- sap_config->acs_cfg.band);
|
|
|
+ sap_config->acs_cfg.band, last_scan_ageout_time);
|
|
|
host_log_acs_req_event(adapter->dev->name,
|
|
|
csr_phy_mode_str(sap_config->acs_cfg.hw_mode),
|
|
|
ch_width, ht_enabled, vht_enabled,
|
|
@@ -3664,6 +3672,8 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
sap_config->acs_cfg.is_ht_enabled = ht_enabled;
|
|
|
sap_config->acs_cfg.is_vht_enabled = vht_enabled;
|
|
|
wlan_hdd_acs_set_eht_enabled(sap_config, eht_enabled);
|
|
|
+ sap_config->acs_cfg.last_scan_ageout_time = last_scan_ageout_time;
|
|
|
+
|
|
|
sap_dump_acs_channel(&sap_config->acs_cfg);
|
|
|
|
|
|
qdf_status = ucfg_mlme_get_vendor_acs_support(hdd_ctx->psoc,
|