summaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorStephan Gerhold <stephan@gerhold.net>2023-04-02 16:05:58 +0200
committerStephan Gerhold <stephan@gerhold.net>2023-08-04 16:02:59 +0200
commit94e1be2b2918d8e70ac33cc8551e913d75e86398 (patch)
treef2eda187c3ea4e13bc17aabe0446fc7bbd3ccd32 /bl32
parent56055e87b0a756d4756a22ed26b855fbe7afe93c (diff)
feat(bl32): print entry point before exiting SP_MIN
BL31 prints information about the entry point in the normal world before exiting, but for some reason SP_MIN does not do that. Add the missing call to print_entry_point_info() for more consistency. Change-Id: I2f4961fec57fcc9955cd15652d4ceba3bbb32375 Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Diffstat (limited to 'bl32')
-rw-r--r--bl32/sp_min/sp_min_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bl32/sp_min/sp_min_main.c b/bl32/sp_min/sp_min_main.c
index f050160f3..26cf2079d 100644
--- a/bl32/sp_min/sp_min_main.c
+++ b/bl32/sp_min/sp_min_main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2016-2023, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -134,6 +134,7 @@ static void sp_min_prepare_next_image_entry(void)
assert(NON_SECURE == GET_SECURITY_STATE(next_image_info->h.attr));
INFO("SP_MIN: Preparing exit to normal world\n");
+ print_entry_point_info(next_image_info);
psci_prepare_next_non_secure_ctx(next_image_info);
smc_set_next_ctx(NON_SECURE);