Unify memory size detection.
[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 "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     SET_SEG(ES, regs->es);
127     u16 si = regs->si;
128     u16 base15_00 = (regs->es << 4) + si;
129     u16 base23_16 = regs->es >> 12;
130     if (base15_00 < (u16)(regs->es<<4))
131         base23_16++;
132     SET_VAR(ES, *(u16*)(si+0x08+0), 47);       // limit 15:00 = 6 * 8bytes/descriptor
133     SET_VAR(ES, *(u16*)(si+0x08+2), base15_00);// base 15:00
134     SET_VAR(ES, *(u8 *)(si+0x08+4), base23_16);// base 23:16
135     SET_VAR(ES, *(u8 *)(si+0x08+5), 0x93);     // access
136     SET_VAR(ES, *(u16*)(si+0x08+6), 0x0000);   // base 31:24/reserved/limit 19:16
137
138     // Initialize CS descriptor
139     SET_VAR(ES, *(u16*)(si+0x20+0), 0xffff);// limit 15:00 = normal 64K limit
140     SET_VAR(ES, *(u16*)(si+0x20+2), 0x0000);// base 15:00
141     SET_VAR(ES, *(u8 *)(si+0x20+4), 0x000f);// base 23:16
142     SET_VAR(ES, *(u8 *)(si+0x20+5), 0x9b);  // access
143     SET_VAR(ES, *(u16*)(si+0x20+6), 0x0000);// base 31:24/reserved/limit 19:16
144
145     // Initialize SS descriptor
146     u16 ss = GET_SEG(SS);
147     base15_00 = ss << 4;
148     base23_16 = ss >> 12;
149     SET_VAR(ES, *(u16*)(si+0x28+0), 0xffff);   // limit 15:00 = normal 64K limit
150     SET_VAR(ES, *(u16*)(si+0x28+2), base15_00);// base 15:00
151     SET_VAR(ES, *(u8 *)(si+0x28+4), base23_16);// base 23:16
152     SET_VAR(ES, *(u8 *)(si+0x28+5), 0x93);     // access
153     SET_VAR(ES, *(u16*)(si+0x28+6), 0x0000);   // base 31:24/reserved/limit 19:16
154
155     u16 count = regs->cx;
156     asm volatile(
157         // Load new descriptor tables
158         "lgdtw %%es:0x8(%%si)\n"
159         "lidtw %%cs:pmode_IDT_info\n"
160
161         // set PE bit in CR0
162         "movl %%cr0, %%eax\n"
163         "orb $0x01, %%al\n"
164         "movl %%eax, %%cr0\n"
165
166         // far jump to flush CPU queue after transition to protected mode
167         "ljmpw $0x0020, $1f\n"
168         "1:\n"
169
170         // GDT points to valid descriptor table, now load DS, ES
171         "movw $0x10, %%ax\n" // 010 000 = 2nd descriptor in table, TI=GDT, RPL=00
172         "movw %%ax, %%ds\n"
173         "movw $0x18, %%ax\n" // 011 000 = 3rd descriptor in table, TI=GDT, RPL=00
174         "movw %%ax, %%es\n"
175
176         // move CX words from DS:SI to ES:DI
177         "xorw %%si, %%si\n"
178         "xorw %%di, %%di\n"
179         "rep movsw\n"
180
181         // reset PG bit in CR0 ???
182         "movl %%cr0, %%eax\n"
183         "andb $0xfe, %%al\n"
184         "movl %%eax, %%cr0\n"
185
186         // far jump to flush CPU queue after transition to real mode
187         "ljmpw $0xf000, $2f\n"
188         "2:\n"
189
190         // restore IDT to normal real-mode defaults
191         "lidt %%cs:rmode_IDT_info\n"
192
193         // Restore %ds (from %ss)
194         "movw %%ss, %%ax\n"
195         "movw %%ax, %%ds\n"
196         : "+c"(count), "+S"(si)
197         : : "eax", "di", "cc"); // XXX - also clobbers %es
198
199     set_a20(prev_a20_enable);
200
201     set_code_success(regs);
202 }
203
204 // Get the amount of extended memory (above 1M)
205 static void
206 handle_1588(struct bregs *regs)
207 {
208     u32 rs = GET_EBDA(ram_size);
209
210     // According to Ralf Brown's interrupt the limit should be 15M,
211     // but real machines mostly return max. 63M.
212     if (rs > 64*1024*1024)
213         regs->ax = 63 * 1024;
214     else
215         regs->ax = (rs - 1*1024*1024) / 1024;
216     set_success(regs);
217 }
218
219 // Device busy interrupt.  Called by Int 16h when no key available
220 static void
221 handle_1590(struct bregs *regs)
222 {
223 }
224
225 // Interrupt complete.  Called by Int 16h when key becomes available
226 static void
227 handle_1591(struct bregs *regs)
228 {
229 }
230
231 // keyboard intercept
232 static void
233 handle_154f(struct bregs *regs)
234 {
235     // set_fail(regs);  -- don't report this failure.
236     set_cf(regs, 1);
237 }
238
239 static void
240 handle_15c0(struct bregs *regs)
241 {
242     regs->es = SEG_BIOS;
243     regs->bx = (u32)&BIOS_CONFIG_TABLE;
244     set_code_success(regs);
245 }
246
247 static void
248 handle_15c1(struct bregs *regs)
249 {
250     regs->es = GET_BDA(ebda_seg);
251     set_success(regs);
252 }
253
254 static void
255 handle_15e801(struct bregs *regs)
256 {
257     // my real system sets ax and bx to 0
258     // this is confirmed by Ralph Brown list
259     // but syslinux v1.48 is known to behave
260     // strangely if ax is set to 0
261     // regs.u.r16.ax = 0;
262     // regs.u.r16.bx = 0;
263
264     u32 rs = GET_EBDA(ram_size);
265
266     // Get the amount of extended memory (above 1M)
267     if (rs > 16*1024*1024) {
268         // limit to 15M
269         regs->cx = 15*1024;
270         // Get the amount of extended memory above 16M in 64k blocks
271         regs->dx = (rs - 16*1024*1024) / (64*1024);
272     } else {
273         regs->cx = (rs - 1*1024*1024) / 1024;
274         regs->dx = 0;
275     }
276
277     // Set configured memory equal to extended memory
278     regs->ax = regs->cx;
279     regs->bx = regs->dx;
280
281     set_success(regs);
282 }
283
284 static void
285 set_e820_range(struct bregs *regs, u32 start, u32 end, u16 type, int last)
286 {
287     u32 size = end - start;
288     SET_FARVAR(regs->es, *(u64*)(regs->di+0), start);
289     SET_FARVAR(regs->es, *(u64*)(regs->di+8), size);
290     SET_FARVAR(regs->es, *(u16*)(regs->di+16), type);
291     SET_FARVAR(regs->es, *(u16*)(regs->di+18), 0x0);
292
293     if (last)
294         regs->ebx = 0;
295     else
296         regs->ebx++;
297     regs->eax = 0x534D4150;
298     regs->ecx = 0x14;
299     set_success(regs);
300 }
301
302 // XXX - should create e820 memory map in post and just copy it here.
303 static void
304 handle_15e820(struct bregs *regs)
305 {
306     if (regs->edx != 0x534D4150) {
307         set_code_fail(regs, RET_EUNSUPPORTED);
308         return;
309     }
310
311     u32 extended_memory_size = GET_EBDA(ram_size);
312     // greater than EFF00000???
313     if (extended_memory_size > 0xf0000000)
314         // everything after this is reserved memory until we get to 0x100000000
315         extended_memory_size = 0xf0000000;
316
317     switch (regs->bx) {
318     case 0:
319         set_e820_range(regs, 0x0000000L, 0x0009fc00L, E820_RAM, 0);
320         break;
321     case 1:
322         set_e820_range(regs, 0x0009fc00L, 0x000a0000L, E820_RESERVED, 0);
323         break;
324     case 2:
325         set_e820_range(regs, 0x000e8000L, 0x00100000L, E820_RESERVED, 0);
326         break;
327     case 3:
328         set_e820_range(regs, 0x00100000L
329                        , extended_memory_size - CONFIG_ACPI_DATA_SIZE
330                        , E820_RAM, 0);
331         break;
332     case 4:
333         set_e820_range(regs,
334                        extended_memory_size - CONFIG_ACPI_DATA_SIZE,
335                        extended_memory_size, E820_ACPI, 0);
336         break;
337     case 5:
338         /* 256KB BIOS area at the end of 4 GB */
339         set_e820_range(regs, 0xfffc0000L, 0x00000000L, E820_RESERVED, 1);
340         break;
341     default:  /* AX=E820, DX=534D4150, BX unrecognized */
342         set_code_fail(regs, RET_EUNSUPPORTED);
343     }
344 }
345
346 static void
347 handle_15e8XX(struct bregs *regs)
348 {
349     set_code_fail(regs, RET_EUNSUPPORTED);
350 }
351
352 static void
353 handle_15e8(struct bregs *regs)
354 {
355     switch (regs->al) {
356     case 0x01: handle_15e801(regs); break;
357     case 0x20: handle_15e820(regs); break;
358     default:   handle_15e8XX(regs); break;
359     }
360 }
361
362 static void
363 handle_15XX(struct bregs *regs)
364 {
365     set_code_fail(regs, RET_EUNSUPPORTED);
366 }
367
368 // INT 15h System Services Entry Point
369 void VISIBLE16
370 handle_15(struct bregs *regs)
371 {
372     //debug_enter(regs);
373     switch (regs->ah) {
374     case 0x24: handle_1524(regs); break;
375     case 0x4f: handle_154f(regs); break;
376     case 0x52: handle_1552(regs); break;
377     case 0x53: handle_1553(regs); break;
378     case 0x83: handle_1583(regs); break;
379     case 0x86: handle_1586(regs); break;
380     case 0x87: handle_1587(regs); break;
381     case 0x88: handle_1588(regs); break;
382     case 0x90: handle_1590(regs); break;
383     case 0x91: handle_1591(regs); break;
384     case 0xc0: handle_15c0(regs); break;
385     case 0xc1: handle_15c1(regs); break;
386     case 0xc2: handle_15c2(regs); break;
387     case 0xe8: handle_15e8(regs); break;
388     default:   handle_15XX(regs); break;
389     }
390 }
391
392 // INT 12h Memory Size Service Entry Point
393 void VISIBLE16
394 handle_12(struct bregs *regs)
395 {
396     debug_enter(regs);
397     regs->ax = GET_BDA(mem_size_kb);
398 }
399
400 // INT 11h Equipment List Service Entry Point
401 void VISIBLE16
402 handle_11(struct bregs *regs)
403 {
404     debug_enter(regs);
405     regs->ax = GET_BDA(equipment_list_flags);
406 }
407
408 // INT 05h Print Screen Service Entry Point
409 void VISIBLE16
410 handle_05(struct bregs *regs)
411 {
412     debug_enter(regs);
413 }
414
415 // INT 10h Video Support Service Entry Point
416 void VISIBLE16
417 handle_10(struct bregs *regs)
418 {
419     debug_enter(regs);
420     // dont do anything, since the VGA BIOS handles int10h requests
421 }
422
423 void VISIBLE16
424 handle_nmi()
425 {
426     debug_isr();
427     BX_PANIC("NMI Handler called\n");
428 }
429
430 // INT 75 - IRQ13 - MATH COPROCESSOR EXCEPTION
431 void VISIBLE16
432 handle_75()
433 {
434     debug_isr();
435
436     // clear irq13
437     outb(0, PORT_MATH_CLEAR);
438     // clear interrupt
439     eoi_both_pics();
440     // legacy nmi call
441     struct bregs br;
442     memset(&br, 0, sizeof(br));
443     call16_int(0x02, &br);
444 }