4 * Copyright (c) 2003 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
26 #include "ui/console.h"
30 #include "ui/pixel_ops.h"
31 #include "qemu/timer.h"
36 //#define DEBUG_VGA_MEM
37 //#define DEBUG_VGA_REG
39 //#define DEBUG_BOCHS_VBE
41 /* 16 state changes per vertical frame @60 Hz */
42 #define VGA_TEXT_CURSOR_PERIOD_MS (1000 * 2 * 16 / 60)
45 * Video Graphics Array (VGA)
47 * Chipset docs for original IBM VGA:
48 * http://www.mcamafia.de/pdf/ibm_vgaxga_trm2.pdf
51 * http://www.osdever.net/FreeVGA/home.htm
53 * Standard VGA features and Bochs VBE extensions are implemented.
56 /* force some bits to zero */
57 const uint8_t sr_mask
[8] = {
68 const uint8_t gr_mask
[16] = {
87 #define cbswap_32(__x) \
89 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
90 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
91 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
92 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) ))
94 #ifdef HOST_WORDS_BIGENDIAN
95 #define PAT(x) cbswap_32(x)
100 #ifdef HOST_WORDS_BIGENDIAN
106 #ifdef HOST_WORDS_BIGENDIAN
107 #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff)
109 #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff)
112 static const uint32_t mask16
[16] = {
133 #ifdef HOST_WORDS_BIGENDIAN
136 #define PAT(x) cbswap_32(x)
139 static const uint32_t dmask16
[16] = {
158 static const uint32_t dmask4
[4] = {
165 static uint32_t expand4
[256];
166 static uint16_t expand2
[256];
167 static uint8_t expand4to8
[16];
169 static void vga_screen_dump(void *opaque
, const char *filename
, bool cswitch
,
172 static void vga_update_memory_access(VGACommonState
*s
)
174 MemoryRegion
*region
, *old_region
= s
->chain4_alias
;
175 hwaddr base
, offset
, size
;
177 s
->chain4_alias
= NULL
;
179 if ((s
->sr
[VGA_SEQ_PLANE_WRITE
] & VGA_SR02_ALL_PLANES
) ==
180 VGA_SR02_ALL_PLANES
&& s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
182 switch ((s
->gr
[VGA_GFX_MISC
] >> 2) & 3) {
190 offset
= s
->bank_offset
;
202 base
+= isa_mem_base
;
203 region
= g_malloc(sizeof(*region
));
204 memory_region_init_alias(region
, "vga.chain4", &s
->vram
, offset
, size
);
205 memory_region_add_subregion_overlap(s
->legacy_address_space
, base
,
207 s
->chain4_alias
= region
;
210 memory_region_del_subregion(s
->legacy_address_space
, old_region
);
211 memory_region_destroy(old_region
);
213 s
->plane_updated
= 0xf;
217 static void vga_dumb_update_retrace_info(VGACommonState
*s
)
222 static void vga_precise_update_retrace_info(VGACommonState
*s
)
225 int hretr_start_char
;
226 int hretr_skew_chars
;
230 int vretr_start_line
;
239 const int clk_hz
[] = {25175000, 28322000, 25175000, 25175000};
240 int64_t chars_per_sec
;
241 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
243 htotal_chars
= s
->cr
[VGA_CRTC_H_TOTAL
] + 5;
244 hretr_start_char
= s
->cr
[VGA_CRTC_H_SYNC_START
];
245 hretr_skew_chars
= (s
->cr
[VGA_CRTC_H_SYNC_END
] >> 5) & 3;
246 hretr_end_char
= s
->cr
[VGA_CRTC_H_SYNC_END
] & 0x1f;
248 vtotal_lines
= (s
->cr
[VGA_CRTC_V_TOTAL
] |
249 (((s
->cr
[VGA_CRTC_OVERFLOW
] & 1) |
250 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 4) & 2)) << 8)) + 2;
251 vretr_start_line
= s
->cr
[VGA_CRTC_V_SYNC_START
] |
252 ((((s
->cr
[VGA_CRTC_OVERFLOW
] >> 2) & 1) |
253 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 6) & 2)) << 8);
254 vretr_end_line
= s
->cr
[VGA_CRTC_V_SYNC_END
] & 0xf;
256 clocking_mode
= (s
->sr
[VGA_SEQ_CLOCK_MODE
] >> 3) & 1;
257 clock_sel
= (s
->msr
>> 2) & 3;
258 dots
= (s
->msr
& 1) ? 8 : 9;
260 chars_per_sec
= clk_hz
[clock_sel
] / dots
;
262 htotal_chars
<<= clocking_mode
;
264 r
->total_chars
= vtotal_lines
* htotal_chars
;
266 r
->ticks_per_char
= get_ticks_per_sec() / (r
->total_chars
* r
->freq
);
268 r
->ticks_per_char
= get_ticks_per_sec() / chars_per_sec
;
271 r
->vstart
= vretr_start_line
;
272 r
->vend
= r
->vstart
+ vretr_end_line
+ 1;
274 r
->hstart
= hretr_start_char
+ hretr_skew_chars
;
275 r
->hend
= r
->hstart
+ hretr_end_char
+ 1;
276 r
->htotal
= htotal_chars
;
279 div2
= (s
->cr
[VGA_CRTC_MODE
] >> 2) & 1;
280 sldiv2
= (s
->cr
[VGA_CRTC_MODE
] >> 3) & 1;
290 "div2 = %d sldiv2 = %d\n"
291 "clocking_mode = %d\n"
292 "clock_sel = %d %d\n"
294 "ticks/char = %" PRId64
"\n"
296 (double) get_ticks_per_sec() / (r
->ticks_per_char
* r
->total_chars
),
314 static uint8_t vga_precise_retrace(VGACommonState
*s
)
316 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
317 uint8_t val
= s
->st01
& ~(ST01_V_RETRACE
| ST01_DISP_ENABLE
);
319 if (r
->total_chars
) {
320 int cur_line
, cur_line_char
, cur_char
;
323 cur_tick
= qemu_get_clock_ns(vm_clock
);
325 cur_char
= (cur_tick
/ r
->ticks_per_char
) % r
->total_chars
;
326 cur_line
= cur_char
/ r
->htotal
;
328 if (cur_line
>= r
->vstart
&& cur_line
<= r
->vend
) {
329 val
|= ST01_V_RETRACE
| ST01_DISP_ENABLE
;
331 cur_line_char
= cur_char
% r
->htotal
;
332 if (cur_line_char
>= r
->hstart
&& cur_line_char
<= r
->hend
) {
333 val
|= ST01_DISP_ENABLE
;
339 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
343 static uint8_t vga_dumb_retrace(VGACommonState
*s
)
345 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
348 int vga_ioport_invalid(VGACommonState
*s
, uint32_t addr
)
350 if (s
->msr
& VGA_MIS_COLOR
) {
352 return (addr
>= 0x3b0 && addr
<= 0x3bf);
355 return (addr
>= 0x3d0 && addr
<= 0x3df);
359 uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
361 VGACommonState
*s
= opaque
;
364 qemu_flush_coalesced_mmio_buffer();
366 if (vga_ioport_invalid(s
, addr
)) {
371 if (s
->ar_flip_flop
== 0) {
378 index
= s
->ar_index
& 0x1f;
379 if (index
< VGA_ATT_C
) {
392 val
= s
->sr
[s
->sr_index
];
394 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
401 val
= s
->dac_write_index
;
404 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
405 if (++s
->dac_sub_index
== 3) {
406 s
->dac_sub_index
= 0;
420 val
= s
->gr
[s
->gr_index
];
422 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
431 val
= s
->cr
[s
->cr_index
];
433 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
438 /* just toggle to fool polling */
439 val
= s
->st01
= s
->retrace(s
);
447 #if defined(DEBUG_VGA)
448 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
453 void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
455 VGACommonState
*s
= opaque
;
458 qemu_flush_coalesced_mmio_buffer();
460 /* check port range access depending on color/monochrome mode */
461 if (vga_ioport_invalid(s
, addr
)) {
465 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
470 if (s
->ar_flip_flop
== 0) {
474 index
= s
->ar_index
& 0x1f;
476 case VGA_ATC_PALETTE0
... VGA_ATC_PALETTEF
:
477 s
->ar
[index
] = val
& 0x3f;
480 s
->ar
[index
] = val
& ~0x10;
482 case VGA_ATC_OVERSCAN
:
485 case VGA_ATC_PLANE_ENABLE
:
486 s
->ar
[index
] = val
& ~0xc0;
489 s
->ar
[index
] = val
& ~0xf0;
491 case VGA_ATC_COLOR_PAGE
:
492 s
->ar
[index
] = val
& ~0xf0;
498 s
->ar_flip_flop
^= 1;
501 s
->msr
= val
& ~0x10;
502 s
->update_retrace_info(s
);
505 s
->sr_index
= val
& 7;
509 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
511 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
512 if (s
->sr_index
== VGA_SEQ_CLOCK_MODE
) {
513 s
->update_retrace_info(s
);
515 vga_update_memory_access(s
);
518 s
->dac_read_index
= val
;
519 s
->dac_sub_index
= 0;
523 s
->dac_write_index
= val
;
524 s
->dac_sub_index
= 0;
528 s
->dac_cache
[s
->dac_sub_index
] = val
;
529 if (++s
->dac_sub_index
== 3) {
530 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
531 s
->dac_sub_index
= 0;
532 s
->dac_write_index
++;
536 s
->gr_index
= val
& 0x0f;
540 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
542 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
543 vga_update_memory_access(s
);
552 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
554 /* handle CR0-7 protection */
555 if ((s
->cr
[VGA_CRTC_V_SYNC_END
] & VGA_CR11_LOCK_CR0_CR7
) &&
556 s
->cr_index
<= VGA_CRTC_OVERFLOW
) {
557 /* can always write bit 4 of CR7 */
558 if (s
->cr_index
== VGA_CRTC_OVERFLOW
) {
559 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x10) |
564 s
->cr
[s
->cr_index
] = val
;
566 switch(s
->cr_index
) {
567 case VGA_CRTC_H_TOTAL
:
568 case VGA_CRTC_H_SYNC_START
:
569 case VGA_CRTC_H_SYNC_END
:
570 case VGA_CRTC_V_TOTAL
:
571 case VGA_CRTC_OVERFLOW
:
572 case VGA_CRTC_V_SYNC_END
:
574 s
->update_retrace_info(s
);
585 static uint32_t vbe_ioport_read_index(void *opaque
, uint32_t addr
)
587 VGACommonState
*s
= opaque
;
593 uint32_t vbe_ioport_read_data(void *opaque
, uint32_t addr
)
595 VGACommonState
*s
= opaque
;
598 if (s
->vbe_index
< VBE_DISPI_INDEX_NB
) {
599 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_GETCAPS
) {
600 switch(s
->vbe_index
) {
601 /* XXX: do not hardcode ? */
602 case VBE_DISPI_INDEX_XRES
:
603 val
= VBE_DISPI_MAX_XRES
;
605 case VBE_DISPI_INDEX_YRES
:
606 val
= VBE_DISPI_MAX_YRES
;
608 case VBE_DISPI_INDEX_BPP
:
609 val
= VBE_DISPI_MAX_BPP
;
612 val
= s
->vbe_regs
[s
->vbe_index
];
616 val
= s
->vbe_regs
[s
->vbe_index
];
618 } else if (s
->vbe_index
== VBE_DISPI_INDEX_VIDEO_MEMORY_64K
) {
619 val
= s
->vram_size
/ (64 * 1024);
623 #ifdef DEBUG_BOCHS_VBE
624 printf("VBE: read index=0x%x val=0x%x\n", s
->vbe_index
, val
);
629 void vbe_ioport_write_index(void *opaque
, uint32_t addr
, uint32_t val
)
631 VGACommonState
*s
= opaque
;
635 void vbe_ioport_write_data(void *opaque
, uint32_t addr
, uint32_t val
)
637 VGACommonState
*s
= opaque
;
639 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
640 #ifdef DEBUG_BOCHS_VBE
641 printf("VBE: write index=0x%x val=0x%x\n", s
->vbe_index
, val
);
643 switch(s
->vbe_index
) {
644 case VBE_DISPI_INDEX_ID
:
645 if (val
== VBE_DISPI_ID0
||
646 val
== VBE_DISPI_ID1
||
647 val
== VBE_DISPI_ID2
||
648 val
== VBE_DISPI_ID3
||
649 val
== VBE_DISPI_ID4
) {
650 s
->vbe_regs
[s
->vbe_index
] = val
;
653 case VBE_DISPI_INDEX_XRES
:
654 if ((val
<= VBE_DISPI_MAX_XRES
) && ((val
& 7) == 0)) {
655 s
->vbe_regs
[s
->vbe_index
] = val
;
658 case VBE_DISPI_INDEX_YRES
:
659 if (val
<= VBE_DISPI_MAX_YRES
) {
660 s
->vbe_regs
[s
->vbe_index
] = val
;
663 case VBE_DISPI_INDEX_BPP
:
666 if (val
== 4 || val
== 8 || val
== 15 ||
667 val
== 16 || val
== 24 || val
== 32) {
668 s
->vbe_regs
[s
->vbe_index
] = val
;
671 case VBE_DISPI_INDEX_BANK
:
672 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
673 val
&= (s
->vbe_bank_mask
>> 2);
675 val
&= s
->vbe_bank_mask
;
677 s
->vbe_regs
[s
->vbe_index
] = val
;
678 s
->bank_offset
= (val
<< 16);
679 vga_update_memory_access(s
);
681 case VBE_DISPI_INDEX_ENABLE
:
682 if ((val
& VBE_DISPI_ENABLED
) &&
683 !(s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
)) {
684 int h
, shift_control
;
686 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] =
687 s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
688 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] =
689 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
690 s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
691 s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
693 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
694 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 1;
696 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] *
697 ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
698 s
->vbe_start_addr
= 0;
700 /* clear the screen (should be done in BIOS) */
701 if (!(val
& VBE_DISPI_NOCLEARMEM
)) {
702 memset(s
->vram_ptr
, 0,
703 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] * s
->vbe_line_offset
);
706 /* we initialize the VGA graphic mode (should be done
708 /* graphic mode + memory map 1 */
709 s
->gr
[VGA_GFX_MISC
] = (s
->gr
[VGA_GFX_MISC
] & ~0x0c) | 0x04 |
710 VGA_GR06_GRAPHICS_MODE
;
711 s
->cr
[VGA_CRTC_MODE
] |= 3; /* no CGA modes */
712 s
->cr
[VGA_CRTC_OFFSET
] = s
->vbe_line_offset
>> 3;
714 s
->cr
[VGA_CRTC_H_DISP
] =
715 (s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 3) - 1;
716 /* height (only meaningful if < 1024) */
717 h
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] - 1;
718 s
->cr
[VGA_CRTC_V_DISP_END
] = h
;
719 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x42) |
720 ((h
>> 7) & 0x02) | ((h
>> 3) & 0x40);
721 /* line compare to 1023 */
722 s
->cr
[VGA_CRTC_LINE_COMPARE
] = 0xff;
723 s
->cr
[VGA_CRTC_OVERFLOW
] |= 0x10;
724 s
->cr
[VGA_CRTC_MAX_SCAN
] |= 0x40;
726 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
728 s
->sr
[VGA_SEQ_CLOCK_MODE
] &= ~8; /* no double line */
731 /* set chain 4 mode */
732 s
->sr
[VGA_SEQ_MEMORY_MODE
] |= VGA_SR04_CHN_4M
;
733 /* activate all planes */
734 s
->sr
[VGA_SEQ_PLANE_WRITE
] |= VGA_SR02_ALL_PLANES
;
736 s
->gr
[VGA_GFX_MODE
] = (s
->gr
[VGA_GFX_MODE
] & ~0x60) |
737 (shift_control
<< 5);
738 s
->cr
[VGA_CRTC_MAX_SCAN
] &= ~0x9f; /* no double scan */
740 /* XXX: the bios should do that */
743 s
->dac_8bit
= (val
& VBE_DISPI_8BIT_DAC
) > 0;
744 s
->vbe_regs
[s
->vbe_index
] = val
;
745 vga_update_memory_access(s
);
747 case VBE_DISPI_INDEX_VIRT_WIDTH
:
749 int w
, h
, line_offset
;
751 if (val
< s
->vbe_regs
[VBE_DISPI_INDEX_XRES
])
754 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
755 line_offset
= w
>> 1;
757 line_offset
= w
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
758 h
= s
->vram_size
/ line_offset
;
759 /* XXX: support weird bochs semantics ? */
760 if (h
< s
->vbe_regs
[VBE_DISPI_INDEX_YRES
])
762 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] = w
;
763 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] = h
;
764 s
->vbe_line_offset
= line_offset
;
767 case VBE_DISPI_INDEX_X_OFFSET
:
768 case VBE_DISPI_INDEX_Y_OFFSET
:
771 s
->vbe_regs
[s
->vbe_index
] = val
;
772 s
->vbe_start_addr
= s
->vbe_line_offset
* s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
];
773 x
= s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
];
774 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
775 s
->vbe_start_addr
+= x
>> 1;
777 s
->vbe_start_addr
+= x
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
778 s
->vbe_start_addr
>>= 2;
787 /* called for accesses between 0xa0000 and 0xc0000 */
788 uint32_t vga_mem_readb(VGACommonState
*s
, hwaddr addr
)
790 int memory_map_mode
, plane
;
793 /* convert to VGA memory offset */
794 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
796 switch(memory_map_mode
) {
802 addr
+= s
->bank_offset
;
817 if (s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
818 /* chain 4 mode : simplest access */
819 ret
= s
->vram_ptr
[addr
];
820 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
821 /* odd/even mode (aka text mode mapping) */
822 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
823 ret
= s
->vram_ptr
[((addr
& ~1) << 1) | plane
];
825 /* standard VGA latched access */
826 s
->latch
= ((uint32_t *)s
->vram_ptr
)[addr
];
828 if (!(s
->gr
[VGA_GFX_MODE
] & 0x08)) {
830 plane
= s
->gr
[VGA_GFX_PLANE_READ
];
831 ret
= GET_PLANE(s
->latch
, plane
);
834 ret
= (s
->latch
^ mask16
[s
->gr
[VGA_GFX_COMPARE_VALUE
]]) &
835 mask16
[s
->gr
[VGA_GFX_COMPARE_MASK
]];
844 /* called for accesses between 0xa0000 and 0xc0000 */
845 void vga_mem_writeb(VGACommonState
*s
, hwaddr addr
, uint32_t val
)
847 int memory_map_mode
, plane
, write_mode
, b
, func_select
, mask
;
848 uint32_t write_mask
, bit_mask
, set_mask
;
851 printf("vga: [0x" TARGET_FMT_plx
"] = 0x%02x\n", addr
, val
);
853 /* convert to VGA memory offset */
854 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
856 switch(memory_map_mode
) {
862 addr
+= s
->bank_offset
;
877 if (s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
878 /* chain 4 mode : simplest access */
881 if (s
->sr
[VGA_SEQ_PLANE_WRITE
] & mask
) {
882 s
->vram_ptr
[addr
] = val
;
884 printf("vga: chain4: [0x" TARGET_FMT_plx
"]\n", addr
);
886 s
->plane_updated
|= mask
; /* only used to detect font change */
887 memory_region_set_dirty(&s
->vram
, addr
, 1);
889 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
890 /* odd/even mode (aka text mode mapping) */
891 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
893 if (s
->sr
[VGA_SEQ_PLANE_WRITE
] & mask
) {
894 addr
= ((addr
& ~1) << 1) | plane
;
895 s
->vram_ptr
[addr
] = val
;
897 printf("vga: odd/even: [0x" TARGET_FMT_plx
"]\n", addr
);
899 s
->plane_updated
|= mask
; /* only used to detect font change */
900 memory_region_set_dirty(&s
->vram
, addr
, 1);
903 /* standard VGA latched access */
904 write_mode
= s
->gr
[VGA_GFX_MODE
] & 3;
909 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
910 val
= ((val
>> b
) | (val
<< (8 - b
))) & 0xff;
914 /* apply set/reset mask */
915 set_mask
= mask16
[s
->gr
[VGA_GFX_SR_ENABLE
]];
916 val
= (val
& ~set_mask
) |
917 (mask16
[s
->gr
[VGA_GFX_SR_VALUE
]] & set_mask
);
918 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
924 val
= mask16
[val
& 0x0f];
925 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
929 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
930 val
= (val
>> b
) | (val
<< (8 - b
));
932 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
] & val
;
933 val
= mask16
[s
->gr
[VGA_GFX_SR_VALUE
]];
937 /* apply logical operation */
938 func_select
= s
->gr
[VGA_GFX_DATA_ROTATE
] >> 3;
939 switch(func_select
) {
959 bit_mask
|= bit_mask
<< 8;
960 bit_mask
|= bit_mask
<< 16;
961 val
= (val
& bit_mask
) | (s
->latch
& ~bit_mask
);
964 /* mask data according to sr[2] */
965 mask
= s
->sr
[VGA_SEQ_PLANE_WRITE
];
966 s
->plane_updated
|= mask
; /* only used to detect font change */
967 write_mask
= mask16
[mask
];
968 ((uint32_t *)s
->vram_ptr
)[addr
] =
969 (((uint32_t *)s
->vram_ptr
)[addr
] & ~write_mask
) |
972 printf("vga: latch: [0x" TARGET_FMT_plx
"] mask=0x%08x val=0x%08x\n",
973 addr
* 4, write_mask
, val
);
975 memory_region_set_dirty(&s
->vram
, addr
<< 2, sizeof(uint32_t));
979 typedef void vga_draw_glyph8_func(uint8_t *d
, int linesize
,
980 const uint8_t *font_ptr
, int h
,
981 uint32_t fgcol
, uint32_t bgcol
);
982 typedef void vga_draw_glyph9_func(uint8_t *d
, int linesize
,
983 const uint8_t *font_ptr
, int h
,
984 uint32_t fgcol
, uint32_t bgcol
, int dup9
);
985 typedef void vga_draw_line_func(VGACommonState
*s1
, uint8_t *d
,
986 const uint8_t *s
, int width
);
989 #include "vga_template.h"
992 #include "vga_template.h"
996 #include "vga_template.h"
999 #include "vga_template.h"
1003 #include "vga_template.h"
1006 #include "vga_template.h"
1010 #include "vga_template.h"
1012 static unsigned int rgb_to_pixel8_dup(unsigned int r
, unsigned int g
, unsigned b
)
1015 col
= rgb_to_pixel8(r
, g
, b
);
1021 static unsigned int rgb_to_pixel15_dup(unsigned int r
, unsigned int g
, unsigned b
)
1024 col
= rgb_to_pixel15(r
, g
, b
);
1029 static unsigned int rgb_to_pixel15bgr_dup(unsigned int r
, unsigned int g
,
1033 col
= rgb_to_pixel15bgr(r
, g
, b
);
1038 static unsigned int rgb_to_pixel16_dup(unsigned int r
, unsigned int g
, unsigned b
)
1041 col
= rgb_to_pixel16(r
, g
, b
);
1046 static unsigned int rgb_to_pixel16bgr_dup(unsigned int r
, unsigned int g
,
1050 col
= rgb_to_pixel16bgr(r
, g
, b
);
1055 static unsigned int rgb_to_pixel32_dup(unsigned int r
, unsigned int g
, unsigned b
)
1058 col
= rgb_to_pixel32(r
, g
, b
);
1062 static unsigned int rgb_to_pixel32bgr_dup(unsigned int r
, unsigned int g
, unsigned b
)
1065 col
= rgb_to_pixel32bgr(r
, g
, b
);
1069 /* return true if the palette was modified */
1070 static int update_palette16(VGACommonState
*s
)
1073 uint32_t v
, col
, *palette
;
1076 palette
= s
->last_palette
;
1077 for(i
= 0; i
< 16; i
++) {
1079 if (s
->ar
[VGA_ATC_MODE
] & 0x80) {
1080 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xf) << 4) | (v
& 0xf);
1082 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xc) << 4) | (v
& 0x3f);
1085 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1086 c6_to_8(s
->palette
[v
+ 1]),
1087 c6_to_8(s
->palette
[v
+ 2]));
1088 if (col
!= palette
[i
]) {
1096 /* return true if the palette was modified */
1097 static int update_palette256(VGACommonState
*s
)
1100 uint32_t v
, col
, *palette
;
1103 palette
= s
->last_palette
;
1105 for(i
= 0; i
< 256; i
++) {
1107 col
= s
->rgb_to_pixel(s
->palette
[v
],
1111 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1112 c6_to_8(s
->palette
[v
+ 1]),
1113 c6_to_8(s
->palette
[v
+ 2]));
1115 if (col
!= palette
[i
]) {
1124 static void vga_get_offsets(VGACommonState
*s
,
1125 uint32_t *pline_offset
,
1126 uint32_t *pstart_addr
,
1127 uint32_t *pline_compare
)
1129 uint32_t start_addr
, line_offset
, line_compare
;
1131 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1132 line_offset
= s
->vbe_line_offset
;
1133 start_addr
= s
->vbe_start_addr
;
1134 line_compare
= 65535;
1136 /* compute line_offset in bytes */
1137 line_offset
= s
->cr
[VGA_CRTC_OFFSET
];
1140 /* starting address */
1141 start_addr
= s
->cr
[VGA_CRTC_START_LO
] |
1142 (s
->cr
[VGA_CRTC_START_HI
] << 8);
1145 line_compare
= s
->cr
[VGA_CRTC_LINE_COMPARE
] |
1146 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x10) << 4) |
1147 ((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x40) << 3);
1149 *pline_offset
= line_offset
;
1150 *pstart_addr
= start_addr
;
1151 *pline_compare
= line_compare
;
1154 /* update start_addr and line_offset. Return TRUE if modified */
1155 static int update_basic_params(VGACommonState
*s
)
1158 uint32_t start_addr
, line_offset
, line_compare
;
1162 s
->get_offsets(s
, &line_offset
, &start_addr
, &line_compare
);
1164 if (line_offset
!= s
->line_offset
||
1165 start_addr
!= s
->start_addr
||
1166 line_compare
!= s
->line_compare
) {
1167 s
->line_offset
= line_offset
;
1168 s
->start_addr
= start_addr
;
1169 s
->line_compare
= line_compare
;
1177 static inline int get_depth_index(DisplayState
*s
)
1179 switch(ds_get_bits_per_pixel(s
)) {
1188 if (is_surface_bgr(s
->surface
))
1195 static vga_draw_glyph8_func
* const vga_draw_glyph8_table
[NB_DEPTHS
] = {
1205 static vga_draw_glyph8_func
* const vga_draw_glyph16_table
[NB_DEPTHS
] = {
1207 vga_draw_glyph16_16
,
1208 vga_draw_glyph16_16
,
1209 vga_draw_glyph16_32
,
1210 vga_draw_glyph16_32
,
1211 vga_draw_glyph16_16
,
1212 vga_draw_glyph16_16
,
1215 static vga_draw_glyph9_func
* const vga_draw_glyph9_table
[NB_DEPTHS
] = {
1225 static const uint8_t cursor_glyph
[32 * 4] = {
1226 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1227 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1228 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1229 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1230 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1231 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1232 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1233 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1234 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1235 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1236 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1237 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1238 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1239 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1240 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1241 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1244 static void vga_get_text_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
,
1245 int *pcwidth
, int *pcheight
)
1247 int width
, cwidth
, height
, cheight
;
1249 /* total width & height */
1250 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
1252 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
1255 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
1256 cwidth
= 16; /* NOTE: no 18 pixel wide */
1258 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
1259 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
1260 /* ugly hack for CGA 160x100x16 - explain me the logic */
1263 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1264 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1265 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1266 height
= (height
+ 1) / cheight
;
1272 *pcheight
= cheight
;
1275 typedef unsigned int rgb_to_pixel_dup_func(unsigned int r
, unsigned int g
, unsigned b
);
1277 static rgb_to_pixel_dup_func
* const rgb_to_pixel_dup_table
[NB_DEPTHS
] = {
1282 rgb_to_pixel32bgr_dup
,
1283 rgb_to_pixel15bgr_dup
,
1284 rgb_to_pixel16bgr_dup
,
1295 static void vga_draw_text(VGACommonState
*s
, int full_update
)
1297 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1298 int cx_min
, cx_max
, linesize
, x_incr
, line
, line1
;
1299 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1300 uint8_t *d1
, *d
, *src
, *dest
, *cursor_ptr
;
1301 const uint8_t *font_ptr
, *font_base
[2];
1302 int dup9
, line_offset
, depth_index
;
1304 uint32_t *ch_attr_ptr
;
1305 vga_draw_glyph8_func
*vga_draw_glyph8
;
1306 vga_draw_glyph9_func
*vga_draw_glyph9
;
1307 int64_t now
= qemu_get_clock_ms(vm_clock
);
1309 /* compute font data address (in plane 2) */
1310 v
= s
->sr
[VGA_SEQ_CHARACTER_MAP
];
1311 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1312 if (offset
!= s
->font_offsets
[0]) {
1313 s
->font_offsets
[0] = offset
;
1316 font_base
[0] = s
->vram_ptr
+ offset
;
1318 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1319 font_base
[1] = s
->vram_ptr
+ offset
;
1320 if (offset
!= s
->font_offsets
[1]) {
1321 s
->font_offsets
[1] = offset
;
1324 if (s
->plane_updated
& (1 << 2) || s
->chain4_alias
) {
1325 /* if the plane 2 was modified since the last display, it
1326 indicates the font may have been modified */
1327 s
->plane_updated
= 0;
1330 full_update
|= update_basic_params(s
);
1332 line_offset
= s
->line_offset
;
1334 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1335 if ((height
* width
) <= 1) {
1336 /* better than nothing: exit if transient size is too small */
1339 if ((height
* width
) > CH_ATTR_SIZE
) {
1340 /* better than nothing: exit if transient size is too big */
1344 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1345 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1346 s
->last_scr_width
= width
* cw
;
1347 s
->last_scr_height
= height
* cheight
;
1348 qemu_console_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
1349 dpy_text_resize(s
->ds
, width
, height
);
1351 s
->last_width
= width
;
1352 s
->last_height
= height
;
1353 s
->last_ch
= cheight
;
1358 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1359 full_update
|= update_palette16(s
);
1360 palette
= s
->last_palette
;
1361 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1364 s
->full_update_text
= 1;
1366 if (s
->full_update_gfx
) {
1367 s
->full_update_gfx
= 0;
1371 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1372 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1373 if (cursor_offset
!= s
->cursor_offset
||
1374 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1375 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
) {
1376 /* if the cursor position changed, we update the old and new
1378 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1379 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1380 if (cursor_offset
< CH_ATTR_SIZE
)
1381 s
->last_ch_attr
[cursor_offset
] = -1;
1382 s
->cursor_offset
= cursor_offset
;
1383 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1384 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1386 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1387 if (now
>= s
->cursor_blink_time
) {
1388 s
->cursor_blink_time
= now
+ VGA_TEXT_CURSOR_PERIOD_MS
/ 2;
1389 s
->cursor_visible_phase
= !s
->cursor_visible_phase
;
1392 depth_index
= get_depth_index(s
->ds
);
1394 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1396 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1397 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1399 dest
= ds_get_data(s
->ds
);
1400 linesize
= ds_get_linesize(s
->ds
);
1401 ch_attr_ptr
= s
->last_ch_attr
;
1403 offset
= s
->start_addr
* 4;
1404 for(cy
= 0; cy
< height
; cy
++) {
1406 src
= s
->vram_ptr
+ offset
;
1409 for(cx
= 0; cx
< width
; cx
++) {
1410 ch_attr
= *(uint16_t *)src
;
1411 if (full_update
|| ch_attr
!= *ch_attr_ptr
|| src
== cursor_ptr
) {
1416 *ch_attr_ptr
= ch_attr
;
1417 #ifdef HOST_WORDS_BIGENDIAN
1419 cattr
= ch_attr
& 0xff;
1421 ch
= ch_attr
& 0xff;
1422 cattr
= ch_attr
>> 8;
1424 font_ptr
= font_base
[(cattr
>> 3) & 1];
1425 font_ptr
+= 32 * 4 * ch
;
1426 bgcol
= palette
[cattr
>> 4];
1427 fgcol
= palette
[cattr
& 0x0f];
1429 vga_draw_glyph8(d1
, linesize
,
1430 font_ptr
, cheight
, fgcol
, bgcol
);
1433 if (ch
>= 0xb0 && ch
<= 0xdf &&
1434 (s
->ar
[VGA_ATC_MODE
] & 0x04)) {
1437 vga_draw_glyph9(d1
, linesize
,
1438 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1440 if (src
== cursor_ptr
&&
1441 !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20) &&
1442 s
->cursor_visible_phase
) {
1443 int line_start
, line_last
, h
;
1444 /* draw the cursor */
1445 line_start
= s
->cr
[VGA_CRTC_CURSOR_START
] & 0x1f;
1446 line_last
= s
->cr
[VGA_CRTC_CURSOR_END
] & 0x1f;
1447 /* XXX: check that */
1448 if (line_last
> cheight
- 1)
1449 line_last
= cheight
- 1;
1450 if (line_last
>= line_start
&& line_start
< cheight
) {
1451 h
= line_last
- line_start
+ 1;
1452 d
= d1
+ linesize
* line_start
;
1454 vga_draw_glyph8(d
, linesize
,
1455 cursor_glyph
, h
, fgcol
, bgcol
);
1457 vga_draw_glyph9(d
, linesize
,
1458 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1468 dpy_gfx_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1469 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1471 dest
+= linesize
* cheight
;
1472 line1
= line
+ cheight
;
1473 offset
+= line_offset
;
1474 if (line
< s
->line_compare
&& line1
>= s
->line_compare
) {
1495 static vga_draw_line_func
* const vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1505 vga_draw_line2d2_16
,
1506 vga_draw_line2d2_16
,
1507 vga_draw_line2d2_32
,
1508 vga_draw_line2d2_32
,
1509 vga_draw_line2d2_16
,
1510 vga_draw_line2d2_16
,
1521 vga_draw_line4d2_16
,
1522 vga_draw_line4d2_16
,
1523 vga_draw_line4d2_32
,
1524 vga_draw_line4d2_32
,
1525 vga_draw_line4d2_16
,
1526 vga_draw_line4d2_16
,
1529 vga_draw_line8d2_16
,
1530 vga_draw_line8d2_16
,
1531 vga_draw_line8d2_32
,
1532 vga_draw_line8d2_32
,
1533 vga_draw_line8d2_16
,
1534 vga_draw_line8d2_16
,
1548 vga_draw_line15_32bgr
,
1549 vga_draw_line15_15bgr
,
1550 vga_draw_line15_16bgr
,
1556 vga_draw_line16_32bgr
,
1557 vga_draw_line16_15bgr
,
1558 vga_draw_line16_16bgr
,
1564 vga_draw_line24_32bgr
,
1565 vga_draw_line24_15bgr
,
1566 vga_draw_line24_16bgr
,
1572 vga_draw_line32_32bgr
,
1573 vga_draw_line32_15bgr
,
1574 vga_draw_line32_16bgr
,
1577 static int vga_get_bpp(VGACommonState
*s
)
1581 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1582 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1589 static void vga_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1593 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1594 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1595 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1597 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1) * 8;
1598 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1599 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1600 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1601 height
= (height
+ 1);
1607 void vga_invalidate_scanlines(VGACommonState
*s
, int y1
, int y2
)
1610 if (y1
>= VGA_MAX_HEIGHT
)
1612 if (y2
>= VGA_MAX_HEIGHT
)
1613 y2
= VGA_MAX_HEIGHT
;
1614 for(y
= y1
; y
< y2
; y
++) {
1615 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1619 void vga_sync_dirty_bitmap(VGACommonState
*s
)
1621 memory_region_sync_dirty_bitmap(&s
->vram
);
1624 void vga_dirty_log_start(VGACommonState
*s
)
1626 memory_region_set_log(&s
->vram
, true, DIRTY_MEMORY_VGA
);
1629 void vga_dirty_log_stop(VGACommonState
*s
)
1631 memory_region_set_log(&s
->vram
, false, DIRTY_MEMORY_VGA
);
1637 static void vga_draw_graphic(VGACommonState
*s
, int full_update
)
1639 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1640 int width
, height
, shift_control
, line_offset
, bwidth
, bits
;
1641 ram_addr_t page0
, page1
, page_min
, page_max
;
1642 int disp_width
, multi_scan
, multi_run
;
1644 uint32_t v
, addr1
, addr
;
1645 vga_draw_line_func
*vga_draw_line
;
1646 #if defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1647 static const bool byteswap
= false;
1649 static const bool byteswap
= true;
1652 full_update
|= update_basic_params(s
);
1655 vga_sync_dirty_bitmap(s
);
1657 s
->get_resolution(s
, &width
, &height
);
1660 shift_control
= (s
->gr
[VGA_GFX_MODE
] >> 5) & 3;
1661 double_scan
= (s
->cr
[VGA_CRTC_MAX_SCAN
] >> 7);
1662 if (shift_control
!= 1) {
1663 multi_scan
= (((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1) << double_scan
)
1666 /* in CGA modes, multi_scan is ignored */
1667 /* XXX: is it correct ? */
1668 multi_scan
= double_scan
;
1670 multi_run
= multi_scan
;
1671 if (shift_control
!= s
->shift_control
||
1672 double_scan
!= s
->double_scan
) {
1674 s
->shift_control
= shift_control
;
1675 s
->double_scan
= double_scan
;
1678 if (shift_control
== 0) {
1679 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1682 } else if (shift_control
== 1) {
1683 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1688 depth
= s
->get_bpp(s
);
1689 if (s
->line_offset
!= s
->last_line_offset
||
1690 disp_width
!= s
->last_width
||
1691 height
!= s
->last_height
||
1692 s
->last_depth
!= depth
) {
1693 if (depth
== 32 || (depth
== 16 && !byteswap
)) {
1694 qemu_free_displaysurface(s
->ds
);
1695 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
, height
, depth
,
1697 s
->vram_ptr
+ (s
->start_addr
* 4), byteswap
);
1698 dpy_gfx_resize(s
->ds
);
1700 qemu_console_resize(s
->ds
, disp_width
, height
);
1702 s
->last_scr_width
= disp_width
;
1703 s
->last_scr_height
= height
;
1704 s
->last_width
= disp_width
;
1705 s
->last_height
= height
;
1706 s
->last_line_offset
= s
->line_offset
;
1707 s
->last_depth
= depth
;
1709 } else if (is_buffer_shared(s
->ds
->surface
) &&
1710 (full_update
|| ds_get_data(s
->ds
) != s
->vram_ptr
1711 + (s
->start_addr
* 4))) {
1712 qemu_free_displaysurface(s
->ds
);
1713 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
,
1716 s
->vram_ptr
+ (s
->start_addr
* 4), byteswap
);
1717 dpy_gfx_setdata(s
->ds
);
1721 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1723 if (shift_control
== 0) {
1724 full_update
|= update_palette16(s
);
1725 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1726 v
= VGA_DRAW_LINE4D2
;
1731 } else if (shift_control
== 1) {
1732 full_update
|= update_palette16(s
);
1733 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1734 v
= VGA_DRAW_LINE2D2
;
1740 switch(s
->get_bpp(s
)) {
1743 full_update
|= update_palette256(s
);
1744 v
= VGA_DRAW_LINE8D2
;
1748 full_update
|= update_palette256(s
);
1753 v
= VGA_DRAW_LINE15
;
1757 v
= VGA_DRAW_LINE16
;
1761 v
= VGA_DRAW_LINE24
;
1765 v
= VGA_DRAW_LINE32
;
1770 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1772 if (!is_buffer_shared(s
->ds
->surface
) && s
->cursor_invalidate
)
1773 s
->cursor_invalidate(s
);
1775 line_offset
= s
->line_offset
;
1777 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",
1778 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[VGA_CRTC_MODE
],
1779 s
->line_compare
, s
->sr
[VGA_SEQ_CLOCK_MODE
]);
1781 addr1
= (s
->start_addr
* 4);
1782 bwidth
= (width
* bits
+ 7) / 8;
1786 d
= ds_get_data(s
->ds
);
1787 linesize
= ds_get_linesize(s
->ds
);
1789 for(y
= 0; y
< height
; y
++) {
1791 if (!(s
->cr
[VGA_CRTC_MODE
] & 1)) {
1793 /* CGA compatibility handling */
1794 shift
= 14 + ((s
->cr
[VGA_CRTC_MODE
] >> 6) & 1);
1795 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1797 if (!(s
->cr
[VGA_CRTC_MODE
] & 2)) {
1798 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1800 update
= full_update
;
1802 page1
= addr
+ bwidth
- 1;
1803 update
|= memory_region_get_dirty(&s
->vram
, page0
, page1
- page0
,
1805 /* explicit invalidation for the hardware cursor */
1806 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1810 if (page0
< page_min
)
1812 if (page1
> page_max
)
1814 if (!(is_buffer_shared(s
->ds
->surface
))) {
1815 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1816 if (s
->cursor_draw_line
)
1817 s
->cursor_draw_line(s
, d
, y
);
1821 /* flush to display */
1822 dpy_gfx_update(s
->ds
, 0, y_start
,
1823 disp_width
, y
- y_start
);
1828 mask
= (s
->cr
[VGA_CRTC_MODE
] & 3) ^ 3;
1829 if ((y1
& mask
) == mask
)
1830 addr1
+= line_offset
;
1832 multi_run
= multi_scan
;
1836 /* line compare acts on the displayed lines */
1837 if (y
== s
->line_compare
)
1842 /* flush to display */
1843 dpy_gfx_update(s
->ds
, 0, y_start
,
1844 disp_width
, y
- y_start
);
1846 /* reset modified pages */
1847 if (page_max
>= page_min
) {
1848 memory_region_reset_dirty(&s
->vram
,
1850 page_max
- page_min
,
1853 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1856 static void vga_draw_blank(VGACommonState
*s
, int full_update
)
1863 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1867 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1868 if (ds_get_bits_per_pixel(s
->ds
) == 8)
1869 val
= s
->rgb_to_pixel(0, 0, 0);
1872 w
= s
->last_scr_width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1873 d
= ds_get_data(s
->ds
);
1874 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1876 d
+= ds_get_linesize(s
->ds
);
1878 dpy_gfx_update(s
->ds
, 0, 0,
1879 s
->last_scr_width
, s
->last_scr_height
);
1882 #define GMODE_TEXT 0
1883 #define GMODE_GRAPH 1
1884 #define GMODE_BLANK 2
1886 static void vga_update_display(void *opaque
)
1888 VGACommonState
*s
= opaque
;
1889 int full_update
, graphic_mode
;
1891 qemu_flush_coalesced_mmio_buffer();
1893 if (ds_get_bits_per_pixel(s
->ds
) == 0) {
1897 if (!(s
->ar_index
& 0x20)) {
1898 graphic_mode
= GMODE_BLANK
;
1900 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1902 if (graphic_mode
!= s
->graphic_mode
) {
1903 s
->graphic_mode
= graphic_mode
;
1904 s
->cursor_blink_time
= qemu_get_clock_ms(vm_clock
);
1907 switch(graphic_mode
) {
1909 vga_draw_text(s
, full_update
);
1912 vga_draw_graphic(s
, full_update
);
1916 vga_draw_blank(s
, full_update
);
1922 /* force a full display refresh */
1923 static void vga_invalidate_display(void *opaque
)
1925 VGACommonState
*s
= opaque
;
1928 s
->last_height
= -1;
1931 void vga_common_reset(VGACommonState
*s
)
1934 memset(s
->sr
, '\0', sizeof(s
->sr
));
1936 memset(s
->gr
, '\0', sizeof(s
->gr
));
1938 memset(s
->ar
, '\0', sizeof(s
->ar
));
1939 s
->ar_flip_flop
= 0;
1941 memset(s
->cr
, '\0', sizeof(s
->cr
));
1947 s
->dac_sub_index
= 0;
1948 s
->dac_read_index
= 0;
1949 s
->dac_write_index
= 0;
1950 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1952 memset(s
->palette
, '\0', sizeof(s
->palette
));
1955 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1956 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID5
;
1957 s
->vbe_start_addr
= 0;
1958 s
->vbe_line_offset
= 0;
1959 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1960 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1961 s
->graphic_mode
= -1; /* force full update */
1962 s
->shift_control
= 0;
1965 s
->line_compare
= 0;
1967 s
->plane_updated
= 0;
1972 s
->last_scr_width
= 0;
1973 s
->last_scr_height
= 0;
1974 s
->cursor_start
= 0;
1976 s
->cursor_offset
= 0;
1977 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1978 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1979 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1980 switch (vga_retrace_method
) {
1981 case VGA_RETRACE_DUMB
:
1983 case VGA_RETRACE_PRECISE
:
1984 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1987 vga_update_memory_access(s
);
1990 static void vga_reset(void *opaque
)
1992 VGACommonState
*s
= opaque
;
1993 vga_common_reset(s
);
1996 #define TEXTMODE_X(x) ((x) % width)
1997 #define TEXTMODE_Y(x) ((x) / width)
1998 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1999 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
2000 /* relay text rendering to the display driver
2001 * instead of doing a full vga_update_display() */
2002 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
2004 VGACommonState
*s
= opaque
;
2005 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
2006 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
2008 console_ch_t
*dst
, val
;
2009 char msg_buffer
[80];
2010 int full_update
= 0;
2012 qemu_flush_coalesced_mmio_buffer();
2014 if (!(s
->ar_index
& 0x20)) {
2015 graphic_mode
= GMODE_BLANK
;
2017 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
2019 if (graphic_mode
!= s
->graphic_mode
) {
2020 s
->graphic_mode
= graphic_mode
;
2023 if (s
->last_width
== -1) {
2028 switch (graphic_mode
) {
2030 /* TODO: update palette */
2031 full_update
|= update_basic_params(s
);
2033 /* total width & height */
2034 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
2036 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
2039 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
2040 cw
= 16; /* NOTE: no 18 pixel wide */
2042 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
2043 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
2044 /* ugly hack for CGA 160x100x16 - explain me the logic */
2047 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
2048 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
2049 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
2050 height
= (height
+ 1) / cheight
;
2053 size
= (height
* width
);
2054 if (size
> CH_ATTR_SIZE
) {
2058 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2063 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2064 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2065 s
->last_scr_width
= width
* cw
;
2066 s
->last_scr_height
= height
* cheight
;
2067 qemu_console_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
2068 dpy_text_resize(s
->ds
, width
, height
);
2070 s
->last_width
= width
;
2071 s
->last_height
= height
;
2072 s
->last_ch
= cheight
;
2078 s
->full_update_gfx
= 1;
2080 if (s
->full_update_text
) {
2081 s
->full_update_text
= 0;
2085 /* Update "hardware" cursor */
2086 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
2087 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
2088 if (cursor_offset
!= s
->cursor_offset
||
2089 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
2090 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
|| full_update
) {
2091 cursor_visible
= !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20);
2092 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2093 dpy_text_cursor(s
->ds
,
2094 TEXTMODE_X(cursor_offset
),
2095 TEXTMODE_Y(cursor_offset
));
2097 dpy_text_cursor(s
->ds
, -1, -1);
2098 s
->cursor_offset
= cursor_offset
;
2099 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
2100 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
2103 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2107 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2108 console_write_ch(dst
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2110 dpy_text_update(s
->ds
, 0, 0, width
, height
);
2114 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2115 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2123 for (; i
< size
; src
++, dst
++, i
++) {
2124 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2131 if (c_min
<= c_max
) {
2132 i
= TEXTMODE_Y(c_min
);
2133 dpy_text_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2142 s
->get_resolution(s
, &width
, &height
);
2143 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2151 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2155 /* Display a message */
2157 s
->last_height
= height
= 3;
2158 dpy_text_cursor(s
->ds
, -1, -1);
2159 dpy_text_resize(s
->ds
, s
->last_width
, height
);
2161 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2162 console_write_ch(dst
++, ' ');
2164 size
= strlen(msg_buffer
);
2165 width
= (s
->last_width
- size
) / 2;
2166 dst
= chardata
+ s
->last_width
+ width
;
2167 for (i
= 0; i
< size
; i
++)
2168 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2170 dpy_text_update(s
->ds
, 0, 0, s
->last_width
, height
);
2173 static uint64_t vga_mem_read(void *opaque
, hwaddr addr
,
2176 VGACommonState
*s
= opaque
;
2178 return vga_mem_readb(s
, addr
);
2181 static void vga_mem_write(void *opaque
, hwaddr addr
,
2182 uint64_t data
, unsigned size
)
2184 VGACommonState
*s
= opaque
;
2186 return vga_mem_writeb(s
, addr
, data
);
2189 const MemoryRegionOps vga_mem_ops
= {
2190 .read
= vga_mem_read
,
2191 .write
= vga_mem_write
,
2192 .endianness
= DEVICE_LITTLE_ENDIAN
,
2194 .min_access_size
= 1,
2195 .max_access_size
= 1,
2199 static int vga_common_post_load(void *opaque
, int version_id
)
2201 VGACommonState
*s
= opaque
;
2204 s
->graphic_mode
= -1;
2208 const VMStateDescription vmstate_vga_common
= {
2211 .minimum_version_id
= 2,
2212 .minimum_version_id_old
= 2,
2213 .post_load
= vga_common_post_load
,
2214 .fields
= (VMStateField
[]) {
2215 VMSTATE_UINT32(latch
, VGACommonState
),
2216 VMSTATE_UINT8(sr_index
, VGACommonState
),
2217 VMSTATE_PARTIAL_BUFFER(sr
, VGACommonState
, 8),
2218 VMSTATE_UINT8(gr_index
, VGACommonState
),
2219 VMSTATE_PARTIAL_BUFFER(gr
, VGACommonState
, 16),
2220 VMSTATE_UINT8(ar_index
, VGACommonState
),
2221 VMSTATE_BUFFER(ar
, VGACommonState
),
2222 VMSTATE_INT32(ar_flip_flop
, VGACommonState
),
2223 VMSTATE_UINT8(cr_index
, VGACommonState
),
2224 VMSTATE_BUFFER(cr
, VGACommonState
),
2225 VMSTATE_UINT8(msr
, VGACommonState
),
2226 VMSTATE_UINT8(fcr
, VGACommonState
),
2227 VMSTATE_UINT8(st00
, VGACommonState
),
2228 VMSTATE_UINT8(st01
, VGACommonState
),
2230 VMSTATE_UINT8(dac_state
, VGACommonState
),
2231 VMSTATE_UINT8(dac_sub_index
, VGACommonState
),
2232 VMSTATE_UINT8(dac_read_index
, VGACommonState
),
2233 VMSTATE_UINT8(dac_write_index
, VGACommonState
),
2234 VMSTATE_BUFFER(dac_cache
, VGACommonState
),
2235 VMSTATE_BUFFER(palette
, VGACommonState
),
2237 VMSTATE_INT32(bank_offset
, VGACommonState
),
2238 VMSTATE_UINT8_EQUAL(is_vbe_vmstate
, VGACommonState
),
2239 VMSTATE_UINT16(vbe_index
, VGACommonState
),
2240 VMSTATE_UINT16_ARRAY(vbe_regs
, VGACommonState
, VBE_DISPI_INDEX_NB
),
2241 VMSTATE_UINT32(vbe_start_addr
, VGACommonState
),
2242 VMSTATE_UINT32(vbe_line_offset
, VGACommonState
),
2243 VMSTATE_UINT32(vbe_bank_mask
, VGACommonState
),
2244 VMSTATE_END_OF_LIST()
2248 void vga_common_init(VGACommonState
*s
)
2252 for(i
= 0;i
< 256; i
++) {
2254 for(j
= 0; j
< 8; j
++) {
2255 v
|= ((i
>> j
) & 1) << (j
* 4);
2260 for(j
= 0; j
< 4; j
++) {
2261 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2265 for(i
= 0; i
< 16; i
++) {
2267 for(j
= 0; j
< 4; j
++) {
2270 v
|= b
<< (2 * j
+ 1);
2275 /* valid range: 1 MB -> 256 MB */
2276 s
->vram_size
= 1024 * 1024;
2277 while (s
->vram_size
< (s
->vram_size_mb
<< 20) &&
2278 s
->vram_size
< (256 << 20)) {
2281 s
->vram_size_mb
= s
->vram_size
>> 20;
2283 s
->is_vbe_vmstate
= 1;
2284 memory_region_init_ram(&s
->vram
, "vga.vram", s
->vram_size
);
2285 vmstate_register_ram_global(&s
->vram
);
2286 xen_register_framebuffer(&s
->vram
);
2287 s
->vram_ptr
= memory_region_get_ram_ptr(&s
->vram
);
2288 s
->get_bpp
= vga_get_bpp
;
2289 s
->get_offsets
= vga_get_offsets
;
2290 s
->get_resolution
= vga_get_resolution
;
2291 s
->update
= vga_update_display
;
2292 s
->invalidate
= vga_invalidate_display
;
2293 s
->screen_dump
= vga_screen_dump
;
2294 s
->text_update
= vga_update_text
;
2295 switch (vga_retrace_method
) {
2296 case VGA_RETRACE_DUMB
:
2297 s
->retrace
= vga_dumb_retrace
;
2298 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2301 case VGA_RETRACE_PRECISE
:
2302 s
->retrace
= vga_precise_retrace
;
2303 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2306 vga_dirty_log_start(s
);
2309 static const MemoryRegionPortio vga_portio_list
[] = {
2310 { 0x04, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3b4 */
2311 { 0x0a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3ba */
2312 { 0x10, 16, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3c0 */
2313 { 0x24, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3d4 */
2314 { 0x2a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3da */
2315 PORTIO_END_OF_LIST(),
2318 static const MemoryRegionPortio vbe_portio_list
[] = {
2319 { 0, 1, 2, .read
= vbe_ioport_read_index
, .write
= vbe_ioport_write_index
},
2321 { 1, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2323 { 2, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2324 PORTIO_END_OF_LIST(),
2327 /* Used by both ISA and PCI */
2328 MemoryRegion
*vga_init_io(VGACommonState
*s
,
2329 const MemoryRegionPortio
**vga_ports
,
2330 const MemoryRegionPortio
**vbe_ports
)
2332 MemoryRegion
*vga_mem
;
2334 *vga_ports
= vga_portio_list
;
2335 *vbe_ports
= vbe_portio_list
;
2337 vga_mem
= g_malloc(sizeof(*vga_mem
));
2338 memory_region_init_io(vga_mem
, &vga_mem_ops
, s
,
2339 "vga-lowmem", 0x20000);
2340 memory_region_set_flush_coalesced(vga_mem
);
2345 void vga_init(VGACommonState
*s
, MemoryRegion
*address_space
,
2346 MemoryRegion
*address_space_io
, bool init_vga_ports
)
2348 MemoryRegion
*vga_io_memory
;
2349 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
2350 PortioList
*vga_port_list
= g_new(PortioList
, 1);
2351 PortioList
*vbe_port_list
= g_new(PortioList
, 1);
2353 qemu_register_reset(vga_reset
, s
);
2357 s
->legacy_address_space
= address_space
;
2359 vga_io_memory
= vga_init_io(s
, &vga_ports
, &vbe_ports
);
2360 memory_region_add_subregion_overlap(address_space
,
2361 isa_mem_base
+ 0x000a0000,
2364 memory_region_set_coalescing(vga_io_memory
);
2365 if (init_vga_ports
) {
2366 portio_list_init(vga_port_list
, vga_ports
, s
, "vga");
2367 portio_list_add(vga_port_list
, address_space_io
, 0x3b0);
2370 portio_list_init(vbe_port_list
, vbe_ports
, s
, "vbe");
2371 portio_list_add(vbe_port_list
, address_space_io
, 0x1ce);
2375 void vga_init_vbe(VGACommonState
*s
, MemoryRegion
*system_memory
)
2377 /* With pc-0.12 and below we map both the PCI BAR and the fixed VBE region,
2378 * so use an alias to avoid double-mapping the same region.
2380 memory_region_init_alias(&s
->vram_vbe
, "vram.vbe",
2381 &s
->vram
, 0, memory_region_size(&s
->vram
));
2382 /* XXX: use optimized standard vga accesses */
2383 memory_region_add_subregion(system_memory
,
2384 VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2388 /********************************************************/
2389 /* vga screen dump */
2391 void ppm_save(const char *filename
, struct DisplaySurface
*ds
, Error
**errp
)
2393 int width
= pixman_image_get_width(ds
->image
);
2394 int height
= pixman_image_get_height(ds
->image
);
2398 pixman_image_t
*linebuf
;
2400 trace_ppm_save(filename
, ds
);
2401 f
= fopen(filename
, "wb");
2403 error_setg(errp
, "failed to open file '%s': %s", filename
,
2407 ret
= fprintf(f
, "P6\n%d %d\n%d\n", width
, height
, 255);
2412 linebuf
= qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8
, width
);
2413 for (y
= 0; y
< height
; y
++) {
2414 qemu_pixman_linebuf_fill(linebuf
, ds
->image
, width
, 0, y
);
2416 ret
= fwrite(pixman_image_get_data(linebuf
), 1,
2417 pixman_image_get_stride(linebuf
), f
);
2425 qemu_pixman_image_unref(linebuf
);
2430 error_setg(errp
, "failed to write to file '%s': %s", filename
,
2436 /* save the vga display in a PPM image even if no display is
2438 static void vga_screen_dump(void *opaque
, const char *filename
, bool cswitch
,
2441 VGACommonState
*s
= opaque
;
2444 vga_invalidate_display(s
);
2447 ppm_save(filename
, s
->ds
->surface
, errp
);