This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interrupt.c
155 lines (134 loc) · 4.77 KB
/
interrupt.c
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
148
149
150
151
152
153
154
155
/*
* interrupt.c -
*/
#include <types.h>
#include <interrupt.h>
#include <segment.h>
#include <hardware.h>
#include <io.h>
#include <entry.h>
#include <zeos_interrupt.h>
Gate idt[IDT_ENTRIES];
Register idtR;
extern unsigned int zeos_ticks;
char char_map[] =
{
'\0','\0','1','2','3','4','5','6',
'7','8','9','0','\'','�','\0','\0',
'q','w','e','r','t','y','u','i',
'o','p','`','+','\0','\0','a','s',
'd','f','g','h','j','k','l','�',
'\0','�','\0','�','z','x','c','v',
'b','n','m',',','.','-','\0','*',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','7',
'8','9','-','4','5','6','+','1',
'2','3','0','\0','\0','\0','<','\0',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0'
};
void setInterruptHandler(int vector, void (*handler)(), int maxAccessibleFromPL)
{
/***********************************************************************/
/* THE INTERRUPTION GATE FLAGS: R1: pg. 5-11 */
/* *************************** */
/* flags = x xx 0x110 000 ????? */
/* | | | */
/* | | \ D = Size of gate: 1 = 32 bits; 0 = 16 bits */
/* | \ DPL = Num. higher PL from which it is accessible */
/* \ P = Segment Present bit */
/***********************************************************************/
Word flags = (Word)(maxAccessibleFromPL << 13);
flags |= 0x8E00; /* P = 1, D = 1, Type = 1110 (Interrupt Gate) */
idt[vector].lowOffset = lowWord((DWord)handler);
idt[vector].segmentSelector = __KERNEL_CS;
idt[vector].flags = flags;
idt[vector].highOffset = highWord((DWord)handler);
}
void setTrapHandler(int vector, void (*handler)(), int maxAccessibleFromPL)
{
/***********************************************************************/
/* THE TRAP GATE FLAGS: R1: pg. 5-11 */
/* ******************** */
/* flags = x xx 0x111 000 ????? */
/* | | | */
/* | | \ D = Size of gate: 1 = 32 bits; 0 = 16 bits */
/* | \ DPL = Num. higher PL from which it is accessible */
/* \ P = Segment Present bit */
/***********************************************************************/
Word flags = (Word)(maxAccessibleFromPL << 13);
//flags |= 0x8F00; /* P = 1, D = 1, Type = 1111 (Trap Gate) */
/* Changed to 0x8e00 to convert it to an 'interrupt gate' and so
the system calls will be thread-safe. */
flags |= 0x8E00; /* P = 1, D = 1, Type = 1110 (Interrupt Gate) */
idt[vector].lowOffset = lowWord((DWord)handler);
idt[vector].segmentSelector = __KERNEL_CS;
idt[vector].flags = flags;
idt[vector].highOffset = highWord((DWord)handler);
}
void setIdt()
{
/* Program interrups/exception service routines */
idtR.base = (DWord)idt;
idtR.limit = IDT_ENTRIES * sizeof(Gate) - 1;
set_handlers();
/* ADD INITIALIZATION CODE FOR INTERRUPT VECTOR */
setInterruptHandler(33, &keyboard_handler, 0);
setInterruptHandler(32, &clock_handler, 0);
setInterruptHandler(14, &segmentation_fault_handler, 3);
setTrapHandler(0x80, &sys_call_handler, 3);
set_idt_reg(&idtR);
}
void segmentation_fault_routine(int eip, int error_code)
{
char message[] = "There was a page fault with error code ";
for (int i = 0; message[i] != '\0'; ++i)
printccolor(message[i], CCRed);
// Store the EIP as a hex.
int index = 0;
char hex_value[32] = "";
while (error_code)
{
hex_value[index++] = "0123456789"[error_code % 10];
error_code /= 10;
}
// Write the error_code value to the screen.
while (index > 0)
printccolor(hex_value[--index], CCRed);
printccolor(' ', CCRed);
printccolor('a', CCRed);
printccolor('t', CCRed);
printccolor(':', CCRed);
printccolor(' ', CCRed);
printccolor('0', CCRed);
printccolor('x', CCRed);
index = 0;
while (eip)
{
hex_value[index++] = "0123456789ABCDEF"[eip % 16];
eip /= 16;
}
// Write the EIP value to the screen.
while (index > 0)
printccolor(hex_value[--index], CCRed);
while (1);
}
void keyboard_routine()
{
char character_in = inb(0x60);
// Make (key pressed) => 7-th bit == 0.
if (!(character_in & 0x80))
{
if (character_in == 0x1c)
printc('\n');
else
printc(char_map[character_in]);
}
}
void clock_routine()
{
zeos_show_clock();
zeos_ticks++;
update_sched_data_rr();
schedule();
}