|
@@ -10,35 +10,89 @@ use core::marker::PhantomData;
|
|
/// that the Rust compiler output changes `eax` before you can access it.
|
|
/// that the Rust compiler output changes `eax` before you can access it.
|
|
pub const MULTIBOOT2_BOOTLOADER_MAGIC: u32 = 0x36d76289;
|
|
pub const MULTIBOOT2_BOOTLOADER_MAGIC: u32 = 0x36d76289;
|
|
|
|
|
|
-/// Possible Types of a [`Tag`]. The names and values are taken from the example C code
|
|
|
|
|
|
+/// Possible types of a Tag in the Multiboot2 Information Structure (MBI), therefore the value
|
|
|
|
+/// of the the `typ` field in [`Tag`]. The names and values are taken from the example C code
|
|
/// at the bottom of the Multiboot2 specification.
|
|
/// at the bottom of the Multiboot2 specification.
|
|
#[repr(u32)]
|
|
#[repr(u32)]
|
|
#[derive(Copy, Clone, Debug)]
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
+#[allow(missing_docs)]
|
|
pub enum TagType {
|
|
pub enum TagType {
|
|
|
|
+ /// Marks the end of the tags.
|
|
End = 0,
|
|
End = 0,
|
|
|
|
+ /// Additional command line string.
|
|
|
|
+ /// For example `''` or `'--my-custom-option foo --provided by_grub`, if your GRUB config
|
|
|
|
+ /// contains `multiboot2 /boot/multiboot2-binary.elf --my-custom-option foo --provided by_grub`
|
|
Cmdline = 1,
|
|
Cmdline = 1,
|
|
|
|
+ /// Name of the bootloader, e.g. 'GRUB 2.04-1ubuntu44.2'
|
|
BootLoaderName = 2,
|
|
BootLoaderName = 2,
|
|
|
|
+ /// Additional Multiboot modules, which are BLOBs provided in memory. For example an initial
|
|
|
|
+ /// ram disk with essential drivers.
|
|
Module = 3,
|
|
Module = 3,
|
|
|
|
+ /// ‘mem_lower’ and ‘mem_upper’ indicate the amount of lower and upper memory, respectively,
|
|
|
|
+ /// in kilobytes. Lower memory starts at address 0, and upper memory starts at address 1
|
|
|
|
+ /// megabyte. The maximum possible value for lower memory is 640 kilobytes. The value returned
|
|
|
|
+ /// for upper memory is maximally the address of the first upper memory hole minus 1 megabyte.
|
|
|
|
+ /// It is not guaranteed to be this value.
|
|
|
|
+ ///
|
|
|
|
+ /// This tag may not be provided by some boot loaders on EFI platforms if EFI boot services are
|
|
|
|
+ /// enabled and available for the loaded image (EFI boot services not terminated tag exists in
|
|
|
|
+ /// Multiboot2 information structure).
|
|
BasicMeminfo = 4,
|
|
BasicMeminfo = 4,
|
|
|
|
+ /// This tag indicates which BIOS disk device the boot loader loaded the OS image from. If the
|
|
|
|
+ /// OS image was not loaded from a BIOS disk, then this tag must not be present. The operating
|
|
|
|
+ /// system may use this field as a hint for determining its own root device, but is not
|
|
|
|
+ /// required to.
|
|
Bootdev = 5,
|
|
Bootdev = 5,
|
|
|
|
+ /// Memory map. The map provided is guaranteed to list all standard RAM that should be
|
|
|
|
+ /// available for normal use. This type however includes the regions occupied by kernel, mbi,
|
|
|
|
+ /// segments and modules. Kernel must take care not to overwrite these regions.
|
|
|
|
+ //
|
|
|
|
+ // This tag may not be provided by some boot loaders on EFI platforms if EFI boot services are
|
|
|
|
+ // enabled and available for the loaded image (EFI boot services not terminated tag exists in
|
|
|
|
+ // Multiboot2 information structure).
|
|
Mmap = 6,
|
|
Mmap = 6,
|
|
|
|
+ /// Contains the VBE control information returned by the VBE Function 00h and VBE mode
|
|
|
|
+ /// information returned by the VBE Function 01h, respectively. Note that VBE 3.0 defines
|
|
|
|
+ /// another protected mode interface which is incompatible with the old one. If you want to use the new protected mode interface, you will have to find the table yourself.
|
|
Vbe = 7,
|
|
Vbe = 7,
|
|
|
|
+ /// Framebuffer.
|
|
Framebuffer = 8,
|
|
Framebuffer = 8,
|
|
|
|
+ /// This tag contains section header table from an ELF kernel, the size of each entry, number
|
|
|
|
+ /// of entries, and the string table used as the index of names. They correspond to the
|
|
|
|
+ /// ‘shdr_*’ entries (‘shdr_num’, etc.) in the Executable and Linkable Format (ELF)
|
|
|
|
+ /// specification in the program header.
|
|
ElfSections = 9,
|
|
ElfSections = 9,
|
|
|
|
+ /// APM table. See Advanced Power Management (APM) BIOS Interface Specification, for more
|
|
|
|
+ /// information.
|
|
Apm = 10,
|
|
Apm = 10,
|
|
|
|
+ /// This tag contains pointer to i386 EFI system table.
|
|
Efi32 = 11,
|
|
Efi32 = 11,
|
|
|
|
+ /// This tag contains pointer to amd64 EFI system table.
|
|
Efi64 = 12,
|
|
Efi64 = 12,
|
|
|
|
+ /// This tag contains a copy of SMBIOS tables as well as their version.
|
|
Smbios = 13,
|
|
Smbios = 13,
|
|
/// Also called "AcpiOld" in other multiboot2 implementations.
|
|
/// Also called "AcpiOld" in other multiboot2 implementations.
|
|
AcpiV1 = 14,
|
|
AcpiV1 = 14,
|
|
/// Refers to version 2 and later of Acpi.
|
|
/// Refers to version 2 and later of Acpi.
|
|
/// Also called "AcpiNew" in other multiboot2 implementations.
|
|
/// Also called "AcpiNew" in other multiboot2 implementations.
|
|
AcpiV2 = 15,
|
|
AcpiV2 = 15,
|
|
|
|
+ /// This tag contains network information in the format specified as DHCP. It may be either a
|
|
|
|
+ /// real DHCP reply or just the configuration info in the same format. This tag appears once
|
|
|
|
+ /// per card.
|
|
Network = 16,
|
|
Network = 16,
|
|
|
|
+ /// This tag contains EFI memory map as per EFI specification.
|
|
|
|
+ /// This tag may not be provided by some boot loaders on EFI platforms if EFI boot services are
|
|
|
|
+ /// enabled and available for the loaded image (EFI boot services not terminated tag exists in Multiboot2 information structure).
|
|
EfiMmap = 17,
|
|
EfiMmap = 17,
|
|
|
|
+ /// This tag indicates ExitBootServices wasn't called.
|
|
EfiBs = 18,
|
|
EfiBs = 18,
|
|
|
|
+ /// This tag contains pointer to EFI i386 image handle. Usually it is boot loader image handle.
|
|
Efi32Ih = 19,
|
|
Efi32Ih = 19,
|
|
|
|
+ /// This tag contains pointer to EFI amd64 image handle. Usually it is boot loader image handle.
|
|
Efi64Ih = 20,
|
|
Efi64Ih = 20,
|
|
|
|
+ /// This tag contains image load base physical address. The spec tells
|
|
|
|
+ /// "It is provided only if image has relocatable header tag." but experience showed
|
|
|
|
+ /// that this is not true for at least GRUB 2.
|
|
LoadBaseAddr = 21,
|
|
LoadBaseAddr = 21,
|
|
}
|
|
}
|
|
|
|
|