annotate cos/kernel/handlers.c @ 24:d8627924d40d

Split up in more files and reboot command
author windel
date Fri, 02 Dec 2011 14:00:02 +0100
parents 5dd47d6eebac
children dcce92b1efbc
rev   line source
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
1 #include "kernel.h"
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
3 // Assembler wrapper prototypes:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
4 void INTDEF(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
5 void INT0(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
6 void INT1(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
7 void INT2(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
8 void INT3(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
9 void INT4(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
10 void INT5(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
11 void INT6(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
12 void INT7(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
13 void INT8(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
14 void INT9(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
15 void INT10(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
16 void INT11(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
17 void INT12(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
18 void INT13(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
19 void INT14(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
20 void INT15(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
21 void INT16(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
22 void INT17(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
23 void INT18(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
24 void INT19(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
25 // Remapped handlers:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
26 void INT32(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
27 void INT33(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
28 void INT34(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
29
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
30 // THE interrupt descriptor table:
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
31 IDT_entry *idt = (IDT_entry*)0x5000;
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
32 volatile idtPointer idtP;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
33
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
34 void setIDTentry(int num, void (*handler)(), uint16_t selector, uint8_t flags)
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
35 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
36 // Fill one entry with IDT info:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
37 uint64_t offset;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
38
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
39 // Typecast the function pointer to a number:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
40 offset = (uint64_t)handler;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
41
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
42 //panic("Almost setting an IDT entry");
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
43
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
44 // Set offset:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
45 idt[num].baseLow = offset & 0xFFFF;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
46 idt[num].baseMid = (offset >> 16) & 0xFFFF;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
47 idt[num].baseHigh = (offset >> 32) & 0xFFFFFFFF;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
48
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
49 // Set flags and selector:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
50 idt[num].selector = selector;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
51 idt[num].flags = flags;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
52
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
53 // Set reserved fields:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
54 idt[num].reserved1 = 0;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
55 idt[num].reserved2 = 0;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
56 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
57
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
58 void setupIDT(void) {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
59 int i;
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
60 //panic("Just before filling IDT");
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
61 // After this line a crash occurs!
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
62 // Fill all vectors with the default handler:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
63 for (i=0; i<256; i++) {
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
64 setIDTentry(i, INTDEF, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
65 }
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
66 //panic("Just after setting defhandlers in IDT");
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
67
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
68 // Now set other then default handler:
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
69 setIDTentry(0, INT0, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
70 setIDTentry(1, INT1, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
71 setIDTentry(2, INT2, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
72 setIDTentry(3, INT3, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
73 setIDTentry(4, INT4, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
74 setIDTentry(5, INT5, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
75 setIDTentry(6, INT6, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
76 setIDTentry(7, INT7, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
77 setIDTentry(8, INT8, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
78 setIDTentry(9, INT9, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
79 setIDTentry(10, INT10, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
80 setIDTentry(11, INT11, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
81 setIDTentry(12, INT12, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
82 setIDTentry(13, INT13, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
83 setIDTentry(14, INT14, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
84 setIDTentry(15, INT15, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
85 setIDTentry(16, INT16, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
86 setIDTentry(17, INT17, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
87 setIDTentry(18, INT18, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
88 setIDTentry(19, INT19, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
89 /* reserved interrupts: */
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
90 // From int20 - int31
18
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
91 setIDTentry(32, INT32, 0x08, 0x8F);
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
92 setIDTentry(33, INT33, 0x08, 0x8F);
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
93 setIDTentry(34, INT34, 0x08, 0x8F);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
94
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
95 // Set the correct values in the IDT pointer:
21
66e9c332c845 Forgot crucial adjustment to idt pointer
windel
parents: 20
diff changeset
96 idtP.base = (uint64_t)idt;
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
97 idtP.limit = (sizeof(IDT_entry) * 256) - 1;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
98 // call load IDT asm function:
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
99 //panic("Just before LIDT");
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
100 loadIDT();
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
101
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
102 PICremap();
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
103 //panic("Just before sti");
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
104 asm("sti");
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
105 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
106
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
107 // PIC functions:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
108 void PICremap() {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
109 unsigned char maskmaster, maskslave, pic1, pic2;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
110 pic1 = 0x20; // remapping location master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
111 pic2 = 0x28;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
112 maskmaster = inb(0x21); // master cmd=0x20, data=0x21
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
113 maskslave = inb(0xA1); // slave command=0xA0, data=0xA1
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
114
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
115 outb(0x20, 0x20); // end of init
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
116
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
117 outb(0x20, 0x11); // init + ICW1_ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
118 outb(0xA0, 0x11); // init + ICW1_ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
119
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
120 outb(0x21, pic1); // ICW2, write offset
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
121 outb(0xA1, pic2); // ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
122
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
123 outb(0x21, 4); // ICW3, write a 4!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
124 outb(0xA1, 2); // ICW3, write a 2!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
125
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
126 outb(0x21, 1); // ICW4, 8086 mode
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
127 outb(0xA1, 1); // ICW4
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
128
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
129 outb(0x21, maskmaster);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
130 outb(0xA1, maskslave);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
131 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
132
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
133 // Interrupt service routines:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
134
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
135 void INT0handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
136 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
137 printf("INT0 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
138 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
139 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
140
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
141 void INT1handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
142 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
143 printf("INT1 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
144 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
145 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
146
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
147 void INT2handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
148 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
149 printf("INT2 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
150 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
151 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
152
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
153 void INT3handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
154 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
155 printf("INT3 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
156 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
157 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
158
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
159 void INT4handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
160 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
161 printf("INT4 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
162 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
163 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
164
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
165 void INT5handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
166 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
167 printf("INT5 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
168 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
169 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
170
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
171 void INT6handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
172 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
173 printf("INT6 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
174 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
175 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
176
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
177 void INT7handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
178 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
179 printf("INT7 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
180 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
181 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
182
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
183 void INT8handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
184 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
185 printf("INT8 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
186 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
187 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
188
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
189 void INT9handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
190 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
191 printf("INT9 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
192 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
193 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
194
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
195 void INT10handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
196 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
197 printf("INT10 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
198 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
199 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
200
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
201 void INT11handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
202 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
203 printf("INT11 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
204 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
205 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
206
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
207 void INT12handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
208 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
209 printf("INT12 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
210 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
211 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
212
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
213 void INT13handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
214 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
215 printf("INT13 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
216 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
217 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
218
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
219 void* getUnusedPage()
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
220 {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
221 return 0;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
222 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
223
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
224 void mappage(uint64_t address) {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
225 uint32_t pageDirIndex = address >> 22;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
226 uint32_t pageTableIndex = (address >> 12) & 0x3FF;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
227
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
228 printf("Allocating page at %d, tableindex=%d\n", pageDirIndex, pageTableIndex);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
229 //uint32_t *pageTable = (uint32_t*)(pageDirectory[pageDirIndex] & 0xFFFFFC00);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
230 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
231
20
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
232 void INT14handler()
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
233 {
20
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
234 uint64_t faulting_address;
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
235
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
236 // Retrieve failed page from CR2:
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
237 asm volatile("mov %%cr2, %0" : "=r" (faulting_address));
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
238
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
239 printf("INT14 called! Page fault for address 0x%X!\n", faulting_address);
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
240 if ( (faulting_address & 0xF0000000) == 0xD0000000 ) {
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
241 mappage(faulting_address & 0xFFFFF000);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
242 return;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
243 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
244
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
245 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
246 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
247
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
248 void INT15handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
249 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
250 printf("INT15 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
251 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
252 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
253
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
254 void INT16handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
255 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
256 printf("INT16 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
257 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
258 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
259
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
260 void INT17handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
261 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
262 printf("INT17 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
263 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
264 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
265
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
266 void INT18handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
267 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
268 printf("INT18 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
269 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
270 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
271
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
272 void INT19handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
273 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
274 printf("INT19 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
275 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
276 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
277
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
278 // remapped IRQ from master PIC:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
279 void INT32handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
280 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
281 // System timer.
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
282 //printf("INT32 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
283 // called very frequent, what is this?
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
284 timerDriverUpdate();
18
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
285 // Acknowledge int:
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
286 outb(0x20, 0x20); // EOI to master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
287 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
288
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
289 void INT33handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
290 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
291 //printf("INT33 called, key pressed????\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
292 unsigned char scancode = inb(0x60);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
293 //printf("Scancode = 0x%x\n", scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
294 keyboardDriverUpdate(scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
295 outb(0x20, 0x20); // EOI to master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
296 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
297
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
298 void INT34handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
299 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
300 printf("INT34 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
301 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
302
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
303 void INTDEF_handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
304 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
305 printf("Default int handler called\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
306 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
307
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
308