|
@@ -2273,6 +2273,77 @@ QDF_STATUS policy_mgr_set_connection_update(struct wlan_objmgr_psoc *psoc)
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+QDF_STATUS
|
|
|
+policy_mgr_wait_for_dual_mac_configuration(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct policy_mgr_psoc_priv_obj *policy_mgr_context;
|
|
|
+
|
|
|
+ policy_mgr_context = policy_mgr_get_context(psoc);
|
|
|
+ if (!policy_mgr_context) {
|
|
|
+ policy_mgr_err("Invalid context");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = qdf_wait_single_event(
|
|
|
+ &policy_mgr_context->dual_mac_configuration_complete_evt,
|
|
|
+ DUAL_MAC_CONFIG_TIMEOUT);
|
|
|
+
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
+ policy_mgr_err("wait for event failed");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+QDF_STATUS
|
|
|
+policy_mgr_dual_mac_configuration_complete(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct policy_mgr_psoc_priv_obj *policy_mgr_context;
|
|
|
+
|
|
|
+ policy_mgr_context = policy_mgr_get_context(psoc);
|
|
|
+ if (!policy_mgr_context) {
|
|
|
+ policy_mgr_err("Invalid context");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = qdf_event_set(
|
|
|
+ &policy_mgr_context->dual_mac_configuration_complete_evt);
|
|
|
+
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
+ policy_mgr_err("set event failed");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+QDF_STATUS
|
|
|
+policy_mgr_reset_dual_mac_configuration(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct policy_mgr_psoc_priv_obj *policy_mgr_context;
|
|
|
+
|
|
|
+ policy_mgr_context = policy_mgr_get_context(psoc);
|
|
|
+ if (!policy_mgr_context) {
|
|
|
+ policy_mgr_err("Invalid context");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = qdf_event_reset(
|
|
|
+ &policy_mgr_context->dual_mac_configuration_complete_evt);
|
|
|
+
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
+ policy_mgr_err("clear event failed");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
QDF_STATUS policy_mgr_set_chan_switch_complete_evt(
|
|
|
struct wlan_objmgr_psoc *psoc)
|
|
|
{
|