From e69faff84a7343076a6386d146f70e3190810831 Mon Sep 17 00:00:00 2001 From: Akshay Belsare Date: Mon, 27 Mar 2023 10:41:54 +0530 Subject: [PATCH] chore(zynqmp): print entry address to Secure and NS world The base address for BL32 and BL33 is read from the FSBL to TF-A handoff params. Print the base address for BL32 and BL33 as entry to the secure and non-secure world respectively in the release build. Change-Id: Icc976fccb56b565f78001d87b02180ced6437a43 Signed-off-by: Akshay Belsare --- plat/xilinx/zynqmp/bl31_zynqmp_setup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plat/xilinx/zynqmp/bl31_zynqmp_setup.c b/plat/xilinx/zynqmp/bl31_zynqmp_setup.c index 0ebd0885a..50fd67b27 100644 --- a/plat/xilinx/zynqmp/bl31_zynqmp_setup.c +++ b/plat/xilinx/zynqmp/bl31_zynqmp_setup.c @@ -125,10 +125,10 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, } } if (bl32_image_ep_info.pc != 0) { - VERBOSE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc); + NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc); } if (bl33_image_ep_info.pc != 0) { - VERBOSE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc); + NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc); } custom_early_setup(); -- 2.39.5