Tiberiu Chibici
913e65b856
==================================================== + Changed 'align 0x4' line above multiboot header in loader.asm to 'align 4' + Removed -e option for echo in build.sh + Modified build.sh for linux + Fixed triple fault when enabling paging + Fixed page faults at memory manager initialization + Fixed 'mem' console function + Added more info about page fault at crash screen + Added Panic() macro + Added verbose mode for memory manager [ BAD] BUILD 0.1.0.390 DATE 8/27/2011 AT 10:54 PM ==================================================== + Added stdlib routines, separated in different files + Rewritten physical memory manager + Added virtual mem manager + Added memory allocation/freeing + Added memory library + Added temporary allocation (at end of kernel), until paging is started - Removed functionality from debug console function 'mem' - Removed system.h, the one remaining function now in stdio.h
75 lines
2.5 KiB
C
75 lines
2.5 KiB
C
/******************************************************************
|
|
* gdt.c - GLOBAL DESCRIPTOR TABLE *
|
|
* Contains function prototypes for setting up the GDT *
|
|
******************************************************************/
|
|
#define MAX_DESCRIPTORS 5
|
|
#include "gdt.h"
|
|
|
|
/* Our GDT, with 3 entries, and finally our special GDT pointer */
|
|
struct GdtEntry gdt[MAX_DESCRIPTORS];
|
|
struct GdtPointer gp;
|
|
|
|
|
|
/* Setup a descriptor in the Global Descriptor Table */
|
|
void GdtSetGate(int num, unsigned long base, unsigned long limit, unsigned char access, unsigned char gran)
|
|
{
|
|
/* Sanity check */
|
|
if (num >= MAX_DESCRIPTORS) return;
|
|
|
|
/* Setup the descriptor base address */
|
|
gdt[num].base_low = (base & 0xFFFF);
|
|
gdt[num].base_middle = (base >> 16) & 0xFF;
|
|
gdt[num].base_high = (base >> 24) & 0xFF;
|
|
|
|
/* Setup the descriptor limits */
|
|
gdt[num].limit_low = (limit & 0xFFFF);
|
|
gdt[num].granularity = ((limit >> 16) & 0x0F);
|
|
|
|
/* Finally, set up the granularity and access flags */
|
|
gdt[num].granularity |= (gran & 0xF0);
|
|
gdt[num].access = access;
|
|
}
|
|
|
|
struct GdtEntry* GdtGetGate(int num)
|
|
{
|
|
if (num>MAX_DESCRIPTORS) return 0;
|
|
return &gdt[num];
|
|
}
|
|
|
|
/* Should be called by main. This will setup the special GDT
|
|
* pointer, set up the first 3 entries in our GDT, and then
|
|
* finally call gdt_flush() in our assembler file in order
|
|
* to tell the processor where the new GDT is and update the
|
|
* new segment registers */
|
|
void GdtInstall()
|
|
{
|
|
/* Setup the GDT pointer and limit */
|
|
gp.limit = (sizeof(struct GdtEntry) * 3) - 1;
|
|
gp.base = (unsigned int)&gdt;
|
|
|
|
/* Our NULL descriptor */
|
|
GdtSetGate(0, 0, 0, 0, 0);
|
|
|
|
/* The second entry is our Code Segment. The base address
|
|
* is 0, the limit is 4GBytes, it uses 4KByte granularity,
|
|
* uses 32-bit opcodes, and is a Code Segment descriptor.
|
|
* Please check the table above in the tutorial in order
|
|
* to see exactly what each value means */
|
|
GdtSetGate(1, 0, 0xFFFFFFFF, 0x9A, 0xCF);
|
|
|
|
/* The third entry is our Data Segment. It's EXACTLY the
|
|
* same as our code segment, but the descriptor type in
|
|
* this entry's access byte says it's a Data Segment */
|
|
GdtSetGate(2, 0, 0xFFFFFFFF, 0x92, 0xCF);
|
|
|
|
/* User mode Code segment*/
|
|
GdtSetGate(3, 0, 0xFFFFFFFF, 0xFA, 0xCF);
|
|
|
|
/* User mode data segment*/
|
|
GdtSetGate(4, 0, 0xFFFFFFFF, 0xF2, 0xCF);
|
|
|
|
/* Flush out the old GDT and install the new changes! */
|
|
GdtFlush();
|
|
}
|
|
|