1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02: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:
Michal Simek
2020-02-11 12:43:14 +01:00
parent 74bf17db39
commit c514301337
2 changed files with 17 additions and 1 deletions

View File

@@ -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;
};

View File

@@ -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;
}