VGA: Reduce stack usage.
[seabios.git] / vgasrc / vga.c
1 // VGA bios implementation
2 //
3 // Copyright (C) 2009  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2001-2008 the LGPL VGABios developers Team
5 //
6 // This file may be distributed under the terms of the GNU LGPLv3 license.
7
8
9 // TODO:
10 //  * review correctness of converted asm by comparing with RBIL
11 //  * refactor redundant code into sub-functions
12 //  * See if there is a method to the in/out stuff that can be encapsulated.
13 //  * remove "biosfn" prefixes
14 //  * verify all funcs static
15 //
16 //  * convert vbe/clext code
17
18 #include "bregs.h" // struct bregs
19 #include "biosvar.h" // GET_BDA
20 #include "util.h" // memset
21 #include "vgatables.h" // find_vga_entry
22
23 // XXX
24 #define CONFIG_VBE 0
25 #define CONFIG_CIRRUS 0
26
27 // XXX
28 #define DEBUG_VGA_POST 1
29 #define DEBUG_VGA_10 3
30
31 #define SET_VGA(var, val) SET_FARVAR(get_global_seg(), (var), (val))
32
33 static inline void
34 call16_vgaint(u32 eax, u32 ebx)
35 {
36     asm volatile(
37         "int $0x10\n"
38         "cli\n"
39         "cld"
40         :
41         : "a"(eax), "b"(ebx)
42         : "cc", "memory");
43 }
44
45 static void
46 biosfn_perform_gray_scale_summing(u16 start, u16 count)
47 {
48     vgahw_screen_disable();
49     int i;
50     for (i = start; i < start+count; i++) {
51         u8 rgb[3];
52         vgahw_get_dac_regs(GET_SEG(SS), rgb, i, 1);
53
54         // intensity = ( 0.3 * Red ) + ( 0.59 * Green ) + ( 0.11 * Blue )
55         u16 intensity = ((77 * rgb[0] + 151 * rgb[1] + 28 * rgb[2]) + 0x80) >> 8;
56         if (intensity > 0x3f)
57             intensity = 0x3f;
58
59         vgahw_set_dac_regs(GET_SEG(SS), rgb, i, 1);
60     }
61     vgahw_screen_enable();
62 }
63
64 static void
65 biosfn_set_cursor_shape(u8 CH, u8 CL)
66 {
67     CH &= 0x3f;
68     CL &= 0x1f;
69
70     u16 curs = (CH << 8) + CL;
71     SET_BDA(cursor_type, curs);
72
73     u8 modeset_ctl = GET_BDA(modeset_ctl);
74     u16 cheight = GET_BDA(char_height);
75     if ((modeset_ctl & 0x01) && (cheight > 8) && (CL < 8) && (CH < 0x20)) {
76         if (CL != (CH + 1))
77             CH = ((CH + 1) * cheight / 8) - 1;
78         else
79             CH = ((CL + 1) * cheight / 8) - 2;
80         CL = ((CL + 1) * cheight / 8) - 1;
81     }
82     vgahw_set_cursor_shape(CH, CL);
83 }
84
85 static u16
86 biosfn_get_cursor_shape(u8 page)
87 {
88     if (page > 7)
89         return 0;
90     // FIXME should handle VGA 14/16 lines
91     return GET_BDA(cursor_type);
92 }
93
94 static void
95 set_cursor_pos(struct cursorpos cp)
96 {
97     // Should not happen...
98     if (cp.page > 7)
99         return;
100
101     // Bios cursor pos
102     SET_BDA(cursor_pos[cp.page], (cp.y << 8) | cp.x);
103
104     // Set the hardware cursor
105     u8 current = GET_BDA(video_page);
106     if (cp.page != current)
107         return;
108
109     // Get the dimensions
110     u16 nbcols = GET_BDA(video_cols);
111     u16 nbrows = GET_BDA(video_rows) + 1;
112
113     // Calculate the address knowing nbcols nbrows and page num
114     u16 address = (SCREEN_IO_START(nbcols, nbrows, cp.page)
115                    + cp.x + cp.y * nbcols);
116
117     vgahw_set_cursor_pos(address);
118 }
119
120 static struct cursorpos
121 get_cursor_pos(u8 page)
122 {
123     if (page == 0xff)
124         // special case - use current page
125         page = GET_BDA(video_page);
126     if (page > 7) {
127         struct cursorpos cp = { 0, 0, 0xfe };
128         return cp;
129     }
130     // FIXME should handle VGA 14/16 lines
131     u16 xy = GET_BDA(cursor_pos[page]);
132     struct cursorpos cp = {xy, xy>>8, page};
133     return cp;
134 }
135
136 static void
137 biosfn_set_active_page(u8 page)
138 {
139     if (page > 7)
140         return;
141
142     // Get the mode
143     struct vgamode_s *vmode_g = find_vga_entry(GET_BDA(video_mode));
144     if (!vmode_g)
145         return;
146
147     // Get pos curs pos for the right page
148     struct cursorpos cp = get_cursor_pos(page);
149
150     u16 address;
151     if (GET_GLOBAL(vmode_g->memmodel) & TEXT) {
152         // Get the dimensions
153         u16 nbcols = GET_BDA(video_cols);
154         u16 nbrows = GET_BDA(video_rows) + 1;
155
156         // Calculate the address knowing nbcols nbrows and page num
157         address = SCREEN_MEM_START(nbcols, nbrows, page);
158         SET_BDA(video_pagestart, address);
159
160         // Start address
161         address = SCREEN_IO_START(nbcols, nbrows, page);
162     } else {
163         struct VideoParam_s *vparam_g = GET_GLOBAL(vmode_g->vparam);
164         address = page * GET_GLOBAL(vparam_g->slength);
165     }
166
167     vgahw_set_active_page(address);
168
169     // And change the BIOS page
170     SET_BDA(video_page, page);
171
172     dprintf(1, "Set active page %02x address %04x\n", page, address);
173
174     // Display the cursor, now the page is active
175     set_cursor_pos(cp);
176 }
177
178 static struct cursorpos
179 write_teletype(struct cursorpos cp, struct carattr ca)
180 {
181     // Get the dimensions
182     u16 nbrows = GET_BDA(video_rows) + 1;
183     u16 nbcols = GET_BDA(video_cols);
184
185     switch (ca.car) {
186     case 7:
187         //FIXME should beep
188         break;
189     case 8:
190         if (cp.x > 0)
191             cp.x--;
192         break;
193     case '\r':
194         cp.x = 0;
195         break;
196     case '\n':
197         cp.y++;
198         break;
199     case '\t':
200         do {
201             struct carattr dummyca = {' ', ca.attr, ca.use_attr};
202             vgafb_write_char(cp, dummyca);
203             cp.x++;
204         } while (cp.x < nbcols && cp.x % 8);
205         break;
206     default:
207         vgafb_write_char(cp, ca);
208         cp.x++;
209     }
210
211     // Do we need to wrap ?
212     if (cp.x == nbcols) {
213         cp.x = 0;
214         cp.y++;
215     }
216     // Do we need to scroll ?
217     if (cp.y == nbrows) {
218         struct cursorpos ul = {0, 0, cp.page};
219         struct cursorpos lr = {nbcols-1, nbrows-1, cp.page};
220         vgafb_scroll(1, -1, ul, lr);
221         cp.y--;
222     }
223
224     return cp;
225 }
226
227 static void
228 write_string(struct cursorpos cp, u8 flag, u8 attr, u16 count,
229              u16 seg, u8 *offset_far)
230 {
231     while (count--) {
232         u8 car = GET_FARVAR(seg, *offset_far);
233         offset_far++;
234         if (flag & 0x02) {
235             attr = GET_FARVAR(seg, *offset_far);
236             offset_far++;
237         }
238
239         struct carattr ca = {car, attr, 1};
240         cp = write_teletype(cp, ca);
241     }
242
243     if (flag & 0x01)
244         set_cursor_pos(cp);
245 }
246
247 static void
248 set_scan_lines(u8 lines)
249 {
250     vgahw_set_scan_lines(lines);
251     if (lines == 8)
252         biosfn_set_cursor_shape(0x06, 0x07);
253     else
254         biosfn_set_cursor_shape(lines - 4, lines - 3);
255     SET_BDA(char_height, lines);
256     u16 vde = vgahw_get_vde();
257     u8 rows = vde / lines;
258     SET_BDA(video_rows, rows - 1);
259     u16 cols = GET_BDA(video_cols);
260     SET_BDA(video_pagesize, rows * cols * 2);
261 }
262
263 static void
264 biosfn_save_bda_state(u16 seg, struct saveBDAstate *info)
265 {
266     SET_FARVAR(seg, info->video_mode, GET_BDA(video_mode));
267     SET_FARVAR(seg, info->video_cols, GET_BDA(video_cols));
268     SET_FARVAR(seg, info->video_pagesize, GET_BDA(video_pagesize));
269     SET_FARVAR(seg, info->crtc_address, GET_BDA(crtc_address));
270     SET_FARVAR(seg, info->video_rows, GET_BDA(video_rows));
271     SET_FARVAR(seg, info->char_height, GET_BDA(char_height));
272     SET_FARVAR(seg, info->video_ctl, GET_BDA(video_ctl));
273     SET_FARVAR(seg, info->video_switches, GET_BDA(video_switches));
274     SET_FARVAR(seg, info->modeset_ctl, GET_BDA(modeset_ctl));
275     SET_FARVAR(seg, info->cursor_type, GET_BDA(cursor_type));
276     u16 i;
277     for (i=0; i<8; i++)
278         SET_FARVAR(seg, info->cursor_pos[i], GET_BDA(cursor_pos[i]));
279     SET_FARVAR(seg, info->video_pagestart, GET_BDA(video_pagestart));
280     SET_FARVAR(seg, info->video_page, GET_BDA(video_page));
281     /* current font */
282     SET_FARVAR(seg, *(u32*)&info->font0_off, GET_IVT(0x1f).segoff);
283     SET_FARVAR(seg, *(u32*)&info->font1_off, GET_IVT(0x43).segoff);
284 }
285
286 static void
287 biosfn_restore_bda_state(u16 seg, struct saveBDAstate *info)
288 {
289     SET_BDA(video_mode, GET_FARVAR(seg, info->video_mode));
290     SET_BDA(video_cols, GET_FARVAR(seg, info->video_cols));
291     SET_BDA(video_pagesize, GET_FARVAR(seg, info->video_pagesize));
292     SET_BDA(crtc_address, GET_FARVAR(seg, info->crtc_address));
293     SET_BDA(video_rows, GET_FARVAR(seg, info->video_rows));
294     SET_BDA(char_height, GET_FARVAR(seg, info->char_height));
295     SET_BDA(video_ctl, GET_FARVAR(seg, info->video_ctl));
296     SET_BDA(video_switches, GET_FARVAR(seg, info->video_switches));
297     SET_BDA(modeset_ctl, GET_FARVAR(seg, info->modeset_ctl));
298     SET_BDA(cursor_type, GET_FARVAR(seg, info->cursor_type));
299     u16 i;
300     for (i = 0; i < 8; i++)
301         SET_BDA(cursor_pos[i], GET_FARVAR(seg, info->cursor_pos[i]));
302     SET_BDA(video_pagestart, GET_FARVAR(seg, info->video_pagestart));
303     SET_BDA(video_page, GET_FARVAR(seg, info->video_page));
304     /* current font */
305     SET_IVT(0x1f, GET_FARVAR(seg, info->font0_seg)
306             , GET_FARVAR(seg, info->font0_off));
307     SET_IVT(0x43, GET_FARVAR(seg, info->font1_seg)
308             , GET_FARVAR(seg, info->font1_off));
309 }
310
311
312 /****************************************************************
313  * VGA int 10 handler
314  ****************************************************************/
315
316 // set video mode
317 static void
318 handle_1000(struct bregs *regs)
319 {
320     u8 noclearmem = regs->al & 0x80;
321     u8 mode = regs->al & 0x7f;
322
323     // Set regs->al
324     if (mode > 7)
325         regs->al = 0x20;
326     else if (mode == 6)
327         regs->al = 0x3f;
328     else
329         regs->al = 0x30;
330
331     if (CONFIG_CIRRUS)
332         cirrus_set_video_mode(mode);
333
334     if (CONFIG_VBE)
335         if (vbe_has_vbe_display())
336             dispi_set_enable(VBE_DISPI_DISABLED);
337
338     // find the entry in the video modes
339     struct vgamode_s *vmode_g = find_vga_entry(mode);
340     dprintf(1, "mode search %02x found %p\n", mode, vmode_g);
341     if (!vmode_g)
342         return;
343
344     // Read the bios mode set control
345     u8 modeset_ctl = GET_BDA(modeset_ctl);
346
347     // Then we know the number of lines
348 // FIXME
349
350     // if palette loading (bit 3 of modeset ctl = 0)
351     if ((modeset_ctl & 0x08) == 0) {    // Set the PEL mask
352         vgahw_set_pel_mask(GET_GLOBAL(vmode_g->pelmask));
353
354         // From which palette
355         u8 *palette_g = GET_GLOBAL(vmode_g->dac);
356         u16 palsize = GET_GLOBAL(vmode_g->dacsize) / 3;
357
358         // Always 256*3 values
359         vgahw_set_dac_regs(get_global_seg(), palette_g, 0, palsize);
360         u16 i;
361         for (i = palsize; i < 0x0100; i++) {
362             static u8 rgb[3] VAR16;
363             vgahw_set_dac_regs(get_global_seg(), rgb, i, 1);
364         }
365
366         if ((modeset_ctl & 0x02) == 0x02)
367             biosfn_perform_gray_scale_summing(0x00, 0x100);
368     }
369
370     struct VideoParam_s *vparam_g = GET_GLOBAL(vmode_g->vparam);
371     vgahw_set_mode(vparam_g);
372
373     if (noclearmem == 0x00)
374         clear_screen(vmode_g);
375
376     // Set CRTC address VGA or MDA
377     u16 crtc_addr = VGAREG_VGA_CRTC_ADDRESS;
378     if (GET_GLOBAL(vmode_g->memmodel) == MTEXT)
379         crtc_addr = VGAREG_MDA_CRTC_ADDRESS;
380
381     // Set the BIOS mem
382     u16 cheight = GET_GLOBAL(vparam_g->cheight);
383     SET_BDA(video_mode, mode);
384     SET_BDA(video_cols, GET_GLOBAL(vparam_g->twidth));
385     SET_BDA(video_pagesize, GET_GLOBAL(vparam_g->slength));
386     SET_BDA(crtc_address, crtc_addr);
387     SET_BDA(video_rows, GET_GLOBAL(vparam_g->theightm1));
388     SET_BDA(char_height, cheight);
389     SET_BDA(video_ctl, (0x60 | noclearmem));
390     SET_BDA(video_switches, 0xF9);
391     SET_BDA(modeset_ctl, GET_BDA(modeset_ctl) & 0x7f);
392
393     // FIXME We nearly have the good tables. to be reworked
394     SET_BDA(dcc_index, 0x08);   // 8 is VGA should be ok for now
395     SET_BDA(video_savetable_ptr, (u32)video_save_pointer_table);
396     SET_BDA(video_savetable_seg, get_global_seg());
397
398     // FIXME
399     SET_BDA(video_msr, 0x00); // Unavailable on vanilla vga, but...
400     SET_BDA(video_pal, 0x00); // Unavailable on vanilla vga, but...
401
402     // Set cursor shape
403     if (GET_GLOBAL(vmode_g->memmodel) & TEXT)
404         biosfn_set_cursor_shape(0x06, 0x07);
405     // Set cursor pos for page 0..7
406     int i;
407     for (i = 0; i < 8; i++) {
408         struct cursorpos cp = {0, 0, i};
409         set_cursor_pos(cp);
410     }
411
412     // Set active page 0
413     biosfn_set_active_page(0x00);
414
415     // Write the fonts in memory
416     if (GET_GLOBAL(vmode_g->memmodel) & TEXT) {
417         call16_vgaint(0x1104, 0);
418         call16_vgaint(0x1103, 0);
419     }
420     // Set the ints 0x1F and 0x43
421     SET_IVT(0x1f, get_global_seg(), (u32)&vgafont8[128 * 8]);
422
423     switch (cheight) {
424     case 8:
425         SET_IVT(0x43, get_global_seg(), (u32)vgafont8);
426         break;
427     case 14:
428         SET_IVT(0x43, get_global_seg(), (u32)vgafont14);
429         break;
430     case 16:
431         SET_IVT(0x43, get_global_seg(), (u32)vgafont16);
432         break;
433     }
434 }
435
436 static void
437 handle_1001(struct bregs *regs)
438 {
439     biosfn_set_cursor_shape(regs->ch, regs->cl);
440 }
441
442 static void
443 handle_1002(struct bregs *regs)
444 {
445     struct cursorpos cp = {regs->dl, regs->dh, regs->bh};
446     set_cursor_pos(cp);
447 }
448
449 static void
450 handle_1003(struct bregs *regs)
451 {
452     regs->cx = biosfn_get_cursor_shape(regs->bh);
453     struct cursorpos cp = get_cursor_pos(regs->bh);
454     regs->dl = cp.x;
455     regs->dh = cp.y;
456 }
457
458 // Read light pen pos (unimplemented)
459 static void
460 handle_1004(struct bregs *regs)
461 {
462     debug_stub(regs);
463     regs->ax = regs->bx = regs->cx = regs->dx = 0;
464 }
465
466 static void
467 handle_1005(struct bregs *regs)
468 {
469     biosfn_set_active_page(regs->al);
470 }
471
472 static void
473 verify_scroll(struct bregs *regs, int dir)
474 {
475     u8 page = GET_BDA(video_page);
476     struct cursorpos ul = {regs->cl, regs->ch, page};
477     struct cursorpos lr = {regs->dl, regs->dh, page};
478
479     u16 nbrows = GET_BDA(video_rows) + 1;
480     if (lr.y >= nbrows)
481         lr.y = nbrows - 1;
482     u16 nbcols = GET_BDA(video_cols);
483     if (lr.x >= nbcols)
484         lr.x = nbcols - 1;
485
486     if (ul.x > lr.x || ul.y > lr.y)
487         return;
488
489     u16 nblines = regs->al;
490     if (!nblines || nblines > lr.y - ul.y + 1)
491         nblines = lr.y - ul.y + 1;
492
493     vgafb_scroll(dir * nblines, regs->bh, ul, lr);
494 }
495
496 static void
497 handle_1006(struct bregs *regs)
498 {
499     verify_scroll(regs, 1);
500 }
501
502 static void
503 handle_1007(struct bregs *regs)
504 {
505     verify_scroll(regs, -1);
506 }
507
508 static void
509 handle_1008(struct bregs *regs)
510 {
511     struct carattr ca = vgafb_read_char(get_cursor_pos(regs->bh));
512     regs->al = ca.car;
513     regs->ah = ca.attr;
514 }
515
516 static void noinline
517 write_chars(u8 page, struct carattr ca, u16 count)
518 {
519     struct cursorpos cp = get_cursor_pos(page);
520     while (count--) {
521         vgafb_write_char(cp, ca);
522         cp.x++;
523     }
524 }
525
526 static void
527 handle_1009(struct bregs *regs)
528 {
529     struct carattr ca = {regs->al, regs->bl, 1};
530     write_chars(regs->bh, ca, regs->cx);
531 }
532
533 static void
534 handle_100a(struct bregs *regs)
535 {
536     struct carattr ca = {regs->al, regs->bl, 0};
537     write_chars(regs->bh, ca, regs->cx);
538 }
539
540
541 static void
542 handle_100b00(struct bregs *regs)
543 {
544     vgahw_set_border_color(regs->bl);
545 }
546
547 static void
548 handle_100b01(struct bregs *regs)
549 {
550     vgahw_set_palette(regs->bl);
551 }
552
553 static void
554 handle_100bXX(struct bregs *regs)
555 {
556     debug_stub(regs);
557 }
558
559 static void
560 handle_100b(struct bregs *regs)
561 {
562     switch (regs->bh) {
563     case 0x00: handle_100b00(regs); break;
564     case 0x01: handle_100b01(regs); break;
565     default:   handle_100bXX(regs); break;
566     }
567 }
568
569
570 static void
571 handle_100c(struct bregs *regs)
572 {
573     // XXX - inline
574     biosfn_write_pixel(regs->bh, regs->al, regs->cx, regs->dx);
575 }
576
577 static void
578 handle_100d(struct bregs *regs)
579 {
580     // XXX - inline
581     biosfn_read_pixel(regs->bh, regs->cx, regs->dx, &regs->ax);
582 }
583
584 static void noinline
585 handle_100e(struct bregs *regs)
586 {
587     // Ralf Brown Interrupt list is WRONG on bh(page)
588     // We do output only on the current page !
589     struct carattr ca = {regs->al, regs->bl, 0};
590     struct cursorpos cp = get_cursor_pos(0xff);
591     cp = write_teletype(cp, ca);
592     set_cursor_pos(cp);
593 }
594
595 static void
596 handle_100f(struct bregs *regs)
597 {
598     regs->bh = GET_BDA(video_page);
599     regs->al = GET_BDA(video_mode) | (GET_BDA(video_ctl) & 0x80);
600     regs->ah = GET_BDA(video_cols);
601 }
602
603
604 static void
605 handle_101000(struct bregs *regs)
606 {
607     if (regs->bl > 0x14)
608         return;
609     vgahw_set_single_palette_reg(regs->bl, regs->bh);
610 }
611
612 static void
613 handle_101001(struct bregs *regs)
614 {
615     vgahw_set_overscan_border_color(regs->bh);
616 }
617
618 static void
619 handle_101002(struct bregs *regs)
620 {
621     vgahw_set_all_palette_reg(regs->es, (u8*)(regs->dx + 0));
622 }
623
624 static void
625 handle_101003(struct bregs *regs)
626 {
627     vgahw_toggle_intensity(regs->bl);
628 }
629
630 static void
631 handle_101007(struct bregs *regs)
632 {
633     if (regs->bl > 0x14)
634         return;
635     regs->bh = vgahw_get_single_palette_reg(regs->bl);
636 }
637
638 static void
639 handle_101008(struct bregs *regs)
640 {
641     regs->bh = vgahw_get_overscan_border_color(regs);
642 }
643
644 static void
645 handle_101009(struct bregs *regs)
646 {
647     vgahw_get_all_palette_reg(regs->es, (u8*)(regs->dx + 0));
648 }
649
650 static void noinline
651 handle_101010(struct bregs *regs)
652 {
653     u8 rgb[3] = {regs->dh, regs->ch, regs->cl};
654     vgahw_set_dac_regs(GET_SEG(SS), rgb, regs->bx, 1);
655 }
656
657 static void
658 handle_101012(struct bregs *regs)
659 {
660     vgahw_set_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx);
661 }
662
663 static void
664 handle_101013(struct bregs *regs)
665 {
666     vgahw_select_video_dac_color_page(regs->bl, regs->bh);
667 }
668
669 static void noinline
670 handle_101015(struct bregs *regs)
671 {
672     u8 rgb[3];
673     vgahw_get_dac_regs(GET_SEG(SS), rgb, regs->bx, 1);
674     regs->dh = rgb[0];
675     regs->ch = rgb[1];
676     regs->cl = rgb[2];
677 }
678
679 static void
680 handle_101017(struct bregs *regs)
681 {
682     vgahw_get_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx);
683 }
684
685 static void
686 handle_101018(struct bregs *regs)
687 {
688     vgahw_set_pel_mask(regs->bl);
689 }
690
691 static void
692 handle_101019(struct bregs *regs)
693 {
694     regs->bl = vgahw_get_pel_mask();
695 }
696
697 static void
698 handle_10101a(struct bregs *regs)
699 {
700     vgahw_read_video_dac_state(&regs->bl, &regs->bh);
701 }
702
703 static void
704 handle_10101b(struct bregs *regs)
705 {
706     biosfn_perform_gray_scale_summing(regs->bx, regs->cx);
707 }
708
709 static void
710 handle_1010XX(struct bregs *regs)
711 {
712     debug_stub(regs);
713 }
714
715 static void
716 handle_1010(struct bregs *regs)
717 {
718     switch (regs->al) {
719     case 0x00: handle_101000(regs); break;
720     case 0x01: handle_101001(regs); break;
721     case 0x02: handle_101002(regs); break;
722     case 0x03: handle_101003(regs); break;
723     case 0x07: handle_101007(regs); break;
724     case 0x08: handle_101008(regs); break;
725     case 0x09: handle_101009(regs); break;
726     case 0x10: handle_101010(regs); break;
727     case 0x12: handle_101012(regs); break;
728     case 0x13: handle_101013(regs); break;
729     case 0x15: handle_101015(regs); break;
730     case 0x17: handle_101017(regs); break;
731     case 0x18: handle_101018(regs); break;
732     case 0x19: handle_101019(regs); break;
733     case 0x1a: handle_10101a(regs); break;
734     case 0x1b: handle_10101b(regs); break;
735     default:   handle_1010XX(regs); break;
736     }
737 }
738
739
740 static void
741 handle_101100(struct bregs *regs)
742 {
743     vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx
744                     , regs->dx, regs->bl, regs->bh);
745 }
746
747 static void
748 handle_101101(struct bregs *regs)
749 {
750     vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14);
751 }
752
753 static void
754 handle_101102(struct bregs *regs)
755 {
756     vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8);
757 }
758
759 static void
760 handle_101103(struct bregs *regs)
761 {
762     vgahw_set_text_block_specifier(regs->bl);
763 }
764
765 static void
766 handle_101104(struct bregs *regs)
767 {
768     vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16);
769 }
770
771 static void
772 handle_101110(struct bregs *regs)
773 {
774     vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx
775                     , regs->dx, regs->bl, regs->bh);
776     set_scan_lines(regs->bh);
777 }
778
779 static void
780 handle_101111(struct bregs *regs)
781 {
782     vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14);
783     set_scan_lines(14);
784 }
785
786 static void
787 handle_101112(struct bregs *regs)
788 {
789     vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8);
790     set_scan_lines(8);
791 }
792
793 static void
794 handle_101114(struct bregs *regs)
795 {
796     vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16);
797     set_scan_lines(16);
798 }
799
800 static void
801 handle_101130(struct bregs *regs)
802 {
803     switch (regs->bh) {
804     case 0x00: {
805         u32 segoff = GET_IVT(0x1f).segoff;
806         regs->es = segoff >> 16;
807         regs->bp = segoff;
808         break;
809     }
810     case 0x01: {
811         u32 segoff = GET_IVT(0x43).segoff;
812         regs->es = segoff >> 16;
813         regs->bp = segoff;
814         break;
815     }
816     case 0x02:
817         regs->es = get_global_seg();
818         regs->bp = (u32)vgafont14;
819         break;
820     case 0x03:
821         regs->es = get_global_seg();
822         regs->bp = (u32)vgafont8;
823         break;
824     case 0x04:
825         regs->es = get_global_seg();
826         regs->bp = (u32)vgafont8 + 128 * 8;
827         break;
828     case 0x05:
829         regs->es = get_global_seg();
830         regs->bp = (u32)vgafont14alt;
831         break;
832     case 0x06:
833         regs->es = get_global_seg();
834         regs->bp = (u32)vgafont16;
835         break;
836     case 0x07:
837         regs->es = get_global_seg();
838         regs->bp = (u32)vgafont16alt;
839         break;
840     default:
841         dprintf(1, "Get font info BH(%02x) was discarded\n", regs->bh);
842         return;
843     }
844     // Set byte/char of on screen font
845     regs->cx = GET_BDA(char_height) & 0xff;
846
847     // Set Highest char row
848     regs->dx = GET_BDA(video_rows);
849 }
850
851 static void
852 handle_1011XX(struct bregs *regs)
853 {
854     debug_stub(regs);
855 }
856
857 static void
858 handle_1011(struct bregs *regs)
859 {
860     switch (regs->al) {
861     case 0x00: handle_101100(regs); break;
862     case 0x01: handle_101101(regs); break;
863     case 0x02: handle_101102(regs); break;
864     case 0x03: handle_101103(regs); break;
865     case 0x04: handle_101104(regs); break;
866     case 0x10: handle_101110(regs); break;
867     case 0x11: handle_101111(regs); break;
868     case 0x12: handle_101112(regs); break;
869     case 0x14: handle_101114(regs); break;
870     case 0x30: handle_101130(regs); break;
871     default:   handle_1011XX(regs); break;
872     }
873 }
874
875
876 static void
877 handle_101210(struct bregs *regs)
878 {
879     u16 crtc_addr = GET_BDA(crtc_address);
880     if (crtc_addr == VGAREG_MDA_CRTC_ADDRESS)
881         regs->bx = 0x0103;
882     else
883         regs->bx = 0x0003;
884     regs->cx = GET_BDA(video_switches) & 0x0f;
885 }
886
887 static void
888 handle_101230(struct bregs *regs)
889 {
890     u8 mctl = GET_BDA(modeset_ctl);
891     u8 vswt = GET_BDA(video_switches);
892     switch (regs->al) {
893     case 0x00:
894         // 200 lines
895         mctl = (mctl & ~0x10) | 0x80;
896         vswt = (vswt & ~0x0f) | 0x08;
897         break;
898     case 0x01:
899         // 350 lines
900         mctl &= ~0x90;
901         vswt = (vswt & ~0x0f) | 0x09;
902         break;
903     case 0x02:
904         // 400 lines
905         mctl = (mctl & ~0x80) | 0x10;
906         vswt = (vswt & ~0x0f) | 0x09;
907         break;
908     default:
909         dprintf(1, "Select vert res (%02x) was discarded\n", regs->al);
910         break;
911     }
912     SET_BDA(modeset_ctl, mctl);
913     SET_BDA(video_switches, vswt);
914     regs->al = 0x12;
915 }
916
917 static void
918 handle_101231(struct bregs *regs)
919 {
920     u8 v = (regs->al & 0x01) << 3;
921     u8 mctl = GET_BDA(video_ctl) & ~0x08;
922     SET_BDA(video_ctl, mctl | v);
923     regs->al = 0x12;
924 }
925
926 static void
927 handle_101232(struct bregs *regs)
928 {
929     vgahw_enable_video_addressing(regs->al);
930     regs->al = 0x12;
931 }
932
933 static void
934 handle_101233(struct bregs *regs)
935 {
936     u8 v = ((regs->al << 1) & 0x02) ^ 0x02;
937     u8 v2 = GET_BDA(modeset_ctl) & ~0x02;
938     SET_BDA(modeset_ctl, v | v2);
939     regs->al = 0x12;
940 }
941
942 static void
943 handle_101234(struct bregs *regs)
944 {
945     u8 v = (regs->al & 0x01) ^ 0x01;
946     u8 v2 = GET_BDA(modeset_ctl) & ~0x01;
947     SET_BDA(modeset_ctl, v | v2);
948     regs->al = 0x12;
949 }
950
951 static void
952 handle_101235(struct bregs *regs)
953 {
954     debug_stub(regs);
955     regs->al = 0x12;
956 }
957
958 static void
959 handle_101236(struct bregs *regs)
960 {
961     debug_stub(regs);
962     regs->al = 0x12;
963 }
964
965 static void
966 handle_1012XX(struct bregs *regs)
967 {
968     debug_stub(regs);
969 }
970
971 static void
972 handle_1012(struct bregs *regs)
973 {
974     switch (regs->bl) {
975     case 0x10: handle_101210(regs); break;
976     case 0x30: handle_101230(regs); break;
977     case 0x31: handle_101231(regs); break;
978     case 0x32: handle_101232(regs); break;
979     case 0x33: handle_101233(regs); break;
980     case 0x34: handle_101234(regs); break;
981     case 0x35: handle_101235(regs); break;
982     case 0x36: handle_101236(regs); break;
983     default:   handle_1012XX(regs); break;
984     }
985
986     // XXX - cirrus has 1280, 1281, 1282, 1285, 129a, 12a0, 12a1, 12a2, 12ae
987 }
988
989
990 static void noinline
991 handle_1013(struct bregs *regs)
992 {
993     struct cursorpos cp = {regs->dl, regs->dh, regs->bh};
994     // if row=0xff special case : use current cursor position
995     if (cp.y == 0xff)
996         cp = get_cursor_pos(cp.page);
997     write_string(cp, regs->al, regs->bl, regs->cx
998                  , regs->es, (void*)(regs->bp + 0));
999 }
1000
1001
1002 static void
1003 handle_101a00(struct bregs *regs)
1004 {
1005     regs->bx = GET_BDA(dcc_index);
1006     regs->al = 0x1a;
1007 }
1008
1009 static void
1010 handle_101a01(struct bregs *regs)
1011 {
1012     SET_BDA(dcc_index, regs->bl);
1013     dprintf(1, "Alternate Display code (%02x) was discarded\n", regs->bh);
1014     regs->al = 0x1a;
1015 }
1016
1017 static void
1018 handle_101aXX(struct bregs *regs)
1019 {
1020     debug_stub(regs);
1021 }
1022
1023 static void
1024 handle_101a(struct bregs *regs)
1025 {
1026     switch (regs->al) {
1027     case 0x00: handle_101a00(regs); break;
1028     case 0x01: handle_101a01(regs); break;
1029     default:   handle_101aXX(regs); break;
1030     }
1031 }
1032
1033
1034 struct funcInfo {
1035     u16 static_functionality_off;
1036     u16 static_functionality_seg;
1037     u8 bda_0x49[30];
1038     u8 bda_0x84[3];
1039     u8 dcc_index;
1040     u8 dcc_alt;
1041     u16 colors;
1042     u8 pages;
1043     u8 scan_lines;
1044     u8 primary_char;
1045     u8 secondar_char;
1046     u8 misc;
1047     u8 non_vga_mode;
1048     u8 reserved_2f[2];
1049     u8 video_mem;
1050     u8 save_flags;
1051     u8 disp_info;
1052     u8 reserved_34[12];
1053 };
1054
1055 static void
1056 handle_101b(struct bregs *regs)
1057 {
1058     u16 seg = regs->es;
1059     struct funcInfo *info = (void*)(regs->di+0);
1060     memset_far(seg, info, 0, sizeof(*info));
1061     // Address of static functionality table
1062     SET_FARVAR(seg, info->static_functionality_off, (u32)static_functionality);
1063     SET_FARVAR(seg, info->static_functionality_seg, get_global_seg());
1064
1065     // Hard coded copy from BIOS area. Should it be cleaner ?
1066     memcpy_far(seg, info->bda_0x49, SEG_BDA, (void*)0x49, 30);
1067     memcpy_far(seg, info->bda_0x84, SEG_BDA, (void*)0x84, 3);
1068
1069     SET_FARVAR(seg, info->dcc_index, GET_BDA(dcc_index));
1070     SET_FARVAR(seg, info->colors, 16);
1071     SET_FARVAR(seg, info->pages, 8);
1072     SET_FARVAR(seg, info->scan_lines, 2);
1073     SET_FARVAR(seg, info->video_mem, 3);
1074     regs->al = 0x1B;
1075 }
1076
1077
1078 static void
1079 handle_101c00(struct bregs *regs)
1080 {
1081     u16 flags = regs->cx;
1082     u16 size = 0;
1083     if (flags & 1)
1084         size += sizeof(struct saveVideoHardware);
1085     if (flags & 2)
1086         size += sizeof(struct saveBDAstate);
1087     if (flags & 4)
1088         size += sizeof(struct saveDACcolors);
1089     regs->bx = size;
1090     regs->al = 0x1c;
1091 }
1092
1093 static void
1094 handle_101c01(struct bregs *regs)
1095 {
1096     u16 flags = regs->cx;
1097     u16 seg = regs->es;
1098     void *data = (void*)(regs->bx+0);
1099     if (flags & 1) {
1100         vgahw_save_state(seg, data);
1101         data += sizeof(struct saveVideoHardware);
1102     }
1103     if (flags & 2) {
1104         biosfn_save_bda_state(seg, data);
1105         data += sizeof(struct saveBDAstate);
1106     }
1107     if (flags & 4)
1108         vgahw_save_dac_state(seg, data);
1109     regs->al = 0x1c;
1110 }
1111
1112 static void
1113 handle_101c02(struct bregs *regs)
1114 {
1115     u16 flags = regs->cx;
1116     u16 seg = regs->es;
1117     void *data = (void*)(regs->bx+0);
1118     if (flags & 1) {
1119         vgahw_restore_state(seg, data);
1120         data += sizeof(struct saveVideoHardware);
1121     }
1122     if (flags & 2) {
1123         biosfn_restore_bda_state(seg, data);
1124         data += sizeof(struct saveBDAstate);
1125     }
1126     if (flags & 4)
1127         vgahw_restore_dac_state(seg, data);
1128     regs->al = 0x1c;
1129 }
1130
1131 static void
1132 handle_101cXX(struct bregs *regs)
1133 {
1134     debug_stub(regs);
1135 }
1136
1137 static void
1138 handle_101c(struct bregs *regs)
1139 {
1140     switch (regs->al) {
1141     case 0x00: handle_101c00(regs); break;
1142     case 0x01: handle_101c01(regs); break;
1143     case 0x02: handle_101c02(regs); break;
1144     default:   handle_101cXX(regs); break;
1145     }
1146 }
1147
1148
1149 static void
1150 handle_104f00(struct bregs *regs)
1151 {
1152     // XXX - vbe_biosfn_return_controller_information(&AX,ES,DI);
1153     // XXX - OR cirrus_vesa_00h
1154 }
1155
1156 static void
1157 handle_104f01(struct bregs *regs)
1158 {
1159     // XXX - vbe_biosfn_return_mode_information(&AX,CX,ES,DI);
1160     // XXX - OR cirrus_vesa_01h
1161 }
1162
1163 static void
1164 handle_104f02(struct bregs *regs)
1165 {
1166     // XXX - vbe_biosfn_set_mode(&AX,BX,ES,DI);
1167     // XXX - OR cirrus_vesa_02h
1168 }
1169
1170 static void
1171 handle_104f03(struct bregs *regs)
1172 {
1173     // XXX - vbe_biosfn_return_current_mode
1174     // XXX - OR cirrus_vesa_03h
1175 }
1176
1177 static void
1178 handle_104f04(struct bregs *regs)
1179 {
1180     // XXX - vbe_biosfn_save_restore_state(&AX, CX, DX, ES, &BX);
1181 }
1182
1183 static void
1184 handle_104f05(struct bregs *regs)
1185 {
1186     // XXX - vbe_biosfn_display_window_control
1187     // XXX - OR cirrus_vesa_05h
1188 }
1189
1190 static void
1191 handle_104f06(struct bregs *regs)
1192 {
1193     // XXX - vbe_biosfn_set_get_logical_scan_line_length
1194     // XXX - OR cirrus_vesa_06h
1195 }
1196
1197 static void
1198 handle_104f07(struct bregs *regs)
1199 {
1200     // XXX - vbe_biosfn_set_get_display_start
1201     // XXX - OR cirrus_vesa_07h
1202 }
1203
1204 static void
1205 handle_104f08(struct bregs *regs)
1206 {
1207     // XXX - vbe_biosfn_set_get_dac_palette_format
1208 }
1209
1210 static void
1211 handle_104f0a(struct bregs *regs)
1212 {
1213     // XXX - vbe_biosfn_return_protected_mode_interface
1214 }
1215
1216 static void
1217 handle_104fXX(struct bregs *regs)
1218 {
1219     debug_stub(regs);
1220     regs->ax = 0x0100;
1221 }
1222
1223 static void
1224 handle_104f(struct bregs *regs)
1225 {
1226     if (! CONFIG_VBE || !vbe_has_vbe_display()) {
1227         handle_104fXX(regs);
1228         return;
1229     }
1230
1231     switch (regs->al) {
1232     case 0x00: handle_104f00(regs); break;
1233     case 0x01: handle_104f01(regs); break;
1234     case 0x02: handle_104f02(regs); break;
1235     case 0x03: handle_104f03(regs); break;
1236     case 0x04: handle_104f04(regs); break;
1237     case 0x05: handle_104f05(regs); break;
1238     case 0x06: handle_104f06(regs); break;
1239     case 0x07: handle_104f07(regs); break;
1240     case 0x08: handle_104f08(regs); break;
1241     case 0x0a: handle_104f0a(regs); break;
1242     default:   handle_104fXX(regs); break;
1243     }
1244 }
1245
1246
1247 static void
1248 handle_10XX(struct bregs *regs)
1249 {
1250     debug_stub(regs);
1251 }
1252
1253 // INT 10h Video Support Service Entry Point
1254 void VISIBLE16
1255 handle_10(struct bregs *regs)
1256 {
1257     debug_enter(regs, DEBUG_VGA_10);
1258     switch (regs->ah) {
1259     case 0x00: handle_1000(regs); break;
1260     case 0x01: handle_1001(regs); break;
1261     case 0x02: handle_1002(regs); break;
1262     case 0x03: handle_1003(regs); break;
1263     case 0x04: handle_1004(regs); break;
1264     case 0x05: handle_1005(regs); break;
1265     case 0x06: handle_1006(regs); break;
1266     case 0x07: handle_1007(regs); break;
1267     case 0x08: handle_1008(regs); break;
1268     case 0x09: handle_1009(regs); break;
1269     case 0x0a: handle_100a(regs); break;
1270     case 0x0b: handle_100b(regs); break;
1271     case 0x0c: handle_100c(regs); break;
1272     case 0x0d: handle_100d(regs); break;
1273     case 0x0e: handle_100e(regs); break;
1274     case 0x0f: handle_100f(regs); break;
1275     case 0x10: handle_1010(regs); break;
1276     case 0x11: handle_1011(regs); break;
1277     case 0x12: handle_1012(regs); break;
1278     case 0x13: handle_1013(regs); break;
1279     case 0x1a: handle_101a(regs); break;
1280     case 0x1b: handle_101b(regs); break;
1281     case 0x1c: handle_101c(regs); break;
1282     case 0x4f: handle_104f(regs); break;
1283     default:   handle_10XX(regs); break;
1284     }
1285 }
1286
1287
1288 /****************************************************************
1289  * VGA post
1290  ****************************************************************/
1291
1292 static void
1293 init_bios_area()
1294 {
1295     // init detected hardware BIOS Area
1296     // set 80x25 color (not clear from RBIL but usual)
1297     u16 eqf = GET_BDA(equipment_list_flags);
1298     SET_BDA(equipment_list_flags, (eqf & 0xffcf) | 0x20);
1299
1300     // Just for the first int10 find its children
1301
1302     // the default char height
1303     SET_BDA(char_height, 0x10);
1304
1305     // Clear the screen
1306     SET_BDA(video_ctl, 0x60);
1307
1308     // Set the basic screen we have
1309     SET_BDA(video_switches, 0xf9);
1310
1311     // Set the basic modeset options
1312     SET_BDA(modeset_ctl, 0x51);
1313
1314     // Set the  default MSR
1315     SET_BDA(video_msr, 0x09);
1316 }
1317
1318 void VISIBLE16
1319 vga_post(struct bregs *regs)
1320 {
1321     debug_enter(regs, DEBUG_VGA_POST);
1322
1323     vgahw_init();
1324
1325     init_bios_area();
1326
1327     if (CONFIG_VBE)
1328         vbe_init();
1329
1330     extern void entry_10(void);
1331     SET_IVT(0x10, get_global_seg(), (u32)entry_10);
1332
1333     if (CONFIG_CIRRUS)
1334         cirrus_init();
1335
1336     // XXX - clear screen and display info
1337
1338     // XXX: fill it
1339     SET_VGA(video_save_pointer_table[0], (u32)video_param_table);
1340     SET_VGA(video_save_pointer_table[1], get_global_seg());
1341
1342     // Fixup checksum
1343     extern u8 _rom_header_size, _rom_header_checksum;
1344     SET_VGA(_rom_header_checksum, 0);
1345     u8 sum = -checksum_far(get_global_seg(), 0, _rom_header_size * 512);
1346     SET_VGA(_rom_header_checksum, sum);
1347 }