Simplify e820 map generation.
[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" // CONFIG_BIOS_TABLE
10 #include "ioport.h" // inb
11 #include "cmos.h" // inb_cmos
12
13 #define E820_RAM          1
14 #define E820_RESERVED     2
15 #define E820_ACPI         3
16 #define E820_NVS          4
17 #define E820_UNUSABLE     5
18
19 // Use PS2 System Control port A to set A20 enable
20 static inline u8
21 set_a20(u8 cond)
22 {
23     // get current setting first
24     u8 newval, oldval = inb(PORT_A20);
25     if (cond)
26         newval = oldval | 0x02;
27     else
28         newval = oldval & ~0x02;
29     outb(newval, PORT_A20);
30
31     return (newval & 0x02) != 0;
32 }
33
34 static void
35 handle_152400(struct bregs *regs)
36 {
37     set_a20(0);
38     set_code_success(regs);
39 }
40
41 static void
42 handle_152401(struct bregs *regs)
43 {
44     set_a20(1);
45     set_code_success(regs);
46 }
47
48 static void
49 handle_152402(struct bregs *regs)
50 {
51     regs->al = !!(inb(PORT_A20) & 0x20);
52     set_code_success(regs);
53 }
54
55 static void
56 handle_152403(struct bregs *regs)
57 {
58     regs->bx = 3;
59     set_code_success(regs);
60 }
61
62 static void
63 handle_1524XX(struct bregs *regs)
64 {
65     set_code_fail(regs, RET_EUNSUPPORTED);
66 }
67
68 static void
69 handle_1524(struct bregs *regs)
70 {
71     switch (regs->al) {
72     case 0x00: handle_152400(regs); break;
73     case 0x01: handle_152401(regs); break;
74     case 0x02: handle_152402(regs); break;
75     case 0x03: handle_152403(regs); break;
76     default:   handle_1524XX(regs); break;
77     }
78 }
79
80 // removable media eject
81 static void
82 handle_1552(struct bregs *regs)
83 {
84     set_code_success(regs);
85 }
86
87 // Wait for CX:DX microseconds. currently using the
88 // refresh request port 0x61 bit4, toggling every 15usec
89 static void
90 handle_1586(struct bregs *regs)
91 {
92     irq_enable();
93     usleep((regs->cx << 16) | regs->dx);
94     irq_disable();
95 }
96
97 static void
98 handle_1587(struct bregs *regs)
99 {
100     // +++ should probably have descriptor checks
101     // +++ should have exception handlers
102
103     u8 prev_a20_enable = set_a20(1); // enable A20 line
104
105     // 128K max of transfer on 386+ ???
106     // source == destination ???
107
108     // ES:SI points to descriptor table
109     // offset   use     initially  comments
110     // ==============================================
111     // 00..07   Unused  zeros      Null descriptor
112     // 08..0f   GDT     zeros      filled in by BIOS
113     // 10..17   source  ssssssss   source of data
114     // 18..1f   dest    dddddddd   destination of data
115     // 20..27   CS      zeros      filled in by BIOS
116     // 28..2f   SS      zeros      filled in by BIOS
117
118     //es:si
119     //eeee0
120     //0ssss
121     //-----
122
123 // check for access rights of source & dest here
124
125     // Initialize GDT descriptor
126     u16 si = regs->si;
127     u16 base15_00 = (regs->es << 4) + si;
128     u16 base23_16 = regs->es >> 12;
129     if (base15_00 < (regs->es<<4))
130         base23_16++;
131     SET_VAR(ES, *(u16*)(si+0x08+0), 47);       // limit 15:00 = 6 * 8bytes/descriptor
132     SET_VAR(ES, *(u16*)(si+0x08+2), base15_00);// base 15:00
133     SET_VAR(ES, *(u8 *)(si+0x08+4), base23_16);// base 23:16
134     SET_VAR(ES, *(u8 *)(si+0x08+5), 0x93);     // access
135     SET_VAR(ES, *(u16*)(si+0x08+6), 0x0000);   // base 31:24/reserved/limit 19:16
136
137     // Initialize CS descriptor
138     SET_VAR(ES, *(u16*)(si+0x20+0), 0xffff);// limit 15:00 = normal 64K limit
139     SET_VAR(ES, *(u16*)(si+0x20+2), 0x0000);// base 15:00
140     SET_VAR(ES, *(u8 *)(si+0x20+4), 0x000f);// base 23:16
141     SET_VAR(ES, *(u8 *)(si+0x20+5), 0x9b);  // access
142     SET_VAR(ES, *(u16*)(si+0x20+6), 0x0000);// base 31:24/reserved/limit 19:16
143
144     // Initialize SS descriptor
145     u16 ss = GET_SEG(SS);
146     base15_00 = ss << 4;
147     base23_16 = ss >> 12;
148     SET_VAR(ES, *(u16*)(si+0x28+0), 0xffff);   // limit 15:00 = normal 64K limit
149     SET_VAR(ES, *(u16*)(si+0x28+2), base15_00);// base 15:00
150     SET_VAR(ES, *(u8 *)(si+0x28+4), base23_16);// base 23:16
151     SET_VAR(ES, *(u8 *)(si+0x28+5), 0x93);     // access
152     SET_VAR(ES, *(u16*)(si+0x28+6), 0x0000);   // base 31:24/reserved/limit 19:16
153
154     asm volatile(
155         // Load new descriptor tables
156         "lgdt %%es:(%1)\n"
157         "lidt %%cs:pmode_IDT_info\n"
158
159         // set PE bit in CR0
160         "movl %%cr0, %%eax\n"
161         "orb $0x01, %%al\n"
162         "movl %%eax, %%cr0\n"
163
164         // far jump to flush CPU queue after transition to protected mode
165         "ljmpw $0x0020, $1f\n"
166         "1:\n"
167
168         // GDT points to valid descriptor table, now load DS, ES
169         "movw $0x10, %%ax\n" // 010 000 = 2nd descriptor in table, TI=GDT, RPL=00
170         "movw %%ax, %%ds\n"
171         "movw $0x18, %%ax\n" // 011 000 = 3rd descriptor in table, TI=GDT, RPL=00
172         "movw %%ax, %%es\n"
173
174         // move CX words from DS:SI to ES:DI
175         "xorw %%si, %%si\n"
176         "xorw %%di, %%di\n"
177         "rep movsw\n"
178
179         // reset PG bit in CR0 ???
180         "movl %%cr0, %%eax\n"
181         "andb $0xfe, %%al\n"
182         "movl %%eax, %%cr0\n"
183
184         // far jump to flush CPU queue after transition to real mode
185         "ljmpw $0xf000, $2f\n"
186         "2:\n"
187
188         // restore IDT to normal real-mode defaults
189         "lidt %%cs:rmode_IDT_info\n"
190
191         // Restore %ds (from %ss)
192         "movw %%ss, %%ax\n"
193         "movw %%ax, %%ds\n"
194         : : "c" (regs->cx), "r" (si + 8)
195         : "eax", "di", "si"); // XXX - also clobbers %es
196
197     set_a20(prev_a20_enable);
198
199     set_code_success(regs);
200 }
201
202 // Get the amount of extended memory (above 1M)
203 static void
204 handle_1588(struct bregs *regs)
205 {
206     regs->al = inb_cmos(CMOS_MEM_EXTMEM_LOW);
207     regs->ah = inb_cmos(CMOS_MEM_EXTMEM_HIGH);
208     // According to Ralf Brown's interrupt the limit should be 15M,
209     // but real machines mostly return max. 63M.
210     if (regs->ax > 0xffc0)
211         regs->ax = 0xffc0;
212     set_success(regs);
213 }
214
215 // Device busy interrupt.  Called by Int 16h when no key available
216 static void
217 handle_1590(struct bregs *regs)
218 {
219 }
220
221 // Interrupt complete.  Called by Int 16h when key becomes available
222 static void
223 handle_1591(struct bregs *regs)
224 {
225 }
226
227 // keyboard intercept
228 static void
229 handle_154f(struct bregs *regs)
230 {
231     // set_fail(regs);  -- don't report this failure.
232     set_cf(regs, 1);
233 }
234
235 static void
236 handle_15c0(struct bregs *regs)
237 {
238     regs->es = SEG_BIOS;
239     regs->bx = (u16)&BIOS_CONFIG_TABLE;
240     set_code_success(regs);
241 }
242
243 static void
244 handle_15c1(struct bregs *regs)
245 {
246     regs->es = GET_BDA(ebda_seg);
247     set_success(regs);
248 }
249
250 static void
251 handle_15e801(struct bregs *regs)
252 {
253     // my real system sets ax and bx to 0
254     // this is confirmed by Ralph Brown list
255     // but syslinux v1.48 is known to behave
256     // strangely if ax is set to 0
257     // regs.u.r16.ax = 0;
258     // regs.u.r16.bx = 0;
259
260     // Get the amount of extended memory (above 1M)
261     regs->cl = inb_cmos(CMOS_MEM_EXTMEM_LOW);
262     regs->ch = inb_cmos(CMOS_MEM_EXTMEM_HIGH);
263
264     // limit to 15M
265     if (regs->cx > 0x3c00)
266         regs->cx = 0x3c00;
267
268     // Get the amount of extended memory above 16M in 64k blocs
269     regs->dl = inb_cmos(CMOS_MEM_EXTMEM2_LOW);
270     regs->dh = inb_cmos(CMOS_MEM_EXTMEM2_HIGH);
271
272     // Set configured memory equal to extended memory
273     regs->ax = regs->cx;
274     regs->bx = regs->dx;
275
276     set_success(regs);
277 }
278
279 #define ACPI_DATA_SIZE    0x00010000L
280
281 static void
282 set_e820_range(struct bregs *regs, u32 start, u32 end, u16 type, int last)
283 {
284     SET_FARVAR(regs->es, *(u16*)(regs->di+0), start);
285     SET_FARVAR(regs->es, *(u16*)(regs->di+2), start >> 16);
286     SET_FARVAR(regs->es, *(u16*)(regs->di+4), 0x00);
287     SET_FARVAR(regs->es, *(u16*)(regs->di+6), 0x00);
288
289     end -= start;
290     SET_FARVAR(regs->es, *(u16*)(regs->di+8), end);
291     SET_FARVAR(regs->es, *(u16*)(regs->di+10), end >> 16);
292     SET_FARVAR(regs->es, *(u16*)(regs->di+12), 0x0000);
293     SET_FARVAR(regs->es, *(u16*)(regs->di+14), 0x0000);
294
295     SET_FARVAR(regs->es, *(u16*)(regs->di+16), type);
296     SET_FARVAR(regs->es, *(u16*)(regs->di+18), 0x0);
297
298     if (last)
299         regs->ebx = 0;
300     else
301         regs->ebx++;
302     regs->eax = 0x534D4150;
303     regs->ecx = 0x14;
304     set_success(regs);
305 }
306
307 // XXX - should create e820 memory map in post and just copy it here.
308 static void
309 handle_15e820(struct bregs *regs)
310 {
311     if (regs->edx != 0x534D4150) {
312         set_code_fail(regs, RET_EUNSUPPORTED);
313         return;
314     }
315
316     u32 extended_memory_size = inb_cmos(CMOS_MEM_EXTMEM2_HIGH);
317     extended_memory_size <<= 8;
318     extended_memory_size |= inb_cmos(CMOS_MEM_EXTMEM2_LOW);
319     extended_memory_size *= 64;
320     // greater than EFF00000???
321     if (extended_memory_size > 0x3bc000)
322         // everything after this is reserved memory until we get to 0x100000000
323         extended_memory_size = 0x3bc000;
324     extended_memory_size *= 1024;
325     extended_memory_size += (16L * 1024 * 1024);
326
327     if (extended_memory_size <= (16L * 1024 * 1024)) {
328         extended_memory_size = inb_cmos(CMOS_MEM_EXTMEM_HIGH);
329         extended_memory_size <<= 8;
330         extended_memory_size |= inb_cmos(CMOS_MEM_EXTMEM_LOW);
331         extended_memory_size *= 1024;
332     }
333
334     switch (regs->bx) {
335     case 0:
336         set_e820_range(regs, 0x0000000L, 0x0009fc00L, E820_RAM, 0);
337         break;
338     case 1:
339         set_e820_range(regs, 0x0009fc00L, 0x000a0000L, E820_RESERVED, 0);
340         break;
341     case 2:
342         set_e820_range(regs, 0x000e8000L, 0x00100000L, E820_RESERVED, 0);
343         break;
344     case 3:
345         set_e820_range(regs, 0x00100000L,
346                        extended_memory_size - ACPI_DATA_SIZE, E820_RAM, 0);
347         break;
348     case 4:
349         set_e820_range(regs,
350                        extended_memory_size - ACPI_DATA_SIZE,
351                        extended_memory_size, E820_ACPI, 0);
352         break;
353     case 5:
354         /* 256KB BIOS area at the end of 4 GB */
355         set_e820_range(regs, 0xfffc0000L, 0x00000000L, E820_RESERVED, 1);
356         break;
357     default:  /* AX=E820, DX=534D4150, BX unrecognized */
358         set_code_fail(regs, RET_EUNSUPPORTED);
359     }
360 }
361
362 static void
363 handle_15e8XX(struct bregs *regs)
364 {
365     set_code_fail(regs, RET_EUNSUPPORTED);
366 }
367
368 static void
369 handle_15e8(struct bregs *regs)
370 {
371     switch (regs->al) {
372     case 0x01: handle_15e801(regs); break;
373     case 0x20: handle_15e820(regs); break;
374     default:   handle_15e8XX(regs); break;
375     }
376 }
377
378 static void
379 handle_15XX(struct bregs *regs)
380 {
381     set_code_fail(regs, RET_EUNSUPPORTED);
382 }
383
384 // INT 15h System Services Entry Point
385 void VISIBLE16
386 handle_15(struct bregs *regs)
387 {
388     //debug_enter(regs);
389     switch (regs->ah) {
390     case 0x24: handle_1524(regs); break;
391     case 0x4f: handle_154f(regs); break;
392     case 0x52: handle_1552(regs); break;
393     case 0x53: handle_1553(regs); break;
394     case 0x83: handle_1583(regs); break;
395     case 0x86: handle_1586(regs); break;
396     case 0x87: handle_1587(regs); break;
397     case 0x88: handle_1588(regs); break;
398     case 0x90: handle_1590(regs); break;
399     case 0x91: handle_1591(regs); break;
400     case 0xc0: handle_15c0(regs); break;
401     case 0xc1: handle_15c1(regs); break;
402     case 0xc2: handle_15c2(regs); break;
403     case 0xe8: handle_15e8(regs); break;
404     default:   handle_15XX(regs); break;
405     }
406 }
407
408 // INT 12h Memory Size Service Entry Point
409 void VISIBLE16
410 handle_12(struct bregs *regs)
411 {
412     debug_enter(regs);
413     regs->ax = GET_BDA(mem_size_kb);
414 }
415
416 // INT 11h Equipment List Service Entry Point
417 void VISIBLE16
418 handle_11(struct bregs *regs)
419 {
420     debug_enter(regs);
421     regs->ax = GET_BDA(equipment_list_flags);
422 }
423
424 // INT 05h Print Screen Service Entry Point
425 void VISIBLE16
426 handle_05(struct bregs *regs)
427 {
428     debug_enter(regs);
429 }
430
431 // INT 10h Video Support Service Entry Point
432 void VISIBLE16
433 handle_10(struct bregs *regs)
434 {
435     debug_enter(regs);
436     // dont do anything, since the VGA BIOS handles int10h requests
437 }
438
439 void VISIBLE16
440 handle_nmi(struct bregs *regs)
441 {
442     debug_isr(regs);
443     // XXX
444 }
445
446 // INT 75 - IRQ13 - MATH COPROCESSOR EXCEPTION
447 void VISIBLE16
448 handle_75(struct bregs *regs)
449 {
450     debug_isr(regs);
451
452     // clear irq13
453     outb(0, PORT_MATH_CLEAR);
454     // clear interrupt
455     eoi_both_pics();
456     // legacy nmi call
457     struct bregs br;
458     memset(&br, 0, sizeof(br));
459     call16_int(0x02, &br);
460 }