BarinkOS/kernel/kernel.cpp

89 lines
2.2 KiB
C++
Raw Normal View History

2023-02-17 13:42:42 +00:00
/*
Copyright © Nigel Barink 2023
*/
#include "memory/memory.h"
#include "memory/KernelHeap.h"
#include "memory/gdt/gdtc.h"
#include "memory/TaskStateSegment.h"
#include "supervisorterminal/superVisorTerminal.h"
#include "drivers/vga/VBE.h"
2023-02-21 13:36:20 +00:00
#include "pci/pci.h"
#include "drivers/pit/pit.h"
2023-02-21 13:36:20 +00:00
#include "acpi/acpi.h"
2023-02-17 15:27:36 +00:00
#include "i386/processor.h"
#include "terminal/kterm.h"
#include "interrupts/idt.h"
#include "serial.h"
#include "storage/vfs/vfs.h"
#include "storage/filesystems/FAT/FAT.h"
#include "../CoreLib/Memory.h"
2023-02-17 15:27:36 +00:00
extern "C" void LoadGlobalDescriptorTable();
2023-02-17 13:46:44 +00:00
extern "C" void jump_usermode();
extern BootInfoBlock* BIB;
2023-02-17 13:42:42 +00:00
extern "C" void kernel ()
{
2023-02-17 13:42:42 +00:00
init_serial();
kterm_init();
setup_tss();
initGDT();
initidt();
LoadGlobalDescriptorTable();
flush_tss();
printf("Memory setup complete!\n");
2023-02-17 13:42:42 +00:00
// Enable interrupts
asm volatile("STI");
initHeap();
2023-02-17 13:42:42 +00:00
pit_initialise();
2023-02-21 13:36:20 +00:00
ACPI::initialize();
PCI::Scan();
2023-02-17 15:27:36 +00:00
processor::initialize();
processor::enable_protectedMode();
printf("Boot device: 0x%x\n", BIB->bootDeviceID);
unsigned int part3 = BIB->bootDeviceID & 0xFF;
unsigned int part2 = (BIB->bootDeviceID & 0xFF00) >> 8;
unsigned int part1 = (BIB->bootDeviceID & 0xFF0000) >> 16;
unsigned int drive = (BIB->bootDeviceID & 0xFF000000) >> 24;
if (drive == 0x80 )
printf("booted from disk!\n");
if(drive == 0x00)
printf("booted from floppy disk\n");
printf("Part1: %d, Part2: %d, Part3: %d\n", part1, part2 , part3);
ATAPIO::Identify(ATAPIO_PORT::Primary, DEVICE_DRIVE::MASTER);
VirtualFileSystem::initialize();
printf("Lets open hello.txt\n");
auto fontFile = VirtualFileSystem::open("/HELLO TXT", 0);
if(fontFile->flags == 0){
uint16_t* contents = (uint16_t*) malloc(sizeof(uint16_t) * 256);
fontFile->read(fontFile, contents, 512);
for(int i =0 ; i < fontFile->root->size; i++ ){
kterm_put(contents[i] & 0x00ff);
kterm_put(contents[i] >> 8);
}
kterm_put('\n');
free((void*)contents);
}else{
printf("Could not find file\n");
}
2023-02-17 13:46:44 +00:00
#ifdef USERMODE_RELEASE
// Lets jump into user mode
jump_usermode();
#else
startSuperVisorTerminal();
#endif
2023-02-17 13:42:42 +00:00
}