blob: 53e8dd831453000ef4b466064047fa85a054f7bc [file] [log] [blame]
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001// 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:
Kevin O'Connordeb9cb92009-05-25 09:06:50 -040010// * remove recursion from biosfn_write_teletype()
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040011// * review correctness of converted asm by comparing with RBIL
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040012// * refactor redundant code into sub-functions
13// * See if there is a method to the in/out stuff that can be encapsulated.
14// * remove "biosfn" prefixes
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040015// * verify all funcs static
16//
Kevin O'Connor6ace78f2009-05-14 19:24:49 -040017// * convert vbe/clext code
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040018
19#include "bregs.h" // struct bregs
20#include "biosvar.h" // GET_BDA
21#include "util.h" // memset
Kevin O'Connorc0c7df62009-05-17 18:11:33 -040022#include "vgatables.h" // find_vga_entry
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040023
24// XXX
25#define CONFIG_VBE 0
26#define CONFIG_CIRRUS 0
27
28// XXX
29#define DEBUG_VGA_POST 1
30#define DEBUG_VGA_10 3
31
Kevin O'Connord113a992009-05-16 21:05:02 -040032#define SET_VGA(var, val) SET_FARVAR(get_global_seg(), (var), (val))
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040033
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040034inline void
35call16_vgaint(u32 eax, u32 ebx)
36{
37 asm volatile(
38 "int $0x10\n"
39 "cli\n"
40 "cld"
41 :
42 : "a"(eax), "b"(ebx)
43 : "cc", "memory");
44}
45
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040046static void
47biosfn_perform_gray_scale_summing(u16 start, u16 count)
48{
Kevin O'Connora0ecb052009-05-18 23:34:00 -040049 vgahw_screen_disable();
Kevin O'Connordd2be772009-05-16 15:41:23 -040050 int i;
51 for (i = start; i < start+count; i++) {
Kevin O'Connora0ecb052009-05-18 23:34:00 -040052 u8 rgb[3];
53 vgahw_get_dac_regs(GET_SEG(SS), rgb, i, 1);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040054
55 // intensity = ( 0.3 * Red ) + ( 0.59 * Green ) + ( 0.11 * Blue )
Kevin O'Connora0ecb052009-05-18 23:34:00 -040056 u16 intensity = ((77 * rgb[0] + 151 * rgb[1] + 28 * rgb[2]) + 0x80) >> 8;
Kevin O'Connordd2be772009-05-16 15:41:23 -040057 if (intensity > 0x3f)
58 intensity = 0x3f;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040059
Kevin O'Connora0ecb052009-05-18 23:34:00 -040060 vgahw_set_dac_regs(GET_SEG(SS), rgb, i, 1);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040061 }
Kevin O'Connora0ecb052009-05-18 23:34:00 -040062 vgahw_screen_enable();
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040063}
64
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040065static void
66biosfn_set_cursor_shape(u8 CH, u8 CL)
67{
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040068 CH &= 0x3f;
69 CL &= 0x1f;
70
Kevin O'Connordd2be772009-05-16 15:41:23 -040071 u16 curs = (CH << 8) + CL;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040072 SET_BDA(cursor_type, curs);
73
Kevin O'Connordd2be772009-05-16 15:41:23 -040074 u8 modeset_ctl = GET_BDA(modeset_ctl);
75 u16 cheight = GET_BDA(char_height);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040076 if ((modeset_ctl & 0x01) && (cheight > 8) && (CL < 8) && (CH < 0x20)) {
Kevin O'Connordd2be772009-05-16 15:41:23 -040077 if (CL != (CH + 1))
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040078 CH = ((CH + 1) * cheight / 8) - 1;
Kevin O'Connordd2be772009-05-16 15:41:23 -040079 else
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040080 CH = ((CL + 1) * cheight / 8) - 2;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040081 CL = ((CL + 1) * cheight / 8) - 1;
82 }
Kevin O'Connora0ecb052009-05-18 23:34:00 -040083 vgahw_set_cursor_shape(CH, CL);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040084}
85
Kevin O'Connor0818e1a2009-05-16 18:00:19 -040086static u16
87biosfn_get_cursor_shape(u8 page)
88{
89 if (page > 7)
90 return 0;
91 // FIXME should handle VGA 14/16 lines
92 return GET_BDA(cursor_type);
93}
94
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040095static void
Kevin O'Connor918b1562009-05-25 11:05:18 -040096set_cursor_pos(struct cursorpos cp)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040097{
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040098 // Should not happen...
Kevin O'Connor918b1562009-05-25 11:05:18 -040099 if (cp.page > 7)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400100 return;
101
102 // Bios cursor pos
Kevin O'Connor918b1562009-05-25 11:05:18 -0400103 SET_BDA(cursor_pos[cp.page], (cp.y << 8) | cp.x);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400104
105 // Set the hardware cursor
Kevin O'Connordd2be772009-05-16 15:41:23 -0400106 u8 current = GET_BDA(video_page);
Kevin O'Connor918b1562009-05-25 11:05:18 -0400107 if (cp.page != current)
Kevin O'Connordd2be772009-05-16 15:41:23 -0400108 return;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400109
Kevin O'Connordd2be772009-05-16 15:41:23 -0400110 // Get the dimensions
111 u16 nbcols = GET_BDA(video_cols);
112 u16 nbrows = GET_BDA(video_rows) + 1;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400113
Kevin O'Connordd2be772009-05-16 15:41:23 -0400114 // Calculate the address knowing nbcols nbrows and page num
Kevin O'Connor918b1562009-05-25 11:05:18 -0400115 u16 address = (SCREEN_IO_START(nbcols, nbrows, cp.page)
116 + cp.x + cp.y * nbcols);
Kevin O'Connordd2be772009-05-16 15:41:23 -0400117
Kevin O'Connora0ecb052009-05-18 23:34:00 -0400118 vgahw_set_cursor_pos(address);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400119}
120
Kevin O'Connor918b1562009-05-25 11:05:18 -0400121struct cursorpos
122get_cursor_pos(u8 page)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400123{
Kevin O'Connor918b1562009-05-25 11:05:18 -0400124 if (page == 0xff)
125 // special case - use current page
126 page = GET_BDA(video_page);
127 if (page > 7) {
128 struct cursorpos cp = { 0, 0, 0xfe };
129 return cp;
130 }
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400131 // FIXME should handle VGA 14/16 lines
Kevin O'Connor918b1562009-05-25 11:05:18 -0400132 u16 xy = GET_BDA(cursor_pos[page]);
133 struct cursorpos cp = {xy, xy>>8, page};
134 return cp;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400135}
136
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400137static void
138biosfn_set_active_page(u8 page)
139{
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400140 if (page > 7)
141 return;
142
143 // Get the mode
Kevin O'Connor5727c292009-05-16 17:29:32 -0400144 struct vgamode_s *vmode_g = find_vga_entry(GET_BDA(video_mode));
145 if (!vmode_g)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400146 return;
147
148 // Get pos curs pos for the right page
Kevin O'Connor918b1562009-05-25 11:05:18 -0400149 struct cursorpos cp = get_cursor_pos(page);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400150
Kevin O'Connordd2be772009-05-16 15:41:23 -0400151 u16 address;
Kevin O'Connore4f220f2009-05-25 23:37:13 -0400152 if (GET_GLOBAL(vmode_g->memmodel) & TEXT) {
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400153 // Get the dimensions
Kevin O'Connordd2be772009-05-16 15:41:23 -0400154 u16 nbcols = GET_BDA(video_cols);
155 u16 nbrows = GET_BDA(video_rows) + 1;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400156
157 // Calculate the address knowing nbcols nbrows and page num
158 address = SCREEN_MEM_START(nbcols, nbrows, page);
159 SET_BDA(video_pagestart, address);
160
161 // Start address
162 address = SCREEN_IO_START(nbcols, nbrows, page);
163 } else {
Kevin O'Connor5727c292009-05-16 17:29:32 -0400164 struct VideoParam_s *vparam_g = GET_GLOBAL(vmode_g->vparam);
165 address = page * GET_GLOBAL(vparam_g->slength);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400166 }
167
Kevin O'Connora0ecb052009-05-18 23:34:00 -0400168 vgahw_set_active_page(address);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400169
170 // And change the BIOS page
171 SET_BDA(video_page, page);
172
Kevin O'Connora12c2152009-05-13 22:06:16 -0400173 dprintf(1, "Set active page %02x address %04x\n", page, address);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400174
175 // Display the cursor, now the page is active
Kevin O'Connor918b1562009-05-25 11:05:18 -0400176 set_cursor_pos(cp);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400177}
178
179static void
Kevin O'Connor09262412009-05-25 11:44:11 -0400180biosfn_write_teletype(u8 page, struct carattr ca)
181{
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400182 // Get the mode
Kevin O'Connor5727c292009-05-16 17:29:32 -0400183 struct vgamode_s *vmode_g = find_vga_entry(GET_BDA(video_mode));
184 if (!vmode_g)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400185 return;
186
187 // Get the cursor pos for the page
Kevin O'Connor918b1562009-05-25 11:05:18 -0400188 struct cursorpos cp = get_cursor_pos(page);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400189
190 // Get the dimensions
Kevin O'Connordd2be772009-05-16 15:41:23 -0400191 u16 nbrows = GET_BDA(video_rows) + 1;
192 u16 nbcols = GET_BDA(video_cols);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400193
Kevin O'Connor09262412009-05-25 11:44:11 -0400194 switch (ca.car) {
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400195 case 7:
196 //FIXME should beep
197 break;
198
199 case 8:
Kevin O'Connor918b1562009-05-25 11:05:18 -0400200 if (cp.x > 0)
201 cp.x--;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400202 break;
203
204 case '\r':
Kevin O'Connor918b1562009-05-25 11:05:18 -0400205 cp.x = 0;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400206 break;
207
208 case '\n':
Kevin O'Connor918b1562009-05-25 11:05:18 -0400209 cp.y++;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400210 break;
211
212 case '\t':
213 do {
Kevin O'Connor09262412009-05-25 11:44:11 -0400214 struct carattr dummyca = {' ', ca.attr, ca.use_attr};
215 biosfn_write_teletype(page, dummyca);
Kevin O'Connor918b1562009-05-25 11:05:18 -0400216 cp = get_cursor_pos(page);
217 } while (cp.x % 8 == 0);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400218 break;
219
220 default:
Kevin O'Connord3b38152009-05-26 00:05:37 -0400221 vgafb_write_char(cp, ca);
Kevin O'Connor918b1562009-05-25 11:05:18 -0400222 cp.x++;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400223 }
224
225 // Do we need to wrap ?
Kevin O'Connor918b1562009-05-25 11:05:18 -0400226 if (cp.x == nbcols) {
227 cp.x = 0;
228 cp.y++;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400229 }
230 // Do we need to scroll ?
Kevin O'Connor918b1562009-05-25 11:05:18 -0400231 if (cp.y == nbrows) {
Kevin O'Connore4f220f2009-05-25 23:37:13 -0400232 if (GET_GLOBAL(vmode_g->memmodel) & TEXT)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400233 biosfn_scroll(0x01, 0x07, 0, 0, nbrows - 1, nbcols - 1, page,
234 SCROLL_UP);
235 else
236 biosfn_scroll(0x01, 0x00, 0, 0, nbrows - 1, nbcols - 1, page,
237 SCROLL_UP);
Kevin O'Connor918b1562009-05-25 11:05:18 -0400238 cp.y--;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400239 }
240 // Set the cursor for the page
Kevin O'Connor918b1562009-05-25 11:05:18 -0400241 set_cursor_pos(cp);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400242}
243
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400244static void
Kevin O'Connor918b1562009-05-25 11:05:18 -0400245biosfn_write_string(struct cursorpos cp, u8 flag, u8 attr, u16 count,
Kevin O'Connordd2be772009-05-16 15:41:23 -0400246 u16 seg, u8 *offset_far)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400247{
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400248 // Read curs info for the page
Kevin O'Connor918b1562009-05-25 11:05:18 -0400249 struct cursorpos oldcp = get_cursor_pos(cp.page);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400250
251 // if row=0xff special case : use current cursor position
Kevin O'Connor918b1562009-05-25 11:05:18 -0400252 if (cp.y == 0xff)
253 cp = oldcp;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400254
Kevin O'Connor918b1562009-05-25 11:05:18 -0400255 set_cursor_pos(cp);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400256
257 while (count-- != 0) {
Kevin O'Connordd2be772009-05-16 15:41:23 -0400258 u8 car = GET_FARVAR(seg, *offset_far);
259 offset_far++;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400260 if ((flag & 0x02) != 0) {
Kevin O'Connordd2be772009-05-16 15:41:23 -0400261 attr = GET_FARVAR(seg, *offset_far);
262 offset_far++;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400263 }
264
Kevin O'Connor09262412009-05-25 11:44:11 -0400265 struct carattr ca = {car, attr, 1};
266 biosfn_write_teletype(cp.page, ca);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400267 }
268
269 // Set back curs pos
270 if ((flag & 0x01) == 0)
Kevin O'Connor918b1562009-05-25 11:05:18 -0400271 set_cursor_pos(oldcp);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400272}
273
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400274static void
Kevin O'Connore7132042009-05-25 00:10:35 -0400275set_scan_lines(u8 lines)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400276{
Kevin O'Connore7132042009-05-25 00:10:35 -0400277 vgahw_set_scan_lines(lines);
278 if (lines == 8)
279 biosfn_set_cursor_shape(0x06, 0x07);
280 else
281 biosfn_set_cursor_shape(lines - 4, lines - 3);
282 SET_BDA(char_height, lines);
283 u16 vde = vgahw_get_vde();
284 u8 rows = vde / lines;
285 SET_BDA(video_rows, rows - 1);
286 u16 cols = GET_BDA(video_cols);
287 SET_BDA(video_pagesize, rows * cols * 2);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400288}
289
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400290static void
Kevin O'Connorca668642009-05-21 23:06:08 -0400291biosfn_save_bda_state(u16 seg, struct saveBDAstate *info)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400292{
Kevin O'Connorca668642009-05-21 23:06:08 -0400293 SET_FARVAR(seg, info->video_mode, GET_BDA(video_mode));
294 SET_FARVAR(seg, info->video_cols, GET_BDA(video_cols));
295 SET_FARVAR(seg, info->video_pagesize, GET_BDA(video_pagesize));
296 SET_FARVAR(seg, info->crtc_address, GET_BDA(crtc_address));
297 SET_FARVAR(seg, info->video_rows, GET_BDA(video_rows));
298 SET_FARVAR(seg, info->char_height, GET_BDA(char_height));
299 SET_FARVAR(seg, info->video_ctl, GET_BDA(video_ctl));
300 SET_FARVAR(seg, info->video_switches, GET_BDA(video_switches));
301 SET_FARVAR(seg, info->modeset_ctl, GET_BDA(modeset_ctl));
302 SET_FARVAR(seg, info->cursor_type, GET_BDA(cursor_type));
303 u16 i;
304 for (i=0; i<8; i++)
305 SET_FARVAR(seg, info->cursor_pos[i], GET_BDA(cursor_pos[i]));
306 SET_FARVAR(seg, info->video_pagestart, GET_BDA(video_pagestart));
307 SET_FARVAR(seg, info->video_page, GET_BDA(video_page));
308 /* current font */
309 SET_FARVAR(seg, *(u32*)&info->font0_off, GET_IVT(0x1f).segoff);
310 SET_FARVAR(seg, *(u32*)&info->font1_off, GET_IVT(0x43).segoff);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400311}
312
Kevin O'Connorca668642009-05-21 23:06:08 -0400313static void
314biosfn_restore_bda_state(u16 seg, struct saveBDAstate *info)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400315{
Kevin O'Connorca668642009-05-21 23:06:08 -0400316 SET_BDA(video_mode, GET_FARVAR(seg, info->video_mode));
317 SET_BDA(video_cols, GET_FARVAR(seg, info->video_cols));
318 SET_BDA(video_pagesize, GET_FARVAR(seg, info->video_pagesize));
319 SET_BDA(crtc_address, GET_FARVAR(seg, info->crtc_address));
320 SET_BDA(video_rows, GET_FARVAR(seg, info->video_rows));
321 SET_BDA(char_height, GET_FARVAR(seg, info->char_height));
322 SET_BDA(video_ctl, GET_FARVAR(seg, info->video_ctl));
323 SET_BDA(video_switches, GET_FARVAR(seg, info->video_switches));
324 SET_BDA(modeset_ctl, GET_FARVAR(seg, info->modeset_ctl));
325 SET_BDA(cursor_type, GET_FARVAR(seg, info->cursor_type));
326 u16 i;
327 for (i = 0; i < 8; i++)
328 SET_BDA(cursor_pos[i], GET_FARVAR(seg, info->cursor_pos[i]));
329 SET_BDA(video_pagestart, GET_FARVAR(seg, info->video_pagestart));
330 SET_BDA(video_page, GET_FARVAR(seg, info->video_page));
331 /* current font */
332 SET_IVT(0x1f, GET_FARVAR(seg, info->font0_seg)
333 , GET_FARVAR(seg, info->font0_off));
334 SET_IVT(0x43, GET_FARVAR(seg, info->font1_seg)
335 , GET_FARVAR(seg, info->font1_off));
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400336}
337
338
339/****************************************************************
340 * VGA int 10 handler
341 ****************************************************************/
342
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400343// set video mode
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400344static void
345handle_1000(struct bregs *regs)
346{
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400347 u8 noclearmem = regs->al & 0x80;
348 u8 mode = regs->al & 0x7f;
349
Kevin O'Connor918b1562009-05-25 11:05:18 -0400350 // Set regs->al
351 if (mode > 7)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400352 regs->al = 0x20;
Kevin O'Connor918b1562009-05-25 11:05:18 -0400353 else if (mode == 6)
354 regs->al = 0x3f;
355 else
356 regs->al = 0x30;
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400357
358 if (CONFIG_CIRRUS)
359 cirrus_set_video_mode(mode);
360
361 if (CONFIG_VBE)
362 if (vbe_has_vbe_display())
363 dispi_set_enable(VBE_DISPI_DISABLED);
364
365 // find the entry in the video modes
366 struct vgamode_s *vmode_g = find_vga_entry(mode);
367 dprintf(1, "mode search %02x found %p\n", mode, vmode_g);
368 if (!vmode_g)
369 return;
370
371 // Read the bios mode set control
372 u8 modeset_ctl = GET_BDA(modeset_ctl);
373
374 // Then we know the number of lines
375// FIXME
376
377 // if palette loading (bit 3 of modeset ctl = 0)
378 if ((modeset_ctl & 0x08) == 0) { // Set the PEL mask
379 vgahw_set_pel_mask(GET_GLOBAL(vmode_g->pelmask));
380
381 // From which palette
382 u8 *palette_g = GET_GLOBAL(vmode_g->dac);
383 u16 palsize = GET_GLOBAL(vmode_g->dacsize) / 3;
384
385 // Always 256*3 values
386 vgahw_set_dac_regs(get_global_seg(), palette_g, 0, palsize);
387 u16 i;
388 for (i = palsize; i < 0x0100; i++) {
389 static u8 rgb[3] VAR16;
390 vgahw_set_dac_regs(get_global_seg(), rgb, i, 1);
391 }
392
393 if ((modeset_ctl & 0x02) == 0x02)
394 biosfn_perform_gray_scale_summing(0x00, 0x100);
395 }
396
397 struct VideoParam_s *vparam_g = GET_GLOBAL(vmode_g->vparam);
398 vgahw_set_mode(vparam_g);
399
400 if (noclearmem == 0x00)
401 clear_screen(vmode_g);
402
403 // Set CRTC address VGA or MDA
404 u16 crtc_addr = VGAREG_VGA_CRTC_ADDRESS;
405 if (GET_GLOBAL(vmode_g->memmodel) == MTEXT)
406 crtc_addr = VGAREG_MDA_CRTC_ADDRESS;
407
408 // Set the BIOS mem
409 u16 cheight = GET_GLOBAL(vparam_g->cheight);
410 SET_BDA(video_mode, mode);
411 SET_BDA(video_cols, GET_GLOBAL(vparam_g->twidth));
412 SET_BDA(video_pagesize, GET_GLOBAL(vparam_g->slength));
413 SET_BDA(crtc_address, crtc_addr);
414 SET_BDA(video_rows, GET_GLOBAL(vparam_g->theightm1));
415 SET_BDA(char_height, cheight);
416 SET_BDA(video_ctl, (0x60 | noclearmem));
417 SET_BDA(video_switches, 0xF9);
418 SET_BDA(modeset_ctl, GET_BDA(modeset_ctl) & 0x7f);
419
420 // FIXME We nearly have the good tables. to be reworked
421 SET_BDA(dcc_index, 0x08); // 8 is VGA should be ok for now
422 SET_BDA(video_savetable_ptr, (u32)video_save_pointer_table);
423 SET_BDA(video_savetable_seg, get_global_seg());
424
425 // FIXME
426 SET_BDA(video_msr, 0x00); // Unavailable on vanilla vga, but...
427 SET_BDA(video_pal, 0x00); // Unavailable on vanilla vga, but...
428
429 // Set cursor shape
Kevin O'Connore4f220f2009-05-25 23:37:13 -0400430 if (GET_GLOBAL(vmode_g->memmodel) & TEXT)
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400431 biosfn_set_cursor_shape(0x06, 0x07);
432 // Set cursor pos for page 0..7
433 int i;
Kevin O'Connor918b1562009-05-25 11:05:18 -0400434 for (i = 0; i < 8; i++) {
435 struct cursorpos cp = {0, 0, i};
436 set_cursor_pos(cp);
437 }
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400438
439 // Set active page 0
440 biosfn_set_active_page(0x00);
441
442 // Write the fonts in memory
Kevin O'Connore4f220f2009-05-25 23:37:13 -0400443 if (GET_GLOBAL(vmode_g->memmodel) & TEXT) {
Kevin O'Connor85ea07e2009-05-25 09:41:07 -0400444 call16_vgaint(0x1104, 0);
445 call16_vgaint(0x1103, 0);
446 }
447 // Set the ints 0x1F and 0x43
448 SET_IVT(0x1f, get_global_seg(), (u32)&vgafont8[128 * 8]);
449
450 switch (cheight) {
451 case 8:
452 SET_IVT(0x43, get_global_seg(), (u32)vgafont8);
453 break;
454 case 14:
455 SET_IVT(0x43, get_global_seg(), (u32)vgafont14);
456 break;
457 case 16:
458 SET_IVT(0x43, get_global_seg(), (u32)vgafont16);
459 break;
460 }
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400461}
462
463static void
464handle_1001(struct bregs *regs)
465{
466 biosfn_set_cursor_shape(regs->ch, regs->cl);
467}
468
469static void
470handle_1002(struct bregs *regs)
471{
Kevin O'Connor918b1562009-05-25 11:05:18 -0400472 struct cursorpos cp = {regs->dl, regs->dh, regs->bh};
473 set_cursor_pos(cp);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400474}
475
476static void
477handle_1003(struct bregs *regs)
478{
Kevin O'Connor0818e1a2009-05-16 18:00:19 -0400479 regs->cx = biosfn_get_cursor_shape(regs->bh);
Kevin O'Connor918b1562009-05-25 11:05:18 -0400480 struct cursorpos cp = get_cursor_pos(regs->bh);
481 regs->dl = cp.x;
482 regs->dh = cp.y;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400483}
484
485// Read light pen pos (unimplemented)
486static void
487handle_1004(struct bregs *regs)
488{
489 debug_stub(regs);
490 regs->ax = regs->bx = regs->cx = regs->dx = 0;
491}
492
493static void
494handle_1005(struct bregs *regs)
495{
496 biosfn_set_active_page(regs->al);
497}
498
499static void
500handle_1006(struct bregs *regs)
501{
502 biosfn_scroll(regs->al, regs->bh, regs->ch, regs->cl, regs->dh, regs->dl
503 , 0xFF, SCROLL_UP);
504}
505
506static void
507handle_1007(struct bregs *regs)
508{
509 biosfn_scroll(regs->al, regs->bh, regs->ch, regs->cl, regs->dh, regs->dl
510 , 0xFF, SCROLL_DOWN);
511}
512
513static void
514handle_1008(struct bregs *regs)
515{
Kevin O'Connord3b38152009-05-26 00:05:37 -0400516 struct carattr ca = vgafb_read_char(get_cursor_pos(regs->bh));
Kevin O'Connor09262412009-05-25 11:44:11 -0400517 regs->al = ca.car;
518 regs->ah = ca.attr;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400519}
520
521static void
Kevin O'Connord3b38152009-05-26 00:05:37 -0400522write_chars(u8 page, struct carattr ca, u16 count)
523{
524 struct cursorpos cp = get_cursor_pos(page);
525 while (count--) {
526 vgafb_write_char(cp, ca);
527 cp.x++;
528 }
529}
530
531static void
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400532handle_1009(struct bregs *regs)
533{
Kevin O'Connor09262412009-05-25 11:44:11 -0400534 struct carattr ca = {regs->al, regs->bl, 1};
Kevin O'Connord3b38152009-05-26 00:05:37 -0400535 write_chars(regs->bh, ca, regs->cx);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400536}
537
538static void
539handle_100a(struct bregs *regs)
540{
Kevin O'Connor09262412009-05-25 11:44:11 -0400541 struct carattr ca = {regs->al, regs->bl, 0};
Kevin O'Connord3b38152009-05-26 00:05:37 -0400542 write_chars(regs->bh, ca, regs->cx);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400543}
544
545
546static void
547handle_100b00(struct bregs *regs)
548{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400549 vgahw_set_border_color(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400550}
551
552static void
553handle_100b01(struct bregs *regs)
554{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400555 vgahw_set_palette(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400556}
557
558static void
559handle_100bXX(struct bregs *regs)
560{
561 debug_stub(regs);
562}
563
564static void
565handle_100b(struct bregs *regs)
566{
567 switch (regs->bh) {
568 case 0x00: handle_100b00(regs); break;
569 case 0x01: handle_100b01(regs); break;
570 default: handle_100bXX(regs); break;
571 }
572}
573
574
575static void
576handle_100c(struct bregs *regs)
577{
578 // XXX - inline
579 biosfn_write_pixel(regs->bh, regs->al, regs->cx, regs->dx);
580}
581
582static void
583handle_100d(struct bregs *regs)
584{
585 // XXX - inline
586 biosfn_read_pixel(regs->bh, regs->cx, regs->dx, &regs->ax);
587}
588
589static void
590handle_100e(struct bregs *regs)
591{
592 // Ralf Brown Interrupt list is WRONG on bh(page)
593 // We do output only on the current page !
Kevin O'Connor09262412009-05-25 11:44:11 -0400594 struct carattr ca = {regs->al, regs->bl, 0};
595 biosfn_write_teletype(0xff, ca);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400596}
597
598static void
599handle_100f(struct bregs *regs)
600{
Kevin O'Connore7132042009-05-25 00:10:35 -0400601 regs->bh = GET_BDA(video_page);
602 regs->al = GET_BDA(video_mode) | (GET_BDA(video_ctl) & 0x80);
603 regs->ah = GET_BDA(video_cols);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400604}
605
606
607static void
608handle_101000(struct bregs *regs)
609{
610 if (regs->bl > 0x14)
611 return;
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400612 vgahw_set_single_palette_reg(regs->bl, regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400613}
614
615static void
616handle_101001(struct bregs *regs)
617{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400618 vgahw_set_overscan_border_color(regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400619}
620
621static void
622handle_101002(struct bregs *regs)
623{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400624 vgahw_set_all_palette_reg(regs->es, (u8*)(regs->dx + 0));
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400625}
626
627static void
628handle_101003(struct bregs *regs)
629{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400630 vgahw_toggle_intensity(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400631}
632
633static void
634handle_101007(struct bregs *regs)
635{
636 if (regs->bl > 0x14)
637 return;
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400638 regs->bh = vgahw_get_single_palette_reg(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400639}
640
641static void
642handle_101008(struct bregs *regs)
643{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400644 regs->bh = vgahw_get_overscan_border_color(regs);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400645}
646
647static void
648handle_101009(struct bregs *regs)
649{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400650 vgahw_get_all_palette_reg(regs->es, (u8*)(regs->dx + 0));
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400651}
652
653static void
654handle_101010(struct bregs *regs)
655{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400656 u8 rgb[3] = {regs->dh, regs->ch, regs->cl};
657 vgahw_set_dac_regs(GET_SEG(SS), rgb, regs->bx, 1);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400658}
659
660static void
661handle_101012(struct bregs *regs)
662{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400663 vgahw_set_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400664}
665
666static void
667handle_101013(struct bregs *regs)
668{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400669 vgahw_select_video_dac_color_page(regs->bl, regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400670}
671
672static void
673handle_101015(struct bregs *regs)
674{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400675 u8 rgb[3];
676 vgahw_get_dac_regs(GET_SEG(SS), rgb, regs->bx, 1);
677 regs->dh = rgb[0];
678 regs->ch = rgb[1];
679 regs->cl = rgb[2];
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400680}
681
682static void
683handle_101017(struct bregs *regs)
684{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400685 vgahw_get_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400686}
687
688static void
689handle_101018(struct bregs *regs)
690{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400691 vgahw_set_pel_mask(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400692}
693
694static void
695handle_101019(struct bregs *regs)
696{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400697 regs->bl = vgahw_get_pel_mask();
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400698}
699
700static void
701handle_10101a(struct bregs *regs)
702{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400703 vgahw_read_video_dac_state(&regs->bl, &regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400704}
705
706static void
707handle_10101b(struct bregs *regs)
708{
709 biosfn_perform_gray_scale_summing(regs->bx, regs->cx);
710}
711
712static void
713handle_1010XX(struct bregs *regs)
714{
715 debug_stub(regs);
716}
717
718static void
719handle_1010(struct bregs *regs)
720{
721 switch (regs->al) {
722 case 0x00: handle_101000(regs); break;
723 case 0x01: handle_101001(regs); break;
724 case 0x02: handle_101002(regs); break;
725 case 0x03: handle_101003(regs); break;
726 case 0x07: handle_101007(regs); break;
727 case 0x08: handle_101008(regs); break;
728 case 0x09: handle_101009(regs); break;
729 case 0x10: handle_101010(regs); break;
730 case 0x12: handle_101012(regs); break;
731 case 0x13: handle_101013(regs); break;
732 case 0x15: handle_101015(regs); break;
733 case 0x17: handle_101017(regs); break;
734 case 0x18: handle_101018(regs); break;
735 case 0x19: handle_101019(regs); break;
736 case 0x1a: handle_10101a(regs); break;
737 case 0x1b: handle_10101b(regs); break;
738 default: handle_1010XX(regs); break;
739 }
740}
741
742
743static void
744handle_101100(struct bregs *regs)
745{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400746 vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx
747 , regs->dx, regs->bl, regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400748}
749
750static void
751handle_101101(struct bregs *regs)
752{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400753 vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400754}
755
756static void
757handle_101102(struct bregs *regs)
758{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400759 vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400760}
761
762static void
763handle_101103(struct bregs *regs)
764{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400765 vgahw_set_text_block_specifier(regs->bl);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400766}
767
768static void
769handle_101104(struct bregs *regs)
770{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400771 vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400772}
773
774static void
775handle_101110(struct bregs *regs)
776{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400777 vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx
778 , regs->dx, regs->bl, regs->bh);
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400779 set_scan_lines(regs->bh);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400780}
781
782static void
783handle_101111(struct bregs *regs)
784{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400785 vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14);
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400786 set_scan_lines(14);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400787}
788
789static void
790handle_101112(struct bregs *regs)
791{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400792 vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8);
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400793 set_scan_lines(8);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400794}
795
796static void
797handle_101114(struct bregs *regs)
798{
Kevin O'Connordeb9cb92009-05-25 09:06:50 -0400799 vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16);
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400800 set_scan_lines(16);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400801}
802
803static void
804handle_101130(struct bregs *regs)
805{
Kevin O'Connore7132042009-05-25 00:10:35 -0400806 switch (regs->bh) {
807 case 0x00: {
808 u32 segoff = GET_IVT(0x1f).segoff;
809 regs->es = segoff >> 16;
810 regs->bp = segoff;
811 break;
812 }
813 case 0x01: {
814 u32 segoff = GET_IVT(0x43).segoff;
815 regs->es = segoff >> 16;
816 regs->bp = segoff;
817 break;
818 }
819 case 0x02:
820 regs->es = get_global_seg();
821 regs->bp = (u32)vgafont14;
822 break;
823 case 0x03:
824 regs->es = get_global_seg();
825 regs->bp = (u32)vgafont8;
826 break;
827 case 0x04:
828 regs->es = get_global_seg();
829 regs->bp = (u32)vgafont8 + 128 * 8;
830 break;
831 case 0x05:
832 regs->es = get_global_seg();
833 regs->bp = (u32)vgafont14alt;
834 break;
835 case 0x06:
836 regs->es = get_global_seg();
837 regs->bp = (u32)vgafont16;
838 break;
839 case 0x07:
840 regs->es = get_global_seg();
841 regs->bp = (u32)vgafont16alt;
842 break;
843 default:
844 dprintf(1, "Get font info BH(%02x) was discarded\n", regs->bh);
845 return;
846 }
847 // Set byte/char of on screen font
848 regs->cx = GET_BDA(char_height) & 0xff;
849
850 // Set Highest char row
851 regs->dx = GET_BDA(video_rows);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400852}
853
854static void
855handle_1011XX(struct bregs *regs)
856{
857 debug_stub(regs);
858}
859
860static void
861handle_1011(struct bregs *regs)
862{
863 switch (regs->al) {
864 case 0x00: handle_101100(regs); break;
865 case 0x01: handle_101101(regs); break;
866 case 0x02: handle_101102(regs); break;
867 case 0x03: handle_101103(regs); break;
868 case 0x04: handle_101104(regs); break;
869 case 0x10: handle_101110(regs); break;
870 case 0x11: handle_101111(regs); break;
871 case 0x12: handle_101112(regs); break;
872 case 0x14: handle_101114(regs); break;
873 case 0x30: handle_101130(regs); break;
874 default: handle_1011XX(regs); break;
875 }
876}
877
878
879static void
880handle_101210(struct bregs *regs)
881{
Kevin O'Connore7132042009-05-25 00:10:35 -0400882 u16 crtc_addr = GET_BDA(crtc_address);
883 if (crtc_addr == VGAREG_MDA_CRTC_ADDRESS)
884 regs->bx = 0x0103;
885 else
886 regs->bx = 0x0003;
887 regs->cx = GET_BDA(video_switches) & 0x0f;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400888}
889
890static void
891handle_101230(struct bregs *regs)
892{
Kevin O'Connore7132042009-05-25 00:10:35 -0400893 u8 mctl = GET_BDA(modeset_ctl);
894 u8 vswt = GET_BDA(video_switches);
895 switch (regs->al) {
896 case 0x00:
897 // 200 lines
898 mctl = (mctl & ~0x10) | 0x80;
899 vswt = (vswt & ~0x0f) | 0x08;
900 break;
901 case 0x01:
902 // 350 lines
903 mctl &= ~0x90;
904 vswt = (vswt & ~0x0f) | 0x09;
905 break;
906 case 0x02:
907 // 400 lines
908 mctl = (mctl & ~0x80) | 0x10;
909 vswt = (vswt & ~0x0f) | 0x09;
910 break;
911 default:
912 dprintf(1, "Select vert res (%02x) was discarded\n", regs->al);
913 break;
914 }
915 SET_BDA(modeset_ctl, mctl);
916 SET_BDA(video_switches, vswt);
917 regs->al = 0x12;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400918}
919
920static void
921handle_101231(struct bregs *regs)
922{
Kevin O'Connore7132042009-05-25 00:10:35 -0400923 u8 v = (regs->al & 0x01) << 3;
924 u8 mctl = GET_BDA(video_ctl) & ~0x08;
925 SET_BDA(video_ctl, mctl | v);
926 regs->al = 0x12;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400927}
928
929static void
930handle_101232(struct bregs *regs)
931{
Kevin O'Connor8bc059e2009-05-17 21:19:36 -0400932 vgahw_enable_video_addressing(regs->al);
933 regs->al = 0x12;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400934}
935
936static void
937handle_101233(struct bregs *regs)
938{
Kevin O'Connore7132042009-05-25 00:10:35 -0400939 u8 v = ((regs->al << 1) & 0x02) ^ 0x02;
940 u8 v2 = GET_BDA(modeset_ctl) & ~0x02;
941 SET_BDA(modeset_ctl, v | v2);
942 regs->al = 0x12;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400943}
944
945static void
946handle_101234(struct bregs *regs)
947{
Kevin O'Connore7132042009-05-25 00:10:35 -0400948 u8 v = (regs->al & 0x01) ^ 0x01;
949 u8 v2 = GET_BDA(modeset_ctl) & ~0x01;
950 SET_BDA(modeset_ctl, v | v2);
951 regs->al = 0x12;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400952}
953
954static void
955handle_101235(struct bregs *regs)
956{
957 debug_stub(regs);
958 regs->al = 0x12;
959}
960
961static void
962handle_101236(struct bregs *regs)
963{
964 debug_stub(regs);
965 regs->al = 0x12;
966}
967
968static void
969handle_1012XX(struct bregs *regs)
970{
971 debug_stub(regs);
972}
973
974static void
975handle_1012(struct bregs *regs)
976{
977 switch (regs->bl) {
978 case 0x10: handle_101210(regs); break;
979 case 0x30: handle_101230(regs); break;
980 case 0x31: handle_101231(regs); break;
981 case 0x32: handle_101232(regs); break;
982 case 0x33: handle_101233(regs); break;
983 case 0x34: handle_101234(regs); break;
984 case 0x35: handle_101235(regs); break;
985 case 0x36: handle_101236(regs); break;
986 default: handle_1012XX(regs); break;
987 }
988
989 // XXX - cirrus has 1280, 1281, 1282, 1285, 129a, 12a0, 12a1, 12a2, 12ae
990}
991
992
993static void
994handle_1013(struct bregs *regs)
995{
996 // XXX - inline
Kevin O'Connor918b1562009-05-25 11:05:18 -0400997 struct cursorpos cp = {regs->dl, regs->dh, regs->bh};
998 biosfn_write_string(cp, regs->al, regs->bl, regs->cx
999 , regs->es, (void*)(regs->bp + 0));
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001000}
1001
1002
1003static void
1004handle_101a00(struct bregs *regs)
1005{
Kevin O'Connore7132042009-05-25 00:10:35 -04001006 regs->bx = GET_BDA(dcc_index);
1007 regs->al = 0x1a;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001008}
1009
1010static void
1011handle_101a01(struct bregs *regs)
1012{
Kevin O'Connore7132042009-05-25 00:10:35 -04001013 SET_BDA(dcc_index, regs->bl);
1014 dprintf(1, "Alternate Display code (%02x) was discarded\n", regs->bh);
1015 regs->al = 0x1a;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001016}
1017
1018static void
1019handle_101aXX(struct bregs *regs)
1020{
1021 debug_stub(regs);
1022}
1023
1024static void
1025handle_101a(struct bregs *regs)
1026{
1027 switch (regs->al) {
1028 case 0x00: handle_101a00(regs); break;
1029 case 0x01: handle_101a01(regs); break;
1030 default: handle_101aXX(regs); break;
1031 }
1032}
1033
1034
Kevin O'Connorca668642009-05-21 23:06:08 -04001035struct funcInfo {
1036 u16 static_functionality_off;
1037 u16 static_functionality_seg;
1038 u8 bda_0x49[30];
1039 u8 bda_0x84[3];
1040 u8 dcc_index;
1041 u8 dcc_alt;
1042 u16 colors;
1043 u8 pages;
1044 u8 scan_lines;
1045 u8 primary_char;
1046 u8 secondar_char;
1047 u8 misc;
1048 u8 non_vga_mode;
1049 u8 reserved_2f[2];
1050 u8 video_mem;
1051 u8 save_flags;
1052 u8 disp_info;
1053 u8 reserved_34[12];
1054};
1055
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001056static void
1057handle_101b(struct bregs *regs)
1058{
Kevin O'Connorca668642009-05-21 23:06:08 -04001059 u16 seg = regs->es;
1060 struct funcInfo *info = (void*)(regs->di+0);
1061 memset_far(seg, info, 0, sizeof(*info));
1062 // Address of static functionality table
1063 SET_FARVAR(seg, info->static_functionality_off, (u32)static_functionality);
1064 SET_FARVAR(seg, info->static_functionality_seg, get_global_seg());
1065
1066 // Hard coded copy from BIOS area. Should it be cleaner ?
1067 memcpy_far(seg, info->bda_0x49, SEG_BDA, (void*)0x49, 30);
1068 memcpy_far(seg, info->bda_0x84, SEG_BDA, (void*)0x84, 3);
1069
1070 SET_FARVAR(seg, info->dcc_index, GET_BDA(dcc_index));
1071 SET_FARVAR(seg, info->colors, 16);
1072 SET_FARVAR(seg, info->pages, 8);
1073 SET_FARVAR(seg, info->scan_lines, 2);
1074 SET_FARVAR(seg, info->video_mem, 3);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001075 regs->al = 0x1B;
1076}
1077
1078
1079static void
1080handle_101c00(struct bregs *regs)
1081{
Kevin O'Connorca668642009-05-21 23:06:08 -04001082 u16 flags = regs->cx;
1083 u16 size = 0;
1084 if (flags & 1)
1085 size += sizeof(struct saveVideoHardware);
1086 if (flags & 2)
1087 size += sizeof(struct saveBDAstate);
1088 if (flags & 4)
1089 size += sizeof(struct saveDACcolors);
1090 regs->bx = size;
1091 regs->al = 0x1c;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001092}
1093
1094static void
1095handle_101c01(struct bregs *regs)
1096{
Kevin O'Connorca668642009-05-21 23:06:08 -04001097 u16 flags = regs->cx;
1098 u16 seg = regs->es;
1099 void *data = (void*)(regs->bx+0);
1100 if (flags & 1) {
1101 vgahw_save_state(seg, data);
1102 data += sizeof(struct saveVideoHardware);
1103 }
1104 if (flags & 2) {
1105 biosfn_save_bda_state(seg, data);
1106 data += sizeof(struct saveBDAstate);
1107 }
1108 if (flags & 4)
1109 vgahw_save_dac_state(seg, data);
1110 regs->al = 0x1c;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001111}
1112
1113static void
1114handle_101c02(struct bregs *regs)
1115{
Kevin O'Connorca668642009-05-21 23:06:08 -04001116 u16 flags = regs->cx;
1117 u16 seg = regs->es;
1118 void *data = (void*)(regs->bx+0);
1119 if (flags & 1) {
1120 vgahw_restore_state(seg, data);
1121 data += sizeof(struct saveVideoHardware);
1122 }
1123 if (flags & 2) {
1124 biosfn_restore_bda_state(seg, data);
1125 data += sizeof(struct saveBDAstate);
1126 }
1127 if (flags & 4)
1128 vgahw_restore_dac_state(seg, data);
1129 regs->al = 0x1c;
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001130}
1131
1132static void
1133handle_101cXX(struct bregs *regs)
1134{
1135 debug_stub(regs);
1136}
1137
1138static void
1139handle_101c(struct bregs *regs)
1140{
1141 switch (regs->al) {
1142 case 0x00: handle_101c00(regs); break;
1143 case 0x01: handle_101c01(regs); break;
1144 case 0x02: handle_101c02(regs); break;
1145 default: handle_101cXX(regs); break;
1146 }
1147}
1148
1149
1150static void
1151handle_104f00(struct bregs *regs)
1152{
1153 // XXX - vbe_biosfn_return_controller_information(&AX,ES,DI);
1154 // XXX - OR cirrus_vesa_00h
1155}
1156
1157static void
1158handle_104f01(struct bregs *regs)
1159{
1160 // XXX - vbe_biosfn_return_mode_information(&AX,CX,ES,DI);
1161 // XXX - OR cirrus_vesa_01h
1162}
1163
1164static void
1165handle_104f02(struct bregs *regs)
1166{
1167 // XXX - vbe_biosfn_set_mode(&AX,BX,ES,DI);
1168 // XXX - OR cirrus_vesa_02h
1169}
1170
1171static void
1172handle_104f03(struct bregs *regs)
1173{
1174 // XXX - vbe_biosfn_return_current_mode
1175 // XXX - OR cirrus_vesa_03h
1176}
1177
1178static void
1179handle_104f04(struct bregs *regs)
1180{
1181 // XXX - vbe_biosfn_save_restore_state(&AX, CX, DX, ES, &BX);
1182}
1183
1184static void
1185handle_104f05(struct bregs *regs)
1186{
1187 // XXX - vbe_biosfn_display_window_control
1188 // XXX - OR cirrus_vesa_05h
1189}
1190
1191static void
1192handle_104f06(struct bregs *regs)
1193{
1194 // XXX - vbe_biosfn_set_get_logical_scan_line_length
1195 // XXX - OR cirrus_vesa_06h
1196}
1197
1198static void
1199handle_104f07(struct bregs *regs)
1200{
1201 // XXX - vbe_biosfn_set_get_display_start
1202 // XXX - OR cirrus_vesa_07h
1203}
1204
1205static void
1206handle_104f08(struct bregs *regs)
1207{
1208 // XXX - vbe_biosfn_set_get_dac_palette_format
1209}
1210
1211static void
1212handle_104f0a(struct bregs *regs)
1213{
1214 // XXX - vbe_biosfn_return_protected_mode_interface
1215}
1216
1217static void
1218handle_104fXX(struct bregs *regs)
1219{
1220 debug_stub(regs);
1221 regs->ax = 0x0100;
1222}
1223
1224static void
1225handle_104f(struct bregs *regs)
1226{
Kevin O'Connor99e08b72009-05-17 00:07:31 -04001227 if (! CONFIG_VBE || !vbe_has_vbe_display()) {
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001228 handle_104fXX(regs);
1229 return;
1230 }
1231
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001232 switch (regs->al) {
1233 case 0x00: handle_104f00(regs); break;
1234 case 0x01: handle_104f01(regs); break;
1235 case 0x02: handle_104f02(regs); break;
1236 case 0x03: handle_104f03(regs); break;
1237 case 0x04: handle_104f04(regs); break;
1238 case 0x05: handle_104f05(regs); break;
1239 case 0x06: handle_104f06(regs); break;
1240 case 0x07: handle_104f07(regs); break;
1241 case 0x08: handle_104f08(regs); break;
1242 case 0x0a: handle_104f0a(regs); break;
1243 default: handle_104fXX(regs); break;
1244 }
1245}
1246
1247
1248static void
1249handle_10XX(struct bregs *regs)
1250{
1251 debug_stub(regs);
1252}
1253
1254// INT 10h Video Support Service Entry Point
1255void VISIBLE16
1256handle_10(struct bregs *regs)
1257{
1258 debug_enter(regs, DEBUG_VGA_10);
1259 switch (regs->ah) {
1260 case 0x00: handle_1000(regs); break;
1261 case 0x01: handle_1001(regs); break;
1262 case 0x02: handle_1002(regs); break;
1263 case 0x03: handle_1003(regs); break;
1264 case 0x04: handle_1004(regs); break;
1265 case 0x05: handle_1005(regs); break;
1266 case 0x06: handle_1006(regs); break;
1267 case 0x07: handle_1007(regs); break;
1268 case 0x08: handle_1008(regs); break;
1269 case 0x09: handle_1009(regs); break;
1270 case 0x0a: handle_100a(regs); break;
1271 case 0x0b: handle_100b(regs); break;
1272 case 0x0c: handle_100c(regs); break;
1273 case 0x0d: handle_100d(regs); break;
1274 case 0x0e: handle_100e(regs); break;
1275 case 0x0f: handle_100f(regs); break;
1276 case 0x10: handle_1010(regs); break;
1277 case 0x11: handle_1011(regs); break;
1278 case 0x12: handle_1012(regs); break;
1279 case 0x13: handle_1013(regs); break;
1280 case 0x1a: handle_101a(regs); break;
1281 case 0x1b: handle_101b(regs); break;
1282 case 0x1c: handle_101c(regs); break;
1283 case 0x4f: handle_104f(regs); break;
1284 default: handle_10XX(regs); break;
1285 }
1286}
1287
1288
1289/****************************************************************
1290 * VGA post
1291 ****************************************************************/
1292
1293static void
1294init_bios_area()
1295{
1296 // init detected hardware BIOS Area
1297 // set 80x25 color (not clear from RBIL but usual)
1298 u16 eqf = GET_BDA(equipment_list_flags);
1299 SET_BDA(equipment_list_flags, (eqf & 0xffcf) | 0x20);
1300
1301 // Just for the first int10 find its children
1302
1303 // the default char height
1304 SET_BDA(char_height, 0x10);
1305
1306 // Clear the screen
1307 SET_BDA(video_ctl, 0x60);
1308
1309 // Set the basic screen we have
1310 SET_BDA(video_switches, 0xf9);
1311
1312 // Set the basic modeset options
1313 SET_BDA(modeset_ctl, 0x51);
1314
1315 // Set the default MSR
1316 SET_BDA(video_msr, 0x09);
1317}
1318
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001319void VISIBLE16
1320vga_post(struct bregs *regs)
1321{
1322 debug_enter(regs, DEBUG_VGA_POST);
1323
Kevin O'Connor8bc059e2009-05-17 21:19:36 -04001324 vgahw_init();
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001325
1326 init_bios_area();
1327
Kevin O'Connor21079f42009-05-16 21:30:10 -04001328 if (CONFIG_VBE)
1329 vbe_init();
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001330
1331 extern void entry_10(void);
Kevin O'Connord113a992009-05-16 21:05:02 -04001332 SET_IVT(0x10, get_global_seg(), (u32)entry_10);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001333
1334 if (CONFIG_CIRRUS)
1335 cirrus_init();
1336
1337 // XXX - clear screen and display info
1338
1339 // XXX: fill it
1340 SET_VGA(video_save_pointer_table[0], (u32)video_param_table);
Kevin O'Connord113a992009-05-16 21:05:02 -04001341 SET_VGA(video_save_pointer_table[1], get_global_seg());
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001342
1343 // Fixup checksum
1344 extern u8 _rom_header_size, _rom_header_checksum;
1345 SET_VGA(_rom_header_checksum, 0);
Kevin O'Connord113a992009-05-16 21:05:02 -04001346 u8 sum = -checksum_far(get_global_seg(), 0, _rom_header_size * 512);
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001347 SET_VGA(_rom_header_checksum, sum);
1348}