Cucumber/Kernel/src/Tier0/kmain.c

135 lines
4.1 KiB
C

#include "types.h"
#include "version.h"
#include "load_context.h"
#include "Tier0/kstdio.h"
#include "Tier0/kstdlib.h"
#include "Tier0/gdt.h"
#include "Tier0/paging.h"
#include "Tier0/acpi.h"
#include "Tier0/apic.h"
#include "Tier0/smp.h"
#include "Tier0/interrupts.h"
//#include "Tier0/ps2.h"
#include "Tier0/system.h"
//#include "Tier0/pic.h"
//#include "Tier0/kbd_layout.h"
#include "Tier0/physmem.h"
#include "Tier0/heap.h"
#include "Tier0/cpp.h"
#include "Tier0/exceptions.h"
#include "Tier0/panic.h"
//#include "Tier0/prng.h"
extern u64 _start;
extern u64 _end;
void kmain_newstack(void);
// Real kernel entry point, called from loader
void kmain(u32 LoadContextAddress)
{
T_LOAD_CONTEXT *LoadContext = (T_LOAD_CONTEXT*)(u64)LoadContextAddress;
kstdio_init();
if (LoadContext->VGATextModeUsed)
kstdio_set_globals(LoadContext->VGACurrentLine, LoadContext->VGACursorX, LoadContext->VGACursorY);
else
kclear();
kprintf(" _ \n"
" ___ _ _ ___ _ _ _____| |_ ___ ___ \n"
" | _| | | _| | | | . | -_| _|\n"
" |___|___|___|___|_|_|_|___|___|_| \n\n");
kprintf("[i] Welcome to Cucumber (x86-64)!\n");
kprintf("[i] %s\n\n", CUCUMBER_VERION);
kprintf("[i] Load Context @%x \n", LoadContext);
if (!LoadContext->MultibootUsed)
PANIC("No Multiboot header provided by loader!");
kprintf("[i] Multiboot header @%x\n", LoadContext->MultibootHeader);
system_parse_cpu_features();
extern T_SYSTEM_INFO g_SystemInfo;
if (!CPUID_HAS(FPU))
PANIC("CPU doesn't have FPU!");
if (!CPUID_HAS(MSR))
PANIC("CPU doesn't support MSR!");
if (!CPUID_HAS(APIC))
PANIC("CPU doesn't support APIC!");
system_parse_load_context(LoadContext);
kprintf("[i] Booting via %s.\n", LoadContext->LoaderName);
kprintf("[i] Memory available: %uk.\n", system_get_memory_upper());
kprintf("[i] Kernel physical: %x-%x.\n", LoadContext->KernelPhysicalStart, LoadContext->KernelPhysicalEnd);
kprintf("[i] Loader physical: %x-%x.\n", LoadContext->LoaderPhysicalStart, LoadContext->LoaderPhysicalEnd);
kprintf("[i] Kernel virtual: %x-%x.\n", &_start, &_end);
paging_temp_page_setup();
paging_minivmm_setup((u64)&_end, SYSTEM_KERNEL_VIRTUAL + 511 * 0x1000);
// Let's create a new kernel stack
u64 StackVirtual = paging_minivmm_allocate();
kprintf("[i] New kernel stack 0x%x\n", StackVirtual);
// And now let's use it and forget ebp because we can.
__asm__ volatile("mov %0, %%rsp" : : "r" (StackVirtual + 4096));
// And let's create a new stack frame.
// (and prevent gcc from inlinin the function call)
void (*kmain_newstack_ptr)() = kmain_newstack;
kmain_newstack_ptr();
}
void kmain_newstack(void)
{
// Not using GDT in 64-bit mode... We'll use the loader-provided one.
//gdt_create_flat();
u64 RSDPAddress = acpi_find_rsdp();
if (RSDPAddress == 0)
kprintf("[w] No ACPI!\n");
smp_initialize();
interrupts_init_simple();
exceptions_init_simple();
apic_enable_lapic();
for (;;) {}
heap_init_simple();
// enable FPU/SSE...
__asm__ volatile(
"movq %cr0, %rax;"
"and $0xfffb, %ax;"
"or $0x2, %rax;"
"movq %rax, %cr0;"
"movq %cr4, %rax;"
"orq $0x600, %rax;"
"movq %rax, %cr4;");
//lua_State *State = lua_newstate(l_alloc, NULL);
//luaL_checkversion(State);
//luaL_openlibs(State);
cpp_call_ctors();
cpp_start_ckernel();
kprintf("[i] Returned from Tier1, sleeping forever.\n");
LOOPFOREVER;
/*pic_init(0, 0);
ps2_init_simple();
kbd_layout_set_default();
__asm__ volatile("sti");
kprintf("[i] Hardware interrupts are now enabled.\n");
kprintf("[i] Initializing PRNG...\n");
u16 RLow, RHigh;
__asm__ __volatile__ ("rdtsc" : "=a" (RLow), "=d" (RHigh));
u32 R = (RHigh << 16) | RLow;
kprintf("[i] %i\n", R);
kseed(R);
for (u32 Rl = 0; Rl < R; Rl++)
{
krand();
} */
}