1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00
os-k/kaleid/kernel/init/init.c
2019-03-19 00:25:22 +01:00

77 lines
3.3 KiB
C

//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Desc: Kernel entry point //
// //
// //
// Copyright © 2018-2019 The OS/K Team //
// //
// This file is part of OS/K. //
// //
// OS/K is free software: you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation, either version 3 of the License, or //
// any later version. //
// //
// OS/K is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
//----------------------------------------------------------------------------//
#include <multiboot/multiboot.h>
#include <kernel/term.h>
#include <kernel/panic.h>
#include <kernel/mm.h>
//
// BootInfo_t initialization. It is necessary because grub will potentially be
// wiped since it is below 1MB....
//
void InitBootInfo(multiboot_info_t *mbi)
{
//Retrieves the bootloader informations
GetBootInfo().btldr.grubFlags = mbi->flags;
GetBootInfo().btldr.grubName = mbi->boot_loader_name;
GetBootInfo().btldr.modulesCount = mbi->mods_count;
GetBootInfo().btldr.modulesAddr = mbi->mods_addr;
DebugLog("[InitBootInfo] %s\n", GetBootInfo().btldr.grubName);
//Retrieves the drives informations
GetBootInfo().drives.bootDrv = mbi->boot_device;
GetBootInfo().drives.bufferLength = mbi->drives_length;
GetBootInfo().drives.bufferAddr = mbi->drives_addr;
DebugLog("[InitBootInfo] Root drive : %x\n",
GetBootInfo().drives.bootDrv);
}
//
// Entry point of the Kaleid kernel
//
noreturn void StartKern(multiboot_info_t *mbInfo, int mbMagic)
{
// We're not ready to deal with interrupts
DisableIRQs();
// Kernel terminals
InitTerms();
//Hello world because why not
KernLog("%c%c%c OS/K\n\n", 219, 219, 219);
KernLog("[Init] We have magic : %x\n", mbMagic);
//Initialize the BootInfo_t structure
InitBootInfo(mbInfo);
//Memory mapping
InitMemoryMap();
// We're out
KernLog("\n[Init] Evil never dies");
CrashSystem(); //yay
}