summaryrefslogtreecommitdiff
path: root/src/arch/mips
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2016-04-19 17:25:59 -0500
committerAaron Durbin <adurbin@chromium.org>2016-04-21 20:46:45 +0200
commitd4afa938c3f8b72e2d3572dc74d60b731f4ddeb0 (patch)
tree1af5e48c6633a8d82a6a673bc55ec15fce0efe8c /src/arch/mips
parent8984af89b85034ad0456bb3a63a78cd63c618934 (diff)
downloadcoreboot-d4afa938c3f8b72e2d3572dc74d60b731f4ddeb0.tar.xz
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 <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/14434 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/arch/mips')
-rw-r--r--src/arch/mips/tables.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c
index a3d9939707..d54b8d6e20 100644
--- a/src/arch/mips/tables.c
+++ b/src/arch/mips/tables.c
@@ -18,12 +18,17 @@
#include <console/console.h>
#include <cpu/cpu.h>
+#include <bootmem.h>
#include <boot/tables.h>
#include <boot/coreboot_tables.h>
#include <string.h>
#include <cbmem.h>
#include <lib.h>
+void bootmem_arch_add_ranges(void)
+{
+}
+
#define MAX_COREBOOT_TABLE_SIZE CONFIG_COREBOOT_TABLE_SIZE
void write_tables(void)