aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/interrupts.c
blob: bd20911e23f6f993ce76e0494562d9c3addf594f (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// MIT License, Copyright (c) 2020 Marvin Borner

#include <cpu.h>
#include <def.h>
#include <interrupts.h>
#include <serial.h>

/**
 * IDT
 */

void idt_set_gate(u8 num, u32 base, u16 sel, u8 flags)
{
	// Specify the interrupt routine's base address
	idt[num].base_low = (u16)(base & 0xFFFF);
	idt[num].base_high = (u16)((base >> 16) & 0xFFFF);

	// Set selector/segment of IDT entry
	idt[num].sel = sel;
	idt[num].always0 = 0;
	idt[num].flags = (u8)(flags | 0x60);
}

// Install IDT
void idt_install()
{
	// Set IDT pointer and limit
	idt_ptr.limit = (sizeof(struct idt_entry) * 256) - 1;
	idt_ptr.base = &idt;

	// Clear IDT by setting memory cells to 0 // TODO
	//memset(&idt, 0, sizeof(struct idt_entry) * 256);

	__asm__("lidt %0" : : "m"(idt_ptr));
}

/**
 * IRQ
 */

void (*irq_routines[16])(struct regs *) = { 0 };

// Install IRQ handler
void irq_install_handler(int irq, void (*handler)(struct regs *r))
{
	irq_routines[irq] = handler;
}

// Remove IRQ handler
void irq_uninstall_handler(int irq)
{
	irq_routines[irq] = 0;
}

// Remap the IRQ table
void irq_remap()
{
	outb(0x20, 0x11);
	outb(0xA0, 0x11);
	outb(0x21, 0x20);
	outb(0xA1, 0x28);
	outb(0x21, 0x04);
	outb(0xA1, 0x02);
	outb(0x21, 0x01);
	outb(0xA1, 0x01);
	outb(0x21, 0x00);
	outb(0xA1, 0x00);
}

// Handle IRQ ISRs
__attribute__((interrupt)) void irq_handler(struct regs *r)
{
	__asm__("cli");
	void (*handler)(struct regs * r);

	// Execute custom handler if exists
	handler = irq_routines[r->int_no - 32];
	if (handler)
		handler(r);

	// Send EOI to second (slave) PIC
	if (r->int_no >= 40)
		outb(0xA0, 0x20);

	// Send EOI to master PIC
	outb(0x20, 0x20);
	__asm__("sti");
}

// Map ISRs to the correct entries in the IDT
void irq_install()
{
	irq_remap();
	for (int i = 32; i < 48; i++)
		idt_set_gate(i, (u32)irq_handler, 0x08, 0x8E);
}

/**
 * ISR
 */

void (*isr_routines[256])(struct regs *) = { 0 };

void isr_install_handler(int isr, void (*handler)(struct regs *r))
{
	isr_routines[isr] = handler;
}

void isr_uninstall_handler(int isr)
{
	isr_routines[isr] = 0;
}

__attribute__((interrupt)) void isr_handler(struct regs *r)
{
	__asm__("cli");
	void (*handler)(struct regs * r);

	// Execute fault handler if exists
	handler = isr_routines[r->int_no];
	if (handler) {
		handler(r);
	} else if (r->int_no <= 32) {
		serial_print("Exception, halting!\n");
		__asm__("cli");
		while (1) {
		};
	}
	__asm__("sti");
}

void isr_install()
{
	for (int i = 0; i < 32; i++)
		idt_set_gate(i, (u32)isr_handler, 0x08, 0x8E);
}

/**
 * Combined
 */
void interrupts_install()
{
	idt_install();
	isr_install();
	irq_install();
	__asm__("sti");
}