From e4f3e7a9c656356a92e827d5a39b85106cbdaf3a Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 17 Mar 2015 13:25:19 -0500 Subject: romstages: use common run_ramstage() Instead of sprinkling the cbfs calls around (as well as getting return values incorrect) use the common run_ramstage() to perform the necessary work to load and run ramstage. Change-Id: I37b1e94be36ef7a43efe65b2db110742fa105169 Signed-off-by: Aaron Durbin Reviewed-on: http://review.coreboot.org/8710 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Stefan Reinauer --- src/mainboard/cubietech/cubieboard/romstage.c | 7 ++----- src/mainboard/emulation/qemu-armv7/romstage.c | 10 ++-------- src/mainboard/emulation/qemu-riscv/romstage.c | 10 ++-------- src/mainboard/google/daisy/romstage.c | 7 ++----- src/mainboard/google/nyan/romstage.c | 9 ++------- src/mainboard/google/nyan_big/romstage.c | 9 ++------- src/mainboard/google/nyan_blaze/romstage.c | 9 ++------- src/mainboard/google/peach_pit/romstage.c | 6 ++---- src/mainboard/google/storm/romstage.c | 9 ++------- src/mainboard/google/veyron/romstage.c | 7 ++----- src/mainboard/ti/beaglebone/romstage.c | 9 ++------- 11 files changed, 22 insertions(+), 70 deletions(-) (limited to 'src/mainboard') diff --git a/src/mainboard/cubietech/cubieboard/romstage.c b/src/mainboard/cubietech/cubieboard/romstage.c index 6a32c56866..fa660c82f5 100644 --- a/src/mainboard/cubietech/cubieboard/romstage.c +++ b/src/mainboard/cubietech/cubieboard/romstage.c @@ -16,6 +16,7 @@ #include #include #include +#include #define __SIMPLE_DEVICE__ #include #include @@ -70,7 +71,6 @@ static enum cb_err cubieboard_setup_power(void) void main(void) { - void *entry; enum cb_err err; console_init(); @@ -87,8 +87,5 @@ void main(void) a1x_set_cpu_clock(384); } - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); - printk(BIOS_INFO, "entry is 0x%p, leaving romstage.\n", entry); - - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/emulation/qemu-armv7/romstage.c b/src/mainboard/emulation/qemu-armv7/romstage.c index 00dfecd431..b6314ccd1c 100644 --- a/src/mainboard/emulation/qemu-armv7/romstage.c +++ b/src/mainboard/emulation/qemu-armv7/romstage.c @@ -13,17 +13,11 @@ * GNU General Public License for more details. */ -#include #include -#include +#include void main(void) { - void *entry; - console_init(); - - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); - - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/emulation/qemu-riscv/romstage.c b/src/mainboard/emulation/qemu-riscv/romstage.c index f4b44f614c..b6314ccd1c 100644 --- a/src/mainboard/emulation/qemu-riscv/romstage.c +++ b/src/mainboard/emulation/qemu-riscv/romstage.c @@ -13,17 +13,11 @@ * GNU General Public License for more details. */ -#include #include -#include +#include void main(void) { - void *entry; - console_init(); - - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, CONFIG_CBFS_PREFIX"/ramstage"); - - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/google/daisy/romstage.c b/src/mainboard/google/daisy/romstage.c index 46c659383d..ebd07d7c5e 100644 --- a/src/mainboard/google/daisy/romstage.c +++ b/src/mainboard/google/daisy/romstage.c @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include @@ -145,7 +145,6 @@ static struct mem_timings *setup_clock(void) void main(void) { struct mem_timings *mem; - void *entry; int is_resume = (get_wakeup_state() != IS_NOT_WAKEUP); timestamp_init(timestamp_get()); @@ -182,9 +181,7 @@ void main(void) cbmem_initialize_empty(); - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); - timestamp_add_now(TS_END_ROMSTAGE); - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/google/nyan/romstage.c b/src/mainboard/google/nyan/romstage.c index a71f68269b..914c925d5d 100644 --- a/src/mainboard/google/nyan/romstage.c +++ b/src/mainboard/google/nyan/romstage.c @@ -21,11 +21,11 @@ #include #include #include -#include #include #include #include #include +#include #include #include #include "sdram_configs.h" @@ -201,12 +201,7 @@ static void __attribute__((noinline)) romstage(void) vboot_verify_firmware(romstage_handoff_find_or_add()); - timestamp_add_now(TS_START_COPYRAM); - void *entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, - "fallback/coreboot_ram"); - timestamp_add_now(TS_END_COPYRAM); - - stage_exit(entry); + run_ramstage(); } /* Stub to force arm_init_caches to the top, before any stack/memory accesses */ diff --git a/src/mainboard/google/nyan_big/romstage.c b/src/mainboard/google/nyan_big/romstage.c index a71f68269b..914c925d5d 100644 --- a/src/mainboard/google/nyan_big/romstage.c +++ b/src/mainboard/google/nyan_big/romstage.c @@ -21,11 +21,11 @@ #include #include #include -#include #include #include #include #include +#include #include #include #include "sdram_configs.h" @@ -201,12 +201,7 @@ static void __attribute__((noinline)) romstage(void) vboot_verify_firmware(romstage_handoff_find_or_add()); - timestamp_add_now(TS_START_COPYRAM); - void *entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, - "fallback/coreboot_ram"); - timestamp_add_now(TS_END_COPYRAM); - - stage_exit(entry); + run_ramstage(); } /* Stub to force arm_init_caches to the top, before any stack/memory accesses */ diff --git a/src/mainboard/google/nyan_blaze/romstage.c b/src/mainboard/google/nyan_blaze/romstage.c index 522ee91043..1d7d77d42f 100644 --- a/src/mainboard/google/nyan_blaze/romstage.c +++ b/src/mainboard/google/nyan_blaze/romstage.c @@ -21,11 +21,11 @@ #include #include #include -#include #include #include #include #include +#include #include #include #include "sdram_configs.h" @@ -205,12 +205,7 @@ static void __attribute__((noinline)) romstage(void) vboot_verify_firmware(romstage_handoff_find_or_add()); #endif - timestamp_add_now(TS_START_COPYRAM); - void *entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, - "fallback/coreboot_ram"); - timestamp_add_now(TS_END_COPYRAM); - - stage_exit(entry); + run_ramstage(); } /* Stub to force arm_init_caches to the top, before any stack/memory accesses */ diff --git a/src/mainboard/google/peach_pit/romstage.c b/src/mainboard/google/peach_pit/romstage.c index ce4e399626..04be804b05 100644 --- a/src/mainboard/google/peach_pit/romstage.c +++ b/src/mainboard/google/peach_pit/romstage.c @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #include @@ -228,7 +228,6 @@ void main(void) { extern struct mem_timings mem_timings; - void *entry; int is_resume = (get_wakeup_state() != IS_NOT_WAKEUP); int power_init_failed; @@ -278,10 +277,9 @@ void main(void) cbmem_initialize_empty(); - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); simple_spi_test(); timestamp_add_now(TS_END_ROMSTAGE); - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/google/storm/romstage.c b/src/mainboard/google/storm/romstage.c index 99cc90bea9..fb5b42e869 100644 --- a/src/mainboard/google/storm/romstage.c +++ b/src/mainboard/google/storm/romstage.c @@ -17,18 +17,13 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include -#include #include #include +#include void main(void) { - void *entry; - console_init(); cbmem_initialize_empty(); - - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/coreboot_ram"); - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/google/veyron/romstage.c b/src/mainboard/google/veyron/romstage.c index b9daefe6b9..5b26f48e3c 100644 --- a/src/mainboard/google/veyron/romstage.c +++ b/src/mainboard/google/veyron/romstage.c @@ -21,17 +21,15 @@ #include #include #include -#include #include #include +#include #include #include #include void main(void) { - void *entry; - console_init(); /* used for MMU and CBMEM setup, in MB */ @@ -54,6 +52,5 @@ void main(void) cbmem_initialize_empty(); - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); - stage_exit(entry); + run_ramstage(); } diff --git a/src/mainboard/ti/beaglebone/romstage.c b/src/mainboard/ti/beaglebone/romstage.c index 5dce23dbfd..9b3768a929 100644 --- a/src/mainboard/ti/beaglebone/romstage.c +++ b/src/mainboard/ti/beaglebone/romstage.c @@ -22,18 +22,13 @@ #include #include -#include +#include #include void main(void) { - void *entry; - console_init(); printk(BIOS_INFO, "Hello from romstage.\n"); - entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage"); - printk(BIOS_INFO, "entry is 0x%p, leaving romstage.\n", entry); - - stage_exit(entry); + run_ramstage(); } -- cgit v1.2.3