summaryrefslogtreecommitdiff
path: root/lib/psci/psci_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/psci/psci_main.c')
-rw-r--r--lib/psci/psci_main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/psci/psci_main.c b/lib/psci/psci_main.c
index 4178d188..2f42b812 100644
--- a/lib/psci/psci_main.c
+++ b/lib/psci/psci_main.c
@@ -18,6 +18,7 @@
extern void imx8qm_kill_cpu(unsigned int target_idx);
extern void imx8qxp_kill_cpu(unsigned int target_idx);
+extern void imx8m_kill_cpu(unsigned int target_idx);
/*******************************************************************************
* PSCI frontend api for servicing SMCs. Described in the PSCI spec.
@@ -240,6 +241,9 @@ int psci_affinity_info(u_register_t target_affinity,
#ifdef PLAT_IMX8QXP
imx8qxp_kill_cpu(target_idx);
#endif
+#ifdef PLAT_IMX8M
+ imx8m_kill_cpu(target_idx);
+#endif
return ret;
}