[coreboot] New patch to review for coreboot: bc9827a Tell CBMEM pretty printer about MRC cache

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Thu May 3 01:47:54 CEST 2012


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

-gerrit

commit bc9827a733944045eb7c5c58770a72478a69f05d
Author: Stefan Reinauer <reinauer at chromium.org>
Date:   Wed May 2 16:27:26 2012 -0700

    Tell CBMEM pretty printer about MRC cache
    
    Sandybridge memory initialization produces some amount of training data
    that has to be kept around in CBMEM. Add a descriptive name to the CBMEM
    pretty printer to prevent it from just printing the hex value.
    
    Change-Id: I587c0bc3dfcf389ba298d445d2594eef73bc69a8
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
---
 src/lib/cbmem.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/lib/cbmem.c b/src/lib/cbmem.c
index e54e1c0..0f2a15d 100644
--- a/src/lib/cbmem.c
+++ b/src/lib/cbmem.c
@@ -257,6 +257,7 @@ void cbmem_list(void)
 		case CBMEM_ID_RESUME_SCRATCH:	 printk(BIOS_DEBUG, "ACPISCRATCH"); break;
 		case CBMEM_ID_SMBIOS:    printk(BIOS_DEBUG, "SMBIOS     "); break;
 		case CBMEM_ID_TIMESTAMP: printk(BIOS_DEBUG, "TIME STAMP "); break;
+		case CBMEM_ID_MRCDATA:	 printk(BIOS_DEBUG, "MRC DATA   "); break;
 		case CBMEM_ID_CONSOLE:   printk(BIOS_DEBUG, "CONSOLE    "); break;
 		default: printk(BIOS_DEBUG, "%08x ", cbmem_toc[i].id);
 		}




More information about the coreboot mailing list