vgabios: Implement VBE save/restore state function (func 04).
[seabios.git] / vgasrc / vbe.c
1 // Video Bios Extensions handlers
2 //
3 // Copyright (C) 2012  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2011  Julian Pidancet <julian.pidancet@citrix.com>
5 // Copyright (C) 2001-2008 the LGPL VGABios developers Team
6 //
7 // This file may be distributed under the terms of the GNU LGPLv3 license.
8
9 #include "vgabios.h" // handle_104f
10 #include "config.h" // CONFIG_*
11 #include "bregs.h" // struct bregs
12 #include "vbe.h" // struct vbe_info
13 #include "util.h" // dprintf
14 #include "biosvar.h" // get_global_set
15 #include "vgahw.h" // vgahw_set_mode
16
17 u32 VBE_total_memory VAR16 = 256 * 1024;
18 u32 VBE_capabilities VAR16;
19 u32 VBE_framebuffer VAR16;
20 u16 VBE_win_granularity VAR16 = 64;
21
22 static void
23 vbe_104f00(struct bregs *regs)
24 {
25     u16 seg = regs->es;
26     struct vbe_info *info = (void*)(regs->di+0);
27
28     if (GET_FARVAR(seg, info->signature) == VBE2_SIGNATURE) {
29         dprintf(4, "Get VBE Controller: VBE2 Signature found\n");
30     } else if (GET_FARVAR(seg, info->signature) == VESA_SIGNATURE) {
31         dprintf(4, "Get VBE Controller: VESA Signature found\n");
32     } else {
33         dprintf(4, "Get VBE Controller: Invalid Signature\n");
34     }
35
36     memset_far(seg, info, 0, sizeof(*info));
37
38     SET_FARVAR(seg, info->signature, VESA_SIGNATURE);
39
40     SET_FARVAR(seg, info->version, 0x0200);
41
42     SET_FARVAR(seg, info->oem_string,
43             SEGOFF(get_global_seg(), (u32)VBE_OEM_STRING));
44     SET_FARVAR(seg, info->capabilities, GET_GLOBAL(VBE_capabilities));
45
46     /* We generate our mode list in the reserved field of the info block */
47     u16 *destmode = (void*)info->reserved;
48     SET_FARVAR(seg, info->video_mode, SEGOFF(seg, (u32)destmode));
49
50     /* Total memory (in 64 blocks) */
51     SET_FARVAR(seg, info->total_memory
52                , GET_GLOBAL(VBE_total_memory) / (64*1024));
53
54     SET_FARVAR(seg, info->oem_vendor_string,
55             SEGOFF(get_global_seg(), (u32)VBE_VENDOR_STRING));
56     SET_FARVAR(seg, info->oem_product_string,
57             SEGOFF(get_global_seg(), (u32)VBE_PRODUCT_STRING));
58     SET_FARVAR(seg, info->oem_revision_string,
59             SEGOFF(get_global_seg(), (u32)VBE_REVISION_STRING));
60
61     /* Fill list of modes */
62     u16 *last = (void*)&info->reserved[sizeof(info->reserved)];
63     vgahw_list_modes(seg, destmode, last - 1);
64
65     regs->ax = 0x004f;
66 }
67
68 static void
69 vbe_104f01(struct bregs *regs)
70 {
71     u16 seg = regs->es;
72     struct vbe_mode_info *info = (void*)(regs->di+0);
73     u16 mode = regs->cx;
74
75     dprintf(1, "VBE mode info request: %x\n", mode);
76
77     struct vgamode_s *vmode_g = vgahw_find_mode(mode);
78     if (! vmode_g) {
79         dprintf(1, "VBE mode %x not found\n", mode);
80         regs->ax = 0x0100;
81         return;
82     }
83
84     memset_far(seg, info, 0, sizeof(*info));
85     u16 mode_attr = VBE_MODE_ATTRIBUTE_SUPPORTED |
86                     VBE_MODE_ATTRIBUTE_EXTENDED_INFORMATION_AVAILABLE |
87                     VBE_MODE_ATTRIBUTE_COLOR_MODE |
88                     VBE_MODE_ATTRIBUTE_GRAPHICS_MODE |
89                     VBE_MODE_ATTRIBUTE_NOT_VGA_COMPATIBLE;
90     u32 framebuffer = GET_GLOBAL(VBE_framebuffer);
91     int depth = GET_GLOBAL(vmode_g->depth);
92     if (depth == 4)
93         mode_attr |= VBE_MODE_ATTRIBUTE_TTY_BIOS_SUPPORT;
94     else if (framebuffer)
95         mode_attr |= VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE;
96     SET_FARVAR(seg, info->mode_attributes, mode_attr);
97     SET_FARVAR(seg, info->winA_attributes,
98                VBE_WINDOW_ATTRIBUTE_RELOCATABLE |
99                VBE_WINDOW_ATTRIBUTE_READABLE |
100                VBE_WINDOW_ATTRIBUTE_WRITEABLE);
101     SET_FARVAR(seg, info->winB_attributes, 0);
102     SET_FARVAR(seg, info->win_granularity, GET_GLOBAL(VBE_win_granularity));
103     SET_FARVAR(seg, info->win_size, 64); /* Bank size 64K */
104     SET_FARVAR(seg, info->winA_seg, GET_GLOBAL(vmode_g->sstart));
105     SET_FARVAR(seg, info->winB_seg, 0x0);
106     extern void entry_104f05(void);
107     SET_FARVAR(seg, info->win_func_ptr
108                , SEGOFF(get_global_seg(), (u32)entry_104f05));
109     int width = GET_GLOBAL(vmode_g->width);
110     int height = GET_GLOBAL(vmode_g->height);
111     int linesize = DIV_ROUND_UP(width * vga_bpp(vmode_g), 8);
112     SET_FARVAR(seg, info->bytes_per_scanline, linesize);
113     SET_FARVAR(seg, info->xres, width);
114     SET_FARVAR(seg, info->yres, height);
115     SET_FARVAR(seg, info->xcharsize, GET_GLOBAL(vmode_g->cwidth));
116     SET_FARVAR(seg, info->ycharsize, GET_GLOBAL(vmode_g->cheight));
117     int planes = (depth == 4) ? 4 : 1;
118     SET_FARVAR(seg, info->planes, planes);
119     SET_FARVAR(seg, info->bits_per_pixel, depth);
120     SET_FARVAR(seg, info->banks, 1);
121     SET_FARVAR(seg, info->mem_model, GET_GLOBAL(vmode_g->memmodel));
122     SET_FARVAR(seg, info->bank_size, 0);
123     u32 pages = GET_GLOBAL(VBE_total_memory) / (height * linesize);
124     SET_FARVAR(seg, info->pages, (pages / planes) - 1);
125     SET_FARVAR(seg, info->reserved0, 1);
126
127     u8 r_size, r_pos, g_size, g_pos, b_size, b_pos, a_size, a_pos;
128
129     switch (depth) {
130     case 15: r_size = 5; r_pos = 10; g_size = 5; g_pos = 5;
131              b_size = 5; b_pos = 0; a_size = 1; a_pos = 15; break;
132     case 16: r_size = 5; r_pos = 11; g_size = 6; g_pos = 5;
133              b_size = 5; b_pos = 0; a_size = 0; a_pos = 0; break;
134     case 24: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8;
135              b_size = 8; b_pos = 0; a_size = 0; a_pos = 0; break;
136     case 32: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8;
137              b_size = 8; b_pos = 0; a_size = 8; a_pos = 24; break;
138     default: r_size = 0; r_pos = 0; g_size = 0; g_pos = 0;
139              b_size = 0; b_pos = 0; a_size = 0; a_pos = 0; break;
140     }
141
142     SET_FARVAR(seg, info->red_size, r_size);
143     SET_FARVAR(seg, info->red_pos, r_pos);
144     SET_FARVAR(seg, info->green_size, g_size);
145     SET_FARVAR(seg, info->green_pos, g_pos);
146     SET_FARVAR(seg, info->blue_size, b_size);
147     SET_FARVAR(seg, info->blue_pos, b_pos);
148     SET_FARVAR(seg, info->alpha_size, a_size);
149     SET_FARVAR(seg, info->alpha_pos, a_pos);
150
151     if (depth == 32)
152         SET_FARVAR(seg, info->directcolor_info,
153                    VBE_DIRECTCOLOR_RESERVED_BITS_AVAILABLE);
154     else
155         SET_FARVAR(seg, info->directcolor_info, 0);
156
157     if (depth > 4)
158         SET_FARVAR(seg, info->phys_base, GET_GLOBAL(VBE_framebuffer));
159     else
160         SET_FARVAR(seg, info->phys_base, 0);
161
162     SET_FARVAR(seg, info->reserved1, 0);
163     SET_FARVAR(seg, info->reserved2, 0);
164     SET_FARVAR(seg, info->linear_bytes_per_scanline, linesize);
165     SET_FARVAR(seg, info->bank_pages, 0);
166     SET_FARVAR(seg, info->linear_pages, 0);
167     SET_FARVAR(seg, info->linear_red_size, r_size);
168     SET_FARVAR(seg, info->linear_red_pos, r_pos);
169     SET_FARVAR(seg, info->linear_green_size, g_size);
170     SET_FARVAR(seg, info->linear_green_pos, g_pos);
171     SET_FARVAR(seg, info->linear_blue_size, b_size);
172     SET_FARVAR(seg, info->linear_blue_pos, b_pos);
173     SET_FARVAR(seg, info->linear_alpha_size, a_size);
174     SET_FARVAR(seg, info->linear_alpha_pos, a_pos);
175     SET_FARVAR(seg, info->pixclock_max, 0);
176
177     regs->ax = 0x004f;
178 }
179
180 static void
181 vbe_104f02(struct bregs *regs)
182 {
183     dprintf(1, "VBE mode set: %x\n", regs->bx);
184
185     int mode = regs->bx & ~MF_VBEFLAGS;
186     int flags = regs->bx & MF_VBEFLAGS;
187     int ret = vga_set_mode(mode, flags);
188
189     regs->ah = ret;
190     regs->al = 0x4f;
191 }
192
193 static void
194 vbe_104f03(struct bregs *regs)
195 {
196     regs->bx = GET_BDA(vbe_mode);
197     dprintf(1, "VBE current mode=%x\n", regs->bx);
198     regs->ax = 0x004f;
199 }
200
201 static void
202 vbe_104f04(struct bregs *regs)
203 {
204     u16 seg = regs->es;
205     void *data = (void*)(regs->bx+0);
206     u16 states = regs->cx;
207     if (states & ~0x0f)
208         goto fail;
209     int ret;
210     switch (regs->dl) {
211     case 0x00:
212         ret = vgahw_size_state(states);
213         if (ret < 0)
214             goto fail;
215         regs->bx = ret / 64;
216         break;
217     case 0x01:
218         ret = vgahw_save_state(seg, data, states);
219         if (ret)
220             goto fail;
221         break;
222     case 0x02:
223         ret = vgahw_restore_state(seg, data, states);
224         if (ret)
225             goto fail;
226         break;
227     default:
228         goto fail;
229     }
230     regs->ax = 0x004f;
231     return;
232 fail:
233     regs->ax = 0x014f;
234 }
235
236 void VISIBLE16
237 vbe_104f05(struct bregs *regs)
238 {
239     if (regs->bh > 1 || regs->bl > 1)
240         goto fail;
241     if (GET_BDA(vbe_mode) & MF_LINEARFB) {
242         regs->ah = VBE_RETURN_STATUS_INVALID;
243         return;
244     }
245     struct vgamode_s *vmode_g = get_current_mode();
246     if (! vmode_g)
247         goto fail;
248     if (regs->bh) {
249         int ret = vgahw_get_window(vmode_g, regs->bl);
250         if (ret < 0)
251             goto fail;
252         regs->dx = ret;
253         regs->ax = 0x004f;
254         return;
255     }
256     int ret = vgahw_set_window(vmode_g, regs->bl, regs->dx);
257     if (ret)
258         goto fail;
259     regs->ax = 0x004f;
260     return;
261 fail:
262     regs->ax = 0x0100;
263 }
264
265 static void
266 vbe_104f06(struct bregs *regs)
267 {
268     if (regs->bl > 0x02)
269         goto fail;
270     struct vgamode_s *vmode_g = get_current_mode();
271     if (! vmode_g)
272         goto fail;
273     int bpp = vga_bpp(vmode_g);
274
275     if (regs->bl == 0x00) {
276         int ret = vgahw_set_linelength(vmode_g, DIV_ROUND_UP(regs->cx * bpp, 8));
277         if (ret)
278             goto fail;
279     } else if (regs->bl == 0x02) {
280         int ret = vgahw_set_linelength(vmode_g, regs->cx);
281         if (ret)
282             goto fail;
283     }
284     int linelength = vgahw_get_linelength(vmode_g);
285     if (linelength < 0)
286         goto fail;
287
288     regs->bx = linelength;
289     regs->cx = (linelength * 8) / bpp;
290     regs->dx = GET_GLOBAL(VBE_total_memory) / linelength;
291     regs->ax = 0x004f;
292     return;
293 fail:
294     regs->ax = 0x014f;
295 }
296
297 static void
298 vbe_104f07(struct bregs *regs)
299 {
300     struct vgamode_s *vmode_g = get_current_mode();
301     if (! vmode_g)
302         goto fail;
303     int bpp = vga_bpp(vmode_g);
304     int linelength = vgahw_get_linelength(vmode_g);
305     if (linelength < 0)
306         goto fail;
307
308     int ret;
309     switch (regs->bl) {
310     case 0x80:
311     case 0x00:
312         ret = vgahw_set_displaystart(
313             vmode_g, DIV_ROUND_UP(regs->cx * bpp, 8) + linelength * regs->dx);
314         if (ret)
315             goto fail;
316         break;
317     case 0x01:
318         ret = vgahw_get_displaystart(vmode_g);
319         if (ret < 0)
320             goto fail;
321         regs->dx = ret / linelength;
322         regs->cx = (ret % linelength) * 8 / bpp;
323         break;
324     default:
325         goto fail;
326     }
327     regs->ax = 0x004f;
328     return;
329 fail:
330     regs->ax = 0x014f;
331 }
332
333 static void
334 vbe_104f08(struct bregs *regs)
335 {
336     struct vgamode_s *vmode_g = get_current_mode();
337     if (! vmode_g)
338         goto fail;
339     u8 memmodel = GET_GLOBAL(vmode_g->memmodel);
340     if (memmodel == MM_DIRECT || memmodel == MM_YUV) {
341         regs->ax = 0x034f;
342         return;
343     }
344     if (regs->bl > 1)
345         goto fail;
346     if (regs->bl == 0) {
347         int ret = vgahw_set_dacformat(vmode_g, regs->bh);
348         if (ret < 0)
349             goto fail;
350     }
351     int ret = vgahw_get_dacformat(vmode_g);
352     if (ret < 0)
353         goto fail;
354     regs->bh = ret;
355     regs->ax = 0x004f;
356     return;
357 fail:
358     regs->ax = 0x014f;
359 }
360
361 static void
362 vbe_104f0a(struct bregs *regs)
363 {
364     debug_stub(regs);
365     regs->ax = 0x0100;
366 }
367
368 static void
369 vbe_104f10(struct bregs *regs)
370 {
371     switch (regs->bl) {
372     case 0x00:
373         regs->bx = 0x0f30;
374         break;
375     case 0x01:
376         SET_BDA(vbe_flag, regs->bh);
377         break;
378     case 0x02:
379         regs->bh = GET_BDA(vbe_flag);
380         break;
381     default:
382         regs->ax = 0x014f;
383         return;
384     }
385     regs->ax = 0x004f;
386 }
387
388 static void
389 vbe_104fXX(struct bregs *regs)
390 {
391     debug_stub(regs);
392     regs->ax = 0x0100;
393 }
394
395 void
396 handle_104f(struct bregs *regs)
397 {
398     if (!CONFIG_VGA_VBE) {
399         vbe_104fXX(regs);
400         return;
401     }
402
403     switch (regs->al) {
404     case 0x00: vbe_104f00(regs); break;
405     case 0x01: vbe_104f01(regs); break;
406     case 0x02: vbe_104f02(regs); break;
407     case 0x03: vbe_104f03(regs); break;
408     case 0x04: vbe_104f04(regs); break;
409     case 0x05: vbe_104f05(regs); break;
410     case 0x06: vbe_104f06(regs); break;
411     case 0x07: vbe_104f07(regs); break;
412     case 0x08: vbe_104f08(regs); break;
413     case 0x0a: vbe_104f0a(regs); break;
414     case 0x10: vbe_104f10(regs); break;
415     default:   vbe_104fXX(regs); break;
416     }
417 }