From 0fe002c9be899f005316ea196ad4c6b08815d482 Mon Sep 17 00:00:00 2001 From: Akshay Belsare Date: Wed, 11 Jan 2023 11:45:25 +0530 Subject: [PATCH] fix(versal): print proper atf handoff source Versal uses PLM in the boot flow and printing FSBL in the log for handoff parameters is misleading. Print proper source of TF-A handoff parameters. Change-Id: I331e2eac2f5d30beed8573940ae02094254a759b Signed-off-by: Akshay Belsare --- plat/xilinx/versal/bl31_versal_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/xilinx/versal/bl31_versal_setup.c b/plat/xilinx/versal/bl31_versal_setup.c index 9b3620839..995c8529c 100644 --- a/plat/xilinx/versal/bl31_versal_setup.c +++ b/plat/xilinx/versal/bl31_versal_setup.c @@ -135,7 +135,7 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, } else if (ret != FSBL_HANDOFF_SUCCESS) { panic(); } else { - INFO("BL31: fsbl-atf handover success %u\n", ret); + INFO("BL31: PLM to TF-A handover success %u\n", ret); } NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);