CBMEM: Add timestamp_reinit()
This avoids the need for separate timestamp_reinit() calls made via CAR_MIGRATE() that is not implemented for ARM. Change-Id: Ia683162f3cb5d3cb3d4b7983a4b7e13306b0cfc8 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/8033 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins)
This commit is contained in:
@ -22,6 +22,7 @@
|
||||
|
||||
/* FIXME: Remove after CBMEM_INIT_HOOKS. */
|
||||
#include <console/cbmem_console.h>
|
||||
#include <timestamp.h>
|
||||
|
||||
#ifndef __PRE_RAM__
|
||||
|
||||
@ -57,6 +58,9 @@ void cbmem_run_init_hooks(void)
|
||||
{
|
||||
/* Relocate CBMEM console. */
|
||||
cbmemc_reinit();
|
||||
|
||||
/* Relocate timestamps stash. */
|
||||
timestamp_reinit();
|
||||
}
|
||||
|
||||
void __attribute__((weak)) cbmem_fail_resume(void)
|
||||
|
Reference in New Issue
Block a user