[coreboot] New patch to review for coreboot: a03e4ea cbmem: add vboot cmbem id

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Mar 19 23:13:31 CET 2013


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2851

-gerrit

commit a03e4ea9450d367decd0fd13cedcc517d344b528
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Wed Mar 13 12:48:33 2013 -0500

    cbmem: add vboot cmbem id
    
    The vboot firmware selection from romstage will need to
    pass the resulting vboot data to other consumers. This will
    be done using a cbmem entry.
    
    Change-Id: I497caba53f9f3944513382f3929d21b04bf3ba9e
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/include/cbmem.h  | 1 +
 src/lib/cbmem_info.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/include/cbmem.h b/src/include/cbmem.h
index b3d9f86..5b19207 100644
--- a/src/include/cbmem.h
+++ b/src/include/cbmem.h
@@ -67,6 +67,7 @@
 #define CBMEM_ID_RAMSTAGE	0x9a357a9e
 #define CBMEM_ID_RAMSTAGE_CACHE	0x9a3ca54e
 #define CBMEM_ID_ROOT		0xff4007ff
+#define CBMEM_ID_VBOOT_HANDOFF	0x780074f0
 #define CBMEM_ID_NONE		0x00000000
 
 #ifndef __ASSEMBLER__
diff --git a/src/lib/cbmem_info.c b/src/lib/cbmem_info.c
index aaf5840..5b02f2d 100644
--- a/src/lib/cbmem_info.c
+++ b/src/lib/cbmem_info.c
@@ -44,6 +44,7 @@ static struct cbmem_id_to_name {
 	{ CBMEM_ID_RAMSTAGE,		"RAMSTAGE   " },
 	{ CBMEM_ID_RAMSTAGE_CACHE,	"RAMSTAGE $ " },
 	{ CBMEM_ID_ROOT,		"CBMEM ROOT " },
+	{ CBMEM_ID_VBOOT_HANDOFF,	"VBOOT      " },
 };
 
 void cbmem_print_entry(int n, u32 id, u64 base, u64 size)



More information about the coreboot mailing list