Changeset View
Changeset View
Standalone View
Standalone View
stand/kboot/kboot.h
| Show All 11 Lines | |||||
| struct memory_segments | struct memory_segments | ||||
| { | { | ||||
| uint64_t start; | uint64_t start; | ||||
| uint64_t end; | uint64_t end; | ||||
| uint64_t type; /* MD defined */ | uint64_t type; /* MD defined */ | ||||
| }; | }; | ||||
| bool enumerate_memory_arch(void); | bool enumerate_memory_arch(void); | ||||
| struct preloaded_file; | |||||
| void bi_loadsmap(struct preloaded_file *kfp); | |||||
| bool has_acpi(void); | bool has_acpi(void); | ||||
| vm_offset_t acpi_rsdp(void); | vm_offset_t acpi_rsdp(void); | ||||
| void do_init(void); | void do_init(void); | ||||
| /* Per-platform fdt fixup */ | /* Per-platform fdt fixup */ | ||||
| void fdt_arch_fixups(void *fdtp); | void fdt_arch_fixups(void *fdtp); | ||||
| Show All 26 Lines | |||||