summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-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 e86adfc27b..c2d7b48841 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 */