aboutsummaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/intel/common/block/cse/cse_eop.c2
-rw-r--r--src/soc/intel/common/block/include/intelblocks/cse.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cse/cse_eop.c b/src/soc/intel/common/block/cse/cse_eop.c
index 4e1c563ee1..3fc4e2b270 100644
--- a/src/soc/intel/common/block/cse/cse_eop.c
+++ b/src/soc/intel/common/block/cse/cse_eop.c
@@ -50,7 +50,7 @@ static bool cse_disable_mei_bus(void)
return true;
}
-static bool cse_disable_mei_devices(void)
+bool cse_disable_mei_devices(void)
{
struct pmc_ipc_buffer req = { 0 };
struct pmc_ipc_buffer rsp;
diff --git a/src/soc/intel/common/block/include/intelblocks/cse.h b/src/soc/intel/common/block/include/intelblocks/cse.h
index a558c32b14..9bf35dadf6 100644
--- a/src/soc/intel/common/block/include/intelblocks/cse.h
+++ b/src/soc/intel/common/block/include/intelblocks/cse.h
@@ -486,4 +486,7 @@ bool skip_cse_sub_part_update(void);
*/
bool cse_get_boot_performance_data(struct cse_boot_perf_rsp *boot_perf);
+/* Function to make cse disable using PMC IPC */
+bool cse_disable_mei_devices(void);
+
#endif // SOC_INTEL_COMMON_CSE_H