From 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 20 May 2021 20:41:24 +0200 Subject: Major restructuring --- kernel/multiboot.c | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) (limited to 'kernel/multiboot.c') diff --git a/kernel/multiboot.c b/kernel/multiboot.c index 4c3e3d0..02a05cf 100644 --- a/kernel/multiboot.c +++ b/kernel/multiboot.c @@ -2,12 +2,13 @@ #include #include +#include #include #include #include -#include PROTECTED static struct multiboot_info *info = NULL; +PROTECTED static u8 vbe_available = 0; PROTECTED static char vbe[256] = { 0 }; CLEAR static void multiboot_parse_cmdline(const char *line) @@ -22,25 +23,11 @@ CLEAR static void multiboot_parse_cmdline(const char *line) start += 3; } } - - assert(info->flags & MULTIBOOT_INFO_VBE_INFO); - memcpy(vbe, (void *)info->vbe_mode_info, sizeof(vbe)); -} - -CLEAR void multiboot_init(u32 magic, u32 addr) -{ - assert(magic == MULTIBOOT_MAGIC); - info = (void *)addr; - - if (info->flags & MULTIBOOT_INFO_CMDLINE) - multiboot_parse_cmdline((const char *)info->cmdline); - - serial_print("Kernel was compiled at " __TIME__ " on " __DATE__ "\n"); } CLEAR u32 multiboot_vbe(void) { - return (u32)vbe; + return vbe_available ? (u32)vbe : 0; } CLEAR void multiboot_mmap(void) @@ -69,3 +56,19 @@ CLEAR void multiboot_mmap(void) physical_set_total(total); } + +CLEAR void multiboot_init(u32 magic, u32 addr) +{ + assert(magic == MULTIBOOT_MAGIC); + info = (void *)addr; + + if (info->flags & MULTIBOOT_INFO_CMDLINE) + multiboot_parse_cmdline((const char *)info->cmdline); + + if (info->flags & MULTIBOOT_INFO_VBE_INFO) { + memcpy(vbe, (void *)info->vbe_mode_info, sizeof(vbe)); + vbe_available = 1; + } + + serial_print("Kernel was compiled at " __TIME__ " on " __DATE__ "\n"); +} -- cgit v1.2.3