|
@@ -174,6 +174,40 @@ policy_mgr_get_sta_sap_scc_on_dfs_chnl(struct wlan_objmgr_psoc *psoc,
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+QDF_STATUS
|
|
|
+policy_mgr_set_multi_sap_allowed_on_same_band(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool multi_sap_allowed_on_same_band)
|
|
|
+{
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("pm_ctx is NULL");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ pm_ctx->cfg.multi_sap_allowed_on_same_band =
|
|
|
+ multi_sap_allowed_on_same_band;
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+QDF_STATUS
|
|
|
+policy_mgr_get_multi_sap_allowed_on_same_band(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool *multi_sap_allowed_on_same_band)
|
|
|
+{
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("pm_ctx is NULL");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ *multi_sap_allowed_on_same_band =
|
|
|
+ pm_ctx->cfg.multi_sap_allowed_on_same_band;
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
static bool
|
|
|
policy_mgr_update_dfs_master_dynamic_enabled(
|
|
|
struct wlan_objmgr_psoc *psoc, uint8_t vdev_id)
|
|
@@ -5622,6 +5656,63 @@ bool policy_mgr_is_sta_sap_scc_allowed_on_dfs_chan(
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+bool policy_mgr_is_multi_sap_allowed_on_same_band(
|
|
|
+ struct wlan_objmgr_pdev *pdev,
|
|
|
+ enum policy_mgr_con_mode mode,
|
|
|
+ qdf_freq_t ch_freq)
|
|
|
+{
|
|
|
+ struct wlan_objmgr_psoc *psoc;
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+ bool multi_sap_allowed_on_same_band;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ psoc = wlan_pdev_get_psoc(pdev);
|
|
|
+ if (!psoc)
|
|
|
+ return false;
|
|
|
+
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("Invalid Context");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!ch_freq || mode != PM_SAP_MODE)
|
|
|
+ return true;
|
|
|
+
|
|
|
+ status = policy_mgr_get_multi_sap_allowed_on_same_band(psoc,
|
|
|
+ &multi_sap_allowed_on_same_band);
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
+ policy_mgr_err("Failed to get multi_sap_allowed_on_same_band");
|
|
|
+ /* Allow multi SAPs started on same band by default. */
|
|
|
+ multi_sap_allowed_on_same_band = true;
|
|
|
+ }
|
|
|
+ if (!multi_sap_allowed_on_same_band) {
|
|
|
+ uint32_t ap_cnt, index = 0;
|
|
|
+ uint32_t list[MAX_NUMBER_OF_CONC_CONNECTIONS];
|
|
|
+ struct policy_mgr_conc_connection_info *ap_info;
|
|
|
+
|
|
|
+ ap_cnt = policy_mgr_mode_specific_connection_count(psoc,
|
|
|
+ PM_SAP_MODE, list);
|
|
|
+ if (!ap_cnt)
|
|
|
+ return true;
|
|
|
+
|
|
|
+ qdf_mutex_acquire(&pm_ctx->qdf_conc_list_lock);
|
|
|
+ while (index < ap_cnt) {
|
|
|
+ ap_info = &pm_conc_connection_list[list[index]];
|
|
|
+ if (WLAN_REG_IS_SAME_BAND_FREQS(ch_freq,
|
|
|
+ ap_info->freq)) {
|
|
|
+ policy_mgr_rl_debug("Don't allow SAP on same band");
|
|
|
+ qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ index++;
|
|
|
+ }
|
|
|
+ qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
|
|
|
+ }
|
|
|
+
|
|
|
+ return true;
|
|
|
+}
|
|
|
+
|
|
|
bool policy_mgr_is_special_mode_active_5g(struct wlan_objmgr_psoc *psoc,
|
|
|
enum policy_mgr_con_mode mode)
|
|
|
{
|