]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
chore(zynqmp): print entry address to Secure and NS world
authorAkshay Belsare <akshay.belsare@amd.com>
Mon, 27 Mar 2023 05:11:54 +0000 (10:41 +0530)
committerAkshay Belsare <akshay.belsare@amd.com>
Mon, 27 Mar 2023 11:27:48 +0000 (16:57 +0530)
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 <akshay.belsare@amd.com>
plat/xilinx/zynqmp/bl31_zynqmp_setup.c

index 0ebd0885a5c62666129720772d30a723f2107be7..50fd67b27c7017c6accf8499feabbb51f9ea8865 100644 (file)
@@ -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();