|
@@ -38,6 +38,7 @@
|
|
|
#include "sap_api.h"
|
|
|
#include "wlan_mlme_api.h"
|
|
|
#include "wlan_mlme_ucfg_api.h"
|
|
|
+#include "target_if.h"
|
|
|
|
|
|
enum policy_mgr_conc_next_action (*policy_mgr_get_current_pref_hw_mode_ptr)
|
|
|
(struct wlan_objmgr_psoc *psoc);
|
|
@@ -1622,7 +1623,8 @@ bool policy_mgr_is_sap_freq_allowed(struct wlan_objmgr_psoc *psoc,
|
|
|
|
|
|
bool policy_mgr_is_sap_restart_required_after_sta_disconnect(
|
|
|
struct wlan_objmgr_psoc *psoc,
|
|
|
- uint32_t sap_vdev_id, uint32_t *intf_ch_freq)
|
|
|
+ uint32_t sap_vdev_id, uint32_t *intf_ch_freq,
|
|
|
+ bool is_acs_mode)
|
|
|
{
|
|
|
struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
uint32_t curr_sap_freq = 0, new_sap_freq = 0;
|
|
@@ -1704,7 +1706,10 @@ bool policy_mgr_is_sap_restart_required_after_sta_disconnect(
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- if (sta_sap_scc_on_lte_coex_chan &&
|
|
|
+ if ((is_acs_mode ||
|
|
|
+ !target_psoc_get_sap_coex_fixed_chan_cap(
|
|
|
+ wlan_psoc_get_tgt_if_handle(psoc))) &&
|
|
|
+ sta_sap_scc_on_lte_coex_chan &&
|
|
|
!policy_mgr_is_safe_channel(psoc, op_ch_freq_list[i]) &&
|
|
|
pm_ctx->last_disconn_sta_freq == op_ch_freq_list[i]) {
|
|
|
curr_sap_freq = op_ch_freq_list[i];
|
|
@@ -2690,7 +2695,7 @@ policy_mgr_valid_sap_conc_channel_check(struct wlan_objmgr_psoc *psoc,
|
|
|
}
|
|
|
|
|
|
void policy_mgr_check_concurrent_intf_and_restart_sap(
|
|
|
- struct wlan_objmgr_psoc *psoc)
|
|
|
+ struct wlan_objmgr_psoc *psoc, bool is_acs_mode)
|
|
|
{
|
|
|
struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
uint32_t mcc_to_scc_switch;
|
|
@@ -2730,7 +2735,7 @@ void policy_mgr_check_concurrent_intf_and_restart_sap(
|
|
|
* as soon as STA disconnected.
|
|
|
*/
|
|
|
if (policy_mgr_is_sap_restart_required_after_sta_disconnect(
|
|
|
- psoc, INVALID_VDEV_ID, &sap_freq)) {
|
|
|
+ psoc, INVALID_VDEV_ID, &sap_freq, is_acs_mode)) {
|
|
|
policy_mgr_debug("move the SAP to configured channel %u",
|
|
|
sap_freq);
|
|
|
restart_sap = true;
|