blob: 04db30021d2b831c683eb9e954a2b68862108b29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#include <stdint.h>
#include <graphics/vesa.h>
#include <system.h>
#include <multiboot.h>
#include <smbios/smbios.h>
#include <acpi/acpi.h>
#include <lib/lib.h>
#include <lib/stdio.h>
void multiboot_parse(u32 multiboot_address)
{
struct multiboot_tag *tag;
for (tag = (struct multiboot_tag *)(multiboot_address + 8);
tag->type != MULTIBOOT_TAG_TYPE_END;
tag = (struct multiboot_tag *)((multiboot_u8 *)tag + ((tag->size + 7) & ~7))) {
switch (tag->type) {
case MULTIBOOT_TAG_TYPE_CMDLINE:
// TODO: Add cmdline config support
debug("Got cmdline: %s", ((struct multiboot_tag_string *)tag)->string);
break;
case MULTIBOOT_TAG_TYPE_BOOT_LOADER_NAME:
debug("Got bootloader name: %s",
((struct multiboot_tag_string *)tag)->string);
break;
case MULTIBOOT_TAG_TYPE_MODULE:
debug("Got modules");
break;
case MULTIBOOT_TAG_TYPE_BASIC_MEMINFO:
debug("Got memory info");
memory_info_init((struct multiboot_tag_basic_meminfo *)tag);
break;
case MULTIBOOT_TAG_TYPE_BOOTDEV:
debug("Got boot device");
break;
case MULTIBOOT_TAG_TYPE_MMAP:
debug("Got memory map");
memory_mmap_init((struct multiboot_tag_mmap *)tag);
break;
case MULTIBOOT_TAG_TYPE_VBE:
debug("Got VBE");
break;
case MULTIBOOT_TAG_TYPE_FRAMEBUFFER:
debug("Got framebuffer");
break;
case MULTIBOOT_TAG_TYPE_APM:
debug("Got APM table");
break;
case MULTIBOOT_TAG_TYPE_EFI32:
debug("Got EFI32");
break;
case MULTIBOOT_TAG_TYPE_SMBIOS:
// GRUB doesn't detect SMBIOS on QEMU!
debug("Got SMBIOS table");
smbios_init((struct multiboot_tag_smbios *)tag);
break;
case MULTIBOOT_TAG_TYPE_ACPI_OLD:
debug("Got ACPI 1.0 table");
acpi_old_init((struct multiboot_tag_old_acpi *)tag);
break;
case MULTIBOOT_TAG_TYPE_ACPI_NEW:
debug("Got ACPI 2.0 table");
acpi_new_init((struct multiboot_tag_new_acpi *)tag);
break;
case MULTIBOOT_TAG_TYPE_NETWORK:
debug("Got network debug");
break;
case MULTIBOOT_TAG_TYPE_EFI_MMAP:
debug("Got EFI memory map");
break;
case MULTIBOOT_TAG_TYPE_EFI_BS:
debug("Got EFI boot services");
break;
case MULTIBOOT_TAG_TYPE_EFI32_IH:
debug("Got EFI image handler pointer");
break;
case MULTIBOOT_TAG_TYPE_LOAD_BASE_ADDR:
debug("Got image load base address");
break;
}
}
}
|