annotate cos/kernel/handlers.c @ 29:7e3bdcb391dc

Added get_page function to mm
author windel
date Thu, 29 Dec 2011 19:34:01 +0100
parents dcce92b1efbc
children 0148f55bfe24
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;
26
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
60
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
61 // Fill all vectors with the default handler:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
62 for (i=0; i<256; i++) {
24
d8627924d40d Split up in more files and reboot command
windel
parents: 23
diff changeset
63 setIDTentry(i, INTDEF, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
64 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
65
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
66 // Now set other then default handler:
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
67 setIDTentry(0, INT0, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
68 setIDTentry(1, INT1, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
69 setIDTentry(2, INT2, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
70 setIDTentry(3, INT3, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
71 setIDTentry(4, INT4, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
72 setIDTentry(5, INT5, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
73 setIDTentry(6, INT6, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
74 setIDTentry(7, INT7, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
75 setIDTentry(8, INT8, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
76 setIDTentry(9, INT9, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
77 setIDTentry(10, INT10, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
78 setIDTentry(11, INT11, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
79 setIDTentry(12, INT12, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
80 setIDTentry(13, INT13, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
81 setIDTentry(14, INT14, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
82 setIDTentry(15, INT15, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
83 setIDTentry(16, INT16, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
84 setIDTentry(17, INT17, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
85 setIDTentry(18, INT18, 0x08, 0x8E);
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
86 setIDTentry(19, INT19, 0x08, 0x8E);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
87 /* reserved interrupts: */
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
88 // From int20 - int31
18
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
89 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
90 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
91 setIDTentry(34, INT34, 0x08, 0x8F);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
92
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
93 // Set the correct values in the IDT pointer:
21
66e9c332c845 Forgot crucial adjustment to idt pointer
windel
parents: 20
diff changeset
94 idtP.base = (uint64_t)idt;
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
95 idtP.limit = (sizeof(IDT_entry) * 256) - 1;
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
96 // call load IDT asm function:
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
97 loadIDT();
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
98
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
99 PICremap();
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
100 asm("sti");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
103 // PIC functions:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
104 void PICremap() {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
105 unsigned char maskmaster, maskslave, pic1, pic2;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
106 pic1 = 0x20; // remapping location master
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
107 pic2 = 0x28;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
108 maskmaster = inb(0x21); // master cmd=0x20, data=0x21
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
109 maskslave = inb(0xA1); // slave command=0xA0, data=0xA1
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
110
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
111 outb(0x20, 0x20); // end of init
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
112
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
113 outb(0x20, 0x11); // init + ICW1_ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
114 outb(0xA0, 0x11); // init + ICW1_ICW2
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(0x21, pic1); // ICW2, write offset
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
117 outb(0xA1, pic2); // ICW2
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
118
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
119 outb(0x21, 4); // ICW3, write a 4!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
120 outb(0xA1, 2); // ICW3, write a 2!
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
121
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
122 outb(0x21, 1); // ICW4, 8086 mode
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
123 outb(0xA1, 1); // ICW4
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
124
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
125 outb(0x21, maskmaster);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
126 outb(0xA1, maskslave);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
127 }
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 // Interrupt service routines:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
130
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
131 void INT0handler()
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 printf("INT0 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
134 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
137 void INT1handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
138 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
139 printf("INT1 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
140 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
143 void INT2handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
144 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
145 printf("INT2 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
146 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
149 void INT3handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
150 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
151 printf("INT3 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
152 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
155 void INT4handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
156 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
157 printf("INT4 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
158 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
161 void INT5handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
162 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
163 printf("INT5 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
164 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
167 void INT6handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
168 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
169 printf("INT6 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
170 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
173 void INT7handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
174 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
175 printf("INT7 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
176 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
179 void INT8handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
180 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
181 printf("INT8 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
182 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
185 void INT9handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
186 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
187 printf("INT9 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
188 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
191 void INT10handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
192 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
193 printf("INT10 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
194 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
197 void INT11handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
198 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
199 printf("INT11 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
200 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
203 void INT12handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
204 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
205 printf("INT12 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
206 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
209 void INT13handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
210 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
211 printf("INT13 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
212 panic("Unhandled exception!");
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
17
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
215 void* getUnusedPage()
f3e3e0e9c4bc First attempt IDT loader 64 bits. INT13 occurs
windel
parents: 14
diff changeset
216 {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
217 return 0;
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 mappage(uint64_t address) {
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
221 uint32_t pageDirIndex = address >> 22;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
222 uint32_t pageTableIndex = (address >> 12) & 0x3FF;
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 printf("Allocating page at %d, tableindex=%d\n", pageDirIndex, pageTableIndex);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
225 //uint32_t *pageTable = (uint32_t*)(pageDirectory[pageDirIndex] & 0xFFFFFC00);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
226 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
227
20
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
228 void INT14handler()
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
229 {
20
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
230 uint64_t faulting_address;
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
231
29
7e3bdcb391dc Added get_page function to mm
windel
parents: 26
diff changeset
232 printf("Segfault!\n");
7e3bdcb391dc Added get_page function to mm
windel
parents: 26
diff changeset
233
20
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
234 // Retrieve failed page from CR2:
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
235 asm volatile("mov %%cr2, %0" : "=r" (faulting_address));
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
236
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
237 printf("INT14 called! Page fault for address 0x%X!\n", faulting_address);
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
238 if ( (faulting_address & 0xF0000000) == 0xD0000000 ) {
b1fed2171e1a Now working with 2 MB pages
windel
parents: 18
diff changeset
239 mappage(faulting_address & 0xFFFFF000);
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
240 return;
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
241 }
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 panic("Unhandled exception!");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
246 void INT15handler()
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 printf("INT15 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
249 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
250 }
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 void INT16handler()
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 printf("INT16 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
255 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
256 }
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 void INT17handler()
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 printf("INT17 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
261 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
262 }
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 void INT18handler()
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 printf("INT18 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
267 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
268 }
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 void INT19handler()
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 printf("INT19 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
273 panic("Unhandled exception!");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
274 }
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
275
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
276 // remapped IRQ from master PIC:
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
277 void INT32handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
278 {
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
279 // System timer.
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
280 //printf("INT32 called!\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
281 // called very frequent, what is this?
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
282 timerDriverUpdate();
18
6129643f5c34 Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
windel
parents: 17
diff changeset
283 // Acknowledge int:
14
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
284 outb(0x20, 0x20); // EOI to master
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
287 void INT33handler()
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 //printf("INT33 called, key pressed????\n");
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
290 unsigned char scancode = inb(0x60);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
291 //printf("Scancode = 0x%x\n", scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
292 keyboardDriverUpdate(scancode);
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
293 outb(0x20, 0x20); // EOI to master
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
296 void INT34handler()
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 printf("INT34 called!\n");
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
301 void INTDEF_handler()
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
302 {
29
7e3bdcb391dc Added get_page function to mm
windel
parents: 26
diff changeset
303 panic("Default int handler called\n");
14
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
a58904747019 Added asm interrupt handler things, not yet working
windel
parents:
diff changeset
306