arch/arm64,arm: Prepare for !SEPARATE_ROMSTAGE

Prepare platforms for linking romstage code in the bootblock.

Change-Id: Ic20799b4d6e3f62cd05791a2bd275000a12cc83c
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63420
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Arthur Heymans
2022-04-06 22:25:50 +02:00
committed by Felix Held
parent a91821b677
commit 3e914d3726
9 changed files with 83 additions and 19 deletions

View File

@@ -5,6 +5,7 @@
#include <cbmem.h>
#include <console/console.h>
#include <program_loading.h>
#include <romstage_common.h>
#include <timestamp.h>
__weak void platform_romstage_main(void) { /* no-op, for bring-up */ }
@@ -15,8 +16,13 @@ void main(void)
timestamp_add_now(TS_ROMSTAGE_START);
console_init();
exception_init();
exception_init();
romstage_main();
}
void __noreturn romstage_main(void)
{
platform_romstage_main();
cbmem_initialize_empty();
platform_romstage_postram();