aboutsummaryrefslogtreecommitdiff
path: root/src/include/cbmem.h
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-05-10 12:15:18 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-05-11 00:30:03 +0200
commitbb11e60cb2f40da2a5a59dfacda4d46119ddda24 (patch)
treef82bbd5b7af6cdae0b77e335db061f870900174f /src/include/cbmem.h
parent1244f4b52fe423eeac2621672aa1786232f2ca0b (diff)
Hook up MRC cache update
Requirements: - must be in ramstage (locking flash while executing code from there might not work) - must be after cbmem is reinitialized (so the mrc cache copy of the current run can be found) Change-Id: I8028fb073349ce2b027ef5f8397dc1a1b8b31c02 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/1002 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/include/cbmem.h')
-rw-r--r--src/include/cbmem.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/cbmem.h b/src/include/cbmem.h
index 33e2de4f98..a245232861 100644
--- a/src/include/cbmem.h
+++ b/src/include/cbmem.h
@@ -73,6 +73,7 @@ extern struct cbmem_entry *get_cbmem_toc(void);
#ifndef __PRE_RAM__
void set_cbmem_toc(struct cbmem_entry *);
+void __attribute__((weak)) cbmem_post_handling(void);
#endif
#endif
#endif