From: Akshay Belsare Date: Mon, 27 Mar 2023 05:11:54 +0000 (+0530) Subject: chore(zynqmp): print entry address to Secure and NS world X-Git-Tag: baikal/aarch64/sdk5.10~1^2~130^2~1 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=e69faff84a7343076a6386d146f70e3190810831;p=arm-tf.git 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 --- 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();