|
@@ -3402,6 +3402,28 @@ wma_get_service_cap_per_link_mlo_stats(struct wmi_unified *wmi_handle,
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+/**
|
|
|
+ * wma_set_exclude_selftx_from_cca_busy_time() - Set exclude self tx time from
|
|
|
+ * cca busy time bool
|
|
|
+ * @exclude_selftx_from_cca_busy: Bool to update in in wma ini config
|
|
|
+ * @wma_handle: WMA handle
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void
|
|
|
+wma_set_exclude_selftx_from_cca_busy_time(bool exclude_selftx_from_cca_busy,
|
|
|
+ tp_wma_handle wma_handle)
|
|
|
+{
|
|
|
+ struct wma_ini_config *cfg = wma_get_ini_handle(wma_handle);
|
|
|
+
|
|
|
+ if (!cfg) {
|
|
|
+ wma_err("NULL WMA ini handle");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ cfg->exclude_selftx_from_cca_busy = exclude_selftx_from_cca_busy;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* wma_open() - Allocate wma context and initialize it.
|
|
|
* @cds_context: cds context
|
|
@@ -3928,6 +3950,9 @@ QDF_STATUS wma_open(struct wlan_objmgr_psoc *psoc,
|
|
|
wma_register_wlm_latency_level_event(wma_handle);
|
|
|
wma_register_mws_coex_events(wma_handle);
|
|
|
wma_trace_init();
|
|
|
+ wma_set_exclude_selftx_from_cca_busy_time(
|
|
|
+ cds_cfg->exclude_selftx_from_cca_busy,
|
|
|
+ wma_handle);
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
|
|
|
err_dbglog_init:
|