Luna/kernel/src/init/Init.cpp

38 lines
876 B
C++
Raw Normal View History

2022-09-05 14:13:51 +00:00
#include "init/Init.h"
#include "assert.h"
#include "bootboot.h"
#include "cpu/CPU.h"
#include "interrupts/Interrupts.h"
#include "io/Serial.h"
#include "memory/RangeAllocator.h"
2022-09-06 11:49:17 +00:00
#include "memory/VMM.h"
2022-09-05 14:13:51 +00:00
#include "panic/hang.h"
2022-09-10 16:42:40 +00:00
#include "render/Framebuffer.h"
2022-09-05 14:13:51 +00:00
#include "render/TextRenderer.h"
#include <string.h>
extern BOOTBOOT bootboot;
void Init::check_magic()
{
ASSERT(strncmp((char*)bootboot.magic, BOOTBOOT_MAGIC, 4) == 0);
}
void Init::disable_smp()
{
if (CPU::get_initial_apic_id() != bootboot.bspid) { hang(); }
return;
}
void Init::early_init()
{
Interrupts::disable();
asm volatile("cld");
2022-09-10 16:42:40 +00:00
framebuffer0.init((void*)bootboot.fb_ptr, bootboot.fb_type, bootboot.fb_scanline, bootboot.fb_width,
bootboot.fb_height);
2022-09-05 14:13:51 +00:00
// ASSERT(TextRenderer::try_initialize());
kernelPMM.init_from_mmap();
2022-09-06 11:49:17 +00:00
kernelVMM.init();
2022-09-05 14:13:51 +00:00
}