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
42 * Video Graphics Array (VGA)
44 * Chipset docs for original IBM VGA:
45 * http://www.mcamafia.de/pdf/ibm_vgaxga_trm2.pdf
48 * http://www.osdever.net/FreeVGA/home.htm
50 * Standard VGA features and Bochs VBE extensions are implemented.
53 /* force some bits to zero */
54 const uint8_t sr_mask
[8] = {
65 const uint8_t gr_mask
[16] = {
84 #define cbswap_32(__x) \
86 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
87 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
88 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
89 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) ))
91 #ifdef HOST_WORDS_BIGENDIAN
92 #define PAT(x) cbswap_32(x)
97 #ifdef HOST_WORDS_BIGENDIAN
103 #ifdef HOST_WORDS_BIGENDIAN
104 #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff)
106 #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff)
109 static const uint32_t mask16
[16] = {
130 #ifdef HOST_WORDS_BIGENDIAN
133 #define PAT(x) cbswap_32(x)
136 static const uint32_t dmask16
[16] = {
155 static const uint32_t dmask4
[4] = {
162 static uint32_t expand4
[256];
163 static uint16_t expand2
[256];
164 static uint8_t expand4to8
[16];
166 static void vga_screen_dump(void *opaque
, const char *filename
, bool cswitch
);
168 static void vga_update_memory_access(VGACommonState
*s
)
170 MemoryRegion
*region
, *old_region
= s
->chain4_alias
;
171 target_phys_addr_t base
, offset
, size
;
173 s
->chain4_alias
= NULL
;
175 if ((s
->sr
[VGA_SEQ_PLANE_WRITE
] & VGA_SR02_ALL_PLANES
) ==
176 VGA_SR02_ALL_PLANES
&& s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
178 switch ((s
->gr
[VGA_GFX_MISC
] >> 2) & 3) {
186 offset
= s
->bank_offset
;
198 base
+= isa_mem_base
;
199 region
= g_malloc(sizeof(*region
));
200 memory_region_init_alias(region
, "vga.chain4", &s
->vram
, offset
, size
);
201 memory_region_add_subregion_overlap(s
->legacy_address_space
, base
,
203 s
->chain4_alias
= region
;
206 memory_region_del_subregion(s
->legacy_address_space
, old_region
);
207 memory_region_destroy(old_region
);
209 s
->plane_updated
= 0xf;
213 static void vga_dumb_update_retrace_info(VGACommonState
*s
)
218 static void vga_precise_update_retrace_info(VGACommonState
*s
)
221 int hretr_start_char
;
222 int hretr_skew_chars
;
226 int vretr_start_line
;
235 const int clk_hz
[] = {25175000, 28322000, 25175000, 25175000};
236 int64_t chars_per_sec
;
237 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
239 htotal_chars
= s
->cr
[VGA_CRTC_H_TOTAL
] + 5;
240 hretr_start_char
= s
->cr
[VGA_CRTC_H_SYNC_START
];
241 hretr_skew_chars
= (s
->cr
[VGA_CRTC_H_SYNC_END
] >> 5) & 3;
242 hretr_end_char
= s
->cr
[VGA_CRTC_H_SYNC_END
] & 0x1f;
244 vtotal_lines
= (s
->cr
[VGA_CRTC_V_TOTAL
] |
245 (((s
->cr
[VGA_CRTC_OVERFLOW
] & 1) |
246 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 4) & 2)) << 8)) + 2;
247 vretr_start_line
= s
->cr
[VGA_CRTC_V_SYNC_START
] |
248 ((((s
->cr
[VGA_CRTC_OVERFLOW
] >> 2) & 1) |
249 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 6) & 2)) << 8);
250 vretr_end_line
= s
->cr
[VGA_CRTC_V_SYNC_END
] & 0xf;
252 clocking_mode
= (s
->sr
[VGA_SEQ_CLOCK_MODE
] >> 3) & 1;
253 clock_sel
= (s
->msr
>> 2) & 3;
254 dots
= (s
->msr
& 1) ? 8 : 9;
256 chars_per_sec
= clk_hz
[clock_sel
] / dots
;
258 htotal_chars
<<= clocking_mode
;
260 r
->total_chars
= vtotal_lines
* htotal_chars
;
262 r
->ticks_per_char
= get_ticks_per_sec() / (r
->total_chars
* r
->freq
);
264 r
->ticks_per_char
= get_ticks_per_sec() / chars_per_sec
;
267 r
->vstart
= vretr_start_line
;
268 r
->vend
= r
->vstart
+ vretr_end_line
+ 1;
270 r
->hstart
= hretr_start_char
+ hretr_skew_chars
;
271 r
->hend
= r
->hstart
+ hretr_end_char
+ 1;
272 r
->htotal
= htotal_chars
;
275 div2
= (s
->cr
[VGA_CRTC_MODE
] >> 2) & 1;
276 sldiv2
= (s
->cr
[VGA_CRTC_MODE
] >> 3) & 1;
286 "div2 = %d sldiv2 = %d\n"
287 "clocking_mode = %d\n"
288 "clock_sel = %d %d\n"
290 "ticks/char = %" PRId64
"\n"
292 (double) get_ticks_per_sec() / (r
->ticks_per_char
* r
->total_chars
),
310 static uint8_t vga_precise_retrace(VGACommonState
*s
)
312 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
313 uint8_t val
= s
->st01
& ~(ST01_V_RETRACE
| ST01_DISP_ENABLE
);
315 if (r
->total_chars
) {
316 int cur_line
, cur_line_char
, cur_char
;
319 cur_tick
= qemu_get_clock_ns(vm_clock
);
321 cur_char
= (cur_tick
/ r
->ticks_per_char
) % r
->total_chars
;
322 cur_line
= cur_char
/ r
->htotal
;
324 if (cur_line
>= r
->vstart
&& cur_line
<= r
->vend
) {
325 val
|= ST01_V_RETRACE
| ST01_DISP_ENABLE
;
327 cur_line_char
= cur_char
% r
->htotal
;
328 if (cur_line_char
>= r
->hstart
&& cur_line_char
<= r
->hend
) {
329 val
|= ST01_DISP_ENABLE
;
335 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
339 static uint8_t vga_dumb_retrace(VGACommonState
*s
)
341 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
344 int vga_ioport_invalid(VGACommonState
*s
, uint32_t addr
)
346 if (s
->msr
& VGA_MIS_COLOR
) {
348 return (addr
>= 0x3b0 && addr
<= 0x3bf);
351 return (addr
>= 0x3d0 && addr
<= 0x3df);
355 uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
357 VGACommonState
*s
= opaque
;
360 if (vga_ioport_invalid(s
, addr
)) {
365 if (s
->ar_flip_flop
== 0) {
372 index
= s
->ar_index
& 0x1f;
373 if (index
< VGA_ATT_C
) {
386 val
= s
->sr
[s
->sr_index
];
388 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
395 val
= s
->dac_write_index
;
398 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
399 if (++s
->dac_sub_index
== 3) {
400 s
->dac_sub_index
= 0;
414 val
= s
->gr
[s
->gr_index
];
416 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
425 val
= s
->cr
[s
->cr_index
];
427 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
432 /* just toggle to fool polling */
433 val
= s
->st01
= s
->retrace(s
);
441 #if defined(DEBUG_VGA)
442 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
447 void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
449 VGACommonState
*s
= opaque
;
452 /* check port range access depending on color/monochrome mode */
453 if (vga_ioport_invalid(s
, addr
)) {
457 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
462 if (s
->ar_flip_flop
== 0) {
466 index
= s
->ar_index
& 0x1f;
468 case VGA_ATC_PALETTE0
... VGA_ATC_PALETTEF
:
469 s
->ar
[index
] = val
& 0x3f;
472 s
->ar
[index
] = val
& ~0x10;
474 case VGA_ATC_OVERSCAN
:
477 case VGA_ATC_PLANE_ENABLE
:
478 s
->ar
[index
] = val
& ~0xc0;
481 s
->ar
[index
] = val
& ~0xf0;
483 case VGA_ATC_COLOR_PAGE
:
484 s
->ar
[index
] = val
& ~0xf0;
490 s
->ar_flip_flop
^= 1;
493 s
->msr
= val
& ~0x10;
494 s
->update_retrace_info(s
);
497 s
->sr_index
= val
& 7;
501 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
503 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
504 if (s
->sr_index
== VGA_SEQ_CLOCK_MODE
) {
505 s
->update_retrace_info(s
);
507 vga_update_memory_access(s
);
510 s
->dac_read_index
= val
;
511 s
->dac_sub_index
= 0;
515 s
->dac_write_index
= val
;
516 s
->dac_sub_index
= 0;
520 s
->dac_cache
[s
->dac_sub_index
] = val
;
521 if (++s
->dac_sub_index
== 3) {
522 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
523 s
->dac_sub_index
= 0;
524 s
->dac_write_index
++;
528 s
->gr_index
= val
& 0x0f;
532 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
534 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
535 vga_update_memory_access(s
);
544 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
546 /* handle CR0-7 protection */
547 if ((s
->cr
[VGA_CRTC_V_SYNC_END
] & VGA_CR11_LOCK_CR0_CR7
) &&
548 s
->cr_index
<= VGA_CRTC_OVERFLOW
) {
549 /* can always write bit 4 of CR7 */
550 if (s
->cr_index
== VGA_CRTC_OVERFLOW
) {
551 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x10) |
556 s
->cr
[s
->cr_index
] = val
;
558 switch(s
->cr_index
) {
559 case VGA_CRTC_H_TOTAL
:
560 case VGA_CRTC_H_SYNC_START
:
561 case VGA_CRTC_H_SYNC_END
:
562 case VGA_CRTC_V_TOTAL
:
563 case VGA_CRTC_OVERFLOW
:
564 case VGA_CRTC_V_SYNC_END
:
566 s
->update_retrace_info(s
);
577 #ifdef CONFIG_BOCHS_VBE
578 static uint32_t vbe_ioport_read_index(void *opaque
, uint32_t addr
)
580 VGACommonState
*s
= opaque
;
586 static uint32_t vbe_ioport_read_data(void *opaque
, uint32_t addr
)
588 VGACommonState
*s
= opaque
;
591 if (s
->vbe_index
< VBE_DISPI_INDEX_NB
) {
592 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_GETCAPS
) {
593 switch(s
->vbe_index
) {
594 /* XXX: do not hardcode ? */
595 case VBE_DISPI_INDEX_XRES
:
596 val
= VBE_DISPI_MAX_XRES
;
598 case VBE_DISPI_INDEX_YRES
:
599 val
= VBE_DISPI_MAX_YRES
;
601 case VBE_DISPI_INDEX_BPP
:
602 val
= VBE_DISPI_MAX_BPP
;
605 val
= s
->vbe_regs
[s
->vbe_index
];
609 val
= s
->vbe_regs
[s
->vbe_index
];
611 } else if (s
->vbe_index
== VBE_DISPI_INDEX_VIDEO_MEMORY_64K
) {
612 val
= s
->vram_size
/ (64 * 1024);
616 #ifdef DEBUG_BOCHS_VBE
617 printf("VBE: read index=0x%x val=0x%x\n", s
->vbe_index
, val
);
622 static void vbe_ioport_write_index(void *opaque
, uint32_t addr
, uint32_t val
)
624 VGACommonState
*s
= opaque
;
628 static void vbe_ioport_write_data(void *opaque
, uint32_t addr
, uint32_t val
)
630 VGACommonState
*s
= opaque
;
632 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
633 #ifdef DEBUG_BOCHS_VBE
634 printf("VBE: write index=0x%x val=0x%x\n", s
->vbe_index
, val
);
636 switch(s
->vbe_index
) {
637 case VBE_DISPI_INDEX_ID
:
638 if (val
== VBE_DISPI_ID0
||
639 val
== VBE_DISPI_ID1
||
640 val
== VBE_DISPI_ID2
||
641 val
== VBE_DISPI_ID3
||
642 val
== VBE_DISPI_ID4
) {
643 s
->vbe_regs
[s
->vbe_index
] = val
;
646 case VBE_DISPI_INDEX_XRES
:
647 if ((val
<= VBE_DISPI_MAX_XRES
) && ((val
& 7) == 0)) {
648 s
->vbe_regs
[s
->vbe_index
] = val
;
651 case VBE_DISPI_INDEX_YRES
:
652 if (val
<= VBE_DISPI_MAX_YRES
) {
653 s
->vbe_regs
[s
->vbe_index
] = val
;
656 case VBE_DISPI_INDEX_BPP
:
659 if (val
== 4 || val
== 8 || val
== 15 ||
660 val
== 16 || val
== 24 || val
== 32) {
661 s
->vbe_regs
[s
->vbe_index
] = val
;
664 case VBE_DISPI_INDEX_BANK
:
665 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
666 val
&= (s
->vbe_bank_mask
>> 2);
668 val
&= s
->vbe_bank_mask
;
670 s
->vbe_regs
[s
->vbe_index
] = val
;
671 s
->bank_offset
= (val
<< 16);
672 vga_update_memory_access(s
);
674 case VBE_DISPI_INDEX_ENABLE
:
675 if ((val
& VBE_DISPI_ENABLED
) &&
676 !(s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
)) {
677 int h
, shift_control
;
679 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] =
680 s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
681 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] =
682 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
683 s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
684 s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
686 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
687 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 1;
689 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] *
690 ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
691 s
->vbe_start_addr
= 0;
693 /* clear the screen (should be done in BIOS) */
694 if (!(val
& VBE_DISPI_NOCLEARMEM
)) {
695 memset(s
->vram_ptr
, 0,
696 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] * s
->vbe_line_offset
);
699 /* we initialize the VGA graphic mode (should be done
701 /* graphic mode + memory map 1 */
702 s
->gr
[VGA_GFX_MISC
] = (s
->gr
[VGA_GFX_MISC
] & ~0x0c) | 0x04 |
703 VGA_GR06_GRAPHICS_MODE
;
704 s
->cr
[VGA_CRTC_MODE
] |= 3; /* no CGA modes */
705 s
->cr
[VGA_CRTC_OFFSET
] = s
->vbe_line_offset
>> 3;
707 s
->cr
[VGA_CRTC_H_DISP
] =
708 (s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 3) - 1;
709 /* height (only meaningful if < 1024) */
710 h
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] - 1;
711 s
->cr
[VGA_CRTC_V_DISP_END
] = h
;
712 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x42) |
713 ((h
>> 7) & 0x02) | ((h
>> 3) & 0x40);
714 /* line compare to 1023 */
715 s
->cr
[VGA_CRTC_LINE_COMPARE
] = 0xff;
716 s
->cr
[VGA_CRTC_OVERFLOW
] |= 0x10;
717 s
->cr
[VGA_CRTC_MAX_SCAN
] |= 0x40;
719 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
721 s
->sr
[VGA_SEQ_CLOCK_MODE
] &= ~8; /* no double line */
724 /* set chain 4 mode */
725 s
->sr
[VGA_SEQ_MEMORY_MODE
] |= VGA_SR04_CHN_4M
;
726 /* activate all planes */
727 s
->sr
[VGA_SEQ_PLANE_WRITE
] |= VGA_SR02_ALL_PLANES
;
729 s
->gr
[VGA_GFX_MODE
] = (s
->gr
[VGA_GFX_MODE
] & ~0x60) |
730 (shift_control
<< 5);
731 s
->cr
[VGA_CRTC_MAX_SCAN
] &= ~0x9f; /* no double scan */
733 /* XXX: the bios should do that */
736 s
->dac_8bit
= (val
& VBE_DISPI_8BIT_DAC
) > 0;
737 s
->vbe_regs
[s
->vbe_index
] = val
;
738 vga_update_memory_access(s
);
740 case VBE_DISPI_INDEX_VIRT_WIDTH
:
742 int w
, h
, line_offset
;
744 if (val
< s
->vbe_regs
[VBE_DISPI_INDEX_XRES
])
747 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
748 line_offset
= w
>> 1;
750 line_offset
= w
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
751 h
= s
->vram_size
/ line_offset
;
752 /* XXX: support weird bochs semantics ? */
753 if (h
< s
->vbe_regs
[VBE_DISPI_INDEX_YRES
])
755 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] = w
;
756 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] = h
;
757 s
->vbe_line_offset
= line_offset
;
760 case VBE_DISPI_INDEX_X_OFFSET
:
761 case VBE_DISPI_INDEX_Y_OFFSET
:
764 s
->vbe_regs
[s
->vbe_index
] = val
;
765 s
->vbe_start_addr
= s
->vbe_line_offset
* s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
];
766 x
= s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
];
767 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
768 s
->vbe_start_addr
+= x
>> 1;
770 s
->vbe_start_addr
+= x
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
771 s
->vbe_start_addr
>>= 2;
781 /* called for accesses between 0xa0000 and 0xc0000 */
782 uint32_t vga_mem_readb(VGACommonState
*s
, target_phys_addr_t addr
)
784 int memory_map_mode
, plane
;
787 /* convert to VGA memory offset */
788 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
790 switch(memory_map_mode
) {
796 addr
+= s
->bank_offset
;
811 if (s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
812 /* chain 4 mode : simplest access */
813 ret
= s
->vram_ptr
[addr
];
814 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
815 /* odd/even mode (aka text mode mapping) */
816 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
817 ret
= s
->vram_ptr
[((addr
& ~1) << 1) | plane
];
819 /* standard VGA latched access */
820 s
->latch
= ((uint32_t *)s
->vram_ptr
)[addr
];
822 if (!(s
->gr
[VGA_GFX_MODE
] & 0x08)) {
824 plane
= s
->gr
[VGA_GFX_PLANE_READ
];
825 ret
= GET_PLANE(s
->latch
, plane
);
828 ret
= (s
->latch
^ mask16
[s
->gr
[VGA_GFX_COMPARE_VALUE
]]) &
829 mask16
[s
->gr
[VGA_GFX_COMPARE_MASK
]];
838 /* called for accesses between 0xa0000 and 0xc0000 */
839 void vga_mem_writeb(VGACommonState
*s
, target_phys_addr_t addr
, uint32_t val
)
841 int memory_map_mode
, plane
, write_mode
, b
, func_select
, mask
;
842 uint32_t write_mask
, bit_mask
, set_mask
;
845 printf("vga: [0x" TARGET_FMT_plx
"] = 0x%02x\n", addr
, val
);
847 /* convert to VGA memory offset */
848 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
850 switch(memory_map_mode
) {
856 addr
+= s
->bank_offset
;
871 if (s
->sr
[VGA_SEQ_MEMORY_MODE
] & VGA_SR04_CHN_4M
) {
872 /* chain 4 mode : simplest access */
875 if (s
->sr
[VGA_SEQ_PLANE_WRITE
] & mask
) {
876 s
->vram_ptr
[addr
] = val
;
878 printf("vga: chain4: [0x" TARGET_FMT_plx
"]\n", addr
);
880 s
->plane_updated
|= mask
; /* only used to detect font change */
881 memory_region_set_dirty(&s
->vram
, addr
, 1);
883 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
884 /* odd/even mode (aka text mode mapping) */
885 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
887 if (s
->sr
[VGA_SEQ_PLANE_WRITE
] & mask
) {
888 addr
= ((addr
& ~1) << 1) | plane
;
889 s
->vram_ptr
[addr
] = val
;
891 printf("vga: odd/even: [0x" TARGET_FMT_plx
"]\n", addr
);
893 s
->plane_updated
|= mask
; /* only used to detect font change */
894 memory_region_set_dirty(&s
->vram
, addr
, 1);
897 /* standard VGA latched access */
898 write_mode
= s
->gr
[VGA_GFX_MODE
] & 3;
903 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
904 val
= ((val
>> b
) | (val
<< (8 - b
))) & 0xff;
908 /* apply set/reset mask */
909 set_mask
= mask16
[s
->gr
[VGA_GFX_SR_ENABLE
]];
910 val
= (val
& ~set_mask
) |
911 (mask16
[s
->gr
[VGA_GFX_SR_VALUE
]] & set_mask
);
912 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
918 val
= mask16
[val
& 0x0f];
919 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
923 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
924 val
= (val
>> b
) | (val
<< (8 - b
));
926 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
] & val
;
927 val
= mask16
[s
->gr
[VGA_GFX_SR_VALUE
]];
931 /* apply logical operation */
932 func_select
= s
->gr
[VGA_GFX_DATA_ROTATE
] >> 3;
933 switch(func_select
) {
953 bit_mask
|= bit_mask
<< 8;
954 bit_mask
|= bit_mask
<< 16;
955 val
= (val
& bit_mask
) | (s
->latch
& ~bit_mask
);
958 /* mask data according to sr[2] */
959 mask
= s
->sr
[VGA_SEQ_PLANE_WRITE
];
960 s
->plane_updated
|= mask
; /* only used to detect font change */
961 write_mask
= mask16
[mask
];
962 ((uint32_t *)s
->vram_ptr
)[addr
] =
963 (((uint32_t *)s
->vram_ptr
)[addr
] & ~write_mask
) |
966 printf("vga: latch: [0x" TARGET_FMT_plx
"] mask=0x%08x val=0x%08x\n",
967 addr
* 4, write_mask
, val
);
969 memory_region_set_dirty(&s
->vram
, addr
<< 2, sizeof(uint32_t));
973 typedef void vga_draw_glyph8_func(uint8_t *d
, int linesize
,
974 const uint8_t *font_ptr
, int h
,
975 uint32_t fgcol
, uint32_t bgcol
);
976 typedef void vga_draw_glyph9_func(uint8_t *d
, int linesize
,
977 const uint8_t *font_ptr
, int h
,
978 uint32_t fgcol
, uint32_t bgcol
, int dup9
);
979 typedef void vga_draw_line_func(VGACommonState
*s1
, uint8_t *d
,
980 const uint8_t *s
, int width
);
983 #include "vga_template.h"
986 #include "vga_template.h"
990 #include "vga_template.h"
993 #include "vga_template.h"
997 #include "vga_template.h"
1000 #include "vga_template.h"
1004 #include "vga_template.h"
1006 static unsigned int rgb_to_pixel8_dup(unsigned int r
, unsigned int g
, unsigned b
)
1009 col
= rgb_to_pixel8(r
, g
, b
);
1015 static unsigned int rgb_to_pixel15_dup(unsigned int r
, unsigned int g
, unsigned b
)
1018 col
= rgb_to_pixel15(r
, g
, b
);
1023 static unsigned int rgb_to_pixel15bgr_dup(unsigned int r
, unsigned int g
,
1027 col
= rgb_to_pixel15bgr(r
, g
, b
);
1032 static unsigned int rgb_to_pixel16_dup(unsigned int r
, unsigned int g
, unsigned b
)
1035 col
= rgb_to_pixel16(r
, g
, b
);
1040 static unsigned int rgb_to_pixel16bgr_dup(unsigned int r
, unsigned int g
,
1044 col
= rgb_to_pixel16bgr(r
, g
, b
);
1049 static unsigned int rgb_to_pixel32_dup(unsigned int r
, unsigned int g
, unsigned b
)
1052 col
= rgb_to_pixel32(r
, g
, b
);
1056 static unsigned int rgb_to_pixel32bgr_dup(unsigned int r
, unsigned int g
, unsigned b
)
1059 col
= rgb_to_pixel32bgr(r
, g
, b
);
1063 /* return true if the palette was modified */
1064 static int update_palette16(VGACommonState
*s
)
1067 uint32_t v
, col
, *palette
;
1070 palette
= s
->last_palette
;
1071 for(i
= 0; i
< 16; i
++) {
1073 if (s
->ar
[VGA_ATC_MODE
] & 0x80) {
1074 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xf) << 4) | (v
& 0xf);
1076 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xc) << 4) | (v
& 0x3f);
1079 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1080 c6_to_8(s
->palette
[v
+ 1]),
1081 c6_to_8(s
->palette
[v
+ 2]));
1082 if (col
!= palette
[i
]) {
1090 /* return true if the palette was modified */
1091 static int update_palette256(VGACommonState
*s
)
1094 uint32_t v
, col
, *palette
;
1097 palette
= s
->last_palette
;
1099 for(i
= 0; i
< 256; i
++) {
1101 col
= s
->rgb_to_pixel(s
->palette
[v
],
1105 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1106 c6_to_8(s
->palette
[v
+ 1]),
1107 c6_to_8(s
->palette
[v
+ 2]));
1109 if (col
!= palette
[i
]) {
1118 static void vga_get_offsets(VGACommonState
*s
,
1119 uint32_t *pline_offset
,
1120 uint32_t *pstart_addr
,
1121 uint32_t *pline_compare
)
1123 uint32_t start_addr
, line_offset
, line_compare
;
1124 #ifdef CONFIG_BOCHS_VBE
1125 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1126 line_offset
= s
->vbe_line_offset
;
1127 start_addr
= s
->vbe_start_addr
;
1128 line_compare
= 65535;
1132 /* compute line_offset in bytes */
1133 line_offset
= s
->cr
[VGA_CRTC_OFFSET
];
1136 /* starting address */
1137 start_addr
= s
->cr
[VGA_CRTC_START_LO
] |
1138 (s
->cr
[VGA_CRTC_START_HI
] << 8);
1141 line_compare
= s
->cr
[VGA_CRTC_LINE_COMPARE
] |
1142 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x10) << 4) |
1143 ((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x40) << 3);
1145 *pline_offset
= line_offset
;
1146 *pstart_addr
= start_addr
;
1147 *pline_compare
= line_compare
;
1150 /* update start_addr and line_offset. Return TRUE if modified */
1151 static int update_basic_params(VGACommonState
*s
)
1154 uint32_t start_addr
, line_offset
, line_compare
;
1158 s
->get_offsets(s
, &line_offset
, &start_addr
, &line_compare
);
1160 if (line_offset
!= s
->line_offset
||
1161 start_addr
!= s
->start_addr
||
1162 line_compare
!= s
->line_compare
) {
1163 s
->line_offset
= line_offset
;
1164 s
->start_addr
= start_addr
;
1165 s
->line_compare
= line_compare
;
1173 static inline int get_depth_index(DisplayState
*s
)
1175 switch(ds_get_bits_per_pixel(s
)) {
1184 if (is_surface_bgr(s
->surface
))
1191 static vga_draw_glyph8_func
* const vga_draw_glyph8_table
[NB_DEPTHS
] = {
1201 static vga_draw_glyph8_func
* const vga_draw_glyph16_table
[NB_DEPTHS
] = {
1203 vga_draw_glyph16_16
,
1204 vga_draw_glyph16_16
,
1205 vga_draw_glyph16_32
,
1206 vga_draw_glyph16_32
,
1207 vga_draw_glyph16_16
,
1208 vga_draw_glyph16_16
,
1211 static vga_draw_glyph9_func
* const vga_draw_glyph9_table
[NB_DEPTHS
] = {
1221 static const uint8_t cursor_glyph
[32 * 4] = {
1222 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1223 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1224 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1225 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
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,
1240 static void vga_get_text_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
,
1241 int *pcwidth
, int *pcheight
)
1243 int width
, cwidth
, height
, cheight
;
1245 /* total width & height */
1246 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
1248 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
1251 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
1252 cwidth
= 16; /* NOTE: no 18 pixel wide */
1254 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
1255 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
1256 /* ugly hack for CGA 160x100x16 - explain me the logic */
1259 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1260 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1261 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1262 height
= (height
+ 1) / cheight
;
1268 *pcheight
= cheight
;
1271 typedef unsigned int rgb_to_pixel_dup_func(unsigned int r
, unsigned int g
, unsigned b
);
1273 static rgb_to_pixel_dup_func
* const rgb_to_pixel_dup_table
[NB_DEPTHS
] = {
1278 rgb_to_pixel32bgr_dup
,
1279 rgb_to_pixel15bgr_dup
,
1280 rgb_to_pixel16bgr_dup
,
1291 static void vga_draw_text(VGACommonState
*s
, int full_update
)
1293 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1294 int cx_min
, cx_max
, linesize
, x_incr
, line
, line1
;
1295 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1296 uint8_t *d1
, *d
, *src
, *dest
, *cursor_ptr
;
1297 const uint8_t *font_ptr
, *font_base
[2];
1298 int dup9
, line_offset
, depth_index
;
1300 uint32_t *ch_attr_ptr
;
1301 vga_draw_glyph8_func
*vga_draw_glyph8
;
1302 vga_draw_glyph9_func
*vga_draw_glyph9
;
1304 /* compute font data address (in plane 2) */
1305 v
= s
->sr
[VGA_SEQ_CHARACTER_MAP
];
1306 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1307 if (offset
!= s
->font_offsets
[0]) {
1308 s
->font_offsets
[0] = offset
;
1311 font_base
[0] = s
->vram_ptr
+ offset
;
1313 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1314 font_base
[1] = s
->vram_ptr
+ offset
;
1315 if (offset
!= s
->font_offsets
[1]) {
1316 s
->font_offsets
[1] = offset
;
1319 if (s
->plane_updated
& (1 << 2) || s
->chain4_alias
) {
1320 /* if the plane 2 was modified since the last display, it
1321 indicates the font may have been modified */
1322 s
->plane_updated
= 0;
1325 full_update
|= update_basic_params(s
);
1327 line_offset
= s
->line_offset
;
1329 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1330 if ((height
* width
) <= 1) {
1331 /* better than nothing: exit if transient size is too small */
1334 if ((height
* width
) > CH_ATTR_SIZE
) {
1335 /* better than nothing: exit if transient size is too big */
1339 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1340 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1341 s
->last_scr_width
= width
* cw
;
1342 s
->last_scr_height
= height
* cheight
;
1343 qemu_console_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
1345 s
->last_width
= width
;
1346 s
->last_height
= height
;
1347 s
->last_ch
= cheight
;
1352 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1353 full_update
|= update_palette16(s
);
1354 palette
= s
->last_palette
;
1355 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1357 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1358 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1359 if (cursor_offset
!= s
->cursor_offset
||
1360 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1361 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
) {
1362 /* if the cursor position changed, we update the old and new
1364 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1365 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1366 if (cursor_offset
< CH_ATTR_SIZE
)
1367 s
->last_ch_attr
[cursor_offset
] = -1;
1368 s
->cursor_offset
= cursor_offset
;
1369 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1370 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1372 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1374 depth_index
= get_depth_index(s
->ds
);
1376 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1378 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1379 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1381 dest
= ds_get_data(s
->ds
);
1382 linesize
= ds_get_linesize(s
->ds
);
1383 ch_attr_ptr
= s
->last_ch_attr
;
1385 offset
= s
->start_addr
* 4;
1386 for(cy
= 0; cy
< height
; cy
++) {
1388 src
= s
->vram_ptr
+ offset
;
1391 for(cx
= 0; cx
< width
; cx
++) {
1392 ch_attr
= *(uint16_t *)src
;
1393 if (full_update
|| ch_attr
!= *ch_attr_ptr
) {
1398 *ch_attr_ptr
= ch_attr
;
1399 #ifdef HOST_WORDS_BIGENDIAN
1401 cattr
= ch_attr
& 0xff;
1403 ch
= ch_attr
& 0xff;
1404 cattr
= ch_attr
>> 8;
1406 font_ptr
= font_base
[(cattr
>> 3) & 1];
1407 font_ptr
+= 32 * 4 * ch
;
1408 bgcol
= palette
[cattr
>> 4];
1409 fgcol
= palette
[cattr
& 0x0f];
1411 vga_draw_glyph8(d1
, linesize
,
1412 font_ptr
, cheight
, fgcol
, bgcol
);
1415 if (ch
>= 0xb0 && ch
<= 0xdf &&
1416 (s
->ar
[VGA_ATC_MODE
] & 0x04)) {
1419 vga_draw_glyph9(d1
, linesize
,
1420 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1422 if (src
== cursor_ptr
&&
1423 !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20)) {
1424 int line_start
, line_last
, h
;
1425 /* draw the cursor */
1426 line_start
= s
->cr
[VGA_CRTC_CURSOR_START
] & 0x1f;
1427 line_last
= s
->cr
[VGA_CRTC_CURSOR_END
] & 0x1f;
1428 /* XXX: check that */
1429 if (line_last
> cheight
- 1)
1430 line_last
= cheight
- 1;
1431 if (line_last
>= line_start
&& line_start
< cheight
) {
1432 h
= line_last
- line_start
+ 1;
1433 d
= d1
+ linesize
* line_start
;
1435 vga_draw_glyph8(d
, linesize
,
1436 cursor_glyph
, h
, fgcol
, bgcol
);
1438 vga_draw_glyph9(d
, linesize
,
1439 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1449 dpy_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1450 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1452 dest
+= linesize
* cheight
;
1453 line1
= line
+ cheight
;
1454 offset
+= line_offset
;
1455 if (line
< s
->line_compare
&& line1
>= s
->line_compare
) {
1476 static vga_draw_line_func
* const vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1486 vga_draw_line2d2_16
,
1487 vga_draw_line2d2_16
,
1488 vga_draw_line2d2_32
,
1489 vga_draw_line2d2_32
,
1490 vga_draw_line2d2_16
,
1491 vga_draw_line2d2_16
,
1502 vga_draw_line4d2_16
,
1503 vga_draw_line4d2_16
,
1504 vga_draw_line4d2_32
,
1505 vga_draw_line4d2_32
,
1506 vga_draw_line4d2_16
,
1507 vga_draw_line4d2_16
,
1510 vga_draw_line8d2_16
,
1511 vga_draw_line8d2_16
,
1512 vga_draw_line8d2_32
,
1513 vga_draw_line8d2_32
,
1514 vga_draw_line8d2_16
,
1515 vga_draw_line8d2_16
,
1529 vga_draw_line15_32bgr
,
1530 vga_draw_line15_15bgr
,
1531 vga_draw_line15_16bgr
,
1537 vga_draw_line16_32bgr
,
1538 vga_draw_line16_15bgr
,
1539 vga_draw_line16_16bgr
,
1545 vga_draw_line24_32bgr
,
1546 vga_draw_line24_15bgr
,
1547 vga_draw_line24_16bgr
,
1553 vga_draw_line32_32bgr
,
1554 vga_draw_line32_15bgr
,
1555 vga_draw_line32_16bgr
,
1558 static int vga_get_bpp(VGACommonState
*s
)
1561 #ifdef CONFIG_BOCHS_VBE
1562 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1563 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1572 static void vga_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1576 #ifdef CONFIG_BOCHS_VBE
1577 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1578 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1579 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1583 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1) * 8;
1584 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1585 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1586 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1587 height
= (height
+ 1);
1593 void vga_invalidate_scanlines(VGACommonState
*s
, int y1
, int y2
)
1596 if (y1
>= VGA_MAX_HEIGHT
)
1598 if (y2
>= VGA_MAX_HEIGHT
)
1599 y2
= VGA_MAX_HEIGHT
;
1600 for(y
= y1
; y
< y2
; y
++) {
1601 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1605 static void vga_sync_dirty_bitmap(VGACommonState
*s
)
1607 memory_region_sync_dirty_bitmap(&s
->vram
);
1610 void vga_dirty_log_start(VGACommonState
*s
)
1612 memory_region_set_log(&s
->vram
, true, DIRTY_MEMORY_VGA
);
1615 void vga_dirty_log_stop(VGACommonState
*s
)
1617 memory_region_set_log(&s
->vram
, false, DIRTY_MEMORY_VGA
);
1623 static void vga_draw_graphic(VGACommonState
*s
, int full_update
)
1625 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1626 int width
, height
, shift_control
, line_offset
, bwidth
, bits
;
1627 ram_addr_t page0
, page1
, page_min
, page_max
;
1628 int disp_width
, multi_scan
, multi_run
;
1630 uint32_t v
, addr1
, addr
;
1631 vga_draw_line_func
*vga_draw_line
;
1633 full_update
|= update_basic_params(s
);
1636 vga_sync_dirty_bitmap(s
);
1638 s
->get_resolution(s
, &width
, &height
);
1641 shift_control
= (s
->gr
[VGA_GFX_MODE
] >> 5) & 3;
1642 double_scan
= (s
->cr
[VGA_CRTC_MAX_SCAN
] >> 7);
1643 if (shift_control
!= 1) {
1644 multi_scan
= (((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1) << double_scan
)
1647 /* in CGA modes, multi_scan is ignored */
1648 /* XXX: is it correct ? */
1649 multi_scan
= double_scan
;
1651 multi_run
= multi_scan
;
1652 if (shift_control
!= s
->shift_control
||
1653 double_scan
!= s
->double_scan
) {
1655 s
->shift_control
= shift_control
;
1656 s
->double_scan
= double_scan
;
1659 if (shift_control
== 0) {
1660 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1663 } else if (shift_control
== 1) {
1664 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1669 depth
= s
->get_bpp(s
);
1670 if (s
->line_offset
!= s
->last_line_offset
||
1671 disp_width
!= s
->last_width
||
1672 height
!= s
->last_height
||
1673 s
->last_depth
!= depth
) {
1674 #if defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1675 if (depth
== 16 || depth
== 32) {
1679 qemu_free_displaysurface(s
->ds
);
1680 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
, height
, depth
,
1682 s
->vram_ptr
+ (s
->start_addr
* 4));
1683 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
1684 s
->ds
->surface
->pf
= qemu_different_endianness_pixelformat(depth
);
1688 qemu_console_resize(s
->ds
, disp_width
, height
);
1690 s
->last_scr_width
= disp_width
;
1691 s
->last_scr_height
= height
;
1692 s
->last_width
= disp_width
;
1693 s
->last_height
= height
;
1694 s
->last_line_offset
= s
->line_offset
;
1695 s
->last_depth
= depth
;
1697 } else if (is_buffer_shared(s
->ds
->surface
) &&
1698 (full_update
|| s
->ds
->surface
->data
!= s
->vram_ptr
+ (s
->start_addr
* 4))) {
1699 s
->ds
->surface
->data
= s
->vram_ptr
+ (s
->start_addr
* 4);
1704 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1706 if (shift_control
== 0) {
1707 full_update
|= update_palette16(s
);
1708 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1709 v
= VGA_DRAW_LINE4D2
;
1714 } else if (shift_control
== 1) {
1715 full_update
|= update_palette16(s
);
1716 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 8) {
1717 v
= VGA_DRAW_LINE2D2
;
1723 switch(s
->get_bpp(s
)) {
1726 full_update
|= update_palette256(s
);
1727 v
= VGA_DRAW_LINE8D2
;
1731 full_update
|= update_palette256(s
);
1736 v
= VGA_DRAW_LINE15
;
1740 v
= VGA_DRAW_LINE16
;
1744 v
= VGA_DRAW_LINE24
;
1748 v
= VGA_DRAW_LINE32
;
1753 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1755 if (!is_buffer_shared(s
->ds
->surface
) && s
->cursor_invalidate
)
1756 s
->cursor_invalidate(s
);
1758 line_offset
= s
->line_offset
;
1760 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",
1761 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[VGA_CRTC_MODE
],
1762 s
->line_compare
, s
->sr
[VGA_SEQ_CLOCK_MODE
]);
1764 addr1
= (s
->start_addr
* 4);
1765 bwidth
= (width
* bits
+ 7) / 8;
1769 d
= ds_get_data(s
->ds
);
1770 linesize
= ds_get_linesize(s
->ds
);
1772 for(y
= 0; y
< height
; y
++) {
1774 if (!(s
->cr
[VGA_CRTC_MODE
] & 1)) {
1776 /* CGA compatibility handling */
1777 shift
= 14 + ((s
->cr
[VGA_CRTC_MODE
] >> 6) & 1);
1778 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1780 if (!(s
->cr
[VGA_CRTC_MODE
] & 2)) {
1781 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1783 update
= full_update
;
1785 page1
= addr
+ bwidth
- 1;
1786 update
|= memory_region_get_dirty(&s
->vram
, page0
, page1
- page0
,
1788 /* explicit invalidation for the hardware cursor */
1789 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1793 if (page0
< page_min
)
1795 if (page1
> page_max
)
1797 if (!(is_buffer_shared(s
->ds
->surface
))) {
1798 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1799 if (s
->cursor_draw_line
)
1800 s
->cursor_draw_line(s
, d
, y
);
1804 /* flush to display */
1805 dpy_update(s
->ds
, 0, y_start
,
1806 disp_width
, y
- y_start
);
1811 mask
= (s
->cr
[VGA_CRTC_MODE
] & 3) ^ 3;
1812 if ((y1
& mask
) == mask
)
1813 addr1
+= line_offset
;
1815 multi_run
= multi_scan
;
1819 /* line compare acts on the displayed lines */
1820 if (y
== s
->line_compare
)
1825 /* flush to display */
1826 dpy_update(s
->ds
, 0, y_start
,
1827 disp_width
, y
- y_start
);
1829 /* reset modified pages */
1830 if (page_max
>= page_min
) {
1831 memory_region_reset_dirty(&s
->vram
,
1833 page_max
- page_min
,
1836 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1839 static void vga_draw_blank(VGACommonState
*s
, int full_update
)
1846 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1850 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1851 if (ds_get_bits_per_pixel(s
->ds
) == 8)
1852 val
= s
->rgb_to_pixel(0, 0, 0);
1855 w
= s
->last_scr_width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1856 d
= ds_get_data(s
->ds
);
1857 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1859 d
+= ds_get_linesize(s
->ds
);
1861 dpy_update(s
->ds
, 0, 0,
1862 s
->last_scr_width
, s
->last_scr_height
);
1865 #define GMODE_TEXT 0
1866 #define GMODE_GRAPH 1
1867 #define GMODE_BLANK 2
1869 static void vga_update_display(void *opaque
)
1871 VGACommonState
*s
= opaque
;
1872 int full_update
, graphic_mode
;
1874 qemu_flush_coalesced_mmio_buffer();
1876 if (ds_get_bits_per_pixel(s
->ds
) == 0) {
1880 if (!(s
->ar_index
& 0x20)) {
1881 graphic_mode
= GMODE_BLANK
;
1883 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1885 if (graphic_mode
!= s
->graphic_mode
) {
1886 s
->graphic_mode
= graphic_mode
;
1889 switch(graphic_mode
) {
1891 vga_draw_text(s
, full_update
);
1894 vga_draw_graphic(s
, full_update
);
1898 vga_draw_blank(s
, full_update
);
1904 /* force a full display refresh */
1905 static void vga_invalidate_display(void *opaque
)
1907 VGACommonState
*s
= opaque
;
1910 s
->last_height
= -1;
1913 void vga_common_reset(VGACommonState
*s
)
1916 memset(s
->sr
, '\0', sizeof(s
->sr
));
1918 memset(s
->gr
, '\0', sizeof(s
->gr
));
1920 memset(s
->ar
, '\0', sizeof(s
->ar
));
1921 s
->ar_flip_flop
= 0;
1923 memset(s
->cr
, '\0', sizeof(s
->cr
));
1929 s
->dac_sub_index
= 0;
1930 s
->dac_read_index
= 0;
1931 s
->dac_write_index
= 0;
1932 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1934 memset(s
->palette
, '\0', sizeof(s
->palette
));
1936 #ifdef CONFIG_BOCHS_VBE
1938 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1939 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID5
;
1940 s
->vbe_start_addr
= 0;
1941 s
->vbe_line_offset
= 0;
1942 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1944 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1945 s
->graphic_mode
= -1; /* force full update */
1946 s
->shift_control
= 0;
1949 s
->line_compare
= 0;
1951 s
->plane_updated
= 0;
1956 s
->last_scr_width
= 0;
1957 s
->last_scr_height
= 0;
1958 s
->cursor_start
= 0;
1960 s
->cursor_offset
= 0;
1961 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1962 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1963 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1964 switch (vga_retrace_method
) {
1965 case VGA_RETRACE_DUMB
:
1967 case VGA_RETRACE_PRECISE
:
1968 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1971 vga_update_memory_access(s
);
1974 static void vga_reset(void *opaque
)
1976 VGACommonState
*s
= opaque
;
1977 vga_common_reset(s
);
1980 #define TEXTMODE_X(x) ((x) % width)
1981 #define TEXTMODE_Y(x) ((x) / width)
1982 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1983 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1984 /* relay text rendering to the display driver
1985 * instead of doing a full vga_update_display() */
1986 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1988 VGACommonState
*s
= opaque
;
1989 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1990 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1992 console_ch_t
*dst
, val
;
1993 char msg_buffer
[80];
1994 int full_update
= 0;
1996 qemu_flush_coalesced_mmio_buffer();
1998 if (!(s
->ar_index
& 0x20)) {
1999 graphic_mode
= GMODE_BLANK
;
2001 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
2003 if (graphic_mode
!= s
->graphic_mode
) {
2004 s
->graphic_mode
= graphic_mode
;
2007 if (s
->last_width
== -1) {
2012 switch (graphic_mode
) {
2014 /* TODO: update palette */
2015 full_update
|= update_basic_params(s
);
2017 /* total width & height */
2018 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
2020 if (!(s
->sr
[VGA_SEQ_CLOCK_MODE
] & VGA_SR01_CHAR_CLK_8DOTS
)) {
2023 if (s
->sr
[VGA_SEQ_CLOCK_MODE
] & 0x08) {
2024 cw
= 16; /* NOTE: no 18 pixel wide */
2026 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
2027 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
2028 /* ugly hack for CGA 160x100x16 - explain me the logic */
2031 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
2032 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
2033 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
2034 height
= (height
+ 1) / cheight
;
2037 size
= (height
* width
);
2038 if (size
> CH_ATTR_SIZE
) {
2042 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2047 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2048 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2049 s
->last_scr_width
= width
* cw
;
2050 s
->last_scr_height
= height
* cheight
;
2051 s
->ds
->surface
->width
= width
;
2052 s
->ds
->surface
->height
= height
;
2054 s
->last_width
= width
;
2055 s
->last_height
= height
;
2056 s
->last_ch
= cheight
;
2061 /* Update "hardware" cursor */
2062 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
2063 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
2064 if (cursor_offset
!= s
->cursor_offset
||
2065 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
2066 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
|| full_update
) {
2067 cursor_visible
= !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20);
2068 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2070 TEXTMODE_X(cursor_offset
),
2071 TEXTMODE_Y(cursor_offset
));
2073 dpy_cursor(s
->ds
, -1, -1);
2074 s
->cursor_offset
= cursor_offset
;
2075 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
2076 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
2079 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2083 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2084 console_write_ch(dst
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2086 dpy_update(s
->ds
, 0, 0, width
, height
);
2090 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2091 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2099 for (; i
< size
; src
++, dst
++, i
++) {
2100 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2107 if (c_min
<= c_max
) {
2108 i
= TEXTMODE_Y(c_min
);
2109 dpy_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2118 s
->get_resolution(s
, &width
, &height
);
2119 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2127 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2131 /* Display a message */
2133 s
->last_height
= height
= 3;
2134 dpy_cursor(s
->ds
, -1, -1);
2135 s
->ds
->surface
->width
= s
->last_width
;
2136 s
->ds
->surface
->height
= height
;
2139 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2140 console_write_ch(dst
++, ' ');
2142 size
= strlen(msg_buffer
);
2143 width
= (s
->last_width
- size
) / 2;
2144 dst
= chardata
+ s
->last_width
+ width
;
2145 for (i
= 0; i
< size
; i
++)
2146 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2148 dpy_update(s
->ds
, 0, 0, s
->last_width
, height
);
2151 static uint64_t vga_mem_read(void *opaque
, target_phys_addr_t addr
,
2154 VGACommonState
*s
= opaque
;
2156 return vga_mem_readb(s
, addr
);
2159 static void vga_mem_write(void *opaque
, target_phys_addr_t addr
,
2160 uint64_t data
, unsigned size
)
2162 VGACommonState
*s
= opaque
;
2164 return vga_mem_writeb(s
, addr
, data
);
2167 const MemoryRegionOps vga_mem_ops
= {
2168 .read
= vga_mem_read
,
2169 .write
= vga_mem_write
,
2170 .endianness
= DEVICE_LITTLE_ENDIAN
,
2172 .min_access_size
= 1,
2173 .max_access_size
= 1,
2177 static int vga_common_post_load(void *opaque
, int version_id
)
2179 VGACommonState
*s
= opaque
;
2182 s
->graphic_mode
= -1;
2186 const VMStateDescription vmstate_vga_common
= {
2189 .minimum_version_id
= 2,
2190 .minimum_version_id_old
= 2,
2191 .post_load
= vga_common_post_load
,
2192 .fields
= (VMStateField
[]) {
2193 VMSTATE_UINT32(latch
, VGACommonState
),
2194 VMSTATE_UINT8(sr_index
, VGACommonState
),
2195 VMSTATE_PARTIAL_BUFFER(sr
, VGACommonState
, 8),
2196 VMSTATE_UINT8(gr_index
, VGACommonState
),
2197 VMSTATE_PARTIAL_BUFFER(gr
, VGACommonState
, 16),
2198 VMSTATE_UINT8(ar_index
, VGACommonState
),
2199 VMSTATE_BUFFER(ar
, VGACommonState
),
2200 VMSTATE_INT32(ar_flip_flop
, VGACommonState
),
2201 VMSTATE_UINT8(cr_index
, VGACommonState
),
2202 VMSTATE_BUFFER(cr
, VGACommonState
),
2203 VMSTATE_UINT8(msr
, VGACommonState
),
2204 VMSTATE_UINT8(fcr
, VGACommonState
),
2205 VMSTATE_UINT8(st00
, VGACommonState
),
2206 VMSTATE_UINT8(st01
, VGACommonState
),
2208 VMSTATE_UINT8(dac_state
, VGACommonState
),
2209 VMSTATE_UINT8(dac_sub_index
, VGACommonState
),
2210 VMSTATE_UINT8(dac_read_index
, VGACommonState
),
2211 VMSTATE_UINT8(dac_write_index
, VGACommonState
),
2212 VMSTATE_BUFFER(dac_cache
, VGACommonState
),
2213 VMSTATE_BUFFER(palette
, VGACommonState
),
2215 VMSTATE_INT32(bank_offset
, VGACommonState
),
2216 VMSTATE_UINT8_EQUAL(is_vbe_vmstate
, VGACommonState
),
2217 #ifdef CONFIG_BOCHS_VBE
2218 VMSTATE_UINT16(vbe_index
, VGACommonState
),
2219 VMSTATE_UINT16_ARRAY(vbe_regs
, VGACommonState
, VBE_DISPI_INDEX_NB
),
2220 VMSTATE_UINT32(vbe_start_addr
, VGACommonState
),
2221 VMSTATE_UINT32(vbe_line_offset
, VGACommonState
),
2222 VMSTATE_UINT32(vbe_bank_mask
, VGACommonState
),
2224 VMSTATE_END_OF_LIST()
2228 void vga_common_init(VGACommonState
*s
)
2232 for(i
= 0;i
< 256; i
++) {
2234 for(j
= 0; j
< 8; j
++) {
2235 v
|= ((i
>> j
) & 1) << (j
* 4);
2240 for(j
= 0; j
< 4; j
++) {
2241 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2245 for(i
= 0; i
< 16; i
++) {
2247 for(j
= 0; j
< 4; j
++) {
2250 v
|= b
<< (2 * j
+ 1);
2255 /* valid range: 1 MB -> 256 MB */
2256 s
->vram_size
= 1024 * 1024;
2257 while (s
->vram_size
< (s
->vram_size_mb
<< 20) &&
2258 s
->vram_size
< (256 << 20)) {
2261 s
->vram_size_mb
= s
->vram_size
>> 20;
2263 #ifdef CONFIG_BOCHS_VBE
2264 s
->is_vbe_vmstate
= 1;
2266 s
->is_vbe_vmstate
= 0;
2268 memory_region_init_ram(&s
->vram
, "vga.vram", s
->vram_size
);
2269 vmstate_register_ram_global(&s
->vram
);
2270 xen_register_framebuffer(&s
->vram
);
2271 s
->vram_ptr
= memory_region_get_ram_ptr(&s
->vram
);
2272 s
->get_bpp
= vga_get_bpp
;
2273 s
->get_offsets
= vga_get_offsets
;
2274 s
->get_resolution
= vga_get_resolution
;
2275 s
->update
= vga_update_display
;
2276 s
->invalidate
= vga_invalidate_display
;
2277 s
->screen_dump
= vga_screen_dump
;
2278 s
->text_update
= vga_update_text
;
2279 switch (vga_retrace_method
) {
2280 case VGA_RETRACE_DUMB
:
2281 s
->retrace
= vga_dumb_retrace
;
2282 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2285 case VGA_RETRACE_PRECISE
:
2286 s
->retrace
= vga_precise_retrace
;
2287 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2290 vga_dirty_log_start(s
);
2293 static const MemoryRegionPortio vga_portio_list
[] = {
2294 { 0x04, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3b4 */
2295 { 0x0a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3ba */
2296 { 0x10, 16, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3c0 */
2297 { 0x24, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3d4 */
2298 { 0x2a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3da */
2299 PORTIO_END_OF_LIST(),
2302 #ifdef CONFIG_BOCHS_VBE
2303 static const MemoryRegionPortio vbe_portio_list
[] = {
2304 { 0, 1, 2, .read
= vbe_ioport_read_index
, .write
= vbe_ioport_write_index
},
2306 { 1, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2308 { 2, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2310 PORTIO_END_OF_LIST(),
2312 #endif /* CONFIG_BOCHS_VBE */
2314 /* Used by both ISA and PCI */
2315 MemoryRegion
*vga_init_io(VGACommonState
*s
,
2316 const MemoryRegionPortio
**vga_ports
,
2317 const MemoryRegionPortio
**vbe_ports
)
2319 MemoryRegion
*vga_mem
;
2321 *vga_ports
= vga_portio_list
;
2323 #ifdef CONFIG_BOCHS_VBE
2324 *vbe_ports
= vbe_portio_list
;
2327 vga_mem
= g_malloc(sizeof(*vga_mem
));
2328 memory_region_init_io(vga_mem
, &vga_mem_ops
, s
,
2329 "vga-lowmem", 0x20000);
2334 void vga_init(VGACommonState
*s
, MemoryRegion
*address_space
,
2335 MemoryRegion
*address_space_io
, bool init_vga_ports
)
2337 MemoryRegion
*vga_io_memory
;
2338 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
2339 PortioList
*vga_port_list
= g_new(PortioList
, 1);
2340 PortioList
*vbe_port_list
= g_new(PortioList
, 1);
2342 qemu_register_reset(vga_reset
, s
);
2346 s
->legacy_address_space
= address_space
;
2348 vga_io_memory
= vga_init_io(s
, &vga_ports
, &vbe_ports
);
2349 memory_region_add_subregion_overlap(address_space
,
2350 isa_mem_base
+ 0x000a0000,
2353 memory_region_set_coalescing(vga_io_memory
);
2354 if (init_vga_ports
) {
2355 portio_list_init(vga_port_list
, vga_ports
, s
, "vga");
2356 portio_list_add(vga_port_list
, address_space_io
, 0x3b0);
2359 portio_list_init(vbe_port_list
, vbe_ports
, s
, "vbe");
2360 portio_list_add(vbe_port_list
, address_space_io
, 0x1ce);
2364 void vga_init_vbe(VGACommonState
*s
, MemoryRegion
*system_memory
)
2366 #ifdef CONFIG_BOCHS_VBE
2367 /* With pc-0.12 and below we map both the PCI BAR and the fixed VBE region,
2368 * so use an alias to avoid double-mapping the same region.
2370 memory_region_init_alias(&s
->vram_vbe
, "vram.vbe",
2371 &s
->vram
, 0, memory_region_size(&s
->vram
));
2372 /* XXX: use optimized standard vga accesses */
2373 memory_region_add_subregion(system_memory
,
2374 VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2379 /********************************************************/
2380 /* vga screen dump */
2382 int ppm_save(const char *filename
, struct DisplaySurface
*ds
)
2390 char *linebuf
, *pbuf
;
2392 trace_ppm_save(filename
, ds
);
2393 f
= fopen(filename
, "wb");
2396 fprintf(f
, "P6\n%d %d\n%d\n",
2397 ds
->width
, ds
->height
, 255);
2398 linebuf
= g_malloc(ds
->width
* 3);
2400 for(y
= 0; y
< ds
->height
; y
++) {
2403 for(x
= 0; x
< ds
->width
; x
++) {
2404 if (ds
->pf
.bits_per_pixel
== 32)
2407 v
= (uint32_t) (*(uint16_t *)d
);
2408 /* Limited to 8 or fewer bits per channel: */
2409 r
= ((v
>> ds
->pf
.rshift
) & ds
->pf
.rmax
) << (8 - ds
->pf
.rbits
);
2410 g
= ((v
>> ds
->pf
.gshift
) & ds
->pf
.gmax
) << (8 - ds
->pf
.gbits
);
2411 b
= ((v
>> ds
->pf
.bshift
) & ds
->pf
.bmax
) << (8 - ds
->pf
.bbits
);
2415 d
+= ds
->pf
.bytes_per_pixel
;
2418 ret
= fwrite(linebuf
, 1, pbuf
- linebuf
, f
);
2426 /* save the vga display in a PPM image even if no display is
2428 static void vga_screen_dump(void *opaque
, const char *filename
, bool cswitch
)
2430 VGACommonState
*s
= opaque
;
2433 vga_invalidate_display(s
);
2436 ppm_save(filename
, s
->ds
->surface
);