summaryrefslogtreecommitdiff
path: root/arch/i386/boot/idt.c
blob: 752b6799eab71e796fb1cd9d5f48ad62841752af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <kernel/io.h>
#include <stdint.h>

struct idt_entry {
        uint16_t        isr_low;
        uint16_t        kernel_cs;
        uint8_t         reserved;
        uint8_t         attributes;
        uint16_t        isr_high;
} __attribute__((packed));

struct idt_ptr {
        uint16_t        limit;
        uint32_t        base;
} __attribute__((packed));

__attribute__((aligned(0x10)))
static struct idt_entry idt[256];
static struct idt_ptr idtr;

__attribute__((noreturn))
void exception_handler(int in) {
        kprintf("EXCEPTION %d CAUGHT\n", in);
}

extern void* isr_stub_table[];

void idt_set_descriptor(uint8_t vector, void *isr, uint8_t flags) {
        struct idt_entry *desc = &idt[vector];

        desc->isr_low           = (uint32_t)isr & 0xFFFF;
        desc->kernel_cs         = 0x08;
        desc->attributes        = flags;
        desc->isr_high          = (uint32_t)isr >> 16;
        desc->reserved          = 0;
}

void idt_install(void) {
        idtr.base = (uintptr_t)&idt[0];
        idtr.limit = (uint16_t)sizeof(struct idt_entry) * 256 - 1;

        for (uint8_t vector = 0; vector < 32; vector++) {
                idt_set_descriptor(vector, isr_stub_table[vector], 0x8E);
                isr_stub_table[vector] = 1;
        }

        __asm__ volatile("lidt %0" : : "memory"(idtr));
        __asm__ volatile("sti");
        kprintf("Interrupts on\n");
}