]>
Commit | Line | Data |
---|---|---|
e89f66ec | 1 | /* |
4fa0f5d2 | 2 | * QEMU VGA Emulator. |
5fafdf24 | 3 | * |
e89f66ec | 4 | * Copyright (c) 2003 Fabrice Bellard |
5fafdf24 | 5 | * |
e89f66ec FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
87ecb68b PB |
24 | #include "hw.h" |
25 | #include "console.h" | |
26 | #include "pc.h" | |
27 | #include "pci.h" | |
798b0c25 | 28 | #include "vga_int.h" |
94470844 | 29 | #include "pixel_ops.h" |
cb5a7aa8 | 30 | #include "qemu-timer.h" |
2bec46dc | 31 | #include "kvm.h" |
e89f66ec | 32 | |
e89f66ec | 33 | //#define DEBUG_VGA |
17b0018b | 34 | //#define DEBUG_VGA_MEM |
a41bc9af FB |
35 | //#define DEBUG_VGA_REG |
36 | ||
4fa0f5d2 FB |
37 | //#define DEBUG_BOCHS_VBE |
38 | ||
e89f66ec | 39 | /* force some bits to zero */ |
798b0c25 | 40 | const uint8_t sr_mask[8] = { |
e89f66ec FB |
41 | (uint8_t)~0xfc, |
42 | (uint8_t)~0xc2, | |
43 | (uint8_t)~0xf0, | |
44 | (uint8_t)~0xc0, | |
45 | (uint8_t)~0xf1, | |
46 | (uint8_t)~0xff, | |
47 | (uint8_t)~0xff, | |
48 | (uint8_t)~0x00, | |
49 | }; | |
50 | ||
798b0c25 | 51 | const uint8_t gr_mask[16] = { |
e89f66ec FB |
52 | (uint8_t)~0xf0, /* 0x00 */ |
53 | (uint8_t)~0xf0, /* 0x01 */ | |
54 | (uint8_t)~0xf0, /* 0x02 */ | |
55 | (uint8_t)~0xe0, /* 0x03 */ | |
56 | (uint8_t)~0xfc, /* 0x04 */ | |
57 | (uint8_t)~0x84, /* 0x05 */ | |
58 | (uint8_t)~0xf0, /* 0x06 */ | |
59 | (uint8_t)~0xf0, /* 0x07 */ | |
60 | (uint8_t)~0x00, /* 0x08 */ | |
61 | (uint8_t)~0xff, /* 0x09 */ | |
62 | (uint8_t)~0xff, /* 0x0a */ | |
63 | (uint8_t)~0xff, /* 0x0b */ | |
64 | (uint8_t)~0xff, /* 0x0c */ | |
65 | (uint8_t)~0xff, /* 0x0d */ | |
66 | (uint8_t)~0xff, /* 0x0e */ | |
67 | (uint8_t)~0xff, /* 0x0f */ | |
68 | }; | |
69 | ||
70 | #define cbswap_32(__x) \ | |
71 | ((uint32_t)( \ | |
72 | (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \ | |
73 | (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \ | |
74 | (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \ | |
75 | (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) )) | |
76 | ||
b8ed223b | 77 | #ifdef WORDS_BIGENDIAN |
e89f66ec FB |
78 | #define PAT(x) cbswap_32(x) |
79 | #else | |
80 | #define PAT(x) (x) | |
81 | #endif | |
82 | ||
b8ed223b FB |
83 | #ifdef WORDS_BIGENDIAN |
84 | #define BIG 1 | |
85 | #else | |
86 | #define BIG 0 | |
87 | #endif | |
88 | ||
89 | #ifdef WORDS_BIGENDIAN | |
90 | #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff) | |
91 | #else | |
92 | #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff) | |
93 | #endif | |
94 | ||
e89f66ec FB |
95 | static const uint32_t mask16[16] = { |
96 | PAT(0x00000000), | |
97 | PAT(0x000000ff), | |
98 | PAT(0x0000ff00), | |
99 | PAT(0x0000ffff), | |
100 | PAT(0x00ff0000), | |
101 | PAT(0x00ff00ff), | |
102 | PAT(0x00ffff00), | |
103 | PAT(0x00ffffff), | |
104 | PAT(0xff000000), | |
105 | PAT(0xff0000ff), | |
106 | PAT(0xff00ff00), | |
107 | PAT(0xff00ffff), | |
108 | PAT(0xffff0000), | |
109 | PAT(0xffff00ff), | |
110 | PAT(0xffffff00), | |
111 | PAT(0xffffffff), | |
112 | }; | |
113 | ||
114 | #undef PAT | |
115 | ||
b8ed223b | 116 | #ifdef WORDS_BIGENDIAN |
e89f66ec FB |
117 | #define PAT(x) (x) |
118 | #else | |
119 | #define PAT(x) cbswap_32(x) | |
120 | #endif | |
121 | ||
122 | static const uint32_t dmask16[16] = { | |
123 | PAT(0x00000000), | |
124 | PAT(0x000000ff), | |
125 | PAT(0x0000ff00), | |
126 | PAT(0x0000ffff), | |
127 | PAT(0x00ff0000), | |
128 | PAT(0x00ff00ff), | |
129 | PAT(0x00ffff00), | |
130 | PAT(0x00ffffff), | |
131 | PAT(0xff000000), | |
132 | PAT(0xff0000ff), | |
133 | PAT(0xff00ff00), | |
134 | PAT(0xff00ffff), | |
135 | PAT(0xffff0000), | |
136 | PAT(0xffff00ff), | |
137 | PAT(0xffffff00), | |
138 | PAT(0xffffffff), | |
139 | }; | |
140 | ||
141 | static const uint32_t dmask4[4] = { | |
142 | PAT(0x00000000), | |
143 | PAT(0x0000ffff), | |
144 | PAT(0xffff0000), | |
145 | PAT(0xffffffff), | |
146 | }; | |
147 | ||
148 | static uint32_t expand4[256]; | |
149 | static uint16_t expand2[256]; | |
17b0018b | 150 | static uint8_t expand4to8[16]; |
e89f66ec | 151 | |
95219897 PB |
152 | static void vga_screen_dump(void *opaque, const char *filename); |
153 | ||
cb5a7aa8 | 154 | static void vga_dumb_update_retrace_info(VGAState *s) |
155 | { | |
156 | (void) s; | |
157 | } | |
158 | ||
159 | static void vga_precise_update_retrace_info(VGAState *s) | |
160 | { | |
161 | int htotal_chars; | |
162 | int hretr_start_char; | |
163 | int hretr_skew_chars; | |
164 | int hretr_end_char; | |
165 | ||
166 | int vtotal_lines; | |
167 | int vretr_start_line; | |
168 | int vretr_end_line; | |
169 | ||
170 | int div2, sldiv2, dots; | |
171 | int clocking_mode; | |
172 | int clock_sel; | |
b0f74c87 | 173 | const int clk_hz[] = {25175000, 28322000, 25175000, 25175000}; |
cb5a7aa8 | 174 | int64_t chars_per_sec; |
175 | struct vga_precise_retrace *r = &s->retrace_info.precise; | |
176 | ||
177 | htotal_chars = s->cr[0x00] + 5; | |
178 | hretr_start_char = s->cr[0x04]; | |
179 | hretr_skew_chars = (s->cr[0x05] >> 5) & 3; | |
180 | hretr_end_char = s->cr[0x05] & 0x1f; | |
181 | ||
182 | vtotal_lines = (s->cr[0x06] | |
183 | | (((s->cr[0x07] & 1) | ((s->cr[0x07] >> 4) & 2)) << 8)) + 2 | |
184 | ; | |
185 | vretr_start_line = s->cr[0x10] | |
186 | | ((((s->cr[0x07] >> 2) & 1) | ((s->cr[0x07] >> 6) & 2)) << 8) | |
187 | ; | |
188 | vretr_end_line = s->cr[0x11] & 0xf; | |
189 | ||
190 | ||
191 | div2 = (s->cr[0x17] >> 2) & 1; | |
192 | sldiv2 = (s->cr[0x17] >> 3) & 1; | |
193 | ||
194 | clocking_mode = (s->sr[0x01] >> 3) & 1; | |
195 | clock_sel = (s->msr >> 2) & 3; | |
f87fc09b | 196 | dots = (s->msr & 1) ? 8 : 9; |
cb5a7aa8 | 197 | |
b0f74c87 | 198 | chars_per_sec = clk_hz[clock_sel] / dots; |
cb5a7aa8 | 199 | |
200 | htotal_chars <<= clocking_mode; | |
201 | ||
202 | r->total_chars = vtotal_lines * htotal_chars; | |
cb5a7aa8 | 203 | if (r->freq) { |
204 | r->ticks_per_char = ticks_per_sec / (r->total_chars * r->freq); | |
205 | } else { | |
206 | r->ticks_per_char = ticks_per_sec / chars_per_sec; | |
207 | } | |
208 | ||
209 | r->vstart = vretr_start_line; | |
210 | r->vend = r->vstart + vretr_end_line + 1; | |
211 | ||
212 | r->hstart = hretr_start_char + hretr_skew_chars; | |
213 | r->hend = r->hstart + hretr_end_char + 1; | |
214 | r->htotal = htotal_chars; | |
215 | ||
f87fc09b | 216 | #if 0 |
cb5a7aa8 | 217 | printf ( |
f87fc09b | 218 | "hz=%f\n" |
cb5a7aa8 | 219 | "htotal = %d\n" |
220 | "hretr_start = %d\n" | |
221 | "hretr_skew = %d\n" | |
222 | "hretr_end = %d\n" | |
223 | "vtotal = %d\n" | |
224 | "vretr_start = %d\n" | |
225 | "vretr_end = %d\n" | |
226 | "div2 = %d sldiv2 = %d\n" | |
227 | "clocking_mode = %d\n" | |
228 | "clock_sel = %d %d\n" | |
229 | "dots = %d\n" | |
230 | "ticks/char = %lld\n" | |
231 | "\n", | |
f87fc09b | 232 | (double) ticks_per_sec / (r->ticks_per_char * r->total_chars), |
cb5a7aa8 | 233 | htotal_chars, |
234 | hretr_start_char, | |
235 | hretr_skew_chars, | |
236 | hretr_end_char, | |
237 | vtotal_lines, | |
238 | vretr_start_line, | |
239 | vretr_end_line, | |
240 | div2, sldiv2, | |
241 | clocking_mode, | |
242 | clock_sel, | |
b0f74c87 | 243 | clk_hz[clock_sel], |
cb5a7aa8 | 244 | dots, |
245 | r->ticks_per_char | |
246 | ); | |
247 | #endif | |
248 | } | |
249 | ||
250 | static uint8_t vga_precise_retrace(VGAState *s) | |
251 | { | |
252 | struct vga_precise_retrace *r = &s->retrace_info.precise; | |
253 | uint8_t val = s->st01 & ~(ST01_V_RETRACE | ST01_DISP_ENABLE); | |
254 | ||
255 | if (r->total_chars) { | |
256 | int cur_line, cur_line_char, cur_char; | |
257 | int64_t cur_tick; | |
258 | ||
259 | cur_tick = qemu_get_clock(vm_clock); | |
260 | ||
261 | cur_char = (cur_tick / r->ticks_per_char) % r->total_chars; | |
262 | cur_line = cur_char / r->htotal; | |
263 | ||
264 | if (cur_line >= r->vstart && cur_line <= r->vend) { | |
265 | val |= ST01_V_RETRACE | ST01_DISP_ENABLE; | |
f87fc09b | 266 | } else { |
267 | cur_line_char = cur_char % r->htotal; | |
268 | if (cur_line_char >= r->hstart && cur_line_char <= r->hend) { | |
269 | val |= ST01_DISP_ENABLE; | |
270 | } | |
cb5a7aa8 | 271 | } |
272 | ||
273 | return val; | |
274 | } else { | |
275 | return s->st01 ^ (ST01_V_RETRACE | ST01_DISP_ENABLE); | |
276 | } | |
277 | } | |
278 | ||
279 | static uint8_t vga_dumb_retrace(VGAState *s) | |
280 | { | |
281 | return s->st01 ^ (ST01_V_RETRACE | ST01_DISP_ENABLE); | |
282 | } | |
283 | ||
0f35920c | 284 | static uint32_t vga_ioport_read(void *opaque, uint32_t addr) |
e89f66ec | 285 | { |
0f35920c | 286 | VGAState *s = opaque; |
e89f66ec FB |
287 | int val, index; |
288 | ||
289 | /* check port range access depending on color/monochrome mode */ | |
290 | if ((addr >= 0x3b0 && addr <= 0x3bf && (s->msr & MSR_COLOR_EMULATION)) || | |
291 | (addr >= 0x3d0 && addr <= 0x3df && !(s->msr & MSR_COLOR_EMULATION))) { | |
292 | val = 0xff; | |
293 | } else { | |
294 | switch(addr) { | |
295 | case 0x3c0: | |
296 | if (s->ar_flip_flop == 0) { | |
297 | val = s->ar_index; | |
298 | } else { | |
299 | val = 0; | |
300 | } | |
301 | break; | |
302 | case 0x3c1: | |
303 | index = s->ar_index & 0x1f; | |
5fafdf24 | 304 | if (index < 21) |
e89f66ec FB |
305 | val = s->ar[index]; |
306 | else | |
307 | val = 0; | |
308 | break; | |
309 | case 0x3c2: | |
310 | val = s->st00; | |
311 | break; | |
312 | case 0x3c4: | |
313 | val = s->sr_index; | |
314 | break; | |
315 | case 0x3c5: | |
316 | val = s->sr[s->sr_index]; | |
a41bc9af FB |
317 | #ifdef DEBUG_VGA_REG |
318 | printf("vga: read SR%x = 0x%02x\n", s->sr_index, val); | |
319 | #endif | |
e89f66ec FB |
320 | break; |
321 | case 0x3c7: | |
322 | val = s->dac_state; | |
323 | break; | |
e6eccb38 FB |
324 | case 0x3c8: |
325 | val = s->dac_write_index; | |
326 | break; | |
e89f66ec FB |
327 | case 0x3c9: |
328 | val = s->palette[s->dac_read_index * 3 + s->dac_sub_index]; | |
329 | if (++s->dac_sub_index == 3) { | |
330 | s->dac_sub_index = 0; | |
331 | s->dac_read_index++; | |
332 | } | |
333 | break; | |
334 | case 0x3ca: | |
335 | val = s->fcr; | |
336 | break; | |
337 | case 0x3cc: | |
338 | val = s->msr; | |
339 | break; | |
340 | case 0x3ce: | |
341 | val = s->gr_index; | |
342 | break; | |
343 | case 0x3cf: | |
344 | val = s->gr[s->gr_index]; | |
a41bc9af FB |
345 | #ifdef DEBUG_VGA_REG |
346 | printf("vga: read GR%x = 0x%02x\n", s->gr_index, val); | |
347 | #endif | |
e89f66ec FB |
348 | break; |
349 | case 0x3b4: | |
350 | case 0x3d4: | |
351 | val = s->cr_index; | |
352 | break; | |
353 | case 0x3b5: | |
354 | case 0x3d5: | |
355 | val = s->cr[s->cr_index]; | |
a41bc9af FB |
356 | #ifdef DEBUG_VGA_REG |
357 | printf("vga: read CR%x = 0x%02x\n", s->cr_index, val); | |
a41bc9af | 358 | #endif |
e89f66ec FB |
359 | break; |
360 | case 0x3ba: | |
361 | case 0x3da: | |
362 | /* just toggle to fool polling */ | |
cb5a7aa8 | 363 | val = s->st01 = s->retrace(s); |
e89f66ec FB |
364 | s->ar_flip_flop = 0; |
365 | break; | |
366 | default: | |
367 | val = 0x00; | |
368 | break; | |
369 | } | |
370 | } | |
4fa0f5d2 | 371 | #if defined(DEBUG_VGA) |
e89f66ec FB |
372 | printf("VGA: read addr=0x%04x data=0x%02x\n", addr, val); |
373 | #endif | |
374 | return val; | |
375 | } | |
376 | ||
0f35920c | 377 | static void vga_ioport_write(void *opaque, uint32_t addr, uint32_t val) |
e89f66ec | 378 | { |
0f35920c | 379 | VGAState *s = opaque; |
5467a722 | 380 | int index; |
e89f66ec FB |
381 | |
382 | /* check port range access depending on color/monochrome mode */ | |
383 | if ((addr >= 0x3b0 && addr <= 0x3bf && (s->msr & MSR_COLOR_EMULATION)) || | |
384 | (addr >= 0x3d0 && addr <= 0x3df && !(s->msr & MSR_COLOR_EMULATION))) | |
385 | return; | |
386 | ||
387 | #ifdef DEBUG_VGA | |
388 | printf("VGA: write addr=0x%04x data=0x%02x\n", addr, val); | |
389 | #endif | |
390 | ||
391 | switch(addr) { | |
392 | case 0x3c0: | |
393 | if (s->ar_flip_flop == 0) { | |
394 | val &= 0x3f; | |
395 | s->ar_index = val; | |
396 | } else { | |
397 | index = s->ar_index & 0x1f; | |
398 | switch(index) { | |
399 | case 0x00 ... 0x0f: | |
400 | s->ar[index] = val & 0x3f; | |
401 | break; | |
402 | case 0x10: | |
403 | s->ar[index] = val & ~0x10; | |
404 | break; | |
405 | case 0x11: | |
406 | s->ar[index] = val; | |
407 | break; | |
408 | case 0x12: | |
409 | s->ar[index] = val & ~0xc0; | |
410 | break; | |
411 | case 0x13: | |
412 | s->ar[index] = val & ~0xf0; | |
413 | break; | |
414 | case 0x14: | |
415 | s->ar[index] = val & ~0xf0; | |
416 | break; | |
417 | default: | |
418 | break; | |
419 | } | |
420 | } | |
421 | s->ar_flip_flop ^= 1; | |
422 | break; | |
423 | case 0x3c2: | |
424 | s->msr = val & ~0x10; | |
cb5a7aa8 | 425 | s->update_retrace_info(s); |
e89f66ec FB |
426 | break; |
427 | case 0x3c4: | |
428 | s->sr_index = val & 7; | |
429 | break; | |
430 | case 0x3c5: | |
a41bc9af FB |
431 | #ifdef DEBUG_VGA_REG |
432 | printf("vga: write SR%x = 0x%02x\n", s->sr_index, val); | |
433 | #endif | |
e89f66ec | 434 | s->sr[s->sr_index] = val & sr_mask[s->sr_index]; |
cb5a7aa8 | 435 | if (s->sr_index == 1) s->update_retrace_info(s); |
e89f66ec FB |
436 | break; |
437 | case 0x3c7: | |
438 | s->dac_read_index = val; | |
439 | s->dac_sub_index = 0; | |
440 | s->dac_state = 3; | |
441 | break; | |
442 | case 0x3c8: | |
443 | s->dac_write_index = val; | |
444 | s->dac_sub_index = 0; | |
445 | s->dac_state = 0; | |
446 | break; | |
447 | case 0x3c9: | |
448 | s->dac_cache[s->dac_sub_index] = val; | |
449 | if (++s->dac_sub_index == 3) { | |
450 | memcpy(&s->palette[s->dac_write_index * 3], s->dac_cache, 3); | |
451 | s->dac_sub_index = 0; | |
452 | s->dac_write_index++; | |
453 | } | |
454 | break; | |
455 | case 0x3ce: | |
456 | s->gr_index = val & 0x0f; | |
457 | break; | |
458 | case 0x3cf: | |
a41bc9af FB |
459 | #ifdef DEBUG_VGA_REG |
460 | printf("vga: write GR%x = 0x%02x\n", s->gr_index, val); | |
461 | #endif | |
e89f66ec FB |
462 | s->gr[s->gr_index] = val & gr_mask[s->gr_index]; |
463 | break; | |
464 | case 0x3b4: | |
465 | case 0x3d4: | |
466 | s->cr_index = val; | |
467 | break; | |
468 | case 0x3b5: | |
469 | case 0x3d5: | |
a41bc9af FB |
470 | #ifdef DEBUG_VGA_REG |
471 | printf("vga: write CR%x = 0x%02x\n", s->cr_index, val); | |
472 | #endif | |
e89f66ec | 473 | /* handle CR0-7 protection */ |
f6c958c8 | 474 | if ((s->cr[0x11] & 0x80) && s->cr_index <= 7) { |
e89f66ec FB |
475 | /* can always write bit 4 of CR7 */ |
476 | if (s->cr_index == 7) | |
477 | s->cr[7] = (s->cr[7] & ~0x10) | (val & 0x10); | |
478 | return; | |
479 | } | |
480 | switch(s->cr_index) { | |
481 | case 0x01: /* horizontal display end */ | |
482 | case 0x07: | |
483 | case 0x09: | |
484 | case 0x0c: | |
485 | case 0x0d: | |
e91c8a77 | 486 | case 0x12: /* vertical display end */ |
e89f66ec FB |
487 | s->cr[s->cr_index] = val; |
488 | break; | |
e89f66ec FB |
489 | default: |
490 | s->cr[s->cr_index] = val; | |
491 | break; | |
492 | } | |
cb5a7aa8 | 493 | |
494 | switch(s->cr_index) { | |
495 | case 0x00: | |
496 | case 0x04: | |
497 | case 0x05: | |
498 | case 0x06: | |
499 | case 0x07: | |
500 | case 0x11: | |
501 | case 0x17: | |
502 | s->update_retrace_info(s); | |
503 | break; | |
504 | } | |
e89f66ec FB |
505 | break; |
506 | case 0x3ba: | |
507 | case 0x3da: | |
508 | s->fcr = val & 0x10; | |
509 | break; | |
510 | } | |
511 | } | |
512 | ||
4fa0f5d2 | 513 | #ifdef CONFIG_BOCHS_VBE |
09a79b49 | 514 | static uint32_t vbe_ioport_read_index(void *opaque, uint32_t addr) |
4fa0f5d2 | 515 | { |
0f35920c | 516 | VGAState *s = opaque; |
4fa0f5d2 | 517 | uint32_t val; |
09a79b49 FB |
518 | val = s->vbe_index; |
519 | return val; | |
520 | } | |
4fa0f5d2 | 521 | |
09a79b49 FB |
522 | static uint32_t vbe_ioport_read_data(void *opaque, uint32_t addr) |
523 | { | |
524 | VGAState *s = opaque; | |
525 | uint32_t val; | |
526 | ||
8454df8b FB |
527 | if (s->vbe_index <= VBE_DISPI_INDEX_NB) { |
528 | if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_GETCAPS) { | |
529 | switch(s->vbe_index) { | |
530 | /* XXX: do not hardcode ? */ | |
531 | case VBE_DISPI_INDEX_XRES: | |
532 | val = VBE_DISPI_MAX_XRES; | |
533 | break; | |
534 | case VBE_DISPI_INDEX_YRES: | |
535 | val = VBE_DISPI_MAX_YRES; | |
536 | break; | |
537 | case VBE_DISPI_INDEX_BPP: | |
538 | val = VBE_DISPI_MAX_BPP; | |
539 | break; | |
540 | default: | |
5fafdf24 | 541 | val = s->vbe_regs[s->vbe_index]; |
8454df8b FB |
542 | break; |
543 | } | |
544 | } else { | |
5fafdf24 | 545 | val = s->vbe_regs[s->vbe_index]; |
8454df8b FB |
546 | } |
547 | } else { | |
09a79b49 | 548 | val = 0; |
8454df8b | 549 | } |
4fa0f5d2 | 550 | #ifdef DEBUG_BOCHS_VBE |
09a79b49 | 551 | printf("VBE: read index=0x%x val=0x%x\n", s->vbe_index, val); |
4fa0f5d2 | 552 | #endif |
4fa0f5d2 FB |
553 | return val; |
554 | } | |
555 | ||
09a79b49 FB |
556 | static void vbe_ioport_write_index(void *opaque, uint32_t addr, uint32_t val) |
557 | { | |
558 | VGAState *s = opaque; | |
559 | s->vbe_index = val; | |
560 | } | |
561 | ||
562 | static void vbe_ioport_write_data(void *opaque, uint32_t addr, uint32_t val) | |
4fa0f5d2 | 563 | { |
0f35920c | 564 | VGAState *s = opaque; |
4fa0f5d2 | 565 | |
09a79b49 | 566 | if (s->vbe_index <= VBE_DISPI_INDEX_NB) { |
4fa0f5d2 FB |
567 | #ifdef DEBUG_BOCHS_VBE |
568 | printf("VBE: write index=0x%x val=0x%x\n", s->vbe_index, val); | |
569 | #endif | |
570 | switch(s->vbe_index) { | |
571 | case VBE_DISPI_INDEX_ID: | |
cae61cef FB |
572 | if (val == VBE_DISPI_ID0 || |
573 | val == VBE_DISPI_ID1 || | |
37dd208d FB |
574 | val == VBE_DISPI_ID2 || |
575 | val == VBE_DISPI_ID3 || | |
576 | val == VBE_DISPI_ID4) { | |
cae61cef FB |
577 | s->vbe_regs[s->vbe_index] = val; |
578 | } | |
4fa0f5d2 FB |
579 | break; |
580 | case VBE_DISPI_INDEX_XRES: | |
cae61cef FB |
581 | if ((val <= VBE_DISPI_MAX_XRES) && ((val & 7) == 0)) { |
582 | s->vbe_regs[s->vbe_index] = val; | |
583 | } | |
4fa0f5d2 FB |
584 | break; |
585 | case VBE_DISPI_INDEX_YRES: | |
cae61cef FB |
586 | if (val <= VBE_DISPI_MAX_YRES) { |
587 | s->vbe_regs[s->vbe_index] = val; | |
588 | } | |
4fa0f5d2 FB |
589 | break; |
590 | case VBE_DISPI_INDEX_BPP: | |
591 | if (val == 0) | |
592 | val = 8; | |
5fafdf24 | 593 | if (val == 4 || val == 8 || val == 15 || |
cae61cef FB |
594 | val == 16 || val == 24 || val == 32) { |
595 | s->vbe_regs[s->vbe_index] = val; | |
596 | } | |
4fa0f5d2 FB |
597 | break; |
598 | case VBE_DISPI_INDEX_BANK: | |
42fc925e FB |
599 | if (s->vbe_regs[VBE_DISPI_INDEX_BPP] == 4) { |
600 | val &= (s->vbe_bank_mask >> 2); | |
601 | } else { | |
602 | val &= s->vbe_bank_mask; | |
603 | } | |
cae61cef | 604 | s->vbe_regs[s->vbe_index] = val; |
26aa7d72 | 605 | s->bank_offset = (val << 16); |
4fa0f5d2 FB |
606 | break; |
607 | case VBE_DISPI_INDEX_ENABLE: | |
8454df8b FB |
608 | if ((val & VBE_DISPI_ENABLED) && |
609 | !(s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED)) { | |
4fa0f5d2 FB |
610 | int h, shift_control; |
611 | ||
5fafdf24 | 612 | s->vbe_regs[VBE_DISPI_INDEX_VIRT_WIDTH] = |
4fa0f5d2 | 613 | s->vbe_regs[VBE_DISPI_INDEX_XRES]; |
5fafdf24 | 614 | s->vbe_regs[VBE_DISPI_INDEX_VIRT_HEIGHT] = |
4fa0f5d2 FB |
615 | s->vbe_regs[VBE_DISPI_INDEX_YRES]; |
616 | s->vbe_regs[VBE_DISPI_INDEX_X_OFFSET] = 0; | |
617 | s->vbe_regs[VBE_DISPI_INDEX_Y_OFFSET] = 0; | |
3b46e624 | 618 | |
4fa0f5d2 FB |
619 | if (s->vbe_regs[VBE_DISPI_INDEX_BPP] == 4) |
620 | s->vbe_line_offset = s->vbe_regs[VBE_DISPI_INDEX_XRES] >> 1; | |
621 | else | |
5fafdf24 | 622 | s->vbe_line_offset = s->vbe_regs[VBE_DISPI_INDEX_XRES] * |
4fa0f5d2 FB |
623 | ((s->vbe_regs[VBE_DISPI_INDEX_BPP] + 7) >> 3); |
624 | s->vbe_start_addr = 0; | |
8454df8b | 625 | |
4fa0f5d2 FB |
626 | /* clear the screen (should be done in BIOS) */ |
627 | if (!(val & VBE_DISPI_NOCLEARMEM)) { | |
5fafdf24 | 628 | memset(s->vram_ptr, 0, |
4fa0f5d2 FB |
629 | s->vbe_regs[VBE_DISPI_INDEX_YRES] * s->vbe_line_offset); |
630 | } | |
3b46e624 | 631 | |
cae61cef FB |
632 | /* we initialize the VGA graphic mode (should be done |
633 | in BIOS) */ | |
634 | s->gr[0x06] = (s->gr[0x06] & ~0x0c) | 0x05; /* graphic mode + memory map 1 */ | |
4fa0f5d2 FB |
635 | s->cr[0x17] |= 3; /* no CGA modes */ |
636 | s->cr[0x13] = s->vbe_line_offset >> 3; | |
637 | /* width */ | |
638 | s->cr[0x01] = (s->vbe_regs[VBE_DISPI_INDEX_XRES] >> 3) - 1; | |
8454df8b | 639 | /* height (only meaningful if < 1024) */ |
4fa0f5d2 FB |
640 | h = s->vbe_regs[VBE_DISPI_INDEX_YRES] - 1; |
641 | s->cr[0x12] = h; | |
5fafdf24 | 642 | s->cr[0x07] = (s->cr[0x07] & ~0x42) | |
4fa0f5d2 FB |
643 | ((h >> 7) & 0x02) | ((h >> 3) & 0x40); |
644 | /* line compare to 1023 */ | |
645 | s->cr[0x18] = 0xff; | |
646 | s->cr[0x07] |= 0x10; | |
647 | s->cr[0x09] |= 0x40; | |
3b46e624 | 648 | |
4fa0f5d2 FB |
649 | if (s->vbe_regs[VBE_DISPI_INDEX_BPP] == 4) { |
650 | shift_control = 0; | |
651 | s->sr[0x01] &= ~8; /* no double line */ | |
652 | } else { | |
653 | shift_control = 2; | |
646be93b | 654 | s->sr[4] |= 0x08; /* set chain 4 mode */ |
141253b2 | 655 | s->sr[2] |= 0x0f; /* activate all planes */ |
4fa0f5d2 FB |
656 | } |
657 | s->gr[0x05] = (s->gr[0x05] & ~0x60) | (shift_control << 5); | |
658 | s->cr[0x09] &= ~0x9f; /* no double scan */ | |
cae61cef FB |
659 | } else { |
660 | /* XXX: the bios should do that */ | |
26aa7d72 | 661 | s->bank_offset = 0; |
cae61cef | 662 | } |
37dd208d | 663 | s->dac_8bit = (val & VBE_DISPI_8BIT_DAC) > 0; |
141253b2 | 664 | s->vbe_regs[s->vbe_index] = val; |
cae61cef FB |
665 | break; |
666 | case VBE_DISPI_INDEX_VIRT_WIDTH: | |
667 | { | |
668 | int w, h, line_offset; | |
669 | ||
670 | if (val < s->vbe_regs[VBE_DISPI_INDEX_XRES]) | |
671 | return; | |
672 | w = val; | |
673 | if (s->vbe_regs[VBE_DISPI_INDEX_BPP] == 4) | |
674 | line_offset = w >> 1; | |
675 | else | |
676 | line_offset = w * ((s->vbe_regs[VBE_DISPI_INDEX_BPP] + 7) >> 3); | |
677 | h = s->vram_size / line_offset; | |
678 | /* XXX: support weird bochs semantics ? */ | |
679 | if (h < s->vbe_regs[VBE_DISPI_INDEX_YRES]) | |
680 | return; | |
681 | s->vbe_regs[VBE_DISPI_INDEX_VIRT_WIDTH] = w; | |
682 | s->vbe_regs[VBE_DISPI_INDEX_VIRT_HEIGHT] = h; | |
683 | s->vbe_line_offset = line_offset; | |
684 | } | |
685 | break; | |
686 | case VBE_DISPI_INDEX_X_OFFSET: | |
687 | case VBE_DISPI_INDEX_Y_OFFSET: | |
688 | { | |
689 | int x; | |
690 | s->vbe_regs[s->vbe_index] = val; | |
691 | s->vbe_start_addr = s->vbe_line_offset * s->vbe_regs[VBE_DISPI_INDEX_Y_OFFSET]; | |
692 | x = s->vbe_regs[VBE_DISPI_INDEX_X_OFFSET]; | |
693 | if (s->vbe_regs[VBE_DISPI_INDEX_BPP] == 4) | |
694 | s->vbe_start_addr += x >> 1; | |
695 | else | |
696 | s->vbe_start_addr += x * ((s->vbe_regs[VBE_DISPI_INDEX_BPP] + 7) >> 3); | |
697 | s->vbe_start_addr >>= 2; | |
4fa0f5d2 FB |
698 | } |
699 | break; | |
700 | default: | |
701 | break; | |
702 | } | |
4fa0f5d2 FB |
703 | } |
704 | } | |
705 | #endif | |
706 | ||
e89f66ec | 707 | /* called for accesses between 0xa0000 and 0xc0000 */ |
798b0c25 | 708 | uint32_t vga_mem_readb(void *opaque, target_phys_addr_t addr) |
e89f66ec | 709 | { |
a4193c8a | 710 | VGAState *s = opaque; |
e89f66ec FB |
711 | int memory_map_mode, plane; |
712 | uint32_t ret; | |
3b46e624 | 713 | |
e89f66ec FB |
714 | /* convert to VGA memory offset */ |
715 | memory_map_mode = (s->gr[6] >> 2) & 3; | |
26aa7d72 | 716 | addr &= 0x1ffff; |
e89f66ec FB |
717 | switch(memory_map_mode) { |
718 | case 0: | |
e89f66ec FB |
719 | break; |
720 | case 1: | |
26aa7d72 | 721 | if (addr >= 0x10000) |
e89f66ec | 722 | return 0xff; |
cae61cef | 723 | addr += s->bank_offset; |
e89f66ec FB |
724 | break; |
725 | case 2: | |
26aa7d72 | 726 | addr -= 0x10000; |
e89f66ec FB |
727 | if (addr >= 0x8000) |
728 | return 0xff; | |
729 | break; | |
730 | default: | |
731 | case 3: | |
26aa7d72 | 732 | addr -= 0x18000; |
c92b2e84 FB |
733 | if (addr >= 0x8000) |
734 | return 0xff; | |
e89f66ec FB |
735 | break; |
736 | } | |
3b46e624 | 737 | |
e89f66ec FB |
738 | if (s->sr[4] & 0x08) { |
739 | /* chain 4 mode : simplest access */ | |
740 | ret = s->vram_ptr[addr]; | |
741 | } else if (s->gr[5] & 0x10) { | |
742 | /* odd/even mode (aka text mode mapping) */ | |
743 | plane = (s->gr[4] & 2) | (addr & 1); | |
744 | ret = s->vram_ptr[((addr & ~1) << 1) | plane]; | |
745 | } else { | |
746 | /* standard VGA latched access */ | |
747 | s->latch = ((uint32_t *)s->vram_ptr)[addr]; | |
748 | ||
749 | if (!(s->gr[5] & 0x08)) { | |
750 | /* read mode 0 */ | |
751 | plane = s->gr[4]; | |
b8ed223b | 752 | ret = GET_PLANE(s->latch, plane); |
e89f66ec FB |
753 | } else { |
754 | /* read mode 1 */ | |
755 | ret = (s->latch ^ mask16[s->gr[2]]) & mask16[s->gr[7]]; | |
756 | ret |= ret >> 16; | |
757 | ret |= ret >> 8; | |
758 | ret = (~ret) & 0xff; | |
759 | } | |
760 | } | |
761 | return ret; | |
762 | } | |
763 | ||
a4193c8a | 764 | static uint32_t vga_mem_readw(void *opaque, target_phys_addr_t addr) |
e89f66ec FB |
765 | { |
766 | uint32_t v; | |
09a79b49 | 767 | #ifdef TARGET_WORDS_BIGENDIAN |
a4193c8a FB |
768 | v = vga_mem_readb(opaque, addr) << 8; |
769 | v |= vga_mem_readb(opaque, addr + 1); | |
09a79b49 | 770 | #else |
a4193c8a FB |
771 | v = vga_mem_readb(opaque, addr); |
772 | v |= vga_mem_readb(opaque, addr + 1) << 8; | |
09a79b49 | 773 | #endif |
e89f66ec FB |
774 | return v; |
775 | } | |
776 | ||
a4193c8a | 777 | static uint32_t vga_mem_readl(void *opaque, target_phys_addr_t addr) |
e89f66ec FB |
778 | { |
779 | uint32_t v; | |
09a79b49 | 780 | #ifdef TARGET_WORDS_BIGENDIAN |
a4193c8a FB |
781 | v = vga_mem_readb(opaque, addr) << 24; |
782 | v |= vga_mem_readb(opaque, addr + 1) << 16; | |
783 | v |= vga_mem_readb(opaque, addr + 2) << 8; | |
784 | v |= vga_mem_readb(opaque, addr + 3); | |
09a79b49 | 785 | #else |
a4193c8a FB |
786 | v = vga_mem_readb(opaque, addr); |
787 | v |= vga_mem_readb(opaque, addr + 1) << 8; | |
788 | v |= vga_mem_readb(opaque, addr + 2) << 16; | |
789 | v |= vga_mem_readb(opaque, addr + 3) << 24; | |
09a79b49 | 790 | #endif |
e89f66ec FB |
791 | return v; |
792 | } | |
793 | ||
e89f66ec | 794 | /* called for accesses between 0xa0000 and 0xc0000 */ |
798b0c25 | 795 | void vga_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) |
e89f66ec | 796 | { |
a4193c8a | 797 | VGAState *s = opaque; |
546fa6ab | 798 | int memory_map_mode, plane, write_mode, b, func_select, mask; |
e89f66ec FB |
799 | uint32_t write_mask, bit_mask, set_mask; |
800 | ||
17b0018b | 801 | #ifdef DEBUG_VGA_MEM |
e89f66ec FB |
802 | printf("vga: [0x%x] = 0x%02x\n", addr, val); |
803 | #endif | |
804 | /* convert to VGA memory offset */ | |
805 | memory_map_mode = (s->gr[6] >> 2) & 3; | |
26aa7d72 | 806 | addr &= 0x1ffff; |
e89f66ec FB |
807 | switch(memory_map_mode) { |
808 | case 0: | |
e89f66ec FB |
809 | break; |
810 | case 1: | |
26aa7d72 | 811 | if (addr >= 0x10000) |
e89f66ec | 812 | return; |
cae61cef | 813 | addr += s->bank_offset; |
e89f66ec FB |
814 | break; |
815 | case 2: | |
26aa7d72 | 816 | addr -= 0x10000; |
e89f66ec FB |
817 | if (addr >= 0x8000) |
818 | return; | |
819 | break; | |
820 | default: | |
821 | case 3: | |
26aa7d72 | 822 | addr -= 0x18000; |
c92b2e84 FB |
823 | if (addr >= 0x8000) |
824 | return; | |
e89f66ec FB |
825 | break; |
826 | } | |
3b46e624 | 827 | |
e89f66ec FB |
828 | if (s->sr[4] & 0x08) { |
829 | /* chain 4 mode : simplest access */ | |
830 | plane = addr & 3; | |
546fa6ab FB |
831 | mask = (1 << plane); |
832 | if (s->sr[2] & mask) { | |
e89f66ec | 833 | s->vram_ptr[addr] = val; |
17b0018b | 834 | #ifdef DEBUG_VGA_MEM |
e89f66ec FB |
835 | printf("vga: chain4: [0x%x]\n", addr); |
836 | #endif | |
546fa6ab | 837 | s->plane_updated |= mask; /* only used to detect font change */ |
4fa0f5d2 | 838 | cpu_physical_memory_set_dirty(s->vram_offset + addr); |
e89f66ec FB |
839 | } |
840 | } else if (s->gr[5] & 0x10) { | |
841 | /* odd/even mode (aka text mode mapping) */ | |
842 | plane = (s->gr[4] & 2) | (addr & 1); | |
546fa6ab FB |
843 | mask = (1 << plane); |
844 | if (s->sr[2] & mask) { | |
e89f66ec FB |
845 | addr = ((addr & ~1) << 1) | plane; |
846 | s->vram_ptr[addr] = val; | |
17b0018b | 847 | #ifdef DEBUG_VGA_MEM |
e89f66ec FB |
848 | printf("vga: odd/even: [0x%x]\n", addr); |
849 | #endif | |
546fa6ab | 850 | s->plane_updated |= mask; /* only used to detect font change */ |
4fa0f5d2 | 851 | cpu_physical_memory_set_dirty(s->vram_offset + addr); |
e89f66ec FB |
852 | } |
853 | } else { | |
854 | /* standard VGA latched access */ | |
855 | write_mode = s->gr[5] & 3; | |
856 | switch(write_mode) { | |
857 | default: | |
858 | case 0: | |
859 | /* rotate */ | |
860 | b = s->gr[3] & 7; | |
861 | val = ((val >> b) | (val << (8 - b))) & 0xff; | |
862 | val |= val << 8; | |
863 | val |= val << 16; | |
864 | ||
865 | /* apply set/reset mask */ | |
866 | set_mask = mask16[s->gr[1]]; | |
867 | val = (val & ~set_mask) | (mask16[s->gr[0]] & set_mask); | |
868 | bit_mask = s->gr[8]; | |
869 | break; | |
870 | case 1: | |
871 | val = s->latch; | |
872 | goto do_write; | |
873 | case 2: | |
874 | val = mask16[val & 0x0f]; | |
875 | bit_mask = s->gr[8]; | |
876 | break; | |
877 | case 3: | |
878 | /* rotate */ | |
879 | b = s->gr[3] & 7; | |
a41bc9af | 880 | val = (val >> b) | (val << (8 - b)); |
e89f66ec FB |
881 | |
882 | bit_mask = s->gr[8] & val; | |
883 | val = mask16[s->gr[0]]; | |
884 | break; | |
885 | } | |
886 | ||
887 | /* apply logical operation */ | |
888 | func_select = s->gr[3] >> 3; | |
889 | switch(func_select) { | |
890 | case 0: | |
891 | default: | |
892 | /* nothing to do */ | |
893 | break; | |
894 | case 1: | |
895 | /* and */ | |
896 | val &= s->latch; | |
897 | break; | |
898 | case 2: | |
899 | /* or */ | |
900 | val |= s->latch; | |
901 | break; | |
902 | case 3: | |
903 | /* xor */ | |
904 | val ^= s->latch; | |
905 | break; | |
906 | } | |
907 | ||
908 | /* apply bit mask */ | |
909 | bit_mask |= bit_mask << 8; | |
910 | bit_mask |= bit_mask << 16; | |
911 | val = (val & bit_mask) | (s->latch & ~bit_mask); | |
912 | ||
913 | do_write: | |
914 | /* mask data according to sr[2] */ | |
546fa6ab FB |
915 | mask = s->sr[2]; |
916 | s->plane_updated |= mask; /* only used to detect font change */ | |
917 | write_mask = mask16[mask]; | |
5fafdf24 TS |
918 | ((uint32_t *)s->vram_ptr)[addr] = |
919 | (((uint32_t *)s->vram_ptr)[addr] & ~write_mask) | | |
e89f66ec | 920 | (val & write_mask); |
17b0018b | 921 | #ifdef DEBUG_VGA_MEM |
5fafdf24 | 922 | printf("vga: latch: [0x%x] mask=0x%08x val=0x%08x\n", |
e89f66ec FB |
923 | addr * 4, write_mask, val); |
924 | #endif | |
4fa0f5d2 | 925 | cpu_physical_memory_set_dirty(s->vram_offset + (addr << 2)); |
e89f66ec FB |
926 | } |
927 | } | |
928 | ||
a4193c8a | 929 | static void vga_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val) |
e89f66ec | 930 | { |
09a79b49 | 931 | #ifdef TARGET_WORDS_BIGENDIAN |
a4193c8a FB |
932 | vga_mem_writeb(opaque, addr, (val >> 8) & 0xff); |
933 | vga_mem_writeb(opaque, addr + 1, val & 0xff); | |
09a79b49 | 934 | #else |
a4193c8a FB |
935 | vga_mem_writeb(opaque, addr, val & 0xff); |
936 | vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff); | |
09a79b49 | 937 | #endif |
e89f66ec FB |
938 | } |
939 | ||
a4193c8a | 940 | static void vga_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
e89f66ec | 941 | { |
09a79b49 | 942 | #ifdef TARGET_WORDS_BIGENDIAN |
a4193c8a FB |
943 | vga_mem_writeb(opaque, addr, (val >> 24) & 0xff); |
944 | vga_mem_writeb(opaque, addr + 1, (val >> 16) & 0xff); | |
945 | vga_mem_writeb(opaque, addr + 2, (val >> 8) & 0xff); | |
946 | vga_mem_writeb(opaque, addr + 3, val & 0xff); | |
09a79b49 | 947 | #else |
a4193c8a FB |
948 | vga_mem_writeb(opaque, addr, val & 0xff); |
949 | vga_mem_writeb(opaque, addr + 1, (val >> 8) & 0xff); | |
950 | vga_mem_writeb(opaque, addr + 2, (val >> 16) & 0xff); | |
951 | vga_mem_writeb(opaque, addr + 3, (val >> 24) & 0xff); | |
09a79b49 | 952 | #endif |
e89f66ec FB |
953 | } |
954 | ||
e89f66ec FB |
955 | typedef void vga_draw_glyph8_func(uint8_t *d, int linesize, |
956 | const uint8_t *font_ptr, int h, | |
957 | uint32_t fgcol, uint32_t bgcol); | |
958 | typedef void vga_draw_glyph9_func(uint8_t *d, int linesize, | |
5fafdf24 | 959 | const uint8_t *font_ptr, int h, |
e89f66ec | 960 | uint32_t fgcol, uint32_t bgcol, int dup9); |
5fafdf24 | 961 | typedef void vga_draw_line_func(VGAState *s1, uint8_t *d, |
e89f66ec FB |
962 | const uint8_t *s, int width); |
963 | ||
e89f66ec FB |
964 | #define DEPTH 8 |
965 | #include "vga_template.h" | |
966 | ||
967 | #define DEPTH 15 | |
968 | #include "vga_template.h" | |
969 | ||
a2502b58 BS |
970 | #define BGR_FORMAT |
971 | #define DEPTH 15 | |
972 | #include "vga_template.h" | |
973 | ||
974 | #define DEPTH 16 | |
975 | #include "vga_template.h" | |
976 | ||
977 | #define BGR_FORMAT | |
e89f66ec FB |
978 | #define DEPTH 16 |
979 | #include "vga_template.h" | |
980 | ||
981 | #define DEPTH 32 | |
982 | #include "vga_template.h" | |
983 | ||
d3079cd2 FB |
984 | #define BGR_FORMAT |
985 | #define DEPTH 32 | |
986 | #include "vga_template.h" | |
987 | ||
17b0018b FB |
988 | static unsigned int rgb_to_pixel8_dup(unsigned int r, unsigned int g, unsigned b) |
989 | { | |
990 | unsigned int col; | |
991 | col = rgb_to_pixel8(r, g, b); | |
992 | col |= col << 8; | |
993 | col |= col << 16; | |
994 | return col; | |
995 | } | |
996 | ||
997 | static unsigned int rgb_to_pixel15_dup(unsigned int r, unsigned int g, unsigned b) | |
998 | { | |
999 | unsigned int col; | |
1000 | col = rgb_to_pixel15(r, g, b); | |
1001 | col |= col << 16; | |
1002 | return col; | |
1003 | } | |
1004 | ||
b29169d2 BS |
1005 | static unsigned int rgb_to_pixel15bgr_dup(unsigned int r, unsigned int g, |
1006 | unsigned int b) | |
1007 | { | |
1008 | unsigned int col; | |
1009 | col = rgb_to_pixel15bgr(r, g, b); | |
1010 | col |= col << 16; | |
1011 | return col; | |
1012 | } | |
1013 | ||
17b0018b FB |
1014 | static unsigned int rgb_to_pixel16_dup(unsigned int r, unsigned int g, unsigned b) |
1015 | { | |
1016 | unsigned int col; | |
1017 | col = rgb_to_pixel16(r, g, b); | |
1018 | col |= col << 16; | |
1019 | return col; | |
1020 | } | |
1021 | ||
b29169d2 BS |
1022 | static unsigned int rgb_to_pixel16bgr_dup(unsigned int r, unsigned int g, |
1023 | unsigned int b) | |
1024 | { | |
1025 | unsigned int col; | |
1026 | col = rgb_to_pixel16bgr(r, g, b); | |
1027 | col |= col << 16; | |
1028 | return col; | |
1029 | } | |
1030 | ||
17b0018b FB |
1031 | static unsigned int rgb_to_pixel32_dup(unsigned int r, unsigned int g, unsigned b) |
1032 | { | |
1033 | unsigned int col; | |
1034 | col = rgb_to_pixel32(r, g, b); | |
1035 | return col; | |
1036 | } | |
1037 | ||
d3079cd2 FB |
1038 | static unsigned int rgb_to_pixel32bgr_dup(unsigned int r, unsigned int g, unsigned b) |
1039 | { | |
1040 | unsigned int col; | |
1041 | col = rgb_to_pixel32bgr(r, g, b); | |
1042 | return col; | |
1043 | } | |
1044 | ||
e89f66ec FB |
1045 | /* return true if the palette was modified */ |
1046 | static int update_palette16(VGAState *s) | |
1047 | { | |
17b0018b | 1048 | int full_update, i; |
e89f66ec | 1049 | uint32_t v, col, *palette; |
e89f66ec FB |
1050 | |
1051 | full_update = 0; | |
1052 | palette = s->last_palette; | |
1053 | for(i = 0; i < 16; i++) { | |
1054 | v = s->ar[i]; | |
1055 | if (s->ar[0x10] & 0x80) | |
1056 | v = ((s->ar[0x14] & 0xf) << 4) | (v & 0xf); | |
1057 | else | |
1058 | v = ((s->ar[0x14] & 0xc) << 4) | (v & 0x3f); | |
1059 | v = v * 3; | |
5fafdf24 TS |
1060 | col = s->rgb_to_pixel(c6_to_8(s->palette[v]), |
1061 | c6_to_8(s->palette[v + 1]), | |
17b0018b FB |
1062 | c6_to_8(s->palette[v + 2])); |
1063 | if (col != palette[i]) { | |
1064 | full_update = 1; | |
1065 | palette[i] = col; | |
e89f66ec | 1066 | } |
17b0018b FB |
1067 | } |
1068 | return full_update; | |
1069 | } | |
1070 | ||
1071 | /* return true if the palette was modified */ | |
1072 | static int update_palette256(VGAState *s) | |
1073 | { | |
1074 | int full_update, i; | |
1075 | uint32_t v, col, *palette; | |
1076 | ||
1077 | full_update = 0; | |
1078 | palette = s->last_palette; | |
1079 | v = 0; | |
1080 | for(i = 0; i < 256; i++) { | |
37dd208d | 1081 | if (s->dac_8bit) { |
5fafdf24 TS |
1082 | col = s->rgb_to_pixel(s->palette[v], |
1083 | s->palette[v + 1], | |
37dd208d FB |
1084 | s->palette[v + 2]); |
1085 | } else { | |
5fafdf24 TS |
1086 | col = s->rgb_to_pixel(c6_to_8(s->palette[v]), |
1087 | c6_to_8(s->palette[v + 1]), | |
37dd208d FB |
1088 | c6_to_8(s->palette[v + 2])); |
1089 | } | |
e89f66ec FB |
1090 | if (col != palette[i]) { |
1091 | full_update = 1; | |
1092 | palette[i] = col; | |
1093 | } | |
17b0018b | 1094 | v += 3; |
e89f66ec FB |
1095 | } |
1096 | return full_update; | |
1097 | } | |
1098 | ||
5fafdf24 TS |
1099 | static void vga_get_offsets(VGAState *s, |
1100 | uint32_t *pline_offset, | |
83acc96b FB |
1101 | uint32_t *pstart_addr, |
1102 | uint32_t *pline_compare) | |
e89f66ec | 1103 | { |
83acc96b | 1104 | uint32_t start_addr, line_offset, line_compare; |
4fa0f5d2 FB |
1105 | #ifdef CONFIG_BOCHS_VBE |
1106 | if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) { | |
1107 | line_offset = s->vbe_line_offset; | |
1108 | start_addr = s->vbe_start_addr; | |
83acc96b | 1109 | line_compare = 65535; |
4fa0f5d2 FB |
1110 | } else |
1111 | #endif | |
3b46e624 | 1112 | { |
4fa0f5d2 FB |
1113 | /* compute line_offset in bytes */ |
1114 | line_offset = s->cr[0x13]; | |
4fa0f5d2 | 1115 | line_offset <<= 3; |
08e48902 | 1116 | |
4fa0f5d2 FB |
1117 | /* starting address */ |
1118 | start_addr = s->cr[0x0d] | (s->cr[0x0c] << 8); | |
83acc96b FB |
1119 | |
1120 | /* line compare */ | |
5fafdf24 | 1121 | line_compare = s->cr[0x18] | |
83acc96b FB |
1122 | ((s->cr[0x07] & 0x10) << 4) | |
1123 | ((s->cr[0x09] & 0x40) << 3); | |
4fa0f5d2 | 1124 | } |
798b0c25 FB |
1125 | *pline_offset = line_offset; |
1126 | *pstart_addr = start_addr; | |
83acc96b | 1127 | *pline_compare = line_compare; |
798b0c25 FB |
1128 | } |
1129 | ||
1130 | /* update start_addr and line_offset. Return TRUE if modified */ | |
1131 | static int update_basic_params(VGAState *s) | |
1132 | { | |
1133 | int full_update; | |
1134 | uint32_t start_addr, line_offset, line_compare; | |
3b46e624 | 1135 | |
798b0c25 FB |
1136 | full_update = 0; |
1137 | ||
83acc96b | 1138 | s->get_offsets(s, &line_offset, &start_addr, &line_compare); |
e89f66ec FB |
1139 | |
1140 | if (line_offset != s->line_offset || | |
1141 | start_addr != s->start_addr || | |
1142 | line_compare != s->line_compare) { | |
1143 | s->line_offset = line_offset; | |
1144 | s->start_addr = start_addr; | |
1145 | s->line_compare = line_compare; | |
1146 | full_update = 1; | |
1147 | } | |
1148 | return full_update; | |
1149 | } | |
1150 | ||
b29169d2 | 1151 | #define NB_DEPTHS 7 |
d3079cd2 FB |
1152 | |
1153 | static inline int get_depth_index(DisplayState *s) | |
e89f66ec | 1154 | { |
0e1f5a0c | 1155 | switch(ds_get_bits_per_pixel(s)) { |
e89f66ec FB |
1156 | default: |
1157 | case 8: | |
1158 | return 0; | |
1159 | case 15: | |
8927bcfd | 1160 | return 1; |
e89f66ec | 1161 | case 16: |
8927bcfd | 1162 | return 2; |
e89f66ec | 1163 | case 32: |
8927bcfd | 1164 | return 3; |
e89f66ec FB |
1165 | } |
1166 | } | |
1167 | ||
d3079cd2 | 1168 | static vga_draw_glyph8_func *vga_draw_glyph8_table[NB_DEPTHS] = { |
e89f66ec FB |
1169 | vga_draw_glyph8_8, |
1170 | vga_draw_glyph8_16, | |
1171 | vga_draw_glyph8_16, | |
1172 | vga_draw_glyph8_32, | |
d3079cd2 | 1173 | vga_draw_glyph8_32, |
b29169d2 BS |
1174 | vga_draw_glyph8_16, |
1175 | vga_draw_glyph8_16, | |
e89f66ec FB |
1176 | }; |
1177 | ||
d3079cd2 | 1178 | static vga_draw_glyph8_func *vga_draw_glyph16_table[NB_DEPTHS] = { |
17b0018b FB |
1179 | vga_draw_glyph16_8, |
1180 | vga_draw_glyph16_16, | |
1181 | vga_draw_glyph16_16, | |
1182 | vga_draw_glyph16_32, | |
d3079cd2 | 1183 | vga_draw_glyph16_32, |
b29169d2 BS |
1184 | vga_draw_glyph16_16, |
1185 | vga_draw_glyph16_16, | |
17b0018b FB |
1186 | }; |
1187 | ||
d3079cd2 | 1188 | static vga_draw_glyph9_func *vga_draw_glyph9_table[NB_DEPTHS] = { |
e89f66ec FB |
1189 | vga_draw_glyph9_8, |
1190 | vga_draw_glyph9_16, | |
1191 | vga_draw_glyph9_16, | |
1192 | vga_draw_glyph9_32, | |
d3079cd2 | 1193 | vga_draw_glyph9_32, |
b29169d2 BS |
1194 | vga_draw_glyph9_16, |
1195 | vga_draw_glyph9_16, | |
e89f66ec | 1196 | }; |
3b46e624 | 1197 | |
e89f66ec FB |
1198 | static const uint8_t cursor_glyph[32 * 4] = { |
1199 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1200 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1201 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1202 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1203 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1204 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1205 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1206 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1207 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1208 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1209 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1210 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1211 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1212 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1213 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
1214 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
3b46e624 | 1215 | }; |
e89f66ec | 1216 | |
4c5e8c5c BS |
1217 | static void vga_get_text_resolution(VGAState *s, int *pwidth, int *pheight, |
1218 | int *pcwidth, int *pcheight) | |
1219 | { | |
1220 | int width, cwidth, height, cheight; | |
1221 | ||
1222 | /* total width & height */ | |
1223 | cheight = (s->cr[9] & 0x1f) + 1; | |
1224 | cwidth = 8; | |
1225 | if (!(s->sr[1] & 0x01)) | |
1226 | cwidth = 9; | |
1227 | if (s->sr[1] & 0x08) | |
1228 | cwidth = 16; /* NOTE: no 18 pixel wide */ | |
1229 | width = (s->cr[0x01] + 1); | |
1230 | if (s->cr[0x06] == 100) { | |
1231 | /* ugly hack for CGA 160x100x16 - explain me the logic */ | |
1232 | height = 100; | |
1233 | } else { | |
1234 | height = s->cr[0x12] | | |
1235 | ((s->cr[0x07] & 0x02) << 7) | | |
1236 | ((s->cr[0x07] & 0x40) << 3); | |
1237 | height = (height + 1) / cheight; | |
1238 | } | |
1239 | ||
1240 | *pwidth = width; | |
1241 | *pheight = height; | |
1242 | *pcwidth = cwidth; | |
1243 | *pcheight = cheight; | |
1244 | } | |
1245 | ||
5fafdf24 TS |
1246 | /* |
1247 | * Text mode update | |
e89f66ec FB |
1248 | * Missing: |
1249 | * - double scan | |
5fafdf24 | 1250 | * - double width |
e89f66ec FB |
1251 | * - underline |
1252 | * - flashing | |
1253 | */ | |
1254 | static void vga_draw_text(VGAState *s, int full_update) | |
1255 | { | |
1256 | int cx, cy, cheight, cw, ch, cattr, height, width, ch_attr; | |
1257 | int cx_min, cx_max, linesize, x_incr; | |
1258 | uint32_t offset, fgcol, bgcol, v, cursor_offset; | |
1259 | uint8_t *d1, *d, *src, *s1, *dest, *cursor_ptr; | |
1260 | const uint8_t *font_ptr, *font_base[2]; | |
1261 | int dup9, line_offset, depth_index; | |
1262 | uint32_t *palette; | |
1263 | uint32_t *ch_attr_ptr; | |
1264 | vga_draw_glyph8_func *vga_draw_glyph8; | |
1265 | vga_draw_glyph9_func *vga_draw_glyph9; | |
1266 | ||
2bec46dc AL |
1267 | vga_dirty_log_stop(s); |
1268 | ||
e89f66ec FB |
1269 | full_update |= update_palette16(s); |
1270 | palette = s->last_palette; | |
3b46e624 | 1271 | |
e89f66ec FB |
1272 | /* compute font data address (in plane 2) */ |
1273 | v = s->sr[3]; | |
1078f663 | 1274 | offset = (((v >> 4) & 1) | ((v << 1) & 6)) * 8192 * 4 + 2; |
e89f66ec FB |
1275 | if (offset != s->font_offsets[0]) { |
1276 | s->font_offsets[0] = offset; | |
1277 | full_update = 1; | |
1278 | } | |
1279 | font_base[0] = s->vram_ptr + offset; | |
1280 | ||
1078f663 | 1281 | offset = (((v >> 5) & 1) | ((v >> 1) & 6)) * 8192 * 4 + 2; |
e89f66ec FB |
1282 | font_base[1] = s->vram_ptr + offset; |
1283 | if (offset != s->font_offsets[1]) { | |
1284 | s->font_offsets[1] = offset; | |
1285 | full_update = 1; | |
1286 | } | |
546fa6ab FB |
1287 | if (s->plane_updated & (1 << 2)) { |
1288 | /* if the plane 2 was modified since the last display, it | |
1289 | indicates the font may have been modified */ | |
1290 | s->plane_updated = 0; | |
1291 | full_update = 1; | |
1292 | } | |
e89f66ec FB |
1293 | full_update |= update_basic_params(s); |
1294 | ||
1295 | line_offset = s->line_offset; | |
1296 | s1 = s->vram_ptr + (s->start_addr * 4); | |
1297 | ||
4c5e8c5c | 1298 | vga_get_text_resolution(s, &width, &height, &cw, &cheight); |
0e1f5a0c | 1299 | x_incr = cw * ((ds_get_bits_per_pixel(s->ds) + 7) >> 3); |
3294b949 FB |
1300 | if ((height * width) > CH_ATTR_SIZE) { |
1301 | /* better than nothing: exit if transient size is too big */ | |
1302 | return; | |
1303 | } | |
1304 | ||
e89f66ec | 1305 | if (width != s->last_width || height != s->last_height || |
eccabc6e | 1306 | cw != s->last_cw || cheight != s->last_ch) { |
2aebb3eb FB |
1307 | s->last_scr_width = width * cw; |
1308 | s->last_scr_height = height * cheight; | |
c60e08d9 | 1309 | qemu_console_resize(s->console, s->last_scr_width, s->last_scr_height); |
e89f66ec FB |
1310 | s->last_width = width; |
1311 | s->last_height = height; | |
1312 | s->last_ch = cheight; | |
1313 | s->last_cw = cw; | |
1314 | full_update = 1; | |
1315 | } | |
1316 | cursor_offset = ((s->cr[0x0e] << 8) | s->cr[0x0f]) - s->start_addr; | |
1317 | if (cursor_offset != s->cursor_offset || | |
1318 | s->cr[0xa] != s->cursor_start || | |
1319 | s->cr[0xb] != s->cursor_end) { | |
1320 | /* if the cursor position changed, we update the old and new | |
1321 | chars */ | |
1322 | if (s->cursor_offset < CH_ATTR_SIZE) | |
1323 | s->last_ch_attr[s->cursor_offset] = -1; | |
1324 | if (cursor_offset < CH_ATTR_SIZE) | |
1325 | s->last_ch_attr[cursor_offset] = -1; | |
1326 | s->cursor_offset = cursor_offset; | |
1327 | s->cursor_start = s->cr[0xa]; | |
1328 | s->cursor_end = s->cr[0xb]; | |
1329 | } | |
39cf7803 | 1330 | cursor_ptr = s->vram_ptr + (s->start_addr + cursor_offset) * 4; |
3b46e624 | 1331 | |
d3079cd2 | 1332 | depth_index = get_depth_index(s->ds); |
17b0018b FB |
1333 | if (cw == 16) |
1334 | vga_draw_glyph8 = vga_draw_glyph16_table[depth_index]; | |
1335 | else | |
1336 | vga_draw_glyph8 = vga_draw_glyph8_table[depth_index]; | |
e89f66ec | 1337 | vga_draw_glyph9 = vga_draw_glyph9_table[depth_index]; |
3b46e624 | 1338 | |
0e1f5a0c AL |
1339 | dest = ds_get_data(s->ds); |
1340 | linesize = ds_get_linesize(s->ds); | |
e89f66ec FB |
1341 | ch_attr_ptr = s->last_ch_attr; |
1342 | for(cy = 0; cy < height; cy++) { | |
1343 | d1 = dest; | |
1344 | src = s1; | |
1345 | cx_min = width; | |
1346 | cx_max = -1; | |
1347 | for(cx = 0; cx < width; cx++) { | |
1348 | ch_attr = *(uint16_t *)src; | |
1349 | if (full_update || ch_attr != *ch_attr_ptr) { | |
1350 | if (cx < cx_min) | |
1351 | cx_min = cx; | |
1352 | if (cx > cx_max) | |
1353 | cx_max = cx; | |
1354 | *ch_attr_ptr = ch_attr; | |
1355 | #ifdef WORDS_BIGENDIAN | |
1356 | ch = ch_attr >> 8; | |
1357 | cattr = ch_attr & 0xff; | |
1358 | #else | |
1359 | ch = ch_attr & 0xff; | |
1360 | cattr = ch_attr >> 8; | |
1361 | #endif | |
1362 | font_ptr = font_base[(cattr >> 3) & 1]; | |
1363 | font_ptr += 32 * 4 * ch; | |
1364 | bgcol = palette[cattr >> 4]; | |
1365 | fgcol = palette[cattr & 0x0f]; | |
17b0018b | 1366 | if (cw != 9) { |
5fafdf24 | 1367 | vga_draw_glyph8(d1, linesize, |
e89f66ec FB |
1368 | font_ptr, cheight, fgcol, bgcol); |
1369 | } else { | |
1370 | dup9 = 0; | |
1371 | if (ch >= 0xb0 && ch <= 0xdf && (s->ar[0x10] & 0x04)) | |
1372 | dup9 = 1; | |
5fafdf24 | 1373 | vga_draw_glyph9(d1, linesize, |
e89f66ec FB |
1374 | font_ptr, cheight, fgcol, bgcol, dup9); |
1375 | } | |
1376 | if (src == cursor_ptr && | |
1377 | !(s->cr[0x0a] & 0x20)) { | |
1378 | int line_start, line_last, h; | |
1379 | /* draw the cursor */ | |
1380 | line_start = s->cr[0x0a] & 0x1f; | |
1381 | line_last = s->cr[0x0b] & 0x1f; | |
1382 | /* XXX: check that */ | |
1383 | if (line_last > cheight - 1) | |
1384 | line_last = cheight - 1; | |
1385 | if (line_last >= line_start && line_start < cheight) { | |
1386 | h = line_last - line_start + 1; | |
1387 | d = d1 + linesize * line_start; | |
17b0018b | 1388 | if (cw != 9) { |
5fafdf24 | 1389 | vga_draw_glyph8(d, linesize, |
e89f66ec FB |
1390 | cursor_glyph, h, fgcol, bgcol); |
1391 | } else { | |
5fafdf24 | 1392 | vga_draw_glyph9(d, linesize, |
e89f66ec FB |
1393 | cursor_glyph, h, fgcol, bgcol, 1); |
1394 | } | |
1395 | } | |
1396 | } | |
1397 | } | |
1398 | d1 += x_incr; | |
1399 | src += 4; | |
1400 | ch_attr_ptr++; | |
1401 | } | |
1402 | if (cx_max != -1) { | |
5fafdf24 | 1403 | dpy_update(s->ds, cx_min * cw, cy * cheight, |
e89f66ec FB |
1404 | (cx_max - cx_min + 1) * cw, cheight); |
1405 | } | |
1406 | dest += linesize * cheight; | |
1407 | s1 += line_offset; | |
1408 | } | |
1409 | } | |
1410 | ||
17b0018b FB |
1411 | enum { |
1412 | VGA_DRAW_LINE2, | |
1413 | VGA_DRAW_LINE2D2, | |
1414 | VGA_DRAW_LINE4, | |
1415 | VGA_DRAW_LINE4D2, | |
1416 | VGA_DRAW_LINE8D2, | |
1417 | VGA_DRAW_LINE8, | |
1418 | VGA_DRAW_LINE15, | |
1419 | VGA_DRAW_LINE16, | |
4fa0f5d2 | 1420 | VGA_DRAW_LINE24, |
17b0018b FB |
1421 | VGA_DRAW_LINE32, |
1422 | VGA_DRAW_LINE_NB, | |
1423 | }; | |
1424 | ||
d3079cd2 | 1425 | static vga_draw_line_func *vga_draw_line_table[NB_DEPTHS * VGA_DRAW_LINE_NB] = { |
e89f66ec FB |
1426 | vga_draw_line2_8, |
1427 | vga_draw_line2_16, | |
1428 | vga_draw_line2_16, | |
1429 | vga_draw_line2_32, | |
d3079cd2 | 1430 | vga_draw_line2_32, |
b29169d2 BS |
1431 | vga_draw_line2_16, |
1432 | vga_draw_line2_16, | |
e89f66ec | 1433 | |
17b0018b FB |
1434 | vga_draw_line2d2_8, |
1435 | vga_draw_line2d2_16, | |
1436 | vga_draw_line2d2_16, | |
1437 | vga_draw_line2d2_32, | |
d3079cd2 | 1438 | vga_draw_line2d2_32, |
b29169d2 BS |
1439 | vga_draw_line2d2_16, |
1440 | vga_draw_line2d2_16, | |
17b0018b | 1441 | |
e89f66ec FB |
1442 | vga_draw_line4_8, |
1443 | vga_draw_line4_16, | |
1444 | vga_draw_line4_16, | |
1445 | vga_draw_line4_32, | |
d3079cd2 | 1446 | vga_draw_line4_32, |
b29169d2 BS |
1447 | vga_draw_line4_16, |
1448 | vga_draw_line4_16, | |
e89f66ec | 1449 | |
17b0018b FB |
1450 | vga_draw_line4d2_8, |
1451 | vga_draw_line4d2_16, | |
1452 | vga_draw_line4d2_16, | |
1453 | vga_draw_line4d2_32, | |
d3079cd2 | 1454 | vga_draw_line4d2_32, |
b29169d2 BS |
1455 | vga_draw_line4d2_16, |
1456 | vga_draw_line4d2_16, | |
17b0018b FB |
1457 | |
1458 | vga_draw_line8d2_8, | |
1459 | vga_draw_line8d2_16, | |
1460 | vga_draw_line8d2_16, | |
1461 | vga_draw_line8d2_32, | |
d3079cd2 | 1462 | vga_draw_line8d2_32, |
b29169d2 BS |
1463 | vga_draw_line8d2_16, |
1464 | vga_draw_line8d2_16, | |
17b0018b | 1465 | |
e89f66ec FB |
1466 | vga_draw_line8_8, |
1467 | vga_draw_line8_16, | |
1468 | vga_draw_line8_16, | |
1469 | vga_draw_line8_32, | |
d3079cd2 | 1470 | vga_draw_line8_32, |
b29169d2 BS |
1471 | vga_draw_line8_16, |
1472 | vga_draw_line8_16, | |
e89f66ec FB |
1473 | |
1474 | vga_draw_line15_8, | |
1475 | vga_draw_line15_15, | |
1476 | vga_draw_line15_16, | |
1477 | vga_draw_line15_32, | |
d3079cd2 | 1478 | vga_draw_line15_32bgr, |
b29169d2 BS |
1479 | vga_draw_line15_15bgr, |
1480 | vga_draw_line15_16bgr, | |
e89f66ec FB |
1481 | |
1482 | vga_draw_line16_8, | |
1483 | vga_draw_line16_15, | |
1484 | vga_draw_line16_16, | |
1485 | vga_draw_line16_32, | |
d3079cd2 | 1486 | vga_draw_line16_32bgr, |
b29169d2 BS |
1487 | vga_draw_line16_15bgr, |
1488 | vga_draw_line16_16bgr, | |
e89f66ec | 1489 | |
4fa0f5d2 FB |
1490 | vga_draw_line24_8, |
1491 | vga_draw_line24_15, | |
1492 | vga_draw_line24_16, | |
1493 | vga_draw_line24_32, | |
d3079cd2 | 1494 | vga_draw_line24_32bgr, |
b29169d2 BS |
1495 | vga_draw_line24_15bgr, |
1496 | vga_draw_line24_16bgr, | |
4fa0f5d2 | 1497 | |
e89f66ec FB |
1498 | vga_draw_line32_8, |
1499 | vga_draw_line32_15, | |
1500 | vga_draw_line32_16, | |
1501 | vga_draw_line32_32, | |
d3079cd2 | 1502 | vga_draw_line32_32bgr, |
b29169d2 BS |
1503 | vga_draw_line32_15bgr, |
1504 | vga_draw_line32_16bgr, | |
d3079cd2 FB |
1505 | }; |
1506 | ||
1507 | typedef unsigned int rgb_to_pixel_dup_func(unsigned int r, unsigned int g, unsigned b); | |
1508 | ||
1509 | static rgb_to_pixel_dup_func *rgb_to_pixel_dup_table[NB_DEPTHS] = { | |
1510 | rgb_to_pixel8_dup, | |
1511 | rgb_to_pixel15_dup, | |
1512 | rgb_to_pixel16_dup, | |
1513 | rgb_to_pixel32_dup, | |
1514 | rgb_to_pixel32bgr_dup, | |
b29169d2 BS |
1515 | rgb_to_pixel15bgr_dup, |
1516 | rgb_to_pixel16bgr_dup, | |
e89f66ec FB |
1517 | }; |
1518 | ||
798b0c25 FB |
1519 | static int vga_get_bpp(VGAState *s) |
1520 | { | |
1521 | int ret; | |
1522 | #ifdef CONFIG_BOCHS_VBE | |
1523 | if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) { | |
1524 | ret = s->vbe_regs[VBE_DISPI_INDEX_BPP]; | |
5fafdf24 | 1525 | } else |
798b0c25 FB |
1526 | #endif |
1527 | { | |
1528 | ret = 0; | |
1529 | } | |
1530 | return ret; | |
1531 | } | |
1532 | ||
a130a41e FB |
1533 | static void vga_get_resolution(VGAState *s, int *pwidth, int *pheight) |
1534 | { | |
1535 | int width, height; | |
3b46e624 | 1536 | |
8454df8b FB |
1537 | #ifdef CONFIG_BOCHS_VBE |
1538 | if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) { | |
1539 | width = s->vbe_regs[VBE_DISPI_INDEX_XRES]; | |
1540 | height = s->vbe_regs[VBE_DISPI_INDEX_YRES]; | |
5fafdf24 | 1541 | } else |
8454df8b FB |
1542 | #endif |
1543 | { | |
1544 | width = (s->cr[0x01] + 1) * 8; | |
5fafdf24 TS |
1545 | height = s->cr[0x12] | |
1546 | ((s->cr[0x07] & 0x02) << 7) | | |
8454df8b FB |
1547 | ((s->cr[0x07] & 0x40) << 3); |
1548 | height = (height + 1); | |
1549 | } | |
a130a41e FB |
1550 | *pwidth = width; |
1551 | *pheight = height; | |
1552 | } | |
1553 | ||
a8aa669b FB |
1554 | void vga_invalidate_scanlines(VGAState *s, int y1, int y2) |
1555 | { | |
1556 | int y; | |
1557 | if (y1 >= VGA_MAX_HEIGHT) | |
1558 | return; | |
1559 | if (y2 >= VGA_MAX_HEIGHT) | |
1560 | y2 = VGA_MAX_HEIGHT; | |
1561 | for(y = y1; y < y2; y++) { | |
1562 | s->invalidated_y_table[y >> 5] |= 1 << (y & 0x1f); | |
1563 | } | |
1564 | } | |
1565 | ||
2bec46dc AL |
1566 | static void vga_sync_dirty_bitmap(VGAState *s) |
1567 | { | |
1568 | if (s->map_addr) | |
1569 | cpu_physical_sync_dirty_bitmap(s->map_addr, s->map_end); | |
1570 | ||
1571 | if (s->lfb_vram_mapped) { | |
1572 | cpu_physical_sync_dirty_bitmap(isa_mem_base + 0xa0000, 0xa8000); | |
1573 | cpu_physical_sync_dirty_bitmap(isa_mem_base + 0xa8000, 0xb0000); | |
1574 | } | |
1575 | vga_dirty_log_start(s); | |
1576 | } | |
1577 | ||
5fafdf24 | 1578 | /* |
e89f66ec | 1579 | * graphic modes |
e89f66ec FB |
1580 | */ |
1581 | static void vga_draw_graphic(VGAState *s, int full_update) | |
1582 | { | |
17b0018b | 1583 | int y1, y, update, page_min, page_max, linesize, y_start, double_scan, mask; |
15342721 | 1584 | int width, height, shift_control, line_offset, page0, page1, bwidth, bits; |
a07cf92a | 1585 | int disp_width, multi_scan, multi_run; |
e89f66ec | 1586 | uint8_t *d; |
39cf7803 | 1587 | uint32_t v, addr1, addr; |
e89f66ec | 1588 | vga_draw_line_func *vga_draw_line; |
3b46e624 | 1589 | |
e89f66ec FB |
1590 | full_update |= update_basic_params(s); |
1591 | ||
2bec46dc AL |
1592 | if (!full_update) |
1593 | vga_sync_dirty_bitmap(s); | |
1594 | ||
a130a41e | 1595 | s->get_resolution(s, &width, &height); |
17b0018b | 1596 | disp_width = width; |
09a79b49 | 1597 | |
e89f66ec | 1598 | shift_control = (s->gr[0x05] >> 5) & 3; |
f6c958c8 FB |
1599 | double_scan = (s->cr[0x09] >> 7); |
1600 | if (shift_control != 1) { | |
1601 | multi_scan = (((s->cr[0x09] & 0x1f) + 1) << double_scan) - 1; | |
a07cf92a | 1602 | } else { |
f6c958c8 FB |
1603 | /* in CGA modes, multi_scan is ignored */ |
1604 | /* XXX: is it correct ? */ | |
1605 | multi_scan = double_scan; | |
a07cf92a FB |
1606 | } |
1607 | multi_run = multi_scan; | |
17b0018b FB |
1608 | if (shift_control != s->shift_control || |
1609 | double_scan != s->double_scan) { | |
e89f66ec FB |
1610 | full_update = 1; |
1611 | s->shift_control = shift_control; | |
17b0018b | 1612 | s->double_scan = double_scan; |
e89f66ec | 1613 | } |
3b46e624 | 1614 | |
17b0018b FB |
1615 | if (shift_control == 0) { |
1616 | full_update |= update_palette16(s); | |
1617 | if (s->sr[0x01] & 8) { | |
1618 | v = VGA_DRAW_LINE4D2; | |
1619 | disp_width <<= 1; | |
1620 | } else { | |
1621 | v = VGA_DRAW_LINE4; | |
1622 | } | |
15342721 | 1623 | bits = 4; |
17b0018b FB |
1624 | } else if (shift_control == 1) { |
1625 | full_update |= update_palette16(s); | |
1626 | if (s->sr[0x01] & 8) { | |
1627 | v = VGA_DRAW_LINE2D2; | |
1628 | disp_width <<= 1; | |
1629 | } else { | |
1630 | v = VGA_DRAW_LINE2; | |
1631 | } | |
15342721 | 1632 | bits = 4; |
17b0018b | 1633 | } else { |
798b0c25 FB |
1634 | switch(s->get_bpp(s)) { |
1635 | default: | |
1636 | case 0: | |
4fa0f5d2 FB |
1637 | full_update |= update_palette256(s); |
1638 | v = VGA_DRAW_LINE8D2; | |
15342721 | 1639 | bits = 4; |
798b0c25 FB |
1640 | break; |
1641 | case 8: | |
1642 | full_update |= update_palette256(s); | |
1643 | v = VGA_DRAW_LINE8; | |
15342721 | 1644 | bits = 8; |
798b0c25 FB |
1645 | break; |
1646 | case 15: | |
1647 | v = VGA_DRAW_LINE15; | |
15342721 | 1648 | bits = 16; |
798b0c25 FB |
1649 | break; |
1650 | case 16: | |
1651 | v = VGA_DRAW_LINE16; | |
15342721 | 1652 | bits = 16; |
798b0c25 FB |
1653 | break; |
1654 | case 24: | |
1655 | v = VGA_DRAW_LINE24; | |
15342721 | 1656 | bits = 24; |
798b0c25 FB |
1657 | break; |
1658 | case 32: | |
1659 | v = VGA_DRAW_LINE32; | |
15342721 | 1660 | bits = 32; |
798b0c25 | 1661 | break; |
4fa0f5d2 | 1662 | } |
17b0018b | 1663 | } |
d3079cd2 | 1664 | vga_draw_line = vga_draw_line_table[v * NB_DEPTHS + get_depth_index(s->ds)]; |
17b0018b FB |
1665 | |
1666 | if (disp_width != s->last_width || | |
1667 | height != s->last_height) { | |
c60e08d9 | 1668 | qemu_console_resize(s->console, disp_width, height); |
2aebb3eb FB |
1669 | s->last_scr_width = disp_width; |
1670 | s->last_scr_height = height; | |
17b0018b FB |
1671 | s->last_width = disp_width; |
1672 | s->last_height = height; | |
1673 | full_update = 1; | |
1674 | } | |
a8aa669b FB |
1675 | if (s->cursor_invalidate) |
1676 | s->cursor_invalidate(s); | |
3b46e624 | 1677 | |
e89f66ec | 1678 | line_offset = s->line_offset; |
17b0018b | 1679 | #if 0 |
f6c958c8 | 1680 | printf("w=%d h=%d v=%d line_offset=%d cr[0x09]=0x%02x cr[0x17]=0x%02x linecmp=%d sr[0x01]=0x%02x\n", |
17b0018b FB |
1681 | width, height, v, line_offset, s->cr[9], s->cr[0x17], s->line_compare, s->sr[0x01]); |
1682 | #endif | |
e89f66ec | 1683 | addr1 = (s->start_addr * 4); |
15342721 | 1684 | bwidth = (width * bits + 7) / 8; |
39cf7803 | 1685 | y_start = -1; |
e89f66ec FB |
1686 | page_min = 0x7fffffff; |
1687 | page_max = -1; | |
0e1f5a0c AL |
1688 | d = ds_get_data(s->ds); |
1689 | linesize = ds_get_linesize(s->ds); | |
17b0018b | 1690 | y1 = 0; |
e89f66ec FB |
1691 | for(y = 0; y < height; y++) { |
1692 | addr = addr1; | |
39cf7803 | 1693 | if (!(s->cr[0x17] & 1)) { |
17b0018b | 1694 | int shift; |
e89f66ec | 1695 | /* CGA compatibility handling */ |
17b0018b FB |
1696 | shift = 14 + ((s->cr[0x17] >> 6) & 1); |
1697 | addr = (addr & ~(1 << shift)) | ((y1 & 1) << shift); | |
e89f66ec | 1698 | } |
39cf7803 | 1699 | if (!(s->cr[0x17] & 2)) { |
17b0018b | 1700 | addr = (addr & ~0x8000) | ((y1 & 2) << 14); |
e89f66ec | 1701 | } |
4fa0f5d2 FB |
1702 | page0 = s->vram_offset + (addr & TARGET_PAGE_MASK); |
1703 | page1 = s->vram_offset + ((addr + bwidth - 1) & TARGET_PAGE_MASK); | |
5fafdf24 | 1704 | update = full_update | |
0a962c02 FB |
1705 | cpu_physical_memory_get_dirty(page0, VGA_DIRTY_FLAG) | |
1706 | cpu_physical_memory_get_dirty(page1, VGA_DIRTY_FLAG); | |
4fa0f5d2 | 1707 | if ((page1 - page0) > TARGET_PAGE_SIZE) { |
39cf7803 | 1708 | /* if wide line, can use another page */ |
5fafdf24 | 1709 | update |= cpu_physical_memory_get_dirty(page0 + TARGET_PAGE_SIZE, |
0a962c02 | 1710 | VGA_DIRTY_FLAG); |
39cf7803 | 1711 | } |
a8aa669b FB |
1712 | /* explicit invalidation for the hardware cursor */ |
1713 | update |= (s->invalidated_y_table[y >> 5] >> (y & 0x1f)) & 1; | |
e89f66ec | 1714 | if (update) { |
39cf7803 FB |
1715 | if (y_start < 0) |
1716 | y_start = y; | |
e89f66ec FB |
1717 | if (page0 < page_min) |
1718 | page_min = page0; | |
1719 | if (page1 > page_max) | |
1720 | page_max = page1; | |
1721 | vga_draw_line(s, d, s->vram_ptr + addr, width); | |
a8aa669b FB |
1722 | if (s->cursor_draw_line) |
1723 | s->cursor_draw_line(s, d, y); | |
39cf7803 FB |
1724 | } else { |
1725 | if (y_start >= 0) { | |
1726 | /* flush to display */ | |
5fafdf24 | 1727 | dpy_update(s->ds, 0, y_start, |
17b0018b | 1728 | disp_width, y - y_start); |
39cf7803 FB |
1729 | y_start = -1; |
1730 | } | |
e89f66ec | 1731 | } |
a07cf92a | 1732 | if (!multi_run) { |
f6c958c8 FB |
1733 | mask = (s->cr[0x17] & 3) ^ 3; |
1734 | if ((y1 & mask) == mask) | |
1735 | addr1 += line_offset; | |
1736 | y1++; | |
a07cf92a FB |
1737 | multi_run = multi_scan; |
1738 | } else { | |
1739 | multi_run--; | |
e89f66ec | 1740 | } |
f6c958c8 FB |
1741 | /* line compare acts on the displayed lines */ |
1742 | if (y == s->line_compare) | |
1743 | addr1 = 0; | |
e89f66ec FB |
1744 | d += linesize; |
1745 | } | |
39cf7803 FB |
1746 | if (y_start >= 0) { |
1747 | /* flush to display */ | |
5fafdf24 | 1748 | dpy_update(s->ds, 0, y_start, |
17b0018b | 1749 | disp_width, y - y_start); |
39cf7803 | 1750 | } |
e89f66ec FB |
1751 | /* reset modified pages */ |
1752 | if (page_max != -1) { | |
0a962c02 FB |
1753 | cpu_physical_memory_reset_dirty(page_min, page_max + TARGET_PAGE_SIZE, |
1754 | VGA_DIRTY_FLAG); | |
e89f66ec | 1755 | } |
a8aa669b | 1756 | memset(s->invalidated_y_table, 0, ((height + 31) >> 5) * 4); |
e89f66ec FB |
1757 | } |
1758 | ||
2aebb3eb FB |
1759 | static void vga_draw_blank(VGAState *s, int full_update) |
1760 | { | |
1761 | int i, w, val; | |
1762 | uint8_t *d; | |
1763 | ||
1764 | if (!full_update) | |
1765 | return; | |
1766 | if (s->last_scr_width <= 0 || s->last_scr_height <= 0) | |
1767 | return; | |
2bec46dc AL |
1768 | vga_dirty_log_stop(s); |
1769 | ||
0e1f5a0c | 1770 | if (ds_get_bits_per_pixel(s->ds) == 8) |
2aebb3eb FB |
1771 | val = s->rgb_to_pixel(0, 0, 0); |
1772 | else | |
1773 | val = 0; | |
0e1f5a0c AL |
1774 | w = s->last_scr_width * ((ds_get_bits_per_pixel(s->ds) + 7) >> 3); |
1775 | d = ds_get_data(s->ds); | |
2aebb3eb FB |
1776 | for(i = 0; i < s->last_scr_height; i++) { |
1777 | memset(d, val, w); | |
0e1f5a0c | 1778 | d += ds_get_linesize(s->ds); |
2aebb3eb | 1779 | } |
5fafdf24 | 1780 | dpy_update(s->ds, 0, 0, |
2aebb3eb FB |
1781 | s->last_scr_width, s->last_scr_height); |
1782 | } | |
1783 | ||
1784 | #define GMODE_TEXT 0 | |
1785 | #define GMODE_GRAPH 1 | |
5fafdf24 | 1786 | #define GMODE_BLANK 2 |
2aebb3eb | 1787 | |
95219897 | 1788 | static void vga_update_display(void *opaque) |
e89f66ec | 1789 | { |
95219897 | 1790 | VGAState *s = (VGAState *)opaque; |
e89f66ec FB |
1791 | int full_update, graphic_mode; |
1792 | ||
0e1f5a0c | 1793 | if (ds_get_bits_per_pixel(s->ds) == 0) { |
0f35920c | 1794 | /* nothing to do */ |
59a983b9 | 1795 | } else { |
5fafdf24 | 1796 | s->rgb_to_pixel = |
d3079cd2 | 1797 | rgb_to_pixel_dup_table[get_depth_index(s->ds)]; |
3b46e624 | 1798 | |
e89f66ec | 1799 | full_update = 0; |
2aebb3eb FB |
1800 | if (!(s->ar_index & 0x20)) { |
1801 | graphic_mode = GMODE_BLANK; | |
1802 | } else { | |
1803 | graphic_mode = s->gr[6] & 1; | |
1804 | } | |
e89f66ec FB |
1805 | if (graphic_mode != s->graphic_mode) { |
1806 | s->graphic_mode = graphic_mode; | |
1807 | full_update = 1; | |
1808 | } | |
2aebb3eb FB |
1809 | switch(graphic_mode) { |
1810 | case GMODE_TEXT: | |
e89f66ec | 1811 | vga_draw_text(s, full_update); |
2aebb3eb FB |
1812 | break; |
1813 | case GMODE_GRAPH: | |
1814 | vga_draw_graphic(s, full_update); | |
1815 | break; | |
1816 | case GMODE_BLANK: | |
1817 | default: | |
1818 | vga_draw_blank(s, full_update); | |
1819 | break; | |
1820 | } | |
e89f66ec FB |
1821 | } |
1822 | } | |
1823 | ||
a130a41e | 1824 | /* force a full display refresh */ |
95219897 | 1825 | static void vga_invalidate_display(void *opaque) |
a130a41e | 1826 | { |
95219897 | 1827 | VGAState *s = (VGAState *)opaque; |
3b46e624 | 1828 | |
a130a41e FB |
1829 | s->last_width = -1; |
1830 | s->last_height = -1; | |
1831 | } | |
1832 | ||
4abc796d | 1833 | void vga_reset(void *opaque) |
e89f66ec | 1834 | { |
6e6b7363 BS |
1835 | VGAState *s = (VGAState *) opaque; |
1836 | ||
1837 | s->lfb_addr = 0; | |
1838 | s->lfb_end = 0; | |
1839 | s->map_addr = 0; | |
1840 | s->map_end = 0; | |
1841 | s->lfb_vram_mapped = 0; | |
1842 | s->bios_offset = 0; | |
1843 | s->bios_size = 0; | |
1844 | s->sr_index = 0; | |
1845 | memset(s->sr, '\0', sizeof(s->sr)); | |
1846 | s->gr_index = 0; | |
1847 | memset(s->gr, '\0', sizeof(s->gr)); | |
1848 | s->ar_index = 0; | |
1849 | memset(s->ar, '\0', sizeof(s->ar)); | |
1850 | s->ar_flip_flop = 0; | |
1851 | s->cr_index = 0; | |
1852 | memset(s->cr, '\0', sizeof(s->cr)); | |
1853 | s->msr = 0; | |
1854 | s->fcr = 0; | |
1855 | s->st00 = 0; | |
1856 | s->st01 = 0; | |
1857 | s->dac_state = 0; | |
1858 | s->dac_sub_index = 0; | |
1859 | s->dac_read_index = 0; | |
1860 | s->dac_write_index = 0; | |
1861 | memset(s->dac_cache, '\0', sizeof(s->dac_cache)); | |
1862 | s->dac_8bit = 0; | |
1863 | memset(s->palette, '\0', sizeof(s->palette)); | |
1864 | s->bank_offset = 0; | |
1865 | #ifdef CONFIG_BOCHS_VBE | |
1866 | s->vbe_index = 0; | |
1867 | memset(s->vbe_regs, '\0', sizeof(s->vbe_regs)); | |
1868 | s->vbe_regs[VBE_DISPI_INDEX_ID] = VBE_DISPI_ID0; | |
1869 | s->vbe_start_addr = 0; | |
1870 | s->vbe_line_offset = 0; | |
1871 | s->vbe_bank_mask = (s->vram_size >> 16) - 1; | |
1872 | #endif | |
1873 | memset(s->font_offsets, '\0', sizeof(s->font_offsets)); | |
e89f66ec | 1874 | s->graphic_mode = -1; /* force full update */ |
6e6b7363 BS |
1875 | s->shift_control = 0; |
1876 | s->double_scan = 0; | |
1877 | s->line_offset = 0; | |
1878 | s->line_compare = 0; | |
1879 | s->start_addr = 0; | |
1880 | s->plane_updated = 0; | |
1881 | s->last_cw = 0; | |
1882 | s->last_ch = 0; | |
1883 | s->last_width = 0; | |
1884 | s->last_height = 0; | |
1885 | s->last_scr_width = 0; | |
1886 | s->last_scr_height = 0; | |
1887 | s->cursor_start = 0; | |
1888 | s->cursor_end = 0; | |
1889 | s->cursor_offset = 0; | |
1890 | memset(s->invalidated_y_table, '\0', sizeof(s->invalidated_y_table)); | |
1891 | memset(s->last_palette, '\0', sizeof(s->last_palette)); | |
1892 | memset(s->last_ch_attr, '\0', sizeof(s->last_ch_attr)); | |
1893 | switch (vga_retrace_method) { | |
1894 | case VGA_RETRACE_DUMB: | |
1895 | break; | |
1896 | case VGA_RETRACE_PRECISE: | |
1897 | memset(&s->retrace_info, 0, sizeof (s->retrace_info)); | |
1898 | break; | |
1899 | } | |
e89f66ec FB |
1900 | } |
1901 | ||
4d3b6f6e AZ |
1902 | #define TEXTMODE_X(x) ((x) % width) |
1903 | #define TEXTMODE_Y(x) ((x) / width) | |
1904 | #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \ | |
1905 | ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1)) | |
1906 | /* relay text rendering to the display driver | |
1907 | * instead of doing a full vga_update_display() */ | |
1908 | static void vga_update_text(void *opaque, console_ch_t *chardata) | |
1909 | { | |
1910 | VGAState *s = (VGAState *) opaque; | |
1911 | int graphic_mode, i, cursor_offset, cursor_visible; | |
1912 | int cw, cheight, width, height, size, c_min, c_max; | |
1913 | uint32_t *src; | |
1914 | console_ch_t *dst, val; | |
1915 | char msg_buffer[80]; | |
5228c2d3 | 1916 | int full_update = 0; |
4d3b6f6e AZ |
1917 | |
1918 | if (!(s->ar_index & 0x20)) { | |
1919 | graphic_mode = GMODE_BLANK; | |
1920 | } else { | |
1921 | graphic_mode = s->gr[6] & 1; | |
1922 | } | |
1923 | if (graphic_mode != s->graphic_mode) { | |
1924 | s->graphic_mode = graphic_mode; | |
1925 | full_update = 1; | |
1926 | } | |
1927 | if (s->last_width == -1) { | |
1928 | s->last_width = 0; | |
1929 | full_update = 1; | |
1930 | } | |
1931 | ||
1932 | switch (graphic_mode) { | |
1933 | case GMODE_TEXT: | |
1934 | /* TODO: update palette */ | |
1935 | full_update |= update_basic_params(s); | |
1936 | ||
1937 | /* total width & height */ | |
1938 | cheight = (s->cr[9] & 0x1f) + 1; | |
1939 | cw = 8; | |
1940 | if (!(s->sr[1] & 0x01)) | |
1941 | cw = 9; | |
1942 | if (s->sr[1] & 0x08) | |
1943 | cw = 16; /* NOTE: no 18 pixel wide */ | |
1944 | width = (s->cr[0x01] + 1); | |
1945 | if (s->cr[0x06] == 100) { | |
1946 | /* ugly hack for CGA 160x100x16 - explain me the logic */ | |
1947 | height = 100; | |
1948 | } else { | |
1949 | height = s->cr[0x12] | | |
1950 | ((s->cr[0x07] & 0x02) << 7) | | |
1951 | ((s->cr[0x07] & 0x40) << 3); | |
1952 | height = (height + 1) / cheight; | |
1953 | } | |
1954 | ||
1955 | size = (height * width); | |
1956 | if (size > CH_ATTR_SIZE) { | |
1957 | if (!full_update) | |
1958 | return; | |
1959 | ||
363a37d5 BS |
1960 | snprintf(msg_buffer, sizeof(msg_buffer), "%i x %i Text mode", |
1961 | width, height); | |
4d3b6f6e AZ |
1962 | break; |
1963 | } | |
1964 | ||
1965 | if (width != s->last_width || height != s->last_height || | |
1966 | cw != s->last_cw || cheight != s->last_ch) { | |
1967 | s->last_scr_width = width * cw; | |
1968 | s->last_scr_height = height * cheight; | |
c60e08d9 | 1969 | qemu_console_resize(s->console, width, height); |
4d3b6f6e AZ |
1970 | s->last_width = width; |
1971 | s->last_height = height; | |
1972 | s->last_ch = cheight; | |
1973 | s->last_cw = cw; | |
1974 | full_update = 1; | |
1975 | } | |
1976 | ||
1977 | /* Update "hardware" cursor */ | |
1978 | cursor_offset = ((s->cr[0x0e] << 8) | s->cr[0x0f]) - s->start_addr; | |
1979 | if (cursor_offset != s->cursor_offset || | |
1980 | s->cr[0xa] != s->cursor_start || | |
1981 | s->cr[0xb] != s->cursor_end || full_update) { | |
1982 | cursor_visible = !(s->cr[0xa] & 0x20); | |
1983 | if (cursor_visible && cursor_offset < size && cursor_offset >= 0) | |
1984 | dpy_cursor(s->ds, | |
1985 | TEXTMODE_X(cursor_offset), | |
1986 | TEXTMODE_Y(cursor_offset)); | |
1987 | else | |
1988 | dpy_cursor(s->ds, -1, -1); | |
1989 | s->cursor_offset = cursor_offset; | |
1990 | s->cursor_start = s->cr[0xa]; | |
1991 | s->cursor_end = s->cr[0xb]; | |
1992 | } | |
1993 | ||
1994 | src = (uint32_t *) s->vram_ptr + s->start_addr; | |
1995 | dst = chardata; | |
1996 | ||
1997 | if (full_update) { | |
1998 | for (i = 0; i < size; src ++, dst ++, i ++) | |
1999 | console_write_ch(dst, VMEM2CHTYPE(*src)); | |
2000 | ||
2001 | dpy_update(s->ds, 0, 0, width, height); | |
2002 | } else { | |
2003 | c_max = 0; | |
2004 | ||
2005 | for (i = 0; i < size; src ++, dst ++, i ++) { | |
2006 | console_write_ch(&val, VMEM2CHTYPE(*src)); | |
2007 | if (*dst != val) { | |
2008 | *dst = val; | |
2009 | c_max = i; | |
2010 | break; | |
2011 | } | |
2012 | } | |
2013 | c_min = i; | |
2014 | for (; i < size; src ++, dst ++, i ++) { | |
2015 | console_write_ch(&val, VMEM2CHTYPE(*src)); | |
2016 | if (*dst != val) { | |
2017 | *dst = val; | |
2018 | c_max = i; | |
2019 | } | |
2020 | } | |
2021 | ||
2022 | if (c_min <= c_max) { | |
2023 | i = TEXTMODE_Y(c_min); | |
2024 | dpy_update(s->ds, 0, i, width, TEXTMODE_Y(c_max) - i + 1); | |
2025 | } | |
2026 | } | |
2027 | ||
2028 | return; | |
2029 | case GMODE_GRAPH: | |
2030 | if (!full_update) | |
2031 | return; | |
2032 | ||
2033 | s->get_resolution(s, &width, &height); | |
363a37d5 BS |
2034 | snprintf(msg_buffer, sizeof(msg_buffer), "%i x %i Graphic mode", |
2035 | width, height); | |
4d3b6f6e AZ |
2036 | break; |
2037 | case GMODE_BLANK: | |
2038 | default: | |
2039 | if (!full_update) | |
2040 | return; | |
2041 | ||
363a37d5 | 2042 | snprintf(msg_buffer, sizeof(msg_buffer), "VGA Blank mode"); |
4d3b6f6e AZ |
2043 | break; |
2044 | } | |
2045 | ||
2046 | /* Display a message */ | |
5228c2d3 AZ |
2047 | s->last_width = 60; |
2048 | s->last_height = height = 3; | |
4d3b6f6e | 2049 | dpy_cursor(s->ds, -1, -1); |
c60e08d9 | 2050 | qemu_console_resize(s->console, s->last_width, height); |
4d3b6f6e | 2051 | |
5228c2d3 | 2052 | for (dst = chardata, i = 0; i < s->last_width * height; i ++) |
4d3b6f6e AZ |
2053 | console_write_ch(dst ++, ' '); |
2054 | ||
2055 | size = strlen(msg_buffer); | |
5228c2d3 AZ |
2056 | width = (s->last_width - size) / 2; |
2057 | dst = chardata + s->last_width + width; | |
4d3b6f6e AZ |
2058 | for (i = 0; i < size; i ++) |
2059 | console_write_ch(dst ++, 0x00200100 | msg_buffer[i]); | |
2060 | ||
5228c2d3 | 2061 | dpy_update(s->ds, 0, 0, s->last_width, height); |
4d3b6f6e AZ |
2062 | } |
2063 | ||
59a983b9 | 2064 | static CPUReadMemoryFunc *vga_mem_read[3] = { |
e89f66ec FB |
2065 | vga_mem_readb, |
2066 | vga_mem_readw, | |
2067 | vga_mem_readl, | |
2068 | }; | |
2069 | ||
59a983b9 | 2070 | static CPUWriteMemoryFunc *vga_mem_write[3] = { |
e89f66ec FB |
2071 | vga_mem_writeb, |
2072 | vga_mem_writew, | |
2073 | vga_mem_writel, | |
2074 | }; | |
2075 | ||
b0a21b53 FB |
2076 | static void vga_save(QEMUFile *f, void *opaque) |
2077 | { | |
2078 | VGAState *s = opaque; | |
2079 | int i; | |
2080 | ||
d2269f6f FB |
2081 | if (s->pci_dev) |
2082 | pci_device_save(s->pci_dev, f); | |
2083 | ||
b0a21b53 FB |
2084 | qemu_put_be32s(f, &s->latch); |
2085 | qemu_put_8s(f, &s->sr_index); | |
2086 | qemu_put_buffer(f, s->sr, 8); | |
2087 | qemu_put_8s(f, &s->gr_index); | |
2088 | qemu_put_buffer(f, s->gr, 16); | |
2089 | qemu_put_8s(f, &s->ar_index); | |
2090 | qemu_put_buffer(f, s->ar, 21); | |
bee8d684 | 2091 | qemu_put_be32(f, s->ar_flip_flop); |
b0a21b53 FB |
2092 | qemu_put_8s(f, &s->cr_index); |
2093 | qemu_put_buffer(f, s->cr, 256); | |
2094 | qemu_put_8s(f, &s->msr); | |
2095 | qemu_put_8s(f, &s->fcr); | |
bee8d684 | 2096 | qemu_put_byte(f, s->st00); |
b0a21b53 FB |
2097 | qemu_put_8s(f, &s->st01); |
2098 | ||
2099 | qemu_put_8s(f, &s->dac_state); | |
2100 | qemu_put_8s(f, &s->dac_sub_index); | |
2101 | qemu_put_8s(f, &s->dac_read_index); | |
2102 | qemu_put_8s(f, &s->dac_write_index); | |
2103 | qemu_put_buffer(f, s->dac_cache, 3); | |
2104 | qemu_put_buffer(f, s->palette, 768); | |
2105 | ||
bee8d684 | 2106 | qemu_put_be32(f, s->bank_offset); |
b0a21b53 FB |
2107 | #ifdef CONFIG_BOCHS_VBE |
2108 | qemu_put_byte(f, 1); | |
2109 | qemu_put_be16s(f, &s->vbe_index); | |
2110 | for(i = 0; i < VBE_DISPI_INDEX_NB; i++) | |
2111 | qemu_put_be16s(f, &s->vbe_regs[i]); | |
2112 | qemu_put_be32s(f, &s->vbe_start_addr); | |
2113 | qemu_put_be32s(f, &s->vbe_line_offset); | |
2114 | qemu_put_be32s(f, &s->vbe_bank_mask); | |
2115 | #else | |
2116 | qemu_put_byte(f, 0); | |
2117 | #endif | |
2118 | } | |
2119 | ||
2120 | static int vga_load(QEMUFile *f, void *opaque, int version_id) | |
2121 | { | |
2122 | VGAState *s = opaque; | |
d2269f6f | 2123 | int is_vbe, i, ret; |
b0a21b53 | 2124 | |
d2269f6f | 2125 | if (version_id > 2) |
b0a21b53 FB |
2126 | return -EINVAL; |
2127 | ||
d2269f6f FB |
2128 | if (s->pci_dev && version_id >= 2) { |
2129 | ret = pci_device_load(s->pci_dev, f); | |
2130 | if (ret < 0) | |
2131 | return ret; | |
2132 | } | |
2133 | ||
b0a21b53 FB |
2134 | qemu_get_be32s(f, &s->latch); |
2135 | qemu_get_8s(f, &s->sr_index); | |
2136 | qemu_get_buffer(f, s->sr, 8); | |
2137 | qemu_get_8s(f, &s->gr_index); | |
2138 | qemu_get_buffer(f, s->gr, 16); | |
2139 | qemu_get_8s(f, &s->ar_index); | |
2140 | qemu_get_buffer(f, s->ar, 21); | |
bee8d684 | 2141 | s->ar_flip_flop=qemu_get_be32(f); |
b0a21b53 FB |
2142 | qemu_get_8s(f, &s->cr_index); |
2143 | qemu_get_buffer(f, s->cr, 256); | |
2144 | qemu_get_8s(f, &s->msr); | |
2145 | qemu_get_8s(f, &s->fcr); | |
2146 | qemu_get_8s(f, &s->st00); | |
2147 | qemu_get_8s(f, &s->st01); | |
2148 | ||
2149 | qemu_get_8s(f, &s->dac_state); | |
2150 | qemu_get_8s(f, &s->dac_sub_index); | |
2151 | qemu_get_8s(f, &s->dac_read_index); | |
2152 | qemu_get_8s(f, &s->dac_write_index); | |
2153 | qemu_get_buffer(f, s->dac_cache, 3); | |
2154 | qemu_get_buffer(f, s->palette, 768); | |
2155 | ||
bee8d684 | 2156 | s->bank_offset=qemu_get_be32(f); |
b0a21b53 FB |
2157 | is_vbe = qemu_get_byte(f); |
2158 | #ifdef CONFIG_BOCHS_VBE | |
2159 | if (!is_vbe) | |
2160 | return -EINVAL; | |
2161 | qemu_get_be16s(f, &s->vbe_index); | |
2162 | for(i = 0; i < VBE_DISPI_INDEX_NB; i++) | |
2163 | qemu_get_be16s(f, &s->vbe_regs[i]); | |
2164 | qemu_get_be32s(f, &s->vbe_start_addr); | |
2165 | qemu_get_be32s(f, &s->vbe_line_offset); | |
2166 | qemu_get_be32s(f, &s->vbe_bank_mask); | |
2167 | #else | |
2168 | if (is_vbe) | |
2169 | return -EINVAL; | |
2170 | #endif | |
2171 | ||
2172 | /* force refresh */ | |
2173 | s->graphic_mode = -1; | |
2174 | return 0; | |
2175 | } | |
2176 | ||
d2269f6f FB |
2177 | typedef struct PCIVGAState { |
2178 | PCIDevice dev; | |
2179 | VGAState vga_state; | |
2180 | } PCIVGAState; | |
2181 | ||
2bec46dc AL |
2182 | void vga_dirty_log_start(VGAState *s) |
2183 | { | |
2184 | if (kvm_enabled() && s->map_addr) | |
2185 | kvm_log_start(s->map_addr, s->map_end - s->map_addr); | |
2186 | ||
2187 | if (kvm_enabled() && s->lfb_vram_mapped) { | |
2188 | kvm_log_start(isa_mem_base + 0xa0000, 0x8000); | |
2189 | kvm_log_start(isa_mem_base + 0xa8000, 0x8000); | |
2190 | } | |
2191 | } | |
2192 | ||
2193 | void vga_dirty_log_stop(VGAState *s) | |
2194 | { | |
2195 | if (kvm_enabled() && s->map_addr) | |
2196 | kvm_log_stop(s->map_addr, s->map_end - s->map_addr); | |
2197 | ||
2198 | if (kvm_enabled() && s->lfb_vram_mapped) { | |
2199 | kvm_log_stop(isa_mem_base + 0xa0000, 0x8000); | |
2200 | kvm_log_stop(isa_mem_base + 0xa8000, 0x8000); | |
2201 | } | |
2202 | } | |
2203 | ||
5fafdf24 | 2204 | static void vga_map(PCIDevice *pci_dev, int region_num, |
1078f663 FB |
2205 | uint32_t addr, uint32_t size, int type) |
2206 | { | |
d2269f6f FB |
2207 | PCIVGAState *d = (PCIVGAState *)pci_dev; |
2208 | VGAState *s = &d->vga_state; | |
d5295253 FB |
2209 | if (region_num == PCI_ROM_SLOT) { |
2210 | cpu_register_physical_memory(addr, s->bios_size, s->bios_offset); | |
2211 | } else { | |
2212 | cpu_register_physical_memory(addr, s->vram_size, s->vram_offset); | |
2213 | } | |
2bec46dc AL |
2214 | |
2215 | s->map_addr = addr; | |
2216 | s->map_end = addr + VGA_RAM_SIZE; | |
2217 | ||
2218 | vga_dirty_log_start(s); | |
1078f663 FB |
2219 | } |
2220 | ||
5fafdf24 | 2221 | void vga_common_init(VGAState *s, DisplayState *ds, uint8_t *vga_ram_base, |
4efe2755 | 2222 | ram_addr_t vga_ram_offset, int vga_ram_size) |
e89f66ec | 2223 | { |
17b0018b | 2224 | int i, j, v, b; |
e89f66ec FB |
2225 | |
2226 | for(i = 0;i < 256; i++) { | |
2227 | v = 0; | |
2228 | for(j = 0; j < 8; j++) { | |
2229 | v |= ((i >> j) & 1) << (j * 4); | |
2230 | } | |
2231 | expand4[i] = v; | |
2232 | ||
2233 | v = 0; | |
2234 | for(j = 0; j < 4; j++) { | |
2235 | v |= ((i >> (2 * j)) & 3) << (j * 4); | |
2236 | } | |
2237 | expand2[i] = v; | |
2238 | } | |
17b0018b FB |
2239 | for(i = 0; i < 16; i++) { |
2240 | v = 0; | |
2241 | for(j = 0; j < 4; j++) { | |
2242 | b = ((i >> j) & 1); | |
2243 | v |= b << (2 * j); | |
2244 | v |= b << (2 * j + 1); | |
2245 | } | |
2246 | expand4to8[i] = v; | |
2247 | } | |
e89f66ec | 2248 | |
e89f66ec FB |
2249 | s->vram_ptr = vga_ram_base; |
2250 | s->vram_offset = vga_ram_offset; | |
2251 | s->vram_size = vga_ram_size; | |
2252 | s->ds = ds; | |
798b0c25 FB |
2253 | s->get_bpp = vga_get_bpp; |
2254 | s->get_offsets = vga_get_offsets; | |
a130a41e | 2255 | s->get_resolution = vga_get_resolution; |
d34cab9f TS |
2256 | s->update = vga_update_display; |
2257 | s->invalidate = vga_invalidate_display; | |
2258 | s->screen_dump = vga_screen_dump; | |
4d3b6f6e | 2259 | s->text_update = vga_update_text; |
cb5a7aa8 | 2260 | switch (vga_retrace_method) { |
2261 | case VGA_RETRACE_DUMB: | |
2262 | s->retrace = vga_dumb_retrace; | |
2263 | s->update_retrace_info = vga_dumb_update_retrace_info; | |
2264 | break; | |
2265 | ||
2266 | case VGA_RETRACE_PRECISE: | |
2267 | s->retrace = vga_precise_retrace; | |
2268 | s->update_retrace_info = vga_precise_update_retrace_info; | |
cb5a7aa8 | 2269 | break; |
2270 | } | |
6e6b7363 | 2271 | vga_reset(s); |
798b0c25 FB |
2272 | } |
2273 | ||
d2269f6f | 2274 | /* used by both ISA and PCI */ |
d34cab9f | 2275 | void vga_init(VGAState *s) |
798b0c25 | 2276 | { |
d2269f6f | 2277 | int vga_io_memory; |
7b17d41e | 2278 | |
4abc796d | 2279 | qemu_register_reset(vga_reset, s); |
d2269f6f | 2280 | register_savevm("vga", 0, 2, vga_save, vga_load, s); |
b0a21b53 | 2281 | |
0f35920c | 2282 | register_ioport_write(0x3c0, 16, 1, vga_ioport_write, s); |
e89f66ec | 2283 | |
0f35920c FB |
2284 | register_ioport_write(0x3b4, 2, 1, vga_ioport_write, s); |
2285 | register_ioport_write(0x3d4, 2, 1, vga_ioport_write, s); | |
2286 | register_ioport_write(0x3ba, 1, 1, vga_ioport_write, s); | |
2287 | register_ioport_write(0x3da, 1, 1, vga_ioport_write, s); | |
e89f66ec | 2288 | |
0f35920c | 2289 | register_ioport_read(0x3c0, 16, 1, vga_ioport_read, s); |
e89f66ec | 2290 | |
0f35920c FB |
2291 | register_ioport_read(0x3b4, 2, 1, vga_ioport_read, s); |
2292 | register_ioport_read(0x3d4, 2, 1, vga_ioport_read, s); | |
2293 | register_ioport_read(0x3ba, 1, 1, vga_ioport_read, s); | |
2294 | register_ioport_read(0x3da, 1, 1, vga_ioport_read, s); | |
26aa7d72 | 2295 | s->bank_offset = 0; |
e89f66ec | 2296 | |
4fa0f5d2 | 2297 | #ifdef CONFIG_BOCHS_VBE |
09a79b49 FB |
2298 | #if defined (TARGET_I386) |
2299 | register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index, s); | |
2300 | register_ioport_read(0x1cf, 1, 2, vbe_ioport_read_data, s); | |
4fa0f5d2 | 2301 | |
09a79b49 FB |
2302 | register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index, s); |
2303 | register_ioport_write(0x1cf, 1, 2, vbe_ioport_write_data, s); | |
646be93b FB |
2304 | |
2305 | /* old Bochs IO ports */ | |
09a79b49 FB |
2306 | register_ioport_read(0xff80, 1, 2, vbe_ioport_read_index, s); |
2307 | register_ioport_read(0xff81, 1, 2, vbe_ioport_read_data, s); | |
646be93b | 2308 | |
09a79b49 | 2309 | register_ioport_write(0xff80, 1, 2, vbe_ioport_write_index, s); |
5fafdf24 | 2310 | register_ioport_write(0xff81, 1, 2, vbe_ioport_write_data, s); |
09a79b49 FB |
2311 | #else |
2312 | register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index, s); | |
2313 | register_ioport_read(0x1d0, 1, 2, vbe_ioport_read_data, s); | |
2314 | ||
2315 | register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index, s); | |
2316 | register_ioport_write(0x1d0, 1, 2, vbe_ioport_write_data, s); | |
4fa0f5d2 | 2317 | #endif |
09a79b49 | 2318 | #endif /* CONFIG_BOCHS_VBE */ |
4fa0f5d2 | 2319 | |
a4193c8a | 2320 | vga_io_memory = cpu_register_io_memory(0, vga_mem_read, vga_mem_write, s); |
5fafdf24 | 2321 | cpu_register_physical_memory(isa_mem_base + 0x000a0000, 0x20000, |
26aa7d72 | 2322 | vga_io_memory); |
f65ed4c1 | 2323 | qemu_register_coalesced_mmio(isa_mem_base + 0x000a0000, 0x20000); |
d2269f6f FB |
2324 | } |
2325 | ||
2abec30b TS |
2326 | /* Memory mapped interface */ |
2327 | static uint32_t vga_mm_readb (void *opaque, target_phys_addr_t addr) | |
2328 | { | |
2329 | VGAState *s = opaque; | |
2330 | ||
8da3ff18 | 2331 | return vga_ioport_read(s, addr >> s->it_shift) & 0xff; |
2abec30b TS |
2332 | } |
2333 | ||
2334 | static void vga_mm_writeb (void *opaque, | |
2335 | target_phys_addr_t addr, uint32_t value) | |
2336 | { | |
2337 | VGAState *s = opaque; | |
2338 | ||
8da3ff18 | 2339 | vga_ioport_write(s, addr >> s->it_shift, value & 0xff); |
2abec30b TS |
2340 | } |
2341 | ||
2342 | static uint32_t vga_mm_readw (void *opaque, target_phys_addr_t addr) | |
2343 | { | |
2344 | VGAState *s = opaque; | |
2345 | ||
8da3ff18 | 2346 | return vga_ioport_read(s, addr >> s->it_shift) & 0xffff; |
2abec30b TS |
2347 | } |
2348 | ||
2349 | static void vga_mm_writew (void *opaque, | |
2350 | target_phys_addr_t addr, uint32_t value) | |
2351 | { | |
2352 | VGAState *s = opaque; | |
2353 | ||
8da3ff18 | 2354 | vga_ioport_write(s, addr >> s->it_shift, value & 0xffff); |
2abec30b TS |
2355 | } |
2356 | ||
2357 | static uint32_t vga_mm_readl (void *opaque, target_phys_addr_t addr) | |
2358 | { | |
2359 | VGAState *s = opaque; | |
2360 | ||
8da3ff18 | 2361 | return vga_ioport_read(s, addr >> s->it_shift); |
2abec30b TS |
2362 | } |
2363 | ||
2364 | static void vga_mm_writel (void *opaque, | |
2365 | target_phys_addr_t addr, uint32_t value) | |
2366 | { | |
2367 | VGAState *s = opaque; | |
2368 | ||
8da3ff18 | 2369 | vga_ioport_write(s, addr >> s->it_shift, value); |
2abec30b TS |
2370 | } |
2371 | ||
2372 | static CPUReadMemoryFunc *vga_mm_read_ctrl[] = { | |
2373 | &vga_mm_readb, | |
2374 | &vga_mm_readw, | |
2375 | &vga_mm_readl, | |
2376 | }; | |
2377 | ||
2378 | static CPUWriteMemoryFunc *vga_mm_write_ctrl[] = { | |
2379 | &vga_mm_writeb, | |
2380 | &vga_mm_writew, | |
2381 | &vga_mm_writel, | |
2382 | }; | |
2383 | ||
2384 | static void vga_mm_init(VGAState *s, target_phys_addr_t vram_base, | |
2385 | target_phys_addr_t ctrl_base, int it_shift) | |
2386 | { | |
2387 | int s_ioport_ctrl, vga_io_memory; | |
2388 | ||
2abec30b TS |
2389 | s->it_shift = it_shift; |
2390 | s_ioport_ctrl = cpu_register_io_memory(0, vga_mm_read_ctrl, vga_mm_write_ctrl, s); | |
2391 | vga_io_memory = cpu_register_io_memory(0, vga_mem_read, vga_mem_write, s); | |
2392 | ||
2393 | register_savevm("vga", 0, 2, vga_save, vga_load, s); | |
2394 | ||
2395 | cpu_register_physical_memory(ctrl_base, 0x100000, s_ioport_ctrl); | |
2396 | s->bank_offset = 0; | |
2397 | cpu_register_physical_memory(vram_base + 0x000a0000, 0x20000, vga_io_memory); | |
f65ed4c1 | 2398 | qemu_register_coalesced_mmio(vram_base + 0x000a0000, 0x20000); |
2abec30b TS |
2399 | } |
2400 | ||
5fafdf24 | 2401 | int isa_vga_init(DisplayState *ds, uint8_t *vga_ram_base, |
d2269f6f FB |
2402 | unsigned long vga_ram_offset, int vga_ram_size) |
2403 | { | |
2404 | VGAState *s; | |
2405 | ||
2406 | s = qemu_mallocz(sizeof(VGAState)); | |
2407 | if (!s) | |
2408 | return -1; | |
2409 | ||
2410 | vga_common_init(s, ds, vga_ram_base, vga_ram_offset, vga_ram_size); | |
2411 | vga_init(s); | |
1078f663 | 2412 | |
c60e08d9 PB |
2413 | s->console = graphic_console_init(s->ds, s->update, s->invalidate, |
2414 | s->screen_dump, s->text_update, s); | |
d34cab9f | 2415 | |
4fa0f5d2 | 2416 | #ifdef CONFIG_BOCHS_VBE |
d2269f6f | 2417 | /* XXX: use optimized standard vga accesses */ |
5fafdf24 | 2418 | cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS, |
d2269f6f | 2419 | vga_ram_size, vga_ram_offset); |
7138fcfb | 2420 | #endif |
d2269f6f FB |
2421 | return 0; |
2422 | } | |
2423 | ||
2abec30b TS |
2424 | int isa_vga_mm_init(DisplayState *ds, uint8_t *vga_ram_base, |
2425 | unsigned long vga_ram_offset, int vga_ram_size, | |
2426 | target_phys_addr_t vram_base, target_phys_addr_t ctrl_base, | |
2427 | int it_shift) | |
2428 | { | |
2429 | VGAState *s; | |
2430 | ||
2431 | s = qemu_mallocz(sizeof(VGAState)); | |
2432 | if (!s) | |
2433 | return -1; | |
2434 | ||
2435 | vga_common_init(s, ds, vga_ram_base, vga_ram_offset, vga_ram_size); | |
2436 | vga_mm_init(s, vram_base, ctrl_base, it_shift); | |
2437 | ||
c60e08d9 PB |
2438 | s->console = graphic_console_init(s->ds, s->update, s->invalidate, |
2439 | s->screen_dump, s->text_update, s); | |
2abec30b TS |
2440 | |
2441 | #ifdef CONFIG_BOCHS_VBE | |
2442 | /* XXX: use optimized standard vga accesses */ | |
2443 | cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS, | |
2444 | vga_ram_size, vga_ram_offset); | |
2445 | #endif | |
2446 | return 0; | |
2447 | } | |
2448 | ||
5fafdf24 | 2449 | int pci_vga_init(PCIBus *bus, DisplayState *ds, uint8_t *vga_ram_base, |
d2269f6f FB |
2450 | unsigned long vga_ram_offset, int vga_ram_size, |
2451 | unsigned long vga_bios_offset, int vga_bios_size) | |
2452 | { | |
2453 | PCIVGAState *d; | |
2454 | VGAState *s; | |
2455 | uint8_t *pci_conf; | |
3b46e624 | 2456 | |
5fafdf24 | 2457 | d = (PCIVGAState *)pci_register_device(bus, "VGA", |
d2269f6f FB |
2458 | sizeof(PCIVGAState), |
2459 | -1, NULL, NULL); | |
2460 | if (!d) | |
2461 | return -1; | |
2462 | s = &d->vga_state; | |
3b46e624 | 2463 | |
d2269f6f FB |
2464 | vga_common_init(s, ds, vga_ram_base, vga_ram_offset, vga_ram_size); |
2465 | vga_init(s); | |
d34cab9f | 2466 | |
c60e08d9 PB |
2467 | s->console = graphic_console_init(s->ds, s->update, s->invalidate, |
2468 | s->screen_dump, s->text_update, s); | |
d34cab9f | 2469 | |
d2269f6f | 2470 | s->pci_dev = &d->dev; |
3b46e624 | 2471 | |
d2269f6f FB |
2472 | pci_conf = d->dev.config; |
2473 | pci_conf[0x00] = 0x34; // dummy VGA (same as Bochs ID) | |
2474 | pci_conf[0x01] = 0x12; | |
2475 | pci_conf[0x02] = 0x11; | |
2476 | pci_conf[0x03] = 0x11; | |
5fafdf24 | 2477 | pci_conf[0x0a] = 0x00; // VGA controller |
d2269f6f FB |
2478 | pci_conf[0x0b] = 0x03; |
2479 | pci_conf[0x0e] = 0x00; // header_type | |
3b46e624 | 2480 | |
d2269f6f | 2481 | /* XXX: vga_ram_size must be a power of two */ |
5fafdf24 | 2482 | pci_register_io_region(&d->dev, 0, vga_ram_size, |
d2269f6f FB |
2483 | PCI_ADDRESS_SPACE_MEM_PREFETCH, vga_map); |
2484 | if (vga_bios_size != 0) { | |
2485 | unsigned int bios_total_size; | |
2486 | s->bios_offset = vga_bios_offset; | |
2487 | s->bios_size = vga_bios_size; | |
2488 | /* must be a power of two */ | |
2489 | bios_total_size = 1; | |
2490 | while (bios_total_size < vga_bios_size) | |
2491 | bios_total_size <<= 1; | |
5fafdf24 | 2492 | pci_register_io_region(&d->dev, PCI_ROM_SLOT, bios_total_size, |
d2269f6f | 2493 | PCI_ADDRESS_SPACE_MEM_PREFETCH, vga_map); |
1078f663 | 2494 | } |
e89f66ec FB |
2495 | return 0; |
2496 | } | |
59a983b9 FB |
2497 | |
2498 | /********************************************************/ | |
2499 | /* vga screen dump */ | |
2500 | ||
2501 | static int vga_save_w, vga_save_h; | |
2502 | ||
5fafdf24 | 2503 | static void vga_save_dpy_update(DisplayState *s, |
59a983b9 FB |
2504 | int x, int y, int w, int h) |
2505 | { | |
2506 | } | |
2507 | ||
2508 | static void vga_save_dpy_resize(DisplayState *s, int w, int h) | |
2509 | { | |
2510 | s->linesize = w * 4; | |
c3b972c3 | 2511 | s->data = qemu_mallocz(h * s->linesize); |
59a983b9 FB |
2512 | vga_save_w = w; |
2513 | vga_save_h = h; | |
2514 | } | |
2515 | ||
2516 | static void vga_save_dpy_refresh(DisplayState *s) | |
2517 | { | |
2518 | } | |
2519 | ||
5fafdf24 | 2520 | int ppm_save(const char *filename, uint8_t *data, |
f707cfba | 2521 | int w, int h, int linesize) |
59a983b9 FB |
2522 | { |
2523 | FILE *f; | |
2524 | uint8_t *d, *d1; | |
2525 | unsigned int v; | |
2526 | int y, x; | |
2527 | ||
2528 | f = fopen(filename, "wb"); | |
2529 | if (!f) | |
2530 | return -1; | |
2531 | fprintf(f, "P6\n%d %d\n%d\n", | |
2532 | w, h, 255); | |
2533 | d1 = data; | |
2534 | for(y = 0; y < h; y++) { | |
2535 | d = d1; | |
2536 | for(x = 0; x < w; x++) { | |
2537 | v = *(uint32_t *)d; | |
2538 | fputc((v >> 16) & 0xff, f); | |
2539 | fputc((v >> 8) & 0xff, f); | |
2540 | fputc((v) & 0xff, f); | |
2541 | d += 4; | |
2542 | } | |
2543 | d1 += linesize; | |
2544 | } | |
2545 | fclose(f); | |
2546 | return 0; | |
2547 | } | |
2548 | ||
4c5e8c5c BS |
2549 | static void vga_screen_dump_blank(VGAState *s, const char *filename) |
2550 | { | |
2551 | FILE *f; | |
2552 | unsigned int y, x, w, h; | |
2553 | ||
2554 | w = s->last_scr_width * sizeof(uint32_t); | |
2555 | h = s->last_scr_height; | |
2556 | ||
2557 | f = fopen(filename, "wb"); | |
2558 | if (!f) | |
2559 | return; | |
2560 | fprintf(f, "P6\n%d %d\n%d\n", w, h, 255); | |
2561 | for (y = 0; y < h; y++) { | |
2562 | for (x = 0; x < w; x++) { | |
2563 | fputc(0, f); | |
2564 | } | |
2565 | } | |
2566 | fclose(f); | |
2567 | } | |
2568 | ||
2569 | static void vga_screen_dump_common(VGAState *s, const char *filename, | |
2570 | int w, int h) | |
59a983b9 | 2571 | { |
59a983b9 | 2572 | DisplayState *saved_ds, ds1, *ds = &ds1; |
3b46e624 | 2573 | |
59a983b9 | 2574 | /* XXX: this is a little hackish */ |
95219897 | 2575 | vga_invalidate_display(s); |
59a983b9 FB |
2576 | saved_ds = s->ds; |
2577 | ||
2578 | memset(ds, 0, sizeof(DisplayState)); | |
2579 | ds->dpy_update = vga_save_dpy_update; | |
2580 | ds->dpy_resize = vga_save_dpy_resize; | |
2581 | ds->dpy_refresh = vga_save_dpy_refresh; | |
2582 | ds->depth = 32; | |
2583 | ||
4c5e8c5c BS |
2584 | ds->linesize = w * sizeof(uint32_t); |
2585 | ds->data = qemu_mallocz(h * ds->linesize); | |
59a983b9 FB |
2586 | s->ds = ds; |
2587 | s->graphic_mode = -1; | |
95219897 | 2588 | vga_update_display(s); |
4c5e8c5c BS |
2589 | ppm_save(filename, ds->data, w, h, ds->linesize); |
2590 | qemu_free(ds->data); | |
59a983b9 FB |
2591 | s->ds = saved_ds; |
2592 | } | |
4c5e8c5c BS |
2593 | |
2594 | static void vga_screen_dump_graphic(VGAState *s, const char *filename) | |
2595 | { | |
2596 | int w, h; | |
2597 | ||
2598 | s->get_resolution(s, &w, &h); | |
2599 | vga_screen_dump_common(s, filename, w, h); | |
2600 | } | |
2601 | ||
2602 | static void vga_screen_dump_text(VGAState *s, const char *filename) | |
2603 | { | |
2604 | int w, h, cwidth, cheight; | |
2605 | ||
2606 | vga_get_text_resolution(s, &w, &h, &cwidth, &cheight); | |
2607 | vga_screen_dump_common(s, filename, w * cwidth, h * cheight); | |
2608 | } | |
2609 | ||
2610 | /* save the vga display in a PPM image even if no display is | |
2611 | available */ | |
2612 | static void vga_screen_dump(void *opaque, const char *filename) | |
2613 | { | |
2614 | VGAState *s = (VGAState *)opaque; | |
2615 | ||
2616 | if (!(s->ar_index & 0x20)) | |
2617 | vga_screen_dump_blank(s, filename); | |
2618 | else if (s->gr[6] & 1) | |
2619 | vga_screen_dump_graphic(s, filename); | |
2620 | else | |
2621 | vga_screen_dump_text(s, filename); | |
2622 | } |