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"
28 #include "hw/pci/pci.h"
29 #include "hw/vga_int.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 "hw/vga_template.h"
992 #include "hw/vga_template.h"
996 #include "hw/vga_template.h"
999 #include "hw/vga_template.h"
1003 #include "hw/vga_template.h"
1006 #include "hw/vga_template.h"
1010 #include "hw/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(DisplaySurface
*s
)
1179 switch (surface_bits_per_pixel(s
)) {
1188 if (is_surface_bgr(s
)) {
1196 static vga_draw_glyph8_func
* const vga_draw_glyph8_table
[NB_DEPTHS
] = {
1206 static vga_draw_glyph8_func
* const vga_draw_glyph16_table
[NB_DEPTHS
] = {
1208 vga_draw_glyph16_16
,
1209 vga_draw_glyph16_16
,
1210 vga_draw_glyph16_32
,
1211 vga_draw_glyph16_32
,
1212 vga_draw_glyph16_16
,
1213 vga_draw_glyph16_16
,
1216 static vga_draw_glyph9_func
* const vga_draw_glyph9_table
[NB_DEPTHS
] = {
1226 static const uint8_t cursor_glyph
[32 * 4] = {
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,
1242 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1245 static void vga_get_text_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
,
1246 int *pcwidth
, int *pcheight
)
1248 int width
, cwidth
, height
, cheight
;
1250 /* total width & height */
1251 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
1253 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
1256 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
1257 cwidth
= 16; /* NOTE: no 18 pixel wide */
1259 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
1260 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
1261 /* ugly hack for CGA 160x100x16 - explain me the logic */
1264 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1265 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1266 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1267 height
= (height
+ 1) / cheight
;
1273 *pcheight
= cheight
;
1276 typedef unsigned int rgb_to_pixel_dup_func(unsigned int r
, unsigned int g
, unsigned b
);
1278 static rgb_to_pixel_dup_func
* const rgb_to_pixel_dup_table
[NB_DEPTHS
] = {
1283 rgb_to_pixel32bgr_dup
,
1284 rgb_to_pixel15bgr_dup
,
1285 rgb_to_pixel16bgr_dup
,
1296 static void vga_draw_text(VGACommonState
*s
, int full_update
)
1298 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1299 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1300 int cx_min
, cx_max
, linesize
, x_incr
, line
, line1
;
1301 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1302 uint8_t *d1
, *d
, *src
, *dest
, *cursor_ptr
;
1303 const uint8_t *font_ptr
, *font_base
[2];
1304 int dup9
, line_offset
, depth_index
;
1306 uint32_t *ch_attr_ptr
;
1307 vga_draw_glyph8_func
*vga_draw_glyph8
;
1308 vga_draw_glyph9_func
*vga_draw_glyph9
;
1309 int64_t now
= qemu_get_clock_ms(vm_clock
);
1311 /* compute font data address (in plane 2) */
1312 v
= s
->sr
[VGA_SEQ_CHARACTER_MAP
];
1313 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1314 if (offset
!= s
->font_offsets
[0]) {
1315 s
->font_offsets
[0] = offset
;
1318 font_base
[0] = s
->vram_ptr
+ offset
;
1320 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1321 font_base
[1] = s
->vram_ptr
+ offset
;
1322 if (offset
!= s
->font_offsets
[1]) {
1323 s
->font_offsets
[1] = offset
;
1326 if (s
->plane_updated
& (1 << 2) || s
->chain4_alias
) {
1327 /* if the plane 2 was modified since the last display, it
1328 indicates the font may have been modified */
1329 s
->plane_updated
= 0;
1332 full_update
|= update_basic_params(s
);
1334 line_offset
= s
->line_offset
;
1336 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1337 if ((height
* width
) <= 1) {
1338 /* better than nothing: exit if transient size is too small */
1341 if ((height
* width
) > CH_ATTR_SIZE
) {
1342 /* better than nothing: exit if transient size is too big */
1346 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1347 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1348 s
->last_scr_width
= width
* cw
;
1349 s
->last_scr_height
= height
* cheight
;
1350 qemu_console_resize(s
->con
, s
->last_scr_width
, s
->last_scr_height
);
1351 surface
= qemu_console_surface(s
->con
);
1352 dpy_text_resize(s
->con
, width
, height
);
1354 s
->last_width
= width
;
1355 s
->last_height
= height
;
1356 s
->last_ch
= cheight
;
1361 rgb_to_pixel_dup_table
[get_depth_index(surface
)];
1362 full_update
|= update_palette16(s
);
1363 palette
= s
->last_palette
;
1364 x_incr
= cw
* surface_bytes_per_pixel(surface
);
1367 s
->full_update_text
= 1;
1369 if (s
->full_update_gfx
) {
1370 s
->full_update_gfx
= 0;
1374 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1375 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1376 if (cursor_offset
!= s
->cursor_offset
||
1377 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1378 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
) {
1379 /* if the cursor position changed, we update the old and new
1381 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1382 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1383 if (cursor_offset
< CH_ATTR_SIZE
)
1384 s
->last_ch_attr
[cursor_offset
] = -1;
1385 s
->cursor_offset
= cursor_offset
;
1386 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1387 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1389 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1390 if (now
>= s
->cursor_blink_time
) {
1391 s
->cursor_blink_time
= now
+ VGA_TEXT_CURSOR_PERIOD_MS
/ 2;
1392 s
->cursor_visible_phase
= !s
->cursor_visible_phase
;
1395 depth_index
= get_depth_index(surface
);
1397 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1399 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1400 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1402 dest
= surface_data(surface
);
1403 linesize
= surface_stride(surface
);
1404 ch_attr_ptr
= s
->last_ch_attr
;
1406 offset
= s
->start_addr
* 4;
1407 for(cy
= 0; cy
< height
; cy
++) {
1409 src
= s
->vram_ptr
+ offset
;
1412 for(cx
= 0; cx
< width
; cx
++) {
1413 ch_attr
= *(uint16_t *)src
;
1414 if (full_update
|| ch_attr
!= *ch_attr_ptr
|| src
== cursor_ptr
) {
1419 *ch_attr_ptr
= ch_attr
;
1420 #ifdef HOST_WORDS_BIGENDIAN
1422 cattr
= ch_attr
& 0xff;
1424 ch
= ch_attr
& 0xff;
1425 cattr
= ch_attr
>> 8;
1427 font_ptr
= font_base
[(cattr
>> 3) & 1];
1428 font_ptr
+= 32 * 4 * ch
;
1429 bgcol
= palette
[cattr
>> 4];
1430 fgcol
= palette
[cattr
& 0x0f];
1432 vga_draw_glyph8(d1
, linesize
,
1433 font_ptr
, cheight
, fgcol
, bgcol
);
1436 if (ch
>= 0xb0 && ch
<= 0xdf &&
1437 (s
->ar
[VGA_ATC_MODE
] & 0x04)) {
1440 vga_draw_glyph9(d1
, linesize
,
1441 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1443 if (src
== cursor_ptr
&&
1444 !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20) &&
1445 s
->cursor_visible_phase
) {
1446 int line_start
, line_last
, h
;
1447 /* draw the cursor */
1448 line_start
= s
->cr
[VGA_CRTC_CURSOR_START
] & 0x1f;
1449 line_last
= s
->cr
[VGA_CRTC_CURSOR_END
] & 0x1f;
1450 /* XXX: check that */
1451 if (line_last
> cheight
- 1)
1452 line_last
= cheight
- 1;
1453 if (line_last
>= line_start
&& line_start
< cheight
) {
1454 h
= line_last
- line_start
+ 1;
1455 d
= d1
+ linesize
* line_start
;
1457 vga_draw_glyph8(d
, linesize
,
1458 cursor_glyph
, h
, fgcol
, bgcol
);
1460 vga_draw_glyph9(d
, linesize
,
1461 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1471 dpy_gfx_update(s
->con
, cx_min
* cw
, cy
* cheight
,
1472 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1474 dest
+= linesize
* cheight
;
1475 line1
= line
+ cheight
;
1476 offset
+= line_offset
;
1477 if (line
< s
->line_compare
&& line1
>= s
->line_compare
) {
1498 static vga_draw_line_func
* const vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1508 vga_draw_line2d2_16
,
1509 vga_draw_line2d2_16
,
1510 vga_draw_line2d2_32
,
1511 vga_draw_line2d2_32
,
1512 vga_draw_line2d2_16
,
1513 vga_draw_line2d2_16
,
1524 vga_draw_line4d2_16
,
1525 vga_draw_line4d2_16
,
1526 vga_draw_line4d2_32
,
1527 vga_draw_line4d2_32
,
1528 vga_draw_line4d2_16
,
1529 vga_draw_line4d2_16
,
1532 vga_draw_line8d2_16
,
1533 vga_draw_line8d2_16
,
1534 vga_draw_line8d2_32
,
1535 vga_draw_line8d2_32
,
1536 vga_draw_line8d2_16
,
1537 vga_draw_line8d2_16
,
1551 vga_draw_line15_32bgr
,
1552 vga_draw_line15_15bgr
,
1553 vga_draw_line15_16bgr
,
1559 vga_draw_line16_32bgr
,
1560 vga_draw_line16_15bgr
,
1561 vga_draw_line16_16bgr
,
1567 vga_draw_line24_32bgr
,
1568 vga_draw_line24_15bgr
,
1569 vga_draw_line24_16bgr
,
1575 vga_draw_line32_32bgr
,
1576 vga_draw_line32_15bgr
,
1577 vga_draw_line32_16bgr
,
1580 static int vga_get_bpp(VGACommonState
*s
)
1584 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1585 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1592 static void vga_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1596 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1597 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1598 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1600 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1) * 8;
1601 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1602 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1603 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1604 height
= (height
+ 1);
1610 void vga_invalidate_scanlines(VGACommonState
*s
, int y1
, int y2
)
1613 if (y1
>= VGA_MAX_HEIGHT
)
1615 if (y2
>= VGA_MAX_HEIGHT
)
1616 y2
= VGA_MAX_HEIGHT
;
1617 for(y
= y1
; y
< y2
; y
++) {
1618 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1622 void vga_sync_dirty_bitmap(VGACommonState
*s
)
1624 memory_region_sync_dirty_bitmap(&s
->vram
);
1627 void vga_dirty_log_start(VGACommonState
*s
)
1629 memory_region_set_log(&s
->vram
, true, DIRTY_MEMORY_VGA
);
1632 void vga_dirty_log_stop(VGACommonState
*s
)
1634 memory_region_set_log(&s
->vram
, false, DIRTY_MEMORY_VGA
);
1640 static void vga_draw_graphic(VGACommonState
*s
, int full_update
)
1642 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1643 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1644 int width
, height
, shift_control
, line_offset
, bwidth
, bits
;
1645 ram_addr_t page0
, page1
, page_min
, page_max
;
1646 int disp_width
, multi_scan
, multi_run
;
1648 uint32_t v
, addr1
, addr
;
1649 vga_draw_line_func
*vga_draw_line
;
1650 #if defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1651 static const bool byteswap
= false;
1653 static const bool byteswap
= true;
1656 full_update
|= update_basic_params(s
);
1659 vga_sync_dirty_bitmap(s
);
1661 s
->get_resolution(s
, &width
, &height
);
1664 shift_control
= (s
->gr
[VGA_GFX_MODE
] >> 5) & 3;
1665 double_scan
= (s
->cr
[VGA_CRTC_MAX_SCAN
] >> 7);
1666 if (shift_control
!= 1) {
1667 multi_scan
= (((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1) << double_scan
)
1670 /* in CGA modes, multi_scan is ignored */
1671 /* XXX: is it correct ? */
1672 multi_scan
= double_scan
;
1674 multi_run
= multi_scan
;
1675 if (shift_control
!= s
->shift_control
||
1676 double_scan
!= s
->double_scan
) {
1678 s
->shift_control
= shift_control
;
1679 s
->double_scan
= double_scan
;
1682 if (shift_control
== 0) {
1683 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1686 } else if (shift_control
== 1) {
1687 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1692 depth
= s
->get_bpp(s
);
1693 if (s
->line_offset
!= s
->last_line_offset
||
1694 disp_width
!= s
->last_width
||
1695 height
!= s
->last_height
||
1696 s
->last_depth
!= depth
) {
1697 if (depth
== 32 || (depth
== 16 && !byteswap
)) {
1698 surface
= qemu_create_displaysurface_from(disp_width
,
1699 height
, depth
, s
->line_offset
,
1700 s
->vram_ptr
+ (s
->start_addr
* 4), byteswap
);
1701 dpy_gfx_replace_surface(s
->con
, surface
);
1703 qemu_console_resize(s
->con
, disp_width
, height
);
1704 surface
= qemu_console_surface(s
->con
);
1706 s
->last_scr_width
= disp_width
;
1707 s
->last_scr_height
= height
;
1708 s
->last_width
= disp_width
;
1709 s
->last_height
= height
;
1710 s
->last_line_offset
= s
->line_offset
;
1711 s
->last_depth
= depth
;
1713 } else if (is_buffer_shared(surface
) &&
1714 (full_update
|| surface_data(surface
) != s
->vram_ptr
1715 + (s
->start_addr
* 4))) {
1716 DisplaySurface
*surface
;
1717 surface
= qemu_create_displaysurface_from(disp_width
,
1718 height
, depth
, s
->line_offset
,
1719 s
->vram_ptr
+ (s
->start_addr
* 4), byteswap
);
1720 dpy_gfx_replace_surface(s
->con
, surface
);
1724 rgb_to_pixel_dup_table
[get_depth_index(surface
)];
1726 if (shift_control
== 0) {
1727 full_update
|= update_palette16(s
);
1728 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1729 v
= VGA_DRAW_LINE4D2
;
1734 } else if (shift_control
== 1) {
1735 full_update
|= update_palette16(s
);
1736 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1737 v
= VGA_DRAW_LINE2D2
;
1743 switch(s
->get_bpp(s
)) {
1746 full_update
|= update_palette256(s
);
1747 v
= VGA_DRAW_LINE8D2
;
1751 full_update
|= update_palette256(s
);
1756 v
= VGA_DRAW_LINE15
;
1760 v
= VGA_DRAW_LINE16
;
1764 v
= VGA_DRAW_LINE24
;
1768 v
= VGA_DRAW_LINE32
;
1773 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+
1774 get_depth_index(surface
)];
1776 if (!is_buffer_shared(surface
) && s
->cursor_invalidate
) {
1777 s
->cursor_invalidate(s
);
1780 line_offset
= s
->line_offset
;
1782 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",
1783 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[VGA_CRTC_MODE
],
1784 s
->line_compare
, s
->sr
[VGA_SEQ_CLOCK_MODE
]);
1786 addr1
= (s
->start_addr
* 4);
1787 bwidth
= (width
* bits
+ 7) / 8;
1791 d
= surface_data(surface
);
1792 linesize
= surface_stride(surface
);
1794 for(y
= 0; y
< height
; y
++) {
1796 if (!(s
->cr
[VGA_CRTC_MODE
] & 1)) {
1798 /* CGA compatibility handling */
1799 shift
= 14 + ((s
->cr
[VGA_CRTC_MODE
] >> 6) & 1);
1800 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1802 if (!(s
->cr
[VGA_CRTC_MODE
] & 2)) {
1803 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1805 update
= full_update
;
1807 page1
= addr
+ bwidth
- 1;
1808 update
|= memory_region_get_dirty(&s
->vram
, page0
, page1
- page0
,
1810 /* explicit invalidation for the hardware cursor */
1811 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1815 if (page0
< page_min
)
1817 if (page1
> page_max
)
1819 if (!(is_buffer_shared(surface
))) {
1820 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1821 if (s
->cursor_draw_line
)
1822 s
->cursor_draw_line(s
, d
, y
);
1826 /* flush to display */
1827 dpy_gfx_update(s
->con
, 0, y_start
,
1828 disp_width
, y
- y_start
);
1833 mask
= (s
->cr
[VGA_CRTC_MODE
] & 3) ^ 3;
1834 if ((y1
& mask
) == mask
)
1835 addr1
+= line_offset
;
1837 multi_run
= multi_scan
;
1841 /* line compare acts on the displayed lines */
1842 if (y
== s
->line_compare
)
1847 /* flush to display */
1848 dpy_gfx_update(s
->con
, 0, y_start
,
1849 disp_width
, y
- y_start
);
1851 /* reset modified pages */
1852 if (page_max
>= page_min
) {
1853 memory_region_reset_dirty(&s
->vram
,
1855 page_max
- page_min
,
1858 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1861 static void vga_draw_blank(VGACommonState
*s
, int full_update
)
1863 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1869 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1873 rgb_to_pixel_dup_table
[get_depth_index(surface
)];
1874 if (surface_bits_per_pixel(surface
) == 8) {
1875 val
= s
->rgb_to_pixel(0, 0, 0);
1879 w
= s
->last_scr_width
* surface_bytes_per_pixel(surface
);
1880 d
= surface_data(surface
);
1881 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1883 d
+= surface_stride(surface
);
1885 dpy_gfx_update(s
->con
, 0, 0,
1886 s
->last_scr_width
, s
->last_scr_height
);
1889 #define GMODE_TEXT 0
1890 #define GMODE_GRAPH 1
1891 #define GMODE_BLANK 2
1893 static void vga_update_display(void *opaque
)
1895 VGACommonState
*s
= opaque
;
1896 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1897 int full_update
, graphic_mode
;
1899 qemu_flush_coalesced_mmio_buffer();
1901 if (surface_bits_per_pixel(surface
) == 0) {
1905 if (!(s
->ar_index
& 0x20)) {
1906 graphic_mode
= GMODE_BLANK
;
1908 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1910 if (graphic_mode
!= s
->graphic_mode
) {
1911 s
->graphic_mode
= graphic_mode
;
1912 s
->cursor_blink_time
= qemu_get_clock_ms(vm_clock
);
1915 switch(graphic_mode
) {
1917 vga_draw_text(s
, full_update
);
1920 vga_draw_graphic(s
, full_update
);
1924 vga_draw_blank(s
, full_update
);
1930 /* force a full display refresh */
1931 static void vga_invalidate_display(void *opaque
)
1933 VGACommonState
*s
= opaque
;
1936 s
->last_height
= -1;
1939 void vga_common_reset(VGACommonState
*s
)
1942 memset(s
->sr
, '\0', sizeof(s
->sr
));
1944 memset(s
->gr
, '\0', sizeof(s
->gr
));
1946 memset(s
->ar
, '\0', sizeof(s
->ar
));
1947 s
->ar_flip_flop
= 0;
1949 memset(s
->cr
, '\0', sizeof(s
->cr
));
1955 s
->dac_sub_index
= 0;
1956 s
->dac_read_index
= 0;
1957 s
->dac_write_index
= 0;
1958 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1960 memset(s
->palette
, '\0', sizeof(s
->palette
));
1963 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1964 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID5
;
1965 s
->vbe_start_addr
= 0;
1966 s
->vbe_line_offset
= 0;
1967 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1968 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1969 s
->graphic_mode
= -1; /* force full update */
1970 s
->shift_control
= 0;
1973 s
->line_compare
= 0;
1975 s
->plane_updated
= 0;
1980 s
->last_scr_width
= 0;
1981 s
->last_scr_height
= 0;
1982 s
->cursor_start
= 0;
1984 s
->cursor_offset
= 0;
1985 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1986 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1987 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1988 switch (vga_retrace_method
) {
1989 case VGA_RETRACE_DUMB
:
1991 case VGA_RETRACE_PRECISE
:
1992 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1995 vga_update_memory_access(s
);
1998 static void vga_reset(void *opaque
)
2000 VGACommonState
*s
= opaque
;
2001 vga_common_reset(s
);
2004 #define TEXTMODE_X(x) ((x) % width)
2005 #define TEXTMODE_Y(x) ((x) / width)
2006 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
2007 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
2008 /* relay text rendering to the display driver
2009 * instead of doing a full vga_update_display() */
2010 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
2012 VGACommonState
*s
= opaque
;
2013 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
2014 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
2016 console_ch_t
*dst
, val
;
2017 char msg_buffer
[80];
2018 int full_update
= 0;
2020 qemu_flush_coalesced_mmio_buffer();
2022 if (!(s
->ar_index
& 0x20)) {
2023 graphic_mode
= GMODE_BLANK
;
2025 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
2027 if (graphic_mode
!= s
->graphic_mode
) {
2028 s
->graphic_mode
= graphic_mode
;
2031 if (s
->last_width
== -1) {
2036 switch (graphic_mode
) {
2038 /* TODO: update palette */
2039 full_update
|= update_basic_params(s
);
2041 /* total width & height */
2042 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
2044 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
2047 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
2048 cw
= 16; /* NOTE: no 18 pixel wide */
2050 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
2051 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
2052 /* ugly hack for CGA 160x100x16 - explain me the logic */
2055 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
2056 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
2057 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
2058 height
= (height
+ 1) / cheight
;
2061 size
= (height
* width
);
2062 if (size
> CH_ATTR_SIZE
) {
2066 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2071 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2072 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2073 s
->last_scr_width
= width
* cw
;
2074 s
->last_scr_height
= height
* cheight
;
2075 qemu_console_resize(s
->con
, s
->last_scr_width
, s
->last_scr_height
);
2076 dpy_text_resize(s
->con
, width
, height
);
2078 s
->last_width
= width
;
2079 s
->last_height
= height
;
2080 s
->last_ch
= cheight
;
2086 s
->full_update_gfx
= 1;
2088 if (s
->full_update_text
) {
2089 s
->full_update_text
= 0;
2093 /* Update "hardware" cursor */
2094 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
2095 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
2096 if (cursor_offset
!= s
->cursor_offset
||
2097 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
2098 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
|| full_update
) {
2099 cursor_visible
= !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20);
2100 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2101 dpy_text_cursor(s
->con
,
2102 TEXTMODE_X(cursor_offset
),
2103 TEXTMODE_Y(cursor_offset
));
2105 dpy_text_cursor(s
->con
, -1, -1);
2106 s
->cursor_offset
= cursor_offset
;
2107 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
2108 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
2111 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2115 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2116 console_write_ch(dst
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2118 dpy_text_update(s
->con
, 0, 0, width
, height
);
2122 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2123 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2131 for (; i
< size
; src
++, dst
++, i
++) {
2132 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2139 if (c_min
<= c_max
) {
2140 i
= TEXTMODE_Y(c_min
);
2141 dpy_text_update(s
->con
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2150 s
->get_resolution(s
, &width
, &height
);
2151 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2159 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2163 /* Display a message */
2165 s
->last_height
= height
= 3;
2166 dpy_text_cursor(s
->con
, -1, -1);
2167 dpy_text_resize(s
->con
, s
->last_width
, height
);
2169 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2170 console_write_ch(dst
++, ' ');
2172 size
= strlen(msg_buffer
);
2173 width
= (s
->last_width
- size
) / 2;
2174 dst
= chardata
+ s
->last_width
+ width
;
2175 for (i
= 0; i
< size
; i
++)
2176 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2178 dpy_text_update(s
->con
, 0, 0, s
->last_width
, height
);
2181 static uint64_t vga_mem_read(void *opaque
, hwaddr addr
,
2184 VGACommonState
*s
= opaque
;
2186 return vga_mem_readb(s
, addr
);
2189 static void vga_mem_write(void *opaque
, hwaddr addr
,
2190 uint64_t data
, unsigned size
)
2192 VGACommonState
*s
= opaque
;
2194 return vga_mem_writeb(s
, addr
, data
);
2197 const MemoryRegionOps vga_mem_ops
= {
2198 .read
= vga_mem_read
,
2199 .write
= vga_mem_write
,
2200 .endianness
= DEVICE_LITTLE_ENDIAN
,
2202 .min_access_size
= 1,
2203 .max_access_size
= 1,
2207 static int vga_common_post_load(void *opaque
, int version_id
)
2209 VGACommonState
*s
= opaque
;
2212 s
->graphic_mode
= -1;
2216 const VMStateDescription vmstate_vga_common
= {
2219 .minimum_version_id
= 2,
2220 .minimum_version_id_old
= 2,
2221 .post_load
= vga_common_post_load
,
2222 .fields
= (VMStateField
[]) {
2223 VMSTATE_UINT32(latch
, VGACommonState
),
2224 VMSTATE_UINT8(sr_index
, VGACommonState
),
2225 VMSTATE_PARTIAL_BUFFER(sr
, VGACommonState
, 8),
2226 VMSTATE_UINT8(gr_index
, VGACommonState
),
2227 VMSTATE_PARTIAL_BUFFER(gr
, VGACommonState
, 16),
2228 VMSTATE_UINT8(ar_index
, VGACommonState
),
2229 VMSTATE_BUFFER(ar
, VGACommonState
),
2230 VMSTATE_INT32(ar_flip_flop
, VGACommonState
),
2231 VMSTATE_UINT8(cr_index
, VGACommonState
),
2232 VMSTATE_BUFFER(cr
, VGACommonState
),
2233 VMSTATE_UINT8(msr
, VGACommonState
),
2234 VMSTATE_UINT8(fcr
, VGACommonState
),
2235 VMSTATE_UINT8(st00
, VGACommonState
),
2236 VMSTATE_UINT8(st01
, VGACommonState
),
2238 VMSTATE_UINT8(dac_state
, VGACommonState
),
2239 VMSTATE_UINT8(dac_sub_index
, VGACommonState
),
2240 VMSTATE_UINT8(dac_read_index
, VGACommonState
),
2241 VMSTATE_UINT8(dac_write_index
, VGACommonState
),
2242 VMSTATE_BUFFER(dac_cache
, VGACommonState
),
2243 VMSTATE_BUFFER(palette
, VGACommonState
),
2245 VMSTATE_INT32(bank_offset
, VGACommonState
),
2246 VMSTATE_UINT8_EQUAL(is_vbe_vmstate
, VGACommonState
),
2247 VMSTATE_UINT16(vbe_index
, VGACommonState
),
2248 VMSTATE_UINT16_ARRAY(vbe_regs
, VGACommonState
, VBE_DISPI_INDEX_NB
),
2249 VMSTATE_UINT32(vbe_start_addr
, VGACommonState
),
2250 VMSTATE_UINT32(vbe_line_offset
, VGACommonState
),
2251 VMSTATE_UINT32(vbe_bank_mask
, VGACommonState
),
2252 VMSTATE_END_OF_LIST()
2256 void vga_common_init(VGACommonState
*s
)
2260 for(i
= 0;i
< 256; i
++) {
2262 for(j
= 0; j
< 8; j
++) {
2263 v
|= ((i
>> j
) & 1) << (j
* 4);
2268 for(j
= 0; j
< 4; j
++) {
2269 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2273 for(i
= 0; i
< 16; i
++) {
2275 for(j
= 0; j
< 4; j
++) {
2278 v
|= b
<< (2 * j
+ 1);
2283 /* valid range: 1 MB -> 256 MB */
2284 s
->vram_size
= 1024 * 1024;
2285 while (s
->vram_size
< (s
->vram_size_mb
<< 20) &&
2286 s
->vram_size
< (256 << 20)) {
2289 s
->vram_size_mb
= s
->vram_size
>> 20;
2291 s
->is_vbe_vmstate
= 1;
2292 memory_region_init_ram(&s
->vram
, "vga.vram", s
->vram_size
);
2293 vmstate_register_ram_global(&s
->vram
);
2294 xen_register_framebuffer(&s
->vram
);
2295 s
->vram_ptr
= memory_region_get_ram_ptr(&s
->vram
);
2296 s
->get_bpp
= vga_get_bpp
;
2297 s
->get_offsets
= vga_get_offsets
;
2298 s
->get_resolution
= vga_get_resolution
;
2299 s
->update
= vga_update_display
;
2300 s
->invalidate
= vga_invalidate_display
;
2301 s
->screen_dump
= vga_screen_dump
;
2302 s
->text_update
= vga_update_text
;
2303 switch (vga_retrace_method
) {
2304 case VGA_RETRACE_DUMB
:
2305 s
->retrace
= vga_dumb_retrace
;
2306 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2309 case VGA_RETRACE_PRECISE
:
2310 s
->retrace
= vga_precise_retrace
;
2311 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2314 vga_dirty_log_start(s
);
2317 static const MemoryRegionPortio vga_portio_list
[] = {
2318 { 0x04, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3b4 */
2319 { 0x0a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3ba */
2320 { 0x10, 16, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3c0 */
2321 { 0x24, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3d4 */
2322 { 0x2a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3da */
2323 PORTIO_END_OF_LIST(),
2326 static const MemoryRegionPortio vbe_portio_list
[] = {
2327 { 0, 1, 2, .read
= vbe_ioport_read_index
, .write
= vbe_ioport_write_index
},
2329 { 1, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2331 { 2, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2332 PORTIO_END_OF_LIST(),
2335 /* Used by both ISA and PCI */
2336 MemoryRegion
*vga_init_io(VGACommonState
*s
,
2337 const MemoryRegionPortio
**vga_ports
,
2338 const MemoryRegionPortio
**vbe_ports
)
2340 MemoryRegion
*vga_mem
;
2342 *vga_ports
= vga_portio_list
;
2343 *vbe_ports
= vbe_portio_list
;
2345 vga_mem
= g_malloc(sizeof(*vga_mem
));
2346 memory_region_init_io(vga_mem
, &vga_mem_ops
, s
,
2347 "vga-lowmem", 0x20000);
2348 memory_region_set_flush_coalesced(vga_mem
);
2353 void vga_init(VGACommonState
*s
, MemoryRegion
*address_space
,
2354 MemoryRegion
*address_space_io
, bool init_vga_ports
)
2356 MemoryRegion
*vga_io_memory
;
2357 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
2358 PortioList
*vga_port_list
= g_new(PortioList
, 1);
2359 PortioList
*vbe_port_list
= g_new(PortioList
, 1);
2361 qemu_register_reset(vga_reset
, s
);
2365 s
->legacy_address_space
= address_space
;
2367 vga_io_memory
= vga_init_io(s
, &vga_ports
, &vbe_ports
);
2368 memory_region_add_subregion_overlap(address_space
,
2369 isa_mem_base
+ 0x000a0000,
2372 memory_region_set_coalescing(vga_io_memory
);
2373 if (init_vga_ports
) {
2374 portio_list_init(vga_port_list
, vga_ports
, s
, "vga");
2375 portio_list_add(vga_port_list
, address_space_io
, 0x3b0);
2378 portio_list_init(vbe_port_list
, vbe_ports
, s
, "vbe");
2379 portio_list_add(vbe_port_list
, address_space_io
, 0x1ce);
2383 void vga_init_vbe(VGACommonState
*s
, MemoryRegion
*system_memory
)
2385 /* With pc-0.12 and below we map both the PCI BAR and the fixed VBE region,
2386 * so use an alias to avoid double-mapping the same region.
2388 memory_region_init_alias(&s
->vram_vbe
, "vram.vbe",
2389 &s
->vram
, 0, memory_region_size(&s
->vram
));
2390 /* XXX: use optimized standard vga accesses */
2391 memory_region_add_subregion(system_memory
,
2392 VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2396 /********************************************************/
2397 /* vga screen dump */
2399 void ppm_save(const char *filename
, struct DisplaySurface
*ds
, Error
**errp
)
2401 int width
= pixman_image_get_width(ds
->image
);
2402 int height
= pixman_image_get_height(ds
->image
);
2406 pixman_image_t
*linebuf
;
2408 trace_ppm_save(filename
, ds
);
2409 f
= fopen(filename
, "wb");
2411 error_setg(errp
, "failed to open file '%s': %s", filename
,
2415 ret
= fprintf(f
, "P6\n%d %d\n%d\n", width
, height
, 255);
2420 linebuf
= qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8
, width
);
2421 for (y
= 0; y
< height
; y
++) {
2422 qemu_pixman_linebuf_fill(linebuf
, ds
->image
, width
, 0, y
);
2424 ret
= fwrite(pixman_image_get_data(linebuf
), 1,
2425 pixman_image_get_stride(linebuf
), f
);
2433 qemu_pixman_image_unref(linebuf
);
2438 error_setg(errp
, "failed to write to file '%s': %s", filename
,
2444 /* save the vga display in a PPM image even if no display is
2446 static void vga_screen_dump(void *opaque
, const char *filename
, bool cswitch
,
2449 VGACommonState
*s
= opaque
;
2450 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
2453 vga_invalidate_display(s
);
2456 ppm_save(filename
, surface
, errp
);