|
@@ -6980,29 +6980,34 @@ bool policy_mgr_is_any_dfs_beaconing_session_present(
|
|
|
|
|
|
bool policy_mgr_scan_trim_5g_chnls_for_dfs_ap(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
- struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
qdf_freq_t dfs_ch_frq = 0;
|
|
|
+ qdf_freq_t dfs_sta_frq = 0;
|
|
|
uint8_t vdev_id;
|
|
|
enum hw_mode_bandwidth ch_width;
|
|
|
+ enum hw_mode_bandwidth ch_sta_width;
|
|
|
+ QDF_STATUS status;
|
|
|
+ uint8_t sta_sap_scc_on_dfs_chnl;
|
|
|
|
|
|
- pm_ctx = policy_mgr_get_context(psoc);
|
|
|
- if (!pm_ctx) {
|
|
|
- policy_mgr_err("Invalid Context");
|
|
|
+ policy_mgr_is_any_dfs_beaconing_session_present(psoc, &dfs_ch_frq,
|
|
|
+ &ch_width);
|
|
|
+ if (!dfs_ch_frq)
|
|
|
+ return false;
|
|
|
+
|
|
|
+ status = policy_mgr_get_sta_sap_scc_on_dfs_chnl(psoc,
|
|
|
+ &sta_sap_scc_on_dfs_chnl);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return false;
|
|
|
- }
|
|
|
|
|
|
if (policy_mgr_is_sta_present_on_dfs_channel(psoc, &vdev_id,
|
|
|
- &dfs_ch_frq,
|
|
|
- &ch_width)) {
|
|
|
+ &dfs_sta_frq,
|
|
|
+ &ch_sta_width) &&
|
|
|
+ !policy_mgr_is_hw_dbs_capable(psoc) &&
|
|
|
+ sta_sap_scc_on_dfs_chnl != PM_STA_SAP_ON_DFS_DEFAULT) {
|
|
|
policymgr_nofl_err("DFS STA present vdev_id %d ch_feq %d ch_width %d",
|
|
|
- vdev_id, dfs_ch_frq, ch_width);
|
|
|
+ vdev_id, dfs_sta_frq, ch_sta_width);
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- policy_mgr_is_any_dfs_beaconing_session_present(psoc, &dfs_ch_frq,
|
|
|
- &ch_width);
|
|
|
- if (!dfs_ch_frq)
|
|
|
- return false;
|
|
|
/*
|
|
|
* 1) if agile & DFS scans are supportet
|
|
|
* 2) if hardware is DBS capable
|