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
29 #include "pixel_ops.h"
30 #include "qemu-timer.h"
35 //#define DEBUG_VGA_MEM
36 //#define DEBUG_VGA_REG
38 //#define DEBUG_BOCHS_VBE
40 /* force some bits to zero */
41 const uint8_t sr_mask
[8] = {
52 const uint8_t gr_mask
[16] = {
71 #define cbswap_32(__x) \
73 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
74 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
75 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
76 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) ))
78 #ifdef WORDS_BIGENDIAN
79 #define PAT(x) cbswap_32(x)
84 #ifdef WORDS_BIGENDIAN
90 #ifdef WORDS_BIGENDIAN
91 #define GET_PLANE(data, p) (((data) >> (24 - (p) * 8)) & 0xff)
93 #define GET_PLANE(data, p) (((data) >> ((p) * 8)) & 0xff)
96 static const uint32_t mask16
[16] = {
117 #ifdef WORDS_BIGENDIAN
120 #define PAT(x) cbswap_32(x)
123 static const uint32_t dmask16
[16] = {
142 static const uint32_t dmask4
[4] = {
149 static uint32_t expand4
[256];
150 static uint16_t expand2
[256];
151 static uint8_t expand4to8
[16];
153 static void vga_screen_dump(void *opaque
, const char *filename
);
155 static void vga_dumb_update_retrace_info(VGAState
*s
)
160 static void vga_precise_update_retrace_info(VGAState
*s
)
163 int hretr_start_char
;
164 int hretr_skew_chars
;
168 int vretr_start_line
;
171 int div2
, sldiv2
, dots
;
174 const int clk_hz
[] = {25175000, 28322000, 25175000, 25175000};
175 int64_t chars_per_sec
;
176 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
178 htotal_chars
= s
->cr
[0x00] + 5;
179 hretr_start_char
= s
->cr
[0x04];
180 hretr_skew_chars
= (s
->cr
[0x05] >> 5) & 3;
181 hretr_end_char
= s
->cr
[0x05] & 0x1f;
183 vtotal_lines
= (s
->cr
[0x06]
184 | (((s
->cr
[0x07] & 1) | ((s
->cr
[0x07] >> 4) & 2)) << 8)) + 2
186 vretr_start_line
= s
->cr
[0x10]
187 | ((((s
->cr
[0x07] >> 2) & 1) | ((s
->cr
[0x07] >> 6) & 2)) << 8)
189 vretr_end_line
= s
->cr
[0x11] & 0xf;
192 div2
= (s
->cr
[0x17] >> 2) & 1;
193 sldiv2
= (s
->cr
[0x17] >> 3) & 1;
195 clocking_mode
= (s
->sr
[0x01] >> 3) & 1;
196 clock_sel
= (s
->msr
>> 2) & 3;
197 dots
= (s
->msr
& 1) ? 8 : 9;
199 chars_per_sec
= clk_hz
[clock_sel
] / dots
;
201 htotal_chars
<<= clocking_mode
;
203 r
->total_chars
= vtotal_lines
* htotal_chars
;
205 r
->ticks_per_char
= ticks_per_sec
/ (r
->total_chars
* r
->freq
);
207 r
->ticks_per_char
= ticks_per_sec
/ chars_per_sec
;
210 r
->vstart
= vretr_start_line
;
211 r
->vend
= r
->vstart
+ vretr_end_line
+ 1;
213 r
->hstart
= hretr_start_char
+ hretr_skew_chars
;
214 r
->hend
= r
->hstart
+ hretr_end_char
+ 1;
215 r
->htotal
= htotal_chars
;
227 "div2 = %d sldiv2 = %d\n"
228 "clocking_mode = %d\n"
229 "clock_sel = %d %d\n"
231 "ticks/char = %lld\n"
233 (double) ticks_per_sec
/ (r
->ticks_per_char
* r
->total_chars
),
251 static uint8_t vga_precise_retrace(VGAState
*s
)
253 struct vga_precise_retrace
*r
= &s
->retrace_info
.precise
;
254 uint8_t val
= s
->st01
& ~(ST01_V_RETRACE
| ST01_DISP_ENABLE
);
256 if (r
->total_chars
) {
257 int cur_line
, cur_line_char
, cur_char
;
260 cur_tick
= qemu_get_clock(vm_clock
);
262 cur_char
= (cur_tick
/ r
->ticks_per_char
) % r
->total_chars
;
263 cur_line
= cur_char
/ r
->htotal
;
265 if (cur_line
>= r
->vstart
&& cur_line
<= r
->vend
) {
266 val
|= ST01_V_RETRACE
| ST01_DISP_ENABLE
;
268 cur_line_char
= cur_char
% r
->htotal
;
269 if (cur_line_char
>= r
->hstart
&& cur_line_char
<= r
->hend
) {
270 val
|= ST01_DISP_ENABLE
;
276 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
280 static uint8_t vga_dumb_retrace(VGAState
*s
)
282 return s
->st01
^ (ST01_V_RETRACE
| ST01_DISP_ENABLE
);
285 static uint32_t vga_ioport_read(void *opaque
, uint32_t addr
)
287 VGAState
*s
= opaque
;
290 /* check port range access depending on color/monochrome mode */
291 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
)) ||
292 (addr
>= 0x3d0 && addr
<= 0x3df && !(s
->msr
& MSR_COLOR_EMULATION
))) {
297 if (s
->ar_flip_flop
== 0) {
304 index
= s
->ar_index
& 0x1f;
317 val
= s
->sr
[s
->sr_index
];
319 printf("vga: read SR%x = 0x%02x\n", s
->sr_index
, val
);
326 val
= s
->dac_write_index
;
329 val
= s
->palette
[s
->dac_read_index
* 3 + s
->dac_sub_index
];
330 if (++s
->dac_sub_index
== 3) {
331 s
->dac_sub_index
= 0;
345 val
= s
->gr
[s
->gr_index
];
347 printf("vga: read GR%x = 0x%02x\n", s
->gr_index
, val
);
356 val
= s
->cr
[s
->cr_index
];
358 printf("vga: read CR%x = 0x%02x\n", s
->cr_index
, val
);
363 /* just toggle to fool polling */
364 val
= s
->st01
= s
->retrace(s
);
372 #if defined(DEBUG_VGA)
373 printf("VGA: read addr=0x%04x data=0x%02x\n", addr
, val
);
378 static void vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
380 VGAState
*s
= opaque
;
383 /* check port range access depending on color/monochrome mode */
384 if ((addr
>= 0x3b0 && addr
<= 0x3bf && (s
->msr
& MSR_COLOR_EMULATION
)) ||
385 (addr
>= 0x3d0 && addr
<= 0x3df && !(s
->msr
& MSR_COLOR_EMULATION
)))
389 printf("VGA: write addr=0x%04x data=0x%02x\n", addr
, val
);
394 if (s
->ar_flip_flop
== 0) {
398 index
= s
->ar_index
& 0x1f;
401 s
->ar
[index
] = val
& 0x3f;
404 s
->ar
[index
] = val
& ~0x10;
410 s
->ar
[index
] = val
& ~0xc0;
413 s
->ar
[index
] = val
& ~0xf0;
416 s
->ar
[index
] = val
& ~0xf0;
422 s
->ar_flip_flop
^= 1;
425 s
->msr
= val
& ~0x10;
426 s
->update_retrace_info(s
);
429 s
->sr_index
= val
& 7;
433 printf("vga: write SR%x = 0x%02x\n", s
->sr_index
, val
);
435 s
->sr
[s
->sr_index
] = val
& sr_mask
[s
->sr_index
];
436 if (s
->sr_index
== 1) s
->update_retrace_info(s
);
439 s
->dac_read_index
= val
;
440 s
->dac_sub_index
= 0;
444 s
->dac_write_index
= val
;
445 s
->dac_sub_index
= 0;
449 s
->dac_cache
[s
->dac_sub_index
] = val
;
450 if (++s
->dac_sub_index
== 3) {
451 memcpy(&s
->palette
[s
->dac_write_index
* 3], s
->dac_cache
, 3);
452 s
->dac_sub_index
= 0;
453 s
->dac_write_index
++;
457 s
->gr_index
= val
& 0x0f;
461 printf("vga: write GR%x = 0x%02x\n", s
->gr_index
, val
);
463 s
->gr
[s
->gr_index
] = val
& gr_mask
[s
->gr_index
];
472 printf("vga: write CR%x = 0x%02x\n", s
->cr_index
, val
);
474 /* handle CR0-7 protection */
475 if ((s
->cr
[0x11] & 0x80) && s
->cr_index
<= 7) {
476 /* can always write bit 4 of CR7 */
477 if (s
->cr_index
== 7)
478 s
->cr
[7] = (s
->cr
[7] & ~0x10) | (val
& 0x10);
481 switch(s
->cr_index
) {
482 case 0x01: /* horizontal display end */
487 case 0x12: /* vertical display end */
488 s
->cr
[s
->cr_index
] = val
;
491 s
->cr
[s
->cr_index
] = val
;
495 switch(s
->cr_index
) {
503 s
->update_retrace_info(s
);
514 #ifdef CONFIG_BOCHS_VBE
515 static uint32_t vbe_ioport_read_index(void *opaque
, uint32_t addr
)
517 VGAState
*s
= opaque
;
523 static uint32_t vbe_ioport_read_data(void *opaque
, uint32_t addr
)
525 VGAState
*s
= opaque
;
528 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
529 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_GETCAPS
) {
530 switch(s
->vbe_index
) {
531 /* XXX: do not hardcode ? */
532 case VBE_DISPI_INDEX_XRES
:
533 val
= VBE_DISPI_MAX_XRES
;
535 case VBE_DISPI_INDEX_YRES
:
536 val
= VBE_DISPI_MAX_YRES
;
538 case VBE_DISPI_INDEX_BPP
:
539 val
= VBE_DISPI_MAX_BPP
;
542 val
= s
->vbe_regs
[s
->vbe_index
];
546 val
= s
->vbe_regs
[s
->vbe_index
];
551 #ifdef DEBUG_BOCHS_VBE
552 printf("VBE: read index=0x%x val=0x%x\n", s
->vbe_index
, val
);
557 static void vbe_ioport_write_index(void *opaque
, uint32_t addr
, uint32_t val
)
559 VGAState
*s
= opaque
;
563 static void vbe_ioport_write_data(void *opaque
, uint32_t addr
, uint32_t val
)
565 VGAState
*s
= opaque
;
567 if (s
->vbe_index
<= VBE_DISPI_INDEX_NB
) {
568 #ifdef DEBUG_BOCHS_VBE
569 printf("VBE: write index=0x%x val=0x%x\n", s
->vbe_index
, val
);
571 switch(s
->vbe_index
) {
572 case VBE_DISPI_INDEX_ID
:
573 if (val
== VBE_DISPI_ID0
||
574 val
== VBE_DISPI_ID1
||
575 val
== VBE_DISPI_ID2
||
576 val
== VBE_DISPI_ID3
||
577 val
== VBE_DISPI_ID4
) {
578 s
->vbe_regs
[s
->vbe_index
] = val
;
581 case VBE_DISPI_INDEX_XRES
:
582 if ((val
<= VBE_DISPI_MAX_XRES
) && ((val
& 7) == 0)) {
583 s
->vbe_regs
[s
->vbe_index
] = val
;
586 case VBE_DISPI_INDEX_YRES
:
587 if (val
<= VBE_DISPI_MAX_YRES
) {
588 s
->vbe_regs
[s
->vbe_index
] = val
;
591 case VBE_DISPI_INDEX_BPP
:
594 if (val
== 4 || val
== 8 || val
== 15 ||
595 val
== 16 || val
== 24 || val
== 32) {
596 s
->vbe_regs
[s
->vbe_index
] = val
;
599 case VBE_DISPI_INDEX_BANK
:
600 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
601 val
&= (s
->vbe_bank_mask
>> 2);
603 val
&= s
->vbe_bank_mask
;
605 s
->vbe_regs
[s
->vbe_index
] = val
;
606 s
->bank_offset
= (val
<< 16);
608 case VBE_DISPI_INDEX_ENABLE
:
609 if ((val
& VBE_DISPI_ENABLED
) &&
610 !(s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
)) {
611 int h
, shift_control
;
613 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] =
614 s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
615 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] =
616 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
617 s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
] = 0;
618 s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
] = 0;
620 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
621 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 1;
623 s
->vbe_line_offset
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] *
624 ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
625 s
->vbe_start_addr
= 0;
627 /* clear the screen (should be done in BIOS) */
628 if (!(val
& VBE_DISPI_NOCLEARMEM
)) {
629 memset(s
->vram_ptr
, 0,
630 s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] * s
->vbe_line_offset
);
633 /* we initialize the VGA graphic mode (should be done
635 s
->gr
[0x06] = (s
->gr
[0x06] & ~0x0c) | 0x05; /* graphic mode + memory map 1 */
636 s
->cr
[0x17] |= 3; /* no CGA modes */
637 s
->cr
[0x13] = s
->vbe_line_offset
>> 3;
639 s
->cr
[0x01] = (s
->vbe_regs
[VBE_DISPI_INDEX_XRES
] >> 3) - 1;
640 /* height (only meaningful if < 1024) */
641 h
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
] - 1;
643 s
->cr
[0x07] = (s
->cr
[0x07] & ~0x42) |
644 ((h
>> 7) & 0x02) | ((h
>> 3) & 0x40);
645 /* line compare to 1023 */
650 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4) {
652 s
->sr
[0x01] &= ~8; /* no double line */
655 s
->sr
[4] |= 0x08; /* set chain 4 mode */
656 s
->sr
[2] |= 0x0f; /* activate all planes */
658 s
->gr
[0x05] = (s
->gr
[0x05] & ~0x60) | (shift_control
<< 5);
659 s
->cr
[0x09] &= ~0x9f; /* no double scan */
661 /* XXX: the bios should do that */
664 s
->dac_8bit
= (val
& VBE_DISPI_8BIT_DAC
) > 0;
665 s
->vbe_regs
[s
->vbe_index
] = val
;
667 case VBE_DISPI_INDEX_VIRT_WIDTH
:
669 int w
, h
, line_offset
;
671 if (val
< s
->vbe_regs
[VBE_DISPI_INDEX_XRES
])
674 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
675 line_offset
= w
>> 1;
677 line_offset
= w
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
678 h
= s
->vram_size
/ line_offset
;
679 /* XXX: support weird bochs semantics ? */
680 if (h
< s
->vbe_regs
[VBE_DISPI_INDEX_YRES
])
682 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_WIDTH
] = w
;
683 s
->vbe_regs
[VBE_DISPI_INDEX_VIRT_HEIGHT
] = h
;
684 s
->vbe_line_offset
= line_offset
;
687 case VBE_DISPI_INDEX_X_OFFSET
:
688 case VBE_DISPI_INDEX_Y_OFFSET
:
691 s
->vbe_regs
[s
->vbe_index
] = val
;
692 s
->vbe_start_addr
= s
->vbe_line_offset
* s
->vbe_regs
[VBE_DISPI_INDEX_Y_OFFSET
];
693 x
= s
->vbe_regs
[VBE_DISPI_INDEX_X_OFFSET
];
694 if (s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] == 4)
695 s
->vbe_start_addr
+= x
>> 1;
697 s
->vbe_start_addr
+= x
* ((s
->vbe_regs
[VBE_DISPI_INDEX_BPP
] + 7) >> 3);
698 s
->vbe_start_addr
>>= 2;
708 /* called for accesses between 0xa0000 and 0xc0000 */
709 uint32_t vga_mem_readb(void *opaque
, target_phys_addr_t addr
)
711 VGAState
*s
= opaque
;
712 int memory_map_mode
, plane
;
715 /* convert to VGA memory offset */
716 memory_map_mode
= (s
->gr
[6] >> 2) & 3;
718 switch(memory_map_mode
) {
724 addr
+= s
->bank_offset
;
739 if (s
->sr
[4] & 0x08) {
740 /* chain 4 mode : simplest access */
741 ret
= s
->vram_ptr
[addr
];
742 } else if (s
->gr
[5] & 0x10) {
743 /* odd/even mode (aka text mode mapping) */
744 plane
= (s
->gr
[4] & 2) | (addr
& 1);
745 ret
= s
->vram_ptr
[((addr
& ~1) << 1) | plane
];
747 /* standard VGA latched access */
748 s
->latch
= ((uint32_t *)s
->vram_ptr
)[addr
];
750 if (!(s
->gr
[5] & 0x08)) {
753 ret
= GET_PLANE(s
->latch
, plane
);
756 ret
= (s
->latch
^ mask16
[s
->gr
[2]]) & mask16
[s
->gr
[7]];
765 static uint32_t vga_mem_readw(void *opaque
, target_phys_addr_t addr
)
768 #ifdef TARGET_WORDS_BIGENDIAN
769 v
= vga_mem_readb(opaque
, addr
) << 8;
770 v
|= vga_mem_readb(opaque
, addr
+ 1);
772 v
= vga_mem_readb(opaque
, addr
);
773 v
|= vga_mem_readb(opaque
, addr
+ 1) << 8;
778 static uint32_t vga_mem_readl(void *opaque
, target_phys_addr_t addr
)
781 #ifdef TARGET_WORDS_BIGENDIAN
782 v
= vga_mem_readb(opaque
, addr
) << 24;
783 v
|= vga_mem_readb(opaque
, addr
+ 1) << 16;
784 v
|= vga_mem_readb(opaque
, addr
+ 2) << 8;
785 v
|= vga_mem_readb(opaque
, addr
+ 3);
787 v
= vga_mem_readb(opaque
, addr
);
788 v
|= vga_mem_readb(opaque
, addr
+ 1) << 8;
789 v
|= vga_mem_readb(opaque
, addr
+ 2) << 16;
790 v
|= vga_mem_readb(opaque
, addr
+ 3) << 24;
795 /* called for accesses between 0xa0000 and 0xc0000 */
796 void vga_mem_writeb(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
798 VGAState
*s
= opaque
;
799 int memory_map_mode
, plane
, write_mode
, b
, func_select
, mask
;
800 uint32_t write_mask
, bit_mask
, set_mask
;
803 printf("vga: [0x%x] = 0x%02x\n", addr
, val
);
805 /* convert to VGA memory offset */
806 memory_map_mode
= (s
->gr
[6] >> 2) & 3;
808 switch(memory_map_mode
) {
814 addr
+= s
->bank_offset
;
829 if (s
->sr
[4] & 0x08) {
830 /* chain 4 mode : simplest access */
833 if (s
->sr
[2] & mask
) {
834 s
->vram_ptr
[addr
] = val
;
836 printf("vga: chain4: [0x%x]\n", addr
);
838 s
->plane_updated
|= mask
; /* only used to detect font change */
839 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
841 } else if (s
->gr
[5] & 0x10) {
842 /* odd/even mode (aka text mode mapping) */
843 plane
= (s
->gr
[4] & 2) | (addr
& 1);
845 if (s
->sr
[2] & mask
) {
846 addr
= ((addr
& ~1) << 1) | plane
;
847 s
->vram_ptr
[addr
] = val
;
849 printf("vga: odd/even: [0x%x]\n", addr
);
851 s
->plane_updated
|= mask
; /* only used to detect font change */
852 cpu_physical_memory_set_dirty(s
->vram_offset
+ addr
);
855 /* standard VGA latched access */
856 write_mode
= s
->gr
[5] & 3;
862 val
= ((val
>> b
) | (val
<< (8 - b
))) & 0xff;
866 /* apply set/reset mask */
867 set_mask
= mask16
[s
->gr
[1]];
868 val
= (val
& ~set_mask
) | (mask16
[s
->gr
[0]] & set_mask
);
875 val
= mask16
[val
& 0x0f];
881 val
= (val
>> b
) | (val
<< (8 - b
));
883 bit_mask
= s
->gr
[8] & val
;
884 val
= mask16
[s
->gr
[0]];
888 /* apply logical operation */
889 func_select
= s
->gr
[3] >> 3;
890 switch(func_select
) {
910 bit_mask
|= bit_mask
<< 8;
911 bit_mask
|= bit_mask
<< 16;
912 val
= (val
& bit_mask
) | (s
->latch
& ~bit_mask
);
915 /* mask data according to sr[2] */
917 s
->plane_updated
|= mask
; /* only used to detect font change */
918 write_mask
= mask16
[mask
];
919 ((uint32_t *)s
->vram_ptr
)[addr
] =
920 (((uint32_t *)s
->vram_ptr
)[addr
] & ~write_mask
) |
923 printf("vga: latch: [0x%x] mask=0x%08x val=0x%08x\n",
924 addr
* 4, write_mask
, val
);
926 cpu_physical_memory_set_dirty(s
->vram_offset
+ (addr
<< 2));
930 static void vga_mem_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
932 #ifdef TARGET_WORDS_BIGENDIAN
933 vga_mem_writeb(opaque
, addr
, (val
>> 8) & 0xff);
934 vga_mem_writeb(opaque
, addr
+ 1, val
& 0xff);
936 vga_mem_writeb(opaque
, addr
, val
& 0xff);
937 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
941 static void vga_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
943 #ifdef TARGET_WORDS_BIGENDIAN
944 vga_mem_writeb(opaque
, addr
, (val
>> 24) & 0xff);
945 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 16) & 0xff);
946 vga_mem_writeb(opaque
, addr
+ 2, (val
>> 8) & 0xff);
947 vga_mem_writeb(opaque
, addr
+ 3, val
& 0xff);
949 vga_mem_writeb(opaque
, addr
, val
& 0xff);
950 vga_mem_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
951 vga_mem_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
952 vga_mem_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
956 typedef void vga_draw_glyph8_func(uint8_t *d
, int linesize
,
957 const uint8_t *font_ptr
, int h
,
958 uint32_t fgcol
, uint32_t bgcol
);
959 typedef void vga_draw_glyph9_func(uint8_t *d
, int linesize
,
960 const uint8_t *font_ptr
, int h
,
961 uint32_t fgcol
, uint32_t bgcol
, int dup9
);
962 typedef void vga_draw_line_func(VGAState
*s1
, uint8_t *d
,
963 const uint8_t *s
, int width
);
966 #include "vga_template.h"
969 #include "vga_template.h"
973 #include "vga_template.h"
976 #include "vga_template.h"
980 #include "vga_template.h"
983 #include "vga_template.h"
987 #include "vga_template.h"
989 static unsigned int rgb_to_pixel8_dup(unsigned int r
, unsigned int g
, unsigned b
)
992 col
= rgb_to_pixel8(r
, g
, b
);
998 static unsigned int rgb_to_pixel15_dup(unsigned int r
, unsigned int g
, unsigned b
)
1001 col
= rgb_to_pixel15(r
, g
, b
);
1006 static unsigned int rgb_to_pixel15bgr_dup(unsigned int r
, unsigned int g
,
1010 col
= rgb_to_pixel15bgr(r
, g
, b
);
1015 static unsigned int rgb_to_pixel16_dup(unsigned int r
, unsigned int g
, unsigned b
)
1018 col
= rgb_to_pixel16(r
, g
, b
);
1023 static unsigned int rgb_to_pixel16bgr_dup(unsigned int r
, unsigned int g
,
1027 col
= rgb_to_pixel16bgr(r
, g
, b
);
1032 static unsigned int rgb_to_pixel32_dup(unsigned int r
, unsigned int g
, unsigned b
)
1035 col
= rgb_to_pixel32(r
, g
, b
);
1039 static unsigned int rgb_to_pixel32bgr_dup(unsigned int r
, unsigned int g
, unsigned b
)
1042 col
= rgb_to_pixel32bgr(r
, g
, b
);
1046 /* return true if the palette was modified */
1047 static int update_palette16(VGAState
*s
)
1050 uint32_t v
, col
, *palette
;
1053 palette
= s
->last_palette
;
1054 for(i
= 0; i
< 16; i
++) {
1056 if (s
->ar
[0x10] & 0x80)
1057 v
= ((s
->ar
[0x14] & 0xf) << 4) | (v
& 0xf);
1059 v
= ((s
->ar
[0x14] & 0xc) << 4) | (v
& 0x3f);
1061 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1062 c6_to_8(s
->palette
[v
+ 1]),
1063 c6_to_8(s
->palette
[v
+ 2]));
1064 if (col
!= palette
[i
]) {
1072 /* return true if the palette was modified */
1073 static int update_palette256(VGAState
*s
)
1076 uint32_t v
, col
, *palette
;
1079 palette
= s
->last_palette
;
1081 for(i
= 0; i
< 256; i
++) {
1083 col
= s
->rgb_to_pixel(s
->palette
[v
],
1087 col
= s
->rgb_to_pixel(c6_to_8(s
->palette
[v
]),
1088 c6_to_8(s
->palette
[v
+ 1]),
1089 c6_to_8(s
->palette
[v
+ 2]));
1091 if (col
!= palette
[i
]) {
1100 static void vga_get_offsets(VGAState
*s
,
1101 uint32_t *pline_offset
,
1102 uint32_t *pstart_addr
,
1103 uint32_t *pline_compare
)
1105 uint32_t start_addr
, line_offset
, line_compare
;
1106 #ifdef CONFIG_BOCHS_VBE
1107 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1108 line_offset
= s
->vbe_line_offset
;
1109 start_addr
= s
->vbe_start_addr
;
1110 line_compare
= 65535;
1114 /* compute line_offset in bytes */
1115 line_offset
= s
->cr
[0x13];
1118 /* starting address */
1119 start_addr
= s
->cr
[0x0d] | (s
->cr
[0x0c] << 8);
1122 line_compare
= s
->cr
[0x18] |
1123 ((s
->cr
[0x07] & 0x10) << 4) |
1124 ((s
->cr
[0x09] & 0x40) << 3);
1126 *pline_offset
= line_offset
;
1127 *pstart_addr
= start_addr
;
1128 *pline_compare
= line_compare
;
1131 /* update start_addr and line_offset. Return TRUE if modified */
1132 static int update_basic_params(VGAState
*s
)
1135 uint32_t start_addr
, line_offset
, line_compare
;
1139 s
->get_offsets(s
, &line_offset
, &start_addr
, &line_compare
);
1141 if (line_offset
!= s
->line_offset
||
1142 start_addr
!= s
->start_addr
||
1143 line_compare
!= s
->line_compare
) {
1144 s
->line_offset
= line_offset
;
1145 s
->start_addr
= start_addr
;
1146 s
->line_compare
= line_compare
;
1154 static inline int get_depth_index(DisplayState
*s
)
1156 switch(ds_get_bits_per_pixel(s
)) {
1165 if (is_surface_bgr(s
->surface
))
1172 static vga_draw_glyph8_func
*vga_draw_glyph8_table
[NB_DEPTHS
] = {
1182 static vga_draw_glyph8_func
*vga_draw_glyph16_table
[NB_DEPTHS
] = {
1184 vga_draw_glyph16_16
,
1185 vga_draw_glyph16_16
,
1186 vga_draw_glyph16_32
,
1187 vga_draw_glyph16_32
,
1188 vga_draw_glyph16_16
,
1189 vga_draw_glyph16_16
,
1192 static vga_draw_glyph9_func
*vga_draw_glyph9_table
[NB_DEPTHS
] = {
1202 static const uint8_t cursor_glyph
[32 * 4] = {
1203 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1204 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1205 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1206 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1207 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1208 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1209 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1210 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1211 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1212 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1213 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1214 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1215 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1216 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1217 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1218 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1221 static void vga_get_text_resolution(VGAState
*s
, int *pwidth
, int *pheight
,
1222 int *pcwidth
, int *pcheight
)
1224 int width
, cwidth
, height
, cheight
;
1226 /* total width & height */
1227 cheight
= (s
->cr
[9] & 0x1f) + 1;
1229 if (!(s
->sr
[1] & 0x01))
1231 if (s
->sr
[1] & 0x08)
1232 cwidth
= 16; /* NOTE: no 18 pixel wide */
1233 width
= (s
->cr
[0x01] + 1);
1234 if (s
->cr
[0x06] == 100) {
1235 /* ugly hack for CGA 160x100x16 - explain me the logic */
1238 height
= s
->cr
[0x12] |
1239 ((s
->cr
[0x07] & 0x02) << 7) |
1240 ((s
->cr
[0x07] & 0x40) << 3);
1241 height
= (height
+ 1) / cheight
;
1247 *pcheight
= cheight
;
1250 typedef unsigned int rgb_to_pixel_dup_func(unsigned int r
, unsigned int g
, unsigned b
);
1252 static rgb_to_pixel_dup_func
*rgb_to_pixel_dup_table
[NB_DEPTHS
] = {
1257 rgb_to_pixel32bgr_dup
,
1258 rgb_to_pixel15bgr_dup
,
1259 rgb_to_pixel16bgr_dup
,
1270 static void vga_draw_text(VGAState
*s
, int full_update
)
1272 int cx
, cy
, cheight
, cw
, ch
, cattr
, height
, width
, ch_attr
;
1273 int cx_min
, cx_max
, linesize
, x_incr
;
1274 uint32_t offset
, fgcol
, bgcol
, v
, cursor_offset
;
1275 uint8_t *d1
, *d
, *src
, *s1
, *dest
, *cursor_ptr
;
1276 const uint8_t *font_ptr
, *font_base
[2];
1277 int dup9
, line_offset
, depth_index
;
1279 uint32_t *ch_attr_ptr
;
1280 vga_draw_glyph8_func
*vga_draw_glyph8
;
1281 vga_draw_glyph9_func
*vga_draw_glyph9
;
1283 vga_dirty_log_stop(s
);
1285 /* compute font data address (in plane 2) */
1287 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1288 if (offset
!= s
->font_offsets
[0]) {
1289 s
->font_offsets
[0] = offset
;
1292 font_base
[0] = s
->vram_ptr
+ offset
;
1294 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1295 font_base
[1] = s
->vram_ptr
+ offset
;
1296 if (offset
!= s
->font_offsets
[1]) {
1297 s
->font_offsets
[1] = offset
;
1300 if (s
->plane_updated
& (1 << 2)) {
1301 /* if the plane 2 was modified since the last display, it
1302 indicates the font may have been modified */
1303 s
->plane_updated
= 0;
1306 full_update
|= update_basic_params(s
);
1308 line_offset
= s
->line_offset
;
1309 s1
= s
->vram_ptr
+ (s
->start_addr
* 4);
1311 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1312 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1313 if ((height
* width
) > CH_ATTR_SIZE
) {
1314 /* better than nothing: exit if transient size is too big */
1318 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1319 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1320 s
->last_scr_width
= width
* cw
;
1321 s
->last_scr_height
= height
* cheight
;
1322 qemu_console_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
1324 s
->last_width
= width
;
1325 s
->last_height
= height
;
1326 s
->last_ch
= cheight
;
1331 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1332 full_update
|= update_palette16(s
);
1333 palette
= s
->last_palette
;
1334 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1336 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
1337 if (cursor_offset
!= s
->cursor_offset
||
1338 s
->cr
[0xa] != s
->cursor_start
||
1339 s
->cr
[0xb] != s
->cursor_end
) {
1340 /* if the cursor position changed, we update the old and new
1342 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1343 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1344 if (cursor_offset
< CH_ATTR_SIZE
)
1345 s
->last_ch_attr
[cursor_offset
] = -1;
1346 s
->cursor_offset
= cursor_offset
;
1347 s
->cursor_start
= s
->cr
[0xa];
1348 s
->cursor_end
= s
->cr
[0xb];
1350 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1352 depth_index
= get_depth_index(s
->ds
);
1354 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1356 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1357 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1359 dest
= ds_get_data(s
->ds
);
1360 linesize
= ds_get_linesize(s
->ds
);
1361 ch_attr_ptr
= s
->last_ch_attr
;
1362 for(cy
= 0; cy
< height
; cy
++) {
1367 for(cx
= 0; cx
< width
; cx
++) {
1368 ch_attr
= *(uint16_t *)src
;
1369 if (full_update
|| ch_attr
!= *ch_attr_ptr
) {
1374 *ch_attr_ptr
= ch_attr
;
1375 #ifdef WORDS_BIGENDIAN
1377 cattr
= ch_attr
& 0xff;
1379 ch
= ch_attr
& 0xff;
1380 cattr
= ch_attr
>> 8;
1382 font_ptr
= font_base
[(cattr
>> 3) & 1];
1383 font_ptr
+= 32 * 4 * ch
;
1384 bgcol
= palette
[cattr
>> 4];
1385 fgcol
= palette
[cattr
& 0x0f];
1387 vga_draw_glyph8(d1
, linesize
,
1388 font_ptr
, cheight
, fgcol
, bgcol
);
1391 if (ch
>= 0xb0 && ch
<= 0xdf && (s
->ar
[0x10] & 0x04))
1393 vga_draw_glyph9(d1
, linesize
,
1394 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1396 if (src
== cursor_ptr
&&
1397 !(s
->cr
[0x0a] & 0x20)) {
1398 int line_start
, line_last
, h
;
1399 /* draw the cursor */
1400 line_start
= s
->cr
[0x0a] & 0x1f;
1401 line_last
= s
->cr
[0x0b] & 0x1f;
1402 /* XXX: check that */
1403 if (line_last
> cheight
- 1)
1404 line_last
= cheight
- 1;
1405 if (line_last
>= line_start
&& line_start
< cheight
) {
1406 h
= line_last
- line_start
+ 1;
1407 d
= d1
+ linesize
* line_start
;
1409 vga_draw_glyph8(d
, linesize
,
1410 cursor_glyph
, h
, fgcol
, bgcol
);
1412 vga_draw_glyph9(d
, linesize
,
1413 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1423 dpy_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1424 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1426 dest
+= linesize
* cheight
;
1445 static vga_draw_line_func
*vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1455 vga_draw_line2d2_16
,
1456 vga_draw_line2d2_16
,
1457 vga_draw_line2d2_32
,
1458 vga_draw_line2d2_32
,
1459 vga_draw_line2d2_16
,
1460 vga_draw_line2d2_16
,
1471 vga_draw_line4d2_16
,
1472 vga_draw_line4d2_16
,
1473 vga_draw_line4d2_32
,
1474 vga_draw_line4d2_32
,
1475 vga_draw_line4d2_16
,
1476 vga_draw_line4d2_16
,
1479 vga_draw_line8d2_16
,
1480 vga_draw_line8d2_16
,
1481 vga_draw_line8d2_32
,
1482 vga_draw_line8d2_32
,
1483 vga_draw_line8d2_16
,
1484 vga_draw_line8d2_16
,
1498 vga_draw_line15_32bgr
,
1499 vga_draw_line15_15bgr
,
1500 vga_draw_line15_16bgr
,
1506 vga_draw_line16_32bgr
,
1507 vga_draw_line16_15bgr
,
1508 vga_draw_line16_16bgr
,
1514 vga_draw_line24_32bgr
,
1515 vga_draw_line24_15bgr
,
1516 vga_draw_line24_16bgr
,
1522 vga_draw_line32_32bgr
,
1523 vga_draw_line32_15bgr
,
1524 vga_draw_line32_16bgr
,
1527 static int vga_get_bpp(VGAState
*s
)
1530 #ifdef CONFIG_BOCHS_VBE
1531 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1532 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1541 static void vga_get_resolution(VGAState
*s
, int *pwidth
, int *pheight
)
1545 #ifdef CONFIG_BOCHS_VBE
1546 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1547 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1548 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1552 width
= (s
->cr
[0x01] + 1) * 8;
1553 height
= s
->cr
[0x12] |
1554 ((s
->cr
[0x07] & 0x02) << 7) |
1555 ((s
->cr
[0x07] & 0x40) << 3);
1556 height
= (height
+ 1);
1562 void vga_invalidate_scanlines(VGAState
*s
, int y1
, int y2
)
1565 if (y1
>= VGA_MAX_HEIGHT
)
1567 if (y2
>= VGA_MAX_HEIGHT
)
1568 y2
= VGA_MAX_HEIGHT
;
1569 for(y
= y1
; y
< y2
; y
++) {
1570 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1574 static void vga_sync_dirty_bitmap(VGAState
*s
)
1577 cpu_physical_sync_dirty_bitmap(s
->map_addr
, s
->map_end
);
1579 if (s
->lfb_vram_mapped
) {
1580 cpu_physical_sync_dirty_bitmap(isa_mem_base
+ 0xa0000, 0xa8000);
1581 cpu_physical_sync_dirty_bitmap(isa_mem_base
+ 0xa8000, 0xb0000);
1583 vga_dirty_log_start(s
);
1589 static void vga_draw_graphic(VGAState
*s
, int full_update
)
1591 int y1
, y
, update
, page_min
, page_max
, linesize
, y_start
, double_scan
, mask
, depth
;
1592 int width
, height
, shift_control
, line_offset
, page0
, page1
, bwidth
, bits
;
1593 int disp_width
, multi_scan
, multi_run
;
1595 uint32_t v
, addr1
, addr
;
1596 vga_draw_line_func
*vga_draw_line
;
1598 full_update
|= update_basic_params(s
);
1601 vga_sync_dirty_bitmap(s
);
1603 s
->get_resolution(s
, &width
, &height
);
1606 shift_control
= (s
->gr
[0x05] >> 5) & 3;
1607 double_scan
= (s
->cr
[0x09] >> 7);
1608 if (shift_control
!= 1) {
1609 multi_scan
= (((s
->cr
[0x09] & 0x1f) + 1) << double_scan
) - 1;
1611 /* in CGA modes, multi_scan is ignored */
1612 /* XXX: is it correct ? */
1613 multi_scan
= double_scan
;
1615 multi_run
= multi_scan
;
1616 if (shift_control
!= s
->shift_control
||
1617 double_scan
!= s
->double_scan
) {
1619 s
->shift_control
= shift_control
;
1620 s
->double_scan
= double_scan
;
1623 if (shift_control
== 0) {
1624 if (s
->sr
[0x01] & 8) {
1627 } else if (shift_control
== 1) {
1628 if (s
->sr
[0x01] & 8) {
1633 depth
= s
->get_bpp(s
);
1634 if (s
->line_offset
!= s
->last_line_offset
||
1635 disp_width
!= s
->last_width
||
1636 height
!= s
->last_height
||
1637 s
->last_depth
!= depth
) {
1638 #if defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1639 if (depth
== 16 || depth
== 32) {
1643 qemu_free_displaysurface(s
->ds
);
1644 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
, height
, depth
,
1646 s
->vram_ptr
+ (s
->start_addr
* 4));
1647 #if defined(WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
1648 s
->ds
->surface
->pf
= qemu_different_endianness_pixelformat(depth
);
1652 qemu_console_resize(s
->ds
, disp_width
, height
);
1654 s
->last_scr_width
= disp_width
;
1655 s
->last_scr_height
= height
;
1656 s
->last_width
= disp_width
;
1657 s
->last_height
= height
;
1658 s
->last_line_offset
= s
->line_offset
;
1659 s
->last_depth
= depth
;
1661 } else if (is_buffer_shared(s
->ds
->surface
) &&
1662 (full_update
|| s
->ds
->surface
->data
!= s
->vram_ptr
+ (s
->start_addr
* 4))) {
1663 s
->ds
->surface
->data
= s
->vram_ptr
+ (s
->start_addr
* 4);
1668 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1670 if (shift_control
== 0) {
1671 full_update
|= update_palette16(s
);
1672 if (s
->sr
[0x01] & 8) {
1673 v
= VGA_DRAW_LINE4D2
;
1678 } else if (shift_control
== 1) {
1679 full_update
|= update_palette16(s
);
1680 if (s
->sr
[0x01] & 8) {
1681 v
= VGA_DRAW_LINE2D2
;
1687 switch(s
->get_bpp(s
)) {
1690 full_update
|= update_palette256(s
);
1691 v
= VGA_DRAW_LINE8D2
;
1695 full_update
|= update_palette256(s
);
1700 v
= VGA_DRAW_LINE15
;
1704 v
= VGA_DRAW_LINE16
;
1708 v
= VGA_DRAW_LINE24
;
1712 v
= VGA_DRAW_LINE32
;
1717 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1719 if (!is_buffer_shared(s
->ds
->surface
) && s
->cursor_invalidate
)
1720 s
->cursor_invalidate(s
);
1722 line_offset
= s
->line_offset
;
1724 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",
1725 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[0x17], s
->line_compare
, s
->sr
[0x01]);
1727 addr1
= (s
->start_addr
* 4);
1728 bwidth
= (width
* bits
+ 7) / 8;
1730 page_min
= 0x7fffffff;
1732 d
= ds_get_data(s
->ds
);
1733 linesize
= ds_get_linesize(s
->ds
);
1735 for(y
= 0; y
< height
; y
++) {
1737 if (!(s
->cr
[0x17] & 1)) {
1739 /* CGA compatibility handling */
1740 shift
= 14 + ((s
->cr
[0x17] >> 6) & 1);
1741 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1743 if (!(s
->cr
[0x17] & 2)) {
1744 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1746 page0
= s
->vram_offset
+ (addr
& TARGET_PAGE_MASK
);
1747 page1
= s
->vram_offset
+ ((addr
+ bwidth
- 1) & TARGET_PAGE_MASK
);
1748 update
= full_update
|
1749 cpu_physical_memory_get_dirty(page0
, VGA_DIRTY_FLAG
) |
1750 cpu_physical_memory_get_dirty(page1
, VGA_DIRTY_FLAG
);
1751 if ((page1
- page0
) > TARGET_PAGE_SIZE
) {
1752 /* if wide line, can use another page */
1753 update
|= cpu_physical_memory_get_dirty(page0
+ TARGET_PAGE_SIZE
,
1756 /* explicit invalidation for the hardware cursor */
1757 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1761 if (page0
< page_min
)
1763 if (page1
> page_max
)
1765 if (!(is_buffer_shared(s
->ds
->surface
))) {
1766 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1767 if (s
->cursor_draw_line
)
1768 s
->cursor_draw_line(s
, d
, y
);
1772 /* flush to display */
1773 dpy_update(s
->ds
, 0, y_start
,
1774 disp_width
, y
- y_start
);
1779 mask
= (s
->cr
[0x17] & 3) ^ 3;
1780 if ((y1
& mask
) == mask
)
1781 addr1
+= line_offset
;
1783 multi_run
= multi_scan
;
1787 /* line compare acts on the displayed lines */
1788 if (y
== s
->line_compare
)
1793 /* flush to display */
1794 dpy_update(s
->ds
, 0, y_start
,
1795 disp_width
, y
- y_start
);
1797 /* reset modified pages */
1798 if (page_max
!= -1) {
1799 cpu_physical_memory_reset_dirty(page_min
, page_max
+ TARGET_PAGE_SIZE
,
1802 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1805 static void vga_draw_blank(VGAState
*s
, int full_update
)
1812 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1814 vga_dirty_log_stop(s
);
1817 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1818 if (ds_get_bits_per_pixel(s
->ds
) == 8)
1819 val
= s
->rgb_to_pixel(0, 0, 0);
1822 w
= s
->last_scr_width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1823 d
= ds_get_data(s
->ds
);
1824 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1826 d
+= ds_get_linesize(s
->ds
);
1828 dpy_update(s
->ds
, 0, 0,
1829 s
->last_scr_width
, s
->last_scr_height
);
1832 #define GMODE_TEXT 0
1833 #define GMODE_GRAPH 1
1834 #define GMODE_BLANK 2
1836 static void vga_update_display(void *opaque
)
1838 VGAState
*s
= (VGAState
*)opaque
;
1839 int full_update
, graphic_mode
;
1841 if (ds_get_bits_per_pixel(s
->ds
) == 0) {
1845 if (!(s
->ar_index
& 0x20)) {
1846 graphic_mode
= GMODE_BLANK
;
1848 graphic_mode
= s
->gr
[6] & 1;
1850 if (graphic_mode
!= s
->graphic_mode
) {
1851 s
->graphic_mode
= graphic_mode
;
1854 switch(graphic_mode
) {
1856 vga_draw_text(s
, full_update
);
1862 vga_draw_graphic(s
, full_update
);
1866 vga_draw_blank(s
, full_update
);
1872 /* force a full display refresh */
1873 static void vga_invalidate_display(void *opaque
)
1875 VGAState
*s
= (VGAState
*)opaque
;
1878 s
->last_height
= -1;
1881 void vga_reset(void *opaque
)
1883 VGAState
*s
= (VGAState
*) opaque
;
1889 s
->lfb_vram_mapped
= 0;
1893 memset(s
->sr
, '\0', sizeof(s
->sr
));
1895 memset(s
->gr
, '\0', sizeof(s
->gr
));
1897 memset(s
->ar
, '\0', sizeof(s
->ar
));
1898 s
->ar_flip_flop
= 0;
1900 memset(s
->cr
, '\0', sizeof(s
->cr
));
1906 s
->dac_sub_index
= 0;
1907 s
->dac_read_index
= 0;
1908 s
->dac_write_index
= 0;
1909 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1911 memset(s
->palette
, '\0', sizeof(s
->palette
));
1913 #ifdef CONFIG_BOCHS_VBE
1915 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1916 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID0
;
1917 s
->vbe_start_addr
= 0;
1918 s
->vbe_line_offset
= 0;
1919 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1921 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1922 s
->graphic_mode
= -1; /* force full update */
1923 s
->shift_control
= 0;
1926 s
->line_compare
= 0;
1928 s
->plane_updated
= 0;
1933 s
->last_scr_width
= 0;
1934 s
->last_scr_height
= 0;
1935 s
->cursor_start
= 0;
1937 s
->cursor_offset
= 0;
1938 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1939 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1940 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1941 switch (vga_retrace_method
) {
1942 case VGA_RETRACE_DUMB
:
1944 case VGA_RETRACE_PRECISE
:
1945 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1950 #define TEXTMODE_X(x) ((x) % width)
1951 #define TEXTMODE_Y(x) ((x) / width)
1952 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1953 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1954 /* relay text rendering to the display driver
1955 * instead of doing a full vga_update_display() */
1956 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1958 VGAState
*s
= (VGAState
*) opaque
;
1959 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1960 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1962 console_ch_t
*dst
, val
;
1963 char msg_buffer
[80];
1964 int full_update
= 0;
1966 if (!(s
->ar_index
& 0x20)) {
1967 graphic_mode
= GMODE_BLANK
;
1969 graphic_mode
= s
->gr
[6] & 1;
1971 if (graphic_mode
!= s
->graphic_mode
) {
1972 s
->graphic_mode
= graphic_mode
;
1975 if (s
->last_width
== -1) {
1980 switch (graphic_mode
) {
1982 /* TODO: update palette */
1983 full_update
|= update_basic_params(s
);
1985 /* total width & height */
1986 cheight
= (s
->cr
[9] & 0x1f) + 1;
1988 if (!(s
->sr
[1] & 0x01))
1990 if (s
->sr
[1] & 0x08)
1991 cw
= 16; /* NOTE: no 18 pixel wide */
1992 width
= (s
->cr
[0x01] + 1);
1993 if (s
->cr
[0x06] == 100) {
1994 /* ugly hack for CGA 160x100x16 - explain me the logic */
1997 height
= s
->cr
[0x12] |
1998 ((s
->cr
[0x07] & 0x02) << 7) |
1999 ((s
->cr
[0x07] & 0x40) << 3);
2000 height
= (height
+ 1) / cheight
;
2003 size
= (height
* width
);
2004 if (size
> CH_ATTR_SIZE
) {
2008 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2013 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2014 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2015 s
->last_scr_width
= width
* cw
;
2016 s
->last_scr_height
= height
* cheight
;
2017 s
->ds
->surface
->width
= width
;
2018 s
->ds
->surface
->height
= height
;
2020 s
->last_width
= width
;
2021 s
->last_height
= height
;
2022 s
->last_ch
= cheight
;
2027 /* Update "hardware" cursor */
2028 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
2029 if (cursor_offset
!= s
->cursor_offset
||
2030 s
->cr
[0xa] != s
->cursor_start
||
2031 s
->cr
[0xb] != s
->cursor_end
|| full_update
) {
2032 cursor_visible
= !(s
->cr
[0xa] & 0x20);
2033 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2035 TEXTMODE_X(cursor_offset
),
2036 TEXTMODE_Y(cursor_offset
));
2038 dpy_cursor(s
->ds
, -1, -1);
2039 s
->cursor_offset
= cursor_offset
;
2040 s
->cursor_start
= s
->cr
[0xa];
2041 s
->cursor_end
= s
->cr
[0xb];
2044 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2048 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2049 console_write_ch(dst
, VMEM2CHTYPE(*src
));
2051 dpy_update(s
->ds
, 0, 0, width
, height
);
2055 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2056 console_write_ch(&val
, VMEM2CHTYPE(*src
));
2064 for (; i
< size
; src
++, dst
++, i
++) {
2065 console_write_ch(&val
, VMEM2CHTYPE(*src
));
2072 if (c_min
<= c_max
) {
2073 i
= TEXTMODE_Y(c_min
);
2074 dpy_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2083 s
->get_resolution(s
, &width
, &height
);
2084 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2092 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2096 /* Display a message */
2098 s
->last_height
= height
= 3;
2099 dpy_cursor(s
->ds
, -1, -1);
2100 s
->ds
->surface
->width
= s
->last_width
;
2101 s
->ds
->surface
->height
= height
;
2104 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2105 console_write_ch(dst
++, ' ');
2107 size
= strlen(msg_buffer
);
2108 width
= (s
->last_width
- size
) / 2;
2109 dst
= chardata
+ s
->last_width
+ width
;
2110 for (i
= 0; i
< size
; i
++)
2111 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2113 dpy_update(s
->ds
, 0, 0, s
->last_width
, height
);
2116 static CPUReadMemoryFunc
*vga_mem_read
[3] = {
2122 static CPUWriteMemoryFunc
*vga_mem_write
[3] = {
2128 static void vga_save(QEMUFile
*f
, void *opaque
)
2130 VGAState
*s
= opaque
;
2134 pci_device_save(s
->pci_dev
, f
);
2136 qemu_put_be32s(f
, &s
->latch
);
2137 qemu_put_8s(f
, &s
->sr_index
);
2138 qemu_put_buffer(f
, s
->sr
, 8);
2139 qemu_put_8s(f
, &s
->gr_index
);
2140 qemu_put_buffer(f
, s
->gr
, 16);
2141 qemu_put_8s(f
, &s
->ar_index
);
2142 qemu_put_buffer(f
, s
->ar
, 21);
2143 qemu_put_be32(f
, s
->ar_flip_flop
);
2144 qemu_put_8s(f
, &s
->cr_index
);
2145 qemu_put_buffer(f
, s
->cr
, 256);
2146 qemu_put_8s(f
, &s
->msr
);
2147 qemu_put_8s(f
, &s
->fcr
);
2148 qemu_put_byte(f
, s
->st00
);
2149 qemu_put_8s(f
, &s
->st01
);
2151 qemu_put_8s(f
, &s
->dac_state
);
2152 qemu_put_8s(f
, &s
->dac_sub_index
);
2153 qemu_put_8s(f
, &s
->dac_read_index
);
2154 qemu_put_8s(f
, &s
->dac_write_index
);
2155 qemu_put_buffer(f
, s
->dac_cache
, 3);
2156 qemu_put_buffer(f
, s
->palette
, 768);
2158 qemu_put_be32(f
, s
->bank_offset
);
2159 #ifdef CONFIG_BOCHS_VBE
2160 qemu_put_byte(f
, 1);
2161 qemu_put_be16s(f
, &s
->vbe_index
);
2162 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
2163 qemu_put_be16s(f
, &s
->vbe_regs
[i
]);
2164 qemu_put_be32s(f
, &s
->vbe_start_addr
);
2165 qemu_put_be32s(f
, &s
->vbe_line_offset
);
2166 qemu_put_be32s(f
, &s
->vbe_bank_mask
);
2168 qemu_put_byte(f
, 0);
2172 static int vga_load(QEMUFile
*f
, void *opaque
, int version_id
)
2174 VGAState
*s
= opaque
;
2180 if (s
->pci_dev
&& version_id
>= 2) {
2181 ret
= pci_device_load(s
->pci_dev
, f
);
2186 qemu_get_be32s(f
, &s
->latch
);
2187 qemu_get_8s(f
, &s
->sr_index
);
2188 qemu_get_buffer(f
, s
->sr
, 8);
2189 qemu_get_8s(f
, &s
->gr_index
);
2190 qemu_get_buffer(f
, s
->gr
, 16);
2191 qemu_get_8s(f
, &s
->ar_index
);
2192 qemu_get_buffer(f
, s
->ar
, 21);
2193 s
->ar_flip_flop
=qemu_get_be32(f
);
2194 qemu_get_8s(f
, &s
->cr_index
);
2195 qemu_get_buffer(f
, s
->cr
, 256);
2196 qemu_get_8s(f
, &s
->msr
);
2197 qemu_get_8s(f
, &s
->fcr
);
2198 qemu_get_8s(f
, &s
->st00
);
2199 qemu_get_8s(f
, &s
->st01
);
2201 qemu_get_8s(f
, &s
->dac_state
);
2202 qemu_get_8s(f
, &s
->dac_sub_index
);
2203 qemu_get_8s(f
, &s
->dac_read_index
);
2204 qemu_get_8s(f
, &s
->dac_write_index
);
2205 qemu_get_buffer(f
, s
->dac_cache
, 3);
2206 qemu_get_buffer(f
, s
->palette
, 768);
2208 s
->bank_offset
=qemu_get_be32(f
);
2209 is_vbe
= qemu_get_byte(f
);
2210 #ifdef CONFIG_BOCHS_VBE
2213 qemu_get_be16s(f
, &s
->vbe_index
);
2214 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
2215 qemu_get_be16s(f
, &s
->vbe_regs
[i
]);
2216 qemu_get_be32s(f
, &s
->vbe_start_addr
);
2217 qemu_get_be32s(f
, &s
->vbe_line_offset
);
2218 qemu_get_be32s(f
, &s
->vbe_bank_mask
);
2225 s
->graphic_mode
= -1;
2229 typedef struct PCIVGAState
{
2236 static void mark_dirty(target_phys_addr_t start
, target_phys_addr_t len
)
2238 target_phys_addr_t end
= start
+ len
;
2240 while (start
< end
) {
2241 cpu_physical_memory_set_dirty(cpu_get_physical_page_desc(start
));
2242 start
+= TARGET_PAGE_SIZE
;
2246 void vga_dirty_log_start(VGAState
*s
)
2248 if (kvm_enabled() && s
->map_addr
)
2250 kvm_log_start(s
->map_addr
, s
->map_end
- s
->map_addr
);
2251 mark_dirty(s
->map_addr
, s
->map_end
- s
->map_addr
);
2254 if (kvm_enabled() && s
->lfb_vram_mapped
) {
2256 kvm_log_start(isa_mem_base
+ 0xa0000, 0x8000);
2257 kvm_log_start(isa_mem_base
+ 0xa8000, 0x8000);
2258 mark_dirty(isa_mem_base
+ 0xa0000, 0x10000);
2264 void vga_dirty_log_stop(VGAState
*s
)
2266 if (kvm_enabled() && s
->map_addr
&& s1
)
2267 kvm_log_stop(s
->map_addr
, s
->map_end
- s
->map_addr
);
2269 if (kvm_enabled() && s
->lfb_vram_mapped
&& s2
) {
2270 kvm_log_stop(isa_mem_base
+ 0xa0000, 0x8000);
2271 kvm_log_stop(isa_mem_base
+ 0xa8000, 0x8000);
2276 static void vga_map(PCIDevice
*pci_dev
, int region_num
,
2277 uint32_t addr
, uint32_t size
, int type
)
2279 PCIVGAState
*d
= (PCIVGAState
*)pci_dev
;
2280 VGAState
*s
= &d
->vga_state
;
2281 if (region_num
== PCI_ROM_SLOT
) {
2282 cpu_register_physical_memory(addr
, s
->bios_size
, s
->bios_offset
);
2284 cpu_register_physical_memory(addr
, s
->vram_size
, s
->vram_offset
);
2288 s
->map_end
= addr
+ VGA_RAM_SIZE
;
2290 vga_dirty_log_start(s
);
2293 void vga_common_init(VGAState
*s
, uint8_t *vga_ram_base
,
2294 ram_addr_t vga_ram_offset
, int vga_ram_size
)
2298 for(i
= 0;i
< 256; i
++) {
2300 for(j
= 0; j
< 8; j
++) {
2301 v
|= ((i
>> j
) & 1) << (j
* 4);
2306 for(j
= 0; j
< 4; j
++) {
2307 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2311 for(i
= 0; i
< 16; i
++) {
2313 for(j
= 0; j
< 4; j
++) {
2316 v
|= b
<< (2 * j
+ 1);
2321 s
->vram_ptr
= vga_ram_base
;
2322 s
->vram_offset
= vga_ram_offset
;
2323 s
->vram_size
= vga_ram_size
;
2324 s
->get_bpp
= vga_get_bpp
;
2325 s
->get_offsets
= vga_get_offsets
;
2326 s
->get_resolution
= vga_get_resolution
;
2327 s
->update
= vga_update_display
;
2328 s
->invalidate
= vga_invalidate_display
;
2329 s
->screen_dump
= vga_screen_dump
;
2330 s
->text_update
= vga_update_text
;
2331 switch (vga_retrace_method
) {
2332 case VGA_RETRACE_DUMB
:
2333 s
->retrace
= vga_dumb_retrace
;
2334 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2337 case VGA_RETRACE_PRECISE
:
2338 s
->retrace
= vga_precise_retrace
;
2339 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2345 /* used by both ISA and PCI */
2346 void vga_init(VGAState
*s
)
2350 qemu_register_reset(vga_reset
, s
);
2351 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2353 register_ioport_write(0x3c0, 16, 1, vga_ioport_write
, s
);
2355 register_ioport_write(0x3b4, 2, 1, vga_ioport_write
, s
);
2356 register_ioport_write(0x3d4, 2, 1, vga_ioport_write
, s
);
2357 register_ioport_write(0x3ba, 1, 1, vga_ioport_write
, s
);
2358 register_ioport_write(0x3da, 1, 1, vga_ioport_write
, s
);
2360 register_ioport_read(0x3c0, 16, 1, vga_ioport_read
, s
);
2362 register_ioport_read(0x3b4, 2, 1, vga_ioport_read
, s
);
2363 register_ioport_read(0x3d4, 2, 1, vga_ioport_read
, s
);
2364 register_ioport_read(0x3ba, 1, 1, vga_ioport_read
, s
);
2365 register_ioport_read(0x3da, 1, 1, vga_ioport_read
, s
);
2368 #ifdef CONFIG_BOCHS_VBE
2369 #if defined (TARGET_I386)
2370 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2371 register_ioport_read(0x1cf, 1, 2, vbe_ioport_read_data
, s
);
2373 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2374 register_ioport_write(0x1cf, 1, 2, vbe_ioport_write_data
, s
);
2376 /* old Bochs IO ports */
2377 register_ioport_read(0xff80, 1, 2, vbe_ioport_read_index
, s
);
2378 register_ioport_read(0xff81, 1, 2, vbe_ioport_read_data
, s
);
2380 register_ioport_write(0xff80, 1, 2, vbe_ioport_write_index
, s
);
2381 register_ioport_write(0xff81, 1, 2, vbe_ioport_write_data
, s
);
2383 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2384 register_ioport_read(0x1d0, 1, 2, vbe_ioport_read_data
, s
);
2386 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2387 register_ioport_write(0x1d0, 1, 2, vbe_ioport_write_data
, s
);
2389 #endif /* CONFIG_BOCHS_VBE */
2391 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2392 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
2394 qemu_register_coalesced_mmio(isa_mem_base
+ 0x000a0000, 0x20000);
2397 /* Memory mapped interface */
2398 static uint32_t vga_mm_readb (void *opaque
, target_phys_addr_t addr
)
2400 VGAState
*s
= opaque
;
2402 return vga_ioport_read(s
, addr
>> s
->it_shift
) & 0xff;
2405 static void vga_mm_writeb (void *opaque
,
2406 target_phys_addr_t addr
, uint32_t value
)
2408 VGAState
*s
= opaque
;
2410 vga_ioport_write(s
, addr
>> s
->it_shift
, value
& 0xff);
2413 static uint32_t vga_mm_readw (void *opaque
, target_phys_addr_t addr
)
2415 VGAState
*s
= opaque
;
2417 return vga_ioport_read(s
, addr
>> s
->it_shift
) & 0xffff;
2420 static void vga_mm_writew (void *opaque
,
2421 target_phys_addr_t addr
, uint32_t value
)
2423 VGAState
*s
= opaque
;
2425 vga_ioport_write(s
, addr
>> s
->it_shift
, value
& 0xffff);
2428 static uint32_t vga_mm_readl (void *opaque
, target_phys_addr_t addr
)
2430 VGAState
*s
= opaque
;
2432 return vga_ioport_read(s
, addr
>> s
->it_shift
);
2435 static void vga_mm_writel (void *opaque
,
2436 target_phys_addr_t addr
, uint32_t value
)
2438 VGAState
*s
= opaque
;
2440 vga_ioport_write(s
, addr
>> s
->it_shift
, value
);
2443 static CPUReadMemoryFunc
*vga_mm_read_ctrl
[] = {
2449 static CPUWriteMemoryFunc
*vga_mm_write_ctrl
[] = {
2455 static void vga_mm_init(VGAState
*s
, target_phys_addr_t vram_base
,
2456 target_phys_addr_t ctrl_base
, int it_shift
)
2458 int s_ioport_ctrl
, vga_io_memory
;
2460 s
->it_shift
= it_shift
;
2461 s_ioport_ctrl
= cpu_register_io_memory(0, vga_mm_read_ctrl
, vga_mm_write_ctrl
, s
);
2462 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2464 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2466 cpu_register_physical_memory(ctrl_base
, 0x100000, s_ioport_ctrl
);
2468 cpu_register_physical_memory(vram_base
+ 0x000a0000, 0x20000, vga_io_memory
);
2469 qemu_register_coalesced_mmio(vram_base
+ 0x000a0000, 0x20000);
2472 int isa_vga_init(uint8_t *vga_ram_base
,
2473 unsigned long vga_ram_offset
, int vga_ram_size
)
2477 s
= qemu_mallocz(sizeof(VGAState
));
2479 vga_common_init(s
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2482 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2483 s
->screen_dump
, s
->text_update
, s
);
2485 #ifdef CONFIG_BOCHS_VBE
2486 /* XXX: use optimized standard vga accesses */
2487 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2488 vga_ram_size
, vga_ram_offset
);
2493 int isa_vga_mm_init(uint8_t *vga_ram_base
,
2494 unsigned long vga_ram_offset
, int vga_ram_size
,
2495 target_phys_addr_t vram_base
, target_phys_addr_t ctrl_base
,
2500 s
= qemu_mallocz(sizeof(VGAState
));
2502 vga_common_init(s
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2503 vga_mm_init(s
, vram_base
, ctrl_base
, it_shift
);
2505 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2506 s
->screen_dump
, s
->text_update
, s
);
2508 #ifdef CONFIG_BOCHS_VBE
2509 /* XXX: use optimized standard vga accesses */
2510 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2511 vga_ram_size
, vga_ram_offset
);
2516 static void pci_vga_write_config(PCIDevice
*d
,
2517 uint32_t address
, uint32_t val
, int len
)
2519 PCIVGAState
*pvs
= container_of(d
, PCIVGAState
, dev
);
2520 VGAState
*s
= &pvs
->vga_state
;
2522 vga_dirty_log_stop(s
);
2523 pci_default_write_config(d
, address
, val
, len
);
2524 if (s
->map_addr
&& pvs
->dev
.io_regions
[0].addr
== -1)
2526 vga_dirty_log_start(s
);
2529 int pci_vga_init(PCIBus
*bus
, uint8_t *vga_ram_base
,
2530 unsigned long vga_ram_offset
, int vga_ram_size
,
2531 unsigned long vga_bios_offset
, int vga_bios_size
)
2537 d
= (PCIVGAState
*)pci_register_device(bus
, "VGA",
2538 sizeof(PCIVGAState
),
2539 -1, NULL
, pci_vga_write_config
);
2544 vga_common_init(s
, vga_ram_base
, vga_ram_offset
, vga_ram_size
);
2547 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2548 s
->screen_dump
, s
->text_update
, s
);
2550 s
->pci_dev
= &d
->dev
;
2552 pci_conf
= d
->dev
.config
;
2553 // dummy VGA (same as Bochs ID)
2554 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_QEMU
);
2555 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_QEMU_VGA
);
2556 pci_config_set_class(pci_conf
, PCI_CLASS_DISPLAY_VGA
);
2557 pci_conf
[0x0e] = 0x00; // header_type
2559 /* XXX: vga_ram_size must be a power of two */
2560 pci_register_io_region(&d
->dev
, 0, vga_ram_size
,
2561 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2562 if (vga_bios_size
!= 0) {
2563 unsigned int bios_total_size
;
2564 s
->bios_offset
= vga_bios_offset
;
2565 s
->bios_size
= vga_bios_size
;
2566 /* must be a power of two */
2567 bios_total_size
= 1;
2568 while (bios_total_size
< vga_bios_size
)
2569 bios_total_size
<<= 1;
2570 pci_register_io_region(&d
->dev
, PCI_ROM_SLOT
, bios_total_size
,
2571 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2576 /********************************************************/
2577 /* vga screen dump */
2579 static void vga_save_dpy_update(DisplayState
*s
,
2580 int x
, int y
, int w
, int h
)
2584 static void vga_save_dpy_resize(DisplayState
*s
)
2588 static void vga_save_dpy_refresh(DisplayState
*s
)
2592 int ppm_save(const char *filename
, struct DisplaySurface
*ds
)
2600 f
= fopen(filename
, "wb");
2603 fprintf(f
, "P6\n%d %d\n%d\n",
2604 ds
->width
, ds
->height
, 255);
2606 for(y
= 0; y
< ds
->height
; y
++) {
2608 for(x
= 0; x
< ds
->width
; x
++) {
2609 if (ds
->pf
.bits_per_pixel
== 32)
2612 v
= (uint32_t) (*(uint16_t *)d
);
2613 r
= ((v
>> ds
->pf
.rshift
) & ds
->pf
.rmax
) * 256 /
2615 g
= ((v
>> ds
->pf
.gshift
) & ds
->pf
.gmax
) * 256 /
2617 b
= ((v
>> ds
->pf
.bshift
) & ds
->pf
.bmax
) * 256 /
2622 d
+= ds
->pf
.bytes_per_pixel
;
2630 static void vga_screen_dump_blank(VGAState
*s
, const char *filename
)
2633 unsigned int y
, x
, w
, h
;
2635 w
= s
->last_scr_width
* sizeof(uint32_t);
2636 h
= s
->last_scr_height
;
2638 f
= fopen(filename
, "wb");
2641 fprintf(f
, "P6\n%d %d\n%d\n", w
, h
, 255);
2642 for (y
= 0; y
< h
; y
++) {
2643 for (x
= 0; x
< w
; x
++) {
2650 static void vga_screen_dump_common(VGAState
*s
, const char *filename
,
2653 DisplayState
*saved_ds
, ds1
, *ds
= &ds1
;
2654 DisplayChangeListener dcl
;
2656 /* XXX: this is a little hackish */
2657 vga_invalidate_display(s
);
2660 memset(ds
, 0, sizeof(DisplayState
));
2661 memset(&dcl
, 0, sizeof(DisplayChangeListener
));
2662 dcl
.dpy_update
= vga_save_dpy_update
;
2663 dcl
.dpy_resize
= vga_save_dpy_resize
;
2664 dcl
.dpy_refresh
= vga_save_dpy_refresh
;
2665 register_displaychangelistener(ds
, &dcl
);
2666 ds
->allocator
= &default_allocator
;
2667 ds
->surface
= qemu_create_displaysurface(ds
, w
, h
);
2670 s
->graphic_mode
= -1;
2671 vga_update_display(s
);
2673 ppm_save(filename
, ds
->surface
);
2675 qemu_free_displaysurface(ds
);
2679 static void vga_screen_dump_graphic(VGAState
*s
, const char *filename
)
2683 s
->get_resolution(s
, &w
, &h
);
2684 vga_screen_dump_common(s
, filename
, w
, h
);
2687 static void vga_screen_dump_text(VGAState
*s
, const char *filename
)
2689 int w
, h
, cwidth
, cheight
;
2691 vga_get_text_resolution(s
, &w
, &h
, &cwidth
, &cheight
);
2692 vga_screen_dump_common(s
, filename
, w
* cwidth
, h
* cheight
);
2695 /* save the vga display in a PPM image even if no display is
2697 static void vga_screen_dump(void *opaque
, const char *filename
)
2699 VGAState
*s
= (VGAState
*)opaque
;
2701 if (!(s
->ar_index
& 0x20))
2702 vga_screen_dump_blank(s
, filename
);
2703 else if (s
->gr
[6] & 1)
2704 vga_screen_dump_graphic(s
, filename
);
2706 vga_screen_dump_text(s
, filename
);
2707 vga_invalidate_display(s
);