From 8d78616a2b80c7625c1aa9ca4733e48a8bf8bf22 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Apr 2020 00:07:37 +0200 Subject: Completely reworked ACPI tables I'm too exhausted right now, but I rediscovered the memory mapping issue of my ACPI implementatio and need to fix it ASAP. Otherwise I won't be able to use any ACPI table without causing a page fault. I have no clue why exactly this is happening and the internet says that I shouldn't need to memory map them. Well, I'll look into it later. --- src/kernel/lib/memory.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/kernel/lib/memory.c') diff --git a/src/kernel/lib/memory.c b/src/kernel/lib/memory.c index db26c47..b571b83 100644 --- a/src/kernel/lib/memory.c +++ b/src/kernel/lib/memory.c @@ -81,6 +81,10 @@ void memory_mmap_init(struct multiboot_tag_mmap *tag) ((struct multiboot_tag_mmap *)tag)->entry_size)) { if (mmap->type == MULTIBOOT_MEMORY_AVAILABLE) { sum += mmap->len; + } else if (mmap->type == MULTIBOOT_MEMORY_ACPI_RECLAIMABLE) { + log("ACPI reclaimable memory"); + } else if (mmap->type == MULTIBOOT_MEMORY_BADRAM) { + warn("Bad memory!"); } } total = sum >> 10; // I want kb -- cgit v1.2.3