2021-04-09 10:29:23 +02:00
|
|
|
#include "libc/stdio.h"
|
2021-04-08 19:06:44 +02:00
|
|
|
#include "boot/multiboot.h"
|
2021-04-12 10:13:21 +02:00
|
|
|
#include "core/mem.h"
|
|
|
|
#include "core/gdt.h"
|
|
|
|
#include "core/paging.h"
|
2021-04-09 18:18:15 +02:00
|
|
|
|
|
|
|
char show_tics=0;
|
|
|
|
|
2021-04-10 17:24:13 +02:00
|
|
|
extern GDT_TSS TSS;
|
2021-04-12 10:13:21 +02:00
|
|
|
extern void interrupt_enable();
|
2021-04-10 17:24:13 +02:00
|
|
|
|
2021-04-09 18:18:15 +02:00
|
|
|
void utask(){
|
2021-04-10 17:24:13 +02:00
|
|
|
char msg[]="Message from the task :D";
|
|
|
|
asm("mov $0x1, %%eax;int $0x30"::"b"(msg));
|
2021-04-09 18:18:15 +02:00
|
|
|
while(1);
|
|
|
|
}
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-04 11:19:55 +02:00
|
|
|
void bringelle(){
|
2021-04-08 19:06:44 +02:00
|
|
|
clear();
|
2021-04-09 18:18:15 +02:00
|
|
|
printc("Booting Bringelle...\n",GREEN);
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-12 10:13:21 +02:00
|
|
|
// ----- Kernel boot sequence
|
|
|
|
interrupt_enable();
|
2021-04-10 17:24:13 +02:00
|
|
|
print("Interrupts enabled\n");
|
2021-04-09 18:18:15 +02:00
|
|
|
|
2021-04-11 20:53:06 +02:00
|
|
|
paging_enable();
|
|
|
|
print("Paging enable!\n");
|
|
|
|
print("Kernel started !");
|
|
|
|
|
2021-04-13 15:31:45 +02:00
|
|
|
paging_allocate(5);
|
|
|
|
print("\n");
|
|
|
|
paging_dump(1024,-1);
|
|
|
|
print("\n");
|
|
|
|
|
2021-04-11 20:53:06 +02:00
|
|
|
show_tics=1;
|
2021-04-09 18:18:15 +02:00
|
|
|
// Utask
|
2021-04-10 17:24:13 +02:00
|
|
|
print("Launch user task ");
|
2021-04-09 18:18:15 +02:00
|
|
|
memcpy((void*)utask,(void*)0x300000, 100); // 100 bytes seems reasonable to load utask
|
2021-04-10 17:24:13 +02:00
|
|
|
asm (
|
|
|
|
"cli \n\t" // Ensure we do not get interrupted
|
|
|
|
"movl %%ss, %%eax \n\t"
|
|
|
|
"movl %%eax, %0 \n\t" // Save kernel ss segment into the TSS
|
|
|
|
"movl %%esp, %1 \n\t" // Save kernel esp into the TSS BEFORE setting up the stack
|
|
|
|
"pushl $0x33 \n\t" // Push task ss which is 0x30 along with prlv which is 0x3
|
2021-04-11 20:53:06 +02:00
|
|
|
"pushl $0x30FFFF \n\t" // Push task esp
|
2021-04-10 17:24:13 +02:00
|
|
|
"pushfl \n\t" // Retrieve flags
|
|
|
|
"popl %%eax \n\t"
|
|
|
|
"orl $0x200, %%eax \n\t" // Enable interrupt for the user task
|
|
|
|
"and $0xffffbfff, %%eax \n\t" // Clear the NT flags
|
|
|
|
"push %%eax \n\t" // Push task flags
|
|
|
|
"push $0x23 \n\t" // Push task cs which is 0x20 along with prlv which is 0x3
|
2021-04-11 20:53:06 +02:00
|
|
|
"push $0x300000 \n\t" // Push task entry point
|
2021-04-10 17:24:13 +02:00
|
|
|
"mov $0x2B, %%eax \n\t" // GDT entry 0x28 along with prlv which is 0x3
|
|
|
|
"mov %%eax, %%ds \n\t" // Setting up user data segment
|
|
|
|
"iret \n\t" // Launch user task
|
|
|
|
: "=m" (TSS.ss0), "=m" (TSS.esp0)
|
|
|
|
);
|
2021-04-09 18:18:15 +02:00
|
|
|
|
2021-04-04 11:19:55 +02:00
|
|
|
while(1);
|
|
|
|
}
|
2021-04-08 19:06:44 +02:00
|
|
|
|
2021-04-13 15:31:45 +02:00
|
|
|
|
2021-04-08 19:06:44 +02:00
|
|
|
void clock(){
|
|
|
|
static int tic=0;
|
|
|
|
static int sec=0;
|
|
|
|
tic++;
|
|
|
|
if(tic>=20){
|
|
|
|
tic=0;
|
|
|
|
sec++;
|
2021-04-09 18:18:15 +02:00
|
|
|
if(show_tics)
|
|
|
|
putchar('.');
|
2021-04-08 19:06:44 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-09 18:18:15 +02:00
|
|
|
|
2021-04-11 20:53:06 +02:00
|
|
|
void page_fault(){
|
|
|
|
print("Page fault!");
|
|
|
|
}
|
|
|
|
|