diff --git a/src/mainboard/emulation/qemu-i440fx/cache_as_ram.inc b/src/mainboard/emulation/qemu-i440fx/cache_as_ram.inc index 7349af85e6..297eaf130a 100644 --- a/src/mainboard/emulation/qemu-i440fx/cache_as_ram.inc +++ b/src/mainboard/emulation/qemu-i440fx/cache_as_ram.inc @@ -49,7 +49,7 @@ cache_as_ram: before_romstage: post_code(0x29) /* Call romstage.c main function. */ - call main + call romstage_main post_code(0x30) diff --git a/src/mainboard/emulation/qemu-i440fx/romstage.c b/src/mainboard/emulation/qemu-i440fx/romstage.c index d03c8ab55c..bc239293d7 100644 --- a/src/mainboard/emulation/qemu-i440fx/romstage.c +++ b/src/mainboard/emulation/qemu-i440fx/romstage.c @@ -21,14 +21,14 @@ #include #include #include +#include #include #include #include #include "memory.c" -#include -void main(unsigned long bist) +void * asmlinkage romstage_main(unsigned long bist) { int cbmem_was_initted; @@ -48,4 +48,6 @@ void main(unsigned long bist) timestamp_init(timestamp_get()); timestamp_add_now(TS_START_ROMSTAGE); + /* Emulation uses fixed low stack during ramstage. */ + return NULL; } diff --git a/src/mainboard/emulation/qemu-q35/romstage.c b/src/mainboard/emulation/qemu-q35/romstage.c index fb0bccff23..1bb51da2f6 100644 --- a/src/mainboard/emulation/qemu-q35/romstage.c +++ b/src/mainboard/emulation/qemu-q35/romstage.c @@ -22,14 +22,14 @@ #include #include #include +#include #include #include #include #include "../qemu-i440fx/memory.c" -#include -void main(unsigned long bist) +void * asmlinkage romstage_main(unsigned long bist) { int cbmem_was_initted; @@ -50,4 +50,6 @@ void main(unsigned long bist) timestamp_init(timestamp_get()); timestamp_add_now(TS_START_ROMSTAGE); + /* Emulation uses fixed low stack during ramstage. */ + return NULL; }