2018-12-20 18:03:39 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
2019-03-08 09:00:55 +01:00
|
|
|
// Desc: Kernel entry point //
|
2018-12-20 18:03:39 +01:00
|
|
|
// //
|
2019-02-16 23:36:33 +01:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
2018-12-20 18:03:39 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
2019-03-18 17:25:44 +01:00
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
#include <kernel/term.h>
|
|
|
|
#include <kernel/panic.h>
|
2019-03-18 17:43:41 +01:00
|
|
|
#include <kernel/mm.h>
|
2019-03-11 19:22:37 +01:00
|
|
|
|
2019-03-19 00:25:22 +01:00
|
|
|
//
|
|
|
|
// BootInfo_t initialization. It is necessary because grub will potentially be
|
2019-03-21 13:30:17 +01:00
|
|
|
// wiped since it is below 1MB.... And we must reorganize all that stuff.
|
2019-03-19 00:25:22 +01:00
|
|
|
//
|
|
|
|
void InitBootInfo(multiboot_info_t *mbi)
|
|
|
|
{
|
2019-03-23 23:52:18 +01:00
|
|
|
extern void MB_header(void);
|
2019-03-22 15:16:37 +01:00
|
|
|
|
2019-03-19 13:59:54 +01:00
|
|
|
// We need the multiboot structure
|
|
|
|
KalAlwaysAssert(mbi);
|
2019-03-19 12:24:27 +01:00
|
|
|
|
2019-03-21 13:30:17 +01:00
|
|
|
//Retrieves the bootloader flags to ensure infos are valid
|
|
|
|
GetBootInfo(btldr).grubFlags = mbi->flags;
|
2019-03-19 00:25:22 +01:00
|
|
|
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_BOOT_LOADER_NAME) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(btldr).grubName = (char*)(ullong)(mbi->boot_loader_name);
|
2019-03-23 23:52:18 +01:00
|
|
|
GetBootInfo(btldr).kernelAddr = (void*)&MB_header;
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(btldr).valid = 1;
|
|
|
|
}
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_MODS) {
|
|
|
|
GetBootInfo(btldr).modulesCount = mbi->mods_count;
|
|
|
|
GetBootInfo(btldr).modulesAddr = (void*)(ullong)mbi->mods_addr;
|
|
|
|
}
|
2019-03-19 00:25:22 +01:00
|
|
|
//Retrieves the drives informations
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_DRIVE_INFO) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(drives).bufferLength = mbi->drives_length;
|
|
|
|
GetBootInfo(drives).bufferAddr = (void*)(ullong)mbi->drives_addr;
|
|
|
|
GetBootInfo(drives).bufferValid = 1;
|
|
|
|
}
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_BOOTDEV) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(drives).bootDrv = mbi->boot_device;
|
|
|
|
GetBootInfo(drives).drvValid = 1;
|
|
|
|
}
|
2019-03-19 12:24:27 +01:00
|
|
|
|
|
|
|
//Retrieves the memory informations
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_MEMORY) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(memory).lowMemory = mbi->mem_lower;
|
|
|
|
GetBootInfo(memory).upMemory = mbi->mem_upper;
|
|
|
|
GetBootInfo(memory).memValid = 1;
|
|
|
|
}
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_MEM_MAP) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(memory).mapAddr = (void*)(ullong)mbi->mmap_addr;
|
|
|
|
GetBootInfo(memory).mapLength = mbi->mmap_length;
|
|
|
|
GetBootInfo(memory).mapValid = 1;
|
|
|
|
}
|
2019-03-19 12:24:27 +01:00
|
|
|
|
2019-03-23 20:34:32 +01:00
|
|
|
// Retrieves video mode informations
|
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_VBE_INFO) {
|
|
|
|
GetBootInfo(video).vbeControl = (void*)(ullong)mbi->vbe_control_info;
|
|
|
|
GetBootInfo(video).vbeModeInfo = (void*)(ullong)mbi->vbe_mode_info;
|
|
|
|
GetBootInfo(video).vbeMode = mbi->vbe_mode;
|
|
|
|
GetBootInfo(video).vbeInterfaceSeg = mbi->vbe_interface_seg;
|
|
|
|
GetBootInfo(video).vbeInterfaceOff = mbi->vbe_interface_off;
|
|
|
|
GetBootInfo(video).vbeInterfaceLen = mbi->vbe_interface_len;
|
|
|
|
GetBootInfo(video).vbeValid = 1;
|
|
|
|
}
|
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_FRAMEBUFFER_INFO) {
|
|
|
|
GetBootInfo(video).framebufferAddr = (void*)(ullong)mbi->framebuffer_addr;
|
|
|
|
GetBootInfo(video).framebufferPitch = mbi->framebuffer_pitch;
|
|
|
|
GetBootInfo(video).framebufferWidth = mbi->framebuffer_width;
|
|
|
|
GetBootInfo(video).framebufferHeight= mbi->framebuffer_height;
|
|
|
|
GetBootInfo(video).framebufferBpp = mbi->framebuffer_bpp;
|
|
|
|
GetBootInfo(video).framebufferType = mbi->framebuffer_type;
|
|
|
|
GetBootInfo(video).fbuValid = 1;
|
|
|
|
}
|
2019-03-19 12:24:27 +01:00
|
|
|
|
|
|
|
// Retrieves the firmware infos
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_CONFIG_TABLE) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(firmware).romTable = mbi->config_table;
|
|
|
|
GetBootInfo(firmware).romValid = 1;
|
|
|
|
}
|
2019-03-22 15:03:41 +01:00
|
|
|
if (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_APM_TABLE) {
|
2019-03-21 13:30:17 +01:00
|
|
|
GetBootInfo(firmware).apmTable = mbi->apm_table;
|
|
|
|
GetBootInfo(firmware).apmValid = 1;
|
|
|
|
}
|
2019-03-19 00:25:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-25 19:09:58 +01:00
|
|
|
//
|
2019-02-16 23:36:33 +01:00
|
|
|
// Entry point of the Kaleid kernel
|
2018-12-25 19:09:58 +01:00
|
|
|
//
|
2019-03-12 23:25:30 +01:00
|
|
|
noreturn void StartKern(multiboot_info_t *mbInfo, int mbMagic)
|
2018-12-29 23:51:00 +01:00
|
|
|
{
|
2019-02-16 23:36:33 +01:00
|
|
|
// We're not ready to deal with interrupts
|
2019-01-14 14:31:49 +01:00
|
|
|
DisableIRQs();
|
|
|
|
|
2019-03-23 23:52:18 +01:00
|
|
|
//Initialize the BootInfo_t structure
|
|
|
|
InitBootInfo(mbInfo);
|
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
// Kernel terminals
|
2019-01-01 13:09:57 +01:00
|
|
|
InitTerms();
|
2019-01-14 14:31:49 +01:00
|
|
|
|
2019-03-18 21:14:09 +01:00
|
|
|
//Hello world because why not
|
|
|
|
KernLog("%c%c%c OS/K\n\n", 219, 219, 219);
|
2019-03-19 13:38:09 +01:00
|
|
|
|
|
|
|
KalAlwaysAssert(mbMagic == MULTIBOOT_BOOTLOADER_MAGIC);
|
2019-03-23 23:52:18 +01:00
|
|
|
KernLog("[Init] Kernel successfully loaded at %p with %x magic\n\n",
|
|
|
|
GetBootInfo(btldr).kernelAddr,
|
|
|
|
mbMagic
|
|
|
|
);
|
2019-03-19 00:25:22 +01:00
|
|
|
|
2019-03-18 17:43:41 +01:00
|
|
|
//Memory mapping
|
2019-03-21 13:30:17 +01:00
|
|
|
error_t mapBad = InitMemoryMap();
|
|
|
|
if (mapBad)
|
|
|
|
StartPanic("[Init] The memory map failed to initialize. Error : %d", mapBad);
|
2019-03-13 09:19:43 +01:00
|
|
|
|
2019-03-18 17:43:41 +01:00
|
|
|
// We're out
|
2019-03-23 23:52:18 +01:00
|
|
|
KernLog("\n[Init] Evil never dies !\n");
|
2019-03-18 17:43:41 +01:00
|
|
|
CrashSystem(); //yay
|
|
|
|
}
|