|
@@ -98,6 +98,7 @@
|
|
|
#include "nan_ucfg_api.h"
|
|
|
#include "wma_coex.h"
|
|
|
#include "target_if_vdev_mgr_rx_ops.h"
|
|
|
+#include "wlan_policy_mgr_i.h"
|
|
|
|
|
|
#ifdef DIRECT_BUF_RX_ENABLE
|
|
|
#include <target_if_direct_buf_rx_api.h>
|
|
@@ -5396,6 +5397,40 @@ static void wma_update_mlme_related_tgt_caps(struct wlan_objmgr_psoc *psoc,
|
|
|
wlan_mlme_update_cfg_with_tgt_caps(psoc, &mlme_tgt_cfg);
|
|
|
}
|
|
|
|
|
|
+static bool
|
|
|
+wma_is_dbs_mandatory(struct wlan_objmgr_psoc *psoc,
|
|
|
+ struct target_psoc_info *tgt_hdl)
|
|
|
+{
|
|
|
+ uint8_t i, total_mac_phy_cnt;
|
|
|
+ struct wlan_psoc_host_mac_phy_caps *mac_cap, *mac_phy_cap;
|
|
|
+ uint8_t supported_band = 0;
|
|
|
+
|
|
|
+ if (!policy_mgr_find_if_fw_supports_dbs(psoc) ||
|
|
|
+ !policy_mgr_find_if_hwlist_has_dbs(psoc))
|
|
|
+ return false;
|
|
|
+
|
|
|
+ total_mac_phy_cnt = target_psoc_get_total_mac_phy_cnt(tgt_hdl);
|
|
|
+ mac_phy_cap = target_psoc_get_mac_phy_cap(tgt_hdl);
|
|
|
+
|
|
|
+ for (i = 0; i < total_mac_phy_cnt; i++) {
|
|
|
+ mac_cap = &mac_phy_cap[i];
|
|
|
+ if (mac_cap->phy_id == 0)
|
|
|
+ supported_band |= mac_cap->supported_bands;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* If Mac0 supports both the bands then DBS is not mandatory */
|
|
|
+ if (supported_band & WLAN_2G_CAPABILITY &&
|
|
|
+ supported_band & WLAN_5G_CAPABILITY) {
|
|
|
+ wma_debug("Mac0 supports both bands DBS is optional");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ wma_info("MAC0 does not support both bands %d DBS is mandatory",
|
|
|
+ supported_band);
|
|
|
+
|
|
|
+ return true;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* wma_update_hdd_cfg() - update HDD config
|
|
|
* @wma_handle: wma handle
|
|
@@ -6696,6 +6731,11 @@ int wma_rx_service_ready_ext_event(void *handle, uint8_t *event,
|
|
|
|
|
|
WMA_LOGD("WMA --> WMI_INIT_CMDID");
|
|
|
|
|
|
+ if (wma_is_dbs_mandatory(wma_handle->psoc, tgt_hdl) &&
|
|
|
+ (policy_mgr_is_dual_mac_disabled_in_ini(wma_handle->psoc)))
|
|
|
+ policy_mgr_set_dual_mac_feature(wma_handle->psoc,
|
|
|
+ ENABLE_DBS_CXN_AND_DISABLE_SIMULTANEOUS_SCAN);
|
|
|
+
|
|
|
wma_init_scan_fw_mode_config(wma_handle->psoc, conc_scan_config_bits,
|
|
|
fw_config_bits);
|
|
|
|