|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2018 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2018-2019 The Linux Foundation. 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
|
|
@@ -30,6 +30,9 @@ static qdf_ssr_callback ssr_unprotect_cb;
|
|
|
static qdf_is_module_state_transitioning_cb module_state_transitioning_cb;
|
|
|
static qdf_is_fw_down_callback is_fw_down_cb;
|
|
|
static qdf_is_recovering_callback is_recovering_cb;
|
|
|
+static qdf_psoc_start_callback psoc_op_start;
|
|
|
+static qdf_psoc_stop_callback psoc_op_stop;
|
|
|
+
|
|
|
|
|
|
void qdf_register_fw_down_callback(qdf_is_fw_down_callback is_fw_down)
|
|
|
{
|
|
@@ -124,3 +127,30 @@ bool qdf_is_recovering(void)
|
|
|
}
|
|
|
|
|
|
qdf_export_symbol(qdf_is_recovering);
|
|
|
+
|
|
|
+void qdf_register_dsc_psoc_callbacks(qdf_psoc_start_callback psoc_start,
|
|
|
+ qdf_psoc_stop_callback psoc_stop)
|
|
|
+{
|
|
|
+ psoc_op_start = psoc_start;
|
|
|
+ psoc_op_stop = psoc_stop;
|
|
|
+}
|
|
|
+
|
|
|
+qdf_export_symbol(qdf_register_dsc_psoc_callbacks);
|
|
|
+
|
|
|
+QDF_STATUS qdf_psoc_op_start(void)
|
|
|
+{
|
|
|
+ if (psoc_op_start)
|
|
|
+ return psoc_op_start();
|
|
|
+
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
+}
|
|
|
+
|
|
|
+qdf_export_symbol(qdf_psoc_op_start);
|
|
|
+
|
|
|
+void qdf_psoc_op_stop(void)
|
|
|
+{
|
|
|
+ if (psoc_op_stop)
|
|
|
+ psoc_op_stop();
|
|
|
+}
|
|
|
+
|
|
|
+qdf_export_symbol(qdf_psoc_op_stop);
|