diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-11-28 10:13:03 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-12-16 20:41:02 +0100 |
commit | 71b214553c952e790219864767ba7882c9aaae1f (patch) | |
tree | f9168f6214f9ab33afc28d116dddf07c68717c58 /src/soc/intel | |
parent | 13a845acb3aee15dad1b4d66027731baba659e0e (diff) | |
download | coreboot-71b214553c952e790219864767ba7882c9aaae1f.tar.xz |
CBMEM console: Fix boards with BROKEN_CAR_MIGRATE
There is no need to call cbmemc_reinit() exclusively in romstage,
that is done as part of the CAR migration of cbmem_recovery().
CBMEM console for romstage remains disabled for boards flagged with
BROKEN_CAR_MIGRATE, but with this change it is possible to have it for
ramstage.
Change-Id: I48c4afcd847d0d5f8864d23c0786935341e3f752
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/7592
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <gaumless@gmail.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/fsp_baytrail/romstage/romstage.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/intel/fsp_baytrail/romstage/romstage.c b/src/soc/intel/fsp_baytrail/romstage/romstage.c index 259ecdc679..2619c96f62 100644 --- a/src/soc/intel/fsp_baytrail/romstage/romstage.c +++ b/src/soc/intel/fsp_baytrail/romstage/romstage.c @@ -279,10 +279,6 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr) { timestamp_add_now(TS_END_ROMSTAGE); #endif -#if IS_ENABLED(CONFIG_CONSOLE_CBMEM) - printk(BIOS_DEBUG, "cbmemc_reinit\n"); - cbmemc_reinit(); -#endif post_code(0x4f); /* Load the ramstage. */ |