[coreboot-gerrit] New patch to review for coreboot: 7069516 armv7: Prepare tables code for dynamic CBMEM

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Sat Dec 21 18:18:07 CET 2013


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4546

-gerrit

commit 7069516c6035617ef01c2da395f65d65b0e0b09d
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Sat Dec 21 11:02:14 2013 +0100

    armv7: Prepare tables code for dynamic CBMEM
    
    The CBMEM API is different for dynamic CBMEM,
    so hide the functions that get in the way (but
    our compiler complains about)
    
    Change-Id: I7634a202059548e56c74fe3fe6eff57bc60f1a1b
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 src/arch/armv7/tables.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/arch/armv7/tables.c b/src/arch/armv7/tables.c
index b566ff6..cf4e4e0 100644
--- a/src/arch/armv7/tables.c
+++ b/src/arch/armv7/tables.c
@@ -29,12 +29,14 @@
 
 #define MAX_COREBOOT_TABLE_SIZE (8 * 1024)
 
+#if !CONFIG_DYNAMIC_CBMEM
 void __attribute__((weak)) get_cbmem_table(uint64_t *base, uint64_t *size)
 {
 	printk(BIOS_WARNING, "WARNING: you need to define get_cbmem_table for your board\n");
 	*base = 0;
 	*size = 0;
 }
+#endif
 
 void cbmem_arch_init(void)
 {
@@ -44,7 +46,9 @@ struct lb_memory *write_tables(void)
 {
 	unsigned long table_pointer, new_table_pointer;
 
+#if !CONFIG_DYNAMIC_CBMEM
 	cbmem_base_check();
+#endif
 
 	post_code(0x9d);
 



More information about the coreboot-gerrit mailing list