Extract 'struct bregs' out of biosvar.h; clean up header includes.
[seabios.git] / src / system.c
1 // 16bit system callbacks
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "util.h" // irq_restore
9 #include "biosvar.h" // BIOS_CONFIG_TABLE
10 #include "ioport.h" // inb
11 #include "memmap.h" // E820_RAM
12 #include "pic.h" // eoi_pic2
13 #include "bregs.h" // struct bregs
14
15 // Use PS2 System Control port A to set A20 enable
16 static inline u8
17 set_a20(u8 cond)
18 {
19     // get current setting first
20     u8 newval, oldval = inb(PORT_A20);
21     if (cond)
22         newval = oldval | 0x02;
23     else
24         newval = oldval & ~0x02;
25     outb(newval, PORT_A20);
26
27     return (newval & 0x02) != 0;
28 }
29
30 static void
31 handle_152400(struct bregs *regs)
32 {
33     set_a20(0);
34     set_code_success(regs);
35 }
36
37 static void
38 handle_152401(struct bregs *regs)
39 {
40     set_a20(1);
41     set_code_success(regs);
42 }
43
44 static void
45 handle_152402(struct bregs *regs)
46 {
47     regs->al = !!(inb(PORT_A20) & 0x20);
48     set_code_success(regs);
49 }
50
51 static void
52 handle_152403(struct bregs *regs)
53 {
54     regs->bx = 3;
55     set_code_success(regs);
56 }
57
58 static void
59 handle_1524XX(struct bregs *regs)
60 {
61     set_code_fail(regs, RET_EUNSUPPORTED);
62 }
63
64 static void
65 handle_1524(struct bregs *regs)
66 {
67     switch (regs->al) {
68     case 0x00: handle_152400(regs); break;
69     case 0x01: handle_152401(regs); break;
70     case 0x02: handle_152402(regs); break;
71     case 0x03: handle_152403(regs); break;
72     default:   handle_1524XX(regs); break;
73     }
74 }
75
76 // removable media eject
77 static void
78 handle_1552(struct bregs *regs)
79 {
80     set_code_success(regs);
81 }
82
83 static void
84 handle_1587(struct bregs *regs)
85 {
86     // +++ should probably have descriptor checks
87     // +++ should have exception handlers
88
89     u8 prev_a20_enable = set_a20(1); // enable A20 line
90
91     // 128K max of transfer on 386+ ???
92     // source == destination ???
93
94     // ES:SI points to descriptor table
95     // offset   use     initially  comments
96     // ==============================================
97     // 00..07   Unused  zeros      Null descriptor
98     // 08..0f   GDT     zeros      filled in by BIOS
99     // 10..17   source  ssssssss   source of data
100     // 18..1f   dest    dddddddd   destination of data
101     // 20..27   CS      zeros      filled in by BIOS
102     // 28..2f   SS      zeros      filled in by BIOS
103
104     //es:si
105     //eeee0
106     //0ssss
107     //-----
108
109 // check for access rights of source & dest here
110
111     // Initialize GDT descriptor
112     SET_SEG(ES, regs->es);
113     u16 si = regs->si;
114     u16 base15_00 = (regs->es << 4) + si;
115     u16 base23_16 = regs->es >> 12;
116     if (base15_00 < (u16)(regs->es<<4))
117         base23_16++;
118     SET_VAR(ES, *(u16*)(si+0x08+0), 47);       // limit 15:00 = 6 * 8bytes/descriptor
119     SET_VAR(ES, *(u16*)(si+0x08+2), base15_00);// base 15:00
120     SET_VAR(ES, *(u8 *)(si+0x08+4), base23_16);// base 23:16
121     SET_VAR(ES, *(u8 *)(si+0x08+5), 0x93);     // access
122     SET_VAR(ES, *(u16*)(si+0x08+6), 0x0000);   // base 31:24/reserved/limit 19:16
123
124     // Initialize CS descriptor
125     SET_VAR(ES, *(u16*)(si+0x20+0), 0xffff);// limit 15:00 = normal 64K limit
126     SET_VAR(ES, *(u16*)(si+0x20+2), 0x0000);// base 15:00
127     SET_VAR(ES, *(u8 *)(si+0x20+4), 0x000f);// base 23:16
128     SET_VAR(ES, *(u8 *)(si+0x20+5), 0x9b);  // access
129     SET_VAR(ES, *(u16*)(si+0x20+6), 0x0000);// base 31:24/reserved/limit 19:16
130
131     // Initialize SS descriptor
132     u16 ss = GET_SEG(SS);
133     base15_00 = ss << 4;
134     base23_16 = ss >> 12;
135     SET_VAR(ES, *(u16*)(si+0x28+0), 0xffff);   // limit 15:00 = normal 64K limit
136     SET_VAR(ES, *(u16*)(si+0x28+2), base15_00);// base 15:00
137     SET_VAR(ES, *(u8 *)(si+0x28+4), base23_16);// base 23:16
138     SET_VAR(ES, *(u8 *)(si+0x28+5), 0x93);     // access
139     SET_VAR(ES, *(u16*)(si+0x28+6), 0x0000);   // base 31:24/reserved/limit 19:16
140
141     u16 count = regs->cx;
142     asm volatile(
143         // Load new descriptor tables
144         "lgdtw %%es:0x8(%%si)\n"
145         "lidtw %%cs:pmode_IDT_info\n"
146
147         // set PE bit in CR0
148         "movl %%cr0, %%eax\n"
149         "orb $0x01, %%al\n"
150         "movl %%eax, %%cr0\n"
151
152         // far jump to flush CPU queue after transition to protected mode
153         "ljmpw $0x0020, $1f\n"
154         "1:\n"
155
156         // GDT points to valid descriptor table, now load DS, ES
157         "movw $0x10, %%ax\n" // 010 000 = 2nd descriptor in table, TI=GDT, RPL=00
158         "movw %%ax, %%ds\n"
159         "movw $0x18, %%ax\n" // 011 000 = 3rd descriptor in table, TI=GDT, RPL=00
160         "movw %%ax, %%es\n"
161
162         // move CX words from DS:SI to ES:DI
163         "xorw %%si, %%si\n"
164         "xorw %%di, %%di\n"
165         "rep movsw\n"
166
167         // reset PG bit in CR0 ???
168         "movl %%cr0, %%eax\n"
169         "andb $0xfe, %%al\n"
170         "movl %%eax, %%cr0\n"
171
172         // far jump to flush CPU queue after transition to real mode
173         "ljmpw $0xf000, $2f\n"
174         "2:\n"
175
176         // restore IDT to normal real-mode defaults
177         "lidt %%cs:rmode_IDT_info\n"
178
179         // Restore %ds (from %ss)
180         "movw %%ss, %%ax\n"
181         "movw %%ax, %%ds\n"
182         : "+c"(count), "+S"(si)
183         : : "eax", "di", "cc"); // XXX - also clobbers %es
184
185     set_a20(prev_a20_enable);
186
187     set_code_success(regs);
188 }
189
190 // Get the amount of extended memory (above 1M)
191 static void
192 handle_1588(struct bregs *regs)
193 {
194     u32 rs = GET_EBDA(ram_size);
195
196     // According to Ralf Brown's interrupt the limit should be 15M,
197     // but real machines mostly return max. 63M.
198     if (rs > 64*1024*1024)
199         regs->ax = 63 * 1024;
200     else
201         regs->ax = (rs - 1*1024*1024) / 1024;
202     set_success(regs);
203 }
204
205 // Device busy interrupt.  Called by Int 16h when no key available
206 static void
207 handle_1590(struct bregs *regs)
208 {
209 }
210
211 // Interrupt complete.  Called by Int 16h when key becomes available
212 static void
213 handle_1591(struct bregs *regs)
214 {
215 }
216
217 // keyboard intercept
218 static void
219 handle_154f(struct bregs *regs)
220 {
221     set_fail_silent(regs);
222 }
223
224 static void
225 handle_15c0(struct bregs *regs)
226 {
227     regs->es = SEG_BIOS;
228     regs->bx = (u32)&BIOS_CONFIG_TABLE;
229     set_code_success(regs);
230 }
231
232 static void
233 handle_15c1(struct bregs *regs)
234 {
235     regs->es = GET_BDA(ebda_seg);
236     set_success(regs);
237 }
238
239 static void
240 handle_15e801(struct bregs *regs)
241 {
242     // my real system sets ax and bx to 0
243     // this is confirmed by Ralph Brown list
244     // but syslinux v1.48 is known to behave
245     // strangely if ax is set to 0
246     // regs.u.r16.ax = 0;
247     // regs.u.r16.bx = 0;
248
249     u32 rs = GET_EBDA(ram_size);
250
251     // Get the amount of extended memory (above 1M)
252     if (rs > 16*1024*1024) {
253         // limit to 15M
254         regs->cx = 15*1024;
255         // Get the amount of extended memory above 16M in 64k blocks
256         regs->dx = (rs - 16*1024*1024) / (64*1024);
257     } else {
258         regs->cx = (rs - 1*1024*1024) / 1024;
259         regs->dx = 0;
260     }
261
262     // Set configured memory equal to extended memory
263     regs->ax = regs->cx;
264     regs->bx = regs->dx;
265
266     set_success(regs);
267 }
268
269 static void
270 handle_15e820(struct bregs *regs)
271 {
272     int count = GET_EBDA(e820_count);
273     if (regs->edx != 0x534D4150 || regs->bx >= count) {
274         set_code_fail(regs, RET_EUNSUPPORTED);
275         return;
276     }
277
278     struct e820entry *e = &((struct e820entry *)GET_EBDA(e820_loc))[regs->bx];
279     memcpy(MAKE_FARPTR(regs->es, regs->di), e, sizeof(*e));
280     if (regs->bx == count-1)
281         regs->ebx = 0;
282     else
283         regs->ebx++;
284     regs->eax = 0x534D4150;
285     regs->ecx = sizeof(*e);
286     set_success(regs);
287 }
288
289 static void
290 handle_15e8XX(struct bregs *regs)
291 {
292     set_code_fail(regs, RET_EUNSUPPORTED);
293 }
294
295 static void
296 handle_15e8(struct bregs *regs)
297 {
298     switch (regs->al) {
299     case 0x01: handle_15e801(regs); break;
300     case 0x20: handle_15e820(regs); break;
301     default:   handle_15e8XX(regs); break;
302     }
303 }
304
305 static void
306 handle_15XX(struct bregs *regs)
307 {
308     set_code_fail(regs, RET_EUNSUPPORTED);
309 }
310
311 // INT 15h System Services Entry Point
312 void VISIBLE16
313 handle_15(struct bregs *regs)
314 {
315     debug_enter(regs, DEBUG_HDL_15);
316     switch (regs->ah) {
317     case 0x24: handle_1524(regs); break;
318     case 0x4f: handle_154f(regs); break;
319     case 0x52: handle_1552(regs); break;
320     case 0x53: handle_1553(regs); break;
321     case 0x83: handle_1583(regs); break;
322     case 0x86: handle_1586(regs); break;
323     case 0x87: handle_1587(regs); break;
324     case 0x88: handle_1588(regs); break;
325     case 0x90: handle_1590(regs); break;
326     case 0x91: handle_1591(regs); break;
327     case 0xc0: handle_15c0(regs); break;
328     case 0xc1: handle_15c1(regs); break;
329     case 0xc2: handle_15c2(regs); break;
330     case 0xe8: handle_15e8(regs); break;
331     default:   handle_15XX(regs); break;
332     }
333 }
334
335 // INT 12h Memory Size Service Entry Point
336 void VISIBLE16
337 handle_12(struct bregs *regs)
338 {
339     debug_enter(regs, DEBUG_HDL_12);
340     regs->ax = GET_BDA(mem_size_kb);
341 }
342
343 // INT 11h Equipment List Service Entry Point
344 void VISIBLE16
345 handle_11(struct bregs *regs)
346 {
347     debug_enter(regs, DEBUG_HDL_11);
348     regs->ax = GET_BDA(equipment_list_flags);
349 }
350
351 // INT 05h Print Screen Service Entry Point
352 void VISIBLE16
353 handle_05(struct bregs *regs)
354 {
355     debug_enter(regs, DEBUG_HDL_05);
356 }
357
358 // INT 10h Video Support Service Entry Point
359 void VISIBLE16
360 handle_10(struct bregs *regs)
361 {
362     debug_enter(regs, DEBUG_HDL_10);
363     // dont do anything, since the VGA BIOS handles int10h requests
364 }
365
366 void VISIBLE16
367 handle_nmi()
368 {
369     debug_isr(DEBUG_ISR_nmi);
370     BX_PANIC("NMI Handler called\n");
371 }
372
373 void
374 mathcp_setup()
375 {
376     dprintf(3, "math cp init\n");
377     // 80x87 coprocessor installed
378     SETBITS_BDA(equipment_list_flags, 0x02);
379     // Enable IRQ13 (handle_75)
380     unmask_pic2(PIC2_IRQ13);
381 }
382
383 // INT 75 - IRQ13 - MATH COPROCESSOR EXCEPTION
384 void VISIBLE16
385 handle_75()
386 {
387     debug_isr(DEBUG_ISR_75);
388
389     // clear irq13
390     outb(0, PORT_MATH_CLEAR);
391     // clear interrupt
392     eoi_pic2();
393     // legacy nmi call
394     struct bregs br;
395     memset(&br, 0, sizeof(br));
396     call16_int(0x02, &br);
397 }