mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
arm64: zynqmp: Print multiboot register value in EL3
Multi boot register can be used for using different boot images and design better boot strategy. Let EL3 SPL or U-Boot to read it and print it. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
74bf17db39
commit
c514301337
2 changed files with 17 additions and 1 deletions
|
@ -128,7 +128,9 @@ struct apu_regs {
|
|||
#define ZYNQMP_SILICON_VER_SHIFT 12
|
||||
|
||||
struct csu_regs {
|
||||
u32 reserved0[17];
|
||||
u32 reserved0[4];
|
||||
u32 multi_boot;
|
||||
u32 reserved1[12];
|
||||
u32 version;
|
||||
};
|
||||
|
||||
|
|
|
@ -328,6 +328,17 @@ int board_early_init_f(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int multi_boot(void)
|
||||
{
|
||||
u32 multiboot;
|
||||
|
||||
multiboot = readl(&csu_base->multi_boot);
|
||||
|
||||
printf("Multiboot:\t%x\n", multiboot);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_init(void)
|
||||
{
|
||||
struct udevice *dev;
|
||||
|
@ -356,6 +367,9 @@ int board_init(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
if (current_el() == 3)
|
||||
multi_boot();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue