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 /* compute font data address (in plane 2) */
1285 offset
= (((v
>> 4) & 1) | ((v
<< 1) & 6)) * 8192 * 4 + 2;
1286 if (offset
!= s
->font_offsets
[0]) {
1287 s
->font_offsets
[0] = offset
;
1290 font_base
[0] = s
->vram_ptr
+ offset
;
1292 offset
= (((v
>> 5) & 1) | ((v
>> 1) & 6)) * 8192 * 4 + 2;
1293 font_base
[1] = s
->vram_ptr
+ offset
;
1294 if (offset
!= s
->font_offsets
[1]) {
1295 s
->font_offsets
[1] = offset
;
1298 if (s
->plane_updated
& (1 << 2)) {
1299 /* if the plane 2 was modified since the last display, it
1300 indicates the font may have been modified */
1301 s
->plane_updated
= 0;
1304 full_update
|= update_basic_params(s
);
1306 line_offset
= s
->line_offset
;
1307 s1
= s
->vram_ptr
+ (s
->start_addr
* 4);
1309 vga_get_text_resolution(s
, &width
, &height
, &cw
, &cheight
);
1310 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1311 if ((height
* width
) > CH_ATTR_SIZE
) {
1312 /* better than nothing: exit if transient size is too big */
1316 if (width
!= s
->last_width
|| height
!= s
->last_height
||
1317 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
|| s
->last_depth
) {
1318 s
->last_scr_width
= width
* cw
;
1319 s
->last_scr_height
= height
* cheight
;
1320 qemu_console_resize(s
->ds
, s
->last_scr_width
, s
->last_scr_height
);
1322 s
->last_width
= width
;
1323 s
->last_height
= height
;
1324 s
->last_ch
= cheight
;
1329 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1330 full_update
|= update_palette16(s
);
1331 palette
= s
->last_palette
;
1332 x_incr
= cw
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1334 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
1335 if (cursor_offset
!= s
->cursor_offset
||
1336 s
->cr
[0xa] != s
->cursor_start
||
1337 s
->cr
[0xb] != s
->cursor_end
) {
1338 /* if the cursor position changed, we update the old and new
1340 if (s
->cursor_offset
< CH_ATTR_SIZE
)
1341 s
->last_ch_attr
[s
->cursor_offset
] = -1;
1342 if (cursor_offset
< CH_ATTR_SIZE
)
1343 s
->last_ch_attr
[cursor_offset
] = -1;
1344 s
->cursor_offset
= cursor_offset
;
1345 s
->cursor_start
= s
->cr
[0xa];
1346 s
->cursor_end
= s
->cr
[0xb];
1348 cursor_ptr
= s
->vram_ptr
+ (s
->start_addr
+ cursor_offset
) * 4;
1350 depth_index
= get_depth_index(s
->ds
);
1352 vga_draw_glyph8
= vga_draw_glyph16_table
[depth_index
];
1354 vga_draw_glyph8
= vga_draw_glyph8_table
[depth_index
];
1355 vga_draw_glyph9
= vga_draw_glyph9_table
[depth_index
];
1357 dest
= ds_get_data(s
->ds
);
1358 linesize
= ds_get_linesize(s
->ds
);
1359 ch_attr_ptr
= s
->last_ch_attr
;
1360 for(cy
= 0; cy
< height
; cy
++) {
1365 for(cx
= 0; cx
< width
; cx
++) {
1366 ch_attr
= *(uint16_t *)src
;
1367 if (full_update
|| ch_attr
!= *ch_attr_ptr
) {
1372 *ch_attr_ptr
= ch_attr
;
1373 #ifdef WORDS_BIGENDIAN
1375 cattr
= ch_attr
& 0xff;
1377 ch
= ch_attr
& 0xff;
1378 cattr
= ch_attr
>> 8;
1380 font_ptr
= font_base
[(cattr
>> 3) & 1];
1381 font_ptr
+= 32 * 4 * ch
;
1382 bgcol
= palette
[cattr
>> 4];
1383 fgcol
= palette
[cattr
& 0x0f];
1385 vga_draw_glyph8(d1
, linesize
,
1386 font_ptr
, cheight
, fgcol
, bgcol
);
1389 if (ch
>= 0xb0 && ch
<= 0xdf && (s
->ar
[0x10] & 0x04))
1391 vga_draw_glyph9(d1
, linesize
,
1392 font_ptr
, cheight
, fgcol
, bgcol
, dup9
);
1394 if (src
== cursor_ptr
&&
1395 !(s
->cr
[0x0a] & 0x20)) {
1396 int line_start
, line_last
, h
;
1397 /* draw the cursor */
1398 line_start
= s
->cr
[0x0a] & 0x1f;
1399 line_last
= s
->cr
[0x0b] & 0x1f;
1400 /* XXX: check that */
1401 if (line_last
> cheight
- 1)
1402 line_last
= cheight
- 1;
1403 if (line_last
>= line_start
&& line_start
< cheight
) {
1404 h
= line_last
- line_start
+ 1;
1405 d
= d1
+ linesize
* line_start
;
1407 vga_draw_glyph8(d
, linesize
,
1408 cursor_glyph
, h
, fgcol
, bgcol
);
1410 vga_draw_glyph9(d
, linesize
,
1411 cursor_glyph
, h
, fgcol
, bgcol
, 1);
1421 dpy_update(s
->ds
, cx_min
* cw
, cy
* cheight
,
1422 (cx_max
- cx_min
+ 1) * cw
, cheight
);
1424 dest
+= linesize
* cheight
;
1443 static vga_draw_line_func
*vga_draw_line_table
[NB_DEPTHS
* VGA_DRAW_LINE_NB
] = {
1453 vga_draw_line2d2_16
,
1454 vga_draw_line2d2_16
,
1455 vga_draw_line2d2_32
,
1456 vga_draw_line2d2_32
,
1457 vga_draw_line2d2_16
,
1458 vga_draw_line2d2_16
,
1469 vga_draw_line4d2_16
,
1470 vga_draw_line4d2_16
,
1471 vga_draw_line4d2_32
,
1472 vga_draw_line4d2_32
,
1473 vga_draw_line4d2_16
,
1474 vga_draw_line4d2_16
,
1477 vga_draw_line8d2_16
,
1478 vga_draw_line8d2_16
,
1479 vga_draw_line8d2_32
,
1480 vga_draw_line8d2_32
,
1481 vga_draw_line8d2_16
,
1482 vga_draw_line8d2_16
,
1496 vga_draw_line15_32bgr
,
1497 vga_draw_line15_15bgr
,
1498 vga_draw_line15_16bgr
,
1504 vga_draw_line16_32bgr
,
1505 vga_draw_line16_15bgr
,
1506 vga_draw_line16_16bgr
,
1512 vga_draw_line24_32bgr
,
1513 vga_draw_line24_15bgr
,
1514 vga_draw_line24_16bgr
,
1520 vga_draw_line32_32bgr
,
1521 vga_draw_line32_15bgr
,
1522 vga_draw_line32_16bgr
,
1525 static int vga_get_bpp(VGAState
*s
)
1528 #ifdef CONFIG_BOCHS_VBE
1529 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1530 ret
= s
->vbe_regs
[VBE_DISPI_INDEX_BPP
];
1539 static void vga_get_resolution(VGAState
*s
, int *pwidth
, int *pheight
)
1543 #ifdef CONFIG_BOCHS_VBE
1544 if (s
->vbe_regs
[VBE_DISPI_INDEX_ENABLE
] & VBE_DISPI_ENABLED
) {
1545 width
= s
->vbe_regs
[VBE_DISPI_INDEX_XRES
];
1546 height
= s
->vbe_regs
[VBE_DISPI_INDEX_YRES
];
1550 width
= (s
->cr
[0x01] + 1) * 8;
1551 height
= s
->cr
[0x12] |
1552 ((s
->cr
[0x07] & 0x02) << 7) |
1553 ((s
->cr
[0x07] & 0x40) << 3);
1554 height
= (height
+ 1);
1560 void vga_invalidate_scanlines(VGAState
*s
, int y1
, int y2
)
1563 if (y1
>= VGA_MAX_HEIGHT
)
1565 if (y2
>= VGA_MAX_HEIGHT
)
1566 y2
= VGA_MAX_HEIGHT
;
1567 for(y
= y1
; y
< y2
; y
++) {
1568 s
->invalidated_y_table
[y
>> 5] |= 1 << (y
& 0x1f);
1572 static void vga_sync_dirty_bitmap(VGAState
*s
)
1575 cpu_physical_sync_dirty_bitmap(s
->map_addr
, s
->map_end
);
1577 if (s
->lfb_vram_mapped
) {
1578 cpu_physical_sync_dirty_bitmap(isa_mem_base
+ 0xa0000, 0xa8000);
1579 cpu_physical_sync_dirty_bitmap(isa_mem_base
+ 0xa8000, 0xb0000);
1586 static void vga_draw_graphic(VGAState
*s
, int full_update
)
1588 int y1
, y
, update
, linesize
, y_start
, double_scan
, mask
, depth
;
1589 int width
, height
, shift_control
, line_offset
, bwidth
, bits
;
1590 int disp_width
, multi_scan
, multi_run
;
1592 uint32_t v
, addr1
, addr
;
1593 long page0
, page1
, page_min
, page_max
;
1594 vga_draw_line_func
*vga_draw_line
;
1596 full_update
|= update_basic_params(s
);
1599 vga_sync_dirty_bitmap(s
);
1601 s
->get_resolution(s
, &width
, &height
);
1604 shift_control
= (s
->gr
[0x05] >> 5) & 3;
1605 double_scan
= (s
->cr
[0x09] >> 7);
1606 if (shift_control
!= 1) {
1607 multi_scan
= (((s
->cr
[0x09] & 0x1f) + 1) << double_scan
) - 1;
1609 /* in CGA modes, multi_scan is ignored */
1610 /* XXX: is it correct ? */
1611 multi_scan
= double_scan
;
1613 multi_run
= multi_scan
;
1614 if (shift_control
!= s
->shift_control
||
1615 double_scan
!= s
->double_scan
) {
1617 s
->shift_control
= shift_control
;
1618 s
->double_scan
= double_scan
;
1621 if (shift_control
== 0) {
1622 if (s
->sr
[0x01] & 8) {
1625 } else if (shift_control
== 1) {
1626 if (s
->sr
[0x01] & 8) {
1631 depth
= s
->get_bpp(s
);
1632 if (s
->line_offset
!= s
->last_line_offset
||
1633 disp_width
!= s
->last_width
||
1634 height
!= s
->last_height
||
1635 s
->last_depth
!= depth
) {
1636 #if defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
1637 if (depth
== 16 || depth
== 32) {
1641 qemu_free_displaysurface(s
->ds
);
1642 s
->ds
->surface
= qemu_create_displaysurface_from(disp_width
, height
, depth
,
1644 s
->vram_ptr
+ (s
->start_addr
* 4));
1645 #if defined(WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
1646 s
->ds
->surface
->pf
= qemu_different_endianness_pixelformat(depth
);
1650 qemu_console_resize(s
->ds
, disp_width
, height
);
1652 s
->last_scr_width
= disp_width
;
1653 s
->last_scr_height
= height
;
1654 s
->last_width
= disp_width
;
1655 s
->last_height
= height
;
1656 s
->last_line_offset
= s
->line_offset
;
1657 s
->last_depth
= depth
;
1659 } else if (is_buffer_shared(s
->ds
->surface
) &&
1660 (full_update
|| s
->ds
->surface
->data
!= s
->vram_ptr
+ (s
->start_addr
* 4))) {
1661 s
->ds
->surface
->data
= s
->vram_ptr
+ (s
->start_addr
* 4);
1666 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1668 if (shift_control
== 0) {
1669 full_update
|= update_palette16(s
);
1670 if (s
->sr
[0x01] & 8) {
1671 v
= VGA_DRAW_LINE4D2
;
1676 } else if (shift_control
== 1) {
1677 full_update
|= update_palette16(s
);
1678 if (s
->sr
[0x01] & 8) {
1679 v
= VGA_DRAW_LINE2D2
;
1685 switch(s
->get_bpp(s
)) {
1688 full_update
|= update_palette256(s
);
1689 v
= VGA_DRAW_LINE8D2
;
1693 full_update
|= update_palette256(s
);
1698 v
= VGA_DRAW_LINE15
;
1702 v
= VGA_DRAW_LINE16
;
1706 v
= VGA_DRAW_LINE24
;
1710 v
= VGA_DRAW_LINE32
;
1715 vga_draw_line
= vga_draw_line_table
[v
* NB_DEPTHS
+ get_depth_index(s
->ds
)];
1717 if (!is_buffer_shared(s
->ds
->surface
) && s
->cursor_invalidate
)
1718 s
->cursor_invalidate(s
);
1720 line_offset
= s
->line_offset
;
1722 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",
1723 width
, height
, v
, line_offset
, s
->cr
[9], s
->cr
[0x17], s
->line_compare
, s
->sr
[0x01]);
1725 addr1
= (s
->start_addr
* 4);
1726 bwidth
= (width
* bits
+ 7) / 8;
1728 page_min
= 0x7fffffff;
1730 d
= ds_get_data(s
->ds
);
1731 linesize
= ds_get_linesize(s
->ds
);
1733 for(y
= 0; y
< height
; y
++) {
1735 if (!(s
->cr
[0x17] & 1)) {
1737 /* CGA compatibility handling */
1738 shift
= 14 + ((s
->cr
[0x17] >> 6) & 1);
1739 addr
= (addr
& ~(1 << shift
)) | ((y1
& 1) << shift
);
1741 if (!(s
->cr
[0x17] & 2)) {
1742 addr
= (addr
& ~0x8000) | ((y1
& 2) << 14);
1744 page0
= s
->vram_offset
+ (addr
& TARGET_PAGE_MASK
);
1745 page1
= s
->vram_offset
+ ((addr
+ bwidth
- 1) & TARGET_PAGE_MASK
);
1746 update
= full_update
|
1747 cpu_physical_memory_get_dirty(page0
, VGA_DIRTY_FLAG
) |
1748 cpu_physical_memory_get_dirty(page1
, VGA_DIRTY_FLAG
);
1749 if ((page1
- page0
) > TARGET_PAGE_SIZE
) {
1750 /* if wide line, can use another page */
1751 update
|= cpu_physical_memory_get_dirty(page0
+ TARGET_PAGE_SIZE
,
1754 /* explicit invalidation for the hardware cursor */
1755 update
|= (s
->invalidated_y_table
[y
>> 5] >> (y
& 0x1f)) & 1;
1759 if (page0
< page_min
)
1761 if (page1
> page_max
)
1763 if (!(is_buffer_shared(s
->ds
->surface
))) {
1764 vga_draw_line(s
, d
, s
->vram_ptr
+ addr
, width
);
1765 if (s
->cursor_draw_line
)
1766 s
->cursor_draw_line(s
, d
, y
);
1770 /* flush to display */
1771 dpy_update(s
->ds
, 0, y_start
,
1772 disp_width
, y
- y_start
);
1777 mask
= (s
->cr
[0x17] & 3) ^ 3;
1778 if ((y1
& mask
) == mask
)
1779 addr1
+= line_offset
;
1781 multi_run
= multi_scan
;
1785 /* line compare acts on the displayed lines */
1786 if (y
== s
->line_compare
)
1791 /* flush to display */
1792 dpy_update(s
->ds
, 0, y_start
,
1793 disp_width
, y
- y_start
);
1795 /* reset modified pages */
1796 if (page_max
!= -1) {
1797 cpu_physical_memory_reset_dirty(page_min
, page_max
+ TARGET_PAGE_SIZE
,
1800 memset(s
->invalidated_y_table
, 0, ((height
+ 31) >> 5) * 4);
1803 static void vga_draw_blank(VGAState
*s
, int full_update
)
1810 if (s
->last_scr_width
<= 0 || s
->last_scr_height
<= 0)
1814 rgb_to_pixel_dup_table
[get_depth_index(s
->ds
)];
1815 if (ds_get_bits_per_pixel(s
->ds
) == 8)
1816 val
= s
->rgb_to_pixel(0, 0, 0);
1819 w
= s
->last_scr_width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
1820 d
= ds_get_data(s
->ds
);
1821 for(i
= 0; i
< s
->last_scr_height
; i
++) {
1823 d
+= ds_get_linesize(s
->ds
);
1825 dpy_update(s
->ds
, 0, 0,
1826 s
->last_scr_width
, s
->last_scr_height
);
1829 #define GMODE_TEXT 0
1830 #define GMODE_GRAPH 1
1831 #define GMODE_BLANK 2
1833 static void vga_update_display(void *opaque
)
1835 VGAState
*s
= (VGAState
*)opaque
;
1836 int full_update
, graphic_mode
;
1838 if (ds_get_bits_per_pixel(s
->ds
) == 0) {
1842 if (!(s
->ar_index
& 0x20)) {
1843 graphic_mode
= GMODE_BLANK
;
1845 graphic_mode
= s
->gr
[6] & 1;
1847 if (graphic_mode
!= s
->graphic_mode
) {
1848 s
->graphic_mode
= graphic_mode
;
1851 switch(graphic_mode
) {
1853 vga_draw_text(s
, full_update
);
1859 vga_draw_graphic(s
, full_update
);
1863 vga_draw_blank(s
, full_update
);
1869 /* force a full display refresh */
1870 static void vga_invalidate_display(void *opaque
)
1872 VGAState
*s
= (VGAState
*)opaque
;
1875 s
->last_height
= -1;
1878 void vga_reset(void *opaque
)
1880 VGAState
*s
= (VGAState
*) opaque
;
1886 s
->lfb_vram_mapped
= 0;
1890 memset(s
->sr
, '\0', sizeof(s
->sr
));
1892 memset(s
->gr
, '\0', sizeof(s
->gr
));
1894 memset(s
->ar
, '\0', sizeof(s
->ar
));
1895 s
->ar_flip_flop
= 0;
1897 memset(s
->cr
, '\0', sizeof(s
->cr
));
1903 s
->dac_sub_index
= 0;
1904 s
->dac_read_index
= 0;
1905 s
->dac_write_index
= 0;
1906 memset(s
->dac_cache
, '\0', sizeof(s
->dac_cache
));
1908 memset(s
->palette
, '\0', sizeof(s
->palette
));
1910 #ifdef CONFIG_BOCHS_VBE
1912 memset(s
->vbe_regs
, '\0', sizeof(s
->vbe_regs
));
1913 s
->vbe_regs
[VBE_DISPI_INDEX_ID
] = VBE_DISPI_ID0
;
1914 s
->vbe_start_addr
= 0;
1915 s
->vbe_line_offset
= 0;
1916 s
->vbe_bank_mask
= (s
->vram_size
>> 16) - 1;
1918 memset(s
->font_offsets
, '\0', sizeof(s
->font_offsets
));
1919 s
->graphic_mode
= -1; /* force full update */
1920 s
->shift_control
= 0;
1923 s
->line_compare
= 0;
1925 s
->plane_updated
= 0;
1930 s
->last_scr_width
= 0;
1931 s
->last_scr_height
= 0;
1932 s
->cursor_start
= 0;
1934 s
->cursor_offset
= 0;
1935 memset(s
->invalidated_y_table
, '\0', sizeof(s
->invalidated_y_table
));
1936 memset(s
->last_palette
, '\0', sizeof(s
->last_palette
));
1937 memset(s
->last_ch_attr
, '\0', sizeof(s
->last_ch_attr
));
1938 switch (vga_retrace_method
) {
1939 case VGA_RETRACE_DUMB
:
1941 case VGA_RETRACE_PRECISE
:
1942 memset(&s
->retrace_info
, 0, sizeof (s
->retrace_info
));
1947 #define TEXTMODE_X(x) ((x) % width)
1948 #define TEXTMODE_Y(x) ((x) / width)
1949 #define VMEM2CHTYPE(v) ((v & 0xff0007ff) | \
1950 ((v & 0x00000800) << 10) | ((v & 0x00007000) >> 1))
1951 /* relay text rendering to the display driver
1952 * instead of doing a full vga_update_display() */
1953 static void vga_update_text(void *opaque
, console_ch_t
*chardata
)
1955 VGAState
*s
= (VGAState
*) opaque
;
1956 int graphic_mode
, i
, cursor_offset
, cursor_visible
;
1957 int cw
, cheight
, width
, height
, size
, c_min
, c_max
;
1959 console_ch_t
*dst
, val
;
1960 char msg_buffer
[80];
1961 int full_update
= 0;
1963 if (!(s
->ar_index
& 0x20)) {
1964 graphic_mode
= GMODE_BLANK
;
1966 graphic_mode
= s
->gr
[6] & 1;
1968 if (graphic_mode
!= s
->graphic_mode
) {
1969 s
->graphic_mode
= graphic_mode
;
1972 if (s
->last_width
== -1) {
1977 switch (graphic_mode
) {
1979 /* TODO: update palette */
1980 full_update
|= update_basic_params(s
);
1982 /* total width & height */
1983 cheight
= (s
->cr
[9] & 0x1f) + 1;
1985 if (!(s
->sr
[1] & 0x01))
1987 if (s
->sr
[1] & 0x08)
1988 cw
= 16; /* NOTE: no 18 pixel wide */
1989 width
= (s
->cr
[0x01] + 1);
1990 if (s
->cr
[0x06] == 100) {
1991 /* ugly hack for CGA 160x100x16 - explain me the logic */
1994 height
= s
->cr
[0x12] |
1995 ((s
->cr
[0x07] & 0x02) << 7) |
1996 ((s
->cr
[0x07] & 0x40) << 3);
1997 height
= (height
+ 1) / cheight
;
2000 size
= (height
* width
);
2001 if (size
> CH_ATTR_SIZE
) {
2005 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Text mode",
2010 if (width
!= s
->last_width
|| height
!= s
->last_height
||
2011 cw
!= s
->last_cw
|| cheight
!= s
->last_ch
) {
2012 s
->last_scr_width
= width
* cw
;
2013 s
->last_scr_height
= height
* cheight
;
2014 s
->ds
->surface
->width
= width
;
2015 s
->ds
->surface
->height
= height
;
2017 s
->last_width
= width
;
2018 s
->last_height
= height
;
2019 s
->last_ch
= cheight
;
2024 /* Update "hardware" cursor */
2025 cursor_offset
= ((s
->cr
[0x0e] << 8) | s
->cr
[0x0f]) - s
->start_addr
;
2026 if (cursor_offset
!= s
->cursor_offset
||
2027 s
->cr
[0xa] != s
->cursor_start
||
2028 s
->cr
[0xb] != s
->cursor_end
|| full_update
) {
2029 cursor_visible
= !(s
->cr
[0xa] & 0x20);
2030 if (cursor_visible
&& cursor_offset
< size
&& cursor_offset
>= 0)
2032 TEXTMODE_X(cursor_offset
),
2033 TEXTMODE_Y(cursor_offset
));
2035 dpy_cursor(s
->ds
, -1, -1);
2036 s
->cursor_offset
= cursor_offset
;
2037 s
->cursor_start
= s
->cr
[0xa];
2038 s
->cursor_end
= s
->cr
[0xb];
2041 src
= (uint32_t *) s
->vram_ptr
+ s
->start_addr
;
2045 for (i
= 0; i
< size
; src
++, dst
++, i
++)
2046 console_write_ch(dst
, VMEM2CHTYPE(*src
));
2048 dpy_update(s
->ds
, 0, 0, width
, height
);
2052 for (i
= 0; i
< size
; src
++, dst
++, i
++) {
2053 console_write_ch(&val
, VMEM2CHTYPE(*src
));
2061 for (; i
< size
; src
++, dst
++, i
++) {
2062 console_write_ch(&val
, VMEM2CHTYPE(*src
));
2069 if (c_min
<= c_max
) {
2070 i
= TEXTMODE_Y(c_min
);
2071 dpy_update(s
->ds
, 0, i
, width
, TEXTMODE_Y(c_max
) - i
+ 1);
2080 s
->get_resolution(s
, &width
, &height
);
2081 snprintf(msg_buffer
, sizeof(msg_buffer
), "%i x %i Graphic mode",
2089 snprintf(msg_buffer
, sizeof(msg_buffer
), "VGA Blank mode");
2093 /* Display a message */
2095 s
->last_height
= height
= 3;
2096 dpy_cursor(s
->ds
, -1, -1);
2097 s
->ds
->surface
->width
= s
->last_width
;
2098 s
->ds
->surface
->height
= height
;
2101 for (dst
= chardata
, i
= 0; i
< s
->last_width
* height
; i
++)
2102 console_write_ch(dst
++, ' ');
2104 size
= strlen(msg_buffer
);
2105 width
= (s
->last_width
- size
) / 2;
2106 dst
= chardata
+ s
->last_width
+ width
;
2107 for (i
= 0; i
< size
; i
++)
2108 console_write_ch(dst
++, 0x00200100 | msg_buffer
[i
]);
2110 dpy_update(s
->ds
, 0, 0, s
->last_width
, height
);
2113 static CPUReadMemoryFunc
*vga_mem_read
[3] = {
2119 static CPUWriteMemoryFunc
*vga_mem_write
[3] = {
2125 static void vga_save(QEMUFile
*f
, void *opaque
)
2127 VGAState
*s
= opaque
;
2131 pci_device_save(s
->pci_dev
, f
);
2133 qemu_put_be32s(f
, &s
->latch
);
2134 qemu_put_8s(f
, &s
->sr_index
);
2135 qemu_put_buffer(f
, s
->sr
, 8);
2136 qemu_put_8s(f
, &s
->gr_index
);
2137 qemu_put_buffer(f
, s
->gr
, 16);
2138 qemu_put_8s(f
, &s
->ar_index
);
2139 qemu_put_buffer(f
, s
->ar
, 21);
2140 qemu_put_be32(f
, s
->ar_flip_flop
);
2141 qemu_put_8s(f
, &s
->cr_index
);
2142 qemu_put_buffer(f
, s
->cr
, 256);
2143 qemu_put_8s(f
, &s
->msr
);
2144 qemu_put_8s(f
, &s
->fcr
);
2145 qemu_put_byte(f
, s
->st00
);
2146 qemu_put_8s(f
, &s
->st01
);
2148 qemu_put_8s(f
, &s
->dac_state
);
2149 qemu_put_8s(f
, &s
->dac_sub_index
);
2150 qemu_put_8s(f
, &s
->dac_read_index
);
2151 qemu_put_8s(f
, &s
->dac_write_index
);
2152 qemu_put_buffer(f
, s
->dac_cache
, 3);
2153 qemu_put_buffer(f
, s
->palette
, 768);
2155 qemu_put_be32(f
, s
->bank_offset
);
2156 #ifdef CONFIG_BOCHS_VBE
2157 qemu_put_byte(f
, 1);
2158 qemu_put_be16s(f
, &s
->vbe_index
);
2159 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
2160 qemu_put_be16s(f
, &s
->vbe_regs
[i
]);
2161 qemu_put_be32s(f
, &s
->vbe_start_addr
);
2162 qemu_put_be32s(f
, &s
->vbe_line_offset
);
2163 qemu_put_be32s(f
, &s
->vbe_bank_mask
);
2165 qemu_put_byte(f
, 0);
2169 static int vga_load(QEMUFile
*f
, void *opaque
, int version_id
)
2171 VGAState
*s
= opaque
;
2177 if (s
->pci_dev
&& version_id
>= 2) {
2178 ret
= pci_device_load(s
->pci_dev
, f
);
2183 qemu_get_be32s(f
, &s
->latch
);
2184 qemu_get_8s(f
, &s
->sr_index
);
2185 qemu_get_buffer(f
, s
->sr
, 8);
2186 qemu_get_8s(f
, &s
->gr_index
);
2187 qemu_get_buffer(f
, s
->gr
, 16);
2188 qemu_get_8s(f
, &s
->ar_index
);
2189 qemu_get_buffer(f
, s
->ar
, 21);
2190 s
->ar_flip_flop
=qemu_get_be32(f
);
2191 qemu_get_8s(f
, &s
->cr_index
);
2192 qemu_get_buffer(f
, s
->cr
, 256);
2193 qemu_get_8s(f
, &s
->msr
);
2194 qemu_get_8s(f
, &s
->fcr
);
2195 qemu_get_8s(f
, &s
->st00
);
2196 qemu_get_8s(f
, &s
->st01
);
2198 qemu_get_8s(f
, &s
->dac_state
);
2199 qemu_get_8s(f
, &s
->dac_sub_index
);
2200 qemu_get_8s(f
, &s
->dac_read_index
);
2201 qemu_get_8s(f
, &s
->dac_write_index
);
2202 qemu_get_buffer(f
, s
->dac_cache
, 3);
2203 qemu_get_buffer(f
, s
->palette
, 768);
2205 s
->bank_offset
=qemu_get_be32(f
);
2206 is_vbe
= qemu_get_byte(f
);
2207 #ifdef CONFIG_BOCHS_VBE
2210 qemu_get_be16s(f
, &s
->vbe_index
);
2211 for(i
= 0; i
< VBE_DISPI_INDEX_NB
; i
++)
2212 qemu_get_be16s(f
, &s
->vbe_regs
[i
]);
2213 qemu_get_be32s(f
, &s
->vbe_start_addr
);
2214 qemu_get_be32s(f
, &s
->vbe_line_offset
);
2215 qemu_get_be32s(f
, &s
->vbe_bank_mask
);
2222 s
->graphic_mode
= -1;
2226 typedef struct PCIVGAState
{
2233 static void mark_dirty(target_phys_addr_t start
, target_phys_addr_t len
)
2235 target_phys_addr_t end
= start
+ len
;
2237 while (start
< end
) {
2238 cpu_physical_memory_set_dirty(cpu_get_physical_page_desc(start
));
2239 start
+= TARGET_PAGE_SIZE
;
2243 void vga_dirty_log_start(VGAState
*s
)
2245 if (kvm_enabled() && s
->map_addr
)
2247 kvm_log_start(s
->map_addr
, s
->map_end
- s
->map_addr
);
2248 mark_dirty(s
->map_addr
, s
->map_end
- s
->map_addr
);
2251 if (kvm_enabled() && s
->lfb_vram_mapped
) {
2253 kvm_log_start(isa_mem_base
+ 0xa0000, 0x8000);
2254 kvm_log_start(isa_mem_base
+ 0xa8000, 0x8000);
2255 mark_dirty(isa_mem_base
+ 0xa0000, 0x10000);
2261 static void vga_map(PCIDevice
*pci_dev
, int region_num
,
2262 uint32_t addr
, uint32_t size
, int type
)
2264 PCIVGAState
*d
= (PCIVGAState
*)pci_dev
;
2265 VGAState
*s
= &d
->vga_state
;
2266 if (region_num
== PCI_ROM_SLOT
) {
2267 cpu_register_physical_memory(addr
, s
->bios_size
, s
->bios_offset
);
2269 cpu_register_physical_memory(addr
, s
->vram_size
, s
->vram_offset
);
2271 s
->map_end
= addr
+ s
->vram_size
;
2272 vga_dirty_log_start(s
);
2276 void vga_common_init(VGAState
*s
, int vga_ram_size
)
2280 for(i
= 0;i
< 256; i
++) {
2282 for(j
= 0; j
< 8; j
++) {
2283 v
|= ((i
>> j
) & 1) << (j
* 4);
2288 for(j
= 0; j
< 4; j
++) {
2289 v
|= ((i
>> (2 * j
)) & 3) << (j
* 4);
2293 for(i
= 0; i
< 16; i
++) {
2295 for(j
= 0; j
< 4; j
++) {
2298 v
|= b
<< (2 * j
+ 1);
2303 s
->vram_offset
= qemu_ram_alloc(vga_ram_size
);
2304 s
->vram_ptr
= qemu_get_ram_ptr(s
->vram_offset
);
2305 s
->vram_size
= vga_ram_size
;
2306 s
->get_bpp
= vga_get_bpp
;
2307 s
->get_offsets
= vga_get_offsets
;
2308 s
->get_resolution
= vga_get_resolution
;
2309 s
->update
= vga_update_display
;
2310 s
->invalidate
= vga_invalidate_display
;
2311 s
->screen_dump
= vga_screen_dump
;
2312 s
->text_update
= vga_update_text
;
2313 switch (vga_retrace_method
) {
2314 case VGA_RETRACE_DUMB
:
2315 s
->retrace
= vga_dumb_retrace
;
2316 s
->update_retrace_info
= vga_dumb_update_retrace_info
;
2319 case VGA_RETRACE_PRECISE
:
2320 s
->retrace
= vga_precise_retrace
;
2321 s
->update_retrace_info
= vga_precise_update_retrace_info
;
2327 /* used by both ISA and PCI */
2328 void vga_init(VGAState
*s
)
2332 qemu_register_reset(vga_reset
, s
);
2333 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2335 register_ioport_write(0x3c0, 16, 1, vga_ioport_write
, s
);
2337 register_ioport_write(0x3b4, 2, 1, vga_ioport_write
, s
);
2338 register_ioport_write(0x3d4, 2, 1, vga_ioport_write
, s
);
2339 register_ioport_write(0x3ba, 1, 1, vga_ioport_write
, s
);
2340 register_ioport_write(0x3da, 1, 1, vga_ioport_write
, s
);
2342 register_ioport_read(0x3c0, 16, 1, vga_ioport_read
, s
);
2344 register_ioport_read(0x3b4, 2, 1, vga_ioport_read
, s
);
2345 register_ioport_read(0x3d4, 2, 1, vga_ioport_read
, s
);
2346 register_ioport_read(0x3ba, 1, 1, vga_ioport_read
, s
);
2347 register_ioport_read(0x3da, 1, 1, vga_ioport_read
, s
);
2350 #ifdef CONFIG_BOCHS_VBE
2351 #if defined (TARGET_I386)
2352 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2353 register_ioport_read(0x1cf, 1, 2, vbe_ioport_read_data
, s
);
2355 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2356 register_ioport_write(0x1cf, 1, 2, vbe_ioport_write_data
, s
);
2358 /* old Bochs IO ports */
2359 register_ioport_read(0xff80, 1, 2, vbe_ioport_read_index
, s
);
2360 register_ioport_read(0xff81, 1, 2, vbe_ioport_read_data
, s
);
2362 register_ioport_write(0xff80, 1, 2, vbe_ioport_write_index
, s
);
2363 register_ioport_write(0xff81, 1, 2, vbe_ioport_write_data
, s
);
2365 register_ioport_read(0x1ce, 1, 2, vbe_ioport_read_index
, s
);
2366 register_ioport_read(0x1d0, 1, 2, vbe_ioport_read_data
, s
);
2368 register_ioport_write(0x1ce, 1, 2, vbe_ioport_write_index
, s
);
2369 register_ioport_write(0x1d0, 1, 2, vbe_ioport_write_data
, s
);
2371 #endif /* CONFIG_BOCHS_VBE */
2373 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2374 cpu_register_physical_memory(isa_mem_base
+ 0x000a0000, 0x20000,
2376 qemu_register_coalesced_mmio(isa_mem_base
+ 0x000a0000, 0x20000);
2379 /* Memory mapped interface */
2380 static uint32_t vga_mm_readb (void *opaque
, target_phys_addr_t addr
)
2382 VGAState
*s
= opaque
;
2384 return vga_ioport_read(s
, addr
>> s
->it_shift
) & 0xff;
2387 static void vga_mm_writeb (void *opaque
,
2388 target_phys_addr_t addr
, uint32_t value
)
2390 VGAState
*s
= opaque
;
2392 vga_ioport_write(s
, addr
>> s
->it_shift
, value
& 0xff);
2395 static uint32_t vga_mm_readw (void *opaque
, target_phys_addr_t addr
)
2397 VGAState
*s
= opaque
;
2399 return vga_ioport_read(s
, addr
>> s
->it_shift
) & 0xffff;
2402 static void vga_mm_writew (void *opaque
,
2403 target_phys_addr_t addr
, uint32_t value
)
2405 VGAState
*s
= opaque
;
2407 vga_ioport_write(s
, addr
>> s
->it_shift
, value
& 0xffff);
2410 static uint32_t vga_mm_readl (void *opaque
, target_phys_addr_t addr
)
2412 VGAState
*s
= opaque
;
2414 return vga_ioport_read(s
, addr
>> s
->it_shift
);
2417 static void vga_mm_writel (void *opaque
,
2418 target_phys_addr_t addr
, uint32_t value
)
2420 VGAState
*s
= opaque
;
2422 vga_ioport_write(s
, addr
>> s
->it_shift
, value
);
2425 static CPUReadMemoryFunc
*vga_mm_read_ctrl
[] = {
2431 static CPUWriteMemoryFunc
*vga_mm_write_ctrl
[] = {
2437 static void vga_mm_init(VGAState
*s
, target_phys_addr_t vram_base
,
2438 target_phys_addr_t ctrl_base
, int it_shift
)
2440 int s_ioport_ctrl
, vga_io_memory
;
2442 s
->it_shift
= it_shift
;
2443 s_ioport_ctrl
= cpu_register_io_memory(0, vga_mm_read_ctrl
, vga_mm_write_ctrl
, s
);
2444 vga_io_memory
= cpu_register_io_memory(0, vga_mem_read
, vga_mem_write
, s
);
2446 register_savevm("vga", 0, 2, vga_save
, vga_load
, s
);
2448 cpu_register_physical_memory(ctrl_base
, 0x100000, s_ioport_ctrl
);
2450 cpu_register_physical_memory(vram_base
+ 0x000a0000, 0x20000, vga_io_memory
);
2451 qemu_register_coalesced_mmio(vram_base
+ 0x000a0000, 0x20000);
2454 int isa_vga_init(int vga_ram_size
)
2458 s
= qemu_mallocz(sizeof(VGAState
));
2460 vga_common_init(s
, vga_ram_size
);
2463 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2464 s
->screen_dump
, s
->text_update
, s
);
2466 #ifdef CONFIG_BOCHS_VBE
2467 /* XXX: use optimized standard vga accesses */
2468 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2469 vga_ram_size
, s
->vram_offset
);
2474 int isa_vga_mm_init(int vga_ram_size
, target_phys_addr_t vram_base
,
2475 target_phys_addr_t ctrl_base
, int it_shift
)
2479 s
= qemu_mallocz(sizeof(VGAState
));
2481 vga_common_init(s
, vga_ram_size
);
2482 vga_mm_init(s
, vram_base
, ctrl_base
, it_shift
);
2484 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2485 s
->screen_dump
, s
->text_update
, s
);
2487 #ifdef CONFIG_BOCHS_VBE
2488 /* XXX: use optimized standard vga accesses */
2489 cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS
,
2490 vga_ram_size
, s
->vram_offset
);
2495 static void pci_vga_write_config(PCIDevice
*d
,
2496 uint32_t address
, uint32_t val
, int len
)
2498 PCIVGAState
*pvs
= container_of(d
, PCIVGAState
, dev
);
2499 VGAState
*s
= &pvs
->vga_state
;
2501 pci_default_write_config(d
, address
, val
, len
);
2502 if (s
->map_addr
&& pvs
->dev
.io_regions
[0].addr
== -1)
2506 int pci_vga_init(PCIBus
*bus
, int vga_ram_size
,
2507 unsigned long vga_bios_offset
, int vga_bios_size
)
2513 d
= (PCIVGAState
*)pci_register_device(bus
, "VGA",
2514 sizeof(PCIVGAState
),
2515 -1, NULL
, pci_vga_write_config
);
2520 vga_common_init(s
, vga_ram_size
);
2523 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
2524 s
->screen_dump
, s
->text_update
, s
);
2526 s
->pci_dev
= &d
->dev
;
2528 pci_conf
= d
->dev
.config
;
2529 // dummy VGA (same as Bochs ID)
2530 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_QEMU
);
2531 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_QEMU_VGA
);
2532 pci_config_set_class(pci_conf
, PCI_CLASS_DISPLAY_VGA
);
2533 pci_conf
[0x0e] = 0x00; // header_type
2535 /* XXX: vga_ram_size must be a power of two */
2536 pci_register_io_region(&d
->dev
, 0, vga_ram_size
,
2537 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2538 if (vga_bios_size
!= 0) {
2539 unsigned int bios_total_size
;
2540 s
->bios_offset
= vga_bios_offset
;
2541 s
->bios_size
= vga_bios_size
;
2542 /* must be a power of two */
2543 bios_total_size
= 1;
2544 while (bios_total_size
< vga_bios_size
)
2545 bios_total_size
<<= 1;
2546 pci_register_io_region(&d
->dev
, PCI_ROM_SLOT
, bios_total_size
,
2547 PCI_ADDRESS_SPACE_MEM_PREFETCH
, vga_map
);
2552 /********************************************************/
2553 /* vga screen dump */
2555 static void vga_save_dpy_update(DisplayState
*s
,
2556 int x
, int y
, int w
, int h
)
2560 static void vga_save_dpy_resize(DisplayState
*s
)
2564 static void vga_save_dpy_refresh(DisplayState
*s
)
2568 int ppm_save(const char *filename
, struct DisplaySurface
*ds
)
2576 f
= fopen(filename
, "wb");
2579 fprintf(f
, "P6\n%d %d\n%d\n",
2580 ds
->width
, ds
->height
, 255);
2582 for(y
= 0; y
< ds
->height
; y
++) {
2584 for(x
= 0; x
< ds
->width
; x
++) {
2585 if (ds
->pf
.bits_per_pixel
== 32)
2588 v
= (uint32_t) (*(uint16_t *)d
);
2589 r
= ((v
>> ds
->pf
.rshift
) & ds
->pf
.rmax
) * 256 /
2591 g
= ((v
>> ds
->pf
.gshift
) & ds
->pf
.gmax
) * 256 /
2593 b
= ((v
>> ds
->pf
.bshift
) & ds
->pf
.bmax
) * 256 /
2598 d
+= ds
->pf
.bytes_per_pixel
;
2606 static void vga_screen_dump_blank(VGAState
*s
, const char *filename
)
2609 unsigned int y
, x
, w
, h
;
2611 w
= s
->last_scr_width
* sizeof(uint32_t);
2612 h
= s
->last_scr_height
;
2614 f
= fopen(filename
, "wb");
2617 fprintf(f
, "P6\n%d %d\n%d\n", w
, h
, 255);
2618 for (y
= 0; y
< h
; y
++) {
2619 for (x
= 0; x
< w
; x
++) {
2626 static void vga_screen_dump_common(VGAState
*s
, const char *filename
,
2629 DisplayState
*saved_ds
, ds1
, *ds
= &ds1
;
2630 DisplayChangeListener dcl
;
2632 /* XXX: this is a little hackish */
2633 vga_invalidate_display(s
);
2636 memset(ds
, 0, sizeof(DisplayState
));
2637 memset(&dcl
, 0, sizeof(DisplayChangeListener
));
2638 dcl
.dpy_update
= vga_save_dpy_update
;
2639 dcl
.dpy_resize
= vga_save_dpy_resize
;
2640 dcl
.dpy_refresh
= vga_save_dpy_refresh
;
2641 register_displaychangelistener(ds
, &dcl
);
2642 ds
->allocator
= &default_allocator
;
2643 ds
->surface
= qemu_create_displaysurface(ds
, w
, h
);
2646 s
->graphic_mode
= -1;
2647 vga_update_display(s
);
2649 ppm_save(filename
, ds
->surface
);
2651 qemu_free_displaysurface(ds
);
2655 static void vga_screen_dump_graphic(VGAState
*s
, const char *filename
)
2659 s
->get_resolution(s
, &w
, &h
);
2660 vga_screen_dump_common(s
, filename
, w
, h
);
2663 static void vga_screen_dump_text(VGAState
*s
, const char *filename
)
2665 int w
, h
, cwidth
, cheight
;
2667 vga_get_text_resolution(s
, &w
, &h
, &cwidth
, &cheight
);
2668 vga_screen_dump_common(s
, filename
, w
* cwidth
, h
* cheight
);
2671 /* save the vga display in a PPM image even if no display is
2673 static void vga_screen_dump(void *opaque
, const char *filename
)
2675 VGAState
*s
= (VGAState
*)opaque
;
2677 if (!(s
->ar_index
& 0x20))
2678 vga_screen_dump_blank(s
, filename
);
2679 else if (s
->gr
[6] & 1)
2680 vga_screen_dump_graphic(s
, filename
);
2682 vga_screen_dump_text(s
, filename
);
2683 vga_invalidate_display(s
);