summaryrefslogtreecommitdiff
path: root/include/cpu_func.h
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2019-11-14 12:57:35 -0700
committerTom Rini <[email protected]>2019-12-02 18:23:14 -0500
commit62270f4395f86bd5231fcb9c1710e42be7d67d60 (patch)
treea17b47841340571e0d4573c8bbefd58f22ef4a77 /include/cpu_func.h
parent30c7c4347307c807b0f9f9045053339507fd699e (diff)
common: Move some SMP functions out of common.h
These functions belong in cpu_func.h so move them over. Signed-off-by: Simon Glass <[email protected]> Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'include/cpu_func.h')
-rw-r--r--include/cpu_func.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cpu_func.h b/include/cpu_func.h
index 03feaa63e96..1741f7f7a63 100644
--- a/include/cpu_func.h
+++ b/include/cpu_func.h
@@ -49,4 +49,7 @@ int is_core_valid(unsigned int core);
*/
int checkcpu(void);
+void smp_set_core_boot_addr(unsigned long addr, int corenr);
+void smp_kick_all_cpus(void);
+
#endif