2024-09-18 11:14:06 -04:00
|
|
|
#include "memory.h"
|
2024-10-18 08:45:37 -04:00
|
|
|
#include "debug.h"
|
2024-10-14 18:29:46 -04:00
|
|
|
#include "kprintf.h"
|
2024-11-12 11:13:36 -05:00
|
|
|
#include "utils.h"
|
2024-10-14 18:29:46 -04:00
|
|
|
|
2024-09-26 10:18:06 -04:00
|
|
|
#include <stdint.h>
|
2024-09-18 11:14:06 -04:00
|
|
|
|
2024-10-14 18:29:46 -04:00
|
|
|
uint32_t *page_directory = &boot_page_directory;
|
2024-11-12 11:13:36 -05:00
|
|
|
uint32_t page_table_default[1024] __attribute__((aligned(PAGE_SIZE)));
|
|
|
|
uint32_t multiboot_page_table[1024] __attribute__((aligned(PAGE_SIZE)));
|
|
|
|
uint32_t mem_size;
|
2024-11-15 07:35:48 -05:00
|
|
|
multiboot_memory_map_t *mmap_addr;
|
2024-11-12 11:13:36 -05:00
|
|
|
multiboot_uint32_t mmap_length;
|
2024-10-21 10:29:50 -04:00
|
|
|
|
2024-11-12 11:13:36 -05:00
|
|
|
static void init_multiboot(multiboot_info_t *mbd, uint32_t magic)
|
|
|
|
{
|
|
|
|
if (magic != MULTIBOOT_BOOTLOADER_MAGIC)
|
|
|
|
kpanic("invalid magic number! (git good skill issue)");
|
|
|
|
|
|
|
|
init_page_table(multiboot_page_table, 0);
|
|
|
|
page_directory[1023] =
|
|
|
|
((uint32_t)multiboot_page_table - HEAP_END) | 0x03;
|
|
|
|
const size_t mbd_size = CEIL(
|
|
|
|
(uint32_t)mbd % PAGE_SIZE + sizeof(multiboot_info_t), PAGE_SIZE);
|
|
|
|
|
|
|
|
// Index multiboot_info_t struct
|
|
|
|
for (uint32_t i = 0; i < mbd_size; i++)
|
|
|
|
multiboot_page_table[i] =
|
2024-11-13 07:32:14 -05:00
|
|
|
(((uint32_t)mbd + PAGE_SIZE * i) & PAGE_MASK) | INIT_FLAGS;
|
2024-11-12 11:13:36 -05:00
|
|
|
multiboot_info_t *mbd_virt =
|
|
|
|
(multiboot_info_t *)(GET_PAGE_ADDR(1023, 0) +
|
|
|
|
(uint32_t)mbd % PAGE_SIZE);
|
|
|
|
|
|
|
|
// Index mbd->mmap_addr pointers
|
|
|
|
for (uint32_t i = 0; i < mbd_virt->mmap_length; i++)
|
|
|
|
multiboot_page_table[i + mbd_size] =
|
|
|
|
((mbd_virt->mmap_addr + i * PAGE_SIZE) & PAGE_MASK) |
|
|
|
|
INIT_FLAGS;
|
2024-11-15 07:35:48 -05:00
|
|
|
mmap_addr = (multiboot_memory_map_t *)(GET_PAGE_ADDR(1023, mbd_size) +
|
|
|
|
(uint32_t)mbd_virt->mmap_addr %
|
|
|
|
PAGE_SIZE);
|
|
|
|
mmap_length = mbd_virt->mmap_length / sizeof(multiboot_memory_map_t);
|
2024-11-12 11:13:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_memory(multiboot_info_t *mbd, uint32_t magic)
|
2024-09-18 11:14:06 -04:00
|
|
|
{
|
2024-10-18 08:45:37 -04:00
|
|
|
assert(page_directory);
|
2024-10-25 09:11:11 -04:00
|
|
|
for (uint16_t i = 0; i < 0x300; i++)
|
2024-10-17 10:10:39 -04:00
|
|
|
page_directory[i] = 0x02;
|
2024-10-25 09:11:11 -04:00
|
|
|
init_page_table(page_table_default, 0);
|
2024-10-21 10:29:50 -04:00
|
|
|
page_directory[0] = ((uint32_t)page_table_default - HEAP_END) | 0x03;
|
2024-11-12 11:13:36 -05:00
|
|
|
init_multiboot(mbd, magic);
|
2024-10-17 10:10:39 -04:00
|
|
|
}
|