Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2790
-gerrit
commit 16419a66aa18d61dec9d13b4824011f8b1e7baec Author: Aaron Durbin adurbin@chromium.org Date: Fri Feb 8 17:11:28 2013 -0600
cbmem: add CBMEM_ID_ROMSTAGE_INFO id
Introduce a new cbmem id to indicate romstage information. Proper coordination with ramstage and romstage can use this cbmem entity to communicate between one another.
Change-Id: Id785f429eeff5b015188c36eb932e6a6ce122da8 Signed-off-by: Aaron Durbin adurbin@chromium.org --- src/include/cbmem.h | 1 + src/lib/cbmem.c | 1 + 2 files changed, 2 insertions(+)
diff --git a/src/include/cbmem.h b/src/include/cbmem.h index 08e913a..0aa9b30 100644 --- a/src/include/cbmem.h +++ b/src/include/cbmem.h @@ -56,6 +56,7 @@ #define CBMEM_ID_CONSOLE 0x434f4e53 #define CBMEM_ID_ELOG 0x454c4f47 #define CBMEM_ID_COVERAGE 0x47434f56 +#define CBMEM_ID_ROMSTAGE_INFO 0x47545352 #define CBMEM_ID_NONE 0x00000000
#ifndef __ASSEMBLER__ diff --git a/src/lib/cbmem.c b/src/lib/cbmem.c index f270f5d..5663cc8 100644 --- a/src/lib/cbmem.c +++ b/src/lib/cbmem.c @@ -262,6 +262,7 @@ void cbmem_list(void) case CBMEM_ID_CONSOLE: printk(BIOS_DEBUG, "CONSOLE "); break; case CBMEM_ID_ELOG: printk(BIOS_DEBUG, "ELOG "); break; case CBMEM_ID_COVERAGE: printk(BIOS_DEBUG, "COVERAGE "); break; + case CBMEM_ID_ROMSTAGE_INFO: printk(BIOS_DEBUG, "ROMSTAGE "); break; default: printk(BIOS_DEBUG, "%08x ", cbmem_toc[i].id); } printk(BIOS_DEBUG, "%08llx ", cbmem_toc[i].base);