Change-Id: I3d90e46ed391ce323436750c866a0afc3879e2e6 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36359 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
21 lines
581 B
C
21 lines
581 B
C
#ifndef BOOT_TABLES_H
|
|
#define BOOT_TABLES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/*
|
|
* Write architecture specific tables as well as the common
|
|
* coreboot table.
|
|
* Returns a pointer to the table or NULL on error.
|
|
*/
|
|
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 */
|