os-k/kaleid/kernel/init/init.c

78 lines
2.9 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-05-08 00:28:42 +02:00
#include "init.h"
2019-05-18 22:02:16 +02:00
#include <io/vga.h>
2019-05-14 14:39:35 +02:00
void MmInitPaging(void);
2019-05-18 13:39:58 +02:00
void MmActivatePageHandler(void);
2019-05-14 14:39:35 +02: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-04-22 20:15:32 +02:00
noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
2018-12-29 23:51:00 +01:00
{
// Initialize the BootInfo_t structure
2019-04-22 20:15:32 +02:00
BtInitBootInfo(mbInfo, codeSeg);
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();
IoEnableCursor();
IoUpdateCursor(0, 0);
2019-05-18 22:58:30 +02:00
KernLog("%C%c%c%c OS/K%C\n\n", VGA_COLOR_WHITE,
219, 219, 219, VGA_COLOR_LIGHT_GREY);
// Sanity checks
BtDoSanityChecks(mbMagic);
2019-03-19 00:25:22 +01:00
2019-05-13 18:07:45 +02:00
// Memory
2019-03-29 10:29:05 +01:00
MmInitMemoryMap();
2019-05-18 20:31:02 +02:00
//MmInitGdt();
2019-05-15 02:26:55 +02:00
MmInitPaging();
2019-05-16 23:56:23 +02:00
MmInitHeap();
2019-05-15 02:26:55 +02:00
2019-04-24 21:08:44 +02:00
// Interrupts launching
2019-05-14 11:48:07 +02:00
KeSetupIDT();
2019-04-23 17:06:03 +02:00
KeEnableIRQs();
2019-05-18 19:40:24 +02:00
2019-05-08 00:00:45 +02:00
// Start drivers
2019-05-14 11:48:07 +02:00
KeEnableRTC();
2019-04-24 22:40:12 +02:00
IoEnableKeyb();
2019-05-18 13:39:58 +02:00
MmActivatePageHandler();
2019-04-24 21:08:44 +02:00
2019-05-18 22:58:30 +02:00
KernLog("\n%CThis %Cis %Ca %CColor %Ctest%C...%C\n",
2019-05-18 22:02:16 +02:00
VGA_COLOR_LIGHT_BLUE,
VGA_COLOR_BROWN,
VGA_COLOR_MAGENTA,
VGA_COLOR_LIGHT_GREEN,
VGA_COLOR_RED,
VGA_COLOR_DARK_GREY,
VGA_COLOR_LIGHT_GREY);
2019-05-08 00:28:42 +02:00
KeStartShell();
2019-05-08 00:00:45 +02:00
2019-05-09 10:27:44 +02:00
PoShutdown();
2019-03-18 17:43:41 +01:00
}