/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include #include #include #include __weak void platform_romstage_main(void) { /* no-op, for bring-up */ } __weak void platform_romstage_postram(void) { /* no-op */ } #if CONFIG(SEPARATE_ROMSTAGE) void main(void) { timestamp_add_now(TS_ROMSTAGE_START); console_init(); exception_init(); romstage_main(); } #endif void __noreturn romstage_main(void) { platform_romstage_main(); cbmem_initialize_empty(); platform_romstage_postram(); run_ramstage(); }