CBMEM: Move cbmemc_reinit()
This replaces need for separate cbmemc_reinit() calls made via CAR_MIGRATE() and in ramstage. Change-Id: If7b4d855c75df58b173f26ef3c90a4a7563166d3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/7859 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:
@@ -23,7 +23,6 @@
|
||||
#include <bootstate.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <console/cbmem_console.h>
|
||||
#include <arch/early_variables.h>
|
||||
#if CONFIG_HAVE_ACPI_RESUME && !defined(__PRE_RAM__)
|
||||
#include <arch/acpi.h>
|
||||
@@ -256,7 +255,6 @@ static void init_cbmem_post_device(void *unused)
|
||||
#else
|
||||
cbmem_recovery(0);
|
||||
#endif
|
||||
cbmemc_reinit();
|
||||
}
|
||||
|
||||
BOOT_STATE_INIT_ENTRIES(cbmem_bscb) = {
|
||||
|
@@ -20,6 +20,9 @@
|
||||
#include <cbmem.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* FIXME: Remove after CBMEM_INIT_HOOKS. */
|
||||
#include <console/cbmem_console.h>
|
||||
|
||||
#ifndef __PRE_RAM__
|
||||
|
||||
static const struct cbmem_id_to_name cbmem_ids[] = { CBMEM_ID_TO_NAME_TABLE };
|
||||
@@ -52,6 +55,8 @@ void cbmem_print_entry(int n, u32 id, u64 base, u64 size)
|
||||
#if !IS_ENABLED(CONFIG_ARCH_X86)
|
||||
void cbmem_run_init_hooks(void)
|
||||
{
|
||||
/* Relocate CBMEM console. */
|
||||
cbmemc_reinit();
|
||||
}
|
||||
|
||||
void __attribute__((weak)) cbmem_fail_resume(void)
|
||||
|
@@ -21,7 +21,6 @@
|
||||
#include <bootmem.h>
|
||||
#include <console/console.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/cbmem_console.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <arch/early_variables.h>
|
||||
@@ -426,7 +425,6 @@ void *cbmem_entry_start(const struct cbmem_entry *entry)
|
||||
static void init_cbmem_pre_device(void *unused)
|
||||
{
|
||||
cbmem_initialize();
|
||||
cbmemc_reinit();
|
||||
}
|
||||
|
||||
BOOT_STATE_INIT_ENTRIES(cbmem_bscb) = {
|
||||
|
Reference in New Issue
Block a user