mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
331 lines
11 KiB
C++
331 lines
11 KiB
C++
/*
|
|
This file is part of Fennix Kernel.
|
|
|
|
Fennix Kernel is free software: you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation, either version 3 of
|
|
the License, or (at your option) any later version.
|
|
|
|
Fennix Kernel is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Fennix Kernel. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <types.h>
|
|
|
|
#include <boot/protocol/multiboot2.h>
|
|
#include <memory.hpp>
|
|
|
|
#include "../../../../kernel.h"
|
|
|
|
void multiboot2_parse(BootInfo &mb2binfo, uintptr_t Magic, uintptr_t Info)
|
|
{
|
|
auto infoAddr = Info;
|
|
for (auto Tag = (struct multiboot_tag *)((uint8_t *)infoAddr + 8);; Tag = (struct multiboot_tag *)((multiboot_uint8_t *)Tag + ((Tag->size + 7) & ~7)))
|
|
{
|
|
if (Tag->type == MULTIBOOT_TAG_TYPE_END)
|
|
{
|
|
debug("End of multiboot2 tags");
|
|
break;
|
|
}
|
|
|
|
switch (Tag->type)
|
|
{
|
|
case MULTIBOOT_TAG_TYPE_CMDLINE:
|
|
{
|
|
multiboot_tag_string *cmdline = (multiboot_tag_string *)Tag;
|
|
strncpy(mb2binfo.Kernel.CommandLine, cmdline->string, strlen(cmdline->string));
|
|
|
|
debug("Kernel command line: %s", mb2binfo.Kernel.CommandLine);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_BOOT_LOADER_NAME:
|
|
{
|
|
multiboot_tag_string *blName = (multiboot_tag_string *)Tag;
|
|
strncpy(mb2binfo.Bootloader.Name, blName->string, strlen(blName->string));
|
|
|
|
debug("Bootloader name: %s", mb2binfo.Bootloader.Name);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_MODULE:
|
|
{
|
|
multiboot_tag_module *module = (multiboot_tag_module *)Tag;
|
|
static int module_count = 0;
|
|
mb2binfo.Modules[module_count].Address = (void *)(uint64_t)module->mod_start;
|
|
mb2binfo.Modules[module_count].Size = module->mod_end - module->mod_start;
|
|
strncpy(mb2binfo.Modules[module_count].Path, "(null)", 6);
|
|
strncpy(mb2binfo.Modules[module_count].CommandLine, module->cmdline, strlen(module->cmdline));
|
|
|
|
debug("Module: %s", mb2binfo.Modules[module_count].CommandLine);
|
|
module_count++;
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_BASIC_MEMINFO:
|
|
{
|
|
multiboot_tag_basic_meminfo *meminfo = (multiboot_tag_basic_meminfo *)Tag;
|
|
|
|
fixme("basic_meminfo->[mem_lower: %#x, mem_upper: %#x]",
|
|
meminfo->mem_lower,
|
|
meminfo->mem_upper);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_BOOTDEV:
|
|
{
|
|
multiboot_tag_bootdev *bootdev = (multiboot_tag_bootdev *)Tag;
|
|
|
|
fixme("bootdev->[biosdev: %#x, slice: %#x, part: %#x]",
|
|
bootdev->biosdev,
|
|
bootdev->slice,
|
|
bootdev->part);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_MMAP:
|
|
{
|
|
multiboot_tag_mmap *mmap = (multiboot_tag_mmap *)Tag;
|
|
size_t EntryCount = mmap->size / sizeof(multiboot_mmap_entry);
|
|
mb2binfo.Memory.Entries = EntryCount;
|
|
for (uint32_t i = 0; i < EntryCount; i++)
|
|
{
|
|
if (i > MAX_MEMORY_ENTRIES)
|
|
{
|
|
warn("Too many memory entries, skipping the rest...");
|
|
break;
|
|
}
|
|
|
|
multiboot_mmap_entry entry = mmap->entries[i];
|
|
mb2binfo.Memory.Size += entry.len;
|
|
switch (entry.type)
|
|
{
|
|
case MULTIBOOT_MEMORY_AVAILABLE:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = Usable;
|
|
break;
|
|
case MULTIBOOT_MEMORY_RESERVED:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = Reserved;
|
|
break;
|
|
case MULTIBOOT_MEMORY_ACPI_RECLAIMABLE:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = ACPIReclaimable;
|
|
break;
|
|
case MULTIBOOT_MEMORY_NVS:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = ACPINVS;
|
|
break;
|
|
case MULTIBOOT_MEMORY_BADRAM:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = BadMemory;
|
|
break;
|
|
default:
|
|
mb2binfo.Memory.Entry[i].BaseAddress = (void *)entry.addr;
|
|
mb2binfo.Memory.Entry[i].Length = entry.len;
|
|
mb2binfo.Memory.Entry[i].Type = Unknown;
|
|
break;
|
|
}
|
|
|
|
debug("Memory entry: [BaseAddress: %#x, Length: %#x, Type: %d]",
|
|
mb2binfo.Memory.Entry[i].BaseAddress,
|
|
mb2binfo.Memory.Entry[i].Length,
|
|
mb2binfo.Memory.Entry[i].Type);
|
|
}
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_VBE:
|
|
{
|
|
multiboot_tag_vbe *vbe = (multiboot_tag_vbe *)Tag;
|
|
|
|
fixme("vbe->[vbe_mode: %#x, vbe_interface_seg: %#x, vbe_interface_off: %#x, vbe_interface_len: %#x]",
|
|
vbe->vbe_mode,
|
|
vbe->vbe_interface_seg,
|
|
vbe->vbe_interface_off,
|
|
vbe->vbe_interface_len);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_FRAMEBUFFER:
|
|
{
|
|
multiboot_tag_framebuffer *fb = (multiboot_tag_framebuffer *)Tag;
|
|
static int fbCount = 0;
|
|
mb2binfo.Framebuffer[fbCount].BaseAddress = (void *)fb->common.framebuffer_addr;
|
|
mb2binfo.Framebuffer[fbCount].Width = fb->common.framebuffer_width;
|
|
mb2binfo.Framebuffer[fbCount].Height = fb->common.framebuffer_height;
|
|
mb2binfo.Framebuffer[fbCount].Pitch = fb->common.framebuffer_pitch;
|
|
mb2binfo.Framebuffer[fbCount].BitsPerPixel = fb->common.framebuffer_bpp;
|
|
switch (fb->common.framebuffer_type)
|
|
{
|
|
case MULTIBOOT_FRAMEBUFFER_TYPE_INDEXED:
|
|
mb2binfo.Framebuffer[fbCount].Type = Indexed;
|
|
break;
|
|
case MULTIBOOT_FRAMEBUFFER_TYPE_RGB:
|
|
mb2binfo.Framebuffer[fbCount].Type = RGB;
|
|
mb2binfo.Framebuffer[fbCount].RedMaskSize = fb->framebuffer_red_mask_size;
|
|
mb2binfo.Framebuffer[fbCount].RedMaskShift = fb->framebuffer_red_field_position;
|
|
mb2binfo.Framebuffer[fbCount].GreenMaskSize = fb->framebuffer_green_mask_size;
|
|
mb2binfo.Framebuffer[fbCount].GreenMaskShift = fb->framebuffer_green_field_position;
|
|
mb2binfo.Framebuffer[fbCount].BlueMaskSize = fb->framebuffer_blue_mask_size;
|
|
mb2binfo.Framebuffer[fbCount].BlueMaskShift = fb->framebuffer_blue_field_position;
|
|
break;
|
|
case MULTIBOOT_FRAMEBUFFER_TYPE_EGA_TEXT:
|
|
mb2binfo.Framebuffer[fbCount].Type = EGA;
|
|
break;
|
|
default:
|
|
mb2binfo.Framebuffer[fbCount].Type = Unknown_Framebuffer_Type;
|
|
break;
|
|
}
|
|
|
|
debug("fb %d: %dx%d %d bpp", fbCount, fb->common.framebuffer_width, fb->common.framebuffer_height, fb->common.framebuffer_bpp);
|
|
debug("More info: addr:%#lx pitch:%d mm:%d RMSize:%d RMShift:%d GMSize:%d GMShift:%d BMSize:%d BMShift:%d",
|
|
fb->common.framebuffer_addr, fb->common.framebuffer_pitch, fb->common.framebuffer_type,
|
|
fb->framebuffer_red_mask_size, fb->framebuffer_red_field_position,
|
|
fb->framebuffer_green_mask_size, fb->framebuffer_green_field_position,
|
|
fb->framebuffer_blue_mask_size, fb->framebuffer_blue_field_position);
|
|
fbCount++;
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_ELF_SECTIONS:
|
|
{
|
|
multiboot_tag_elf_sections *elf = (multiboot_tag_elf_sections *)Tag;
|
|
mb2binfo.Kernel.Symbols.Num = elf->num;
|
|
mb2binfo.Kernel.Symbols.EntSize = elf->entsize;
|
|
mb2binfo.Kernel.Symbols.Shndx = elf->shndx;
|
|
mb2binfo.Kernel.Symbols.Sections = r_cst(uintptr_t, elf->sections);
|
|
|
|
debug("elf_sections->[num: %d, entsize: %d, shndx: %d, sections: %#lx]",
|
|
elf->num, elf->entsize, elf->shndx, elf->sections);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_APM:
|
|
{
|
|
multiboot_tag_apm *apm = (multiboot_tag_apm *)Tag;
|
|
|
|
fixme("apm->[version:%d, cseg:%d, offset:%d, cseg_16:%d, dseg:%d, flags:%d, cseg_len:%d, cseg_16_len:%d, dseg_len:%d]",
|
|
apm->version, apm->cseg, apm->offset, apm->cseg_16, apm->dseg,
|
|
apm->flags, apm->cseg_len, apm->cseg_16_len, apm->dseg_len);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI32:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.ST = 1;
|
|
|
|
multiboot_tag_efi32 *efi32 = (multiboot_tag_efi32 *)Tag;
|
|
mb2binfo.EFI.SystemTable = (void *)(uintptr_t)efi32->pointer;
|
|
|
|
debug("efi32->[pointer: %#lx, size: %d]", efi32->pointer, efi32->size);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI64:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.ST = 1;
|
|
|
|
multiboot_tag_efi64 *efi64 = (multiboot_tag_efi64 *)Tag;
|
|
mb2binfo.EFI.SystemTable = (void *)(uintptr_t)efi64->pointer;
|
|
|
|
debug("efi64->[pointer: %#lx, size: %d]", efi64->pointer, efi64->size);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_SMBIOS:
|
|
{
|
|
multiboot_tag_smbios *smbios = (multiboot_tag_smbios *)Tag;
|
|
mb2binfo.SMBIOSPtr = (void *)smbios->tables;
|
|
|
|
debug("smbios->[major: %d, minor: %d]", smbios->major, smbios->minor);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_ACPI_OLD:
|
|
{
|
|
mb2binfo.RSDP = (BootInfo::RSDPInfo *)((multiboot_tag_old_acpi *)Tag)->rsdp;
|
|
|
|
debug("OLD ACPI RSDP: %#lx", mb2binfo.RSDP);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_ACPI_NEW:
|
|
{
|
|
mb2binfo.RSDP = (BootInfo::RSDPInfo *)((multiboot_tag_new_acpi *)Tag)->rsdp;
|
|
|
|
debug("NEW ACPI RSDP: %#lx", mb2binfo.RSDP);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_NETWORK:
|
|
{
|
|
multiboot_tag_network *net = (multiboot_tag_network *)Tag;
|
|
|
|
fixme("network->[dhcpack: %#lx]", net->dhcpack);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI_MMAP:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.MemoryMap = 1;
|
|
|
|
multiboot_tag_efi_mmap *efi_mmap = (multiboot_tag_efi_mmap *)Tag;
|
|
mb2binfo.EFI.MemoryMap.BaseAddress = (void *)efi_mmap->efi_mmap;
|
|
mb2binfo.EFI.MemoryMap.DescriptorSize = efi_mmap->descr_size;
|
|
mb2binfo.EFI.MemoryMap.DescriptorVersion = efi_mmap->descr_vers;
|
|
mb2binfo.EFI.MemoryMap.NumberOfEntries = (efi_mmap->size - sizeof(multiboot_tag_efi_mmap)) / efi_mmap->descr_size;
|
|
// mb2binfo.EFI.MemoryMap.NumberOfEntries = efi_mmap->size / efi_mmap->descr_size;
|
|
|
|
debug("efi_mmap->[descr_size: %d, descr_vers: %d, efi_mmap: %#lx]",
|
|
efi_mmap->descr_size, efi_mmap->descr_vers, efi_mmap->efi_mmap);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI_BS:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.BS = 1;
|
|
|
|
debug("efi_bs");
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI32_IH:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.IH = 1;
|
|
|
|
multiboot_tag_efi32_ih *efi32_ih = (multiboot_tag_efi32_ih *)Tag;
|
|
mb2binfo.EFI.ImageHandle = (void *)(uintptr_t)efi32_ih->pointer;
|
|
|
|
debug("efi32_ih->[pointer: %#lx]", efi32_ih->pointer);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_EFI64_IH:
|
|
{
|
|
mb2binfo.EFI.Info.Enabled = 1;
|
|
mb2binfo.EFI.Info.IH = 1;
|
|
|
|
multiboot_tag_efi64_ih *efi64_ih = (multiboot_tag_efi64_ih *)Tag;
|
|
mb2binfo.EFI.ImageHandle = (void *)(uintptr_t)efi64_ih->pointer;
|
|
|
|
debug("efi64_ih->[pointer: %#lx]", efi64_ih->pointer);
|
|
break;
|
|
}
|
|
case MULTIBOOT_TAG_TYPE_LOAD_BASE_ADDR:
|
|
{
|
|
multiboot_tag_load_base_addr *load_base_addr = (multiboot_tag_load_base_addr *)Tag;
|
|
mb2binfo.Kernel.PhysicalBase = (void *)(uint64_t)load_base_addr->load_base_addr;
|
|
mb2binfo.Kernel.VirtualBase = (void *)(uint64_t)(load_base_addr->load_base_addr + 0xFFFFFFFF80000000);
|
|
mb2binfo.Kernel.Size = ((uint64_t)&_kernel_end - (uint64_t)&_kernel_start) + ((uint64_t)&_bootstrap_end - (uint64_t)&_bootstrap_start);
|
|
|
|
debug("Kernel base: %#lx (physical) %#lx (virtual)", mb2binfo.Kernel.PhysicalBase, mb2binfo.Kernel.VirtualBase);
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
error("Unknown multiboot2 tag type: %d", Tag->type);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
Entry(&mb2binfo);
|
|
}
|