summaryrefslogtreecommitdiff
path: root/src/include/boot/tables.h
blob: c2d7b48841ceec3fe91b292c863625f2188c0f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef BOOT_TABLES_H
#define BOOT_TABLES_H

#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 */