|
@@ -1,5 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -34,6 +35,10 @@
|
|
|
#include <qca_vendor.h>
|
|
|
#include "cfg_nan_api.h"
|
|
|
#include "os_if_nan.h"
|
|
|
+#include "../../core/src/nan_main_i.h"
|
|
|
+#include "spatial_reuse_api.h"
|
|
|
+#include "wlan_nan_api.h"
|
|
|
+#include "spatial_reuse_ucfg_api.h"
|
|
|
|
|
|
/**
|
|
|
* wlan_hdd_nan_is_supported() - HDD NAN support query function
|
|
@@ -131,3 +136,108 @@ void hdd_nan_concurrency_update(void)
|
|
|
wlan_twt_concurrency_update(hdd_ctx);
|
|
|
hdd_exit();
|
|
|
}
|
|
|
+
|
|
|
+#ifdef WLAN_FEATURE_NAN
|
|
|
+#ifdef WLAN_FEATURE_SR
|
|
|
+void hdd_nan_sr_concurrency_update(struct nan_event_params *nan_evt)
|
|
|
+{
|
|
|
+ struct wlan_objmgr_vdev *sta_vdev = NULL;
|
|
|
+ uint32_t conc_vdev_id = WLAN_INVALID_VDEV_ID;
|
|
|
+ uint8_t sr_ctrl;
|
|
|
+ bool is_sr_enabled = false;
|
|
|
+ uint32_t sta_vdev_id = WLAN_INVALID_VDEV_ID;
|
|
|
+ uint8_t sta_cnt, i;
|
|
|
+ uint32_t conn_count;
|
|
|
+ uint8_t non_srg_max_pd_offset = 0;
|
|
|
+ uint8_t vdev_id_list[MAX_NUMBER_OF_CONC_CONNECTIONS] = {
|
|
|
+ WLAN_INVALID_VDEV_ID};
|
|
|
+ struct nan_psoc_priv_obj *psoc_obj =
|
|
|
+ nan_get_psoc_priv_obj(nan_evt->psoc);
|
|
|
+ struct connection_info info[MAX_NUMBER_OF_CONC_CONNECTIONS] = {0};
|
|
|
+ uint8_t mac_id;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ if (!psoc_obj) {
|
|
|
+ nan_err("nan psoc priv object is NULL");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ conn_count = policy_mgr_get_connection_info(nan_evt->psoc, info);
|
|
|
+ if (!conn_count)
|
|
|
+ return;
|
|
|
+ sta_cnt = policy_mgr_get_mode_specific_conn_info(nan_evt->psoc, NULL,
|
|
|
+ vdev_id_list,
|
|
|
+ PM_STA_MODE);
|
|
|
+ /*
|
|
|
+ * Get all active sta vdevs. STA + STA SR concurrency is not supported
|
|
|
+ * so break whenever a first sta with SR enabled is found.
|
|
|
+ */
|
|
|
+ for (i = 0; i < sta_cnt; i++) {
|
|
|
+ if (vdev_id_list[i] != WLAN_INVALID_VDEV_ID) {
|
|
|
+ sta_vdev = wlan_objmgr_get_vdev_by_id_from_psoc(
|
|
|
+ nan_evt->psoc,
|
|
|
+ vdev_id_list[i],
|
|
|
+ WLAN_OSIF_ID);
|
|
|
+ if (!sta_vdev) {
|
|
|
+ nan_err("sta vdev invalid for vdev id %d",
|
|
|
+ vdev_id_list[i]);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ ucfg_spatial_reuse_get_sr_config(
|
|
|
+ sta_vdev, &sr_ctrl,
|
|
|
+ &non_srg_max_pd_offset, &is_sr_enabled);
|
|
|
+ if (is_sr_enabled) {
|
|
|
+ sta_vdev_id = vdev_id_list[i];
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ wlan_objmgr_vdev_release_ref(sta_vdev, WLAN_OSIF_ID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (sta_cnt && sta_vdev &&
|
|
|
+ (!(sr_ctrl & NON_SRG_PD_SR_DISALLOWED) ||
|
|
|
+ (sr_ctrl & SRG_INFO_PRESENT)) &&
|
|
|
+ is_sr_enabled) {
|
|
|
+ if (nan_evt->evt_type == nan_event_id_enable_rsp) {
|
|
|
+ wlan_vdev_mlme_set_sr_disable_due_conc(
|
|
|
+ sta_vdev, true);
|
|
|
+ wlan_spatial_reuse_osif_event(
|
|
|
+ sta_vdev, SR_OPERATION_SUSPEND,
|
|
|
+ SR_REASON_CODE_CONCURRENCY);
|
|
|
+ }
|
|
|
+ if (nan_evt->evt_type == nan_event_id_disable_ind) {
|
|
|
+ if (conn_count > 2) {
|
|
|
+ status =
|
|
|
+ policy_mgr_get_mac_id_by_session_id(
|
|
|
+ nan_evt->psoc, sta_vdev_id,
|
|
|
+ &mac_id);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ hdd_err("get mac id failed");
|
|
|
+ goto exit;
|
|
|
+ }
|
|
|
+ conc_vdev_id =
|
|
|
+ policy_mgr_get_conc_vdev_on_same_mac(
|
|
|
+ nan_evt->psoc, sta_vdev_id,
|
|
|
+ mac_id);
|
|
|
+ /*
|
|
|
+ * Don't enable SR, if concurrent vdev is not
|
|
|
+ * NAN and SR concurrency on same mac is not
|
|
|
+ * allowed.
|
|
|
+ */
|
|
|
+ if (conc_vdev_id != WLAN_INVALID_VDEV_ID &&
|
|
|
+ !policy_mgr_sr_same_mac_conc_enabled(
|
|
|
+ nan_evt->psoc)) {
|
|
|
+ hdd_debug("don't enable SR in SCC/MCC");
|
|
|
+ goto exit;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ wlan_vdev_mlme_set_sr_disable_due_conc(sta_vdev, false);
|
|
|
+ wlan_spatial_reuse_osif_event(
|
|
|
+ sta_vdev, SR_OPERATION_RESUME,
|
|
|
+ SR_REASON_CODE_CONCURRENCY);
|
|
|
+ }
|
|
|
+ }
|
|
|
+exit:
|
|
|
+ if (sta_vdev)
|
|
|
+ wlan_objmgr_vdev_release_ref(sta_vdev, WLAN_OSIF_ID);
|
|
|
+}
|
|
|
+#endif
|
|
|
+#endif
|