Struct bootloader_api::info::BootInfo
source · #[repr(C)]#[non_exhaustive]pub struct BootInfo {
pub api_version: ApiVersion,
pub memory_regions: MemoryRegions,
pub framebuffer: Optional<FrameBuffer>,
pub physical_memory_offset: Optional<u64>,
pub recursive_index: Optional<u16>,
pub rsdp_addr: Optional<u64>,
pub tls_template: Optional<TlsTemplate>,
pub ramdisk_addr: Optional<u64>,
pub ramdisk_len: u64,
/* private fields */
}Expand description
This structure represents the information that the bootloader passes to the kernel.
The information is passed as an argument to the entry point. The entry point function must have the following signature:
extern "C" fn(boot_info: &'static mut BootInfo) -> !;Note that no type checking occurs for the entry point function, so be careful to
use the correct argument types. To ensure that the entry point function has the correct
signature, use the entry_point macro.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.api_version: ApiVersionThe version of the bootloader_api crate. Must match the bootloader version.
memory_regions: MemoryRegionsA map of the physical memory regions of the underlying machine.
The bootloader queries this information from the BIOS/UEFI firmware and translates this information to Rust types. It also marks any memory regions that the bootloader uses in the memory map before passing it to the kernel. Regions marked as usable can be freely used by the kernel.
framebuffer: Optional<FrameBuffer>Information about the framebuffer for screen output if available.
physical_memory_offset: Optional<u64>The virtual address at which the mapping of the physical memory starts.
Physical addresses can be converted to virtual addresses by adding this offset to them.
The mapping of the physical memory allows to access arbitrary physical frames. Accessing
frames that are also mapped at other virtual addresses can easily break memory safety and
cause undefined behavior. Only frames reported as USABLE by the memory map in the BootInfo
can be safely accessed.
Only available if the map-physical-memory config option is enabled.
recursive_index: Optional<u16>The virtual address of the recursively mapped level 4 page table.
Only available if the map-page-table-recursively config option is enabled.
rsdp_addr: Optional<u64>The address of the RSDP data structure, which can be use to find the ACPI tables.
This field is None if no RSDP was found (for BIOS) or reported (for UEFI).
tls_template: Optional<TlsTemplate>The thread local storage (TLS) template of the kernel executable, if present.
ramdisk_addr: Optional<u64>Ramdisk address, if loaded
ramdisk_len: u64Ramdisk image size, set to 0 if addr is None