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

158 lines
6.3 KiB
C
Raw Normal View History

//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Desc: Kernel entry point //
// //
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/>. //
//----------------------------------------------------------------------------//
2019-03-18 17:25:44 +01:00
2019-03-28 23:03:26 +01:00
#include <kernel/mboot.h>
2019-02-16 23:36:33 +01:00
#include <kernel/panic.h>
2019-03-25 17:33:51 +01:00
#include <kernel/sched.h>
#include <kernel/heap.h>
2019-04-06 07:53:58 +02:00
#include <kernel/boot.h>
2019-03-18 17:43:41 +01:00
#include <kernel/mm.h>
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
//
2019-03-24 14:44:59 +01:00
void BtInitBootInfo(multiboot_info_t *mbi)
2019-03-19 00:25:22 +01:00
{
2019-03-25 17:33:51 +01:00
extern ulong MB_header;
2019-03-25 23:10:06 +01:00
extern ulong newKernelEnd;
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
2019-04-06 07:53:58 +02:00
BtLoaderInfo.grubFlags = mbi->flags;
2019-03-19 00:25:22 +01:00
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_BOOT_LOADER_NAME) {
BtLoaderInfo.grubName = (char*)(ulong)(mbi->boot_loader_name);
BtLoaderInfo.kernelAddr = (void*)&MB_header;
BtLoaderInfo.kernelEndAddr = (void*)newKernelEnd;
BtLoaderInfo.valid = 1;
2019-03-21 13:30:17 +01:00
}
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_MODS) {
BtLoaderInfo.modulesCount = mbi->mods_count;
BtLoaderInfo.modulesAddr = (void*)(ulong)mbi->mods_addr;
2019-03-22 15:03:41 +01:00
}
2019-03-19 00:25:22 +01:00
//Retrieves the drives informations
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_DRIVE_INFO) {
2019-04-05 10:20:10 +02:00
BtBootTab.drives.bufferLength = mbi->drives_length;
BtBootTab.drives.bufferAddr = (void*)(ulong)mbi->drives_addr;
BtBootTab.drives.bufferValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_BOOTDEV) {
2019-04-05 10:20:10 +02:00
BtBootTab.drives.bootDrv = mbi->boot_device;
BtBootTab.drives.drvValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-03-19 12:24:27 +01:00
//Retrieves the memory informations
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_MEMORY) {
BtMemoryInfo.lowMemory = mbi->mem_lower;
BtMemoryInfo.upMemory = mbi->mem_upper;
BtMemoryInfo.memValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_MEM_MAP) {
BtMemoryInfo.mapAddr = (void*)(ulong)mbi->mmap_addr;
BtMemoryInfo.mapLength = mbi->mmap_length;
BtMemoryInfo.mapValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-03-19 12:24:27 +01:00
2019-03-23 20:34:32 +01:00
// Retrieves video mode informations
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_VBE_INFO) {
BtVideoInfo.vbeControl = (void*)(ulong)mbi->vbe_control_info;
BtVideoInfo.vbeModeInfo = (void*)(ulong)mbi->vbe_mode_info;
BtVideoInfo.vbeMode = mbi->vbe_mode;
BtVideoInfo.vbeInterfaceSeg = mbi->vbe_interface_seg;
BtVideoInfo.vbeInterfaceOff = mbi->vbe_interface_off;
BtVideoInfo.vbeInterfaceLen = mbi->vbe_interface_len;
BtVideoInfo.vbeValid = 1;
2019-03-23 20:34:32 +01:00
}
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_FRAMEBUFFER_INFO) {
BtVideoInfo.framebufferAddr = (void*)mbi->framebuffer_addr;
BtVideoInfo.framebufferPitch = mbi->framebuffer_pitch;
BtVideoInfo.framebufferWidth = mbi->framebuffer_width;
BtVideoInfo.framebufferHeight= mbi->framebuffer_height;
BtVideoInfo.framebufferBpp = mbi->framebuffer_bpp;
BtVideoInfo.framebufferType = mbi->framebuffer_type;
BtVideoInfo.fbuValid = 1;
2019-03-23 20:34:32 +01:00
}
2019-03-19 12:24:27 +01:00
// Retrieves the firmware infos
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_CONFIG_TABLE) {
BtFirmwareInfo.romTable = mbi->config_table;
BtFirmwareInfo.romValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-04-06 07:53:58 +02:00
if (BtLoaderInfo.grubFlags & MULTIBOOT_INFO_APM_TABLE) {
BtFirmwareInfo.apmTable = mbi->apm_table;
BtFirmwareInfo.apmValid = 1;
2019-03-21 13:30:17 +01:00
}
2019-03-19 00:25:22 +01:00
}
2019-04-01 12:02:17 +02:00
void BtInitSanity(uint mbMagic){
uint tmp;
KernLog("%c%c%c OS/K\n \n", 219, 219, 219);
if (!(mbMagic == MULTIBOOT_BOOTLOADER_MAGIC))
KeStartPanic("[Init] Magic number %x is incorrect\n", mbMagic);
2019-04-06 07:53:58 +02:00
tmp = (BtLoaderInfo.kernelEndAddr
- BtLoaderInfo.kernelAddr) / KB;
2019-04-01 12:02:17 +02:00
DebugLog("[Init] Kernel successfully loaded at %p with %x magic\n"
" and it uses %d Kio\n\n",
2019-04-06 07:53:58 +02:00
BtLoaderInfo.kernelAddr,
2019-04-01 12:02:17 +02:00
mbMagic,tmp);
}
2019-03-25 17:33:51 +01:00
extern void pstest(void);
extern error_t IoInitVGABuffer(void);
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-04-01 12:02:17 +02:00
noreturn void BtStartKern(multiboot_info_t *mbInfo, uint 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-03-24 14:44:59 +01:00
KeDisableIRQs();
2019-01-14 14:31:49 +01:00
// Initialize the BootInfo_t structure
2019-03-24 14:44:59 +01:00
BtInitBootInfo(mbInfo);
2019-03-23 23:52:18 +01:00
2019-04-04 18:47:30 +02:00
// Screen I/O available from this point on
IoInitVGABuffer();
2019-04-01 12:02:17 +02:00
// Sanity checks and hello world
BtInitSanity(mbMagic);
2019-03-19 00:25:22 +01:00
2019-04-04 18:47:30 +02:00
// Memory & scheduler
2019-03-29 10:29:05 +01:00
MmInitMemoryMap();
2019-03-25 17:33:51 +01:00
MmInitHeap();
PsInitSched();
2019-03-24 20:25:11 +01:00
2019-04-06 07:53:58 +02:00
KeStartPanic("Test Panic %x", 4);
2019-04-04 18:41:39 +02:00
2019-04-04 18:47:30 +02:00
// End this machine's suffering
2019-04-04 18:41:39 +02:00
KeCrashSystem();
2019-03-18 17:43:41 +01:00
}