2019-06-27 18:57:54 +00:00
|
|
|
/************************
|
|
|
|
*** Team Kitty, 2019 ***
|
2019-07-17 01:04:04 +00:00
|
|
|
*** Sync ***
|
2019-06-27 18:57:54 +00:00
|
|
|
***********************/
|
2019-04-03 21:46:58 +00:00
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
/*
|
|
|
|
* Sync main..
|
|
|
|
*
|
|
|
|
* Going off the back of Syncboot, the UEFI bootloader which currently only supports x86_64,
|
|
|
|
* this kernel is to be rewritten. The kernel is started in Long Mode, with interrupts enabled.
|
|
|
|
*
|
|
|
|
* Therefore, most of the checks are no longer needed, as they are performed by Syncboot for us.
|
|
|
|
* So, this becomes an exercise in time saving.
|
|
|
|
*
|
2019-07-17 01:04:04 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-06-25 21:31:26 +00:00
|
|
|
//#include <stdio.h>
|
2019-06-27 18:57:54 +00:00
|
|
|
#include <kernel.h>
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
void gdb_end() {} /* GDB Debugging stump */
|
|
|
|
|
2019-04-07 14:34:15 +00:00
|
|
|
int kernel_main(void) {
|
2019-07-22 21:32:35 +00:00
|
|
|
/* The kernel is started in 64-bit Long Mode by Syncboot. */
|
|
|
|
/* Here, we start by drawing a splash, then loading a GDT and IDT into the placeholder UEFI gives us. */
|
|
|
|
|
2019-04-07 14:34:15 +00:00
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
/* Not sure how well serial would work in UEFI. */
|
|
|
|
// TODO: look at this.
|
|
|
|
|
|
|
|
//init_serial();
|
|
|
|
//serial_print(0x3F8, "[INFO] Serial ready.\r\n");
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[INFO] Beginning GDT subroutine.\r\n");
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
/* term_writes: writes a string to the terminal. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//term_writes("GDT...");
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
/* Prepares the Global Descriptor Table, called from gdt.c */
|
2019-04-07 15:36:51 +00:00
|
|
|
gdt_install();
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
/* puts: writes a line to the terminal. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//puts("GDT Ready.");
|
|
|
|
//serial_print(0x3F8, "[INFO] GDT subroutine complete.\r\n");
|
2019-04-07 15:36:51 +00:00
|
|
|
|
2019-06-25 21:31:26 +00:00
|
|
|
/* Prepare the Interrupt Descriptor Table. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[INFO] Beginning IDT subroutine.\r\n");
|
|
|
|
//term_writes("IDT...");
|
2019-04-07 18:25:27 +00:00
|
|
|
idt_install();
|
2019-07-22 21:32:35 +00:00
|
|
|
//puts("IDT Ready.");
|
|
|
|
//serial_print(0x3F8, "[INFO] IDT subroutine complete.\r\n[INFO] Enabling interrupts.\r\n");
|
2019-04-07 22:43:09 +00:00
|
|
|
|
2019-06-25 21:31:26 +00:00
|
|
|
gdb_end(); /* The first important step. Waypoint it for gdb debugging. */
|
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
//term_writes("Memory available:");
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
/* The first important thing: start the system clock immediately. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[INFO] Starting System Clock.\r\n");
|
|
|
|
//term_writes("Timer...");
|
2019-04-07 22:43:09 +00:00
|
|
|
timer_install();
|
2019-07-22 21:32:35 +00:00
|
|
|
//puts("Timer Ready.");
|
2019-04-07 22:43:09 +00:00
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[INFO] All subsystems ready. Printing message.\r\n");
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
/* Everything is ready; print a pretty message. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//term_setcolor(RED);
|
|
|
|
//term_writes("\n(c)");
|
|
|
|
//term_setcolor(GREEN);
|
|
|
|
//term_writes(" Sync");
|
|
|
|
//term_setcolor(WHITE);
|
|
|
|
//term_writes(", 2019\n");
|
2019-04-07 22:43:09 +00:00
|
|
|
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[INFO] All operations complete. Checking for other tasks...\r\n");
|
2019-04-07 22:43:09 +00:00
|
|
|
|
2019-06-25 21:31:26 +00:00
|
|
|
/* Here are a series of tests for the ANSI escape code and CSI implementations. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//term_writes("\x1b[BA"); /* Down a line, then A. */
|
2019-06-25 21:31:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* A stub causing a Divide by Zero error. */
|
2019-07-22 21:32:35 +00:00
|
|
|
//serial_print(0x3F8, "[DEBUG] Attempting a Divide by Zero error.\r\n");
|
|
|
|
//char div = (5 / 0);
|
|
|
|
//serial_print(0x3F8, "[DEBUG] Survived the error!\r\n");
|
2019-04-07 22:43:09 +00:00
|
|
|
|
2019-06-25 21:31:26 +00:00
|
|
|
gdb_end(); /* Everything is done. The last debug routine. */
|
|
|
|
return 0;
|
2019-04-03 21:46:58 +00:00
|
|
|
}
|
2019-06-25 21:31:26 +00:00
|
|
|
|