summaryrefslogtreecommitdiffstats
path: root/src/include/boot
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2016-04-19 20:37:51 -0500
committerAaron Durbin <adurbin@chromium.org>2016-04-21 20:48:14 +0200
commit5481c961b265ef5128ab67b24d0416df22d1f693 (patch)
tree1be924448edad0662da489319fa2405c14a3b03d /src/include/boot
parentd4afa938c3f8b72e2d3572dc74d60b731f4ddeb0 (diff)
downloadcoreboot-5481c961b265ef5128ab67b24d0416df22d1f693.tar.gz
coreboot-5481c961b265ef5128ab67b24d0416df22d1f693.tar.bz2
coreboot-5481c961b265ef5128ab67b24d0416df22d1f693.zip
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 <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/14435 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/include/boot')
-rw-r--r--src/include/boot/tables.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/boot/tables.h b/src/include/boot/tables.h
index e86adfc27b34..c2d7b48841ce 100644
--- a/src/include/boot/tables.h
+++ b/src/include/boot/tables.h
@@ -3,6 +3,18 @@
#include <boot/coreboot_tables.h>
+/*
+ * Write architecture specific tables as well as the common
+ * coreboot table.
+ */
void write_tables(void);
+/*
+ * Allow per-architecture table writes called from write_tables(). The
+ * coreboot_table parameter provides a reference to where the coreboot
+ * table will be written. The parameter is to allow architectures to
+ * provide a forwarding table to real coreboot table.
+ */
+void arch_write_tables(uintptr_t coreboot_table);
+
#endif /* BOOT_TABLES_H */