From d4afa938c3f8b72e2d3572dc74d60b731f4ddeb0 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 19 Apr 2016 17:25:59 -0500 Subject: lib/bootmem: allow architecture specific bootmem ranges A architecture-specific function, named bootmem_arch_add_ranges(), is added so that each architecture can add entries into the bootmem memory map. This allows for a common write_tables() implementation to avoid code duplication. Change-Id: I834c82eae212869cad8bb02c7abcd9254d120735 Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/14434 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/arch/x86/tables.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/arch/x86/tables.c') diff --git a/src/arch/x86/tables.c b/src/arch/x86/tables.c index b36078d2e1..4fba509a96 100644 --- a/src/arch/x86/tables.c +++ b/src/arch/x86/tables.c @@ -17,6 +17,7 @@ #include #include +#include #include #include #include @@ -180,6 +181,10 @@ static unsigned long write_smbios_table(unsigned long rom_table_end) return rom_table_end; } +void bootmem_arch_add_ranges(void) +{ +} + void write_tables(void) { unsigned long low_table_start, low_table_end; -- cgit v1.2.3