diff options
author | Marvin Borner | 2021-07-10 18:36:50 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-10 18:36:50 +0200 |
commit | 4f1ae4fa4250369919a975f5568425f6791b2489 (patch) | |
tree | aec903e642561edbf6a6cccf513abccff882426f /src/loader/impl | |
parent | ad56eb28f0614db4b7656ade390f1c79b446cbc9 (diff) |
Fixed interrupts and added keyboard handler
Diffstat (limited to 'src/loader/impl')
-rw-r--r-- | src/loader/impl/mb1.c | 37 | ||||
-rw-r--r-- | src/loader/impl/mb2.c | 17 |
2 files changed, 33 insertions, 21 deletions
diff --git a/src/loader/impl/mb1.c b/src/loader/impl/mb1.c index e713dd7..c02aa50 100644 --- a/src/loader/impl/mb1.c +++ b/src/loader/impl/mb1.c @@ -10,15 +10,20 @@ // The address where data gets stored #define MB1_LOAD_ADDRESS 0x10000 +#define MB1_FLAG_PAGE_ALIGN (1 << 0) // Align modules with page boundaries (4K) +#define MB1_FLAG_MEMORY_INFO (1 << 1) // Load/store all mem_* fields and mmap_* structs +#define MB1_FLAG_VIDEO_MODE (1 << 2) // Load/store video mode table +#define MB1_FLAG_MANUAL_ADDRESSES (1 << 16) // Use specified load addresses + struct mb1_entry { u32 magic; u32 flags; u32 checksum; // Everything after that is optional - u32 header_addr; - u32 load_addr; - u32 load_end_addr; - u32 bss_end_addr; - u32 entry_addr; + u32 header_addr; // Unsupported + u32 load_addr; // Unsupported + u32 load_end_addr; // Unsupported + u32 bss_end_addr; // Unsupported + u32 entry_addr; // Unsupported u32 mode_type; u32 width; u32 height; @@ -40,8 +45,9 @@ static u32 mb1_store(void *data, u32 size) return MB1_LOAD_ADDRESS + (offset - size); } -static void mb1_store_mmap(struct mb1_info *info) +static void mb1_store_memory_info(struct mb1_info *info) { + // TODO: Store mem_lower and mem_upper struct mem_map *mem_map = mem_map_get(); info->flags |= MB1_INFO_MEM_MAP; info->mmap_length = mem_map->count * sizeof(struct mb1_mmap_entry); @@ -59,8 +65,6 @@ static void mb1_store_mmap(struct mb1_info *info) // Load the mb1 structs into memory static void mb1_load(struct mb1_entry *entry) { - (void)entry; - struct mb1_info info_struct = { 0 }; struct mb1_info *info = (void *)mb1_store(&info_struct, sizeof(info_struct)); @@ -73,9 +77,9 @@ static void mb1_load(struct mb1_entry *entry) char loader_name[] = "SegelBoot"; info->boot_loader_name = mb1_store(loader_name, sizeof(loader_name)); - // Set memory map - /* if (entry->flags & 2) TODO */ - mb1_store_mmap(info); + // Store memory info + if (entry->flags & MB1_FLAG_MEMORY_INFO) + mb1_store_memory_info(info); } // Jump to kernel with correct info pointer in eax @@ -120,18 +124,21 @@ u8 mb1_detect(struct cfg_entry *cfg) return 0; cfg->impl.type = IMPL_MB1; - cfg->impl.start = entry; + cfg->impl.offset = (u32)entry - (u32)header; return 1; } -#include <pic.h> - // Execute mb1 type kernel void mb1_exec(struct cfg_entry *cfg) { + struct mb1_entry mb1_entry = { 0 }; + s32 ret = cfg->dev->p.disk.fs.read(cfg->path, &mb1_entry, cfg->impl.offset, + sizeof(mb1_entry), cfg->dev); + assert(ret == sizeof(mb1_entry)); + mb1_load(&mb1_entry); + u32 entry = elf_load(cfg->dev, cfg->path); - mb1_load(cfg->impl.start); // This is a kind of hacky parameter stack pushing thing, just disable warning :) #pragma GCC diagnostic ignored "-Wpedantic" diff --git a/src/loader/impl/mb2.c b/src/loader/impl/mb2.c index f46310b..09f69ea 100644 --- a/src/loader/impl/mb2.c +++ b/src/loader/impl/mb2.c @@ -9,7 +9,7 @@ // The address where data gets stored #define MB2_LOAD_ADDRESS 0x10000 -struct multiboot_entry { +struct mb2_entry { u32 magic; u32 flags; u32 header_length; @@ -18,7 +18,7 @@ struct multiboot_entry { }; // The (really simple) multiboot checksum algorithm -/* static u32 mb2_checksum(struct multiboot_entry *entry) */ +/* static u32 mb2_checksum(struct mb2_entry *entry) */ /* { */ /* return -(entry->magic + entry->flags); */ /* } */ @@ -33,7 +33,7 @@ static u32 mb2_store(void *data, u32 size) } // Load the mb2 structs into memory -static void mb2_load(struct multiboot_entry *entry) +static void mb2_load(struct mb2_entry *entry) { (void)mb2_store; (void)entry; @@ -64,7 +64,7 @@ u8 mb2_detect(struct cfg_entry *cfg) return 0; // Find start of multiboot entry by searching for magic - struct multiboot_entry *entry = 0; + struct mb2_entry *entry = 0; for (u32 i = 0; i < sizeof(header); i++) { u32 *p = (u32 *)&header[i]; if (*p == MB2_MAGIC) { @@ -82,7 +82,7 @@ u8 mb2_detect(struct cfg_entry *cfg) /* return 0; */ cfg->impl.type = IMPL_MB2; - cfg->impl.start = entry; + cfg->impl.offset = (u32)entry - (u32)header; return 1; } @@ -90,8 +90,13 @@ u8 mb2_detect(struct cfg_entry *cfg) // Execute mb2 type kernel void mb2_exec(struct cfg_entry *cfg) { + struct mb2_entry mb2_entry = { 0 }; + s32 ret = cfg->dev->p.disk.fs.read(cfg->path, &mb2_entry, cfg->impl.offset, + sizeof(mb2_entry), cfg->dev); + assert(ret == sizeof(mb2_entry)); + mb2_load(&mb2_entry); + u32 entry = elf_load(cfg->dev, cfg->path); - mb2_load(cfg->impl.start); // This is a kind of hacky parameter stack pushing thing, just disable warning :) #pragma GCC diagnostic ignored "-Wpedantic" |