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
25 #include "qemu/osdep.h"
26 #include "qemu/units.h"
27 #include "sysemu/reset.h"
28 #include "qapi/error.h"
29 #include "hw/display/vga.h"
30 #include "hw/pci/pci.h"
33 #include "ui/pixel_ops.h"
34 #include "qemu/timer.h"
35 #include "hw/xen/xen.h"
36 #include "migration/vmstate.h"
39 //#define DEBUG_VGA_MEM
40 //#define DEBUG_VGA_REG
42 /* 16 state changes per vertical frame @60 Hz */
43 #define VGA_TEXT_CURSOR_PERIOD_MS (1000 * 2 * 16 / 60)
46 * Video Graphics Array (VGA)
48 * Chipset docs for original IBM VGA:
49 * http://www.mcamafia.de/pdf/ibm_vgaxga_trm2.pdf
52 * http://www.osdever.net/FreeVGA/home.htm
54 * Standard VGA features and Bochs VBE extensions are implemented.
57 /* force some bits to zero */
58 const uint8_t sr_mask
[8] = {
69 const uint8_t gr_mask
[16] = {
88 #define cbswap_32(__x) \
90 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
91 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
92 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
93 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) ))
95 #ifdef HOST_WORDS_BIGENDIAN
96 #define PAT(x) cbswap_32(x)
101 #ifdef HOST_WORDS_BIGENDIAN
107 #ifdef HOST_WORDS_BIGENDIAN
108 #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff)
110 #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff)
113 static const uint32_t mask16
[16] = {
134 #ifdef HOST_WORDS_BIGENDIAN
137 #define PAT(x) cbswap_32(x)
140 static uint32_t expand4
[256];
141 static uint16_t expand2
[256];
142 static uint8_t expand4to8
[16];
144 static void vbe_update_vgaregs(VGACommonState
*s
);
146 static inline bool vbe_enabled(VGACommonState
*s
)
148 return s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
;
151 static inline uint8_t sr(VGACommonState
*s
, int idx
)
153 return vbe_enabled(s
) ? s
->sr_vbe
[idx
] : s
->sr
[idx
];
156 static void vga_update_memory_access(VGACommonState
*s
)
158 hwaddr base
, offset
, size
;
160 if (s
->legacy_address_space
== NULL
) {
164 if (s
->has_chain4_alias
) {
165 memory_region_del_subregion(s
->legacy_address_space
, &s
->chain4_alias
);
166 object_unparent(OBJECT(&s
->chain4_alias
));
167 s
->has_chain4_alias
= false;
168 s
->plane_updated
= 0xf;
170 if ((sr(s
, VGA_SEQ_PLANE_WRITE
) & VGA_SR02_ALL_PLANES
) ==
171 VGA_SR02_ALL_PLANES
&& sr(s
, VGA_SEQ_MEMORY_MODE
) & VGA_SR04_CHN_4M
) {
173 switch ((s
->gr
[VGA_GFX_MISC
] >> 2) & 3) {
181 offset
= s
->bank_offset
;
193 assert(offset
+ size
<= s
->vram_size
);
194 memory_region_init_alias(&s
->chain4_alias
, memory_region_owner(&s
->vram
),
195 "vga.chain4", &s
->vram
, offset
, size
);
196 memory_region_add_subregion_overlap(s
->legacy_address_space
, base
,
197 &s
->chain4_alias
, 2);
198 s
->has_chain4_alias
= true;
202 static void vga_dumb_update_retrace_info(VGACommonState
*s
)
207 static void vga_precise_update_retrace_info(VGACommonState
*s
)
210 int hretr_start_char
;
211 int hretr_skew_chars
;
215 int vretr_start_line
;
224 const int clk_hz
[] = {25175000, 28322000, 25175000, 25175000};
225 int64_t chars_per_sec
;
226 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
228 htotal_chars
= s
->cr
[VGA_CRTC_H_TOTAL
] + 5;
229 hretr_start_char
= s
->cr
[VGA_CRTC_H_SYNC_START
];
230 hretr_skew_chars
= (s
->cr
[VGA_CRTC_H_SYNC_END
] >> 5) & 3;
231 hretr_end_char
= s
->cr
[VGA_CRTC_H_SYNC_END
] & 0x1f;
233 vtotal_lines
= (s
->cr
[VGA_CRTC_V_TOTAL
] |
234 (((s
->cr
[VGA_CRTC_OVERFLOW
] & 1) |
235 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 4) & 2)) << 8)) + 2;
236 vretr_start_line
= s
->cr
[VGA_CRTC_V_SYNC_START
] |
237 ((((s
->cr
[VGA_CRTC_OVERFLOW
] >> 2) & 1) |
238 ((s
->cr
[VGA_CRTC_OVERFLOW
] >> 6) & 2)) << 8);
239 vretr_end_line
= s
->cr
[VGA_CRTC_V_SYNC_END
] & 0xf;
241 clocking_mode
= (sr(s
, VGA_SEQ_CLOCK_MODE
) >> 3) & 1;
242 clock_sel
= (s
->msr
>> 2) & 3;
243 dots
= (s
->msr
& 1) ? 8 : 9;
245 chars_per_sec
= clk_hz
[clock_sel
] / dots
;
247 htotal_chars
<<= clocking_mode
;
249 r
->total_chars
= vtotal_lines
* htotal_chars
;
251 r
->ticks_per_char
= NANOSECONDS_PER_SECOND
/ (r
->total_chars
* r
->freq
);
253 r
->ticks_per_char
= NANOSECONDS_PER_SECOND
/ chars_per_sec
;
256 r
->vstart
= vretr_start_line
;
257 r
->vend
= r
->vstart
+ vretr_end_line
+ 1;
259 r
->hstart
= hretr_start_char
+ hretr_skew_chars
;
260 r
->hend
= r
->hstart
+ hretr_end_char
+ 1;
261 r
->htotal
= htotal_chars
;
264 div2
= (s
->cr
[VGA_CRTC_MODE
] >> 2) & 1;
265 sldiv2
= (s
->cr
[VGA_CRTC_MODE
] >> 3) & 1;
275 "div2 = %d sldiv2 = %d\n"
276 "clocking_mode = %d\n"
277 "clock_sel = %d %d\n"
279 "ticks/char = %" PRId64
"\n"
281 (double) NANOSECONDS_PER_SECOND
/ (r
->ticks_per_char
* r
->total_chars
),
299 static uint8_t vga_precise_retrace(VGACommonState
*s
)
301 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
302 uint8_t val
= s
->st01
& ~(ST01_V_RETRACE
| ST01_DISP_ENABLE
);
304 if (r
->total_chars
) {
305 int cur_line
, cur_line_char
, cur_char
;
308 cur_tick
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
310 cur_char
= (cur_tick
/ r
->ticks_per_char
) % r
->total_chars
;
311 cur_line
= cur_char
/ r
->htotal
;
313 if (cur_line
>= r
->vstart
&& cur_line
<= r
->vend
) {
314 val
|= ST01_V_RETRACE
| ST01_DISP_ENABLE
;
316 cur_line_char
= cur_char
% r
->htotal
;
317 if (cur_line_char
>= r
->hstart
&& cur_line_char
<= r
->hend
) {
318 val
|= ST01_DISP_ENABLE
;
324 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
328 static uint8_t vga_dumb_retrace(VGACommonState
*s
)
330 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
333 int vga_ioport_invalid(VGACommonState
*s
, uint32_t addr
)
335 if (s
->msr
& VGA_MIS_COLOR
) {
337 return (addr
>= 0x3b0 && addr
<= 0x3bf);
340 return (addr
>= 0x3d0 && addr
<= 0x3df);
344 uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
346 VGACommonState
*s
= opaque
;
349 if (vga_ioport_invalid(s
, addr
)) {
354 if (s
->ar_flip_flop
== 0) {
361 index
= s
->ar_index
& 0x1f;
362 if (index
< VGA_ATT_C
) {
375 val
= s
->sr
[s
->sr_index
];
377 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
384 val
= s
->dac_write_index
;
387 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
388 if (++s
->dac_sub_index
== 3) {
389 s
->dac_sub_index
= 0;
403 val
= s
->gr
[s
->gr_index
];
405 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
414 val
= s
->cr
[s
->cr_index
];
416 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
421 /* just toggle to fool polling */
422 val
= s
->st01
= s
->retrace(s
);
430 trace_vga_std_read_io(addr
, val
);
434 void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
436 VGACommonState
*s
= opaque
;
439 /* check port range access depending on color/monochrome mode */
440 if (vga_ioport_invalid(s
, addr
)) {
443 trace_vga_std_write_io(addr
, val
);
447 if (s
->ar_flip_flop
== 0) {
451 index
= s
->ar_index
& 0x1f;
453 case VGA_ATC_PALETTE0
... VGA_ATC_PALETTEF
:
454 s
->ar
[index
] = val
& 0x3f;
457 s
->ar
[index
] = val
& ~0x10;
459 case VGA_ATC_OVERSCAN
:
462 case VGA_ATC_PLANE_ENABLE
:
463 s
->ar
[index
] = val
& ~0xc0;
466 s
->ar
[index
] = val
& ~0xf0;
468 case VGA_ATC_COLOR_PAGE
:
469 s
->ar
[index
] = val
& ~0xf0;
475 s
->ar_flip_flop
^= 1;
478 s
->msr
= val
& ~0x10;
479 s
->update_retrace_info(s
);
482 s
->sr_index
= val
& 7;
486 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
488 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
489 if (s
->sr_index
== VGA_SEQ_CLOCK_MODE
) {
490 s
->update_retrace_info(s
);
492 vga_update_memory_access(s
);
495 s
->dac_read_index
= val
;
496 s
->dac_sub_index
= 0;
500 s
->dac_write_index
= val
;
501 s
->dac_sub_index
= 0;
505 s
->dac_cache
[s
->dac_sub_index
] = val
;
506 if (++s
->dac_sub_index
== 3) {
507 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
508 s
->dac_sub_index
= 0;
509 s
->dac_write_index
++;
513 s
->gr_index
= val
& 0x0f;
517 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
519 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
520 vbe_update_vgaregs(s
);
521 vga_update_memory_access(s
);
530 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
532 /* handle CR0-7 protection */
533 if ((s
->cr
[VGA_CRTC_V_SYNC_END
] & VGA_CR11_LOCK_CR0_CR7
) &&
534 s
->cr_index
<= VGA_CRTC_OVERFLOW
) {
535 /* can always write bit 4 of CR7 */
536 if (s
->cr_index
== VGA_CRTC_OVERFLOW
) {
537 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x10) |
539 vbe_update_vgaregs(s
);
543 s
->cr
[s
->cr_index
] = val
;
544 vbe_update_vgaregs(s
);
546 switch(s
->cr_index
) {
547 case VGA_CRTC_H_TOTAL
:
548 case VGA_CRTC_H_SYNC_START
:
549 case VGA_CRTC_H_SYNC_END
:
550 case VGA_CRTC_V_TOTAL
:
551 case VGA_CRTC_OVERFLOW
:
552 case VGA_CRTC_V_SYNC_END
:
554 s
->update_retrace_info(s
);
566 * Sanity check vbe register writes.
568 * As we don't have a way to signal errors to the guest in the bochs
569 * dispi interface we'll go adjust the registers to the closest valid
572 static void vbe_fixup_regs(VGACommonState
*s
)
574 uint16_t *r
= s
->vbe_regs
;
575 uint32_t bits
, linelength
, maxy
, offset
;
577 if (!vbe_enabled(s
)) {
578 /* vbe is turned off -- nothing to do */
583 switch (r
[VBE_DISPI_INDEX_BPP
]) {
589 bits
= r
[VBE_DISPI_INDEX_BPP
];
595 bits
= r
[VBE_DISPI_INDEX_BPP
] = 8;
600 r
[VBE_DISPI_INDEX_XRES
] &= ~7u;
601 if (r
[VBE_DISPI_INDEX_XRES
] == 0) {
602 r
[VBE_DISPI_INDEX_XRES
] = 8;
604 if (r
[VBE_DISPI_INDEX_XRES
] > VBE_DISPI_MAX_XRES
) {
605 r
[VBE_DISPI_INDEX_XRES
] = VBE_DISPI_MAX_XRES
;
607 r
[VBE_DISPI_INDEX_VIRT_WIDTH
] &= ~7u;
608 if (r
[VBE_DISPI_INDEX_VIRT_WIDTH
] > VBE_DISPI_MAX_XRES
) {
609 r
[VBE_DISPI_INDEX_VIRT_WIDTH
] = VBE_DISPI_MAX_XRES
;
611 if (r
[VBE_DISPI_INDEX_VIRT_WIDTH
] < r
[VBE_DISPI_INDEX_XRES
]) {
612 r
[VBE_DISPI_INDEX_VIRT_WIDTH
] = r
[VBE_DISPI_INDEX_XRES
];
616 linelength
= r
[VBE_DISPI_INDEX_VIRT_WIDTH
] * bits
/ 8;
617 maxy
= s
->vbe_size
/ linelength
;
618 if (r
[VBE_DISPI_INDEX_YRES
] == 0) {
619 r
[VBE_DISPI_INDEX_YRES
] = 1;
621 if (r
[VBE_DISPI_INDEX_YRES
] > VBE_DISPI_MAX_YRES
) {
622 r
[VBE_DISPI_INDEX_YRES
] = VBE_DISPI_MAX_YRES
;
624 if (r
[VBE_DISPI_INDEX_YRES
] > maxy
) {
625 r
[VBE_DISPI_INDEX_YRES
] = maxy
;
629 if (r
[VBE_DISPI_INDEX_X_OFFSET
] > VBE_DISPI_MAX_XRES
) {
630 r
[VBE_DISPI_INDEX_X_OFFSET
] = VBE_DISPI_MAX_XRES
;
632 if (r
[VBE_DISPI_INDEX_Y_OFFSET
] > VBE_DISPI_MAX_YRES
) {
633 r
[VBE_DISPI_INDEX_Y_OFFSET
] = VBE_DISPI_MAX_YRES
;
635 offset
= r
[VBE_DISPI_INDEX_X_OFFSET
] * bits
/ 8;
636 offset
+= r
[VBE_DISPI_INDEX_Y_OFFSET
] * linelength
;
637 if (offset
+ r
[VBE_DISPI_INDEX_YRES
] * linelength
> s
->vbe_size
) {
638 r
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
639 offset
= r
[VBE_DISPI_INDEX_X_OFFSET
] * bits
/ 8;
640 if (offset
+ r
[VBE_DISPI_INDEX_YRES
] * linelength
> s
->vbe_size
) {
641 r
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
646 /* update vga state */
647 r
[VBE_DISPI_INDEX_VIRT_HEIGHT
] = maxy
;
648 s
->vbe_line_offset
= linelength
;
649 s
->vbe_start_addr
= offset
/ 4;
652 /* we initialize the VGA graphic mode */
653 static void vbe_update_vgaregs(VGACommonState
*s
)
655 int h
, shift_control
;
657 if (!vbe_enabled(s
)) {
658 /* vbe is turned off -- nothing to do */
662 /* graphic mode + memory map 1 */
663 s
->gr
[VGA_GFX_MISC
] = (s
->gr
[VGA_GFX_MISC
] & ~0x0c) | 0x04 |
664 VGA_GR06_GRAPHICS_MODE
;
665 s
->cr
[VGA_CRTC_MODE
] |= 3; /* no CGA modes */
666 s
->cr
[VGA_CRTC_OFFSET
] = s
->vbe_line_offset
>> 3;
668 s
->cr
[VGA_CRTC_H_DISP
] =
669 (s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 3) - 1;
670 /* height (only meaningful if < 1024) */
671 h
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] - 1;
672 s
->cr
[VGA_CRTC_V_DISP_END
] = h
;
673 s
->cr
[VGA_CRTC_OVERFLOW
] = (s
->cr
[VGA_CRTC_OVERFLOW
] & ~0x42) |
674 ((h
>> 7) & 0x02) | ((h
>> 3) & 0x40);
675 /* line compare to 1023 */
676 s
->cr
[VGA_CRTC_LINE_COMPARE
] = 0xff;
677 s
->cr
[VGA_CRTC_OVERFLOW
] |= 0x10;
678 s
->cr
[VGA_CRTC_MAX_SCAN
] |= 0x40;
680 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
682 s
->sr_vbe
[VGA_SEQ_CLOCK_MODE
] &= ~8; /* no double line */
685 /* set chain 4 mode */
686 s
->sr_vbe
[VGA_SEQ_MEMORY_MODE
] |= VGA_SR04_CHN_4M
;
687 /* activate all planes */
688 s
->sr_vbe
[VGA_SEQ_PLANE_WRITE
] |= VGA_SR02_ALL_PLANES
;
690 s
->gr
[VGA_GFX_MODE
] = (s
->gr
[VGA_GFX_MODE
] & ~0x60) |
691 (shift_control
<< 5);
692 s
->cr
[VGA_CRTC_MAX_SCAN
] &= ~0x9f; /* no double scan */
695 static uint32_t vbe_ioport_read_index(void *opaque
, uint32_t addr
)
697 VGACommonState
*s
= opaque
;
701 uint32_t vbe_ioport_read_data(void *opaque
, uint32_t addr
)
703 VGACommonState
*s
= opaque
;
706 if (s
->vbe_index
< VBE_DISPI_INDEX_NB
) {
707 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_GETCAPS
) {
708 switch(s
->vbe_index
) {
709 /* XXX: do not hardcode ? */
710 case VBE_DISPI_INDEX_XRES
:
711 val
= VBE_DISPI_MAX_XRES
;
713 case VBE_DISPI_INDEX_YRES
:
714 val
= VBE_DISPI_MAX_YRES
;
716 case VBE_DISPI_INDEX_BPP
:
717 val
= VBE_DISPI_MAX_BPP
;
720 val
= s
->vbe_regs
[s
->vbe_index
];
724 val
= s
->vbe_regs
[s
->vbe_index
];
726 } else if (s
->vbe_index
== VBE_DISPI_INDEX_VIDEO_MEMORY_64K
) {
727 val
= s
->vbe_size
/ (64 * KiB
);
731 trace_vga_vbe_read(s
->vbe_index
, val
);
735 void vbe_ioport_write_index(void *opaque
, uint32_t addr
, uint32_t val
)
737 VGACommonState
*s
= opaque
;
741 void vbe_ioport_write_data(void *opaque
, uint32_t addr
, uint32_t val
)
743 VGACommonState
*s
= opaque
;
745 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
746 trace_vga_vbe_write(s
->vbe_index
, val
);
747 switch(s
->vbe_index
) {
748 case VBE_DISPI_INDEX_ID
:
749 if (val
== VBE_DISPI_ID0
||
750 val
== VBE_DISPI_ID1
||
751 val
== VBE_DISPI_ID2
||
752 val
== VBE_DISPI_ID3
||
753 val
== VBE_DISPI_ID4
) {
754 s
->vbe_regs
[s
->vbe_index
] = val
;
757 case VBE_DISPI_INDEX_XRES
:
758 case VBE_DISPI_INDEX_YRES
:
759 case VBE_DISPI_INDEX_BPP
:
760 case VBE_DISPI_INDEX_VIRT_WIDTH
:
761 case VBE_DISPI_INDEX_X_OFFSET
:
762 case VBE_DISPI_INDEX_Y_OFFSET
:
763 s
->vbe_regs
[s
->vbe_index
] = val
;
765 vbe_update_vgaregs(s
);
767 case VBE_DISPI_INDEX_BANK
:
768 val
&= s
->vbe_bank_mask
;
769 s
->vbe_regs
[s
->vbe_index
] = val
;
770 s
->bank_offset
= (val
<< 16);
771 vga_update_memory_access(s
);
773 case VBE_DISPI_INDEX_ENABLE
:
774 if ((val
& VBE_DISPI_ENABLED
) &&
775 !(s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
)) {
777 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] = 0;
778 s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
779 s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
780 s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] |= VBE_DISPI_ENABLED
;
782 vbe_update_vgaregs(s
);
784 /* clear the screen */
785 if (!(val
& VBE_DISPI_NOCLEARMEM
)) {
786 memset(s
->vram_ptr
, 0,
787 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] * s
->vbe_line_offset
);
792 s
->dac_8bit
= (val
& VBE_DISPI_8BIT_DAC
) > 0;
793 s
->vbe_regs
[s
->vbe_index
] = val
;
794 vga_update_memory_access(s
);
802 /* called for accesses between 0xa0000 and 0xc0000 */
803 uint32_t vga_mem_readb(VGACommonState
*s
, hwaddr addr
)
805 int memory_map_mode
, plane
;
808 /* convert to VGA memory offset */
809 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
811 switch(memory_map_mode
) {
817 addr
+= s
->bank_offset
;
832 if (sr(s
, VGA_SEQ_MEMORY_MODE
) & VGA_SR04_CHN_4M
) {
833 /* chain 4 mode : simplest access */
834 assert(addr
< s
->vram_size
);
835 ret
= s
->vram_ptr
[addr
];
836 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
837 /* odd/even mode (aka text mode mapping) */
838 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
839 addr
= ((addr
& ~1) << 1) | plane
;
840 if (addr
>= s
->vram_size
) {
843 ret
= s
->vram_ptr
[addr
];
845 /* standard VGA latched access */
846 if (addr
* sizeof(uint32_t) >= s
->vram_size
) {
849 s
->latch
= ((uint32_t *)s
->vram_ptr
)[addr
];
851 if (!(s
->gr
[VGA_GFX_MODE
] & 0x08)) {
853 plane
= s
->gr
[VGA_GFX_PLANE_READ
];
854 ret
= GET_PLANE(s
->latch
, plane
);
857 ret
= (s
->latch
^ mask16
[s
->gr
[VGA_GFX_COMPARE_VALUE
]]) &
858 mask16
[s
->gr
[VGA_GFX_COMPARE_MASK
]];
867 /* called for accesses between 0xa0000 and 0xc0000 */
868 void vga_mem_writeb(VGACommonState
*s
, hwaddr addr
, uint32_t val
)
870 int memory_map_mode
, plane
, write_mode
, b
, func_select
, mask
;
871 uint32_t write_mask
, bit_mask
, set_mask
;
874 printf("vga: [0x" TARGET_FMT_plx
"] = 0x%02x\n", addr
, val
);
876 /* convert to VGA memory offset */
877 memory_map_mode
= (s
->gr
[VGA_GFX_MISC
] >> 2) & 3;
879 switch(memory_map_mode
) {
885 addr
+= s
->bank_offset
;
900 if (sr(s
, VGA_SEQ_MEMORY_MODE
) & VGA_SR04_CHN_4M
) {
901 /* chain 4 mode : simplest access */
904 if (sr(s
, VGA_SEQ_PLANE_WRITE
) & mask
) {
905 assert(addr
< s
->vram_size
);
906 s
->vram_ptr
[addr
] = val
;
908 printf("vga: chain4: [0x" TARGET_FMT_plx
"]\n", addr
);
910 s
->plane_updated
|= mask
; /* only used to detect font change */
911 memory_region_set_dirty(&s
->vram
, addr
, 1);
913 } else if (s
->gr
[VGA_GFX_MODE
] & 0x10) {
914 /* odd/even mode (aka text mode mapping) */
915 plane
= (s
->gr
[VGA_GFX_PLANE_READ
] & 2) | (addr
& 1);
917 if (sr(s
, VGA_SEQ_PLANE_WRITE
) & mask
) {
918 addr
= ((addr
& ~1) << 1) | plane
;
919 if (addr
>= s
->vram_size
) {
922 s
->vram_ptr
[addr
] = val
;
924 printf("vga: odd/even: [0x" TARGET_FMT_plx
"]\n", addr
);
926 s
->plane_updated
|= mask
; /* only used to detect font change */
927 memory_region_set_dirty(&s
->vram
, addr
, 1);
930 /* standard VGA latched access */
931 write_mode
= s
->gr
[VGA_GFX_MODE
] & 3;
936 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
937 val
= ((val
>> b
) | (val
<< (8 - b
))) & 0xff;
941 /* apply set/reset mask */
942 set_mask
= mask16
[s
->gr
[VGA_GFX_SR_ENABLE
]];
943 val
= (val
& ~set_mask
) |
944 (mask16
[s
->gr
[VGA_GFX_SR_VALUE
]] & set_mask
);
945 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
951 val
= mask16
[val
& 0x0f];
952 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
];
956 b
= s
->gr
[VGA_GFX_DATA_ROTATE
] & 7;
957 val
= (val
>> b
) | (val
<< (8 - b
));
959 bit_mask
= s
->gr
[VGA_GFX_BIT_MASK
] & val
;
960 val
= mask16
[s
->gr
[VGA_GFX_SR_VALUE
]];
964 /* apply logical operation */
965 func_select
= s
->gr
[VGA_GFX_DATA_ROTATE
] >> 3;
966 switch(func_select
) {
986 bit_mask
|= bit_mask
<< 8;
987 bit_mask
|= bit_mask
<< 16;
988 val
= (val
& bit_mask
) | (s
->latch
& ~bit_mask
);
991 /* mask data according to sr[2] */
992 mask
= sr(s
, VGA_SEQ_PLANE_WRITE
);
993 s
->plane_updated
|= mask
; /* only used to detect font change */
994 write_mask
= mask16
[mask
];
995 if (addr
* sizeof(uint32_t) >= s
->vram_size
) {
998 ((uint32_t *)s
->vram_ptr
)[addr
] =
999 (((uint32_t *)s
->vram_ptr
)[addr
] & ~write_mask
) |
1001 #ifdef DEBUG_VGA_MEM
1002 printf("vga: latch: [0x" TARGET_FMT_plx
"] mask=0x%08x val=0x%08x\n",
1003 addr
* 4, write_mask
, val
);
1005 memory_region_set_dirty(&s
->vram
, addr
<< 2, sizeof(uint32_t));
1009 typedef void vga_draw_line_func(VGACommonState
*s1
, uint8_t *d
,
1010 uint32_t srcaddr
, int width
);
1012 #include "vga-access.h"
1013 #include "vga-helpers.h"
1015 /* return true if the palette was modified */
1016 static int update_palette16(VGACommonState
*s
)
1019 uint32_t v
, col
, *palette
;
1022 palette
= s
->last_palette
;
1023 for(i
= 0; i
< 16; i
++) {
1025 if (s
->ar
[VGA_ATC_MODE
] & 0x80) {
1026 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xf) << 4) | (v
& 0xf);
1028 v
= ((s
->ar
[VGA_ATC_COLOR_PAGE
] & 0xc) << 4) | (v
& 0x3f);
1031 col
= rgb_to_pixel32(c6_to_8(s
->palette
[v
]),
1032 c6_to_8(s
->palette
[v
+ 1]),
1033 c6_to_8(s
->palette
[v
+ 2]));
1034 if (col
!= palette
[i
]) {
1042 /* return true if the palette was modified */
1043 static int update_palette256(VGACommonState
*s
)
1046 uint32_t v
, col
, *palette
;
1049 palette
= s
->last_palette
;
1051 for(i
= 0; i
< 256; i
++) {
1053 col
= rgb_to_pixel32(s
->palette
[v
],
1057 col
= rgb_to_pixel32(c6_to_8(s
->palette
[v
]),
1058 c6_to_8(s
->palette
[v
+ 1]),
1059 c6_to_8(s
->palette
[v
+ 2]));
1061 if (col
!= palette
[i
]) {
1070 static void vga_get_offsets(VGACommonState
*s
,
1071 uint32_t *pline_offset
,
1072 uint32_t *pstart_addr
,
1073 uint32_t *pline_compare
)
1075 uint32_t start_addr
, line_offset
, line_compare
;
1077 if (vbe_enabled(s
)) {
1078 line_offset
= s
->vbe_line_offset
;
1079 start_addr
= s
->vbe_start_addr
;
1080 line_compare
= 65535;
1082 /* compute line_offset in bytes */
1083 line_offset
= s
->cr
[VGA_CRTC_OFFSET
];
1086 /* starting address */
1087 start_addr
= s
->cr
[VGA_CRTC_START_LO
] |
1088 (s
->cr
[VGA_CRTC_START_HI
] << 8);
1091 line_compare
= s
->cr
[VGA_CRTC_LINE_COMPARE
] |
1092 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x10) << 4) |
1093 ((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x40) << 3);
1095 *pline_offset
= line_offset
;
1096 *pstart_addr
= start_addr
;
1097 *pline_compare
= line_compare
;
1100 /* update start_addr and line_offset. Return TRUE if modified */
1101 static int update_basic_params(VGACommonState
*s
)
1104 uint32_t start_addr
, line_offset
, line_compare
;
1108 s
->get_offsets(s
, &line_offset
, &start_addr
, &line_compare
);
1110 if (line_offset
!= s
->line_offset
||
1111 start_addr
!= s
->start_addr
||
1112 line_compare
!= s
->line_compare
) {
1113 s
->line_offset
= line_offset
;
1114 s
->start_addr
= start_addr
;
1115 s
->line_compare
= line_compare
;
1122 static const uint8_t cursor_glyph
[32 * 4] = {
1123 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1124 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1125 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1126 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1127 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1128 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1129 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1130 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1131 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1132 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1133 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1134 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1135 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1136 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1137 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1138 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1141 static void vga_get_text_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
,
1142 int *pcwidth
, int *pcheight
)
1144 int width
, cwidth
, height
, cheight
;
1146 /* total width & height */
1147 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
1149 if (!(sr(s
, VGA_SEQ_CLOCK_MODE
) & VGA_SR01_CHAR_CLK_8DOTS
)) {
1152 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 0x08) {
1153 cwidth
= 16; /* NOTE: no 18 pixel wide */
1155 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
1156 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
1157 /* ugly hack for CGA 160x100x16 - explain me the logic */
1160 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1161 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1162 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1163 height
= (height
+ 1) / cheight
;
1169 *pcheight
= cheight
;
1180 static void vga_draw_text(VGACommonState
*s
, int full_update
)
1182 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1183 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1184 int cx_min
, cx_max
, linesize
, x_incr
, line
, line1
;
1185 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1186 uint8_t *d1
, *d
, *src
, *dest
, *cursor_ptr
;
1187 const uint8_t *font_ptr
, *font_base
[2];
1188 int dup9
, line_offset
;
1190 uint32_t *ch_attr_ptr
;
1191 int64_t now
= qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
);
1193 /* compute font data address (in plane 2) */
1194 v
= sr(s
, VGA_SEQ_CHARACTER_MAP
);
1195 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1196 if (offset
!= s
->font_offsets
[0]) {
1197 s
->font_offsets
[0] = offset
;
1200 font_base
[0] = s
->vram_ptr
+ offset
;
1202 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1203 font_base
[1] = s
->vram_ptr
+ offset
;
1204 if (offset
!= s
->font_offsets
[1]) {
1205 s
->font_offsets
[1] = offset
;
1208 if (s
->plane_updated
& (1 << 2) || s
->has_chain4_alias
) {
1209 /* if the plane 2 was modified since the last display, it
1210 indicates the font may have been modified */
1211 s
->plane_updated
= 0;
1214 full_update
|= update_basic_params(s
);
1216 line_offset
= s
->line_offset
;
1218 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1219 if ((height
* width
) <= 1) {
1220 /* better than nothing: exit if transient size is too small */
1223 if ((height
* width
) > CH_ATTR_SIZE
) {
1224 /* better than nothing: exit if transient size is too big */
1228 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1229 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1230 s
->last_scr_width
= width
* cw
;
1231 s
->last_scr_height
= height
* cheight
;
1232 qemu_console_resize(s
->con
, s
->last_scr_width
, s
->last_scr_height
);
1233 surface
= qemu_console_surface(s
->con
);
1234 dpy_text_resize(s
->con
, width
, height
);
1236 s
->last_width
= width
;
1237 s
->last_height
= height
;
1238 s
->last_ch
= cheight
;
1242 full_update
|= update_palette16(s
);
1243 palette
= s
->last_palette
;
1244 x_incr
= cw
* surface_bytes_per_pixel(surface
);
1247 s
->full_update_text
= 1;
1249 if (s
->full_update_gfx
) {
1250 s
->full_update_gfx
= 0;
1254 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1255 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1256 if (cursor_offset
!= s
->cursor_offset
||
1257 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1258 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
) {
1259 /* if the cursor position changed, we update the old and new
1261 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1262 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1263 if (cursor_offset
< CH_ATTR_SIZE
)
1264 s
->last_ch_attr
[cursor_offset
] = -1;
1265 s
->cursor_offset
= cursor_offset
;
1266 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1267 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1269 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1270 if (now
>= s
->cursor_blink_time
) {
1271 s
->cursor_blink_time
= now
+ VGA_TEXT_CURSOR_PERIOD_MS
/ 2;
1272 s
->cursor_visible_phase
= !s
->cursor_visible_phase
;
1275 dest
= surface_data(surface
);
1276 linesize
= surface_stride(surface
);
1277 ch_attr_ptr
= s
->last_ch_attr
;
1279 offset
= s
->start_addr
* 4;
1280 for(cy
= 0; cy
< height
; cy
++) {
1282 src
= s
->vram_ptr
+ offset
;
1285 for(cx
= 0; cx
< width
; cx
++) {
1286 if (src
+ sizeof(uint16_t) > s
->vram_ptr
+ s
->vram_size
) {
1289 ch_attr
= *(uint16_t *)src
;
1290 if (full_update
|| ch_attr
!= *ch_attr_ptr
|| src
== cursor_ptr
) {
1295 *ch_attr_ptr
= ch_attr
;
1296 #ifdef HOST_WORDS_BIGENDIAN
1298 cattr
= ch_attr
& 0xff;
1300 ch
= ch_attr
& 0xff;
1301 cattr
= ch_attr
>> 8;
1303 font_ptr
= font_base
[(cattr
>> 3) & 1];
1304 font_ptr
+= 32 * 4 * ch
;
1305 bgcol
= palette
[cattr
>> 4];
1306 fgcol
= palette
[cattr
& 0x0f];
1308 vga_draw_glyph16(d1
, linesize
,
1309 font_ptr
, cheight
, fgcol
, bgcol
);
1310 } else if (cw
!= 9) {
1311 vga_draw_glyph8(d1
, linesize
,
1312 font_ptr
, cheight
, fgcol
, bgcol
);
1315 if (ch
>= 0xb0 && ch
<= 0xdf &&
1316 (s
->ar
[VGA_ATC_MODE
] & 0x04)) {
1319 vga_draw_glyph9(d1
, linesize
,
1320 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1322 if (src
== cursor_ptr
&&
1323 !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20) &&
1324 s
->cursor_visible_phase
) {
1325 int line_start
, line_last
, h
;
1326 /* draw the cursor */
1327 line_start
= s
->cr
[VGA_CRTC_CURSOR_START
] & 0x1f;
1328 line_last
= s
->cr
[VGA_CRTC_CURSOR_END
] & 0x1f;
1329 /* XXX: check that */
1330 if (line_last
> cheight
- 1)
1331 line_last
= cheight
- 1;
1332 if (line_last
>= line_start
&& line_start
< cheight
) {
1333 h
= line_last
- line_start
+ 1;
1334 d
= d1
+ linesize
* line_start
;
1336 vga_draw_glyph16(d
, linesize
,
1337 cursor_glyph
, h
, fgcol
, bgcol
);
1338 } else if (cw
!= 9) {
1339 vga_draw_glyph8(d
, linesize
,
1340 cursor_glyph
, h
, fgcol
, bgcol
);
1342 vga_draw_glyph9(d
, linesize
,
1343 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1353 dpy_gfx_update(s
->con
, cx_min
* cw
, cy
* cheight
,
1354 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1356 dest
+= linesize
* cheight
;
1357 line1
= line
+ cheight
;
1358 offset
+= line_offset
;
1359 if (line
< s
->line_compare
&& line1
>= s
->line_compare
) {
1384 static vga_draw_line_func
* const vga_draw_line_table
[VGA_DRAW_LINE_NB
] = {
1401 static int vga_get_bpp(VGACommonState
*s
)
1405 if (vbe_enabled(s
)) {
1406 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1413 static void vga_get_resolution(VGACommonState
*s
, int *pwidth
, int *pheight
)
1417 if (vbe_enabled(s
)) {
1418 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1419 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1421 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1) * 8;
1422 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1423 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1424 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1425 height
= (height
+ 1);
1431 void vga_invalidate_scanlines(VGACommonState
*s
, int y1
, int y2
)
1434 if (y1
>= VGA_MAX_HEIGHT
)
1436 if (y2
>= VGA_MAX_HEIGHT
)
1437 y2
= VGA_MAX_HEIGHT
;
1438 for(y
= y1
; y
< y2
; y
++) {
1439 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1443 static bool vga_scanline_invalidated(VGACommonState
*s
, int y
)
1445 if (y
>= VGA_MAX_HEIGHT
) {
1448 return s
->invalidated_y_table
[y
>> 5] & (1 << (y
& 0x1f));
1451 void vga_dirty_log_start(VGACommonState
*s
)
1453 memory_region_set_log(&s
->vram
, true, DIRTY_MEMORY_VGA
);
1456 void vga_dirty_log_stop(VGACommonState
*s
)
1458 memory_region_set_log(&s
->vram
, false, DIRTY_MEMORY_VGA
);
1464 static void vga_draw_graphic(VGACommonState
*s
, int full_update
)
1466 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1467 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1468 int width
, height
, shift_control
, bwidth
, bits
;
1469 ram_addr_t page0
, page1
, region_start
, region_end
;
1470 DirtyBitmapSnapshot
*snap
= NULL
;
1471 int disp_width
, multi_scan
, multi_run
;
1473 uint32_t v
, addr1
, addr
;
1474 vga_draw_line_func
*vga_draw_line
= NULL
;
1475 bool share_surface
, force_shadow
= false;
1476 pixman_format_code_t format
;
1477 #ifdef HOST_WORDS_BIGENDIAN
1478 bool byteswap
= !s
->big_endian_fb
;
1480 bool byteswap
= s
->big_endian_fb
;
1483 full_update
|= update_basic_params(s
);
1485 s
->get_resolution(s
, &width
, &height
);
1487 depth
= s
->get_bpp(s
);
1489 region_start
= (s
->start_addr
* 4);
1490 region_end
= region_start
+ (ram_addr_t
)s
->line_offset
* height
;
1491 region_end
+= width
* depth
/ 8; /* scanline length */
1492 region_end
-= s
->line_offset
;
1493 if (region_end
> s
->vbe_size
|| depth
== 0 || depth
== 15) {
1496 * - wraps around (can happen with cirrus vbe modes)
1497 * - depth == 0 (256 color palette video mode)
1500 * Take the safe and slow route:
1501 * - create a dirty bitmap snapshot for all vga memory.
1502 * - force shadowing (so all vga memory access goes
1503 * through vga_read_*() helpers).
1505 * Given this affects only vga features which are pretty much
1506 * unused by modern guests there should be no performance
1510 region_end
= s
->vbe_size
;
1511 force_shadow
= true;
1514 shift_control
= (s
->gr
[VGA_GFX_MODE
] >> 5) & 3;
1515 double_scan
= (s
->cr
[VGA_CRTC_MAX_SCAN
] >> 7);
1516 if (shift_control
!= 1) {
1517 multi_scan
= (((s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1) << double_scan
)
1520 /* in CGA modes, multi_scan is ignored */
1521 /* XXX: is it correct ? */
1522 multi_scan
= double_scan
;
1524 multi_run
= multi_scan
;
1525 if (shift_control
!= s
->shift_control
||
1526 double_scan
!= s
->double_scan
) {
1528 s
->shift_control
= shift_control
;
1529 s
->double_scan
= double_scan
;
1532 if (shift_control
== 0) {
1533 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 8) {
1536 } else if (shift_control
== 1) {
1537 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 8) {
1543 * Check whether we can share the surface with the backend
1544 * or whether we need a shadow surface. We share native
1545 * endian surfaces for 15bpp and above and byteswapped
1546 * surfaces for 24bpp and above.
1548 format
= qemu_default_pixman_format(depth
, !byteswap
);
1550 share_surface
= dpy_gfx_check_format(s
->con
, format
)
1551 && !s
->force_shadow
&& !force_shadow
;
1553 share_surface
= false;
1556 if (s
->line_offset
!= s
->last_line_offset
||
1557 disp_width
!= s
->last_width
||
1558 height
!= s
->last_height
||
1559 s
->last_depth
!= depth
||
1560 s
->last_byteswap
!= byteswap
||
1561 share_surface
!= is_buffer_shared(surface
)) {
1562 /* display parameters changed -> need new display surface */
1563 s
->last_scr_width
= disp_width
;
1564 s
->last_scr_height
= height
;
1565 s
->last_width
= disp_width
;
1566 s
->last_height
= height
;
1567 s
->last_line_offset
= s
->line_offset
;
1568 s
->last_depth
= depth
;
1569 s
->last_byteswap
= byteswap
;
1572 if (surface_data(surface
) != s
->vram_ptr
+ (s
->start_addr
* 4)
1573 && is_buffer_shared(surface
)) {
1574 /* base address changed (page flip) -> shared display surfaces
1575 * must be updated with the new base address */
1580 if (share_surface
) {
1581 surface
= qemu_create_displaysurface_from(disp_width
,
1582 height
, format
, s
->line_offset
,
1583 s
->vram_ptr
+ (s
->start_addr
* 4));
1584 dpy_gfx_replace_surface(s
->con
, surface
);
1586 qemu_console_resize(s
->con
, disp_width
, height
);
1587 surface
= qemu_console_surface(s
->con
);
1591 if (shift_control
== 0) {
1592 full_update
|= update_palette16(s
);
1593 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 8) {
1594 v
= VGA_DRAW_LINE4D2
;
1599 } else if (shift_control
== 1) {
1600 full_update
|= update_palette16(s
);
1601 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 8) {
1602 v
= VGA_DRAW_LINE2D2
;
1608 switch(s
->get_bpp(s
)) {
1611 full_update
|= update_palette256(s
);
1612 v
= VGA_DRAW_LINE8D2
;
1616 full_update
|= update_palette256(s
);
1621 v
= s
->big_endian_fb
? VGA_DRAW_LINE15_BE
: VGA_DRAW_LINE15_LE
;
1625 v
= s
->big_endian_fb
? VGA_DRAW_LINE16_BE
: VGA_DRAW_LINE16_LE
;
1629 v
= s
->big_endian_fb
? VGA_DRAW_LINE24_BE
: VGA_DRAW_LINE24_LE
;
1633 v
= s
->big_endian_fb
? VGA_DRAW_LINE32_BE
: VGA_DRAW_LINE32_LE
;
1638 vga_draw_line
= vga_draw_line_table
[v
];
1640 if (!is_buffer_shared(surface
) && s
->cursor_invalidate
) {
1641 s
->cursor_invalidate(s
);
1645 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",
1646 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[VGA_CRTC_MODE
],
1647 s
->line_compare
, sr(s
, VGA_SEQ_CLOCK_MODE
));
1649 addr1
= (s
->start_addr
* 4);
1650 bwidth
= DIV_ROUND_UP(width
* bits
, 8);
1652 d
= surface_data(surface
);
1653 linesize
= surface_stride(surface
);
1657 if (s
->line_compare
< height
) {
1658 /* split screen mode */
1661 snap
= memory_region_snapshot_and_clear_dirty(&s
->vram
, region_start
,
1662 region_end
- region_start
,
1666 for(y
= 0; y
< height
; y
++) {
1668 if (!(s
->cr
[VGA_CRTC_MODE
] & 1)) {
1670 /* CGA compatibility handling */
1671 shift
= 14 + ((s
->cr
[VGA_CRTC_MODE
] >> 6) & 1);
1672 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1674 if (!(s
->cr
[VGA_CRTC_MODE
] & 2)) {
1675 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1677 update
= full_update
;
1678 page0
= addr
& s
->vbe_size_mask
;
1679 page1
= (addr
+ bwidth
- 1) & s
->vbe_size_mask
;
1682 } else if (page1
< page0
) {
1683 /* scanline wraps from end of video memory to the start */
1684 assert(force_shadow
);
1685 update
= memory_region_snapshot_get_dirty(&s
->vram
, snap
,
1686 page0
, s
->vbe_size
- page0
);
1687 update
|= memory_region_snapshot_get_dirty(&s
->vram
, snap
,
1690 update
= memory_region_snapshot_get_dirty(&s
->vram
, snap
,
1691 page0
, page1
- page0
);
1693 /* explicit invalidation for the hardware cursor (cirrus only) */
1694 update
|= vga_scanline_invalidated(s
, y
);
1698 if (!(is_buffer_shared(surface
))) {
1699 vga_draw_line(s
, d
, addr
, width
);
1700 if (s
->cursor_draw_line
)
1701 s
->cursor_draw_line(s
, d
, y
);
1705 /* flush to display */
1706 dpy_gfx_update(s
->con
, 0, y_start
,
1707 disp_width
, y
- y_start
);
1712 mask
= (s
->cr
[VGA_CRTC_MODE
] & 3) ^ 3;
1713 if ((y1
& mask
) == mask
)
1714 addr1
+= s
->line_offset
;
1716 multi_run
= multi_scan
;
1720 /* line compare acts on the displayed lines */
1721 if (y
== s
->line_compare
)
1726 /* flush to display */
1727 dpy_gfx_update(s
->con
, 0, y_start
,
1728 disp_width
, y
- y_start
);
1731 memset(s
->invalidated_y_table
, 0, sizeof(s
->invalidated_y_table
));
1734 static void vga_draw_blank(VGACommonState
*s
, int full_update
)
1736 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1742 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1745 w
= s
->last_scr_width
* surface_bytes_per_pixel(surface
);
1746 d
= surface_data(surface
);
1747 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1749 d
+= surface_stride(surface
);
1751 dpy_gfx_update_full(s
->con
);
1754 #define GMODE_TEXT 0
1755 #define GMODE_GRAPH 1
1756 #define GMODE_BLANK 2
1758 static void vga_update_display(void *opaque
)
1760 VGACommonState
*s
= opaque
;
1761 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
1762 int full_update
, graphic_mode
;
1764 qemu_flush_coalesced_mmio_buffer();
1766 if (surface_bits_per_pixel(surface
) == 0) {
1770 if (!(s
->ar_index
& 0x20)) {
1771 graphic_mode
= GMODE_BLANK
;
1773 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1775 if (graphic_mode
!= s
->graphic_mode
) {
1776 s
->graphic_mode
= graphic_mode
;
1777 s
->cursor_blink_time
= qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
);
1780 switch(graphic_mode
) {
1782 vga_draw_text(s
, full_update
);
1785 vga_draw_graphic(s
, full_update
);
1789 vga_draw_blank(s
, full_update
);
1795 /* force a full display refresh */
1796 static void vga_invalidate_display(void *opaque
)
1798 VGACommonState
*s
= opaque
;
1801 s
->last_height
= -1;
1804 void vga_common_reset(VGACommonState
*s
)
1807 memset(s
->sr
, '\0', sizeof(s
->sr
));
1808 memset(s
->sr_vbe
, '\0', sizeof(s
->sr_vbe
));
1810 memset(s
->gr
, '\0', sizeof(s
->gr
));
1812 memset(s
->ar
, '\0', sizeof(s
->ar
));
1813 s
->ar_flip_flop
= 0;
1815 memset(s
->cr
, '\0', sizeof(s
->cr
));
1821 s
->dac_sub_index
= 0;
1822 s
->dac_read_index
= 0;
1823 s
->dac_write_index
= 0;
1824 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1826 memset(s
->palette
, '\0', sizeof(s
->palette
));
1829 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1830 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID5
;
1831 s
->vbe_start_addr
= 0;
1832 s
->vbe_line_offset
= 0;
1833 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1834 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1835 s
->graphic_mode
= -1; /* force full update */
1836 s
->shift_control
= 0;
1839 s
->line_compare
= 0;
1841 s
->plane_updated
= 0;
1846 s
->last_scr_width
= 0;
1847 s
->last_scr_height
= 0;
1848 s
->cursor_start
= 0;
1850 s
->cursor_offset
= 0;
1851 s
->big_endian_fb
= s
->default_endian_fb
;
1852 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1853 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1854 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1855 switch (vga_retrace_method
) {
1856 case VGA_RETRACE_DUMB
:
1858 case VGA_RETRACE_PRECISE
:
1859 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1862 vga_update_memory_access(s
);
1865 static void vga_reset(void *opaque
)
1867 VGACommonState
*s
= opaque
;
1868 vga_common_reset(s
);
1871 #define TEXTMODE_X(x) ((x) % width)
1872 #define TEXTMODE_Y(x) ((x) / width)
1873 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1874 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1875 /* relay text rendering to the display driver
1876 * instead of doing a full vga_update_display() */
1877 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1879 VGACommonState
*s
= opaque
;
1880 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1881 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1883 console_ch_t
*dst
, val
;
1884 char msg_buffer
[80];
1885 int full_update
= 0;
1887 qemu_flush_coalesced_mmio_buffer();
1889 if (!(s
->ar_index
& 0x20)) {
1890 graphic_mode
= GMODE_BLANK
;
1892 graphic_mode
= s
->gr
[VGA_GFX_MISC
] & VGA_GR06_GRAPHICS_MODE
;
1894 if (graphic_mode
!= s
->graphic_mode
) {
1895 s
->graphic_mode
= graphic_mode
;
1898 if (s
->last_width
== -1) {
1903 switch (graphic_mode
) {
1905 /* TODO: update palette */
1906 full_update
|= update_basic_params(s
);
1908 /* total width & height */
1909 cheight
= (s
->cr
[VGA_CRTC_MAX_SCAN
] & 0x1f) + 1;
1911 if (!(sr(s
, VGA_SEQ_CLOCK_MODE
) & VGA_SR01_CHAR_CLK_8DOTS
)) {
1914 if (sr(s
, VGA_SEQ_CLOCK_MODE
) & 0x08) {
1915 cw
= 16; /* NOTE: no 18 pixel wide */
1917 width
= (s
->cr
[VGA_CRTC_H_DISP
] + 1);
1918 if (s
->cr
[VGA_CRTC_V_TOTAL
] == 100) {
1919 /* ugly hack for CGA 160x100x16 - explain me the logic */
1922 height
= s
->cr
[VGA_CRTC_V_DISP_END
] |
1923 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x02) << 7) |
1924 ((s
->cr
[VGA_CRTC_OVERFLOW
] & 0x40) << 3);
1925 height
= (height
+ 1) / cheight
;
1928 size
= (height
* width
);
1929 if (size
> CH_ATTR_SIZE
) {
1933 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
1938 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1939 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
1940 s
->last_scr_width
= width
* cw
;
1941 s
->last_scr_height
= height
* cheight
;
1942 qemu_console_resize(s
->con
, s
->last_scr_width
, s
->last_scr_height
);
1943 dpy_text_resize(s
->con
, width
, height
);
1945 s
->last_width
= width
;
1946 s
->last_height
= height
;
1947 s
->last_ch
= cheight
;
1953 s
->full_update_gfx
= 1;
1955 if (s
->full_update_text
) {
1956 s
->full_update_text
= 0;
1960 /* Update "hardware" cursor */
1961 cursor_offset
= ((s
->cr
[VGA_CRTC_CURSOR_HI
] << 8) |
1962 s
->cr
[VGA_CRTC_CURSOR_LO
]) - s
->start_addr
;
1963 if (cursor_offset
!= s
->cursor_offset
||
1964 s
->cr
[VGA_CRTC_CURSOR_START
] != s
->cursor_start
||
1965 s
->cr
[VGA_CRTC_CURSOR_END
] != s
->cursor_end
|| full_update
) {
1966 cursor_visible
= !(s
->cr
[VGA_CRTC_CURSOR_START
] & 0x20);
1967 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
1968 dpy_text_cursor(s
->con
,
1969 TEXTMODE_X(cursor_offset
),
1970 TEXTMODE_Y(cursor_offset
));
1972 dpy_text_cursor(s
->con
, -1, -1);
1973 s
->cursor_offset
= cursor_offset
;
1974 s
->cursor_start
= s
->cr
[VGA_CRTC_CURSOR_START
];
1975 s
->cursor_end
= s
->cr
[VGA_CRTC_CURSOR_END
];
1978 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
1982 for (i
= 0; i
< size
; src
++, dst
++, i
++)
1983 console_write_ch(dst
, VMEM2CHTYPE(le32_to_cpu(*src
)));
1985 dpy_text_update(s
->con
, 0, 0, width
, height
);
1989 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
1990 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
1998 for (; i
< size
; src
++, dst
++, i
++) {
1999 console_write_ch(&val
, VMEM2CHTYPE(le32_to_cpu(*src
)));
2006 if (c_min
<= c_max
) {
2007 i
= TEXTMODE_Y(c_min
);
2008 dpy_text_update(s
->con
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2017 s
->get_resolution(s
, &width
, &height
);
2018 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2026 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2030 /* Display a message */
2032 s
->last_height
= height
= 3;
2033 dpy_text_cursor(s
->con
, -1, -1);
2034 dpy_text_resize(s
->con
, s
->last_width
, height
);
2036 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2037 console_write_ch(dst
++, ' ');
2039 size
= strlen(msg_buffer
);
2040 width
= (s
->last_width
- size
) / 2;
2041 dst
= chardata
+ s
->last_width
+ width
;
2042 for (i
= 0; i
< size
; i
++)
2043 console_write_ch(dst
++, ATTR2CHTYPE(msg_buffer
[i
], QEMU_COLOR_BLUE
,
2044 QEMU_COLOR_BLACK
, 1));
2046 dpy_text_update(s
->con
, 0, 0, s
->last_width
, height
);
2049 static uint64_t vga_mem_read(void *opaque
, hwaddr addr
,
2052 VGACommonState
*s
= opaque
;
2054 return vga_mem_readb(s
, addr
);
2057 static void vga_mem_write(void *opaque
, hwaddr addr
,
2058 uint64_t data
, unsigned size
)
2060 VGACommonState
*s
= opaque
;
2062 vga_mem_writeb(s
, addr
, data
);
2065 const MemoryRegionOps vga_mem_ops
= {
2066 .read
= vga_mem_read
,
2067 .write
= vga_mem_write
,
2068 .endianness
= DEVICE_LITTLE_ENDIAN
,
2070 .min_access_size
= 1,
2071 .max_access_size
= 1,
2075 static int vga_common_post_load(void *opaque
, int version_id
)
2077 VGACommonState
*s
= opaque
;
2080 s
->graphic_mode
= -1;
2081 vbe_update_vgaregs(s
);
2082 vga_update_memory_access(s
);
2086 static bool vga_endian_state_needed(void *opaque
)
2088 VGACommonState
*s
= opaque
;
2091 * Only send the endian state if it's different from the
2092 * default one, thus ensuring backward compatibility for
2093 * migration of the common case
2095 return s
->default_endian_fb
!= s
->big_endian_fb
;
2098 static const VMStateDescription vmstate_vga_endian
= {
2099 .name
= "vga.endian",
2101 .minimum_version_id
= 1,
2102 .needed
= vga_endian_state_needed
,
2103 .fields
= (VMStateField
[]) {
2104 VMSTATE_BOOL(big_endian_fb
, VGACommonState
),
2105 VMSTATE_END_OF_LIST()
2109 const VMStateDescription vmstate_vga_common
= {
2112 .minimum_version_id
= 2,
2113 .post_load
= vga_common_post_load
,
2114 .fields
= (VMStateField
[]) {
2115 VMSTATE_UINT32(latch
, VGACommonState
),
2116 VMSTATE_UINT8(sr_index
, VGACommonState
),
2117 VMSTATE_PARTIAL_BUFFER(sr
, VGACommonState
, 8),
2118 VMSTATE_UINT8(gr_index
, VGACommonState
),
2119 VMSTATE_PARTIAL_BUFFER(gr
, VGACommonState
, 16),
2120 VMSTATE_UINT8(ar_index
, VGACommonState
),
2121 VMSTATE_BUFFER(ar
, VGACommonState
),
2122 VMSTATE_INT32(ar_flip_flop
, VGACommonState
),
2123 VMSTATE_UINT8(cr_index
, VGACommonState
),
2124 VMSTATE_BUFFER(cr
, VGACommonState
),
2125 VMSTATE_UINT8(msr
, VGACommonState
),
2126 VMSTATE_UINT8(fcr
, VGACommonState
),
2127 VMSTATE_UINT8(st00
, VGACommonState
),
2128 VMSTATE_UINT8(st01
, VGACommonState
),
2130 VMSTATE_UINT8(dac_state
, VGACommonState
),
2131 VMSTATE_UINT8(dac_sub_index
, VGACommonState
),
2132 VMSTATE_UINT8(dac_read_index
, VGACommonState
),
2133 VMSTATE_UINT8(dac_write_index
, VGACommonState
),
2134 VMSTATE_BUFFER(dac_cache
, VGACommonState
),
2135 VMSTATE_BUFFER(palette
, VGACommonState
),
2137 VMSTATE_INT32(bank_offset
, VGACommonState
),
2138 VMSTATE_UINT8_EQUAL(is_vbe_vmstate
, VGACommonState
, NULL
),
2139 VMSTATE_UINT16(vbe_index
, VGACommonState
),
2140 VMSTATE_UINT16_ARRAY(vbe_regs
, VGACommonState
, VBE_DISPI_INDEX_NB
),
2141 VMSTATE_UINT32(vbe_start_addr
, VGACommonState
),
2142 VMSTATE_UINT32(vbe_line_offset
, VGACommonState
),
2143 VMSTATE_UINT32(vbe_bank_mask
, VGACommonState
),
2144 VMSTATE_END_OF_LIST()
2146 .subsections
= (const VMStateDescription
*[]) {
2147 &vmstate_vga_endian
,
2152 static const GraphicHwOps vga_ops
= {
2153 .invalidate
= vga_invalidate_display
,
2154 .gfx_update
= vga_update_display
,
2155 .text_update
= vga_update_text
,
2158 static inline uint32_t uint_clamp(uint32_t val
, uint32_t vmin
, uint32_t vmax
)
2169 void vga_common_init(VGACommonState
*s
, Object
*obj
)
2173 for(i
= 0;i
< 256; i
++) {
2175 for(j
= 0; j
< 8; j
++) {
2176 v
|= ((i
>> j
) & 1) << (j
* 4);
2181 for(j
= 0; j
< 4; j
++) {
2182 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2186 for(i
= 0; i
< 16; i
++) {
2188 for(j
= 0; j
< 4; j
++) {
2191 v
|= b
<< (2 * j
+ 1);
2196 s
->vram_size_mb
= uint_clamp(s
->vram_size_mb
, 1, 512);
2197 s
->vram_size_mb
= pow2ceil(s
->vram_size_mb
);
2198 s
->vram_size
= s
->vram_size_mb
* MiB
;
2201 s
->vbe_size
= s
->vram_size
;
2203 s
->vbe_size_mask
= s
->vbe_size
- 1;
2205 s
->is_vbe_vmstate
= 1;
2206 memory_region_init_ram_nomigrate(&s
->vram
, obj
, "vga.vram", s
->vram_size
,
2208 vmstate_register_ram(&s
->vram
, s
->global_vmstate
? NULL
: DEVICE(obj
));
2209 xen_register_framebuffer(&s
->vram
);
2210 s
->vram_ptr
= memory_region_get_ram_ptr(&s
->vram
);
2211 s
->get_bpp
= vga_get_bpp
;
2212 s
->get_offsets
= vga_get_offsets
;
2213 s
->get_resolution
= vga_get_resolution
;
2214 s
->hw_ops
= &vga_ops
;
2215 switch (vga_retrace_method
) {
2216 case VGA_RETRACE_DUMB
:
2217 s
->retrace
= vga_dumb_retrace
;
2218 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2221 case VGA_RETRACE_PRECISE
:
2222 s
->retrace
= vga_precise_retrace
;
2223 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2228 * Set default fb endian based on target, could probably be turned
2229 * into a device attribute set by the machine/platform to remove
2230 * all target endian dependencies from this file.
2232 #ifdef TARGET_WORDS_BIGENDIAN
2233 s
->default_endian_fb
= true;
2235 s
->default_endian_fb
= false;
2237 vga_dirty_log_start(s
);
2240 static const MemoryRegionPortio vga_portio_list
[] = {
2241 { 0x04, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3b4 */
2242 { 0x0a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3ba */
2243 { 0x10, 16, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3c0 */
2244 { 0x24, 2, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3d4 */
2245 { 0x2a, 1, 1, .read
= vga_ioport_read
, .write
= vga_ioport_write
}, /* 3da */
2246 PORTIO_END_OF_LIST(),
2249 static const MemoryRegionPortio vbe_portio_list
[] = {
2250 { 0, 1, 2, .read
= vbe_ioport_read_index
, .write
= vbe_ioport_write_index
},
2252 { 1, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2254 { 2, 1, 2, .read
= vbe_ioport_read_data
, .write
= vbe_ioport_write_data
},
2255 PORTIO_END_OF_LIST(),
2258 /* Used by both ISA and PCI */
2259 MemoryRegion
*vga_init_io(VGACommonState
*s
, Object
*obj
,
2260 const MemoryRegionPortio
**vga_ports
,
2261 const MemoryRegionPortio
**vbe_ports
)
2263 MemoryRegion
*vga_mem
;
2265 *vga_ports
= vga_portio_list
;
2266 *vbe_ports
= vbe_portio_list
;
2268 vga_mem
= g_malloc(sizeof(*vga_mem
));
2269 memory_region_init_io(vga_mem
, obj
, &vga_mem_ops
, s
,
2270 "vga-lowmem", 0x20000);
2271 memory_region_set_flush_coalesced(vga_mem
);
2276 void vga_init(VGACommonState
*s
, Object
*obj
, MemoryRegion
*address_space
,
2277 MemoryRegion
*address_space_io
, bool init_vga_ports
)
2279 MemoryRegion
*vga_io_memory
;
2280 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
2282 qemu_register_reset(vga_reset
, s
);
2286 s
->legacy_address_space
= address_space
;
2288 vga_io_memory
= vga_init_io(s
, obj
, &vga_ports
, &vbe_ports
);
2289 memory_region_add_subregion_overlap(address_space
,
2293 memory_region_set_coalescing(vga_io_memory
);
2294 if (init_vga_ports
) {
2295 portio_list_init(&s
->vga_port_list
, obj
, vga_ports
, s
, "vga");
2296 portio_list_set_flush_coalesced(&s
->vga_port_list
);
2297 portio_list_add(&s
->vga_port_list
, address_space_io
, 0x3b0);
2300 portio_list_init(&s
->vbe_port_list
, obj
, vbe_ports
, s
, "vbe");
2301 portio_list_add(&s
->vbe_port_list
, address_space_io
, 0x1ce);