mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
119 lines
3.5 KiB
C
119 lines
3.5 KiB
C
#include "idt.h"
|
|
|
|
#include "logger.h"
|
|
|
|
struct IdtPointer {
|
|
unsigned short limit;
|
|
unsigned int base;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct IdtEntry {
|
|
unsigned short base_lo;
|
|
unsigned short sel;
|
|
unsigned char always0;
|
|
unsigned char flags;
|
|
unsigned short base_hi;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
static struct IdtPointer idt_pointer;
|
|
|
|
static struct IdtEntry idt_entries[256];
|
|
|
|
static void idt_set_gate(unsigned char num, unsigned int base, unsigned short sel, unsigned char flags);
|
|
|
|
void idt_flush(unsigned int pointer);
|
|
|
|
void isr0();
|
|
void isr1();
|
|
void isr2();
|
|
void isr3();
|
|
void isr4();
|
|
void isr5();
|
|
void isr6();
|
|
void isr7();
|
|
void isr8();
|
|
void isr9();
|
|
void isr10();
|
|
void isr11();
|
|
void isr12();
|
|
void isr13();
|
|
void isr14();
|
|
void isr15();
|
|
void isr16();
|
|
void isr17();
|
|
void isr18();
|
|
void isr19();
|
|
void isr20();
|
|
void isr21();
|
|
void isr22();
|
|
void isr23();
|
|
void isr24();
|
|
void isr25();
|
|
void isr26();
|
|
void isr27();
|
|
void isr28();
|
|
void isr29();
|
|
void isr30();
|
|
void isr31();
|
|
|
|
void idt_initialize()
|
|
{
|
|
logger_info("Setup IDT.");
|
|
|
|
for (unsigned char *p = (unsigned char*)idt_entries; p < (unsigned char*)&idt_entries[256]; ++p) {
|
|
*p = 0;
|
|
}
|
|
|
|
idt_set_gate(0, (unsigned int)isr0, 0x08, 0x8E);
|
|
idt_set_gate(1, (unsigned int)isr1, 0x08, 0x8E);
|
|
idt_set_gate(2, (unsigned int)isr2, 0x08, 0x8E);
|
|
idt_set_gate(3, (unsigned int)isr3, 0x08, 0x8E);
|
|
idt_set_gate(4, (unsigned int)isr4, 0x08, 0x8E);
|
|
idt_set_gate(5, (unsigned int)isr5, 0x08, 0x8E);
|
|
idt_set_gate(6, (unsigned int)isr6, 0x08, 0x8E);
|
|
idt_set_gate(7, (unsigned int)isr7, 0x08, 0x8E);
|
|
idt_set_gate(8, (unsigned int)isr8, 0x08, 0x8E);
|
|
idt_set_gate(9, (unsigned int)isr9, 0x08, 0x8E);
|
|
idt_set_gate(10, (unsigned int)isr10, 0x08, 0x8E);
|
|
idt_set_gate(11, (unsigned int)isr11, 0x08, 0x8E);
|
|
idt_set_gate(12, (unsigned int)isr12, 0x08, 0x8E);
|
|
idt_set_gate(13, (unsigned int)isr13, 0x08, 0x8E);
|
|
idt_set_gate(14, (unsigned int)isr14, 0x08, 0x8E);
|
|
idt_set_gate(15, (unsigned int)isr15, 0x08, 0x8E);
|
|
idt_set_gate(16, (unsigned int)isr16, 0x08, 0x8E);
|
|
idt_set_gate(17, (unsigned int)isr17, 0x08, 0x8E);
|
|
idt_set_gate(18, (unsigned int)isr18, 0x08, 0x8E);
|
|
idt_set_gate(19, (unsigned int)isr19, 0x08, 0x8E);
|
|
idt_set_gate(20, (unsigned int)isr20, 0x08, 0x8E);
|
|
idt_set_gate(21, (unsigned int)isr21, 0x08, 0x8E);
|
|
idt_set_gate(22, (unsigned int)isr22, 0x08, 0x8E);
|
|
idt_set_gate(23, (unsigned int)isr23, 0x08, 0x8E);
|
|
idt_set_gate(24, (unsigned int)isr24, 0x08, 0x8E);
|
|
idt_set_gate(25, (unsigned int)isr25, 0x08, 0x8E);
|
|
idt_set_gate(26, (unsigned int)isr26, 0x08, 0x8E);
|
|
idt_set_gate(27, (unsigned int)isr27, 0x08, 0x8E);
|
|
idt_set_gate(28, (unsigned int)isr28, 0x08, 0x8E);
|
|
idt_set_gate(29, (unsigned int)isr29, 0x08, 0x8E);
|
|
idt_set_gate(30, (unsigned int)isr30, 0x08, 0x8E);
|
|
idt_set_gate(31, (unsigned int)isr31, 0x08, 0x8E);
|
|
|
|
logger_info("Load IDT.");
|
|
|
|
idt_pointer.limit = sizeof(struct IdtEntry) * 256 - 1;
|
|
idt_pointer.base = (unsigned int)&idt_entries;
|
|
|
|
idt_flush((unsigned int)&idt_pointer);
|
|
}
|
|
|
|
void idt_set_gate(unsigned char num, unsigned int base, unsigned short sel, unsigned char flags)
|
|
{
|
|
idt_entries[num].base_lo = base & 0xFFFF;
|
|
idt_entries[num].base_hi = (base >> 16) & 0xFFFF;
|
|
idt_entries[num].sel = sel;
|
|
idt_entries[num].always0 = 0;
|
|
// We must uncomment the OR below when we get to using user-mode.
|
|
// It sets the interrupt gate's privilege level to 3.
|
|
idt_entries[num].flags = flags /* | 0x60 */;
|
|
}
|