mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
arm64: zynqmp: Add debug messages to bl2_plat_get_bl31_params()
It is useful to get information about BL type and entry address that's why add some debug messages. Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/fb023b618a009009a0b564c24223cadc10ced5b3.1652871741.git.michal.simek@amd.com
This commit is contained in:
parent
2eeceb4842
commit
254f0c766d
1 changed files with 4 additions and 0 deletions
|
@ -79,7 +79,10 @@ struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry,
|
|||
atfhandoffparams->magic[2] = 'N';
|
||||
atfhandoffparams->magic[3] = 'X';
|
||||
|
||||
debug("Creating handoff:\n");
|
||||
|
||||
if (bl32_entry) {
|
||||
debug(" to BL32 at 0x%x EL-1, Secure\n", (u32)bl32_entry);
|
||||
atfhandoffparams->partition[index].entry_point = bl32_entry;
|
||||
atfhandoffparams->partition[index].flags = FSBL_FLAGS_EL1 << FSBL_FLAGS_EL_SHIFT |
|
||||
FSBL_FLAGS_SECURE << FSBL_FLAGS_TZ_SHIFT;
|
||||
|
@ -87,6 +90,7 @@ struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry,
|
|||
}
|
||||
|
||||
if (bl33_entry) {
|
||||
debug(" to BL33 at 0x%x EL-2\n", (u32)bl33_entry);
|
||||
atfhandoffparams->partition[index].entry_point = bl33_entry;
|
||||
atfhandoffparams->partition[index].flags = FSBL_FLAGS_EL2 <<
|
||||
FSBL_FLAGS_EL_SHIFT;
|
||||
|
|
Loading…
Reference in a new issue