From 5481c961b265ef5128ab67b24d0416df22d1f693 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 19 Apr 2016 20:37:51 -0500 Subject: lib/coreboot_table: add architecture hooks for adding tables Add a architecture specific function, arch_write_tables(), that allows an architecture to add its required tables for booting. This callback helps write_tables() to be de-duplicated. Change-Id: I805c2f166b1e75942ad28b6e7e1982d64d2d5498 Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/14435 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/lib/coreboot_table.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib/coreboot_table.c') diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index 6967217b6a..583f609a3e 100644 --- a/src/lib/coreboot_table.c +++ b/src/lib/coreboot_table.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -464,6 +465,8 @@ unsigned long write_coreboot_table( { struct lb_header *head; + arch_write_tables(rom_table_end); + if (low_table_start || low_table_end) { printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n", low_table_end); -- cgit v1.2.3