|
@@ -74,6 +74,7 @@
|
|
|
#include <qca_vendor.h>
|
|
|
#include <cds_api.h>
|
|
|
#include "wlan_hdd_he.h"
|
|
|
+#include "wlan_hdd_eht.h"
|
|
|
#include "wlan_dfs_tgt_api.h"
|
|
|
#include <wlan_reg_ucfg_api.h>
|
|
|
#include "wlan_utility.h"
|
|
@@ -4532,6 +4533,8 @@ static void wlan_hdd_set_sap_hwmode(struct hdd_adapter *adapter)
|
|
|
|
|
|
wlan_hdd_check_11ax_support(beacon, config);
|
|
|
|
|
|
+ wlan_hdd_check_11be_support(beacon, config);
|
|
|
+
|
|
|
hdd_debug("SAP hw_mode: %d", config->SapHw_mode);
|
|
|
}
|
|
|
|
|
@@ -5652,6 +5655,20 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
|
|
|
if (!cds_is_sub_20_mhz_enabled())
|
|
|
wlan_hdd_set_sap_hwmode(adapter);
|
|
|
|
|
|
+#ifdef WLAN_FEATURE_11BE_MLO
|
|
|
+ if (config->SapHw_mode == eCSR_DOT11_MODE_11be ||
|
|
|
+ config->SapHw_mode == eCSR_DOT11_MODE_11be_ONLY) {
|
|
|
+ wlan_vdev_mlme_set_mlo_flag(adapter->vdev);
|
|
|
+ mlo_sap_update_with_config(); //TD
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!policy_mgr_is_mlo_sap_concurrency_allowed(
|
|
|
+ hdd_ctx->psoc, wlan_vdev_mlme_is_mlo_sap(adapter->vdev))) {
|
|
|
+ hdd_err("MLO SAP concurrency check fails");
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto error;
|
|
|
+ }
|
|
|
+#endif
|
|
|
status = ucfg_mlme_get_vht_for_24ghz(hdd_ctx->psoc, &bval);
|
|
|
if (QDF_IS_STATUS_ERROR(qdf_status))
|
|
|
hdd_err("Failed to get vht_for_24ghz");
|