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
30 #include "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 target_phys_addr_t 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
, target_phys_addr_t 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
, target_phys_addr_t 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
);
1350 s
->last_width
= width
;
1351 s
->last_height
= height
;
1352 s
->last_ch
= cheight
;
1357 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1358 full_update
|= update_palette16(s
);
1359 palette
= s
->last_palette
;
1360 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1362 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1363 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1364 if (cursor_offset
!= s
->cursor_offset
||
1365 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1366 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
) {
1367 /* if the cursor position changed, we update the old and new
1369 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1370 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1371 if (cursor_offset
< CH_ATTR_SIZE
)
1372 s
->last_ch_attr
[cursor_offset
] = -1;
1373 s
->cursor_offset
= cursor_offset
;
1374 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1375 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1377 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1378 if (now
>= s
->cursor_blink_time
) {
1379 s
->cursor_blink_time
= now
+ VGA_TEXT_CURSOR_PERIOD_MS
/ 2;
1380 s
->cursor_visible_phase
= !s
->cursor_visible_phase
;
1383 depth_index
= get_depth_index(s
->ds
);
1385 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1387 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1388 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1390 dest
= ds_get_data(s
->ds
);
1391 linesize
= ds_get_linesize(s
->ds
);
1392 ch_attr_ptr
= s
->last_ch_attr
;
1394 offset
= s
->start_addr
* 4;
1395 for(cy
= 0; cy
< height
; cy
++) {
1397 src
= s
->vram_ptr
+ offset
;
1400 for(cx
= 0; cx
< width
; cx
++) {
1401 ch_attr
= *(uint16_t *)src
;
1402 if (full_update
|| ch_attr
!= *ch_attr_ptr
|| src
== cursor_ptr
) {
1407 *ch_attr_ptr
= ch_attr
;
1408 #ifdef HOST_WORDS_BIGENDIAN
1410 cattr
= ch_attr
& 0xff;
1412 ch
= ch_attr
& 0xff;
1413 cattr
= ch_attr
>> 8;
1415 font_ptr
= font_base
[(cattr
>> 3) & 1];
1416 font_ptr
+= 32 * 4 * ch
;
1417 bgcol
= palette
[cattr
>> 4];
1418 fgcol
= palette
[cattr
& 0x0f];
1420 vga_draw_glyph8(d1
, linesize
,
1421 font_ptr
, cheight
, fgcol
, bgcol
);
1424 if (ch
>= 0xb0 && ch
<= 0xdf &&
1425 (s
->ar
[VGA_ATC_MODE
] & 0x04)) {
1428 vga_draw_glyph9(d1
, linesize
,
1429 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1431 if (src
== cursor_ptr
&&
1432 !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20) &&
1433 s
->cursor_visible_phase
) {
1434 int line_start
, line_last
, h
;
1435 /* draw the cursor */
1436 line_start
= s
->cr
[VGA_CRTC_CURSOR_START
] & 0x1f;
1437 line_last
= s
->cr
[VGA_CRTC_CURSOR_END
] & 0x1f;
1438 /* XXX: check that */
1439 if (line_last
> cheight
- 1)
1440 line_last
= cheight
- 1;
1441 if (line_last
>= line_start
&& line_start
< cheight
) {
1442 h
= line_last
- line_start
+ 1;
1443 d
= d1
+ linesize
* line_start
;
1445 vga_draw_glyph8(d
, linesize
,
1446 cursor_glyph
, h
, fgcol
, bgcol
);
1448 vga_draw_glyph9(d
, linesize
,
1449 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1459 dpy_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1460 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1462 dest
+= linesize
* cheight
;
1463 line1
= line
+ cheight
;
1464 offset
+= line_offset
;
1465 if (line
< s
->line_compare
&& line1
>= s
->line_compare
) {
1486 static vga_draw_line_func
* const vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1496 vga_draw_line2d2_16
,
1497 vga_draw_line2d2_16
,
1498 vga_draw_line2d2_32
,
1499 vga_draw_line2d2_32
,
1500 vga_draw_line2d2_16
,
1501 vga_draw_line2d2_16
,
1512 vga_draw_line4d2_16
,
1513 vga_draw_line4d2_16
,
1514 vga_draw_line4d2_32
,
1515 vga_draw_line4d2_32
,
1516 vga_draw_line4d2_16
,
1517 vga_draw_line4d2_16
,
1520 vga_draw_line8d2_16
,
1521 vga_draw_line8d2_16
,
1522 vga_draw_line8d2_32
,
1523 vga_draw_line8d2_32
,
1524 vga_draw_line8d2_16
,
1525 vga_draw_line8d2_16
,
1539 vga_draw_line15_32bgr
,
1540 vga_draw_line15_15bgr
,
1541 vga_draw_line15_16bgr
,
1547 vga_draw_line16_32bgr
,
1548 vga_draw_line16_15bgr
,
1549 vga_draw_line16_16bgr
,
1555 vga_draw_line24_32bgr
,
1556 vga_draw_line24_15bgr
,
1557 vga_draw_line24_16bgr
,
1563 vga_draw_line32_32bgr
,
1564 vga_draw_line32_15bgr
,
1565 vga_draw_line32_16bgr
,
1568 static int vga_get_bpp(VGACommonState
*s
)
1572 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1573 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1580 static void vga_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1584 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1585 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1586 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1588 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1) * 8;
1589 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1590 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1591 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1592 height
= (height
+ 1);
1598 void vga_invalidate_scanlines(VGACommonState
*s
, int y1
, int y2
)
1601 if (y1
>= VGA_MAX_HEIGHT
)
1603 if (y2
>= VGA_MAX_HEIGHT
)
1604 y2
= VGA_MAX_HEIGHT
;
1605 for(y
= y1
; y
< y2
; y
++) {
1606 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1610 static void vga_sync_dirty_bitmap(VGACommonState
*s
)
1612 memory_region_sync_dirty_bitmap(&s
->vram
);
1615 void vga_dirty_log_start(VGACommonState
*s
)
1617 memory_region_set_log(&s
->vram
, true, DIRTY_MEMORY_VGA
);
1620 void vga_dirty_log_stop(VGACommonState
*s
)
1622 memory_region_set_log(&s
->vram
, false, DIRTY_MEMORY_VGA
);
1628 static void vga_draw_graphic(VGACommonState
*s
, int full_update
)
1630 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1631 int width
, height
, shift_control
, line_offset
, bwidth
, bits
;
1632 ram_addr_t page0
, page1
, page_min
, page_max
;
1633 int disp_width
, multi_scan
, multi_run
;
1635 uint32_t v
, addr1
, addr
;
1636 vga_draw_line_func
*vga_draw_line
;
1638 full_update
|= update_basic_params(s
);
1641 vga_sync_dirty_bitmap(s
);
1643 s
->get_resolution(s
, &width
, &height
);
1646 shift_control
= (s
->gr
[VGA_GFX_MODE
] >> 5) & 3;
1647 double_scan
= (s
->cr
[VGA_CRTC_MAX_SCAN
] >> 7);
1648 if (shift_control
!= 1) {
1649 multi_scan
= (((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1) << double_scan
)
1652 /* in CGA modes, multi_scan is ignored */
1653 /* XXX: is it correct ? */
1654 multi_scan
= double_scan
;
1656 multi_run
= multi_scan
;
1657 if (shift_control
!= s
->shift_control
||
1658 double_scan
!= s
->double_scan
) {
1660 s
->shift_control
= shift_control
;
1661 s
->double_scan
= double_scan
;
1664 if (shift_control
== 0) {
1665 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1668 } else if (shift_control
== 1) {
1669 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1674 depth
= s
->get_bpp(s
);
1675 if (s
->line_offset
!= s
->last_line_offset
||
1676 disp_width
!= s
->last_width
||
1677 height
!= s
->last_height
||
1678 s
->last_depth
!= depth
) {
1679 #if defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1680 if (depth
== 16 || depth
== 32) {
1684 qemu_free_displaysurface(s
->ds
);
1685 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
, height
, depth
,
1687 s
->vram_ptr
+ (s
->start_addr
* 4));
1688 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
1689 s
->ds
->surface
->pf
= qemu_different_endianness_pixelformat(depth
);
1693 qemu_console_resize(s
->ds
, disp_width
, height
);
1695 s
->last_scr_width
= disp_width
;
1696 s
->last_scr_height
= height
;
1697 s
->last_width
= disp_width
;
1698 s
->last_height
= height
;
1699 s
->last_line_offset
= s
->line_offset
;
1700 s
->last_depth
= depth
;
1702 } else if (is_buffer_shared(s
->ds
->surface
) &&
1703 (full_update
|| s
->ds
->surface
->data
!= s
->vram_ptr
+ (s
->start_addr
* 4))) {
1704 s
->ds
->surface
->data
= s
->vram_ptr
+ (s
->start_addr
* 4);
1709 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1711 if (shift_control
== 0) {
1712 full_update
|= update_palette16(s
);
1713 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1714 v
= VGA_DRAW_LINE4D2
;
1719 } else if (shift_control
== 1) {
1720 full_update
|= update_palette16(s
);
1721 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1722 v
= VGA_DRAW_LINE2D2
;
1728 switch(s
->get_bpp(s
)) {
1731 full_update
|= update_palette256(s
);
1732 v
= VGA_DRAW_LINE8D2
;
1736 full_update
|= update_palette256(s
);
1741 v
= VGA_DRAW_LINE15
;
1745 v
= VGA_DRAW_LINE16
;
1749 v
= VGA_DRAW_LINE24
;
1753 v
= VGA_DRAW_LINE32
;
1758 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1760 if (!is_buffer_shared(s
->ds
->surface
) && s
->cursor_invalidate
)
1761 s
->cursor_invalidate(s
);
1763 line_offset
= s
->line_offset
;
1765 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",
1766 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[VGA_CRTC_MODE
],
1767 s
->line_compare
, s
->sr
[VGA_SEQ_CLOCK_MODE
]);
1769 addr1
= (s
->start_addr
* 4);
1770 bwidth
= (width
* bits
+ 7) / 8;
1774 d
= ds_get_data(s
->ds
);
1775 linesize
= ds_get_linesize(s
->ds
);
1777 for(y
= 0; y
< height
; y
++) {
1779 if (!(s
->cr
[VGA_CRTC_MODE
] & 1)) {
1781 /* CGA compatibility handling */
1782 shift
= 14 + ((s
->cr
[VGA_CRTC_MODE
] >> 6) & 1);
1783 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1785 if (!(s
->cr
[VGA_CRTC_MODE
] & 2)) {
1786 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1788 update
= full_update
;
1790 page1
= addr
+ bwidth
- 1;
1791 update
|= memory_region_get_dirty(&s
->vram
, page0
, page1
- page0
,
1793 /* explicit invalidation for the hardware cursor */
1794 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1798 if (page0
< page_min
)
1800 if (page1
> page_max
)
1802 if (!(is_buffer_shared(s
->ds
->surface
))) {
1803 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1804 if (s
->cursor_draw_line
)
1805 s
->cursor_draw_line(s
, d
, y
);
1809 /* flush to display */
1810 dpy_update(s
->ds
, 0, y_start
,
1811 disp_width
, y
- y_start
);
1816 mask
= (s
->cr
[VGA_CRTC_MODE
] & 3) ^ 3;
1817 if ((y1
& mask
) == mask
)
1818 addr1
+= line_offset
;
1820 multi_run
= multi_scan
;
1824 /* line compare acts on the displayed lines */
1825 if (y
== s
->line_compare
)
1830 /* flush to display */
1831 dpy_update(s
->ds
, 0, y_start
,
1832 disp_width
, y
- y_start
);
1834 /* reset modified pages */
1835 if (page_max
>= page_min
) {
1836 memory_region_reset_dirty(&s
->vram
,
1838 page_max
- page_min
,
1841 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1844 static void vga_draw_blank(VGACommonState
*s
, int full_update
)
1851 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1855 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1856 if (ds_get_bits_per_pixel(s
->ds
) == 8)
1857 val
= s
->rgb_to_pixel(0, 0, 0);
1860 w
= s
->last_scr_width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1861 d
= ds_get_data(s
->ds
);
1862 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1864 d
+= ds_get_linesize(s
->ds
);
1866 dpy_update(s
->ds
, 0, 0,
1867 s
->last_scr_width
, s
->last_scr_height
);
1870 #define GMODE_TEXT 0
1871 #define GMODE_GRAPH 1
1872 #define GMODE_BLANK 2
1874 static void vga_update_display(void *opaque
)
1876 VGACommonState
*s
= opaque
;
1877 int full_update
, graphic_mode
;
1879 qemu_flush_coalesced_mmio_buffer();
1881 if (ds_get_bits_per_pixel(s
->ds
) == 0) {
1885 if (!(s
->ar_index
& 0x20)) {
1886 graphic_mode
= GMODE_BLANK
;
1888 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1890 if (graphic_mode
!= s
->graphic_mode
) {
1891 s
->graphic_mode
= graphic_mode
;
1892 s
->cursor_blink_time
= qemu_get_clock_ms(vm_clock
);
1895 switch(graphic_mode
) {
1897 vga_draw_text(s
, full_update
);
1900 vga_draw_graphic(s
, full_update
);
1904 vga_draw_blank(s
, full_update
);
1910 /* force a full display refresh */
1911 static void vga_invalidate_display(void *opaque
)
1913 VGACommonState
*s
= opaque
;
1916 s
->last_height
= -1;
1919 void vga_common_reset(VGACommonState
*s
)
1922 memset(s
->sr
, '\0', sizeof(s
->sr
));
1924 memset(s
->gr
, '\0', sizeof(s
->gr
));
1926 memset(s
->ar
, '\0', sizeof(s
->ar
));
1927 s
->ar_flip_flop
= 0;
1929 memset(s
->cr
, '\0', sizeof(s
->cr
));
1935 s
->dac_sub_index
= 0;
1936 s
->dac_read_index
= 0;
1937 s
->dac_write_index
= 0;
1938 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1940 memset(s
->palette
, '\0', sizeof(s
->palette
));
1943 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1944 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID5
;
1945 s
->vbe_start_addr
= 0;
1946 s
->vbe_line_offset
= 0;
1947 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1948 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1949 s
->graphic_mode
= -1; /* force full update */
1950 s
->shift_control
= 0;
1953 s
->line_compare
= 0;
1955 s
->plane_updated
= 0;
1960 s
->last_scr_width
= 0;
1961 s
->last_scr_height
= 0;
1962 s
->cursor_start
= 0;
1964 s
->cursor_offset
= 0;
1965 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1966 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1967 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1968 switch (vga_retrace_method
) {
1969 case VGA_RETRACE_DUMB
:
1971 case VGA_RETRACE_PRECISE
:
1972 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1975 vga_update_memory_access(s
);
1978 static void vga_reset(void *opaque
)
1980 VGACommonState
*s
= opaque
;
1981 vga_common_reset(s
);
1984 #define TEXTMODE_X(x) ((x) % width)
1985 #define TEXTMODE_Y(x) ((x) / width)
1986 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1987 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1988 /* relay text rendering to the display driver
1989 * instead of doing a full vga_update_display() */
1990 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1992 VGACommonState
*s
= opaque
;
1993 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1994 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1996 console_ch_t
*dst
, val
;
1997 char msg_buffer
[80];
1998 int full_update
= 0;
2000 qemu_flush_coalesced_mmio_buffer();
2002 if (!(s
->ar_index
& 0x20)) {
2003 graphic_mode
= GMODE_BLANK
;
2005 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
2007 if (graphic_mode
!= s
->graphic_mode
) {
2008 s
->graphic_mode
= graphic_mode
;
2011 if (s
->last_width
== -1) {
2016 switch (graphic_mode
) {
2018 /* TODO: update palette */
2019 full_update
|= update_basic_params(s
);
2021 /* total width & height */
2022 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
2024 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
2027 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
2028 cw
= 16; /* NOTE: no 18 pixel wide */
2030 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
2031 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
2032 /* ugly hack for CGA 160x100x16 - explain me the logic */
2035 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
2036 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
2037 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
2038 height
= (height
+ 1) / cheight
;
2041 size
= (height
* width
);
2042 if (size
> CH_ATTR_SIZE
) {
2046 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2051 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2052 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2053 s
->last_scr_width
= width
* cw
;
2054 s
->last_scr_height
= height
* cheight
;
2055 s
->ds
->surface
->width
= width
;
2056 s
->ds
->surface
->height
= height
;
2058 s
->last_width
= width
;
2059 s
->last_height
= height
;
2060 s
->last_ch
= cheight
;
2065 /* Update "hardware" cursor */
2066 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
2067 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
2068 if (cursor_offset
!= s
->cursor_offset
||
2069 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
2070 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
|| full_update
) {
2071 cursor_visible
= !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20);
2072 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2074 TEXTMODE_X(cursor_offset
),
2075 TEXTMODE_Y(cursor_offset
));
2077 dpy_cursor(s
->ds
, -1, -1);
2078 s
->cursor_offset
= cursor_offset
;
2079 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
2080 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
2083 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2087 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2088 console_write_ch(dst
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2090 dpy_update(s
->ds
, 0, 0, width
, height
);
2094 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2095 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2103 for (; i
< size
; src
++, dst
++, i
++) {
2104 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2111 if (c_min
<= c_max
) {
2112 i
= TEXTMODE_Y(c_min
);
2113 dpy_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2122 s
->get_resolution(s
, &width
, &height
);
2123 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2131 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2135 /* Display a message */
2137 s
->last_height
= height
= 3;
2138 dpy_cursor(s
->ds
, -1, -1);
2139 s
->ds
->surface
->width
= s
->last_width
;
2140 s
->ds
->surface
->height
= height
;
2143 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2144 console_write_ch(dst
++, ' ');
2146 size
= strlen(msg_buffer
);
2147 width
= (s
->last_width
- size
) / 2;
2148 dst
= chardata
+ s
->last_width
+ width
;
2149 for (i
= 0; i
< size
; i
++)
2150 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2152 dpy_update(s
->ds
, 0, 0, s
->last_width
, height
);
2155 static uint64_t vga_mem_read(void *opaque
, target_phys_addr_t addr
,
2158 VGACommonState
*s
= opaque
;
2160 return vga_mem_readb(s
, addr
);
2163 static void vga_mem_write(void *opaque
, target_phys_addr_t addr
,
2164 uint64_t data
, unsigned size
)
2166 VGACommonState
*s
= opaque
;
2168 return vga_mem_writeb(s
, addr
, data
);
2171 const MemoryRegionOps vga_mem_ops
= {
2172 .read
= vga_mem_read
,
2173 .write
= vga_mem_write
,
2174 .endianness
= DEVICE_LITTLE_ENDIAN
,
2176 .min_access_size
= 1,
2177 .max_access_size
= 1,
2181 static int vga_common_post_load(void *opaque
, int version_id
)
2183 VGACommonState
*s
= opaque
;
2186 s
->graphic_mode
= -1;
2190 const VMStateDescription vmstate_vga_common
= {
2193 .minimum_version_id
= 2,
2194 .minimum_version_id_old
= 2,
2195 .post_load
= vga_common_post_load
,
2196 .fields
= (VMStateField
[]) {
2197 VMSTATE_UINT32(latch
, VGACommonState
),
2198 VMSTATE_UINT8(sr_index
, VGACommonState
),
2199 VMSTATE_PARTIAL_BUFFER(sr
, VGACommonState
, 8),
2200 VMSTATE_UINT8(gr_index
, VGACommonState
),
2201 VMSTATE_PARTIAL_BUFFER(gr
, VGACommonState
, 16),
2202 VMSTATE_UINT8(ar_index
, VGACommonState
),
2203 VMSTATE_BUFFER(ar
, VGACommonState
),
2204 VMSTATE_INT32(ar_flip_flop
, VGACommonState
),
2205 VMSTATE_UINT8(cr_index
, VGACommonState
),
2206 VMSTATE_BUFFER(cr
, VGACommonState
),
2207 VMSTATE_UINT8(msr
, VGACommonState
),
2208 VMSTATE_UINT8(fcr
, VGACommonState
),
2209 VMSTATE_UINT8(st00
, VGACommonState
),
2210 VMSTATE_UINT8(st01
, VGACommonState
),
2212 VMSTATE_UINT8(dac_state
, VGACommonState
),
2213 VMSTATE_UINT8(dac_sub_index
, VGACommonState
),
2214 VMSTATE_UINT8(dac_read_index
, VGACommonState
),
2215 VMSTATE_UINT8(dac_write_index
, VGACommonState
),
2216 VMSTATE_BUFFER(dac_cache
, VGACommonState
),
2217 VMSTATE_BUFFER(palette
, VGACommonState
),
2219 VMSTATE_INT32(bank_offset
, VGACommonState
),
2220 VMSTATE_UINT8_EQUAL(is_vbe_vmstate
, VGACommonState
),
2221 VMSTATE_UINT16(vbe_index
, VGACommonState
),
2222 VMSTATE_UINT16_ARRAY(vbe_regs
, VGACommonState
, VBE_DISPI_INDEX_NB
),
2223 VMSTATE_UINT32(vbe_start_addr
, VGACommonState
),
2224 VMSTATE_UINT32(vbe_line_offset
, VGACommonState
),
2225 VMSTATE_UINT32(vbe_bank_mask
, VGACommonState
),
2226 VMSTATE_END_OF_LIST()
2230 void vga_common_init(VGACommonState
*s
)
2234 for(i
= 0;i
< 256; i
++) {
2236 for(j
= 0; j
< 8; j
++) {
2237 v
|= ((i
>> j
) & 1) << (j
* 4);
2242 for(j
= 0; j
< 4; j
++) {
2243 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2247 for(i
= 0; i
< 16; i
++) {
2249 for(j
= 0; j
< 4; j
++) {
2252 v
|= b
<< (2 * j
+ 1);
2257 /* valid range: 1 MB -> 256 MB */
2258 s
->vram_size
= 1024 * 1024;
2259 while (s
->vram_size
< (s
->vram_size_mb
<< 20) &&
2260 s
->vram_size
< (256 << 20)) {
2263 s
->vram_size_mb
= s
->vram_size
>> 20;
2265 s
->is_vbe_vmstate
= 1;
2266 memory_region_init_ram(&s
->vram
, "vga.vram", s
->vram_size
);
2267 vmstate_register_ram_global(&s
->vram
);
2268 xen_register_framebuffer(&s
->vram
);
2269 s
->vram_ptr
= memory_region_get_ram_ptr(&s
->vram
);
2270 s
->get_bpp
= vga_get_bpp
;
2271 s
->get_offsets
= vga_get_offsets
;
2272 s
->get_resolution
= vga_get_resolution
;
2273 s
->update
= vga_update_display
;
2274 s
->invalidate
= vga_invalidate_display
;
2275 s
->screen_dump
= vga_screen_dump
;
2276 s
->text_update
= vga_update_text
;
2277 switch (vga_retrace_method
) {
2278 case VGA_RETRACE_DUMB
:
2279 s
->retrace
= vga_dumb_retrace
;
2280 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2283 case VGA_RETRACE_PRECISE
:
2284 s
->retrace
= vga_precise_retrace
;
2285 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2288 vga_dirty_log_start(s
);
2291 static const MemoryRegionPortio vga_portio_list
[] = {
2292 { 0x04, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3b4 */
2293 { 0x0a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3ba */
2294 { 0x10, 16, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3c0 */
2295 { 0x24, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3d4 */
2296 { 0x2a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3da */
2297 PORTIO_END_OF_LIST(),
2300 static const MemoryRegionPortio vbe_portio_list
[] = {
2301 { 0, 1, 2, .read
= vbe_ioport_read_index
, .write
= vbe_ioport_write_index
},
2303 { 1, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2305 { 2, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2307 PORTIO_END_OF_LIST(),
2310 /* Used by both ISA and PCI */
2311 MemoryRegion
*vga_init_io(VGACommonState
*s
,
2312 const MemoryRegionPortio
**vga_ports
,
2313 const MemoryRegionPortio
**vbe_ports
)
2315 MemoryRegion
*vga_mem
;
2317 *vga_ports
= vga_portio_list
;
2318 *vbe_ports
= vbe_portio_list
;
2320 vga_mem
= g_malloc(sizeof(*vga_mem
));
2321 memory_region_init_io(vga_mem
, &vga_mem_ops
, s
,
2322 "vga-lowmem", 0x20000);
2323 memory_region_set_flush_coalesced(vga_mem
);
2328 void vga_init(VGACommonState
*s
, MemoryRegion
*address_space
,
2329 MemoryRegion
*address_space_io
, bool init_vga_ports
)
2331 MemoryRegion
*vga_io_memory
;
2332 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
2333 PortioList
*vga_port_list
= g_new(PortioList
, 1);
2334 PortioList
*vbe_port_list
= g_new(PortioList
, 1);
2336 qemu_register_reset(vga_reset
, s
);
2340 s
->legacy_address_space
= address_space
;
2342 vga_io_memory
= vga_init_io(s
, &vga_ports
, &vbe_ports
);
2343 memory_region_add_subregion_overlap(address_space
,
2344 isa_mem_base
+ 0x000a0000,
2347 memory_region_set_coalescing(vga_io_memory
);
2348 if (init_vga_ports
) {
2349 portio_list_init(vga_port_list
, vga_ports
, s
, "vga");
2350 portio_list_add(vga_port_list
, address_space_io
, 0x3b0);
2353 portio_list_init(vbe_port_list
, vbe_ports
, s
, "vbe");
2354 portio_list_add(vbe_port_list
, address_space_io
, 0x1ce);
2358 void vga_init_vbe(VGACommonState
*s
, MemoryRegion
*system_memory
)
2360 /* With pc-0.12 and below we map both the PCI BAR and the fixed VBE region,
2361 * so use an alias to avoid double-mapping the same region.
2363 memory_region_init_alias(&s
->vram_vbe
, "vram.vbe",
2364 &s
->vram
, 0, memory_region_size(&s
->vram
));
2365 /* XXX: use optimized standard vga accesses */
2366 memory_region_add_subregion(system_memory
,
2367 VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2371 /********************************************************/
2372 /* vga screen dump */
2374 void ppm_save(const char *filename
, struct DisplaySurface
*ds
, Error
**errp
)
2382 char *linebuf
, *pbuf
;
2384 trace_ppm_save(filename
, ds
);
2385 f
= fopen(filename
, "wb");
2387 error_setg(errp
, "failed to open file '%s': %s", filename
,
2391 ret
= fprintf(f
, "P6\n%d %d\n%d\n", ds
->width
, ds
->height
, 255);
2396 linebuf
= g_malloc(ds
->width
* 3);
2398 for(y
= 0; y
< ds
->height
; y
++) {
2401 for(x
= 0; x
< ds
->width
; x
++) {
2402 if (ds
->pf
.bits_per_pixel
== 32)
2405 v
= (uint32_t) (*(uint16_t *)d
);
2406 /* Limited to 8 or fewer bits per channel: */
2407 r
= ((v
>> ds
->pf
.rshift
) & ds
->pf
.rmax
) << (8 - ds
->pf
.rbits
);
2408 g
= ((v
>> ds
->pf
.gshift
) & ds
->pf
.gmax
) << (8 - ds
->pf
.gbits
);
2409 b
= ((v
>> ds
->pf
.bshift
) & ds
->pf
.bmax
) << (8 - ds
->pf
.bbits
);
2413 d
+= ds
->pf
.bytes_per_pixel
;
2417 ret
= fwrite(linebuf
, 1, pbuf
- linebuf
, f
);
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
);