blob: b144f9320f48b612431c06eecaf85257a661258e [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/exception.h>
#include <arch/stages.h>
#include <cbmem.h>
#include <console/console.h>
#include <program_loading.h>
#include <timestamp.h>
__weak void platform_romstage_main(void) { /* no-op, for bring-up */ }
__weak void platform_romstage_postram(void) { /* no-op */ }
void main(void)
{
timestamp_add_now(TS_ROMSTAGE_START);
console_init();
exception_init();
platform_romstage_main();
cbmem_initialize_empty();
platform_romstage_postram();
run_ramstage();
}