mb/google/nissa: Create pujjogatwin variant
[coreboot2.git] / src / include / boot / tables.h
blob74cc4e1de1cb570e144fc5dc796646e5ff1c4688
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef BOOT_TABLES_H
4 #define BOOT_TABLES_H
6 #include <stdint.h>
8 /*
9 * Write architecture specific tables as well as the common
10 * coreboot table.
11 * Returns a pointer to the table or NULL on error.
13 void *write_tables(void);
16 * Allow per-architecture table writes called from write_tables(). The
17 * coreboot_table parameter provides a reference to where the coreboot
18 * table will be written. The parameter is to allow architectures to
19 * provide a forwarding table to real coreboot table.
21 void arch_write_tables(uintptr_t coreboot_table);
23 #endif /* BOOT_TABLES_H */