vgabios: Set cwidth/cheight/sstart in vgamode_s for cirrus/bochs.
[seabios.git] / vgasrc / vbe.c
1 // Video Bios Extensions handlers
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 #include "vgabios.h" // handle_104f
9 #include "config.h" // CONFIG_*
10 #include "bregs.h" // struct bregs
11 #include "vbe.h" // struct vbe_info
12 #include "util.h" // dprintf
13 #include "biosvar.h" // get_global_set
14 #include "vgahw.h" // vgahw_set_mode
15
16 u32 VBE_total_memory VAR16 = 256 * 1024;
17 u32 VBE_capabilities VAR16;
18 u32 VBE_framebuffer VAR16;
19 u16 VBE_win_granularity VAR16 = 64;
20
21 static void
22 vbe_104f00(struct bregs *regs)
23 {
24     u16 seg = regs->es;
25     struct vbe_info *info = (void*)(regs->di+0);
26
27     if (GET_FARVAR(seg, info->signature) == VBE2_SIGNATURE) {
28         dprintf(4, "Get VBE Controller: VBE2 Signature found\n");
29     } else if (GET_FARVAR(seg, info->signature) == VESA_SIGNATURE) {
30         dprintf(4, "Get VBE Controller: VESA Signature found\n");
31     } else {
32         dprintf(4, "Get VBE Controller: Invalid Signature\n");
33     }
34
35     memset_far(seg, info, 0, sizeof(*info));
36
37     SET_FARVAR(seg, info->signature, VESA_SIGNATURE);
38
39     SET_FARVAR(seg, info->version, 0x0200);
40
41     SET_FARVAR(seg, info->oem_string,
42             SEGOFF(get_global_seg(), (u32)VBE_OEM_STRING));
43     SET_FARVAR(seg, info->capabilities, GET_GLOBAL(VBE_capabilities));
44
45     /* We generate our mode list in the reserved field of the info block */
46     u16 *destmode = (void*)info->reserved;
47     SET_FARVAR(seg, info->video_mode, SEGOFF(seg, (u32)destmode));
48
49     /* Total memory (in 64 blocks) */
50     SET_FARVAR(seg, info->total_memory
51                , GET_GLOBAL(VBE_total_memory) / (64*1024));
52
53     SET_FARVAR(seg, info->oem_vendor_string,
54             SEGOFF(get_global_seg(), (u32)VBE_VENDOR_STRING));
55     SET_FARVAR(seg, info->oem_product_string,
56             SEGOFF(get_global_seg(), (u32)VBE_PRODUCT_STRING));
57     SET_FARVAR(seg, info->oem_revision_string,
58             SEGOFF(get_global_seg(), (u32)VBE_REVISION_STRING));
59
60     /* Fill list of modes */
61     u16 *last = (void*)&info->reserved[sizeof(info->reserved)];
62     vgahw_list_modes(seg, destmode, last - 1);
63
64     regs->ax = 0x004f;
65 }
66
67 static void
68 vbe_104f01(struct bregs *regs)
69 {
70     u16 seg = regs->es;
71     struct vbe_mode_info *info = (void*)(regs->di+0);
72     u16 mode = regs->cx;
73
74     dprintf(1, "VBE mode info request: %x\n", mode);
75
76     struct vgamode_s *vmode_g = vgahw_find_mode(mode);
77     if (! vmode_g) {
78         dprintf(1, "VBE mode %x not found\n", mode);
79         regs->ax = 0x0100;
80         return;
81     }
82
83     memset_far(seg, info, 0, sizeof(*info));
84     u16 mode_attr = VBE_MODE_ATTRIBUTE_SUPPORTED |
85                     VBE_MODE_ATTRIBUTE_EXTENDED_INFORMATION_AVAILABLE |
86                     VBE_MODE_ATTRIBUTE_COLOR_MODE |
87                     VBE_MODE_ATTRIBUTE_GRAPHICS_MODE |
88                     VBE_MODE_ATTRIBUTE_NOT_VGA_COMPATIBLE;
89     u32 framebuffer = GET_GLOBAL(VBE_framebuffer);
90     int depth = GET_GLOBAL(vmode_g->depth);
91     if (depth == 4)
92         mode_attr |= VBE_MODE_ATTRIBUTE_TTY_BIOS_SUPPORT;
93     else if (framebuffer)
94         mode_attr |= VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE;
95     SET_FARVAR(seg, info->mode_attributes, mode_attr);
96     SET_FARVAR(seg, info->winA_attributes,
97                VBE_WINDOW_ATTRIBUTE_RELOCATABLE |
98                VBE_WINDOW_ATTRIBUTE_READABLE |
99                VBE_WINDOW_ATTRIBUTE_WRITEABLE);
100     SET_FARVAR(seg, info->winB_attributes, 0);
101     SET_FARVAR(seg, info->win_granularity, GET_GLOBAL(VBE_win_granularity));
102     SET_FARVAR(seg, info->win_size, 64); /* Bank size 64K */
103     SET_FARVAR(seg, info->winA_seg, GET_GLOBAL(vmode_g->sstart));
104     SET_FARVAR(seg, info->winB_seg, 0x0);
105     SET_FARVAR(seg, info->win_func_ptr.segoff, 0x0);
106     int width = GET_GLOBAL(vmode_g->width);
107     int height = GET_GLOBAL(vmode_g->height);
108     int linesize = width * DIV_ROUND_UP(depth, 8);
109     SET_FARVAR(seg, info->bytes_per_scanline, linesize);
110     SET_FARVAR(seg, info->xres, width);
111     SET_FARVAR(seg, info->yres, height);
112     SET_FARVAR(seg, info->xcharsize, GET_GLOBAL(vmode_g->cwidth));
113     SET_FARVAR(seg, info->ycharsize, GET_GLOBAL(vmode_g->cheight));
114     if (depth == 4)
115         SET_FARVAR(seg, info->planes, 4);
116     else
117         SET_FARVAR(seg, info->planes, 1);
118     SET_FARVAR(seg, info->bits_per_pixel, depth);
119     SET_FARVAR(seg, info->banks, 1);
120     SET_FARVAR(seg, info->mem_model, GET_GLOBAL(vmode_g->memmodel));
121     SET_FARVAR(seg, info->bank_size, 0);
122     u32 pages = GET_GLOBAL(VBE_total_memory) / (height * linesize);
123     if (depth == 4)
124         SET_FARVAR(seg, info->pages, (pages / 4) - 1);
125     else
126         SET_FARVAR(seg, info->pages, pages - 1);
127     SET_FARVAR(seg, info->reserved0, 1);
128
129     u8 r_size, r_pos, g_size, g_pos, b_size, b_pos, a_size, a_pos;
130
131     switch (depth) {
132     case 15: r_size = 5; r_pos = 10; g_size = 5; g_pos = 5;
133              b_size = 5; b_pos = 0; a_size = 1; a_pos = 15; break;
134     case 16: r_size = 5; r_pos = 11; g_size = 6; g_pos = 5;
135              b_size = 5; b_pos = 0; a_size = 0; a_pos = 0; break;
136     case 24: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8;
137              b_size = 8; b_pos = 0; a_size = 0; a_pos = 0; break;
138     case 32: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8;
139              b_size = 8; b_pos = 0; a_size = 8; a_pos = 24; break;
140     default: r_size = 0; r_pos = 0; g_size = 0; g_pos = 0;
141              b_size = 0; b_pos = 0; a_size = 0; a_pos = 0; break;
142     }
143
144     SET_FARVAR(seg, info->red_size, r_size);
145     SET_FARVAR(seg, info->red_pos, r_pos);
146     SET_FARVAR(seg, info->green_size, g_size);
147     SET_FARVAR(seg, info->green_pos, g_pos);
148     SET_FARVAR(seg, info->blue_size, b_size);
149     SET_FARVAR(seg, info->blue_pos, b_pos);
150     SET_FARVAR(seg, info->alpha_size, a_size);
151     SET_FARVAR(seg, info->alpha_pos, a_pos);
152
153     if (depth == 32)
154         SET_FARVAR(seg, info->directcolor_info,
155                    VBE_DIRECTCOLOR_RESERVED_BITS_AVAILABLE);
156     else
157         SET_FARVAR(seg, info->directcolor_info, 0);
158
159     if (depth > 4)
160         SET_FARVAR(seg, info->phys_base, GET_GLOBAL(VBE_framebuffer));
161     else
162         SET_FARVAR(seg, info->phys_base, 0);
163
164     SET_FARVAR(seg, info->reserved1, 0);
165     SET_FARVAR(seg, info->reserved2, 0);
166     SET_FARVAR(seg, info->linear_bytes_per_scanline, linesize);
167     SET_FARVAR(seg, info->bank_pages, 0);
168     SET_FARVAR(seg, info->linear_pages, 0);
169     SET_FARVAR(seg, info->linear_red_size, r_size);
170     SET_FARVAR(seg, info->linear_red_pos, r_pos);
171     SET_FARVAR(seg, info->linear_green_size, g_size);
172     SET_FARVAR(seg, info->linear_green_pos, g_pos);
173     SET_FARVAR(seg, info->linear_blue_size, b_size);
174     SET_FARVAR(seg, info->linear_blue_pos, b_pos);
175     SET_FARVAR(seg, info->linear_alpha_size, a_size);
176     SET_FARVAR(seg, info->linear_alpha_pos, a_pos);
177     SET_FARVAR(seg, info->pixclock_max, 0);
178
179     regs->ax = 0x004f;
180 }
181
182 static void
183 vbe_104f02(struct bregs *regs)
184 {
185     dprintf(1, "VBE mode set: %x\n", regs->bx);
186
187     int mode = regs->bx & 0x1ff;
188     int flags = regs->bx & (MF_CUSTOMCRTC|MF_LINEARFB|MF_NOCLEARMEM);
189     int ret = vgahw_set_mode(mode, flags);
190
191     regs->ah = ret;
192     regs->al = 0x4f;
193 }
194
195 static void
196 vbe_104f03(struct bregs *regs)
197 {
198     u16 mode = GET_BDA(vbe_mode);
199     if (!mode)
200         regs->bx = GET_BDA(video_mode);
201
202     dprintf(1, "VBE current mode=%x\n", regs->bx);
203
204     regs->ax = 0x004f;
205 }
206
207 static void
208 vbe_104f04(struct bregs *regs)
209 {
210     debug_stub(regs);
211     regs->ax = 0x0100;
212 }
213
214 static void
215 vbe_104f05(struct bregs *regs)
216 {
217     debug_stub(regs);
218     regs->ax = 0x0100;
219 }
220
221 static void
222 vbe_104f06(struct bregs *regs)
223 {
224     debug_stub(regs);
225     regs->ax = 0x0100;
226 }
227
228 static void
229 vbe_104f07(struct bregs *regs)
230 {
231     debug_stub(regs);
232     regs->ax = 0x0100;
233 }
234
235 static void
236 vbe_104f08(struct bregs *regs)
237 {
238     debug_stub(regs);
239     regs->ax = 0x0100;
240 }
241
242 static void
243 vbe_104f0a(struct bregs *regs)
244 {
245     debug_stub(regs);
246     regs->ax = 0x0100;
247 }
248
249 static void
250 vbe_104fXX(struct bregs *regs)
251 {
252     debug_stub(regs);
253     regs->ax = 0x0100;
254 }
255
256 void
257 handle_104f(struct bregs *regs)
258 {
259     if (!CONFIG_VGA_VBE) {
260         vbe_104fXX(regs);
261         return;
262     }
263
264     switch (regs->al) {
265     case 0x00: vbe_104f00(regs); break;
266     case 0x01: vbe_104f01(regs); break;
267     case 0x02: vbe_104f02(regs); break;
268     case 0x03: vbe_104f03(regs); break;
269     case 0x04: vbe_104f04(regs); break;
270     case 0x05: vbe_104f05(regs); break;
271     case 0x06: vbe_104f06(regs); break;
272     case 0x07: vbe_104f07(regs); break;
273     case 0x08: vbe_104f08(regs); break;
274     case 0x0a: vbe_104f0a(regs); break;
275     default:   vbe_104fXX(regs); break;
276     }
277 }