From 55e191e3b09c4979212c592a4e86e0f561ce1f97 Mon Sep 17 00:00:00 2001 From: Anup Patel Date: Fri, 3 Jan 2020 09:10:41 +0530 Subject: lib: Add system early_exit and final_exit APIs This patch adds system-level early_exit and final_exit APIs with corresponding platform hooks. These new APIs will be primarily used by sbi_exit() in OpenSBI exit path. Signed-off-by: Anup Patel Reviewed-by: Atish Patra --- lib/sbi/sbi_system.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/sbi/sbi_system.c') diff --git a/lib/sbi/sbi_system.c b/lib/sbi/sbi_system.c index cdc85d6..9ea3c21 100644 --- a/lib/sbi/sbi_system.c +++ b/lib/sbi/sbi_system.c @@ -23,6 +23,16 @@ int sbi_system_final_init(struct sbi_scratch *scratch, bool cold_boot) return sbi_platform_final_init(sbi_platform_ptr(scratch), cold_boot); } +void sbi_system_early_exit(struct sbi_scratch *scratch) +{ + sbi_platform_early_exit(sbi_platform_ptr(scratch)); +} + +void sbi_system_final_exit(struct sbi_scratch *scratch) +{ + sbi_platform_final_exit(sbi_platform_ptr(scratch)); +} + void __attribute__((noreturn)) sbi_system_reboot(struct sbi_scratch *scratch, u32 type) -- cgit v1.2.3