kboot: Define bi_loadsmap for loading memory maps

Each architecture will soon be required to provide this to load memory
maps as metadata for the platforms that require it (or a stub function
for those that don't).

Sponsored by:		Netflix
Reviewed by:		tsoome, kevans
Differential Revision:	https://reviews.freebsd.org/D38252
This commit is contained in:
Warner Losh 2023-02-03 08:39:24 -07:00
parent 2e53353280
commit d1a3cc0abe

View file

@ -17,6 +17,8 @@ struct memory_segments
};
bool enumerate_memory_arch(void);
struct preloaded_file;
void bi_loadsmap(struct preloaded_file *kfp);
bool has_acpi(void);
vm_offset_t acpi_rsdp(void);