annotate cos/kernel/handlers.c @ 17:f3e3e0e9c4bc

First attempt IDT loader 64 bits. INT13 occurs
author windel
date Sat, 19 Nov 2011 20:01:28 +0100
parents a58904747019
children 6129643f5c34
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 void panic(char *msg) {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
4 printf("Kernel panic: ");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
5 printf(msg);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
6 halt();
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
7 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
8
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
9 // Assembler wrapper prototypes:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
10 void INTDEF(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
11 void INT0(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
12 void INT1(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
13 void INT2(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
14 void INT3(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
15 void INT4(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
16 void INT5(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
17 void INT6(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
18 void INT7(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
19 void INT8(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
20 void INT9(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
21 void INT10(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
22 void INT11(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
23 void INT12(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
24 void INT13(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
25 void INT14(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
26 void INT15(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
27 void INT16(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
28 void INT17(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
29 void INT18(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
30 void INT19(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
31 // Remapped handlers:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
32 void INT32(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
33 void INT33(void);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
34 void INT34(void);
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 // THE interrupt descriptor table:
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
37 static IDT_entry idt[256];
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
38 volatile idtPointer idtP;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
39
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
40 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
41 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
42 // Fill one entry with IDT info:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
43 uint64_t offset;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
44
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
45 // Typecast the function pointer to a number:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
46 offset = (uint64_t)handler;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
47
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
48 // Set offset:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
49 idt[num].baseLow = offset & 0xFFFF;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
50 idt[num].baseMid = (offset >> 16) & 0xFFFF;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
51 idt[num].baseHigh = (offset >> 32) & 0xFFFFFFFF;
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 flags and selector:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
54 idt[num].selector = selector;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
55 idt[num].flags = flags;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
56
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
57 // Set reserved fields:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
58 idt[num].reserved1 = 0;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
59 idt[num].reserved2 = 0;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
60 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
61
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
62 void setupIDT(void) {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
63 int i;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
64 // Fill all vectors with the default handler:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
65 for (i=0; i<256; i++) {
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
66 setIDTentry(i, &INTDEF, 0x08, 0x8E);
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
69 // Now set other then default handler:
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
70 setIDTentry(0, INT0, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
71 setIDTentry(1, INT1, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
72 setIDTentry(2, INT2, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
73 setIDTentry(3, INT3, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
74 setIDTentry(4, INT4, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
75 setIDTentry(5, INT5, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
76 setIDTentry(6, INT6, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
77 setIDTentry(7, INT7, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
78 setIDTentry(8, INT8, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
79 setIDTentry(9, INT9, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
80 setIDTentry(10, INT10, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
81 setIDTentry(11, INT11, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
82 setIDTentry(12, INT12, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
83 setIDTentry(13, INT13, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
84 setIDTentry(14, INT14, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
85 setIDTentry(15, INT15, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
86 setIDTentry(16, INT16, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
87 setIDTentry(17, INT17, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
88 setIDTentry(18, INT18, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
89 setIDTentry(19, INT19, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
90 /* reserved interrupts: */
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
91 // From int20 - int31
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
92 setIDTentry(32, INT32, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
93 setIDTentry(33, INT33, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
94 setIDTentry(34, INT34, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
95
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
96 // Set the correct values in the IDT pointer:
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
97 idtP.base = (uint64_t)&idt;
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
98 idtP.limit = (sizeof(IDT_entry) * 256) - 1;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
99 // call load IDT asm function:
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();
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
103 printf("enable ints\n");
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
104 asm("sti");
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
105 printf("Done!\n");
14
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
108 // PIC functions:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
109 void PICremap() {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
110 unsigned char maskmaster, maskslave, pic1, pic2;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
111 pic1 = 0x20; // remapping location master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
112 pic2 = 0x28;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
113 maskmaster = inb(0x21); // master cmd=0x20, data=0x21
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
114 maskslave = inb(0xA1); // slave command=0xA0, data=0xA1
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
115
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
116 outb(0x20, 0x20); // end of init
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
117
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
118 outb(0x20, 0x11); // init + ICW1_ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
119 outb(0xA0, 0x11); // init + ICW1_ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
120
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
121 outb(0x21, pic1); // ICW2, write offset
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
122 outb(0xA1, pic2); // ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
123
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
124 outb(0x21, 4); // ICW3, write a 4!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
125 outb(0xA1, 2); // ICW3, write a 2!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
126
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
127 outb(0x21, 1); // ICW4, 8086 mode
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
128 outb(0xA1, 1); // ICW4
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
129
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
130 outb(0x21, maskmaster);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
131 outb(0xA1, maskslave);
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
134 // Interrupt service routines:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
135
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
136 void INT0handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
137 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
138 printf("INT0 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
139 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
142 void INT1handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
143 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
144 printf("INT1 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
145 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
148 void INT2handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
149 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
150 printf("INT2 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
151 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
154 void INT3handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
155 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
156 printf("INT3 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
157 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
160 void INT4handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
161 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
162 printf("INT4 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
163 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
166 void INT5handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
167 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
168 printf("INT5 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
169 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
172 void INT6handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
173 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
174 printf("INT6 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
175 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
178 void INT7handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
179 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
180 printf("INT7 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
181 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
184 void INT8handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
185 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
186 printf("INT8 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
187 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
190 void INT9handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
191 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
192 printf("INT9 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
193 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
196 void INT10handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
197 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
198 printf("INT10 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
199 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
202 void INT11handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
203 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
204 printf("INT11 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
205 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
208 void INT12handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
209 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
210 printf("INT12 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
211 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
214 void INT13handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
215 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
216 printf("INT13 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
217 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
218 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
219
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
220 void* getUnusedPage()
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
221 {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
222 return 0;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
223 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
224
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
225 void mappage(uint64_t address) {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
226 uint32_t pageDirIndex = address >> 22;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
227 uint32_t pageTableIndex = (address >> 12) & 0x3FF;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
228
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
229 printf("Allocating page at %d, tableindex=%d\n", pageDirIndex, pageTableIndex);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
230 //uint32_t *pageTable = (uint32_t*)(pageDirectory[pageDirIndex] & 0xFFFFFC00);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
231 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
232
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
233 void INT14handler(unsigned int address)
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
234 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
235 printf("INT14 called! Page fault for address 0x%x!\n", address);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
236 if ( (address & 0xF0000000) == 0xD0000000 ) {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
237 mappage(address & 0xFFFFF000);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
238 return;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
239 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
240
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
241 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
242 }
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 void INT15handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
245 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
246 printf("INT15 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
247 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
248 }
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 void INT16handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
251 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
252 printf("INT16 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
253 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
254 }
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 void INT17handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
257 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
258 printf("INT17 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
259 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
260 }
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 void INT18handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
263 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
264 printf("INT18 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
265 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
266 }
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 void INT19handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
269 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
270 printf("INT19 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
271 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
272 }
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 // remapped IRQ from master PIC:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
275 void INT32handler()
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 // System timer.
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
278 //printf("INT32 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
279 // called very frequent, what is this?
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
280 timerDriverUpdate();
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
281 outb(0x20, 0x20); // EOI to master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
282 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
283
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
284 void INT33handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
285 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
286 //printf("INT33 called, key pressed????\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
287 unsigned char scancode = inb(0x60);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
288 //printf("Scancode = 0x%x\n", scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
289 keyboardDriverUpdate(scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
290 outb(0x20, 0x20); // EOI to master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
291 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
292
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
293 void INT34handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
294 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
295 printf("INT34 called!\n");
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 INTDEF_handler()
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("Default int handler 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